Skip to content

Commit e5e9385

Browse files
committed
1 parent 415aea1 commit e5e9385

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/label-linked-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
ref: main
4040
- id: version
4141
name: Get project version
42-
run: echo "::set-output name=result::$(jq .version package.json -r)"
42+
run: echo "result=$(jq .version package.json -r)" >> $GITHUB_OUTPUT
4343
- id: query
4444
name: Query linked issues
4545
uses: octokit/graphql-action@v2.2.23

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
ref: ${{ format('refs/tags/{0}', env.TAG) }}
5050
- id: version
5151
name: Get package version
52-
run: echo "::set-output name=result::$(jq .version package.json -r)"
52+
run: echo "result=$(jq .version package.json -r)" >> $GITHUB_OUTPUT
5353
- id: dist-tag
5454
name: Get dist tag
5555
uses: flex-development/dist-tag-action@1.1.2

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ jobs:
5252
ref: ${{ env.REF }}
5353
- id: version
5454
name: Get version
55-
run: echo "::set-output name=result::$(jq .version package.json -r)"
55+
run: echo "result=$(jq .version package.json -r)" >> $GITHUB_OUTPUT
5656
- id: tag-prefix
5757
name: Get release tag prefix
58-
run: echo "::set-output name=result::$(jq .tagPrefix package.json -r)"
58+
run: echo "result=$(jq .tagPrefix package.json -r)" >> $GITHUB_OUTPUT
5959
- id: tag
6060
name: Get release tag
6161
run: |
62-
echo "::set-output name=result::${{ format('{0}{1}', steps.tag-prefix.outputs.result, steps.version.outputs.result) }}"
62+
echo "result=${{ format('{0}{1}', steps.tag-prefix.outputs.result, steps.version.outputs.result) }}" >> $GITHUB_OUTPUT
6363
- id: dist-tag
6464
name: Get dist tag
6565
uses: flex-development/dist-tag-action@1.1.2

0 commit comments

Comments
 (0)