Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin dependencies #96

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pr_scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Setup Gradle
uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
- name: Cache SonarCloud packages
uses: actions/cache@v1
uses: actions/cache@f5ce41475b483ad7581884324a6eca9f48f8dcc7 # v1
with:
path: ~/.sonar-project.properties/cache
key: ${{ runner.os }}-sonar-project.properties
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM eclipse-temurin:11-jdk-alpine as build
FROM eclipse-temurin:11-jdk-alpine@sha256:8631bdced20560ea97c24dc5ed6551a5c663155ef3d6d9e0458f52250c2d4d77 as build

WORKDIR /build
COPY ./samples/spring .

FROM eclipse-temurin:11-jdk-alpine as runtime
FROM eclipse-temurin:11-jdk-alpine@sha256:8631bdced20560ea97c24dc5ed6551a5c663155ef3d6d9e0458f52250c2d4d77 as runtime

WORKDIR /app
COPY --from=build /build/build/libs/*.jar /app/app.jar
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.test-only
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM amazoncorretto:11
FROM amazoncorretto:11@sha256:618ed790c8140114910a6630b6ae33d50de82761f5af6b17928bae64fc4dae57

RUN yum update -y --security
RUN mkdir /app
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
version: "3.9"
services:
mockserverAssertion:
image: mockoon/cli:latest
image: mockoon/cli:latest@sha256:1b8bad447963a35d8e608cf62cba8a572ae1b2327049f883f4a86d213018c133
command: [ "--data", "data", "--port", "3000" ]
volumes:
- ./e2e/mockoon/mockoonAssertions.json:/data:readonly
mockserverIDP:
image: mockoon/cli:latest
image: mockoon/cli:latest@sha256:1b8bad447963a35d8e608cf62cba8a572ae1b2327049f883f4a86d213018c133
command: [ "--data", "data", "--port", "3001" ]
volumes:
- ./e2e/mockoon/mockoonIDP.json:/data:readonly
Expand Down
Loading