diff options
| author | Carlo Sala <carlosalag@protonmail.com> | 2024-05-09 17:41:59 +0200 |
|---|---|---|
| committer | Carlo Sala <carlosalag@protonmail.com> | 2024-05-12 12:26:30 +0200 |
| commit | eff648aab021df0407dcd86126d2ab9db950d0f2 (patch) | |
| tree | 21ec735f4afd711648990bd8bd43e2134fa8bc04 /.github | |
| parent | eb2ff84a2c8ae45b90d36e367c6bd6bc01f8464d (diff) | |
| download | zsh-eff648aab021df0407dcd86126d2ab9db950d0f2.tar.gz zsh-eff648aab021df0407dcd86126d2ab9db950d0f2.tar.bz2 zsh-eff648aab021df0407dcd86126d2ab9db950d0f2.zip | |
ci(dependencies): use `setup-python` and enable cron-based jobs
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/dependencies.yml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index 2e2217e1c..fce666e4c 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -1,8 +1,8 @@ name: Update dependencies on: workflow_dispatch: {} - # schedule: - # - cron: '34 3 * * */8' + schedule: + - cron: '34 3 * * */8' jobs: check: @@ -18,6 +18,11 @@ jobs: with: app_id: ${{ secrets.OHMYZSH_APP_ID }} private_key: ${{ secrets.OHMYZSH_APP_PRIVATE_KEY }} + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: "3.12" + cache: "pip" - name: Process dependencies env: GH_TOKEN: ${{ steps.generate_token.outputs.token }} |
