From 528d1eae654f5f9754811c3292e29028751f0525 Mon Sep 17 00:00:00 2001 From: Greg Johnston Date: Thu, 1 Aug 2024 14:48:52 -0400 Subject: [PATCH] chore(ci): update nightly --- .github/workflows/ci-semver.yml | 4 ++-- .github/workflows/ci.yml | 2 +- leptos_macro/Makefile.toml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-semver.yml b/.github/workflows/ci-semver.yml index 572d57531..6535c035f 100644 --- a/.github/workflows/ci-semver.yml +++ b/.github/workflows/ci-semver.yml @@ -15,7 +15,7 @@ jobs: test: needs: [get-leptos-changed] if: needs.get-leptos-changed.outputs.leptos_changed == 'true' - name: Run semver check (nightly-2024-04-14) + name: Run semver check (nightly-2024-07-21) runs-on: ubuntu-latest steps: @@ -25,4 +25,4 @@ jobs: - name: Semver Checks uses: obi1kenobi/cargo-semver-checks-action@v2 with: - rust-toolchain: nightly-2024-04-14 + rust-toolchain: nightly-2024-07-21 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b5810ead2..1d5f54426 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,4 +40,4 @@ jobs: with: directory: ${{ matrix.directory }} cargo_make_task: "ci" - toolchain: nightly-2024-04-14 + toolchain: nightly-2024-07-21 diff --git a/leptos_macro/Makefile.toml b/leptos_macro/Makefile.toml index b504b912a..4235fc4d6 100644 --- a/leptos_macro/Makefile.toml +++ b/leptos_macro/Makefile.toml @@ -11,13 +11,13 @@ dependencies = [ [tasks.test-leptos_macro-example] description = "Tests the leptos_macro/example to check if macro handles doc comments correctly" command = "cargo" -args = ["+nightly-2024-04-14", "test", "--doc"] +args = ["+nightly-2024-07-21", "test", "--doc"] cwd = "example" install_crate = false [tasks.doc-leptos_macro-example] description = "Docs the leptos_macro/example to check if macro handles doc comments correctly" command = "cargo" -args = ["+nightly-2024-04-14", "doc"] +args = ["+nightly-2024-07-21", "doc"] cwd = "example" install_crate = false