Update release workflow actions

Updated checkout action to version 6 and removed token input.

Simon Smith committed Mar 25, 2026 at 21:14 UTC dee2355ec0c205342f0f484622591618ea886327
1 file changed +1 -3
.github/workflows/release.yml
+1 -3
@@ -13,14 +13,12 @@ jobs:
13 runs-on: ubuntu-latest
14 steps:
15 - name: Checkout
16 - uses: actions/checkout@v4
16 + uses: actions/checkout@v6
17 with:
18 fetch-depth: 0
19 - name: Release
20 uses: SerenModz21/github-action-npm-release@master
21 id: release
22 - with:
23 - token: ${{ secrets.MY_TOKEN }}
22 - name: Print release output
23 if: ${{ steps.release.outputs.released == 'true' }}
24 run: echo Release ID ${{ steps.release.outputs.release_id }}