Skip to content

Commit 66216aa

Browse files
Sourav-kashyapvinaygupta-sourcefuseyeshamavani
authored
chore(deps): upgrade project dependencies to latest versions (#184)
* chore(deps): upgrade project dependencies to latest versions upgrade project dependencies to latest versions GH-183 * chore(deps): upgraded to latest dependencies, comment resolved * chore(ci-cd): Modify npm ci command to ignore scripts * chore(ci-cd): Change npm install to npm ci in release workflow --------- Co-authored-by: Vinay Gupta <vinay.gupta@sourcefuse.com> Co-authored-by: yeshamavani <83634146+yeshamavani@users.noreply.github.com>
1 parent f5123af commit 66216aa

7 files changed

Lines changed: 3071 additions & 3679 deletions

File tree

.github/workflows/main.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
node-version: [20, 22, 24]
14+
node-version: ['20.19.0', '22.13.0', '24']
1515
steps:
16-
- uses: actions/checkout@v3
17-
- uses: actions/setup-node@v3
16+
- uses: actions/checkout@v4
17+
- uses: actions/setup-node@v4
1818
with:
1919
node-version: ${{ matrix.node-version }}
2020
- name: Install Dependencies
21-
run: npm ci
21+
run: npm ci --ignore-scripts
2222
- name: Run Test Cases
2323
run: npm run test
2424

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
# environment: production # Uncomment if you set an environment name in npm trusted publisher settings
1414

1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
with:
1818
# fetch-depth is necessary to get all tags
1919
# otherwise lerna can't detect the changes and will end up bumping the versions for all packages
@@ -38,7 +38,7 @@ jobs:
3838
CONFIG_EMAIL: ${{ vars.RELEASE_COMMIT_EMAIL }}
3939

4040
- name: Install 📌
41-
run: npm install
41+
run: npm ci --ignore-scripts
4242

4343
- name: Test 🔧
4444
run: npm run test

.github/workflows/sync-docs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ jobs:
1818

1919
steps:
2020
- name: Checkout Extension Code
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222
with:
2323
token: ${{env.GITHUB_TOKEN}}
2424
path: './extension/'
2525

2626
- name: Checkout Docs Repository
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828
with:
2929
token: ${{env.GITHUB_TOKEN}}
3030
repository: ${{env.DOCS_REPO}}

.github/workflows/trivy.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
# Steps represent a sequence of tasks that will be executed as part of the job
2020
steps:
2121
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323

2424
- name: Run Trivy vulnerability scanner in repo mode
25-
uses: aquasecurity/trivy-action@0.28.0
25+
uses: aquasecurity/trivy-action@57a97c7e7821a5776cebc9bb87c984fa69cba8f1 # v0.35.0
2626
with:
27-
scan-type: "fs"
28-
scan-ref: "${{ github.workspace }}"
29-
trivy-config: "${{ github.workspace }}/trivy.yml"
27+
scan-type: 'fs'
28+
scan-ref: '${{ github.workspace }}'
29+
trivy-config: '${{ github.workspace }}/trivy.yml'

0 commit comments

Comments
 (0)