From b5697b35ad69f55f91824359e2dad9906c516d05 Mon Sep 17 00:00:00 2001 From: narimiran Date: Wed, 17 Jul 2024 11:28:41 +0200 Subject: [PATCH] update actions versions --- .github/workflows/nightlies.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/nightlies.yml b/.github/workflows/nightlies.yml index 692d721..2d1a6e4 100644 --- a/.github/workflows/nightlies.yml +++ b/.github/workflows/nightlies.yml @@ -304,7 +304,7 @@ jobs: fi - name: Upload source archive to artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: 'nim-${{ matrix.setting.commit }}' path: nim/output/* @@ -376,7 +376,7 @@ jobs: - name: Download generated source package if: steps.built.outputs.cache-hit != 'true' - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: 'nim-${{ matrix.setting.commit }}' path: source @@ -438,7 +438,7 @@ jobs: fi - name: Upload binaries to artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: 'binaries-${{ matrix.setting.branch }}-${{ matrix.setting.commit }}' path: '${{ steps.release.outputs.artifact_nativepath }}' @@ -475,14 +475,14 @@ jobs: - name: Download generated source package if: steps.deploy-cache.outputs.cache-hit != 'true' - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: 'nim-${{ matrix.setting.commit }}' path: source - name: Download built binaries from artifacts if: steps.deploy-cache.outputs.cache-hit != 'true' - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: 'binaries-${{ matrix.setting.branch }}-${{ matrix.setting.commit }}' path: binaries