From a91451359436c5e609623192fda07ebb80db6e39 Mon Sep 17 00:00:00 2001 From: Andreas Deininger Date: Sat, 20 Apr 2024 00:01:34 +0200 Subject: [PATCH] Bump GitHub workflow actions to their latest versions (#22) This PR bumps GitHub workflow actions to their latest versions. --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e42926d..cb5d5b3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,15 +9,15 @@ jobs: build: strategy: matrix: - go-version: [1.17.x] + go-version: '1.20' os: [ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - name: Install Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v4 with: go-version: ${{ matrix.go-version }} - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Test run: go test -race -v .