From 2a524eabffc958bd96a22d43fe86c46beae34df2 Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Mon, 15 May 2023 16:42:57 +0200 Subject: [PATCH] speed up apt --- .github/workflows/main.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3aacc56..124b72f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -35,11 +35,12 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 - # Runs a single command using the runners shell - name: Install dependencies - run: | - sudo apt-get update - sudo apt-get install qt5-qmake libqt5websockets5-dev g++ make + uses: awalsh128/cache-apt-pkgs-action@latest + with: + packages: qt5-qmake libqt5websockets5-dev g++ make + version: 1.0 + # Runs a set of commands using the runners shell - name: qmake and build run: |