diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index af85975403..e6405e214b 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -53,6 +53,7 @@ jobs: e2e: needs: matrix-conditionals strategy: + fail-fast: false matrix: include: - make-target: "start-e2e-test" diff --git a/.github/workflows/reusable-e2e.yml b/.github/workflows/reusable-e2e.yml index 79e595501a..2407598141 100644 --- a/.github/workflows/reusable-e2e.yml +++ b/.github/workflows/reusable-e2e.yml @@ -33,14 +33,14 @@ jobs: - uses: depot/use-containerd-snapshotter-action@v1 - name: Login to Docker Hub registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: (github.event_name == 'push' && github.repository == 'zeta-chain/node') || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == 'zeta-chain/node') with: username: ${{ secrets.DOCKER_HUB_USERNAME }} password: ${{ secrets.DOCKER_HUB_READ_ONLY }} - name: Login to github docker registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.repository_owner }} @@ -95,7 +95,7 @@ jobs: - name: Upload Logs On Failure if: failure() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: ${{ inputs.make-target }}-docker-logs path: /tmp/logs.txt