Skip to content

Commit de3edf0

Browse files
committed
fix: run tf plan apply on ubuntu-latest
1 parent 154bf53 commit de3edf0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/tf_plan_apply.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ env:
2222
jobs:
2323
tofu-plan:
2424
name: 'OpenTofu Plan'
25-
runs-on: ["self-hosted", "${{ github.event_name == 'pull_request' && github.event.pull_request.base.ref || github.ref_name }}" ]
25+
runs-on: ubuntu-latest
2626
environment: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.ref || github.ref_name }}
2727
env:
2828
ENVIRONMENT_NAME: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.ref || github.ref_name }}
@@ -96,7 +96,7 @@ jobs:
9696
name: 'OpenTofu Apply'
9797
needs: [tofu-plan]
9898
if: ${{ (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event.pull_request.merged) && needs.tofu-plan.outputs.tf_plan_exit_code == 2 }}
99-
runs-on: ["self-hosted", "${{ github.event_name == 'pull_request' && github.event.pull_request.base.ref || github.ref_name }}" ]
99+
runs-on: ubuntu-latest
100100
environment: ${{ github.ref_name }}
101101
env:
102102
ENVIRONMENT_NAME: ${{ github.ref_name }}

0 commit comments

Comments
 (0)