From 689282038cba064245e34576b81c7b5500b242af Mon Sep 17 00:00:00 2001 From: Oleksandr Karpovich Date: Wed, 11 Sep 2024 10:12:59 +0200 Subject: [PATCH 1/2] Update actions/upload-artifact to v4 According to https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/ --- .github/workflows/gradle-plugin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gradle-plugin.yml b/.github/workflows/gradle-plugin.yml index 53a51f71963..90f79e05fc5 100644 --- a/.github/workflows/gradle-plugin.yml +++ b/.github/workflows/gradle-plugin.yml @@ -33,7 +33,7 @@ jobs: ./gradlew assemble ./gradlew --continue :preview-rpc:test :compose:test ':compose:test-Gradle(${{ matrix.gradle }})-Agp(${{ matrix.agp }})' - name: Upload Reports - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: Test-Reports path: gradle-plugins/compose/build/reports From 13c6210a27502feba5d68512b9bc8932bda54a90 Mon Sep 17 00:00:00 2001 From: Oleksandr Karpovich Date: Wed, 11 Sep 2024 10:27:23 +0200 Subject: [PATCH 2/2] use v3 for now due to https://github.com/actions/upload-artifact/issues/478 --- .github/workflows/gradle-plugin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gradle-plugin.yml b/.github/workflows/gradle-plugin.yml index 90f79e05fc5..f0f7227cd97 100644 --- a/.github/workflows/gradle-plugin.yml +++ b/.github/workflows/gradle-plugin.yml @@ -33,7 +33,7 @@ jobs: ./gradlew assemble ./gradlew --continue :preview-rpc:test :compose:test ':compose:test-Gradle(${{ matrix.gradle }})-Agp(${{ matrix.agp }})' - name: Upload Reports - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: Test-Reports path: gradle-plugins/compose/build/reports