Skip to content

Commit cdeedd2

Browse files
authored
New versions for Github actions (Inria-Empenn#236)
1 parent 4caaf30 commit cdeedd2

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/pipeline_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
tests: ${{ steps.identify.outputs.tests }}
2121
steps:
2222
- name: Checkout current branch
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424
with:
2525
fetch-depth: 0
2626

@@ -54,7 +54,7 @@ jobs:
5454
timeout-minutes: 2880 # 48h
5555
steps:
5656
- name: Checkout PR branch
57-
uses: actions/checkout@v3
57+
uses: actions/checkout@v4
5858

5959
- name: Load configuration for self-hosted runner
6060
run: cp /home/neuro/local_testing_config.toml narps_open/utils/configuration/testing_config.toml
@@ -75,7 +75,7 @@ jobs:
7575
7676
- name: Archive pipeline execution failures
7777
if: ${{ failure() }} # Run only if previous job fails
78-
uses: actions/upload-artifact@v3
78+
uses: actions/upload-artifact@v4
7979
with:
8080
name: pipeline_tests-reports
8181
path: |

.github/workflows/test_changes.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
tests: ${{ steps.identify.outputs.tests }}
2020
steps:
2121
- name: Checkout main branch for comparison
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323
with:
2424
fetch-depth: 0
2525

@@ -45,7 +45,7 @@ jobs:
4545
timeout-minutes: 2880 # 48h
4646
steps:
4747
- name: Checkout PR branch
48-
uses: actions/checkout@v3
48+
uses: actions/checkout@v4
4949

5050
- name: Load configuration for self-hosted runner
5151
run: cp /home/neuro/local_testing_config.toml narps_open/utils/configuration/testing_config.toml

.github/workflows/unit_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
# Steps that define the job
3131
steps:
3232
- name: Checkout repository
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434

3535
- name: Load configuration for self-hosted runner
3636
run: cp /home/neuro/local_testing_config.toml narps_open/utils/configuration/testing_config.toml
@@ -48,7 +48,7 @@ jobs:
4848
4949
- name: Archive pytest results
5050
if: ${{ failure() }} # Run only if previous job fails
51-
uses: actions/upload-artifact@v3
51+
uses: actions/upload-artifact@v4
5252
with:
5353
name: unit_tests-reports
5454
path: |

0 commit comments

Comments
 (0)