fix(deps): update dependency io.opentelemetry.javaagent:opentelemetry-javaagent to v2.26.0 #2228
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build | |
| on: [pull_request] | |
| permissions: {} | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }}-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu] | |
| java: | |
| - 8 # TestedInstrumentationsSmokeTest only runs with this version, so update this test when 8 gets removed from the test matrix | |
| - 11 | |
| - 17 | |
| - 21 | |
| steps: | |
| - name: Check out | |
| with: | |
| persist-credentials: false | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - uses: jdx/mise-action@c1ecc8f748cd28cdeabf76dab3cccde4ce692fe4 # v4.0.0 | |
| with: | |
| version: v2026.3.8 | |
| sha256: 60ef9c2d9005ed4559cc8b1391056adf2c3b43d1065041640bbee854e5c4c9ee | |
| - name: Build | |
| run: mise run build | |
| env: | |
| CHECK_GENERATED_FILES: true | |
| SMOKE_TEST_JAVA_VERSION: ${{ matrix.java }} # the smoke tests will pick this up |