diff --git a/.github/workflows/build-distribution.yaml b/.github/workflows/build-distribution.yaml index 10a26c97..4f84ac72 100644 --- a/.github/workflows/build-distribution.yaml +++ b/.github/workflows/build-distribution.yaml @@ -41,7 +41,7 @@ jobs: python3 -m build - name: Store the distribution packages - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: python-package-distributions path: dist/ diff --git a/.github/workflows/publish-to-pypi.yaml b/.github/workflows/publish-to-pypi.yaml index d533dc18..5d3a3850 100644 --- a/.github/workflows/publish-to-pypi.yaml +++ b/.github/workflows/publish-to-pypi.yaml @@ -39,7 +39,7 @@ jobs: run: python3 -m build - name: Store the distribution packages - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: python-package-distributions path: dist/ diff --git a/.github/workflows/pytest-darwin.yaml b/.github/workflows/pytest-darwin.yaml index 4b45a546..4dc3cc3d 100644 --- a/.github/workflows/pytest-darwin.yaml +++ b/.github/workflows/pytest-darwin.yaml @@ -125,7 +125,7 @@ jobs: mv .coverage "$COVERAGE_FILE" - name: Store coverage file - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: "coverage-${{ matrix.python-version }}-${{ matrix.senzingsdk-version }}" path: "coverage.${{ matrix.python-version }}-${{ matrix.senzingsdk-version }}" diff --git a/.github/workflows/pytest-linux.yaml b/.github/workflows/pytest-linux.yaml index c3d7bcd5..3c688f09 100644 --- a/.github/workflows/pytest-linux.yaml +++ b/.github/workflows/pytest-linux.yaml @@ -145,7 +145,7 @@ jobs: mv .coverage "$COVERAGE_FILE" - name: Store coverage file - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: "coverage-${{ matrix.python-version }}-${{ matrix.senzingsdk-version }}" path: "coverage.${{ matrix.python-version }}-${{ matrix.senzingsdk-version }}" diff --git a/.github/workflows/pytest-windows.yaml b/.github/workflows/pytest-windows.yaml index 55f437c6..5776d1bd 100644 --- a/.github/workflows/pytest-windows.yaml +++ b/.github/workflows/pytest-windows.yaml @@ -94,7 +94,7 @@ jobs: Rename-Item -Path.coverage -NewName "$env:COVERAGE_FILE" - name: Store coverage file - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: "coverage-${{ matrix.python-version }}-${{ matrix.senzingsdk-version }}" path: "coverage.${{ matrix.python-version }}-${{ matrix.senzingsdk-version }}"