Skip to content

Commit 70930a7

Browse files
chore(deps): update actions/checkout action to v5 (#291)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 99e8702 commit 70930a7

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/changed-packages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
package_changed: ${{ steps.changeset.outputs.result }}
2323

2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v5
2626
with:
2727
# see `fetch-depth` in README: https://github.com/actions/checkout#checkout-v3,
2828
# we set to `0` so the referenced commits are available for the command below

.github/workflows/deploy-dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535
steps:
3636
- name: Checkout code
37-
uses: actions/checkout@v3
37+
uses: actions/checkout@v5
3838
with:
3939
fetch-depth: 2
4040
ref: ${{ needs.check-app.outputs.branch }}

.github/workflows/preview.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
if: needs.pre_job.outputs.should_skip != 'true'
4343
steps:
4444
- name: Checkout code
45-
uses: actions/checkout@v3
45+
uses: actions/checkout@v5
4646
with:
4747
fetch-depth: 2
4848
ref: ${{ needs.check-app.outputs.branch }}

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
exit 1
105105
fi
106106
- name: Checkout code
107-
uses: actions/checkout@v3
107+
uses: actions/checkout@v5
108108
with:
109109
fetch-depth: 2
110110
ref: ${{ needs.check-app.outputs.branch }}
@@ -127,7 +127,7 @@ jobs:
127127
if: ${{ needs.check-app.outputs.app == null && needs.check-app.outputs.branch != null }}
128128
steps:
129129
- name: Checkout code
130-
uses: actions/checkout@v3
130+
uses: actions/checkout@v5
131131
with:
132132
fetch-depth: 2
133133
ref: ${{ needs.check-app.outputs.branch }}

0 commit comments

Comments
 (0)