mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-08-24 22:04:54 +03:00
* Bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Bump actions/checkout from 4 to 5 in generated project --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bruno Alla <alla.brunoo@gmail.com>
53 lines
1.3 KiB
YAML
53 lines
1.3 KiB
YAML
name: align versions
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "{{cookiecutter.project_slug}}/requirements/local.txt"
|
|
- "{{cookiecutter.project_slug}}/compose/local/node/Dockerfile"
|
|
# Manual trigger
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
run:
|
|
if: ${{ github.event_name == 'workflow_dispatch' || github.actor == 'pyup-bot' || github.actor == 'dependabot[bot]' }}
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
GH_PAT: ${{ secrets.GH_PAT }}
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
job:
|
|
- script: scripts/ruff_version.py
|
|
name: Ruff
|
|
- script: scripts/node_version.py
|
|
name: Node
|
|
|
|
name: "${{ matrix.job.name }} versions"
|
|
steps:
|
|
- name: Checkout with token
|
|
uses: actions/checkout@v5
|
|
if: ${{ env.GH_PAT != '' }}
|
|
with:
|
|
token: ${{ env.GH_PAT }}
|
|
ref: ${{ github.head_ref }}
|
|
|
|
- name: Checkout without token
|
|
uses: actions/checkout@v5
|
|
if: ${{ env.GH_PAT == '' }}
|
|
with:
|
|
ref: ${{ github.head_ref }}
|
|
|
|
- uses: astral-sh/setup-uv@v6
|
|
|
|
- run: uv run ${{ matrix.job.script }}
|
|
|
|
- uses: stefanzweifel/git-auto-commit-action@v6
|
|
with:
|
|
commit_message: Align versions
|