Skip to content

Commit 35b4631

Browse files
[Tech] bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 0be13a8 commit 35b4631

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

.github/workflows/cicd-app.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
java-version: 21
8282

8383
- name: Checkout
84-
uses: actions/checkout@v5
84+
uses: actions/checkout@v6
8585

8686
- name: Unit test
8787
run: make test-back
@@ -95,7 +95,7 @@ jobs:
9595
PUPPETEER_SKIP_DOWNLOAD: "true"
9696
steps:
9797
- name: Checkout
98-
uses: actions/checkout@v5
98+
uses: actions/checkout@v6
9999

100100
- name: Setup Node.js
101101
uses: actions/setup-node@v6
@@ -141,7 +141,7 @@ jobs:
141141
run: echo "VERSION:${{ env.VERSION }} ENV_PROFILE:${{ env.ENV_PROFILE }}"
142142

143143
- name: Checkout
144-
uses: actions/checkout@v5
144+
uses: actions/checkout@v6
145145

146146
- name: Set up Docker Buildx
147147
id: buildx
@@ -211,7 +211,7 @@ jobs:
211211
PUPPETEER_SKIP_DOWNLOAD: "true"
212212
steps:
213213
- name: Checkout
214-
uses: actions/checkout@v5
214+
uses: actions/checkout@v6
215215

216216
- name: Download image
217217
uses: ishworkh/[email protected]
@@ -270,7 +270,7 @@ jobs:
270270
PUPPETEER_SKIP_DOWNLOAD: "true"
271271
steps:
272272
- name: Checkout
273-
uses: actions/checkout@v5
273+
uses: actions/checkout@v6
274274

275275
- uses: browser-actions/setup-chrome@v2
276276
with:
@@ -318,7 +318,7 @@ jobs:
318318
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
319319
steps:
320320
- name: Checkout
321-
uses: actions/checkout@v5
321+
uses: actions/checkout@v6
322322
with:
323323
fetch-depth: 100
324324

@@ -363,7 +363,7 @@ jobs:
363363
VERSION: ${{needs.version.outputs.VERSION}}
364364
steps:
365365
- name: Checkout
366-
uses: actions/checkout@v5
366+
uses: actions/checkout@v6
367367

368368
- name: Download image
369369
uses: ishworkh/[email protected]

.github/workflows/cicd-database.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
# packages: write
1313
# steps:
1414
# - name: Checkout
15-
# uses: actions/checkout@v5
15+
# uses: actions/checkout@v6
1616
#
1717
# - name: Set IMAGE_TAG
1818
# run: echo "IMAGE_TAG=ghcr.io/mtes-mct/monitorenv/monitorenv-database:pg11-ts1.7.4-postgis3.3.2" >> $GITHUB_ENV
@@ -74,7 +74,7 @@ jobs:
7474
packages: write
7575
steps:
7676
- name: Checkout
77-
uses: actions/checkout@v5
77+
uses: actions/checkout@v6
7878

7979
- name: Set IMAGE_TAG
8080
run: echo "IMAGE_TAG=ghcr.io/mtes-mct/monitorenv/monitorenv-database:pg${{ matrix.pg_major }}-postgis${{ matrix.postgis_version }}-timescale${{ matrix.timescaledb_version }}" >> $GITHUB_ENV
@@ -122,7 +122,7 @@ jobs:
122122
# packages: write
123123
# steps:
124124
# - name: Checkout
125-
# uses: actions/checkout@v5
125+
# uses: actions/checkout@v6
126126
#
127127
# - name: Set IMAGE_TAG
128128
# run: echo "IMAGE_TAG=ghcr.io/mtes-mct/monitorenv/monitorenv-database-upgrade:pg${{ matrix.from_pg_major }}_to_pg${{ matrix.to_pg_major }}-postgis${{ matrix.postgis_version }}" >> $GITHUB_ENV

.github/workflows/cicd-datapipeline-prefect3.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
packages: write
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v5
24+
uses: actions/checkout@v6
2525

2626
- name: Get last release version
2727
id: lastrelease

.github/workflows/cicd-datapipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
packages: write
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626

2727
- name: Get last release version
2828
id: lastrelease

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929

3030
- name: Initialize CodeQL
3131
uses: github/codeql-action/init@v4

.github/workflows/publish-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
contents: read
1414
packages: write
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
- uses: actions/[email protected]
1818
with:
1919
java-version: '17'

0 commit comments

Comments
 (0)