Skip to content

Commit

Permalink
reverted runs_on in build-node-python.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dvviktordelev authored Sep 26, 2023
1 parent eda850e commit 53eca43
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/build-node-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@ on:
type: boolean
required: false
default: false
runs_on:
type: string
required: false
default: "ubuntu-20.04"
secrets:
DATAVISYN_BOT_REPO_TOKEN:
required: false
Expand Down Expand Up @@ -66,7 +62,7 @@ jobs:
permissions:
id-token: write
contents: write
runs-on: ${{ inputs.runs_on }}
runs-on: ubuntu-20.04
steps:
- name: Checkout source repository
uses: actions/checkout@v3
Expand All @@ -93,7 +89,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: ubuntu-20.04
steps:
- name: Checkout source repository
uses: actions/checkout@v3
Expand Down Expand Up @@ -122,7 +118,7 @@ jobs:
permissions:
id-token: write
contents: write
runs-on: ${{ inputs.runs_on }}
runs-on: ubuntu-20.04

services:
postgres:
Expand All @@ -136,6 +132,8 @@ jobs:
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432

steps:
- name: Checkout source repository
Expand Down

0 comments on commit 53eca43

Please sign in to comment.