.github: run weekly once to check for usual packages

We do not need to run once in a day to check for updates from
ordinary packages. Most releases happen once in more than a week.
So schedule the Github actions only once in a week for most packages.
Go on Mon, Rust on Tue, Docker on Wed, Runc on Thu.

Note, we still need to check for Kernel once in a day, as Kernel
releases happen quite often.
This commit is contained in:
Dongsu Park 2020-04-21 16:24:04 +02:00 committed by Kai Lüke
parent f6d9de2f68
commit eba279d24f
8 changed files with 8 additions and 8 deletions

View File

@ -1,7 +1,7 @@
name: Get the latest Docker release for Alpha
on:
schedule:
- cron: '35 7 * * *'
- cron: '35 7 * * 3'
jobs:
get-docker-release:

View File

@ -1,7 +1,7 @@
name: Get the latest Docker release for Edge
on:
schedule:
- cron: '40 7 * * *'
- cron: '40 7 * * 3'
jobs:
get-docker-release:

View File

@ -1,7 +1,7 @@
name: Get the latest Go release for Alpha
on:
schedule:
- cron: '15 7 * * *'
- cron: '15 7 * * 1'
jobs:
get-go-release:

View File

@ -1,7 +1,7 @@
name: Get the latest Go release for Edge
on:
schedule:
- cron: '20 7 * * *'
- cron: '20 7 * * 1'
jobs:
get-go-release:

View File

@ -1,7 +1,7 @@
name: Get the latest Runc release for Alpha
on:
schedule:
- cron: '50 7 * * *'
- cron: '50 7 * * 4'
jobs:
get-runc-release:

View File

@ -1,7 +1,7 @@
name: Get the latest Runc release for Edge
on:
schedule:
- cron: '55 7 * * *'
- cron: '55 7 * * 4'
jobs:
get-runc-release:

View File

@ -1,7 +1,7 @@
name: Get the latest Rust release for Alpha
on:
schedule:
- cron: '20 7 * * *'
- cron: '20 7 * * 2'
jobs:
get-rust-release:

View File

@ -1,7 +1,7 @@
name: Get the latest Rust release for Edge
on:
schedule:
- cron: '25 7 * * *'
- cron: '25 7 * * 2'
jobs:
get-rust-release: