Skip to content

Commit

Permalink
Dependabot and docker fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-kumar committed Jul 21, 2024
1 parent 236172a commit 402cbee
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
file: ./Dockerfile
platforms: linux/amd64,linux/arm64/v8
push: true
tags: norstella/oxalis-as4:6.5.0-latest
tags: norstella/oxalis-as4:6.6.1-latest
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
file: ./Dockerfile
platforms: linux/amd64,linux/arm64/v8
push: true
tags: norstella/oxalis-as4:6.5.0
tags: norstella/oxalis-as4:6.6.0
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ RUN cd $MAVEN_HOME \
&& cp -r target/$(ls target | grep "\-dist$" | head -1) /dist


FROM norstella/oxalis:6.1.1
FROM norstella/oxalis:6.6.0

COPY --from=mvn /dist /oxalis/ext
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ public void testCreateMessagingHeader() throws Exception {
public static X509Certificate generateSelfSignedCertificate(String subjectDN) throws Exception
{
KeyPairGenerator keyPairGenerator = KeyPairGenerator.getInstance("RSA");
keyPairGenerator.initialize(512);
keyPairGenerator.initialize(2048);
KeyPair kp = keyPairGenerator.generateKeyPair();


Expand Down

0 comments on commit 402cbee

Please sign in to comment.