fix(deps): update all patch versions #242
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: OATS Tests | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - .github/workflows/oats-tests.yml | |
| - mise.toml | |
| - .mise/tasks/oats-tests.sh | |
| - 'logging-k8s-stdout-otlp-json/**' | |
| - 'javaagent-declarative-configuration/**' | |
| - 'spring-declarative-configuration/**' | |
| - 'doc-snippets/extensions-minimal/**' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| acceptance-tests: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Check out | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Set up JDK for running Gradle | |
| uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0 | |
| with: | |
| distribution: temurin | |
| java-version: 17 | |
| - name: Set up gradle | |
| uses: gradle/actions/setup-gradle@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2 | |
| with: | |
| cache-read-only: ${{ github.event_name == 'pull_request' }} | |
| - uses: jdx/mise-action@1648a7812b9aeae629881980618f079932869151 # v4.0.1 | |
| - name: Run OATS tests | |
| run: mise run oats-tests |