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

github-actions: ubuntu-20.04 will be fully retired by April 1, 2025 #2934

Merged
merged 2 commits into from
Jan 23, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ jobs:
# Since we build the cloudbeat in the worker's OS and as non static,
# we need to keep the OS version same as elastic-agent docker image base.
# docker run --interactive --tty --rm --entrypoint bash docker.elastic.co/elastic-agent/elastic-agent-complete:8.14.0-SNAPSHOT -c 'cat /etc/os-release'
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
timeout-minutes: 40
steps:
- name: Free Disk Space (Ubuntu)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cloudformation-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ env:
jobs:
Deploy-CloudFormation:
name: "Deploy CloudFormation"
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
timeout-minutes: 40
defaults:
run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/destroy-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ env:

jobs:
Destroy:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
timeout-minutes: 120
# Add "id-token" with the intended permissions.
permissions:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/eks-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ jobs:
k8s_context: "test-eks-config-2"
label: "EKS functional tests: config 2"
name: ${{ matrix.label }}
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
timeout-minutes: 90
steps:
- name: Check out the repo
Expand Down Expand Up @@ -227,7 +227,7 @@ jobs:
name: Publish Results
needs: Test_Matrix
if: always()
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Download Artifacts
uses: actions/download-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ concurrency:
jobs:
package_beat:
name: Package Cloudbeat
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
timeout-minutes: 40
strategy:
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-cloudformation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:

jobs:
publish_cloudformation:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ env:

jobs:
Deploy:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
timeout-minutes: 120
defaults:
run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

manifest_tests:
name: Manifest Tests
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
timeout-minutes: 15
steps:
- name: Check out the repo
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/upgrade-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ env:

jobs:
init:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
outputs:
base-stack-version: ${{ steps.set-previous-version.outputs.PREVIOUS_VERSION }}
ess-region: ${{ env.TF_VAR_ess_region }}
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
serverless_mode: false
secrets: inherit
upgrade:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: [init, deploy]
timeout-minutes: 120
defaults:
Expand Down
Loading