From c099c603869c8df6aeb4561b106df411b6455a54 Mon Sep 17 00:00:00 2001 From: brfrn169 Date: Sat, 21 Jun 2025 01:55:07 +0900 Subject: [PATCH] Update Scheduled Vulnerability Check and Dependabot configuration --- .github/dependabot.yml | 20 ++++++++++---------- .github/workflows/scheduled-vuln-check.yaml | 18 +++++++++--------- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 46c024f0e6..54455e05b2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -36,9 +36,9 @@ updates: interval: "weekly" - package-ecosystem: "github-actions" - target-branch: "3.15" + target-branch: "3.16" groups: - actions on branch 3.15: + actions on branch 3.16: patterns: - "*" directory: "/" @@ -46,9 +46,9 @@ updates: interval: "weekly" - package-ecosystem: "github-actions" - target-branch: "3.14" + target-branch: "3.15" groups: - actions on branch 3.14: + actions on branch 3.15: patterns: - "*" directory: "/" @@ -56,9 +56,9 @@ updates: interval: "weekly" - package-ecosystem: "github-actions" - target-branch: "3.13" + target-branch: "3.14" groups: - actions on branch 3.13: + actions on branch 3.14: patterns: - "*" directory: "/" @@ -66,9 +66,9 @@ updates: interval: "weekly" - package-ecosystem: "github-actions" - target-branch: "3.12" + target-branch: "3.13" groups: - actions on branch 3.12: + actions on branch 3.13: patterns: - "*" directory: "/" @@ -76,9 +76,9 @@ updates: interval: "weekly" - package-ecosystem: "github-actions" - target-branch: "3.11" + target-branch: "3.12" groups: - actions on branch 3.11: + actions on branch 3.12: patterns: - "*" directory: "/" diff --git a/.github/workflows/scheduled-vuln-check.yaml b/.github/workflows/scheduled-vuln-check.yaml index 57c01edfda..f7198b3eaf 100644 --- a/.github/workflows/scheduled-vuln-check.yaml +++ b/.github/workflows/scheduled-vuln-check.yaml @@ -16,15 +16,6 @@ jobs: CR_PAT: ${{ secrets.CR_PAT }} SLACK_SECURITY_WEBHOOK_URL: ${{ secrets.SLACK_SECURITY_WEBHOOK_URL }} - call-vuln-check-for-v3_11: - uses: ./.github/workflows/vuln-check.yaml - with: - target-ref: v3.11 - find-latest-release: true - secrets: - CR_PAT: ${{ secrets.CR_PAT }} - SLACK_SECURITY_WEBHOOK_URL: ${{ secrets.SLACK_SECURITY_WEBHOOK_URL }} - call-vuln-check-for-v3_12: uses: ./.github/workflows/vuln-check.yaml with: @@ -60,3 +51,12 @@ jobs: secrets: CR_PAT: ${{ secrets.CR_PAT }} SLACK_SECURITY_WEBHOOK_URL: ${{ secrets.SLACK_SECURITY_WEBHOOK_URL }} + + call-vuln-check-for-v3_16: + uses: ./.github/workflows/vuln-check.yaml + with: + target-ref: v3.16 + find-latest-release: true + secrets: + CR_PAT: ${{ secrets.CR_PAT }} + SLACK_SECURITY_WEBHOOK_URL: ${{ secrets.SLACK_SECURITY_WEBHOOK_URL }}