diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 5e23267..d0ecf72 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -46,10 +46,10 @@ jobs: push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} - - uses: sigstore/cosign-installer@v2.8.1 + - uses: sigstore/cosign-installer@v3.5.0 - name: cosign if: ${{ github.event_name != 'pull_request' }} env: COSIGN_EXPERIMENTAL: 1 #run: cosign sign --oidc-issuer ${env.ACTIONS_ID_TOKEN_REQUEST_URL} ${{ env.IMAGE }} - run: cosign sign --oidc-issuer https://token.actions.githubusercontent.com ${{ env.IMAGE }}@${{ steps.build-push.outputs.digest }} + run: cosign sign -y --oidc-issuer https://token.actions.githubusercontent.com ${{ env.IMAGE }}@${{ steps.build-push.outputs.digest }} diff --git a/Dockerfile b/Dockerfile index b86d8db..ef58362 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM quay.io/evryfs/base-ubuntu:jammy-20231128 LABEL maintainer "David J. M. Karlsen " -ARG JDK_VERSION=11.0.23+9 -ARG DOWNLOAD_URL=https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.23%2B9/OpenJDK11U-jdk_x64_linux_hotspot_11.0.23_9.tar.gz +ARG JDK_VERSION=11.0.28+8 +ARG DOWNLOAD_URL=https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.24%2B8/OpenJDK11U-jdk_x64_linux_hotspot_11.0.24_8.tar.gz SHELL ["/bin/bash", "-o", "pipefail", "-c"] RUN mkdir -p /usr/lib/jvm && \ curl -Ls ${DOWNLOAD_URL} | tar xzv -C /usr/lib/jvm && \