Skip to content

Commit

Permalink
Merge pull request #69 from Raku/deprecation_of_set_output
Browse files Browse the repository at this point in the history
Use `$GITHUB_OUTPUT` instead of `::set-output`
  • Loading branch information
timo authored Sep 16, 2024
2 parents fb46bca + f097442 commit c441dda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- id: set-version
run: |
RAKU_VERSION=$(ls -A -d * | egrep '^[0-9]{4}.[0-9]{2}$')
echo "::set-output name=version::$RAKU_VERSION"
echo "version=$RAKU_VERSION" >> $GITHUB_OUTPUT
echo "raku version: $RAKU_VERSION"
- id: set-matrix
run: |
Expand All @@ -34,7 +34,7 @@ jobs:
}
print join(",",@arr)
')
echo "::set-output name=matrix::[$LIST_DIR]"
echo "matrix=[$LIST_DIR]" >> $GITHUB_OUTPUT
echo "base image list: [$LIST_DIR]"
build:
needs: setup
Expand Down

0 comments on commit c441dda

Please sign in to comment.