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>
28 lines
No EOL
1 KiB
YAML
28 lines
No EOL
1 KiB
YAML
name: Updates model_prices_and_context_window.json and Create Pull Request
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * 0" # Run every Sundays at midnight
|
|
#- cron: "0 0 * * *" # Run daily at midnight
|
|
|
|
jobs:
|
|
auto_update_price_and_context_window:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install Dependencies
|
|
run: |
|
|
pip install aiohttp
|
|
- name: Update JSON Data
|
|
run: |
|
|
python ".github/workflows/auto_update_price_and_context_window_file.py"
|
|
- name: Create Pull Request
|
|
run: |
|
|
git add model_prices_and_context_window.json
|
|
git commit -m "Update model_prices_and_context_window.json file: $(date +'%Y-%m-%d')"
|
|
gh pr create --title "Update model_prices_and_context_window.json file" \
|
|
--body "Automated update for model_prices_and_context_window.json" \
|
|
--head auto-update-price-and-context-window-$(date +'%Y-%m-%d') \
|
|
--base main
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GH_TOKEN }} |