From 1592d2d5be850666f2e7e6c8956117c554967892 Mon Sep 17 00:00:00 2001 From: Holden Hoover Date: Mon, 9 Feb 2026 07:07:01 -0500 Subject: [PATCH 1/2] Update Dyalog APL version to v20.0 in workflows --- .github/workflows/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 05aa739..139097a 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Install Dyalog APL run: | - DEBFILE=$(curl -s https://www.dyalog.com/uploads/php/download.dyalog.com/download.php?file=docker.metafile | awk -v v="19.0" '$0~v && /deb/ {print $3}') + DEBFILE=$(curl -s https://www.dyalog.com/uploads/php/download.dyalog.com/download.php?file=docker.metafile | awk -v v="20.0" '$0~v && /deb/ {print $3}') curl -o /tmp/dyalog.deb "${DEBFILE}" sudo apt install -y /tmp/dyalog.deb - name: Setup .NET @@ -55,7 +55,7 @@ jobs: steps: - name: Install Dyalog APL run: | - DEBFILE=$(curl -s https://www.dyalog.com/uploads/php/download.dyalog.com/download.php?file=docker.metafile | awk -v v="19.0" '$0~v && /deb/ {print $3}') + DEBFILE=$(curl -s https://www.dyalog.com/uploads/php/download.dyalog.com/download.php?file=docker.metafile | awk -v v="20.0" '$0~v && /deb/ {print $3}') curl -o /tmp/dyalog.deb "${DEBFILE}" sudo apt install -y /tmp/dyalog.deb - name: Setup .NET From 543900ba3382aa85588c4c75735a4ea39c5231b2 Mon Sep 17 00:00:00 2001 From: Holden Hoover Date: Mon, 9 Feb 2026 07:10:15 -0500 Subject: [PATCH 2/2] Ensure x86_64 build --- .github/workflows/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 139097a..561df12 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Install Dyalog APL run: | - DEBFILE=$(curl -s https://www.dyalog.com/uploads/php/download.dyalog.com/download.php?file=docker.metafile | awk -v v="20.0" '$0~v && /deb/ {print $3}') + DEBFILE=$(curl -s https://www.dyalog.com/uploads/php/download.dyalog.com/download.php?file=docker.metafile | grep x86_64 | awk -v v="20.0" '$0~v && /deb/ {print $3}') curl -o /tmp/dyalog.deb "${DEBFILE}" sudo apt install -y /tmp/dyalog.deb - name: Setup .NET @@ -55,7 +55,7 @@ jobs: steps: - name: Install Dyalog APL run: | - DEBFILE=$(curl -s https://www.dyalog.com/uploads/php/download.dyalog.com/download.php?file=docker.metafile | awk -v v="20.0" '$0~v && /deb/ {print $3}') + DEBFILE=$(curl -s https://www.dyalog.com/uploads/php/download.dyalog.com/download.php?file=docker.metafile | grep x86_64 | awk -v v="20.0" '$0~v && /deb/ {print $3}') curl -o /tmp/dyalog.deb "${DEBFILE}" sudo apt install -y /tmp/dyalog.deb - name: Setup .NET