Skip to content

Commit d81859d

Browse files
committed
pin and update tags
1 parent 77b2848 commit d81859d

6 files changed

Lines changed: 32 additions & 32 deletions

File tree

.github/workflows/build.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -39,21 +39,21 @@ jobs:
3939
name: Pixi lock
4040
runs-on: ubuntu-latest
4141
steps:
42-
- uses: holoviz-dev/holoviz_tasks/pixi_lock@v0
42+
- uses: holoviz-dev/holoviz_tasks/pixi-lock@ffddda04b2894fea39b407f64d3622d2f19e5a9f # v1
4343

4444
conda_build:
4545
name: Build Conda
4646
needs: [pixi_lock]
4747
runs-on: "ubuntu-latest"
4848
steps:
49-
- uses: holoviz-dev/holoviz_tasks/pixi_install@v0
49+
- uses: holoviz-dev/holoviz_tasks/pixi-install@ffddda04b2894fea39b407f64d3622d2f19e5a9f # v1
5050
with:
5151
environments: "build"
5252
download-data: false
5353
install: false
5454
- name: conda build
5555
run: pixi run -e build build-conda
56-
- uses: actions/upload-artifact@v7
56+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
5757
if: always()
5858
with:
5959
name: artifacts-conda
@@ -66,7 +66,7 @@ jobs:
6666
needs: [conda_build, waiting_room]
6767
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
6868
steps:
69-
- uses: actions/download-artifact@v8
69+
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
7070
with:
7171
name: artifacts-conda
7272
path: dist/
@@ -88,14 +88,14 @@ jobs:
8888
needs: [pixi_lock]
8989
runs-on: "ubuntu-latest"
9090
steps:
91-
- uses: holoviz-dev/holoviz_tasks/pixi_install@v0
91+
- uses: holoviz-dev/holoviz_tasks/pixi-install@ffddda04b2894fea39b407f64d3622d2f19e5a9f # v1
9292
with:
9393
environments: "build"
9494
download-data: false
9595
install: false
9696
- name: Build package
9797
run: pixi run -e build build-pip
98-
- uses: actions/upload-artifact@v7
98+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
9999
if: always()
100100
with:
101101
name: artifacts-pip
@@ -107,10 +107,10 @@ jobs:
107107
runs-on: "ubuntu-latest"
108108
needs: [pip_build]
109109
steps:
110-
- uses: actions/setup-python@v6
110+
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
111111
with:
112112
python-version: ${{ env.PYTHON_VERSION }}
113-
- uses: actions/download-artifact@v8
113+
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
114114
with:
115115
name: artifacts-pip
116116
path: dist/
@@ -127,12 +127,12 @@ jobs:
127127
permissions:
128128
id-token: write
129129
steps:
130-
- uses: actions/download-artifact@v8
130+
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
131131
with:
132132
name: artifacts-pip
133133
path: dist/
134134
- name: Publish to PyPI
135-
uses: pypa/gh-action-pypi-publish@release/v1
135+
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # release/v1
136136

137137
announce:
138138
name: Announce GitHub
@@ -144,10 +144,10 @@ jobs:
144144
env:
145145
TAG: ${{ github.ref_name }}
146146
steps:
147-
- uses: actions/checkout@v6
147+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
148148
with:
149149
persist-credentials: false
150-
- uses: actions/download-artifact@v8
150+
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
151151
with:
152152
pattern: artifacts-*
153153
path: artifacts/

.github/workflows/docs.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
name: Pixi lock
3636
runs-on: ubuntu-latest
3737
steps:
38-
- uses: holoviz-dev/holoviz_tasks/pixi_lock@v0
38+
- uses: holoviz-dev/holoviz_tasks/pixi-lock@ffddda04b2894fea39b407f64d3622d2f19e5a9f # v1
3939

4040
docs_build:
4141
name: Build Documentation
@@ -47,12 +47,12 @@ jobs:
4747
env:
4848
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4949
steps:
50-
- uses: holoviz-dev/holoviz_tasks/pixi_install@v0
50+
- uses: holoviz-dev/holoviz_tasks/pixi-install@ffddda04b2894fea39b407f64d3622d2f19e5a9f # v1
5151
with:
5252
environments: docs
5353
- name: Build documentation
5454
run: pixi run -e docs docs-build
55-
- uses: actions/upload-artifact@v7
55+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
5656
if: always()
5757
with:
5858
name: docs
@@ -66,12 +66,12 @@ jobs:
6666
env:
6767
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6868
steps:
69-
- uses: actions/download-artifact@v8
69+
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
7070
with:
7171
name: docs
7272
path: builtdocs/
7373
- name: upload dev
74-
uses: peaceiris/actions-gh-pages@v4
74+
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4
7575
if: |
7676
(github.event_name == 'workflow_dispatch' && github.event.inputs.target == 'dev') ||
7777
(github.event_name == 'push' && (contains(github.ref_name, 'a') || contains(github.ref_name, 'b') || contains(github.ref_name, 'rc')))
@@ -84,7 +84,7 @@ jobs:
8484
if: |
8585
(github.event_name == 'workflow_dispatch' && github.event.inputs.target == 'main') ||
8686
(github.event_name == 'push' && !(contains(github.ref_name, 'a') || contains(github.ref_name, 'b') || contains(github.ref_name, 'rc')))
87-
uses: peaceiris/actions-gh-pages@v4
87+
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4
8888
with:
8989
github_token: ${{ secrets.GITHUB_TOKEN }}
9090
publish_dir: ./builtdocs

