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

Modified cache and ubuntu versions to resolve the build failures #1142

Merged
merged 1 commit into from
Mar 12, 2025
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
22 changes: 11 additions & 11 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ env:
jobs:
fastTests:
name: Fast Test
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
Expand All @@ -32,7 +32,7 @@ jobs:
uses: actions/checkout@v2

- name: Restore go mod cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
Expand All @@ -57,7 +57,7 @@ jobs:
golangci:
# this action needs to run in its own job per setup
name: Lint Eastwood
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2

Expand All @@ -76,7 +76,7 @@ jobs:

buildLinux:
name: Build Linux Binaries
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
Expand All @@ -87,7 +87,7 @@ jobs:
uses: actions/checkout@v2

- name: Restore go mod cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
Expand All @@ -100,15 +100,15 @@ jobs:

buildLinuxDocker:
name: Build Linux Docker Images
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ${{ env.DEFAULT_GO_VERSION }}

- name: Restore go mod cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
uses: actions/checkout@v2

- name: Restore go mod cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
uses: actions/checkout@v2

- name: Restore go mod cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
Expand All @@ -188,7 +188,7 @@ jobs:

e2e:
name: E2E Tests
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
matrix:
k8sVersion: ["1.29", "1.30", "1.31", "1.32"]
Expand All @@ -202,7 +202,7 @@ jobs:
uses: actions/checkout@v2

- name: Restore go mod cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
jobs:
releaseLinux:
name: Release Linux
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:

release:
name: Release
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [releaseLinux, releaseWindows]
steps:
- name: Set up Go 1.x
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
stale:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
# 15+5 day stale policy for PRs
# * Except PRs marked as "stalebot-ignore"
Expand Down