From b8cdcb44fb569c8c0138dea3b641720c23d788e9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Jun 2026 03:08:00 +0000 Subject: [PATCH] ci: bump actions/upload-artifact from 4 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/android-screenshot.yml | 4 ++-- .github/workflows/main.yml | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/android-screenshot.yml b/.github/workflows/android-screenshot.yml index 16d33203bb..1bfcda4e63 100644 --- a/.github/workflows/android-screenshot.yml +++ b/.github/workflows/android-screenshot.yml @@ -70,13 +70,13 @@ jobs: echo "GRADLE_EXIT_CODE=$exit_code" >> $GITHUB_ENV; exit $exit_code - name: Upload logcat - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: always() with: name: android-logcat path: logcat - name: Upload Screenshot - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: always() with: name: android-screenshot-report diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3f986c9722..15a9ac7278 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -72,7 +72,7 @@ jobs: run: | ./gradlew checkstyleMain checkstyleTest --console=plain --stacktrace - name: Upload Checkstyle Reports - uses: actions/upload-artifact@v7.0.1 + uses: actions/upload-artifact@v7 if: always() with: name: checkstyle-report @@ -99,7 +99,7 @@ jobs: run: | ./gradlew -PenableSpotBugs=true spotbugsMain spotbugsTest --console=plain --stacktrace - name: Upload SpotBugs Reports - uses: actions/upload-artifact@v7.0.1 + uses: actions/upload-artifact@v7 if: always() with: name: spotbugs-report @@ -164,7 +164,7 @@ jobs: run: | ./gradlew :jme3-screenshot-tests:jme3-screenshot-tests-desktop:screenshotTest - name: Upload Test Reports - uses: actions/upload-artifact@v7.0.1 + uses: actions/upload-artifact@v7 if: always() with: name: screenshot-test-report @@ -271,14 +271,14 @@ jobs: # Upload maven artifacts to be used later by the deploy job - name: Upload maven artifacts if: matrix.deploy==true - uses: actions/upload-artifact@v7.0.1 + uses: actions/upload-artifact@v7 with: name: maven path: dist/maven - name: Upload javadoc if: matrix.deploy==true - uses: actions/upload-artifact@v7.0.1 + uses: actions/upload-artifact@v7 with: name: javadoc path: dist/javadoc @@ -286,7 +286,7 @@ jobs: # Upload release archive to be used later by the deploy job - name: Upload release if: github.event_name == 'release' && matrix.deploy==true - uses: actions/upload-artifact@v7.0.1 + uses: actions/upload-artifact@v7 with: name: release path: dist/release