From 196e7d183ba35c523be5225b9576f719fc6d1b03 Mon Sep 17 00:00:00 2001 From: Peter van Dijk Date: Fri, 10 Sep 2021 10:32:59 +0200 Subject: [PATCH] gh actions: limit retention on uploaded artifacts --- .github/workflows/build-and-test-all.yml | 3 +++ .github/workflows/builder.yml | 1 + 2 files changed, 4 insertions(+) diff --git a/.github/workflows/build-and-test-all.yml b/.github/workflows/build-and-test-all.yml index 83bcd367f4..fcf3c5d4de 100644 --- a/.github/workflows/build-and-test-all.yml +++ b/.github/workflows/build-and-test-all.yml @@ -34,6 +34,7 @@ jobs: with: name: pdns-auth path: /opt/pdns-auth + retention-days: 1 build-recursor: name: build recursor @@ -64,6 +65,7 @@ jobs: with: name: pdns-recursor path: /opt/pdns-recursor + retention-days: 1 build-dnsdist: name: build dnsdist @@ -98,6 +100,7 @@ jobs: with: name: dnsdist-${{ matrix.sanitizers }} path: /opt/dnsdist + retention-days: 1 test-auth-api: needs: build-auth diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml index b3b10075a5..09ebfdaed4 100644 --- a/.github/workflows/builder.yml +++ b/.github/workflows/builder.yml @@ -36,3 +36,4 @@ jobs: with: name: ${{ matrix.product }}-${{ matrix.os }}-${{ steps.getversion.outputs.version }} path: built_pkgs/ + retention-days: 7 -- 2.47.2