From 5890fcfb5d0202c4f28dafeae6f9d9875d042b20 Mon Sep 17 00:00:00 2001 From: Florian Heubeck Date: Wed, 3 Apr 2024 09:46:08 +0200 Subject: [PATCH] fix(build): Auto apply for apt-get --- .github/workflows/Dockerfile | 2 +- .github/workflows/ci.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Dockerfile b/.github/workflows/Dockerfile index 7bc6cc9..c123415 100644 --- a/.github/workflows/Dockerfile +++ b/.github/workflows/Dockerfile @@ -3,7 +3,7 @@ FROM golang:1.22 # Injected from the build ARG VERSION -RUN apt-get update && apt-get install uuid-dev uuid-runtime +RUN apt-get update -y && apt-get install -y uuid-dev uuid-runtime # make it WORKDIR /build diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index db990d2..818cd95 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -4,7 +4,7 @@ on: branches: - '**' paths-ignore: - - '.github/**' + - '.github/dependabot.yml' - 'static/**' - 'README.md' env: