Address GH workflow deprecation warnings#817
Merged
agibson-godaddy merged 2 commits intorelease/6.1.3from Mar 31, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates GitHub Actions workflows to eliminate deprecation warnings by modernizing action usage (upgrading action versions) and replacing the deprecated ::set-output command with the $GITHUB_OUTPUT file mechanism.
Changes:
- Update workflow dependencies to newer
actions/*versions (checkout/cache). - Replace deprecated
::set-outputusage with$GITHUB_OUTPUTfor composer cache directory output.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/prep-release.yml | Updates actions/checkout version used by the release preparation workflow. |
| .github/workflows/ci.yml | Updates actions/checkout and actions/cache versions; replaces deprecated set-output with $GITHUB_OUTPUT. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
agibson-godaddy
added a commit
that referenced
this pull request
Apr 1, 2026
* Version 6.1.3 * Address GH workflow deprecation warnings (#817) * Update action versions * Replace deprecated set-output * Update pull request template (#819) * Move WeakMap initialization to PHP 8.2+ (#818) * Move WeakMap initialization to PHP 8.2+ * Document 8.2 reasoning * Wording tweaks Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Set release date --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Ashley Gibson <99189195+agibson-godaddy@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
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.
Summary
This addresses various GH workflow deprecation warnings, including:
set-outputdeprecation.Example run with warnings: https://github.com/godaddy-wordpress/wc-plugin-framework/actions/runs/23744594999
QA
Before merge