diff --git a/.github/workflow/github-actions-deploy-snapshots.yml b/.github/workflow/github-actions-deploy-snapshots.yml deleted file mode 100644 index 561530056..000000000 --- a/.github/workflow/github-actions-deploy-snapshots.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Maven Deploy Snapshots - -on: - push: - branches: - - master - - fence-integration - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - name: Set up JDK 11 - uses: actions/setup-java@v3 - with: - java-version: '11' - distribution: 'temurin' - - name: Build with Maven - run: mvn --update-snapshots deploy - env: - GITHUB_TOKEN: ${{ github.token }} \ No newline at end of file diff --git a/.github/workflow/github-actions-test.yml b/.github/workflow/github-actions-test.yml deleted file mode 100644 index 14b86e645..000000000 --- a/.github/workflow/github-actions-test.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Maven Run Tests - -on: [ push ] - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - name: Set up JDK 11 - uses: actions/setup-java@v3 - with: - java-version: '11' - distribution: 'temurin' - - name: Test with Maven - run: mvn test - env: - GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/github-actions-test.yml b/.github/workflows/github-actions-test.yml new file mode 100644 index 000000000..f5c96ad6d --- /dev/null +++ b/.github/workflows/github-actions-test.yml @@ -0,0 +1,21 @@ +name: Maven Run Tests + +on: + push: + branches: [ "master", "release" ] + pull_request: + branches: [ "master", "release" ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Set up JDK 21 + uses: actions/setup-java@v4 + with: + java-version: '21' + distribution: 'temurin' + - name: Test with Maven + run: mvn test \ No newline at end of file diff --git a/pic-sure-auth-services/src/main/resources/application.properties b/pic-sure-auth-services/src/main/resources/application.properties index e2c227c31..c2ad6176c 100644 --- a/pic-sure-auth-services/src/main/resources/application.properties +++ b/pic-sure-auth-services/src/main/resources/application.properties @@ -113,4 +113,4 @@ server.servlet.session.cookie.http-only=true server.servlet.session.cookie.secure=true spring.devtools.remote.secret=${DEVTOOLS_SECRET:false} -spring.devtools.remote.context-path=/remote \ No newline at end of file +spring.devtools.remote.context-path=/remote