File tree 3 files changed +10
-0
lines changed
3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ name: Build Base Image
6
6
7
7
on :
8
8
workflow_dispatch : # Allows manual trigger via GitHub UI
9
+ schedule :
10
+ - cron : ' 0 3 1 * *' # At 03:00 UTC every 1st day of the month
9
11
10
12
permissions :
11
13
contents : read
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ name: Build Latest Image
6
6
7
7
on :
8
8
workflow_dispatch : # Allows manual trigger via GitHub UI
9
+ schedule :
10
+ - cron : ' 0 4 * * 1' # At 04:00 UTC every Monday
9
11
10
12
permissions :
11
13
contents : read
Original file line number Diff line number Diff line change 74
74
CXX : clang++-${{ matrix.version }}
75
75
run : make check
76
76
` ` `
77
+
78
+ ## Updates
79
+
80
+ The images are automatically updated once per month (base) / once per week
81
+ (latest). There may also be manual updates whenever the feature set needs to
82
+ change.
You can’t perform that action at this time.
0 commit comments