chore: bump actions/* to latest majors#10
Open
vidiecan wants to merge 1 commit into
Open
Conversation
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
Bumps all actions/*-namespaced GitHub Actions to claimed latest majors across the project's workflows, and reworks artifact upload/download to satisfy the v4+ artifact-action semantics (unique names per matrix leg; explicit name:/path: on download).
Changes:
- Bumps
checkout,setup-node,cache,upload-artifact,download-artifact, andadd-to-projectto new majors acrossbuild.yml,codescan.yml,docker.yml, andissue_opened.yml. - Suffixes
e2e-test-videosande2e-test-screenshotsartifact names with-node-${{ matrix.node-version }}to avoid the v4+ name-collision error across matrix legs. - Adds explicit
name:+path:to thedownload-artifactstep in thecodecovjob so only the coverage artifact is fetched.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| .github/workflows/build.yml | Bumps checkout/setup-node/cache/upload-artifact/download-artifact; makes matrix artifact names unique; specifies coverage artifact name/path. |
| .github/workflows/codescan.yml | Bumps actions/checkout to v6. |
| .github/workflows/docker.yml | Bumps actions/checkout to v6. |
| .github/workflows/issue_opened.yml | Bumps actions/add-to-project from v0.5.0 to v2. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps the
actions/*workflow deps actually used in this repo to current major (verified 2026-05-17):actions/add-to-projectactions/cacheactions/checkoutactions/download-artifactactions/setup-nodeactions/upload-artifactBreaking-change rework
upload-artifact@v4+no longer merges artifacts with the same name across matrix legs — added-node-${{ matrix.node-version }}suffix toe2e-test-videosande2e-test-screenshotsto keep them unique.download-artifact@v3(noname:) downloaded every artifact; v4+ requires aname:orpattern:— specifiedname: dspace-angular coverage reportwithpath: coveragesince that's the only artifact codecov needs.CI note:
build.yml/codescan.yml/docker.ymlrun on push + PR.issue_opened.ymladd-to-project bump is not exercised here.