Skip to content

Commit 2269c1d

Browse files
authored
Merge pull request #28 from proxymesh/cursor/combine-dependabot-actions-1ee1
ci: bump actions/checkout and setup-python
2 parents fac07a7 + 30a1801 commit 2269c1d

3 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/github_release_on_release_branch_merge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Checkout merge commit
29-
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
29+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
3030
with:
3131
ref: ${{ github.event.pull_request.merge_commit_sha }}
3232

3333
- name: Set up Python
34-
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
34+
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
3535
with:
3636
python-version: "3.12"
3737

.github/workflows/proxy_integration_tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
unit:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
18+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
1919
with:
2020
persist-credentials: false
2121

2222
- name: Set up Python
23-
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
23+
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
2424
with:
2525
python-version: "3.x"
2626

@@ -40,12 +40,12 @@ jobs:
4040
runs-on: ubuntu-latest
4141

4242
steps:
43-
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
43+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
4444
with:
4545
persist-credentials: false
4646

4747
- name: Set up Python
48-
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
48+
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
4949
with:
5050
python-version: "3.x"
5151

.github/workflows/publish.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
outputs:
3131
publish: ${{ steps.decide.outputs.publish }}
3232
steps:
33-
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
33+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
3434
if: github.event_name == 'workflow_run'
3535
with:
3636
ref: main
@@ -64,12 +64,12 @@ jobs:
6464
runs-on: ubuntu-latest
6565

6666
steps:
67-
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
67+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
6868
with:
6969
ref: ${{ github.event_name == 'workflow_run' && 'main' || github.event_name == 'release' && github.ref || 'main' }}
7070

7171
- name: Set up Python
72-
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
72+
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
7373
with:
7474
python-version: "3.x"
7575

@@ -82,7 +82,7 @@ jobs:
8282
run: python -m build
8383

8484
- name: Store distribution packages
85-
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
85+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
8686
with:
8787
name: python-package-distributions
8888
path: dist/
@@ -102,13 +102,13 @@ jobs:
102102

103103
steps:
104104
- name: Download distribution packages
105-
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c
105+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
106106
with:
107107
name: python-package-distributions
108108
path: dist/
109109

110110
- name: Publish to PyPI
111-
uses: pypa/gh-action-pypi-publish@dc37677b2e1c63e2034f94d8a5b11f265b73ba33
111+
uses: pypa/gh-action-pypi-publish@dc37677b2e1c63e2034f94d8a5b11f265b73ba33 # v1.14.2
112112

113113
publish-to-testpypi:
114114
name: Publish to TestPyPI
@@ -122,12 +122,12 @@ jobs:
122122

123123
steps:
124124
- name: Download distribution packages
125-
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c
125+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
126126
with:
127127
name: python-package-distributions
128128
path: dist/
129129

130130
- name: Publish to TestPyPI
131-
uses: pypa/gh-action-pypi-publish@dc37677b2e1c63e2034f94d8a5b11f265b73ba33
131+
uses: pypa/gh-action-pypi-publish@dc37677b2e1c63e2034f94d8a5b11f265b73ba33 # v1.14.2
132132
with:
133133
repository-url: https://test.pypi.org/legacy/

0 commit comments

Comments
 (0)