Skip to content

Commit ba4d579

Browse files
🌱 bump actions/checkout from 3 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 9615151 commit ba4d579

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/apidiff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
1414
steps:
1515
- name: Clone the code
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
with:
1818
fetch-depth: 0
1919
- name: Setup Go

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
go-version: '~1.20'
1919
- name: Clone the code
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121
- name: Run linter
2222
uses: golangci/golangci-lint-action@v3
2323
with:
@@ -27,6 +27,6 @@ jobs:
2727
yamllint:
2828
runs-on: ubuntu-latest
2929
steps:
30-
- uses: actions/checkout@v3
30+
- uses: actions/checkout@v4
3131
- name: Run yamllint make target
3232
run: make yamllint

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313
with:
1414
fetch-depth: 0
1515
- name: Fetch all tags

.github/workflows/testdata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
1515
steps:
1616
- name: Clone the code
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818
- name: Setup Go
1919
uses: actions/setup-go@v4
2020
with:

.github/workflows/unit-tests-legacy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
2020
steps:
2121
- name: Clone the code
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323
- name: Setup Go
2424
uses: actions/setup-go@v4
2525
with:

.github/workflows/unit-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
1919
steps:
2020
- name: Clone the code
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222
- name: Setup Go
2323
uses: actions/setup-go@v4
2424
with:
@@ -48,7 +48,7 @@ jobs:
4848
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
4949
steps:
5050
- name: Clone the code
51-
uses: actions/checkout@v3
51+
uses: actions/checkout@v4
5252
- name: Setup Go
5353
uses: actions/setup-go@v4
5454
with:

0 commit comments

Comments
 (0)