Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
with:
go-version: '1.24'
- name: golangci-lint
# NOTE: https://github.com/golangci/golangci-lint-action/releases/tag/v6.5.0
uses: golangci/golangci-lint-action@2226d7cb06a077cd73e56eedd38eecad18e5d837
# NOTE: https://github.com/golangci/golangci-lint-action/releases/tag/v6.5.2
uses: golangci/golangci-lint-action@55c2c1448f86e01eaae002a5a3a9624417608d84
with:
version: v1.64.5

Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
strategy:
fail-fast: false
matrix:
version: [ '1.22', '1.23', '1.24' ]
version: [ '1.23', '1.24' ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
Expand All @@ -62,7 +62,7 @@ jobs:
run: go test ./... -race -coverprofile=coverage.out -covermode=atomic
- name: Upload coverage to Codecov
if: matrix.version == '1.24'
# NOTE: https://github.com/codecov/codecov-action/releases/v5.4.2
uses: codecov/codecov-action@ad3126e916f78f00edff4ed0317cf185271ccc2d
# NOTE: https://github.com/codecov/codecov-action/releases/v5.4.3
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24
with:
token: ${{ secrets.CODECOV_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Run coverage
run: go test ./... -race -coverprofile=coverage.out -covermode=atomic
- name: Upload coverage to Codecov
# NOTE: https://github.com/codecov/codecov-action/releases/v5.4.2
uses: codecov/codecov-action@ad3126e916f78f00edff4ed0317cf185271ccc2d
# NOTE: https://github.com/codecov/codecov-action/releases/v5.4.3
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24
with:
token: ${{ secrets.CODECOV_TOKEN }}