From 34d812b5f4199ca57056aa6b3c2f56d8c174efeb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 31 Dec 2025 21:43:25 -0500 Subject: [PATCH] build(deps): bump actions/upload-artifact from 5 to 6 (#4114) 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 5 to 6.
Release notes

Sourced from actions/upload-artifact's releases.

v6.0.0

v6 - What's new

[!IMPORTANT] actions/upload-artifact@v6 now runs on Node.js 24 (runs.using: node24) and requires a minimum Actions Runner version of 2.327.1. If you are using self-hosted runners, ensure they are updated before upgrading.

Node.js 24

This release updates the runtime to Node.js 24. v5 had preliminary support for Node.js 24, however this action was by default still running on Node.js 20. Now this action by default will run on Node.js 24.

What's Changed

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

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/upload-artifact&package-manager=github_actions&previous-version=5&new-version=6)](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 1b402811bc..6879608f2e 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@v5 + uses: actions/upload-artifact@v6 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 d51531f368..009b7554b9 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@v5 + uses: actions/upload-artifact@v6 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 f4cc705bb4..d30e29db9d 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@v5 + uses: actions/upload-artifact@v6 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 804e13646d..6b4125ed0a 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@v5 + uses: actions/upload-artifact@v6 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 a9e3775fdc..ff09411d4c 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@v5 + uses: actions/upload-artifact@v6 if: ${{ inputs.uploadArtifacts }} with: name: opengoal-windows-${{ inputs.cachePrefix }}