Skip to content

Commit 3ad5165

Browse files
committed
chore: Remove GitHub variables
1 parent f57bf8d commit 3ad5165

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/workflows/check-deployments.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
name: 🍱 collect deployments
2222
# For public repos use runs-on: ubuntu-latest
2323
# For private repos use runs-on: self-hosted
24-
runs-on: ${{ vars.RUNS_ON }}
24+
runs-on: ubuntu-latest
2525
outputs:
2626
matrix: ${{ steps.set-matrix.outputs.matrix }}
2727
steps:
@@ -41,7 +41,7 @@ jobs:
4141
name: 🔍 check deployment
4242
# For public repos use runs-on: ubuntu-latest
4343
# For private repos use runs-on: self-hosted
44-
runs-on: ${{ vars.RUNS_ON }}
44+
runs-on: ubuntu-latest
4545
strategy:
4646
matrix: ${{ fromJson(needs.collect.outputs.matrix) }}
4747
steps:

.github/workflows/pr-title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
main:
1212
name: 👀 Validate PR title
13-
runs-on: ${{ vars.RUNS_ON }}
13+
runs-on: ubuntu-latest
1414
steps:
1515
# Please look up the latest version from
1616
# https://github.com/amannn/action-semantic-pull-request/releases

.github/workflows/pre-commit-and-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
name: 💍 pre-commit
3030
# For public repos use runs-on: ubuntu-latest
3131
# For private repos use runs-on: self-hosted
32-
runs-on: ${{ vars.RUNS_ON }}
33-
container: ${{ vars.CONTAINER }}
32+
runs-on: ubuntu-latest
33+
container: bjorncloudandthings/terraform-aws-github:latest
3434
steps:
3535
- uses: actions/checkout@v3
3636
- uses: actions/setup-python@v4
@@ -69,8 +69,8 @@ jobs:
6969
name: ✅ tests
7070
# For public repos use runs-on: ubuntu-latest
7171
# For private repos use runs-on: self-hosted
72-
runs-on: ${{ vars.RUNS_ON }}
73-
container: ${{ vars.CONTAINER }}
72+
runs-on: ubuntu-latest
73+
container: bjorncloudandthings/terraform-aws-github:latest
7474
steps:
7575
- uses: actions/checkout@v3
7676
- uses: actions/setup-python@v4

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
release:
2121
# For public repos use runs-on: ubuntu-latest
2222
# For private repos use runs-on: self-hosted
23-
runs-on: ${{ vars.RUNS_ON }}
23+
runs-on: ubuntu-latest
2424
outputs:
2525
release_created: ${{ steps.release-please.outputs.release_created }}
2626
tag_name: ${{ steps.release-please.outputs.tag_name }}
@@ -41,8 +41,8 @@ jobs:
4141
release-assets:
4242
needs: [release]
4343
if: needs.release.outputs.release_created || github.event_name == 'workflow_dispatch'
44-
runs-on: ${{ vars.RUNS_ON }}
45-
container: ${{ vars.CONTAINER }}
44+
runs-on: ubuntu-latest
45+
container: bjorncloudandthings/terraform-aws-github:latest
4646
steps:
4747
- uses: actions/checkout@v3
4848
with:

.github/workflows/terraform-min-max.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: 🍱 collect directories
99
# Outputs a list of all unique directories
1010
# that contain *.tf files and do not start with .
11-
runs-on: ${{ vars.RUNS_ON }}
11+
runs-on: ubuntu-latest
1212
outputs:
1313
directories: ${{ steps.set-matrix.outputs.matrix }}
1414
steps:
@@ -25,8 +25,8 @@ jobs:
2525
needs: collectDirectories
2626
# For public repos use runs-on: ubuntu-latest
2727
# For private repos use runs-on: self-hosted
28-
runs-on: ${{ vars.RUNS_ON }}
29-
container: ${{ vars.CONTAINER }}
28+
runs-on: ubuntu-latest
29+
container: bjorncloudandthings/terraform-aws-github:latest
3030
strategy:
3131
matrix:
3232
directory: ${{ fromJson(needs.collectDirectories.outputs.directories) }}

0 commit comments

Comments
 (0)