Skip to content

Commit a2b59c7

Browse files
Update actions/checkout action from vv4 to v5 (#4062)
1 parent eb838e4 commit a2b59c7

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/azure_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
creds: ${{ secrets.AZURE_FRONTDOOR_CREDENTIALS }}
2929
enable-AzPSSession: true
3030
- name: Check out the repo
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232
- name: Enable Corepack before setting up Node
3333
run: corepack enable
3434
- name: Set up Node.js

.github/workflows/codeql-analysis.yml

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

2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828

2929
# Initializes the CodeQL tools for scanning.
3030
- name: Initialize CodeQL

.github/workflows/cypress.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
node-version: [22.x]
2424

2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727
- name: Enable Corepack before setting up Node
2828
run: corepack enable
2929
- name: Use Node.js ${{ matrix.node-version }}

.github/workflows/dead_links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Check out the repo
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
with:
1414
ref: main
1515
- name: Enable Corepack before setting up Node

.github/workflows/deploy_atlasfiles.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
AWS_DEFAULT_REGION: "eu-west-1"
2020
steps:
2121
- name: Check out the repo
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323
- name: Sync main to S3 bucket skde.org
2424
if: github.ref == 'refs/heads/main'
2525
run: |

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
echo "descr='Main commits deploy'" >> $GITHUB_ENV
3636
echo "cloudfront_id=${{ secrets.CLOUDFRONT_ID_QA }}" >> $GITHUB_ENV
3737
- name: Check out the repo
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v5
3939
- run: corepack enable && yarn install
4040
- run: yarn workspace api run build
4141
- name: Lint Dockerfile

.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
node-version: [20.x, 22.x]
2424

2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727
- name: Enable Corepack before setting up Node
2828
run: corepack enable
2929
- name: Use Node.js ${{ matrix.node-version }}

0 commit comments

Comments
 (0)