Skip to content

Commit 30deade

Browse files
committed
bump ci version & go1.19 fmt ./...
1 parent 2d1de76 commit 30deade

File tree

2 files changed

+19
-12
lines changed

2 files changed

+19
-12
lines changed

.github/workflows/ci.yaml

+12-7
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,27 @@ on:
66

77
jobs:
88
lint:
9+
name: lint
910
runs-on: ubuntu-latest
1011
steps:
11-
- uses: actions/checkout@v2
12-
12+
- uses: actions/setup-go@v3
13+
with:
14+
go-version: 1.18
15+
- uses: actions/checkout@v3
1316
- name: golangci-lint
14-
uses: golangci/golangci-lint-action@v2
17+
uses: golangci/golangci-lint-action@v3
18+
with:
19+
version: latest
1520

1621
test:
1722
runs-on: ubuntu-latest
1823
strategy:
1924
matrix:
2025
go: ["1.17.x", "1.18.x"]
2126
steps:
22-
- uses: actions/checkout@v2
27+
- uses: actions/checkout@v3
2328

24-
- uses: actions/setup-go@v2
29+
- uses: actions/setup-go@v3
2530
with:
2631
go-version: ${{ matrix.go }}
2732

@@ -55,13 +60,13 @@ jobs:
5560
# 3. When the workflow is triggered by a tag with `v` prefix
5661
if: ${{ success() && github.repository == 'golang-migrate/migrate' && startsWith(github.ref, 'refs/tags/v') }}
5762
steps:
58-
- uses: actions/checkout@v2
63+
- uses: actions/checkout@v3
5964
with:
6065
fetch-depth: 0
6166
- uses: ruby/setup-ruby@v1
6267
with:
6368
ruby-version: 2.7
64-
- uses: actions/setup-go@v2
69+
- uses: actions/setup-go@v3
6570
with:
6671
go-version: "1.18.x"
6772

source/go_bindata/examples/migrations/bindata.go

+7-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)