Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,14 @@ jobs:
environment: dev

terraform-lint:
uses: entur/gha-terraform/.github/workflows/lint.yml@v2.4.0
uses: entur/gha-terraform/.github/workflows/lint.yml@v2.5.0


tf-plan-dev:
if: ${{ !cancelled() && !contains(needs.*.result, 'failure') }}
needs: [ terraform-lint, docker-push ]
name: Terraform Plan DEV
uses: entur/gha-terraform/.github/workflows/plan.yml@v2.4.0
uses: entur/gha-terraform/.github/workflows/plan.yml@v2.5.0
with:
environment: dev

Expand All @@ -114,7 +114,7 @@ jobs:
if: ${{ !cancelled() && !contains(needs.*.result, 'failure') && needs.tf-plan-dev.outputs.has_changes == 'true' }}
needs: [ tf-plan-dev, tf-approval-dev ]
name: Terraform Apply DEV
uses: entur/gha-terraform/.github/workflows/apply.yml@v2.4.0
uses: entur/gha-terraform/.github/workflows/apply.yml@v2.5.0
with:
environment: dev
has_changes: ${{ needs.tf-plan-dev.outputs.has_changes }}
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
if: ${{ !cancelled() && !contains(needs.*.result, 'failure') }}
needs: [ terraform-lint, approval-tst ]
name: Terraform Plan TST
uses: entur/gha-terraform/.github/workflows/plan.yml@v2.4.0
uses: entur/gha-terraform/.github/workflows/plan.yml@v2.5.0
with:
environment: tst

Expand All @@ -167,7 +167,7 @@ jobs:
if: ${{ !cancelled() && !contains(needs.*.result, 'failure') && needs.tf-plan-tst.outputs.has_changes == 'true' }}
needs: [ tf-plan-tst, tf-approval-tst ]
name: Terraform Apply TST
uses: entur/gha-terraform/.github/workflows/apply.yml@v2.4.0
uses: entur/gha-terraform/.github/workflows/apply.yml@v2.5.0
with:
environment: tst
has_changes: ${{ needs.tf-plan-tst.outputs.has_changes }}
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
if: ${{ !cancelled() && !contains(needs.*.result, 'failure') }}
needs: [ terraform-lint, approval-prd ]
name: Terraform Plan PRD
uses: entur/gha-terraform/.github/workflows/plan.yml@v2.4.0
uses: entur/gha-terraform/.github/workflows/plan.yml@v2.5.0
with:
environment: prd

Expand All @@ -221,7 +221,7 @@ jobs:
if: ${{ !cancelled() && !contains(needs.*.result, 'failure') && needs.tf-plan-prd.outputs.has_changes == 'true' }}
needs: [ tf-plan-prd, tf-approval-prd ]
name: Terraform Apply PRD
uses: entur/gha-terraform/.github/workflows/apply.yml@v2.4.0
uses: entur/gha-terraform/.github/workflows/apply.yml@v2.5.0
with:
environment: prd
has_changes: ${{ needs.tf-plan-prd.outputs.has_changes }}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</scm>

<properties>
<entur.helpers.version>7.2.0</entur.helpers.version>
<entur.helpers.version>7.3.0</entur.helpers.version>
<postgis-jdbc.version>2025.1.1</postgis-jdbc.version>
<swagger-jersey2.version>2.2.54</swagger-jersey2.version>
<wololo.version>0.18.1</wololo.version>
Expand Down
Loading