Skip to content

Commit

Permalink
fix: Use private runner names instead of labels (#3805)
Browse files Browse the repository at this point in the history
We missed the [announcement]:

> Customers will then no longer be able to use multiple labels or target
> non-name labels on larger runners after the 17th of June.

[announcement]:
https://github.blog/changelog/2024-05-16-new-dates-for-actions-larger-runner-multi-label-deprecation/
  • Loading branch information
jstvz authored Jun 20, 2024
1 parent 8da8c67 commit 41b9347
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/chores.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
check_api_versions:
runs-on: sfdc-ubuntu-latest
runs-on: SFDO-Tooling-Ubuntu
outputs:
hub_version: ${{ steps.devhub-api-version.outputs.hub_version }}
cci_version: ${{ steps.cci-api-version.outputs.cci_version }}
Expand All @@ -30,7 +30,7 @@ jobs:
version=$(yq '.project.package.api_version' cumulusci/cumulusci.yml)
echo "::set-output name=cci_version::$version"
update_api_versions:
runs-on: sfdc-ubuntu-latest
runs-on: SFDO-Tooling-Ubuntu
needs: check_api_versions
if: ${{ needs.check_api_versions.outputs.hub_version != needs.check_api_versions.outputs.cci_version }}
env:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/feature_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
docs:
name: Build Docs
if: ${{ github.event_name == 'pull_request' }}
runs-on: sfdc-ubuntu-latest
runs-on: SFDO-Tooling-Ubuntu
steps:
- name: "Checkout"
uses: actions/checkout@v2
Expand All @@ -40,7 +40,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-latest, sfdc-ubuntu-latest, sfdc-windows-latest]
os: [macos-latest, SFDO-Tooling-Ubuntu, SFDO-Tooling-Windows]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
exclude:
- os: macos-latest
Expand All @@ -63,7 +63,7 @@ jobs:

robot_api:
name: "Robot: No browser"
runs-on: sfdc-ubuntu-latest
runs-on: SFDO-Tooling-Ubuntu
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:
jobs:
generate-changelog:
name: Create a PR to update version and release notes
runs-on: sfdc-ubuntu-latest
runs-on: SFDO-Tooling-Ubuntu
steps:
- uses: actions/checkout@main
- name: Set up Python 3.8
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency: publishing
jobs:
publish-to-pypi:
name: Publish new release to PyPI
runs-on: sfdc-ubuntu-latest
runs-on: SFDO-Tooling-Ubuntu
steps:
- uses: actions/checkout@main
- name: Set up Python 3.8
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ env:
jobs:
test_artifacts:
name: "Test Package Artifacts"
runs-on: sfdc-ubuntu-latest
runs-on: SFDO-Tooling-Ubuntu
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:

test_release:
name: "Test Release Flows"
runs-on: sfdc-ubuntu-latest
runs-on: SFDO-Tooling-Ubuntu
concurrency: release
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/slow_integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ env:
jobs:
org_backed_tests:
name: "Org-connected Tests"
runs-on: sfdc-ubuntu-latest
runs-on: SFDO-Tooling-Ubuntu
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
cci org scratch_delete pytest
robot_ui:
name: "Robot: ${{ matrix.job-name }}"
runs-on: sfdc-ubuntu-latest
runs-on: SFDO-Tooling-Ubuntu
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit 41b9347

Please sign in to comment.