summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Wadman <mattias.wadman@gmail.com>2024-03-28 14:01:03 +0100
committerGitHub <noreply@github.com>2024-03-28 14:01:03 +0100
commitafe0afaf0620720b82298b8034e1dd150ba18ca5 (patch)
tree6d8b655943908de7f9e380890fa83565ec0294c8
parentce2638af405d5bd74cad9fc0665f9ae9d9bf36d1 (diff)
ci: Remove unnecessary apt-get upgrade (#3082)
Causes update to irrelevant packages and added flakeyness Fixes #3066
-rw-r--r--.github/workflows/ci.yml1
-rw-r--r--.github/workflows/valgrind.yml1
2 files changed, 0 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index f65d0e1c..6eebe07d 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -81,7 +81,6 @@ jobs:
- name: Install packages
run: |
sudo apt-get update
- sudo apt-get upgrade
sudo apt-get install -y automake autoconf libtool crossbuild-essential-${{ matrix.arch }}
- name: Build
run: |
diff --git a/.github/workflows/valgrind.yml b/.github/workflows/valgrind.yml
index 2bd329f8..6d0a8557 100644
--- a/.github/workflows/valgrind.yml
+++ b/.github/workflows/valgrind.yml
@@ -16,7 +16,6 @@ jobs:
- name: Install packages
run: |
sudo apt-get update
- sudo apt-get upgrade
sudo apt-get install -y automake autoconf libtool valgrind
- name: Build
run: |