Skip to content

Commit

Permalink
Upgrade to latest versions Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
cbroglie committed Jun 16, 2022
1 parent 807cf85 commit 803afaf
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Expand Up @@ -9,18 +9,18 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true

- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: 1.17.6
go-version: 1.18.3

- name: GoReleaser
uses: goreleaser/goreleaser-action@v2.8.0
uses: goreleaser/goreleaser-action@v3
with:
args: release --rm-dist
env:
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/testing.yml
Expand Up @@ -10,24 +10,24 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: true

- name: Run golangci-lint
uses: golangci/golangci-lint-action@v2.5.2
- name: Set up Go
uses: actions/setup-go@v3
with:
version: v1.28.3
go-version: 1.18.3

- name: Set up Go
uses: actions/setup-go@v2
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3.2.0
with:
go-version: 1.17.1
version: v1.46.2

- name: Test
run: make test

- name: Upload results to codecov
uses: codecov/codecov-action@v1.5.2
uses: codecov/codecov-action@v2
with:
verbose: true

0 comments on commit 803afaf

Please sign in to comment.