diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 160a0e1..60465a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ env: jobs: detect-noop: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 outputs: noop: ${{ steps.noop.outputs.should_skip }} steps: @@ -34,7 +34,7 @@ jobs: do_not_skip: '["workflow_dispatch", "schedule", "push"]' report-breaking-changes: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: detect-noop if: needs.detect-noop.outputs.noop != 'true' steps: @@ -61,7 +61,7 @@ jobs: make schema-version-diff lint: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: detect-noop if: needs.detect-noop.outputs.noop != 'true' @@ -105,7 +105,7 @@ jobs: version: ${{ env.GOLANGCI_VERSION }} check-diff: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: detect-noop if: needs.detect-noop.outputs.noop != 'true' @@ -148,7 +148,7 @@ jobs: run: make check-diff unit-tests: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: detect-noop if: needs.detect-noop.outputs.noop != 'true' @@ -197,7 +197,7 @@ jobs: file: _output/tests/linux_amd64/coverage.txt local-deploy: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: detect-noop if: needs.detect-noop.outputs.noop != 'true' @@ -240,7 +240,7 @@ jobs: run: make local-deploy publish-artifacts: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: - detect-noop - report-breaking-changes