Skip to content

Commit

Permalink
chore(ci): change from ubuntu-latest to ubuntu-24.04
Browse files Browse the repository at this point in the history
This is (a) to avoid the warnings in workflow runs, e.g.:

    ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see actions/runner-images#10636

and (b) to try it out ahead of the switch.
  • Loading branch information
trentm committed Jan 9, 2025
1 parent ca16a52 commit c94ce45
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions:

jobs:
categorize-issues-and-prs:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Get token
id: get_token
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ permissions:

jobs:
lint:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-instrumentation-openai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ permissions:

jobs:
release:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
env:
PKGDIR: packages/instrumentation-openai
PKGNAME: "@elastic/opentelemetry-instrumentation-openai"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-mockotlpserver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ permissions:

jobs:
release:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
env:
PKGDIR: packages/mockotlpserver
PKGNAME: "@elastic/mockotlpserver"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ permissions:

jobs:
release:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
env:
DOCKER_IMAGE_NAME: docker.elastic.co/observability/elastic-otel-node
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
if: ${{ !(github.event.action == 'opened' && github.event.pull_request.draft) ||
github.event.pull_request.user.login != 'dependabot[bot]' ||
github.event.pull_request.user.login != 'elastic-renovate-prod[bot]' }}
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Prepare Slack message
id: prepare
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-edot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- '14'
- '14.18.0'

runs-on: ubuntu-latest
runs-on: ubuntu-24.04

services:
redis:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-instrumentation-openai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ permissions:

jobs:
unit-test:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
Expand All @@ -48,7 +48,7 @@ jobs:
# This runs the unit tests against a number of 'openai' versions in the
# supported range.
test-all-versions:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand All @@ -62,7 +62,7 @@ jobs:
working-directory: packages/instrumentation-openai

integration-test:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
services:
ollama:
# A light fork of Ollama to float some in-progress contributions related
Expand Down

0 comments on commit c94ce45

Please sign in to comment.