Skip to content

Commit 69ed501

Browse files
committed
Fix: update to dist 0.29.0.
1 parent 631d46c commit 69ed501

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,13 @@ jobs:
5858
steps:
5959
- uses: actions/checkout@v4
6060
with:
61+
persist-credentials: false
6162
submodules: recursive
6263
- name: Install dist
6364
# we specify bash to get pipefail; it guards against the `curl` command
6465
# failing. otherwise `sh` won't catch that `curl` returned non-0
6566
shell: bash
66-
run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.28.2/cargo-dist-installer.sh | sh"
67+
run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.29.0/cargo-dist-installer.sh | sh"
6768
- name: Cache dist
6869
uses: actions/upload-artifact@v4
6970
with:
@@ -118,6 +119,7 @@ jobs:
118119
git config --global core.longpaths true
119120
- uses: actions/checkout@v4
120121
with:
122+
persist-credentials: false
121123
submodules: recursive
122124
- uses: actions/setup-node@v4
123125
with:
@@ -186,6 +188,7 @@ jobs:
186188
steps:
187189
- uses: actions/checkout@v4
188190
with:
191+
persist-credentials: false
189192
submodules: recursive
190193
- name: Install cached dist
191194
uses: actions/download-artifact@v4
@@ -240,6 +243,7 @@ jobs:
240243
steps:
241244
- uses: actions/checkout@v4
242245
with:
246+
persist-credentials: false
243247
submodules: recursive
244248
- name: Install cached dist
245249
uses: actions/download-artifact@v4
@@ -305,4 +309,5 @@ jobs:
305309
steps:
306310
- uses: actions/checkout@v4
307311
with:
312+
persist-credentials: false
308313
submodules: recursive

server/dist-workspace.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ members = ["cargo:."]
2525
# Config for 'dist'
2626
[dist]
2727
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
28-
cargo-dist-version = "0.28.2"
28+
cargo-dist-version = "0.29.0"
2929
# Extra static files to include in each App (path relative to this Cargo.toml's dir)
3030
include = ["log4rs.yml", "hashLocations.json", "../client/static"]
3131
# The installers to generate for each app

0 commit comments

Comments
 (0)