Skip to content
This repository was archived by the owner on Feb 11, 2025. It is now read-only.

Commit 47decb7

Browse files
committed
fix deprecated output
1 parent f1862f8 commit 47decb7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
flavours=$(ls -I "base"| xargs echo | sed 's/ /,/g')
2626
echo "Building flavours: $flavours"
2727
flavours="{\"flavour\":[\"`echo "$flavours" | sed 's/,/","/g'`\"]}"
28-
echo "::set-output name=matrix::$flavours"
28+
echo "matrix=$flavours" >> $GITHUB_OUTPUT
2929
3030
build_base:
3131
runs-on: ubuntu-latest

.github/workflows/cleanup-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
flavours=$(ls -I "base"| xargs echo | sed 's/ /,/g')
1919
echo "Building flavours: $flavours"
2020
flavours="{\"flavour\":[\"`echo "$flavours" | sed 's/,/","/g'`\"]}"
21-
echo "::set-output name=matrix::$flavours"
21+
echo "matrix=$flavours" >> $GITHUB_OUTPUT
2222
2323
purge_images:
2424
runs-on: ubuntu-latest

.github/workflows/create-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
flavours=$(ls -I "base"| xargs echo | sed 's/ /,/g')
3232
echo "Building flavours: $flavours"
3333
flavours="{\"flavour\":[\"`echo "$flavours" | sed 's/,/","/g'`\"]}"
34-
echo "::set-output name=matrix::$flavours"
34+
echo "matrix=$flavours" >> $GITHUB_OUTPUT
3535
3636
build_base:
3737
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)