Skip to content

Commit 770506d

Browse files
chore(deps): pin dependencies
1 parent 5f87782 commit 770506d

9 files changed

Lines changed: 47 additions & 47 deletions

.github/workflows/build-artifacts.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,18 @@ jobs:
3838
working-directory: api
3939
steps:
4040
- name: Checkout repo
41-
uses: actions/checkout@v7
41+
uses: actions/checkout@v7.0.1
4242
with:
4343
ref: ${{ inputs.ref || github.ref }}
4444
fetch-depth: 0
4545

46-
- uses: pnpm/action-setup@v4
46+
- uses: pnpm/action-setup@v4.4.0
4747
name: Install pnpm
4848
with:
4949
run_install: false
5050

5151
- name: Install Node
52-
uses: actions/setup-node@v7
52+
uses: actions/setup-node@v7.0.0
5353
with:
5454
node-version-file: ".nvmrc"
5555
cache: 'pnpm'
@@ -83,7 +83,7 @@ jobs:
8383
id: buildnumber
8484
if: github.repository == 'unraid/api'
8585
continue-on-error: true
86-
uses: onyxmueller/build-tag-number@v1
86+
uses: onyxmueller/build-tag-number@v1.1.0
8787
with:
8888
token: ${{ secrets.UNRAID_BOT_GITHUB_ADMIN_TOKEN || github.token }}
8989
prefix: ${{ inputs.version_override || steps.vars.outputs.PACKAGE_LOCK_VERSION }}
@@ -99,7 +99,7 @@ jobs:
9999
tar -czf deploy/unraid-api.tgz -C deploy/pack/ .
100100
101101
- name: Upload tgz to Github artifacts
102-
uses: actions/upload-artifact@v6
102+
uses: actions/upload-artifact@v6.0.0
103103
with:
104104
name: unraid-api
105105
path: ${{ github.workspace }}/api/deploy/unraid-api.tgz
@@ -112,17 +112,17 @@ jobs:
112112
runs-on: ubuntu-latest
113113
steps:
114114
- name: Checkout repo
115-
uses: actions/checkout@v7
115+
uses: actions/checkout@v7.0.1
116116
with:
117117
ref: ${{ inputs.ref || github.ref }}
118118

119-
- uses: pnpm/action-setup@v4
119+
- uses: pnpm/action-setup@v4.4.0
120120
name: Install pnpm
121121
with:
122122
run_install: false
123123

124124
- name: Install Node
125-
uses: actions/setup-node@v7
125+
uses: actions/setup-node@v7.0.0
126126
with:
127127
node-version-file: ".nvmrc"
128128
cache: 'pnpm'
@@ -145,7 +145,7 @@ jobs:
145145
run: pnpm run build:wc
146146

147147
- name: Upload Artifact to Github
148-
uses: actions/upload-artifact@v6
148+
uses: actions/upload-artifact@v6.0.0
149149
with:
150150
name: unraid-wc-ui
151151
path: unraid-ui/dist-wc/
@@ -158,7 +158,7 @@ jobs:
158158
runs-on: ubuntu-latest
159159
steps:
160160
- name: Checkout repo
161-
uses: actions/checkout@v7
161+
uses: actions/checkout@v7.0.1
162162
with:
163163
ref: ${{ inputs.ref || github.ref }}
164164

@@ -170,13 +170,13 @@ jobs:
170170
echo VITE_UNRAID_NET=${{ secrets.VITE_UNRAID_NET }} >> .env
171171
echo VITE_CALLBACK_KEY=${{ secrets.VITE_CALLBACK_KEY }} >> .env
172172
173-
- uses: pnpm/action-setup@v4
173+
- uses: pnpm/action-setup@v4.4.0
174174
name: Install pnpm
175175
with:
176176
run_install: false
177177

178178
- name: Install Node
179-
uses: actions/setup-node@v7
179+
uses: actions/setup-node@v7.0.0
180180
with:
181181
node-version-file: ".nvmrc"
182182
cache: 'pnpm'
@@ -201,7 +201,7 @@ jobs:
201201
run: pnpm run build
202202

203203
- name: Upload build to Github artifacts
204-
uses: actions/upload-artifact@v6
204+
uses: actions/upload-artifact@v6.0.0
205205
with:
206206
name: unraid-wc-rich
207207
path: web/dist

.github/workflows/build-plugin.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,18 +56,18 @@ jobs:
5656
runs-on: ubuntu-latest
5757
steps:
5858
- name: Checkout repo
59-
uses: actions/checkout@v7
59+
uses: actions/checkout@v7.0.1
6060
with:
6161
ref: ${{ inputs.ref }}
6262
fetch-depth: 0
6363

64-
- uses: pnpm/action-setup@v4
64+
- uses: pnpm/action-setup@v4.4.0
6565
name: Install pnpm
6666
with:
6767
run_install: false
6868

6969
- name: Install Node
70-
uses: actions/setup-node@v7
70+
uses: actions/setup-node@v7.0.0
7171
with:
7272
node-version-file: ".nvmrc"
7373
cache: 'pnpm'
@@ -101,19 +101,19 @@ jobs:
101101
pnpm install --frozen-lockfile --filter @unraid/connect-plugin
102102
103103
- name: Download Unraid UI Components
104-
uses: actions/download-artifact@v7
104+
uses: actions/download-artifact@v7.0.0
105105
with:
106106
name: unraid-wc-ui
107107
path: ${{ github.workspace }}/plugin/source/dynamix.unraid.net/usr/local/emhttp/plugins/dynamix.my.servers/unraid-components/uui
108108
merge-multiple: true
109109
- name: Download Unraid Web Components
110-
uses: actions/download-artifact@v7
110+
uses: actions/download-artifact@v7.0.0
111111
with:
112112
pattern: unraid-wc-rich
113113
path: ${{ github.workspace }}/plugin/source/dynamix.unraid.net/usr/local/emhttp/plugins/dynamix.my.servers/unraid-components/standalone
114114
merge-multiple: true
115115
- name: Download Unraid API
116-
uses: actions/download-artifact@v7
116+
uses: actions/download-artifact@v7.0.0
117117
with:
118118
name: unraid-api
119119
path: ${{ github.workspace }}/plugin/api/
@@ -142,7 +142,7 @@ jobs:
142142
fi
143143
144144
- name: Upload to GHA
145-
uses: actions/upload-artifact@v6
145+
uses: actions/upload-artifact@v6.0.0
146146
with:
147147
name: unraid-plugin-${{ github.run_id }}-${{ inputs.TAG || inputs.RELEASE_TAG || 'build' }}
148148
path: plugin/deploy/

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@ jobs:
2424

2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@v7
27+
uses: actions/checkout@v7.0.1
2828

2929
- name: Initialize CodeQL
30-
uses: github/codeql-action/init@v4
30+
uses: github/codeql-action/init@v4.37.6
3131
with:
3232
languages: ${{ matrix.language }}
3333
config-file: ./.github/codeql/codeql-config.yml
3434
queries: +security-and-quality
3535

3636
- name: Autobuild
37-
uses: github/codeql-action/autobuild@v4
37+
uses: github/codeql-action/autobuild@v4.37.6
3838

3939
- name: Perform CodeQL Analysis
40-
uses: github/codeql-action/analyze@v4
40+
uses: github/codeql-action/analyze@v4.37.6

.github/workflows/deploy-storybook.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ jobs:
2020
name: Deploy Storybook
2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v7
23+
uses: actions/checkout@v7.0.1
2424

25-
- uses: pnpm/action-setup@v4
25+
- uses: pnpm/action-setup@v4.4.0
2626
name: Install pnpm
2727
with:
2828
run_install: false
2929

3030
- name: Setup Node.js
31-
uses: actions/setup-node@v7
31+
uses: actions/setup-node@v7.0.0
3232
with:
3333
node-version-file: ".nvmrc"
3434
cache: 'pnpm'
@@ -50,23 +50,23 @@ jobs:
5050
- name: Deploy to Cloudflare Workers (Staging)
5151
id: deploy_staging
5252
if: github.event_name == 'pull_request'
53-
uses: cloudflare/wrangler-action@v3
53+
uses: cloudflare/wrangler-action@v3.15.0
5454
with:
5555
apiToken: ${{ secrets.CLOUDFLARE_DEPLOY_TOKEN }}
5656
command: deploy --env staging
5757
workingDirectory: unraid-ui
5858

5959
- name: Deploy to Cloudflare Workers (Production)
6060
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
61-
uses: cloudflare/wrangler-action@v3
61+
uses: cloudflare/wrangler-action@v3.15.0
6262
with:
6363
apiToken: ${{ secrets.CLOUDFLARE_DEPLOY_TOKEN }}
6464
command: deploy
6565
workingDirectory: unraid-ui
6666

6767
- name: Comment PR with deployment URL
6868
if: github.event_name == 'pull_request'
69-
uses: actions/github-script@v9
69+
uses: actions/github-script@v9.0.0
7070
with:
7171
script: |
7272
github.rest.issues.createComment({

.github/workflows/generate-release-notes.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ jobs:
3131
release_notes: ${{ steps.generate_notes.outputs.release_notes }}
3232
steps:
3333
- name: Checkout repo
34-
uses: actions/checkout@v7
34+
uses: actions/checkout@v7.0.1
3535
with:
3636
ref: ${{ inputs.target_commitish || github.ref }}
3737
fetch-depth: 0
3838
token: ${{ secrets.UNRAID_BOT_GITHUB_ADMIN_TOKEN }}
3939

4040
- name: Setup Node.js
41-
uses: actions/setup-node@v7
41+
uses: actions/setup-node@v7.0.0
4242
with:
4343
node-version: '20.20.0'
4444

.github/workflows/main.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout repo
26-
uses: actions/checkout@v7
26+
uses: actions/checkout@v7.0.1
2727
with:
2828
fetch-depth: 0
2929

3030
- name: Install pnpm
31-
uses: pnpm/action-setup@v4
31+
uses: pnpm/action-setup@v4.4.0
3232
with:
3333
run_install: false
3434

3535
- name: Install Node
36-
uses: actions/setup-node@v7
36+
uses: actions/setup-node@v7.0.0
3737
with:
3838
node-version-file: ".nvmrc"
3939
cache: 'pnpm'
@@ -157,7 +157,7 @@ jobs:
157157
fi
158158
159159
- name: Upload all coverage reports to Codecov
160-
uses: codecov/codecov-action@v6
160+
uses: codecov/codecov-action@v6.0.2
161161
with:
162162
token: ${{ secrets.CODECOV_TOKEN }}
163163
files: ./coverage/coverage-final.json,../web/coverage/coverage-final.json,../unraid-ui/coverage/coverage-final.json,../packages/unraid-api-plugin-connect/coverage/coverage-final.json,../packages/unraid-shared/coverage/coverage-final.json
@@ -173,15 +173,15 @@ jobs:
173173
contents: read
174174
steps:
175175
- name: Checkout repo
176-
uses: actions/checkout@v7
176+
uses: actions/checkout@v7.0.1
177177

178178
- name: Install pnpm
179-
uses: pnpm/action-setup@v4
179+
uses: pnpm/action-setup@v4.4.0
180180
with:
181181
run_install: false
182182

183183
- name: Install Node
184-
uses: actions/setup-node@v7
184+
uses: actions/setup-node@v7.0.0
185185
with:
186186
node-version-file: ".nvmrc"
187187

@@ -211,12 +211,12 @@ jobs:
211211
pull-requests: write
212212
steps:
213213
- name: Checkout
214-
uses: actions/checkout@v7
214+
uses: actions/checkout@v7.0.1
215215
with:
216216
fetch-depth: 0
217217

218218
- id: release
219-
uses: googleapis/release-please-action@v4
219+
uses: googleapis/release-please-action@v4.4.1
220220
outputs:
221221
releases_created: ${{ steps.release.outputs.releases_created || 'false' }}
222222
tag_name: ${{ steps.release.outputs.tag_name || '' }}

.github/workflows/manual-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- name: Checkout repo
34-
uses: actions/checkout@v7
34+
uses: actions/checkout@v7.0.1
3535
with:
3636
ref: ${{ inputs.target_commitish || github.ref }}
3737
fetch-depth: 0
3838
token: ${{ secrets.UNRAID_BOT_GITHUB_ADMIN_TOKEN }}
3939

4040
- name: Setup Node.js
41-
uses: actions/setup-node@v7
41+
uses: actions/setup-node@v7.0.0
4242
with:
4343
node-version: '20.20.0'
4444

@@ -167,7 +167,7 @@ jobs:
167167
release_notes: ${{ needs.generate-release-notes.outputs.release_notes }}
168168
steps:
169169
- name: Checkout repo
170-
uses: actions/checkout@v7
170+
uses: actions/checkout@v7.0.1
171171
with:
172172
ref: ${{ inputs.target_commitish || github.ref }}
173173
fetch-depth: 0

.github/workflows/publish-schema.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout repo
17-
uses: actions/checkout@v7
17+
uses: actions/checkout@v7.0.1
1818

1919
- name: Install Apollo Rover CLI
2020
run: |

.github/workflows/release-production.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
latest: true
3030
prerelease: false
31-
- uses: actions/setup-node@v7
31+
- uses: actions/setup-node@v7.0.0
3232
with:
3333
node-version: 22.19.0
3434
- run: |
@@ -37,7 +37,7 @@ jobs:
3737
EOF
3838
- run: npm install html-escaper@2 xml2js
3939
- name: Update Plugin Changelog
40-
uses: actions/github-script@v9
40+
uses: actions/github-script@v9.0.0
4141
with:
4242
script: |
4343
const fs = require('fs');

0 commit comments

Comments
 (0)