Skip to content

Commit

Permalink
ci: upgrade to Go 1.17 and use cache now that go.sum exists
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
agilgur5 committed Aug 28, 2022
1 parent 548ba40 commit a78ee48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
go-version: ["1.14"]
go-version: ["1.17"]
os: [ubuntu-latest, macOS-latest]

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

0 comments on commit a78ee48

Please sign in to comment.