Skip to content

Commit

Permalink
Update GitHub Actions workflow to use Ubuntu 22.04 for scheduled tasks
Browse files Browse the repository at this point in the history
- 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.
  • Loading branch information
jaydrogers committed Jan 9, 2025
1 parent ff65faf commit f77053f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/scheduled-task_update-sponsors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f77053f

Please sign in to comment.