diff --git a/.github/workflows/swift-ci.yml b/.github/workflows/swift-ci.yml index d3a4c179..21c42438 100644 --- a/.github/workflows/swift-ci.yml +++ b/.github/workflows/swift-ci.yml @@ -59,6 +59,13 @@ jobs: restore-keys: | ${{ runner.os }}-${{ matrix.swift }}-spm- + - name: Install Compose + uses: ndeloof/install-compose-action@v0.0.1 + with: + version: v2.1.0 + legacy: true + - run: docker-compose --version + - name: "Create env file" run: | touch .env @@ -69,10 +76,10 @@ jobs: cat .env - name: Start the local node - run: npx @hashgraph/hedera-local@2.13.0 start -d --network local + run: npx @hashgraph/hedera-local@2.17.2 start -d --network local - name: Test run: swift test - name: Stop the local node - run: npx @hashgraph/hedera-local@2.13.0 stop + run: npx @hashgraph/hedera-local@2.17.2 stop