We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a99d47 commit 71e5ed8Copy full SHA for 71e5ed8
2 files changed
crates/vite_global_cli/src/commands/release/first_publish.rs
@@ -894,6 +894,7 @@ mod tests {
894
let created = std::fs::read_to_string(cwd.join(".github/workflows/publish.yml")).unwrap();
895
assert!(guidance.workflow_template_created);
896
assert!(created.contains("workflow_dispatch:"));
897
+ assert!(created.contains("uses: actions/checkout@v6"));
898
assert!(created.contains("<default-branch>"));
899
assert!(created.contains("<release-tag-pattern>"));
900
assert!(created.contains("run: corepack enable"));
crates/vite_global_cli/src/commands/release/templates/publish.yml
@@ -24,7 +24,7 @@ jobs:
24
runs-on: ubuntu-latest
25
steps:
26
- name: Checkout
27
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
28
with:
29
fetch-depth: 0
30
fetch-tags: true
0 commit comments