Skip to content

build(deps): bump actions/upload-artifact from 6 to 7#7339

Merged
JohnMcLear merged 1 commit intodevelopfrom
dependabot/github_actions/actions/upload-artifact-7
Mar 13, 2026
Merged

build(deps): bump actions/upload-artifact from 6 to 7#7339
JohnMcLear merged 1 commit intodevelopfrom
dependabot/github_actions/actions/upload-artifact-7

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Feb 27, 2026

Bumps 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: actions/upload-artifact@v6...v7.0.0

Commits

Dependabot compatibility score

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 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 <dependency name> 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)

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Feb 27, 2026
@JohnMcLear
Copy link
Copy Markdown
Member

/review

@qodo-free-for-open-source-projects
Copy link
Copy Markdown

qodo-free-for-open-source-projects Bot commented Mar 5, 2026

Code Review by Qodo

🐞 Bugs (1) 📘 Rule violations (0) 📎 Requirement gaps (0)

Grey Divider


Action required

1. matrix.node referenced without matrix 🐞 Bug ✓ Correctness
Description
frontend-tests.yml uses ${{ matrix.node }} in artifact names, but none of the jobs define a
strategy.matrix, so the workflow will fail expression evaluation or generate incorrect artifact
names. This affects all three Playwright jobs and can cause the artifact upload step (and job) to
fail even when tests otherwise run.
Code

.github/workflows/frontend-tests.yml[R72-75]

+      - uses: actions/upload-artifact@v7
        if: always()
        with:
          name: playwright-report-${{ matrix.node }}-chrome
Evidence
The playwright-chrome job goes directly from runs-on to steps with no strategy:/matrix:
block, yet the upload step interpolates ${{ matrix.node }}. The same pattern repeats for the other
jobs in the file. In contrast, frontend-admin-tests.yml correctly defines strategy.matrix.node
before using ${{ matrix.node }}.

.github/workflows/frontend-tests.yml[12-18]
.github/workflows/frontend-tests.yml[72-77]
.github/workflows/frontend-tests.yml[132-137]
.github/workflows/frontend-admin-tests.yml[19-23]

Agent prompt
The issue below was found during a code review. Follow the provided context and guidance below and implement a solution

### Issue description
`frontend-tests.yml` uses `${{ matrix.node }}` in artifact names, but the workflow does not define a `strategy.matrix` anywhere in those jobs. This can break the workflow due to an undefined expression context.

### Issue Context
- `frontend-admin-tests.yml` correctly defines `strategy.matrix.node` before using `${{ matrix.node }}`.
- `frontend-tests.yml` has three jobs (chrome/firefox/webkit) that use `${{ matrix.node }}` but have no matrix.

### Fix Focus Areas
- .github/workflows/frontend-tests.yml[12-18]
- .github/workflows/frontend-tests.yml[72-77]
- .github/workflows/frontend-tests.yml[132-137]
- .github/workflows/frontend-tests.yml[196-201]

### Suggested change
Pick one:
1) **Remove** `matrix.node` from the artifact `name` fields (replace with `${{ github.job }}` or `playwright-report-chrome|firefox|webkit`).
2) **Add** `strategy.matrix.node: [...]` to each job and also add/use a node setup step so `matrix.node` is meaningful.

ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools


Grey Divider

ⓘ The new review experience is currently in Beta. Learn more

Grey Divider

Qodo Logo

Comment on lines +72 to 75
- uses: actions/upload-artifact@v7
if: always()
with:
name: playwright-report-${{ matrix.node }}-chrome
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Action required

1. Matrix.node referenced without matrix 🐞 Bug ✓ Correctness

frontend-tests.yml uses ${{ matrix.node }} in artifact names, but none of the jobs define a
strategy.matrix, so the workflow will fail expression evaluation or generate incorrect artifact
names. This affects all three Playwright jobs and can cause the artifact upload step (and job) to
fail even when tests otherwise run.
Agent Prompt
### Issue description
`frontend-tests.yml` uses `${{ matrix.node }}` in artifact names, but the workflow does not define a `strategy.matrix` anywhere in those jobs. This can break the workflow due to an undefined expression context.

### Issue Context
- `frontend-admin-tests.yml` correctly defines `strategy.matrix.node` before using `${{ matrix.node }}`.
- `frontend-tests.yml` has three jobs (chrome/firefox/webkit) that use `${{ matrix.node }}` but have no matrix.

### Fix Focus Areas
- .github/workflows/frontend-tests.yml[12-18]
- .github/workflows/frontend-tests.yml[72-77]
- .github/workflows/frontend-tests.yml[132-137]
- .github/workflows/frontend-tests.yml[196-201]

### Suggested change
Pick one:
1) **Remove** `matrix.node` from the artifact `name` fields (replace with `${{ github.job }}` or `playwright-report-chrome|firefox|webkit`).
2) **Add** `strategy.matrix.node: [...]` to each job and also add/use a node setup step so `matrix.node` is meaningful.

ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools

@JohnMcLear
Copy link
Copy Markdown
Member

@dependabot recreate

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@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] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/github_actions/actions/upload-artifact-7 branch from 6a8406d to c3f3458 Compare March 13, 2026 11:09
@JohnMcLear JohnMcLear merged commit 1b3b23b into develop Mar 13, 2026
40 checks passed
@JohnMcLear JohnMcLear deleted the dependabot/github_actions/actions/upload-artifact-7 branch March 13, 2026 11:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant