diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 40f6175..6f84db6 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -52,7 +52,7 @@ jobs: name: Install Python with: python-version: "3.10" - - uses: actions/download-artifact@v7 + - uses: actions/download-artifact@v8 with: name: Packages path: dist @@ -61,7 +61,7 @@ jobs: ls -ltrh ls -ltrh dist - name: Publish to Test PyPI - uses: pypa/gh-action-pypi-publish@v1.13.0 + uses: pypa/gh-action-pypi-publish@v1.14.0 with: repository-url: https://test.pypi.org/legacy/ verbose: true @@ -114,9 +114,9 @@ jobs: if: github.event_name == 'release' && github.event.action == 'published' steps: - - uses: actions/download-artifact@v7 + - uses: actions/download-artifact@v8 with: name: Packages path: dist - - uses: pypa/gh-action-pypi-publish@v1.13.0 + - uses: pypa/gh-action-pypi-publish@v1.14.0 if: startsWith(github.ref, 'refs/tags') diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1aef4cc..e2ba164 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -44,7 +44,7 @@ jobs: run: | pytest --cov snowexsql --cov-report=xml -m "not integration" - name: Upload coverage to Codecov - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: verbose: true env: