Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Removes deprecated set-output usage
For more information see
https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/

This change bumps a bunch of the internal actions packages. Note that
the only required version change is `actions/core` to 1.10.0. The others
are not required, but seem like a reasonable idea.

It also changes all of the workflows that use `set-output`.
Andrew Eisenberg committed Oct 13, 2022
1 parent e2481f7 commit eba983f
Showing 44 changed files with 518 additions and 1,187 deletions.
10 changes: 5 additions & 5 deletions .github/prepare-test/action.yml
@@ -22,17 +22,17 @@ runs:
run: |
if [[ ${{ inputs.version }} == "nightly-latest" ]]; then
export LATEST=`gh release list --repo dsp-testing/codeql-cli-nightlies -L 1 | cut -f 3`
echo "::set-output name=tools-url::https://github.com/dsp-testing/codeql-cli-nightlies/releases/download/$LATEST/codeql-bundle.tar.gz"
echo "tools-url=https://github.com/dsp-testing/codeql-cli-nightlies/releases/download/$LATEST/codeql-bundle.tar.gz" >> $GITHUB_OUTPUT
elif [[ ${{ inputs.version }} == *"nightly"* ]]; then
export VERSION=`echo ${{ inputs.version }} | sed -e 's/^.*\-//'`
echo "::set-output name=tools-url::https://github.com/dsp-testing/codeql-cli-nightlies/releases/download/codeql-bundle-$VERSION-manual/codeql-bundle.tar.gz"
echo "tools-url=https://github.com/dsp-testing/codeql-cli-nightlies/releases/download/codeql-bundle-$VERSION-manual/codeql-bundle.tar.gz" >> $GITHUB_OUTPUT
elif [[ ${{ inputs.version }} == *"stable"* ]]; then
export VERSION=`echo ${{ inputs.version }} | sed -e 's/^.*\-//'`
echo "::set-output name=tools-url::https://github.com/github/codeql-action/releases/download/codeql-bundle-$VERSION/codeql-bundle.tar.gz"
echo "tools-url=https://github.com/github/codeql-action/releases/download/codeql-bundle-$VERSION/codeql-bundle.tar.gz" >> $GITHUB_OUTPUT
elif [[ ${{ inputs.version }} == "latest" ]]; then
echo "::set-output name=tools-url::latest"
echo "tools-url=latest" >> $GITHUB_OUTPUT
elif [[ ${{ inputs.version }} == "cached" ]]; then
echo "::set-output name=tools-url::"
echo "tools-url=" >> $GITHUB_OUTPUT
else
echo "::error Unrecognized version specified!"
fi
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
@@ -61,7 +61,7 @@ jobs:
# Output a JSON-encoded list with the distinct versions to test against.
echo "Suggested matrix config for analysis job: $VERSIONS_JSON"
echo "::set-output name=versions::${VERSIONS_JSON}"
echo "versions=${VERSIONS_JSON}" >> $GITHUB_OUTPUT
build:
needs: [check-codeql-versions]
7 changes: 3 additions & 4 deletions .github/workflows/post-release-mergeback.yml
@@ -47,11 +47,10 @@ jobs:
id: getVersion
run: |
VERSION="v$(jq '.version' -r 'package.json')"
echo "::set-output name=version::${VERSION}"
echo "version=${VERSION}" >> $GITHUB_OUTPUT
short_sha="${GITHUB_SHA:0:8}"
NEW_BRANCH="mergeback/${VERSION}-to-${BASE_BRANCH}-${short_sha}"
echo "::set-output name=newBranch::${NEW_BRANCH}"
echo "newBranch=${NEW_BRANCH}" >> $GITHUB_OUTPUT
- name: Dump branches
env:
@@ -77,7 +76,7 @@ jobs:
exists="$?"
if [ "${exists}" -eq 0 ]; then
echo "Tag ${VERSION} exists. Not going to re-release."
echo "::set-output name=exists::true"
echo "exists=true" >> $GITHUB_OUTPUT
else
echo "Tag ${VERSION} does not exist yet."
fi
50 changes: 21 additions & 29 deletions node_modules/.package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions node_modules/@actions/artifact/lib/internal/crc64.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

303 changes: 303 additions & 0 deletions node_modules/@actions/artifact/lib/internal/crc64.js
1 change: 1 addition & 0 deletions node_modules/@actions/artifact/lib/internal/crc64.js.map
6 changes: 3 additions & 3 deletions node_modules/@actions/artifact/lib/internal/requestUtils.d.ts

Large diffs are not rendered by default.

16 changes: 10 additions & 6 deletions node_modules/@actions/artifact/lib/internal/utils.d.ts
36 changes: 32 additions & 4 deletions node_modules/@actions/artifact/lib/internal/utils.js
2 changes: 1 addition & 1 deletion node_modules/@actions/artifact/lib/internal/utils.js.map

This file was deleted.

This file was deleted.

This file was deleted.

Binary file not shown.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

4 changes: 2 additions & 2 deletions node_modules/@actions/artifact/package.json
10 changes: 5 additions & 5 deletions node_modules/@actions/cache/README.md
4 changes: 2 additions & 2 deletions node_modules/@actions/cache/package.json
35 changes: 17 additions & 18 deletions node_modules/@actions/core/lib/core.js
2 changes: 1 addition & 1 deletion node_modules/@actions/core/lib/core.js.map
3 changes: 2 additions & 1 deletion node_modules/@actions/core/lib/file-command.d.ts
22 changes: 19 additions & 3 deletions node_modules/@actions/core/lib/file-command.js
2 changes: 1 addition & 1 deletion node_modules/@actions/core/lib/file-command.js.map
2 changes: 1 addition & 1 deletion node_modules/@actions/core/package.json
2 changes: 1 addition & 1 deletion node_modules/@actions/exec/package.json
2 changes: 1 addition & 1 deletion node_modules/@actions/io/package.json
4 changes: 2 additions & 2 deletions node_modules/@actions/tool-cache/package.json

0 comments on commit eba983f

Please sign in to comment.