update-sccache #5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: update-sccache | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 20 * * 1" # Run once weekly | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| update-sccache: | |
| name: Check latest sccache | |
| uses: ./.github/workflows/update_dependency.yml | |
| with: | |
| update-script: actions/update_sccache.sh | |
| add-paths: | | |
| actions/sccache/action.yml | |
| branch: create-pull-request/update-sccache | |
| title: "[CI] Update sccache to latest release" | |
| commit-message: "[CI] Update sccache to latest release" | |
| secrets: inherit |