Skip to content

Commit 3bdb7e0

Browse files
authored
Merge pull request #570 from oasisprotocol/dependabot/github_actions/actions/checkout-5
2 parents 9887686 + d6ba4d2 commit 3bdb7e0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout code
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626
with:
2727
# Check out pull request's HEAD commit instead of the merge commit to
2828
# prevent gitlint from failing due to too long commit message titles,
@@ -67,7 +67,7 @@ jobs:
6767
# Always run this step so that all linting errors can be seen at once.
6868
if: always()
6969
- name: Ensure a clean code checkout
70-
uses: actions/checkout@v4
70+
uses: actions/checkout@v5
7171
with:
7272
clean: true
7373
if: always()

.github/workflows/ci-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ${{ matrix.os }}
2626
steps:
2727
- name: Checkout code
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929
- name: Set up Go
3030
uses: actions/setup-go@v5
3131
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
options: --user 1001
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
with:
2121
fetch-depth: 0
2222
- name: Set up Go

0 commit comments

Comments
 (0)