diff --git a/.github/workflows/appbuild.yml b/.github/workflows/appbuild.yml index 9f72c13ba..7fd5600a9 100644 --- a/.github/workflows/appbuild.yml +++ b/.github/workflows/appbuild.yml @@ -37,7 +37,7 @@ jobs: uname -a RUST_BACKTRACE=1 krankerl --version RUST_BACKTRACE=1 krankerl package - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: Deck app tarball path: build/artifacts/deck.tar.gz diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 5ec20bb33..e7824ec09 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -108,7 +108,7 @@ jobs: npm_package_name: ${{ env.APP_NAME }} - name: Upload test failure screenshots - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: Upload screenshots @@ -116,7 +116,7 @@ jobs: retention-days: 5 - name: Upload nextcloud logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: Upload nextcloud log diff --git a/cypress/e2e/cardFeatures.js b/cypress/e2e/cardFeatures.js index 71eb0f001..8ba320e17 100644 --- a/cypress/e2e/cardFeatures.js +++ b/cypress/e2e/cardFeatures.js @@ -114,7 +114,8 @@ describe('Card', function() { cy.get('.file-picker__main [data-filename="welcome.txt"]').should('be.visible') .click() cy.get('.dialog__actions button.button-vue--vue-primary').click() - cy.get('.attachment-list .basename').contains('welcome.txt') + cy.get('.attachment-list .filename').contains('welcome') + cy.get('.attachment-list .filename .extension').contains('txt') }) it('Shows the modal with the editor', () => { diff --git a/src/components/card/AttachmentList.vue b/src/components/card/AttachmentList.vue index 96a171ab2..756f0cc28 100644 --- a/src/components/card/AttachmentList.vue +++ b/src/components/card/AttachmentList.vue @@ -41,7 +41,8 @@