Skip to content

Commit 41b6f4d

Browse files
committed
ci: set specific versions for github actions
1 parent f22d144 commit 41b6f4d

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/pre-commit-update.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
16+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1717

1818
- name: Set up Python
19-
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
19+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
2020
with:
2121
python-version: '3.14'
2222

@@ -34,7 +34,7 @@ jobs:
3434
run: hatch run pre-commit autoupdate --freeze
3535

3636
- name: Create Pull Request
37-
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7
37+
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.0
3838
with:
3939
commit-message: "chore(deps): Update .pre-commit-config.yaml"
4040
title: "chore(deps): Update .pre-commit-config.yaml"

.github/workflows/python-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: hatch build
2727

2828
- name: Store the distribution packages
29-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
29+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
3030
with:
3131
name: python-package-distributions
3232
path: dist/
@@ -44,7 +44,7 @@ jobs:
4444
id-token: write # IMPORTANT: mandatory for trusted publishing
4545
steps:
4646
- name: Download all the dists
47-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5
47+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
4848
with:
4949
name: python-package-distributions
5050
path: dist/

.github/workflows/python-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ jobs:
3232
- '3.13'
3333
- '3.14'
3434
steps:
35-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
35+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3636

3737
- name: Set up Python ${{ matrix.python-version }}
38-
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
38+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
3939
with:
4040
python-version: "${{matrix.python-version}}"
4141
cache: "pip"

0 commit comments

Comments
 (0)