From 1c1f531a98a9b3ef152d00e935c9235bf272fcdc Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Fri, 29 Dec 2023 17:48:33 +0100 Subject: [PATCH] Update actions [skip cd] --- .github/workflows/go.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 4e72b76b..f301d098 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -9,10 +9,10 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: "1.21" cache: true @@ -32,14 +32,15 @@ jobs: test: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: go-version: ["1.20", "1.21"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} cache: true