Skip to content

Check for new dask-sql version #832

Check for new dask-sql version

Check for new dask-sql version #832

# Updates stable dask-sql version to use in images.
# Runs once daily.
name: Check for new dask-sql version
on:
schedule:
- cron: "0 0 * * *" # Daily “At 00:00” UTC
workflow_dispatch:
jobs:
update-dask-sql:
runs-on: ubuntu-latest
container:
image: rapidsai/ci-conda:latest
if: github.repository == 'rapidsai/docker'
steps:
- uses: actions/checkout@v4
- name: Get current dask-sql version
id: current_version
run: |
DASK_SQL_VER="$(yq -r '.DASK_SQL_VER.[0]' matrix.yaml)"
echo "DASK_SQL_VER=${DASK_SQL_VER}" | tee -a ${GITHUB_OUTPUT}
- name: Get new dask-sql version
id: new_version
uses: jacobtomlinson/gha-anaconda-package-version@0.1.3
with:
org: "conda-forge"
package: "dask-sql"
version_system: "SemVer"
- name: Get current/new versions without patch
env:
FULL_VER: ${{ steps.current_version.outputs.DASK_SQL_VER }}
FULL_NEW_VER: ${{ steps.new_version.outputs.version }}
run: |
echo SHORT_VER=${FULL_VER%.*} >> $GITHUB_ENV
echo SHORT_NEW_VER=${FULL_NEW_VER%.*} >> $GITHUB_ENV
- name: Find and replace full dask-sql version
uses: jacobtomlinson/gha-find-replace@v3
with:
find: ${{ steps.current_version.outputs.DASK_SQL_VER }}
replace: ${{ steps.new_version.outputs.version }}
- name: Find and replace short dask-sql version
uses: jacobtomlinson/gha-find-replace@v3
with:
find: ${{ env.SHORT_VER }}
replace: ${{ env.SHORT_NEW_VER }}
- name: Create pull request with changes
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: Update `DASK_SQL_VERSION` to `${{ steps.new_version.outputs.version }}`
title: Update `DASK_SQL_VERSION` to `${{ steps.new_version.outputs.version }}`
author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
branch: "upgrade-dask-sql"
body: |
A new stable dask-sql version has been detected.
Updated all config files and READMEs to use `${{ steps.new_version.outputs.version }}`.