Update workflow action versions#57
Merged
Merged
Conversation
Agent-Logs-Url: https://github.com/drupalforge/deployment/sessions/990bafbe-a37f-4a62-a06e-db6fcbfcb7c6 Co-authored-by: darrenoh <2293701+darrenoh@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
darrenoh
May 26, 2026 00:26
View session
darrenoh
approved these changes
May 26, 2026
There was a problem hiding this comment.
Pull request overview
This PR updates GitHub Actions references in the repository’s CI/CD workflows to newer major versions to keep pipelines current and compatible.
Changes:
- Bumped
actions/checkouttov6across test and publish workflows. - Updated Docker-related actions (
docker/login-action,docker/setup-qemu-action,docker/setup-buildx-action,docker/metadata-action) to newer major versions in the image publish workflow. - Updated artifact actions in the publish workflow (
actions/upload-artifacttov7,actions/download-artifacttov8).
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
.github/workflows/tests.yml |
Updates actions/checkout and docker/setup-buildx-action versions used by test jobs. |
.github/workflows/docker-publish-images.yml |
Updates action versions used for Docker build/publish, metadata generation, and artifact upload/download. |
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.
This pull request updates the versions of several GitHub Actions used in the workflow files to their latest major releases. These changes help ensure continued compatibility, improved security, and access to new features or bug fixes provided by the updated actions.
Workflow Action Version Updates:
General GitHub Actions:
actions/checkoutfrom v4 to v6 in.github/workflows/docker-publish-images.ymland.github/workflows/tests.yml. [1] [2] [3] [4]actions/upload-artifactfrom v4 to v7, andactions/download-artifactfrom v4 to v8 in.github/workflows/docker-publish-images.yml. [1] [2]Docker-related Actions:
docker/login-actionfrom v3 to v4,docker/setup-qemu-actionfrom v3 to v4,docker/setup-buildx-actionfrom v3 to v4, anddocker/metadata-actionfrom v5 to v6 in.github/workflows/docker-publish-images.yml. [1] [2] [3] [4]docker/setup-buildx-actionfrom v3 to v4 in.github/workflows/tests.yml.These updates are focused solely on keeping the CI/CD workflows up to date and do not affect application code or functionality.