Skip to content

Commit

Permalink
Add ubuntu-22.04-large as default for node-python
Browse files Browse the repository at this point in the history
  • Loading branch information
puehringer committed Nov 1, 2023
1 parent 3e89689 commit 186f8cc
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build-node-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ on:
runs_on:
type: string
required: false
default: "ubuntu-20.04"
# For the node-python job, prefer the large instance
default: '["ubuntu-22.04-large", "ubuntu-22.04"]'
secrets:
DATAVISYN_BOT_REPO_TOKEN:
required: false
Expand Down Expand Up @@ -66,7 +67,7 @@ jobs:
permissions:
id-token: write
contents: write
runs-on: ${{ inputs.runs_on }}
runs-on: ${{ fromJSON(inputs.runs_on) }}
steps:
- name: Checkout source repository
uses: actions/checkout@v3
Expand All @@ -93,7 +94,7 @@ jobs:
concurrency:
group: "python-${{ github.workflow }}-${{ github.ref || github.head_ref }}-${{ inputs.branch }}"
cancel-in-progress: true
runs-on: ${{ inputs.runs_on }}
runs-on: ${{ fromJSON(inputs.runs_on) }}
steps:
- name: Checkout source repository
uses: actions/checkout@v3
Expand Down Expand Up @@ -122,7 +123,7 @@ jobs:
permissions:
id-token: write
contents: write
runs-on: ${{ inputs.runs_on }}
runs-on: ${{ fromJSON(inputs.runs_on) }}

services:
postgres:
Expand Down

0 comments on commit 186f8cc

Please sign in to comment.