Skip to content

Commit 7fc4dde

Browse files
authored
Remove SETUP_QEMU_IMAGE and RUNS_ON variables from workflows (#1178)
1 parent e3875c6 commit 7fc4dde

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ defaults:
66
jobs:
77
check-formatting-dockerfile:
88
name: Check Formatting (Dockerfile)
9-
runs-on: ${{vars.RUNS_ON}}
9+
runs-on: ubuntu-latest
1010
timeout-minutes: 5
1111
steps:
1212
- name: Checkout
@@ -15,7 +15,7 @@ jobs:
1515
uses: hadolint/hadolint-action@v3.3.0
1616
check-formatting-markdown:
1717
name: Check Formatting (Markdown)
18-
runs-on: ${{vars.RUNS_ON}}
18+
runs-on: ubuntu-latest
1919
timeout-minutes: 5
2020
steps:
2121
- name: Checkout
@@ -26,7 +26,7 @@ jobs:
2626
globs: '**/*.md'
2727
build-and-test:
2828
name: Build & Test
29-
runs-on: ${{vars.RUNS_ON}}
29+
runs-on: ubuntu-latest
3030
timeout-minutes: 30
3131
services:
3232
registry:
@@ -58,7 +58,6 @@ jobs:
5858
- name: Set up QEMU
5959
uses: docker/setup-qemu-action@v4.0.0
6060
with:
61-
image: ${{vars.SETUP_QEMU_IMAGE}}
6261
platforms: ${{steps.info.outputs.platforms}}
6362
- name: Set up Docker Buildx
6463
uses: docker/setup-buildx-action@v4.0.0

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
uses: ./.github/workflows/ci.yml
1414
label:
1515
name: Label
16-
runs-on: ${{vars.RUNS_ON}}
16+
runs-on: ubuntu-latest
1717
timeout-minutes: 5
1818
steps:
1919
- name: Apply labels

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
uses: ./.github/workflows/ci.yml
1414
cd:
1515
name: CD
16-
runs-on: ${{vars.RUNS_ON}}
16+
runs-on: ubuntu-latest
1717
timeout-minutes: 30
1818
if: (!contains(github.event.head_commit.message, '[skip release]'))
1919
permissions:
@@ -30,7 +30,6 @@ jobs:
3030
- name: Set up QEMU
3131
uses: docker/setup-qemu-action@v4.0.0
3232
with:
33-
image: ${{vars.SETUP_QEMU_IMAGE}}
3433
platforms: ${{env.PLATFORMS}}
3534
- name: Set up Docker Buildx
3635
uses: docker/setup-buildx-action@v4.0.0

0 commit comments

Comments
 (0)