chore(deps): update dependency conda-forge/python to v3.12.5 #596
This file contains 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: Build and test Docker images on pull request | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
changes: | |
if: ${{ github.actor != 'renovate[bot]' }} | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: read | |
outputs: | |
base: ${{ steps.filter.outputs.base }} | |
jupyter: ${{ steps.filter.outputs.jupyter }} | |
python-datascience: ${{ steps.filter.outputs.python-datascience }} | |
python-minimal: ${{ steps.filter.outputs.python-minimal }} | |
python-pytorch: ${{ steps.filter.outputs.python-pytorch }} | |
python-tensorflow: ${{ steps.filter.outputs.python-tensorflow }} | |
r-datascience: ${{ steps.filter.outputs.r-datascience }} | |
r-minimal: ${{ steps.filter.outputs.r-minimal }} | |
r-python-julia: ${{ steps.filter.outputs.r-python-julia }} | |
rstudio: ${{ steps.filter.outputs.rstudio }} | |
spark: ${{ steps.filter.outputs.spark }} | |
vscode: ${{ steps.filter.outputs.vscode }} | |
steps: | |
- uses: dorny/paths-filter@v3 | |
id: filter | |
with: | |
filters: | | |
base: | |
- 'base/**' | |
jupyter: | |
- 'jupyter/**' | |
python-datascience: | |
- 'python-datascience/**' | |
python-minimal: | |
- 'python-minimal/**' | |
python-pytorch: | |
- 'python-pytorch/**' | |
python-tensorflow: | |
- 'python-tensorflow/**' | |
r-datascience: | |
- 'r-datascience/**' | |
r-minimal: | |
- 'r-minimal/**' | |
r-python-julia: | |
- 'r-python-julia/**' | |
rstudio: | |
- 'rstudio/**' | |
spark: | |
- 'spark/**' | |
vscode: | |
- 'vscode/**' | |
base: | |
needs: changes | |
if: ${{ needs.changes.outputs.base == 'true' }} | |
uses: ./.github/workflows/main-workflow-template.yml | |
with: | |
image: base | |
context: base | |
test: true | |
base_image: ubuntu:22.04 | |
base_image_gpu: nvidia/cuda:12.1.1-cudnn8-devel-ubuntu22.04 | |
external_base_image: true | |
branch: ${{ github.ref }} | |
python-minimal: | |
needs: changes | |
if: ${{ needs.changes.outputs.python-minimal == 'true' }} | |
uses: ./.github/workflows/main-workflow-template.yml | |
with: | |
image: python-minimal | |
context: python-minimal | |
test: true | |
base_image: base | |
python_version_1: 3.12.4 | |
python_version_2: 3.11.9 | |
branch: ${{ github.ref }} | |
python-datascience: | |
needs: changes | |
if: ${{ needs.changes.outputs.python-datascience == 'true' }} | |
uses: ./.github/workflows/main-workflow-template.yml | |
with: | |
image: python-datascience | |
context: python-datascience | |
test: true | |
base_image: python-minimal | |
python_version_1: 3.12.4 | |
python_version_2: 3.11.9 | |
branch: ${{ github.ref }} | |
python-pytorch: | |
needs: changes | |
if: ${{ needs.changes.outputs.python-pytorch == 'true' }} | |
uses: ./.github/workflows/main-workflow-template.yml | |
with: | |
image: python-pytorch | |
context: python-pytorch | |
test: true | |
base_image: python-minimal | |
python_version_1: 3.12.4 | |
python_version_2: 3.11.9 | |
branch: ${{ github.ref }} | |
python-tensorflow: | |
needs: changes | |
if: ${{ needs.changes.outputs.python-tensorflow == 'true' }} | |
uses: ./.github/workflows/main-workflow-template.yml | |
with: | |
image: python-tensorflow | |
context: python-tensorflow | |
test: true | |
base_image: python-minimal | |
python_version_1: 3.12.4 | |
python_version_2: 3.11.9 | |
branch: ${{ github.ref }} | |
r-minimal: | |
needs: changes | |
if: ${{ needs.changes.outputs.r-minimal == 'true' }} | |
uses: ./.github/workflows/main-workflow-template.yml | |
with: | |
image: r-minimal | |
context: r-minimal | |
test: true | |
base_image: base | |
r_version_1: 4.4.1 | |
r_version_2: 4.3.3 | |
branch: ${{ github.ref }} | |
r-datascience: | |
needs: changes | |
if: ${{ needs.changes.outputs.r-datascience == 'true' }} | |
uses: ./.github/workflows/main-workflow-template.yml | |
with: | |
image: r-datascience | |
context: r-datascience | |
test: true | |
base_image: r-minimal | |
r_version_1: 4.4.1 | |
r_version_2: 4.3.3 | |
branch: ${{ github.ref }} | |
pyspark: | |
needs: changes | |
if: ${{ needs.changes.outputs.spark == 'true' }} | |
uses: ./.github/workflows/main-workflow-template.yml | |
with: | |
image: pyspark | |
context: spark | |
test: true | |
base_image: python-minimal | |
python_version_1: 3.12.4 | |
python_version_2: 3.11.9 | |
spark_version: 3.5.1 | |
branch: ${{ github.ref }} | |
sparkr: | |
needs: changes | |
if: ${{ needs.changes.outputs.spark == 'true' }} | |
uses: ./.github/workflows/main-workflow-template.yml | |
with: | |
image: sparkr | |
context: spark | |
test: true | |
base_image: r-minimal | |
r_version_1: 4.4.1 | |
r_version_2: 4.3.3 | |
spark_version: 3.5.1 | |
branch: ${{ github.ref }} | |
r-python-julia: | |
needs: changes | |
if: ${{ needs.changes.outputs.r-python-julia == 'true' }} | |
uses: ./.github/workflows/main-workflow-template.yml | |
with: | |
image: r-python-julia | |
context: r-python-julia | |
test: true | |
base_image: r-minimal | |
r_version_1: 4.4.1 | |
branch: ${{ github.ref }} | |
jupyter-python: | |
needs: changes | |
if: ${{ needs.changes.outputs.jupyter == 'true' }} | |
uses: ./.github/workflows/main-workflow-template.yml | |
with: | |
image: jupyter-python | |
context: jupyter | |
test: true | |
base_image: python-datascience | |
python_version_1: 3.12.4 | |
python_version_2: 3.11.9 | |
branch: ${{ github.ref }} | |
vscode-python: | |
needs: changes | |
if: ${{ needs.changes.outputs.vscode == 'true' }} | |
uses: ./.github/workflows/main-workflow-template.yml | |
with: | |
image: vscode-python | |
context: vscode | |
test: true | |
base_image: python-datascience | |
python_version_1: 3.12.4 | |
python_version_2: 3.11.9 | |
branch: ${{ github.ref }} | |
rstudio: | |
needs: changes | |
if: ${{ needs.changes.outputs.rstudio == 'true' }} | |
uses: ./.github/workflows/main-workflow-template.yml | |
with: | |
image: rstudio | |
context: rstudio | |
test: true | |
base_image: r-datascience | |
r_version_1: 4.4.1 | |
r_version_2: 4.3.3 | |
branch: ${{ github.ref }} |