summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2022-08-14 10:12:59 +0200
committerGitHub <noreply@github.com>2022-08-14 10:12:59 +0200
commitd9d7ef3aefa568a1ddee7a40a9f622c7fda9bf0d (patch)
tree846ab134c80ebe96933b6a5a1fb807ac715b3f82 /.github
parent10724ac958f3344fae16e546fe8fc6eabf34eb79 (diff)
chore(workflows): change rust-toolchain update to once per month
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/update-rust-toolchain.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/update-rust-toolchain.yml b/.github/workflows/update-rust-toolchain.yml
index aa6dfb655..c89eb71ba 100644
--- a/.github/workflows/update-rust-toolchain.yml
+++ b/.github/workflows/update-rust-toolchain.yml
@@ -2,7 +2,7 @@ name: update-rust-toolchain
on:
workflow_dispatch: # allows manual triggering
schedule:
- - cron: '0 0 * * 0' # runs weekly on Sunday at 00:00
+ - cron: '0 0 1 * *' # runs on the first of every month at 00:00
jobs:
update-rust-toolchain: