Update On Sat Aug 30 20:36:36 CEST 2025

This commit is contained in:
github-action[bot]
2025-08-30 20:36:37 +02:00
parent 8245d77671
commit f1fd237cba
169 changed files with 80261 additions and 82484 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4.2.2
uses: actions/checkout@v5
- name: Setup Golang
uses: actions/setup-go@v5.4.0
+13 -2
View File
@@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout our repository
uses: actions/checkout@v4.2.2
uses: actions/checkout@v5
with:
fetch-depth: '0'
@@ -56,9 +56,20 @@ jobs:
- name: Update and commit changes
if: env.needs_update == 'true'
run: |
go get golang.org/x/mobile@latest
# Lock gvisor version to a specific revision
go mod edit -replace=gvisor.dev/gvisor=gvisor.dev/gvisor@v0.0.0-20250606001031-fa4c4dd86b43
# Update specific dependency
go get github.com/xtls/xray-core@${{ env.LATEST_TAG_SHA }}
# Update all other dependencies
go get -u
go get gvisor.dev/gvisor@go
# Clean up and verify module dependencies
go mod tidy -v
# Show changes
git diff
- name: Commit and push changes