[CI] Automatically bump Rapids version in containers (#9234)

* [CI] Use RAPIDS 23.04

* [CI] Remove outdated filters in dependabot

* [CI] Automatically bump Rapids version in containers

* Automate pull request
This commit is contained in:
Philip Hyunsu Cho
2023-06-02 08:17:41 -07:00
committed by GitHub
parent 9fbde21e9d
commit 288539ac78
4 changed files with 48 additions and 63 deletions

37
.github/workflows/update_rapids.yml vendored Normal file
View File

@@ -0,0 +1,37 @@
name: update-rapids
on:
schedule:
- cron: "0 7 * * *" # Run once daily
permissions:
contents: read # to fetch code (actions/checkout)
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@v2
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@v5
add-paths: tests/buildkite
branch: create-pull-request/update-rapids
base: master
if: github.ref == 'refs/heads/master'