Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ on: workflow_dispatch

jobs:
build_and_upload:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Declining, with some irony: a pinned runner version is exactly what broke this workflow in the first place — it was pinned to ubuntu-20.04, the label was retired, and every dispatch queued forever. For a tiny manual S3-upload job, tracking ubuntu-latest is the maintenance-free choice; pinning just schedules the next silent death.

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Upload to S3
Expand Down