From 1179d01a4b126786bd631c7ccb92daf622806b18 Mon Sep 17 00:00:00 2001 From: Dominik Honnef Date: Thu, 23 Jan 2025 17:57:30 +0100 Subject: [PATCH] Update CI to use actions/upload-artifact@v4 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0a6f04cf..f791a628 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: cache-key: ${{ matrix.go }} output-format: binary output-file: "./staticcheck.bin" - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: "staticcheck-${{ github.sha }}-${{ matrix.go }}-${{ matrix.os }}.bin" path: "./staticcheck.bin" @@ -45,7 +45,7 @@ jobs: with: go-version: "stable" # this downloads all artifacts of the current workflow into the current working directory, creating one directory per artifact - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 - id: glob run: | # We replace newlines with %0A, which GitHub apparently magically turns back into newlines