fix: update workflows for Go 1.25.1 and SSH deployment

Test workflow:
- Upgrade golangci-lint-action from v6 to v7
- v7 is required for golangci-lint v2.x support
- Remove skip-cache as v7 handles caching better

Deploy workflow:
- Fix SSH heredoc to use unquoted ENDSSH delimiter
- Allows environment variables to expand in remote session
- Fixes "Permission denied" by properly passing REPO_PATH and SERVICE_NAME
This commit is contained in:
juanatsap
2025-10-31 12:20:42 +00:00
parent c88d0f0f45
commit b167378526
2 changed files with 7 additions and 8 deletions
+1 -2
View File
@@ -28,10 +28,9 @@ jobs:
run: go mod download
- name: Run linter
uses: golangci/golangci-lint-action@v6
uses: golangci/golangci-lint-action@v7
with:
version: v2.6.0
skip-cache: true
- name: Run tests
run: |