From 0adbe0638e8e5b6667e546edef3ebb65d1770da7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 12:38:01 +0000 Subject: [PATCH] build(deps): bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-examples.yml | 2 +- .github/workflows/build-libraries.yml | 2 +- .github/workflows/plugin-it.yml | 6 +++--- .github/workflows/release-code.yml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-examples.yml b/.github/workflows/build-examples.yml index b4371bd3b9..2569eee0ea 100644 --- a/.github/workflows/build-examples.yml +++ b/.github/workflows/build-examples.yml @@ -37,7 +37,7 @@ jobs: run: ./gradlew clean build - name: Archive examples failure build reports - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: build-examples-reports diff --git a/.github/workflows/build-libraries.yml b/.github/workflows/build-libraries.yml index adc42bb574..8ca904907d 100644 --- a/.github/workflows/build-libraries.yml +++ b/.github/workflows/build-libraries.yml @@ -27,7 +27,7 @@ jobs: run: ./gradlew clean build - name: Archive failure build reports - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: build-reports diff --git a/.github/workflows/plugin-it.yml b/.github/workflows/plugin-it.yml index 841285680c..9ecd8ee8ed 100644 --- a/.github/workflows/plugin-it.yml +++ b/.github/workflows/plugin-it.yml @@ -25,7 +25,7 @@ jobs: - name: Android Test run: ./gradlew build - name: Archive failures - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: gradle-plugin-android-build-reports @@ -53,7 +53,7 @@ jobs: - name: Integration Tests run: ./gradlew build - name: Archive failures - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: gradle-plugin-build-reports @@ -82,7 +82,7 @@ jobs: - name: Integration Tests run: ./gradlew build - name: Archive failures - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: maven-plugin-build-reports diff --git a/.github/workflows/release-code.yml b/.github/workflows/release-code.yml index c3a90b816f..a36a00cabf 100644 --- a/.github/workflows/release-code.yml +++ b/.github/workflows/release-code.yml @@ -38,7 +38,7 @@ jobs: PLUGIN_PORTAL_SECRET: ${{ secrets.GRADLE_PUBLISH_SECRET }} - name: Archive failure build reports - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: build-reports