Skip to content

Commit 436c6e9

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)
1 parent ed08ec5 commit 436c6e9

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
@@ -36,9 +36,9 @@ jobs:
3636
id: authorized
3737
run: |
3838
if [ -n "${{ secrets.DOCKERHUB_USERNAME }}" ]; then
39-
echo "::set-output name=PUSH::true"
39+
echo "PUSH=true" >> $GITHUB_OUTPUT
4040
else
41-
echo "::set-output name=PUSH::false"
41+
echo "PUSH=false" >> $GITHUB_OUTPUT
4242
fi
4343
4444
- name: Login to DockerHub

0 commit comments

Comments
 (0)