Skip to content

Commit 32682c5

Browse files
Update actions/checkout action to v5 (#3632)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 8f21c86 commit 32682c5

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/workflows/auto-backport.yml

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

1313
steps:
1414
- name: Checkout repository
15-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
15+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1616
with:
1717
fetch-depth: 0
1818
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/codeql.yml

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

2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
26+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2727

2828
- name: Initialize CodeQL
2929
uses: github/codeql-action/init@3c3833e0f8c1c83d449a7478aa59c036a9165498 # v3

.github/workflows/cypress.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
image: cypress/browsers:node-22.13.1-chrome-133.0.6943.53-1-ff-135.0-edge-132.0.2957.140-1@sha256:914c9814a9567f32660203db7ecd610b8f8fede6e9103885728b3bd3f6dca4ff
3131
steps:
3232
- name: Checkout
33-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
33+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
3434

3535
- name: Install dependencies
3636
run: yarn --immutable
@@ -66,7 +66,7 @@ jobs:
6666
containers: [1, 2, 3, 4, 5, 6]
6767
steps:
6868
- name: Checkout
69-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
69+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
7070

7171
- name: Download the build folder
7272
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
@@ -126,7 +126,7 @@ jobs:
126126

127127
steps:
128128
- name: Checkout
129-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
129+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
130130

131131
- name: Download the build folder
132132
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4

.github/workflows/pr-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
exit 1
2828
fi
2929
30-
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
30+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
3131
with:
3232
ref: ${{ format('refs/pull/{0}/head', github.event.issue.number) }}
3333
path: app-frontend

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
echo "${{ github.event.release.tag_name }}" | grep -P $REGEX
2626
2727
- name: checkout
28-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
28+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2929
with:
3030
path: app-frontend
3131
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

.github/workflows/revert.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
echo "${{ github.event.inputs.tag }}" | grep -P '^v(\d+)\.(\d+)\.(\d+)(-(preview|rc)\.\d+$|$)'
2828
2929
- name: Checkout
30-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
30+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
3131
with:
3232
path: app-frontend
3333
sparse-checkout: |

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
name: Type-checks, eslint, unit tests and SonarCloud
2121
steps:
2222
- name: checkout
23-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
23+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2424
with:
2525
path: app-frontend
2626
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

0 commit comments

Comments
 (0)