Skip to content

Commit 1bd62e7

Browse files
committed
Plugin updating kinda
2 parents 6504f05 + bbec51f commit 1bd62e7

File tree

90 files changed

+4360
-2615
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+4360
-2615
lines changed

.github/workflows/build.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ jobs:
1818
runs-on: ubuntu-latest
1919

2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222

23-
- uses: pnpm/action-setup@v2 # Install pnpm using packageManager key in package.json
23+
- uses: pnpm/action-setup@v3 # Install pnpm using packageManager key in package.json
2424

25-
- name: Use Node.js 19
26-
uses: actions/setup-node@v3
25+
- name: Use Node.js 20
26+
uses: actions/setup-node@v4
2727
with:
28-
node-version: 19
28+
node-version: 20
2929
cache: "pnpm"
3030

3131
- name: Install dependencies

.github/workflows/codeberg-mirror.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: github.repository == 'Vendicated/Vencord'
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
with:
1818
fetch-depth: 0
1919
- uses: pixta-dev/repository-mirroring-action@674e65a7d483ca28dafaacba0d07351bdcc8bd75 # v1.1.1

.github/workflows/publish.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414

1515
- name: check that tag matches package.json version
1616
run: |
@@ -20,12 +20,12 @@ jobs:
2020
exit 1
2121
fi
2222
23-
- uses: pnpm/action-setup@v2 # Install pnpm using packageManager key in package.json
23+
- uses: pnpm/action-setup@v3 # Install pnpm using packageManager key in package.json
2424

2525
- name: Use Node.js 19
26-
uses: actions/setup-node@v3
26+
uses: actions/setup-node@v4
2727
with:
28-
node-version: 19
28+
node-version: 20
2929
cache: "pnpm"
3030

3131
- name: Install dependencies

.github/workflows/reportBrokenPlugins.yml

+13-10
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,31 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
if: ${{ github.event_name == 'schedule' }}
1616
with:
1717
ref: dev
1818

19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020
if: ${{ github.event_name == 'workflow_dispatch' }}
2121

22-
- uses: pnpm/action-setup@v2 # Install pnpm using packageManager key in package.json
22+
- uses: pnpm/action-setup@v3 # Install pnpm using packageManager key in package.json
2323

24-
- name: Use Node.js 19
25-
uses: actions/setup-node@v3
24+
- name: Use Node.js 20
25+
uses: actions/setup-node@v4
2626
with:
27-
node-version: 19
27+
node-version: 20
2828
cache: "pnpm"
2929

3030
- name: Install dependencies
3131
run: |
3232
pnpm install --frozen-lockfile
33-
pnpm add puppeteer
3433
35-
sudo apt-get install -y chromium-browser
34+
- name: Install Google Chrome
35+
id: setup-chrome
36+
uses: browser-actions/setup-chrome@82b9ce628cc5595478a9ebadc480958a36457dc2
37+
with:
38+
chrome-version: stable
3639

3740
- name: Build web
3841
run: pnpm buildWeb --standalone --dev
@@ -41,7 +44,7 @@ jobs:
4144
timeout-minutes: 10
4245
run: |
4346
export PATH="$PWD/node_modules/.bin:$PATH"
44-
export CHROMIUM_BIN=$(which chromium-browser)
47+
export CHROMIUM_BIN=${{ steps.setup-chrome.outputs.chrome-path }}
4548
4649
esbuild scripts/generateReport.ts > dist/report.mjs
4750
node dist/report.mjs >> $GITHUB_STEP_SUMMARY
@@ -54,7 +57,7 @@ jobs:
5457
if: success() || failure() # even run if previous one failed
5558
run: |
5659
export PATH="$PWD/node_modules/.bin:$PATH"
57-
export CHROMIUM_BIN=$(which chromium-browser)
60+
export CHROMIUM_BIN=${{ steps.setup-chrome.outputs.chrome-path }}
5861
export USE_CANARY=true
5962
6063
esbuild scripts/generateReport.ts > dist/report.mjs

.github/workflows/test.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v3
14-
- uses: pnpm/action-setup@v2 # Install pnpm using packageManager key in package.json
13+
- uses: actions/checkout@v4
14+
- uses: pnpm/action-setup@v3 # Install pnpm using packageManager key in package.json
1515

16-
- name: Use Node.js 18
17-
uses: actions/setup-node@v3
16+
- name: Use Node.js 20
17+
uses: actions/setup-node@v4
1818
with:
19-
node-version: 18
19+
node-version: 20
2020
cache: "pnpm"
2121

2222
- name: Install dependencies

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vencord",
33
"private": "true",
4-
"version": "1.8.0",
4+
"version": "1.8.3",
55
"description": "The cutest Discord client mod",
66
"homepage": "https://github.com/Vendicated/Vencord#readme",
77
"bugs": {
@@ -71,7 +71,7 @@
7171
"zip-local": "^0.3.5",
7272
"zustand": "^3.7.2"
7373
},
74-
"packageManager": "pnpm@8.10.2",
74+
"packageManager": "pnpm@9.1.0",
7575
"pnpm": {
7676
"patchedDependencies": {
7777

0 commit comments

Comments
 (0)