Skip to content

Commit 536d341

Browse files
build(deps): bump the github-actions group with 2 updates
Bumps the github-actions group with 2 updates: [actions/setup-node](https://github.com/actions/setup-node) and [JS-DevTools/npm-publish](https://github.com/js-devtools/npm-publish). Updates `actions/setup-node` from 4 to 5 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4...v5) Updates `JS-DevTools/npm-publish` from 3 to 4 - [Release notes](https://github.com/js-devtools/npm-publish/releases) - [Changelog](https://github.com/JS-DevTools/npm-publish/blob/main/CHANGELOG.md) - [Commits](JS-DevTools/npm-publish@v3...v4) --- updated-dependencies: - dependency-name: actions/setup-node dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: JS-DevTools/npm-publish dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 70e393c commit 536d341

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/automatic-api-update.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v5
13-
- uses: actions/setup-node@v4
13+
- uses: actions/setup-node@v5
1414
- uses: bahmutov/npm-install@v1
1515
with:
1616
useLockFile: false

.github/workflows/manual-api-update.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v5
17-
- uses: actions/setup-node@v4
17+
- uses: actions/setup-node@v5
1818
- name: "Update Buf Script"
1919
id: buf-update
2020
uses: authzed/actions/buf-api-update@main

.github/workflows/publish.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v5
15-
- uses: actions/setup-node@v4
15+
- uses: actions/setup-node@v5
1616
with:
1717
cache-dependency-path: ./package.json
1818
cache: "yarn"
@@ -29,7 +29,7 @@ jobs:
2929
# NOTE: the flag is necessary because otherwise `npm version <version>` attempts to
3030
# cut a git tag with that version, which fails because the git user isn't configured.
3131
- run: "npm version ${VERSION} --no-git-tag-version"
32-
- uses: JS-DevTools/npm-publish@v3
32+
- uses: JS-DevTools/npm-publish@v4
3333
with:
3434
token: ${{ secrets.NPM_TOKEN }}
3535
tag: ${{ steps.get_version.outputs.version }}
@@ -40,7 +40,7 @@ jobs:
4040
runs-on: ubuntu-latest
4141
steps:
4242
- uses: actions/checkout@v5
43-
- uses: actions/setup-node@v4
43+
- uses: actions/setup-node@v5
4444
with:
4545
node-version: 18
4646
cache-dependency-path: ./package.json
@@ -65,7 +65,7 @@ jobs:
6565
# cut a git tag with that version, which fails because the git user isn't configured.
6666
- run: "npm version ${VERSION} --no-git-tag-version"
6767
working-directory: ./js-dist
68-
- uses: JS-DevTools/npm-publish@v3
68+
- uses: JS-DevTools/npm-publish@v4
6969
with:
7070
token: ${{ secrets.NPM_TOKEN }}
7171
tag: ${{ steps.get_version.outputs.version }}

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- uses: "authzed/action-spicedb@v1"
3939
with:
4040
version: "latest"
41-
- uses: actions/setup-node@v4
41+
- uses: actions/setup-node@v5
4242
with:
4343
node-version: ${{ matrix.node-version }}
4444
cache-dependency-path: ./package.json
@@ -66,7 +66,7 @@ jobs:
6666
- uses: "authzed/action-spicedb@v1"
6767
with:
6868
version: "latest"
69-
- uses: actions/setup-node@v4
69+
- uses: actions/setup-node@v5
7070
with:
7171
node-version: ${{ matrix.node-version }}
7272
cache-dependency-path: ./package.json

0 commit comments

Comments
 (0)