We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02097d0 commit b4cb59eCopy full SHA for b4cb59e
.github/workflows/composer-update.yml
@@ -3,14 +3,17 @@ name: Composer update
3
on:
4
workflow_dispatch:
5
schedule:
6
- - cron: '0 0 * * 5' # Runs every Friday at midnight
+ # Runs once a day at 02:00 AM. Note that OCP package
7
+ # is pushed once a day at around 00:00 AM, see
8
+ # https://github.com/nextcloud-deps/ocp/blob/master/.github/workflows/cron.yml
9
+ - cron: '0 2 * * *'
10
11
jobs:
12
build:
13
runs-on: ubuntu-24.04
14
steps:
15
- name: Checkout
- uses: actions/checkout@v5
16
+ uses: actions/checkout@v6
17
with:
18
ref: ${{ github.head_ref }}
19
token: ${{ secrets.WORKFLOW_OCR_COMPOSER_DEPS_AUTO_UPDATE }} # To be able to trigger workflows in case of git push
0 commit comments