From 4cca6a8e45725bc934c704683418e26f1fe172d9 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sun, 13 Oct 2024 19:24:03 -0700 Subject: [PATCH] Install Heroku (it is no longer in the Ubuntu base image) Refs: - https://github.com/actions/runner-images/issues/9848 --- .github/workflows/backup.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/backup.yml b/.github/workflows/backup.yml index c5dd0a63..48a10f11 100644 --- a/.github/workflows/backup.yml +++ b/.github/workflows/backup.yml @@ -35,6 +35,8 @@ jobs: - name: Install Python dependencies run: | pip install -r requirements.txt + - name: Install Heroku CLI + run: curl https://cli-assets.heroku.com/install-ubuntu.sh | sh - name: Import Heroku DB into SQLite env: HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}