Skip to content

Commit

Permalink
bump GitHub Actions
Browse files Browse the repository at this point in the history
actions/checkout@v2, actions/setup-go@v2 and codecov/codecov-action@v1 use
Node.js v12 that is already deprecated.

https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/

We need upgrade the latest one.
  • Loading branch information
shogo82148 committed Jul 23, 2023
1 parent 2c6a438 commit 4874798
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Expand Up @@ -14,8 +14,8 @@ jobs:
go: ["1.15", "1.16"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}

Expand All @@ -24,4 +24,4 @@ jobs:
- run: go test ./... -v -cover -coverprofile coverage.out
- run: go test -bench . -benchmem

- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v3

0 comments on commit 4874798

Please sign in to comment.