Closed ericcornelissen closed 2 years ago
audit.yml
workflow which, as of v2.3.0, still uses @actions/core@v1.9.1
as well. There's an open Pull Request in the repository to update this. As such, it is expected this will be addressed automatically by the regular Renovate Pull Requests.
Task
Description
All GitHub Actions workflows should be updated to not rely on
set-output
orsave-state
which, per the following warnings that may be seen on current workflow runs (example), have been deprecated:At the time of writing, this warning can be seen on runs of the following workflows of this project:
code-analysis.yml
code-checks.yml
code-analysis.yml
This is due to the use of
@actions/core@v1.9.1
in v2.1.27 of the CodeQL Action. This is already fixed in the CodeQL Action, but not yet released. This will be addressed automatically by the regular Renovate Pull Requests.code-checks.yml
This is due to the use of
echo "::set-output name=xxx::yyy"
in embedded scripts in the "Determine jobs" job. This must be addressed manually.Suggested solution
Based on https://github.com/github/codeql-action/compare/v2.1.27...v2.1.28 it looks like changing the workflow as follows should work:
Related
152
392
399
412