Skip to content

Commit 41cf1be

Browse files
chore(deps): update actions/checkout action to v5 (#4126)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 474e9b7 commit 41cf1be

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
echo "key=${{ matrix.system }}-node${{ matrix.node-version }}-compiled-assets-${BRANCH}" >> "$GITHUB_OUTPUT"
8484
8585
- name: Check out code
86-
uses: actions/checkout@v4
86+
uses: actions/checkout@v5
8787
with:
8888
ref: ${{ inputs.ref || github.head_ref }}
8989
fetch-depth: 0

.github/workflows/compare-results.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
has-changed: ${{ steps.compare.outputs.has-changed }}
4545
total-size: ${{ steps.compare.outputs.total-size }}
4646
steps:
47-
- uses: actions/checkout@v4
47+
- uses: actions/checkout@v5
4848
with:
4949
fetch-depth: 0
5050

@@ -170,7 +170,7 @@ jobs:
170170
run: exit 0
171171

172172
- name: Check out code
173-
uses: actions/checkout@v4
173+
uses: actions/checkout@v5
174174
with:
175175
fetch-depth: 0
176176
ref: ${{ matrix.branch }}

.github/workflows/development.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ jobs:
150150
if: ${{ needs.changed_files.outputs.plugins_added_files != '' || needs.changed_files.outputs.plugins_modified_files != '' }}
151151
steps:
152152
- name: Check out code
153-
uses: actions/checkout@v4
153+
uses: actions/checkout@v5
154154

155155
- name: Use Node LTS version
156156
uses: actions/setup-node@v4

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
steps:
5959
# install but don't build - we're linting pre-compiled assets
6060
- name: Check out code
61-
uses: actions/checkout@v4
61+
uses: actions/checkout@v5
6262
with:
6363
fetch-depth: 0
6464

.github/workflows/production.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
timeout-minutes: 5
7373
steps:
7474
- name: Check out code
75-
uses: actions/checkout@v4
75+
uses: actions/checkout@v5
7676

7777
- name: Convert new TODO items to issues
7878
uses: alstr/todo-to-issue-action@v5

.github/workflows/publish-site.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
steps:
4343
## --- SETUP --- ##
4444
- name: Check out code
45-
uses: actions/checkout@v4
45+
uses: actions/checkout@v5
4646
with:
4747
fetch-depth: 0
4848

.github/workflows/release-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
env:
2121
BRANCH: ${{ github.ref_name }}
2222
run: echo "fragment=${BRANCH##*snapshot-}" >> $GITHUB_OUTPUT
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
with:
2525
fetch-depth: 0
2626
- name: Get last author info

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout Repo
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: Setup Node.js
2020
uses: actions/setup-node@v4

.github/workflows/vrt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
storybook-url: ${{ steps.chromatic.outputs.storybookUrl != 'undefined' && steps.chromatic.outputs.storybookUrl || '' }}
4545
steps:
4646
- name: Check out code
47-
uses: actions/checkout@v4
47+
uses: actions/checkout@v5
4848
with:
4949
fetch-depth: 0
5050
ref: ${{ inputs.ref || github.ref }}

0 commit comments

Comments
 (0)