diff --git a/.github/workflows/buildService.yaml b/.github/workflows/buildService.yaml index 8c952e1..9ab20c4 100644 --- a/.github/workflows/buildService.yaml +++ b/.github/workflows/buildService.yaml @@ -17,7 +17,7 @@ jobs: uses: Start9Labs/sdk@v1 - name: Checkout services repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build the service package id: build @@ -27,10 +27,11 @@ jobs: make PACKAGE_ID=$(yq -oy ".id" manifest.*) echo "package_id=$PACKAGE_ID" >> $GITHUB_ENV + printf "\n SHA256SUM: $(sha256sum ${PACKAGE_ID}.s9pk) \n" shell: bash - name: Upload .s9pk - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ env.package_id }}.s9pk path: ./${{ env.package_id }}.s9pk \ No newline at end of file diff --git a/.github/workflows/releaseService.yaml b/.github/workflows/releaseService.yaml index 12ddeec..18a80aa 100644 --- a/.github/workflows/releaseService.yaml +++ b/.github/workflows/releaseService.yaml @@ -15,7 +15,7 @@ jobs: uses: Start9Labs/sdk@v1 - name: Checkout services repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build the service package run: | @@ -33,6 +33,7 @@ jobs: - name: Generate sha256 checksum run: | PACKAGE_ID=${{ env.package_id }} + printf "\n SHA256SUM: $(sha256sum ${PACKAGE_ID}.s9pk) \n" sha256sum ${PACKAGE_ID}.s9pk > ${PACKAGE_ID}.s9pk.sha256 shell: bash @@ -48,7 +49,7 @@ jobs: shell: bash - name: Create GitHub Release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: tag_name: ${{ github.ref_name }} name: ${{ env.package_title }} ${{ github.ref_name }} diff --git a/manifest.yaml b/manifest.yaml index 0b712c9..28a3134 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -1,8 +1,8 @@ id: mempool title: Mempool -version: 2.5.1.1 +version: 2.5.1.2 release-notes: | - * Bumps version bounds for Bitcoin Core + * Bumps version bounds for LND license: AGPL wrapper-repo: "https://github.com/Start9Labs/mempool-wrapper" upstream-repo: "https://github.com/mempool/mempool" @@ -80,7 +80,7 @@ dependencies: how: Set Enable Electrs to Disabled in the config description: Used to provide an index for address lookups lnd: - version: ">=0.14.3 <0.18.0" + version: ">=0.14.3 <0.19.0" description: Used to communicate with the Lightning Network. requirement: type: "opt-in"