Skip to content

Commit a991d25

Browse files
authored
Replace ${{vars.RUNS_ON}} with ubuntu-latest in workflow files (#1176)
1 parent 4ce6cf4 commit a991d25

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 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:

.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 & 1 deletion
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:

0 commit comments

Comments
 (0)