Skip to content

Commit 30f7d4e

Browse files
autofixes from Etherpad checkPlugin.js
1 parent fbcf6c2 commit 30f7d4e

File tree

4 files changed

+81
-73
lines changed

4 files changed

+81
-73
lines changed

.github/workflows/backend-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
version: 1.0
2323
-
2424
name: Install etherpad core
25-
uses: actions/checkout@v6
25+
uses: actions/checkout@v4
2626
with:
2727
repository: ether/etherpad-lite
2828
path: etherpad-lite
29-
- uses: pnpm/action-setup@v5
29+
- uses: pnpm/action-setup@v3
3030
name: Install pnpm
3131
with:
3232
version: 10
@@ -35,7 +35,7 @@ jobs:
3535
shell: bash
3636
run: |
3737
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
38-
- uses: actions/cache@v5
38+
- uses: actions/cache@v4
3939
name: Setup pnpm cache
4040
with:
4141
path: ${{ env.STORE_PATH }}
@@ -44,7 +44,7 @@ jobs:
4444
${{ runner.os }}-pnpm-store-
4545
-
4646
name: Checkout plugin repository
47-
uses: actions/checkout@v6
47+
uses: actions/checkout@v4
4848
with:
4949
path: plugin
5050
- name: Remove tests

.github/workflows/frontend-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
steps:
1313
-
1414
name: Check out Etherpad core
15-
uses: actions/checkout@v6
15+
uses: actions/checkout@v4
1616
with:
1717
repository: ether/etherpad-lite
18-
- uses: pnpm/action-setup@v5
18+
- uses: pnpm/action-setup@v3
1919
name: Install pnpm
2020
with:
2121
version: 10
@@ -24,7 +24,7 @@ jobs:
2424
shell: bash
2525
run: |
2626
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
27-
- uses: actions/cache@v5
27+
- uses: actions/cache@v4
2828
name: Setup pnpm cache
2929
with:
3030
path: ${{ env.STORE_PATH }}
@@ -33,7 +33,7 @@ jobs:
3333
${{ runner.os }}-pnpm-store-
3434
-
3535
name: Check out the plugin
36-
uses: actions/checkout@v6
36+
uses: actions/checkout@v4
3737
with:
3838
path: ./node_modules/__tmp
3939
-

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ep_hash_auth",
3-
"version": "11.0.3",
3+
"version": "11.0.4",
44
"description": "Allow the use of hashed passwords in etherpad-lite.",
55
"main": "ep_hash_auth.js",
66
"keywords": [
@@ -36,7 +36,7 @@
3636
"devDependencies": {
3737
"eslint": "^8.57.1",
3838
"eslint-config-etherpad": "^4.0.4",
39-
"typescript": "^6.0.2"
39+
"typescript": "^5.9.3"
4040
},
4141
"scripts": {
4242
"lint": "eslint .",

0 commit comments

Comments
 (0)