Skip to content

Commit

Permalink
upgrade all ci to latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
gempir committed Sep 27, 2024
1 parent 477f613 commit fb07674
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ jobs:

strategy:
matrix:
go: [1.16, 1.17]
go: [1.22, 1.23]

steps:
- name: Set up Go
uses: actions/setup-go@v1
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Get dependencies
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/goveralls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ jobs:

strategy:
matrix:
go: [1.16, 1.17]
go: [1.22, 1.23]

steps:
- name: Set up Go
uses: actions/setup-go@v1
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}

- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: go test -coverprofile=coverage.out
- uses: shogo82148/actions-goveralls@v1
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ jobs:
name: runner / golangci-lint (pre-build docker image)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: golangci-lint
uses: golangci/golangci-lint-action@v2.3.0
uses: golangci/golangci-lint-action@v6
with:
version: v1.42
version: v1.61

args: --new-from-rev=e0a5614e47d349897~0

0 comments on commit fb07674

Please sign in to comment.