Skip to content

Commit 51010a4

Browse files
chore(deps): bump actions/checkout from 2 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 7392621 commit 51010a4

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
docker-build:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
- name: Build the Docker image
1616
run: docker build . --file Dockerfile
1717
golangci-lint:
1818
name: golangci-lint
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v3
2222
- name: lint
2323
uses: golangci/[email protected]
2424
with:
@@ -32,7 +32,7 @@ jobs:
3232
golang:
3333
- 1.16.x
3434
steps:
35-
- uses: actions/checkout@v2
35+
- uses: actions/checkout@v3
3636
- name: Install Go
3737
uses: actions/setup-go@v2
3838
with:
@@ -48,7 +48,7 @@ jobs:
4848
golang:
4949
- 1.16.x
5050
steps:
51-
- uses: actions/checkout@v2
51+
- uses: actions/checkout@v3
5252
- name: Install Go
5353
uses: actions/setup-go@v2
5454
with:
@@ -72,7 +72,7 @@ jobs:
7272
- 1.15.x
7373
- 1.16.x
7474
steps:
75-
- uses: actions/checkout@v2
75+
- uses: actions/checkout@v3
7676
- name: Install Go
7777
uses: actions/setup-go@v2
7878
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
semantic-release:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@master
9+
- uses: actions/checkout@v3
1010
- uses: codfish/[email protected]
1111
if: github.ref == 'refs/heads/master'
1212
env:

0 commit comments

Comments
 (0)