Skip to content

Commit

Permalink
Merge pull request #16 from grishy/2024-04-update-ci
Browse files Browse the repository at this point in the history
CI: Use actions checkout@v4, setup-go@v5, and linter
  • Loading branch information
grishy authored Apr 7, 2024
2 parents 0d067a1 + 284f6e4 commit d58b210
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@ jobs:
golangci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.22.2"
cache: false

- name: golangci-lint
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v4
with:
version: v1.55.1
build_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.22.2"
cache: false
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
go-version: "1.22.2"

- name: Set up QEMU
- name: Set up QEMU for cross-compilation of Docker images
uses: docker/setup-qemu-action@v2

- name: Set up Docker Buildx
Expand Down

0 comments on commit d58b210

Please sign in to comment.