From 4e630a2785f77e95bc000cece00e2ee1bc3b60e2 Mon Sep 17 00:00:00 2001 From: Gabriel Zurita Date: Mon, 25 Nov 2024 08:33:44 -0700 Subject: [PATCH] Set runs-on: ubuntu-20.04 on erroring workflows This will hopefully resolve the removeUnusedEntriesOlderThan in the below pipelines: .github/workflows/bie-kafka-end2end-test.yml .github/workflows/codeql-analysis.yml .github/workflows/container-healthchecks.yml .github/workflows/continuous-integration.yml .github/workflows/ee-ep-merge-end-to-end.yml .github/workflows/lint-gradle-files.yml .github/workflows/svc-bgs-api-integration-test.yml .github/workflows/svc-bip-api-integration-test.yml For more details, see the following chain of PRs: https://github.com/department-of-veterans-affairs/abd-vro/pull/3796 --- .github/workflows/bie-kafka-end2end-test.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/container-healthchecks.yml | 2 +- .github/workflows/continuous-integration.yml | 2 +- .github/workflows/ee-ep-merge-end-to-end.yml | 2 +- .github/workflows/lint-gradle-files.yml | 2 +- .github/workflows/svc-bgs-api-integration-test.yml | 2 +- .github/workflows/svc-bip-api-integration-test.yml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/bie-kafka-end2end-test.yml b/.github/workflows/bie-kafka-end2end-test.yml index e610ade5d1..52f14da367 100644 --- a/.github/workflows/bie-kafka-end2end-test.yml +++ b/.github/workflows/bie-kafka-end2end-test.yml @@ -12,7 +12,7 @@ env: VRO_DEV_SECRETS_FOLDER: "${{ github.workspace }}/.cache/abd-vro-dev-secrets" jobs: integration-test: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 # NOTE: As VRO is being shut down, this version is pinned to get around a .gradle issue with removeUnusedEntriesOlderThan. steps: - name: 'Checkout source code' uses: actions/checkout@v4 diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index ac0b44b5d7..2973fb9969 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -18,7 +18,7 @@ on: jobs: analyze: name: Analyze - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 # NOTE: As VRO is being shut down, this version is pinned to get around a .gradle issue with removeUnusedEntriesOlderThan. concurrency: ${{ github.workflow }}-${{ matrix.language }}-${{ github.ref }} permissions: actions: read diff --git a/.github/workflows/container-healthchecks.yml b/.github/workflows/container-healthchecks.yml index 91f400e11f..a702ffb381 100644 --- a/.github/workflows/container-healthchecks.yml +++ b/.github/workflows/container-healthchecks.yml @@ -14,7 +14,7 @@ env: jobs: container-healthcheck: if: github.repository == 'department-of-veterans-affairs/abd-vro' - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 # NOTE: As VRO is being shut down, this version is pinned to get around a .gradle issue with removeUnusedEntriesOlderThan. steps: - name: "Checkout source code" diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 474fac2100..6df1c7a754 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -24,7 +24,7 @@ jobs: # https://docs.github.com/en/webhooks-and-events/webhooks/webhook-events-and-payloads#pull_request if: github.event_name != 'pull_request' || (github.event_name == 'pull_request' && !github.event.pull_request.draft ) - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 # NOTE: As VRO is being shut down, this version is pinned to get around a .gradle issue with removeUnusedEntriesOlderThan. steps: - name: "DEBUG" run: | diff --git a/.github/workflows/ee-ep-merge-end-to-end.yml b/.github/workflows/ee-ep-merge-end-to-end.yml index fbe9e75aa2..7e971b146a 100644 --- a/.github/workflows/ee-ep-merge-end-to-end.yml +++ b/.github/workflows/ee-ep-merge-end-to-end.yml @@ -12,7 +12,7 @@ env: jobs: integration-test: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 # NOTE: As VRO is being shut down, this version is pinned to get around a .gradle issue with removeUnusedEntriesOlderThan. steps: - name: 'Checkout source code' diff --git a/.github/workflows/lint-gradle-files.yml b/.github/workflows/lint-gradle-files.yml index e295888ff4..6353a1f008 100644 --- a/.github/workflows/lint-gradle-files.yml +++ b/.github/workflows/lint-gradle-files.yml @@ -9,7 +9,7 @@ on: jobs: lint-gradle-files: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 # NOTE: As VRO is being shut down, this version is pinned to get around a .gradle issue with removeUnusedEntriesOlderThan. steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/svc-bgs-api-integration-test.yml b/.github/workflows/svc-bgs-api-integration-test.yml index 5e4adecb4b..1d4e7b4fb2 100644 --- a/.github/workflows/svc-bgs-api-integration-test.yml +++ b/.github/workflows/svc-bgs-api-integration-test.yml @@ -12,7 +12,7 @@ env: jobs: integration-test: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 # NOTE: As VRO is being shut down, this version is pinned to get around a .gradle issue with removeUnusedEntriesOlderThan. steps: - name: 'Setup Ruby' uses: ruby/setup-ruby@v1.196.0 diff --git a/.github/workflows/svc-bip-api-integration-test.yml b/.github/workflows/svc-bip-api-integration-test.yml index 5bdb7fac8d..e49437c3e6 100644 --- a/.github/workflows/svc-bip-api-integration-test.yml +++ b/.github/workflows/svc-bip-api-integration-test.yml @@ -13,7 +13,7 @@ env: jobs: integration-test: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 # NOTE: As VRO is being shut down, this version is pinned to get around a .gradle issue with removeUnusedEntriesOlderThan. steps: - name: 'Checkout source code' uses: actions/checkout@v4