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 4799938..cee7c60 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM quay.io/evryfs/base-ubuntu:jammy-20230308 +FROM quay.io/evryfs/base-ubuntu:jammy-20231128 LABEL maintainer "David J. M. Karlsen " -ARG JDK_VERSION=19.0.1+10 -ARG DOWNLOAD_URL=https://github.com/adoptium/temurin19-binaries/releases/download/jdk-19.0.1%2B10/OpenJDK19U-jdk_x64_linux_hotspot_19.0.1_10.tar.gz +ARG JDK_VERSION=21.0.4+7 +ARG DOWNLOAD_URL=https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.4%2B7/OpenJDK21U-jdk_x64_linux_hotspot_21.0.4_7.tar.gz SHELL ["/bin/bash", "-o", "pipefail", "-c"] RUN mkdir -p /usr/lib/jvm && \ curl -Ls ${DOWNLOAD_URL} | tar xzv -C /usr/lib/jvm && \