From 3cb40be8f4f026f4e8d48064caaf8c1f31ff00fd Mon Sep 17 00:00:00 2001 From: "Fotis Koutoulakis (@NlightNFotis)" Date: Tue, 3 Dec 2024 17:10:22 +0000 Subject: [PATCH] ci: rearrange apt calls... --- .github/workflows/__test-proxy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/__test-proxy.yml b/.github/workflows/__test-proxy.yml index 5ac5af8ccc..ea029a8bf5 100644 --- a/.github/workflows/__test-proxy.yml +++ b/.github/workflows/__test-proxy.yml @@ -47,12 +47,12 @@ jobs: uses: actions/checkout@v4 - name: Set up GitHub CLI run: | - apt-get update - apt-get install curl + apt install curl curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg apt-key add /usr/share/keyrings/githubcli-archive-keyring.gpg apt-add-repository https://cli.github.com/packages - apt-get install gh + apt update + apt install gh - name: Prepare test id: prepare-test uses: ./.github/actions/prepare-test