Skip to content

Commit b2c4d68

Browse files
committed
Revert "Bump CI node version to 20 (#2217)"
This reverts commit 3f2a79b.
1 parent 3f2a79b commit b2c4d68

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545

4646
steps:
4747
- name: Checkout repository
48-
uses: actions/checkout@v4
48+
uses: actions/checkout@v3
4949

5050
# Initializes the CodeQL tools for scanning.
5151
- name: Initialize CodeQL

.github/workflows/deploy.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
env:
1515
CURSORLESS_REPO_ROOT: ${{ github.workspace }}
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v3
1818
with:
1919
fetch-depth: 0
20-
- run: corepack enable
21-
- uses: actions/setup-node@v4
20+
- uses: pnpm/action-setup@v2
21+
- uses: actions/setup-node@v3
2222
with:
2323
node-version-file: package.json
2424
cache: pnpm
@@ -46,7 +46,7 @@ jobs:
4646
needs: publish-extension
4747
environment: production
4848
steps:
49-
- uses: actions/checkout@v4
49+
- uses: actions/checkout@v3
5050
with:
5151
fetch-depth: 0
5252
token: ${{ secrets.CURSORLESS_BOT_TOKEN }}

.github/workflows/pre-commit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
name: Pre-commit
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v3
1818
- uses: actions/setup-python@v4
1919
with:
2020
python-version: 3.x
21-
- run: corepack enable
22-
- uses: actions/setup-node@v4
21+
- uses: pnpm/action-setup@v2
22+
- uses: actions/setup-node@v3
2323
with:
2424
node-version-file: package.json
2525
cache: pnpm

.github/workflows/test-docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
env:
1313
CURSORLESS_REPO_ROOT: ${{ github.workspace }}
1414
steps:
15-
- uses: actions/checkout@v4
16-
- run: corepack enable
17-
- uses: actions/setup-node@v4
15+
- uses: actions/checkout@v3
16+
- uses: pnpm/action-setup@v2
17+
- uses: actions/setup-node@v3
1818
with:
1919
node-version-file: package.json
2020
cache: pnpm

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
VSCODE_LOGS_DIR: ${{ github.workspace }}/artifacts/logs
2828
CURSORLESS_REPO_ROOT: ${{ github.workspace }}
2929
steps:
30-
- uses: actions/checkout@v4
31-
- run: corepack enable
32-
- uses: actions/setup-node@v4
30+
- uses: actions/checkout@v3
31+
- uses: pnpm/action-setup@v2
32+
- uses: actions/setup-node@v3
3333
with:
3434
node-version-file: package.json
3535
cache: pnpm
@@ -55,19 +55,19 @@ jobs:
5555
- run: mv ${{ steps.createVsix.outputs.vsixPath }} cursorless-development.vsix
5656
if: runner.os == 'Linux' && matrix.vscode_version == 'stable'
5757
- name: Upload vsix
58-
uses: actions/upload-artifact@v4
58+
uses: actions/upload-artifact@v3
5959
if: runner.os == 'Linux' && matrix.vscode_version == 'stable'
6060
with:
6161
name: vsix
6262
path: cursorless-development.vsix
6363
- name: Archive logs
64-
uses: actions/upload-artifact@v4
64+
uses: actions/upload-artifact@v3
6565
with:
6666
name: logs
6767
path: ${{ env.VSCODE_LOGS_DIR }}
6868
if: failure()
6969
- name: Archive dumps
70-
uses: actions/upload-artifact@v4
70+
uses: actions/upload-artifact@v3
7171
with:
7272
name: dumps
7373
path: ${{ env.VSCODE_CRASH_DIR }}

cursorless-talon/.github/workflows/black.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ jobs:
66
lint:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v4
9+
- uses: actions/checkout@v2
1010
- uses: psf/black@stable

0 commit comments

Comments
 (0)