From 005a20972d5f7be3f211a6f547776de6b839d530 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sat, 1 Mar 2025 16:25:58 +0100 Subject: [PATCH] Switch to the V4 GitHub actions Because why have things keep working unchanged if you can deprecate them! --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4317d66c..a5ebb939 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,7 +25,7 @@ jobs: outputs: artifact-name: ${{ env.ARCHIVE_NAME }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # Needed for git-describe to do anything useful, the safe directory # workaround is needed for https://github.com/actions/runner/issues/2033 - name: Fetch all git history @@ -55,7 +55,7 @@ jobs: tar -caf "$ARCHIVE_NAME" yabridge rm -rf yabridge - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: ${{ env.ARCHIVE_NAME }} path: ${{ env.ARCHIVE_NAME }} @@ -70,7 +70,7 @@ jobs: run: working-directory: tools/yabridgectl steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # Needed for git-describe to do anything useful, the safe directory # workaround is needed for https://github.com/actions/runner/issues/2033 - name: Fetch all git history @@ -98,7 +98,7 @@ jobs: tar -caf "$ARCHIVE_NAME" yabridgectl rm -rf yabridgectl - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: ${{ env.ARCHIVE_NAME }} # For some reason there's no way to tell GitHub actions to run actions