Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update minor and patch dependencies #30

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
18 changes: 9 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3.5.3
uses: actions/checkout@v3.6.0
- name: Setup Node
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
node-version: ${{ env.NODE_VERSION }}
cache: ${{ env.NODE_CACHE }}
- name: Restore NextJs cache
uses: actions/[email protected].1
uses: actions/[email protected].3
with:
path: ${{ github.workspace }}/.next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}-${{ hashFiles('**/*.[jt]s', '**/*.[jt]sx') }}
Expand All @@ -39,7 +39,7 @@ jobs:
- name: Build application
run: yarn build
- name: Cache NextJs build
uses: actions/[email protected].1
uses: actions/[email protected].3
with:
path: ${{ github.workspace }}/.next
key: ${{ github.ref }}-${{ github.sha }}
Expand All @@ -49,9 +49,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3.5.3
uses: actions/checkout@v3.6.0
- name: Setup Node
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
node-version: ${{ env.NODE_VERSION }}
cache: ${{ env.NODE_CACHE }}
Expand All @@ -70,16 +70,16 @@ jobs:
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout repository
uses: actions/checkout@v3.5.3
uses: actions/checkout@v3.6.0
- name: Setup Node
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
node-version: ${{ env.NODE_VERSION }}
cache: ${{ env.NODE_CACHE }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Restore cached NextJs build
uses: actions/[email protected].1
uses: actions/[email protected].3
with:
path: ${{ github.workspace }}/.next
key: ${{ github.ref }}-${{ github.sha }}
Expand Down
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,30 +19,30 @@
"dependencies": {
"@0xforkitall/ui-kit": "^0.4.1",
"@0xforkitall/ui-kit-nextjs": "^0.4.1",
"@react-three/drei": "^9.80.4",
"@react-three/fiber": "^8.13.7",
"@vercel/analytics": "^1.0.2",
"classnames": "^2.3.2",
"@react-three/drei": "^9.116.0",
"@react-three/fiber": "^8.17.10",
"@vercel/analytics": "^1.4.0",
"classnames": "^2.5.1",
"gray-matter": "^4.0.3",
"next": "^13.4.19",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.66.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.80.7",
"three": "^0.155.0",
"typescript": "^5.1.6"
"typescript": "^5.6.3"
},
"devDependencies": {
"@0xforkitall/eslint-config-nextjs": "^1.2.0",
"@0xforkitall/shared-config": "^1.2.0",
"@svgr/webpack": "^8.1.0",
"@types/node": "^20.5.1",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/node": "^20.17.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/three": "^0.155.0",
"eslint": "^8.47.0",
"eslint": "^8.57.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.2",
"prettier": "^3.3.3",
"vercel": "^31.4.0"
},
"keywords": [
Expand Down
Loading
Loading