Skip to content

Commit f9310d5

Browse files
committed
Fix github actions runner failures due to debian buster packages only being available on archive.
1 parent f052787 commit f9310d5

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/check_migrations_sqlite.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ jobs:
2424
- name: Install build dependencies
2525
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
2626
run: |
27+
echo "deb http://archive.debian.org/debian-archive/debian/ buster main" > /etc/apt/sources.list
28+
echo "deb http://archive.debian.org/debian-archive/debian-security/ buster/updates main" >> /etc/apt/sources.list
29+
echo "Acquire::Check-Valid-Until \"false\";" > /etc/apt/apt.conf.d/99archive
2730
apt-get -y -qq update
2831
apt-get install -y build-essential tcl
2932
- name: Build SQLite 3.25.3

.github/workflows/tox.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,9 @@ jobs:
121121
- name: Install system dependencies
122122
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
123123
run: |
124+
echo "deb http://archive.debian.org/debian-archive/debian/ buster main" > /etc/apt/sources.list
125+
echo "deb http://archive.debian.org/debian-archive/debian-security/ buster/updates main" >> /etc/apt/sources.list
126+
echo "Acquire::Check-Valid-Until \"false\";" > /etc/apt/apt.conf.d/99archive
124127
apt-get -y -qq update
125128
apt-get install -y openssl libssl-dev
126129
- name: Install tox

0 commit comments

Comments
 (0)