Skip to content

Commit

Permalink
chore: Update actions/checkout action to v3 (#960)
Browse files Browse the repository at this point in the history
Co-authored-by: Noah Dietz <[email protected]>
  • Loading branch information
renovate-bot and noahdietz authored Apr 18, 2022
1 parent 79d93e1 commit 28799a6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:
runs-on: ubuntu-latest
container: golang:1.14
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: go test -p 1 ./...
lint:
runs-on: ubuntu-latest
container: golang:1.14
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install golangci-lint
run: curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin latest
- name: Run golangci-lint
Expand All @@ -24,6 +24,6 @@ jobs:
runs-on: ubuntu-latest
container: golang:1.14-alpine
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run the quality checker (which catches obvious mistakes, missing docs, etc.)
run: go run ./.github/quality-checker
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
container: golang:1.14
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get release information
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
- uses: actions/setup-go@v3
with:
go-version: "1.14"
- uses: actions/checkout@v2
- uses: actions/checkout@v3
# The API linter does not use these, but we need them to build the
# binaries.
#
Expand Down

0 comments on commit 28799a6

Please sign in to comment.