Skip to content

Commit e0ca5e1

Browse files
Bump actions/checkout from 2 to 3.1.0
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.1.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v3.1.0) --- 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 9bc98a3 commit e0ca5e1

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
go-version: ${{ matrix.go-version }}
2626
- name: Check out code
27-
uses: actions/checkout@v2
27+
uses: actions/checkout@v3
2828
with:
2929
path: ${{ env.GOPATH }}/src/github.com/${{ github.repository }}
3030
fetch-depth: 0

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
go-version: ${{ matrix.go-version }}
2525
- name: Check out code
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v3
2727
with:
2828
path: ${{ env.GOPATH }}/src/github.com/${{ github.repository }}
2929
- uses: actions/cache@v2.1.6

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
go-version: ${{ matrix.go-version }}
2727
- name: Check out code
28-
uses: actions/checkout@v2
28+
uses: actions/checkout@v3
2929
with:
3030
path: ${{ env.GOPATH }}/src/github.com/${{ github.repository }}
3131
fetch-depth: 0
@@ -53,7 +53,7 @@ jobs:
5353
working-directory: ${{ env.GOPATH }}/src/github.com/${{ github.repository }}
5454
steps:
5555
- name: Check out code
56-
uses: actions/checkout@v2
56+
uses: actions/checkout@v3
5757
with:
5858
path: ${{ env.GOPATH }}/src/github.com/${{ github.repository }}
5959
fetch-depth: 0

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
go-version: ${{ matrix.go-version }}
2727
- name: Check out code
28-
uses: actions/checkout@v2
28+
uses: actions/checkout@v3
2929
with:
3030
path: ${{ env.GOPATH }}/src/github.com/${{ github.repository }}
3131
fetch-depth: 0

0 commit comments

Comments
 (0)