Skip to content

Commit 8786534

Browse files
authored
Merge pull request #281 from h5bp/dev/coliff/workflow-branch
2 parents 3b542f4 + f70fc07 commit 8786534

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: "CodeQL"
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [main]
66
pull_request:
77
# The branches below must be a subset of the branches above
8-
branches: [master]
8+
branches: [main]
99
schedule:
1010
- cron: '0 22 * * 3'
1111

@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@v2
28+
uses: actions/checkout@v3
2929
with:
3030
# We must fetch at least the immediate parents so that if this is
3131
# a pull request then we can checkout the head.

.github/workflows/coveralls.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ name: Tests and coverage
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [main]
66
pull_request:
7-
branches: [master]
7+
branches: [main]
88

99
jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
node-version: [12.x, 14.x, 15.x]
14+
node-version: [14.x, 16.x]
1515
steps:
1616
- uses: actions/checkout@v2
1717
- name: Use Node.js ${{ matrix.node-version }}

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: Eslint
55

66
on:
77
push:
8-
branches: [master]
8+
branches: [main]
99
pull_request:
10-
branches: [master]
10+
branches: [main]
1111

1212
jobs:
1313
build:
@@ -28,6 +28,6 @@ jobs:
2828
- name: Use Node.js ${{ matrix.node-version }}
2929
uses: actions/setup-node@v1
3030
with:
31-
node-version: "14.x"
31+
node-version: "16.x"
3232
- run: npm ci
3333
- run: npm run lint

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: Release
55
on:
66
push:
77
branches:
8-
- master
8+
- main
99
- next
1010
jobs:
1111
release:

0 commit comments

Comments
 (0)