Skip to content

Commit

Permalink
Merge pull request #184 from ulucinar/no-large-runners
Browse files Browse the repository at this point in the history
Switch from larger runners to ubuntu-22.04 runner for the CI jobs
  • Loading branch information
ulucinar authored Feb 28, 2024
2 parents 093bead + 99b013c commit 3dfb140
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr-comment-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ on:

jobs:
debug:
runs-on: [e2-standard-8, linux]
runs-on: ubuntu-22.04
steps:
- name: Debug
run: |
Expand All @@ -50,7 +50,7 @@ jobs:
if: ${{ (github.event.comment.author_association == 'OWNER' || github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'COLLABORATOR' || github.event.comment.author_association == 'CONTRIBUTOR' ) &&
github.event.issue.pull_request &&
contains(github.event.comment.body, inputs.trigger-keyword ) }}
runs-on: [e2-standard-8, linux]
runs-on: ubuntu-22.04
outputs:
example_list: ${{ steps.get-example-list-name.outputs.example-list }}
example_hash: ${{ steps.get-example-list-name.outputs.example-hash }}
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
if: ${{ (github.event.comment.author_association == 'OWNER' || github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'COLLABORATOR' || github.event.comment.author_association == 'CONTRIBUTOR' ) &&
github.event.issue.pull_request &&
contains(github.event.comment.body, inputs.trigger-keyword ) }}
runs-on: [e2-standard-8, linux]
runs-on: ubuntu-22.04
needs: get-example-list

steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/provider-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
run: |
make schema-version-diff
lint:
runs-on: Ubuntu-Jumbo-Runner
runs-on: ubuntu-22.04
needs: detect-noop
if: needs.detect-noop.outputs.noop != 'true'

Expand Down Expand Up @@ -288,7 +288,7 @@ jobs:
run: make local-deploy

publish-artifacts:
runs-on: [e2-standard-8, linux]
runs-on: ubuntu-22.04
needs: detect-noop
if: needs.detect-noop.outputs.noop != 'true'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/provider-publish-service-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ env:

jobs:
index:
runs-on: [e2-standard-8, linux]
runs-on: ubuntu-22.04
outputs:
indices: ${{ steps.calc.outputs.indices }}
steps:
Expand All @@ -71,7 +71,7 @@ jobs:
index: ${{ fromJSON(needs.index.outputs.indices) }}

needs: index
runs-on: [e2-standard-8, linux]
runs-on: ubuntu-22.04
steps:
- name: Setup QEMU
uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 # v2
Expand Down

0 comments on commit 3dfb140

Please sign in to comment.