diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 25ffc042..6382a1c2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -15,7 +15,7 @@ jobs: with: ref: ${{ github.event.pull_request.head.sha }} - name: download filtermail - run: curl -L https://github.com/chatmail/filtermail/releases/download/v0.2.0/filtermail-x86_64-musl -o /usr/local/bin/filtermail && chmod +x /usr/local/bin/filtermail + run: curl -L https://github.com/chatmail/filtermail/releases/download/v0.3.0/filtermail-x86_64 -o /usr/local/bin/filtermail && chmod +x /usr/local/bin/filtermail - name: run chatmaild tests working-directory: chatmaild run: pipx run tox diff --git a/cmdeploy/src/cmdeploy/filtermail/deployer.py b/cmdeploy/src/cmdeploy/filtermail/deployer.py index 599ea8f5..f18b0c9a 100644 --- a/cmdeploy/src/cmdeploy/filtermail/deployer.py +++ b/cmdeploy/src/cmdeploy/filtermail/deployer.py @@ -14,10 +14,10 @@ def __init__(self): def install(self): arch = host.get_fact(facts.server.Arch) - url = f"https://github.com/chatmail/filtermail/releases/download/v0.2.0/filtermail-{arch}-musl" + url = f"https://github.com/chatmail/filtermail/releases/download/v0.3.0/filtermail-{arch}" sha256sum = { - "x86_64": "1e5bbb646582cb16740c6dfbbca39edba492b78cc96ec9fa2528c612bb504edd", - "aarch64": "3564fba8605f8f9adfeefff3f4580533205da043f47c5968d0d10db17e50f44e", + "x86_64": "f14a31323ae2dad3b59d3fdafcde507521da2f951a9478cd1f2fe2b4463df71d", + "aarch64": "933770d75046c4fd7084ce8d43f905f8748333426ad839154f0fc654755ef09f", }[arch] self.need_restart |= files.download( name="Download filtermail",