From 6662292b0fed015a3a796c00c42fda33f46f38a9 Mon Sep 17 00:00:00 2001 From: Ido talker <129003699+idotalk@users.noreply.github.com> Date: Sat, 20 Jun 2026 12:11:47 +0300 Subject: [PATCH] Update GitHub Actions to use ubuntu-latest runner --- .github/workflows/go.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 13f97898bb..8f8b72c548 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -10,13 +10,13 @@ on: jobs: lint: name: Lint - runs-on: self-hosted-ghr + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: submodules: false - # Cache build tools to avoid downloading them each time + # Kept your custom cache for general build tools if needed - uses: actions/cache@v4 with: path: build/cache @@ -26,7 +26,7 @@ jobs: uses: actions/setup-go@v5 with: go-version: 1.24 - cache: false + cache: true # Automatically handles Go module and build caching - name: Run linters run: | @@ -37,7 +37,7 @@ jobs: test: name: Test needs: lint - runs-on: self-hosted-ghr + runs-on: ubuntu-latest strategy: matrix: go: @@ -52,7 +52,7 @@ jobs: uses: actions/setup-go@v5 with: go-version: ${{ matrix.go }} - cache: false + cache: true # Speeds up matrix testing by caching modules across runs - name: Run tests run: go test ./...