Skip to content

Commit

Permalink
Update output (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacome authored Jan 26, 2024
1 parent 778655c commit faa7894
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ jobs:
docker pull nginx:$nginx_v || exit 1
njs=$(docker run nginx:$nginx_v env | grep NJS_VERSION | cut -d= -f2)
echo "NJS_VERSION=$njs"
echo "::set-output name=nginx_version::$nginx_v"
echo "::set-output name=njs_version::$njs"
echo "nginx_version=${nginx_v}" >> $GITHUB_OUTPUT
echo "njs_version=${njs}" >> $GITHUB_OUTPUT
- name: Setup QEMU
uses: docker/setup-qemu-action@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
run: |
ubi=$(grep "FROM redhat/ubi9-minimal" < Dockerfile | awk -F" " '{print $2}')
nginx=$(grep -m1 "FROM nginx:" < Dockerfile | awk -F"[: ]" '{print $3}')
echo "::set-output name=ubi_version::$ubi"
echo "::set-output name=nginx_version::$nginx"
echo "ubi_version=${ubi}" >> $GITHUB_OUTPUT
echo "nginx_version=${nginx}" >> $GITHUB_OUTPUT
check:
name: Check if updates are needed
Expand Down

0 comments on commit faa7894

Please sign in to comment.