Skip to content

Commit 523ebb9

Browse files
authored
Merge pull request #106 from kolyshkin/go1.18rc
ci: add go 1.18, drop 1.16
2 parents d75da0c + a7c7190 commit 523ebb9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Diff for: .github/workflows/test.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ jobs:
44
test:
55
strategy:
66
matrix:
7-
go-version: [1.16.x, 1.17.x]
7+
go-version: [1.17.x, 1.18.x]
88
platform: [ubuntu-20.04, windows-latest, macos-11]
99
runs-on: ${{ matrix.platform }}
1010
steps:
1111
- name: Install Go
12-
uses: actions/setup-go@v2
12+
uses: actions/setup-go@v3
1313
with:
1414
go-version: ${{ matrix.go-version }}
1515
- name: Checkout code
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v3
1717
- name: Lint
1818
run: make lint
1919
- name: Cross build
@@ -27,7 +27,7 @@ jobs:
2727
# nested virtualization is only available on macOS hosts
2828
runs-on: macos-10.15
2929
steps:
30-
- uses: actions/checkout@v2
30+
- uses: actions/checkout@v3
3131
- name: prepare vagrant
3232
run: |
3333
ln -sf .ci/Vagrantfile.fedora Vagrantfile

Diff for: Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ lint: $(BINDIR)/golangci-lint
4141
done
4242

4343
$(BINDIR)/golangci-lint: $(BINDIR)
44-
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(BINDIR) v1.43.0
44+
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(BINDIR) v1.45.2
4545

4646
$(BINDIR):
4747
mkdir -p $(BINDIR)

0 commit comments

Comments
 (0)