From ac56f5abd17f6b3dcf8db3363810c604b1043558 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Nov 2025 03:07:29 +0000 Subject: [PATCH] Bump actions/upload-artifact from 4 to 5 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/jira-issue-pr.yml | 2 +- .github/workflows/visual-assets-update-all.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/jira-issue-pr.yml b/.github/workflows/jira-issue-pr.yml index ad8aac129..7eb42c286 100644 --- a/.github/workflows/jira-issue-pr.yml +++ b/.github/workflows/jira-issue-pr.yml @@ -216,7 +216,7 @@ jobs: echo '}' >> jira.json - name: Upload jira.json - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: jira.json path: | diff --git a/.github/workflows/visual-assets-update-all.yml b/.github/workflows/visual-assets-update-all.yml index 34f86e808..3a5cea139 100644 --- a/.github/workflows/visual-assets-update-all.yml +++ b/.github/workflows/visual-assets-update-all.yml @@ -42,7 +42,7 @@ jobs: - name: Upload artifact ignore-list if: (github.event_name == 'issue_comment' && steps.check.outputs.triggered == 'true') || github.event_name != 'issue_comment' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: ignore-list path: ignore-list.txt @@ -83,7 +83,7 @@ jobs: - name: Upload artifact report if: (github.event_name == 'issue_comment' && needs.ignore-list.outputs.triggered == 'true') || github.event_name != 'issue_comment' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: report path: report.md @@ -98,7 +98,7 @@ jobs: - name: Upload artifact pr-body if: (github.event_name == 'issue_comment' && needs.ignore-list.outputs.triggered == 'true') || github.event_name != 'issue_comment' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: pr-body path: pr-body.txt