Skip to content

Commit 9c05b3d

Browse files
Pin dependencies (#54)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://redirect.github.com/actions/checkout) | action | pinDigest | → `de0fac2` | | [actions/download-artifact](https://redirect.github.com/actions/download-artifact) | action | pinDigest | → `3e5f45b` | | [actions/setup-python](https://redirect.github.com/actions/setup-python) | action | pinDigest | → `a309ff8` | | [actions/upload-artifact](https://redirect.github.com/actions/upload-artifact) | action | pinDigest | → `043fb46` | | [astral-sh/setup-uv](https://redirect.github.com/astral-sh/setup-uv) | action | pinDigest | → `0880764` | | [pypa/gh-action-pypi-publish](https://redirect.github.com/pypa/gh-action-pypi-publish) | action | pinDigest | → `cef2210` | | python | container | pinDigest | → `7a50012` | --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/nocarryr/python-dispatch). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xNzkuMyIsInVwZGF0ZWRJblZlciI6IjQzLjE3OS4zIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==--> <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Chores** * Updated CI/CD workflow configurations with pinned versions for enhanced consistency. <!-- review_stack_entry_start --> [![Review Change Stack](https://storage.googleapis.com/coderabbit_public_assets/review-stack-in-coderabbit-ui.svg)](https://app.coderabbit.ai/change-stack/nocarryr/python-dispatch/pull/54?utm_source=github_walkthrough&utm_medium=github&utm_campaign=change_stack) <!-- review_stack_entry_end --> <!-- end of auto-generated comment: release notes by coderabbit.ai --> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 433484d commit 9c05b3d

2 files changed

Lines changed: 17 additions & 17 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13", "3.14"]
1717

1818
steps:
19-
- uses: actions/checkout@v6
19+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2020
- name: Install uv
21-
uses: astral-sh/setup-uv@v8.1.0
21+
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
2222
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v6
23+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626
- name: Install Project
@@ -46,7 +46,7 @@ jobs:
4646
name: Indicate completion to coveralls.io
4747
needs: test
4848
runs-on: ubuntu-latest
49-
container: python:3-slim
49+
container: python:3-slim@sha256:7a500125bc50693f2214e842a621440a1b1b9cbb2188f74ab045d29ed2ea5856
5050
steps:
5151
- name: Finished
5252
run: |

.github/workflows/dist-test.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ jobs:
2525
build:
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@v6
28+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2929
- name: Install uv
30-
uses: astral-sh/setup-uv@v8.1.0
30+
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
3131
- name: Set up Python
32-
uses: actions/setup-python@v6
32+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
3333
with:
3434
python-version: 3.14
3535
- name: Build pydispatch dists
@@ -45,17 +45,17 @@ jobs:
4545
run: uv export --frozen --no-emit-project --only-group test -o requirements.txt
4646
working-directory: ${{ github.workspace }}/sphinx-plugin
4747
- name: Upload artifacts
48-
uses: actions/upload-artifact@v7
48+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
4949
with:
5050
name: 'dists'
5151
path: 'dist/*'
5252
- name: Upload sphinx artifacts
53-
uses: actions/upload-artifact@v7
53+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
5454
with:
5555
name: 'dists-sphinx'
5656
path: 'dist-sphinx/*'
5757
- name: Upload lockfiles
58-
uses: actions/upload-artifact@v7
58+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
5959
with:
6060
name: 'lockfiles'
6161
path: |
@@ -72,13 +72,13 @@ jobs:
7272
fail-fast: false
7373

7474
steps:
75-
- uses: actions/checkout@v6
75+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
7676
- name: Set up Python ${{ matrix.python-version }}
77-
uses: actions/setup-python@v6
77+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
7878
with:
7979
python-version: ${{ matrix.python-version }}
8080
- name: Download lockfiles
81-
uses: actions/download-artifact@v8
81+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
8282
with:
8383
name: 'lockfiles'
8484
path: .
@@ -87,12 +87,12 @@ jobs:
8787
pip install -r requirements.txt
8888
pip install -r sphinx-plugin/requirements.txt
8989
- name: Download artifacts
90-
uses: actions/download-artifact@v8
90+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
9191
with:
9292
name: 'dists'
9393
path: dist
9494
- name: Download sphinx artifacts
95-
uses: actions/download-artifact@v8
95+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
9696
with:
9797
name: 'dists-sphinx'
9898
path: dist
@@ -121,12 +121,12 @@ jobs:
121121
id-token: write
122122
steps:
123123
- name: Download artifacts
124-
uses: actions/download-artifact@v8
124+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
125125
with:
126126
pattern: 'dists*'
127127
path: dist
128128
merge-multiple: true
129129
- name: Publish distributions
130-
uses: pypa/gh-action-pypi-publish@release/v1
130+
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # release/v1
131131
with:
132132
skip-existing: true

0 commit comments

Comments
 (0)