From e85eb0023a8467eda733c4bcd98c958811ee9bbe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 23:20:08 -0500 Subject: [PATCH] build(deps): bump actions/upload-artifact from 6 to 7 (#4127) 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 6 to 7.
Release notes

Sourced from actions/upload-artifact's releases.

v7.0.0

v7 What's new

Direct Uploads

Adds support for uploading single files directly (unzipped). Callers can set the new archive parameter to false to skip zipping the file during upload. Right now, we only support single files. The action will fail if the glob passed resolves to multiple files. The name parameter is also ignored with this setting. Instead, the name of the artifact will be the name of the uploaded file.

ESM

To support new versions of the @actions/* packages, we've upgraded the package to ESM.

What's Changed

New Contributors

Full Changelog: https://github.com/actions/upload-artifact/compare/v6...v7.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=6&new-version=7)](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 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 6879608f2e..70e7c8ff01 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@v6 + uses: actions/upload-artifact@v7 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 009b7554b9..a19be9453b 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@v6 + uses: actions/upload-artifact@v7 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 d30e29db9d..ee4ff9f8cb 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@v6 + uses: actions/upload-artifact@v7 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 6b4125ed0a..c7a54797ee 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@v6 + uses: actions/upload-artifact@v7 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 ff09411d4c..aaf2a23996 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@v6 + uses: actions/upload-artifact@v7 if: ${{ inputs.uploadArtifacts }} with: name: opengoal-windows-${{ inputs.cachePrefix }}