From dd73e7db76ac82288138d283457e71b01aa8bb4c Mon Sep 17 00:00:00 2001 From: Dave Dykstra <2129743+DrDaveD@users.noreply.github.com> Date: Mon, 14 Jun 2021 16:07:12 -0500 Subject: [PATCH] update debian in ci from stretch to buster --- .github/workflows/ci.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4fd66c46b3..e3f3ccdca3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,15 +21,11 @@ jobs: debian: name: debian runs-on: ubuntu-20.04 - container: golang:1.16-stretch + container: golang:1.16-buster steps: - name: Fetch deps run: | apt-get -q update && apt-get -q install -y build-essential libssl-dev uuid-dev squashfs-tools cryptsetup-bin - echo "deb http://ftp.debian.org/debian stretch-backports main" >> /etc/apt/sources.list - apt-get -q update - apt-get -q remove -y --purge git - apt-get -q install -y -t stretch-backports git - uses: actions/checkout@v2