Skip to content

Commit fecd21d

Browse files
Merge pull request #388 from stakater/update-github-actions
[skip-ci] Update github actions
2 parents 991613b + 5cd8b3d commit fecd21d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/pull_request.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
if: "! contains(toJSON(github.event.commits.*.message), '[skip-ci]')"
1919
steps:
2020
- name: Check out code
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v3
2222
with:
2323
ref: ${{github.event.pull_request.head.sha}}
2424

@@ -28,7 +28,7 @@ jobs:
2828

2929
- name: Set up Go
3030
id: go
31-
uses: actions/setup-go@v2
31+
uses: actions/setup-go@v3
3232
with:
3333
go-version: ${{ env.GOLANG_VERSION }}
3434

.github/workflows/push.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Check out code
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v3
2424
with:
2525
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
2626
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo
@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: Set up Go
3333
id: go
34-
uses: actions/setup-go@v2
34+
uses: actions/setup-go@v3
3535
with:
3636
go-version: ${{ env.GOLANG_VERSION }}
3737

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515

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

2222
- name: Set up Go 1.x
23-
uses: actions/setup-go@v2
23+
uses: actions/setup-go@v3
2424
with:
2525
go-version: ${{ env.GOLANG_VERSION }}
2626
id: go

0 commit comments

Comments
 (0)