Skip to content

build(deps): Bump org.springdoc:springdoc-openapi-starter-webflux-ui from 2.8.3 to 2.8.5 #84

build(deps): Bump org.springdoc:springdoc-openapi-starter-webflux-ui from 2.8.3 to 2.8.5

build(deps): Bump org.springdoc:springdoc-openapi-starter-webflux-ui from 2.8.3 to 2.8.5 #84

Workflow file for this run

name: Build and Test
on:
push:
branches:
- trunk
paths-ignore:
- 'docs/**'
- 'README.md'
pull_request:
branches:
- trunk
paths-ignore:
- 'docs/**'
- 'README.md'
jobs:
build-and-test:
name: Build and Test Project
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout Code
uses: actions/checkout@v3
# Set up Java environment
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 21
# Cache Gradle dependencies
- name: Cache Gradle dependencies
uses: actions/cache@v3
with:
path: ~/.gradle/caches, ~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
# Grant execution permissions for the Makefile
- name: Makefile Permissions
run: chmod +x Makefile
# Install Gradle Wrapper if needed
- name: Ensure Gradle Wrapper
run: |
if [ ! -f "./gradlew" ]; then
gradle wrapper
fi
# Run Makefile's pipeline target
- name: Run Pipeline
run: make pipeline