Skip to content

Bump org.springframework.boot:spring-boot-dependencies from 3.3.0 to 3.3.3 #363

Bump org.springframework.boot:spring-boot-dependencies from 3.3.0 to 3.3.3

Bump org.springframework.boot:spring-boot-dependencies from 3.3.0 to 3.3.3 #363

Workflow file for this run

name: Build
on:
schedule:
- cron: "15 0 * * *"
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build:
name: build
strategy:
matrix:
java: ['21']
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
runs-on: ${{ matrix.os }}
env:
MAVEN_CLI_OPTS: "--batch-mode --errors --fail-at-end --show-version"
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Build
run: >
./mvnw $MAVEN_CLI_OPTS
clean verify