File tree Expand file tree Collapse file tree 5 files changed +13
-13
lines changed Expand file tree Collapse file tree 5 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 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 :
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 :
Original file line number Diff line number Diff line change 1010jobs :
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
Original file line number Diff line number Diff line change 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
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
Original file line number Diff line number Diff line change 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 }}
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 :
Original file line number Diff line number Diff line change 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 :
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) }}
You can’t perform that action at this time.
0 commit comments