Skip to content

Commit

Permalink
Merge pull request #7582 from austinvazquez/cherry-pick-be3987a92d6e5…
Browse files Browse the repository at this point in the history
…f10ba07a3b9925c26f3c66921cb-release-1.6

[release/1.6] cherry-pick: Migrate away from GitHub actions set-output
  • Loading branch information
kzys committed Oct 26, 2022
2 parents 1c90a44 + 4907b4d commit 8813c6b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -38,7 +38,7 @@ jobs:
id: contentrel
run: |
RELEASEVER=${{ github.ref }}
echo "::set-output name=stringver::${RELEASEVER#refs/tags/v}"
echo "stringver=${RELEASEVER#refs/tags/v}" >> $GITHUB_OUTPUT
git tag -l ${RELEASEVER#refs/tags/} -n20000 | tail -n +3 | cut -c 5- >release-notes.md
working-directory: src/github.com/containerd/containerd

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows-periodic.yml
Expand Up @@ -217,8 +217,8 @@ jobs:
- name: AssignGcpCreds
id: AssignGcpCreds
run: |
echo '::set-output name=GCP_SERVICE_ACCOUNT::${{ secrets.GCP_SERVICE_ACCOUNT }}'
echo '::set-output name=GCP_WORKLOAD_IDENTITY_PROVIDER::${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }}'
echo 'GCP_SERVICE_ACCOUNT=${{ secrets.GCP_SERVICE_ACCOUNT }}' >> $GITHUB_OUTPUT
echo 'GCP_WORKLOAD_IDENTITY_PROVIDER=${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }}' >> $GITHUB_OUTPUT
- name: AuthGcp
uses: google-github-actions/auth@v0
Expand Down

0 comments on commit 8813c6b

Please sign in to comment.