From 82e56200114bfdbbc84eb1d3123052cd4bca2ade Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Nov 2025 16:57:45 -0500 Subject: [PATCH] build(deps): bump actions/upload-artifact from 4 to 5 (#4064) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5.
Release notes

Sourced from actions/upload-artifact's releases.

v5.0.0

What's Changed

BREAKING CHANGE: this update supports Node v24.x. This is not a breaking change per-se but we're treating it as such.

New Contributors

Full Changelog: https://github.com/actions/upload-artifact/compare/v4...v5.0.0

v4.6.2

What's Changed

New Contributors

Full Changelog: https://github.com/actions/upload-artifact/compare/v4...v4.6.2

v4.6.1

What's Changed

Full Changelog: https://github.com/actions/upload-artifact/compare/v4...v4.6.1

v4.6.0

What's Changed

Full Changelog: https://github.com/actions/upload-artifact/compare/v4...v4.6.0

v4.5.0

What's Changed

New Contributors

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/upload-artifact&package-manager=github_actions&previous-version=4&new-version=5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/inform-pages-repo.yaml | 2 +- .github/workflows/linux-build-clang.yaml | 2 +- .github/workflows/macos-build-arm.yaml | 2 +- .github/workflows/macos-build.yaml | 2 +- .github/workflows/windows-build-clang.yaml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/inform-pages-repo.yaml b/.github/workflows/inform-pages-repo.yaml index cdd63a4073..b325ee7f8e 100644 --- a/.github/workflows/inform-pages-repo.yaml +++ b/.github/workflows/inform-pages-repo.yaml @@ -67,7 +67,7 @@ jobs: python ./scripts/ci/docs/append-file-docs.py - name: Upload Docs Artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: opengoal-docs if-no-files-found: error diff --git a/.github/workflows/linux-build-clang.yaml b/.github/workflows/linux-build-clang.yaml index 5c9af976cd..44c21a290a 100644 --- a/.github/workflows/linux-build-clang.yaml +++ b/.github/workflows/linux-build-clang.yaml @@ -76,7 +76,7 @@ jobs: strip ./build/lsp/lsp - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: ${{ inputs.uploadArtifacts }} with: name: opengoal-linux-${{ inputs.cachePrefix }} diff --git a/.github/workflows/macos-build-arm.yaml b/.github/workflows/macos-build-arm.yaml index c31240c194..83153da147 100644 --- a/.github/workflows/macos-build-arm.yaml +++ b/.github/workflows/macos-build-arm.yaml @@ -69,7 +69,7 @@ jobs: strip ./build/lsp/lsp - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: ${{ inputs.uploadArtifacts }} with: name: opengoal-macos-arm-${{ inputs.cachePrefix }} diff --git a/.github/workflows/macos-build.yaml b/.github/workflows/macos-build.yaml index 76845630a8..1b7e37bb00 100644 --- a/.github/workflows/macos-build.yaml +++ b/.github/workflows/macos-build.yaml @@ -79,7 +79,7 @@ jobs: strip ./build/lsp/lsp - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: ${{ inputs.uploadArtifacts }} with: name: opengoal-macos-${{ inputs.cachePrefix }} diff --git a/.github/workflows/windows-build-clang.yaml b/.github/workflows/windows-build-clang.yaml index f0b1b574f7..e49ad6fc05 100644 --- a/.github/workflows/windows-build-clang.yaml +++ b/.github/workflows/windows-build-clang.yaml @@ -76,7 +76,7 @@ jobs: run: ./build/bin/goalc-test.exe --gtest_color=yes --gtest_brief=0 --gtest_filter="-*MANUAL_TEST*" - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: ${{ inputs.uploadArtifacts }} with: name: opengoal-windows-${{ inputs.cachePrefix }}