Skip to content

Commit 94ef00d

Browse files
Merge pull request #273 from InseeFr/renovate/actions-checkout-5.x
chore(deps): update actions/checkout action to v5
2 parents 315cd55 + 33adf60 commit 94ef00d

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/create-release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
java-version: '21'
2121

2222
- name: Checkout repo
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424

2525
- name: Get source version
2626
id: version-step
@@ -69,7 +69,7 @@ jobs:
6969
mvn clean install --no-transfer-progress
7070
cd ..
7171
72-
- uses: actions/checkout@v4
72+
- uses: actions/checkout@v5
7373
- name: Build app
7474
run: mvn package --no-transfer-progress
7575

@@ -84,7 +84,7 @@ jobs:
8484
if: needs.check-version.outputs.should_run_next_job == 'true'
8585
runs-on: ubuntu-latest
8686
steps:
87-
- uses: actions/checkout@v4
87+
- uses: actions/checkout@v5
8888
with:
8989
ref: ${{ github.ref }}
9090
fetch-depth: 0
@@ -116,7 +116,7 @@ jobs:
116116
needs: [ check-version, create-release ]
117117
runs-on: ubuntu-latest
118118
steps:
119-
- uses: actions/checkout@v4
119+
- uses: actions/checkout@v5
120120

121121
- name: Download uploaded jar
122122
uses: actions/download-artifact@v4

.github/workflows/docker.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
run: echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >>$GITHUB_OUTPUT
1717
id: extract_branch
1818

19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
with:
2121
ref: ${{ steps.extract_branch.outputs.branch }}
2222

@@ -52,7 +52,7 @@ jobs:
5252
- build-snapshot
5353
runs-on: ubuntu-latest
5454
steps:
55-
- uses: actions/checkout@v4
55+
- uses: actions/checkout@v5
5656

5757
- name: Download uploaded jar
5858
uses: actions/download-artifact@v4

.github/workflows/maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121

2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424

2525
- name: Set up JDK 21
2626
uses: actions/setup-java@v4

.github/workflows/pr-version.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
contains(github.event.pull_request.labels.*.name, 'Version Update - Prod')
1515
steps:
1616
- name: Checkout PR branch
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
with:
1919
ref: ${{ github.head_ref }}
2020

0 commit comments

Comments
 (0)