-
Notifications
You must be signed in to change notification settings - Fork 191
42 lines (40 loc) · 1.38 KB
/
bump_libraries.yaml
File metadata and controls
42 lines (40 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Dependabot - Bump libs and cut release
on:
pull_request:
types:
- opened
- reopened
paths:
- 'uv.lock'
- 'pyproject.toml'
jobs:
bump-changelog:
runs-on: opensource-linux-8core
if: ${{ github.actor == 'dependabot[bot]' }}
permissions:
contents: write
steps:
- uses: actions/checkout@v5
- name: Read Python version from .python-version
run: echo "PYTHON_VERSION=$(cat .python-version)" >> $GITHUB_ENV
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Set up Python ${{ env.PYTHON_VERSION }}
run: uv python install ${{ env.PYTHON_VERSION }}
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Create release version
run: |
uv lock --upgrade
package=${{ steps.metadata.outputs.dependency-names }}
# Strip any [extras] from name
package=${package%\[*}
changelog_message="Bump $package to ${{ steps.metadata.outputs.new-version }}"
./scripts/version-increment.sh "$changelog_message"
make version-sync
- uses: stefanzweifel/git-auto-commit-action@v6
with:
commit_message: "Bump libraries and release"