From 867f83caee0a86a258384df8e218750c0914207b Mon Sep 17 00:00:00 2001 From: Maxime Lagresle Date: Mon, 4 Nov 2024 09:20:44 +0100 Subject: [PATCH] upgrade actions --- .github/workflows/tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bb0f932..394584f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -56,26 +56,26 @@ jobs: uses: actions/checkout@v3 - name: Set up Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version: '>=1.22.0' # Cache go build cache, used to speedup go test - name: Go Build Cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.go-cache-paths.outputs.GOCACHE }} key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }} # Cache go mod cache, used to speedup builds - name: Go Mod Cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.go-cache-paths.outputs.GOMODCACHE }} key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }} - name: Binaries Cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.binaries.outputs.LOCAL_BINARIES }} key: ${{ steps.binaries.outputs.BWCLI_VERSION }}