From 5f5d35c7a87f1e0c33c7b15d49d9b3c6e5bcaa59 Mon Sep 17 00:00:00 2001 From: Alex Chernyakhovsky Date: Fri, 27 Feb 2026 16:44:02 -0500 Subject: [PATCH] Run apt update before apt install --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 097324c..8bf2543 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: - name: "setup linux build environment" if: ${{ startsWith(matrix.os, 'ubuntu') }} - run: sudo apt install -y protobuf-compiler libprotobuf-dev libutempter-dev autoconf automake nettle-dev + run: sudo apt update && sudo apt install -y protobuf-compiler libprotobuf-dev libutempter-dev autoconf automake nettle-dev - name: "setup macos build environment" if: ${{ startsWith(matrix.os, 'macos') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7666d61..7a33d1a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,7 +59,7 @@ jobs: - name: "setup linux build environment" if: ${{ startsWith(matrix.os, 'ubuntu') }} - run: sudo apt install -y protobuf-compiler libprotobuf-dev libutempter-dev autoconf automake nettle-dev + run: sudo apt update && sudo apt install -y protobuf-compiler libprotobuf-dev libutempter-dev autoconf automake nettle-dev - name: "Install gtar wrapper" if: ${{ startsWith(matrix.os, 'macos') }}