Skip to content
Merged
Show file tree
Hide file tree
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
steps:
- uses: actions/setup-go@v5
with:
go-version: 1.24
go-version: 1.25
- uses: actions/checkout@v5
- run: make build
- uses: actions/upload-artifact@v4
Expand All @@ -42,7 +42,7 @@ jobs:
steps:
- uses: actions/setup-go@v5
with:
go-version: 1.24
go-version: 1.25
- uses: actions/checkout@v5
- env:
VIMEO_TEST_API_KEY: ${{ secrets.VIMEO_ACCESS_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/mxpv/podsync

go 1.24
go 1.25
Copy link
Contributor

Choose a reason for hiding this comment

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

Critical Issue: Go 1.25 does not exist yet. The latest stable Go version as of August 2024 is Go 1.23.x. Go versions follow a 6-month release cycle (February and August), so Go 1.24 would be expected in February 2025, and Go 1.25 would not be available until August 2025.

This change will break CI/CD and any local development environments. Please revert to a valid Go version like go 1.23 or keep the existing go 1.24 if it was working previously.


require (
github.com/BrianHicks/finch v0.0.0-20140409222414-419bd73c29ec
Expand Down
Loading