Skip to content

Commit add26af

Browse files
authored
BoringTun (#597)
1 parent 6ae00fe commit add26af

File tree

11 files changed

+907
-530
lines changed

11 files changed

+907
-530
lines changed

.github/workflows/release.yaml

Lines changed: 0 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -5,40 +5,6 @@ on:
55
- v*.*.*
66

77
jobs:
8-
build-wireguard-go:
9-
strategy:
10-
fail-fast: false
11-
matrix:
12-
architecture: [arm64, amd64]
13-
runs-on: [self-hosted, macOS]
14-
steps:
15-
- uses: actions/checkout@v5
16-
with:
17-
repository: WireGuard/wireguard-go
18-
ref: master
19-
fetch-depth: 0
20-
- name: Set up Go
21-
uses: actions/setup-go@v5
22-
with:
23-
go-version: "1.24"
24-
- name: Build wireguard-go binary
25-
run: make
26-
env:
27-
GOOS: darwin
28-
GOARCH: ${{ matrix.architecture }}
29-
- name: Upload binary artifact arm64
30-
if: matrix.architecture == 'arm64'
31-
uses: actions/upload-artifact@v4
32-
with:
33-
name: wireguard-go-aarch64-apple-darwin
34-
path: wireguard-go
35-
- name: Upload binary artifact amd64
36-
if: matrix.architecture == 'amd64'
37-
uses: actions/upload-artifact@v4
38-
with:
39-
name: wireguard-go-x86_64-apple-darwin
40-
path: wireguard-go
41-
428
create-release:
439
name: create-release
4410
runs-on: self-hosted
@@ -221,7 +187,6 @@ jobs:
221187
build-macos:
222188
needs:
223189
- create-release
224-
- build-wireguard-go
225190
strategy:
226191
fail-fast: false
227192
matrix:
@@ -267,15 +232,6 @@ jobs:
267232
run: brew install protobuf
268233
- name: Install ARM target
269234
run: rustup target add aarch64-apple-darwin
270-
- name: Download wireguard-go binary
271-
uses: actions/download-artifact@v4
272-
with:
273-
name: wireguard-go-${{ matrix.target }}
274-
path: src-tauri/resources-macos/binaries
275-
- name: Rename wireguard-go binary
276-
run: |
277-
ls -l src-tauri/resources-macos/binaries
278-
mv src-tauri/resources-macos/binaries/wireguard-go src-tauri/resources-macos/binaries/wireguard-go-${{ matrix.target }}
279235
- name: Unlock keychain
280236
run: security -v unlock-keychain -p "${{ secrets.KEYCHAIN_PASSWORD }}" /Users/admin/Library/Keychains/login.keychain
281237
- name: Build app

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,14 @@
8383
"lodash-es": "^4.17.21",
8484
"merge-refs": "^2.0.0",
8585
"millify": "^6.1.0",
86-
"motion": "^12.23.21",
86+
"motion": "^12.23.22",
8787
"p-timeout": "^6.1.4",
8888
"prop-types": "^15.8.1",
8989
"radash": "^12.1.1",
90-
"react": "^19.1.1",
90+
"react": "^19.2.0",
9191
"react-auth-code-input": "^3.2.1",
9292
"react-click-away-listener": "^2.4.0",
93-
"react-dom": "^19.1.1",
93+
"react-dom": "^19.2.0",
9494
"react-hook-form": "^7.63.0",
9595
"react-loading-skeleton": "^3.5.0",
9696
"react-markdown": "^10.1.0",
@@ -114,10 +114,10 @@
114114
"@tauri-apps/cli": "^2.8.4",
115115
"@types/file-saver": "^2.0.7",
116116
"@types/lodash-es": "^4.17.12",
117-
"@types/node": "^24.5.2",
118-
"@types/react": "^19.1.13",
119-
"@types/react-dom": "^19.1.9",
120-
"@vitejs/plugin-react": "^5.0.3",
117+
"@types/node": "^24.6.2",
118+
"@types/react": "^19.2.0",
119+
"@types/react-dom": "^19.2.0",
120+
"@vitejs/plugin-react": "^5.0.4",
121121
"@vitejs/plugin-react-swc": "^4.1.0",
122122
"autoprefixer": "^10.4.21",
123123
"npm-run-all": "^4.1.5",
@@ -126,8 +126,8 @@
126126
"sass": "~1.92.1",
127127
"typedoc": "^0.28.13",
128128
"typesafe-i18n": "^5.26.2",
129-
"typescript": "^5.9.2",
130-
"vite": "^7.1.7"
129+
"typescript": "^5.9.3",
130+
"vite": "^7.1.8"
131131
},
132132
"volta": {
133133
"node": "20.5.1"

0 commit comments

Comments
 (0)