[Snyk] Upgrade com.nimbusds:nimbus-jose-jwt from 9.37.2 to 9.39.3 #7
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 check | |
on: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.11 | |
- name: Build with Maven | |
run: | |
mvn clean package --file pom.xml | |
- name: Build the Docker image | |
run: docker build . --file Dockerfile --tag ebay/digital-signature-verification-ebay-api:latest |