Skip to content

Commit 789864c

Browse files
authored
chore: Update GitHub Actions dependencies (#7)
1 parent 23b86aa commit 789864c

File tree

4 files changed

+15
-11
lines changed

4 files changed

+15
-11
lines changed

.github/workflows/check.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout repository
10-
uses: actions/checkout@v2
10+
uses: actions/checkout@v4
1111
- name: Setup NodeJS
12-
uses: actions/setup-node@v2
12+
uses: actions/setup-node@v4
1313
with:
14-
node-version: "20"
14+
node-version: 20
1515
cache: yarn
1616
- name: Install dependencies
1717
run: yarn install --frozen-lockfile
@@ -24,11 +24,11 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@v2
27+
uses: actions/checkout@v4
2828
- name: Setup NodeJS
29-
uses: actions/setup-node@v2
29+
uses: actions/setup-node@v4
3030
with:
31-
node-version: "20"
31+
node-version: 20
3232
cache: yarn
3333
- name: Install dependencies
3434
run: yarn install --frozen-lockfile

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
VERSION: ${{ steps.detect.outputs.VERSION }}
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v4
1919
- name: Ensure commit is tagged
2020
id: detect
2121
run: |
@@ -33,12 +33,12 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- name: Checkout repository
36-
uses: actions/checkout@v2
36+
uses: actions/checkout@v4
3737

3838
- name: Setup NodeJS
39-
uses: actions/setup-node@v2
39+
uses: actions/setup-node@v4
4040
with:
41-
node-version: "20"
41+
node-version: 20
4242
cache: yarn
4343
- name: Install dependencies
4444
run: yarn install --frozen-lockfile

.prettierrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"endOfLine": "auto"
3+
}

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,5 +116,6 @@
116116
"react": "^19.0.0",
117117
"react-dom": "^19.0.0",
118118
"vscode-languageclient": "^9.0.1"
119-
}
119+
},
120+
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
120121
}

0 commit comments

Comments
 (0)