From 77ffc4282771691daa4e41209e2bf4566d0ff0ca Mon Sep 17 00:00:00 2001 From: Ashley Felton Date: Thu, 17 Oct 2024 09:25:32 +0800 Subject: [PATCH] Update GitHub workflows. --- .github/dependabot.yml | 12 ++++++++++++ .github/workflows/image-build-scan.yml | 4 ++-- 2 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..4944c77 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 +updates: + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "weekly" + target-branch: "master" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + target-branch: "master" diff --git a/.github/workflows/image-build-scan.yml b/.github/workflows/image-build-scan.yml index 98fa4fe..21a233e 100644 --- a/.github/workflows/image-build-scan.yml +++ b/.github/workflows/image-build-scan.yml @@ -4,8 +4,8 @@ on: push: # Publish `master` as `latest` image. branches: [master] - # Publish `1.*` and `2.*1 tags as releases. - tags: ['1.*', '2.*'] + # Publish tagged commits as releases. + tags: ['1.*', '2.*', '3.*'] pull_request: branches: [master]