Skip to content

Commit 4347542

Browse files
committed
bump checkout version to v4 and add build schedule
1 parent dd15388 commit 4347542

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ name: CI
44

55
# Controls when the action will run.
66
on:
7+
# Build at 00:00 on every 12th day-of-month.
8+
schedule:
9+
- cron: "0 0 */12 * *"
710
# Triggers the workflow on push or pull request events but only for the old-v8 branch
811
push:
912
branches: [ old-v8 ]
@@ -25,7 +28,7 @@ jobs:
2528
# Steps represent a sequence of tasks that will be executed as part of the job
2629
steps:
2730
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
28-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
2932

3033
- name: Prerequisites
3134
run: |
@@ -67,7 +70,7 @@ jobs:
6770
# Steps represent a sequence of tasks that will be executed as part of the job
6871
steps:
6972
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
70-
- uses: actions/checkout@v3
73+
- uses: actions/checkout@v4
7174

7275
- name: Prerequisites
7376
run: |
@@ -109,7 +112,7 @@ jobs:
109112
# Steps represent a sequence of tasks that will be executed as part of the job
110113
steps:
111114
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
112-
- uses: actions/checkout@v3
115+
- uses: actions/checkout@v4
113116

114117
- name: Prerequisites
115118
run: |

0 commit comments

Comments
 (0)