Skip to content

Commit 832c9a8

Browse files
chore(deps): pin dependencies (#71)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent b7bfb66 commit 832c9a8

8 files changed

Lines changed: 39 additions & 39 deletions

File tree

.github/workflows/copier-update.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ jobs:
2525
steps:
2626
- id: auth
2727
name: Auth
28-
uses: liblaf/actions/auth@v1
28+
uses: liblaf/actions/auth@c0ddb2356ceaa62ed3108a073f2e2a303264afa6 # v1
2929
with:
3030
app-id: ${{ vars.APP_ID }}
3131
private-key: ${{ secrets.PRIVATE_KEY }}
3232
- name: Checkout
33-
uses: actions/checkout@v6
33+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3434
- name: Copier update
3535
# `copier update` requires a clean working directory. We commit changes
3636
# after each update, then use `git reset --soft` to squash all commits
@@ -52,7 +52,7 @@ jobs:
5252
- name: Git reset
5353
run: git reset --soft '${{ github.sha }}'
5454
- name: Create PR
55-
uses: peter-evans/create-pull-request@v8
55+
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8
5656
with:
5757
token: ${{ steps.auth.outputs.token }}
5858
commit-message: "chore(copier): update from template"

.github/workflows/mega-linter.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,20 +32,20 @@ jobs:
3232
steps:
3333
- id: auth
3434
name: Auth
35-
uses: liblaf/actions/auth@v1
35+
uses: liblaf/actions/auth@c0ddb2356ceaa62ed3108a073f2e2a303264afa6 # v1
3636
with:
3737
app-id: ${{ vars.APP_ID }}
3838
private-key: ${{ secrets.PRIVATE_KEY }}
3939
- name: Checkout
40-
uses: actions/checkout@v6
40+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
4141
- id: lint
4242
name: MegaLinter
43-
uses: liblaf/actions/mega-linter@v1
43+
uses: liblaf/actions/mega-linter@c0ddb2356ceaa62ed3108a073f2e2a303264afa6 # v1
4444
with:
4545
token: ${{ steps.auth.outputs.token }}
4646
- if: success() || failure()
4747
name: Upload Reports
48-
uses: actions/upload-artifact@v7
48+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
4949
with:
5050
name: mega-linter-reports
5151
path: |-
@@ -59,7 +59,7 @@ jobs:
5959
sudo rm --force --recursive 'mega-linter.log' 'megalinter-reports'
6060
- if: steps.lint.outputs.has-updated-sources > 0 && github.ref == 'refs/heads/main'
6161
name: Create PR
62-
uses: peter-evans/create-pull-request@v8
62+
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8
6363
with:
6464
token: ${{ steps.auth.outputs.token }}
6565
commit-message: ${{ env.GIT_COMMIT_MESSAGE }}
@@ -74,7 +74,7 @@ jobs:
7474
reviewers: ${{ github.repository_owner }}
7575
- if: steps.lint.outputs.has-updated-sources > 0 && github.ref != 'refs/heads/main'
7676
name: Commit
77-
uses: suzuki-shunsuke/commit-action@v0.1.1
77+
uses: suzuki-shunsuke/commit-action@f12e2d628a4ab72dcefe7890ae07e8dbf1e201b9 # v0.1.1
7878
with:
7979
github_token: ${{ steps.auth.outputs.token }}
8080
commit_message: ${{ env.GIT_COMMIT_MESSAGE }}

.github/workflows/release-create.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323
steps:
2424
- id: auth
2525
name: Auth
26-
uses: liblaf/actions/auth@v1
26+
uses: liblaf/actions/auth@c0ddb2356ceaa62ed3108a073f2e2a303264afa6 # v1
2727
with:
2828
app-id: ${{ vars.APP_ID }}
2929
private-key: ${{ secrets.PRIVATE_KEY }}
3030
- name: Checkout
31-
uses: actions/checkout@v6
31+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3232
with:
3333
token: ${{ steps.auth.outputs.token }}
3434
- id: version
@@ -53,7 +53,7 @@ jobs:
5353
GH_TOKEN: ${{ steps.auth.outputs.token }}
5454
continue-on-error: true
5555
- name: Create release
56-
uses: softprops/action-gh-release@v2
56+
uses: softprops/action-gh-release@153bb8e04406b158c6c84fc1615b65b24149a1fe # v2
5757
with:
5858
body: ${{ github.event.pull_request.body }}
5959
tag_name: ${{ steps.version.outputs.tag }}

.github/workflows/release-pr.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,21 @@ jobs:
2929
steps:
3030
- id: auth
3131
name: Auth
32-
uses: liblaf/actions/auth@v1
32+
uses: liblaf/actions/auth@c0ddb2356ceaa62ed3108a073f2e2a303264afa6 # v1
3333
with:
3434
app-id: ${{ vars.APP_ID }}
3535
private-key: ${{ secrets.PRIVATE_KEY }}
3636
- name: Checkout
37-
uses: actions/checkout@v6
37+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3838
with:
3939
fetch-depth: 0
4040
- name: Install git-cliff
41-
uses: taiki-e/install-action@v2
41+
uses: taiki-e/install-action@fd0f63e180a477d7434580b6d80817978b9ff2b8 # v2
4242
with:
4343
tool: git-cliff
4444
- id: version
4545
name: Next version
46-
uses: liblaf/actions/next-version@v1
46+
uses: liblaf/actions/next-version@c0ddb2356ceaa62ed3108a073f2e2a303264afa6 # v1
4747
- if: steps.version.outputs.bumped == 'true'
4848
name: Generate changelog
4949
run: |-
@@ -66,7 +66,7 @@ jobs:
6666
GITHUB_TOKEN: ${{ steps.auth.outputs.token }}
6767
- if: steps.version.outputs.bumped == 'true'
6868
name: Create PR
69-
uses: peter-evans/create-pull-request@v8
69+
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8
7070
with:
7171
token: ${{ steps.auth.outputs.token }}
7272
commit-message: "chore(release): ${{ steps.version.outputs.tag }}"

template/.github/workflows/python-bench.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
sessions: ${{ steps.collect.outputs.sessions }}
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v6
25+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2626
- name: Setup uv
27-
uses: astral-sh/setup-uv@v7
27+
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7
2828
with:
2929
activate-environment: true
3030
- name: Install dependencies
@@ -47,15 +47,15 @@ jobs:
4747
runs-on: ubuntu-latest
4848
steps:
4949
- name: Checkout
50-
uses: actions/checkout@v6
50+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
5151
- name: Setup uv
52-
uses: astral-sh/setup-uv@v7
52+
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7
5353
with:
5454
activate-environment: true
5555
- name: Install dependencies
5656
run: uv sync --active --frozen --all-packages
5757
- name: Bench
58-
uses: CodSpeedHQ/action@v4
58+
uses: CodSpeedHQ/action@1c8ae4843586d3ba879736b7f6b7b0c990757fab # v4
5959
with:
6060
run: nox --tags 'bench'
6161
mode: instrumentation

template/.github/workflows/python-docs.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v6
23+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2424
with:
2525
fetch-depth: 0
2626
- id: config
2727
name: Configure GitHub Pages
28-
uses: actions/configure-pages@v6
28+
uses: actions/configure-pages@45bfe0192ca1faeb007ade9deae92b16b8254a0d # v6
2929
- name: Set environment variables
3030
run: echo 'SITE_URL=${{ steps.config.outputs.base_url }}' >> "$GITHUB_ENV"
3131
- name: Setup uv
32-
uses: astral-sh/setup-uv@v7
32+
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7
3333
with:
3434
activate-environment: true
3535
- name: Install dependencies
@@ -40,7 +40,7 @@ jobs:
4040
- name: Build
4141
run: mkdocs build
4242
- name: Upload Github Pages artifact
43-
uses: actions/upload-pages-artifact@v4
43+
uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v4
4444
with:
4545
path: site
4646

@@ -59,4 +59,4 @@ jobs:
5959
steps:
6060
- id: deploy
6161
name: Deploy Github Pages site
62-
uses: actions/deploy-pages@v5
62+
uses: actions/deploy-pages@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128 # v5

template/.github/workflows/python-release.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
package-version: ${{ steps.build.outputs.package_version }}
2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v6
27+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2828
- id: build
2929
name: Build and inspect a Python package
30-
uses: hynek/build-and-inspect-python-package@v2
30+
uses: hynek/build-and-inspect-python-package@fe0a0fb1925ca263d076ca4f2c13e93a6e92a33e # v2
3131
with:
3232
attest-build-provenance-github: true
3333

@@ -44,12 +44,12 @@ jobs:
4444
url: https://pypi.org/project/${{ needs.build.outputs.package-name }}/${{ needs.build.outputs.package-version }}/
4545
steps:
4646
- name: Download artifacts
47-
uses: actions/download-artifact@v8
47+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
4848
with:
4949
name: ${{ needs.build.outputs.artifact-name }}
5050
path: dist
5151
- name: Publish to PyPI
52-
uses: pypa/gh-action-pypi-publish@release/v1
52+
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # release/v1
5353
with:
5454
verbose: true
5555
print-hash: true
@@ -64,12 +64,12 @@ jobs:
6464
runs-on: ubuntu-latest
6565
steps:
6666
- name: Download artifacts
67-
uses: actions/download-artifact@v8
67+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
6868
with:
6969
name: ${{ needs.build.outputs.artifact-name }}
7070
path: dist
7171
- name: Upload release assets
72-
uses: softprops/action-gh-release@v2
72+
uses: softprops/action-gh-release@153bb8e04406b158c6c84fc1615b65b24149a1fe # v2
7373
with:
7474
draft: false
7575
files: dist/*

template/.github/workflows/python-test.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
sessions: ${{ steps.collect.outputs.sessions }}
2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v6
27+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2828
- name: Setup uv
29-
uses: astral-sh/setup-uv@v7
29+
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7
3030
with:
3131
activate-environment: true
3232
- name: Install dependencies
@@ -49,11 +49,11 @@ jobs:
4949
runs-on: ubuntu-latest
5050
steps:
5151
- name: Checkout
52-
uses: actions/checkout@v6
52+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
5353
with:
5454
fetch-depth: 0 # I don't know why, but it is present in Codecov's documentation
5555
- name: Setup uv
56-
uses: astral-sh/setup-uv@v7
56+
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7
5757
with:
5858
activate-environment: true
5959
- name: Install dependencies
@@ -62,13 +62,13 @@ jobs:
6262
run: nox --session '${{ matrix.session }}'
6363
- if: success() || failure()
6464
name: Upload coverage
65-
uses: codecov/codecov-action@v6
65+
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6
6666
with:
6767
report_type: coverage
6868
use_oidc: true
6969
- if: success() || failure()
7070
name: Upload test results
71-
uses: codecov/codecov-action@v6
71+
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6
7272
with:
7373
report_type: test_results
7474
use_oidc: true

0 commit comments

Comments
 (0)