From 104df62e7e42f10c1dc20fbf88c633d1dc4cf408 Mon Sep 17 00:00:00 2001 From: Florian Wilhelm <2292245+fwilhe@users.noreply.github.com> Date: Mon, 27 Nov 2023 17:35:38 +0100 Subject: [PATCH 1/2] Configure docker metadata for dependabot Dependabot expects the link to the source repo as described here: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#docker --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 9637668..a6d4e7b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,10 @@ RUN cd aws-kms-pkcs11 && make -j "$(nproc)" AWS_SDK_STATIC=y install RUN cp "/usr/lib/$(uname -m)-linux-gnu/pkcs11/aws_kms_pkcs11.so" /aws_kms_pkcs11.so FROM debian:testing + +LABEL org.opencontainers.image.source="https://github.com/gardenlinux/builder" +LABEL org.opencontainers.image.description="Builder for Garden Linux" + COPY pkg.list /pkg.list RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends $(cat /pkg.list) && rm /pkg.list COPY --from=mv_data /usr/bin/mv_data /usr/bin/mv_data From d11bb1f211719e30fcbddb72aac645685ddd3cee Mon Sep 17 00:00:00 2001 From: Florian Wilhelm <2292245+fwilhe@users.noreply.github.com> Date: Mon, 27 Nov 2023 18:03:25 +0100 Subject: [PATCH 2/2] Fix actions invocation --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 156a742..745d270 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,7 +3,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: nkraetzschmar/workflow-telemetry-action@v1 + - uses: gardenlinux/workflow-telemetry-action@v1 with: metric_frequency: 1 comment_on_pr: false