Skip to content

Commit a78ee48

Browse files
committed
ci: upgrade to Go 1.17 and use cache now that go.sum exists
- this should fix the failing CI on this PR - this PR was made before my Travis -> GH Actions migration PR was merged - now that it's merged, I've rebased this PR on top and made tiny adjustments
1 parent 548ba40 commit a78ee48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ${{ matrix.os }}
1313
strategy:
1414
matrix:
15-
go-version: ["1.14"]
15+
go-version: ["1.17"]
1616
os: [ubuntu-latest, macOS-latest]
1717

1818
steps:
@@ -22,7 +22,7 @@ jobs:
2222
uses: actions/setup-go@v3
2323
with:
2424
go-version: ${{ matrix.go-version }}
25-
# cache: true # TODO: cache needs path to go.sum per https://github.com/actions/setup-go#caching-dependency-files-and-build-outputs
25+
cache: true
2626
- name: Install
2727
run: |
2828
bash --version ; type bash

0 commit comments

Comments
 (0)