fix(deps): update dependency org.springframework.security:spring-security-oauth2-authorization-server to v1.3.1 - autoclosed #1628
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: PR | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
commitlint: | |
name: Check Commit Message | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: wagoid/commitlint-github-action@v6 | |
with: | |
configFile: package.json | |
failOnWarnings: true | |
build: | |
name: Build | |
needs: [ commitlint ] | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest ] | |
jdk: [ 21 ] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup JDK ${{ matrix.jdk }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.jdk }} | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Build with Gradle | |
run: ./gradlew clean build |