Skip to content

Commit 1777443

Browse files
build(deps): bump the github-actions group across 1 directory with 3 updates (#248)
Bumps the github-actions group with 3 updates in the / directory: [actions/setup-node](https://github.com/actions/setup-node), [JS-DevTools/npm-publish](https://github.com/js-devtools/npm-publish) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4...v6) 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) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/setup-node dependency-version: '6' 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 - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 762e10e commit 1777443

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
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@v6
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@v6
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@v6
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@v6
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: 3 additions & 3 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@v6
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@v6
7070
with:
7171
node-version: ${{ matrix.node-version }}
7272
cache-dependency-path: ./package.json
@@ -84,7 +84,7 @@ jobs:
8484
- name: Run tests
8585
run: CI=true yarn only-run-tests
8686
working-directory: ./js-dist
87-
- uses: actions/upload-artifact@v4
87+
- uses: actions/upload-artifact@v5
8888
with:
8989
name: js-client-${{ matrix.node-version }}
9090
path: |

0 commit comments

Comments
 (0)