diff --git a/.github/workflows/autocomment-iss-close.yml b/.github/workflows/autocomment-iss-close.yml index 3acbe0a0a..fbbd5db6e 100644 --- a/.github/workflows/autocomment-iss-close.yml +++ b/.github/workflows/autocomment-iss-close.yml @@ -11,7 +11,7 @@ jobs: issues: write steps: - name: Greet User - uses: actions/github-script@v5 + uses: actions/github-script@v7 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | diff --git a/.github/workflows/close-old-pr.yml b/.github/workflows/close-old-pr.yml index 32367c5ee..314065b29 100644 --- a/.github/workflows/close-old-pr.yml +++ b/.github/workflows/close-old-pr.yml @@ -20,7 +20,7 @@ jobs: pull-requests: write steps: - - uses: actions/stale@v7 + - uses: actions/stale@v9 with: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-pr-message: 'This PR has been automatically closed due to inactivity from the owner for 15 days.' diff --git a/.github/workflows/codacy.yml b/.github/workflows/codacy.yml index e7e68427a..15bff17ce 100644 --- a/.github/workflows/codacy.yml +++ b/.github/workflows/codacy.yml @@ -56,6 +56,6 @@ jobs: # Upload the SARIF file generated in the previous step - name: Upload SARIF results file - uses: github/codeql-action/upload-sarif@v2 + uses: github/codeql-action/upload-sarif@v3 with: sarif_file: results.sarif diff --git a/Dockerfile b/Dockerfile index 2ebdf7b1e..201ef3b74 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:18-alpine AS builder +FROM node:20-alpine AS builder WORKDIR /app diff --git a/package-lock.json b/package-lock.json index e66d66100..bf9e254e1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -25,7 +25,7 @@ "@fortawesome/fontawesome-svg-core": "^6.5.1", "@fortawesome/free-solid-svg-icons": "^6.5.1", "@fortawesome/react-fontawesome": "^0.2.0", - "@giscus/react": "^2.4.0", + "@giscus/react": "^3.0.0", "@mdx-js/react": "^3.0.0", "axios": "^1.6.8", "clsx": "^2.0.0", @@ -3063,11 +3063,11 @@ } }, "node_modules/@giscus/react": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@giscus/react/-/react-2.4.0.tgz", - "integrity": "sha512-y8d8qiZ2sBuaXRcgn/ZWfMlRs9bx26p62BU/HEKQQ+IfHo3B/kglgPjX/IqudwlX+DOlHUl1NvtFo9C8Eqo0eQ==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@giscus/react/-/react-3.0.0.tgz", + "integrity": "sha512-hgCjLpg3Wgh8VbTF5p8ZLcIHI74wvDk1VIFv12+eKhenNVUDjgwNg2B1aq/3puyHOad47u/ZSyqiMtohjy/OOA==", "dependencies": { - "giscus": "^1.4.0" + "giscus": "^1.5.0" }, "peerDependencies": { "react": "^16 || ^17 || ^18", @@ -10207,11 +10207,12 @@ } }, "node_modules/giscus": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/giscus/-/giscus-1.4.0.tgz", - "integrity": "sha512-Pll+pcclTx47NcFDw8nuka2Ja85Gc4XWpzSgL0rszOQaMQRQIV8UMR+zP4a+/N3tV2TXc1SZ537kWlsN6EsAaw==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/giscus/-/giscus-1.5.0.tgz", + "integrity": "sha512-t3LL0qbSO3JXq3uyQeKpF5CegstGfKX/0gI6eDe1cmnI7D56R7j52yLdzw4pdKrg3VnufwCgCM3FDz7G1Qr6lg==", + "license": "MIT", "dependencies": { - "lit": "^3.1.0" + "lit": "^3.1.2" } }, "node_modules/github-from-package": { diff --git a/package.json b/package.json index 17a7e2501..4be0ca2dd 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,7 @@ "@fortawesome/fontawesome-svg-core": "^6.5.1", "@fortawesome/free-solid-svg-icons": "^6.5.1", "@fortawesome/react-fontawesome": "^0.2.0", - "@giscus/react": "^2.4.0", + "@giscus/react": "^3.0.0", "@mdx-js/react": "^3.0.0", "axios": "^1.6.8", "clsx": "^2.0.0",