Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jiaming Yuan <jm.yuan@outlook.com>
45 lines
1.0 KiB
YAML
45 lines
1.0 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@v4
|
|
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"
|
|
|