Skip to content

Commit ee95657

Browse files
committed
update action dependencies
1 parent b29026e commit ee95657

1 file changed

Lines changed: 7 additions & 9 deletions

File tree

.github/workflows/publish.yaml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88
publish:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v6
1212
with:
1313
fetch-depth: 1
14-
- uses: actions/setup-node@v3
14+
- uses: actions/setup-node@v6
1515
with:
1616
node-version: '22.12'
1717
- uses: pnpm/action-setup@v4
@@ -23,14 +23,12 @@ jobs:
2323
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
2424
- run: pnpm publish -r --report-summary --publish-branch main --access=public
2525

26-
- name: Setup GH user
27-
run: git config user.name ${{ secrets.GH_USER }}
28-
run: git config user.email ${{ secrets.GH_EMAIL }}
29-
26+
- run: git config user.name ${{ secrets.GH_USER }}
27+
- run: git config user.email ${{ secrets.GH_EMAIL }}
28+
3029
- name: Push tags
31-
run: pnpm changeset tag
32-
run: git push --tags
30+
run: pnpm changeset tag && git push --tags
3331

3432
- run: pnpm run generate-slack-report
3533
env:
36-
SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }}
34+
SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }}

0 commit comments

Comments
 (0)