Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the github-actions group with 6 updates #107

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/authzed-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- run: npm install
- run: npm test
- uses: battila7/get-version-action@v2
- uses: JS-DevTools/npm-publish@v1
- uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}
tag: ${{ steps.get_version.outputs.version }}
Expand All @@ -64,7 +64,7 @@ jobs:
matrix:
node-version: [18, 20, 21]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: "authzed/action-spicedb@v1"
with:
version: "latest"
Expand All @@ -84,9 +84,9 @@ jobs:
- name: Run Yarn tests
run: CI=true yarn only-run-tests
working-directory: ./js-dist
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: js-client
name: js-client-${{ matrix.node-version }}
path: |
js-dist/**
!js-dist/node_modules/**
Expand All @@ -97,15 +97,15 @@ jobs:
if: github.event_name == 'release'
steps:
- name: Download js client build
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: js-client
name: js-client-18
- uses: actions/setup-node@v4
with:
node-version: 18
- run: npm install
- uses: battila7/get-version-action@v2
- uses: JS-DevTools/npm-publish@v1
- uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}
tag: ${{ steps.get_version.outputs.version }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/automatic-api-update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- name: "Update Buf Script"
id: buf-update
uses: authzed/actions/buf-api-update@main
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
run: |
./buf.gen.yaml
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4.0.4
uses: peter-evans/create-pull-request@v6.0.2
if: steps.buf-update.outputs.updated == 'true'
with:
delete-branch: "true"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/manual-api-update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- name: "Update Buf Script"
id: buf-update
uses: authzed/actions/buf-api-update@main
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
run: |
./buf.gen.yaml
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4.0.4
uses: peter-evans/create-pull-request@v6.0.2
if: steps.buf-update.outputs.updated == 'true'
with:
delete-branch: "true"
Expand Down
Loading