Skip to content

Commit 3e83270

Browse files
HoloRinmergify[bot]
authored andcommitted
Drop deprecated set-output github actions command in oci-base.yaml
https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ (cherry picked from commit 6e692df) (cherry picked from commit 436c6e9)
1 parent f2dec09 commit 3e83270

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/oci-base.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
id: authorized
2727
run: |
2828
if [ -n "${{ secrets.DOCKERHUB_USERNAME }}" ]; then
29-
echo "::set-output name=PUSH::true"
29+
echo "PUSH=true" >> $GITHUB_OUTPUT
3030
else
31-
echo "::set-output name=PUSH::false"
31+
echo "PUSH=false" >> $GITHUB_OUTPUT
3232
fi
3333
3434
- name: Login to DockerHub

0 commit comments

Comments
 (0)