Skip to content

Commit 643576c

Browse files
committed
Merge branch 'main' into timestamps
2 parents 303824e + bab02d2 commit 643576c

33 files changed

+676
-163
lines changed

.github/workflows/accept-baselines-fix-lints.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v2
1212
- name: Use node version 14
13-
uses: actions/setup-node@v1
13+
uses: actions/setup-node@v3
1414
with:
1515
node-version: 14
1616
registry-url: https://registry.npmjs.org/

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [14.x, 16.x, 17.x]
19+
node-version: [14.x, 16.x, 18.x]
2020

2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323
with:
2424
fetch-depth: 5
2525
- name: Use node version ${{ matrix.node-version }}
26-
uses: actions/setup-node@v1
26+
uses: actions/setup-node@v3
2727
with:
2828
node-version: ${{ matrix.node-version }}
2929
- name: Remove existing TypeScript

.github/workflows/codeql.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111

1212
# CodeQL runs on ubuntu-latest and windows-latest
1313
runs-on: ubuntu-latest
14+
if: github.repository == 'microsoft/TypeScript'
1415

1516
steps:
1617
- name: Checkout repository

.github/workflows/ensure-related-repos-run-crons.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ on:
1414
jobs:
1515
build:
1616
runs-on: ubuntu-latest
17+
if: github.repository == 'microsoft/TypeScript'
1718

1819
steps:
1920
- name: Configure git

.github/workflows/new-release-branch.yaml

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

1111
steps:
1212
- name: Use node version 14.x
13-
uses: actions/setup-node@v1
13+
uses: actions/setup-node@v3
1414
with:
1515
node-version: 14.x
1616
- uses: actions/checkout@v2

.github/workflows/nightly.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@ on:
1111
jobs:
1212
build:
1313
runs-on: ubuntu-latest
14+
if: github.repository == 'microsoft/TypeScript'
1415

1516
steps:
1617
- uses: actions/checkout@v2
1718
- name: Use node version 14
18-
uses: actions/setup-node@v1
19+
uses: actions/setup-node@v3
1920
with:
2021
node-version: 14
2122
registry-url: https://registry.npmjs.org/

.github/workflows/release-branch-artifact.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v2
1414
- name: Use node version 14
15-
uses: actions/setup-node@v1
15+
uses: actions/setup-node@v3
1616
with:
1717
node-version: 14
1818
- name: Remove existing TypeScript

.github/workflows/rich-navigation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
fetch-depth: 5
2121

22-
- uses: actions/setup-node@v2
22+
- uses: actions/setup-node@v3
2323
with:
2424
node-version: 14
2525

.github/workflows/set-version.yaml

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

1111
steps:
1212
- name: Use node version 14.x
13-
uses: actions/setup-node@v1
13+
uses: actions/setup-node@v3
1414
with:
1515
node-version: 14.x
1616
- uses: actions/checkout@v2

.github/workflows/sync-branch.yaml

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

1616
steps:
1717
- name: Use node version 14.x
18-
uses: actions/setup-node@v1
18+
uses: actions/setup-node@v3
1919
with:
2020
node-version: 14.x
2121
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)