Skip to content

Commit 06994cc

Browse files
authored
Fixing workflows with pinned versions (#50)
1 parent fab2f79 commit 06994cc

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/pr-preview.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
contents: read
1212
pull-requests: write
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
1515
with:
1616
fetch-depth: 0
17-
- uses: actions/setup-python@v5
17+
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
1818
with:
1919
python-version: '3.x'
2020

@@ -57,14 +57,14 @@ jobs:
5757
5858
- name: Publish to Test PyPI
5959
if: steps.version_check.outputs.exists != 'true'
60-
uses: pypa/gh-action-pypi-publish@v1.12.4
60+
uses: pypa/gh-action-pypi-publish@67339c736fd9354cd4f8cb0b744f2b82a74b5c70 # v1.12.4
6161
with:
6262
repository-url: https://test.pypi.org/legacy/
6363
verbose: true
6464

6565
- name: Comment on PR
6666
if: steps.version_check.outputs.exists != 'true'
67-
uses: actions/github-script@v7
67+
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
6868
env:
6969
VERSION: ${{ env.VERSION }}
7070
with:

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
id-token: write
1111
contents: read
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
1414
with:
1515
fetch-depth: 0
16-
- uses: actions/setup-python@v5
16+
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
1717
with:
1818
python-version: '3.x'
1919

@@ -54,7 +54,7 @@ jobs:
5454
5555
- name: Publish to PyPI
5656
if: steps.version_check.outputs.pypi_exists != 'true'
57-
uses: pypa/gh-action-pypi-publish@v1.12.4
57+
uses: pypa/gh-action-pypi-publish@67339c736fd9354cd4f8cb0b744f2b82a74b5c70 # v1.12.4
5858

5959
- name: Verify package is installable
6060
id: verify_package

.github/workflows/version-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
check_version:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
1515
with:
1616
fetch-depth: 0 # Fetch all history for all branches
1717

@@ -39,7 +39,7 @@ jobs:
3939
"
4040
4141
- name: Manage PR Comment
42-
uses: actions/github-script@v7
42+
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
4343
if: always()
4444
env:
4545
MAIN_VERSION: ${{ env.MAIN_VERSION }}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "socketdev"
7-
version = "3.0.6"
7+
version = "3.0.7"
88
requires-python = ">= 3.9"
99
dependencies = [
1010
'requests',

socketdev/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.0.6"
1+
__version__ = "3.0.7"

0 commit comments

Comments
 (0)