Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/addon-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -251,17 +251,17 @@ jobs:
- name: Upload Cypress screenshots
if: always()
continue-on-error: true
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: cypress-screenshots-${{ inputs.addon-slug }}
path: |
core/tests/e2e/cypress/screenshots
addon/tests/e2e/cypress/screenshots
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
with:
name: cypress-screenshots-${{ inputs.addon-slug }}
path: |
core/tests/e2e/cypress/screenshots
addon/tests/e2e/cypress/screenshots

- name: Upload Cypress videos
if: always()
continue-on-error: true
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
- name: Upload Cypress videos
if: always()
continue-on-error: true
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
with:
name: cypress-videos-${{ inputs.addon-slug }}
path: |
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -245,15 +245,15 @@ jobs:
- name: Upload Cypress screenshots
if: always()
continue-on-error: true
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: cypress-screenshots-${{ matrix.php }}-${{ matrix.browser }}
path: tests/e2e/cypress/screenshots

- name: Upload Cypress videos
if: always()
continue-on-error: true
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
with:
name: cypress-screenshots-${{ matrix.php }}-${{ matrix.browser }}
path: tests/e2e/cypress/screenshots

- name: Upload Cypress videos
if: always()
continue-on-error: true
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
with:
name: cypress-videos-${{ matrix.php }}-${{ matrix.browser }}
path: tests/e2e/cypress/videos
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
echo "Prepared artifact: $PLUGIN_DIR as $ARCHIVE_NAME"

- name: Upload build artifact
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
with:
name: ${{ steps.artifact.outputs.name }}
path: ${{ steps.artifact.outputs.path }}
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,15 +92,17 @@ jobs:
mv ultimate-multisite.zip build/ultimate-multisite-${{ env.VERSION }}.zip

- name: Upload build artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
with:
name: ultimate-multisite-zip
path: build/ultimate-multisite-${{ env.VERSION }}.zip
retention-days: 7

- name: Create Release
id: create_release
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v1
uses: softprops/action-gh-release@153bb8e04406b158c6c84fc1615b65b24149a1fe # v2
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
with:
files: |
build/ultimate-multisite-${{ env.VERSION }}.zip
Expand Down Expand Up @@ -145,7 +147,7 @@ jobs:
echo "VERSION=$VERSION" >> $GITHUB_ENV

- name: Download build artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
with:
name: ultimate-multisite-zip
path: build/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ jobs:

- name: Upload performance results
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
with:
name: performance-results-${{ github.run_number }}
path: |
Expand Down
Loading