From f77053fa7a81d8711c01d0648dba8d2669a61512 Mon Sep 17 00:00:00 2001 From: Jay Rogers Date: Thu, 9 Jan 2025 10:49:30 -0600 Subject: [PATCH] Update GitHub Actions workflow to use Ubuntu 22.04 for scheduled tasks - Changed the runner environment from 'ubuntu-latest' to 'ubuntu-22.04' in the scheduled task workflow for better compatibility and stability. - This update ensures that the workflow runs on a more specific and supported version of Ubuntu, potentially improving performance and reliability. --- .github/workflows/scheduled-task_update-sponsors.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scheduled-task_update-sponsors.yml b/.github/workflows/scheduled-task_update-sponsors.yml index 7e61ffc..8006f93 100644 --- a/.github/workflows/scheduled-task_update-sponsors.yml +++ b/.github/workflows/scheduled-task_update-sponsors.yml @@ -5,7 +5,7 @@ on: - cron: 30 15 * * 0-6 jobs: deploy: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout 🛎️ uses: actions/checkout@v4