Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2d676fc

Browse files
committedAug 29, 2022
chore(workflows): update github actions
1 parent cb311da commit 2d676fc

File tree

5 files changed

+14
-20
lines changed

5 files changed

+14
-20
lines changed
 

‎.github/workflows/daily-project-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
os: [ubuntu-latest, windows-latest, macOS-latest]
1717

1818
steps:
19-
- uses: actions/checkout@v1
19+
- uses: actions/checkout@v3
2020
- name: Use Node.js ${{ matrix.node-version }}
21-
uses: actions/setup-node@v1
21+
uses: actions/setup-node@v3
2222
with:
2323
node-version: ${{ matrix.node-version }}
2424
- name: project check

‎.github/workflows/project-chartjs-check.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,24 @@ on:
55
branches:
66
- master
77
- main
8-
- v4
9-
- v4.1
108
pull_request:
119
branches:
1210
- master
1311
- main
14-
- v4
15-
- v4.1
1612
jobs:
1713
build:
1814

1915
runs-on: ubuntu-latest
2016

2117
strategy:
2218
matrix:
23-
node-version: [16.x]
19+
node-version: [16.x, 18.x]
2420
os: [ubuntu-latest, windows-latest, macOS-latest]
2521

2622
steps:
27-
- uses: actions/checkout@v1
23+
- uses: actions/checkout@v3
2824
- name: Use Node.js ${{ matrix.node-version }}
29-
uses: actions/setup-node@v1
25+
uses: actions/setup-node@v3
3026
with:
3127
node-version: ${{ matrix.node-version }}
3228
- name: project check

‎.github/workflows/project-icons-check.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,23 @@ on:
44
push:
55
branches:
66
- main
7-
- v4.1
87
pull_request:
98
branches:
109
- main
11-
- v4.1
1210
jobs:
1311
build:
1412

1513
runs-on: ubuntu-latest
1614

1715
strategy:
1816
matrix:
19-
node-version: [16.x]
17+
node-version: [16.x, 18.x]
2018
os: [ubuntu-latest, windows-latest, macOS-latest]
2119

2220
steps:
23-
- uses: actions/checkout@v1
21+
- uses: actions/checkout@v3
2422
- name: Use Node.js ${{ matrix.node-version }}
25-
uses: actions/setup-node@v1
23+
uses: actions/setup-node@v3
2624
with:
2725
node-version: ${{ matrix.node-version }}
2826
- name: project check

‎.github/workflows/project-lib-check.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,27 @@ on:
66
- master
77
- main
88
- v4
9-
- v4.1
9+
- v4.*
1010
pull_request:
1111
branches:
1212
- master
1313
- main
1414
- v4
15-
- v4.1
15+
- v4.*
1616
jobs:
1717
build:
1818

1919
runs-on: ubuntu-latest
2020

2121
strategy:
2222
matrix:
23-
node-version: [16.x]
23+
node-version: [16.x, 18.x]
2424
os: [ubuntu-latest, windows-latest, macOS-latest]
2525

2626
steps:
27-
- uses: actions/checkout@v1
27+
- uses: actions/checkout@v3
2828
- name: Use Node.js ${{ matrix.node-version }}
29-
uses: actions/setup-node@v1
29+
uses: actions/setup-node@v3
3030
with:
3131
node-version: ${{ matrix.node-version }}
3232
- name: project check

‎.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name: Mark stale issues and pull requests
77

88
on:
99
schedule:
10-
- cron: '35 14 * * *'
10+
- cron: '35 20 * * 7'
1111

1212
jobs:
1313
stale:

0 commit comments

Comments
 (0)
Please sign in to comment.