Skip to content

Commit

Permalink
v4 -> v5
Browse files Browse the repository at this point in the history
  • Loading branch information
lainio committed Oct 9, 2024
1 parent 9ba834d commit 0b0393a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ jobs:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: golangci-lint
uses: golangci/golangci-lint-action@v4
uses: golangci/golangci-lint-action@v5
with:
version: latest
args: --timeout=5m
Expand All @@ -19,25 +19,25 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: setup go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: test
run: make test
test-cov:
runs-on: ubuntu-latest
steps:
- name: setup
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: 1.19.x
- name: checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: test
run: make test_cov_out
- name: upload
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
files: ./coverage.txt

0 comments on commit 0b0393a

Please sign in to comment.