Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
.github/workflows/base-image-check: Replace deprecated set-output syn…
Browse files Browse the repository at this point in the history
…tax with new GITHUB_OUTPUT syntax

Signed-off-by: Timo Reichl <thetredev@gmail.com>
  • Loading branch information
thetredev committed Dec 13, 2022
1 parent 5a13171 commit 28750ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/base-image-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ jobs:
if [[ "${newer_tag}" == "${current_tag_date}" ]]; then
echo "No newer tag found."
echo ::set-output name=createpr::0
echo "createpr=0" >> $GITHUB_OUTPUT
else
echo "CI_PR_NEW_BASE_IMAGE=${current_repository}:${current_tag_prefix}-${newer_tag}" >> $GITHUB_ENV
echo ::set-output name=createpr::1
echo "createpr=1" >> $GITHUB_OUTPUT
fi
- name: Check if pull request exists for newer base image
Expand Down

0 comments on commit 28750ce

Please sign in to comment.