From d8e34575527ecbc99ef9d0e7f64fa269064eec45 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 Feb 2026 17:23:03 +0000 Subject: [PATCH] chore(deps): bump actions/upload-artifact from 6 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...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/ci.yml | 6 +++--- .github/workflows/docker-publish.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6811f72f..42d3f1dd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -113,7 +113,7 @@ jobs: - name: Upload logs artifact if: failure() - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: exist-${{ matrix.exist-version }}-log path: exist.log @@ -133,7 +133,7 @@ jobs: - name: Upload cypress screenshots if: failure() - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: cypress-screenshots-${{ matrix.exist-version }}-${{ matrix.java-version }}-${{ matrix.experimental && 'experimental' || 'stable' }} path: test/cypress/screenshots/ @@ -141,7 +141,7 @@ jobs: # Upload build artifacts - name: Upload build artifacts if: success() - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: xar-package-${{ matrix.exist-version }}-${{ matrix.java-version }}-${{ matrix.experimental && 'experimental' || 'stable' }} path: build/*.xar diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 393ac2ec..f13f3404 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -102,7 +102,7 @@ jobs: - name: Publish log as artifact if: failure() - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: exist-${{matrix.EXIST_BASE}}-teipublisher.log path: ./exist.log