Skip to content

Commit d7eef54

Browse files
authored
Merge pull request #86 from python-project-templates/copier-update-2026-05-20T23-20-17
Update from copier (2026-05-20T23:20:17)
2 parents 7abf180 + 1d79bae commit d7eef54

5 files changed

Lines changed: 18 additions & 12 deletions

File tree

.copier-answers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier
2-
_commit: 71014c6
2+
_commit: 24f3985
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: true
55
add_extension: rustjswasm

.github/dependabot.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,16 @@ updates:
33
- package-ecosystem: "github-actions"
44
directory: "/"
55
schedule:
6-
interval: "weekly"
6+
interval: "monthly"
77
labels:
88
- "part: github_actions"
99

1010
- package-ecosystem: "pip"
1111
directory: "/"
1212
schedule:
1313
interval: "monthly"
14+
cooldown:
15+
default-days: 7
1416
labels:
1517
- "lang: python"
1618
- "part: dependencies"
@@ -19,6 +21,8 @@ updates:
1921
directory: "/js"
2022
schedule:
2123
interval: "monthly"
24+
cooldown:
25+
default-days: 7
2226
labels:
2327
- "lang: javascript"
2428
- "part: dependencies"
@@ -27,6 +31,8 @@ updates:
2731
directory: "/"
2832
schedule:
2933
interval: "monthly"
34+
cooldown:
35+
default-days: 7
3036
labels:
3137
- "lang: rust"
3238
- "part: dependencies"

.github/workflows/build.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
node-version: [20.x]
3636

3737
steps:
38-
- uses: actions/checkout@v6
38+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3939

4040
- uses: actions-ext/python/setup@main
4141
with:
@@ -65,20 +65,20 @@ jobs:
6565
run: make coverage
6666

6767
- name: Upload test results (Python)
68-
uses: actions/upload-artifact@v7
68+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
6969
with:
7070
name: test-results-${{ matrix.os }}-${{ matrix.python-version }}
7171
path: '**/junit.xml'
7272
if: matrix.os == 'ubuntu-latest'
7373

7474
- name: Publish Unit Test Results
75-
uses: EnricoMi/publish-unit-test-result-action@v2
75+
uses: EnricoMi/publish-unit-test-result-action@c950f6fb443cb5af20a377fd0dfaa78838901040 # v2
7676
with:
7777
files: '**/junit.xml'
7878
if: matrix.os == 'ubuntu-latest'
7979

8080
- name: Upload coverage
81-
uses: codecov/codecov-action@v6
81+
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6
8282
with:
8383
token: ${{ secrets.CODECOV_TOKEN }}
8484

@@ -120,7 +120,7 @@ jobs:
120120
module: python_template_rust
121121
if: matrix.os == 'ubuntu-latest'
122122

123-
- uses: actions/upload-artifact@v7
123+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
124124
with:
125125
name: dist-${{matrix.os}}
126126
path: dist

.github/workflows/docs.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
runs-on: ubuntu-latest
1717
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
1818
steps:
19-
- uses: actions/checkout@v6
19+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2020
- uses: actions-ext/python/setup@main
2121

2222
- name: Download dist from build
23-
uses: actions/download-artifact@v8
23+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
2424
with:
2525
pattern: dist-ubuntu-latest*
2626
merge-multiple: true
@@ -45,7 +45,7 @@ jobs:
4545

4646
- run: yardang build
4747

48-
- uses: peaceiris/actions-gh-pages@v4
48+
- uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4
4949
with:
5050
publish_branch: gh-pages
5151
github_token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/wiki.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ jobs:
2020
deploy:
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v6
23+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2424
- run: cp README.md docs/wiki/Home.md
25-
- uses: Andrew-Chen-Wang/github-wiki-action@v5
25+
- uses: Andrew-Chen-Wang/github-wiki-action@64efa0a9436db17670a2259e0ac249d6f08bb352 # v5
2626
with:
2727
path: docs/wiki

0 commit comments

Comments
 (0)