.github/workflows/gallery.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ jobs:
3232
shell: bash -el {0}
3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v6
35+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3636
with:
3737
fetch-depth: 0
3838
persist-credentials: false
3939
- name: Setup Python
40-
uses: actions/setup-python@v6
40+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
4141
with:
4242
python-version: "3.11"
4343
- name: Set and echo git ref
@@ -47,7 +47,7 @@ jobs:
4747
run: |
4848
echo "Deploying from ref $HEAD_BRANCH"
4949
echo "tag=$HEAD_BRANCH" >> $GITHUB_OUTPUT
50-
- uses: conda-incubator/setup-miniconda@v3
50+
- uses: conda-incubator/setup-miniconda@8ee1f361103df19b6f8c8655fd3967a8ecb162d5 # v4
5151
with:
5252
miniconda-version: "latest"
5353
auto-update-conda: true

.github/workflows/lock.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
action:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: dessant/lock-threads@v6
19+
- uses: dessant/lock-threads@7266a7ce5c1df01b1c6db85bf8cd86c737dadbe7 # v6
2020
with:
2121
issue-inactive-days: "100"
2222
pr-inactive-days: "100"

.github/workflows/nightly_lock.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
timeout-minutes: 5
2222
steps:
23-
- uses: holoviz-dev/holoviz_tasks/pixi_lock@v0
23+
- uses: holoviz-dev/holoviz_tasks/pixi-lock@ffddda04b2894fea39b407f64d3622d2f19e5a9f # v1
2424
- name: Upload lock-file to S3
2525
env:
2626
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}

.github/workflows/test.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ jobs:
4444
needs: [setup]
4545
runs-on: "ubuntu-latest"
4646
steps:
47-
- uses: holoviz-dev/holoviz_tasks/pre-commit@v0
48-
- uses: pre-commit/action@v3.0.1
47+
- uses: holoviz-dev/holoviz_tasks/pre-commit@ffddda04b2894fea39b407f64d3622d2f19e5a9f # v1
48+
- uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1
4949
if: needs.setup.outputs.img_change == 'true'
5050
with:
5151
extra_args: -a --hook-stage manual oxipng || true --
52-
- uses: stefanzweifel/git-auto-commit-action@v7
52+
- uses: stefanzweifel/git-auto-commit-action@04702edda442b2e678b25b537cec683a1493fcb9 # v7
5353
if: needs.setup.outputs.img_change == 'true'
5454
with:
5555
commit_message: "Optimize PNG images (lossless)"
@@ -62,12 +62,12 @@ jobs:
6262
img_change: ${{ steps.filter.outputs.img }}
6363
matrix: ${{ env.MATRIX }}
6464
steps:
65-
- uses: actions/checkout@v6
65+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
6666
if: github.event_name != 'pull_request'
6767
with:
6868
persist-credentials: false
6969
- name: Check for code changes
70-
uses: dorny/paths-filter@v4
70+
uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4
7171
id: filter
7272
with:
7373
filters: |
@@ -116,7 +116,7 @@ jobs:
116116
name: Pixi lock
117117
runs-on: ubuntu-latest
118118
steps:
119-
- uses: holoviz-dev/holoviz_tasks/pixi_lock@v0
119+
- uses: holoviz-dev/holoviz_tasks/pixi-lock@ffddda04b2894fea39b407f64d3622d2f19e5a9f # v1
120120
with:
121121
cache: ${{ github.event.inputs.cache == 'true' || github.event.inputs.cache == '' }}
122122

@@ -131,13 +131,13 @@ jobs:
131131
env:
132132
ENV: ${{ matrix.environment }}
133133
steps:
134-
- uses: holoviz-dev/holoviz_tasks/pixi_install@v0
134+
- uses: holoviz-dev/holoviz_tasks/pixi-install@ffddda04b2894fea39b407f64d3622d2f19e5a9f # v1
135135
with:
136136
environments: ${{ matrix.environment }}
137137
- name: Test Unit
138138
run: |
139139
pixi run -e "${ENV}" test-unit $COV
140-
- uses: codecov/codecov-action@v5
140+
- uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6
141141
with:
142142
token: ${{ secrets.CODECOV_TOKEN }}
143143

@@ -154,7 +154,7 @@ jobs:
154154
env:
155155
ENV: ${{ matrix.environment }}
156156
steps:
157-
- uses: holoviz-dev/holoviz_tasks/pixi_install@v0
157+
- uses: holoviz-dev/holoviz_tasks/pixi-install@ffddda04b2894fea39b407f64d3622d2f19e5a9f # v1
158158
with:
159159
environments: ${{ matrix.environment }}
160160
- name: Test Unit

0 commit comments

Comments
 (0)