Skip to content

Commit 5b1a065

Browse files
committed
TASK-10510: Limited to the actual fix
Signed-off-by: Doug Koerich <[email protected]>
1 parent 3a5e685 commit 5b1a065

File tree

6 files changed

+13
-15
lines changed

6 files changed

+13
-15
lines changed

.github/labeler.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
':eyes: needs review':
2-
- changed-files:
3-
- needs-review: '**/*'
2+
- '**/*'
43

54
'type: content change':
6-
- changed-files:
7-
- content-change: 'content/**/*'
5+
- 'content/**/*'

.github/workflows/cypress.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818

1919
steps:
2020
- name: Checkout repository
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v2
2222
- name: Cypress run
23-
uses: cypress-io/github-action@v6.8.0
23+
uses: cypress-io/github-action@v2
2424
with:
2525
build: npm run build
2626
start: npm start

.github/workflows/index.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
# Steps represent a sequence of tasks that will be executed as part of the job
2222
steps:
2323
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v2
2525

2626
- name: Setup Node.js
27-
uses: actions/setup-node@v4
27+
uses: actions/setup-node@v2
2828
with:
2929
node-version: '16.x'
3030

.github/workflows/labeller.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ jobs:
1010
- uses: actions/setup-node@v4
1111
with:
1212
node-version: '16.x'
13-
- uses: actions/labeler@v5
13+
- uses: actions/labeler@v2
1414
with:
1515
repo-token: '${{ secrets.GITHUB_TOKEN }}'

.github/workflows/lighthouse.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,33 +15,33 @@ jobs:
1515
node-version: [16.x]
1616

1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v2
1919
- uses: actions/cache@v4
2020
with:
2121
path: ~/.npm
2222
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
2323
restore-keys: |
2424
${{ runner.os }}-node-
2525
- name: Use Node.js ${{ matrix.node-version }}
26-
uses: actions/setup-node@v4
26+
uses: actions/setup-node@v2
2727
with:
2828
node-version: ${{ matrix.node-version }}
2929
- name: Install dependencies
30-
uses: bahmutov/npm-install@v1.10.0
30+
uses: bahmutov/npm-install@v1
3131
- name: Run build
3232
env:
3333
CANCEL_SENTRY_CLI: true
3434
CYPRESS_SAMPLE_SIZE: 10
3535
run: npm run build
3636
- name: Wait for the Netlify Preview
37-
uses: jakepartusch/wait-for-netlify-action@v1.4
37+
uses: jakepartusch/wait-for-netlify-action@v1
3838
id: netlify
3939
with:
4040
site_name: 'support-docs'
4141
# Unfortunately our build time is ~20min, so I'm setting the timeout to 22min.
4242
max_timeout: 1320
4343
- name: Audit URLs using Lighthouse
44-
uses: treosh/lighthouse-ci-action@v12
44+
uses: treosh/lighthouse-ci-action@v8
4545
with:
4646
urls: |
4747
${{ steps.netlify.outputs.url }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ _**This is not a required step in contributing to the documentation**_
153153

154154
### Node Version
155155

156-
>=16
156+
16.x
157157

158158
### Installation
159159

0 commit comments

Comments
 (0)