Skip to content
Open
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
19 changes: 4 additions & 15 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
name: ci
jobs:
test:
runs-on: ubuntu-latest
runs-on: depot-ubuntu-24.04
strategy:
matrix:
node: [18, 20]
Expand All @@ -27,19 +27,8 @@ jobs:
- run: npm test
env:
MOCHA_THROW_DEPRECATION: false
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm install
- run: npm test
env:
MOCHA_THROW_DEPRECATION: false
lint:
runs-on: ubuntu-latest
runs-on: depot-ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
Expand All @@ -48,7 +37,7 @@ jobs:
- run: npm install
- run: npm run lint
docs:
runs-on: ubuntu-latest
runs-on: depot-ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
Expand All @@ -60,7 +49,7 @@ jobs:
with:
paths: docs/
build-action:
runs-on: ubuntu-latest
runs-on: depot-ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
publish:
runs-on: ubuntu-latest
runs-on: depot-ubuntu-24.04
permissions:
contents: read
id-token: write
Expand Down
15 changes: 12 additions & 3 deletions .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,17 @@ permissions:

jobs:
release-please:
runs-on: ubuntu-latest
runs-on: depot-ubuntu-24.04
steps:
- uses: googleapis/release-please-action@7987652d64b4581673a76e33ad5e98e3dd56832f # v4.1.3
- name: Get Token
id: get_actions_token
uses: nominal-io/workflow-application-token-action@86d05551fa394b4b813e0deee328005b45cf5237 # v4.0.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
application_id: ${{secrets.NOMBOT_APP_ID}}
application_private_key: ${{secrets.NOMBOT_PRIVATE_KEY}}
permissions: "actions:write, packages:write, contents:write, pull_requests:write"
organization: "nominal-io"

- uses: nominal-io/release-please-action@main
with:
token: ${{ steps.get_actions_token.outputs.token }}
Loading