Skip to content

Commit 079a1ea

Browse files
committed
release: v1.13.3
Reverts the actions/upload-artifact v6→v7 and actions/download-artifact v7→v8 bumps from v1.13.2. cargo-dist 0.30.4 generates release.yml from dist-workspace.toml and rejects manual edits — its 'plan' step does a workflow-drift check and aborts if release.yml differs from what it would generate. v1.13.2 published to crates.io fine, but binaries + Homebrew formula were skipped. This release ships those artifacts. To bump these action versions, the proper path is to bump cargo-dist itself in dist-workspace.toml.
1 parent 20c479f commit 079a1ea

4 files changed

Lines changed: 20 additions & 15 deletions

File tree

.github/workflows/release.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
shell: bash
6767
run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.30.4/cargo-dist-installer.sh | sh"
6868
- name: Cache dist
69-
uses: actions/upload-artifact@v7
69+
uses: actions/upload-artifact@v6
7070
with:
7171
name: cargo-dist-cache
7272
path: ~/.cargo/bin/dist
@@ -82,7 +82,7 @@ jobs:
8282
cat plan-dist-manifest.json
8383
echo "manifest=$(jq -c "." plan-dist-manifest.json)" >> "$GITHUB_OUTPUT"
8484
- name: "Upload dist-manifest.json"
85-
uses: actions/upload-artifact@v7
85+
uses: actions/upload-artifact@v6
8686
with:
8787
name: artifacts-plan-dist-manifest
8888
path: plan-dist-manifest.json
@@ -131,7 +131,7 @@ jobs:
131131
run: ${{ matrix.install_dist.run }}
132132
# Get the dist-manifest
133133
- name: Fetch local artifacts
134-
uses: actions/download-artifact@v8
134+
uses: actions/download-artifact@v7
135135
with:
136136
pattern: artifacts-*
137137
path: target/distrib/
@@ -158,7 +158,7 @@ jobs:
158158
159159
cp dist-manifest.json "$BUILD_MANIFEST_NAME"
160160
- name: "Upload artifacts"
161-
uses: actions/upload-artifact@v7
161+
uses: actions/upload-artifact@v6
162162
with:
163163
name: artifacts-build-local-${{ join(matrix.targets, '_') }}
164164
path: |
@@ -180,14 +180,14 @@ jobs:
180180
persist-credentials: false
181181
submodules: recursive
182182
- name: Install cached dist
183-
uses: actions/download-artifact@v8
183+
uses: actions/download-artifact@v7
184184
with:
185185
name: cargo-dist-cache
186186
path: ~/.cargo/bin/
187187
- run: chmod +x ~/.cargo/bin/dist
188188
# Get all the local artifacts for the global tasks to use (for e.g. checksums)
189189
- name: Fetch local artifacts
190-
uses: actions/download-artifact@v8
190+
uses: actions/download-artifact@v7
191191
with:
192192
pattern: artifacts-*
193193
path: target/distrib/
@@ -205,7 +205,7 @@ jobs:
205205
206206
cp dist-manifest.json "$BUILD_MANIFEST_NAME"
207207
- name: "Upload artifacts"
208-
uses: actions/upload-artifact@v7
208+
uses: actions/upload-artifact@v6
209209
with:
210210
name: artifacts-build-global
211211
path: |
@@ -230,14 +230,14 @@ jobs:
230230
persist-credentials: false
231231
submodules: recursive
232232
- name: Install cached dist
233-
uses: actions/download-artifact@v8
233+
uses: actions/download-artifact@v7
234234
with:
235235
name: cargo-dist-cache
236236
path: ~/.cargo/bin/
237237
- run: chmod +x ~/.cargo/bin/dist
238238
# Fetch artifacts from scratch-storage
239239
- name: Fetch artifacts
240-
uses: actions/download-artifact@v8
240+
uses: actions/download-artifact@v7
241241
with:
242242
pattern: artifacts-*
243243
path: target/distrib/
@@ -250,14 +250,14 @@ jobs:
250250
cat dist-manifest.json
251251
echo "manifest=$(jq -c "." dist-manifest.json)" >> "$GITHUB_OUTPUT"
252252
- name: "Upload dist-manifest.json"
253-
uses: actions/upload-artifact@v7
253+
uses: actions/upload-artifact@v6
254254
with:
255255
# Overwrite the previous copy
256256
name: artifacts-dist-manifest
257257
path: dist-manifest.json
258258
# Create a GitHub Release while uploading all files to it
259259
- name: "Download GitHub Artifacts"
260-
uses: actions/download-artifact@v8
260+
uses: actions/download-artifact@v7
261261
with:
262262
pattern: artifacts-*
263263
path: artifacts
@@ -297,7 +297,7 @@ jobs:
297297
token: ${{ secrets.HOMEBREW_TAP_TOKEN }}
298298
# So we have access to the formula
299299
- name: Fetch homebrew formulae
300-
uses: actions/download-artifact@v8
300+
uses: actions/download-artifact@v7
301301
with:
302302
pattern: artifacts-*
303303
path: Formula/

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.13.3] - 2026-05-04
11+
12+
### Fixed
13+
14+
- **Release workflow**: Revert `actions/upload-artifact` v7 → v6 and `actions/download-artifact` v8 → v7 in `release.yml` to match what cargo-dist 0.30.4 generates. The v1.13.2 release blocked cargo-dist's `plan` step (workflow drift check); v1.13.2 still published to crates.io but binary artifacts and Homebrew formula were skipped. v1.13.3 ships those.
15+
1016
## [1.13.2] - 2026-05-04
1117

1218
### Changed
1319

1420
- **Dependency bumps** (patch-level): `regex` 1.12.2 → 1.12.3, `memchr` 2.7.6 → 2.8.0, `tempfile` 3.24.0 → 3.25.0, `clap` 4.5.57 → 4.5.60
15-
- **CI: GitHub Actions** bumped: `actions/upload-artifact` v6 → v7, `actions/download-artifact` v7 → v8
1621

1722
### Fixed
1823

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ resolver = "2"
44

55
[package]
66
name = "sql-splitter"
7-
version = "1.13.2"
7+
version = "1.13.3"
88
edition = "2021"
99
authors = ["Helge Sverre <helge.sverre@gmail.com>"]
1010
description = "High-performance CLI tool for splitting large SQL dump files into individual table files"

0 commit comments

Comments
 (0)