Skip to content

Commit

Permalink
Update upgrade_dependencies.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaume authored Aug 2, 2024
1 parent c00ede6 commit 1ca20ec
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/upgrade_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
os: ['ubuntu-latest']
package: ["mp-api"]
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
Expand All @@ -40,7 +40,7 @@ jobs:
git config user.email [email protected]
git add requirements/requirements-${{ matrix.os }}_py${{ matrix.python-version }}.txt
git add requirements/requirements-${{ matrix.os }}_py${{ matrix.python-version }}_extras.txt
git commit -m "Update ${{ matrix.os }} dependencies for ${{ matrix.package }}"
git commit --allow-empty -m "Update ${{ matrix.os }} dependencies for ${{ matrix.package }}"
git push -f origin ${{ github.ref_name }}:auto-dependency-upgrades-${{ matrix.package }}-${{ matrix.os }}-py${{ matrix.python-version }}
pull_request:
Expand All @@ -51,10 +51,10 @@ jobs:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: detect auto-upgrade-dependency branches
Expand Down

0 comments on commit 1ca20ec

Please sign in to comment.