Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actionlint.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Stop actionlint from triggering failures
self-hosted-runner:
labels:
- ubuntu-20.04-16core-graph-team
- ubuntu-22.04-32core-graph-team-amd64
2 changes: 1 addition & 1 deletion .github/workflows/build_gems.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
name: 'Build gem'
strategy:
matrix:
platform: ['ubuntu-20.04', 'macos-13']
platform: ['ubuntu-22.04', 'macos-13']
config: ['asserts', 'release']
runs-on: ${{ matrix.platform }}
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
test:
runs-on: 'ubuntu-latest'
runs-on: 'ubuntu-22.04'
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
test:
runs-on: 'ubuntu-latest'
runs-on: 'ubuntu-22.04'
steps:
- uses: actions/checkout@v4
- name: Format Bazel files
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
release-image:
runs-on: ubuntu-latest
runs-on: 'ubuntu-22.04'
steps:
- run: |
if [ -z "$TAG" ]; then
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
download-and-publish-gems:
name: 'Download and publish gems'
runs-on: 'ubuntu-20.04'
runs-on: 'ubuntu-22.04'
env:
TAG: ${{ inputs.tag }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-dry-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
# Use macos-14 as macos-13 runner is only offered for x86_64
platform: ['ubuntu-20.04-16core-graph-team', 'macos-13-xlarge']
platform: ['ubuntu-22.04-32core-graph-team-amd64', 'macos-13-xlarge']
config: ['asserts', 'release']
runs-on: ${{ matrix.platform }}
env:
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
create-release:
name: 'Create release (dry run)'
needs: build-and-upload-artifacts
runs-on: 'ubuntu-20.04'
runs-on: 'ubuntu-22.04'
env:
FAKE_VERSION: ${{ inputs.fakeVersion }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: 'Build and upload artifacts'
strategy:
matrix:
platform: ['ubuntu-20.04-16core-graph-team', 'macos-13-xlarge']
platform: ['ubuntu-22.04-32core-graph-team-amd64', 'macos-13-xlarge']
# Keep the platform list in sync with 'Supported Configurations' in README.md
config: ['asserts', 'release']
runs-on: ${{ matrix.platform }}
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
create-release:
name: 'Create release'
needs: build-and-upload-artifacts
runs-on: 'ubuntu-20.04'
runs-on: 'ubuntu-22.04'
steps:
- uses: actions/checkout@v4
- name: Create Release
Expand Down
Loading