From d02152712a581c55dce9c77116ffdeb4d8e5e598 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 29 Dec 2023 18:06:43 +0000 Subject: [PATCH] Update actions/upload-artifact action to v4 --- .github/workflows/pr.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index bdf39b3b..ab360cf6 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -25,7 +25,7 @@ jobs: - name: Execute Gradle build run: ./gradlew test installDist - name: Archive production artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: binaries path: build/install diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8607ce67..8ee29f55 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,13 +21,13 @@ jobs: - name: Execute Gradle build run: ./gradlew -PprojectVersion=${{ github.ref_name }} test assemble installDist - name: Archive binaries - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: binaries path: build/install retention-days: 1 - name: Archive distribution - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: distribution path: build/distributions