Skip to content

Commit 37b8408

Browse files
chore(deps): pin dependencies
1 parent d02c685 commit 37b8408

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/check.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
lint:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
1414
with:
1515
ref: ${{ github.event.pull_request.head.sha }}
1616
fetch-depth: 0
17-
- uses: actions/cache@v3
17+
- uses: actions/cache@6f8efc29b200d32929f49075959781ed54ec270c # v3
1818
with:
1919
path: |
2020
~/.cache/pip
@@ -35,7 +35,7 @@ jobs:
3535
.venv/bin/python3 -m pip install -Ur .github/requirements.txt
3636
- run: .venv/bin/gitlint --commits "origin/$GITHUB_BASE_REF..HEAD"
3737
if: github.event_name == 'pull_request'
38-
- uses: pre-commit/[email protected]
38+
- uses: pre-commit/action@646c83fcd040023954eafda54b4db0192ce70507 # v3.0.0
3939

4040
test:
4141
runs-on: ${{ matrix.os }}
@@ -61,8 +61,8 @@ jobs:
6161
os: ubuntu-20.04
6262
extra-deps: "'virtualenv<20.22.0'"
6363
steps:
64-
- uses: actions/checkout@v4
65-
- uses: actions/setup-python@v5
64+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
65+
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
6666
with:
6767
# >= 3.11 to ensure there's a recent one to run nox with
6868
# (assumption: last one listed ends up as "python3")
@@ -74,7 +74,7 @@ jobs:
7474
# on older versions (e.g. 3.5) that do not have pypi.org CA certs in
7575
# baseline pip's chain
7676
PIP_CERT: /etc/ssl/certs/ca-certificates.crt
77-
- uses: actions/cache@v3
77+
- uses: actions/cache@6f8efc29b200d32929f49075959781ed54ec270c # v3
7878
with:
7979
path: |
8080
~/.cache/pip

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
release_please:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: googleapis/release-please-action@v4
12+
- uses: googleapis/release-please-action@16a9c90856f42705d54a6fda1823352bdc62cf38 # v4
1313
id: release_please
1414
with:
1515
config-file: .github/release-please-config.json
@@ -23,10 +23,10 @@ jobs:
2323
needs: release_please
2424
if: needs.release_please.outputs.release_created
2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
2727
with:
2828
ref: ${{ needs.release_please.outputs.sha }}
29-
- uses: actions/setup-python@v5
29+
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
3030
with:
3131
python-version: "3.10"
3232
- name: Create release assets
@@ -35,6 +35,6 @@ jobs:
3535
python3 -m pip install -U setuptools wheel
3636
python3 setup.py sdist bdist_wheel
3737
ls dist
38-
- uses: pypa/[email protected]
38+
- uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29 # v1.4.2
3939
with:
4040
password: ${{ secrets.PYPI_API_TOKEN }}

0 commit comments

Comments
 (0)