From 52833f7fb3a8ee784e25cdebdcdc2a0eadd4cc41 Mon Sep 17 00:00:00 2001 From: Gent Semaj Date: Thu, 5 Sep 2024 13:17:49 -0400 Subject: [PATCH] Fix CI/CD --- .github/workflows/check-builds.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check-builds.yaml b/.github/workflows/check-builds.yaml index ec65030..1d967bc 100644 --- a/.github/workflows/check-builds.yaml +++ b/.github/workflows/check-builds.yaml @@ -52,7 +52,7 @@ jobs: Copy-Item -Path "config.ini" -Destination "bin" shell: pwsh - name: Upload build artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: 'ubuntu22_04-bin-x64-${{ env.SHORT_SHA }}' path: bin @@ -106,7 +106,7 @@ jobs: } shell: pwsh - name: Upload build artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: 'windows-vs2019-bin-x64-${{ env.SHORT_SHA }}' path: bin @@ -127,7 +127,7 @@ jobs: GITDESC=$(git describe --tags) mkdir $GITDESC echo "ARTDIR=$GITDESC" >> $GITHUB_ENV - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: path: ${{ env.ARTDIR }} - name: Upload artifacts