Skip to content

Commit

Permalink
Update GHA deps.
Browse files Browse the repository at this point in the history
  • Loading branch information
Baliedge committed Dec 3, 2024
1 parent d96d6ce commit 5331bd6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/on-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,23 @@ jobs:
strategy:
matrix:
go-version:
- 1.18.x
- 1.19.x
- 1.21.x
- 1.22.x
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@master
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}

- run: go env

- name: Cache deps
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
Expand All @@ -43,4 +43,4 @@ jobs:
run: go mod download

- name: Test
run: go test ./...
run: go test ./...

0 comments on commit 5331bd6

Please sign in to comment.