Skip to content

Commit dda37a3

Browse files
committed
Add renovate.json (#3)
- Update actions/setup-node action to v3 (#11) - Update dependency esbuild to ^0.14.0 (#7) - Update actions/checkout action to v3 (#10) - Update dependency eslint-plugin-jest to v26 (#9)
1 parent 6120105 commit dda37a3

File tree

7 files changed

+293
-283
lines changed

7 files changed

+293
-283
lines changed

.github/workflows/codeql-analysis.yml

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

2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v2
30+
uses: actions/checkout@v3
3131

3232
# Initializes the CodeQL tools for scanning.
3333
- name: Initialize CodeQL

.github/workflows/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Changeset
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313
with:
1414
fetch-depth: 1
1515
ref: ${{ github.event.pull_request.head.ref }}
@@ -21,7 +21,7 @@ jobs:
2121
git checkout ${{ github.event.pull_request.head.ref }}
2222
2323
- name: Use Node.js 16.x
24-
uses: actions/setup-node@v2
24+
uses: actions/setup-node@v3
2525
with:
2626
node-version: 16.x
2727

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
node-version: [12.x, 16.x]
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616

1717
- name: Use Node.js ${{ matrix.node-version }}
18-
uses: actions/setup-node@v2
18+
uses: actions/setup-node@v3
1919
with:
2020
node-version: ${{ matrix.node-version }}
2121

@@ -35,10 +35,10 @@ jobs:
3535
name: Lint
3636
runs-on: ubuntu-latest
3737
steps:
38-
- uses: actions/checkout@v2
38+
- uses: actions/checkout@v3
3939

4040
- name: Use Node.js 16.x
41-
uses: actions/setup-node@v2
41+
uses: actions/setup-node@v3
4242
with:
4343
node-version: 16.x
4444

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout Repo
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v3
1717
with:
1818
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
1919
fetch-depth: 0
2020

2121
- name: Setup Node.js 12.x
22-
uses: actions/setup-node@v2
22+
uses: actions/setup-node@v3
2323
with:
2424
node-version: 12.x
2525

0 commit comments

Comments
 (0)