From eba279d24f3431dcfe889e6fd670a4da2a5922c0 Mon Sep 17 00:00:00 2001 From: Dongsu Park Date: Tue, 21 Apr 2020 16:24:04 +0200 Subject: [PATCH] .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. --- .../coreos-overlay/.github/workflows/docker-releases-alpha.yml | 2 +- .../coreos-overlay/.github/workflows/docker-releases-edge.yml | 2 +- .../coreos-overlay/.github/workflows/go-releases-alpha.yml | 2 +- .../coreos-overlay/.github/workflows/go-releases-edge.yml | 2 +- .../coreos-overlay/.github/workflows/runc-releases-alpha.yml | 2 +- .../coreos-overlay/.github/workflows/runc-releases-edge.yml | 2 +- .../coreos-overlay/.github/workflows/rust-release-alpha.yml | 2 +- .../coreos-overlay/.github/workflows/rust-release-edge.yml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sdk_container/src/third_party/coreos-overlay/.github/workflows/docker-releases-alpha.yml b/sdk_container/src/third_party/coreos-overlay/.github/workflows/docker-releases-alpha.yml index 7bb04351c0..1891ba4b02 100644 --- a/sdk_container/src/third_party/coreos-overlay/.github/workflows/docker-releases-alpha.yml +++ b/sdk_container/src/third_party/coreos-overlay/.github/workflows/docker-releases-alpha.yml @@ -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: diff --git a/sdk_container/src/third_party/coreos-overlay/.github/workflows/docker-releases-edge.yml b/sdk_container/src/third_party/coreos-overlay/.github/workflows/docker-releases-edge.yml index 21ab313264..c18d0aa65a 100644 --- a/sdk_container/src/third_party/coreos-overlay/.github/workflows/docker-releases-edge.yml +++ b/sdk_container/src/third_party/coreos-overlay/.github/workflows/docker-releases-edge.yml @@ -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: diff --git a/sdk_container/src/third_party/coreos-overlay/.github/workflows/go-releases-alpha.yml b/sdk_container/src/third_party/coreos-overlay/.github/workflows/go-releases-alpha.yml index 6a62ef837b..e5a23c0058 100644 --- a/sdk_container/src/third_party/coreos-overlay/.github/workflows/go-releases-alpha.yml +++ b/sdk_container/src/third_party/coreos-overlay/.github/workflows/go-releases-alpha.yml @@ -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: diff --git a/sdk_container/src/third_party/coreos-overlay/.github/workflows/go-releases-edge.yml b/sdk_container/src/third_party/coreos-overlay/.github/workflows/go-releases-edge.yml index ba331ff2ab..7b472aaa2e 100644 --- a/sdk_container/src/third_party/coreos-overlay/.github/workflows/go-releases-edge.yml +++ b/sdk_container/src/third_party/coreos-overlay/.github/workflows/go-releases-edge.yml @@ -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: diff --git a/sdk_container/src/third_party/coreos-overlay/.github/workflows/runc-releases-alpha.yml b/sdk_container/src/third_party/coreos-overlay/.github/workflows/runc-releases-alpha.yml index 127b180d55..86781b6a9a 100644 --- a/sdk_container/src/third_party/coreos-overlay/.github/workflows/runc-releases-alpha.yml +++ b/sdk_container/src/third_party/coreos-overlay/.github/workflows/runc-releases-alpha.yml @@ -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: diff --git a/sdk_container/src/third_party/coreos-overlay/.github/workflows/runc-releases-edge.yml b/sdk_container/src/third_party/coreos-overlay/.github/workflows/runc-releases-edge.yml index 3849a4c643..505e264078 100644 --- a/sdk_container/src/third_party/coreos-overlay/.github/workflows/runc-releases-edge.yml +++ b/sdk_container/src/third_party/coreos-overlay/.github/workflows/runc-releases-edge.yml @@ -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: diff --git a/sdk_container/src/third_party/coreos-overlay/.github/workflows/rust-release-alpha.yml b/sdk_container/src/third_party/coreos-overlay/.github/workflows/rust-release-alpha.yml index dfdae832dd..d6230313c4 100644 --- a/sdk_container/src/third_party/coreos-overlay/.github/workflows/rust-release-alpha.yml +++ b/sdk_container/src/third_party/coreos-overlay/.github/workflows/rust-release-alpha.yml @@ -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: diff --git a/sdk_container/src/third_party/coreos-overlay/.github/workflows/rust-release-edge.yml b/sdk_container/src/third_party/coreos-overlay/.github/workflows/rust-release-edge.yml index 7c140ba6ba..de88054295 100644 --- a/sdk_container/src/third_party/coreos-overlay/.github/workflows/rust-release-edge.yml +++ b/sdk_container/src/third_party/coreos-overlay/.github/workflows/rust-release-edge.yml @@ -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: