Skip to content

Commit 8a357d9

Browse files
chore(deps): pin dependencies
1 parent 7419a9c commit 8a357d9

6 files changed

Lines changed: 29 additions & 29 deletions

File tree

.github/renovate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
":disableRateLimiting"
1414
],
1515
"labels": ["dependencies"],
16-
"constraints": { "node": "24", "pnpm": "11.2.2" },
16+
"constraints": { "node": "24.16.0", "pnpm": "11.2.2" },
1717
"baseBranchPatterns": ["dev"],
1818
"minimumReleaseAge": "1 days",
1919
"packageRules": [

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- name: Build
28-
uses: docker/build-push-action@v7
28+
uses: docker/build-push-action@v7.2.0
2929
with:
3030
build-args: |
3131
GIT_SHA=${{ github.sha }}

.github/workflows/lint.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Checkout
29-
uses: actions/checkout@v6
30-
- uses: pnpm/action-setup@v6
29+
uses: actions/checkout@v6.0.3
30+
- uses: pnpm/action-setup@v6.0.8
3131
with:
3232
version: 11.2.2
3333
run_install: false
3434
- name: Setup Node
35-
uses: actions/setup-node@v6
35+
uses: actions/setup-node@v6.4.0
3636
with:
3737
node-version: 24.15.0
3838
cache: 'pnpm'
@@ -45,13 +45,13 @@ jobs:
4545
runs-on: ubuntu-latest
4646
steps:
4747
- name: Checkout
48-
uses: actions/checkout@v6
49-
- uses: pnpm/action-setup@v6
48+
uses: actions/checkout@v6.0.3
49+
- uses: pnpm/action-setup@v6.0.8
5050
with:
5151
version: 11.2.2
5252
run_install: false
5353
- name: Setup Node
54-
uses: actions/setup-node@v6
54+
uses: actions/setup-node@v6.4.0
5555
with:
5656
node-version: 24.15.0
5757
cache: 'pnpm'

.github/workflows/nextjs_bundle_analysis.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,22 @@ jobs:
1616
analyze:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v6
19+
- uses: actions/checkout@v6.0.3
2020

21-
- uses: pnpm/action-setup@v6
21+
- uses: pnpm/action-setup@v6.0.8
2222
with:
2323
version: 11.2.2
2424
run_install: false
2525
- name: Setup Node
26-
uses: actions/setup-node@v6
26+
uses: actions/setup-node@v6.4.0
2727
with:
2828
node-version: 24.15.0
2929
cache: 'pnpm'
3030
- name: Install dependencies
3131
run: pnpm ci
3232

3333
- name: Restore next build
34-
uses: actions/cache@v5
34+
uses: actions/cache@v5.0.5
3535
id: restore-build-cache
3636
env:
3737
cache-name: cache-next-build
@@ -52,7 +52,7 @@ jobs:
5252
run: npx -p nextjs-bundle-analysis report
5353

5454
- name: Upload bundle
55-
uses: actions/upload-artifact@v7
55+
uses: actions/upload-artifact@v7.0.1
5656
with:
5757
name: bundle
5858
path: .next/analyze/__bundle_analysis.json
@@ -93,22 +93,22 @@ jobs:
9393
echo ::set-output name=body::$body
9494
9595
- name: Find Comment
96-
uses: peter-evans/find-comment@v4
96+
uses: peter-evans/find-comment@v4.0.0
9797
if: success() && github.event.number
9898
id: fc
9999
with:
100100
issue-number: ${{ github.event.number }}
101101
body-includes: '<!-- __NEXTJS_BUNDLE -->'
102102

103103
- name: Create Comment
104-
uses: peter-evans/create-or-update-comment@v5
104+
uses: peter-evans/create-or-update-comment@v5.0.0
105105
if: success() && github.event.number && steps.fc.outputs.comment-id == 0
106106
with:
107107
issue-number: ${{ github.event.number }}
108108
body: ${{ steps.get-comment-body.outputs.body }}
109109

110110
- name: Update Comment
111-
uses: peter-evans/create-or-update-comment@v5
111+
uses: peter-evans/create-or-update-comment@v5.0.0
112112
if: success() && github.event.number && steps.fc.outputs.comment-id != 0
113113
with:
114114
issue-number: ${{ github.event.number }}

.github/workflows/release.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,26 +25,26 @@ jobs:
2525
new_release_version: ${{ steps.semantic.outputs.new_release_version }}
2626
release_sha: ${{ steps.release-sha.outputs.sha }}
2727
steps:
28-
- uses: actions/create-github-app-token@v3
28+
- uses: actions/create-github-app-token@v3.2.0
2929
id: app-token
3030
with:
3131
app-id: ${{ secrets.APP_ID }}
3232
private-key: ${{ secrets.APP_PRIVATE_KEY }}
3333

3434
- name: Checkout
35-
uses: actions/checkout@v6
35+
uses: actions/checkout@v6.0.3
3636
with:
3737
fetch-depth: 0
3838
token: ${{ steps.app-token.outputs.token }}
3939

4040
- name: Setup pnpm
41-
uses: pnpm/action-setup@v6
41+
uses: pnpm/action-setup@v6.0.8
4242
with:
4343
version: 11.2.2
4444
run_install: false
4545

4646
- name: Setup Node.js
47-
uses: actions/setup-node@v6
47+
uses: actions/setup-node@v6.4.0
4848
with:
4949
node-version: 24.15.0
5050
cache: pnpm
@@ -73,21 +73,21 @@ jobs:
7373
runs-on: ubuntu-latest
7474
steps:
7575
- name: Checkout
76-
uses: actions/checkout@v6
76+
uses: actions/checkout@v6.0.3
7777
with:
7878
fetch-depth: 0
7979
fetch-tags: true
8080
ref: ${{ needs.release.outputs.release_sha }}
8181

8282
- name: Login to DockerHub
83-
uses: docker/login-action@v4
83+
uses: docker/login-action@v4.2.0
8484
with:
8585
username: ${{ secrets.DOCKERHUB_USERNAME }}
8686
password: ${{ secrets.DOCKERHUB_TOKEN }}
8787

8888
- name: Docker Metadata
8989
id: meta
90-
uses: docker/metadata-action@v6
90+
uses: docker/metadata-action@v6.1.0
9191
with:
9292
images: informaticsmatters/squonk2-data-manager-ui
9393
tags: |
@@ -96,7 +96,7 @@ jobs:
9696
type=raw,value=latest,enable=${{ !contains(needs.release.outputs.new_release_version, '-dev.') }}
9797
9898
- name: Build and push image
99-
uses: docker/build-push-action@v7
99+
uses: docker/build-push-action@v7.2.0
100100
with:
101101
context: .
102102
file: ./Dockerfile

.github/workflows/test.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ jobs:
4646
environment: data-manager-ui/test
4747
steps:
4848
- name: Checkout
49-
uses: actions/checkout@v6
50-
- uses: pnpm/action-setup@v6
49+
uses: actions/checkout@v6.0.3
50+
- uses: pnpm/action-setup@v6.0.8
5151
with:
5252
version: 11.2.2
5353
run_install: false
5454
- name: Setup Node
55-
uses: actions/setup-node@v6
55+
uses: actions/setup-node@v6.4.0
5656
with:
5757
node-version: 24.15.0
5858
cache: 'pnpm'
@@ -62,7 +62,7 @@ jobs:
6262
- name: Setup Playwright
6363
run: pnpm exec playwright install --with-deps
6464
- name: Load cached build for speed
65-
uses: actions/cache@v5
65+
uses: actions/cache@v5.0.5
6666
with:
6767
path: |
6868
${{ github.workspace }}/.next/cache
@@ -100,7 +100,7 @@ jobs:
100100
run: pnpm test:ci
101101
- name: Upload test results
102102
if: always()
103-
uses: actions/upload-artifact@v7
103+
uses: actions/upload-artifact@v7.0.1
104104
with:
105105
name: Test Results
106106
path: test-results

0 commit comments

Comments
 (0)