From 238f406da138b3d25801f4c5bc23210231cb3d30 Mon Sep 17 00:00:00 2001 From: Andras Jaky Date: Tue, 5 Jul 2022 15:20:30 +0200 Subject: [PATCH 1/2] ci: added trigger for dev tags (docker, helm) --- .github/workflows/docker.yaml | 3 ++- .github/workflows/release.yaml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index 442bab5..0b49a24 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -5,7 +5,8 @@ on: branches: - master tags: - - v[0-9]+.[0-9]+.[0-9]+ + - "v[0-9]+.[0-9]+.[0-9]+" + - "v[0-9]+.[0-9]+.[0-9]+-dev.[0-9]+" pull_request: jobs: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e72035c..48aea51 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -3,7 +3,8 @@ name: Release on: push: tags: - - chart/[0-9]+.[0-9]+.[0-9]+ + - "chart/[0-9]+.[0-9]+.[0-9]+" + - "chart/[0-9]+.[0-9]+.[0-9]+-dev.[0-9]+" env: HELM_VERSION: v3.4.2 From 68176f6c676c688238abf370927b50d5d6c91df3 Mon Sep 17 00:00:00 2001 From: Andras Jaky Date: Tue, 5 Jul 2022 15:21:31 +0200 Subject: [PATCH 2/2] ci: updated dependabot config - so vulnerabilities would be detected early --- .github/dependabot.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index 6c0a413..759a596 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -1,7 +1,23 @@ version: 2 + updates: - package-ecosystem: "docker" directory: "/" + labels: + - "dependencies" + schedule: + interval: "daily" + + - package-ecosystem: "gomod" + directory: "/" + labels: + - "dependencies" schedule: interval: "daily" + - package-ecosystem: "github-actions" + directory: "/" + labels: + - "dependencies" + schedule: + interval: "daily"