chore(deps): update plugin org.springframework.boot to v3.4.1 #6
Workflow file for this run
This file contains 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 | |
- 'logging-k8s-stdout-otlp-json/**' | |
workflow_dispatch: | |
jobs: | |
acceptance-tests: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
- name: Set up JDK for running Gradle | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Set up gradle | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
cache-read-only: ${{ github.event_name == 'pull_request' }} | |
- name: Check out oats | |
uses: actions/checkout@v4 | |
with: | |
repository: grafana/oats | |
ref: v0.1.0 | |
path: oats | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23' | |
cache-dependency-path: oats/go.sum | |
- name: Run acceptance tests | |
run: .github/scripts/run-oats-tests.sh | |
- name: upload log file | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: OATS logs | |
path: oats/yaml/build/**/*.log |