Switch to the V4 GitHub actions

Because why have things keep working unchanged if you can deprecate
them!
This commit is contained in:
Robbert van der Helm
2025-03-01 16:25:58 +01:00
parent 74a76e60b7
commit 005a20972d
+4 -4
View File
@@ -25,7 +25,7 @@ jobs:
outputs: outputs:
artifact-name: ${{ env.ARCHIVE_NAME }} artifact-name: ${{ env.ARCHIVE_NAME }}
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
# Needed for git-describe to do anything useful, the safe directory # Needed for git-describe to do anything useful, the safe directory
# workaround is needed for https://github.com/actions/runner/issues/2033 # workaround is needed for https://github.com/actions/runner/issues/2033
- name: Fetch all git history - name: Fetch all git history
@@ -55,7 +55,7 @@ jobs:
tar -caf "$ARCHIVE_NAME" yabridge tar -caf "$ARCHIVE_NAME" yabridge
rm -rf yabridge rm -rf yabridge
- uses: actions/upload-artifact@v3 - uses: actions/upload-artifact@v4
with: with:
name: ${{ env.ARCHIVE_NAME }} name: ${{ env.ARCHIVE_NAME }}
path: ${{ env.ARCHIVE_NAME }} path: ${{ env.ARCHIVE_NAME }}
@@ -70,7 +70,7 @@ jobs:
run: run:
working-directory: tools/yabridgectl working-directory: tools/yabridgectl
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
# Needed for git-describe to do anything useful, the safe directory # Needed for git-describe to do anything useful, the safe directory
# workaround is needed for https://github.com/actions/runner/issues/2033 # workaround is needed for https://github.com/actions/runner/issues/2033
- name: Fetch all git history - name: Fetch all git history
@@ -98,7 +98,7 @@ jobs:
tar -caf "$ARCHIVE_NAME" yabridgectl tar -caf "$ARCHIVE_NAME" yabridgectl
rm -rf yabridgectl rm -rf yabridgectl
- uses: actions/upload-artifact@v3 - uses: actions/upload-artifact@v4
with: with:
name: ${{ env.ARCHIVE_NAME }} name: ${{ env.ARCHIVE_NAME }}
# For some reason there's no way to tell GitHub actions to run actions # For some reason there's no way to tell GitHub actions to run actions