Skip to content

Commit

Permalink
remove 1.20 from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bbengfort committed Jul 22, 2024
1 parent 52cf447 commit bcc3c28
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: 1.22.x

Expand All @@ -33,7 +33,7 @@ jobs:
strategy:
fail-fast: true
matrix:
go-version: [1.20.x, 1.21.x, 1.22.x]
go-version: [1.21.x, 1.22.x]
env:
GOPATH: ${{ github.workspace }}/go
GOBIN: ${{ github.workspace }}/go/bin
Expand All @@ -43,12 +43,12 @@ jobs:
working-directory: ${{ env.GOPATH }}/src/github.com/trisacrypto/trisa
steps:
- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}

- name: Cache Speedup
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
Expand Down Expand Up @@ -90,12 +90,12 @@ jobs:
working-directory: ${{ env.GOPATH }}/src/github.com/trisacrypto/trisa
steps:
- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: 1.22.x

- name: Cache Speedup
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
Expand Down

0 comments on commit bcc3c28

Please sign in to comment.