also looking at this
chore(deps): update dependency actions/checkout to v6.0.1
#193
1 file
+12
-3
| @@ -10,12 +10,14 @@ jobs: | ||
| 10 | 10 | npm: |
| 11 | 11 | runs-on: ubuntu-latest |
| 12 | 12 | permissions: |
| 13 | contents: read | |
| 13 | contents: write | |
| 14 | 14 | id-token: write |
| 15 | 15 | |
| 16 | 16 | steps: |
| 17 | 17 | - name: Checkout |
| 18 | uses: actions/checkout@v4 | |
| 18 | uses: actions/checkout@v6.0.1 | |
| 19 | with: | |
| 20 | fetch-depth: 0 | |
| 19 | 21 | |
| 20 | 22 | - name: Setup Node.js |
| 21 | 23 | uses: actions/setup-node@v4 |
| @@ -49,7 +51,14 @@ jobs: | ||
| 49 | 51 | zig build |
| 50 | 52 | echo "$PWD/zig-out/bin" >> $GITHUB_PATH |
| 51 | 53 | |
| 54 | - name: Create GitHub Release | |
| 55 | uses: softprops/action-gh-release@v2 | |
| 56 | with: | |
| 57 | generate_release_notes: true | |
| 58 | env: | |
| 59 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| 60 | ||
| 52 | 61 | - name: Publish |
| 53 | run: pantry publish --access public | |
| 62 | run: pantry npm:publish --access public | |
| 54 | 63 | env: |
| 55 | 64 | NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |