diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 36d52e53..65e8637d 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -86,7 +86,7 @@ jobs: run: poetry run -- nox -s lint:code - name: Upload Artifacts - uses: actions/upload-artifact@v4.6.2 + uses: actions/upload-artifact@v5.0.0 with: name: lint-python${{ matrix.python-version }} path: | @@ -139,7 +139,7 @@ jobs: run: poetry run -- nox -s lint:security - name: Upload Artifacts - uses: actions/upload-artifact@v4.6.2 + uses: actions/upload-artifact@v5.0.0 with: name: security-python${{ matrix.python-version }} path: .security.json @@ -185,7 +185,7 @@ jobs: run: poetry run -- nox -s test:unit -- --coverage - name: Upload Artifacts - uses: actions/upload-artifact@v4.6.2 + uses: actions/upload-artifact@v5.0.0 with: name: coverage-python${{ matrix.python-version }}-fast path: .coverage diff --git a/.github/workflows/report.yml b/.github/workflows/report.yml index 1dbc3222..e079a392 100644 --- a/.github/workflows/report.yml +++ b/.github/workflows/report.yml @@ -41,7 +41,7 @@ jobs: run: poetry run -- nox -s project:report -- --format json | tee metrics.json - name: Upload Artifacts - uses: actions/upload-artifact@v4.6.2 + uses: actions/upload-artifact@v5.0.0 with: name: metrics.json path: metrics.json