Skip to content

Commit ba62ef1

Browse files
committed
chore(gh): Migrate set-output
1 parent ae55cf4 commit ba62ef1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/deploy-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run: |
2424
VERSION="${{ inputs.version }}"
2525
VERSION="${VERSION:=${{ github.event.inputs.version }}}"
26-
echo "::set-output name=version::${VERSION//v}"
26+
echo "version=${VERSION//v}" >> $GITHUB_OUTPUT
2727
- uses: actions/setup-java@v3
2828
with:
2929
distribution: 'adopt'

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
VERSION=${VERSION:=${{ github.event.inputs.version }}}
4242
VERSION=${VERSION/v}
4343
echo "VERSION=${VERSION//v}" >> $GITHUB_ENV
44-
echo "::set-output name=version::${VERSION//v}"
44+
echo "version=${VERSION//v}" >> $GITHUB_OUTPUT
4545
- name: report
4646
run: |
4747
echo "VERSION=${{ env.VERSION }}"

0 commit comments

Comments
 (0)