fix(ci,build): Debian eol fix #267
Draft
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fix Docker build and GitHub Actions workflow warnings
Changes:
Problem: Docker build failing with 404 errors because Debian 10 (Buster) went EOL on June 30, 2024
Solution: Configure Dockerfile to use archive repositories (archive.debian.org) instead of standard repositories
Files: Dockerfile
Problem: Warning about unexpected inputs (owner, repo, workflow-id, ref, inputs) in octokit/request-action@v2.x
Solution: Updated workflow to use the correct API format with route values and data parameter
Files: .github/workflows/build-branches.yml
Technical Details
This issue became apparent only after the tagging fix was pushed out.
Added archive repository configuration for Debian Buster in Dockerfile
Updated build-branches.yml to use the new octokit/request-action API format
Maintained compatibility with existing workflow functionality
Result
Docker builds now complete successfully
GitHub Actions workflow runs without deprecation warnings
All functionality preserved