Skip to content

Commit

Permalink
Update Github Actions PR pipeline to Ubuntu 24.04
Browse files Browse the repository at this point in the history
Until now we were using ubuntu-latest, which will automatically start using ubuntu 24.04 soon.
With this we make it explicit and controlled.
  • Loading branch information
carles-grafana committed Dec 12, 2024
1 parent 7117de4 commit de2e7dc
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ concurrency:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:

- name: Check out code
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
unit-tests:
name: Run Unit Tests
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
test-target:
Expand All @@ -80,7 +80,7 @@ jobs:

integration-tests:
name: Run integration tests
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
test-target:
Expand All @@ -105,7 +105,7 @@ jobs:

build:
name: Build
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Check out code
uses: actions/checkout@v4
Expand All @@ -132,7 +132,7 @@ jobs:

benchmark:
name: Benchmark
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Check out code
uses: actions/checkout@v4
Expand All @@ -147,7 +147,7 @@ jobs:

vendor-check:
name: Vendor check
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Check out code
uses: actions/checkout@v4
Expand All @@ -165,7 +165,7 @@ jobs:

tempo-jsonnet:
name: Check jsonnet & tempo-mixin
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Check out code
uses: actions/checkout@v4
Expand All @@ -186,7 +186,7 @@ jobs:

build-technical-documentation:
name: Build technical documentation
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Check out code
uses: actions/checkout@v4
Expand Down

0 comments on commit de2e7dc

Please sign in to comment.