Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

APIGOV-28116 - fix update go.mod #115

Merged
merged 1 commit into from
Jun 13, 2024
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
5 changes: 3 additions & 2 deletions .github/workflows/update-gomod-for-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ jobs:
git status | grep modified
if [ $? -eq 0 ]
then
echo -e "Dependency changes have occurred"
echo "gomodChanged=y" >> $GITHUB_OUTPUT
echo -e "Committing dependency changes"
git commit --allow-empty -m "Updating SDK in go.mod"
echo "gomodChanged=y" >> $GITHUB_OUTPUT
else
echo -e "No dependency changes since last run"
echo "gomodChanged=n" >> $GITHUB_OUTPUT
Expand Down