Skip to content

Commit

Permalink
Update GitHub Actions packages and deprecated commands
Browse files Browse the repository at this point in the history
  • Loading branch information
igneel64 committed Jun 22, 2023
1 parent d57f00d commit 3dd2283
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: node common/scripts/install-run-rush.js install

- name: Setup git
uses: oleksiyrudenko/[email protected]
uses: oleksiyrudenko/[email protected].1
with:
token: '${{ secrets.GITHUB_TOKEN }}'
name: github-actions[bot]
Expand All @@ -46,7 +46,7 @@ jobs:

- name: Get version
id: version
run: echo "##[set-output name=TRACKER_VERSION;]$(node -p "require('./trackers/javascript-tracker/package.json').version")"
run: echo "TRACKER_VERSION=$(node -p "require('./trackers/javascript-tracker/package.json').version")" >> $GITHUB_OUTPUT

- name: Fail if version mismatch
if: ${{ github.event.inputs.version != steps.version.outputs.TRACKER_VERSION }}
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:

- name: Generate Release Information
id: tag_version
uses: mathieudutour/github-tag-action@v5.4
uses: mathieudutour/github-tag-action@v6.1
with:
dry_run: true
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish_prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: node common/scripts/install-run-rush.js install

- name: Setup git
uses: oleksiyrudenko/[email protected]
uses: oleksiyrudenko/[email protected].1
with:
token: '${{ secrets.GITHUB_TOKEN }}'
name: github-actions[bot]
Expand All @@ -46,7 +46,7 @@ jobs:

- name: Get version
id: version
run: echo "##[set-output name=TRACKER_VERSION;]$(node -p "require('./trackers/javascript-tracker/package.json').version")"
run: echo "TRACKER_VERSION=$(node -p "require('./trackers/javascript-tracker/package.json').version")" >> $GITHUB_OUTPUT

- name: Fail if version mismatch
if: ${{ github.event.inputs.version != steps.version.outputs.TRACKER_VERSION }}
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:

- name: Generate Release Information
id: tag_version
uses: mathieudutour/github-tag-action@v5.4
uses: mathieudutour/github-tag-action@v6.1
with:
dry_run: true
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 3dd2283

Please sign in to comment.