From e130f1d2ea0879db3f4ac863f2526588228de2c6 Mon Sep 17 00:00:00 2001 From: Chia Automation Date: Thu, 19 Dec 2024 16:03:34 +0000 Subject: [PATCH 1/3] chore: Update dep-review --- .github/workflows/dependency-review.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/dependency-review.yml diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml new file mode 100644 index 0000000..53b8c12 --- /dev/null +++ b/.github/workflows/dependency-review.yml @@ -0,0 +1,25 @@ +# Managed by repo-content-updater +# Dependency Review Action +# +# This Action will scan dependency manifest files that change as part of a Pull Request, surfacing known-vulnerable versions of the packages declared or updated in the PR. Once installed, if the workflow run is marked as required, PRs introducing known-vulnerable packages will be blocked from merging. +# +# Source repository: https://github.com/actions/dependency-review-action +# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement +name: "🚨 Dependency Review" +on: [pull_request] + +permissions: + contents: read + +jobs: + dependency-review: + runs-on: ubuntu-latest + steps: + - name: "Checkout Repository" + uses: actions/checkout@v4 + + - name: "Dependency Review" + uses: actions/dependency-review-action@v4 + with: + allow-dependencies-licenses: pkg:pypi/pyinstaller + deny-licenses: AGPL-1.0-only, AGPL-1.0-or-later, AGPL-1.0-or-later, AGPL-3.0-or-later, GPL-1.0-only, GPL-1.0-or-later, GPL-2.0-only, GPL-2.0-or-later, GPL-3.0-only, GPL-3.0-or-later From 09848d91cf8e4a2b890c9c8deb88521814346aa9 Mon Sep 17 00:00:00 2001 From: Chia Automation Date: Thu, 19 Dec 2024 16:03:35 +0000 Subject: [PATCH 2/3] chore: Update commit-signing --- .github/workflows/check-commit-signing.yml | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/check-commit-signing.yml diff --git a/.github/workflows/check-commit-signing.yml b/.github/workflows/check-commit-signing.yml new file mode 100644 index 0000000..fa34811 --- /dev/null +++ b/.github/workflows/check-commit-signing.yml @@ -0,0 +1,29 @@ +name: 🚨 Check commit signing + +on: + push: + branches: + - long_lived/** + - main + - release/** + pull_request: + branches: + - "**" + +concurrency: + group: ${{ github.event_name == 'pull_request' && format('{0}-{1}', github.workflow_ref, github.event.pull_request.number) || github.run_id }} + cancel-in-progress: true + +jobs: + check-commit-signing: + name: Check commit signing + runs-on: [ubuntu-latest] + timeout-minutes: 5 + + steps: + - name: Checkout Code + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - uses: chia-network/actions/check-commit-signing@main From 1b006024439b86e7909bd09f4f326e999cea7609 Mon Sep 17 00:00:00 2001 From: Chia Automation Date: Thu, 19 Dec 2024 16:03:35 +0000 Subject: [PATCH 3/3] chore: Update dependabot --- .github/dependabot.yml | 69 ++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 67 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 84f9bc7..2ba36cb 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,7 +1,72 @@ +# This file is managed by the repo-content-updater project. Manual changes here will result in a PR to bring back +# inline with the upstream template, unless you remove the dependabot managed file property from the repo + version: 2 updates: + - package-ecosystem: "gomod" + directory: / + schedule: + interval: "weekly" + day: "tuesday" + open-pull-requests-limit: 10 + rebase-strategy: auto + labels: + - dependencies + - go + - "Changed" + reviewers: ["cmmarslender", "starttoaster"] + groups: + global: + patterns: + - "*" + - package-ecosystem: "pip" - directory: "/" + directory: / + schedule: + interval: "weekly" + day: "tuesday" + open-pull-requests-limit: 10 + rebase-strategy: auto + labels: + - dependencies + - python + - "Changed" + reviewers: ["emlowe", "altendky"] + + - package-ecosystem: "github-actions" + directories: ["/", ".github/actions/*"] + schedule: + interval: "weekly" + day: "tuesday" + open-pull-requests-limit: 10 + rebase-strategy: auto + labels: + - dependencies + - github_actions + - "Changed" + reviewers: ["cmmarslender", "Starttoaster", "pmaslana"] + + - package-ecosystem: "npm" + directory: / + schedule: + interval: "weekly" + day: "tuesday" + open-pull-requests-limit: 10 + rebase-strategy: auto + labels: + - dependencies + - javascript + - "Changed" + reviewers: ["cmmarslender", "ChiaMineJP"] + + - package-ecosystem: cargo + directory: / schedule: interval: "weekly" - target-branch: "develop" + day: "tuesday" + open-pull-requests-limit: 10 + rebase-strategy: auto + labels: + - dependencies + - rust + - "Changed"