Skip to content

Commit 3d5cbca

Browse files
Merge pull request #288 from Chia-Network/develop
Release 1.2.4
2 parents 9df2f7f + 6998ca6 commit 3d5cbca

9 files changed

+817
-757
lines changed

.github/dependabot.yml

+18-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ updates:
99
interval: "weekly"
1010
day: "tuesday"
1111
open-pull-requests-limit: 10
12+
rebase-strategy: auto
1213
labels:
1314
- dependencies
1415
- go
@@ -25,18 +26,20 @@ updates:
2526
interval: "weekly"
2627
day: "tuesday"
2728
open-pull-requests-limit: 10
29+
rebase-strategy: auto
2830
labels:
2931
- dependencies
3032
- python
3133
- "Changed"
3234
reviewers: ["emlowe", "altendky"]
3335

3436
- package-ecosystem: "github-actions"
35-
directory: /
37+
directories: ["/", ".github/actions/*"]
3638
schedule:
3739
interval: "weekly"
3840
day: "tuesday"
3941
open-pull-requests-limit: 10
42+
rebase-strategy: auto
4043
labels:
4144
- dependencies
4245
- github_actions
@@ -49,8 +52,21 @@ updates:
4952
interval: "weekly"
5053
day: "tuesday"
5154
open-pull-requests-limit: 10
55+
rebase-strategy: auto
5256
labels:
5357
- dependencies
5458
- javascript
5559
- "Changed"
56-
reviewers: ["cmmarslender", "emlowe"]
60+
reviewers: ["cmmarslender", "ChiaMineJP"]
61+
62+
- package-ecosystem: cargo
63+
directory: /
64+
schedule:
65+
interval: "weekly"
66+
day: "tuesday"
67+
open-pull-requests-limit: 10
68+
rebase-strategy: auto
69+
labels:
70+
- dependencies
71+
- rust
72+
- "Changed"

.github/workflows/build-installers.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434

3535
- name: Change the package.json version if an RC tag
3636
if: startsWith(github.ref, 'refs/tags/') && contains( github.ref, '-rc')
37+
shell: bash
3738
run: |
3839
echo "Github ref: $GITHUB_REF"
3940
IFS='/' read -r base directory tag <<< "$GITHUB_REF"
+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: 🚨 Check commit signing
2+
3+
on:
4+
push:
5+
branches:
6+
- long_lived/**
7+
- main
8+
- release/**
9+
pull_request:
10+
branches:
11+
- "**"
12+
13+
concurrency:
14+
group: ${{ github.event_name == 'pull_request' && format('{0}-{1}', github.workflow_ref, github.event.pull_request.number) || github.run_id }}
15+
cancel-in-progress: true
16+
17+
jobs:
18+
check-commit-signing:
19+
name: Check commit signing
20+
runs-on: [ubuntu-latest]
21+
timeout-minutes: 5
22+
23+
steps:
24+
- name: Checkout Code
25+
uses: actions/checkout@v4
26+
with:
27+
fetch-depth: 0
28+
29+
- uses: chia-network/actions/check-commit-signing@main
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Managed by repo-content-updater
2+
# Dependency Review Action
3+
#
4+
# 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.
5+
#
6+
# Source repository: https://github.com/actions/dependency-review-action
7+
# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement
8+
name: "🚨 Dependency Review"
9+
on: [pull_request]
10+
11+
permissions:
12+
contents: read
13+
14+
jobs:
15+
dependency-review:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: "Checkout Repository"
19+
uses: actions/checkout@v4
20+
21+
- name: "Dependency Review"
22+
uses: actions/dependency-review-action@v4
23+
with:
24+
allow-dependencies-licenses: pkg:pypi/pyinstaller
25+
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

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2024 Chia Network Inc.
189+
Copyright 2025 Chia Network Inc.
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)