diff options
| author | David Lönnhager <david.l@mullvad.net> | 2025-02-27 10:13:13 +0100 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2025-03-05 23:32:26 +0100 |
| commit | e90ea8ffe6a5a247f396f0418683a66d1c7abbc4 (patch) | |
| tree | f8c2fd51c33d7cf927e238a441ae057985e2d2f2 /.github/workflows | |
| parent | 81939bb9b2ae030c33a37590ec23a5e3f5c3dcee (diff) | |
| download | mullvadvpn-e90ea8ffe6a5a247f396f0418683a66d1c7abbc4.tar.xz mullvadvpn-e90ea8ffe6a5a247f396f0418683a66d1c7abbc4.zip | |
Switch to rustls for installer-downloader
This also increases the file size limit with around 1M
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/downloader.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/downloader.yml b/.github/workflows/downloader.yml index 9b25aa783b..c8c90716ae 100644 --- a/.github/workflows/downloader.yml +++ b/.github/workflows/downloader.yml @@ -38,7 +38,7 @@ jobs: env: # If the file is larger than this, a regression has probably been introduced. # You should think twice before increasing this limit. - MAX_BINARY_SIZE: 1572864 + MAX_BINARY_SIZE: 2621440 steps: - name: Checkout repository uses: actions/checkout@v4 @@ -63,7 +63,7 @@ jobs: env: # If the file is larger than this, a regression has probably been introduced. # You should think twice before increasing this limit. - MAX_BINARY_SIZE: 2097152 + MAX_BINARY_SIZE: 3145728 steps: - name: Checkout repository uses: actions/checkout@v4 |
