Skip to content

Remove cache option from release workflow - #12

Merged
alexec merged 2 commits into
mainfrom
copilot/fix-release-job-dependency
Nov 15, 2025
Merged

Remove cache option from release workflow#12
alexec merged 2 commits into
mainfrom
copilot/fix-release-job-dependency

Conversation

CopilotAI commented Nov 15, 2025

Copy link
Copy Markdown
Contributor

The release workflow fails because actions/setup-go@v3 with cache: true requires a go.sum file, which doesn't exist since this project has no external dependencies.

Changes:

  • Removed cache: true from the actions/setup-go@v3 configuration in .github/workflows/release.yml

The caching optimization is unnecessary here as there are no dependencies to cache.

Original prompt

Fix the release job:

Dependencies file is not found in /home/runner/work/diff-server/diff-server. Supported file pattern: go.sum


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

The cache option requires a go.sum file, but this project has no external dependencies and therefore no go.sum file. Removing the cache option fixes the release job error.
Co-authored-by: alexec <1142830+alexec@users.noreply.github.com>
CopilotAI changed the title [WIP] Fix release job by adding dependencies fileRemove cache option from release workflowNov 15, 2025
CopilotAI requested a review from alexecNovember 15, 2025 20:42
@alexecalexec closed this Nov 15, 2025
@alexecalexec reopened this Nov 15, 2025
@alexec
alexec marked this pull request as ready for review November 15, 2025 20:46
@alexec
alexec enabled auto-merge (squash) November 15, 2025 20:46
@alexec
alexec merged commit 152ccad into mainNov 15, 2025
1 check passed
@alexec
alexec deleted the copilot/fix-release-job-dependency branch November 15, 2025 20:47
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants

@alexec