René's URL Explorer Experiment


Title: Executable `rustup` not found · Issue #2823 · pre-commit/pre-commit · GitHub

Open Graph Title: Executable `rustup` not found · Issue #2823 · pre-commit/pre-commit

X Title: Executable `rustup` not found · Issue #2823 · pre-commit/pre-commit

Description: search you tried in the issue tracker Executable rustup not found describe your issue Since pre-commit 3.2.0 our GitHub workflow is broken. This ins one of the last working runs: https://github.com/mixxxdj/mixxx/actions/runs/4448394360/j...

Open Graph Description: search you tried in the issue tracker Executable rustup not found describe your issue Since pre-commit 3.2.0 our GitHub workflow is broken. This ins one of the last working runs: https://github.com...

X Description: search you tried in the issue tracker Executable rustup not found describe your issue Since pre-commit 3.2.0 our GitHub workflow is broken. This ins one of the last working runs: https://github.com...

Opengraph URL: https://github.com/pre-commit/pre-commit/issues/2823

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Executable `rustup` not found","articleBody":"### search you tried in the issue tracker\n\nExecutable `rustup` not found\n\n### describe your issue\n\nSince pre-commit 3.2.0 our GitHub workflow is broken. \r\n\r\nThis ins one of the last working runs:\r\nhttps://github.com/mixxxdj/mixxx/actions/runs/4448394360/jobs/7811151308\r\nDownloading pre_commit-3.1.1-py2.py3-none-any.whl (202 kB)\r\n\r\nThis is a failing one:\r\nhttps://github.com/mixxxdj/mixxx/actions/runs/4451827087/jobs/7824682752\r\nDownloading pre_commit-3.2.0-py2.py3-none-any.whl (202 kB)\r\n\r\n\n\n### pre-commit --version\n\npre-commit 3.2.0\n\n### .pre-commit-config.yaml\n\n```yaml\n# This is the configuration file for the pre-commit framework, a simple way\r\n# to manage, install and run git hooks to catch common problems early on.\r\n# See https://pre-commit.com/ for details.\r\n#\r\n# If you have Python \u003e= 3.7 and python-pip installed, just run:\r\n#\r\n#     $ pip install --user pre-commit\r\n#     $ git clone https://github.com/your-fork-of/mixxx.git\r\n#     $ cd mixxx\r\n#     $ pre-commit install\r\n#     $ pre-commit install -t pre-push\r\n#\r\n# It will now run relevant hooks automatically on every `git commit` or\r\n# `git push` in the mixxx git repository.\r\n#\r\n# If you have a problems with a particular hook, you can use the `$SKIP`\r\n# environment variable to disable hooks:\r\n#\r\n#     $ SKIP=clang-format,end-of-file-fixer git commit\r\n#\r\n# This can also be used to separate logic changes and autoformatting into\r\n# two subsequent commits.\r\n#\r\n# Using the `$SKIP` var is preferable to using `git commit --no-verify`\r\n# because it won't prevent catching other, unrelated issues.\r\n\r\n# _anlz.h/_pdb.h: Header files generated by Kaitai Struct\r\nexclude: ^(lib/|src/test/.*data/).*|res/translations/.*\\.ts|src/.*_(anlz|pdb)\\.h$\r\nminimum_pre_commit_version: 2.21.0\r\ndefault_language_version:\r\n  python: python3\r\n  rust: 1.64.0\r\nrepos:\r\n  - repo: https://github.com/pre-commit/pre-commit-hooks\r\n    rev: v4.3.0\r\n    hooks:\r\n      - id: fix-byte-order-marker\r\n        exclude: ^.*(\\.cbproj|\\.groupproj|\\.props|\\.sln|\\.vcxproj|\\.vcxproj.filters)$\r\n      - id: check-case-conflict\r\n      - id: check-json\r\n      - id: check-merge-conflict\r\n      - id: check-xml\r\n      - id: check-yaml\r\n        exclude: ^\\.clang-format$\r\n      - id: end-of-file-fixer\r\n      - id: mixed-line-ending\r\n      - id: trailing-whitespace\r\n        exclude: \\.(c|cc|cxx|cpp|frag|glsl|h|hpp|hxx|ih|ispc|ipp|java|js|m|mm|proto|vert)$\r\n      - id: no-commit-to-branch\r\n        # protect main and any branch that has a semver-like name\r\n        args: [-b, main, -p, '^\\d+\\.\\d+(?:\\.\\d+)?$']\r\n  - repo: https://github.com/codespell-project/codespell\r\n    rev: v2.2.2\r\n    hooks:\r\n      - id: codespell\r\n        args:\r\n          [\r\n            --exclude-file,\r\n            .codespellignorelines,\r\n            --ignore-words,\r\n            .codespellignore,\r\n            --ignore-regex,\r\n            \"\\\\W(?:m_p*(?=[A-Z])|m_(?=\\\\w)|pp*(?=[A-Z])|k(?=[A-Z])|s_(?=\\\\w))\",\r\n          ]\r\n        exclude: ^(packaging/wix/LICENSE.rtf|src/dialog/dlgabout\\.cpp|.*\\.(?:pot?|ts|wxl|svg))$\r\n  - repo: https://github.com/pre-commit/mirrors-eslint\r\n    rev: v8.25.0\r\n    hooks:\r\n      - id: eslint\r\n        args: [--fix, --report-unused-disable-directives]\r\n        files: \\.m?js$\r\n        types: [file]\r\n        stages:\r\n          - commit\r\n          - manual\r\n        additional_dependencies:\r\n          - eslint@^v8.6.0\r\n          - eslint-plugin-jsdoc@^v37.5.0\r\n  - repo: local\r\n    hooks:\r\n      - id: clang-format\r\n        name: clang-format\r\n        description: \"Run clang-format in two passes (reformat, then break long lines)\"\r\n        entry: python tools/clang_format.py\r\n        require_serial: true\r\n        stages:\r\n          - commit\r\n          - manual\r\n        language: python\r\n        additional_dependencies:\r\n          - clang-format==14.0.6\r\n        files: \\.(c|cc|cxx|cpp|frag|glsl|h|hpp|hxx|ih|ispc|ipp|java|m|mm|proto|vert)$\r\n  - repo: https://github.com/psf/black\r\n    rev: 22.10.0\r\n    hooks:\r\n      - id: black\r\n        files: ^tools/.*$\r\n  - repo: https://github.com/pycqa/flake8\r\n    rev: \"5.0.4\"\r\n    hooks:\r\n      - id: flake8\r\n        files: ^tools/.*$\r\n        types: [text, python]\r\n  - repo: https://github.com/shellcheck-py/shellcheck-py\r\n    rev: v0.8.0.4\r\n    hooks:\r\n      - id: shellcheck\r\n  - repo: https://github.com/DavidAnson/markdownlint-cli2\r\n    rev: v0.5.1\r\n    hooks:\r\n      - id: markdownlint-cli2\r\n  - repo: https://github.com/python-jsonschema/check-jsonschema\r\n    rev: 0.18.3\r\n    hooks:\r\n      - id: check-github-workflows\r\n  - repo: https://github.com/pre-commit/mirrors-prettier\r\n    rev: v2.7.1\r\n    hooks:\r\n      - id: prettier\r\n        types: [yaml]\r\n  - repo: https://github.com/qarmin/qml_formatter.git\r\n    rev: 0.2.0\r\n    hooks:\r\n      - id: qml_formatter\r\n  - repo: local\r\n    hooks:\r\n      - id: qsscheck\r\n        name: qsscheck\r\n        description: Run qsscheck to detect broken QSS.\r\n        entry: python tools/qsscheck.py\r\n        args: [.]\r\n        pass_filenames: false\r\n        language: python\r\n        additional_dependencies:\r\n          - tinycss==0.4\r\n        types: [text]\r\n        files: ^.*\\.qss$\r\n        stages:\r\n          - commit\r\n          - manual\r\n      - id: changelog\r\n        name: changelog\r\n        description: Add missing links to changelog.\r\n        entry: python tools/changelog.py\r\n        language: python\r\n        types: [text]\r\n        files: ^CHANGELOG.md$\r\n      - id: qmllint\r\n        name: qmllint\r\n        entry: qmllint\r\n        pass_filenames: true\r\n        require_serial: true\r\n        language: system\r\n        types: [text]\r\n        files: ^.*\\.qml$\r\n      - id: metainfo\r\n        name: metainfo\r\n        description: Update AppStream metainfo releases from CHANGELOG.md.\r\n        entry: python tools/update_metainfo.py\r\n        pass_filenames: false\r\n        language: python\r\n        additional_dependencies:\r\n          - beautifulsoup4==4.11.1\r\n          - lxml==4.9.1\r\n          - Markdown==3.4.1\r\n        types: [text]\r\n        files: ^(CHANGELOG\\.md|res/linux/org\\.mixxx\\.Mixxx\\.metainfo.xml)$\n```\n\n\n### ~/.cache/pre-commit/pre-commit.log (if present)\n\n2023-03-18T11:16:24.8724175Z [INFO]\u001B[m Initializing environment for https://github.com/pre-commit/pre-commit-hooks.\r\n2023-03-18T11:16:25.3378859Z [INFO]\u001B[m Initializing environment for https://github.com/codespell-project/codespell.\r\n2023-03-18T11:16:25.8998370Z [INFO]\u001B[m Initializing environment for https://github.com/pre-commit/mirrors-eslint.\r\n2023-03-18T11:16:26.3373046Z [INFO]\u001B[m Initializing environment for https://github.com/pre-commit/mirrors-eslint:eslint@^v8.6.0,eslint-plugin-jsdoc@^v37.5.0.\r\n2023-03-18T11:16:26.7769485Z [INFO]\u001B[m Initializing environment for local:clang-format==14.0.6.\r\n2023-03-18T11:16:26.7823306Z [INFO]\u001B[m Initializing environment for https://github.com/psf/black.\r\n2023-03-18T11:16:27.4353970Z [INFO]\u001B[m Initializing environment for https://github.com/pycqa/flake8.\r\n2023-03-18T11:16:27.9719090Z [INFO]\u001B[m Initializing environment for https://github.com/shellcheck-py/shellcheck-py.\r\n2023-03-18T11:16:28.4303322Z [INFO]\u001B[m Initializing environment for https://github.com/DavidAnson/markdownlint-cli2.\r\n2023-03-18T11:16:28.9106462Z [INFO]\u001B[m Initializing environment for https://github.com/python-jsonschema/check-jsonschema.\r\n2023-03-18T11:16:29.5219475Z [INFO]\u001B[m Initializing environment for https://github.com/pre-commit/mirrors-prettier.\r\n2023-03-18T11:16:29.9463012Z [INFO]\u001B[m Initializing environment for https://github.com/pre-commit/mirrors-prettier:prettier@2.7.1.\r\n2023-03-18T11:16:30.3722936Z [INFO]\u001B[m Initializing environment for https://github.com/qarmin/qml_formatter.git.\r\n2023-03-18T11:16:30.7800010Z [INFO]\u001B[m Initializing environment for local:tinycss==0.4.\r\n2023-03-18T11:16:30.7845724Z [INFO]\u001B[m Initializing environment for local.\r\n2023-03-18T11:16:30.7890533Z [INFO]\u001B[m Initializing environment for local:beautifulsoup4==4.11.1,lxml==4.9.1,Markdown==3.4.1.\r\n2023-03-18T11:16:30.7935963Z [INFO]\u001B[m Installing environment for https://github.com/pre-commit/pre-commit-hooks.\r\n2023-03-18T11:16:30.7936430Z [INFO]\u001B[m Once installed this environment will be reused.\r\n2023-03-18T11:16:30.7937142Z [INFO]\u001B[m This may take a few minutes...\r\n2023-03-18T11:16:36.1315607Z [INFO]\u001B[m Installing environment for https://github.com/codespell-project/codespell.\r\n2023-03-18T11:16:36.1316105Z [INFO]\u001B[m Once installed this environment will be reused.\r\n2023-03-18T11:16:36.1316598Z [INFO]\u001B[m This may take a few minutes...\r\n2023-03-18T11:16:41.0677859Z [INFO]\u001B[m Installing environment for https://github.com/pre-commit/mirrors-eslint.\r\n2023-03-18T11:16:41.0678364Z [INFO]\u001B[m Once installed this environment will be reused.\r\n2023-03-18T11:16:41.0678749Z [INFO]\u001B[m This may take a few minutes...\r\n2023-03-18T11:16:52.1967027Z [INFO]\u001B[m Installing environment for local.\r\n2023-03-18T11:16:52.1967972Z [INFO]\u001B[m Once installed this environment will be reused.\r\n2023-03-18T11:16:52.1968731Z [INFO]\u001B[m This may take a few minutes...\r\n2023-03-18T11:16:54.9343036Z [INFO]\u001B[m Installing environment for https://github.com/psf/black.\r\n2023-03-18T11:16:54.9343514Z [INFO]\u001B[m Once installed this environment will be reused.\r\n2023-03-18T11:16:54.9343897Z [INFO]\u001B[m This may take a few minutes...\r\n2023-03-18T11:16:59.3853467Z [INFO]\u001B[m Installing environment for https://github.com/pycqa/flake8.\r\n2023-03-18T11:16:59.3853994Z [INFO]\u001B[m Once installed this environment will be reused.\r\n2023-03-18T11:16:59.3854348Z [INFO]\u001B[m This may take a few minutes...\r\n2023-03-18T11:17:01.9111743Z [INFO]\u001B[m Installing environment for https://github.com/shellcheck-py/shellcheck-py.\r\n2023-03-18T11:17:01.9112317Z [INFO]\u001B[m Once installed this environment will be reused.\r\n2023-03-18T11:17:01.9112658Z [INFO]\u001B[m This may take a few minutes...\r\n2023-03-18T11:17:04.9449677Z [INFO]\u001B[m Installing environment for https://github.com/DavidAnson/markdownlint-cli2.\r\n2023-03-18T11:17:04.9450176Z [INFO]\u001B[m Once installed this environment will be reused.\r\n2023-03-18T11:17:04.9450535Z [INFO]\u001B[m This may take a few minutes...\r\n2023-03-18T11:17:25.7010838Z [INFO]\u001B[m Installing environment for https://github.com/python-jsonschema/check-jsonschema.\r\n2023-03-18T11:17:25.7011350Z [INFO]\u001B[m Once installed this environment will be reused.\r\n2023-03-18T11:17:25.7011717Z [INFO]\u001B[m This may take a few minutes...\r\n2023-03-18T11:17:29.8214983Z [INFO]\u001B[m Installing environment for https://github.com/pre-commit/mirrors-prettier.\r\n2023-03-18T11:17:29.8215477Z [INFO]\u001B[m Once installed this environment will be reused.\r\n2023-03-18T11:17:29.8215817Z [INFO]\u001B[m This may take a few minutes...\r\n2023-03-18T11:17:36.7285087Z [INFO]\u001B[m Installing environment for https://github.com/qarmin/qml_formatter.git.\r\n2023-03-18T11:17:36.7285587Z [INFO]\u001B[m Once installed this environment will be reused.\r\n2023-03-18T11:17:36.7285924Z [INFO]\u001B[m This may take a few minutes...\r\n2023-03-18T11:17:37.1457698Z An unexpected error has occurred: CalledProcessError: command: ('rustup', 'toolchain', 'install', '--no-self-update', '1.64.0')\r\n2023-03-18T11:17:37.1458511Z return code: 1\r\n2023-03-18T11:17:37.1458692Z stdout:\r\n2023-03-18T11:17:37.1458924Z     Executable `rustup` not found\r\n2023-03-18T11:17:37.1459148Z stderr: (none)\r\n","author":{"url":"https://github.com/daschuer","@type":"Person","name":"daschuer"},"datePublished":"2023-03-20T21:08:07.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":2},"url":"https://github.com/2823/pre-commit/issues/2823"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:33286776-a536-7567-84a8-aea72b03e2c4
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idA3C8:2D74E4:126A856:19134F8:6A571822
html-safe-nonce99d3b58c4289b41c62d586d32e529d79e2acd3f48f783aebfd24c4b906506d90
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBM0M4OjJENzRFNDoxMjZBODU2OjE5MTM0Rjg6NkE1NzE4MjIiLCJ2aXNpdG9yX2lkIjoiOTIwMzM0Njg2OTU4NTM4NTUwNiIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac0a665d67fa642d411ac886f8b9caab97d40c32105ef875fdf92222d0c7bf50ab
hovercard-subject-tagissue:1632866609
github-keyboard-shortcutsrepository,issues,commits,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/pre-commit/pre-commit/2823/issue_layout
twitter:imagehttps://opengraph.githubassets.com/386780b0b9c18acd2ea4691099cb2378415b9750a4b6d95faf9db1f957fdebd0/pre-commit/pre-commit/issues/2823
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/386780b0b9c18acd2ea4691099cb2378415b9750a4b6d95faf9db1f957fdebd0/pre-commit/pre-commit/issues/2823
og:image:altsearch you tried in the issue tracker Executable rustup not found describe your issue Since pre-commit 3.2.0 our GitHub workflow is broken. This ins one of the last working runs: https://github.com...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamedaschuer
hostnamegithub.com
expected-hostnamegithub.com
None4e7a7296a3830877cf21a6ad2a972c9e618a48915e03966cf0c53eb08e5aad98
turbo-cache-controlno-preview
go-importgithub.com/pre-commit/pre-commit git https://github.com/pre-commit/pre-commit.git
octolytics-dimension-user_id6943086
octolytics-dimension-user_loginpre-commit
octolytics-dimension-repository_id17689377
octolytics-dimension-repository_nwopre-commit/pre-commit
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id17689377
octolytics-dimension-repository_network_root_nwopre-commit/pre-commit
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release2576d1f0198cf1588faf2edf27f1ed120903be10
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/pre-commit/pre-commit/issues/2823#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpre-commit%2Fpre-commit%2Fissues%2F2823
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpre-commit%2Fpre-commit%2Fissues%2F2823
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=pre-commit%2Fpre-commit
Reloadhttps://github.com/pre-commit/pre-commit/issues/2823
Reloadhttps://github.com/pre-commit/pre-commit/issues/2823
Reloadhttps://github.com/pre-commit/pre-commit/issues/2823
Please reload this pagehttps://github.com/pre-commit/pre-commit/issues/2823
pre-commit https://github.com/pre-commit
pre-commithttps://github.com/pre-commit/pre-commit
Please reload this pagehttps://github.com/pre-commit/pre-commit/issues/2823
Notifications https://github.com/login?return_to=%2Fpre-commit%2Fpre-commit
Fork 985 https://github.com/login?return_to=%2Fpre-commit%2Fpre-commit
Star 15.4k https://github.com/login?return_to=%2Fpre-commit%2Fpre-commit
Code https://github.com/pre-commit/pre-commit
Issues 22 https://github.com/pre-commit/pre-commit/issues
Pull requests 13 https://github.com/pre-commit/pre-commit/pulls
Actions https://github.com/pre-commit/pre-commit/actions
Security and quality 0 https://github.com/pre-commit/pre-commit/security
Insights https://github.com/pre-commit/pre-commit/pulse
Code https://github.com/pre-commit/pre-commit
Issues https://github.com/pre-commit/pre-commit/issues
Pull requests https://github.com/pre-commit/pre-commit/pulls
Actions https://github.com/pre-commit/pre-commit/actions
Security and quality https://github.com/pre-commit/pre-commit/security
Insights https://github.com/pre-commit/pre-commit/pulse
#2827https://github.com/pre-commit/pre-commit/pull/2827
Executable rustup not foundhttps://github.com/pre-commit/pre-commit/issues/2823#top
#2827https://github.com/pre-commit/pre-commit/pull/2827
https://github.com/daschuer
daschuerhttps://github.com/daschuer
on Mar 20, 2023https://github.com/pre-commit/pre-commit/issues/2823#issue-1632866609
https://github.com/mixxxdj/mixxx/actions/runs/4448394360/jobs/7811151308https://github.com/mixxxdj/mixxx/actions/runs/4448394360/jobs/7811151308
https://github.com/mixxxdj/mixxx/actions/runs/4451827087/jobs/7824682752https://github.com/mixxxdj/mixxx/actions/runs/4451827087/jobs/7824682752
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.