Skip to content

Commit a0522ff

Browse files
authored
Merge pull request #45 from moznion/maintenance/github_actions_20250422
Maintenance GitHub Actions workflow
2 parents 0876f62 + d4fe265 commit a0522ff

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/check.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,27 @@ jobs:
66
name: Check
77
strategy:
88
matrix:
9-
go-version: [1.18.x, 1.19.x, 1.20.x, 1.21.x]
9+
go-version: [1.22.x, 1.23.x, 1.24.x]
1010
os: [ubuntu-latest]
1111
runs-on: ${{ matrix.os }}
1212
steps:
1313
- name: Set up Go
14-
uses: actions/setup-go@v4
14+
uses: actions/setup-go@v5
1515
with:
1616
go-version: ${{ matrix.go-version }}
1717
- name: check out
1818
uses: actions/checkout@v4
1919
- name: install tools
2020
run: "go install golang.org/x/tools/cmd/goimports@latest"
2121
- name: golangci-lint
22-
uses: golangci/golangci-lint-action@v3
22+
uses: golangci/golangci-lint-action@v7
2323
with:
2424
version: latest
2525
args: --timeout=5m
2626
- name: check
2727
run: make ci-check
2828
- name: upload coverage
29-
uses: codecov/codecov-action@v3
29+
uses: codecov/codecov-action@v5
3030
with:
3131
token: ${{ secrets.CODECOV_TOKEN }}
3232

0 commit comments

Comments
 (0)