Skip to content

Commit

Permalink
ci: fix github action
Browse files Browse the repository at this point in the history
  • Loading branch information
SaulMoro committed Jan 9, 2025
1 parent 3f4fd78 commit 0db54da
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/prerelease-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Write comment to the PR
steps:
- name: 'Comment on PR'
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
```
- name: 'Remove the autorelease label once published'
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
path: packages/ngrx-rtk-query

- name: Upload packaged artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: npm-package-ngrx-rtk-query@${{ steps.package-version.outputs.current-version }}-pr-${{ github.event.number }} # encode the PR number into the artifact name
path: dist/packages/ngrx-rtk-query/
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- name: Create Version PR or Publish to NPM
id: changesets
uses: changesets/action@v1
uses: changesets/action@v1.4
with:
commit: 'chore(release): version packages'
title: 'chore(release): version packages'
Expand Down

0 comments on commit 0db54da

Please sign in to comment.