Skip to content
Merged
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
18 changes: 9 additions & 9 deletions .github/workflows/test-build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:

jobs:
lint:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
container:
image: quay.io/cortexproject/build-image:master-03a8f8c98
steps:
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
run: make BUILD_IN_CONTAINER=false check-white-noise

test:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
container:
image: quay.io/cortexproject/build-image:master-03a8f8c98
steps:
Expand All @@ -62,7 +62,7 @@ jobs:
- name: Run Tests
run: make BUILD_IN_CONTAINER=false test
test-no-race:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
container:
image: quay.io/cortexproject/build-image:master-03a8f8c98
steps:
Expand All @@ -82,7 +82,7 @@ jobs:

security:
name: CodeQL
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
permissions:
actions: read
contents: read
Expand All @@ -105,7 +105,7 @@ jobs:


build:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
container:
image: quay.io/cortexproject/build-image:master-03a8f8c98
steps:
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:

integration:
needs: build
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -230,7 +230,7 @@ jobs:

integration-configs-db:
needs: build
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout Repo
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
Expand All @@ -252,7 +252,7 @@ jobs:
deploy_website:
needs: [build, test]
if: (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')) && github.repository == 'cortexproject/cortex'
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
container:
image: quay.io/cortexproject/build-image:master-03a8f8c98
steps:
Expand Down Expand Up @@ -294,7 +294,7 @@ jobs:
deploy:
needs: [build, test, lint, integration, integration-configs-db]
if: (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')) && github.repository == 'cortexproject/cortex'
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
container:
image: quay.io/cortexproject/build-image:master-03a8f8c98
steps:
Expand Down
Loading