diff --git a/.github/workflows/acceptance.yml b/.github/workflows/acceptance.yml index 36f91ce..f8462ff 100644 --- a/.github/workflows/acceptance.yml +++ b/.github/workflows/acceptance.yml @@ -60,7 +60,7 @@ jobs: fi # Upload the json diff as an artifact - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: fixture-diff path: | @@ -110,7 +110,7 @@ jobs: grep -q '"path":"__tests__/test.md"' live-diff.json grep -q "$MARKER" live-diff.txt - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: live-diff path: | diff --git a/.github/workflows/package-check.yml b/.github/workflows/package-check.yml index ac6d267..a5b14d2 100644 --- a/.github/workflows/package-check.yml +++ b/.github/workflows/package-check.yml @@ -40,7 +40,7 @@ jobs: id: diff # If index.js was different than expected, upload the expected version as an artifact - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 if: ${{ failure() && steps.diff.conclusion == 'failure' }} with: name: dist diff --git a/.github/workflows/sample-workflow.yml b/.github/workflows/sample-workflow.yml index 549778f..586e575 100644 --- a/.github/workflows/sample-workflow.yml +++ b/.github/workflows/sample-workflow.yml @@ -38,7 +38,7 @@ jobs: run: cat $DIFF # Upload the json diff as an artifact - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: json-diff path: diff.json