Skip to content

Commit b6d6bb8

Browse files
committed
update action version number
1 parent 12cdec9 commit b6d6bb8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/core-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ${{ matrix.os }}
2323

2424
strategy:
25-
fail-fast: false # change back before MERGE
25+
fail-fast: true
2626
matrix:
2727
os: ["ubuntu-latest", "windows-latest"]
2828
# "macos-latest",
@@ -54,12 +54,12 @@ jobs:
5454

5555
steps:
5656
- name: Set up Python ${{ matrix.python-version }}
57-
uses: actions/setup-python@v4
57+
uses: actions/setup-python@v5
5858
with:
5959
python-version: ${{ matrix.python-version }}
6060

6161
- name: Checkout repository
62-
uses: actions/checkout@v3
62+
uses: actions/checkout@v4
6363

6464
- name: Install numpy ${{ matrix.numpy-version }}
6565
run: |

.github/workflows/io-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
steps:
2727

2828
- name: Checkout repository
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030

3131
- name: Get current year-month
3232
id: date
@@ -38,15 +38,15 @@ jobs:
3838
run: |
3939
echo "dataset_hash=$(git ls-remote https://gin.g-node.org/NeuralEnsemble/ephy_testing_data.git HEAD | cut -f1)" >> $GITHUB_OUTPUT
4040
41-
- uses: actions/cache/restore@v3
41+
- uses: actions/cache/restore@v4
4242
# Loading cache of ephys_testing_dataset
4343
id: cache-datasets
4444
with:
4545
path: ~/ephy_testing_data
4646
key: ${{ runner.os }}-datasets-${{ steps.ephy_testing_data.outputs.dataset_hash }}
4747
restore-keys: ${{ runner.os }}-datasets-
4848

49-
- uses: conda-incubator/setup-miniconda@v3
49+
- uses: conda-incubator/setup-miniconda@v4
5050
with:
5151
activate-environment: neo-test-env
5252
python-version: "${{ matrix.python-version }}"

0 commit comments

Comments
 (0)