Skip to content

Commit 00dbd6e

Browse files
chore(deps): pin dependencies
1 parent ce2e166 commit 00dbd6e

2 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/setup.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ jobs:
77
runs-on: ubuntu-20.04
88

99
steps:
10-
- uses: actions/checkout@v4
11-
- uses: actions/cache@v4
10+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
11+
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
1212
with:
1313
path: ~/.cache/pip
1414
key: ${{ runner.os }}-pip-setup-${{ hashFiles('**/requirements*.txt') }}
1515
- name: Setup Python
16-
uses: actions/setup-python@v5
16+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
1717
with:
1818
python-version: 3.8
1919
- name: Install Gammu
@@ -29,7 +29,7 @@ jobs:
2929
- name: twine
3030
run: twine check dist/*
3131
- name: Store the binary wheel
32-
uses: actions/upload-artifact@v4
32+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
3333
with:
3434
name: python-package-distributions
3535
path: dist
@@ -47,13 +47,13 @@ jobs:
4747
architecture: [x64, x86]
4848

4949
steps:
50-
- uses: actions/checkout@v4
51-
- uses: actions/cache@v4
50+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
51+
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
5252
with:
5353
path: ~/.cache/pip
5454
key: ${{ runner.os }}-pip-setup-${{ hashFiles('**/requirements*.txt') }}
5555
- name: Setup Python
56-
uses: actions/setup-python@v5
56+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
5757
with:
5858
python-version: ${{ matrix.python-version }}
5959
architecture: ${{ matrix.architecture }}
@@ -76,7 +76,7 @@ jobs:
7676
- name: twine
7777
run: twine check dist/*
7878
- name: Store the binary wheel
79-
uses: actions/upload-artifact@v4
79+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
8080
with:
8181
name: python-package-distributions
8282
path: dist
@@ -88,15 +88,15 @@ jobs:
8888
- windows
8989

9090
steps:
91-
- uses: actions/checkout@v4
91+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
9292
- name: Download all the dists
93-
uses: actions/download-artifact@v4
93+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
9494
with:
9595
name: python-package-distributions
9696
path: dist/
9797
- name: Publish package
9898
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
99-
uses: pypa/gh-action-pypi-publish@v1.12.2
99+
uses: pypa/gh-action-pypi-publish@15c56dba361d8335944d31a2ecd17d700fc7bcbc # v1.12.2
100100
with:
101101
user: __token__
102102
password: ${{ secrets.pypi_password }}

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ jobs:
1717
name: ${{ matrix.os }}, Python ${{ matrix.python-version }}
1818

1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
2121
- name: Cache pip
22-
uses: actions/cache@v4
22+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
2323
with:
2424
path: ~/.cache/pip
2525
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/requirements*.txt') }}
2626
- name: Set up Python ${{ matrix.python-version }}
27-
uses: actions/setup-python@v5
27+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030
- name: Install gammu
@@ -48,6 +48,6 @@ jobs:
4848
run: coverage run --source=. ./setup.py test
4949
- name: Coverage
5050
run: coverage xml
51-
- uses: codecov/codecov-action@v5
51+
- uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5
5252
with:
5353
name: ${{ matrix.os }}, Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)