Skip to content

Commit 085c173

Browse files
Update all dependencies
1 parent 5d7c4e9 commit 085c173

File tree

6 files changed

+1940
-1692
lines changed

6 files changed

+1940
-1692
lines changed

.github/workflows/codeql.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,16 @@ jobs:
4141

4242
steps:
4343
- name: Harden Runner
44-
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
44+
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
4545
with:
4646
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
4747

4848
- name: Checkout repository
49-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
49+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
5050

5151
# Initializes the CodeQL tools for scanning.
5252
- name: Initialize CodeQL
53-
uses: github/codeql-action/init@d39d31e687223d841ef683f52467bd88e9b21c14 # v3.25.3
53+
uses: github/codeql-action/init@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
5454
with:
5555
languages: ${{ matrix.language }}
5656
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -60,7 +60,7 @@ jobs:
6060
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
6161
# If this step fails, then you should remove it and run the build manually (see below)
6262
- name: Autobuild
63-
uses: github/codeql-action/autobuild@d39d31e687223d841ef683f52467bd88e9b21c14 # v3.25.3
63+
uses: github/codeql-action/autobuild@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
6464

6565
# ℹ️ Command-line programs to run using the OS shell.
6666
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -73,6 +73,6 @@ jobs:
7373
# ./location_of_script_within_repo/buildscript.sh
7474

7575
- name: Perform CodeQL Analysis
76-
uses: github/codeql-action/analyze@d39d31e687223d841ef683f52467bd88e9b21c14 # v3.25.3
76+
uses: github/codeql-action/analyze@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
7777
with:
7878
category: "/language:${{matrix.language}}"

.github/workflows/dependency-review.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Harden Runner
18-
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
18+
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
1919
with:
2020
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
2121

2222
- name: 'Checkout Repository'
23-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
23+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2424
- name: 'Dependency Review'
25-
uses: actions/dependency-review-action@5bbc3ba658137598168acb2ab73b21c432dd411b # v4.2.5
25+
uses: actions/dependency-review-action@3b139cfc5fae8b618d3eae3675e383bb1769c019 # v4.5.0

apps/web/package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,25 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12-
"@react-three/fiber": "^8.2.1",
12+
"@react-three/fiber": "^9.0.0",
1313
"@spacegame/ui": "*",
14-
"next": "14.2.3",
14+
"next": "15.2.1",
1515
"postprocessing": "^6.28.4",
16-
"react": "18.3.1",
17-
"react-dom": "18.3.1",
18-
"three": "^0.164.0"
16+
"react": "19.0.0",
17+
"react-dom": "19.0.0",
18+
"three": "^0.174.0"
1919
},
2020
"devDependencies": {
2121
"@babel/core": "^7.18.9",
2222
"@spacegame/config": "*",
23-
"@types/node": "^20.0.0",
24-
"@types/react": "18.3.0",
25-
"@types/three": "^0.164.0",
23+
"@types/node": "^22.0.0",
24+
"@types/react": "19.0.10",
25+
"@types/three": "^0.174.0",
2626
"autoprefixer": "^10.4.2",
2727
"eslint": "^9.0.0",
2828
"next-transpile-modules": "10.0.1",
2929
"postcss": "^8.4.5",
30-
"tailwindcss": "^3.0.16",
30+
"tailwindcss": "^4.0.0",
3131
"typescript": "^5.0.0"
3232
}
3333
}

packages/config/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
],
99
"dependencies": {
1010
"eslint": "^9.0.0",
11-
"eslint-config-next": "^14.0.0",
12-
"eslint-config-prettier": "^9.0.0",
11+
"eslint-config-next": "^15.0.0",
12+
"eslint-config-prettier": "^10.0.0",
1313
"typescript": "^5.0.0"
1414
}
1515
}

packages/ui/package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@
77
"devDependencies": {
88
"@react-spring/three": "^9.5.2",
99
"@react-spring/web": "^9.5.2",
10-
"@react-three/drei": "^9.57.2",
11-
"@react-three/fiber": "^8.2.1",
12-
"@react-three/postprocessing": "^2.5.4",
10+
"@react-three/drei": "^10.0.0",
11+
"@react-three/fiber": "^9.0.0",
12+
"@react-three/postprocessing": "^3.0.0",
1313
"@spacegame/config": "*",
14-
"@types/react": "^18.0.28",
15-
"@types/react-dom": "^18.0.11",
16-
"@types/three": "^0.164.0",
17-
"tailwindcss": "^3.0.16",
14+
"@types/react": "^19.0.0",
15+
"@types/react-dom": "^19.0.0",
16+
"@types/three": "^0.174.0",
17+
"tailwindcss": "^4.0.0",
1818
"typescript": "^5.0.0"
1919
},
2020
"dependencies": {
21-
"react": "18.3.1",
22-
"react-dom": "18.3.1",
23-
"three": "^0.164.0"
21+
"react": "19.0.0",
22+
"react-dom": "19.0.0",
23+
"three": "^0.174.0"
2424
}
2525
}

0 commit comments

Comments
 (0)