File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,14 +27,14 @@ jobs:
2727 run :
2828 working-directory : clients/mobile
2929 steps :
30- - uses : actions/checkout@v4
30+ - uses : actions/checkout@v7
3131
32- - uses : actions/setup-java@v4
32+ - uses : actions/setup-java@v5
3333 with :
3434 distribution : zulu
3535 java-version : ' 17'
3636
37- - uses : actions/setup-node@v4
37+ - uses : actions/setup-node@v7
3838 with :
3939 node-version : 22
4040
5454 run : yarn install --no-immutable
5555
5656 - name : Decode release keystore
57- uses : timheuer/base64-to-file@v1
57+ uses : timheuer/base64-to-file@v2
5858 with :
5959 fileName : release.keystore
6060 fileDir : ${{ github.workspace }}/clients/mobile/android/app/
7373 ./gradlew bundleRelease
7474
7575 - name : Upload artifacts
76- uses : actions/upload-artifact@v4
76+ uses : actions/upload-artifact@v7
7777 with :
7878 name : cumulusvpn-android
7979 path : |
8383 # On a tag, attach the AAB (Play upload) + APK (sideload) to a GitHub Release.
8484 - name : Publish GitHub Release
8585 if : startsWith(github.ref, 'refs/tags/')
86- uses : softprops/action-gh-release@v2
86+ uses : softprops/action-gh-release@v3
8787 with :
8888 files : |
8989 clients/mobile/android/app/build/outputs/bundle/release/app-release.aab
Original file line number Diff line number Diff line change @@ -28,10 +28,10 @@ jobs:
2828 working-directory : gateway
2929 steps :
3030 - name : Checkout
31- uses : actions/checkout@v4
31+ uses : actions/checkout@v7
3232
3333 - name : Setup Go
34- uses : actions/setup-go@v5
34+ uses : actions/setup-go@v7
3535 with :
3636 go-version : ' 1.25'
3737 cache-dependency-path : gateway/go.sum
@@ -66,16 +66,16 @@ jobs:
6666 continue-on-error : true
6767 steps :
6868 - name : Checkout
69- uses : actions/checkout@v4
69+ uses : actions/checkout@v7
7070
7171 - name : Setup Go
72- uses : actions/setup-go@v5
72+ uses : actions/setup-go@v7
7373 with :
7474 go-version : ' 1.25'
7575 cache-dependency-path : gateway/go.sum
7676
7777 - name : golangci-lint
78- uses : golangci/golangci-lint-action@v8
78+ uses : golangci/golangci-lint-action@v9
7979 with :
8080 # v8 installs golangci-lint v2 (built with a current Go toolchain, so it
8181 # can analyze our `go 1.25` target — v1.64.x was built with go1.24 and
Original file line number Diff line number Diff line change @@ -53,10 +53,10 @@ jobs:
5353 pkg : ' @cumulusvpn/desktop'
5454 steps :
5555 - name : Checkout
56- uses : actions/checkout@v4
56+ uses : actions/checkout@v7
5757
5858 - name : Setup Node
59- uses : actions/setup-node@v4
59+ uses : actions/setup-node@v7
6060 with :
6161 node-version : 22
6262
@@ -99,10 +99,10 @@ jobs:
9999 working-directory : clients/mobile
100100 steps :
101101 - name : Checkout
102- uses : actions/checkout@v4
102+ uses : actions/checkout@v7
103103
104104 - name : Setup Node
105- uses : actions/setup-node@v4
105+ uses : actions/setup-node@v7
106106 with :
107107 node-version : 22
108108
@@ -145,10 +145,10 @@ jobs:
145145 working-directory : deploy
146146 steps :
147147 - name : Checkout
148- uses : actions/checkout@v4
148+ uses : actions/checkout@v7
149149
150150 - name : Setup Node
151- uses : actions/setup-node@v4
151+ uses : actions/setup-node@v7
152152 with :
153153 node-version : 22
154154
Original file line number Diff line number Diff line change 2525 build :
2626 runs-on : macos-latest # Apple Silicon runner
2727 steps :
28- - uses : actions/checkout@v4
28+ - uses : actions/checkout@v7
2929
30- - uses : actions/setup-node@v4
30+ - uses : actions/setup-node@v7
3131 with :
3232 node-version : 22
3333
4949 shell : bash
5050
5151 - name : Build + release (tauri-action)
52- uses : tauri-apps/tauri-action@v0
52+ uses : tauri-apps/tauri-action@v1
5353 env :
5454 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
5555 TAURI_SIGNING_PRIVATE_KEY : ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
Original file line number Diff line number Diff line change @@ -40,21 +40,21 @@ jobs:
4040 build :
4141 runs-on : ubuntu-latest
4242 steps :
43- - uses : actions/checkout@v4
43+ - uses : actions/checkout@v7
4444
45- - uses : docker/setup-buildx-action@v3
45+ - uses : docker/setup-buildx-action@v4
4646
4747 - name : Log in to GHCR
4848 if : github.event_name != 'pull_request'
49- uses : docker/login-action@v3
49+ uses : docker/login-action@v4
5050 with :
5151 registry : ghcr.io
5252 username : ${{ github.actor }}
5353 password : ${{ secrets.GITHUB_TOKEN }}
5454
5555 - name : Compute tags & labels
5656 id : meta
57- uses : docker/metadata-action@v5
57+ uses : docker/metadata-action@v6
5858 with :
5959 images : ${{ env.IMAGE }}
6060 tags : |
6666 type=match,pattern=gateway-v(.*),group=1
6767
6868 - name : Build and push
69- uses : docker/build-push-action@v6
69+ uses : docker/build-push-action@v7
7070 with :
7171 context : ./gateway
7272 # linux/amd64 covers the overwhelmingly x86-64 Flux fleet. Add
Original file line number Diff line number Diff line change @@ -34,10 +34,10 @@ jobs:
3434 url : ${{ steps.deployment.outputs.page_url }}
3535 runs-on : ubuntu-latest
3636 steps :
37- - uses : actions/checkout@v4
38- - uses : actions/configure-pages@v5
39- - uses : actions/upload-pages-artifact@v3
37+ - uses : actions/checkout@v7
38+ - uses : actions/configure-pages@v6
39+ - uses : actions/upload-pages-artifact@v5
4040 with :
4141 path : clients/web/landing
4242 - id : deployment
43- uses : actions/deploy-pages@v4
43+ uses : actions/deploy-pages@v5
You can’t perform that action at this time.
0 commit comments