Skip to content

Commit 01e0f38

Browse files
authored
Merge pull request #24 from newfold-labs/gha/deprecate-save-state-set-output
Remove use of `set-output` command
2 parents 06b3d84 + df1fc8e commit 01e0f38

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@ff45666b9427631e3450c54a1bcbee4d9ff4d7c0 # v3.0.0

0 commit comments

Comments
 (0)