Skip to content

Commit 7d5b71d

Browse files
Merge pull request #638 from yt-project/dependabot/github_actions/dot-github/workflows/actions-6ee2611bd9
2 parents 71ab336 + b04f405 commit 7d5b71d

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/bleeding-edge.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
steps:
3131
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3232
- name: Setup Python
33-
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
33+
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
3434
with:
3535
python-version: '3.14'
3636
enable-cache: false

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fetch-depth: 0
2020
persist-credentials: false
2121
- name: Setup Python
22-
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
22+
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
2323
with:
2424
python-version: '3.14'
2525
enable-cache: false
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3333
- name: Setup Python
34-
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
34+
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
3535
with:
3636
python-version: '3.14'
3737
enable-cache: false
@@ -103,7 +103,7 @@ jobs:
103103
fetch-depth: 0
104104
persist-credentials: false
105105
- name: Setup Python
106-
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
106+
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
107107
with:
108108
python-version: ${{ matrix.python-version }}
109109
enable-cache: false
@@ -119,7 +119,7 @@ jobs:
119119
# only using reports from ubuntu because
120120
# combining reports from multiple platforms is tricky
121121
if: startsWith( matrix.os , 'ubuntu' )
122-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
122+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
123123
with:
124124
name: unyt_coverage_data-${{matrix.os}}-${{matrix.python-version}}-${{matrix.label}}
125125
path: .coverage.*
@@ -136,7 +136,7 @@ jobs:
136136
with:
137137
fetch-depth: 0
138138
persist-credentials: false
139-
- uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
139+
- uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
140140
with:
141141
python-version: '3.14'
142142
enable-cache: false
@@ -155,7 +155,7 @@ jobs:
155155
coverage report --fail-under=99
156156
157157
- name: Upload HTML report
158-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
158+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
159159
with:
160160
name: unyt_coverage_report
161161
path: htmlcov
@@ -169,7 +169,7 @@ jobs:
169169
fetch-depth: 0
170170
persist-credentials: false
171171
- name: Setup Python
172-
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
172+
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
173173
with:
174174
python-version: '3.10'
175175
enable-cache: false
@@ -179,7 +179,7 @@ jobs:
179179
uv run --no-sync --directory=docs \
180180
python -m sphinx -M html "." "_build" -W
181181
- name: Upload build
182-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
182+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
183183
with:
184184
name: unyt_docs
185185
path: docs/_build/html

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
- name: Checkout Source
2020
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2121
- name: Setup Python
22-
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
22+
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
2323
with:
2424
python-version: '3.14'
2525
- name: Build distributions
2626
run: uv build
2727
- name: Publish package distributions to PyPI
2828
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
29-
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0
29+
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0

0 commit comments

Comments
 (0)