ReviewOS

also looking at this

stacks/bun-queue

chore(deps): update dependency actions/checkout to v6.0.1

#193
Closed chrisbbreuer wants to merge buddy-bot/update-major-update---actions/checkout-1769782241362 into main
1 file +12 -3

Review threads live on the whole diff, not on one commit, so none are shown here - a thread's line means something in the branch's final form, and painting it into an intermediate step would put it on code it is not about.

.github/workflows/release.ymlmodified+11-2
Changes to .github/workflows/release.yml
@@ -10,12 +10,14 @@ jobs:
1010 npm:
1111 runs-on: ubuntu-latest
1212 permissions:
13 contents: read
13 contents: write
1414 id-token: write
1515
1616 steps:
1717 - name: Checkout
1818 uses: actions/checkout@v6.0.1
19 with:
20 fetch-depth: 0
1921
2022 - name: Setup Node.js
2123 uses: actions/setup-node@v4
@@ -49,7 +51,14 @@ jobs:
4951 zig build
5052 echo "$PWD/zig-out/bin" >> $GITHUB_PATH
5153
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
5261 - name: Publish
53 run: pantry publish --access public
62 run: pantry npm:publish --access public
5463 env:
5564 NPM_TOKEN: ${{ secrets.NPM_TOKEN }}