File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1717 fetch-depth : 0
1818
1919 - name : Install uv
20- uses : astral-sh/setup-uv@v3
20+ uses : astral-sh/setup-uv@v4
2121
2222 - name : Set up Python 3
2323 run : uv python install 3.12
4242 id : git-cliff
4343 with :
4444 config : cliff.toml
45- args : --verbose --tag="$QLIENT_NEW_VERSION" --unreleased
45+ args : --verbose --tag="${{ env. QLIENT_NEW_VERSION }} " --unreleased
4646 env :
4747 OUTPUT : CHANGELOG.md
4848
@@ -53,17 +53,17 @@ jobs:
5353 run : |
5454 git config --global user.name 'github-actions[bot]'
5555 git config --global user.email 'github-actions[bot]@users.noreply.github.com'
56- git tag $ QLIENT_NEW_VERSION
57- git push origin $ QLIENT_NEW_VERSION
56+ git tag v${{ env. QLIENT_NEW_VERSION }}
57+ git push origin v${{ env. QLIENT_NEW_VERSION }}
5858 env :
5959 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
6060
6161 - name : Create Release
6262 id : create_release
6363 uses : softprops/action-gh-release@v2
6464 with :
65- tag_name : $QLIENT_NEW_VERSION
66- name : $QLIENT_NEW_VERSION
65+ tag_name : ${{ env. QLIENT_NEW_VERSION }}
66+ name : ${{ env. QLIENT_NEW_VERSION }}
6767 draft : true
6868 prerelease : true
6969 body_path : CHANGELOG.md
Original file line number Diff line number Diff line change 1313 - uses : actions/checkout@v4
1414
1515 - name : Install uv
16- uses : astral-sh/setup-uv@v3
16+ uses : astral-sh/setup-uv@v4
1717
1818 - name : Set up Python 3
1919 run : uv python install 3.12
Original file line number Diff line number Diff line change 1919 steps :
2020 - uses : actions/checkout@v4
2121 - name : Install uv
22- uses : astral-sh/setup-uv@v3
22+ uses : astral-sh/setup-uv@v4
2323 - name : Set up Python ${{ matrix.python-version }}
2424 run : uv python install ${{ matrix.python-version }}
2525 - name : Install the latest version of rye
2929 - name : Run Pytest
3030 run : rye run pytest --cov --cov-report=xml
3131 - name : Upload coverage reports to Codecov
32- uses : codecov/codecov-action@v4
32+ uses : codecov/codecov-action@v5
3333 with :
3434 token : ${{ secrets.CODECOV_TOKEN }}
3535 - name : Upload coverage reports to DeepSource
You can’t perform that action at this time.
0 commit comments