Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update large runners to 22.04 #1695

Merged
merged 1 commit into from
Oct 21, 2024
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

ci-build-test:
name: CI build and unit test
runs-on: distroless-ci-large-ubuntu-20.04 # custom runner most compatible with debian 11
runs-on: distroless-ci-large-ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Mount bazel caches
Expand All @@ -38,7 +38,7 @@ jobs:
sudo apt-get remove -y '^dotnet-.*'
sudo apt-get remove -y '^llvm-.*'
sudo apt-get remove -y 'php.*'
sudo apt-get remove -y azure-cli google-cloud-cli hhvm google-chrome-stable firefox powershell mono-devel
sudo apt-get remove -y azure-cli google-cloud-cli google-chrome-stable firefox powershell mono-devel
sudo apt-get autoremove -y
sudo apt-get clean
rm -rf /usr/share/dotnet/
Expand All @@ -59,7 +59,7 @@ jobs:

ci-images:
name: CI image tests
runs-on: distroless-ci-large-ubuntu-20.04 # most compatible with debian 11
runs-on: distroless-ci-large-ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Mount bazel caches
Expand All @@ -76,7 +76,7 @@ jobs:
sudo apt-get remove -y '^dotnet-.*'
sudo apt-get remove -y '^llvm-.*'
sudo apt-get remove -y 'php.*'
sudo apt-get remove -y azure-cli google-cloud-cli hhvm google-chrome-stable firefox powershell mono-devel
sudo apt-get remove -y azure-cli google-cloud-cli google-chrome-stable firefox powershell mono-devel
sudo apt-get autoremove -y
sudo apt-get clean
rm -rf /usr/share/dotnet/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/image-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ concurrency:

jobs:
diff:
runs-on: distroless-ci-large-ubuntu-20.04 # custom runner most compatible with debian 11
runs-on: distroless-ci-large-ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Go
Expand Down
Loading