Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](b4ffde65f4...a5ac7e51b4)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
45 lines
1.1 KiB
YAML
45 lines
1.1 KiB
YAML
name: update-rapids
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 20 * * 1" # Run once weekly
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
contents: write
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash -l {0}
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # To use GitHub CLI
|
|
|
|
jobs:
|
|
update-rapids:
|
|
name: Check latest RAPIDS
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
|
with:
|
|
submodules: 'true'
|
|
- name: Check latest RAPIDS and update conftest.sh
|
|
run: |
|
|
bash tests/buildkite/update-rapids.sh
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v6
|
|
if: github.ref == 'refs/heads/master'
|
|
with:
|
|
add-paths: |
|
|
tests/buildkite
|
|
branch: create-pull-request/update-rapids
|
|
base: master
|
|
title: "[CI] Update RAPIDS to latest stable"
|
|
commit-message: "[CI] Update RAPIDS to latest stable"
|
|
|