diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index df6fab9..9956893 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ on: jobs: test: name: Test - runs-on: ubicloud-standard-4 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c401c07..e8c1c41 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -47,7 +47,7 @@ on: jobs: # Run 'dist plan' (or host) to determine what tasks we need to do plan: - runs-on: "ubicloud-standard-2" + runs-on: "ubuntu-latest" outputs: val: ${{ steps.plan.outputs.manifest }} tag: ${{ !github.event.pull_request && github.ref_name || '' }} @@ -174,7 +174,7 @@ jobs: needs: - plan - build-local-artifacts - runs-on: "ubicloud-standard-2" + runs-on: "ubuntu-latest" env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} BUILD_MANIFEST_NAME: target/distrib/global-dist-manifest.json @@ -225,7 +225,7 @@ jobs: if: ${{ always() && needs.plan.result == 'success' && needs.plan.outputs.publishing == 'true' && (needs.build-global-artifacts.result == 'skipped' || needs.build-global-artifacts.result == 'success') && (needs.build-local-artifacts.result == 'skipped' || needs.build-local-artifacts.result == 'success') }} env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - runs-on: "ubicloud-standard-2" + runs-on: "ubuntu-latest" outputs: val: ${{ steps.host.outputs.manifest }} steps: @@ -290,7 +290,7 @@ jobs: # still allowing individual publish jobs to skip themselves (for prereleases). # "host" however must run to completion, no skipping allowed! if: ${{ always() && needs.host.result == 'success' }} - runs-on: "ubicloud-standard-2" + runs-on: "ubuntu-latest" env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: diff --git a/Cargo.toml b/Cargo.toml index 079fe39..030325c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -82,6 +82,6 @@ pr-run-mode = "upload" [workspace.metadata.dist.github-custom-runners] aarch64-apple-darwin = "macos-14" -aarch64-unknown-linux-gnu = "ubicloud-standard-4-arm" -x86_64-unknown-linux-gnu = "ubicloud-standard-4" -global = "ubicloud-standard-2" +aarch64-unknown-linux-gnu = "ubuntu-24.04-arm" +x86_64-unknown-linux-gnu = "ubuntu-latest" +global = "ubuntu-latest"