Skip to content

Commit df1fc8e

Browse files
committed
Remove the use of set-output.
The `set-output` command has been deprecated on GitHub Actions and produces warnings.
1 parent 37b41ea commit df1fc8e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/satis-update.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
id: package
1616
env:
1717
REPO: ${{ github.repository }}
18-
run: echo ::set-output name=PACKAGE::${REPO##*/}
18+
run: echo "PACKAGE=${REPO##*/}" >> $GITHUB_OUTPUT
1919

2020
- name: Set Version
2121
id: tag
22-
run: echo ::set-output name=VERSION::${GITHUB_REF##*/}
22+
run: echo "VERSION=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT
2323

2424
- name: Repository Dispatch
2525
uses: peter-evans/repository-dispatch@v3

0 commit comments

Comments
 (0)