Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- run: git fetch --prune --unshallow
- uses: actions/setup-node@v4
with:
node-version: '22.15.0'
node-version: '22.22.1'
- name: cache node_modules
uses: actions/cache@v4
with:
Expand All @@ -22,7 +22,7 @@ jobs:
- run: yarn --frozen-lockfile
- run: yarn docs build
- run: yarn lerna run test
- uses: codecov/codecov-action@v5.4.2
- uses: codecov/codecov-action@v5.5.2
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Codecov action update may require token

Updating codecov/codecov-action to v5.5.2 can change default auth/behavior (e.g., requiring an explicit token for some repo/fork contexts). Since the workflow doesn’t pass token/CODECOV_TOKEN, uploads may start failing in CI even if they previously succeeded.

Fix in Cursor Fix in Web

- run: yarn lerna run format-check
- run: yarn lerna run lint-check
- run: yarn lerna run build
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22.15.0'
node-version: '22.22.1'
- name: cache node_modules
uses: actions/cache@v4
with:
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
name: docs
path: site
- name: Deploy Docs
uses: JamesIves/github-pages-deploy-action@v4.7.3
uses: JamesIves/github-pages-deploy-action@v4.8.0
with:
BRANCH: gh-pages
FOLDER: site
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22.15.0'
node-version: '22.22.1'
- name: cache node_modules
uses: actions/cache@v4
with:
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
"docs": "node docs.js"
},
"devDependencies": {
"eslint-config-prettier": "10.1.2",
"eslint-plugin-jest": "28.11.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jest": "28.14.0",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-unicorn": "56.0.1",
"lerna": "8.2.2"
"lerna": "8.2.4"
},
"resolutions": {
"@types/react": "19.1.2",
"@types/react-dom": "19.1.2"
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3"
}
}
2 changes: 1 addition & 1 deletion packages/snage/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22.15.0-alpine
FROM node:22.22.1-alpine
RUN apk add --no-cache git
WORKDIR /snage
COPY build/npm/snage.js /snage
Expand Down
42 changes: 21 additions & 21 deletions packages/snage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,31 +20,31 @@
],
"bin": "build/npm/snage.js",
"dependencies": {
"@js-joda/core": "5.6.5",
"@js-joda/core": "5.7.0",
"ajv": "8.17.1",
"cross-env": "7.0.3",
"express": "4.21.2",
"fp-ts": "2.16.10",
"express": "4.22.1",
"fp-ts": "2.16.11",
"io-ts": "2.2.22",
"parsimmon": "1.18.1",
"prom-client": "15.1.3",
"semver": "7.7.1",
"semver": "7.7.4",
"string-similarity": "4.0.4",
"winston": "3.17.0",
"yaml": "2.7.1",
"winston": "3.19.0",
"yaml": "2.8.2",
"yargs": "17.7.2"
},
"devDependencies": {
"@types/body-parser": "1.19.5",
"@types/express": "5.0.1",
"@types/body-parser": "1.19.6",
"@types/express": "5.0.6",
"@types/get-port": "4.2.0",
"@types/inquirer": "8.2.10",
"@types/inquirer": "8.2.12",
"@types/jest": "29.5.14",
"@types/nock": "11.1.0",
"@types/node": "22.15.3",
"@types/node": "22.19.15",
"@types/parsimmon": "1.10.9",
"@types/query-string": "6.3.0",
"@types/semver": "7.7.0",
"@types/semver": "7.7.1",
"@types/string-similarity": "4.0.2",
"@types/supertest": "6.0.3",
"@types/winston": "2.4.4",
Expand All @@ -54,22 +54,22 @@
"get-port": "7.1.0",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"lerna": "8.2.2",
"nock": "14.0.4",
"nodemon": "3.1.10",
"lerna": "8.2.4",
"nock": "14.0.11",
"nodemon": "3.1.14",
"npm-run-all": "4.1.5",
"portable-fetch": "3.0.0",
"prettier": "3.5.3",
"prettier": "3.8.1",
"snage-ui": "*",
"supertest": "7.1.0",
"ts-jest": "29.3.2",
"ts-loader": "9.5.2",
"supertest": "7.2.2",
"ts-jest": "29.4.6",
"ts-loader": "9.5.4",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typescript": "5.8.3",
"typescript": "5.9.3",
"webpack": "5.99.7",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.1",
"webpack-shell-plugin-next": "2.3.2"
"webpack-dev-server": "5.2.3",
"webpack-shell-plugin-next": "2.3.3"
}
}
30 changes: 15 additions & 15 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,25 @@
"private": true,
"dependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"@mui/icons-material": "6.4.11",
"@mui/material": "6.4.11",
"@emotion/styled": "11.14.1",
"@mui/icons-material": "6.5.0",
"@mui/material": "6.5.0",
"@mui/styles": "6.4.8",
"@types/axios": "0.14.4",
"@types/node": "22.15.3",
"@types/react": "19.1.2",
"@types/react-dom": "19.1.2",
"@types/node": "22.19.15",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"axios": "1.9.0",
"github-markdown-css": "5.8.1",
"react": "19.1.0",
"react-dom": "19.1.0",
"github-markdown-css": "5.9.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "9.1.0",
"react-scripts": "5.0.1",
"react-syntax-highlighter": "15.6.1",
"react-syntax-highlighter": "15.6.6",
"react-virtualized": "9.22.6",
"remark-gfm": "4.0.1",
"typescript": "5.8.3",
"use-debounce": "10.0.4"
"typescript": "5.9.3",
"use-debounce": "10.1.0"
},
"scripts": {
"lint-check": "eslint -c \"../../eslint.yaml\" \"src/**/*.ts\" \"src/**/*.tsx\"",
Expand Down Expand Up @@ -54,8 +54,8 @@
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
"@types/react-syntax-highlighter": "15.5.13",
"@types/react-virtualized": "9.22.2",
"prettier": "3.5.3",
"rimraf": "6.0.1"
"@types/react-virtualized": "9.22.3",
"prettier": "3.8.1",
"rimraf": "6.1.3"
}
}
Loading
Loading