Skip to content

Commit

Permalink
Merge pull request #107 from authzed/dependabot/github_actions/github…
Browse files Browse the repository at this point in the history
…-actions-d7afcc40ba

Bump the github-actions group with 6 updates
  • Loading branch information
vroldanbet authored Apr 1, 2024
2 parents 1a47fa3 + 1934f88 commit 4a7480e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
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

0 comments on commit 4a7480e

Please sign in to comment.