Skip to content

Bump org.springframework.security:spring-security-oauth2-client from 5.6.2 to 5.6.9 #239

Bump org.springframework.security:spring-security-oauth2-client from 5.6.2 to 5.6.9

Bump org.springframework.security:spring-security-oauth2-client from 5.6.2 to 5.6.9 #239

Workflow file for this run

name: "Test pull request"
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: "Checking out"
uses: actions/checkout@v3
with:
submodules: 'true'
- name: "Setting up Java"
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '11'
cache: 'maven'
- name: "Build gateway"
run: make install
- name: "Run tests"
run: make test
- name: "Build docker image"
run: make docker
- name: "Remove SNAPSHOT jars from repository"
run: |
find .m2/repository -name "*SNAPSHOT*" -type d | xargs rm -rf {}