forked from phoenix/litellm-mirror
Bumps the github-actions group with 7 updates in the / directory:
| Package | From | To |
| --- | --- | --- |
| [actions/checkout](https://github.com/actions/checkout) | `1` | `4` |
| [docker/build-push-action](https://github.com/docker/build-push-action) | `5` | `6` |
| [docker/metadata-action](https://github.com/docker/metadata-action) | `9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7` | `b53be03109c4ef6f6cc7aa545b84b17a7fe51c1e` |
| [christian-draeger/increment-semantic-version](https://github.com/christian-draeger/increment-semantic-version) | `1.1.0` | `1.2.0` |
| [actions/github-script](https://github.com/actions/github-script) | `6` | `7` |
| [WyriHaximus/github-action-get-previous-tag](https://github.com/wyrihaximus/github-action-get-previous-tag) | `1.3.0` | `1.4.0` |
| [actions/setup-python](https://github.com/actions/setup-python) | `2` | `5` |
Updates `actions/checkout` from 1 to 4
- [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/v1...v4)
Updates `docker/build-push-action` from 5 to 6
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](https://github.com/docker/build-push-action/compare/v5...v6)
Updates `docker/metadata-action` from 9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 to b53be03109c4ef6f6cc7aa545b84b17a7fe51c1e
- [Release notes](https://github.com/docker/metadata-action/releases)
- [Commits](9ec57ed1fc...b53be03109
)
Updates `christian-draeger/increment-semantic-version` from 1.1.0 to 1.2.0
- [Release notes](https://github.com/christian-draeger/increment-semantic-version/releases)
- [Commits](https://github.com/christian-draeger/increment-semantic-version/compare/1.1.0...1.2.0)
Updates `actions/github-script` from 6 to 7
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](https://github.com/actions/github-script/compare/v6...v7)
Updates `WyriHaximus/github-action-get-previous-tag` from 1.3.0 to 1.4.0
- [Release notes](https://github.com/wyrihaximus/github-action-get-previous-tag/releases)
- [Commits](https://github.com/wyrihaximus/github-action-get-previous-tag/compare/v1.3.0...v1.4.0)
Updates `actions/setup-python` from 2 to 5
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](https://github.com/actions/setup-python/compare/v2...v5)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: github-actions
- dependency-name: docker/build-push-action
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: github-actions
- dependency-name: docker/metadata-action
dependency-type: direct:production
dependency-group: github-actions
- dependency-name: christian-draeger/increment-semantic-version
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: github-actions
- dependency-name: actions/github-script
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: github-actions
- dependency-name: WyriHaximus/github-action-get-previous-tag
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: github-actions
- dependency-name: actions/setup-python
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: github-actions
...
Signed-off-by: dependabot[bot] <support@github.com>
31 lines
828 B
YAML
31 lines
828 B
YAML
name: Read Version from pyproject.toml
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main # Change this to the default branch of your repository
|
|
|
|
jobs:
|
|
read-version:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: 3.8 # Adjust the Python version as needed
|
|
|
|
- name: Install dependencies
|
|
run: pip install toml
|
|
|
|
- name: Read version from pyproject.toml
|
|
id: read-version
|
|
run: |
|
|
version=$(python -c 'import toml; print(toml.load("pyproject.toml")["tool"]["commitizen"]["version"])')
|
|
printf "LITELLM_VERSION=%s" "$version" >> $GITHUB_ENV
|
|
|
|
- name: Display version
|
|
run: echo "Current version is $LITELLM_VERSION"
|