From 8d68a612ea40c7d1021ff85c1744d16efaf063e0 Mon Sep 17 00:00:00 2001 From: Grische <2787581+grische@users.noreply.github.com> Date: Mon, 13 Jan 2025 11:15:31 +0100 Subject: [PATCH] github: pin download/upload artifacts to v4 --- .github/workflows/firmware.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/firmware.yml b/.github/workflows/firmware.yml index f12ec95..9a094d3 100644 --- a/.github/workflows/firmware.yml +++ b/.github/workflows/firmware.yml @@ -62,7 +62,7 @@ jobs: make BROKEN=1 GLUON_TARGETS=${{ matrix.target }} BUILD_NUMBER=${{ github.event.pull_request.number && format('pr{0}', github.event.pull_request.number) || github.run_id && format('run{0}', github.run_id) }} V=s echo "status=success" >> $GITHUB_OUTPUT - name: Upload firmware ${{ matrix.target }} - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@v4 # v4 if: steps.compile.outputs.status == 'success' with: name: ${{ matrix.target }}_output @@ -75,7 +75,7 @@ jobs: if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') steps: - name: Download all artifacts - uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7 + uses: actions/download-artifact@v4 # v4 - name: Display structure of artifacts run: ls -R - name: Create tar.gz files