Skip to content

Commit

Permalink
ci: replace deprecated use of set-output
Browse files Browse the repository at this point in the history
The set-output command is deprecated. See this blog post for more
information:
https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/

Signed-off-by: Robin Hahling <[email protected]>
  • Loading branch information
rolinh committed Jul 13, 2023
1 parent 767f7f2 commit 30280c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-images-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Getting image tag
id: tag
run: |
echo ::set-output name=tag::${GITHUB_REF##*/}
echo "tag=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT
- name: Checkout Source Code
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
Expand Down

0 comments on commit 30280c4

Please sign in to comment.