Skip to content

Commit

Permalink
ci: Use go1.17 for lint/test until we officially support go1.18
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilogorek committed Apr 20, 2022
1 parent 4bcbfb8 commit e414bb7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/lint.yml
Expand Up @@ -18,6 +18,9 @@ jobs:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.17
- uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Expand Up @@ -38,7 +38,7 @@ jobs:
restore-keys: |
${{ runner.os }}-go-${{ matrix.go }}-
${{ runner.os }}-go-
- uses: actions/setup-go@v2
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Build
Expand Down Expand Up @@ -94,9 +94,9 @@ jobs:
# key: gopath-${{ github.ref }}
# restore-keys: |
# gopath-
- uses: actions/setup-go@v2
- uses: actions/setup-go@v3
with:
go-version: "1"
go-version: 1.17
- name: Remove Unsupported Code
run: |
# Iris requires Module mode, therefore we delete the relevant code to
Expand Down

0 comments on commit e414bb7

Please sign in to comment.