Compare commits

..

No commits in common. "main" and "v0.13.0+4" have entirely different histories.

3 changed files with 13 additions and 13 deletions

View File

@ -7,7 +7,7 @@ when:
steps: steps:
- name: security-build - name: security-build
image: quay.io/thegeeklab/wp-docker-buildx:5 image: quay.io/thegeeklab/wp-docker-buildx:4
settings: settings:
containerfile: Containerfile containerfile: Containerfile
output: type=oci,dest=oci/${CI_REPO_NAME},tar=false output: type=oci,dest=oci/${CI_REPO_NAME},tar=false
@ -26,7 +26,7 @@ steps:
TRIVY_TIMEOUT: 1m TRIVY_TIMEOUT: 1m
- name: publish-dockerhub - name: publish-dockerhub
image: quay.io/thegeeklab/wp-docker-buildx:5 image: quay.io/thegeeklab/wp-docker-buildx:4
group: container group: container
settings: settings:
auto_tag: true auto_tag: true
@ -44,7 +44,7 @@ steps:
- ${CI_REPO_DEFAULT_BRANCH} - ${CI_REPO_DEFAULT_BRANCH}
- name: publish-quay - name: publish-quay
image: quay.io/thegeeklab/wp-docker-buildx:5 image: quay.io/thegeeklab/wp-docker-buildx:4
group: container group: container
settings: settings:
auto_tag: true auto_tag: true

View File

@ -13,12 +13,12 @@ steps:
settings: settings:
homeserver: homeserver:
from_secret: matrix_homeserver from_secret: matrix_homeserver
room_id: password:
from_secret: matrix_room_id from_secret: matrix_password
user_id: roomid:
from_secret: matrix_user_id from_secret: matrix_roomid
access_token: username:
from_secret: matrix_access_token from_secret: matrix_username
when: when:
- status: [success, failure] - status: [success, failure]

View File

@ -1,4 +1,4 @@
FROM docker.io/node:lts-bookworm-slim@sha256:2394e403d45a644e41ac2a15b6f843a7d4a99ad24be48c27982c5fdc61a1ef17 FROM docker.io/node:lts-bookworm-slim@sha256:9f938a1eeb3f85ca7691e1b4b5e9ab91e1d2efa7afc1d3e495b6f8158b7e2d39
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>" LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>" LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
@ -11,9 +11,9 @@ ARG BUILD_VERSION
ARG YQ_VERSION ARG YQ_VERSION
# renovate: datasource=npm depName=@lhci/cli # renovate: datasource=npm depName=@lhci/cli
ENV LHCI_VERSION="${BUILD_VERSION:-0.14.0}" ENV LHCI_VERSION="${BUILD_VERSION:-0.13.0}"
# renovate: datasource=github-releases depName=mikefarah/yq # renovate: datasource=github-releases depName=mikefarah/yq
ENV YQ_VERSION="${YQ_VERSION:-v4.44.3}" ENV YQ_VERSION="${YQ_VERSION:-v4.43.1}"
ENV LHCI_BASE_DIR=/drone/src \ ENV LHCI_BASE_DIR=/drone/src \
FORCE_COLOR=true \ FORCE_COLOR=true \
@ -22,7 +22,7 @@ ENV LHCI_BASE_DIR=/drone/src \
ADD overlay/ / ADD overlay/ /
RUN apt-get update && apt-get install -y git curl wget gnupg jq bash bc libc-bin libc6 && \ RUN apt-get update && apt-get install -y git curl wget gnupg jq bash bc && \
curl -SsfL -o /usr/local/bin/yq "https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64" && \ curl -SsfL -o /usr/local/bin/yq "https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64" && \
chmod 755 /usr/local/bin/yq && \ chmod 755 /usr/local/bin/yq && \
wget -qO - "https://dl-ssl.google.com/linux/linux_signing_key.pub" | apt-key add - && \ wget -qO - "https://dl-ssl.google.com/linux/linux_signing_key.pub" | apt-key add - && \