From 39f0d6aa8bd35f7d414d1df46df8f2e49d82badf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20MARQUET?= <72651575+BreizhHardware@users.noreply.github.com> Date: Thu, 12 Jun 2025 20:09:10 +0200 Subject: [PATCH] refactor(rust): upgrade GitHub Actions to use version 4 of upload and download artifacts --- .github/workflows/create_dev.yml | 4 ++-- .github/workflows/create_release.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/create_dev.yml b/.github/workflows/create_dev.yml index 58f261a..799b9ae 100644 --- a/.github/workflows/create_dev.yml +++ b/.github/workflows/create_dev.yml @@ -45,7 +45,7 @@ jobs: cp target/${{ matrix.target }}/release/github-ntfy release/${{ matrix.name }} - name: Upload binaire comme artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.name }} path: release/${{ matrix.name }} @@ -72,7 +72,7 @@ jobs: password: ${{ secrets.DOCKER_PASSWORD }} - name: Télécharger tous les binaires - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: path: binaries diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index 330ccf5..9919695 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -77,7 +77,7 @@ jobs: cp target/${{ matrix.target }}/release/github-ntfy release/${{ matrix.name }} - name: Upload binaire comme artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.name }} path: release/${{ matrix.name }} @@ -104,7 +104,7 @@ jobs: password: ${{ secrets.DOCKER_PASSWORD }} - name: Télécharger tous les binaires - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: path: binaries @@ -137,7 +137,7 @@ jobs: uses: actions/checkout@v4 - name: Télécharger tous les binaires - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: path: binaries