Skip to content

Commit 483e9bc

Browse files
committed
pin sub actions
1 parent 4567028 commit 483e9bc

6 files changed

Lines changed: 12 additions & 11 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ jobs:
2929
run: touch pyproject.toml
3030

3131
- name: Setup Python
32-
uses: actions-ext/python/setup@main
32+
uses: ./python/setup
3333
with:
3434
version: ${{ matrix.python-version }}
3535

3636
- name: Setup cibuildwheel
37-
uses: actions-ext/python/setup-cibuildwheel@main
37+
uses: ./python/setup-cibuildwheel
3838
with:
3939
version: ${{ matrix.python-version }}
4040

4141
- name: Setup cibuildwheel caching
42-
uses: actions-ext/python/setup-cibuildwheel-cache@main
42+
uses: ./python/setup-cibuildwheel-cache

run-cibuildwheel/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ runs:
2727
using: 'composite'
2828
steps:
2929
- name: Setup cibuildwheel caching
30-
uses: actions-ext/python/setup-cibuildwheel@v1
30+
uses: ./python/setup-cibuildwheel
3131
with:
3232
version: ${{ inputs.version }}
3333

setup-cibuildwheel-cache/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ runs:
3030
shell: python
3131

3232
- name: Cache cibuildwheel tools
33-
uses: actions/cache@v3
33+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
3434
with:
3535
path: ${{ steps.cibuildwheel-cache.outputs.dir }}
3636
key: ${{ runner.os }}-cibuildwheel-${{ inputs.version }}

setup-cibuildwheel/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ runs:
1919
using: 'composite'
2020
steps:
2121
- name: Setup cibuildwheel caching
22-
uses: actions-ext/python/setup-cibuildwheel-cache@v1
22+
uses: ./python/setup-cibuildwheel-cache
2323
with:
2424
version: ${{ inputs.version }}
2525

setup/action.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,15 @@ runs:
2424
using: 'composite'
2525
steps:
2626
- name: Set up Python ${{ inputs.version }}
27-
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
27+
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
28+
2829
with:
2930
python-version: ${{ inputs.version }}
3031
allow-prereleases: true
3132
if: ${{ inputs.uv == 'true' }}
3233

3334
- name: Set up Python ${{ inputs.version }}
34-
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
35+
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
3536
with:
3637
python-version: ${{ inputs.version }}
3738
allow-prereleases: true
@@ -42,7 +43,7 @@ runs:
4243
if: ${{ inputs.uv != 'true' }}
4344

4445
- name: Install uv
45-
uses: astral-sh/setup-uv@v6
46+
uses: astral-sh/setup-uv@11f9893b081a58869d3b5fccaea48c9e9e46f990 # v8.3.2
4647
with:
4748
python-version: "${{ inputs.version }}"
4849
enable-cache: true

upload-dist/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ runs:
1313
using: 'composite'
1414
steps:
1515
- name: Upload artifact (${{ inputs.kind }})
16-
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
16+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
1717
with:
1818
name: ${{ inputs.kind }}
1919
path: 'dist/*.whl'
2020
if: ${{ inputs.kind == 'wheel' }}
2121

2222
- name: Upload artifact (${{ inputs.kind }})
23-
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
23+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
2424
with:
2525
name: ${{ inputs.kind }}
2626
path: 'dist/*.tar.gz'

0 commit comments

Comments
 (0)