From aaff884330073fc4a3aff51feee472c351d8a960 Mon Sep 17 00:00:00 2001 From: Fraser Molyneux Date: Fri, 20 Feb 2026 15:44:44 +0000 Subject: [PATCH] chore(deps): update action versions and package references across workflows and projects --- .github/workflows/build-and-test.yml | 2 +- .github/workflows/deploy-dev.yml | 6 +++--- .github/workflows/deploy-prd.yml | 10 +++++----- .github/workflows/destroy-development.yml | 2 +- .github/workflows/destroy-environment.yml | 2 +- .github/workflows/pr-verify.yml | 8 ++++---- ....Portal.Integrations.Servers.Abstractions.V1.csproj | 2 +- ...rtal.Integrations.Servers.Api.Client.Testing.csproj | 2 +- ...ts.Portal.Integrations.Servers.Api.Client.V1.csproj | 2 +- ...emeIdiots.Portal.Integrations.Servers.Api.V1.csproj | 8 ++++---- 10 files changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 8bb9ef42..2e42525f 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -31,7 +31,7 @@ jobs: concurrency: group: ${{ github.repository }}-dev steps: - - uses: frasermolyneux/actions/terraform-plan@main + - uses: frasermolyneux/actions/terraform-plan@terraform-plan/v1.4 with: terraform-folder: "terraform" terraform-var-file: "tfvars/dev.tfvars" diff --git a/.github/workflows/deploy-dev.yml b/.github/workflows/deploy-dev.yml index bbd2e926..fb14aa3e 100644 --- a/.github/workflows/deploy-dev.yml +++ b/.github/workflows/deploy-dev.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - id: v1-ci - uses: frasermolyneux/actions/dotnet-web-ci@main + uses: frasermolyneux/actions/dotnet-web-ci@dotnet-web-ci/v1.4 with: dotnet-project: "XtremeIdiots.Portal.Integrations.Servers.Api.V1" dotnet-version: | @@ -35,7 +35,7 @@ jobs: concurrency: group: ${{ github.repository }}-dev steps: - - uses: frasermolyneux/actions/terraform-plan-and-apply@main + - uses: frasermolyneux/actions/terraform-plan-and-apply@terraform-plan-and-apply/v1.4 with: terraform-folder: "terraform" terraform-var-file: "tfvars/dev.tfvars" @@ -79,7 +79,7 @@ jobs: concurrency: group: ${{ github.repository }}-dev steps: - - uses: frasermolyneux/actions/deploy-app-service@main + - uses: frasermolyneux/actions/deploy-app-service@deploy-app-service/v1.2 with: web-artifact-name: "XtremeIdiots.Portal.Integrations.Servers.Api.V1" web-app-name: ${{ needs.terraform-plan-and-apply-dev.outputs.web_app_name_v1 }} diff --git a/.github/workflows/deploy-prd.yml b/.github/workflows/deploy-prd.yml index 5a68afe2..66e403b3 100644 --- a/.github/workflows/deploy-prd.yml +++ b/.github/workflows/deploy-prd.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - id: v1-ci - uses: frasermolyneux/actions/dotnet-web-ci@main + uses: frasermolyneux/actions/dotnet-web-ci@dotnet-web-ci/v1.4 with: dotnet-project: "XtremeIdiots.Portal.Integrations.Servers.Api.V1" dotnet-version: | @@ -43,7 +43,7 @@ jobs: concurrency: group: ${{ github.repository }}-dev steps: - - uses: frasermolyneux/actions/terraform-plan-and-apply@main + - uses: frasermolyneux/actions/terraform-plan-and-apply@terraform-plan-and-apply/v1.4 with: terraform-folder: "terraform" terraform-var-file: "tfvars/dev.tfvars" @@ -87,7 +87,7 @@ jobs: concurrency: group: ${{ github.repository }}-dev steps: - - uses: frasermolyneux/actions/deploy-app-service@main + - uses: frasermolyneux/actions/deploy-app-service@deploy-app-service/v1.2 with: web-artifact-name: "XtremeIdiots.Portal.Integrations.Servers.Api.V1" web-app-name: ${{ needs.terraform-plan-and-apply-dev.outputs.web_app_name_v1 }} @@ -168,7 +168,7 @@ jobs: concurrency: group: ${{ github.repository }}-prd steps: - - uses: frasermolyneux/actions/terraform-plan-and-apply@main + - uses: frasermolyneux/actions/terraform-plan-and-apply@terraform-plan-and-apply/v1.4 with: terraform-folder: "terraform" terraform-var-file: "tfvars/prd.tfvars" @@ -212,7 +212,7 @@ jobs: concurrency: group: ${{ github.repository }}-prd steps: - - uses: frasermolyneux/actions/deploy-app-service@main + - uses: frasermolyneux/actions/deploy-app-service@deploy-app-service/v1.2 with: web-artifact-name: "XtremeIdiots.Portal.Integrations.Servers.Api.V1" web-app-name: ${{ needs.terraform-plan-and-apply-prd.outputs.web_app_name_v1 }} diff --git a/.github/workflows/destroy-development.yml b/.github/workflows/destroy-development.yml index e0bccba9..ec381d0d 100644 --- a/.github/workflows/destroy-development.yml +++ b/.github/workflows/destroy-development.yml @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/checkout@v6 - - uses: frasermolyneux/actions/terraform-destroy@main + - uses: frasermolyneux/actions/terraform-destroy@terraform-destroy/v1.2 with: terraform-folder: "terraform" terraform-var-file: "tfvars/dev.tfvars" diff --git a/.github/workflows/destroy-environment.yml b/.github/workflows/destroy-environment.yml index ad09a1ff..ed6c3a40 100644 --- a/.github/workflows/destroy-environment.yml +++ b/.github/workflows/destroy-environment.yml @@ -25,7 +25,7 @@ jobs: group: ${{ github.repository }}-${{ inputs.environment }} steps: - - uses: frasermolyneux/actions/terraform-destroy@main + - uses: frasermolyneux/actions/terraform-destroy@terraform-destroy/v1.2 with: terraform-folder: "terraform" terraform-var-file: ${{ inputs.environment == 'prd' && 'tfvars/prd.tfvars' || 'tfvars/dev.tfvars' }} diff --git a/.github/workflows/pr-verify.yml b/.github/workflows/pr-verify.yml index 2aed3f91..0e27c960 100644 --- a/.github/workflows/pr-verify.yml +++ b/.github/workflows/pr-verify.yml @@ -45,7 +45,7 @@ jobs: AZURE_TENANT_ID: ${{ vars.AZURE_TENANT_ID }} AZURE_SUBSCRIPTION_ID: ${{ vars.AZURE_SUBSCRIPTION_ID }} steps: - - uses: frasermolyneux/actions/terraform-plan@main + - uses: frasermolyneux/actions/terraform-plan@terraform-plan/v1.4 with: terraform-folder: "terraform" terraform-var-file: "tfvars/dev.tfvars" @@ -75,7 +75,7 @@ jobs: AZURE_TENANT_ID: ${{ vars.AZURE_TENANT_ID }} AZURE_SUBSCRIPTION_ID: ${{ vars.AZURE_SUBSCRIPTION_ID }} steps: - - uses: frasermolyneux/actions/terraform-plan@main + - uses: frasermolyneux/actions/terraform-plan@terraform-plan/v1.4 with: terraform-folder: "terraform" terraform-var-file: "tfvars/prd.tfvars" @@ -96,7 +96,7 @@ jobs: concurrency: group: ${{ github.repository }}-dev steps: - - uses: frasermolyneux/actions/terraform-plan-and-apply@main + - uses: frasermolyneux/actions/terraform-plan-and-apply@terraform-plan-and-apply/v1.4 with: terraform-folder: "terraform" terraform-var-file: "tfvars/dev.tfvars" @@ -134,7 +134,7 @@ jobs: concurrency: group: ${{ github.repository }}-dev steps: - - uses: frasermolyneux/actions/deploy-app-service@main + - uses: frasermolyneux/actions/deploy-app-service@deploy-app-service/v1.2 with: web-artifact-name: "XtremeIdiots.Portal.Integrations.Servers.Api.V1" web-app-name: ${{ needs.terraform-plan-and-apply-dev.outputs.web_app_name_v1 }} diff --git a/src/XtremeIdiots.Portal.Integrations.Servers.Abstractions.V1/XtremeIdiots.Portal.Integrations.Servers.Abstractions.V1.csproj b/src/XtremeIdiots.Portal.Integrations.Servers.Abstractions.V1/XtremeIdiots.Portal.Integrations.Servers.Abstractions.V1.csproj index 2c22e1ed..6b80d40d 100644 --- a/src/XtremeIdiots.Portal.Integrations.Servers.Abstractions.V1/XtremeIdiots.Portal.Integrations.Servers.Abstractions.V1.csproj +++ b/src/XtremeIdiots.Portal.Integrations.Servers.Abstractions.V1/XtremeIdiots.Portal.Integrations.Servers.Abstractions.V1.csproj @@ -25,7 +25,7 @@ - + diff --git a/src/XtremeIdiots.Portal.Integrations.Servers.Api.Client.Testing/XtremeIdiots.Portal.Integrations.Servers.Api.Client.Testing.csproj b/src/XtremeIdiots.Portal.Integrations.Servers.Api.Client.Testing/XtremeIdiots.Portal.Integrations.Servers.Api.Client.Testing.csproj index 08456bf9..cdee1303 100644 --- a/src/XtremeIdiots.Portal.Integrations.Servers.Api.Client.Testing/XtremeIdiots.Portal.Integrations.Servers.Api.Client.Testing.csproj +++ b/src/XtremeIdiots.Portal.Integrations.Servers.Api.Client.Testing/XtremeIdiots.Portal.Integrations.Servers.Api.Client.Testing.csproj @@ -17,7 +17,7 @@ - + diff --git a/src/XtremeIdiots.Portal.Integrations.Servers.Api.Client.V1/XtremeIdiots.Portal.Integrations.Servers.Api.Client.V1.csproj b/src/XtremeIdiots.Portal.Integrations.Servers.Api.Client.V1/XtremeIdiots.Portal.Integrations.Servers.Api.Client.V1.csproj index 3d0c718d..0c5ac04b 100644 --- a/src/XtremeIdiots.Portal.Integrations.Servers.Api.Client.V1/XtremeIdiots.Portal.Integrations.Servers.Api.Client.V1.csproj +++ b/src/XtremeIdiots.Portal.Integrations.Servers.Api.Client.V1/XtremeIdiots.Portal.Integrations.Servers.Api.Client.V1.csproj @@ -27,7 +27,7 @@ - + diff --git a/src/XtremeIdiots.Portal.Integrations.Servers.Api.V1/XtremeIdiots.Portal.Integrations.Servers.Api.V1.csproj b/src/XtremeIdiots.Portal.Integrations.Servers.Api.V1/XtremeIdiots.Portal.Integrations.Servers.Api.V1.csproj index 9ca93a5f..86232d62 100644 --- a/src/XtremeIdiots.Portal.Integrations.Servers.Api.V1/XtremeIdiots.Portal.Integrations.Servers.Api.V1.csproj +++ b/src/XtremeIdiots.Portal.Integrations.Servers.Api.V1/XtremeIdiots.Portal.Integrations.Servers.Api.V1.csproj @@ -18,16 +18,16 @@ - - + + - + - +