aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/upgrade_proxy.yml18
1 files changed, 11 insertions, 7 deletions
diff --git a/.github/workflows/upgrade_proxy.yml b/.github/workflows/upgrade_proxy.yml
index e187f5c..ccd16dd 100644
--- a/.github/workflows/upgrade_proxy.yml
+++ b/.github/workflows/upgrade_proxy.yml
@@ -16,11 +16,15 @@ jobs:
with:
go-version: 1.18
- - name: Upgrade
- run: go get -u github.com/HimbeerserverDE/mt-multiserver-proxy
+ - name: Upgrade and tidy
+ run: |
+ go get -u github.com/HimbeerserverDE/mt-multiserver-proxy
+ go mod tidy
- - uses: evantorrie/mott-the-tidier@v1-beta
- with:
- gomods: |
- **/go.mod
- -tools/go.mod
+ - name: Add, commit and push
+ run: |
+ git config user.name github-actions
+ git config user.email github-actions@github.com
+ git add go.mod go.sum
+ git commit -m "Upgrade proxy"
+ git push