Skip to content

Commit

Permalink
chore(c): specify full action version
Browse files Browse the repository at this point in the history
  • Loading branch information
JP-Ellis committed Dec 19, 2024
1 parent fc68f9a commit c078322
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
hatch build --target sdist
- name: Upload sdist
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
with:
name: wheels-sdist
path: ./dist/*.tar.*
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
fetch-depth: 0

- name: Cache pip packages
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
with:
path: ~/.cache/pip
key: ${{ github.workflow }}-pip-${{ runner.os }}-${{ hashFiles('**/pyproject.toml') }}
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
CIBW_BUILD: ${{ steps.cibw-filter.outputs.build }}

- name: Upload wheels
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
with:
name: wheels-${{ matrix.os }}-${{ matrix.archs }}
path: ./wheelhouse/*.whl
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
fetch-depth: 0

- name: Cache pip packages
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
with:
path: ~/.cache/pip
key: ${{ github.workflow }}-pip-${{ runner.os }}-${{ hashFiles('**/pyproject.toml') }}
Expand All @@ -184,7 +184,7 @@ jobs:
- name: Set up QEMU
if: startsWith(matrix.os, 'ubuntu-')
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0
with:
platforms: arm64

Expand All @@ -195,7 +195,7 @@ jobs:
CIBW_BUILD: ${{ matrix.build == '' && '*' || format('*{0}*', matrix.build) }}

- name: Upload wheels
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
with:
name: wheels-${{ matrix.os }}-${{ matrix.archs }}-${{ matrix.build }}
path: ./wheelhouse/*.whl
Expand Down Expand Up @@ -232,7 +232,7 @@ jobs:
fetch-depth: 0

- name: Download wheels and sdist
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
with:
path: wheels
merge-multiple: true
Expand Down Expand Up @@ -285,7 +285,7 @@ jobs:
packages-dir: wheels

- name: Create PR for changelog update
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7.0.5
with:
token: ${{ secrets.GH_TOKEN }}
commit-message: 'chore: update changelog ${{ github.ref_name }}'
Expand Down

0 comments on commit c078322

Please sign in to comment.