diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index 06bf3b6fdbfa..ba7f537b91cf 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -1,24 +1,24 @@ name: Clippy Test on: - push: - # Ignore bors branches, since they are covered by `clippy_bors.yml` - branches-ignore: - - auto - - try - # Don't run Clippy tests, when only text files were modified - paths-ignore: - - 'COPYRIGHT' - - 'LICENSE-*' - - '**.md' - - '**.txt' + # push: + # # Ignore bors branches, since they are covered by `clippy_bors.yml` + # branches-ignore: + # - auto + # - try + # # Don't run Clippy tests, when only text files were modified + # paths-ignore: + # - 'COPYRIGHT' + # - 'LICENSE-*' + # - '**.md' + # - '**.txt' pull_request: - # Don't run Clippy tests, when only text files were modified - paths-ignore: - - 'COPYRIGHT' - - 'LICENSE-*' - - '**.md' - - '**.txt' + # # Don't run Clippy tests, when only text files were modified + # paths-ignore: + # - 'COPYRIGHT' + # - 'LICENSE-*' + # - '**.md' + # - '**.txt' env: RUST_BACKTRACE: 1 @@ -38,6 +38,8 @@ jobs: runs-on: ubuntu-latest steps: + - run: echo '${{ toJSON(github) }}' + # Setup - name: Checkout uses: actions/checkout@v4 diff --git a/rust-toolchain b/rust-toolchain index dd8b9ece773e..d08df6ae45f0 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -1,3 +1,3 @@ [toolchain] -channel = "nightly-2024-05-30" +channel = "nightly-2024-06-12" components = ["cargo", "llvm-tools", "rust-src", "rust-std", "rustc", "rustc-dev", "rustfmt"]