Skip to content

Commit 07f253e

Browse files
committed
Update actions.yml
1 parent 2f02bf0 commit 07f253e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/actions.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@ on:
1111
jobs:
1212
lint:
1313
name: Lint
14-
runs-on: ubuntu-18.04
14+
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v3
1717
- uses: golangci/golangci-lint-action@v3
1818
with:
1919
version: v1.52.2
2020
test:
2121
name: Test
22-
runs-on: ubuntu-18.04
22+
runs-on: ubuntu-latest
2323
strategy:
2424
matrix:
25-
go: [ '1.18.x', '1.19.x' ]
25+
go: [ 'stable', 'oldstable' ]
2626
steps:
2727
- uses: actions/checkout@v3
28-
- uses: actions/setup-go@v2
28+
- uses: actions/setup-go@v4
2929
with:
3030
go-version: ${{ matrix.go }}
3131
- run: go test -race -covermode=atomic -coverprofile=coverage.txt ./...

0 commit comments

Comments
 (0)