From dab45a1de4fcdb1b30d8c4a50c6bf8554495ee32 Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Mon, 20 Jan 2025 11:12:46 +0100 Subject: [PATCH] github-actions: ubuntu-20.04 will be fully retired by April 1, 2025 See https://github.blog/changelog/2025-01-15-github-actions-ubuntu-20-runner-image-brownout-dates-and-other-breaking-changes/ Let's use `ubuntu-22` and `ubuntu-24` or `ubuntu-latest` --- .github/workflows/main.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9873953b73..90a698be19 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -216,8 +216,7 @@ jobs: contains(github.event.pull_request.labels.*.name, 'ci:agent-integration') || github.event.pull_request.draft == false || inputs.agent_integration_tests_ci == true - # Pinned to ubuntu 20.04 until https://github.com/elastic/apm-agent-java/issues/3035 is solved. - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 needs: build steps: - uses: actions/checkout@v4