From ea53ea31bbc2e6b4f365b0d741340abcbc4c6bb3 Mon Sep 17 00:00:00 2001 From: drunkendog Date: Mon, 28 Aug 2023 18:06:04 +0100 Subject: [PATCH] Add jq installation step --- .gitea/workflows/build-base-image.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/build-base-image.yaml b/.gitea/workflows/build-base-image.yaml index 868de7b..a355482 100644 --- a/.gitea/workflows/build-base-image.yaml +++ b/.gitea/workflows/build-base-image.yaml @@ -3,7 +3,13 @@ on: [push, pull_request] jobs: Check-Last-Time: runs-on: ubuntu-22.04 + env: + DEBIAN_FRONTEND: noninteractive steps: + - name: Install jq + run: | + apt-get update -y + apt-get install -y jq - name: Check last repository build time id: last-time run: curl -s https://hub.docker.com/v2/repositories/drunkendog/standard-build-actions/tags/latest