Skip to content

Bump org.springframework.boot:spring-boot-starter-parent from 2.7.5 to 3.3.4 #450

Bump org.springframework.boot:spring-boot-starter-parent from 2.7.5 to 3.3.4

Bump org.springframework.boot:spring-boot-starter-parent from 2.7.5 to 3.3.4 #450

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@dd2c410b088af7c0dc8046f3ac9a8f4148492a95
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- uses: actions/checkout@7884fcad6b5d53d10323aee724dc68d8b9096a2e
- name: Setup jdk-17
uses: actions/setup-java@5b36705a13905facb447b6812d613a06a07e371d
with:
java-version: 17
distribution: 'adopt'
cache: maven
- name: Build with Maven
run: mvn clean install --file pom.xml
automerge:
needs: build
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- name: Harden Runner
uses: step-security/harden-runner@dd2c410b088af7c0dc8046f3ac9a8f4148492a95
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- uses: fastify/github-action-merge-dependabot@35d92790eac1b82eb5b6f4a0b48fedced08edb63
if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request' }}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}