Skip to content

Commit 3c87b9f

Browse files
committed
Merge branch 'dev' into v1/dev
2 parents 7d7608b + ffbd527 commit 3c87b9f

File tree

7 files changed

+37
-8
lines changed

7 files changed

+37
-8
lines changed

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2
2+
updates:
3+
# Maintain dependencies for GitHub Actions
4+
- package-ecosystem: 'github-actions'
5+
directory: '/'
6+
schedule:
7+
interval: 'daily'
8+
9+
# Maintain dependencies for npm
10+
- package-ecosystem: 'npm'
11+
directory: '/'
12+
schedule:
13+
interval: 'weekly'
14+
open-pull-requests-limit: 3

.github/workflows/azure-static-web-apps-delightful-beach-055ecb503.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
name: Build and Deploy Job
1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v3
2121
with:
2222
submodules: true
2323

.github/workflows/chromatic.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ jobs:
3939
runs-on: ubuntu-latest
4040
# Job steps
4141
steps:
42-
- uses: actions/checkout@v1
42+
- uses: actions/checkout@v3
4343
- name: Use Node.js 16.x
44-
uses: actions/setup-node@v2
44+
uses: actions/setup-node@v3
4545
with:
4646
node-version: 16.x
4747
cache: 'npm'

.github/workflows/codeql-analysis.yml

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

3333
steps:
3434
- name: Checkout repository
35-
uses: actions/checkout@v2
35+
uses: actions/checkout@v3
3636

3737
# Initializes the CodeQL tools for scanning.
3838
- name: Initialize CodeQL

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
# Steps represent a sequence of tasks that will be executed as part of the job
1515
steps:
1616
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818
with:
1919
# pulls all commits (needed for lerna / semantic release to correctly version)
2020
fetch-depth: '0'
2121

2222
- name: Use Node.js 16.x
23-
uses: actions/setup-node@v2
23+
uses: actions/setup-node@v3
2424
with:
2525
node-version: 16.x
2626
cache: 'npm'

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
# Steps represent a sequence of tasks that will be executed as part of the job
2828
steps:
2929
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
30-
- uses: actions/checkout@v2
30+
- uses: actions/checkout@v3
3131
- name: Use Node.js ${{ matrix.node-version }}
32-
uses: actions/setup-node@v2
32+
uses: actions/setup-node@v3
3333
with:
3434
node-version: ${{ matrix.node-version }}
3535
cache: 'npm'

SECURITY.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Security Policy
2+
3+
## Supported Versions
4+
5+
| Version | Supported |
6+
| ------- | ------------------ |
7+
| 1.0.0-rc | :x: |
8+
| 1.0.0-alpha | :x: |
9+
| < 1.0 | :white_check_mark: (until release of 1.0.0) |
10+
11+
## Reporting a Vulnerability
12+
13+
Please report any vulnerabilities to [email protected]
14+
15+
You can expect to hear back from us within 48 hours.

0 commit comments

Comments
 (0)