Skip to content

Commit

Permalink
Update all
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 21, 2023
1 parent 4d09f65 commit 5bc08b5
Show file tree
Hide file tree
Showing 8 changed files with 1,150 additions and 773 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: git fetch --prune --unshallow
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: '16'
- name: cache node_modules
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: '16'
- name: cache node_modules
Expand All @@ -29,12 +29,12 @@ jobs:
env:
BUILD_VERSION: ${{ env.VERSION }}
- name: upload build artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build
path: packages/snage/build/npm
- name: upload docs artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: docs
path: site
Expand All @@ -44,7 +44,7 @@ jobs:
needs: build
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build
path: packages/snage/build/npm
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
needs: build
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: docs
path: site
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: '16'
- name: cache node_modules
Expand All @@ -28,7 +28,7 @@ jobs:
env:
BUILD_VERSION: ${{ env.VERSION }}
- name: upload build artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build
path: packages/snage/build/npm
Expand All @@ -38,7 +38,7 @@ jobs:
needs: build
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build
path: packages/snage/build/npm
Expand All @@ -61,7 +61,7 @@ jobs:
needs: build
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build
path: packages/snage/build/npm
Expand All @@ -87,7 +87,7 @@ jobs:
needs: [build, release-artifact]
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build
- name: Get Version
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
"eslint-plugin-jest": "27.6.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-unicorn": "48.0.1",
"lerna": "7.4.2"
"eslint-plugin-unicorn": "50.0.1",
"lerna": "8.0.1"
},
"resolutions": {
"@types/react": "18.2.45",
Expand Down
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:20.10.0-alpine
FROM node:21.5.0-alpine
RUN apk add --no-cache git
WORKDIR /snage
COPY build/npm/snage.js /snage
Expand Down
4 changes: 2 additions & 2 deletions packages/snage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"fp-ts": "2.16.1",
"io-ts": "2.2.21",
"parsimmon": "1.18.1",
"prom-client": "14.2.0",
"prom-client": "15.1.0",
"semver": "7.5.4",
"string-similarity": "4.0.4",
"winston": "3.11.0",
Expand All @@ -54,7 +54,7 @@
"get-port": "7.0.0",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"lerna": "7.4.2",
"lerna": "8.0.1",
"nock": "13.4.0",
"nodemon": "3.0.2",
"npm-run-all": "4.1.5",
Expand Down
6 changes: 3 additions & 3 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
"github-markdown-css": "5.5.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "8.0.7",
"react-markdown": "9.0.1",
"react-scripts": "5.0.1",
"react-syntax-highlighter": "15.5.0",
"react-virtualized": "9.22.5",
"remark-gfm": "3.0.1",
"remark-gfm": "4.0.0",
"typescript": "5.3.3",
"use-debounce": "9.0.4"
"use-debounce": "10.0.0"
},
"scripts": {
"lint-check": "eslint -c \"../../eslint.yaml\" \"src/**/*.ts\" \"src/**/*.tsx\"",
Expand Down
Loading

0 comments on commit 5bc08b5

Please sign in to comment.