From 5331bd6f29bdb42255b9f375df60036edbc3ed1b Mon Sep 17 00:00:00 2001 From: Shawn Poulson Date: Tue, 3 Dec 2024 18:06:28 -0500 Subject: [PATCH] Update GHA deps. --- .github/workflows/on-pull-request.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/on-pull-request.yaml b/.github/workflows/on-pull-request.yaml index 756c893..43ef83e 100644 --- a/.github/workflows/on-pull-request.yaml +++ b/.github/workflows/on-pull-request.yaml @@ -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') }} @@ -43,4 +43,4 @@ jobs: run: go mod download - name: Test - run: go test ./... \ No newline at end of file + run: go test ./...