From 4a07d8756ee7463e269895c312fdaaace767d311 Mon Sep 17 00:00:00 2001 From: Mia Date: Wed, 24 Jun 2026 10:33:11 -0700 Subject: [PATCH 1/3] chore: migrate GitHub runners to ubuntu-latest-public Replaces all ubuntu-latest runner references with ubuntu-latest-public (GitHub-hosted runner group). --- .github/workflows/autopublish.yml | 6 +++--- .github/workflows/codeql.yml | 2 +- .github/workflows/dependency-submission.yml | 2 +- .github/workflows/publish.yml | 2 +- .github/workflows/runOnGithub.yml | 2 +- .github/workflows/uiTests.yml | 2 +- .github/workflows/versionedDocs.yml | 4 ++-- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/autopublish.yml b/.github/workflows/autopublish.yml index 5adcf6d05..d82a39a16 100644 --- a/.github/workflows/autopublish.yml +++ b/.github/workflows/autopublish.yml @@ -11,7 +11,7 @@ concurrency: jobs: check: name: Check versions and tags - runs-on: ubuntu-latest + runs-on: ubuntu-latest-public outputs: tag_exists: ${{ steps.tags.outputs.tag_exists }} this_version: ${{ steps.version.outputs.this_version }} @@ -43,7 +43,7 @@ jobs: name: Release build and publish needs: check if: needs.check.outputs.tag_exists == 'false' - runs-on: ubuntu-latest + runs-on: ubuntu-latest-public steps: - uses: actions/checkout@v3 - uses: actions/setup-java@v3 @@ -68,7 +68,7 @@ jobs: JRELEASER_GPG_PUBLIC_KEY: ${{ secrets.JRELEASER_GPG_PUBLIC_KEY }} tag-and-release: name: Create tag and release - runs-on: ubuntu-latest + runs-on: ubuntu-latest-public needs: check if: needs.check.outputs.tag_exists == 'false' steps: diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 3d0a86c45..21d45556e 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -26,7 +26,7 @@ jobs: # - https://gh.io/supported-runners-and-hardware-resources # - https://gh.io/using-larger-runners # Consider using larger runners for possible analysis time improvements. - runs-on: ubuntu-latest + runs-on: ubuntu-latest-public timeout-minutes: 60 permissions: actions: read diff --git a/.github/workflows/dependency-submission.yml b/.github/workflows/dependency-submission.yml index a430ea47f..fca5923ff 100644 --- a/.github/workflows/dependency-submission.yml +++ b/.github/workflows/dependency-submission.yml @@ -10,7 +10,7 @@ permissions: jobs: dependency-submission: - runs-on: ubuntu-latest + runs-on: ubuntu-latest-public steps: - name: Checkout sources uses: actions/checkout@v4 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 16aa61ac2..a7033f577 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -7,7 +7,7 @@ on: jobs: publish: name: Release build and publish - runs-on: ubuntu-latest + runs-on: ubuntu-latest-public steps: - uses: actions/checkout@v3 - uses: actions/setup-java@v3 diff --git a/.github/workflows/runOnGithub.yml b/.github/workflows/runOnGithub.yml index 2f803ef61..dc67e7a23 100644 --- a/.github/workflows/runOnGithub.yml +++ b/.github/workflows/runOnGithub.yml @@ -11,7 +11,7 @@ on: pull_request: jobs: gradle: - runs-on: ubuntu-latest + runs-on: ubuntu-latest-public steps: - uses: actions/checkout@v3 - uses: actions/setup-java@v3 diff --git a/.github/workflows/uiTests.yml b/.github/workflows/uiTests.yml index 437d7e5aa..75be4ec44 100644 --- a/.github/workflows/uiTests.yml +++ b/.github/workflows/uiTests.yml @@ -7,7 +7,7 @@ on: pull_request: jobs: test: - runs-on: ubuntu-latest + runs-on: ubuntu-latest-public steps: - name: checkout uses: actions/checkout@v3 diff --git a/.github/workflows/versionedDocs.yml b/.github/workflows/versionedDocs.yml index aa62a187f..fdbee317c 100644 --- a/.github/workflows/versionedDocs.yml +++ b/.github/workflows/versionedDocs.yml @@ -11,7 +11,7 @@ concurrency: jobs: docs: - runs-on: ubuntu-latest + runs-on: ubuntu-latest-public steps: - uses: actions/checkout@v3 with: @@ -40,7 +40,7 @@ jobs: path: Docs.zip publish: needs: [docs] - runs-on: ubuntu-latest + runs-on: ubuntu-latest-public steps: - uses: actions/checkout@v3 with: From 5a7d2fdefc95c4c5e68ba6043ad917e37a432ca6 Mon Sep 17 00:00:00 2001 From: Mia Date: Wed, 24 Jun 2026 10:59:35 -0700 Subject: [PATCH 2/3] chore: retrigger CI From ffabfac2524dabec6dd0b3431d5606f439f0f9d8 Mon Sep 17 00:00:00 2001 From: Mia Date: Wed, 24 Jun 2026 11:12:57 -0700 Subject: [PATCH 3/3] chore: retrigger CI