Skip to content

Commit 38006d7

Browse files
Update from copier (2026-07-20T14:12:59)
Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 89060f4 commit 38006d7

5 files changed

Lines changed: 47 additions & 40 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: '4875149'
2+
_commit: 1ea7b27
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: true
55
add_extension: js

.github/workflows/build.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,14 @@ jobs:
3535

3636
steps:
3737
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
38+
with:
39+
persist-credentials: false
3840

39-
- uses: actions-ext/python/setup@main
41+
- uses: actions-ext/python/setup@4567028b4cf2be3739404cfd3521f0b9df98b6b1
4042
with:
4143
version: ${{ matrix.python-version }}
4244

43-
- uses: actions-ext/node/setup@main
45+
- uses: actions-ext/node/setup@165e261b251b39bcd073c10e84d218393d3b9960
4446
with:
4547
version: ${{ matrix.node-version }}
4648

@@ -84,12 +86,12 @@ jobs:
8486
run: make dist
8587
if: matrix.os == 'ubuntu-latest'
8688

87-
- uses: actions-ext/python/test-wheel@main
89+
- uses: actions-ext/python/test-wheel@4567028b4cf2be3739404cfd3521f0b9df98b6b1
8890
with:
8991
module: python_template_js
9092
if: matrix.os == 'ubuntu-latest'
9193

92-
- uses: actions-ext/python/test-sdist@main
94+
- uses: actions-ext/python/test-sdist@4567028b4cf2be3739404cfd3521f0b9df98b6b1
9395
with:
9496
module: python_template_js
9597
if: matrix.os == 'ubuntu-latest'

.github/workflows/copier.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
pull-requests: write
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions-ext/copier-update@main
15+
- uses: actions-ext/copier-update@378500315a83b5985e175139a55f1fa5ea6dde09
1616
with:
1717
token: ${{ secrets.WORKFLOW_TOKEN }}

.github/workflows/docs.yaml

Lines changed: 37 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -16,37 +16,40 @@ 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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
20-
- uses: actions-ext/python/setup@main
21-
22-
- name: Download dist from build
23-
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
24-
with:
25-
pattern: dist-ubuntu-latest*
26-
merge-multiple: true
27-
path: dist
28-
run-id: ${{ github.event.workflow_run.id }}
29-
github-token: ${{ secrets.GITHUB_TOKEN }}
30-
repository: ${{ github.repository }}
31-
if: github.event_name == 'workflow_run'
32-
33-
- name: Install from wheel
34-
run: |
35-
uv pip install dist/*.whl
36-
uv pip install dist/*.whl --target . --no-deps
37-
uv pip install yardang
38-
if: github.event_name == 'workflow_run'
39-
40-
- name: Install from source (manual trigger)
41-
run: |
42-
uv pip install .[develop]
43-
uv pip install yardang
44-
if: github.event_name == 'workflow_dispatch'
45-
46-
- run: yardang build
47-
48-
- uses: peaceiris/actions-gh-pages@84c30a85c19949d7eee79c4ff27748b70285e453 # v4.1.0
49-
with:
50-
publish_branch: gh-pages
51-
github_token: ${{ secrets.GITHUB_TOKEN }}
52-
publish_dir: docs/html
19+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
20+
with:
21+
persist-credentials: false
22+
23+
- uses: actions-ext/python/setup@4567028b4cf2be3739404cfd3521f0b9df98b6b1
24+
25+
- name: Download dist from build
26+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
27+
with:
28+
pattern: dist-ubuntu-latest*
29+
merge-multiple: true
30+
path: dist
31+
run-id: ${{ github.event.workflow_run.id }}
32+
github-token: ${{ secrets.GITHUB_TOKEN }}
33+
repository: ${{ github.repository }}
34+
if: github.event_name == 'workflow_run'
35+
36+
- name: Install from wheel
37+
run: |
38+
uv pip install dist/*.whl
39+
uv pip install dist/*.whl --target . --no-deps
40+
uv pip install yardang
41+
if: github.event_name == 'workflow_run'
42+
43+
- name: Install from source (manual trigger)
44+
run: |
45+
uv pip install .[develop]
46+
uv pip install yardang
47+
if: github.event_name == 'workflow_dispatch'
48+
49+
- run: yardang build
50+
51+
- uses: peaceiris/actions-gh-pages@84c30a85c19949d7eee79c4ff27748b70285e453 # v4.1.0
52+
with:
53+
publish_branch: gh-pages
54+
github_token: ${{ secrets.GITHUB_TOKEN }}
55+
publish_dir: docs/html

.github/workflows/wiki.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
24+
with:
25+
persist-credentials: false
2426
- run: cp README.md docs/wiki/Home.md
2527
- uses: Andrew-Chen-Wang/github-wiki-action@1bbb4280446f9630e8e21a18012cbacf3b0f992e # v5.0.6
2628
with:

0 commit comments

Comments
 (0)