Skip to content

Commit 7c6f8fc

Browse files
Update actions/checkout action to v4
1 parent d3d63ac commit 7c6f8fc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if: "! contains(toJSON(github.event.commits.*.message), '[skip-ci]')"
1717
steps:
1818
- name: Check out code
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020
with:
2121
ref: ${{github.event.pull_request.head.sha}}
2222

.github/workflows/push.yml

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

2020
steps:
2121
- name: Check out code
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323
with:
2424
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
2525
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo

.github/workflows/release.yml

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

1616
steps:
1717
- name: Check out code
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919
with:
2020
fetch-depth: 0 # See: https://goreleaser.com/ci/actions/
2121

0 commit comments

Comments
 (0)