diff --git a/.github/workflows/depsreview.yml b/.github/workflows/depsreview.yml index adfaa7bc7b8f..6155e0fe2fbf 100644 --- a/.github/workflows/depsreview.yml +++ b/.github/workflows/depsreview.yml @@ -24,4 +24,4 @@ jobs: - name: 'Checkout Repository' uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: 'Dependency Review' - uses: actions/dependency-review-action@01bc87099ba56df1e897b6874784491ea6309bc4 # v3.1.4 + uses: actions/dependency-review-action@c74b580d73376b7750d3d2a50bfb8adc2c937507 # v3.1.5 diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index ddd01d99aab6..cb17b1d21fda 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -40,7 +40,7 @@ jobs: fetch-depth: 2 # needed to diff changed files - id: files name: Get changed files - uses: tj-actions/changed-files@94549999469dbfa032becf298d95c87a14c34394 #v40.2.2 + uses: tj-actions/changed-files@62f4729b5df35e6e0e01265fa70a82ccaf196b4b #v41.1.1 with: files_ignore: '**.md' - id: docs_only_check @@ -78,7 +78,7 @@ jobs: uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Setup Go # needed for some of the Makefile evaluations, even if building happens in Docker if: (needs.docs_only_check.outputs.docs_only != 'true') - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 + uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 with: go-version: ${{ env.GO_VERSION }} check-latest: true diff --git a/.github/workflows/gitlab.yml b/.github/workflows/gitlab.yml index 4084a0d4ecc6..be76c2ccac51 100644 --- a/.github/workflows/gitlab.yml +++ b/.github/workflows/gitlab.yml @@ -41,7 +41,7 @@ jobs: with: ref: ${{ github.event.pull_request.head.sha || github.sha }} # head SHA if PR, else fallback to push SHA - name: Setup Go - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 + uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 with: go-version: ${{ env.GO_VERSION }} check-latest: true @@ -52,7 +52,7 @@ jobs: echo "go-mod=$(go env GOMODCACHE)" >> "$GITHUB_OUTPUT" - name: Cache builds # https://github.com/mvdan/github-actions-golang#how-do-i-set-up-caching-between-builds - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 #v3.3.2 + uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c #v3.3.3 with: path: | ${{ steps.go-cache-paths.outputs.go-build }} diff --git a/.github/workflows/goreleaser.yaml b/.github/workflows/goreleaser.yaml index 41ad2ea1665d..272691482d55 100644 --- a/.github/workflows/goreleaser.yaml +++ b/.github/workflows/goreleaser.yaml @@ -43,7 +43,7 @@ jobs: with: fetch-depth: 0 - name: Set up Go - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v2.2.0 + uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v2.2.0 with: go-version: ${{ env.GO_VERSION }} check-latest: true diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 5be19ddddae4..cc376bf54aee 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -52,7 +52,7 @@ jobs: with: ref: ${{ github.event.pull_request.head.sha }} - name: Setup Go - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 + uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 with: go-version: ${{ env.GO_VERSION }} check-latest: true @@ -63,7 +63,7 @@ jobs: echo "go-mod=$(go env GOMODCACHE)" >> "$GITHUB_OUTPUT" - name: Cache builds # https://github.com/mvdan/github-actions-golang#how-do-i-set-up-caching-between-builds - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 #v3.3.2 + uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c #v3.3.3 with: path: | ${{ steps.go-cache-paths.outputs.go-build }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index cd26d590deae..db07113c6334 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -23,7 +23,7 @@ jobs: with: egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 + - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 with: go-version: ${{ env.GO_VERSION }} cache: false # golangci-lint maintains its own cache diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d24685c62f62..78f0e36ef5c0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -43,7 +43,7 @@ jobs: - name: Clone the code uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Setup Go - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 + uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 with: go-version: ${{ env.GO_VERSION }} check-latest: true @@ -54,7 +54,7 @@ jobs: echo "go-mod=$(go env GOMODCACHE)" >> "$GITHUB_OUTPUT" - name: Cache builds # https://github.com/mvdan/github-actions-golang#how-do-i-set-up-caching-between-builds - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 #v3.3.2 + uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c #v3.3.3 with: path: | ${{ steps.go-cache-paths.outputs.go-build }} @@ -106,7 +106,7 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Cache builds # https://github.com/mvdan/github-actions-golang#how-do-i-set-up-caching-between-builds - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3.3.3 with: path: | ~/go/pkg/mod @@ -121,7 +121,7 @@ jobs: with: fetch-depth: 0 - name: Setup Go - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v2.2.0 + uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v2.2.0 with: go-version: ${{ env.GO_VERSION }} check-latest: true @@ -149,7 +149,7 @@ jobs: - name: Clone the code uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Setup Go - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 + uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 with: go-version: ${{ env.GO_VERSION }} check-latest: true @@ -186,7 +186,7 @@ jobs: with: fetch-depth: 0 - name: Setup Go - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v2.2.0 + uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v2.2.0 with: go-version: ${{ env.GO_VERSION }} check-latest: true @@ -226,7 +226,7 @@ jobs: egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs - name: Cache builds # https://github.com/mvdan/github-actions-golang#how-do-i-set-up-caching-between-builds - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3.3.3 with: path: | ~/go/pkg/mod @@ -239,7 +239,7 @@ jobs: - name: Clone the code uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Setup Go - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 + uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 with: go-version: ${{ env.GO_VERSION }} check-latest: true @@ -266,7 +266,7 @@ jobs: - name: Cache builds # https://github.com/mvdan/github-actions-golang#how-do-i-set-up-caching-between-builds - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3.3.3 with: path: | ~/go/pkg/mod @@ -281,7 +281,7 @@ jobs: with: fetch-depth: 0 - name: Setup Go - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v2.2.0 + uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v2.2.0 with: go-version: ${{ env.GO_VERSION }} check-latest: true @@ -313,7 +313,7 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Cache builds # https://github.com/mvdan/github-actions-golang#how-do-i-set-up-caching-between-builds - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3.3.3 with: path: | ~/go/pkg/mod @@ -328,7 +328,7 @@ jobs: with: fetch-depth: 0 - name: Setup Go - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v2.2.0 + uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v2.2.0 with: go-version: ${{ env.GO_VERSION }} check-latest: true @@ -363,7 +363,7 @@ jobs: with: fetch-depth: 0 - name: Setup Go - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v2.2.0 + uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v2.2.0 with: go-version: ${{ env.GO_VERSION }} check-latest: true @@ -389,7 +389,7 @@ jobs: egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v2.2.0 + - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v2.2.0 with: go-version: ${{ env.GO_VERSION }} check-latest: true diff --git a/.github/workflows/publishimage.yml b/.github/workflows/publishimage.yml index 4d0fb9ef6bcf..0d5c956e00a5 100644 --- a/.github/workflows/publishimage.yml +++ b/.github/workflows/publishimage.yml @@ -44,7 +44,7 @@ jobs: with: fetch-depth: 0 - name: Setup Go - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe + uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 with: go-version: ${{ env.GO_VERSION }} check-latest: true @@ -61,7 +61,7 @@ jobs: make install make scorecard-ko - name: Install Cosign - uses: sigstore/cosign-installer@1fc5bd396d372bee37d608f955b336615edf79c8 + uses: sigstore/cosign-installer@9614fae9e5c5eddabb09f90a270fcb487c9f7149 - name: Sign image run: | cosign sign --yes ghcr.io/${{github.repository_owner}}/scorecard/v4:${{ github.sha }} diff --git a/.github/workflows/scdiff.yml b/.github/workflows/scdiff.yml index ba809e28a2eb..3221f2ab5454 100644 --- a/.github/workflows/scdiff.yml +++ b/.github/workflows/scdiff.yml @@ -82,7 +82,7 @@ jobs: with: ref: ${{ steps.config.outputs.base }} - name: Setup Go - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 + uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 with: go-version: ${{ env.GO_VERSION }} check-latest: true diff --git a/.github/workflows/scorecard-analysis.yml b/.github/workflows/scorecard-analysis.yml index 0a5c76e6dd8a..b0da887493dd 100644 --- a/.github/workflows/scorecard-analysis.yml +++ b/.github/workflows/scorecard-analysis.yml @@ -40,7 +40,7 @@ jobs: # https://docs.github.com/en/actions/advanced-guides/storing-workflow-data-as-artifacts # Optional. - name: "Upload artifact" - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v3 with: name: SARIF file path: results.sarif diff --git a/.github/workflows/slsa-goreleaser.yml b/.github/workflows/slsa-goreleaser.yml index b08a2abf9f6b..6b584eb10669 100644 --- a/.github/workflows/slsa-goreleaser.yml +++ b/.github/workflows/slsa-goreleaser.yml @@ -47,12 +47,12 @@ jobs: uses: slsa-framework/slsa-verifier/actions/installer@v2.4.1 - name: Download the artifact - uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 + uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1 with: name: "${{ needs.build.outputs.go-binary-name }}.intoto.jsonl" - name: Download the artifact - uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 + uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1 with: name: ${{ needs.build.outputs.go-binary-name }} diff --git a/.gitignore b/.gitignore index 8c8cf9eba59f..9b53679705c1 100644 --- a/.gitignore +++ b/.gitignore @@ -53,3 +53,8 @@ githubrepo.tar.gz # goreleaser dist/* + +# scdiff, ensure the files detailed in RELEASE.md aren't committed +repos.txt +oldRelease.json +newRelease.json diff --git a/README.md b/README.md index b876a764daeb..08febe4bec10 100644 --- a/README.md +++ b/README.md @@ -517,7 +517,7 @@ For a guide to the checks you should use when getting started, see the [beginner [Two-factor Authentication (2FA)](https://docs.github.com/en/authentication/securing-your-account-with-two-factor-authentication-2fa/about-two-factor-authentication) adds an extra layer of security when logging into websites or apps. 2FA protects your account if your password is compromised by requiring a second form of authentication, such as codes sent via SMS or authentication app, or touching a physical security key. -We strongly recommend that you enable 2FA on GitHub and any important account where it is available. 2FA is not a Scorecard check because GitHub does not make that data about user accounts public. Arguably, this data should always remain private, since accounts without 2FA are so vulnerable to attack. +We strongly recommend that you enable 2FA on any important accounts where it is available. 2FA is not a Scorecard check because GitHub and GitLab do not make that data about user accounts public. Arguably, this data should always remain private, since accounts without 2FA are so vulnerable to attack. Though it is not an official check, we urge all project maintainers to enable 2FA to protect their projects from compromise. @@ -585,9 +585,9 @@ Artifact | Link ----------------------------- | ---- Scorecard Dev Forum | [ossf-scorecard-dev@](https://groups.google.com/g/ossf-scorecard-dev) Scorecard Announcements Forum | [ossf-scorecard-announce@](https://groups.google.com/g/ossf-scorecard-announce) -Community Meeting VC | [Link to z o o m meeting](https://zoom.us/j/98835923979) -Community Meeting Calendar | Biweekly Thursdays, 1:00pm-2:00pm PST
[Calendar](https://calendar.google.com/calendar?cid=czYzdm9lZmhwNWk5cGZsdGI1cTY3bmdwZXNAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ) -Meeting Notes | [Notes](https://docs.google.com/document/d/1dB2U7_qZpNW96vtuoG7ShmgKXzIg6R5XT5Tc-0yz6kE/edit#heading=h.4k8ml0qkh7tl) +Community Meeting VC | [Link to z o o m meeting](https://zoom-lfx.platform.linuxfoundation.org/meeting/95007214146?password=250040c3-80c0-48c4-80c1-07a373116d54) +Community Meeting Calendar | **_APAC-friendly_** Biweekly on Thursdays at 1:00-2:00 PM Pacific ([OSSF Public Calendar](https://calendar.google.com/calendar/u/0/embed?height=600&wkst=1&bgcolor=%238E24AA&showTitle=1&mode=WEEK&showCalendars=0&showTabs=1&showPrint=0&title=OpenSSF+Community+Calendar&src=czYzdm9lZmhwNWk5cGZsdGI1cTY3bmdwZXNAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ&color=%238E24AA))
Video Call: [LFX Zoom](https://zoom-lfx.platform.linuxfoundation.org/meeting/95007214146?password=250040c3-80c0-48c4-80c1-07a373116d54)
**_EMEA-friendly_** Every 4 Mondays at 7:00-8:00 AM Pacific ([OSSF Public Calendar](https://calendar.google.com/calendar/u/0/embed?height=600&wkst=1&bgcolor=%238E24AA&showTitle=1&mode=WEEK&showCalendars=0&showTabs=1&showPrint=0&title=OpenSSF+Community+Calendar&src=czYzdm9lZmhwNWk5cGZsdGI1cTY3bmdwZXNAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ&color=%238E24AA))
Video Call: [LFX Zoom](https://zoom-lfx.platform.linuxfoundation.org/meeting/93377638314?password=d53af562-d908-4100-8ae1-52686756cc5d) +Meeting Notes | [Notes](https://docs.google.com/document/d/1b6d3CVJLsl7YnTE7ZaZQHdkdYIvuOQ8rzAmvVdypOWM/edit?usp=sharing) Slack Channel | [#security_scorecards](https://slack.openssf.org/#security_scorecards) __Maintainers__ are listed in the [CODEOWNERS file](.github/CODEOWNERS). @@ -600,7 +600,13 @@ To report a security issue, please follow instructions [here](SECURITY.md). #### Zoom -We meet every other Thursday - 4p ET on this [zoom link](https://zoom.us/j/98835923979?pwd=RG5JZ3czZEtmRDlGdms0ZktmMFQvUT09). +**_APAC-friendly_** Biweekly on Thursdays at 1:00-2:00 PM Pacific ([OSSF Public Calendar](https://calendar.google.com/calendar/u/0/embed?height=600&wkst=1&bgcolor=%238E24AA&showTitle=1&mode=WEEK&showCalendars=0&showTabs=1&showPrint=0&title=OpenSSF+Community+Calendar&src=czYzdm9lZmhwNWk5cGZsdGI1cTY3bmdwZXNAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ&color=%238E24AA)) + +Video Call: [LFX z o o m](https://zoom-lfx.platform.linuxfoundation.org/meeting/95007214146?password=250040c3-80c0-48c4-80c1-07a373116d54) + +**_EMEA-friendly_** Every 4 Mondays at 7:00-8:00 AM Pacific ([OSSF Public Calendar](https://calendar.google.com/calendar/u/0/embed?height=600&wkst=1&bgcolor=%238E24AA&showTitle=1&mode=WEEK&showCalendars=0&showTabs=1&showPrint=0&title=OpenSSF+Community+Calendar&src=czYzdm9lZmhwNWk5cGZsdGI1cTY3bmdwZXNAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ&color=%238E24AA)) + +Video Call: [LFX z o o m](https://zoom-lfx.platform.linuxfoundation.org/meeting/93377638314?password=d53af562-d908-4100-8ae1-52686756cc5d) #### Agenda diff --git a/RELEASE.md b/RELEASE.md index 204b498ffa86..f5b78849c09a 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -9,6 +9,7 @@ pull request to discuss.) - [Tracking](#tracking) - [Preparing the release](#preparing-the-release) - [Validate tests](#validate-tests) + - [Validate the changes with scdiff](#validate-the-changes-with-scdiff) - [Drafting release notes](#drafting-release-notes) - [Release](#release) - [Create a tag](#create-a-tag) @@ -37,6 +38,46 @@ be merged before releasing the scorecard GitHub Action. Check the unit tests and integration tests are passing for the planned release commit, either locally or for the GitHub workflows. +### Validate the changes with scdiff +1. Create the list of repos to use for the analysis if you don't have it already: +```console +cat < repos.txt +https://github.com/airbnb/lottie-web +https://github.com/apache/tomcat +https://github.com/Azure/azure-functions-dotnet-worker +https://github.com/cncf/xds +https://github.com/google/go-cmp +https://github.com/google/highwayhash +https://github.com/googleapis/google-api-php-client +https://github.com/jacoco/jacoco +https://github.com/ossf/scorecard +https://github.com/pallets/jinja +https://github.com/polymer/polymer +https://github.com/rust-random/getrandom +https://github.com/yaml/libyaml +https://gitlab.com/baserow/baserow +https://gitlab.com/cryptsetup/cryptsetup +EOF +``` +2. Run `scdiff` on the previous release: +```console +git checkout +go run cmd/internal/scdiff/main.go generate --repos repos.txt --output oldRelease.json +``` +3. Run `scdiff` on the commit to be tagged: +```console +git checkout +go run cmd/internal/scdiff/main.go generate --repos repos.txt --output newRelease.json +``` +4. Compare the results: +```console +go run cmd/internal/scdiff/main.go compare oldRelease.json newRelease.json +``` +5. Evaluating results: +There will be differences! That's ok, but please pay attention to what they are and use your judgement when evaluating them. +Compare the changes against the release notes you're expecting below. + + ## Drafting release notes Release notes are a semi-automated process. We often start by opening [drafting a new release on GitHub](https://github.com/ossf/scorecard/releases/new). diff --git a/checker/raw_result.go b/checker/raw_result.go index 8da8ef074946..afeb848b7f63 100644 --- a/checker/raw_result.go +++ b/checker/raw_result.go @@ -259,6 +259,10 @@ const ( SonarWorkflow SASTWorkflowType = "Sonar" // SnykWorkflow represents a workflow that runs Snyk. SnykWorkflow SASTWorkflowType = "Snyk" + // PysaWorkflow represents a workflow that runs Pysa. + PysaWorkflow SASTWorkflowType = "Pysa" + // QodanaWorkflow represents a workflow that runs Qodana. + QodanaWorkflow SASTWorkflowType = "Qodana" ) // SASTWorkflow represents a SAST workflow. diff --git a/checks/all_checks_test.go b/checks/all_checks_test.go index 3a0ff1e54c67..5cced127633d 100644 --- a/checks/all_checks_test.go +++ b/checks/all_checks_test.go @@ -23,15 +23,13 @@ import ( func Test_registerCheck(t *testing.T) { t.Parallel() - //nolint:govet type args struct { - name string fn checker.CheckFn + name string } - //nolint:govet tests := []struct { - name string args args + name string wanterr bool }{ { diff --git a/checks/branch_protection_test.go b/checks/branch_protection_test.go index 9b5810399ae1..165d3b8d56e6 100644 --- a/checks/branch_protection_test.go +++ b/checks/branch_protection_test.go @@ -64,15 +64,14 @@ func TestReleaseAndDevBranchProtected(t *testing.T) { var oneVal int32 = 1 - //nolint:govet tests := []struct { name string - expected scut.TestReturn - branches []*clients.BranchRef defaultBranch string + branches []*clients.BranchRef releases []string - nonadmin bool repoFiles []string + expected scut.TestReturn + nonadmin bool }{ { name: "Nil release and main branch names", diff --git a/checks/dependency_update_tool_test.go b/checks/dependency_update_tool_test.go index 05d56cef43fa..e2f75babee57 100644 --- a/checks/dependency_update_tool_test.go +++ b/checks/dependency_update_tool_test.go @@ -32,15 +32,14 @@ const ( // TestDependencyUpdateTool tests the DependencyUpdateTool checker. func TestDependencyUpdateTool(t *testing.T) { t.Parallel() - //nolint:govet tests := []struct { name string - wantErr bool + want checker.CheckResult SearchCommits []clients.Commit - CallSearchCommits int files []string - want checker.CheckResult expected scut.TestReturn + CallSearchCommits int + wantErr bool }{ { name: "dependency yml", @@ -162,3 +161,21 @@ func TestDependencyUpdateTool(t *testing.T) { }) } } + +func TestDependencyUpdateTool_noSearchCommits(t *testing.T) { + t.Parallel() + ctrl := gomock.NewController(t) + mockRepo := mockrepo.NewMockRepoClient(ctrl) + files := []string{"README.md"} + mockRepo.EXPECT().ListFiles(gomock.Any()).Return(files, nil) + mockRepo.EXPECT().SearchCommits(gomock.Any()).Return(nil, clients.ErrUnsupportedFeature) + dl := scut.TestDetailLogger{} + c := &checker.CheckRequest{ + RepoClient: mockRepo, + Dlogger: &dl, + } + got := DependencyUpdateTool(c) + if got.Error != nil { + t.Errorf("got: %v, wanted ErrUnsupportedFeature not to propagate", got.Error) + } +} diff --git a/checks/evaluation/permissions/permissions.go b/checks/evaluation/permissions/permissions.go index b8ca06796aaa..3aebd06c0473 100644 --- a/checks/evaluation/permissions/permissions.go +++ b/checks/evaluation/permissions/permissions.go @@ -38,6 +38,58 @@ var ( topNoWriteID = "gitHubWorkflowPermissionsTopNoWrite" ) +type permissionLevel int + +const ( + // permissionLevelNone is a permission set to `none`. + permissionLevelNone permissionLevel = iota + // permissionLevelRead is a permission set to `read`. + permissionLevelRead + // permissionLevelUnknown is for other kinds of alerts, mostly to support debug messages. + // TODO: remove it once we have implemented severity (#1874). + permissionLevelUnknown + // permissionLevelUndeclared is an undeclared permission. + permissionLevelUndeclared + // permissionLevelWrite is a permission set to `write` for a permission we consider potentially dangerous. + permissionLevelWrite +) + +// permissionLocation represents a declaration type. +type permissionLocationType int + +const ( + // permissionLocationNil is in case the permission is nil. + permissionLocationNil permissionLocationType = iota + // permissionLocationNotDeclared is for undeclared permission. + permissionLocationNotDeclared + // permissionLocationTop is top-level workflow permission. + permissionLocationTop + // permissionLocationJob is job-level workflow permission. + permissionLocationJob +) + +// permissionType represents a permission type. +type permissionType int + +const ( + // permissionTypeNone represents none permission type. + permissionTypeNone permissionType = iota + // permissionTypeNone is the "all" github permission type. + permissionTypeAll + // permissionTypeNone is the "statuses" github permission type. + permissionTypeStatuses + // permissionTypeNone is the "checks" github permission type. + permissionTypeChecks + // permissionTypeNone is the "security-events" github permission type. + permissionTypeSecurityEvents + // permissionTypeNone is the "deployments" github permission type. + permissionTypeDeployments + // permissionTypeNone is the "packages" github permission type. + permissionTypePackages + // permissionTypeNone is the "actions" github permission type. + permissionTypeActions +) + // TokenPermissions applies the score policy for the Token-Permissions check. func TokenPermissions(name string, c *checker.CheckRequest, r *checker.TokenPermissionsData) checker.CheckResult { if r == nil { @@ -46,10 +98,17 @@ func TokenPermissions(name string, c *checker.CheckRequest, r *checker.TokenPerm } if r.NumTokens == 0 { - return checker.CreateInconclusiveResult(name, "no github tokens found") + return checker.CreateInconclusiveResult(name, "no tokens found") + } + + // This is a temporary step that should be replaced by probes in ./probes + findings, err := rawToFindings(r) + if err != nil { + e := sce.WithMessage(sce.ErrScorecardInternal, "could not convert raw data to findings") + return checker.CreateRuntimeErrorResult(name, e) } - score, err := applyScorePolicy(r, c) + score, err := applyScorePolicy(findings, c) if err != nil { return checker.CreateRuntimeErrorResult(name, err) } @@ -63,29 +122,10 @@ func TokenPermissions(name string, c *checker.CheckRequest, r *checker.TokenPerm "GitHub workflow tokens follow principle of least privilege") } -// avoid memory aliasing by returning a new copy. -func newUint(u uint) *uint { - return &u -} - -// avoid memory aliasing by returning a new copy. -func newStr(s string) *string { - return &s -} - -func applyScorePolicy(results *checker.TokenPermissionsData, c *checker.CheckRequest) (int, error) { - // See list https://github.blog/changelog/2021-04-20-github-actions-control-permissions-for-github_token/. - // Note: there are legitimate reasons to use some of the permissions like checks, deployments, etc. - // in CI/CD systems https://docs.travis-ci.com/user/github-oauth-scopes/. - - hm := make(map[string]permissions) - dl := c.Dlogger - //nolint:errcheck - remediationMetadata, _ := remediation.New(c) - negativeProbeResults := map[string]bool{ - stepsNoWriteID: false, - topNoWriteID: false, - } +// rawToFindings is a temporary step for converting the raw results +// to findings. This should be replaced by probes in ./probes. +func rawToFindings(results *checker.TokenPermissionsData) ([]finding.Finding, error) { + var findings []finding.Finding for _, r := range results.TokenPermissions { var loc *finding.Location @@ -99,77 +139,215 @@ func applyScorePolicy(results *checker.TokenPermissionsData, c *checker.CheckReq loc.Snippet = newStr(r.File.Snippet) } } - text, err := createText(r) if err != nil { - return checker.MinResultScore, err + return nil, err } - msg, err := createLogMsg(r.LocationType) + f, err := createFinding(r.LocationType, text, loc) if err != nil { - return checker.InconclusiveResultScore, err + return nil, err } - msg.Finding = msg.Finding.WithMessage(text).WithLocation(loc) + switch r.Type { - case checker.PermissionLevelNone, checker.PermissionLevelRead: - msg.Finding = msg.Finding.WithOutcome(finding.OutcomePositive) - dl.Info(msg) - case checker.PermissionLevelUnknown: - dl.Debug(msg) + case checker.PermissionLevelNone: + f = f.WithOutcome(finding.OutcomePositive) + f = f.WithValues(map[string]int{ + "PermissionLevel": int(permissionLevelNone), + }) + case checker.PermissionLevelRead: + f = f.WithOutcome(finding.OutcomePositive) + f = f.WithValues(map[string]int{ + "PermissionLevel": int(permissionLevelRead), + }) + case checker.PermissionLevelUnknown: + f = f.WithValues(map[string]int{ + "PermissionLevel": int(permissionLevelUnknown), + }).WithOutcome(finding.OutcomeError) case checker.PermissionLevelUndeclared: + var locationType permissionLocationType + //nolint:gocritic if r.LocationType == nil { - return checker.InconclusiveResultScore, - sce.WithMessage(sce.ErrScorecardInternal, "locationType is nil") + locationType = permissionLocationNil + } else if *r.LocationType == checker.PermissionLocationTop { + locationType = permissionLocationTop + } else { + locationType = permissionLocationNotDeclared } + permType := permTypeToEnum(r.Name) + f = f.WithValues(map[string]int{ + "PermissionLevel": int(permissionLevelUndeclared), + "LocationType": int(locationType), + "PermissionType": int(permType), + }) + case checker.PermissionLevelWrite: + var locationType permissionLocationType + switch *r.LocationType { + case checker.PermissionLocationTop: + locationType = permissionLocationTop + case checker.PermissionLocationJob: + locationType = permissionLocationJob + default: + locationType = permissionLocationNotDeclared + } + permType := permTypeToEnum(r.Name) + f = f.WithValues(map[string]int{ + "PermissionLevel": int(permissionLevelWrite), + "LocationType": int(locationType), + "PermissionType": int(permType), + }) + f = f.WithOutcome(finding.OutcomeNegative) + } + findings = append(findings, *f) + } + return findings, nil +} - // We warn only for top-level. - if *r.LocationType == checker.PermissionLocationTop { - warnWithRemediation(dl, msg, remediationMetadata, loc, negativeProbeResults) - } else { - dl.Debug(msg) +func permTypeToEnum(tokenName *string) permissionType { + if tokenName == nil { + return permissionTypeNone + } + switch *tokenName { + //nolint:goconst + case "all": + return permissionTypeAll + case "statuses": + return permissionTypeStatuses + case "checks": + return permissionTypeChecks + case "security-events": + return permissionTypeSecurityEvents + case "deployments": + return permissionTypeDeployments + case "contents": + return permissionTypePackages + case "actions": + return permissionTypeActions + default: + return permissionTypeNone + } +} + +func permTypeToName(permType int) *string { + var permName string + switch permissionType(permType) { + case permissionTypeAll: + permName = "all" + case permissionTypeStatuses: + permName = "statuses" + case permissionTypeChecks: + permName = "checks" + case permissionTypeSecurityEvents: + permName = "security-events" + case permissionTypeDeployments: + permName = "deployments" + case permissionTypePackages: + permName = "contents" + case permissionTypeActions: + permName = "actions" + default: + permName = "" + } + return &permName +} + +func createFinding(loct *checker.PermissionLocation, text string, loc *finding.Location) (*finding.Finding, error) { + probe := stepsNoWriteID + if loct == nil || *loct == checker.PermissionLocationTop { + probe = topNoWriteID + } + content, err := probes.ReadFile(probe + ".yml") + if err != nil { + return nil, fmt.Errorf("reading %v.yml: %w", probe, err) + } + f, err := finding.FromBytes(content, probe) + if err != nil { + return nil, + sce.WithMessage(sce.ErrScorecardInternal, err.Error()) + } + f = f.WithMessage(text) + if loc != nil { + f = f.WithLocation(loc) + } + return f, nil +} + +// avoid memory aliasing by returning a new copy. +func newUint(u uint) *uint { + return &u +} + +// avoid memory aliasing by returning a new copy. +func newStr(s string) *string { + return &s +} + +func applyScorePolicy(findings []finding.Finding, c *checker.CheckRequest) (int, error) { + // See list https://github.blog/changelog/2021-04-20-github-actions-control-permissions-for-github_token/. + // Note: there are legitimate reasons to use some of the permissions like checks, deployments, etc. + // in CI/CD systems https://docs.travis-ci.com/user/github-oauth-scopes/. + + hm := make(map[string]permissions) + dl := c.Dlogger + //nolint:errcheck + remediationMetadata, _ := remediation.New(c) + negativeProbeResults := map[string]bool{ + stepsNoWriteID: false, + topNoWriteID: false, + } + + for i := range findings { + f := &findings[i] + pLevel := permissionLevel(f.Values["PermissionLevel"]) + switch pLevel { + case permissionLevelNone, permissionLevelRead: + dl.Info(&checker.LogMessage{ + Finding: f, + }) + case permissionLevelUnknown: + dl.Debug(&checker.LogMessage{ + Finding: f, + }) + + case permissionLevelUndeclared: + switch permissionLocationType(f.Values["LocationType"]) { + case permissionLocationNil: + return checker.InconclusiveResultScore, + sce.WithMessage(sce.ErrScorecardInternal, "locationType is nil") + case permissionLocationTop: + warnWithRemediation(dl, remediationMetadata, f, negativeProbeResults) + default: + // We warn only for top-level. + dl.Debug(&checker.LogMessage{ + Finding: f, + }) } // Group results by workflow name for score computation. - if err := updateWorkflowHashMap(hm, r); err != nil { + if err := updateWorkflowHashMap(hm, f); err != nil { return checker.InconclusiveResultScore, err } - case checker.PermissionLevelWrite: - warnWithRemediation(dl, msg, remediationMetadata, loc, negativeProbeResults) + case permissionLevelWrite: + warnWithRemediation(dl, remediationMetadata, f, negativeProbeResults) // Group results by workflow name for score computation. - if err := updateWorkflowHashMap(hm, r); err != nil { + if err := updateWorkflowHashMap(hm, f); err != nil { return checker.InconclusiveResultScore, err } } } - if err := reportDefaultFindings(results, c.Dlogger, negativeProbeResults); err != nil { + if err := reportDefaultFindings(findings, c.Dlogger, negativeProbeResults); err != nil { return checker.InconclusiveResultScore, err } - return calculateScore(hm), nil } -func reportDefaultFindings(results *checker.TokenPermissionsData, +func reportDefaultFindings(results []finding.Finding, dl checker.DetailLogger, negativeProbeResults map[string]bool, ) error { - // TODO(#2928): re-visit the need for NotApplicable outcome. - // No workflow files exist. - if len(results.TokenPermissions) == 0 { - text := "no workflows found in the repository" - if err := reportFinding(stepsNoWriteID, - text, finding.OutcomeNotAvailable, dl); err != nil { - return err - } - if err := reportFinding(topNoWriteID, - text, finding.OutcomeNotAvailable, dl); err != nil { - return err - } - return nil - } - // Workflow files found, report positive findings if no // negative findings were found. // NOTE: we don't consider probe `topNoWriteID` @@ -202,44 +380,28 @@ func reportFinding(probe, text string, o finding.Outcome, dl checker.DetailLogge return nil } -func createLogMsg(loct *checker.PermissionLocation) (*checker.LogMessage, error) { - probe := stepsNoWriteID - if loct == nil || *loct == checker.PermissionLocationTop { - probe = topNoWriteID - } - content, err := probes.ReadFile(probe + ".yml") - if err != nil { - return nil, fmt.Errorf("%w", err) - } - f, err := finding.FromBytes(content, probe) - if err != nil { - return nil, - sce.WithMessage(sce.ErrScorecardInternal, err.Error()) - } - return &checker.LogMessage{ - Finding: f, - }, nil -} - -func warnWithRemediation(logger checker.DetailLogger, msg *checker.LogMessage, - rem *remediation.RemediationMetadata, loc *finding.Location, +func warnWithRemediation(logger checker.DetailLogger, + rem *remediation.RemediationMetadata, + f *finding.Finding, negativeProbeResults map[string]bool, ) { - if loc != nil && loc.Path != "" { - msg.Finding = msg.Finding.WithRemediationMetadata(map[string]string{ + if f.Location != nil && f.Location.Path != "" { + f = f.WithRemediationMetadata(map[string]string{ "repo": rem.Repo, "branch": rem.Branch, - "workflow": strings.TrimPrefix(loc.Path, ".github/workflows/"), + "workflow": strings.TrimPrefix(f.Location.Path, ".github/workflows/"), }) } - logger.Warn(msg) + logger.Warn(&checker.LogMessage{ + Finding: f, + }) // Record that we found a negative result. - negativeProbeResults[msg.Finding.Probe] = true + negativeProbeResults[f.Probe] = true } func recordPermissionWrite(hm map[string]permissions, path string, - locType checker.PermissionLocation, permName *string, + locType permissionLocationType, permType int, ) { if _, exists := hm[path]; !exists { hm[path] = permissions{ @@ -250,11 +412,12 @@ func recordPermissionWrite(hm map[string]permissions, path string, // Select the hash map to update. m := hm[path].jobLevelWritePermissions - if locType == checker.PermissionLocationTop { + if locType == permissionLocationTop { m = hm[path].topLevelWritePermissions } // Set the permission name to record. + permName := permTypeToName(permType) name := "all" if permName != nil && *permName != "" { name = *permName @@ -262,21 +425,21 @@ func recordPermissionWrite(hm map[string]permissions, path string, m[name] = true } -func updateWorkflowHashMap(hm map[string]permissions, t checker.TokenPermission) error { - if t.LocationType == nil { +func updateWorkflowHashMap(hm map[string]permissions, f *finding.Finding) error { + if _, ok := f.Values["LocationType"]; !ok { return sce.WithMessage(sce.ErrScorecardInternal, "locationType is nil") } - if t.File == nil || t.File.Path == "" { + if f.Location == nil || f.Location.Path == "" { return sce.WithMessage(sce.ErrScorecardInternal, "path is not set") } - if t.Type != checker.PermissionLevelWrite && - t.Type != checker.PermissionLevelUndeclared { + if permissionLevel(f.Values["PermissionLevel"]) != permissionLevelWrite && + permissionLevel(f.Values["PermissionLevel"]) != permissionLevelUndeclared { return nil } - - recordPermissionWrite(hm, t.File.Path, *t.LocationType, t.Name) + plt := permissionLocationType(f.Values["LocationType"]) + recordPermissionWrite(hm, f.Location.Path, plt, f.Values["PermissionType"]) return nil } diff --git a/checks/evaluation/pinned_dependencies.go b/checks/evaluation/pinned_dependencies.go index 5583c846054e..9e9180464f65 100644 --- a/checks/evaluation/pinned_dependencies.go +++ b/checks/evaluation/pinned_dependencies.go @@ -49,6 +49,9 @@ const ( gitHubOwnedActionWeight int = 2 thirdPartyActionWeight int = 8 normalWeight int = gitHubOwnedActionWeight + thirdPartyActionWeight + + // depTypeKey is the Values map key used to fetch the dependency type. + depTypeKey = "dependencyType" ) var ( @@ -172,7 +175,7 @@ func dependenciesToFindings(r *checker.PinningDependenciesData) ([]finding.Findi f.Remediation = ruleRemToProbeRem(rr.Remediation) } f = f.WithValues(map[string]int{ - "dependencyType": dependencyTypes[rr.Type], + depTypeKey: dependencyTypes[rr.Type], }) findings = append(findings, *f) } else { @@ -189,7 +192,7 @@ func dependenciesToFindings(r *checker.PinningDependenciesData) ([]finding.Findi Location: loc, } f = f.WithValues(map[string]int{ - "dependencyType": dependencyTypes[rr.Type], + depTypeKey: dependencyTypes[rr.Type], }) findings = append(findings, *f) } @@ -256,7 +259,7 @@ func PinningDependencies(name string, c *checker.CheckRequest, default: // ignore } - updatePinningResults(intToDepType[f.Values["dependencyType"]], + updatePinningResults(intToDepType[f.Values[depTypeKey]], f.Outcome, f.Location.Snippet, &wp, pr) } diff --git a/checks/evaluation/sast.go b/checks/evaluation/sast.go index a5650a72e522..63c7beb82def 100644 --- a/checks/evaluation/sast.go +++ b/checks/evaluation/sast.go @@ -19,6 +19,8 @@ import ( sce "github.com/ossf/scorecard/v4/errors" "github.com/ossf/scorecard/v4/finding" "github.com/ossf/scorecard/v4/probes/sastToolCodeQLInstalled" + "github.com/ossf/scorecard/v4/probes/sastToolPysaInstalled" + "github.com/ossf/scorecard/v4/probes/sastToolQodanaInstalled" "github.com/ossf/scorecard/v4/probes/sastToolRunsOnAllCommits" "github.com/ossf/scorecard/v4/probes/sastToolSnykInstalled" "github.com/ossf/scorecard/v4/probes/sastToolSonarInstalled" @@ -31,6 +33,8 @@ func SAST(name string, // We have 3 unique probes, each should have a finding. expectedProbes := []string{ sastToolCodeQLInstalled.Probe, + sastToolPysaInstalled.Probe, + sastToolQodanaInstalled.Probe, sastToolRunsOnAllCommits.Probe, sastToolSonarInstalled.Probe, sastToolSnykInstalled.Probe, @@ -41,7 +45,7 @@ func SAST(name string, return checker.CreateRuntimeErrorResult(name, e) } - var sastScore, codeQlScore, snykScore, sonarScore int + var sastScore, codeQlScore, pysaScore, qodanaScore, snykScore, sonarScore int // Assign sastScore, codeQlScore and sonarScore for i := range findings { f := &findings[i] @@ -49,9 +53,13 @@ func SAST(name string, case sastToolRunsOnAllCommits.Probe: sastScore = getSASTScore(f, dl) case sastToolCodeQLInstalled.Probe: - codeQlScore = getCodeQLScore(f, dl) + codeQlScore = getSastToolScore(f, dl) case sastToolSnykInstalled.Probe: - snykScore = getSnykScore(f, dl) + snykScore = getSastToolScore(f, dl) + case sastToolPysaInstalled.Probe: + pysaScore = getSastToolScore(f, dl) + case sastToolQodanaInstalled.Probe: + qodanaScore = getSastToolScore(f, dl) case sastToolSonarInstalled.Probe: if f.Outcome == finding.OutcomePositive { sonarScore = checker.MaxResultScore @@ -75,6 +83,12 @@ func SAST(name string, if snykScore == checker.MaxResultScore { return checker.CreateMaxScoreResult(name, "SAST tool detected: Snyk") } + if pysaScore == checker.MaxResultScore { + return checker.CreateMaxScoreResult(name, "SAST tool detected: Pysa") + } + if qodanaScore == checker.MaxResultScore { + return checker.CreateMaxScoreResult(name, "SAST tool detected: Qodana") + } if sastScore == checker.InconclusiveResultScore && codeQlScore == checker.InconclusiveResultScore { @@ -149,28 +163,15 @@ func getSASTScore(f *finding.Finding, dl checker.DetailLogger) int { Text: f.Message, }) default: - checker.CreateProportionalScore(f.Values["totalPullRequestsAnalyzed"], f.Values["totalPullRequestsMerged"]) - } - return checker.CreateProportionalScore(f.Values["totalPullRequestsAnalyzed"], f.Values["totalPullRequestsMerged"]) -} - -// getCodeQLScore returns positive the project runs CodeQL and negative -// if it doesn't. -func getCodeQLScore(f *finding.Finding, dl checker.DetailLogger) int { - switch f.Outcome { - case finding.OutcomePositive: - dl.Info(&checker.LogMessage{ - Text: f.Message, - }) - return checker.MaxResultScore - case finding.OutcomeNegative: - return checker.MinResultScore - default: - panic("Should not happen") } + analyzed := f.Values[sastToolRunsOnAllCommits.AnalyzedPRsKey] + total := f.Values[sastToolRunsOnAllCommits.TotalPRsKey] + return checker.CreateProportionalScore(analyzed, total) } -func getSnykScore(f *finding.Finding, dl checker.DetailLogger) int { +// getSastToolScore returns positive if the project runs the Sast tool +// and negative if it doesn't. +func getSastToolScore(f *finding.Finding, dl checker.DetailLogger) int { switch f.Outcome { case finding.OutcomePositive: dl.Info(&checker.LogMessage{ diff --git a/checks/evaluation/sast_test.go b/checks/evaluation/sast_test.go index 5bd8722c453a..c58ced752dfc 100644 --- a/checks/evaluation/sast_test.go +++ b/checks/evaluation/sast_test.go @@ -19,6 +19,7 @@ import ( "github.com/ossf/scorecard/v4/checker" sce "github.com/ossf/scorecard/v4/errors" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/sastToolRunsOnAllCommits" scut "github.com/ossf/scorecard/v4/utests" ) @@ -44,7 +45,7 @@ func TestSAST(t *testing.T) { Outcome: finding.OutcomeNegative, }, { - Probe: "sastToolRunsOnAllCommits", + Probe: sastToolRunsOnAllCommits.Probe, Outcome: finding.OutcomePositive, }, }, @@ -54,7 +55,7 @@ func TestSAST(t *testing.T) { }, }, { - name: "Sonar and codeQL is installed", + name: "Sonar and codeQL is installed. Snyk, Qodana and Pysa are not installed.", findings: []finding.Finding{ { Probe: "sastToolCodeQLInstalled", @@ -65,11 +66,19 @@ func TestSAST(t *testing.T) { Outcome: finding.OutcomeNegative, }, { - Probe: "sastToolRunsOnAllCommits", + Probe: "sastToolPysaInstalled", + Outcome: finding.OutcomeNegative, + }, + { + Probe: "sastToolQodanaInstalled", + Outcome: finding.OutcomeNegative, + }, + { + Probe: sastToolRunsOnAllCommits.Probe, Outcome: finding.OutcomePositive, Values: map[string]int{ - "totalPullRequestsAnalyzed": 1, - "totalPullRequestsMerged": 2, + sastToolRunsOnAllCommits.AnalyzedPRsKey: 1, + sastToolRunsOnAllCommits.TotalPRsKey: 2, }, }, { @@ -91,7 +100,45 @@ func TestSAST(t *testing.T) { }, }, { - name: `Sonar is installed. CodeQL is not installed. + name: "Pysa is installed. CodeQL, Snyk, Qodana and Sonar are not installed.", + findings: []finding.Finding{ + { + Probe: "sastToolCodeQLInstalled", + Outcome: finding.OutcomeNegative, + }, + { + Probe: "sastToolSnykInstalled", + Outcome: finding.OutcomeNegative, + }, + { + Probe: "sastToolPysaInstalled", + Outcome: finding.OutcomePositive, + }, + { + Probe: "sastToolQodanaInstalled", + Outcome: finding.OutcomeNegative, + }, + { + Probe: sastToolRunsOnAllCommits.Probe, + Outcome: finding.OutcomePositive, + Values: map[string]int{ + sastToolRunsOnAllCommits.AnalyzedPRsKey: 1, + sastToolRunsOnAllCommits.TotalPRsKey: 2, + }, + }, + { + Probe: "sastToolSonarInstalled", + Outcome: finding.OutcomeNegative, + }, + }, + result: scut.TestReturn{ + Score: 10, + NumberOfInfo: 2, + NumberOfWarn: 0, + }, + }, + { + name: `Sonar is installed. CodeQL, Snyk, Pysa, Qodana are not installed. Does not have info about whether SAST runs on every commit.`, findings: []finding.Finding{ @@ -104,7 +151,15 @@ func TestSAST(t *testing.T) { Outcome: finding.OutcomeNegative, }, { - Probe: "sastToolRunsOnAllCommits", + Probe: "sastToolQodanaInstalled", + Outcome: finding.OutcomeNegative, + }, + { + Probe: "sastToolPysaInstalled", + Outcome: finding.OutcomeNegative, + }, + { + Probe: sastToolRunsOnAllCommits.Probe, Outcome: finding.OutcomeNotApplicable, }, { @@ -126,7 +181,7 @@ func TestSAST(t *testing.T) { }, }, { - name: "Sonar and CodeQL are not installed", + name: "Sonar, CodeQL, Snyk, Qodana and Pysa are not installed", findings: []finding.Finding{ { Probe: "sastToolCodeQLInstalled", @@ -137,11 +192,19 @@ func TestSAST(t *testing.T) { Outcome: finding.OutcomeNegative, }, { - Probe: "sastToolRunsOnAllCommits", + Probe: "sastToolPysaInstalled", + Outcome: finding.OutcomeNegative, + }, + { + Probe: "sastToolQodanaInstalled", + Outcome: finding.OutcomeNegative, + }, + { + Probe: sastToolRunsOnAllCommits.Probe, Outcome: finding.OutcomeNegative, Values: map[string]int{ - "totalPullRequestsAnalyzed": 1, - "totalPullRequestsMerged": 3, + sastToolRunsOnAllCommits.AnalyzedPRsKey: 1, + sastToolRunsOnAllCommits.TotalPRsKey: 3, }, }, { @@ -156,7 +219,7 @@ func TestSAST(t *testing.T) { }, }, { - name: "Snyk is installed, Sonar and CodeQL are not installed", + name: "Snyk is installed, Sonar, Qodana and CodeQL are not installed", findings: []finding.Finding{ { Probe: "sastToolCodeQLInstalled", @@ -167,17 +230,63 @@ func TestSAST(t *testing.T) { Outcome: finding.OutcomePositive, }, { - Probe: "sastToolRunsOnAllCommits", + Probe: sastToolRunsOnAllCommits.Probe, + Outcome: finding.OutcomePositive, + Values: map[string]int{ + sastToolRunsOnAllCommits.AnalyzedPRsKey: 1, + sastToolRunsOnAllCommits.TotalPRsKey: 3, + }, + }, + { + Probe: "sastToolSonarInstalled", + Outcome: finding.OutcomeNegative, + }, + { + Probe: "sastToolPysaInstalled", + Outcome: finding.OutcomeNegative, + }, + { + Probe: "sastToolQodanaInstalled", + Outcome: finding.OutcomeNegative, + }, + }, + result: scut.TestReturn{ + Score: 10, + NumberOfWarn: 0, + NumberOfInfo: 2, + }, + }, + { + name: "Qodana is installed, Snyk, Sonar, and CodeQL are not installed", + findings: []finding.Finding{ + { + Probe: "sastToolCodeQLInstalled", + Outcome: finding.OutcomeNegative, + }, + { + Probe: "sastToolSnykInstalled", + Outcome: finding.OutcomeNegative, + }, + { + Probe: sastToolRunsOnAllCommits.Probe, Outcome: finding.OutcomePositive, Values: map[string]int{ - "totalPullRequestsAnalyzed": 1, - "totalPullRequestsMerged": 3, + sastToolRunsOnAllCommits.AnalyzedPRsKey: 1, + sastToolRunsOnAllCommits.TotalPRsKey: 3, }, }, { Probe: "sastToolSonarInstalled", Outcome: finding.OutcomeNegative, }, + { + Probe: "sastToolPysaInstalled", + Outcome: finding.OutcomeNegative, + }, + { + Probe: "sastToolQodanaInstalled", + Outcome: finding.OutcomePositive, + }, }, result: scut.TestReturn{ Score: 10, diff --git a/checks/evaluation/signed_releases.go b/checks/evaluation/signed_releases.go index 9f3673ffe21e..97b07b51ac84 100644 --- a/checks/evaluation/signed_releases.go +++ b/checks/evaluation/signed_releases.go @@ -15,6 +15,7 @@ package evaluation import ( + "errors" "fmt" "math" @@ -25,6 +26,8 @@ import ( "github.com/ossf/scorecard/v4/probes/releasesHaveProvenance" ) +var errNoReleaseFound = errors.New("no release found") + // SignedReleases applies the score policy for the Signed-Releases check. func SignedReleases(name string, findings []finding.Finding, dl checker.DetailLogger, @@ -47,11 +50,16 @@ func SignedReleases(name string, f := &findings[i] // Debug release name - releaseName, err := getReleaseName(f) - if err != nil { - e := sce.WithMessage(sce.ErrScorecardInternal, "could not get release name") - return checker.CreateRuntimeErrorResult(name, e) + if f.Outcome == finding.OutcomeNotApplicable { + // Generic summary. + return checker.CreateInconclusiveResult(name, "no releases found") } + releaseName := getReleaseName(f) + if releaseName == "" { + // Generic summary. + return checker.CreateRuntimeErrorResult(name, errNoReleaseFound) + } + if !contains(loggedReleases, releaseName) { dl.Debug(&checker.LogMessage{ Text: fmt.Sprintf("GitHub release found: %s", releaseName), @@ -60,13 +68,6 @@ func SignedReleases(name string, } // Check if outcome is NotApplicable - if f.Outcome == finding.OutcomeNotApplicable { - dl.Warn(&checker.LogMessage{ - Text: "no GitHub releases found", - }) - // Generic summary. - return checker.CreateInconclusiveResult(name, "no releases found") - } } totalPositive := 0 @@ -77,11 +78,10 @@ func SignedReleases(name string, for i := range findings { f := &findings[i] - releaseName, err := getReleaseName(f) - if err != nil { - return checker.CreateRuntimeErrorResult(name, err) + releaseName := getReleaseName(f) + if releaseName == "" { + return checker.CreateRuntimeErrorResult(name, errNoReleaseFound) } - if !contains(uniqueReleaseTags, releaseName) { uniqueReleaseTags = append(uniqueReleaseTags, releaseName) } @@ -106,8 +106,11 @@ func SignedReleases(name string, totalReleases := len(uniqueReleaseTags) + // TODO, the evaluation code should be the one limiting to 5, not assuming the probes have done it already + // however there are some ordering issues to consider, so going with the easy way for now if totalReleases > 5 { - totalReleases = 5 + err := sce.CreateInternal(sce.ErrScorecardInternal, "too many releases, please report this") + return checker.CreateRuntimeErrorResult(name, err) } if totalReleases == 0 { // This should not happen in production, but it is useful to have @@ -126,7 +129,7 @@ func SignedReleases(name string, return checker.CreateResultWithScore(name, reason, score) } -func getReleaseName(f *finding.Finding) (string, error) { +func getReleaseName(f *finding.Finding) string { m := f.Values for k, v := range m { var value int @@ -137,10 +140,10 @@ func getReleaseName(f *finding.Finding) (string, error) { value = int(releasesHaveProvenance.ValueTypeRelease) } if v == value { - return k, nil + return k } } - return "", sce.WithMessage(sce.ErrScorecardInternal, "could not get release tag") + return "" } func contains(releases []string, release string) bool { diff --git a/checks/evaluation/signed_releases_test.go b/checks/evaluation/signed_releases_test.go index 8aa8c8fe5f40..478154497c02 100644 --- a/checks/evaluation/signed_releases_test.go +++ b/checks/evaluation/signed_releases_test.go @@ -19,6 +19,7 @@ import ( "testing" "github.com/ossf/scorecard/v4/checker" + sce "github.com/ossf/scorecard/v4/errors" "github.com/ossf/scorecard/v4/finding" "github.com/ossf/scorecard/v4/probes/releasesAreSigned" "github.com/ossf/scorecard/v4/probes/releasesHaveProvenance" @@ -31,6 +32,7 @@ const ( release2 = 2 release3 = 3 release4 = 4 + release5 = 5 ) const ( @@ -38,12 +40,6 @@ const ( asset1 = 1 asset2 = 2 asset3 = 3 - asset4 = 4 - asset5 = 5 - asset6 = 6 - asset7 = 7 - asset8 = 8 - asset9 = 9 ) func signedProbe(release, asset int, outcome finding.Outcome) finding.Finding { @@ -268,6 +264,37 @@ func TestSignedReleases(t *testing.T) { NumberOfDebug: 5, }, }, + { + name: "too many releases (6 when lookback is 5)", + findings: []finding.Finding{ + // Release 1: + // Release 1, Asset 1: + signedProbe(release0, asset0, finding.OutcomePositive), + provenanceProbe(release0, asset0, finding.OutcomePositive), + // Release 2: + // Release 2, Asset 1: + signedProbe(release1, asset0, finding.OutcomePositive), + provenanceProbe(release1, asset0, finding.OutcomePositive), + // Release 3, Asset 1: + signedProbe(release2, asset0, finding.OutcomePositive), + provenanceProbe(release2, asset0, finding.OutcomePositive), + // Release 4, Asset 1: + signedProbe(release3, asset0, finding.OutcomePositive), + provenanceProbe(release3, asset0, finding.OutcomePositive), + // Release 5, Asset 1: + signedProbe(release4, asset0, finding.OutcomePositive), + provenanceProbe(release4, asset0, finding.OutcomePositive), + // Release 6, Asset 1: + signedProbe(release5, asset0, finding.OutcomePositive), + provenanceProbe(release5, asset0, finding.OutcomePositive), + }, + result: scut.TestReturn{ + Score: checker.InconclusiveResultScore, + Error: sce.ErrScorecardInternal, + NumberOfInfo: 12, // 2 (signed + provenance) for each release + NumberOfDebug: 6, // 1 for each release + }, + }, } for _, tt := range tests { @@ -282,3 +309,59 @@ func TestSignedReleases(t *testing.T) { }) } } + +func Test_getReleaseName(t *testing.T) { + t.Parallel() + type args struct { + f *finding.Finding + } + tests := []struct { + name string + args args + want string + }{ + { + name: "no release", + args: args{ + f: &finding.Finding{ + Values: map[string]int{}, + }, + }, + want: "", + }, + { + name: "release", + args: args{ + f: &finding.Finding{ + Values: map[string]int{ + "v1": int(releasesAreSigned.ValueTypeRelease), + }, + Probe: releasesAreSigned.Probe, + }, + }, + want: "v1", + }, + { + name: "release and asset", + args: args{ + f: &finding.Finding{ + Values: map[string]int{ + "v1": int(releasesAreSigned.ValueTypeRelease), + "artifact-1": int(releasesAreSigned.ValueTypeReleaseAsset), + }, + Probe: releasesAreSigned.Probe, + }, + }, + want: "v1", + }, + } + for _, tt := range tests { + tt := tt + t.Run(tt.name, func(t *testing.T) { + t.Parallel() + if got := getReleaseName(tt.args.f); got != tt.want { + t.Errorf("getReleaseName() = %v, want %v", got, tt.want) + } + }) + } +} diff --git a/checks/fuzzing_test.go b/checks/fuzzing_test.go index c4f9a3f3f329..30004a08ccb4 100644 --- a/checks/fuzzing_test.go +++ b/checks/fuzzing_test.go @@ -30,16 +30,15 @@ import ( // TestFuzzing is a test function for Fuzzing. func TestFuzzing(t *testing.T) { t.Parallel() - //nolint:govet tests := []struct { name string + fileContent string langs []clients.Language + fileName []string response clients.SearchResponse + expected scut.TestReturn wantErr bool wantFuzzErr bool - fileName []string - fileContent string - expected scut.TestReturn }{ { name: "empty response", diff --git a/checks/maintained_test.go b/checks/maintained_test.go index d47696e26e57..794043bffbd9 100644 --- a/checks/maintained_test.go +++ b/checks/maintained_test.go @@ -44,18 +44,17 @@ func Test_Maintained(t *testing.T) { otheruser := clients.User{ Login: "someone-else", } - //nolint:govet tests := []struct { + createdat time.Time err error - name string - isarchived bool archiveerr error - commits []clients.Commit commiterr error - issues []clients.Issue issueerr error - createdat time.Time + name string expected checker.CheckResult + commits []clients.Commit + issues []clients.Issue + isarchived bool }{ { name: "archived", diff --git a/checks/raw/dependency_update_tool.go b/checks/raw/dependency_update_tool.go index effeef2891f1..63b262c70a16 100644 --- a/checks/raw/dependency_update_tool.go +++ b/checks/raw/dependency_update_tool.go @@ -15,6 +15,7 @@ package raw import ( + "errors" "fmt" "strings" @@ -42,7 +43,13 @@ func DependencyUpdateTool(c clients.RepoClient) (checker.DependencyUpdateToolDat commits, err := c.SearchCommits(clients.SearchCommitsOptions{Author: "dependabot[bot]"}) if err != nil { - return checker.DependencyUpdateToolData{}, fmt.Errorf("%w", err) + // TODO https://github.com/ossf/scorecard/issues/1709 + // some repo clients (e.g. local) don't currently have the ability to search commits, + // but some data is better than none. + if errors.Is(err, clients.ErrUnsupportedFeature) { + return checker.DependencyUpdateToolData{Tools: tools}, nil + } + return checker.DependencyUpdateToolData{}, fmt.Errorf("dependabot commit search: %w", err) } for i := range commits { diff --git a/checks/raw/fuzzing.go b/checks/raw/fuzzing.go index a260fcf42a51..16d91b457f77 100644 --- a/checks/raw/fuzzing.go +++ b/checks/raw/fuzzing.go @@ -25,22 +25,7 @@ import ( "github.com/ossf/scorecard/v4/clients" sce "github.com/ossf/scorecard/v4/errors" "github.com/ossf/scorecard/v4/finding" -) - -const ( - fuzzerOSSFuzz = "OSSFuzz" - fuzzerClusterFuzzLite = "ClusterFuzzLite" - fuzzerBuiltInGo = "GoBuiltInFuzzer" - fuzzerPropertyBasedHaskell = "HaskellPropertyBasedTesting" - fuzzerPropertyBasedJavaScript = "JavaScriptPropertyBasedTesting" - fuzzerPropertyBasedTypeScript = "TypeScriptPropertyBasedTesting" - fuzzerPythonAtheris = "PythonAtherisFuzzer" - fuzzerCLibFuzzer = "CLibFuzzer" - fuzzerCppLibFuzzer = "CppLibFuzzer" - fuzzerSwiftLibFuzzer = "SwiftLibFuzzer" - fuzzerRustCargoFuzz = "RustCargoFuzzer" - fuzzerJavaJazzerFuzzer = "JavaJazzerFuzzer" - // TODO: add more fuzzing check supports. + "github.com/ossf/scorecard/v4/internal/fuzzers" ) type filesWithPatternStr struct { @@ -66,7 +51,7 @@ var languageFuzzSpecs = map[clients.LanguageName]languageFuzzConfig{ clients.Go: { filePatterns: []string{"*_test.go"}, funcPattern: `func\s+Fuzz\w+\s*\(\w+\s+\*testing.F\)`, - Name: fuzzerBuiltInGo, + Name: fuzzers.BuiltInGo, URL: asPointer("https://go.dev/doc/fuzz/"), Desc: asPointer( "Go fuzzing intelligently walks through the source code to report failures and find vulnerabilities."), @@ -89,7 +74,7 @@ var languageFuzzSpecs = map[clients.LanguageName]languageFuzzConfig{ // Look for direct imports of QuickCheck, Hedgehog, validity, or SmallCheck, // or their indirect imports through the higher-level Hspec or Tasty testing frameworks. funcPattern: `import\s+(qualified\s+)?Test\.((Hspec|Tasty)\.)?(QuickCheck|Hedgehog|Validity|SmallCheck)`, - Name: fuzzerPropertyBasedHaskell, + Name: fuzzers.PropertyBasedHaskell, Desc: propertyBasedDescription("Haskell"), }, // Fuzz patterns for JavaScript and TypeScript based on property-based testing. @@ -106,7 +91,7 @@ var languageFuzzSpecs = map[clients.LanguageName]languageFuzzConfig{ // Look for direct imports of fast-check and its test runners integrations. funcPattern: `(from\s+['"](fast-check|@fast-check/(ava|jest|vitest))['"]|` + `require\(\s*['"](fast-check|@fast-check/(ava|jest|vitest))['"]\s*\))`, - Name: fuzzerPropertyBasedJavaScript, + Name: fuzzers.PropertyBasedJavaScript, Desc: propertyBasedDescription("JavaScript"), }, clients.TypeScript: { @@ -114,48 +99,48 @@ var languageFuzzSpecs = map[clients.LanguageName]languageFuzzConfig{ // Look for direct imports of fast-check and its test runners integrations. funcPattern: `(from\s+['"](fast-check|@fast-check/(ava|jest|vitest))['"]|` + `require\(\s*['"](fast-check|@fast-check/(ava|jest|vitest))['"]\s*\))`, - Name: fuzzerPropertyBasedTypeScript, + Name: fuzzers.PropertyBasedTypeScript, Desc: propertyBasedDescription("TypeScript"), }, clients.Python: { filePatterns: []string{"*.py"}, funcPattern: `import atheris`, - Name: fuzzerPythonAtheris, + Name: fuzzers.PythonAtheris, Desc: asPointer( "Python fuzzing by way of Atheris"), }, clients.C: { filePatterns: []string{"*.c"}, funcPattern: `LLVMFuzzerTestOneInput`, - Name: fuzzerCLibFuzzer, + Name: fuzzers.CLibFuzzer, Desc: asPointer( "Fuzzed with C LibFuzzer"), }, clients.Cpp: { filePatterns: []string{"*.cc", "*.cpp"}, funcPattern: `LLVMFuzzerTestOneInput`, - Name: fuzzerCppLibFuzzer, + Name: fuzzers.CppLibFuzzer, Desc: asPointer( "Fuzzed with cpp LibFuzzer"), }, clients.Rust: { filePatterns: []string{"*.rs"}, funcPattern: `libfuzzer_sys`, - Name: fuzzerRustCargoFuzz, + Name: fuzzers.RustCargoFuzz, Desc: asPointer( "Fuzzed with Cargo-fuzz"), }, clients.Java: { filePatterns: []string{"*.java"}, funcPattern: `com.code_intelligence.jazzer.api.FuzzedDataProvider;`, - Name: fuzzerJavaJazzerFuzzer, + Name: fuzzers.JavaJazzerFuzzer, Desc: asPointer( "Fuzzed with Jazzer fuzzer"), }, clients.Swift: { filePatterns: []string{"*.swift"}, funcPattern: `LLVMFuzzerTestOneInput`, - Name: fuzzerSwiftLibFuzzer, + Name: fuzzers.SwiftLibFuzzer, Desc: asPointer( "Fuzzed with Swift LibFuzzer"), }, @@ -164,15 +149,15 @@ var languageFuzzSpecs = map[clients.LanguageName]languageFuzzConfig{ // Fuzzing runs Fuzzing check. func Fuzzing(c *checker.CheckRequest) (checker.FuzzingData, error) { - var fuzzers []checker.Tool + var detectedFuzzers []checker.Tool usingCFLite, e := checkCFLite(c) if e != nil { return checker.FuzzingData{}, fmt.Errorf("%w", e) } if usingCFLite { - fuzzers = append(fuzzers, + detectedFuzzers = append(detectedFuzzers, checker.Tool{ - Name: fuzzerClusterFuzzLite, + Name: fuzzers.ClusterFuzzLite, URL: asPointer("https://github.com/google/clusterfuzzlite"), Desc: asPointer("continuous fuzzing solution that runs as part of Continuous Integration (CI) workflows"), // TODO: File. @@ -185,9 +170,9 @@ func Fuzzing(c *checker.CheckRequest) (checker.FuzzingData, error) { return checker.FuzzingData{}, fmt.Errorf("%w", e) } if usingOSSFuzz { - fuzzers = append(fuzzers, + detectedFuzzers = append(detectedFuzzers, checker.Tool{ - Name: fuzzerOSSFuzz, + Name: fuzzers.OSSFuzz, URL: asPointer("https://github.com/google/oss-fuzz"), Desc: asPointer("Continuous Fuzzing for Open Source Software"), // TODO: File. @@ -206,7 +191,7 @@ func Fuzzing(c *checker.CheckRequest) (checker.FuzzingData, error) { return checker.FuzzingData{}, fmt.Errorf("%w", e) } if usingFuzzFunc { - fuzzers = append(fuzzers, + detectedFuzzers = append(detectedFuzzers, checker.Tool{ Name: languageFuzzSpecs[lang].Name, URL: languageFuzzSpecs[lang].URL, @@ -216,7 +201,7 @@ func Fuzzing(c *checker.CheckRequest) (checker.FuzzingData, error) { ) } } - return checker.FuzzingData{Fuzzers: fuzzers}, nil + return checker.FuzzingData{Fuzzers: detectedFuzzers}, nil } func checkCFLite(c *checker.CheckRequest) (bool, error) { diff --git a/checks/raw/pinned_dependencies.go b/checks/raw/pinned_dependencies.go index 7a3031e4506b..afc352873def 100644 --- a/checks/raw/pinned_dependencies.go +++ b/checks/raw/pinned_dependencies.go @@ -162,7 +162,6 @@ var validateDockerfileInsecureDownloads fileparser.DoWhileTrueOnFileContent = fu // Walk the Dockerfile's AST. taintedFiles := make(map[string]bool) for i := range res.AST.Children { - var bytes []byte child := res.AST.Children[i] cmdType := child.Value @@ -172,21 +171,33 @@ var validateDockerfileInsecureDownloads fileparser.DoWhileTrueOnFileContent = fu continue } - var valueList []string - for n := child.Next; n != nil; n = n.Next { - valueList = append(valueList, n.Value) - } + if len(child.Heredocs) > 0 { + startOffset := 1 + for _, heredoc := range child.Heredocs { + cmd := heredoc.Content + lineCount := startOffset + strings.Count(cmd, "\n") + if err := validateShellFile(pathfn, uint(child.StartLine+startOffset)-1, uint(child.StartLine+lineCount)-2, + []byte(cmd), taintedFiles, pdata); err != nil { + return false, err + } + startOffset += lineCount + } + } else { + var valueList []string + for n := child.Next; n != nil; n = n.Next { + valueList = append(valueList, n.Value) + } - if len(valueList) == 0 { - return false, sce.WithMessage(sce.ErrScorecardInternal, errInternalInvalidDockerFile.Error()) - } + if len(valueList) == 0 { + return false, sce.WithMessage(sce.ErrScorecardInternal, errInternalInvalidDockerFile.Error()) + } - // Build a file content. - cmd := strings.Join(valueList, " ") - bytes = append(bytes, cmd...) - if err := validateShellFile(pathfn, uint(child.StartLine)-1, uint(child.EndLine)-1, - bytes, taintedFiles, pdata); err != nil { - return false, err + // Build a file content. + cmd := strings.Join(valueList, " ") + if err := validateShellFile(pathfn, uint(child.StartLine)-1, uint(child.EndLine)-1, + []byte(cmd), taintedFiles, pdata); err != nil { + return false, err + } } } diff --git a/checks/raw/pinned_dependencies_test.go b/checks/raw/pinned_dependencies_test.go index 0eb2ea67c142..f734075005d0 100644 --- a/checks/raw/pinned_dependencies_test.go +++ b/checks/raw/pinned_dependencies_test.go @@ -631,6 +631,38 @@ func TestDockerfileInvalidFiles(t *testing.T) { } } +func TestDockerfileInsecureDownloadsBrokenCommands(t *testing.T) { + t.Parallel() + //nolint:govet + tests := []struct { + name string + filename string + err error + }{ + { + name: "dockerfile downloads", + filename: "./testdata/Dockerfile-empty-run-array", + err: errInternalInvalidDockerFile, + }, + } + for _, tt := range tests { + tt := tt // Re-initializing variable so it is not changed while executing the closure below + t.Run(tt.name, func(t *testing.T) { + t.Parallel() + content, err := os.ReadFile(tt.filename) + if err != nil { + t.Errorf("cannot read file: %v", err) + } + + var r checker.PinningDependenciesData + _, err = validateDockerfileInsecureDownloads(tt.filename, content, &r) + if !strings.Contains(err.Error(), tt.err.Error()) { + t.Errorf(cmp.Diff(err, tt.err, cmpopts.EquateErrors())) + } + }) + } +} + func TestDockerfileInsecureDownloadsLineNumber(t *testing.T) { t.Parallel() //nolint:govet @@ -843,6 +875,149 @@ func TestDockerfileInsecureDownloadsLineNumber(t *testing.T) { } } +func TestDockerfileWithHeredocsInsecureDownloadsLineNumber(t *testing.T) { + t.Parallel() + //nolint:govet + tests := []struct { + name string + filename string + processingErrors int + expected []struct { + snippet string + startLine uint + endLine uint + pinned bool + t checker.DependencyUseType + } + }{ + { + name: "dockerfile heredoc downloads", + filename: "./testdata/Dockerfile-download-heredoc", + processingErrors: 1, + expected: []struct { + snippet string + startLine uint + endLine uint + pinned bool + t checker.DependencyUseType + }{ + { + snippet: "pip install --no-deps -e git+https://github.com/username/repo.git@v1.0#egg=package", + startLine: 20, + endLine: 20, + pinned: false, + t: checker.DependencyUseTypePipCommand, + }, + { + snippet: "pip install --no-deps -e git+https://github.com/username/repo.git@0123456789abcdef0123456789abcdef01234567", + startLine: 24, + endLine: 24, + pinned: true, + t: checker.DependencyUseTypePipCommand, + }, + { + snippet: "curl bla | bash", + startLine: 28, + endLine: 28, + pinned: false, + t: checker.DependencyUseTypeDownloadThenRun, + }, + { + snippet: "pip install --no-deps -e git+https://github.com/username/repo.git@0123456789abcdef0123456789abcdef01234567", + startLine: 32, + endLine: 32, + pinned: true, + t: checker.DependencyUseTypePipCommand, + }, + { + snippet: "pip install --no-deps -e git+https://github.com/username/repo.git@v1.0#egg=package", + startLine: 36, + endLine: 36, + pinned: false, + t: checker.DependencyUseTypePipCommand, + }, + { + snippet: "curl bla | bash", + startLine: 38, + endLine: 38, + pinned: false, + t: checker.DependencyUseTypeDownloadThenRun, + }, + { + snippet: "pip install --no-deps -e git+https://github.com/username/repo.git@0123456789abcdef0123456789abcdef01234567", + startLine: 42, + endLine: 43, + pinned: true, + t: checker.DependencyUseTypePipCommand, + }, + { + snippet: "pip install --no-deps -e git+https://github.com/username/repo.git@v1.0#egg=package", + startLine: 43, + endLine: 44, + pinned: false, + t: checker.DependencyUseTypePipCommand, + }, + { + snippet: "curl bla | bash", + startLine: 45, + endLine: 45, + pinned: false, + t: checker.DependencyUseTypeDownloadThenRun, + }, + { + snippet: "pip install --no-deps -e git+https://github.com/username/repo.git@0123456789abcdef0123456789abcdef01234567", + startLine: 50, + endLine: 52, + pinned: true, + t: checker.DependencyUseTypePipCommand, + }, + { + snippet: "curl bla | bash", + startLine: 51, + endLine: 53, + pinned: false, + t: checker.DependencyUseTypeDownloadThenRun, + }, + }, + }, + } + for _, tt := range tests { + tt := tt // Re-initializing variable so it is not changed while executing the closure below + t.Run(tt.name, func(t *testing.T) { + t.Parallel() + content, err := os.ReadFile(tt.filename) + if err != nil { + t.Errorf("cannot read file: %v", err) + } + + var r checker.PinningDependenciesData + _, err = validateDockerfileInsecureDownloads(tt.filename, content, &r) + if err != nil { + t.Errorf("error during validateDockerfileInsecureDownloads: %v", err) + } + + for _, expectedDep := range tt.expected { + isExpectedDep := func(dep checker.Dependency) bool { + return dep.Location.Offset == expectedDep.startLine && + dep.Location.EndOffset == expectedDep.endLine && + dep.Location.Path == tt.filename && + dep.Location.Snippet == expectedDep.snippet && + *dep.Pinned == expectedDep.pinned && + dep.Type == expectedDep.t + } + + if !scut.ValidatePinningDependencies(isExpectedDep, &r) { + t.Errorf("test failed: dependency not present: %+v", tt.expected) + } + } + + if tt.processingErrors != len(r.ProcessingErrors) { + t.Errorf("expected %v processing errors. Got %v", tt.processingErrors, len(r.ProcessingErrors)) + } + }) + } +} + func TestShellscriptInsecureDownloadsLineNumber(t *testing.T) { t.Parallel() //nolint:govet diff --git a/checks/raw/sast.go b/checks/raw/sast.go index 08384cd35b13..0dc9ef52ff76 100644 --- a/checks/raw/sast.go +++ b/checks/raw/sast.go @@ -54,11 +54,10 @@ func SAST(c *checker.CheckRequest) (checker.SASTData, error) { } data.Commits = commits - codeQLWorkflows, err := codeQLInCheckDefinitions(c) + codeQLWorkflows, err := getSastUsesWorkflows(c, "^github/codeql-action/analyze$", checker.CodeQLWorkflow) if err != nil { return data, err } - data.Workflows = append(data.Workflows, codeQLWorkflows...) sonarWorkflows, err := getSonarWorkflows(c) @@ -67,11 +66,24 @@ func SAST(c *checker.CheckRequest) (checker.SASTData, error) { } data.Workflows = append(data.Workflows, sonarWorkflows...) - snykWorkflows, err := getSnykWorkflows(c) + snykWorkflows, err := getSastUsesWorkflows(c, "^snyk/actions/.*", checker.SnykWorkflow) if err != nil { return data, err } data.Workflows = append(data.Workflows, snykWorkflows...) + + pysaWorkflows, err := getSastUsesWorkflows(c, "^facebook/pysa-action$", checker.PysaWorkflow) + if err != nil { + return data, err + } + data.Workflows = append(data.Workflows, pysaWorkflows...) + + qodanaWorkflows, err := getSastUsesWorkflows(c, "^JetBrains/qodana-action$", checker.QodanaWorkflow) + if err != nil { + return data, err + } + data.Workflows = append(data.Workflows, qodanaWorkflows...) + return data, nil } @@ -129,13 +141,20 @@ func sastToolInCheckRuns(c *checker.CheckRequest) ([]checker.SASTCommit, error) return sastCommits, nil } -func codeQLInCheckDefinitions(c *checker.CheckRequest) ([]checker.SASTWorkflow, error) { +// getSastUsesWorkflows matches if the "uses" field of a GitHub action matches +// a given regex by way of usesRegex. Each workflow that matches the usesRegex +// is appended to the slice that is returned. +func getSastUsesWorkflows( + c *checker.CheckRequest, + usesRegex string, + checkerType checker.SASTWorkflowType, +) ([]checker.SASTWorkflow, error) { var workflowPaths []string var sastWorkflows []checker.SASTWorkflow err := fileparser.OnMatchingFileContentDo(c.RepoClient, fileparser.PathMatcher{ Pattern: ".github/workflows/*", CaseSensitive: false, - }, searchGitHubActionWorkflowCodeQL, &workflowPaths) + }, searchGitHubActionWorkflowUseRegex, &workflowPaths, usesRegex) if err != nil { return sastWorkflows, err } @@ -146,7 +165,7 @@ func codeQLInCheckDefinitions(c *checker.CheckRequest) ([]checker.SASTWorkflow, Offset: checker.OffsetDefault, Type: finding.FileTypeSource, }, - Type: checker.CodeQLWorkflow, + Type: checkerType, } sastWorkflows = append(sastWorkflows, sastWorkflow) @@ -154,8 +173,7 @@ func codeQLInCheckDefinitions(c *checker.CheckRequest) ([]checker.SASTWorkflow, return sastWorkflows, nil } -// Check file content. -var searchGitHubActionWorkflowCodeQL fileparser.DoWhileTrueOnFileContent = func(path string, +var searchGitHubActionWorkflowUseRegex fileparser.DoWhileTrueOnFileContent = func(path string, content []byte, args ...interface{}, ) (bool, error) { @@ -163,83 +181,22 @@ var searchGitHubActionWorkflowCodeQL fileparser.DoWhileTrueOnFileContent = func( return true, nil } - if len(args) != 1 { + if len(args) != 2 { return false, fmt.Errorf( - "searchGitHubActionWorkflowCodeQL requires exactly 1 arguments: %w", errInvalid) + "searchGitHubActionWorkflowUseRegex requires exactly 2 arguments: %w", errInvalid) } // Verify the type of the data. paths, ok := args[0].(*[]string) if !ok { return false, fmt.Errorf( - "searchGitHubActionWorkflowCodeQL expects arg[0] of type *[]string: %w", errInvalid) - } - - workflow, errs := actionlint.Parse(content) - if len(errs) > 0 && workflow == nil { - return false, fileparser.FormatActionlintError(errs) - } - - for _, job := range workflow.Jobs { - for _, step := range job.Steps { - e, ok := step.Exec.(*actionlint.ExecAction) - if !ok || e == nil || e.Uses == nil { - continue - } - // Parse out repo / SHA. - uses := strings.TrimPrefix(e.Uses.Value, "actions://") - action, _, _ := strings.Cut(uses, "@") - if action == "github/codeql-action/analyze" { - *paths = append(*paths, path) - } - } - } - return true, nil -} - -func getSnykWorkflows(c *checker.CheckRequest) ([]checker.SASTWorkflow, error) { - var workflowPaths []string - var sastWorkflows []checker.SASTWorkflow - err := fileparser.OnMatchingFileContentDo(c.RepoClient, fileparser.PathMatcher{ - Pattern: ".github/workflows/*", - CaseSensitive: false, - }, searchGitHubActionWorkflowSnyk, &workflowPaths) - if err != nil { - return sastWorkflows, err - } - for _, path := range workflowPaths { - sastWorkflow := checker.SASTWorkflow{ - File: checker.File{ - Path: path, - Offset: checker.OffsetDefault, - Type: finding.FileTypeSource, - }, - Type: checker.SnykWorkflow, - } - - sastWorkflows = append(sastWorkflows, sastWorkflow) - } - return sastWorkflows, nil -} - -var searchGitHubActionWorkflowSnyk fileparser.DoWhileTrueOnFileContent = func(path string, - content []byte, - args ...interface{}, -) (bool, error) { - if !fileparser.IsWorkflowFile(path) { - return true, nil - } - - if len(args) != 1 { - return false, fmt.Errorf( - "searchSnyk requires exactly 1 arguments: %w", errInvalid) + "searchGitHubActionWorkflowUseRegex expects arg[0] of type *[]string: %w", errInvalid) } - // Verify the type of the data. - paths, ok := args[0].(*[]string) + usesRegex, ok := args[1].(string) if !ok { return false, fmt.Errorf( - "searchSnyk expects arg[0] of type *[]string: %w", errInvalid) + "searchGitHubActionWorkflowUseRegex expects arg[1] of type string: %w", errInvalid) } workflow, errs := actionlint.Parse(content) @@ -256,7 +213,8 @@ var searchGitHubActionWorkflowSnyk fileparser.DoWhileTrueOnFileContent = func(pa // Parse out repo / SHA. uses := strings.TrimPrefix(e.Uses.Value, "actions://") action, _, _ := strings.Cut(uses, "@") - if strings.HasPrefix(action, "snyk/actions/") { + re := regexp.MustCompile(usesRegex) + if re.MatchString(action) { *paths = append(*paths, path) } } diff --git a/checks/raw/sast_test.go b/checks/raw/sast_test.go index 939c84bf85e9..8bdf4020463a 100644 --- a/checks/raw/sast_test.go +++ b/checks/raw/sast_test.go @@ -149,6 +149,52 @@ func TestSAST(t *testing.T) { }, }, }, + { + name: "Has Pysa", + files: []string{".github/workflows/github-pysa-workflow.yaml"}, + commits: []clients.Commit{ + { + AssociatedMergeRequest: clients.PullRequest{ + Number: 1, + }, + }, + }, + expected: checker.SASTData{ + Workflows: []checker.SASTWorkflow{ + { + Type: checker.PysaWorkflow, + File: checker.File{ + Path: ".github/workflows/github-pysa-workflow.yaml", + Offset: checker.OffsetDefault, + Type: finding.FileTypeSource, + }, + }, + }, + }, + }, + { + name: "Has Qodana", + files: []string{".github/workflows/github-qodana-workflow.yaml"}, + commits: []clients.Commit{ + { + AssociatedMergeRequest: clients.PullRequest{ + Number: 1, + }, + }, + }, + expected: checker.SASTData{ + Workflows: []checker.SASTWorkflow{ + { + Type: checker.QodanaWorkflow, + File: checker.File{ + Path: ".github/workflows/github-qodana-workflow.yaml", + Offset: checker.OffsetDefault, + Type: finding.FileTypeSource, + }, + }, + }, + }, + }, } for _, tt := range tests { tt := tt // Re-initializing variable so it is not changed while executing the closure below diff --git a/checks/raw/testdata/.github/workflows/github-pysa-workflow.yaml b/checks/raw/testdata/.github/workflows/github-pysa-workflow.yaml new file mode 100644 index 000000000000..e36886bbc2f7 --- /dev/null +++ b/checks/raw/testdata/.github/workflows/github-pysa-workflow.yaml @@ -0,0 +1,22 @@ +name: Pysa Scan + +on: + push: + branches: + - main + pull_request: + +name: Pysa + +jobs: + pysa: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Run Pysa Action + uses: facebook/pysa-action + with: + repo-directory: './' + requirements-path: 'requirements.txt' + infer-types: true \ No newline at end of file diff --git a/checks/raw/testdata/.github/workflows/github-qodana-workflow.yaml b/checks/raw/testdata/.github/workflows/github-qodana-workflow.yaml new file mode 100644 index 000000000000..5553c46651f8 --- /dev/null +++ b/checks/raw/testdata/.github/workflows/github-qodana-workflow.yaml @@ -0,0 +1,25 @@ +name: Qodana +on: + workflow_dispatch: + pull_request: + push: + branches: + - main + - 'releases/*' + +jobs: + qodana: + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + checks: write + steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.event.pull_request.head.sha }} + fetch-depth: 0 + - name: 'Qodana Scan' + uses: JetBrains/qodana-action@v2023.2 + env: + QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} \ No newline at end of file diff --git a/checks/raw/testdata/Dockerfile-download-heredoc b/checks/raw/testdata/Dockerfile-download-heredoc new file mode 100644 index 000000000000..fb1669f4a15b --- /dev/null +++ b/checks/raw/testdata/Dockerfile-download-heredoc @@ -0,0 +1,59 @@ + +# Copyright 2024 OpenSSF Scorecard Authors +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Add tab + FROM python:3.7 + +RUN <<-EOT + pip install --no-deps -e git+https://github.com/username/repo.git@v1.0#egg=package +EOT + +RUN </repository/commits + }, + }, + } + glclient, err := gitlab.NewClient("", gitlab.WithHTTPClient(httpClient)) + if err != nil { + t.Fatalf("gitlab.NewClient error: %v", err) + } + commitshandler := &commitsHandler{ + glClient: glclient, + } + + repoURL := repoURL{ + owner: "ossf-tests", + commitSHA: clients.HeadSHA, + } + + commitshandler.init(&repoURL, 30) + + gqlhandler := graphqlHandler{ + client: httpClient, + } + gqlhandler.init(context.Background(), &repoURL) + + client := &Client{glClient: glclient, commits: commitshandler, graphql: &gqlhandler} + + got, Err := client.ListCommits() + + if (Err != nil) != tt.wantErr { + t.Fatalf("ListCommits, wanted Error: %v, got Error: %v", tt.wantErr, Err) + } + if !cmp.Equal(got, tt.commits) { + t.Errorf("ListCommits() got %v, want %v", got, tt.commits) + } + }) + } +} diff --git a/clients/gitlabrepo/repo.go b/clients/gitlabrepo/repo.go index 65a4478306c4..1241fecb4b6d 100644 --- a/clients/gitlabrepo/repo.go +++ b/clients/gitlabrepo/repo.go @@ -150,5 +150,6 @@ func MakeGitlabRepo(input string) (clients.Repo, error) { if err := repo.IsValid(); err != nil { return nil, fmt.Errorf("error in IsValid: %w", err) } + return &repo, nil } diff --git a/clients/gitlabrepo/repo_test.go b/clients/gitlabrepo/repo_test.go index c5f8d0185c87..5f8998165c22 100644 --- a/clients/gitlabrepo/repo_test.go +++ b/clients/gitlabrepo/repo_test.go @@ -64,14 +64,24 @@ func TestRepoURL_IsValid(t *testing.T) { wantErr: false, }, { - name: "valid https address with trailing slash", + name: "valid gitlab project", expected: repoURL{ - scheme: "https", host: "https://gitlab.com", owner: "ossf-test", project: "scorecard-check-binary-artifacts-e2e", }, - inputURL: "https://gitlab.com/ossf-test/scorecard-check-binary-artifacts-e2e/", + inputURL: "https://gitlab.com/ossf-test/scorecard-check-binary-artifacts-e2e", + wantErr: false, + }, + { + name: "valid https address with trailing slash", + expected: repoURL{ + scheme: "https", + host: "https://gitlab.haskell.org", + owner: "haskell", + project: "filepath", + }, + inputURL: "https://gitlab.haskell.org/haskell/filepath", wantErr: false, }, { @@ -105,6 +115,7 @@ func TestRepoURL_IsValid(t *testing.T) { if err := r.IsValid(); (err != nil) != tt.wantErr { t.Errorf("repoURL.IsValid() error = %v, wantErr %v", err, tt.wantErr) } + t.Log(r.URI()) if !tt.wantErr && !cmp.Equal(tt.expected, r, cmpopts.IgnoreUnexported(repoURL{})) { t.Logf("expected: %s GOT: %s", tt.expected.host, r.host) t.Logf("expected: %s GOT: %s", tt.expected.owner, r.owner) diff --git a/clients/gitlabrepo/testdata/valid-checkruns-1 b/clients/gitlabrepo/testdata/empty-response similarity index 100% rename from clients/gitlabrepo/testdata/valid-checkruns-1 rename to clients/gitlabrepo/testdata/empty-response diff --git a/cron/internal/data/projects.csv b/cron/internal/data/projects.csv index 2a20bee22e7e..55a6039d5057 100755 --- a/cron/internal/data/projects.csv +++ b/cron/internal/data/projects.csv @@ -5,6 +5,7 @@ github.com/0-Auth/0Auth, github.com/0-hun/ajax,num_dependents_deps.dev:0 github.com/0-u-0/nvidia-gpu-monitor,num_dependents_deps.dev:0 github.com/0-vortex/open-sauced-semantic-config-test,num_dependents_deps.dev:0 +github.com/0-vortex/release, github.com/0/Boltzmannizer, github.com/0/mckenzie, github.com/00-Evan/shattered-pixel-dungeon,criticality_score:0.422350 @@ -83,6 +84,8 @@ github.com/01-edu/registry,num_dependents_deps.dev:0 github.com/01-edu/runner,num_dependents_deps.dev:0 github.com/0100101001010000/PyTechnicalIndicators, github.com/0101/django-smartadmin, +github.com/01011111/assemble, +github.com/01011111/slack-notification, github.com/0101solar/loaders,num_dependents_deps.dev:0 github.com/010webdev/react-prerender, github.com/01100100/micropsi, @@ -270,6 +273,7 @@ github.com/0918nobita/ae-typed-expr,num_dependents_deps.dev:0 github.com/0918nobita/kodai,num_dependents_deps.dev:0 github.com/0918nobita/ouj-cli,num_dependents_deps.dev:0 github.com/0918nobita/rollup-plugin-elm2,num_dependents_deps.dev:0 +github.com/0918nobita/setup-cljstyle, github.com/0918nobita/wasm-ts,num_dependents_deps.dev:0 github.com/0987363/agent,num_dependents_deps.dev:0 github.com/0987363/cache,num_dependents_deps.dev:0 @@ -305,6 +309,7 @@ github.com/0TH0N/project-lvl3-s390,num_dependents_deps.dev:0 github.com/0X1A/wmm,num_dependents_deps.dev:0 github.com/0X1A/yabs,num_dependents_deps.dev:0 github.com/0Z3/ose,num_dependents_deps.dev:0 +github.com/0ad-matters/gh-action-build-pyromod, github.com/0ad/0ad,criticality_score:0.481240 github.com/0ahz/bot-notify,num_dependents_deps.dev:0 github.com/0ahz/bs-console-qrcode, @@ -346,6 +351,7 @@ github.com/0confirmation/0confirmation,num_dependents_deps.dev:4 github.com/0ctanium/next-sitemap,num_dependents_deps.dev:0 github.com/0ctobat/octobat-npm,num_dependents_deps.dev:0 github.com/0daryo/grpc-gateway,num_dependents_deps.dev:0 +github.com/0daryo/labelcommit, github.com/0daryo/pogen,num_dependents_deps.dev:0 github.com/0daryo/test-k8s-operator,num_dependents_deps.dev:0 github.com/0dayfall/ctw,num_dependents_deps.dev:0 @@ -375,6 +381,7 @@ github.com/0eu/data-structures-and-algorithms,num_dependents_deps.dev:0 github.com/0exp/gem_template,num_dependents_deps.dev:0 github.com/0exp/siege,num_dependents_deps.dev:0 github.com/0exp/type-utils,num_dependents_deps.dev:0 +github.com/0fatal/laf-oss-upload, github.com/0fatih/brandplus-toolkit,num_dependents_deps.dev:0 github.com/0fenziv/wikipull,num_dependents_deps.dev:0 github.com/0fuz/xzerox-executor,num_dependents_deps.dev:0 @@ -382,6 +389,7 @@ github.com/0fuz/xzerox-executor-quickstart, github.com/0g3/a2s,num_dependents_deps.dev:0 github.com/0gawa/gulp-concatenate,num_dependents_deps.dev:0 github.com/0gawa/pandocfiltersjs,num_dependents_deps.dev:0 +github.com/0h-n0/flet-action-windows, github.com/0h-n0/linesend, github.com/0h-n0/simple-lock, github.com/0h-n0/tf_conceptual_graph, @@ -412,6 +420,7 @@ github.com/0k/kids.vcs, github.com/0k/kids.xml, github.com/0k/shyaml,criticality_score:0.335860 github.com/0kalekale/libkget, +github.com/0kenx/ChatGPT-CodeReview, github.com/0kim/bccard_email_parser, github.com/0l1v3rr/cli-file-manager,num_dependents_deps.dev:0 github.com/0ldsk00l/nestopia,criticality_score:0.328190 @@ -496,6 +505,7 @@ github.com/0rang3max/opengrapher, github.com/0rang3max/transfersh-cli-config, github.com/0rangeT1ger/React-form-validator,num_dependents_deps.dev:0 github.com/0raymondjiang0/go-shopify,num_dependents_deps.dev:0 +github.com/0research/ai-sdk, github.com/0riac/alias-extension,num_dependents_deps.dev:0 github.com/0riac/redux-extension,num_dependents_deps.dev:0 github.com/0robustus1/seo_report,num_dependents_deps.dev:0 @@ -586,6 +596,7 @@ github.com/0x010C/LinguaRecorder,num_dependents_deps.dev:0 github.com/0x0110Y/clivia, github.com/0x01h/cryptemis, github.com/0x01h/pyronos, +github.com/0x022b/galaxy-role-import-action, github.com/0x022b/transmissionrpc-ng, github.com/0x04/retro-remix-catcher,num_dependents_deps.dev:0 github.com/0x04/string-mutilator,num_dependents_deps.dev:0 @@ -773,6 +784,7 @@ github.com/0x77dev/pm,num_dependents_deps.dev:0 github.com/0x77dev/tellots,num_dependents_deps.dev:0 github.com/0x77dev/tunneler,num_dependents_deps.dev:0 github.com/0x7b1/algorithms,num_dependents_deps.dev:0 +github.com/0x7d4/notionweb, github.com/0x7f/node-windows-local-auth,num_dependents_deps.dev:0 github.com/0x7f/node-windows-sid,num_dependents_deps.dev:0 github.com/0x7f/odbc-session-store,num_dependents_deps.dev:0 @@ -843,6 +855,7 @@ github.com/0xHaru/Nerd-Storage, github.com/0xHiteshPatel/sphinxcontrib-addmetahtml, github.com/0xInfection/TIDoS-Framework,criticality_score:0.355150 github.com/0xInfection/XSRFProbe, +github.com/0xJM/aws-secrets-manager-action, github.com/0xJeremy/Blackboard, github.com/0xJeremy/FireEye,num_dependents_deps.dev:0 github.com/0xJeremy/ctrl.engine, @@ -853,10 +866,13 @@ github.com/0xJeremy/socket.py,num_dependents_deps.dev:0 github.com/0xJeremy/viz.engine, github.com/0xKD/pydantic-cloud-settings, github.com/0xKirill/fblib, +github.com/0xKrauser/arweave-ens-action, +github.com/0xKrauser/bundlr-action, github.com/0xLLLLH/react-krpano,num_dependents_deps.dev:0 github.com/0xLeia/UnicSwap,num_dependents_deps.dev:0 github.com/0xMatt/ngx-oauth-client,num_dependents_deps.dev:0 github.com/0xMatthewGroves/android-testrail-sdk,Google +github.com/0xMemoryGrinder/interpret-criterion-action, github.com/0xNyCode/TwitchAppAPIWrapper,num_dependents_deps.dev:0 github.com/0xOmarA/RadixLib, github.com/0xPr0xy/django-postit, @@ -874,6 +890,7 @@ github.com/0xR/graphql-transform-federation,num_dependents_deps.dev:6 github.com/0xSaiyajin/searchxmlyandex, github.com/0xSilene/ramp-primes,num_dependents_deps.dev:0 github.com/0xStarcat/CircularNatalHoroscopeJS, +github.com/0xStryK3R/test_gh_actions_arup, github.com/0xSwiftSilver/fastpaste, github.com/0xWaleed/command-handler,num_dependents_deps.dev:0 github.com/0xWaleed/parse-line,num_dependents_deps.dev:0 @@ -988,6 +1005,7 @@ github.com/0xerr0r/crony,num_dependents_deps.dev:0 github.com/0xerr0r/go-cache,num_dependents_deps.dev:0 github.com/0xf4e/getcov,num_dependents_deps.dev:0 github.com/0xfaket/0xfaket.github.io,num_dependents_deps.dev:0 +github.com/0xfatal/z-electron-builder, github.com/0xfaust/game-of-life,num_dependents_deps.dev:0 github.com/0xfe/pennywall,num_dependents_deps.dev:0 github.com/0xfe/vexchords,num_dependents_deps.dev:0 @@ -1051,6 +1069,8 @@ github.com/0xma12k/graylog-smsmkt-gateway,num_dependents_deps.dev:0 github.com/0xmadao/go-lib,num_dependents_deps.dev:0 github.com/0xmoehau/private-quest-vf,num_dependents_deps.dev:0 github.com/0xmtn/interactivekill,num_dependents_deps.dev:0 +github.com/0xnu/go-deploy-action, +github.com/0xnu/jekyll-4-deploy-action, github.com/0xor1/tlbx,num_dependents_deps.dev:0 github.com/0xori/open-walkthrough,num_dependents_deps.dev:0 github.com/0xorz/delete, @@ -1087,6 +1107,7 @@ github.com/0xsha/proxyfor,num_dependents_deps.dev:0 github.com/0xsheinn/go_rce_demo,num_dependents_deps.dev:0 github.com/0xsky/xredis,criticality_score:0.322060 github.com/0xsteew/wireguardgatewaymanager,num_dependents_deps.dev:0 +github.com/0xstepit/trello-github-automation, github.com/0xsuid/tiny,num_dependents_deps.dev:0 github.com/0xsuid/winbattery,num_dependents_deps.dev:0 github.com/0xswitch/Hellf, @@ -1108,6 +1129,7 @@ github.com/0z09e/cshell, github.com/0zat/Bs_dom,num_dependents_deps.dev:0 github.com/0zelot/daily-news-ts,num_dependents_deps.dev:0 github.com/1-0/ftpservx, +github.com/1-1is0/docker-compose-build-push, github.com/1-Platform/op-components,num_dependents_deps.dev:0 github.com/1-TwentyThree/iview,num_dependents_deps.dev:0 github.com/1-annum/pyCal2PDF, @@ -1356,6 +1378,7 @@ github.com/1024casts/snake,"criticality_score:0.352570,num_dependents_deps.dev:0 github.com/1024pix/ember-cli-matomo-tag-manager, github.com/1024pix/scalingo-review-app-manager,num_dependents_deps.dev:0 github.com/1027149644/npm-demo-master,num_dependents_deps.dev:0 +github.com/102757017/buildozer-action, github.com/102er/go-apiserver,num_dependents_deps.dev:0 github.com/103-breads/103-breads,num_dependents_deps.dev:0 github.com/1033020837/GitIgnoreGenerator, @@ -1387,6 +1410,7 @@ github.com/1049451037/Webpage_Text_Extraction, github.com/1049451037/qrcode_song, github.com/104corp/cdk-aws-codedeploy-on-premises,num_dependents_deps.dev:0 github.com/104corp/cfn-basic-module,num_dependents_deps.dev:0 +github.com/104corp/docker-php-testing, github.com/104corp/espack,num_dependents_deps.dev:0 github.com/1053611385/demo-web-server,num_dependents_deps.dev:0 github.com/1054/a3cosmos-gas-evolution, @@ -1512,6 +1536,9 @@ github.com/10up/10up-toolkit,num_dependents_deps.dev:0 github.com/10up/Derrick-CLI,num_dependents_deps.dev:0 github.com/10up/ElasticPress,criticality_score:0.591300 github.com/10up/Engineering-Best-Practices,criticality_score:0.456590 +github.com/10up/action-repo-automator, +github.com/10up/action-wordpress-plugin-asset-update, +github.com/10up/action-wordpress-plugin-build-zip, github.com/10up/action-wordpress-plugin-deploy,criticality_score:0.349240 github.com/10up/babel-preset-default,num_dependents_deps.dev:0 github.com/10up/block-components,num_dependents_deps.dev:0 @@ -1535,6 +1562,7 @@ github.com/10up/vagrant-ghost,num_dependents_deps.dev:0 github.com/10up/wp-component-library,criticality_score:0.406280 github.com/10up/wp-local-docker-v2,criticality_score:0.389440 github.com/10up/wp_mock,criticality_score:0.347930 +github.com/10up/wpcs-action, github.com/10xcompany/neo4j,num_dependents_deps.dev:0 github.com/10xcompany/redis,num_dependents_deps.dev:0 github.com/10xcompany/x-utils,num_dependents_deps.dev:0 @@ -1743,6 +1771,8 @@ github.com/1234556767899/mopidy-spotify-web, github.com/123456789x/pyalg, github.com/12345k/fastapi_logging, github.com/12345k/fastpi-log, +github.com/123FLO321/action-eslint-standalone, +github.com/123FLO321/github-docker-temp, github.com/123anvar/ngz-grid, github.com/123apps/angular2-typed,num_dependents_deps.dev:0 github.com/123apps/typer.js, @@ -1992,6 +2022,8 @@ github.com/1354092549/markdown-it-tinymind,num_dependents_deps.dev:0 github.com/13546777510/cordova-plugin-httpaes256key16,num_dependents_deps.dev:0 github.com/13554620363/react-cli,num_dependents_deps.dev:0 github.com/13580277251/coderzhu,num_dependents_deps.dev:0 +github.com/135e2/build-aur-action, +github.com/135e2/sync-upstream-repo, github.com/13601313270/dynamicVueObject,num_dependents_deps.dev:0 github.com/13601313270/tsRunning, github.com/13601313270/vue-format,num_dependents_deps.dev:0 @@ -2038,6 +2070,7 @@ github.com/13daysaweek/pumlr,num_dependents_deps.dev:0 github.com/13enBi/css-parse,num_dependents_deps.dev:0 github.com/13enBi/vhooks,num_dependents_deps.dev:0 github.com/13enBi/vue-injector, +github.com/13excite/test-push-action, github.com/13g10n/aiogram-forms, github.com/13g10n/hexo-picture,num_dependents_deps.dev:0 github.com/13k/geyser,num_dependents_deps.dev:0 @@ -2056,6 +2089,7 @@ github.com/13luismb/angular10-flatpickr,num_dependents_deps.dev:0 github.com/13paladin/project-lvl1-s132,num_dependents_deps.dev:0 github.com/13pass/transferwise-client,num_dependents_deps.dev:0 github.com/13point5/espy-cli, +github.com/13rac1/block-fixup-merge-action, github.com/13ram-dev/gitcms,num_dependents_deps.dev:0 github.com/13rentgen/PropChecker,num_dependents_deps.dev:0 github.com/13rentgen/battlecruiser,num_dependents_deps.dev:0 @@ -2676,8 +2710,11 @@ github.com/1N50MN14/reconnect-rethinkdb,num_dependents_deps.dev:6 github.com/1N50MN14/thunderstore,num_dependents_deps.dev:0 github.com/1PACVietnam/cropper-js,num_dependents_deps.dev:0 github.com/1Password/1password-teams-open-source,criticality_score:0.461160 +github.com/1Password/check-signed-commits-action, github.com/1Password/connect-sdk-js,num_dependents_deps.dev:0 github.com/1Password/connect-sdk-python, +github.com/1Password/install-cli-action, +github.com/1Password/load-secrets-action, github.com/1Password/typeshare,num_dependents_deps.dev:0 github.com/1Password/typeshare_marker,num_dependents_deps.dev:0 github.com/1QB-Information-Technologies/openqemist, @@ -2766,6 +2803,9 @@ github.com/1and1/sync-package-pom,num_dependents_deps.dev:0 github.com/1and1/testlink-junit,num_dependents_deps.dev:0 github.com/1and1/yap,num_dependents_deps.dev:0 github.com/1andee/jsVideoUrlParser,num_dependents_deps.dev:0 +github.com/1aron/aronrepo, +github.com/1aron/techor, +github.com/1arp/create-a-file-action, github.com/1b15/iSetlX, github.com/1b8/gerald,num_dependents_deps.dev:0 github.com/1b8/schematic,num_dependents_deps.dev:0 @@ -2825,6 +2865,8 @@ github.com/1dcmc/learn,num_dependents_deps.dev:0 github.com/1degrees/webpack-jpush-publish-plugin,num_dependents_deps.dev:0 github.com/1dot75cm/xueqiu, github.com/1dragosh/pySpintax, +github.com/1drturtle/avrae-alias-update-action, +github.com/1drturtle/avrae-gvar-update-action, github.com/1dustindavis/gorilla,num_dependents_deps.dev:0 github.com/1e0ng/simhash, github.com/1e14/1e14,num_dependents_deps.dev:0 @@ -2870,6 +2912,10 @@ github.com/1fabiosoares/sculptor,num_dependents_deps.dev:0 github.com/1fabiosoares/sculptorcli,num_dependents_deps.dev:0 github.com/1fengchen1/DTCTtool, github.com/1feres1/pynmranalysis, +github.com/1fexd/gh-create-release-notes, +github.com/1fexd/gh-trigger-remote-action, +github.com/1fexd/setup-android-sdk-tools-modded-android-jar, +github.com/1fexd/setup-modded-android-jar, github.com/1flow/python-ftr, github.com/1forge/python-forex-quotes, github.com/1franck/redirectchecker,num_dependents_deps.dev:0 @@ -2898,6 +2944,7 @@ github.com/1i7/babbler-js,num_dependents_deps.dev:0 github.com/1i7/babbler-js-material-ui,num_dependents_deps.dev:0 github.com/1i7/babbler-script-js,num_dependents_deps.dev:0 github.com/1i7/babbler-script-react,num_dependents_deps.dev:0 +github.com/1inch/aws-cli, github.com/1inch/limit-order-protocol-utils,num_dependents_deps.dev:0 github.com/1inch/multicall,num_dependents_deps.dev:0 github.com/1inch/permit-signed-approvals-utils,num_dependents_deps.dev:0 @@ -2906,6 +2953,7 @@ github.com/1inus/ng.tree,num_dependents_deps.dev:0 github.com/1inus/ngx.layer,num_dependents_deps.dev:0 github.com/1inus/node-inno,num_dependents_deps.dev:0 github.com/1isten/vue-router-md-transition,num_dependents_deps.dev:0 +github.com/1itachi/sleep-random, github.com/1j01/anypalette.js,num_dependents_deps.dev:0 github.com/1j01/card-game-generator, github.com/1j01/cards,num_dependents_deps.dev:0 @@ -2928,6 +2976,9 @@ github.com/1j123n/testing_github_security,num_dependents_deps.dev:0 github.com/1jo1/go-gitlab,num_dependents_deps.dev:0 github.com/1k-ct/amble,num_dependents_deps.dev:0 github.com/1k-ct/vtuber-cho,num_dependents_deps.dev:0 +github.com/1k-off/action-semver-tag-release, +github.com/1k-off/action-setup-inedo-upack, +github.com/1k-off/iis-apppool-action, github.com/1k-off/uptimerobot,num_dependents_deps.dev:0 github.com/1k-off/uptimerobot-tool,num_dependents_deps.dev:0 github.com/1kastner/CouchDBAuthenticator, @@ -2979,6 +3030,8 @@ github.com/1mxwrk/go_web_app,num_dependents_deps.dev:0 github.com/1n3/dirdar,num_dependents_deps.dev:0 github.com/1nVitr0/amf-js,num_dependents_deps.dev:0 github.com/1natsu172/eslint-summer,num_dependents_deps.dev:0 +github.com/1natsu172/github-action-auto-card-assign, +github.com/1natsu172/github-action-auto-move-related-issue, github.com/1natsu172/handy-media-query,num_dependents_deps.dev:0 github.com/1natsu172/html-element-event-listeners,num_dependents_deps.dev:0 github.com/1natsu172/react-use-event-listeners,num_dependents_deps.dev:0 @@ -3006,6 +3059,7 @@ github.com/1o1w1/leoric,num_dependents_deps.dev:0 github.com/1o1w1/lwq,num_dependents_deps.dev:0 github.com/1o1w1/spa-webpack,num_dependents_deps.dev:3 github.com/1ocalhost/x25519, +github.com/1ockwood/simple-webhook-trigger-action, github.com/1ofshant/conway-react, github.com/1ofshant/highlight-search-text,num_dependents_deps.dev:0 github.com/1oginov/Angular-Gulp-Boilerplate,num_dependents_deps.dev:0 @@ -3212,6 +3266,7 @@ github.com/1wilkens/pam-sys,num_dependents_deps.dev:8 github.com/1withforce/node_mdb_parse,num_dependents_deps.dev:0 github.com/1xINTERNET/drupal-editable,num_dependents_deps.dev:0 github.com/1xcode/hello,num_dependents_deps.dev:0 +github.com/1xtr/publish-layer-version, github.com/1xuan/webgo, github.com/1xuanyuan1/nebPay, github.com/1xuanyuan1/qqmap-vue,num_dependents_deps.dev:0 @@ -3313,6 +3368,7 @@ github.com/2020qiang/go-lib,num_dependents_deps.dev:0 github.com/2020qiang/opdocs,num_dependents_deps.dev:0 github.com/2020swchallenge-moai/kobert4ner, github.com/2021-msa-study/fastmsa, +github.com/2023-hacks-ophions/gitsecure, github.com/202soft/cssio.js,num_dependents_deps.dev:0 github.com/202soft/fileio.js,num_dependents_deps.dev:6 github.com/202soft/fileiojs-command,num_dependents_deps.dev:0 @@ -3326,6 +3382,8 @@ github.com/2046/koa-combo,num_dependents_deps.dev:0 github.com/2046/vue-tools,num_dependents_deps.dev:0 github.com/207inc/react-native-todocu-chat,num_dependents_deps.dev:0 github.com/209/fontello-webpack-plugin,num_dependents_deps.dev:0 +github.com/20Scoops-CNX/action-localizer, +github.com/20Scoops-CNX/action-vault, github.com/20Scoops-CNX/solidity-boilerplate,num_dependents_deps.dev:0 github.com/20TRIES/JsCollection,num_dependents_deps.dev:0 github.com/20TRIES/JsModel,num_dependents_deps.dev:0 @@ -3579,6 +3637,8 @@ github.com/240835454/vue-color,num_dependents_deps.dev:0 github.com/2418815069/generator-vue-cli,num_dependents_deps.dev:0 github.com/242617/notify,num_dependents_deps.dev:0 github.com/242617/other,num_dependents_deps.dev:0 +github.com/2428392/gh-determine-status-action, +github.com/2428392/gh-truncate-string-action, github.com/2428392/serverless-plugin-ncc,num_dependents_deps.dev:0 github.com/2432001677/yolov5-detect, github.com/2435191/TepezzaScraper, @@ -3787,6 +3847,8 @@ github.com/27factorial/threader,num_dependents_deps.dev:0 github.com/27medkamal/djangorestframework-fsm, github.com/27therealone/cleverbotapinode,num_dependents_deps.dev:0 github.com/27therealone/rainbowsix-api-node,num_dependents_deps.dev:0 +github.com/280780363/kafka-action, +github.com/280780363/sqlserver-action, github.com/281283522/test,num_dependents_deps.dev:0 github.com/281494498/CommonSubstrings,num_dependents_deps.dev:2 github.com/2824193947/Making-gulu,num_dependents_deps.dev:0 @@ -3881,6 +3943,8 @@ github.com/2JJ1/embedimagelinks,num_dependents_deps.dev:0 github.com/2JJ1/npm-timetoreadable,num_dependents_deps.dev:0 github.com/2JJ1/phrase-blacklist,num_dependents_deps.dev:0 github.com/2JJ1/shortnumber,num_dependents_deps.dev:0 +github.com/2KAbhishek/GA-Hello, +github.com/2KAbhishek/gulp-runner, github.com/2O4/keyt, github.com/2Pacalypse-/node-interval-tree,num_dependents_deps.dev:0 github.com/2Toad/Angular-Barricade,num_dependents_deps.dev:0 @@ -3933,6 +3997,8 @@ github.com/2betop/fis3-preprocessor-extlang,num_dependents_deps.dev:26 github.com/2betop/jello-command-server,num_dependents_deps.dev:8 github.com/2betop/jello-postprocessor-amd,num_dependents_deps.dev:8 github.com/2betop/json-ast-comments,num_dependents_deps.dev:6 +github.com/2bitlab/tag-parse-action, +github.com/2bitlab/work-wechat-msg, github.com/2blockchainz/torrentcast-player,num_dependents_deps.dev:0 github.com/2bndy5/CircuitPython_Cirque_Pinnacle, github.com/2bndy5/rmskin-action, @@ -4113,7 +4179,10 @@ github.com/2kofawsome/pi74HC595, github.com/2kpurple/curse-wow,num_dependents_deps.dev:0 github.com/2lach/console-stuff,num_dependents_deps.dev:0 github.com/2lach/react-lazy-links,num_dependents_deps.dev:0 +github.com/2lambda123/industrial_ci, +github.com/2lambda123/typescript-action, github.com/2lovecode/code-segment,num_dependents_deps.dev:0 +github.com/2m/arch-pkgbuild-builder, github.com/2m/authors,num_dependents_deps.dev:0 github.com/2m/ciris-hocon,num_dependents_deps.dev:0 github.com/2m/citywasp-api,num_dependents_deps.dev:0 @@ -4221,6 +4290,7 @@ github.com/2thousandmax/telegram-bot,num_dependents_deps.dev:0 github.com/2trde/kontour,num_dependents_deps.dev:0 github.com/2ttech/spacectx,num_dependents_deps.dev:0 github.com/2tunnels/emailo, +github.com/2tunnels/extra-vars, github.com/2tunnels/starlette-x-bugsnag, github.com/2tuzi/subject-shown-test,num_dependents_deps.dev:0 github.com/2ue/aptk,num_dependents_deps.dev:0 @@ -4249,6 +4319,7 @@ github.com/2xsaiko/mcrestool,num_dependents_deps.dev:0 github.com/2xyo/pelican-delicious, github.com/2zH/emiya,num_dependents_deps.dev:0 github.com/2zH/pathy,num_dependents_deps.dev:0 +github.com/2zqa/generate-update-manifest, github.com/3-3PO/olympus-sdk, github.com/3-dots/reacting,num_dependents_deps.dev:0 github.com/3-manifolds/Spherogram, @@ -4341,6 +4412,7 @@ github.com/32penkin/doc-tool,num_dependents_deps.dev:0 github.com/32penkin/doubly-linked-list,num_dependents_deps.dev:0 github.com/32pixelsCo/zest-icons,num_dependents_deps.dev:0 github.com/32technologies/evadacms-node,num_dependents_deps.dev:0 +github.com/32teeth/action-github-tag, github.com/32teeth/canvas-signature,num_dependents_deps.dev:0 github.com/32teeth/cordova-plugin-canvas-gamepad,num_dependents_deps.dev:0 github.com/32teeth/html5-plugin-canvas-gamepad,num_dependents_deps.dev:0 @@ -4554,6 +4626,7 @@ github.com/386jp/ytcomment_trends, github.com/38degrees/safe-portals,num_dependents_deps.dev:0 github.com/38elements/django-simple-jsonschema, github.com/38elements/sanic-admin, +github.com/38ri581oq480/docker-run-command-remote-host-action, github.com/390405712/dist-deploy,num_dependents_deps.dev:0 github.com/390405712/frontend-logger,num_dependents_deps.dev:0 github.com/390405712/vue-directives,num_dependents_deps.dev:0 @@ -4591,6 +4664,7 @@ github.com/39ro/firestore-admin-utils,num_dependents_deps.dev:0 github.com/3AHAT0P/rd-blueprints,num_dependents_deps.dev:0 github.com/3AP-AG/harvest-client,num_dependents_deps.dev:0 github.com/3Alan/alan-ui,num_dependents_deps.dev:0 +github.com/3Alan/search-engines-urls-push, github.com/3BenLee/Algorithm-cli, github.com/3BenLee/training-zone-calculator,num_dependents_deps.dev:0 github.com/3BioGirls/Sub-cellular-localization-in-cell, @@ -4715,6 +4789,7 @@ github.com/3beca/auth-middleware,num_dependents_deps.dev:0 github.com/3beeepb/react-native-keyboard-dismiss,num_dependents_deps.dev:0 github.com/3beeepb/react-native-prompt,num_dependents_deps.dev:0 github.com/3beeepb/react-native-range-slider,num_dependents_deps.dev:0 +github.com/3bit/setup-hcloud, github.com/3bl3gamer/tgclient,num_dependents_deps.dev:0 github.com/3bot/3bot-worker, github.com/3botlogin/integration_examples,num_dependents_deps.dev:0 @@ -4795,6 +4870,9 @@ github.com/3dtech/on-screen-keyboard,num_dependents_deps.dev:0 github.com/3dtech/touchscroll,num_dependents_deps.dev:0 github.com/3dtech/wayfinder-vue-components,num_dependents_deps.dev:0 github.com/3dualmeida/pipeline-getting-started,num_dependents_deps.dev:0 +github.com/3dwardCh3nG/delete-from-s3-action, +github.com/3dwardCh3nG/github-pull-request, +github.com/3dwardCh3nG/upload-to-s3-action, github.com/3edgy6u/foshoujo,num_dependents_deps.dev:0 github.com/3egames/manila-sinking, github.com/3ep-one/urlshortener, @@ -4867,6 +4945,7 @@ github.com/3jane/pytorch_ext, github.com/3jedgcm/train-js,num_dependents_deps.dev:0 github.com/3jins/emojicode-transpiler,num_dependents_deps.dev:0 github.com/3kg4kR/active_record,num_dependents_deps.dev:0 +github.com/3kraft/docker-remote-deploy-action, github.com/3ks/wecomgo,num_dependents_deps.dev:0 github.com/3kwa/beatit, github.com/3kwa/cherrys, @@ -4898,6 +4977,7 @@ github.com/3liv/fero-resource-starter,num_dependents_deps.dev:0 github.com/3liv/fero-resource-subscriber,num_dependents_deps.dev:2 github.com/3liv/rijs.fero-loader,num_dependents_deps.dev:0 github.com/3lixy/Zerrphix, +github.com/3liz/changelog-release, github.com/3liz/py-qgis-server, github.com/3liz/py-qgis-wps, github.com/3liz/qgis-plugin-repo, @@ -5055,6 +5135,8 @@ github.com/3rd-Eden/useragent,"criticality_score:0.363320,num_dependents_deps.de github.com/3rd-Eden/window.name, github.com/3rd-Eden/woohoo,num_dependents_deps.dev:0 github.com/3rd-party-bouncer/bouncer,num_dependents_deps.dev:0 +github.com/3rdJCG/latex-build-langja, +github.com/3rdJCG/mdtopdf-action, github.com/3redronin/mu-server,num_dependents_deps.dev:0 github.com/3redronin/murp,num_dependents_deps.dev:0 github.com/3rein/go-gesclient,num_dependents_deps.dev:0 @@ -5062,6 +5144,7 @@ github.com/3rein/openweathermap,num_dependents_deps.dev:0 github.com/3rein/terraform-provider-k3d,num_dependents_deps.dev:0 github.com/3rivers/util,num_dependents_deps.dev:0 github.com/3rm1n3/timesoft-oa,num_dependents_deps.dev:0 +github.com/3ru/gpt-translate, github.com/3rwww1/setuptools_scm_azure_pipelines, github.com/3s3s/bitcoinjs-lib,num_dependents_deps.dev:0 github.com/3s3s/blockchaindata-lib,num_dependents_deps.dev:0 @@ -5107,6 +5190,8 @@ github.com/3sidedcube/Android-LightningUi,num_dependents_deps.dev:0 github.com/3sidedcube/Android-LightningUtil,num_dependents_deps.dev:0 github.com/3sidedcube/android-exoplayer,num_dependents_deps.dev:0 github.com/3sixty-digital/trip-smarter,num_dependents_deps.dev:0 +github.com/3sky/furry-octo-parakeet, +github.com/3sky/glowing-spoon, github.com/3snow_p7im/GammaRec, github.com/3snowp7im/utmi,num_dependents_deps.dev:0 github.com/3stack-software/celery-cloudwatch, @@ -5116,6 +5201,7 @@ github.com/3stack-software/nv, github.com/3stacks/angular-1.5.x-boilerplate,num_dependents_deps.dev:0 github.com/3stacks/array-item-toggle,num_dependents_deps.dev:0 github.com/3stacks/blog-posts,num_dependents_deps.dev:0 +github.com/3stacks/cloudflare-purge-cache-action, github.com/3stacks/color-sync,num_dependents_deps.dev:0 github.com/3stacks/es6-module-boilerplate,num_dependents_deps.dev:0 github.com/3stacks/esnext-library-generator,num_dependents_deps.dev:0 @@ -5290,6 +5376,7 @@ github.com/412845222/dweb-toolbox,num_dependents_deps.dev:0 github.com/4141done/Network-Interfaces-Script,num_dependents_deps.dev:0 github.com/414owen/LocalScope,num_dependents_deps.dev:0 github.com/414owen/lambda-repl-js,num_dependents_deps.dev:0 +github.com/417-72KI/danger-swiftlint, github.com/417511458/jbone,num_dependents_deps.dev:4 github.com/418874537/myhello,num_dependents_deps.dev:0 github.com/418874537/mytetsfogo,num_dependents_deps.dev:0 @@ -5346,6 +5433,10 @@ github.com/42BV/spring-boot-starter-logging-frontend,num_dependents_deps.dev:0 github.com/42BV/spring-boot-starter-saml,num_dependents_deps.dev:0 github.com/42BV/ui,num_dependents_deps.dev:80 github.com/42BV/yml-sorter, +github.com/42Crunch/api-security-audit-action, +github.com/42Crunch/api-security-audit-action-freemium, +github.com/42Crunch/api-security-scan-action-freemium, +github.com/42Crunch/cicd-github-actions, github.com/42Crunch/openapi-ast-node,num_dependents_deps.dev:0 github.com/42DIGITAL/bqtools, github.com/42School/norminette, @@ -5360,6 +5451,8 @@ github.com/42cc/mass_post_office, github.com/42cc/pypipedrive, github.com/42cc/pytracremote, github.com/42frdescam/mlxrs,num_dependents_deps.dev:0 +github.com/42js/pr-checker, +github.com/42labs/starknet-interface-checker-gha, github.com/42mandychen/merge-md,num_dependents_deps.dev:0 github.com/42maru/colosseum_exporter_launcher, github.com/42matters/bottle-couchbase, @@ -5511,7 +5604,9 @@ github.com/46bit/evco,num_dependents_deps.dev:0 github.com/46bit/jeepers,num_dependents_deps.dev:0 github.com/46bit/snowflake-route-service,num_dependents_deps.dev:0 github.com/46elks/elkme, +github.com/46elks/gh-actions-sms, github.com/47-11/spotifete,num_dependents_deps.dev:0 +github.com/471-FR/deploy-prevention-action, github.com/471595249/commonlib,num_dependents_deps.dev:0 github.com/4726/twitch-chat-logger,num_dependents_deps.dev:0 github.com/472647301/byron-node-rsa,num_dependents_deps.dev:0 @@ -5571,6 +5666,7 @@ github.com/47degrees/memeid,num_dependents_deps.dev:34 github.com/47degrees/robeen, github.com/47degrees/sbt-microsites,criticality_score:0.401170 github.com/47degrees/scalacheck-toolbox,num_dependents_deps.dev:1 +github.com/47ng/actions-clever-cloud, github.com/47ng/badger,num_dependents_deps.dev:0 github.com/47ng/chakra-next,num_dependents_deps.dev:0 github.com/47ng/check-env,num_dependents_deps.dev:2 @@ -5621,6 +5717,7 @@ github.com/498755303/element-hl,num_dependents_deps.dev:0 github.com/49e94b8f256530dc0d41f740dfe8a4c1/torrent-tracker-scraper, github.com/49ehyeon42/blockchain-example-golang,num_dependents_deps.dev:0 github.com/49ehyeon42/golang-tcpclientserver-example,num_dependents_deps.dev:0 +github.com/49nord/action-files, github.com/49nord/async-trait,num_dependents_deps.dev:0 github.com/49nord/hwclock-rs,num_dependents_deps.dev:0 github.com/49nord/linreg-rs,num_dependents_deps.dev:3 @@ -5697,8 +5794,10 @@ github.com/4DNucleome/PartSeg_cellpose, github.com/4EverSujeet/RFID-Plugin,num_dependents_deps.dev:0 github.com/4GeeksAcademy/react-flux-dash,num_dependents_deps.dev:0 github.com/4GeeksDev/gpayments-python, +github.com/4IP/slack-notif-review, github.com/4Kaylum/BootstrapHTMLBuilder, github.com/4Kaylum/Brickfront, +github.com/4M01/create-maintenance-branch-from-tag, github.com/4MattTecnologia/mattlib, github.com/4N1S/btcinfo-node,num_dependents_deps.dev:0 github.com/4N1S/ethplorer-node,num_dependents_deps.dev:0 @@ -5831,14 +5930,18 @@ github.com/4lDO2/evc,num_dependents_deps.dev:0 github.com/4lDO2/sbp-rs,num_dependents_deps.dev:0 github.com/4lDO2/tcp-channel,num_dependents_deps.dev:0 github.com/4lakki/golang_im_system,num_dependents_deps.dev:0 +github.com/4lambda/block-merge-commits-action, github.com/4lbert/breakcrawl,num_dependents_deps.dev:0 github.com/4lch4/AxiosAid,num_dependents_deps.dev:0 +github.com/4lch4/Espanso-Validator, github.com/4lch4/Toggl-Aid,num_dependents_deps.dev:0 github.com/4lch4/Trejo, github.com/4lch4/discord.js,num_dependents_deps.dev:0 github.com/4lch4/git-finder, +github.com/4lch4/github-activity-readme, github.com/4lch4/logger,num_dependents_deps.dev:0 github.com/4lch4/pblib,num_dependents_deps.dev:0 +github.com/4lch4/replace-tokens, github.com/4ldrich/CommercialScraper, github.com/4leaf-njm/quill, github.com/4leaf-njm/react-quill,num_dependents_deps.dev:0 @@ -5884,6 +5987,8 @@ github.com/4mgad/ShrinkApp,num_dependents_deps.dev:0 github.com/4mgad/ajfs,num_dependents_deps.dev:0 github.com/4mgad/glo-ui,num_dependents_deps.dev:0 github.com/4mile/BQPipe, +github.com/4mile/looker-marketplace-blocks-test, +github.com/4mile/looker-marketplace-json-js-tests, github.com/4msar/react-notistack, github.com/4n41yz3r/uncoupled,num_dependents_deps.dev:0 github.com/4n4nd/loki-api-client-python, @@ -6138,11 +6243,13 @@ github.com/4thOffice/ApiClient.py, github.com/4thabang/go-cookiecode,num_dependents_deps.dev:0 github.com/4thel00z/ahadith, github.com/4thel00z/crackwifi, +github.com/4thel00z/curl-github-action, github.com/4thel00z/dizzle, github.com/4thel00z/dwnld, github.com/4thel00z/e4l, github.com/4thel00z/eleventy-plugin-rss,num_dependents_deps.dev:0 github.com/4thel00z/ff-pws,num_dependents_deps.dev:0 +github.com/4thel00z/goloads, github.com/4thel00z/lambda,num_dependents_deps.dev:0 github.com/4thel00z/libservice,num_dependents_deps.dev:0 github.com/4thel00z/libsniffpy, @@ -6161,6 +6268,7 @@ github.com/4thel00z/whats_my_ip,num_dependents_deps.dev:0 github.com/4thethrillofit/grunt-redis, github.com/4thex/require-shield,num_dependents_deps.dev:0 github.com/4thokage/orderinfo,num_dependents_deps.dev:0 +github.com/4till2/generate-content-map-action, github.com/4tj/aliyun-serverless-koa,num_dependents_deps.dev:0 github.com/4tj/node-antpool,num_dependents_deps.dev:0 github.com/4tj/node-nicehash, @@ -6169,6 +6277,7 @@ github.com/4treesCH/strolch,num_dependents_deps.dev:608 github.com/4ty711/fluent-dsl,num_dependents_deps.dev:0 github.com/4u/crowdin-client,num_dependents_deps.dev:0 github.com/4u/react-router,num_dependents_deps.dev:0 +github.com/4u/youtrack-pr-action, github.com/4udesenko/golang-learning-facade,num_dependents_deps.dev:0 github.com/4umfreak/fun-bunyan,num_dependents_deps.dev:0 github.com/4umfreak/grunt-xervo,num_dependents_deps.dev:0 @@ -6182,6 +6291,7 @@ github.com/4urbanoff/js.cookie,num_dependents_deps.dev:2 github.com/4urbanoff/js.event_emitter,num_dependents_deps.dev:0 github.com/4urbanoff/js.private,num_dependents_deps.dev:0 github.com/4urbanoff/nali,num_dependents_deps.dev:0 +github.com/4urcloud/Kexa_githubAction, github.com/4us-dev/crypto,num_dependents_deps.dev:0 github.com/4us-dev/utils,num_dependents_deps.dev:0 github.com/4ver/gif-stop,num_dependents_deps.dev:0 @@ -6708,6 +6818,7 @@ github.com/59naga/saucelabs-finder,num_dependents_deps.dev:6 github.com/59naga/scrape-narou,num_dependents_deps.dev:0 github.com/59naga/socket.io-middleware-firebase-admin,num_dependents_deps.dev:0 github.com/59naga/soysauce,num_dependents_deps.dev:0 +github.com/59naga/string-git, github.com/59naga/string-raw,num_dependents_deps.dev:216 github.com/59naga/stylus-responsive-breakpoints,num_dependents_deps.dev:0 github.com/59naga/superserver,num_dependents_deps.dev:0 @@ -6800,6 +6911,7 @@ github.com/5elenay/postgrey, github.com/5elenay/revoltgo,num_dependents_deps.dev:0 github.com/5elenay/stack-overflow-cli,num_dependents_deps.dev:0 github.com/5elenay/wandboxjs,num_dependents_deps.dev:0 +github.com/5eqn/docker-compose-remote-action, github.com/5f5f5f/manychat-icons,num_dependents_deps.dev:0 github.com/5ftech/wufan-validate,num_dependents_deps.dev:0 github.com/5gif/aas,num_dependents_deps.dev:0 @@ -6870,6 +6982,7 @@ github.com/5minlab/pop-serverless-typeorm,num_dependents_deps.dev:0 github.com/5minlab/tsconfig-5minlab,num_dependents_deps.dev:0 github.com/5minlab/tslint-config,num_dependents_deps.dev:0 github.com/5minutes/shift-task,num_dependents_deps.dev:0 +github.com/5monkeys/cobertura-action, github.com/5monkeys/content-io, github.com/5monkeys/django-bananas, github.com/5monkeys/django-bananas.js,num_dependents_deps.dev:0 @@ -6879,13 +6992,16 @@ github.com/5monkeys/django-traits, github.com/5monkeys/django-viewlet, github.com/5monkeys/djedi-cms,num_dependents_deps.dev:0 github.com/5monkeys/djedi-json.js,num_dependents_deps.dev:0 +github.com/5monkeys/docker-image-context-hash-action, github.com/5monkeys/enum-prop, github.com/5monkeys/kapten, +github.com/5monkeys/monkey-release-action, github.com/5monkeys/partialize, github.com/5monkeys/python-ncs, github.com/5monkeys/socker,num_dependents_deps.dev:0 github.com/5monkeys/tinbox-client, github.com/5n00p4eg/dbcarousel,num_dependents_deps.dev:0 +github.com/5nafu/hcloud-doorkeeper-action, github.com/5ndn/fsm,num_dependents_deps.dev:0 github.com/5neverstop/axios-vue-http,num_dependents_deps.dev:0 github.com/5nord/glaz,num_dependents_deps.dev:0 @@ -6938,11 +7054,13 @@ github.com/5tarlight/ystring,num_dependents_deps.dev:0 github.com/5tefan/ncagg, github.com/5tefan/ncflag, github.com/5thWall/mustache-render,num_dependents_deps.dev:0 +github.com/5tigerjelly/chalice-action, github.com/5tigerjelly/search-suggestion-python, github.com/5tingray/pyufw, github.com/5to3/influx-firehose-forwarder,num_dependents_deps.dev:0 github.com/5to6/codemod,num_dependents_deps.dev:22 github.com/5to6/deamdify2, +github.com/5u623l20/github-actions-vagrantup, github.com/5up-okamura/react-native-draggable-gridview,num_dependents_deps.dev:0 github.com/5uper5hoot/PikaTools, github.com/5uper5hoot/fuzzywuzzy-stubs, @@ -6972,6 +7090,7 @@ github.com/5yearsKim/koreanRuleHelper, github.com/5yearsKim/korean_word_relay, github.com/5yutan5/PyQtDarkTheme, github.com/5yutan5/QtVSCodeStyle, +github.com/5yutan5/setup-poetry-env, github.com/6-6-6/classic_bpf,num_dependents_deps.dev:0 github.com/6-6-6/ndproxy,num_dependents_deps.dev:0 github.com/6-6-6/utils,num_dependents_deps.dev:0 @@ -7086,6 +7205,7 @@ github.com/651016236/parser,num_dependents_deps.dev:0 github.com/653579487/Service-Hook,num_dependents_deps.dev:0 github.com/654356282/react-modal-manager,num_dependents_deps.dev:0 github.com/654356282/react-picker,num_dependents_deps.dev:0 +github.com/654wak654/python-lint, github.com/6619/study_golang,num_dependents_deps.dev:0 github.com/662/gatsby-theme-baiyezi,num_dependents_deps.dev:0 github.com/663695877/explore-ui,num_dependents_deps.dev:0 @@ -7243,6 +7363,7 @@ github.com/6tail/lunar-go,num_dependents_deps.dev:4 github.com/6tail/lunar-javascript,num_dependents_deps.dev:0 github.com/6tail/lunar-typescript,num_dependents_deps.dev:0 github.com/6thLegion/lordify,num_dependents_deps.dev:0 +github.com/6thpath/action-github-release, github.com/6thquake/react-material,num_dependents_deps.dev:0 github.com/6to5/6to5,num_dependents_deps.dev:274 github.com/6to5/6to5-library-boilerplate, @@ -7270,6 +7391,7 @@ github.com/70-10/planeshift,num_dependents_deps.dev:0 github.com/70-10/sandbox,num_dependents_deps.dev:0 github.com/70-10/update-deep-copy,num_dependents_deps.dev:0 github.com/70-10/wakatime-promise,num_dependents_deps.dev:0 +github.com/70-6C-65-61-73-75-72-65h/open-issue, github.com/700software/tedious-connection-pool2,num_dependents_deps.dev:0 github.com/701i/npm-practice,num_dependents_deps.dev:0 github.com/702017364/-vope-foreignobject,num_dependents_deps.dev:0 @@ -7309,6 +7431,7 @@ github.com/716green/golang-playing-cards,num_dependents_deps.dev:0 github.com/716green/golang-reference,num_dependents_deps.dev:0 github.com/719ben/seal-store,num_dependents_deps.dev:0 github.com/719ben/tiny-throttle,num_dependents_deps.dev:0 +github.com/719media/github-actions-slack, github.com/71anshuman/awesome-leetcode,num_dependents_deps.dev:0 github.com/71anshuman/go-bookings,num_dependents_deps.dev:0 github.com/71emj/compare,num_dependents_deps.dev:0 @@ -7344,6 +7467,7 @@ github.com/72squared/redmab, github.com/72squared/redpipe, github.com/73-ch/pySimpleNDI, github.com/731MY/google-translator,num_dependents_deps.dev:0 +github.com/7331lecram/labler, github.com/735900718/svgMirror,num_dependents_deps.dev:0 github.com/737/react-native-cstyle,num_dependents_deps.dev:0 github.com/737casa/clib22-helpers,num_dependents_deps.dev:0 @@ -7356,6 +7480,7 @@ github.com/73CN0109y-Packages/VRouteHelper,num_dependents_deps.dev:0 github.com/73R3WY/react-native-svg-animations,num_dependents_deps.dev:0 github.com/73VW/AutomaBot, github.com/73VW/Publishing-to-PyPI-with-pbr-and-Travis, +github.com/73h/gae-app-yaml-replace-env-variables, github.com/73rhodes/dclassify, github.com/73rhodes/doxli, github.com/73rhodes/jsummarize,num_dependents_deps.dev:0 @@ -7366,6 +7491,7 @@ github.com/744279297/algeff,num_dependents_deps.dev:0 github.com/746655242/vue-imgcut,num_dependents_deps.dev:0 github.com/746655242/vue2x-touch,num_dependents_deps.dev:0 github.com/746696/leetcode,num_dependents_deps.dev:0 +github.com/7474/SRC-DataLinter, github.com/7474/node-red-contrib-mackerel,num_dependents_deps.dev:0 github.com/7474/node-red-contrib-pixela,num_dependents_deps.dev:0 github.com/747646769/childe-gohangout,num_dependents_deps.dev:0 @@ -7388,6 +7514,7 @@ github.com/74th/eventemitter2ts,num_dependents_deps.dev:0 github.com/74th/settingsjson-py, github.com/74th/simple-post-server,num_dependents_deps.dev:0 github.com/74th/vscode-debug-book2-docker-go,num_dependents_deps.dev:0 +github.com/74th/workflow-permission-action, github.com/74th/xonsh-direnv, github.com/750116098/ygty,num_dependents_deps.dev:0 github.com/750code/tradebox,num_dependents_deps.dev:0 @@ -7642,6 +7769,7 @@ github.com/7c/validurl,num_dependents_deps.dev:2 github.com/7c/whoisserver-world,num_dependents_deps.dev:0 github.com/7cf148fd/geo-reverse,num_dependents_deps.dev:0 github.com/7cf148fd/pvrm,num_dependents_deps.dev:0 +github.com/7challenger/init-ssh-js, github.com/7cm-diameter/grgr, github.com/7codeRO/line-segmentation-gpc-vision-ocr,num_dependents_deps.dev:0 github.com/7coder7/bingen,num_dependents_deps.dev:0 @@ -7726,6 +7854,7 @@ github.com/7kgame/jweb-mysql,num_dependents_deps.dev:0 github.com/7kgame/jweb-redis,num_dependents_deps.dev:0 github.com/7kgame/jweb-utils,num_dependents_deps.dev:0 github.com/7kgame/skeleton-cli,num_dependents_deps.dev:0 +github.com/7killstar/hello1, github.com/7kms/km7-kit,num_dependents_deps.dev:0 github.com/7korobi/fancy-date,num_dependents_deps.dev:0 github.com/7korobi/markdown-loader,num_dependents_deps.dev:0 @@ -7761,6 +7890,7 @@ github.com/7nights/window-messenger,num_dependents_deps.dev:0 github.com/7ninjas/scss-mixins,num_dependents_deps.dev:0 github.com/7odri9o/get-os-env-var-insomnia-plugin,num_dependents_deps.dev:0 github.com/7oi/IcelanderGenerator, +github.com/7olstoy/slack-notification-action, github.com/7onetella/users,num_dependents_deps.dev:0 github.com/7onn/flask-prom-metrics, github.com/7oscar/LRsite2,num_dependents_deps.dev:0 @@ -7810,6 +7940,7 @@ github.com/7thSigil/css-color-parser-rs,num_dependents_deps.dev:8 github.com/7thsense/angular-bootstrap-datetimepicker,num_dependents_deps.dev:0 github.com/7tupel/subcommander, github.com/7tyrannosaurs/learning-git,num_dependents_deps.dev:0 +github.com/7uhinn/area-of-rectangle-action, github.com/7uk/discord-tokens-package, github.com/7uk/discordinfo-package, github.com/7uk/tokeninfo-package, @@ -7822,6 +7953,7 @@ github.com/7ws/django-emailer, github.com/7ws/django-setmagic, github.com/7x11x13/soundcloud.py, github.com/7y1o/webmarine-2d-core,num_dependents_deps.dev:0 +github.com/7yl4r/erddap-datasetsxml-builder, github.com/7ylee/eslint-config-7ylee-vue,num_dependents_deps.dev:0 github.com/7ynstar/auto-size-background, github.com/8-m/bitwarden-node-utils,num_dependents_deps.dev:0 @@ -7891,6 +8023,7 @@ github.com/842891024/tinypng_img,num_dependents_deps.dev:0 github.com/8468/bitboot,num_dependents_deps.dev:0 github.com/8468/coinbits, github.com/84Paris/canvasvideo.js,num_dependents_deps.dev:0 +github.com/84codes/action-haml-lint, github.com/84codes/go-api,num_dependents_deps.dev:3 github.com/84codes/heroku-cli-connect-apps,num_dependents_deps.dev:0 github.com/84codes/sparoid.js,num_dependents_deps.dev:0 @@ -8000,6 +8133,7 @@ github.com/895457129/utils,num_dependents_deps.dev:0 github.com/8954sood/mcuser, github.com/8954sood/youtubedown, github.com/897133066/anydoor,num_dependents_deps.dev:0 +github.com/898anil/github-actions-json-edit, github.com/89evandroalmeida/nodejs-math-example,num_dependents_deps.dev:0 github.com/89iuv/maven-enforcer-custom-rules,num_dependents_deps.dev:0 github.com/89jd/pyroborock, @@ -8023,6 +8157,7 @@ github.com/89z/sienna,num_dependents_deps.dev:0 github.com/89z/youtube,num_dependents_deps.dev:0 github.com/8ACHIRA/awesome-react-generator,num_dependents_deps.dev:0 github.com/8BitFactory/Backrest,num_dependents_deps.dev:0 +github.com/8BitJonny/gh-get-current-pr, github.com/8W9aG/newsmeta, github.com/8W9aG/scrapy-bigquery, github.com/8W9aG/scrapy-tor-downloader, @@ -8072,6 +8207,7 @@ github.com/8bittree/normal_heights,num_dependents_deps.dev:0 github.com/8bu/simple-vue-otp-input-8,num_dependents_deps.dev:0 github.com/8bulbs/jsl-vue-h5,num_dependents_deps.dev:0 github.com/8byr0/strapi-plugin-backup-restore,num_dependents_deps.dev:0 +github.com/8c6794b6/hpc-codecov-action, github.com/8ch9azbsfifz/hangboard,num_dependents_deps.dev:0 github.com/8const/api,num_dependents_deps.dev:0 github.com/8coon/automatons,num_dependents_deps.dev:0 @@ -8100,6 +8236,7 @@ github.com/8fit/react-document-section,num_dependents_deps.dev:0 github.com/8fold/simplemde-markdown-editor,num_dependents_deps.dev:0 github.com/8gentile/react-d3-circlepack,num_dependents_deps.dev:0 github.com/8geonirt/react-bootstrap-simple-editable,num_dependents_deps.dev:0 +github.com/8grams/github-buildpacks-action, github.com/8gua-blog/8gua-cli,num_dependents_deps.dev:0 github.com/8i8/conf,num_dependents_deps.dev:0 github.com/8i8/enc,num_dependents_deps.dev:0 @@ -8176,6 +8313,9 @@ github.com/90Mark/react-native-orientation-mk,num_dependents_deps.dev:0 github.com/90Mark/react-native-tools-mk,num_dependents_deps.dev:0 github.com/90Mark/react-native-video-mk,num_dependents_deps.dev:0 github.com/90TechSAS/zl-wkhtmltopdf,num_dependents_deps.dev:0 +github.com/90dy/gha-git-sync, +github.com/90dy/gha-pnpm-release, +github.com/90dy/gha-semantic-release, github.com/90kts/watirgrid,num_dependents_deps.dev:0 github.com/90milesbridge/react-rainbow-firebase,num_dependents_deps.dev:0 github.com/90mph/security-totp,num_dependents_deps.dev:0 @@ -8269,11 +8409,13 @@ github.com/942368681/react-component-npm-cli,num_dependents_deps.dev:0 github.com/942368681/white-board-mini, github.com/942368681/whiteBoard,num_dependents_deps.dev:0 github.com/942368681/whiteBoard-new,num_dependents_deps.dev:0 +github.com/94726/action-turborepo-changes, github.com/94JuHo/cwru_py3, github.com/94cstyles/gulp-template-replace,num_dependents_deps.dev:0 github.com/94d90b08-c4ef-416c-bf7b-b6c5b7275e6a/rpmrepository,num_dependents_deps.dev:0 github.com/94dreamer/tool4project, github.com/94fzb/common-util,num_dependents_deps.dev:6 +github.com/94fzb/setup-graalvm, github.com/94fzb/simplewebserver,num_dependents_deps.dev:0 github.com/94peter/gopdf,num_dependents_deps.dev:0 github.com/950905/ins-component, @@ -8478,6 +8620,7 @@ github.com/9and3r/mopidy-touchscreen, github.com/9and3r/mopidy-ttsgpio, github.com/9b/frisbee, github.com/9b/google-alerts, +github.com/9bany/create-tag-to-another-action, github.com/9beach/analyze-sgf,num_dependents_deps.dev:0 github.com/9beach/hanspell, github.com/9beach/pubgen,num_dependents_deps.dev:0 @@ -8651,6 +8794,7 @@ github.com/A-Justice/smart-tooltip, github.com/A-Justice/smart-tooltip-angular, github.com/A-K-F/NodeFsExtended,num_dependents_deps.dev:0 github.com/A-Kasaaian/react-advance-jalaali-datepicker,num_dependents_deps.dev:2 +github.com/A-Katopodis/banner-checker, github.com/A-Kurimoto/cdk-apig-utility,num_dependents_deps.dev:0 github.com/A-LinCui/Extorch, github.com/A-Lohse/academic_tweet, @@ -8796,6 +8940,7 @@ github.com/ABD-dev/ngx-twitter-timeline,num_dependents_deps.dev:0 github.com/ABDevs-Org/Console-Manager, github.com/ABDevs-Org/Discord.js-Utils,num_dependents_deps.dev:0 github.com/ABDevs-Org/JS-File-Executor, +github.com/ABGEO/kubectl-action, github.com/ABGEO/vaccination-py, github.com/ABI-Software/fdi-kb-query,num_dependents_deps.dev:0 github.com/ABI-Software/flatmap-viewer,num_dependents_deps.dev:6 @@ -8848,6 +8993,7 @@ github.com/ABoyd002/strapi-provider-upload-aws-s3-with-webp, github.com/ABuffSeagull/eslint-config,num_dependents_deps.dev:0 github.com/ABuffSeagull/mini-list, github.com/ABuffSeagull/parcel-plugin-prerender,num_dependents_deps.dev:0 +github.com/AButler/upload-release-assets, github.com/AC-CodeProd/knex-class-model,num_dependents_deps.dev:0 github.com/AC-CodeProd/knex-toolkit,num_dependents_deps.dev:0 github.com/AC-graph/lookview, @@ -8971,6 +9117,7 @@ github.com/ADVisualizer/ADV-UI,num_dependents_deps.dev:0 github.com/ADagen/flow-config,num_dependents_deps.dev:0 github.com/ADawesomeguy/AwesomeMC, github.com/ADawesomeguy/AwesomeSciBo-API, +github.com/ADawesomeguy/w3strings-action, github.com/ADdictedtoCS/cs207-FinalProject, github.com/ADengrc/vue-canvas-table,num_dependents_deps.dev:0 github.com/ADicksonLab/ClassicalGSG, @@ -9002,6 +9149,7 @@ github.com/AElfProject/aelf-command,num_dependents_deps.dev:0 github.com/AElfProject/aelf-sdk-cross-chain.js,num_dependents_deps.dev:0 github.com/AElfProject/aelf-sdk.js,num_dependents_deps.dev:0 github.com/AElfProject/generator-aelf,num_dependents_deps.dev:0 +github.com/AEnterprise/rsync-deploy, github.com/AEsmerio/selenium-page,num_dependents_deps.dev:0 github.com/AF111/loyverse-api-wrapper,num_dependents_deps.dev:0 github.com/AF3204/node-windows,num_dependents_deps.dev:0 @@ -9043,6 +9191,7 @@ github.com/AFa0304/meetstatSDK,num_dependents_deps.dev:0 github.com/AFatNiBBa/uneval,num_dependents_deps.dev:0 github.com/AFathi/ARVideoKit,criticality_score:0.313200 github.com/AFellmett/WebPageToCCode,num_dependents_deps.dev:0 +github.com/AFewDragons/discord-dispatch-deploy, github.com/AFine970/NoneUI,num_dependents_deps.dev:0 github.com/AFink/knexProvider,num_dependents_deps.dev:0 github.com/AFoeee/additional_urwid_widgets, @@ -9074,6 +9223,7 @@ github.com/AGWA/git-crypt,criticality_score:0.393300 github.com/AGallouin/Node.ts-Streams,num_dependents_deps.dev:0 github.com/AGanyushkin/hokku,num_dependents_deps.dev:0 github.com/AGarcia85/resume-mock,num_dependents_deps.dev:0 +github.com/AGeorgy/cocos-build, github.com/AGhost-7/dustjs,num_dependents_deps.dev:0 github.com/AGhost-7/get-back-to-work-ronald, github.com/AGhost-7/gh-quick-release, @@ -9092,6 +9242,7 @@ github.com/AGhost-7/snipsnip, github.com/AGhost-7/standard-prettier-init,num_dependents_deps.dev:0 github.com/AGhost-7/to-source,num_dependents_deps.dev:0 github.com/AGirlNamedCaro/lotide,num_dependents_deps.dev:0 +github.com/AGraber/sampctl-action, github.com/AGrandesR/async-output-pool,num_dependents_deps.dev:0 github.com/AGrigis/bredala, github.com/AGrigis/pysphinxdoc, @@ -9134,6 +9285,7 @@ github.com/AHiddenDonut/hyena-api.py, github.com/AI-Companion/ds-gear, github.com/AI-Core/ai-core, github.com/AI-Force/aiforce, +github.com/AI-Gents/AIPRChecker, github.com/AI-MEN/MLDiag, github.com/AI-Ocean/ocean-cli, github.com/AI-Planning/planutils, @@ -9166,6 +9318,9 @@ github.com/AICHAIN-CORE/aitweb3,num_dependents_deps.dev:0 github.com/AICoE/SrcOpsMetrics, github.com/AICoE/log-anomaly-detector, github.com/AICoE/prometheus-api-client-python, +github.com/AICoderHub/GH_Action, +github.com/AIDASoft/pr-sweeper, +github.com/AIDASoft/run-lcg-view, github.com/AIDungeon/GPT-3-Encoder, github.com/AIDungeon/Javascript-GPT-3-Encoder,num_dependents_deps.dev:0 github.com/AIDungeon/common-components,num_dependents_deps.dev:0 @@ -9208,8 +9363,10 @@ github.com/AItransCompetition/simple_emulator, github.com/AIx-Solutions/aix-gpt-api, github.com/AJ-7885/eslint-config-webchannel,num_dependents_deps.dev:0 github.com/AJ-7885/prettier-config-webchannel,num_dependents_deps.dev:0 +github.com/AJ-7885/trigger-remote-workflow, github.com/AJ-Creations/Xmoduler,num_dependents_deps.dev:0 github.com/AJ-Creations/nodigo,num_dependents_deps.dev:0 +github.com/AJ1041927/github-action-test, github.com/AJAkimana/my-rwanda,num_dependents_deps.dev:0 github.com/AJCStriker/Environmentalist,num_dependents_deps.dev:0 github.com/AJCStriker/Peonify,num_dependents_deps.dev:0 @@ -9363,6 +9520,8 @@ github.com/ALEX-ANV/cordova-plugin-sms,num_dependents_deps.dev:0 github.com/ALEXOTANO/ax-autocomplete,num_dependents_deps.dev:0 github.com/ALEXOTANO/cfdi33,num_dependents_deps.dev:0 github.com/ALITHEALI/obj-error,num_dependents_deps.dev:0 +github.com/ALJAZEERAPLUS/allure-report-upload-action, +github.com/ALJAZEERAPLUS/sauce-labs-storage-action, github.com/ALJCepeda/barejs,num_dependents_deps.dev:0 github.com/ALJCepeda/bareutil, github.com/ALJCepeda/docktainer,num_dependents_deps.dev:0 @@ -9573,6 +9732,7 @@ github.com/AO16/ember-cli-lodash-extras,num_dependents_deps.dev:0 github.com/AO16/highcharts-navigator-handles,num_dependents_deps.dev:0 github.com/AO16/highcharts-navigator-tooltip,num_dependents_deps.dev:0 github.com/AO19/react-license-plate,num_dependents_deps.dev:0 +github.com/AODocs/check-eol, github.com/AOEpeople/Aoe_Scheduler,criticality_score:0.348200 github.com/AOEpeople/cookie-notice,num_dependents_deps.dev:2 github.com/AOEpeople/csv-ktx,num_dependents_deps.dev:0 @@ -9668,6 +9828,9 @@ github.com/APMG/apm-image-react,num_dependents_deps.dev:0 github.com/APMG/apm-mimas,num_dependents_deps.dev:2 github.com/APMG/apm-titan,num_dependents_deps.dev:0 github.com/APMonitor/apm_python, +github.com/APN-Pucky/branch-follow-tag, +github.com/APN-Pucky/fast-forward-action, +github.com/APN-Pucky/make-python-action, github.com/APN-Pucky/smpl, github.com/APOExposureTimeCalculator/APOExptime, github.com/APPFL/APPFL, @@ -9701,6 +9864,7 @@ github.com/APSL/wagtail-jsonschema-forms, github.com/APSL/wordpress-to-puput, github.com/APSL/zinnia-to-puput, github.com/APT-Business/reg-suit,num_dependents_deps.dev:0 +github.com/APTA-Technologies/logdiff, github.com/APTy/icmp,num_dependents_deps.dev:0 github.com/APTy/kvlite,num_dependents_deps.dev:0 github.com/APU-CSFC/nodejs-wechallparse,num_dependents_deps.dev:0 @@ -9725,10 +9889,14 @@ github.com/APassanisi/vandalhandle,num_dependents_deps.dev:0 github.com/APaylater-FE/find-closest-locale,num_dependents_deps.dev:0 github.com/APerson1010/keyword-cipher-js,num_dependents_deps.dev:0 github.com/APerson241/hubot-join-notify, +github.com/APina03/EKSKUBECTL, +github.com/APina03/action-slack-notify, +github.com/APina03/wait_for_response, github.com/APirchner/gsvi, github.com/APivetta/beatrix-bot,num_dependents_deps.dev:12 github.com/APixelVisuals/illustra,num_dependents_deps.dev:0 github.com/APixelVisuals/typedoc-frontend,num_dependents_deps.dev:0 +github.com/APratham/funfact-daily-readme, github.com/AProductiveNerd/WhatsAppTxt-to-JSON,num_dependents_deps.dev:0 github.com/APrzysiuda/flywaymigrationconstruct, github.com/APshenkin/codeceptjs-assert,num_dependents_deps.dev:0 @@ -9976,6 +10144,7 @@ github.com/AStove/angular-json-refs-interceptor,num_dependents_deps.dev:0 github.com/ASukhanov/apstrim, github.com/ASukhanov/liteServer, github.com/ASynapz/lotide,num_dependents_deps.dev:0 +github.com/ASzc/change-string-case-action, github.com/ASzc/java-configparser,num_dependents_deps.dev:0 github.com/ASzc/jsonpath-maven-plugin,num_dependents_deps.dev:0 github.com/ASzc/pnc-groovy-client,num_dependents_deps.dev:0 @@ -10016,10 +10185,13 @@ github.com/ATWltd/pyghaseel, github.com/ATakaSKY/isEvenPackage, github.com/ATakaSKY/react-carousel-indicator,num_dependents_deps.dev:0 github.com/ATakaSky/ng-library-todd,num_dependents_deps.dev:0 +github.com/ATamblingPoder/build-aur-packages, github.com/ATan512/aca-dash,num_dependents_deps.dev:0 github.com/ATechAdventurer/Scraper-King,num_dependents_deps.dev:0 github.com/ATechnoHazard/rust-bcrypt,num_dependents_deps.dev:0 +github.com/ATiltedTree/create-aur-release, github.com/ATiltedTree/pmu,num_dependents_deps.dev:0 +github.com/ATiltedTree/setup-rust, github.com/AToMPM/atompm,num_dependents_deps.dev:0 github.com/AUCR/DataParserLib, github.com/AUCR/YamlInfo, @@ -10205,12 +10377,14 @@ github.com/AamuLumi/sanic.js,num_dependents_deps.dev:4 github.com/AanZee/generator-float,num_dependents_deps.dev:0 github.com/AanZee/generator-harbour,num_dependents_deps.dev:0 github.com/AanZee/harbour,num_dependents_deps.dev:0 +github.com/Aandreba/setup-binaryen, github.com/AanshuNagal/welcomer-msg,num_dependents_deps.dev:0 github.com/Aanu-A/AAmyMilePackaging, github.com/Aanzhi/moocxing, github.com/Aaqua-live/protoparser-ng, github.com/AardvarkTotoro2/BladeProject, github.com/AareFabrik/cordova-plugin-touch-visualizer,num_dependents_deps.dev:0 +github.com/Aarebecca/stats, github.com/Aareksio/koa-history-api-fallback,num_dependents_deps.dev:0 github.com/Aareksio/node-steam-market-pricing,num_dependents_deps.dev:0 github.com/Aareon/PyDLive, @@ -10320,6 +10494,7 @@ github.com/AaronHarris/jsdummy,num_dependents_deps.dev:0 github.com/AaronHonour/argali, github.com/AaronHuo19700101/enslaver-vue-wechat,num_dependents_deps.dev:0 github.com/AaronJY/nms-package-common, +github.com/AaronJackson/2.11BSD-Action, github.com/AaronJan/Commanding,num_dependents_deps.dev:0 github.com/AaronJan/StanchionJS,num_dependents_deps.dev:0 github.com/AaronJan/create-typescript-project,num_dependents_deps.dev:0 @@ -10565,6 +10740,7 @@ github.com/AbdullahZN/promise-fail,num_dependents_deps.dev:0 github.com/Abdullahabid3691/ClientAgreement-Api, github.com/Abdullahabid3691/user_agreement_flask_api, github.com/AbdullovIldar/frontend-project-lvl1,num_dependents_deps.dev:0 +github.com/AbdulmelikKalkan/sync-fork-upstream, github.com/Abdulrahman-Kamel/exurl, github.com/Abdulrahman-Tayara/easy-di,num_dependents_deps.dev:0 github.com/AbdulrhmanBeatz/3amyah,num_dependents_deps.dev:0 @@ -10668,6 +10844,7 @@ github.com/AbhinavOmprakash/pretty-timeit, github.com/AbhinavOmprakash/py-htminify, github.com/AbhinavRajesh/create-cpp, github.com/AbhisarAnand/LPBI-Data-Extraction-Project, +github.com/Abhishek-070/Dockerhub-Build-Push, github.com/Abhishek-31/react-tagify-dnd,num_dependents_deps.dev:0 github.com/Abhishek-VG/firstNpmPackage,num_dependents_deps.dev:0 github.com/Abhishek-VG/react-collapsable-table,num_dependents_deps.dev:0 @@ -10720,6 +10897,7 @@ github.com/AbleCoder/hem-render-html,num_dependents_deps.dev:0 github.com/AbleCoder/pyjade_coffin, github.com/AbleEng/flatxml, github.com/AbleEng/pyexperian, +github.com/AbleLincoln/push-to-sftp, github.com/AbleTech/easy-deployment,num_dependents_deps.dev:0 github.com/AbleTech/neat-complete,num_dependents_deps.dev:0 github.com/AbleTech/webhook,num_dependents_deps.dev:0 @@ -10784,6 +10962,8 @@ github.com/Abreu00/svelte-tooltip,num_dependents_deps.dev:0 github.com/Abrissirba/grunt-get-browser-files,num_dependents_deps.dev:0 github.com/Abruptive/webflow-react, github.com/AbsInt/CompCert,criticality_score:0.545570 +github.com/AbsaOSS/ghpages-to-tf-provider-registry, +github.com/AbsaOSS/k3d-action, github.com/AbsaOSS/libvcx,num_dependents_deps.dev:0 github.com/AbsaOSS/py2k, github.com/AbsaOSS/rn-indy-sdk,num_dependents_deps.dev:0 @@ -10839,6 +11019,7 @@ github.com/AbsurdlySuspicious/sg-sprite,num_dependents_deps.dev:0 github.com/Abszissex/easy-performance-measure,num_dependents_deps.dev:0 github.com/AbtzLabs/seed-css,num_dependents_deps.dev:0 github.com/Abu-Maher/i4i,num_dependents_deps.dev:0 +github.com/Abuchtela/dastardly-github-action, github.com/Abuda/react-native-toggle,num_dependents_deps.dev:0 github.com/Abuda/rn-toggle, github.com/Abuoblie/nodejs, @@ -10895,6 +11076,7 @@ github.com/AccelerateNetworks/PagingServer, github.com/Acceleratio/quick-react.ts,num_dependents_deps.dev:0 github.com/Accelerator-One/seven-stream,num_dependents_deps.dev:0 github.com/Accelerator-One/text-encryptor,num_dependents_deps.dev:0 +github.com/Accelery/firebase-deploy-functions-action, github.com/Accelery/solv.js,num_dependents_deps.dev:0 github.com/Accelize/acid, github.com/Accelize/pycosio, @@ -10939,6 +11121,7 @@ github.com/Accruent/owasp-zap-historic-parser, github.com/Accruent/zoomba, github.com/Accudio/cead-consent,num_dependents_deps.dev:0 github.com/Accudio/klaro-gridsome,num_dependents_deps.dev:0 +github.com/Accurate0/modify-json, github.com/Accusoft/MaterialDings,num_dependents_deps.dev:0 github.com/Accusoft/document-processing-helper,num_dependents_deps.dev:0 github.com/Accusoft/framing,num_dependents_deps.dev:0 @@ -10954,6 +11137,7 @@ github.com/AceCrow/sqlite-yaku,num_dependents_deps.dev:0 github.com/AceDZN/magisto-player,num_dependents_deps.dev:0 github.com/AceExpert/type-enforce-py, github.com/AceExpert/ws, +github.com/AceFire6/file_changes, github.com/AceFire6/phx_events, github.com/AceFire6/quart-compress, github.com/AceITsro/rbacc,num_dependents_deps.dev:0 @@ -10994,6 +11178,7 @@ github.com/Achaak/react-resize-tools, github.com/Achess01/npm-random-msg, github.com/Achievers/a11y-css-scrubber,num_dependents_deps.dev:0 github.com/Achievmintry/chiev-hook,num_dependents_deps.dev:0 +github.com/Achilleasein/CV_auto_updater, github.com/Achillefs/elscripto,num_dependents_deps.dev:0 github.com/Achillefs/geoip,num_dependents_deps.dev:0 github.com/Achillefs/majesticseo,num_dependents_deps.dev:0 @@ -11045,6 +11230,10 @@ github.com/Acionyx/interruptible-tasks,num_dependents_deps.dev:0 github.com/Acionyx/rollup-plugin-module-replacement,num_dependents_deps.dev:4 github.com/Acizza/mal-rs,num_dependents_deps.dev:0 github.com/Ackar/node-imgtype,num_dependents_deps.dev:0 +github.com/Ackee-Blockchain/copy_file_to_another_repo_action, +github.com/Ackee-Blockchain/github-action-push-to-another-repository, +github.com/Ackee-Blockchain/wake-setup-action, +github.com/Ackee-Blockchain/woke-detect-pipeline, github.com/AckeeCZ/antonio,num_dependents_deps.dev:0 github.com/AckeeCZ/authist,num_dependents_deps.dev:0 github.com/AckeeCZ/axesor, @@ -11061,6 +11250,7 @@ github.com/AckeeCZ/eslint-config-ackee,num_dependents_deps.dev:2 github.com/AckeeCZ/flipper-grpc-plugin, github.com/AckeeCZ/gatsby-theme-fela,num_dependents_deps.dev:0 github.com/AckeeCZ/jerome,num_dependents_deps.dev:0 +github.com/AckeeCZ/load-xcode-version, github.com/AckeeCZ/lokse,num_dependents_deps.dev:0 github.com/AckeeCZ/lucas,num_dependents_deps.dev:0 github.com/AckeeCZ/mateus,num_dependents_deps.dev:0 @@ -11105,6 +11295,9 @@ github.com/AckslD/QuAlg, github.com/AckslD/manven, github.com/Ackuq/spark-pit, github.com/AckyStack/AckyStack-Frontend-Utils, +github.com/AcmeSoftwareLLC/app-build-number, +github.com/AcmeSoftwareLLC/flutter-build, +github.com/AcmeSoftwareLLC/github-downloader, github.com/Acmenlei/v3-carousel, github.com/Acmu/ex-com,num_dependents_deps.dev:0 github.com/Acmu/zmy-greet,num_dependents_deps.dev:0 @@ -11132,6 +11325,7 @@ github.com/AcornIT/nativescript-geolocation,num_dependents_deps.dev:0 github.com/Acostan/mailin-api-node-js,num_dependents_deps.dev:0 github.com/Acpnohc/January, github.com/AcquiredSupport/Acquired-java-api-library,num_dependents_deps.dev:0 +github.com/Acring/swagger-editor-validate, github.com/Acrisel/acrilib, github.com/Acrisel/acrilog, github.com/Acrisel/acris, @@ -11199,12 +11393,29 @@ github.com/Actifio/restapisamples,Google github.com/Actifio/vdp-ucd-plugin,Google github.com/Actifio/workflowAutomation,Google github.com/Actinium-project/acm-insight-api,num_dependents_deps.dev:0 +github.com/ActionCloud/github-raw-url, +github.com/ActionCloud/issue-tracker-action, +github.com/ActionCloud/sort-forks-action, github.com/ActionIQ-OSS/luna,num_dependents_deps.dev:0 github.com/ActionIQ-OSS/react-child-validator,num_dependents_deps.dev:0 github.com/ActionIQ/play-pants, github.com/ActionIQ/react-resizable-bar,num_dependents_deps.dev:0 github.com/ActionIQ/style-builder,num_dependents_deps.dev:58 github.com/ActionSeeker/bigintegers,num_dependents_deps.dev:0 +github.com/Actions-R-Us/actions-tagger, +github.com/Actions-R-Us/default-env, +github.com/ActionsDesk/enterprise-members-report-action, +github.com/ActionsDesk/ghec-enterprise-reporting, +github.com/ActionsDesk/ghec-invitations-report-action, +github.com/ActionsDesk/ghec-report-reinvite-action, +github.com/ActionsDesk/github-actions-allow-list-as-code-action, +github.com/ActionsDesk/github-actions-details-action, +github.com/ActionsDesk/report-action-permissions, +github.com/ActionsDesk/report-action-usage, +github.com/ActionsToolbox/gem-build-and-release-action, +github.com/ActionsToolbox/get-language-versions-action, +github.com/ActionsTools/docker-image-update-monitor-action, +github.com/ActionsTools/read-json-action, github.com/Actis92/lit-saint, github.com/ActivatorGmbH/infinicast-sdk-java,num_dependents_deps.dev:0 github.com/Active-CSS/active-css,num_dependents_deps.dev:0 @@ -11212,6 +11423,7 @@ github.com/ActiveAdminPlugins/active_admin_pagination,num_dependents_deps.dev:0 github.com/ActiveArchitexture/BAI-BTRS-active-parsers,num_dependents_deps.dev:0 github.com/ActiveByte/homebridge-loxone-connect,num_dependents_deps.dev:0 github.com/ActiveCampaign/activecampaign-api-nodejs,num_dependents_deps.dev:0 +github.com/ActiveChooN/minio-download-action, github.com/ActiveModuleFramework/active-module-framework,num_dependents_deps.dev:0 github.com/ActiveObject/immutable-map,num_dependents_deps.dev:0 github.com/ActiveObject/immutable-trie,num_dependents_deps.dev:2 @@ -11274,6 +11486,7 @@ github.com/Aculeasis/rhvoice-wrapper-bin, github.com/Aculeasis/rhvoice-wrapper-data, github.com/Aculeasis/ya-speech-key, github.com/Aculisme/pykarma, +github.com/Acunetix360/Acunetix-360-GitHub-Actions, github.com/Acxiom/floret,num_dependents_deps.dev:0 github.com/Acxiom/floret-gateway-kong,num_dependents_deps.dev:0 github.com/Acxiom/metalus,num_dependents_deps.dev:0 @@ -11311,6 +11524,7 @@ github.com/AdRoll/python-hll, github.com/AdSegura/node-laravel-encryptor,num_dependents_deps.dev:0 github.com/AdVg/denvar,num_dependents_deps.dev:0 github.com/AdVg/url-back,num_dependents_deps.dev:0 +github.com/AdWerx/pronto-ruby, github.com/Ada-Developers-Academy/ada-build,criticality_score:0.359100 github.com/Ada-Developers-Academy/textbook-curriculum,criticality_score:0.372330 github.com/Ada-Kru/pyfoobeef, @@ -11369,6 +11583,7 @@ github.com/AdamBrodzinski/elixir-stdlib-js,num_dependents_deps.dev:0 github.com/AdamBrodzinski/meteor-generate,num_dependents_deps.dev:0 github.com/AdamBrodzinski/simple-redux-react,num_dependents_deps.dev:0 github.com/AdamCanady/smapi,num_dependents_deps.dev:0 +github.com/AdamCarballo/streamdeck-distribution-tool, github.com/AdamCollins/net-respond,num_dependents_deps.dev:0 github.com/AdamCraven/angular-fng,num_dependents_deps.dev:0 github.com/AdamCraven/collection-gallery,num_dependents_deps.dev:0 @@ -11402,6 +11617,7 @@ github.com/AdamKyle/arctic-events,num_dependents_deps.dev:0 github.com/AdamLeBlanc/gatsby-plugin-ts-loader,num_dependents_deps.dev:0 github.com/AdamLenda/docReady,num_dependents_deps.dev:0 github.com/AdamMagaluk/ar-drone-fleet,num_dependents_deps.dev:0 +github.com/AdamMagaluk/buf-push-action, github.com/AdamMagaluk/edison-cli,num_dependents_deps.dev:0 github.com/AdamMagaluk/elroy-intelli-chilli,num_dependents_deps.dev:0 github.com/AdamMagaluk/eui64,num_dependents_deps.dev:0 @@ -11426,6 +11642,7 @@ github.com/AdamMoses-GitHub/NPMJS-googlenews-rss-scraper,num_dependents_deps.dev github.com/AdamMoses-GitHub/NPMJS-rt-scraper,num_dependents_deps.dev:0 github.com/AdamMusa/fdriver, github.com/AdamN/python-webkit2png, +github.com/AdamNettles/another-action, github.com/AdamNiederer/base100,num_dependents_deps.dev:0 github.com/AdamNiederer/cargo-disassemble,num_dependents_deps.dev:0 github.com/AdamNiederer/faster,num_dependents_deps.dev:1 @@ -11545,7 +11762,9 @@ github.com/Adapton/adapton.rust,num_dependents_deps.dev:0 github.com/Adapton/fungi-lang.rust,num_dependents_deps.dev:0 github.com/Adapton/hashcons.rust,num_dependents_deps.dev:0 github.com/Adaptv/adapt-strap,num_dependents_deps.dev:0 +github.com/Adarsh-Suvarna/GitHub-PR-Comment, github.com/Adarsh077/wikitooltip,num_dependents_deps.dev:0 +github.com/Adarsh1999/github-action-image-watermark, github.com/Adarshjain/Deceive,num_dependents_deps.dev:0 github.com/Adasha/frame-seq,num_dependents_deps.dev:0 github.com/Adasha/proximity-effect,num_dependents_deps.dev:0 @@ -11717,7 +11936,10 @@ github.com/Aditya-Diva/Ez-Cpp-Python-Socket, github.com/Aditya-ds-1806/Chess-PGN-Parser,num_dependents_deps.dev:0 github.com/Aditya0025/Data-Transfer-Mongodb-to-Elastic-Search, github.com/AdityaCyberSafe/ImitateTTS, +github.com/AdityaGarg8/remove-unwanted-software, +github.com/AdityaGarg8/setup-youtubeuploader-fixed, github.com/AdityaGawde97/react-native-custom-drawer,num_dependents_deps.dev:0 +github.com/AdityaGovardhan/ga-pull-requests-projects, github.com/AdityaHegde/deep-keys,num_dependents_deps.dev:0 github.com/AdityaHegde/ember-array-modifier, github.com/AdityaHegde/ember-column-data,num_dependents_deps.dev:0 @@ -11933,6 +12155,7 @@ github.com/AdrianMendez1199/react-barcode-scanner,num_dependents_deps.dev:0 github.com/AdrianMuntean/adrian-muntean-resume,num_dependents_deps.dev:0 github.com/AdrianOrtiga/platzom,num_dependents_deps.dev:0 github.com/AdrianR28064212/arjsfooter,num_dependents_deps.dev:0 +github.com/AdrianRaFo/version-release-info, github.com/AdrianRossouw/denovo,num_dependents_deps.dev:0 github.com/AdrianRossouw/entity-access,num_dependents_deps.dev:0 github.com/AdrianRossouw/seneca-entity-access,num_dependents_deps.dev:0 @@ -12099,6 +12322,9 @@ github.com/Adyen/adyen-python-api-library, github.com/Adyen/adyen-ruby-api-library,num_dependents_deps.dev:0 github.com/Adyen/adyen-web, github.com/Adyen/feast-spark-offline-store, +github.com/Adzz/deploy_to_gae_action, +github.com/Adzz/elixir_run_tests_action, +github.com/Adzz/yarn_command_action, github.com/Ae-Mc/FB2, github.com/Ae-Mc/Fisher, github.com/AeGean-Studio/nstoolspack, @@ -12127,6 +12353,7 @@ github.com/Aeness/ckeditor5-build,num_dependents_deps.dev:0 github.com/Aeness/ckeditor5-insert-image,num_dependents_deps.dev:0 github.com/AenonDynamics/eslint-config-aenondynamics,num_dependents_deps.dev:0 github.com/Aenterhy/ToggleSwitch,num_dependents_deps.dev:0 +github.com/Aeolun/mycoverage-action, github.com/AeonFr/csssearch,num_dependents_deps.dev:0 github.com/AeonLucid/POGOProtos,criticality_score:0.324380 github.com/Aeonax/terrazine,num_dependents_deps.dev:0 @@ -12210,6 +12437,7 @@ github.com/Aferz/vivaz,num_dependents_deps.dev:0 github.com/AfferoLab-Flow/Node-Excel-Export,num_dependents_deps.dev:0 github.com/AfferoLab-Flow/angular-weekly-scheduler,num_dependents_deps.dev:0 github.com/AfferoLab-IT/angular2-afferolab-ui, +github.com/AffineParameter/latex-action, github.com/AffinityTalk/AffinityIO,num_dependents_deps.dev:0 github.com/Affirm/affirm-android-sdk,num_dependents_deps.dev:0 github.com/Affirm/shparkley, @@ -12230,6 +12458,7 @@ github.com/AfirSraftGarrier/ACCWeb,num_dependents_deps.dev:0 github.com/Afonasev/context_logging, github.com/AfonsoFGarcia/PT-ID-Validator,num_dependents_deps.dev:0 github.com/AfonsoSalgadoSousa/catbird, +github.com/AfonsoTaborda/custom-task-list-approval, github.com/AfonsoTsukamoto/slate,num_dependents_deps.dev:0 github.com/Afoucaul/docgui, github.com/Afoucaul/pyver, @@ -12595,6 +12824,8 @@ github.com/Agreon/typedoc-plugin-pdf-export,num_dependents_deps.dev:0 github.com/AgriConnect/chameleon-log, github.com/AgriConnect/dj-static-revision, github.com/AgriConnect/dj.choicee, +github.com/Agriad/legal-teammates, +github.com/AgricoZA/ghactions-mplabx-old, github.com/AgrimPrasad/react-native-wallpaper-manager,num_dependents_deps.dev:0 github.com/AgrinessEdgeIoT/portiapy, github.com/AgronKabashi/agrouter,num_dependents_deps.dev:0 @@ -12672,6 +12903,7 @@ github.com/Ahimta/bc-css-flags,num_dependents_deps.dev:0 github.com/Ahimta/bc-phone-number,num_dependents_deps.dev:0 github.com/Ahimta/digits-trie,num_dependents_deps.dev:4 github.com/Ahineya/jsdv,num_dependents_deps.dev:0 +github.com/Ahli/verify-xml-action, github.com/Ahmad-Bamba/MotionPDF, github.com/Ahmad-Magdy/MoMoG-Mongoose-Model-Generator,num_dependents_deps.dev:0 github.com/Ahmad-Saleem/data-fetching,num_dependents_deps.dev:0 @@ -12783,6 +13015,7 @@ github.com/Ahmong/csslocals-from-vue-loader,num_dependents_deps.dev:0 github.com/Ahmong/yan-css-loader, github.com/Ahn1/nominatim-geocode-async,num_dependents_deps.dev:0 github.com/AhnSeongHyun/ExtendedOpenGraphParser, +github.com/AhnSeongHyun/action-tag-docker-build-push, github.com/AholibamaSI/node-fuzzy,num_dependents_deps.dev:0 github.com/Ahonya/sika-python, github.com/Ahoo-Wang/CosId,num_dependents_deps.dev:0 @@ -12798,6 +13031,7 @@ github.com/Ahryman40k/fhir-spec-loader,num_dependents_deps.dev:0 github.com/Ahryman40k/typescript-fhir-types,num_dependents_deps.dev:84 github.com/AhsanAbrar/collapsejs,num_dependents_deps.dev:0 github.com/AhsanAbrar/core-css,num_dependents_deps.dev:0 +github.com/AhsanAyaz/angular-deploy-gh-pages-actions, github.com/AhsanAyaz/cordova-app-crash,num_dependents_deps.dev:0 github.com/AhsanAyaz/ng2-device-detector,num_dependents_deps.dev:0 github.com/AhsanAyaz/ng2-emoji,num_dependents_deps.dev:0 @@ -12882,6 +13116,7 @@ github.com/Aigrefin/py3njection, github.com/AihamAbuRafaa/input-number-with-comma,num_dependents_deps.dev:0 github.com/Aikain/ra-language-finnish,num_dependents_deps.dev:0 github.com/Aikhjarto/pyepgnotify, +github.com/AikidoSec/github-actions-workflow, github.com/Ailein/bitcore,num_dependents_deps.dev:0 github.com/Ailenswpu/facebook_token,num_dependents_deps.dev:0 github.com/Ailenswpu/unified_iap,num_dependents_deps.dev:0 @@ -13015,6 +13250,7 @@ github.com/AirenSoft/OvenLiveKit-Web,num_dependents_deps.dev:0 github.com/AirenSoft/OvenMediaEngine,criticality_score:0.561810 github.com/AirenSoft/OvenPlayer,num_dependents_deps.dev:0 github.com/Airfooox/cron-validate,num_dependents_deps.dev:32 +github.com/Airfordable/ecs-deploy-task-definition-to-scheduled-task, github.com/Airik-Leon/coffee-linter, github.com/Airis-DevGroup/airis-ui,num_dependents_deps.dev:0 github.com/Airiuwu/fumoAPI, @@ -13036,6 +13272,7 @@ github.com/AirrHU/AirTools,num_dependents_deps.dev:0 github.com/Airsola/vue-marquee-sola,num_dependents_deps.dev:0 github.com/Airsola/wepy-plugin-filemin-sola,num_dependents_deps.dev:0 github.com/Airspace-Encounter-Models/em-model-manned-bayes,Google +github.com/AirspaceTechnologies/merge-branches, github.com/Airsquire/AirProgressbar,num_dependents_deps.dev:0 github.com/Airsquire/react-context-menu,num_dependents_deps.dev:0 github.com/Airsquire/react-typescript-npm-storybook-boilerplate,num_dependents_deps.dev:0 @@ -13158,6 +13395,8 @@ github.com/Ajayg96/react-native-snackbar,num_dependents_deps.dev:0 github.com/Ajayg96/react-native-spinner,num_dependents_deps.dev:0 github.com/Ajayg96/react-native-ui-modules,num_dependents_deps.dev:0 github.com/Ajayg96/react-netinfo, +github.com/Ajayos/Ajayos, +github.com/Ajayos/CTS, github.com/Ajedi32/echovr-api, github.com/Ajedi32/metalsmith-matters,num_dependents_deps.dev:0 github.com/Ajedi32/metalsmith-metafiles,num_dependents_deps.dev:0 @@ -13302,6 +13541,7 @@ github.com/Akashaj09/helper-js,num_dependents_deps.dev:0 github.com/Akashi2019/shr-cli, github.com/AkashiGakki/vue-highcharts,num_dependents_deps.dev:0 github.com/AkashiSN/gitbook-plugin-github-link,num_dependents_deps.dev:0 +github.com/Akashkarmokar/OT-Labeler, github.com/Akashtyagi08/Hencoder, github.com/Akasurde/Mahadiscom, github.com/AkatQuas/nprogresse,num_dependents_deps.dev:0 @@ -13336,6 +13576,7 @@ github.com/AkhilSharma90/mongooserediscache, github.com/AkhilaG28/title-odd-number,num_dependents_deps.dev:0 github.com/Akhilesh-Anb/hubot-elastic,num_dependents_deps.dev:0 github.com/AkhileshNS/elegant-standard,num_dependents_deps.dev:0 +github.com/AkhileshNS/heroku-deploy, github.com/AkhileshNS/judip,num_dependents_deps.dev:0 github.com/AkhileshNS/react-regex-router,num_dependents_deps.dev:0 github.com/AkhileshNS/simple-bem-namer,num_dependents_deps.dev:0 @@ -13417,6 +13658,7 @@ github.com/AkkiSeven/proshadow,num_dependents_deps.dev:0 github.com/AkkiSeven/shadoww,num_dependents_deps.dev:0 github.com/Akkimehr/eda-fe-model, github.com/Akkiros/Malygos,num_dependents_deps.dev:0 +github.com/Akkjon/close-milestone, github.com/Akkuma/metaloader-loader,num_dependents_deps.dev:0 github.com/Akkuma/webpack-uglify-harmony,num_dependents_deps.dev:0 github.com/AknOzgen/reverse-object-order,num_dependents_deps.dev:0 @@ -13449,6 +13691,7 @@ github.com/Akryum/nodepack,num_dependents_deps.dev:432 github.com/Akryum/nodepack-conventional-changelog,num_dependents_deps.dev:0 github.com/Akryum/peeky,num_dependents_deps.dev:24 github.com/Akryum/portless,num_dependents_deps.dev:5 +github.com/Akryum/release-tag, github.com/Akryum/v-tooltip,"criticality_score:0.475370,num_dependents_deps.dev:0" github.com/Akryum/vue-apollo,num_dependents_deps.dev:104 github.com/Akryum/vue-cli-locale-fr,num_dependents_deps.dev:0 @@ -13476,6 +13719,8 @@ github.com/Akshay-N-Shaju/client-not-paid-npm,num_dependents_deps.dev:0 github.com/Akshay0704/primeng,num_dependents_deps.dev:0 github.com/Akshay090/bingoset, github.com/Akshay090/colab-cli, +github.com/Akshay090/github-action-neural-style-transfer, +github.com/Akshay090/github-action-text-summarization, github.com/Akshay090/ppt_decrypt,num_dependents_deps.dev:0 github.com/Akshay090/react-tageditor,num_dependents_deps.dev:0 github.com/AkshayChordiya/News,criticality_score:0.303430 @@ -13540,6 +13785,7 @@ github.com/Akuukis/beancount_oneliner, github.com/Akuukis/beancount_plugin_utils, github.com/Akuukis/beancount_share, github.com/Aky22/svgcolorer, +github.com/Akylas/changelog-reader-action, github.com/Akylas/nativescript-bluetooth, github.com/Akylas/nativescript-blurview,num_dependents_deps.dev:0 github.com/Akylas/nativescript-bugsnag,num_dependents_deps.dev:0 @@ -13915,15 +14161,20 @@ github.com/AlbertFazullin/fs-jwt-xhr-hook,num_dependents_deps.dev:0 github.com/AlbertHambardzumyan/fraction-js,num_dependents_deps.dev:0 github.com/AlbertHambardzumyan/node-structures,num_dependents_deps.dev:0 github.com/AlbertHdz4/Unit_Converter,num_dependents_deps.dev:0 +github.com/AlbertHernandez/assign-me, +github.com/AlbertHernandez/branch-name-action, github.com/AlbertHernandez/insomnia-plugin-monokai-theme, github.com/AlbertHernandez/insomnia-plugin-ocean-dark-theme, github.com/AlbertHernandez/insomnia-plugin-ocean-light-theme,num_dependents_deps.dev:0 +github.com/AlbertHernandez/is-ready-action, +github.com/AlbertHernandez/working-label-action, github.com/AlbertLucianto/react-transition-box,num_dependents_deps.dev:0 github.com/AlbertLucianto/react-transitioning-container,num_dependents_deps.dev:0 github.com/AlbertLucianto/react-with-throttle,num_dependents_deps.dev:0 github.com/AlbertLucianto/vue-text-highlight,num_dependents_deps.dev:0 github.com/AlbertLucianto/vuex-search,num_dependents_deps.dev:0 github.com/AlbertMN/AssistantComputerControl,criticality_score:0.314160 +github.com/AlbertMorenoDEV/deploy-hugo-to-s3-action, github.com/AlbertQM/lold.js,num_dependents_deps.dev:0 github.com/AlbertRosenfield/create-react-app,num_dependents_deps.dev:0 github.com/AlbertRtk/marketools, @@ -14226,6 +14477,7 @@ github.com/AlekzZz/proto-lib-mvc,num_dependents_deps.dev:0 github.com/AlekzZz/proto-lib-node, github.com/AlekzZz/proto-mvc,num_dependents_deps.dev:0 github.com/AlekzanderDee/grpc-utils, +github.com/Alemiz112/netbird-connect, github.com/AlenDavid/proposal-factory-decorator,num_dependents_deps.dev:0 github.com/AlenQi/tooljs,num_dependents_deps.dev:0 github.com/AlenQi/toolscript, @@ -14387,6 +14639,7 @@ github.com/Alex0007/mysql-query-observable,num_dependents_deps.dev:0 github.com/Alex0007/request-observable,num_dependents_deps.dev:0 github.com/Alex0007/zxing-online-wrapper,num_dependents_deps.dev:0 github.com/Alex079/graphql-classes-maven-plugin,num_dependents_deps.dev:0 +github.com/Alex079/setup-custom-tool, github.com/Alex1100/blsjs,num_dependents_deps.dev:0 github.com/Alex1100/real-estate-finance, github.com/Alex1304/jdash,num_dependents_deps.dev:4 @@ -14448,6 +14701,7 @@ github.com/Alex979/banweb-python, github.com/AlexAegis/a-star,num_dependents_deps.dev:0 github.com/AlexAegis/auth, github.com/AlexAegis/avl,num_dependents_deps.dev:0 +github.com/AlexAegis/collect-public-packages, github.com/AlexAegis/cpt,num_dependents_deps.dev:0 github.com/AlexAkulov/clickhouse-backup,"criticality_score:0.412250,num_dependents_deps.dev:0" github.com/AlexAlbala/wordpress-hash-node,num_dependents_deps.dev:2 @@ -14463,6 +14717,9 @@ github.com/AlexArtisan/react-native-material-textfield,num_dependents_deps.dev:0 github.com/AlexAtNet/supro,num_dependents_deps.dev:0 github.com/AlexAtNet/uwords,num_dependents_deps.dev:0 github.com/AlexAtNet/vcm,num_dependents_deps.dev:0 +github.com/AlexAtkinson/github-action-checkout-from-tag, +github.com/AlexAtkinson/github-action-gitops-autover, +github.com/AlexAtkinson/github-test-action, github.com/AlexAxis/learnstorybook-design-system-from-alexis,num_dependents_deps.dev:0 github.com/AlexAxis/storybook-alexis, github.com/AlexBai1991/aLazyload,num_dependents_deps.dev:0 @@ -14496,6 +14753,7 @@ github.com/AlexDM0/keycharm,num_dependents_deps.dev:280 github.com/AlexDaSoul/nestjs-proto-gen-ts,num_dependents_deps.dev:0 github.com/AlexDaSoul/ngx-i18n-combine,num_dependents_deps.dev:0 github.com/AlexDanault/EspHomePreprocessor, +github.com/AlexDeMichieli/insecure-test-app, github.com/AlexDeltax/wagtail_comments_xtd, github.com/AlexDev-py/postgresql_api, github.com/AlexDev-py/sqlite3-api, @@ -14522,6 +14780,7 @@ github.com/AlexEne/rust_hawktracer_normal_macro,num_dependents_deps.dev:28 github.com/AlexEne/rust_hawktracer_proc_macro,num_dependents_deps.dev:28 github.com/AlexEne/rust_hawktracer_sys,num_dependents_deps.dev:2 github.com/AlexEngelhardt/startup-name-generator, +github.com/AlexF4Dev/github-packages-image-tag, github.com/AlexF4Dev/oidc-client-js-console,num_dependents_deps.dev:0 github.com/AlexFalappa/nb-figlet,num_dependents_deps.dev:0 github.com/AlexFalappa/nb-springboot,num_dependents_deps.dev:0 @@ -14572,6 +14831,7 @@ github.com/AlexGibson12/libgen-search, github.com/AlexGilleran/jsx-control-statements,"criticality_score:0.345850,num_dependents_deps.dev:48" github.com/AlexGilleran/jsx-control-statements-jstransform,num_dependents_deps.dev:0 github.com/AlexGilleran/number-formatter,num_dependents_deps.dev:0 +github.com/AlexGluck/git-repo-sync, github.com/AlexGodard/eslint-config-alexgodard,num_dependents_deps.dev:0 github.com/AlexGonRod/eslint-config-standard,num_dependents_deps.dev:0 github.com/AlexGonzalezS/web-nexus-deployer,num_dependents_deps.dev:0 @@ -14585,6 +14845,7 @@ github.com/AlexHankins/yandere,num_dependents_deps.dev:0 github.com/AlexHayton/firestore-timestamp-converter,num_dependents_deps.dev:0 github.com/AlexHenderson/hasher, github.com/AlexHenderson/pyutils, +github.com/AlexHird/JiraRelease, github.com/AlexHladin/dynamodb-read-stream, github.com/AlexHladin/sequelize-automatic-migrations,num_dependents_deps.dev:0 github.com/AlexHodgson/steamid-converter, @@ -14631,6 +14892,7 @@ github.com/AlexKolpa/SectionedRecyclerAdapter,num_dependents_deps.dev:0 github.com/AlexKolpa/fab-toolbar,num_dependents_deps.dev:0 github.com/AlexKolpa/paged-listview,num_dependents_deps.dev:0 github.com/AlexKonov/jquery-attachments,num_dependents_deps.dev:0 +github.com/AlexKoronskyi/github-release-version, github.com/AlexKott/sissi-guides,num_dependents_deps.dev:0 github.com/AlexKrapka/msp.js,num_dependents_deps.dev:0 github.com/AlexKrotov92/mfe-lerna,num_dependents_deps.dev:0 @@ -14650,6 +14912,7 @@ github.com/AlexLXL/lang-compress-upload,num_dependents_deps.dev:0 github.com/AlexLXL/lang-npm,num_dependents_deps.dev:0 github.com/AlexLakatos/ascii-themes,num_dependents_deps.dev:0 github.com/AlexLakatos/computer-puns,num_dependents_deps.dev:0 +github.com/AlexLakatos/puns-dev-action, github.com/AlexLazy/simpleParallax,num_dependents_deps.dev:0 github.com/AlexLerman/moment-business-time,num_dependents_deps.dev:0 github.com/AlexLeung/Visionary,num_dependents_deps.dev:0 @@ -14771,6 +15034,8 @@ github.com/AlexPadron/comment_formatter, github.com/AlexParamonov/inheritance_module_eval,num_dependents_deps.dev:0 github.com/AlexParamonov/processor,num_dependents_deps.dev:0 github.com/AlexPavlof/GeoHash,num_dependents_deps.dev:0 +github.com/AlexPerathoner/workflow-telemetry-action, +github.com/AlexPerathoner/xcresulttool-alternative-action, github.com/AlexPerrotton/microblue,num_dependents_deps.dev:0 github.com/AlexPerrotton/node-red-contrib-microblue,num_dependents_deps.dev:0 github.com/AlexPetrov7311/angular-select,num_dependents_deps.dev:0 @@ -14799,6 +15064,22 @@ github.com/AlexRex/own-ip,num_dependents_deps.dev:0 github.com/AlexRiina/anki-sqlalchemy, github.com/AlexRoar/pixi-graph,num_dependents_deps.dev:0 github.com/AlexRogalskiy/Test,num_dependents_deps.dev:0 +github.com/AlexRogalskiy/github-action-branch-mapper, +github.com/AlexRogalskiy/github-action-charts, +github.com/AlexRogalskiy/github-action-coverage-reporter, +github.com/AlexRogalskiy/github-action-file-size, +github.com/AlexRogalskiy/github-action-git-operation, +github.com/AlexRogalskiy/github-action-image-resizer, +github.com/AlexRogalskiy/github-action-issue-commenter, +github.com/AlexRogalskiy/github-action-json-fields, +github.com/AlexRogalskiy/github-action-node-dependency, +github.com/AlexRogalskiy/github-action-proverbs, +github.com/AlexRogalskiy/github-action-quotes, +github.com/AlexRogalskiy/github-action-random-proverb, +github.com/AlexRogalskiy/github-action-random-quote, +github.com/AlexRogalskiy/github-action-screenshots, +github.com/AlexRogalskiy/github-action-tag-replacer, +github.com/AlexRogalskiy/github-action-user-contribution, github.com/AlexRogalskiy/typescript-tools,num_dependents_deps.dev:0 github.com/AlexRogalskiy/weather-sprites,num_dependents_deps.dev:0 github.com/AlexRomantsov/logarithm, @@ -14841,13 +15122,20 @@ github.com/AlexShkarin/pyLabLib, github.com/AlexShkarin/rvt, github.com/AlexShkunov/flexi-cache,num_dependents_deps.dev:0 github.com/AlexShkunov/lean-cache,num_dependents_deps.dev:0 +github.com/AlexShukel/get-changed-workspaces-action, +github.com/AlexSim93/pr-full-report-action, +github.com/AlexSim93/pull-request-analytics-action, github.com/AlexSkrn/to_tmx, github.com/AlexSoudant/read-me.io_module,num_dependents_deps.dev:0 github.com/AlexStack/NodeJs-Express-MongoDB-Universal-CRUD-API, github.com/AlexStocks/getty,"criticality_score:0.362630,num_dependents_deps.dev:0" +github.com/AlexStormwood/CommitsWithinTime, +github.com/AlexStormwood/UnityAutomatedSemver, +github.com/AlexStormwood/UnityUPMSemver, github.com/AlexStory/game-cli,num_dependents_deps.dev:0 github.com/AlexStory/yarns,num_dependents_deps.dev:0 github.com/AlexStrNik/BlocXus,num_dependents_deps.dev:0 +github.com/AlexSuRui/azure-pipeline-github-action, github.com/AlexSugak/react-svg-pathline,num_dependents_deps.dev:0 github.com/AlexSuleap/angular-tree-widget,num_dependents_deps.dev:0 github.com/AlexSumbit/smb-select,num_dependents_deps.dev:0 @@ -14945,6 +15233,7 @@ github.com/Alexander-0x80/floweroflife.js,num_dependents_deps.dev:0 github.com/Alexander-0x80/resume-bandit,num_dependents_deps.dev:0 github.com/Alexander-Herranz/async-await-mongoclient-es6-promisify,num_dependents_deps.dev:0 github.com/Alexander-Herranz/async-bittrex-api-node,num_dependents_deps.dev:0 +github.com/Alexander-Ignition/XCAudit, github.com/Alexander-Maples/fkeycapture, github.com/Alexander-Miller/treemacs,criticality_score:0.591540 github.com/Alexander-Prime/rxjs-ratelimit-operator,num_dependents_deps.dev:0 @@ -15079,6 +15368,7 @@ github.com/AlexanderMac/n-validators,num_dependents_deps.dev:0 github.com/AlexanderMac/n-vgen,num_dependents_deps.dev:0 github.com/AlexanderMac/o2diff,num_dependents_deps.dev:0 github.com/AlexanderMalikh/backend-project-lvl1,num_dependents_deps.dev:0 +github.com/AlexanderMelde/yapf-action, github.com/AlexanderMoskovkin/browserstack-connector,num_dependents_deps.dev:0 github.com/AlexanderMoskovkin/gulp-qunit-harness,num_dependents_deps.dev:0 github.com/AlexanderMoskovkin/qunit-harness,num_dependents_deps.dev:0 @@ -15242,6 +15532,7 @@ github.com/AlexandrovLab/SigProfilerExtractor, github.com/AlexandrovLab/SigProfilerTopography, github.com/AlexandrovRoman/Flask-DJ, github.com/Alexandrshy/como-north,num_dependents_deps.dev:0 +github.com/Alexandrshy/invision-dsm-configuration-action, github.com/Alexandrshy/keukenhof,num_dependents_deps.dev:0 github.com/Alexandrshy/vue-share-buttons, github.com/Alexandru-Cambose/inttorowords,num_dependents_deps.dev:0 @@ -15372,9 +15663,12 @@ github.com/AlexisHuvier/AList, github.com/AlexisHuvier/PDO, github.com/AlexisHuvier/PGGUI, github.com/AlexisHuvier/PyORM, +github.com/AlexisJasso/bump-semver, github.com/AlexisLenoir/Benchtrack, github.com/AlexisMARTICOMTE/demix_lib, github.com/AlexisMasseron/EddystoneYunziScanner,num_dependents_deps.dev:0 +github.com/AlexisMateo/issue-to-project-action, +github.com/AlexisMateo/sendmail-action, github.com/AlexisMunera98/rest-framework-actions, github.com/AlexisNo/comquirer,num_dependents_deps.dev:0 github.com/AlexisNo/pebo,num_dependents_deps.dev:0 @@ -15386,6 +15680,7 @@ github.com/AlexisReverte/arrest-jwt-bucket,num_dependents_deps.dev:0 github.com/AlexisReverte/node-recurly,num_dependents_deps.dev:0 github.com/AlexisTM/faster-cookie-parser,num_dependents_deps.dev:0 github.com/AlexisTM/humans-generator, +github.com/AlexisTM/pr-merge-commitlint, github.com/AlexisTM/rawsocket_python, github.com/AlexisTessier/assert-about,num_dependents_deps.dev:0 github.com/AlexisTessier/cleanquirer,num_dependents_deps.dev:0 @@ -15418,6 +15713,7 @@ github.com/Alexmhack/python_packaging, github.com/Alexnder/eslint-plugin-exclude-php-tags,num_dependents_deps.dev:0 github.com/Alexnortung/combinatorics.js,num_dependents_deps.dev:0 github.com/Alexs7zzh/markdown-it-wrap-alphabet,num_dependents_deps.dev:0 +github.com/AlexsJones/action-helm-datree, github.com/AlexsJones/ansible-dynamic-launcher, github.com/AlexsLemonade/fancySVD, github.com/AlexsLemonade/refinebio-py, @@ -15431,6 +15727,7 @@ github.com/AlexxIT/XiaomiGateway3,criticality_score:0.400440 github.com/AlexxIT/YandexStation,criticality_score:0.355960 github.com/AlexxNB/aovi,num_dependents_deps.dev:0 github.com/AlexxNB/aovi-svelte,num_dependents_deps.dev:0 +github.com/AlexxNB/caprover-action, github.com/AlexxNB/chalogen,num_dependents_deps.dev:0 github.com/AlexxNB/cjs2es,num_dependents_deps.dev:0 github.com/AlexxNB/derver, @@ -15452,6 +15749,7 @@ github.com/AlexxNB/svelte-eventbus,num_dependents_deps.dev:0 github.com/AlexxNB/svelte-preprocess-markdown,num_dependents_deps.dev:0 github.com/AlexxNB/tinds,num_dependents_deps.dev:0 github.com/AlexxNB/tinro,"criticality_score:0.339420,num_dependents_deps.dev:0" +github.com/AlexxNB/track-commits-to-issue, github.com/AlexxNB/translation-patcher,num_dependents_deps.dev:0 github.com/AlexxNica/random-utilities, github.com/AlexzanderFlores/WOKCommands,num_dependents_deps.dev:0 @@ -15465,6 +15763,7 @@ github.com/Alfabot-it/detectlanguage-npm,num_dependents_deps.dev:0 github.com/Alfagun74/vivo-dl, github.com/Alfareiza/pythonpro, github.com/Alferdize/react-native-ImageGallery-as,num_dependents_deps.dev:0 +github.com/Alfex4936/kakaotalk-ci-action, github.com/Alfian656/NezChan-api,num_dependents_deps.dev:0 github.com/AlfieGoldson/Corehalla-NPM,num_dependents_deps.dev:0 github.com/AlfieGoldson/fancy-discord,num_dependents_deps.dev:0 @@ -15693,6 +15992,7 @@ github.com/AliPirpiran/nodeco, github.com/AliRezaBeigy/Gitools, github.com/AliRezaBeigy/react-native-global-datetimepicker,num_dependents_deps.dev:0 github.com/AliSajid/brain_microbiome, +github.com/AliSajid/random-wait-action, github.com/AliSawari/Ali-Utils,num_dependents_deps.dev:0 github.com/AliSayyah/django-urlconfchecks, github.com/AliSepehri/hadir,num_dependents_deps.dev:0 @@ -15748,6 +16048,7 @@ github.com/AlicanC/react-former, github.com/AlicanC/react-native-safeareainsets,num_dependents_deps.dev:0 github.com/Alicannklc/Helpercss,num_dependents_deps.dev:0 github.com/AliceO2Group/WebUi,num_dependents_deps.dev:0 +github.com/AliceOh/CreateWindowsInstaller, github.com/AliceWonderland/hacktoberfest,criticality_score:0.410420 github.com/Aliceburg/533-lab4-CI, github.com/Alicepy/cmt-cli,num_dependents_deps.dev:0 @@ -15772,6 +16073,7 @@ github.com/AlienHoboken/TwitteRuby,num_dependents_deps.dev:0 github.com/AlienHoboken/electron-viewport,num_dependents_deps.dev:0 github.com/AlienKevin/SmartTextarea,num_dependents_deps.dev:0 github.com/AlienKevin/curry-macro,num_dependents_deps.dev:0 +github.com/AlienKevin/flutter-gh-pages, github.com/AlienKevin/hack-assembler,num_dependents_deps.dev:0 github.com/AlienKevin/html-element-picker,num_dependents_deps.dev:0 github.com/AlienKevin/lip,num_dependents_deps.dev:0 @@ -15835,6 +16137,9 @@ github.com/AlirezaEttehadi/project1,num_dependents_deps.dev:0 github.com/AlirezaKm/expl, github.com/AlirezaTaji6/mongoose-transaction256, github.com/AlirezaTaji6/transaction-mongoose,num_dependents_deps.dev:0 +github.com/AlirezaTheH/auto-bump-versions, +github.com/AlirezaTheH/github-auto-publish, +github.com/AlirezaTheH/pypi-auto-publish, github.com/AlirezaieS/RTBot, github.com/Alirezalm/cardsol, github.com/Alirezalm/syscopt, @@ -15878,6 +16183,7 @@ github.com/AliyunContainerService/k8s-for-docker-desktop,criticality_score:0.336 github.com/AliyunContainerService/kube-eventer,"criticality_score:0.409760,num_dependents_deps.dev:0" github.com/AliyunContainerService/log-pilot,criticality_score:0.366310 github.com/AliyunContainerService/terway,"criticality_score:0.386640,num_dependents_deps.dev:0" +github.com/AliyunWorkbench/workbench-oss, github.com/Aljendro/serverless-appsync-simulator, github.com/AljoschaMeyer/async-byteorder,num_dependents_deps.dev:0 github.com/AljoschaMeyer/async-serialization,num_dependents_deps.dev:0 @@ -15961,7 +16267,9 @@ github.com/Allain55/linter,num_dependents_deps.dev:0 github.com/Allajah/colorpack,num_dependents_deps.dev:0 github.com/Allajah/generator-wpst-static, github.com/Allajah/wbpck,num_dependents_deps.dev:0 +github.com/Allan-Nava/Docker-FFmpeg-Nvenc, github.com/Allan-Nava/deepstreampy, +github.com/Allan-Nava/github-activity-file, github.com/Allan1/projetofinal,num_dependents_deps.dev:0 github.com/AllanBishop/angular-img-cropper,num_dependents_deps.dev:0 github.com/AllanChain/NewFTP, @@ -15969,6 +16277,7 @@ github.com/AllanChain/command4bot, github.com/AllanChain/gridsome-plugin-pwa,num_dependents_deps.dev:0 github.com/AllanChain/jau,num_dependents_deps.dev:0 github.com/AllanChain/jupyterlab-theme-solarized-dark, +github.com/AllanChain/poetry-cache-action, github.com/AllanD1/cordova-sqlite-transfer,num_dependents_deps.dev:0 github.com/AllanFerencz/keystone,num_dependents_deps.dev:0 github.com/AllanGallop/RPi_GPIO_Rotary, @@ -16106,6 +16415,7 @@ github.com/AllentDan/mmconfig, github.com/Allesbeste/BS-Helper, github.com/Allex6/changes-getter,num_dependents_deps.dev:0 github.com/Allex6/realtime-frontend,num_dependents_deps.dev:0 +github.com/AllexVeldman/graphql-convert-introspection-schema, github.com/Alley23/number-conversion,num_dependents_deps.dev:0 github.com/AlleyPin/serverless-google-cloudfunctions,num_dependents_deps.dev:0 github.com/AlliVil/inbound-parse-multipart-parser,num_dependents_deps.dev:0 @@ -16253,6 +16563,7 @@ github.com/Alois-deValon/Axoproj, github.com/Alok/SEC-Edgar, github.com/AlokTakshak/create-react-webpack,num_dependents_deps.dev:0 github.com/AlokTakshak/ng-adaptive-tabs,num_dependents_deps.dev:0 +github.com/Alokit-Innovations/repo-profiler, github.com/Alon-L/node-discord,num_dependents_deps.dev:0 github.com/Alon-L/storage,num_dependents_deps.dev:0 github.com/AlonMiz/angular-wait-until,num_dependents_deps.dev:0 @@ -16377,6 +16688,7 @@ github.com/Aloxaf/silicon,"criticality_score:0.378660,num_dependents_deps.dev:0" github.com/Aloxaf/telegraph-rs,num_dependents_deps.dev:0 github.com/AloysAugustin/kitchen-scalr,num_dependents_deps.dev:0 github.com/AlpBilgin/test-coverage-comparison,num_dependents_deps.dev:0 +github.com/AlpaGit/github-action-get-previous-tag, github.com/Alpaca131/mildom_lib, github.com/AlpacaBi/alpaca.js,num_dependents_deps.dev:0 github.com/AlpacaBi/buy-alpaca-bi-a-cup-of-coffee, @@ -16419,6 +16731,7 @@ github.com/AlphaCat00/PyBaiduPan, github.com/AlphaDel/test-git-flow,num_dependents_deps.dev:0 github.com/AlphaDrako/primer-demo-mensajes-npm, github.com/AlphaFounders/strapi-provider-upload-google-cloud-storage,num_dependents_deps.dev:0 +github.com/AlphaGit/jekyll-seo-ai-action, github.com/AlphaGit/ng-pattern-restrict,num_dependents_deps.dev:0 github.com/AlphaGo88/uwp-ui-react,num_dependents_deps.dev:0 github.com/AlphaHydrae/backbone-relational-hal,num_dependents_deps.dev:0 @@ -16454,6 +16767,7 @@ github.com/AlphaRunic/Ether,num_dependents_deps.dev:0 github.com/AlphaRunic/Ripple,num_dependents_deps.dev:0 github.com/AlphaRunic/Wizard101-API-TS-Wrapper,num_dependents_deps.dev:0 github.com/AlphaSpectrum/rschema,num_dependents_deps.dev:0 +github.com/AlphaSteam/microprint-generator, github.com/AlphaT3ch/BarracudaCentral,num_dependents_deps.dev:0 github.com/AlphaT3ch/DroneBL,num_dependents_deps.dev:0 github.com/AlphaT3ch/Notifico-npm,num_dependents_deps.dev:0 @@ -16473,6 +16787,7 @@ github.com/Alphaopen/alphalogic_api3, github.com/Alphaopen/asm_api, github.com/Alphaopen/asm_cli, github.com/Alpharages/ng2-dnd,num_dependents_deps.dev:0 +github.com/Alphasians/Test-ReportQL, github.com/Alphawong/lazy-img, github.com/AlphemSoft/arum_filepicker,num_dependents_deps.dev:0 github.com/AlphemSoft/sphere-filepicker,num_dependents_deps.dev:0 @@ -16542,6 +16857,7 @@ github.com/AltesisPro/eslint-plugin-altesis,num_dependents_deps.dev:0 github.com/Altesmi/eventassigner-js,num_dependents_deps.dev:0 github.com/Altesmi/eventassigner-random,num_dependents_deps.dev:0 github.com/Altibox/movie-list,num_dependents_deps.dev:0 +github.com/Altify-Developing/ViewBot-and-CloneBot, github.com/Altimis/Scweet, github.com/Altinex/npm-expirience-1s,num_dependents_deps.dev:0 github.com/Altinity/altinity-datasets, @@ -16606,6 +16922,7 @@ github.com/AlvarBer/Persimmon, github.com/AlvaradoAdam15/NodeJs,num_dependents_deps.dev:0 github.com/Alvarios/Hermes, github.com/Alvarito050506/doubleb.js,num_dependents_deps.dev:0 +github.com/AlvaroAMGX/marketpalcepatimarketplacepami, github.com/AlvaroBernalG/react-sn-question, github.com/AlvaroBernalG/react-switchable, github.com/AlvaroBernalG/ts-promisify-event-emitter,num_dependents_deps.dev:0 @@ -16684,6 +17001,7 @@ github.com/AlyShmahell/vcpkgpip, github.com/AlyaGomaa/bitsbehumble, github.com/Alyetama/Python-DigitalOceanSpaces, github.com/Alyetama/pymirror, +github.com/Alyetama/rclone-backup-action, github.com/Alykod/React-Toast-Loading, github.com/Alykod/react-native-date-picker-light, github.com/Alyne-Martins/card-validator,num_dependents_deps.dev:0 @@ -16704,6 +17022,7 @@ github.com/Alyssonmach/pyLearnAlgorithms, github.com/Alyx-js/alyx.js,num_dependents_deps.dev:0 github.com/Alyxsqrd/poppinss-utils,num_dependents_deps.dev:0 github.com/Alzakath/nagare-jquery, +github.com/Am6puk/cloudflare-purge-actions, github.com/AmJaradat01/logDataToFile,num_dependents_deps.dev:0 github.com/AmJaradat01/partially-hide-email-phone,num_dependents_deps.dev:0 github.com/Ama-shock/ts-lonely-operation,num_dependents_deps.dev:0 @@ -16731,6 +17050,7 @@ github.com/AmadeusITGroup/python-jiffybox, github.com/AmadeusITGroup/python-memoize, github.com/AmadeusITGroup/trax,num_dependents_deps.dev:0 github.com/AmadeusRelay/0xOrderBuilder,num_dependents_deps.dev:0 +github.com/Amadevus/pwsh-script, github.com/Amadey666/ruen_string_keyboard_replacer,num_dependents_deps.dev:0 github.com/Amadey666/src_path,num_dependents_deps.dev:0 github.com/Amadosi/firestore-db-module,num_dependents_deps.dev:0 @@ -16748,6 +17068,7 @@ github.com/AmalieDue/bitcoin-rpcauth,num_dependents_deps.dev:0 github.com/AmalieDue/hmac-multisig-python-version, github.com/AmalieDue/multisig-hmac-python-version, github.com/Aman-Jojra/validate-react,num_dependents_deps.dev:0 +github.com/Aman-zishan/first-github-action, github.com/Aman813/shadow_image,num_dependents_deps.dev:0 github.com/AmanAgarwal041/copy-text-to-cb,num_dependents_deps.dev:0 github.com/AmanAgarwal041/med-url,num_dependents_deps.dev:0 @@ -16842,6 +17163,7 @@ github.com/Amberlamps/nlp-toolkit,num_dependents_deps.dev:0 github.com/Amberlamps/object-subset,num_dependents_deps.dev:0 github.com/Amberlamps/redream,num_dependents_deps.dev:0 github.com/Amberlamps/universal-paths,num_dependents_deps.dev:0 +github.com/Ambience-public/aptible-deploy-action, github.com/AmbientDataInc/ambient-nodejs-lib, github.com/Ambisafe/ambisafe_tenant_client, github.com/Ambisafe/etoken-lib, @@ -16859,6 +17181,7 @@ github.com/AmbulApps/node-windows,num_dependents_deps.dev:0 github.com/Ambyjkl/babel-plugin-transform-lodash-get,num_dependents_deps.dev:0 github.com/AmdaUwU/tablpy, github.com/Amdingo/generator-astack-component,num_dependents_deps.dev:0 +github.com/Ameausoone/howdoi-action, github.com/AmedeeBulle/pyrak811, github.com/Amedeo91/jQuery-Form-Validator,num_dependents_deps.dev:0 github.com/Amedeo91/react-json-table,num_dependents_deps.dev:0 @@ -16934,6 +17257,7 @@ github.com/Amin52J/Page-Loading,num_dependents_deps.dev:0 github.com/Amin52J/React-Redux-Enterprise,num_dependents_deps.dev:0 github.com/Amin52j/react-slider, github.com/AminAshtiani/react-editable-datatable,num_dependents_deps.dev:0 +github.com/AminFazlMondo/check-deployed-environment, github.com/AminMahpour/Wigman, github.com/AminRezaei0x443/PyTorch-LIT, github.com/AminRezaei0x443/memory-efficient-attention, @@ -16998,6 +17322,7 @@ github.com/AmirSasson/swagger-ui-express,num_dependents_deps.dev:0 github.com/AmirTGitHub/request_multiple_urls,num_dependents_deps.dev:0 github.com/AmirTahani/easy-redux,num_dependents_deps.dev:0 github.com/AmirTugi/tea-school,num_dependents_deps.dev:0 +github.com/AmirValeev/auto-ml-classifier, github.com/AmirabbasJ/decode-it,num_dependents_deps.dev:0 github.com/Amirh24/SVG-Image-Utils, github.com/Amiri83/IPloader, @@ -17038,6 +17363,7 @@ github.com/AmitayAbudy/homebridge-pioneer-SC-LX88,num_dependents_deps.dev:0 github.com/Amitesh/data-json-optimizer,num_dependents_deps.dev:0 github.com/Amitesh/opener-for-webpack,num_dependents_deps.dev:0 github.com/Amitgb14/pyqualys, +github.com/AmityCo/android-sdk-test-report-action, github.com/Amityville-DE/fowlhouse_bay,num_dependents_deps.dev:0 github.com/Amityville-DE/orange_bay,num_dependents_deps.dev:0 github.com/Amityville-DE/rakino,num_dependents_deps.dev:0 @@ -17073,6 +17399,7 @@ github.com/AmolKedari1492/friendly-js,num_dependents_deps.dev:0 github.com/AmolMavuduru/tldr-python, github.com/Amondo/create-react-app,num_dependents_deps.dev:0 github.com/Amoroth/lit-state,num_dependents_deps.dev:0 +github.com/AmosHuKe/pub-dashboard, github.com/AmosWels/ug-districts,num_dependents_deps.dev:0 github.com/AmosXu/vue-simple-waterfall,num_dependents_deps.dev:0 github.com/AmossXu/amos-ui-components,num_dependents_deps.dev:0 @@ -17131,6 +17458,7 @@ github.com/Amphiluke/lindsvg,num_dependents_deps.dev:0 github.com/Amphiluke/potprox,num_dependents_deps.dev:0 github.com/Amphiluke/vue-handy-scroll,num_dependents_deps.dev:0 github.com/AmphoraInc/xarray_mongodb, +github.com/Amr-Reda/npm-unused-packages-checker, github.com/AmrAbdulrahman/db-mock,num_dependents_deps.dev:0 github.com/AmrAbdulrahman/forward-modules,num_dependents_deps.dev:0 github.com/AmrAbdulrahman/interactive-batch,num_dependents_deps.dev:0 @@ -17151,6 +17479,10 @@ github.com/AmrOYounes/npm-module,num_dependents_deps.dev:0 github.com/AmrSaber/Cerebro, github.com/AmrSaber/async-short-circuit,num_dependents_deps.dev:0 github.com/AmrSaber/random-cli,num_dependents_deps.dev:0 +github.com/AmrShrwnh/deploy-to-azure-blob-storage, +github.com/Amraneze/aws-beanstalk-deploy, +github.com/Amraneze/get-ebs-env-variables, +github.com/Amraneze/push-to-protected-branch, github.com/Amraneze/react-instagram-login,num_dependents_deps.dev:0 github.com/Amraneze/sliding-window,num_dependents_deps.dev:0 github.com/AmreshVenugopal/fastest, @@ -17195,6 +17527,7 @@ github.com/AmurKhoyetsyan/X-Ray,num_dependents_deps.dev:0 github.com/AmurKhoyetsyan/concat-env,num_dependents_deps.dev:0 github.com/AmurKhoyetsyan/react-js-loader,num_dependents_deps.dev:0 github.com/AmurKhoyetsyan/react-native-rnevents,num_dependents_deps.dev:0 +github.com/Amwam/issue-comment-action, github.com/Amwam/js-import-sort,num_dependents_deps.dev:0 github.com/Amxx/EEIM,num_dependents_deps.dev:2 github.com/Amxx/ERC1836UpgradableIdentityProxy,num_dependents_deps.dev:0 @@ -17247,6 +17580,7 @@ github.com/AnH0ang/jupyter-nbenum, github.com/AnH0ang/odc-python, github.com/AnH0ang/universal-data-catalog, github.com/AnHernandezOlvera/CDMX010-md-links,num_dependents_deps.dev:0 +github.com/AnHeuermann/setup-openmodelica, github.com/AnHongpeng/react-native-emoji-panel,num_dependents_deps.dev:0 github.com/AnIdiotsGuide/discordjs-bot-guide,criticality_score:0.305290 github.com/AnMokoto/cordova-plugin,num_dependents_deps.dev:0 @@ -17283,6 +17617,7 @@ github.com/AnacondaY/style-variables-loader,num_dependents_deps.dev:0 github.com/AnacondaY/validate-promisify,num_dependents_deps.dev:0 github.com/Anadea/RxBus,num_dependents_deps.dev:0 github.com/Anadea/freemarker-scala-spring-boot-autoconfigure,num_dependents_deps.dev:0 +github.com/Anadea/pre-commit-config-shellcheck, github.com/Anadian/application-log-winston-interface,num_dependents_deps.dev:0 github.com/Anadian/concise-buffer,num_dependents_deps.dev:0 github.com/Anadian/executable-metadata,num_dependents_deps.dev:0 @@ -17304,6 +17639,7 @@ github.com/AnakinYuen/progressive-image,num_dependents_deps.dev:0 github.com/AnakinYuen/scroll-direction,num_dependents_deps.dev:0 github.com/AnalitiQsBV/analitiqs.python, github.com/Analitycy-host/analitycy-sdk-node,num_dependents_deps.dev:0 +github.com/Analog-inc/asciidoctor-action, github.com/AnalogJ/goodreads.js,num_dependents_deps.dev:0 github.com/AnalogJ/hyper.js,num_dependents_deps.dev:0 github.com/AnalogJ/lexicon,criticality_score:0.584140 @@ -17352,26 +17688,36 @@ github.com/AnandChowdhary/calendar-slots,num_dependents_deps.dev:0 github.com/AnandChowdhary/carpent,num_dependents_deps.dev:0 github.com/AnandChowdhary/changebar,num_dependents_deps.dev:0 github.com/AnandChowdhary/cosmic,num_dependents_deps.dev:2 +github.com/AnandChowdhary/delete-merged-action, +github.com/AnandChowdhary/dependabot-pr-action, +github.com/AnandChowdhary/deploy-pr-action, github.com/AnandChowdhary/docs-markdown,num_dependents_deps.dev:2 github.com/AnandChowdhary/edumail,num_dependents_deps.dev:0 github.com/AnandChowdhary/eject-dependencies,num_dependents_deps.dev:2 github.com/AnandChowdhary/embed-widget, github.com/AnandChowdhary/environment-blending,num_dependents_deps.dev:0 +github.com/AnandChowdhary/events-summary, github.com/AnandChowdhary/feeedback,num_dependents_deps.dev:0 github.com/AnandChowdhary/fraud,num_dependents_deps.dev:0 github.com/AnandChowdhary/get-computed-label,num_dependents_deps.dev:0 +github.com/AnandChowdhary/header-comments, github.com/AnandChowdhary/hello-bar,num_dependents_deps.dev:0 github.com/AnandChowdhary/hovercard,num_dependents_deps.dev:0 github.com/AnandChowdhary/inverted-colors,num_dependents_deps.dev:0 +github.com/AnandChowdhary/label-approved-action, github.com/AnandChowdhary/language-icons,num_dependents_deps.dev:0 github.com/AnandChowdhary/light-level,num_dependents_deps.dev:0 github.com/AnandChowdhary/node.ts,num_dependents_deps.dev:0 +github.com/AnandChowdhary/notes-summary, +github.com/AnandChowdhary/package-version-action, github.com/AnandChowdhary/pocket-casts,num_dependents_deps.dev:0 github.com/AnandChowdhary/prefers-color-scheme,num_dependents_deps.dev:0 github.com/AnandChowdhary/prefers-contrast,num_dependents_deps.dev:0 github.com/AnandChowdhary/prefers-reduced-motion,num_dependents_deps.dev:0 github.com/AnandChowdhary/prefers-reduced-transparency,num_dependents_deps.dev:0 github.com/AnandChowdhary/puppet, +github.com/AnandChowdhary/readme-repos-list, +github.com/AnandChowdhary/release-scheduler, github.com/AnandChowdhary/rescuetime-slack,num_dependents_deps.dev:0 github.com/AnandChowdhary/run-url,num_dependents_deps.dev:0 github.com/AnandChowdhary/sapper-i18n-sync,num_dependents_deps.dev:0 @@ -17397,6 +17743,7 @@ github.com/Anant99-sys/Missing-values, github.com/Anant99-sys/outliers, github.com/Anant99-sys/topsis, github.com/Ananto30/zero, +github.com/Ananya875/goaction, github.com/AnanyaKumar/verified_calibration, github.com/Anaphalis/ds,num_dependents_deps.dev:0 github.com/Anaphase/gulp-siml,num_dependents_deps.dev:0 @@ -17411,6 +17758,7 @@ github.com/Anarcroth/jayVFS,num_dependents_deps.dev:0 github.com/Anarcroth/mish-mash,num_dependents_deps.dev:0 github.com/AnarionBe/npx_card,num_dependents_deps.dev:0 github.com/AnarionBe/pwned_cli,num_dependents_deps.dev:0 +github.com/AnarkisGaming/workshop, github.com/AnasAito/SkillNER, github.com/AnasGhrab/diastema, github.com/AnasMK/json-canonical, @@ -17711,6 +18059,7 @@ github.com/Andersonfeng/mybatis-generator-plugins,num_dependents_deps.dev:0 github.com/Andersonfrfilho/react-native-template-andersonfrfilho,num_dependents_deps.dev:0 github.com/Andersos/eslint-rules-list,num_dependents_deps.dev:0 github.com/Andersrapp/starwars-names,num_dependents_deps.dev:0 +github.com/AnderssonPeter/cloud-init-linter, github.com/Andertaker/django-vkontakte-comments, github.com/AnderwanSAM/danger-plugin-commit-lint-angular-js-rules,num_dependents_deps.dev:0 github.com/AnderwanSAM/danger-plugin-commit-lint-plugin,num_dependents_deps.dev:0 @@ -17831,6 +18180,7 @@ github.com/AndreAntunesVieira/json-to-html-css,num_dependents_deps.dev:0 github.com/AndreAntunesVieira/react-local-dispatch,num_dependents_deps.dev:0 github.com/AndreAntunesVieira/universal-location,num_dependents_deps.dev:0 github.com/AndreBacic/DecisionTreeWriter, +github.com/AndreCox/go-release-action-gzip, github.com/AndreF010203/about-me,num_dependents_deps.dev:0 github.com/AndreF010203/jQuery-Read-More,num_dependents_deps.dev:0 github.com/AndreGeng/inpm-cli,num_dependents_deps.dev:0 @@ -17857,6 +18207,7 @@ github.com/AndreMicheletti/pytest-sorter, github.com/AndreMiras/EtherollApp, github.com/AndreMiras/KivyMD, github.com/AndreMiras/QrScan, +github.com/AndreMiras/coveralls-python-action, github.com/AndreMiras/eth_accounts, github.com/AndreMiras/garden.layoutmargin, github.com/AndreMiras/libpools, @@ -17925,6 +18276,8 @@ github.com/AndreaGvA/node-tidy-batch,num_dependents_deps.dev:0 github.com/AndreaLombardo/BootSideMenu,num_dependents_deps.dev:0 github.com/AndreaM19/ReactElements,num_dependents_deps.dev:0 github.com/AndreaMinato/tailwind-heropatterns,num_dependents_deps.dev:0 +github.com/AndreaMolinari/RNAndroidBuild, +github.com/AndreaMolinari/rn-conventional-release, github.com/AndreaMyshkn/CDMX007-fe-md-links,num_dependents_deps.dev:0 github.com/AndreaSimeone/d3-hypergraph,num_dependents_deps.dev:0 github.com/AndreaSottana/pdf2emb_nlp, @@ -17962,6 +18315,7 @@ github.com/AndreasArvidsson/npm-publish-flatten,num_dependents_deps.dev:0 github.com/AndreasArvidsson/prefix-css-loader,num_dependents_deps.dev:0 github.com/AndreasArvidsson/react-bootstrap-size, github.com/AndreasArvidsson/styles-to-js-loader,num_dependents_deps.dev:0 +github.com/AndreasAugustin/actions-template-sync, github.com/AndreasCag/package-sync,num_dependents_deps.dev:0 github.com/AndreasChristianson/photo-grabber,num_dependents_deps.dev:0 github.com/AndreasClausen/googleapis-nodejs-cloudbuild, @@ -18089,6 +18443,7 @@ github.com/AndreasMadsen/xorshift,num_dependents_deps.dev:836 github.com/AndreasMartin72/rainflow, github.com/AndreasNel/cra-template,num_dependents_deps.dev:0 github.com/AndreasNel/geepers, +github.com/AndreasNel/string-vars-action, github.com/AndreasOhlsson/andreas-palindrome,num_dependents_deps.dev:0 github.com/AndreasPizsa/detect-mocha,num_dependents_deps.dev:26 github.com/AndreasPizsa/eslint-config,num_dependents_deps.dev:0 @@ -18140,6 +18495,7 @@ github.com/AndreasSteiner/python-pptx, github.com/AndreasSteiner/react-vis,num_dependents_deps.dev:0 github.com/AndreasWidmer/youtube-music,num_dependents_deps.dev:0 github.com/AndreeDeveldoeRay/DevelLocalStorage,num_dependents_deps.dev:0 +github.com/Andreea-Marcu/jacoco-report, github.com/Andreea25bv/ah-sentry-plugin,num_dependents_deps.dev:0 github.com/Andreffelipe/docdisk,num_dependents_deps.dev:0 github.com/Andrei-Straut/jenkins-api-ts-typings,num_dependents_deps.dev:0 @@ -18204,6 +18560,7 @@ github.com/AndrejZbin/timeout-map,num_dependents_deps.dev:0 github.com/AndrejZbin/timeout-set,num_dependents_deps.dev:0 github.com/AndrejsAbrickis/flag-icons,num_dependents_deps.dev:0 github.com/Andreolle/euteconheconessaporra,num_dependents_deps.dev:0 +github.com/Andrerm124/create-jira-release, github.com/AndresArronaM/ArronaGrid,num_dependents_deps.dev:0 github.com/AndresArronaM/ux.andresarronamontoya,num_dependents_deps.dev:0 github.com/AndresBena19/py-imports, @@ -18231,8 +18588,10 @@ github.com/AndresXI/sweaty-goals, github.com/Andresferreira3191/v-session,num_dependents_deps.dev:0 github.com/AndressaTonietto/parser,num_dependents_deps.dev:0 github.com/Andrew-AbiMansour/PyGran,Google +github.com/Andrew-Chen-Wang/district-autoupdate, github.com/Andrew-Chen-Wang/django-async-redis, github.com/Andrew-Chen-Wang/django-recaptcha429, +github.com/Andrew-Chen-Wang/github-wiki-action, github.com/Andrew-Colman/nanov,num_dependents_deps.dev:0 github.com/Andrew-Crosio/pathresolver, github.com/Andrew-Dickinson/nyct-gtfs, @@ -18286,6 +18645,7 @@ github.com/AndrewChap/symdim, github.com/AndrewCherabaev/yaep-consolidator,num_dependents_deps.dev:0 github.com/AndrewDFormbay/react-datepicker,num_dependents_deps.dev:0 github.com/AndrewDaGuy/random-array-entry,num_dependents_deps.dev:0 +github.com/AndrewDavid/action-php-codesniffer, github.com/AndrewDryga/grunt-bower-installer,num_dependents_deps.dev:0 github.com/AndrewEgorov/jasmine-node-wd,num_dependents_deps.dev:0 github.com/AndrewFahmy/Simpleddl,num_dependents_deps.dev:0 @@ -18376,6 +18736,7 @@ github.com/AndrewMHenry/zproj, github.com/AndrewMonty/md-editable,num_dependents_deps.dev:0 github.com/AndrewMoscoe/homebridge-http-garage,num_dependents_deps.dev:0 github.com/AndrewMusgrave/almost-functional,num_dependents_deps.dev:0 +github.com/AndrewMusgrave/automatic-pull-request-review, github.com/AndrewMusgrave/eventing,num_dependents_deps.dev:0 github.com/AndrewMusgrave/fs-mkdir-p,num_dependents_deps.dev:0 github.com/AndrewMusgrave/gen-doc-cli,num_dependents_deps.dev:0 @@ -18470,6 +18831,12 @@ github.com/Andrewnetwork/MagmaCanvas,num_dependents_deps.dev:0 github.com/Andrewpk/CordovaCallNumberPlugin,num_dependents_deps.dev:0 github.com/Andrewpk/ionic-native-call-number-modified,num_dependents_deps.dev:0 github.com/Andrewpqc/authentication_code_generator, +github.com/Andrews-McMeel-Universal/cache-azure-login, +github.com/Andrews-McMeel-Universal/cache-next-build, +github.com/Andrews-McMeel-Universal/cache-next-install, +github.com/Andrews-McMeel-Universal/cache-yarn-install, +github.com/Andrews-McMeel-Universal/deploy-trustframework-policy, +github.com/Andrews-McMeel-Universal/get-envs, github.com/Andrewuetyang/rname-cli,num_dependents_deps.dev:0 github.com/Andrey-Kovinjonok/react-bootstrap-native-table, github.com/Andrey-Zhiryakov/hain-plugin-translate,num_dependents_deps.dev:0 @@ -18478,6 +18845,7 @@ github.com/Andrey153/test-npm-package-012014,num_dependents_deps.dev:0 github.com/Andrey1994/fps_inspector_sdk, github.com/Andrey1994/game_overlay_sdk, github.com/Andrey1994/screen_recorder_sdk, +github.com/Andrey1994/sync-upstream-repo, github.com/Andrey45/eslint-config-delaweb,num_dependents_deps.dev:0 github.com/AndreyAkinshin/Russian-Phd-LaTeX-Dissertation-Template,criticality_score:0.466210 github.com/AndreyAntipov/iterm2-viewer,num_dependents_deps.dev:0 @@ -18585,6 +18953,7 @@ github.com/AndroidSupport/RxHelper,num_dependents_deps.dev:0 github.com/AndroidSupport/RxLifecycle,num_dependents_deps.dev:0 github.com/AndroidSupport/Widget,num_dependents_deps.dev:0 github.com/AndroidTamer/frida-push, +github.com/Androlax2/gitmoji-changelog-action, github.com/Andromant/vk-api,num_dependents_deps.dev:0 github.com/Andromedans/andromeda,criticality_score:0.342040 github.com/Andropogon/DetVisLib, @@ -18806,6 +19175,7 @@ github.com/AngelRionCervi/VengarlJs, github.com/AngelRodRo/Seedman, github.com/AngelRodRo/bale.js,num_dependents_deps.dev:0 github.com/AngelRodRo/env-config-param,num_dependents_deps.dev:0 +github.com/AngelVDev/DisSLackNoti, github.com/AngelVasquezNep/regalos,num_dependents_deps.dev:0 github.com/AngelaDuoduo/lowercase,num_dependents_deps.dev:0 github.com/AngelaE/ts-mountebank,num_dependents_deps.dev:0 @@ -19031,6 +19401,15 @@ github.com/Anillc/pili-comment, github.com/Anillc/vue-cli-plugin-cf-pkg, github.com/Anilshrestha/maxlength,num_dependents_deps.dev:0 github.com/Anilshrestha/sample-maxlength,num_dependents_deps.dev:0 +github.com/AnimMouse/setup-appimage, +github.com/AnimMouse/setup-cloudflared, +github.com/AnimMouse/setup-gdrive, +github.com/AnimMouse/setup-rclone, +github.com/AnimMouse/setup-restic, +github.com/AnimMouse/setup-youtube-dl, +github.com/AnimMouse/setup-youtubeuploader, +github.com/AnimMouse/setup-yt-dlp, +github.com/AnimMouse/tool-cache, github.com/Anima-OS/stabl,num_dependents_deps.dev:0 github.com/AnimaFPS/FPSMath, github.com/AnimalDEV/frost-rpc, @@ -19087,6 +19466,7 @@ github.com/Anish-Shobith/List, github.com/Anish-Shobith/deeptype, github.com/Anish-Shobith/discord.js-canvas,num_dependents_deps.dev:0 github.com/Anish-Shobith/discordbotmaker,num_dependents_deps.dev:0 +github.com/Anish-Shobith/wakatime-stats-anish, github.com/AnishLushte07/request-logger,num_dependents_deps.dev:0 github.com/AnishLushte07/strophejs-plugin-http-file-upload,num_dependents_deps.dev:0 github.com/AnishLushte07/url-shortner,num_dependents_deps.dev:0 @@ -19113,6 +19493,7 @@ github.com/Anivive/vue-contentful-rich-text,num_dependents_deps.dev:0 github.com/Anivive/vue3-form-wizard,num_dependents_deps.dev:0 github.com/Aniyocc/octo-react,num_dependents_deps.dev:0 github.com/AnizGu/gu-injectable, +github.com/AnjaloHettiarachchi/rpmbuild, github.com/Anjan-Shomodder/create-react-app,num_dependents_deps.dev:0 github.com/AnjanaMadu/SeedrAPI, github.com/AnjanaRita/Converse, @@ -19181,9 +19562,11 @@ github.com/Anmo/promise-loop,num_dependents_deps.dev:0 github.com/Anmo/script-env,num_dependents_deps.dev:0 github.com/Anmo/super-map, github.com/Anmo/thenablelify,num_dependents_deps.dev:0 +github.com/Anmol-Baranwal/handle-multiple-issues, github.com/Anmol-Porwal18/kube_kombu, github.com/Anmol-Porwal18/pubsub_event_store, github.com/Anmol-Singh-Jaggi/directsync, +github.com/Anmol1696/shuttle-action, github.com/AnmolChachra/django-location-app, github.com/AnnAnnFryingPan/aafp_database_connection, github.com/AnnAnnFryingPan/data_hub_call, @@ -19230,6 +19613,7 @@ github.com/Anniepoo/node-red-pengines,num_dependents_deps.dev:0 github.com/Annihil/github-spray,num_dependents_deps.dev:0 github.com/Annihil/react-native-log-ios,num_dependents_deps.dev:0 github.com/Annihil/ugql,num_dependents_deps.dev:0 +github.com/AnnikaCodes/install-ziglint, github.com/AnnikaCodes/ps-client, github.com/Annlix/awesome-dynamic-form,num_dependents_deps.dev:0 github.com/Annmayn/html2excel, @@ -19274,6 +19658,7 @@ github.com/AnonSolutions/django-indy-community, github.com/Anondo/pikli, github.com/AnonyMouse97/npx-card,num_dependents_deps.dev:0 github.com/AnonyMouse97/sam-CLI,num_dependents_deps.dev:0 +github.com/AnonyStar-zz/git-push, github.com/Anonyfox/aws-data-science,num_dependents_deps.dev:0 github.com/Anonyfox/kioku,num_dependents_deps.dev:0 github.com/Anonyfox/node-htmlcarve,num_dependents_deps.dev:0 @@ -19313,6 +19698,7 @@ github.com/AnsGoo/pypicgo-blind-watermark-plugin, github.com/AnsGoo/pypicgo-tinypng-plugin, github.com/Ansatha/EasyCalc,num_dependents_deps.dev:0 github.com/AnselBlume/SurvivalCalc-Core,num_dependents_deps.dev:0 +github.com/AnsellMaximilian/tic-taction-toe, github.com/Anselmoo/TanabeSugano, github.com/Anselmoo/bashcalc, github.com/Anselmoo/bashplot, @@ -19320,6 +19706,7 @@ github.com/Anselmoo/copy2hash, github.com/Anselmoo/pandas2tensorboard, github.com/Anselmoo/spectrafit, github.com/AnshC/react-cool-cards,num_dependents_deps.dev:0 +github.com/AnshPrakash/google-drive-upload-action, github.com/Anshdesire/angular2-logger,num_dependents_deps.dev:0 github.com/Anshiii/mediocre-cli, github.com/Anshiii/react-native-tree-table,num_dependents_deps.dev:0 @@ -19343,16 +19730,19 @@ github.com/Ansvia/reframe,num_dependents_deps.dev:0 github.com/AnswerAIL/myjs-common,num_dependents_deps.dev:0 github.com/AnswerIQDev/react-powerbi-embed,num_dependents_deps.dev:0 github.com/Answerky/quizlet-python, +github.com/Answers-AI/daisy-github-action, github.com/Answers4AWS/distami, github.com/AnswerzDigital/CrosswalkLIB,num_dependents_deps.dev:0 github.com/AnswerzDigital/MyLIBApplication,num_dependents_deps.dev:0 github.com/Ant-Brain/EfficientWord, github.com/Ant-Tech-Agency/react-native-noke,num_dependents_deps.dev:0 +github.com/Ant0wan/openai-pr, github.com/Ant1mas/number-to-words-ru,num_dependents_deps.dev:0 github.com/Ant1ng2/Gamesolver, github.com/AntCas/dynamic-outlines,num_dependents_deps.dev:0 github.com/AntCas/quill-image-drop-module,num_dependents_deps.dev:0 github.com/AntCas/spinny-text,num_dependents_deps.dev:0 +github.com/AntGrisha/ya-object-storage-website, github.com/AntJanus/JSON-structure-validator,num_dependents_deps.dev:0 github.com/AntJanus/MOML-parser,num_dependents_deps.dev:0 github.com/AntJanus/asteridux,num_dependents_deps.dev:0 @@ -19513,6 +19903,7 @@ github.com/AntidoteDB/antidote,criticality_score:0.356050 github.com/AntidoteDB/antidote-python-client, github.com/AntidoteDB/antidote_ts_client, github.com/AntiheroSoftware/nunjucks-precompile-brunch, +github.com/Antikythera/build-rpm, github.com/Antimait/antimait, github.com/Antimatter/async-promise-wrapper,num_dependents_deps.dev:4 github.com/Antimatter/node-intel-hex,num_dependents_deps.dev:0 @@ -19585,6 +19976,7 @@ github.com/AntoinedeChassey/hex-frame-parser,num_dependents_deps.dev:0 github.com/AntoinedeChassey/loopback3-rt-stats-mixin,num_dependents_deps.dev:0 github.com/AntoinedeChassey/uber-ride-request,num_dependents_deps.dev:0 github.com/Antoino0704/Musica, +github.com/Anton-Latukha/test-haskell-nixpkgs-integration-action, github.com/Anton-Nikishkin/node-js-info-bubble,num_dependents_deps.dev:0 github.com/Anton-vBR/django-leaflet-point, github.com/Anton1o-I/thompson-sampling, @@ -19607,6 +19999,7 @@ github.com/AntonGoldobin/redgifs,num_dependents_deps.dev:0 github.com/AntonHu/gulp-cdn-origin-replace,num_dependents_deps.dev:0 github.com/AntonHu/pulltorefresh.js,num_dependents_deps.dev:0 github.com/AntonKL/react-unstyled-dropdown,num_dependents_deps.dev:0 +github.com/AntonKornus/TypeScript-Linter, github.com/AntonKorobkov/opengovpy, github.com/AntonKueltz/fastecdsa, github.com/AntonKueltz/makwa, @@ -19643,6 +20036,7 @@ github.com/AntonShanyuk/parquetjs, github.com/AntonStrand/snake,num_dependents_deps.dev:0 github.com/AntonTimiskov/grunt-json2ngjs,num_dependents_deps.dev:0 github.com/AntonTumilovich/https-flows.nodered.org-node-node-red-contrib-yandex-alice-command, +github.com/AntonVanAssche/yank-packagecloud, github.com/AntonVoronezh/project-lvl1-s328,num_dependents_deps.dev:0 github.com/AntonYudin/cassandra-hibernate-orm-dialect,num_dependents_deps.dev:0 github.com/AntonYudin/pdffilter,num_dependents_deps.dev:0 @@ -19682,6 +20076,8 @@ github.com/AntonioCuevaUrraco/nativescript-timedatepicker,num_dependents_deps.de github.com/AntonioDell/ng2-pdf-viewer,num_dependents_deps.dev:0 github.com/AntonioErdeljac/carrotDB,num_dependents_deps.dev:0 github.com/AntonioErdeljac/sensitive-words,num_dependents_deps.dev:0 +github.com/AntonioGally/ag-changelogger, +github.com/AntonioGally/ag-pr-labeler, github.com/AntonioGiulio/lod_cloud_search_engine, github.com/AntonioH10/platzom-antoniojh10,num_dependents_deps.dev:0 github.com/AntonioJBT/project_quickstart, @@ -19795,6 +20191,7 @@ github.com/Anumesh01/fib_o_na_cci_ser_ies, github.com/Anuovec/eslint-config-sandokan,num_dependents_deps.dev:0 github.com/AnupKumarPanwar/country-state-picker,num_dependents_deps.dev:0 github.com/AnupSubba/generator-wakeup,num_dependents_deps.dev:0 +github.com/AnupamAs110/take-action, github.com/AnupamGautam/metapan, github.com/AnupamJuniwal/aws-lambda-client, github.com/AnupamSingh0211/aragorn,num_dependents_deps.dev:0 @@ -20016,6 +20413,7 @@ github.com/Apache-HB/aiowolfram, github.com/ApacheDatastreams/krakenclient, github.com/ApacheInfra/incubator-datasketches-memory,Google github.com/Apak00/adesso-pagination,num_dependents_deps.dev:0 +github.com/Apakottur/action-poetry-package-update, github.com/Apakottur/shpyx, github.com/ApamAa/lotide,num_dependents_deps.dev:0 github.com/AparnaCilusani/material-svg-icons-react,num_dependents_deps.dev:0 @@ -20051,6 +20449,7 @@ github.com/ApeWorX/eip712, github.com/ApeWorX/ethpm-types, github.com/ApeWorX/evm-asm, github.com/ApeWorX/evm-trace, +github.com/ApeWorX/github-action, github.com/ApeWorX/node-utils, github.com/ApeWorX/py-tokenlists, github.com/ApeWorX/walletconnect-py, @@ -20228,6 +20627,7 @@ github.com/Apollon77/shelly-iot,num_dependents_deps.dev:0 github.com/Apollon77/smartmeter-obis,num_dependents_deps.dev:0 github.com/ApollosProphet/lodown,num_dependents_deps.dev:0 github.com/Apolofx/lampone,num_dependents_deps.dev:0 +github.com/ApoorvGuptaAi/github-pr-contains-action, github.com/ApoorvSaxena/async-resolver,num_dependents_deps.dev:0 github.com/ApoorvSaxena/directory-layout,num_dependents_deps.dev:0 github.com/ApoorvSaxena/grunt-directory-layout,num_dependents_deps.dev:0 @@ -20250,6 +20650,7 @@ github.com/Apozhidaev/redux-create-type,num_dependents_deps.dev:0 github.com/Apozhidaev/sdiff,num_dependents_deps.dev:0 github.com/Apozhidaev/trade-tools,num_dependents_deps.dev:0 github.com/Apozhidaev/use-safety,num_dependents_deps.dev:0 +github.com/App-Makers-Team/King-Of-Anti-Viruses, github.com/App-vNext/Polly,criticality_score:0.419760 github.com/App2Sales/bootstrapreactnative,num_dependents_deps.dev:0 github.com/App2Sales/react-native-emoticons,num_dependents_deps.dev:0 @@ -20331,6 +20732,7 @@ github.com/AppICEIO/cordova-plugin-appice,num_dependents_deps.dev:0 github.com/AppImage/AppImageKit,criticality_score:0.567000 github.com/AppImage/pkg2appimage,criticality_score:0.424480 github.com/AppImageCrafters/appimage-builder, +github.com/AppImageCrafters/build-appimage, github.com/AppIntro/AppIntro,criticality_score:0.516850 github.com/AppLinkIO/applinkio-cordova,num_dependents_deps.dev:0 github.com/AppLovin/AppLovin-MAX-Cordova, @@ -20373,7 +20775,11 @@ github.com/AppStateESS/react-navbar,num_dependents_deps.dev:0 github.com/AppStateESS/react-state-dropdown,num_dependents_deps.dev:0 github.com/AppStateESS/react-waiting,num_dependents_deps.dev:0 github.com/AppThreat/astgen,num_dependents_deps.dev:0 +github.com/AppThreat/blint-action, github.com/AppThreat/cdxgen,num_dependents_deps.dev:0 +github.com/AppThreat/cpggen-action, +github.com/AppThreat/dep-scan-action, +github.com/AppThreat/sast-scan-action, github.com/AppUU/react-native-vrplayer,num_dependents_deps.dev:0 github.com/AppVelox/alicemsg, github.com/AppVelox/fbmsg, @@ -20397,7 +20803,9 @@ github.com/Appboy/appboy-react-sdk,num_dependents_deps.dev:0 github.com/Appboy/appboy-web-sdk,num_dependents_deps.dev:2 github.com/Appchance/ember-cached-shoe,num_dependents_deps.dev:0 github.com/Appclon/ignite-appclon-mobx,num_dependents_deps.dev:0 +github.com/Appdome/github_build-2secure, github.com/Appdynamics/python-sysext, +github.com/Appegy/unity-version-action, github.com/Appelsinvandi/kig, github.com/AppetizeAutomation/pytest-testrail, github.com/Appeweb/responsive-grid, @@ -20418,6 +20826,9 @@ github.com/ApplauseAQI/pngdefry, github.com/ApplauseOSS/deploy-config-generator, github.com/ApplauseOSS/djangoevents, github.com/ApplauseOSS/kms-encryption-toolbox, +github.com/Apple-Actions/download-provisioning-profiles, +github.com/Apple-Actions/import-codesign-certs, +github.com/Apple-Actions/upload-testflight-build, github.com/AppleCommander/ShrinkItArchive,num_dependents_deps.dev:0 github.com/AppleCommander/applesingle,num_dependents_deps.dev:0 github.com/AppleCommander/bastokenizer,num_dependents_deps.dev:0 @@ -20427,12 +20838,14 @@ github.com/AppleHolic/SpeechInterface, github.com/AppleLAN/gentleman-state-manager, github.com/ApplePeels/react-native-notification-center,num_dependents_deps.dev:0 github.com/AppleWin/AppleWin,criticality_score:0.519930 +github.com/Applelo/actions-ps-changeinfo, github.com/AppliKey/SocialManager,num_dependents_deps.dev:0 github.com/AppliKeySolutions/CosmoCalendar,num_dependents_deps.dev:0 github.com/AppliNH/ReactNative-GMapsViewComponent,num_dependents_deps.dev:0 github.com/Appliary/Poetry,num_dependents_deps.dev:0 github.com/Appliary/pug-react-loader,num_dependents_deps.dev:0 github.com/Appliary/ranchboy, +github.com/Applib-OpenHarmony/OpenHarmony-build, github.com/Applicafroguy/ngx-apf-flibox,num_dependents_deps.dev:0 github.com/Applicafroguy/ngx-tailwindcss-schematic,num_dependents_deps.dev:0 github.com/Applicature/synth.monorepo,num_dependents_deps.dev:16 @@ -20467,6 +20880,7 @@ github.com/Appliscale/xprof,criticality_score:0.353730 github.com/ApploverSoftware/Chatlover-Android,num_dependents_deps.dev:0 github.com/Apployees/JS-Interpreter-Package, github.com/Apployees/json-schema-to-typescript, +github.com/Appmaker-xyz/github-action-slack-bot, github.com/Appnroll/appnroll-app-function-component,num_dependents_deps.dev:0 github.com/Appnroll/appnroll-delay-response-function,num_dependents_deps.dev:0 github.com/Appnroll/appnroll-eslint-config,num_dependents_deps.dev:0 @@ -20536,6 +20950,7 @@ github.com/Apteco/py-apteco, github.com/Apteo/react-grid-layout,num_dependents_deps.dev:0 github.com/ApteryxXYZ/Day-Log-Savings,num_dependents_deps.dev:0 github.com/Aptoide/yajwt, +github.com/Aptori-dev/sift-action, github.com/Apyr/define-event,num_dependents_deps.dev:0 github.com/Apyr/koa-args,num_dependents_deps.dev:0 github.com/Apyr/simple-agnostic-router,num_dependents_deps.dev:0 @@ -20544,6 +20959,7 @@ github.com/AqilCont/alpaca-es6,num_dependents_deps.dev:0 github.com/AqilCont/rfasqls,num_dependents_deps.dev:0 github.com/AqingCyan/cyans_axios,num_dependents_deps.dev:0 github.com/Aqours/Fullscreen,num_dependents_deps.dev:0 +github.com/Aqovia/npm-version-increment, github.com/AqoviaElements/properties-from-ancestor-behavior,num_dependents_deps.dev:0 github.com/Aqu1nt/angular-es7-integration,num_dependents_deps.dev:0 github.com/Aqu1nt/ng-next, @@ -20645,6 +21061,7 @@ github.com/ArangoDB-Community/arangodb-graphql-spring,num_dependents_deps.dev:0 github.com/ArangoDB-Community/arangodb-tinkerpop-provider,num_dependents_deps.dev:0 github.com/ArangoDB-Community/python-arango, github.com/ArangoDB/guesser, +github.com/ArangoGutierrez/GoLinty-Action, github.com/Arany/node-dkp,num_dependents_deps.dev:0 github.com/Araozu/kscript,num_dependents_deps.dev:0 github.com/Araozu/misti,num_dependents_deps.dev:0 @@ -20690,6 +21107,8 @@ github.com/Aravindhsiva/material-angular,num_dependents_deps.dev:0 github.com/AravinthSankar-hash/searchAllKeys,num_dependents_deps.dev:0 github.com/AravisProject/aravis,criticality_score:0.590900 github.com/Araxeus/mark2jek, +github.com/Araxeus/setup-yarn-pnp-action, +github.com/Araxeus/vendorfiles-action, github.com/ArbaazDossani/react-lens-zoom,num_dependents_deps.dev:0 github.com/ArbaazDossani/react-meta-on-demand, github.com/ArbaazDossani/react-zoomable-sunburst-d3-v4,num_dependents_deps.dev:0 @@ -20830,6 +21249,7 @@ github.com/ArcherGu/easy-property-retriever,num_dependents_deps.dev:0 github.com/ArcherGu/easy-qrcode, github.com/ArcherGu/node-red-contrib-require,num_dependents_deps.dev:0 github.com/ArcherGu/node-red-contrib-socketio-server,num_dependents_deps.dev:0 +github.com/ArcherGu/npm-upstream-check, github.com/ArcherGu/quick-event,num_dependents_deps.dev:0 github.com/ArcherGu/simple-blockchain-rpc,num_dependents_deps.dev:0 github.com/ArcherGu/vue-store-bus,num_dependents_deps.dev:0 @@ -20842,6 +21262,8 @@ github.com/ArchetypeAPI/wsgi_sdk, github.com/ArchetypicalSoftware/Conduit,num_dependents_deps.dev:0 github.com/ArchetypicalSoftware/Scaffold,num_dependents_deps.dev:0 github.com/ArchetypicalSoftware/auto-hub-connection, +github.com/Archetypically/add-write-permissions-for-codeowners, +github.com/Archetypically/format-codeowners, github.com/Archiatrus/5minBot,Google github.com/ArchieMollaev/npm-modules-report,num_dependents_deps.dev:0 github.com/ArchieT/sortgtxt, @@ -20883,6 +21305,7 @@ github.com/Arcterus/game-of-life,num_dependents_deps.dev:0 github.com/Arcterus/lejit,num_dependents_deps.dev:0 github.com/Arcterus/rget,num_dependents_deps.dev:0 github.com/ArcthosCompany/Vuetning,num_dependents_deps.dev:0 +github.com/ArcticLampyrid/action-wait-for-workflow, github.com/ArcticLight/jstween,num_dependents_deps.dev:0 github.com/ArcticSnow/dempy, github.com/ArcticSnow/photo4D, @@ -20916,6 +21339,7 @@ github.com/Ardaq/kz_g2p, github.com/ArdentLabs/boxmodel,num_dependents_deps.dev:0 github.com/Ardesco/Query,num_dependents_deps.dev:0 github.com/Ardesco/appium-maven-plugin,num_dependents_deps.dev:0 +github.com/Ardesco/nasher4gh, github.com/Ardesco/selenium-standalone-server-plugin,num_dependents_deps.dev:0 github.com/ArdescoConsulting/growattRS232, github.com/Ardeshir81/angular-input-highlight,num_dependents_deps.dev:0 @@ -20923,6 +21347,7 @@ github.com/Ardeshir81/g-npm,num_dependents_deps.dev:0 github.com/Ardethian/malihu-custom-scrollbar-plugin,num_dependents_deps.dev:0 github.com/Ardethian/webpack-starter,num_dependents_deps.dev:0 github.com/Ardhimas/react-smartbanner,num_dependents_deps.dev:0 +github.com/Ardiannn08/resolve-outdated-comment, github.com/ArditXhaferi/report-bot-package,num_dependents_deps.dev:0 github.com/Ardobras/mysql-to-rest,num_dependents_deps.dev:0 github.com/ArdorNxtCommunity/ardor-api-wrapper,num_dependents_deps.dev:0 @@ -20973,6 +21398,7 @@ github.com/Arello-Mobile/confluence-publisher, github.com/Arello-Mobile/py2swagger, github.com/Arello-Mobile/sphinx-confluence, github.com/Arello-Mobile/swagger2rst, +github.com/ArenaReturns/setup-mariadb, github.com/ArendJanKramer/envi2numpy, github.com/Arenhart/Portfolio, github.com/ArepRu/react-css-truncate,num_dependents_deps.dev:0 @@ -21033,6 +21459,8 @@ github.com/ArhDemetriy/auto-imports-loader, github.com/ArhDemetriy/auto-imports-plugin,num_dependents_deps.dev:0 github.com/ArhDemetriy/jest-mock-implementations-preserving,num_dependents_deps.dev:0 github.com/Arhangel64/lexic.js,num_dependents_deps.dev:0 +github.com/Arhia/action-check-compressed-size, +github.com/Arhia/action-check-typescript, github.com/Arhir/node-JS,num_dependents_deps.dev:0 github.com/AriChivukula/decelerate,num_dependents_deps.dev:0 github.com/AriChivukula/docassemble.law, @@ -21044,6 +21472,8 @@ github.com/AriChivukula/transcript,num_dependents_deps.dev:0 github.com/AriChivukula/typescriptase, github.com/AriPerkkio/aria-live-capture,num_dependents_deps.dev:0 github.com/AriPerkkio/eslint-remote-tester,num_dependents_deps.dev:0 +github.com/AriPerkkio/eslint-remote-tester-compare-action, +github.com/AriPerkkio/eslint-remote-tester-run-action, github.com/AriPerkkio/extend-to-be-announced, github.com/Aria-Innovations/eargo-components,num_dependents_deps.dev:0 github.com/AriaBagheri/LatexShortcuts, @@ -21160,6 +21590,7 @@ github.com/ArisAgeha/album-bankakyou,num_dependents_deps.dev:0 github.com/ArisAgeha/axios-adapter-ui, github.com/ArisAgeha/gesture-customizer,num_dependents_deps.dev:0 github.com/ArisAgeha/simple-measure,num_dependents_deps.dev:0 +github.com/Arisamiga/Linkedin-RSS, github.com/ArisenIO/arisen-ual-dwebid,num_dependents_deps.dev:0 github.com/Arish-Shah/amp-js,num_dependents_deps.dev:0 github.com/Ariskywi/magic-joy,num_dependents_deps.dev:0 @@ -21178,6 +21609,7 @@ github.com/AristotleJunior/flask-loginmanager, github.com/AristotleJunior/fregger, github.com/ArithmeticOp/passport-oneid,num_dependents_deps.dev:0 github.com/AritraSengupta/generic-form-react,num_dependents_deps.dev:0 +github.com/AritroSaha10/vex-build, github.com/ArityLLCNJ/Acid,num_dependents_deps.dev:0 github.com/ArityLLCNJ/nbome25,num_dependents_deps.dev:0 github.com/ArityOfficial/Lucy,num_dependents_deps.dev:0 @@ -21194,6 +21626,7 @@ github.com/ArjanFrans/nl-gas-stations,num_dependents_deps.dev:0 github.com/ArjanFrans/node-multiconfig,num_dependents_deps.dev:0 github.com/ArjanFrans/node-pmock,num_dependents_deps.dev:0 github.com/ArjanJ/abby,num_dependents_deps.dev:0 +github.com/ArjenSchwarz/fog-report-action, github.com/Arjith-Natarajan/harvey-specter-quotes,num_dependents_deps.dev:0 github.com/ArjixGamer/YifyAPI, github.com/ArjixWasTaken/PyConfigurer, @@ -21221,7 +21654,9 @@ github.com/ArkEcosystem/python-client, github.com/ArkEcosystem/python-crypto, github.com/ArkEcosystem/typescript-peers, github.com/ArkScript-lang/Ark,criticality_score:0.439030 +github.com/ArkToria/arch-pkgbuild-builder, github.com/Arka-Night/SQLiteQueryBuilder, +github.com/ArkadiK94/action-git-clean-tree, github.com/ArkadiiRaih/react-chat-widget,num_dependents_deps.dev:0 github.com/ArkadiumInc/arenax-game-api,num_dependents_deps.dev:0 github.com/ArkadiumInc/brunch-inhabit-module-js,num_dependents_deps.dev:0 @@ -21349,6 +21784,7 @@ github.com/Armin-Ariamajd/duq, github.com/Armin-Ariamajd/mdforce, github.com/Armin-Ariamajd/numintegrator, github.com/Armin2208/Windows-Auto-Night-Mode,criticality_score:0.425950 +github.com/ArminJo/arduino-test-compile, github.com/ArminKardan/node-advanced-websocket,num_dependents_deps.dev:0 github.com/ArminKardan/node-conversions,num_dependents_deps.dev:2 github.com/ArminKardan/node-jalali-gregorian-conversions, @@ -21505,6 +21941,7 @@ github.com/Arolitec/jsdk, github.com/AromaTech/banana-authentication-service,num_dependents_deps.dev:0 github.com/AromaTech/banana-thrift,num_dependents_deps.dev:0 github.com/Aromokeye/react-flutterwave-button,num_dependents_deps.dev:0 +github.com/Aron-Toso/ml-serve, github.com/AronWater/daauto, github.com/AronWater/handyjupyter, github.com/Arondight/python-dmiparser, @@ -21615,6 +22052,7 @@ github.com/ArshanKhanifar/woodder, github.com/Arshanwer/react-timer,num_dependents_deps.dev:0 github.com/Arshanwer/react-ts-countdown-timer, github.com/ArshdeepSahni/svelte-calculator,num_dependents_deps.dev:0 +github.com/ArshfaAdmin/push-to-repo, github.com/ArshiaPRG/kms, github.com/Arshiatmi/Pysha, github.com/Arshiatmi/jsha,num_dependents_deps.dev:0 @@ -21752,6 +22190,7 @@ github.com/ArtemFitiskin/jquery-autocompleter,num_dependents_deps.dev:0 github.com/ArtemFitiskin/react-modal-stack,num_dependents_deps.dev:0 github.com/ArtemFitiskin/share,num_dependents_deps.dev:0 github.com/ArtemFitiskin/title-counter,num_dependents_deps.dev:0 +github.com/ArtemGorev/check-pull-request-review-comments, github.com/ArtemGovorov/backdoor,num_dependents_deps.dev:0 github.com/ArtemGr/gstuff.rs,num_dependents_deps.dev:0 github.com/ArtemGr/pg_async.rs,num_dependents_deps.dev:0 @@ -21772,6 +22211,7 @@ github.com/ArtemNehoda/project-lvl1-s340, github.com/ArtemPodloboshnikov/NumberArrayConverter,num_dependents_deps.dev:0 github.com/ArtemRakov/frontend-project-lvl1,num_dependents_deps.dev:0 github.com/ArtemRakov/frontend-project-lvl2,num_dependents_deps.dev:0 +github.com/ArtemSBulgakov/buildozer-action, github.com/ArtemVernikovski/create-react-app,num_dependents_deps.dev:0 github.com/ArtemeeSenin/ngx-detach-invisible,num_dependents_deps.dev:0 github.com/Artemelka/redux-store-injector,num_dependents_deps.dev:0 @@ -21862,6 +22302,7 @@ github.com/ArthurKa/ts-utils,num_dependents_deps.dev:0 github.com/ArthurKa/verbal-time,num_dependents_deps.dev:0 github.com/ArthurKa/word-decliner,num_dependents_deps.dev:0 github.com/ArthurKa/xlsx-column,num_dependents_deps.dev:0 +github.com/ArthurLobopro/node-tag-version, github.com/ArthurManz/npm-indy-agent,num_dependents_deps.dev:0 github.com/ArthurMialon/cliffhanger,num_dependents_deps.dev:0 github.com/ArthurMialon/molecular,num_dependents_deps.dev:0 @@ -21870,8 +22311,14 @@ github.com/ArthurPBressan/py-fixedwidthwriter, github.com/ArthurPavezzi/aeroportos-promise,num_dependents_deps.dev:0 github.com/ArthurRichard/node-xml-config,num_dependents_deps.dev:0 github.com/ArthurSaenz/artz, +github.com/ArthurSens/mimirtool-rules-load-action, +github.com/ArthurSens/pyrra-generate-action, github.com/ArthurSonzogni/FTXUI,criticality_score:0.368200 github.com/ArthurSuz/keyframesScopedFix, +github.com/ArthurYdalgo/FTP-Deploy-Action, +github.com/ArthurYdalgo/do-spaces-action, +github.com/ArthurYdalgo/github-action-scp, +github.com/ArthurYdalgo/http-request-action, github.com/ArthurYung/node-inspect-proxy,num_dependents_deps.dev:0 github.com/ArthurYung/qiniu-loader,num_dependents_deps.dev:0 github.com/ArthurianX/ngxpixi,num_dependents_deps.dev:0 @@ -21899,6 +22346,7 @@ github.com/ArtificerEntertainment/random-document,num_dependents_deps.dev:0 github.com/ArtificerEntertainment/serverless-plugin-log-retention,num_dependents_deps.dev:0 github.com/ArtificerEntertainment/toasty-lambda,num_dependents_deps.dev:0 github.com/Artificial-Engineering/lycheeJS-library,num_dependents_deps.dev:0 +github.com/ArtificialAmateur/cpp-linter-action, github.com/ArtificialIntelligenceToolkit/aitk, github.com/ArtificialIntelligenceToolkit/aitk.algorithms, github.com/ArtificialIntelligenceToolkit/aitk.keras, @@ -21919,6 +22367,7 @@ github.com/ArtiomShapovalov/react-native-user-score,num_dependents_deps.dev:0 github.com/ArtiomSu/ngx-phone-number-mat-search,num_dependents_deps.dev:0 github.com/ArtiomTr/aqu,num_dependents_deps.dev:0 github.com/ArtiomTr/composite-call-with-dates,num_dependents_deps.dev:0 +github.com/ArtiomTr/jest-coverage-report-action, github.com/ArtiomTr/morfix, github.com/ArtiomTr/pxth,num_dependents_deps.dev:0 github.com/ArtiomTr/reactive-forms,num_dependents_deps.dev:0 @@ -22051,6 +22500,8 @@ github.com/ArturMiguel/doc-helper,num_dependents_deps.dev:0 github.com/ArturShoba/react-avatar-cropper,num_dependents_deps.dev:0 github.com/ArturSpirin/pyPS4Controller, github.com/ArturT/knapsack,criticality_score:0.480570 +github.com/ArturWincenciak/ReSharper_CleanupCode, +github.com/ArturWincenciak/hello-world-docker-action, github.com/ArturoBurela/ncc-ecommerce,num_dependents_deps.dev:0 github.com/ArturoRis/Semantic-UI, github.com/ArturoRis/Semantic-UI-Calendar,num_dependents_deps.dev:0 @@ -22131,6 +22582,7 @@ github.com/ArvinXie/antd-components,num_dependents_deps.dev:0 github.com/ArvinZJC/PY-SIC, github.com/Arvind17/funny, github.com/ArvindNarayanCognitive/bitandbang,num_dependents_deps.dev:0 +github.com/ArvindSinghRawat/Git-Automatic-Semver-Tagging, github.com/Arvinnnma/xhsd-polyv-yamp,num_dependents_deps.dev:0 github.com/Arvisix/eslint-config-itrex,num_dependents_deps.dev:4 github.com/ArvoGuo/ajax-easy,num_dependents_deps.dev:0 @@ -22155,6 +22607,8 @@ github.com/ArwebTeam/arweb-deploy,num_dependents_deps.dev:0 github.com/Arweil/Jaraxxus, github.com/Arweil/MalGanis,num_dependents_deps.dev:0 github.com/Arwel96/peerjs-server, +github.com/ArwynFr/actions-conventional-versioning, +github.com/ArwynFr/actions-docker-context, github.com/Arxcis/jet-template-loader,num_dependents_deps.dev:0 github.com/Arxcis/jet-template-unpacker,num_dependents_deps.dev:0 github.com/Arxisos/react-rich-table,num_dependents_deps.dev:0 @@ -22218,6 +22672,7 @@ github.com/AsaAyers/js-hyperclick-core,num_dependents_deps.dev:0 github.com/AsaadMe/MovieColor, github.com/Asaf-S/firebase-express-dashboard, github.com/AsafKaravani/firebase-algolia-sync, +github.com/AsahiMoon/notion-backup, github.com/AsaiHu/vue-router-back-intercept,num_dependents_deps.dev:0 github.com/AsajuHuishi/FTP_file_transfer_management, github.com/AsakuraMizu/aiomirai, @@ -22225,6 +22680,8 @@ github.com/AsakuraMizu/rollup-plugin-ensure-module, github.com/AsakuraMizu/rollup-plugin-no-export-named-default-from, github.com/AsamK/signal-cli,criticality_score:0.525690 github.com/Asana/bazel-tsc,num_dependents_deps.dev:0 +github.com/Asana/comment-on-task-github-action, +github.com/Asana/create-app-attachment-github-action, github.com/Asana/java-asana,num_dependents_deps.dev:0 github.com/Asana/kraken-node-client,num_dependents_deps.dev:0 github.com/Asana/node-asana,num_dependents_deps.dev:0 @@ -22239,6 +22696,8 @@ github.com/Asapros/pymondis, github.com/Asarlis/lotide,num_dependents_deps.dev:0 github.com/Asarua/rkst,num_dependents_deps.dev:0 github.com/Asarua/url2json-types,num_dependents_deps.dev:0 +github.com/AsasInnab/pr-body-action, +github.com/AsasInnab/regex-action, github.com/AsathalMannan/gatsby-plugin-tawk, github.com/AsathalMannan/gatsby-plugin-tawk-updated,num_dependents_deps.dev:0 github.com/AsavariA/npm-package-nav,num_dependents_deps.dev:0 @@ -22303,6 +22762,7 @@ github.com/Ash-sc/vue-simple-assistive-ball,num_dependents_deps.dev:0 github.com/Ash-sc/vue-simple-notification,num_dependents_deps.dev:0 github.com/Ash-sc/vue-simple-popup,num_dependents_deps.dev:0 github.com/Ash-sc/vue-simple-upload,num_dependents_deps.dev:0 +github.com/Ash258/Scoop-GithubActions, github.com/AshCodeWork/awa-markdown-loader,num_dependents_deps.dev:0 github.com/AshCoolman/affix,num_dependents_deps.dev:0 github.com/AshCoolman/assign-where,num_dependents_deps.dev:0 @@ -22459,6 +22919,9 @@ github.com/AsiaUnionCS107/cs107-FinalProject, github.com/AsiaZhang123/process_log, github.com/AsiaZmudziak/node-js-id-generator,num_dependents_deps.dev:0 github.com/AsianIntel/blox.js,num_dependents_deps.dev:0 +github.com/AsierSalguero/KVLoader, +github.com/AsifArmanRahman/to-pypi-using-flit, +github.com/Asilbek99/action-cleanup, github.com/Asim1996/file-content-update,num_dependents_deps.dev:0 github.com/AsimNet/rete, github.com/AsimRzayev/NumberTOWordInAzeRuEn,num_dependents_deps.dev:0 @@ -22722,6 +23185,7 @@ github.com/Astrocoders/restyled, github.com/Astrocoders/rn-meteor-containerize,num_dependents_deps.dev:0 github.com/Astrocoders/rn-redux-form-field,num_dependents_deps.dev:0 github.com/Astrocoders/styled-native-polished,num_dependents_deps.dev:0 +github.com/Astrocoders/verify-swarm-update-action, github.com/Astrocoders/waterfall,num_dependents_deps.dev:0 github.com/Astrogamer54/zstatspython, github.com/AstrolabeProject/astrolabe_py, @@ -22892,6 +23356,7 @@ github.com/AtherEnergy/business-stack-generator, github.com/AtherEnergy/react-native-facebook-login,num_dependents_deps.dev:0 github.com/AtherEnergy/rumqtt,num_dependents_deps.dev:1 github.com/Athesdrake/aiotfm, +github.com/AthleticNet/comment-test-coverage, github.com/AthleticNet/web-styles,num_dependents_deps.dev:0 github.com/Athlon1600/youtube-downloader,criticality_score:0.332250 github.com/Athly23/npm-resume,num_dependents_deps.dev:0 @@ -22918,6 +23383,7 @@ github.com/Atinux/pjs,num_dependents_deps.dev:0 github.com/Atinux/pjs-template,num_dependents_deps.dev:0 github.com/Atinux/schema-inspector,num_dependents_deps.dev:256 github.com/Atishay96/space-cleaner,num_dependents_deps.dev:0 +github.com/AtivSolana/anchor-build-action, github.com/Atlantic18/DoctrineExtensions,criticality_score:0.541710 github.com/Atlantis-Lab/actl, github.com/Atlantis-Lab/config, @@ -23016,6 +23482,7 @@ github.com/AtomGraph/CSV2RDF,num_dependents_deps.dev:0 github.com/AtomGraph/Core,num_dependents_deps.dev:6 github.com/AtomGraph/LinkedDataHub,num_dependents_deps.dev:0 github.com/AtomGraph/Processor,num_dependents_deps.dev:0 +github.com/AtomGraph/RDF-syntax-check, github.com/AtomGraph/Twirl,num_dependents_deps.dev:4 github.com/AtomGraph/Web-Client,num_dependents_deps.dev:0 github.com/AtomGraph/sparql-builder,num_dependents_deps.dev:0 @@ -23075,6 +23542,7 @@ github.com/AtriusX/react-support-badge,num_dependents_deps.dev:0 github.com/Atronar/DerPyBooruPhi, github.com/Atronar/FileOptimizerPy, github.com/Atronar/Twibooru-Py, +github.com/Atrox/codecov-action, github.com/Atrox/haikunatorjs,num_dependents_deps.dev:14 github.com/Atrox/haikunatorpy, github.com/Atrox/sweetify,num_dependents_deps.dev:0 @@ -23109,6 +23577,7 @@ github.com/AtsukiTak/derive_asref,num_dependents_deps.dev:0 github.com/AtsukiTak/ex-futures,num_dependents_deps.dev:0 github.com/AtsukiTak/pure-graphql, github.com/AtsukiTak/warp-json-rpc,num_dependents_deps.dev:1 +github.com/Atsumi3/actions-setup-fvm, github.com/Atsushi-Eda/simple-kintone-customize-uploader, github.com/AtsushiSakai/PyCoolPlot, github.com/AtsushiSakai/PyJSONViewer, @@ -23211,6 +23680,7 @@ github.com/Atyantik/stush,num_dependents_deps.dev:0 github.com/Atyantik/wookjs,num_dependents_deps.dev:0 github.com/Atyn/ObjectSchemaValidator,num_dependents_deps.dev:0 github.com/Atyn/filescan,num_dependents_deps.dev:0 +github.com/Atyn/simple-sftp-action, github.com/Atyn/stack-terminal,num_dependents_deps.dev:0 github.com/Atyors/ImageRobot, github.com/Atypon-OpenSource/app-themes,num_dependents_deps.dev:0 @@ -23388,6 +23858,7 @@ github.com/AugustinDumont/npx-card,num_dependents_deps.dev:0 github.com/AugustinGrigorov/react-exclude-browser,num_dependents_deps.dev:0 github.com/AugustinJose1221/silver, github.com/AugustinLF/redux-select-entities,num_dependents_deps.dev:0 +github.com/Augustjon/Feedbackcheck-action, github.com/AugustoAleGon/react-native-android-icon-badge,num_dependents_deps.dev:0 github.com/AugustoL/btc-payments,num_dependents_deps.dev:0 github.com/AugustoL/just-a-logger,num_dependents_deps.dev:0 @@ -23460,6 +23931,7 @@ github.com/AurelienGasser/http-folder,num_dependents_deps.dev:0 github.com/AurelienLourot/github-commit-watcher, github.com/AurelienLourot/github-contribs,num_dependents_deps.dev:0 github.com/AurelienLourot/lsankidb, +github.com/AurelienLoyer/action-hosting-deploy, github.com/AurelienMeray/pylenm, github.com/AurelienPecqueur/ges-client, github.com/AurelienRibon/node-checkmydeps,num_dependents_deps.dev:0 @@ -23584,6 +24056,7 @@ github.com/AustinLeeGordon/filter-zip-codes,num_dependents_deps.dev:0 github.com/AustinLeeGordon/iso-4217,num_dependents_deps.dev:0 github.com/AustinMatherne/fail-on-errors-webpack-plugin,num_dependents_deps.dev:0 github.com/AustinMatherne/pcf-services-parser,num_dependents_deps.dev:0 +github.com/AustinMcGuinn/react-native-build-ios, github.com/AustinRochford/PyCEbox, github.com/AustinRochford/emoji-ipython-magic, github.com/AustinRochford/giphy-ipython-magic, @@ -23596,6 +24069,11 @@ github.com/AustinTruex68/pupitup,num_dependents_deps.dev:0 github.com/AustinVieth/text-type-effect,num_dependents_deps.dev:0 github.com/AustinZuniga/react-native-obfuscator,num_dependents_deps.dev:0 github.com/Austinb/GameQ,criticality_score:0.437920 +github.com/Austinhs/static-google-site-deploy, +github.com/Austinps/action-license-compliance, +github.com/Austinps/action-python-license-check, +github.com/Austinps/action-test-echo, +github.com/Austinps/austinps-action-arg-counter, github.com/Austio/vue-apollo-hooks,num_dependents_deps.dev:0 github.com/Australian-Text-Analytics-Platform/atap_widgets, github.com/AustralianSynchrotron/Lightflow, @@ -23677,6 +24155,7 @@ github.com/AuthorizeNet/sdk-python, github.com/Authory/async-read-line,num_dependents_deps.dev:0 github.com/Authory/synchronized,num_dependents_deps.dev:0 github.com/Authpartyio/Connect,num_dependents_deps.dev:0 +github.com/Authress-Engineering/github-action-rebuild-pull-requests, github.com/Authress/authress-login.js,num_dependents_deps.dev:0 github.com/Authress/authress-sdk.js,num_dependents_deps.dev:0 github.com/Authress/authress-sdk.py, @@ -23702,6 +24181,10 @@ github.com/AutoGeneral/ParameterValidationFilter,num_dependents_deps.dev:0 github.com/AutoHotkey/Ahk2Exe,criticality_score:0.374440 github.com/AutoIDM/tap-clickup, github.com/AutoMapper/AutoMapper,criticality_score:0.604280 +github.com/AutoModality/action-clean, +github.com/AutoModality/action-ros-clang-format, +github.com/AutoModality/action-rosdoc, +github.com/AutoModality/action-xunit-viewer, github.com/AutoRally/autorally,criticality_score:0.313630 github.com/AutoScaler/autoscaler,"num_dependents_deps.dev:4,num_dependents_deps.dev:9" github.com/AutoScheduleJS/queries-fn,num_dependents_deps.dev:0 @@ -23763,6 +24246,7 @@ github.com/Autograder/Mobile-ESP,num_dependents_deps.dev:0 github.com/Autogram/pyrothon, github.com/AutolabJS/autolabcli,num_dependents_deps.dev:0 github.com/AutolineV2/font-autoline,num_dependents_deps.dev:0 +github.com/Autom3/docker-deployment-action, github.com/Autom3/duolingo.js,num_dependents_deps.dev:0 github.com/Autom3/uch-image-detection,num_dependents_deps.dev:0 github.com/Automata-Theatre/tts-narrator,num_dependents_deps.dev:0 @@ -23792,6 +24276,10 @@ github.com/Automattic/Edit-Flow,criticality_score:0.421820 github.com/Automattic/Iris,criticality_score:0.313750 github.com/Automattic/WP-Job-Manager,criticality_score:0.485960 github.com/Automattic/_s,criticality_score:0.534450 +github.com/Automattic/action-pr-is-up-to-date, +github.com/Automattic/action-push-to-mirrors, +github.com/Automattic/action-repo-gardening, +github.com/Automattic/action-required-review, github.com/Automattic/android-wordpress-com-rest,num_dependents_deps.dev:0 github.com/Automattic/batcache,criticality_score:0.334000 github.com/Automattic/browser-repl,num_dependents_deps.dev:0 @@ -23886,11 +24374,14 @@ github.com/Autophagy/datarum, github.com/Autoware-AI/autoware.ai,criticality_score:0.394780 github.com/Autowave/Autowave, github.com/AutuanLiu/Kalman-Filter, +github.com/Autumn-Martin/gopher-a-tweet, github.com/Autumn-one/vue-communication,num_dependents_deps.dev:0 github.com/Autumn-one/vue-verify,num_dependents_deps.dev:0 github.com/AutumnChen/npm_test,num_dependents_deps.dev:0 github.com/AutumnFish/Apacha,num_dependents_deps.dev:0 github.com/AutumnFish/strapi-provider-upload-tencent-cos,num_dependents_deps.dev:0 +github.com/AutumnWhj/sync-branches-action, +github.com/AutumnWhj/tag-parse-action, github.com/AuvikAlive/react-animated-burgers,num_dependents_deps.dev:0 github.com/AuxStudio/eslint-config-aux,num_dependents_deps.dev:0 github.com/AuxStudio/js-simple-utils,num_dependents_deps.dev:0 @@ -23910,6 +24401,7 @@ github.com/Auzzy/1846-routes, github.com/Auzzy/18xx-routes, github.com/AvKat/frontize,num_dependents_deps.dev:0 github.com/AvTrace/wepay-nodejs-sdk,num_dependents_deps.dev:0 +github.com/AvaPL/scalafmt-native-formatter, github.com/Availity/availity-angular,num_dependents_deps.dev:0 github.com/Availity/availity-cli,num_dependents_deps.dev:0 github.com/Availity/availity-ekko,num_dependents_deps.dev:0 @@ -23964,6 +24456,7 @@ github.com/Avaq/momi,num_dependents_deps.dev:0 github.com/Avaq/permissionary,num_dependents_deps.dev:0 github.com/Avaq/serialize-http-error,num_dependents_deps.dev:0 github.com/Avaray/vernode,num_dependents_deps.dev:0 +github.com/Avarok-Cybersecurity/gh-actions-deps, github.com/AvasDream/rust-network-scanner,num_dependents_deps.dev:0 github.com/Avashist1998/Algorithms, github.com/Avashist1998/tictactoe-abhay, @@ -23975,9 +24468,12 @@ github.com/Avdhesh51000/SocialShareFeature,num_dependents_deps.dev:0 github.com/Avdhesh51000/TimeFeature,num_dependents_deps.dev:0 github.com/AveDemid/react-code-field,num_dependents_deps.dev:0 github.com/AvePoint/cloud-governance-client,num_dependents_deps.dev:0 +github.com/Avead556/php-test-runner-action, github.com/Avec-em/lotide,num_dependents_deps.dev:0 github.com/Aveek-Saha/VIRALIQ, +github.com/Aveek-Saha/blog-box, github.com/Aveek-Saha/js-data-structs,num_dependents_deps.dev:0 +github.com/Aveek-Saha/spotify-box, github.com/AveiShriety/fwing_wx_sdk_a_s, github.com/AveiShriety/fwings_wx_sdk_a_s,num_dependents_deps.dev:0 github.com/Avekvist/gl-abstractions,num_dependents_deps.dev:0 @@ -24013,6 +24509,8 @@ github.com/Averism/cjs-commons,num_dependents_deps.dev:0 github.com/AveroLLC/types-first-ui,num_dependents_deps.dev:0 github.com/Avery-Nguyen/lotide,num_dependents_deps.dev:0 github.com/Avery246813579/Python-Rainbow-Chain, +github.com/AveryCameronUofR/add-reviewer-gh-action, +github.com/AveryCameronUofR/test-coverage-check-gh-action, github.com/AveryOverton/placeholder-text,num_dependents_deps.dev:0 github.com/AveryOverton/renew-css,num_dependents_deps.dev:0 github.com/AvexCodes/consolecolour,num_dependents_deps.dev:0 @@ -24122,6 +24620,7 @@ github.com/AvraamMavridis/angular2-clickoutside-directive,num_dependents_deps.de github.com/AvraamMavridis/angular2-imagelazyload-directive,num_dependents_deps.dev:0 github.com/AvraamMavridis/aws-s3-deploy,num_dependents_deps.dev:0 github.com/AvraamMavridis/eslint-config-avraam,num_dependents_deps.dev:0 +github.com/AvraamMavridis/files-changed-action, github.com/AvraamMavridis/gulp-louis,num_dependents_deps.dev:0 github.com/AvraamMavridis/ikona,num_dependents_deps.dev:0 github.com/AvraamMavridis/inline-css-webpack-loader,num_dependents_deps.dev:0 @@ -24155,6 +24654,7 @@ github.com/Away0x/aw-react-router,num_dependents_deps.dev:0 github.com/Away0x/aw-react-store,num_dependents_deps.dev:0 github.com/Away0x/react-router-helper,num_dependents_deps.dev:0 github.com/Away0x/react-rx-store,num_dependents_deps.dev:0 +github.com/Awayume/github-pr-tasklist-checker, github.com/Awdesh/Caesar-s-Cipher,num_dependents_deps.dev:0 github.com/Awdesh/number-formatter,num_dependents_deps.dev:0 github.com/Awea/d3_status,num_dependents_deps.dev:0 @@ -24355,6 +24855,11 @@ github.com/Axonify/queuebacca,num_dependents_deps.dev:0 github.com/Axonis/DP, github.com/Axonius/axonbot_slack, github.com/Axonius/axonius_api_client, +github.com/Axosoft/glo-action-assign-card, +github.com/Axosoft/glo-action-comment-card, +github.com/Axosoft/glo-action-label-card, +github.com/Axosoft/glo-action-move-card, +github.com/Axosoft/glo-action-parse-links, github.com/Axosoft/glo-sdk, github.com/Axosoft/nodegit-flow, github.com/Axosoft/nodegit-lfs,num_dependents_deps.dev:2 @@ -24369,6 +24874,7 @@ github.com/Axway-API-Builder-Ext/JIRA-Cloud-Platform-Connector,num_dependents_de github.com/Axway-API-Builder-Ext/SAP-LaMa-Connector,num_dependents_deps.dev:0 github.com/Axway-API-Builder-Ext/api-builder-extras,num_dependents_deps.dev:0 github.com/Axway-API-Builder-Ext/xml-node,num_dependents_deps.dev:0 +github.com/Axway-API-Management-Plus/apim-cli-github-action, github.com/Axway-API-Management-Plus/apimanager-swagger-promote,num_dependents_deps.dev:0 github.com/Axway/ats-distrib,num_dependents_deps.dev:0 github.com/Axway/ats-framework,num_dependents_deps.dev:598 @@ -24500,6 +25006,9 @@ github.com/AyogoHealth/cordova-plugin-update-notifier,num_dependents_deps.dev:0 github.com/AyogoHealth/cordova-plugin-wkkeyboardfix,num_dependents_deps.dev:0 github.com/AyogoHealth/jest-ts-webcompat-resolver,num_dependents_deps.dev:0 github.com/Ayorinde-Codes/patricia-auth-client, +github.com/Ayouuuu/ssh-socks-action, +github.com/Ayowel/butler-to-itch, +github.com/Ayowel/renpy-setup-action, github.com/AyoyAB/Ayoy-Maven-License-Verifier-Plugin,num_dependents_deps.dev:0 github.com/AyozeM/date-picker-vue,num_dependents_deps.dev:0 github.com/AyrA/is-working,num_dependents_deps.dev:0 @@ -24511,6 +25020,7 @@ github.com/AyrtonB/WPD-DS-Challenge, github.com/Ayrx/atriage, github.com/Ayrx/frida_jnienv_nativefunction, github.com/Ayrx/python-aead, +github.com/Ayrx/sarif_to_github_annotations, github.com/Ayrx/tlsenum, github.com/Ayse-Akdede/node.js-CLI,num_dependents_deps.dev:0 github.com/Ayse-Akdede/npx-card,num_dependents_deps.dev:0 @@ -24545,6 +25055,7 @@ github.com/AyyKamp/napi-clip,num_dependents_deps.dev:0 github.com/AyyLam/cdk-foo-bar, github.com/AyymericArn/vax1.js,num_dependents_deps.dev:0 github.com/Ayzrian/try-catch-overloaded,num_dependents_deps.dev:0 +github.com/AzBuilder/terrakube-action-github, github.com/AzMoo/django-auth-spnego, github.com/AzMoo/django-okta-auth, github.com/AzMoo/extractini, @@ -24555,6 +25066,7 @@ github.com/AzSiAz/NU-Data,num_dependents_deps.dev:0 github.com/Azachii/gql-generator,num_dependents_deps.dev:0 github.com/Azadehkhojandi/helloworld, github.com/AzaelDragon/discord-embed-builder,num_dependents_deps.dev:0 +github.com/Azanul/BlogIt, github.com/Azard/egg-oauth2-server,num_dependents_deps.dev:0 github.com/AzariasB/escaya,num_dependents_deps.dev:0 github.com/AzariasB/flask-scotch, @@ -24695,6 +25207,7 @@ github.com/Azure-Samples/powerbi-angular-client,num_dependents_deps.dev:0 github.com/Azure-Samples/react-aad-msal,num_dependents_deps.dev:0 github.com/Azure/AIPlatform, github.com/Azure/AKS,criticality_score:0.611360 +github.com/Azure/AppConfiguration-Sync, github.com/Azure/AutoRest,"num_dependents_deps.dev:6,criticality_score:0.651070,num_dependents_deps.dev:68,num_dependents_deps.dev:0" github.com/Azure/Azure-Backlog-Generator, github.com/Azure/Azure-Data-Service-Notebook, @@ -24712,16 +25225,26 @@ github.com/Azure/MachineLearningNotebooks,criticality_score:0.511470 github.com/Azure/RDS-Templates,criticality_score:0.512890 github.com/Azure/SONiC,criticality_score:0.564950 github.com/Azure/Stormspotter,criticality_score:0.348510 +github.com/Azure/Synapse-workspace-deployment, github.com/Azure/WALinuxAgent,criticality_score:0.600990 github.com/Azure/aad-pod-identity,"criticality_score:0.543700,num_dependents_deps.dev:8" +github.com/Azure/aca-review-apps, +github.com/Azure/aci-deploy, +github.com/Azure/acr-build, github.com/Azure/acs-engine,criticality_score:0.506180 github.com/Azure/actions,criticality_score:0.338550 github.com/Azure/adl,"num_dependents_deps.dev:8,num_dependents_deps.dev:0" +github.com/Azure/aks-create-action, github.com/Azure/aks-engine,"criticality_score:0.681380,num_dependents_deps.dev:0" +github.com/Azure/aks-set-context, github.com/Azure/amlbdcli, github.com/Azure/amqp-common-js,num_dependents_deps.dev:15 github.com/Azure/amqpnetlite,criticality_score:0.453220 +github.com/Azure/app-configuration-import-action, github.com/Azure/application-gateway-kubernetes-ingress,"criticality_score:0.505430,num_dependents_deps.dev:0" +github.com/Azure/appservice-build, +github.com/Azure/appservice-settings, +github.com/Azure/arm-deploy, github.com/Azure/aspnet-redis-providers,criticality_score:0.313050 github.com/Azure/autorest.az,num_dependents_deps.dev:0 github.com/Azure/autorest.azure-functions-csharp,num_dependents_deps.dev:0 @@ -24753,6 +25276,7 @@ github.com/Azure/azure-batch-cli-extensions, github.com/Azure/azure-cli,criticality_score:0.749650 github.com/Azure/azure-cli-dev-tools, github.com/Azure/azure-cli-extensions, +github.com/Azure/azure-code-signing-action, github.com/Azure/azure-cosmos-dotnet-v2,criticality_score:0.385030 github.com/Azure/azure-cosmos-dotnet-v3,criticality_score:0.542570 github.com/Azure/azure-cosmos-js,num_dependents_deps.dev:0 @@ -24810,6 +25334,7 @@ github.com/Azure/azure-python-devtools, github.com/Azure/azure-quickstart-templates,criticality_score:0.781140 github.com/Azure/azure-relay-node,num_dependents_deps.dev:0 github.com/Azure/azure-remote-monitoring-cli,num_dependents_deps.dev:0 +github.com/Azure/azure-resource-login-action, github.com/Azure/azure-resource-manager-schemas,criticality_score:0.538470 github.com/Azure/azure-rest-api-specs,criticality_score:0.854010 github.com/Azure/azure-sdk-for-go,"criticality_score:0.673820,num_dependents_deps.dev:4633" @@ -24839,22 +25364,34 @@ github.com/Azure/azure-webjobs-sdk-script,num_dependents_deps.dev:0 github.com/Azure/azure-xplat-cli,"criticality_score:0.438170,num_dependents_deps.dev:5" github.com/Azure/batch-shipyard,criticality_score:0.309890 github.com/Azure/bicep,criticality_score:0.517950 +github.com/Azure/bicep-build-action, github.com/Azure/blobxfer, github.com/Azure/bot-graph-dialog,num_dependents_deps.dev:0 +github.com/Azure/build-vm-image, github.com/Azure/caf-terraform-landingzones,criticality_score:0.406550 +github.com/Azure/cli, github.com/Azure/cloud-debug-tools,num_dependents_deps.dev:0 github.com/Azure/commercial-marketplace-client-python, github.com/Azure/communication-ui-library,num_dependents_deps.dev:0 github.com/Azure/confidential-ml-utils, github.com/Azure/connectthedots,criticality_score:0.311410 +github.com/Azure/container-apps-deploy-action, +github.com/Azure/container-scan, github.com/Azure/cosmos-sign,num_dependents_deps.dev:0 github.com/Azure/cosmos-sql-language-service,num_dependents_deps.dev:0 +github.com/Azure/data-factory-deploy-action, +github.com/Azure/data-factory-export-action, +github.com/Azure/data-factory-validate-action, +github.com/Azure/deployment-what-if-action, github.com/Azure/device-discovery-cli,num_dependents_deps.dev:0 github.com/Azure/diagnostics-eventflow,criticality_score:0.507480 +github.com/Azure/docker-login, github.com/Azure/dps-keygen,num_dependents_deps.dev:0 github.com/Azure/durabletask,criticality_score:0.498940 github.com/Azure/envconf, github.com/Azure/fetch-event-source,num_dependents_deps.dev:4854 +github.com/Azure/functions-action, +github.com/Azure/functions-container-action, github.com/Azure/generator-az-iot-gw-module,num_dependents_deps.dev:0 github.com/Azure/generator-az-terra-module,num_dependents_deps.dev:0 github.com/Azure/generator-azure-iot-edge-module,num_dependents_deps.dev:0 @@ -24892,8 +25429,18 @@ github.com/Azure/iotedge,criticality_score:0.593840 github.com/Azure/iotedgehubdev, github.com/Azure/iothub-diagnostics,num_dependents_deps.dev:0 github.com/Azure/iotz,num_dependents_deps.dev:0 +github.com/Azure/k8s-artifact-substitute, +github.com/Azure/k8s-bake, +github.com/Azure/k8s-create-secret, +github.com/Azure/k8s-deploy, +github.com/Azure/k8s-lint, +github.com/Azure/k8s-set-context, github.com/Azure/kubernetes-keyvault-flexvol,criticality_score:0.348920 +github.com/Azure/load-testing, github.com/Azure/logger-js,num_dependents_deps.dev:6 +github.com/Azure/login, +github.com/Azure/manage-azure-policy, +github.com/Azure/microsoft-365-certification-quick-evaluation, github.com/Azure/monaco-kusto,num_dependents_deps.dev:0 github.com/Azure/ms-rest-azure-env,num_dependents_deps.dev:1955 github.com/Azure/ms-rest-azure-js,num_dependents_deps.dev:196 @@ -24902,6 +25449,7 @@ github.com/Azure/ms-rest-js,num_dependents_deps.dev:2880 github.com/Azure/ms-rest-nodeauth,num_dependents_deps.dev:1788 github.com/Azure/msrest-for-python, github.com/Azure/msrestazure-for-python, +github.com/Azure/mysql, github.com/Azure/new-spark-cdm,num_dependents_deps.dev:0 github.com/Azure/ng-deploy-azure,num_dependents_deps.dev:0 github.com/Azure/node-red-contrib-azure,num_dependents_deps.dev:0 @@ -24917,22 +25465,37 @@ github.com/Azure/perks.async-io, github.com/Azure/perks.eventing, github.com/Azure/perks.node,num_dependents_deps.dev:46 github.com/Azure/perks.tasks,num_dependents_deps.dev:10 +github.com/Azure/pipelines, github.com/Azure/platform-chaos-cli,num_dependents_deps.dev:0 +github.com/Azure/policy-compliance-scan, +github.com/Azure/postgresql, +github.com/Azure/powershell, +github.com/Azure/publish-security-assessments, github.com/Azure/pykusto, github.com/Azure/qpid-proton-j-extensions,num_dependents_deps.dev:181 github.com/Azure/queryjs,num_dependents_deps.dev:1 github.com/Azure/react-appinsights,num_dependents_deps.dev:0 github.com/Azure/reactive-event-hubs-java,num_dependents_deps.dev:0 github.com/Azure/rest-api-specs-scripts,num_dependents_deps.dev:0 +github.com/Azure/run-sqlpackage-action, github.com/Azure/service-fabric-cli, github.com/Azure/service-fabric-explorer,num_dependents_deps.dev:0 +github.com/Azure/setup-azd, +github.com/Azure/setup-helm, +github.com/Azure/setup-kubectl, github.com/Azure/smartAI-plugin, github.com/Azure/sonic-buildimage,"criticality_score:0.670660,num_dependents_deps.dev:0" +github.com/Azure/spring-apps-deploy, +github.com/Azure/spring-cloud-deploy, +github.com/Azure/sql-action, +github.com/Azure/static-web-apps-deploy, github.com/Azure/sway, github.com/Azure/toketi-iothubreact,num_dependents_deps.dev:0 +github.com/Azure/use-kubelogin, github.com/Azure/vagrant-azure,criticality_score:0.405330 github.com/Azure/vscode-kubernetes-tools,criticality_score:0.418320 github.com/Azure/vscode-kubernetes-tools-api,num_dependents_deps.dev:0 +github.com/Azure/webapps-deploy, github.com/AzureAD/azure-activedirectory-cordova-plugin-graph,num_dependents_deps.dev:0 github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet,criticality_score:0.511960 github.com/AzureAD/azure-activedirectory-library-for-cordova,num_dependents_deps.dev:0 @@ -25238,6 +25801,7 @@ github.com/BDI-pathogens/seq_dbutils, github.com/BDMADE/college_admin,num_dependents_deps.dev:0 github.com/BDNYC/astrodbkit, github.com/BDQ/serverless-http-autoconf,num_dependents_deps.dev:0 +github.com/BDSI-Utwente/shinyapps-deploy-github-action, github.com/BDWare/bdledger-nodejs-sdk,num_dependents_deps.dev:0 github.com/BDav24/next-url-prettifier,num_dependents_deps.dev:0 github.com/BDav24/recipe-markdown,num_dependents_deps.dev:0 @@ -25254,7 +25818,9 @@ github.com/BDonnot/lightsim2grid, github.com/BE-FE/iSlider,"num_dependents_deps.dev:0,criticality_score:0.300560" github.com/BE-Webdesign/eslint-plugin-react-functional-set-state,num_dependents_deps.dev:2 github.com/BE-Webdesign/structurez,num_dependents_deps.dev:0 +github.com/BEASTSM96/premake-action, github.com/BEE-Plugin/Bee-plugin-official,num_dependents_deps.dev:0 +github.com/BEFH/anaconda-publish, github.com/BEFH/flippyr, github.com/BEL-Public/mffpy, github.com/BEMQuery/bemquery,num_dependents_deps.dev:0 @@ -25301,6 +25867,7 @@ github.com/BEllis/react-redux-module,num_dependents_deps.dev:0 github.com/BEllis/redux-modules-enhancer,num_dependents_deps.dev:0 github.com/BEllis0/_logger,num_dependents_deps.dev:0 github.com/BF-man/react-customizable-carousel, +github.com/BF3RM/vumm-action, github.com/BFMBFramework/BaseConnector,num_dependents_deps.dev:2 github.com/BFMBFramework/ComCenter,num_dependents_deps.dev:0 github.com/BFMBFramework/TadoConnector,num_dependents_deps.dev:0 @@ -25321,6 +25888,8 @@ github.com/BGT-M/spartan2, github.com/BGU-CS-VIL/DPMMPython, github.com/BGU-CS-VIL/DPMMPythonStreaming, github.com/BGamber/batchAssert,num_dependents_deps.dev:0 +github.com/BGarber42/action-tcp-connection, +github.com/BGarber42/route53-record-set, github.com/BGehrels/parameter-validation,num_dependents_deps.dev:0 github.com/BGerard/chrome-version-finder,num_dependents_deps.dev:0 github.com/BGmi/BGmi, @@ -25352,6 +25921,7 @@ github.com/BIDMCDigitalPsychiatry/LAMP-js,num_dependents_deps.dev:0 github.com/BIDMCDigitalPsychiatry/LAMP-platform, github.com/BIDS-Apps/rsHRF, github.com/BIGC-HUB/bigsea.js,num_dependents_deps.dev:0 +github.com/BIGG-Kaymo/deploy-firebase-functions, github.com/BIGjuevos/vatstat, github.com/BILDIT-Platform/react-native-bildit-flybuy,num_dependents_deps.dev:0 github.com/BIMK/PlatEMO,criticality_score:0.348320 @@ -25460,6 +26030,7 @@ github.com/BLANK-TECH/MEX008-FE-md-link,num_dependents_deps.dev:0 github.com/BLIPNTU/LEO, github.com/BLIPNTU/belacon, github.com/BLLIP/bllip-parser, +github.com/BLOCKLINE-IO/regolith-install-action, github.com/BLOCKOTUS/hyperledger-fabric-chaincode-helper,num_dependents_deps.dev:0 github.com/BLOCKOTUS/hyperledger-fabric-offline-transaction-signing,num_dependents_deps.dev:0 github.com/BLOCKvIO/blockv-cli,num_dependents_deps.dev:0 @@ -25483,6 +26054,8 @@ github.com/BLaunet/sitelle, github.com/BLaurent/rabbus,num_dependents_deps.dev:0 github.com/BLaurent/wascally,num_dependents_deps.dev:0 github.com/BLooperZ/lazygen,num_dependents_deps.dev:0 +github.com/BMIvan/bm-sonarscan-dotnet, +github.com/BMJ-Ltd/bmj-ecr-version-increment, github.com/BMKeros/odoo-webkit,num_dependents_deps.dev:0 github.com/BMSTU-Schedule/bmstu-schedule-parser, github.com/BMSVieira/moovie.js,num_dependents_deps.dev:0 @@ -25505,6 +26078,7 @@ github.com/BNedry/mailer.js,num_dependents_deps.dev:0 github.com/BOBOlife/gulu-test,num_dependents_deps.dev:0 github.com/BOINC/boinc,criticality_score:0.649130 github.com/BOJIT/btmgmt, +github.com/BOJIT/platformio-publish, github.com/BOLD-lab/abbreviator, github.com/BONI-hub/cordova-plugin-boni,num_dependents_deps.dev:0 github.com/BONSAMURAIS/arborist, @@ -25560,6 +26134,8 @@ github.com/BRACKETS-by-TRIAD/craftable-frontend,num_dependents_deps.dev:0 github.com/BRACKETS-by-TRIAD/react-native-template-brackets,num_dependents_deps.dev:0 github.com/BRAConsultoria/OnyexERPy, github.com/BRAINIFII/krinn, +github.com/BRAVO68WEB/aws-codecommit-action, +github.com/BRAVO68WEB/gitlab-sync-action, github.com/BRAVO68WEB/hexo-webnary-theme,num_dependents_deps.dev:0 github.com/BRCAChallenge/react-data-components-brcaex,num_dependents_deps.dev:0 github.com/BREKIADATA-SL/plantilla-programas-python, @@ -25586,6 +26162,8 @@ github.com/BRutan/typeconstructor, github.com/BS-Harou/connect-flash-plus,num_dependents_deps.dev:0 github.com/BSBVolmachten/bodyblock-conversion,num_dependents_deps.dev:0 github.com/BSData/wh40k,criticality_score:0.654730 +github.com/BSFishy/meson-build, +github.com/BSFishy/pip-action, github.com/BSI-Business-Systems-Integration-AG/eclipse-settings-maven-plugin,num_dependents_deps.dev:0 github.com/BSNDA/PCNGateway-PY-SDK, github.com/BSTester/dubbo-python, @@ -25704,6 +26282,7 @@ github.com/BYVoid/continuation,num_dependents_deps.dev:0 github.com/BZCoding/SkelEktron,num_dependents_deps.dev:0 github.com/BZazel/models,num_dependents_deps.dev:0 github.com/BZoennchen/robo-world, +github.com/Ba4bes/Password-Generator, github.com/BaPSF/bapsflib, github.com/BaReinhard/ClubReady-Checkin-React-Component,num_dependents_deps.dev:0 github.com/BaReinhard/hangout-chat-tester,num_dependents_deps.dev:0 @@ -25824,6 +26403,7 @@ github.com/Backbase/bb-cli,num_dependents_deps.dev:0 github.com/Backbase/bb-protractor-accessibility-plugin,num_dependents_deps.dev:0 github.com/Backbase/filesystem-bower-resolver,num_dependents_deps.dev:0 github.com/Backbase/mosaic-rest-js,num_dependents_deps.dev:2 +github.com/Backbase/variants, github.com/Backblaze/B2_Command_Line_Tool,criticality_score:0.472330 github.com/Backblaze/b2-sdk-java,num_dependents_deps.dev:11 github.com/Backblaze/b2-sdk-python, @@ -25858,6 +26438,8 @@ github.com/Bacon/BaconQrCode,criticality_score:0.354210 github.com/Bacon1661/simple-lyrics, github.com/BaconSoap/react-debouncer,num_dependents_deps.dev:0 github.com/BaconZhang/MathLib,num_dependents_deps.dev:0 +github.com/Bacondish2023/setup-googletest, +github.com/Bacondish2023/setup-papyrusrt, github.com/Baconiser/audi-vue-icons-ts,num_dependents_deps.dev:0 github.com/BacooTang/cc_lib,num_dependents_deps.dev:0 github.com/BacooTang/douyu-danmu,num_dependents_deps.dev:0 @@ -25946,9 +26528,11 @@ github.com/BadMachine/SRCNN-tfjs,num_dependents_deps.dev:0 github.com/BadMachine/node-bitrefill,num_dependents_deps.dev:0 github.com/BadMachine/node-imei,num_dependents_deps.dev:0 github.com/BadMachine/tfjs-text-detection-ctpn,num_dependents_deps.dev:0 +github.com/BadMagic100/setup-hk, github.com/BadMooncc/DD-ui,num_dependents_deps.dev:0 github.com/BadOPCode/NoDash,num_dependents_deps.dev:0 github.com/BadOPCode/alsatian-jsx,num_dependents_deps.dev:0 +github.com/BadOPCode/codeclimate-test-reporter, github.com/BadOPCode/comely,num_dependents_deps.dev:0 github.com/BadOPCode/fullstack-serve,num_dependents_deps.dev:0 github.com/BadOPCode/log-skidder,num_dependents_deps.dev:0 @@ -25973,6 +26557,7 @@ github.com/BadgeLabs/mocha-eslint,num_dependents_deps.dev:2 github.com/BadgeUp/badgeup-evaltree, github.com/BadgeUp/badgeup-ionic-client,num_dependents_deps.dev:0 github.com/Badger-Finance/money-legos,num_dependents_deps.dev:0 +github.com/BadgerHobbs/terraform-state, github.com/Badgerati/Pode,criticality_score:0.399970 github.com/Badgie/spotirec, github.com/Badiboy/pyTONPublicAPI, @@ -26034,6 +26619,9 @@ github.com/Bahadou-Badr/shadowstyle,num_dependents_deps.dev:0 github.com/BahaiCalendar/BadiCalJS,num_dependents_deps.dev:0 github.com/BahamutDragon/pcgen,criticality_score:0.443600 github.com/BaharMC/BaharAPI,num_dependents_deps.dev:0 +github.com/BaharaJr/create-pr, +github.com/BaharaJr/merge-pr, +github.com/BaharaJr/releases, github.com/Baharghadimii/lotide,num_dependents_deps.dev:0 github.com/BaherWael/ng-validate-equal,num_dependents_deps.dev:0 github.com/BahgatMashaly/ng-retrofit,num_dependents_deps.dev:0 @@ -26075,6 +26663,7 @@ github.com/BaiduSpider/BaiduSpider, github.com/Baifann/mpvue-audio,num_dependents_deps.dev:0 github.com/Baijianlu/AICON2, github.com/Baikeqii/strawberry,num_dependents_deps.dev:0 +github.com/BaileyJM02/markdown-to-pdf, github.com/Baiqiang/nodebb-plugin-nodemailer-smtp,num_dependents_deps.dev:0 github.com/BaiyanAlwaysOnline/alex-create-app, github.com/BaiyanAlwaysOnline/alex-design, @@ -26114,8 +26703,10 @@ github.com/BakuDigital/vuforiajs,num_dependents_deps.dev:0 github.com/Bakuenjin/modu-cord, github.com/Bakuriu/feanor-csv, github.com/Bala-raj/gcp-nodejs-correlate-logs,num_dependents_deps.dev:0 +github.com/Bala-raj/pull-request-changelog, github.com/Bala-raj/react-custom-audio-player,num_dependents_deps.dev:0 github.com/BalaBsm/employee-directory,num_dependents_deps.dev:0 +github.com/BalaFFS/BalaFFS, github.com/BalaKrishna-BALU/logical-conversion,num_dependents_deps.dev:0 github.com/BalaKrishna-BALU/total-captcha,num_dependents_deps.dev:0 github.com/BalaRajendran/React-native-file-share-for-android,num_dependents_deps.dev:0 @@ -26134,6 +26725,8 @@ github.com/Balancingrock/classic-jekyll-theme,num_dependents_deps.dev:0 github.com/Balandat/pyDR, github.com/BalassaMarton/sequential-task-queue, github.com/BalassaMarton/snip-text,num_dependents_deps.dev:0 +github.com/Balastrong/chess-stats-action, +github.com/Balastrong/ga-label-issue, github.com/BalasubramaniM/reading-progress-bar,num_dependents_deps.dev:0 github.com/Balatzar/react-survey,num_dependents_deps.dev:0 github.com/Balatzar/spongemock, @@ -26157,6 +26750,7 @@ github.com/Ballrock/node-csgo-parser,num_dependents_deps.dev:0 github.com/Balonger/pdfformfields, github.com/Balonger/xfdfgen, github.com/BalotT/dataUtils_way,num_dependents_deps.dev:0 +github.com/Balou9/cfn-check-failed-status, github.com/Balou9/concat-process-str,num_dependents_deps.dev:0 github.com/Balou9/dir-abs-path,num_dependents_deps.dev:0 github.com/Balou9/dir-html-list,num_dependents_deps.dev:0 @@ -26182,6 +26776,8 @@ github.com/Baltoli/candl-lexer, github.com/Baltoli/hole-c-lexer, github.com/Baltoli/latex-plot-utils, github.com/Baluteja/arithmetic-operations,num_dependents_deps.dev:0 +github.com/Balvajs/delete-stale-branches, +github.com/Balvajs/dismiss-stale-reviews, github.com/BamBalaam/combine-harvester, github.com/BamBalaam/kuro, github.com/BamClue/lodown,num_dependents_deps.dev:0 @@ -26191,6 +26787,7 @@ github.com/BambiHaber/EventBus,num_dependents_deps.dev:0 github.com/BambooFlower/LiveYoutube-Scraper, github.com/BambooHR/rapid, github.com/Bambusaceae/vuepress-theme-bootstrap-simple,num_dependents_deps.dev:0 +github.com/Bambusgamer/tsc-clean-build-push, github.com/Bamieh/babel-preset-aws-lambda,num_dependents_deps.dev:0 github.com/Bamieh/bm-email-templatizer,num_dependents_deps.dev:0 github.com/Bamieh/express-telemetry,num_dependents_deps.dev:0 @@ -26264,6 +26861,7 @@ github.com/BancoSabadell/contract-deployer,num_dependents_deps.dev:4 github.com/BancoSabadell/gt-permission-manager,num_dependents_deps.dev:6 github.com/Bancoin-Blockchain/typescript-peers,num_dependents_deps.dev:0 github.com/BandarHL/BHVideoConverter, +github.com/BandarHL/theos-action, github.com/BandaruDev/bdev_package,num_dependents_deps.dev:0 github.com/BandaruDev/rexjs-core,num_dependents_deps.dev:0 github.com/Bandito11/stencil-component-starter,num_dependents_deps.dev:0 @@ -26381,6 +26979,7 @@ github.com/BaptisteBriel/slider-manager,num_dependents_deps.dev:0 github.com/BaptisteBriel/smooth-scrolling,num_dependents_deps.dev:0 github.com/BaptisteContreras/ElasticSvgMenu,num_dependents_deps.dev:0 github.com/BaptisteMiq/pt2json, +github.com/Baptouuuu/Setup-Neo4j, github.com/Baqend/jahcode, github.com/Baqend/js-sdk,num_dependents_deps.dev:0 github.com/Baqend/webpack-plugin,num_dependents_deps.dev:0 @@ -26412,6 +27011,8 @@ github.com/Barbora-Data-Science/s3-path-wrangler, github.com/Barbora-Data-Science/simple-sqla-timer, github.com/Barbosik/QuadNode,num_dependents_deps.dev:0 github.com/BarcodeResource/rust_barcode,num_dependents_deps.dev:0 +github.com/Bardavon-Health/actions-aws-ssm-params-to-env, +github.com/Bardavon-Health/actions-terraform-cloud-create-workspace, github.com/Bardiches/osrs-api,num_dependents_deps.dev:0 github.com/BardinPetr/homebridge-meteostation,num_dependents_deps.dev:0 github.com/BareConductive/node-picap,num_dependents_deps.dev:0 @@ -26699,6 +27300,7 @@ github.com/BasicElements/generator-trendystore,num_dependents_deps.dev:0 github.com/BasicPrimitives/javascript,num_dependents_deps.dev:0 github.com/BasicPrimitives/react,num_dependents_deps.dev:0 github.com/Basicprogrammer10/MinecraftHead, +github.com/Basicprogrammer10/ampersand, github.com/Basicpython/lodown,num_dependents_deps.dev:0 github.com/Basicula/OOPDB, github.com/BasilPH/vizel, @@ -26716,6 +27318,7 @@ github.com/Basis-Theory/basis-theory-elements-interfaces,num_dependents_deps.dev github.com/Basis-Theory/basis-theory-js,num_dependents_deps.dev:0 github.com/Basis-Theory/basistheory-python, github.com/BasitAli/react-native-offline-image-viewer,num_dependents_deps.dev:0 +github.com/Bask-Agency/ssh-action, github.com/Baskar-t/face-mask-classifier, github.com/Baskerville42/hoverForMenu,num_dependents_deps.dev:0 github.com/Baskerville42/timestamp-logger,num_dependents_deps.dev:0 @@ -26740,6 +27343,7 @@ github.com/BastiTee/python3-boilerplate, github.com/BastiaanBergman/tabel, github.com/BastiaanJansen/return-value, github.com/BastiaanJansen/simple-vue-camera,num_dependents_deps.dev:0 +github.com/BastianGanze/checkout-build-push-docker, github.com/BastianHofmann/arraytocsv,num_dependents_deps.dev:0 github.com/BastianHofmann/vue-grid,num_dependents_deps.dev:0 github.com/BastianPoe/owlet_api, @@ -26791,6 +27395,8 @@ github.com/Batix/rundeck-ansible-plugin,criticality_score:0.372760 github.com/Batman212369/trello.py, github.com/BatooOrg/BatooCommon,num_dependents_deps.dev:0 github.com/BatooOrg/BatooJPA,num_dependents_deps.dev:9 +github.com/Batov/ceedling_action, +github.com/Batov/esp32_qemu_unity_test_action, github.com/Batrium/WatchMonUdpListener,num_dependents_deps.dev:0 github.com/Batserine/Face_extraction, github.com/Batterii/cors,num_dependents_deps.dev:0 @@ -26870,6 +27476,7 @@ github.com/BayMinimum/YeT, github.com/BayanGroup/pylogger, github.com/BayatGames/node-savegamepro-mongodb,num_dependents_deps.dev:0 github.com/BayatGames/node-savegamepro-mysql,num_dependents_deps.dev:0 +github.com/Bayer-Group/terraform-aws-autoken, github.com/BayerischKongo/microblox, github.com/BayesFlare/bayesflare, github.com/BayesWatch/matplotlib_size_sheets, @@ -26928,6 +27535,7 @@ github.com/BcRikko/NES.css,num_dependents_deps.dev:0 github.com/Bcastillo44/npm-Resume,num_dependents_deps.dev:0 github.com/Bchir/idle-session-timeout,num_dependents_deps.dev:0 github.com/Bchir/react-print-tool,num_dependents_deps.dev:0 +github.com/Bchir/update-nuget, github.com/BclEx/core-validation,num_dependents_deps.dev:0 github.com/BclEx/generator-fragment,num_dependents_deps.dev:2 github.com/BclEx/generator-xrm-core,num_dependents_deps.dev:0 @@ -26945,6 +27553,7 @@ github.com/Bds-Maneger/bds_maneger_api,num_dependents_deps.dev:0 github.com/Be-Bound/be-bound-samples,num_dependents_deps.dev:2 github.com/Be-FaaS/BeFaaS-lib,num_dependents_deps.dev:0 github.com/Be-Rude/lotide,num_dependents_deps.dev:0 +github.com/Be-Streamlined/action-setup-spacectl, github.com/Be2daErtin/homebridge-bvera,num_dependents_deps.dev:0 github.com/Be5yond/gf, github.com/Be5yond/testtp, @@ -26967,6 +27576,9 @@ github.com/BeOne-PL/promena-transformer-converter-imagemagick,num_dependents_dep github.com/BeOne-PL/promena-transformer-converter-libreoffice,num_dependents_deps.dev:3 github.com/BeOne-PL/promena-transformer-ocr-ocrmypdf,num_dependents_deps.dev:2 github.com/BeOne-PL/promena-transformer-report-generator-jasperreports,num_dependents_deps.dev:3 +github.com/BeOpinion/action-smart-ci-triggers, +github.com/BeOpinion/actions-aws-eb, +github.com/BeOpinion/slack-message-release-action, github.com/BePasquet/from-reducer,num_dependents_deps.dev:0 github.com/BePo65/bepo65.Leaflet.markercluster,num_dependents_deps.dev:0 github.com/BePo65/leaflet.fullscreen,num_dependents_deps.dev:0 @@ -26986,6 +27598,7 @@ github.com/BeaEngine/beaengine,criticality_score:0.298460 github.com/Beachnad/pupyt, github.com/Beacon-Platform/eslint-config-beacon,num_dependents_deps.dev:0 github.com/Beacon-Platform/trellis, +github.com/BeaconBrigade/package-json-version, github.com/BeaconInteractive/haml2erb,num_dependents_deps.dev:0 github.com/Beaconstac/NearBee-iOS-SDK,num_dependents_deps.dev:0 github.com/Beaconstac/cordova-plugin-nearbee,num_dependents_deps.dev:0 @@ -27002,6 +27615,10 @@ github.com/Beaker73/Beaker.ReactComponents,num_dependents_deps.dev:0 github.com/Beakyn/aurelia-json-debugger,num_dependents_deps.dev:0 github.com/Beakyn/bkn-specs-editor,num_dependents_deps.dev:0 github.com/Beakyn/draftjs-md-converter,num_dependents_deps.dev:0 +github.com/Beakyn/gha-close-milestone, +github.com/Beakyn/gha-comment-pull-request, +github.com/Beakyn/gha-format-release-notes, +github.com/Beakyn/gha-get-milestone-data, github.com/Beakyn/specs-editor,num_dependents_deps.dev:0 github.com/BealeARTS/micro-basic-auth,num_dependents_deps.dev:0 github.com/BealeARTS/sideloader,num_dependents_deps.dev:0 @@ -27050,6 +27667,7 @@ github.com/BearOve/auto-check-rs,num_dependents_deps.dev:0 github.com/BearTS/tamako-api,num_dependents_deps.dev:0 github.com/BearTax/kraken-node-api,num_dependents_deps.dev:0 github.com/BearbaBear/hyper-bubblegum,num_dependents_deps.dev:0 +github.com/Bearbobs/open-coverage-action, github.com/BeardDude/bulma-board,num_dependents_deps.dev:0 github.com/BeardScript/big-brother,num_dependents_deps.dev:0 github.com/BeardScript/history-actions,num_dependents_deps.dev:0 @@ -27062,15 +27680,20 @@ github.com/BeardedFramework/lumberjack,num_dependents_deps.dev:2 github.com/BeardedManStudios/ForgeNetworkingRemastered,criticality_score:0.426310 github.com/BeardyBear/tornado-generic-handlers, github.com/Bearer/Pizzly,criticality_score:0.358110 +github.com/Bearer/actions, github.com/Bearer/bearer,"num_dependents_deps.dev:576,num_dependents_deps.dev:10" +github.com/Bearer/bearer-action, github.com/Bearer/bearer-js, github.com/Bearer/bearer-python, github.com/Bearer/bearer-sdk, +github.com/Bearer/curio-action, github.com/BearerSH/bearer,num_dependents_deps.dev:0 github.com/Bearle/django-private-chat,criticality_score:0.310180 github.com/Bearle/django-scatter-auth, github.com/Bearle/django-web3-auth, github.com/Bearle/django_private_chat2, +github.com/Bearmijos/hello-amex, +github.com/Bearmijos/hello-world-docker, github.com/Bearologics/DeviceCheck,num_dependents_deps.dev:0 github.com/Bearzooka/Lane,num_dependents_deps.dev:0 github.com/Bearzooka/PackageChanger,num_dependents_deps.dev:0 @@ -27092,6 +27715,7 @@ github.com/BeauAgst/vue-whiteboard,num_dependents_deps.dev:0 github.com/Beaudinn/react-native-gifted-chat,num_dependents_deps.dev:0 github.com/BeauitfullXiaoJian/cordova-amap-location,num_dependents_deps.dev:0 github.com/BeauitfullXiaoJian/ng-tui,num_dependents_deps.dev:0 +github.com/Beaujr/gogitops-action, github.com/BeautySpotter/cookieconsent,num_dependents_deps.dev:0 github.com/BeaveArony/fully-typed-actions,num_dependents_deps.dev:0 github.com/BeaveArony/localstorage-idb-keyval,num_dependents_deps.dev:0 @@ -27186,6 +27810,7 @@ github.com/BedrockCoder/convert-to-string,num_dependents_deps.dev:0 github.com/BedrockCoder/sololearn,num_dependents_deps.dev:0 github.com/BedrockJS/bedrock-caches,num_dependents_deps.dev:0 github.com/BedrockStreaming/lintersmagic, +github.com/BedrockStreaming/pr-size-labeler, github.com/Bedunkevich/atol,num_dependents_deps.dev:0 github.com/BedwarsRel/BedwarsRel,num_dependents_deps.dev:0 github.com/BedyCasa/react-intl-aggregate-webpack-plugin,num_dependents_deps.dev:0 @@ -27195,6 +27820,7 @@ github.com/BeeAnka/EFMlrs, github.com/BeeHache/bh-crypto,num_dependents_deps.dev:0 github.com/BeeHiveCloud/honeycomb,num_dependents_deps.dev:0 github.com/BeeJi/BeeJi,num_dependents_deps.dev:0 +github.com/BeeMyDesk/cloud-datastore-action, github.com/BeeMyDesk/prerender-python-starlette, github.com/BeeMyDesk/react-facebook-pixel, github.com/BeeTech-global/bee-hook,num_dependents_deps.dev:0 @@ -27512,6 +28138,7 @@ github.com/BenMorris/NetArchTest,criticality_score:0.344100 github.com/BenNG/burner-speech,num_dependents_deps.dev:0 github.com/BenNG/burner-timer,num_dependents_deps.dev:0 github.com/BenNeumeister/daikinPyZone, +github.com/BenParr64/vercel-deployment-action, github.com/BenPorat/rrweb, github.com/BenPoulson/grunt-schema-markup,num_dependents_deps.dev:0 github.com/BenQoder/react-native-fancy-navigation-bar,num_dependents_deps.dev:0 @@ -27556,6 +28183,9 @@ github.com/Benabra/pytest_yaml, github.com/BenaliDjamel/Range.js,num_dependents_deps.dev:0 github.com/Benature/AutoLaTeX, github.com/Benature/flomo, +github.com/Benbentwo/Github-Contribution-Graph-Action, +github.com/Benbentwo/UnrealGameVersionUpdater, +github.com/Benbentwo/increment-semver, github.com/BenceSzalai/bootstrap-responsive-grid,num_dependents_deps.dev:0 github.com/BenceSzalai/vue-components-ide-helper,num_dependents_deps.dev:0 github.com/BenceSzalai/webpack-static-i18n-plugin,num_dependents_deps.dev:0 @@ -27592,7 +28222,9 @@ github.com/BeneathTheInk/trackr,num_dependents_deps.dev:122 github.com/BeneathTheInk/uninvisible,num_dependents_deps.dev:0 github.com/BeneathTheInk/virtual-trackr, github.com/BenedatLLC/CacheML, +github.com/Benedict-Carling/Bump-PyPi-Version-Workflow, github.com/Benedict-Carling/PlateViz,num_dependents_deps.dev:0 +github.com/Benedict-Carling/aws-cli, github.com/Benedict-Carling/platemap, github.com/Benedict-Carling/spanish-conjugatorjs,num_dependents_deps.dev:0 github.com/BenedictOng42/fastfunctions,num_dependents_deps.dev:0 @@ -27688,6 +28320,7 @@ github.com/BenjaminKaul/bk-navbar-js,num_dependents_deps.dev:0 github.com/BenjaminKaul/text-glitch,num_dependents_deps.dev:0 github.com/BenjaminLykins/command-line-arguments,num_dependents_deps.dev:0 github.com/BenjaminMichael/node-powershell,num_dependents_deps.dev:0 +github.com/BenjaminMichaelis/onedrive-to-github-sync-action, github.com/BenjaminN/messiah,num_dependents_deps.dev:0 github.com/BenjaminN/node-firmapi,num_dependents_deps.dev:0 github.com/BenjaminNack/Node-Govee-API,num_dependents_deps.dev:0 @@ -27813,6 +28446,7 @@ github.com/BensonLiao/capybara-router,num_dependents_deps.dev:0 github.com/BensonLiao/react-content-editable,num_dependents_deps.dev:0 github.com/BensonLiao/react-design-editor, github.com/BensonQiu/bqfoobar, +github.com/BentEngbers/flutter-change-version, github.com/BenthamInstruments/BenAnalysis, github.com/BenthamInstruments/bendev, github.com/Bentroen/nbswave, @@ -27870,6 +28504,7 @@ github.com/Bergvca/string_grouper, github.com/Berico-Technologies/CLAVIN,num_dependents_deps.dev:2 github.com/Berico-Technologies/CLAVIN-NERD,num_dependents_deps.dev:0 github.com/BerkOzdilek/nodejsSDK,num_dependents_deps.dev:0 +github.com/Berke-Ates/LoC, github.com/BerkeAras/LightRoute,num_dependents_deps.dev:0 github.com/Berkeley-Data/darts, github.com/Berkeley-Reject/Encrypted-DNS, @@ -27913,6 +28548,7 @@ github.com/Bernardo-MG/base-pom,num_dependents_deps.dev:0 github.com/Bernardo-MG/dice-notation-python, github.com/Bernardo-MG/docs-maven-skin,num_dependents_deps.dev:0 github.com/Bernardo-MG/java-patterns,"num_dependents_deps.dev:0,num_dependents_deps.dev:2" +github.com/Bernardo-MG/maven-site-deployment-settings-action, github.com/Bernardo-MG/persistence-utils-java,num_dependents_deps.dev:0 github.com/Bernardo-MG/python-version-extractor, github.com/Bernardo-MG/repository-pattern-java,num_dependents_deps.dev:0 @@ -27956,6 +28592,7 @@ github.com/BernhardtD/vue-sorted-table,num_dependents_deps.dev:0 github.com/Berni78/node-red-contrib-slacker,num_dependents_deps.dev:0 github.com/Berni78/node-red-contrib-slackreader,num_dependents_deps.dev:0 github.com/Berni78/node-red-slack,num_dependents_deps.dev:0 +github.com/BerniWittmann/background-server-action, github.com/BerniWittmann/vue-unused-components-checker,num_dependents_deps.dev:0 github.com/Bernie-2016/bsd-js,num_dependents_deps.dev:0 github.com/BernieSumption/ordamo-v3-sdk,num_dependents_deps.dev:0 @@ -28021,6 +28658,7 @@ github.com/BessemerAlliance/ampersand-modal-view,num_dependents_deps.dev:0 github.com/Bessonov/mybatis-migrations-spring-boot-autoconfigure,num_dependents_deps.dev:0 github.com/Bessonov/set-project-references,num_dependents_deps.dev:0 github.com/Bessonov/utils,num_dependents_deps.dev:0 +github.com/Best-Quality-Engineering/ci-maven-action, github.com/BestBuyAPIs/bestbuy-cli,num_dependents_deps.dev:0 github.com/BestBuyAPIs/bestbuy-sdk-js,num_dependents_deps.dev:0 github.com/BestDingSheng/dingsheng-cli,num_dependents_deps.dev:0 @@ -28073,15 +28711,19 @@ github.com/BetaF1sh/voca, github.com/BetaGo/create-react-app,num_dependents_deps.dev:0 github.com/BetaHuhn/ackee-report,num_dependents_deps.dev:0 github.com/BetaHuhn/action-input-parser,num_dependents_deps.dev:0 +github.com/BetaHuhn/deploy-to-vercel-action, github.com/BetaHuhn/deta-base-orm,num_dependents_deps.dev:0 +github.com/BetaHuhn/do-spaces-action, github.com/BetaHuhn/drkmd.js,num_dependents_deps.dev:0 github.com/BetaHuhn/ejs-serve,num_dependents_deps.dev:0 github.com/BetaHuhn/electron-win-state,num_dependents_deps.dev:0 github.com/BetaHuhn/electron-window-controls,num_dependents_deps.dev:0 github.com/BetaHuhn/express-redirection,num_dependents_deps.dev:0 github.com/BetaHuhn/feedback-js,num_dependents_deps.dev:0 +github.com/BetaHuhn/ifttt-status, github.com/BetaHuhn/kopiert,num_dependents_deps.dev:0 github.com/BetaHuhn/metadata-scraper,num_dependents_deps.dev:0 +github.com/BetaHuhn/repo-file-sync-action, github.com/BetaHuhn/running-at,num_dependents_deps.dev:0 github.com/BetaHuhn/spaces-cli,num_dependents_deps.dev:0 github.com/BetaHuhn/tzc, @@ -28245,6 +28887,8 @@ github.com/BewhiskeredBard/homebridge-scout, github.com/BewhiskeredBard/scout-api, github.com/BeyLL/r-calendar-show,num_dependents_deps.dev:0 github.com/BeyersNel/bn-offerzen-cv-gen,num_dependents_deps.dev:0 +github.com/Beyley/arch-mingw-github-action, +github.com/Beyley/publish-nuget, github.com/Beyond-Digital/django-gaekit, github.com/Beyond-IT/cmis.js, github.com/Beyond-ML-Labs/beyondml, @@ -28253,6 +28897,7 @@ github.com/BeyondMark/IdaTraceAnalysisHelper, github.com/BeyondMark/big-file-cache, github.com/BeyondMark/ida-parse-trace-file-helper, github.com/BeyondTheClouds/enos, +github.com/BeyondTrust/secrets-safe-action, github.com/Beyonder-Zack/Mending, github.com/BezBartek/django-db-views, github.com/Bezlepkin/nativescript-ar, @@ -28262,6 +28907,9 @@ github.com/BezzubovEgor/ngx-rslide,num_dependents_deps.dev:0 github.com/BezzubovEgor/react-router-navigation-confirm,num_dependents_deps.dev:0 github.com/BgDaniel/hypgeo, github.com/Bhaall/loot-react-lm, +github.com/Bhacaz/checkout-files, +github.com/Bhacaz/docs-as-code-confluence, +github.com/Bhacaz/label-regex, github.com/BhadreshC/Demo, github.com/Bhagatv/PyStreamableCom, github.com/Bhagirihi/react-native-offline-screen, @@ -28325,6 +28973,8 @@ github.com/Bhullnatik/true50, github.com/Bhumbra/probayes, github.com/Bhupesh-V/30-seconds-of-cpp,criticality_score:0.334680 github.com/Bhupesh-V/defe, +github.com/Bhupesh-V/memer-action, +github.com/Bhupesh-V/update-pr-reminder-action, github.com/Bhushan3442/helloboomer,num_dependents_deps.dev:0 github.com/Bhushan3442/ngbhushan,num_dependents_deps.dev:0 github.com/Bhushan3442/ngbhushan121,num_dependents_deps.dev:0 @@ -28381,6 +29031,7 @@ github.com/Bibliomondo/react-org-chart,num_dependents_deps.dev:0 github.com/Biboswan/filediffer-cli,num_dependents_deps.dev:0 github.com/Bibyutatsu/proGENTRL, github.com/BicodeCosmique/bicode, +github.com/Bidaya0/sql-lint-in-action, github.com/BideoWego/express-method-override-get-post-support,num_dependents_deps.dev:0 github.com/BideoWego/furious_spinoff,num_dependents_deps.dev:0 github.com/BideoWego/mongooseeder,num_dependents_deps.dev:0 @@ -28389,6 +29040,7 @@ github.com/BideoWego/mousevc,num_dependents_deps.dev:0 github.com/BidiPassCompany/sdk,num_dependents_deps.dev:0 github.com/Bidvine/mobx-react-form,num_dependents_deps.dev:0 github.com/Bidvine/reactstrap,num_dependents_deps.dev:0 +github.com/BieggerM/yamale-action, github.com/Bielik20/adeng-jenkins-cli,num_dependents_deps.dev:0 github.com/Bielik20/jenkins-jobs-runner,num_dependents_deps.dev:0 github.com/Bielik20/jenkins-rxjs,num_dependents_deps.dev:0 @@ -28519,10 +29171,14 @@ github.com/BigTeamDotCo/node-aot,num_dependents_deps.dev:0 github.com/BigTeri/jsgbc,num_dependents_deps.dev:0 github.com/BigTeri/jspointerlock,num_dependents_deps.dev:0 github.com/BigTeri/jsremote,num_dependents_deps.dev:0 +github.com/BigThunderSR/update-package-node-red-flow-library-action, github.com/BigTicket5/react-sidebar,num_dependents_deps.dev:0 +github.com/BigTows/yc-lockbox, +github.com/BigTows/yc-token, github.com/BigWednesdayIO/gcloud-datastore-model,num_dependents_deps.dev:0 github.com/BigWednesdayIO/hapi-error-schemas,num_dependents_deps.dev:0 github.com/BigWednesdayIO/hapi-version-route,num_dependents_deps.dev:0 +github.com/BigWigsMods/packager, github.com/BigYouth/markerclustererplus, github.com/BigYu/generator-react-component-dev,num_dependents_deps.dev:0 github.com/BigYu/generator-react-lib-ts,num_dependents_deps.dev:0 @@ -28585,6 +29241,7 @@ github.com/Biings/biings-ds, github.com/BijalBPatel/PolyChemPrint3, github.com/BijanEisapour/my-first-package, github.com/Bijay555/bino-gauss-distribution, +github.com/BijayKumarPun/android-release-pipeline, github.com/Bijiabo/aliyun-oss-react-native,num_dependents_deps.dev:0 github.com/Bijnagte/spock-genesis,num_dependents_deps.dev:2 github.com/Bijoy99roy/PreProcessingNinja, @@ -28682,6 +29339,7 @@ github.com/BillieBobbel23/cssvar-interaction, github.com/BillionChen/ContextMenu, github.com/BillionaireDY/perfetto,num_dependents_deps.dev:0 github.com/Billmike/number-formatter,num_dependents_deps.dev:0 +github.com/Billones142/jacoco-generateAndUploadResults, github.com/Billos/sync-ws,num_dependents_deps.dev:0 github.com/BillowLabs/fortune-localstorage,num_dependents_deps.dev:0 github.com/Billy-/rn-overlay-view,num_dependents_deps.dev:0 @@ -28719,11 +29377,13 @@ github.com/BinDoc-Projects/bindoc-table,num_dependents_deps.dev:0 github.com/BinDoc-Projects/bindoc-templates,num_dependents_deps.dev:0 github.com/BinItAI/BetterLoader, github.com/BinPar/bi-mupx,num_dependents_deps.dev:0 +github.com/BinPar/deploy-ecs-service, github.com/BinPar/emp-ebooks-desktop-app,num_dependents_deps.dev:0 github.com/BinPar/epub3-parser,num_dependents_deps.dev:0 github.com/BinPar/graphql-schema-typescript,num_dependents_deps.dev:0 github.com/BinPar/jest-gql,num_dependents_deps.dev:0 github.com/BinPar/react-native-swipeout, +github.com/BinPar/read-conventional-commit-changelog, github.com/BinPar/ts-next-boilerplate,num_dependents_deps.dev:0 github.com/BinPro/CONCOCT, github.com/BinSentry/fluent-siren-client,num_dependents_deps.dev:0 @@ -28752,6 +29412,8 @@ github.com/BinaryArtists/wx-away,num_dependents_deps.dev:0 github.com/BinaryBeard/disabled-rules,num_dependents_deps.dev:0 github.com/BinaryBeard/eslint-config-brewboy,num_dependents_deps.dev:0 github.com/BinaryBeast/BinaryBeast_API_Node.js,num_dependents_deps.dev:0 +github.com/BinaryBirds/action-xctest-report, +github.com/BinaryBirds/swift-test-report, github.com/BinaryFutureGit/ionic-helpers,num_dependents_deps.dev:0 github.com/BinaryMuse/UDJrb,num_dependents_deps.dev:0 github.com/BinaryMuse/atom-mocha-test-runner,num_dependents_deps.dev:0 @@ -28843,6 +29505,8 @@ github.com/Binogi/angucomplete-alt-es6,num_dependents_deps.dev:0 github.com/Binogi/angular-moment-es6,num_dependents_deps.dev:0 github.com/BinomialLLC/basis_universal,criticality_score:0.442130 github.com/BinotaLIU/neji,num_dependents_deps.dev:0 +github.com/Binozo/GitHubActionRemoteScriptExecutor, +github.com/Binozo/TelegramNotifier, github.com/Binsabbar/gitlab-cli-build-monitor,num_dependents_deps.dev:0 github.com/Binstar/binstar_client, github.com/Bio-Core/tokenTracer, @@ -28921,6 +29585,7 @@ github.com/BioWareRu/BioEngine.Core.Api.Client,num_dependents_deps.dev:0 github.com/Bioblaze/Clanbot,num_dependents_deps.dev:0 github.com/Bioblaze/Devbot,num_dependents_deps.dev:0 github.com/Bioblaze/Guildbot,num_dependents_deps.dev:0 +github.com/Bioblaze/deploy2steam, github.com/Bioblaze/discord.js-router,num_dependents_deps.dev:0 github.com/Bioblaze/dns_lookup_plugin, github.com/Bioblaze/mysql-router,num_dependents_deps.dev:0 @@ -28995,6 +29660,7 @@ github.com/Birkenstab/find-fritzbox,num_dependents_deps.dev:0 github.com/Birkenstab/gulp-combine,num_dependents_deps.dev:0 github.com/BirkhoffLee/blizzard_forums_node_api,num_dependents_deps.dev:0 github.com/BirolAYDIN/http-logg,num_dependents_deps.dev:0 +github.com/BirthdayResearch/oss-governance-bot, github.com/Bisa/factorio-init,criticality_score:0.364240 github.com/BiscayRobin/sbitty,num_dependents_deps.dev:0 github.com/Biscoint/biscoint-api-node, @@ -29026,6 +29692,8 @@ github.com/Bit-Nation/pangea-sdk,num_dependents_deps.dev:0 github.com/Bit-Nation/panthalassa,num_dependents_deps.dev:0 github.com/Bit-Wasp/bitcoin-php,criticality_score:0.432250 github.com/Bit-a-Bit-gh/yaml2sql, +github.com/BitBagCommerce/rancher-install-catalog-app, +github.com/BitBagCommerce/rancher-remove-catalog-app, github.com/BitBalloon/grunt-bitballoon,num_dependents_deps.dev:0 github.com/BitBalloon/punch-bitballoon,num_dependents_deps.dev:0 github.com/BitBanknz/bitbank-node-js-api,num_dependents_deps.dev:0 @@ -29155,6 +29823,7 @@ github.com/Bitlark/lines_ui,num_dependents_deps.dev:0 github.com/Bitluck/nested-proxy,num_dependents_deps.dev:0 github.com/Bitmessage/PyBitmessage,criticality_score:0.562430 github.com/Bitproof-Inc/bitproof-node,num_dependents_deps.dev:0 +github.com/Bits-To-Breath/git-get-cloned-action, github.com/BitsOfBinary/yarabuilder, github.com/BitskiCo/bitski-js,num_dependents_deps.dev:38 github.com/BitskiCo/bitski-js-sdk,num_dependents_deps.dev:0 @@ -29580,6 +30249,7 @@ github.com/Blackgard/shablbot, github.com/Blackhawk-TA/chatbot-api-wrapper,num_dependents_deps.dev:0 github.com/Blackhawk-TA/dynoBot-Framework, github.com/Blackjacx/WWDC,criticality_score:0.365260 +github.com/Blackjacx/backlog-notifier, github.com/BlacklakeTechWeb/foundation,num_dependents_deps.dev:0 github.com/Blackmamba1/Baking-UI,num_dependents_deps.dev:0 github.com/Blackman21/express-backend,num_dependents_deps.dev:0 @@ -29733,6 +30403,7 @@ github.com/Blaugold/express-recaptcha-rest,num_dependents_deps.dev:0 github.com/Blaugold/mongoose-edges,num_dependents_deps.dev:0 github.com/Blaumaus/react-native-redux-alert,num_dependents_deps.dev:0 github.com/Blaxar/three-rwx-loader,num_dependents_deps.dev:0 +github.com/Blaze2305/better-aws-iam-authenticator-action, github.com/BlazeCSS/blaze,num_dependents_deps.dev:8 github.com/BlazeSoftware/atoms,"criticality_score:0.329100,num_dependents_deps.dev:0" github.com/BlazeSoftware/blaze, @@ -29776,6 +30447,8 @@ github.com/Ble3k/openvidu-call-react,num_dependents_deps.dev:0 github.com/BleeveNL/apistart,num_dependents_deps.dev:0 github.com/Blender14RUS/social-feed-react-app,num_dependents_deps.dev:0 github.com/BlenderDude/yubico-node,num_dependents_deps.dev:0 +github.com/BlenderKit/blender-addon-build, +github.com/BlenderKit/blender-addon-release, github.com/BlendingJake/EZDict, github.com/BlendingJake/JTools-Py, github.com/Bleptek/blepslides,num_dependents_deps.dev:0 @@ -29856,6 +30529,7 @@ github.com/BlizzedRu/TimeTableSPbU-Lib,num_dependents_deps.dev:0 github.com/Blo3y/dappeteer,num_dependents_deps.dev:0 github.com/Bloase/fileuploader, github.com/Blob-Development/discord.js-search,num_dependents_deps.dev:0 +github.com/BlobDevelopment/copy-and-replace-tokens, github.com/Blobadoodle/e621-wrapper, github.com/BlobySoftware/Alteris,num_dependents_deps.dev:0 github.com/BlobySoftware/Minifit,num_dependents_deps.dev:0 @@ -29919,6 +30593,8 @@ github.com/Blockception/BC-Minecraft-Bedrock-Vanilla-Data,num_dependents_deps.de github.com/Blockception/BC-Minecraft-Project,num_dependents_deps.dev:0 github.com/Blockception/BC-VSCode-Utilities,num_dependents_deps.dev:0 github.com/Blockception/BC-VSCode-Words,num_dependents_deps.dev:0 +github.com/Blockception/MB-Action-Create-MCWorld, +github.com/Blockception/action-minecraft-bedrock-diagnose, github.com/Blockchain-Solutions-BCS/bcs-opcodes,num_dependents_deps.dev:2 github.com/Blockchain-Solutions-BCS/bcschaind-rpc,num_dependents_deps.dev:0 github.com/Blockchain-Solutions-BCS/bcschainjs-wallet,num_dependents_deps.dev:0 @@ -30130,6 +30806,7 @@ github.com/Blue-Energy/dawa-autocomplete2-react,num_dependents_deps.dev:0 github.com/Blue-EyesWhiteDragon/self.npm.app-generic, github.com/Blue-Functor/code.bluefunctor.com,num_dependents_deps.dev:0 github.com/Blue-Functor/create-component-library,num_dependents_deps.dev:0 +github.com/Blue-Pix/describe-cfn-change-set, github.com/BlueAcornInc/github-helpers,num_dependents_deps.dev:0 github.com/BlueBambooStudios/gatsby-plugin-freshchat,num_dependents_deps.dev:0 github.com/BlueBanyanSolutions/netsuite-deploy,num_dependents_deps.dev:0 @@ -30283,6 +30960,7 @@ github.com/BlueHatbRit/vatcode-validator,num_dependents_deps.dev:0 github.com/BlueHotDog/gake,num_dependents_deps.dev:0 github.com/BlueHotDog/sails-migrations,num_dependents_deps.dev:0 github.com/BlueHunter99/nativescript-plugin-badge,num_dependents_deps.dev:0 +github.com/BlueIntent/iOS-helper-action, github.com/BlueJeansAndRain/adler32,num_dependents_deps.dev:0 github.com/BlueJeansAndRain/needy,num_dependents_deps.dev:0 github.com/BlueJeansAndRain/needy-nodecore,num_dependents_deps.dev:0 @@ -30309,6 +30987,7 @@ github.com/BlueMagnificent/x-express-session, github.com/BlueMap-Minecraft/BlueMap,criticality_score:0.348070 github.com/BlueMirrors/cvu, github.com/BlueMirrors/vidsz, +github.com/BlueOS-community/Deploy-BlueOS-Extension, github.com/BlueOakJS/blueoak-build,num_dependents_deps.dev:0 github.com/BlueOakJS/blueoak-server,num_dependents_deps.dev:0 github.com/BlueOakJS/bos-couchdb, @@ -30358,6 +31037,7 @@ github.com/BlueT/everypixel-js,num_dependents_deps.dev:0 github.com/BlueT/express-pwnd-pw,num_dependents_deps.dev:0 github.com/BlueT/obj-filter,num_dependents_deps.dev:0 github.com/BlueTeamLabs/sentinel-attack,criticality_score:0.299380 +github.com/BlueTheDuck/glob-to-drive, github.com/BlueVertex/conformity-js,num_dependents_deps.dev:0 github.com/BlueWallet/BlueWallet,criticality_score:0.629460 github.com/BlueWhaleMain/descriptor, @@ -30384,6 +31064,9 @@ github.com/Bluefinger/rythe,num_dependents_deps.dev:0 github.com/Bluefire2/matchday,num_dependents_deps.dev:0 github.com/Bluefire2/sort-unique,num_dependents_deps.dev:0 github.com/Bluefissure/OtterBot,criticality_score:0.368990 +github.com/Bluefissure/case-status-action, +github.com/Bluefissure/tencent-cos-action, +github.com/Bluefissure/uscis-case-status-action, github.com/Bluegg/bluegg-ajax,num_dependents_deps.dev:0 github.com/Bluegg/bluegg-kss-builder,num_dependents_deps.dev:0 github.com/Bluegg/bluegg-meganav,num_dependents_deps.dev:0 @@ -30413,6 +31096,8 @@ github.com/Blueqat/Blueqat, github.com/Blueqat/Photonqat, github.com/BluesYoung-web/young-commit, github.com/BluesYoung-web/young-create, +github.com/Bluesboy/create-dns-record, +github.com/Bluesboy/delete-dns-record, github.com/Blueshoe/django-hurricane, github.com/Blueshoe/djangocms-ga-optout, github.com/Blueshoe/djangocms-hubspot, @@ -30521,6 +31206,7 @@ github.com/Boanerges1996/fnf-express, github.com/Boappa/toolbox-api,num_dependents_deps.dev:0 github.com/Boardgame-DSL/boardgame.js, github.com/Boardstroke/no-more-space,num_dependents_deps.dev:0 +github.com/BoatNg/funny-deploy, github.com/BoatZako/ng2-simple-smooth-scroll,num_dependents_deps.dev:0 github.com/BoatZako/ngx-froala,num_dependents_deps.dev:0 github.com/BoatZako/ngx-parallax-scroll,num_dependents_deps.dev:0 @@ -30549,6 +31235,7 @@ github.com/Bob620/bakajax, github.com/Bob620/chata-client,num_dependents_deps.dev:0 github.com/Bob620/node-mdb-sql,num_dependents_deps.dev:0 github.com/Bob620/xes_converter,num_dependents_deps.dev:0 +github.com/BobAnkh/auto-generate-changelog, github.com/BobAnkh/relay-story, github.com/BobBrown1/pywig, github.com/BobCaSUaL/checkJS, @@ -30559,6 +31246,7 @@ github.com/BobDotCom/betteraiohttp, github.com/BobDotCom/bftools, github.com/BobDotCom/growstocks, github.com/BobDotCom/mclauncher, +github.com/BobDotCom/oprf-asset-updater, github.com/BobDotCom/time_str, github.com/BobGneu/human-format-rs,num_dependents_deps.dev:14 github.com/BobJeronowitz/NgDeepImportsTest,num_dependents_deps.dev:0 @@ -30685,6 +31373,9 @@ github.com/BoenYang/hexo-maintance, github.com/Boerderij/Varken,criticality_score:0.374080 github.com/Boereck/fn_block,num_dependents_deps.dev:0 github.com/Boffka/uForever,num_dependents_deps.dev:0 +github.com/BogDAAAMN/code-of-conduct-notifier-action, +github.com/BogDAAAMN/copy-sentiment-analysis, +github.com/BogDAAAMN/deta-deploy-action, github.com/BogMil/racunovodja, github.com/Bogad/itarone-keycloak-starter,num_dependents_deps.dev:0 github.com/Bogala/create-react-app-awesome-ts,num_dependents_deps.dev:0 @@ -30729,6 +31420,7 @@ github.com/Bogdanp/awesome-advent-of-code,criticality_score:0.476730 github.com/Bogdanp/cedar,num_dependents_deps.dev:0 github.com/Bogdanp/dramatiq,criticality_score:0.452540 github.com/Bogdanp/hugs, +github.com/Bogdanp/setup-racket, github.com/Bogdanp/tcopy, github.com/Bogdansky/cwp-22,num_dependents_deps.dev:0 github.com/BogdnovichEvg/cwp-22-1,num_dependents_deps.dev:0 @@ -30737,6 +31429,7 @@ github.com/Boglov/Dreammake, github.com/Boglov/dreamake, github.com/BogoIonut/form-api,num_dependents_deps.dev:0 github.com/Bogro/phone_email_verifier, +github.com/Bogyie/auto-fmt, github.com/Bohdan-Khomtchouk/FTPwalker, github.com/BohdanChaban/shookach,num_dependents_deps.dev:0 github.com/BohdanDonchenko/ragnar,num_dependents_deps.dev:0 @@ -30872,6 +31565,7 @@ github.com/Bomret/funkster-http-headers-content,num_dependents_deps.dev:0 github.com/Bomret/funkster-http-json,num_dependents_deps.dev:0 github.com/BonaBeavis/tree-sitter-sparql,num_dependents_deps.dev:0 github.com/BonaBeavis/tree-sitter-turtle,num_dependents_deps.dev:0 +github.com/Bonajo/pitest-report-action, github.com/BonchForum/nodebb-plugin-bnch-cards,num_dependents_deps.dev:0 github.com/BonchForum/nodebb-plugin-fix-sound,num_dependents_deps.dev:0 github.com/BondGoat/react-native-hunterslog-media-picker,num_dependents_deps.dev:0 @@ -30893,6 +31587,7 @@ github.com/BoneTM/egg-socket.io, github.com/Bonemind/serverless-vault-vars,num_dependents_deps.dev:0 github.com/Bonerdelli/responsive-buddy,num_dependents_deps.dev:0 github.com/Bonfire/node-tf2-enum,num_dependents_deps.dev:0 +github.com/Bonfire/recent-activity, github.com/Bonfirium/simple-tests, github.com/Bongkai/dream-redux,num_dependents_deps.dev:0 github.com/BongoEADGC6/netwrix-api, @@ -30949,6 +31644,7 @@ github.com/Bonsanto/directed-graph, github.com/Bonsanto/polygon-geohasher, github.com/BontaVlad/DjangoKeyhole, github.com/Bonus05/djangotworm, +github.com/Bonus83/copy_commit_push_tag, github.com/Bonuspunkt/browsermodules,num_dependents_deps.dev:0 github.com/Bonuspunkt/dbfParser,num_dependents_deps.dev:0 github.com/Bonuspunkt/htmldec,num_dependents_deps.dev:0 @@ -31054,6 +31750,7 @@ github.com/Booster2ooo/irc-xdcc-2,num_dependents_deps.dev:0 github.com/Booster2ooo/ixirc,num_dependents_deps.dev:0 github.com/Booster2ooo/subsplease-xdcc-search, github.com/BoosterOfOld/ts-simple-dependency-injector,num_dependents_deps.dev:0 +github.com/Boostport/setup-cloudflare-warp, github.com/Booteille/blynk-cli, github.com/Booteille/blynkcli,num_dependents_deps.dev:0 github.com/Bootjack/asphalt,num_dependents_deps.dev:0 @@ -31065,6 +31762,7 @@ github.com/BootstrapJBPM/jba-cli,num_dependents_deps.dev:0 github.com/Booyaabes/MoeMark,num_dependents_deps.dev:0 github.com/Booyanach/cookie-wrapper,num_dependents_deps.dev:0 github.com/Booyanach/topojson, +github.com/Borales/actions-yarn, github.com/Borales/reactype,num_dependents_deps.dev:0 github.com/Borange/DomClassHelper,num_dependents_deps.dev:0 github.com/Borcuhhha/canvasso,num_dependents_deps.dev:0 @@ -31161,10 +31859,12 @@ github.com/BorisNaguet/solr-maven-plugin,num_dependents_deps.dev:0 github.com/BorisO/tvmaj,num_dependents_deps.dev:0 github.com/BorisOsipov/reportportal-js-client,num_dependents_deps.dev:6 github.com/BorisPlus/otus_webpython_005, +github.com/BorisTestov/tg_sender_action, github.com/BorislavShekerov/lamblin,num_dependents_deps.dev:36 github.com/Borisoid/module_hot_reload, github.com/Borisoid/schedpack, github.com/BorjaG90/lit-modal,num_dependents_deps.dev:0 +github.com/BorjaOuterelo/test-file-system-action, github.com/BorjaRec/gr-pdf-window,num_dependents_deps.dev:0 github.com/Borjagodoy/video-view,num_dependents_deps.dev:0 github.com/Borka223/canvas-gif-encoder,num_dependents_deps.dev:0 @@ -31179,6 +31879,7 @@ github.com/BorntraegerMarc/node-oauth,num_dependents_deps.dev:0 github.com/BorntraegerMarc/pow-mongodb-fixtures,num_dependents_deps.dev:0 github.com/Borodin/russian-requisites-validator,num_dependents_deps.dev:0 github.com/Borodin/sms_ru,num_dependents_deps.dev:0 +github.com/Borodutch/build-and-lint-code, github.com/Boronium/finschool, github.com/Borovensky/ab-class-names,num_dependents_deps.dev:0 github.com/Borovensky/ab-dropdown,num_dependents_deps.dev:0 @@ -31242,6 +31943,7 @@ github.com/BoschSensortec/BMM050_driver,Google github.com/BoschSensortec/BMP280_driver,Google github.com/BoschSensortec/BMP3-Sensor-API,Google github.com/BoschSensortec/BNO055_driver,Google +github.com/BoscoDomingo/jira-issue-in-description-action, github.com/Boscop/diesel-geography,num_dependents_deps.dev:0 github.com/Boscop/web-view,"criticality_score:0.415850,num_dependents_deps.dev:16" github.com/BoseCorp/BoseBMAP-iOS,Google @@ -31338,6 +32040,7 @@ github.com/Bottelet/DaybydayCRM,criticality_score:0.390120 github.com/Bottersnike/mdapi, github.com/Bottersnike/snake, github.com/Bottersnike/whileland, +github.com/BottleCapTechnology/yetto-actions, github.com/BottleRocketStudios/ng-momentum,num_dependents_deps.dev:0 github.com/Bottr-js/Bottr,num_dependents_deps.dev:0 github.com/Bottr-js/Bottr-Apiai,num_dependents_deps.dev:0 @@ -31382,12 +32085,22 @@ github.com/Boulangerie/tslint-presets,num_dependents_deps.dev:0 github.com/Boulder-Investment-Technologies/lppls, github.com/Boulevard/sortable,num_dependents_deps.dev:0 github.com/Boulevard/vampire,num_dependents_deps.dev:0 +github.com/Bounceapp/render-action, github.com/Bounced-Inc/accelerator-textchat-js,num_dependents_deps.dev:0 github.com/Bounced-Inc/bounce-in-style, github.com/Bounced-Inc/mongoose-tsgen,num_dependents_deps.dev:0 github.com/Bouncey/react-freecodecamp-search,num_dependents_deps.dev:0 github.com/BouncingPixel/node-packages,num_dependents_deps.dev:0 github.com/BouncyBird/ezsend, +github.com/BoundfoxStudios/action-gource, +github.com/BoundfoxStudios/action-hugo-link-check, +github.com/BoundfoxStudios/action-import-signing-certificate, +github.com/BoundfoxStudios/action-set-text-output, +github.com/BoundfoxStudios/action-unassign-contributor-after-days-of-inactivity, +github.com/BoundfoxStudios/action-write-file, +github.com/BoundfoxStudios/action-xcode-notarize, +github.com/BoundfoxStudios/action-xcode-select, +github.com/BoundfoxStudios/action-xcode-staple, github.com/BoundlessCode/packman,num_dependents_deps.dev:0 github.com/Bounteous-Inc/gridsome-source-moltin, github.com/Bounteous-Inc/gridsome-source-plugin,num_dependents_deps.dev:0 @@ -31476,9 +32189,12 @@ github.com/BozhongFE/bz-jsonp,num_dependents_deps.dev:0 github.com/Bpazy/Id,num_dependents_deps.dev:0 github.com/Bpazy/cqjavaapi,num_dependents_deps.dev:0 github.com/Bpazy/ding-appender,num_dependents_deps.dev:0 +github.com/Bpazy/issue-blog-action, github.com/Bpazy/poibrary,num_dependents_deps.dev:0 +github.com/Bpazy/setup-git-chglog, github.com/Bpazy/zhuzhu,num_dependents_deps.dev:0 github.com/Bpless/shellstream, +github.com/Bpolitycki/setup-xmllint-action, github.com/Br34th7aking/Pathomap, github.com/BrOrlandi/big-text.js,num_dependents_deps.dev:0 github.com/BrOrlandi/faustao-errou, @@ -31564,6 +32280,7 @@ github.com/Braincoke/gridsome-plugin-remark-mermaid,num_dependents_deps.dev:0 github.com/BraindeadCrew/java-websocket,num_dependents_deps.dev:0 github.com/BraindeadCrew/java-websocket-client,num_dependents_deps.dev:1 github.com/BraindeadCrew/java-websocket-server,num_dependents_deps.dev:0 +github.com/Braineanear/gcp-storage-download, github.com/Brainfock/Brainfock,num_dependents_deps.dev:0 github.com/BrainiumLLC/cargo-mobile,criticality_score:0.335330 github.com/BrainiumLLC/display-link,num_dependents_deps.dev:11 @@ -31632,6 +32349,7 @@ github.com/BranchMetrics/web-branch-deep-linking-attribution,criticality_score:0 github.com/BranchScope/porcodio, github.com/BrancoLab/brainrender, github.com/BrancoLab/imgreg2D, +github.com/Brand-Boosting-GmbH/shopify-theme-preview, github.com/Brand039/generator-slamp,num_dependents_deps.dev:0 github.com/BrandEmbassy/publishing-calendar,num_dependents_deps.dev:0 github.com/BrandExtract/jquerytools,num_dependents_deps.dev:0 @@ -31651,6 +32369,7 @@ github.com/BrandedNomad/npm-package-servermetric,num_dependents_deps.dev:0 github.com/BrandedNomad/npm-package-simplecalc,num_dependents_deps.dev:0 github.com/Branderstudio/brander-gulp-tasks,num_dependents_deps.dev:0 github.com/Branderstudio/eslint-config-brander,num_dependents_deps.dev:0 +github.com/BrandgrandRealMe/github-activity-readme, github.com/Brandhsu/tfcaidm, github.com/Brandon-Martini/forca-forms-react,num_dependents_deps.dev:0 github.com/Brandon9598/cvlc_player,num_dependents_deps.dev:0 @@ -31753,6 +32472,7 @@ github.com/BraveyJS/Bravey,num_dependents_deps.dev:0 github.com/Bravo123/vue-picker,num_dependents_deps.dev:0 github.com/Bravo13/paymaster,num_dependents_deps.dev:0 github.com/Bravobit/scss-starter,num_dependents_deps.dev:0 +github.com/Braweria/aoc-widget-data-generator, github.com/BrayOOi/palidrome_module,num_dependents_deps.dev:0 github.com/BrayanLP/ng-payment-card,num_dependents_deps.dev:0 github.com/BrayanLP/react-multiple-component-lp,num_dependents_deps.dev:0 @@ -31783,6 +32503,8 @@ github.com/BreakTheMonolith/btm-DropwizardHealthChecks,num_dependents_deps.dev:0 github.com/Breaka84/Spooq, github.com/Breakend/experiment-impact-tracker, github.com/BreakingBytes/UncertaintyWrapper, +github.com/Breakstep-Studios/unity-mobile-build-number-bumper, +github.com/Breakstep-Studios/unity-project-settings-info, github.com/Breakthrough-Energy/PostREISE, github.com/Breakthrough-Energy/PowerSimData, github.com/Breakthrough-Energy/fs-azureblob, @@ -31847,6 +32569,7 @@ github.com/Bremys/TestNpmPublish,num_dependents_deps.dev:0 github.com/Bren2010/caesar,num_dependents_deps.dev:0 github.com/Bren2010/cf-access-jwt, github.com/BrenPatF/trapit_nodejs_tester,num_dependents_deps.dev:0 +github.com/Brend-Smits/retrieve-github-sbom-action, github.com/BrendanBall/root-insurance-python, github.com/BrendanCannell/dysc,num_dependents_deps.dev:0 github.com/BrendanCannell/lowlife,num_dependents_deps.dev:0 @@ -31888,6 +32611,7 @@ github.com/Brett55/sns_test, github.com/BrettBlox/eslint-config-brettblox,num_dependents_deps.dev:0 github.com/BrettCleary/SeqNN, github.com/BrettDMiddleton/event_tick_example,num_dependents_deps.dev:0 +github.com/BrettDong/setup-sdl2-frameworks, github.com/BrettIRL/vue-cover-video,num_dependents_deps.dev:0 github.com/BrettMN/eleventy-plugin-feeds,num_dependents_deps.dev:0 github.com/BrettMN/eleventy-plugin-wipdeveloper-tools,num_dependents_deps.dev:0 @@ -31926,6 +32650,7 @@ github.com/Brian-Williams/acceptanceutils, github.com/Brian-Williams/actagm, github.com/Brian-Williams/actappliance, github.com/Brian-Williams/bitpermissions, +github.com/Brian-Williams/issue-action, github.com/Brian-Williams/python-licenser, github.com/Brian-Williams/robotframework-testlink, github.com/Brian-Williams/robottools, @@ -31944,6 +32669,7 @@ github.com/BrianArbuckle/sunriset, github.com/BrianAronson/birankr, github.com/BrianBelhumeur/node-express-json-rpc2,num_dependents_deps.dev:0 github.com/BrianBunker/grunt-se-launch,num_dependents_deps.dev:0 +github.com/BrianCArnold/RequireUserApproval, github.com/BrianChevalier/mechDraw, github.com/BrianCraig/react-constraint,num_dependents_deps.dev:0 github.com/BrianCraig/vps,num_dependents_deps.dev:0 @@ -31974,7 +32700,9 @@ github.com/BrianMWest/ogmo-rs,num_dependents_deps.dev:0 github.com/BrianMacIntosh/alexa-skill-test-framework,num_dependents_deps.dev:0 github.com/BrianMargolis/AudAugio, github.com/BrianMitchL/gift-exchange,num_dependents_deps.dev:0 +github.com/BrianMitchL/pr-chatter-action, github.com/BrianMitchL/yeehaw-matcher,num_dependents_deps.dev:0 +github.com/BrianPugh/install-micropython, github.com/BrianPugh/lox, github.com/BrianPugh/pugh_torch, github.com/BrianRosamilia/vue-crono,num_dependents_deps.dev:0 @@ -32249,6 +32977,7 @@ github.com/BrijeshShiroya/RNStructure,num_dependents_deps.dev:0 github.com/BrijeshShiroya/TestDemo,num_dependents_deps.dev:0 github.com/Brijeshkrishna/gunlink, github.com/Brijeshkrishna/mydog, +github.com/Brikaa/contributions-getter-actions, github.com/BrikerMan/BMPlayer,criticality_score:0.323470 github.com/BrikerMan/Kashgari,criticality_score:0.416420 github.com/Brikl/apollo-server, @@ -32478,6 +33207,7 @@ github.com/Bruce-zxy/is-empty,num_dependents_deps.dev:0 github.com/Bruce-zxy/which-type,num_dependents_deps.dev:0 github.com/Bruce12/grunt-autover, github.com/Bruce17/dependable,num_dependents_deps.dev:2 +github.com/Bruce17/ghaction-package-latest-version, github.com/Bruce17/node-redis-rpc,num_dependents_deps.dev:0 github.com/Bruce17/safe-compare,num_dependents_deps.dev:130 github.com/Bruce2107/anibook,num_dependents_deps.dev:0 @@ -32517,6 +33247,7 @@ github.com/Brugarolas/vuesax,num_dependents_deps.dev:0 github.com/BrugesDevs/openinghours,num_dependents_deps.dev:0 github.com/Bruham1/bigcummies, github.com/BrunaCriscuolo/design-system-UI,num_dependents_deps.dev:0 +github.com/Brune04/update-updates-release-channel-expo-plist-action, github.com/BruneXX/ngx-file-uploader,num_dependents_deps.dev:0 github.com/BruneXX/ngx-universal,num_dependents_deps.dev:0 github.com/BruneXX/ngxc-connection-service,num_dependents_deps.dev:0 @@ -32643,6 +33374,7 @@ github.com/BryanHunt/ember-split-view,num_dependents_deps.dev:0 github.com/BryanMedinaG/Node.JS,num_dependents_deps.dev:0 github.com/BryanSaxon/hubot-urban-dictionary,num_dependents_deps.dev:0 github.com/BryanSaxon/openvidu-ruby-client,num_dependents_deps.dev:0 +github.com/BryanSchuetz/jekyll-deploy-gh-pages, github.com/BryanSer/BrAPI,num_dependents_deps.dev:0 github.com/BryanWilhite/songhay-core,num_dependents_deps.dev:0 github.com/BryanWilhite/songhay-ng-workspace,num_dependents_deps.dev:0 @@ -32657,10 +33389,13 @@ github.com/BryceDaly/servify.js,num_dependents_deps.dev:0 github.com/BryceHQ/es3ify-webpack-plugin,"num_dependents_deps.dev:12,num_dependents_deps.dev:0" github.com/BryceMehring/gh-pages-deploy,num_dependents_deps.dev:0 github.com/BryceMehring/rollup-plugin-off-main-thread-es,num_dependents_deps.dev:0 +github.com/BrycensRanch/read-properties-action, github.com/Brydom/react-carbon,num_dependents_deps.dev:0 github.com/BryggansBryggeri/brew_calculator,num_dependents_deps.dev:0 +github.com/Brymastr/pr-info-action, github.com/Brymastr/serverless-base64-encode-env-vars, github.com/Brymastr/serverless-plugin-encode-env-var-objects,num_dependents_deps.dev:0 +github.com/Brymastr/slack-action, github.com/BrynCooke/cdi-unit,num_dependents_deps.dev:14 github.com/BrynCooke/fluent-json,num_dependents_deps.dev:1 github.com/BrynCooke/totorom,num_dependents_deps.dev:0 @@ -32739,6 +33474,7 @@ github.com/BubbleBear/graphql-module-loader,num_dependents_deps.dev:0 github.com/BubbleBear/lazy-await,num_dependents_deps.dev:0 github.com/BubbleBear/list2csv,num_dependents_deps.dev:0 github.com/BubbleM/plugin-proxy,num_dependents_deps.dev:0 +github.com/BubbleProd/discord-webhook-notify, github.com/BubbleTeam/durian,num_dependents_deps.dev:0 github.com/BubbleTeam/osmanthus,num_dependents_deps.dev:0 github.com/BubbleTeam/persimmon,num_dependents_deps.dev:0 @@ -32797,6 +33533,7 @@ github.com/Buddhalow/django-serialify, github.com/Buddhalow/react-native-equalizer, github.com/Buddhalow/react-native-number-enumerator, github.com/BuddhiD-Workaholic/WinPkg_Installer, +github.com/BuddhikaGeasman/which-files-changed, github.com/Buddhilive/Electron-Browser,num_dependents_deps.dev:0 github.com/Buddhilive/archivo-elements,num_dependents_deps.dev:0 github.com/Buddhilive/bl-elements,num_dependents_deps.dev:0 @@ -32906,6 +33643,7 @@ github.com/BuildItNow/BINACK,num_dependents_deps.dev:0 github.com/BuildItNow/bitnow-cli,num_dependents_deps.dev:0 github.com/BuildItNow/servkit,num_dependents_deps.dev:0 github.com/BuildOnBSV/loggeru,num_dependents_deps.dev:0 +github.com/BuildPC/rsync-with-ssh-github-actions, github.com/BuildSeash/overlord, github.com/BuildTeamDev/buildteam-asset-price,num_dependents_deps.dev:0 github.com/BuildTeamDev/dsteem-pool,num_dependents_deps.dev:0 @@ -32957,7 +33695,11 @@ github.com/Bulliby/js-lib,num_dependents_deps.dev:0 github.com/BulloRosso/isoplant,num_dependents_deps.dev:0 github.com/BulloRosso/line-health,num_dependents_deps.dev:0 github.com/Bullrich/Unity-Assembly-Debugger,num_dependents_deps.dev:0 +github.com/Bullrich/commit-autotag, +github.com/Bullrich/compare-version-on-action, +github.com/Bullrich/generate-release-changelog, github.com/Bullrich/sheets-to-array-of-objects,num_dependents_deps.dev:0 +github.com/Bullrich/update-node-scoped-dependencies, github.com/BulmaBuildingBlocks/BulmaBuildingBlocks, github.com/BulmaTemplates/bulma-templates,criticality_score:0.341360 github.com/BuluBox/recharge-api, @@ -33004,6 +33746,7 @@ github.com/Bunogi/cargo-makedocs,num_dependents_deps.dev:0 github.com/Bunogi/darkredis,num_dependents_deps.dev:2 github.com/BunqCommunity/BunqJSClient,num_dependents_deps.dev:0 github.com/BunqCommunity/bunqDesktopTemplates,num_dependents_deps.dev:0 +github.com/Bunyod545/SB.SftpDeployAction, github.com/Buom01/opengraph-metadata-parser, github.com/BuongiornoTexas/rsrtools, github.com/BuoyHealth/symptomcss,num_dependents_deps.dev:0 @@ -33048,6 +33791,7 @@ github.com/BurhanCabiroglu/Barracuda, github.com/Buried-In-Code/Painted-Logger, github.com/Buried-In-Code/Simyan, github.com/Buried-In-Code/file-format, +github.com/Buried-In-Code/gradle-version-bump-action, github.com/BurizaDo/checkParam,num_dependents_deps.dev:0 github.com/Burke9077/passport-office365-oauth2,num_dependents_deps.dev:0 github.com/BurkeHolland/nativescript-lan-scan, @@ -33062,6 +33806,7 @@ github.com/BurnaSmartLab/osjs-grafana-widget,num_dependents_deps.dev:0 github.com/BurnaSmartLab/osjs-monster-adapter,num_dependents_deps.dev:0 github.com/BurnaSmartLab/osjs-office-collabora,num_dependents_deps.dev:0 github.com/BurnedBed/apitube,num_dependents_deps.dev:0 +github.com/Burnett01/actions-drawio, github.com/Burnett01/c2b-session,num_dependents_deps.dev:0 github.com/Burnett01/extended-request,num_dependents_deps.dev:0 github.com/Burnett01/fs-capture,num_dependents_deps.dev:0 @@ -33069,6 +33814,7 @@ github.com/Burnett01/node-moco,num_dependents_deps.dev:0 github.com/Burnett01/node-passwd,num_dependents_deps.dev:0 github.com/Burnett01/paypal-basket,num_dependents_deps.dev:0 github.com/Burnett01/react-state-validator,num_dependents_deps.dev:0 +github.com/Burnett01/rsync-deployments, github.com/Burnett01/sys-api,num_dependents_deps.dev:0 github.com/BurningCircle/customizable-toast,num_dependents_deps.dev:0 github.com/BurningFlipside/FlipsideJS,num_dependents_deps.dev:0 @@ -33159,6 +33905,7 @@ github.com/BusinessOptics/fn_deps, github.com/BusinessOptics/fn_graph, github.com/BusinessOptics/fn_graph_studio, github.com/Businessmancps/mymodules,num_dependents_deps.dev:0 +github.com/BusseBu/comment-on-push, github.com/BustedTees/teepublic-react,num_dependents_deps.dev:0 github.com/BusyHe/kutils,num_dependents_deps.dev:0 github.com/BusyHe/wfe-cli,num_dependents_deps.dev:0 @@ -33178,6 +33925,9 @@ github.com/ButsAndCats/limelight,num_dependents_deps.dev:0 github.com/ButterAndButterfly/H-breaker, github.com/ButterCMS/gatsby-source-buttercms,num_dependents_deps.dev:0 github.com/ButterCMS/gridsome-source-buttercms,num_dependents_deps.dev:0 +github.com/ButterCam/secret-dispatcher, +github.com/ButterCam/setup-github-cli, +github.com/ButterCam/setup-sisyphus-build, github.com/ButterFaces/ButterFaces,num_dependents_deps.dev:49 github.com/ButterUI/ButterSlideToggle,num_dependents_deps.dev:0 github.com/Butterblume654/wavesurfer.js, @@ -33268,6 +34018,8 @@ github.com/Bwca/print-form-field-component,num_dependents_deps.dev:0 github.com/Bwca/property-string-path,num_dependents_deps.dev:0 github.com/Bwen/NoobConfig, github.com/Bwen/NoobHTTP, +github.com/Bwen/action-ghp-sync, +github.com/Bwvolleyball/k8s-toolkit, github.com/Bxiaoyao/learnnode,num_dependents_deps.dev:0 github.com/By-Meteora/Atoms,num_dependents_deps.dev:0 github.com/By-Meteora/cert,num_dependents_deps.dev:0 @@ -33302,6 +34054,7 @@ github.com/ByeongGi/ng-builder-markdown, github.com/Byhiras/pyavroc, github.com/BykovDenis/date-picker-material-ui,num_dependents_deps.dev:0 github.com/BykovDenis/react-dsbykov-components,num_dependents_deps.dev:0 +github.com/Byloth/docker-setup-action, github.com/Byloth/eslint-config,num_dependents_deps.dev:0 github.com/Byloth/html-element-style,num_dependents_deps.dev:0 github.com/Byloth/vue-scroll-animator,num_dependents_deps.dev:0 @@ -33413,6 +34166,7 @@ github.com/BytesClub/MIPS-Simulator,num_dependents_deps.dev:0 github.com/BytesClub/MIPS-Stimulator,num_dependents_deps.dev:0 github.com/BytesClub/ghb, github.com/BytesClub/ght,num_dependents_deps.dev:0 +github.com/BytesCo/s3-sync-action, github.com/BytesToBits/Cordy, github.com/Bytesu/summernote,num_dependents_deps.dev:0 github.com/BytewaveMLP/node-derpi,num_dependents_deps.dev:0 @@ -33545,6 +34299,7 @@ github.com/C4mz0r/quickstrings,num_dependents_deps.dev:0 github.com/C4ptainCrunch/django-semantic-mediawiki, github.com/C4ptainCrunch/ics.py,criticality_score:0.380180 github.com/C4ptainCrunch/libulb, +github.com/C52866/at-secret-server-workflow-action, github.com/C5T/Current,num_dependents_deps.dev:0 github.com/C5m7b4/c5-basic-array-module,num_dependents_deps.dev:0 github.com/C5m7b4/c5-random-string-module,num_dependents_deps.dev:0 @@ -33719,6 +34474,7 @@ github.com/CCC-NULS/nuls-js, github.com/CCC-NULS/nulsjs,num_dependents_deps.dev:0 github.com/CCC-S/cjs_fdc, github.com/CCC1024/js-app-parser,num_dependents_deps.dev:0 +github.com/CCCC-L/Action-Ahk2Exe, github.com/CCColda/discord.js-form,num_dependents_deps.dev:0 github.com/CCDirectLink/modloader,num_dependents_deps.dev:0 github.com/CCEG-Blockchain-UN-Lab/upgradeable-proxy,num_dependents_deps.dev:0 @@ -33805,6 +34561,7 @@ github.com/CDLuminate/tq, github.com/CDMSmith/express-graphql,num_dependents_deps.dev:0 github.com/CDMSmith/graphiql,num_dependents_deps.dev:0 github.com/CDNDragoon/Lotide, +github.com/CDNievas/heroku-action, github.com/CDNsun/cdn-api-client-ruby,num_dependents_deps.dev:0 github.com/CDPTechnologies/PythonCDPClient, github.com/CDRayn/binny,num_dependents_deps.dev:0 @@ -33912,6 +34669,7 @@ github.com/CEWendel/SWTableViewCell,criticality_score:0.354570 github.com/CEXMiguelAngel/react-native-input-prompt-cex,num_dependents_deps.dev:0 github.com/CEXMiguelAngel/rn-apple-healthkit-cex,num_dependents_deps.dev:0 github.com/CEbbinghaus/VSquite,num_dependents_deps.dev:0 +github.com/CEnnis91/action-ahk2exe, github.com/CExAGupta/test1,num_dependents_deps.dev:0 github.com/CExBBartolome/fauxql,num_dependents_deps.dev:0 github.com/CExBBartolome/safe-err,num_dependents_deps.dev:0 @@ -33952,6 +34710,7 @@ github.com/CFormen3000/dorami,num_dependents_deps.dev:0 github.com/CFormen3000/dream.log,num_dependents_deps.dev:0 github.com/CFourPO/ts-swapi,num_dependents_deps.dev:0 github.com/CG1507/quickcnn, +github.com/CGA1123/dependabot-lein-runner, github.com/CGAL/cgal,criticality_score:0.730800 github.com/CGATOxford/UMI-tools,criticality_score:0.454910 github.com/CGArtPython/bpy_building_blocks, @@ -34156,6 +34915,8 @@ github.com/CKVB/Tic-Tac-Toe, github.com/CKWC/passport-doximity,num_dependents_deps.dev:0 github.com/CKarper/mysam-threelaws,num_dependents_deps.dev:0 github.com/CKing/node-ts3query,num_dependents_deps.dev:0 +github.com/CKrowiorsch/github-action-releasemail, +github.com/CKylinMC/minio-upload-action, github.com/CL-Jeremy/mirai-twitter-bot,num_dependents_deps.dev:0 github.com/CL-Kyiv/jira-migration-tool,num_dependents_deps.dev:0 github.com/CLANNADAIR/JMDeviceWifiActivator,num_dependents_deps.dev:0 @@ -34324,6 +35085,7 @@ github.com/CNN-Labs/cnn-metrics,num_dependents_deps.dev:0 github.com/CNUCSE-Team2/InSearch, github.com/CNWHZQ/svg2wxss,num_dependents_deps.dev:0 github.com/CNZN/k-r-cli,num_dependents_deps.dev:0 +github.com/CNimmo16/php-test-only-changed, github.com/CNlong-Py/Pythonlibrarty, github.com/CNuge/alfie, github.com/CNugteren/CLBlast,criticality_score:0.473250 @@ -34386,6 +35148,7 @@ github.com/COMBINE-lab/RapClust, github.com/COMBINE-lab/pyroe, github.com/COMBINE-lab/salmon,criticality_score:0.542830 github.com/COMOKIT/comokit4py, +github.com/COMPEON/deploy-s3, github.com/COMPEON/monthpicker,num_dependents_deps.dev:0 github.com/COMPEON/translated-components,num_dependents_deps.dev:0 github.com/COMPFEST/eslint-plugin-compfest,num_dependents_deps.dev:0 @@ -34424,6 +35187,8 @@ github.com/CONST8/constate-rn-ts,num_dependents_deps.dev:0 github.com/COOC-CMM/cmm,num_dependents_deps.dev:0 github.com/CORBmx/angular-form-persistence,num_dependents_deps.dev:0 github.com/CORBmx/react-native-openpay, +github.com/CORDEA/days-off-action, +github.com/CORDEA/youtrack-script-action, github.com/CORE-GATECH-GROUP/serpent-tools, github.com/COREtxt/hundate-core, github.com/COTEP-DEV/role-and-task,num_dependents_deps.dev:0 @@ -34469,6 +35234,7 @@ github.com/CQCL/pypig, github.com/CQCL/pytket-extensions, github.com/CQCL/simplex, github.com/CQKM/RN-Swiper,num_dependents_deps.dev:0 +github.com/CQLabs/setup-dcm, github.com/CQQL/rfc6902-json-diff-js,"num_dependents_deps.dev:0,num_dependents_deps.dev:2" github.com/CQU-AI/DrcomExecutor, github.com/CQU-AI/ML-Algorithm, @@ -34588,6 +35354,7 @@ github.com/CSLukeW/MLProto, github.com/CSLukeW/StockerMake, github.com/CSML-by-Clevy/csml-engine,"criticality_score:0.344530,num_dependents_deps.dev:0" github.com/CSML-by-Clevy/csml-interpreter,num_dependents_deps.dev:0 +github.com/CSML-by-Clevy/csml-studio-sync-action, github.com/CSNW/d3-composer,num_dependents_deps.dev:0 github.com/CSNW/d3.compose,num_dependents_deps.dev:0 github.com/CSNW/node-new-freshbooks,num_dependents_deps.dev:0 @@ -34623,6 +35390,7 @@ github.com/CSSSR-School/junior-course-product-card,num_dependents_deps.dev:0 github.com/CSSSR/dsgen,num_dependents_deps.dev:0 github.com/CSSSR/e2e-tools,num_dependents_deps.dev:0 github.com/CSSSR/eslint-config-core,num_dependents_deps.dev:0 +github.com/CSSSR/fundoc-action, github.com/CSSSR/gulp-plumber-error-handler,num_dependents_deps.dev:0 github.com/CSSSR/jade-get-data,num_dependents_deps.dev:0 github.com/CSSSR/jade-injected,num_dependents_deps.dev:0 @@ -34637,10 +35405,12 @@ github.com/CSTARS/poplar-3pg-model,num_dependents_deps.dev:0 github.com/CSTLeagueORG/MockMongoose,num_dependents_deps.dev:0 github.com/CSTLeagueORG/Mockgoose,num_dependents_deps.dev:0 github.com/CSTR-Edinburgh/merlin,criticality_score:0.336090 +github.com/CSUSTers/push-to-registry, github.com/CSXbot/efacter, github.com/CSantosM/cordova-plugin-veriff,num_dependents_deps.dev:0 github.com/CSberger/cra-template-redux, github.com/CSchoel/nolds, +github.com/CSchoel/release-notes-from-changelog, github.com/CSdare/woven-js,num_dependents_deps.dev:0 github.com/CSdare/woven-loader,num_dependents_deps.dev:0 github.com/CSeal/my-test-repo,num_dependents_deps.dev:0 @@ -34697,7 +35467,11 @@ github.com/CTred/fuzzy-machines, github.com/CTres/machinepack-facebookads, github.com/CTumminaro/ui-me,num_dependents_deps.dev:0 github.com/CTzhida/czd-gulp-cli,num_dependents_deps.dev:0 +github.com/CUBE-CONSULTANTS/cf-deploy, github.com/CUBETIQ/excel2json,num_dependents_deps.dev:0 +github.com/CUBETIQ/starter-docker-actions, +github.com/CUBETIQ/starter-docker-openjdk-actions, +github.com/CUBETIQ/starter-docker-yarn-actions, github.com/CUBETRAIN/seatjs,num_dependents_deps.dev:0 github.com/CUBRID/cubrid-ruby,num_dependents_deps.dev:0 github.com/CUBoulder-OIT/signalvine-sdk, @@ -34710,6 +35484,9 @@ github.com/CUUATS/geojson-vt-py, github.com/CUUATS/webmapgl,num_dependents_deps.dev:0 github.com/CVC4/CVC4,criticality_score:0.615450 github.com/CVCalendar/CVCalendar,criticality_score:0.343540 +github.com/CVEDB/codeql-csv, +github.com/CVELab/actions, +github.com/CVELab/deploy-gh-pages, github.com/CVUA-RRW/taxidTools, github.com/CVarisco/CLog.js,num_dependents_deps.dev:0 github.com/CVarisco/create-component-app,num_dependents_deps.dev:0 @@ -34834,9 +35611,11 @@ github.com/Cacti/cacti,criticality_score:0.729330 github.com/Cactice/react-native-rapid-api,num_dependents_deps.dev:0 github.com/CactiveNetwork/Xeno-Framework,num_dependents_deps.dev:0 github.com/CactusTechnologies/cactus-utils,num_dependents_deps.dev:0 +github.com/CactusZ/linear-mutate-issues, github.com/CadQuery/cadquery,criticality_score:0.542410 github.com/CadWalaDers/timeFun,num_dependents_deps.dev:0 github.com/Cadair/giles, +github.com/Cadair/matrix-notify-action, github.com/Cadair/matrix_api_async, github.com/Cadair/openenergymonitor_thermostat, github.com/Cadasta/cadasta-workertoolbox, @@ -34895,6 +35674,9 @@ github.com/Cahmoraes/simple-decorator,num_dependents_deps.dev:0 github.com/Cahmoraes/simple-immuter,num_dependents_deps.dev:0 github.com/Cai-Lab-at-University-of-Michigan/nGauge, github.com/CaiJimmy/hugo-theme-stack,criticality_score:0.407720 +github.com/CaiJingLong/action-org-repo-list, +github.com/CaiJingLong/action-version-merge, +github.com/CaiJingLong/action_auto_label, github.com/CaiJingLong/flutter_photo_manager,criticality_score:0.448140 github.com/CaiWenlie/bundler, github.com/CaiWenlie/sky-watch-js,num_dependents_deps.dev:0 @@ -34940,6 +35722,8 @@ github.com/Caivy/fb-sdk-py, github.com/Cajal/LabelOps, github.com/Cakaaa/cordova-plugin-firebase,num_dependents_deps.dev:0 github.com/Cakasim/js-smart-results, +github.com/CakeCrusher/hello-world-docker-action, +github.com/CakeCrusher/todoChatgptPlugin, github.com/CakeDC/migrations,criticality_score:0.404440 github.com/CakeDC/search,criticality_score:0.345760 github.com/CakeDC/users,criticality_score:0.619400 @@ -35067,6 +35851,8 @@ github.com/Caligone/hapio,num_dependents_deps.dev:0 github.com/Caligone/machinepack-pushnotifications,num_dependents_deps.dev:0 github.com/CalinLeafshade/brand-colors-es6,num_dependents_deps.dev:0 github.com/CalinR/ShopifyImporter,num_dependents_deps.dev:0 +github.com/CalinRadoni/esp-idf-v4-action, +github.com/CalinRadoni/esp-idf-v4-container-action, github.com/CalinaCristian/source-from-vercel-deployment,num_dependents_deps.dev:0 github.com/CalinaCristian/source-from-zeit-deployment,num_dependents_deps.dev:0 github.com/Calinou/awesome-gamedev,criticality_score:0.350500 @@ -35093,11 +35879,14 @@ github.com/CallanHP/accs-cache-handler,num_dependents_deps.dev:0 github.com/CallanHP/accs-events,num_dependents_deps.dev:0 github.com/CallanHP/idcs-express-token-validator,num_dependents_deps.dev:0 github.com/CallbacKiran/tsxp,num_dependents_deps.dev:0 +github.com/CallePuzzle/envvar-to-dotenv-action, +github.com/CallePuzzle/terraform-orchestration-action, github.com/CalledByThe4ire/project-lvl1-s412,num_dependents_deps.dev:0 github.com/Callidon/bloom-filters,num_dependents_deps.dev:10 github.com/Callidon/pyHDT, github.com/Callidon/pyOTTR, github.com/Callidon/sage-client,num_dependents_deps.dev:0 +github.com/Callidon/setup-hdt-action, github.com/Callidon/sparql-engine,num_dependents_deps.dev:6 github.com/Callidon/sparqljs-legacy-type,num_dependents_deps.dev:0 github.com/Callidon/toy-peers,num_dependents_deps.dev:0 @@ -35114,6 +35903,8 @@ github.com/CallumHoughton18/shopping-list-generator, github.com/CallumJHays/machinevision-toolbox-python.phone-sensor, github.com/CallumJHays/mathpad, github.com/CallumL1009/lolapi, +github.com/CallumMackenzie/latest-lambda-layer-action, +github.com/CallumMackenzie/trim-lambda-layers-action, github.com/CallumRai/Radium-Tech, github.com/CallyWally12/INSECT,num_dependents_deps.dev:0 github.com/CallyWally12/INSECT_JSON,num_dependents_deps.dev:0 @@ -35130,6 +35921,7 @@ github.com/CalmDownVal/master-logger, github.com/CalmDownVal/mc-rcon, github.com/CalmDownVal/predux, github.com/CalmDownVal/signal,num_dependents_deps.dev:1 +github.com/CalmDownVal/webhook-summary, github.com/Calme1709/Configs,num_dependents_deps.dev:0 github.com/Calme1709/NodeJS-Windows-Services-Controller,num_dependents_deps.dev:0 github.com/Calme1709/PleskApi,num_dependents_deps.dev:0 @@ -35179,6 +35971,9 @@ github.com/Calvin-LL/webpack-sharp-loader, github.com/Calvin-Xu/mach3-cli, github.com/Calvin92/react-native-sticky-search-list,num_dependents_deps.dev:0 github.com/Calvin92/react-style-object-to-css,num_dependents_deps.dev:10 +github.com/CalvinAllen/action-vs-marketplace-publish, +github.com/CalvinAllen/action-vs-vsix-signer, +github.com/CalvinAllen/action-vs-vsix-versioner, github.com/CalvinE/simple-jwt,num_dependents_deps.dev:0 github.com/CalvinE/simple-ui-router,num_dependents_deps.dev:0 github.com/CalvinHong/wepy-com-charts,num_dependents_deps.dev:0 @@ -35346,6 +36141,7 @@ github.com/CamilleAbella/make-bot.ts,num_dependents_deps.dev:0 github.com/CamilleAbella/p5-utils,num_dependents_deps.dev:0 github.com/CamilleMo/SuperSight, github.com/CamiloCastellanos/PrimeraLibreriaPY, +github.com/CamiloGarciaLaRotta/watermelon-http-client, github.com/CamiloMM/autoincrement,num_dependents_deps.dev:0 github.com/CamiloMM/avisynth,num_dependents_deps.dev:0 github.com/CamiloTD/-unete-cli-typescript,num_dependents_deps.dev:0 @@ -35460,6 +36256,7 @@ github.com/CanalTP/typed_index_collection,num_dependents_deps.dev:1 github.com/CanardMandarin/csp-bypass,num_dependents_deps.dev:0 github.com/Canardoux/tau,"criticality_score:0.538070,num_dependents_deps.dev:0" github.com/Canary2000/allocloud.js,num_dependents_deps.dev:0 +github.com/CanarysAutomations/pr-update-work-item-state, github.com/CanberraUAV/cuav, github.com/Canciller/dobresoft-autumn-sap-service,num_dependents_deps.dev:0 github.com/Candice0718/AUTOMATIC-WEBPACK-PLUGIN,num_dependents_deps.dev:0 @@ -35477,6 +36274,7 @@ github.com/CandleLibrary/uri,num_dependents_deps.dev:12 github.com/CandleLibrary/wick,num_dependents_deps.dev:110 github.com/Candoris/force-control,num_dependents_deps.dev:0 github.com/Candoris/force-mapper,num_dependents_deps.dev:0 +github.com/Candy-Doc/candy-action, github.com/Candy-Shop-Swap/candy-swap-core,num_dependents_deps.dev:0 github.com/Candy-Shop-Swap/candy-swap-lib, github.com/Candy-Shop-Swap/candy-uikit,num_dependents_deps.dev:0 @@ -35638,6 +36436,7 @@ github.com/CaoMeiYouRen/conventional-changelog-cmyr-config, github.com/CaoMeiYouRen/conventional-changelog-custom-config,num_dependents_deps.dev:0 github.com/CaoMeiYouRen/json5conv-cli,num_dependents_deps.dev:0 github.com/CaoMeiYouRen/node-cq-robot,num_dependents_deps.dev:0 +github.com/CaoMeiYouRen/push-all-in-one-action, github.com/CaoMeiYouRen/safe-json-type,num_dependents_deps.dev:0 github.com/CaoMeiYouRen/safe-json-type-plugin-objectid,num_dependents_deps.dev:0 github.com/CaoMeiYouRen/safe-json-type-plugins,num_dependents_deps.dev:0 @@ -35715,7 +36514,9 @@ github.com/Capgemini-Invent-France/CarbonAI, github.com/CapgeminiInventIDE/doc_loader, github.com/CapgeminiInventIDE/hbase, github.com/Capgop/theta-rpc,num_dependents_deps.dev:0 +github.com/Caphyon/advinst-github-action, github.com/Caphyon/clang-power-tools,criticality_score:0.455820 +github.com/Caphyon/wattspeed-action, github.com/CapitaineKirk/homebridge-InterrupteurSR201,num_dependents_deps.dev:0 github.com/CapitaineToinon/speedrundotcom,num_dependents_deps.dev:0 github.com/Capitains/Hook, @@ -35764,6 +36565,7 @@ github.com/CapricornMale/gitskills,num_dependents_deps.dev:0 github.com/CapsE/HTML-Sync,num_dependents_deps.dev:0 github.com/CapsE/hex,num_dependents_deps.dev:0 github.com/CapsE/single-require, +github.com/CapsLock-Studio/swagger-codegen-action, github.com/Capster/node-shikimori,num_dependents_deps.dev:0 github.com/CapsureIt/uppy-cloudinary,num_dependents_deps.dev:0 github.com/CaptEmulation/clash-of-clans-api,num_dependents_deps.dev:0 @@ -35817,6 +36619,7 @@ github.com/CaptureFastSupport/CaptureFastForRobocorpLibrary, github.com/Capure/create-express-api-ts,num_dependents_deps.dev:0 github.com/Capure/create-ts-boilerplate, github.com/Capure/vulcan-api-js,num_dependents_deps.dev:0 +github.com/CapybaraOrg/capybara-action, github.com/CarGlide/carglide,num_dependents_deps.dev:0 github.com/CarGuo/GSYVideoPlayer,criticality_score:0.498690 github.com/CarMax/react-cursor-zoom, @@ -35830,6 +36633,7 @@ github.com/Caracal-IT/sirius,num_dependents_deps.dev:0 github.com/Caramel/django-viewtracker, github.com/Caramel/treacle, github.com/Caratpine/binks, +github.com/CaravanaCloud/cloud-janitor, github.com/Carbammato/ng-furigana,num_dependents_deps.dev:0 github.com/Carbammato/yang-furigana,num_dependents_deps.dev:0 github.com/Carbdrox/vue-event-bus,num_dependents_deps.dev:0 @@ -35853,6 +36657,7 @@ github.com/CarbonLighthouse/file-strategies, github.com/CarbonLighthouse/redux-svc-client-thunk,num_dependents_deps.dev:0 github.com/CarbonLighthouse/svc-client,num_dependents_deps.dev:0 github.com/CarbonLighthouse/test-props,num_dependents_deps.dev:0 +github.com/CarbonNeuron/GHActionSignHash, github.com/Carbonado/Carbonado,num_dependents_deps.dev:2 github.com/Carbonado/CarbonadoDirmi,num_dependents_deps.dev:0 github.com/Carbonado/CarbonadoSleepycatDB,num_dependents_deps.dev:2 @@ -35883,6 +36688,7 @@ github.com/CardForest/master-class,num_dependents_deps.dev:0 github.com/CardForest/tbs,num_dependents_deps.dev:0 github.com/CardJizzerApp/CardJizzerWrapper,num_dependents_deps.dev:0 github.com/CardJs/CardJs,num_dependents_deps.dev:0 +github.com/CardanoSolutions/gh-action-cardano-node-ogmios-docker-sync, github.com/CardboardIoT/smart-pinhole-workshop,num_dependents_deps.dev:0 github.com/Cardero-X/test-openapi,num_dependents_deps.dev:0 github.com/CardiAP/cardilib, @@ -36202,6 +37008,7 @@ github.com/CarteData/carte-flyover, github.com/Cartegraph/cordova-cookie-master,num_dependents_deps.dev:0 github.com/Cartegraph/cordova-plugin-datepicker,num_dependents_deps.dev:0 github.com/CarterBland/labile,num_dependents_deps.dev:0 +github.com/CarterChen247/version-retriever, github.com/CarterCommunity/Carter,criticality_score:0.420370 github.com/CarterLi/event-bus, github.com/CarterLi/git-repo-info, @@ -36317,14 +37124,19 @@ github.com/CaselIT/jsoon-set-map,num_dependents_deps.dev:0 github.com/Caseproof/metafy,num_dependents_deps.dev:0 github.com/Caserage/bachome,num_dependents_deps.dev:0 github.com/Caseworx/inferno-html5video,num_dependents_deps.dev:0 +github.com/Casey-LBP/hello-world-docker, +github.com/CaseyHillers/actions-flutter-pub-publisher, +github.com/CaseyHofland/docfx-unitypackage, github.com/CaseyLeask/bespoke-theme-blue-sky,num_dependents_deps.dev:0 github.com/CaseyLeeMurphyCricut/angular2-hotkeys,num_dependents_deps.dev:0 github.com/CaseyLeeMurphyCricut/ngx-contextmenu,num_dependents_deps.dev:0 github.com/CaseyQWood/Lotide,num_dependents_deps.dev:0 github.com/CashStar/django-threatmetrix, github.com/CashStory/bob-rpa,num_dependents_deps.dev:0 +github.com/CashStory/commitizen-action-pr, github.com/CashStory/ng2-completer,num_dependents_deps.dev:0 github.com/CashStory/ngx-completer,num_dependents_deps.dev:0 +github.com/CashStory/setup-cd-tools, github.com/Cashmaney/pingscan, github.com/CasonHawley/chawley-js-footer,num_dependents_deps.dev:0 github.com/CasparCG/server,criticality_score:0.643000 @@ -36350,7 +37162,9 @@ github.com/CasperSleep/sassdoc-theme-nightshade,num_dependents_deps.dev:0 github.com/CasperTech/duktype,num_dependents_deps.dev:0 github.com/CasperTech/llsd,num_dependents_deps.dev:0 github.com/CasperTech/node-metaverse,num_dependents_deps.dev:0 +github.com/CasperWA/check-sdist-action, github.com/CasperWA/ipywidgets-extended, +github.com/CasperWA/push-protected, github.com/CasperWA/voila-optimade-client, github.com/Casperd88/react-inject-props-decorator,num_dependents_deps.dev:0 github.com/Casperd88/stylint-loader,num_dependents_deps.dev:0 @@ -36389,6 +37203,7 @@ github.com/CastellaniDavide/settings, github.com/CastellaniDavide/tabular_log, github.com/CastellaniDavide/vtools, github.com/CastellaniDavide/vtoolslan, +github.com/CastellaniDavideTest/draw-export, github.com/Caster22/Id_generator,num_dependents_deps.dev:0 github.com/CastilloGustavo/weblookangular,num_dependents_deps.dev:0 github.com/CastixGitHub/m3u_maker, @@ -36434,7 +37249,11 @@ github.com/Cat66000/ms,num_dependents_deps.dev:0 github.com/Cat7373/mybatis-pager-spring-boot-starter,num_dependents_deps.dev:0 github.com/CatBakun/angular-ckeditor-legacy,num_dependents_deps.dev:8 github.com/CatCanCreate/easy_jaeger, +github.com/CatChen/accept-to-ship-action, github.com/CatChen/browser-id,num_dependents_deps.dev:0 +github.com/CatChen/check-git-status-action, +github.com/CatChen/eslint-suggestion-action, +github.com/CatChen/node-package-release-action, github.com/CatChen/traceurl, github.com/CatChen/versioned-storage,num_dependents_deps.dev:0 github.com/CatCoderr/ArtifactPublisher,num_dependents_deps.dev:0 @@ -36644,6 +37463,8 @@ github.com/CecilJxSu/ObjectIdHexString,num_dependents_deps.dev:0 github.com/CecilLee/jcon, github.com/CecilLee/jregexp, github.com/CecilLee/jsbison, +github.com/Cecilapp/Action, +github.com/Cecilapp/GitHub-Pages-deploy, github.com/Cecilapp/netlify-plugin-cecil-cache,num_dependents_deps.dev:0 github.com/Cecilia1998/my-cli,num_dependents_deps.dev:0 github.com/Cecilxx/big-fetch,num_dependents_deps.dev:0 @@ -36679,6 +37500,8 @@ github.com/Ceerbeerus/pybeerbolaget, github.com/Ceereals/ArgoAPI-NodeJS,num_dependents_deps.dev:0 github.com/Ceicom/ceicom-cli,num_dependents_deps.dev:0 github.com/Ceicom/html_boilerplate,num_dependents_deps.dev:0 +github.com/Cein-Markey/mender-artifact-uploader-action, +github.com/Cein-Markey/mender-deployer-action, github.com/Cein-Markey/roman-numeral-conversion-library,num_dependents_deps.dev:0 github.com/Cejowisz/vue-currency-symbol,num_dependents_deps.dev:0 github.com/Cejowisz/vue-nigeria-states-lgas,num_dependents_deps.dev:0 @@ -36764,6 +37587,7 @@ github.com/Celtian/soccerbot,num_dependents_deps.dev:0 github.com/Celtoys/Remotery,criticality_score:0.375320 github.com/Celty117/rainbow-ui,num_dependents_deps.dev:0 github.com/Cemgoktugsorgun/material-ui-geosuggest,num_dependents_deps.dev:0 +github.com/CemitDigital/trivy-report-issue-action, github.com/CenPc434/java-tools,num_dependents_deps.dev:15 github.com/CenTdemeern1/stdget, github.com/Cenbylin/Python-DBoW3, @@ -36792,6 +37616,7 @@ github.com/CentaurWarchief/react-native-android-sms-listener,num_dependents_deps github.com/CentauroDigital/owl-slider,num_dependents_deps.dev:0 github.com/CenterDevice/bean-bouncer,num_dependents_deps.dev:0 github.com/CenterEdge/runtime-mock-routes, +github.com/CenterEdge/yardarm-action, github.com/CenterForDigitalHumanities/rerum-cloud,num_dependents_deps.dev:0 github.com/CenterForOpenScience/aiohttpretty, github.com/CenterForOpenScience/django-elasticsearch-metrics, @@ -37044,6 +37869,7 @@ github.com/CezaryDanielNowak/next-is.js,num_dependents_deps.dev:0 github.com/CezaryDanielNowak/node-api-cache-proxy,num_dependents_deps.dev:0 github.com/CezaryDanielNowak/protected-require,num_dependents_deps.dev:0 github.com/CezaryDanielNowak/react-doc-generator, +github.com/CezaryTarnowski-TomTom/gha-inject-secrets-into-file, github.com/Cezerin2/client,num_dependents_deps.dev:0 github.com/Cezerin3/Client,num_dependents_deps.dev:0 github.com/Cezille07/overflow-marquee,num_dependents_deps.dev:0 @@ -37052,6 +37878,9 @@ github.com/Cfeusier/general-cluster,num_dependents_deps.dev:0 github.com/Cfeusier/iswear,num_dependents_deps.dev:0 github.com/Cfeusier/remind,num_dependents_deps.dev:0 github.com/Cfeusier/wolfram-alpha-api-js,num_dependents_deps.dev:0 +github.com/CfirTsabari/actions-pipx, +github.com/CfirTsabari/actions-rs-toolchain, +github.com/CfirTsabari/actions-toml2json, github.com/CfireQuants/DataSciPackage, github.com/Cglowicki/lotide,num_dependents_deps.dev:0 github.com/Cguilliman/django-basket, @@ -37266,6 +38095,8 @@ github.com/Chan11/node-yelp-fusion,num_dependents_deps.dev:0 github.com/Chan4077/ngx-simple-http,num_dependents_deps.dev:0 github.com/Chan4077/ngx-ytd-api,num_dependents_deps.dev:0 github.com/ChanJianxun/cordova-icreate-amap-location,num_dependents_deps.dev:0 +github.com/ChanManChan/open-issue, +github.com/ChanManChan/slack-PHP, github.com/ChanMo/ddx, github.com/ChanMo/django-admin-left-menu, github.com/ChanMo/django-city, @@ -37292,6 +38123,7 @@ github.com/ChanSun/imgzoom,num_dependents_deps.dev:0 github.com/ChanToRe/Femut, github.com/ChanTsune/Django-Boost, github.com/ChanTsune/list-reserve, +github.com/ChanTsune/release-with-commit, github.com/Chance722/chance-npm-test,num_dependents_deps.dev:0 github.com/Chance722/vue-showmore,num_dependents_deps.dev:0 github.com/Chance722/vue-simple-noticebar,num_dependents_deps.dev:0 @@ -37541,6 +38373,7 @@ github.com/ChariotEngine/Palette,num_dependents_deps.dev:0 github.com/ChariotEngine/Slp,num_dependents_deps.dev:0 github.com/ChariotEngine/io-tools,num_dependents_deps.dev:0 github.com/Charisma-Mannheim/gc-ims-tools, +github.com/Charismara/forge-client-startup-action, github.com/Charityvest/guidestar-api,num_dependents_deps.dev:0 github.com/Charityware/Luxo, github.com/Charityware/congrats,num_dependents_deps.dev:0 @@ -37564,6 +38397,7 @@ github.com/Charles-BARDIN/use-relax,num_dependents_deps.dev:0 github.com/Charles-Darwing-Data-Community/goda, github.com/Charles-Gagnon/ads-extension-telemetry,num_dependents_deps.dev:0 github.com/Charles-Hang/postcss-atom-star, +github.com/Charles-Hello/Nuitka-Action, github.com/Charles-Johnson/zia_programming,num_dependents_deps.dev:0 github.com/Charles-Kaminski/django-template-minimizer, github.com/Charles-Kaminski/treeutils, @@ -37692,6 +38526,7 @@ github.com/CharlesWall/waitForEvent,num_dependents_deps.dev:0 github.com/CharlesXu1124/gym-dofbot, github.com/CharlesYwj/tj-public-components,num_dependents_deps.dev:0 github.com/Charlesvandamme/Inductive-Graph-Representation-Learning-for-Fraud-Detection, +github.com/Charlesworth/compress-action, github.com/CharliFrank/lodown,num_dependents_deps.dev:0 github.com/Charlicus/react-semantic-datetime,num_dependents_deps.dev:0 github.com/Charlie85270/recipes-parser,num_dependents_deps.dev:0 @@ -37756,6 +38591,7 @@ github.com/CharlyJazz/svelte-credit-card,num_dependents_deps.dev:0 github.com/CharlyWelch/bitmap-transformer,num_dependents_deps.dev:0 github.com/CharlyWelch/state-store,num_dependents_deps.dev:0 github.com/Charlyzzz/live-client,num_dependents_deps.dev:0 +github.com/Charlyzzz/update-k8s-image, github.com/Charmatzis/react-leaflet-bing,num_dependents_deps.dev:0 github.com/Charmatzis/react-leaflet-google,num_dependents_deps.dev:2 github.com/Charmatzis/react-leaflet-shapefile,num_dependents_deps.dev:0 @@ -37766,6 +38602,7 @@ github.com/Charminbear/ngPlacesAutocomplete,num_dependents_deps.dev:0 github.com/Charming2015/el-cascader-multi,num_dependents_deps.dev:0 github.com/CharmingYang0/NfsClient, github.com/CharmoulaSfax/mnemonic-balance,num_dependents_deps.dev:0 +github.com/Charmve/Social-Readme, github.com/CharnjeetIotasol/cordova-plugin-twillo,num_dependents_deps.dev:0 github.com/CharnjeetIotasol/cordova-plugin-twillo-calling,num_dependents_deps.dev:0 github.com/Charnsit/starwars-names,num_dependents_deps.dev:0 @@ -37781,6 +38618,7 @@ github.com/ChartIQ/finsemble-react-controls,num_dependents_deps.dev:0 github.com/Charterhouse/react-frontend-developer,num_dependents_deps.dev:0 github.com/Chartisan/Rust,num_dependents_deps.dev:0 github.com/ChartsCSS/charts.css,num_dependents_deps.dev:0 +github.com/Chasbob/action-golangci-lint, github.com/Chase78712002/lotide, github.com/ChaseAustin/nbaHeadshots, github.com/ChaseChronicles/lodown,num_dependents_deps.dev:0 @@ -37838,6 +38676,7 @@ github.com/Chatterino/chatterino2,criticality_score:0.486500 github.com/ChattyCrow/chattycrow_errbit,num_dependents_deps.dev:0 github.com/ChattyCrow/chattycrow_nodejs, github.com/ChattyCrow/chattycrow_ruby,num_dependents_deps.dev:0 +github.com/Chatyusha/review-action, github.com/ChauMing/nodejs-scanf,num_dependents_deps.dev:0 github.com/ChauTNguyen/chessboardjs-modified,num_dependents_deps.dev:0 github.com/ChauTNguyen/kindred-api,num_dependents_deps.dev:0 @@ -37885,6 +38724,11 @@ github.com/CheckbookWeb/checkbook_node,num_dependents_deps.dev:0 github.com/Checkfront/react-storybook-addon-chapters, github.com/CheckiO/checkio-client, github.com/CheckiO/checkio-json-serializer, +github.com/Checkmarx/ast-github-action, +github.com/Checkmarx/chainalert-github-action, +github.com/Checkmarx/dast-github-action, +github.com/Checkmarx/dustilock, +github.com/Checkmarx/kics-github-action, github.com/CheckmarxDev/ast-cli-javascript-wrapper, github.com/CheckoutFinland/aws-secret-storage,num_dependents_deps.dev:0 github.com/Checkroth/play-takeout-to-plex, @@ -37971,6 +38815,7 @@ github.com/ChenAiYang/lvcc,num_dependents_deps.dev:0 github.com/ChenArno/apk-node,num_dependents_deps.dev:0 github.com/ChenArno/webpack-react,num_dependents_deps.dev:0 github.com/ChenBaby/translate,num_dependents_deps.dev:0 +github.com/ChenCMD/datapack-linter, github.com/ChenChengbi/vue-page-split, github.com/ChenCyl/vue-d3-force-network,num_dependents_deps.dev:0 github.com/ChenCyl/vue-network-d3, @@ -38051,6 +38896,7 @@ github.com/Chenjiayuan195/react-textarea-markdown,num_dependents_deps.dev:0 github.com/ChenjieXu/pyzxing, github.com/ChenjieXu/selective_search, github.com/Chenjiufu/activity-CLI,num_dependents_deps.dev:0 +github.com/ChenjxJames/SFTP-Deploy-Action, github.com/ChenjxJames/none-sql,num_dependents_deps.dev:0 github.com/Chenkail/dokusu, github.com/Chenkail/imagemergetools, @@ -38085,6 +38931,7 @@ github.com/Chernovolod/simple-modal-window,num_dependents_deps.dev:0 github.com/Chernovolod/toast-notifications,num_dependents_deps.dev:0 github.com/Cherrionella/connect-manager,num_dependents_deps.dev:0 github.com/Cherrionella/session-storage,num_dependents_deps.dev:0 +github.com/Cherry/htmllint-problem-matcher, github.com/Cherry/network-error-logging,num_dependents_deps.dev:0 github.com/Cherry/report-to,num_dependents_deps.dev:0 github.com/CherryBlossomTavern/dotlang,num_dependents_deps.dev:0 @@ -38126,6 +38973,7 @@ github.com/CheshireCaat/bas-remote-python, github.com/CheshireSwift/eslint-config,num_dependents_deps.dev:0 github.com/CheshireSwift/jest-enzyme-selector-matchers,num_dependents_deps.dev:0 github.com/CheshireSwift/octgn-parser,num_dependents_deps.dev:0 +github.com/Chesire/okami-action, github.com/Chess-Centre/chess-players,num_dependents_deps.dev:0 github.com/Chessman97/nodejs-l10n,num_dependents_deps.dev:0 github.com/Chessplorer/Chessplorer-Lib,num_dependents_deps.dev:0 @@ -38236,7 +39084,9 @@ github.com/ChicoOu/aliasr,num_dependents_deps.dev:0 github.com/Chicoryn/cgts_client, github.com/ChiefCold2/BrooklynAPI, github.com/ChiefGokhlayeh/autofff, +github.com/ChiefGokhlayeh/textidote-action, github.com/ChiefKoshi/cardinityjs,num_dependents_deps.dev:0 +github.com/ChiefNoir/gaction-version-getter, github.com/ChiefORZ/backbone.dirty-sync,num_dependents_deps.dev:0 github.com/ChiefORZ/dothenaming,num_dependents_deps.dev:0 github.com/ChiefORZ/popupS,num_dependents_deps.dev:0 @@ -38445,6 +39295,7 @@ github.com/ChiperSoft/tapsuite,num_dependents_deps.dev:0 github.com/ChiperSoft/wellrested,num_dependents_deps.dev:0 github.com/Chipeyown/SPLiT-seq-Data-Analysis_Toolkit, github.com/ChipiKaf/Screen-res-library,num_dependents_deps.dev:0 +github.com/ChipoDeil/IssueInProgressDaysLabeler, github.com/Chipped1/ezebay,num_dependents_deps.dev:0 github.com/Chipped1/ezmusic,num_dependents_deps.dev:0 github.com/Chipped1/ezweather,num_dependents_deps.dev:0 @@ -38475,6 +39326,7 @@ github.com/Chivorns/SmartToolbar,num_dependents_deps.dev:0 github.com/Chixel/guilded.js,num_dependents_deps.dev:0 github.com/Chiyoku/SampleLanguage,num_dependents_deps.dev:0 github.com/Chizaram-Igolo/MButton,num_dependents_deps.dev:0 +github.com/Chizkiyahu/delete-untagged-ghcr-action, github.com/Chkhikvadze/crud-mongoose-simple,num_dependents_deps.dev:0 github.com/Chkhikvadze/mongoose-easy-types,num_dependents_deps.dev:0 github.com/Chklang/confene,num_dependents_deps.dev:0 @@ -38483,6 +39335,7 @@ github.com/Chlebamaticon/react-virtual-scroll,num_dependents_deps.dev:0 github.com/ChlodAlejandro/PAGASA-parser,num_dependents_deps.dev:0 github.com/ChlodAlejandro/jtwc-archiver, github.com/ChlodAlejandro/object-pager,num_dependents_deps.dev:0 +github.com/ChloePlanet/github-tag-action, github.com/Chlorine/tsoa, github.com/Chloro/gulp-json-translator,num_dependents_deps.dev:0 github.com/Chloro/gulp-karma-2,num_dependents_deps.dev:0 @@ -38516,6 +39369,7 @@ github.com/ChocPanda/eslint-config-xo-vue,num_dependents_deps.dev:0 github.com/ChocPanda/mambda,num_dependents_deps.dev:0 github.com/ChocPanda/scalacheck-magnolia,num_dependents_deps.dev:0 github.com/ChockymilK/homebridge-sprinklertest,num_dependents_deps.dev:0 +github.com/Chocobo1/setup-ccache-action, github.com/Chocobozzz/OpenVPN-Admin,criticality_score:0.360830 github.com/Chocobozzz/PeerTube,"criticality_score:0.688530,num_dependents_deps.dev:0" github.com/Chocobozzz/p2p-media-loader,num_dependents_deps.dev:0 @@ -38534,6 +39388,7 @@ github.com/ChocolateLoverRaj/dev-react,num_dependents_deps.dev:0 github.com/ChocolateLoverRaj/dir-output,num_dependents_deps.dev:0 github.com/ChocolateLoverRaj/file-output,num_dependents_deps.dev:0 github.com/ChocolateLoverRaj/json-schema-color, +github.com/ChocolateLoverRaj/list-to-json, github.com/ChocolateLoverRaj/posthtml-plugin-relative-urls, github.com/ChocolateLoverRaj/stream-replace-string,num_dependents_deps.dev:0 github.com/ChocolateUI/chocolate-hooks, @@ -38547,6 +39402,7 @@ github.com/ChocoyoLabs/chatbot-tuc,num_dependents_deps.dev:0 github.com/ChocoyoLabs/ekipainteriores-generator,num_dependents_deps.dev:0 github.com/ChocoyoLabs/jekyll-data-to-page,num_dependents_deps.dev:0 github.com/Chocrates/octomock,num_dependents_deps.dev:0 +github.com/Chocrates/stop-action-filter, github.com/ChoffaH/ember-cookieconsent,num_dependents_deps.dev:0 github.com/Chofito/apodjs, github.com/Chofito/darksun-redux-commons,num_dependents_deps.dev:0 @@ -38663,6 +39519,7 @@ github.com/ChrAlpha/ChrDNx,num_dependents_deps.dev:0 github.com/ChrAlpha/hexo-theme-cards,num_dependents_deps.dev:0 github.com/ChrGriffin/jeffuscator,num_dependents_deps.dev:0 github.com/ChrLipp/calendar-standalone,num_dependents_deps.dev:0 +github.com/ChrSchu90/GitTagSemanticVersion, github.com/ChriD/habitat,num_dependents_deps.dev:0 github.com/ChriD/node-raumkernel,num_dependents_deps.dev:2 github.com/ChriD/node-raumserver,num_dependents_deps.dev:0 @@ -38781,6 +39638,7 @@ github.com/ChrisByrd14/JSONite, github.com/ChrisCacace/reactAD,num_dependents_deps.dev:0 github.com/ChrisCallanJr/climoji,num_dependents_deps.dev:0 github.com/ChrisCallanJr/eslint-config-infinity,num_dependents_deps.dev:0 +github.com/ChrisCarini/intellij-platform-plugin-verifier-action, github.com/ChrisCarleton/hex-generator,num_dependents_deps.dev:0 github.com/ChrisCates/JournalScout,num_dependents_deps.dev:0 github.com/ChrisCates/YungCLI,num_dependents_deps.dev:0 @@ -38946,6 +39804,7 @@ github.com/ChrisPenner/wisp-react-redux,num_dependents_deps.dev:0 github.com/ChrisPhillips-cminion/inquirer-orderedcheckbox,num_dependents_deps.dev:10 github.com/ChrisPhillips-cminion/json-hood,num_dependents_deps.dev:0 github.com/ChrisPikul510/react-statex,num_dependents_deps.dev:0 +github.com/ChrisPrusik/HugoChecker, github.com/ChrisRM/material-theme-jetbrains,criticality_score:0.558660 github.com/ChrisRM/node-3dsub,num_dependents_deps.dev:0 github.com/ChrisRenke/GravityImageView,num_dependents_deps.dev:0 @@ -39024,6 +39883,7 @@ github.com/ChrisWren/grunt-weinre,num_dependents_deps.dev:0 github.com/ChrisWren/mdlint,num_dependents_deps.dev:0 github.com/ChrisWren/touch-input-nav,num_dependents_deps.dev:0 github.com/ChrisYip/Sagase,num_dependents_deps.dev:0 +github.com/Chrischerian1-gep/comment-enforcer, github.com/ChrisnNg/lotide,num_dependents_deps.dev:0 github.com/ChrisoftheBoyerClan/pictil.py, github.com/ChrisoftheBoyerClan/scale.py, @@ -39077,6 +39937,7 @@ github.com/ChristianKlee/homebridge-loxone-blinds,num_dependents_deps.dev:0 github.com/ChristianKlee/homebridge-loxone-ws-adv,num_dependents_deps.dev:0 github.com/ChristianKohler/PathIntellisense,criticality_score:0.372610 github.com/ChristianKohler/html-mocks,num_dependents_deps.dev:0 +github.com/ChristianKohler/papertown-github-action, github.com/ChristianKohler/styled-webcomponents,num_dependents_deps.dev:0 github.com/ChristianKohler/web-presentation,num_dependents_deps.dev:0 github.com/ChristianKreuzberger/angular-ticking-clock,num_dependents_deps.dev:0 @@ -39166,6 +40027,7 @@ github.com/ChristoPy/countries-phone-masks, github.com/ChristoPy/raportti,num_dependents_deps.dev:0 github.com/ChristoPy/rba,num_dependents_deps.dev:0 github.com/ChristoPy/serve-here.js,num_dependents_deps.dev:0 +github.com/ChristofferDahlen/Multi-Regex-Match, github.com/Christop406/vladdress, github.com/Christoph-Koschel/Console-Module, github.com/Christoph/robics, @@ -39181,6 +40043,7 @@ github.com/ChristophP/elm-esm, github.com/ChristophP/funpro,num_dependents_deps.dev:0 github.com/ChristophP/redux-elm-subscriptions,num_dependents_deps.dev:0 github.com/ChristophP/web-react-components,num_dependents_deps.dev:0 +github.com/ChristophWurst/conventional-nextcloud-npm-release, github.com/ChristophWurst/gotham-serde-json-body-parser,num_dependents_deps.dev:0 github.com/ChristophWurst/nextcloud-axios,num_dependents_deps.dev:2 github.com/ChristophWurst/nextcloud-password-confirmation,num_dependents_deps.dev:0 @@ -39189,10 +40052,15 @@ github.com/ChristophWurst/nextcloud_appinfo,num_dependents_deps.dev:0 github.com/ChristophWurst/nextcloud_appsignature,num_dependents_deps.dev:0 github.com/ChristophWurst/nextcloud_appstore,num_dependents_deps.dev:0 github.com/ChristophWurst/nextcloud_fetch,num_dependents_deps.dev:0 +github.com/ChristophWurst/setup-nextcloud, +github.com/ChristophWurst/xmllint-action, github.com/Christophe-Gauge/rsa_crypto, github.com/Christophe31/screenutils, github.com/ChristopheBelpaire/react-native-famoco-laser-reader, github.com/ChristopheBougere/asl-validator,num_dependents_deps.dev:2 +github.com/ChristopheLav/iis-deploy, +github.com/ChristopheLav/wack-certification, +github.com/ChristopheLav/windows-sdk-install, github.com/ChristophePRAT/How2Write, github.com/Christophedlr/tty-color, github.com/Christophedlr/tty-utility, @@ -39229,6 +40097,7 @@ github.com/ChristopherDavenport/circuit-http4s,num_dependents_deps.dev:0 github.com/ChristopherDavenport/circuit-js,num_dependents_deps.dev:0 github.com/ChristopherDavenport/cookiejar,num_dependents_deps.dev:0 github.com/ChristopherDavenport/cormorant,num_dependents_deps.dev:0 +github.com/ChristopherDavenport/create-ghpages-ifnotexists, github.com/ChristopherDavenport/default,num_dependents_deps.dev:0 github.com/ChristopherDavenport/doobie-pool,num_dependents_deps.dev:0 github.com/ChristopherDavenport/dynamapath,num_dependents_deps.dev:0 @@ -39326,7 +40195,10 @@ github.com/Chromadream/instiz, github.com/Chromadream/ng-hal, github.com/ChromaticHQ/benz-compile,num_dependents_deps.dev:0 github.com/ChromaticHQ/fastly-cli,num_dependents_deps.dev:0 +github.com/ChromaticHQ/javascript-lockfile-check-action, github.com/ChromaticHQ/jsonmonger, +github.com/ChromaticHQ/platformsh-db-dump-s3-sync-action, +github.com/ChromaticHQ/tugboat-pull-request-preview-id, github.com/ChromaticIsobar/chromatictools, github.com/Chromatical/node-quadprog-native,num_dependents_deps.dev:0 github.com/Chromatical/node-rbsa, @@ -39384,6 +40256,7 @@ github.com/ChuangYuMing/verifyid, github.com/ChuanyuXue/MVTest, github.com/ChuanyuXue/mysmod, github.com/ChubV/oop-event-bus, +github.com/Chubber279/podcast-generator, github.com/Chubby-Chocobo/checkit,num_dependents_deps.dev:0 github.com/Chubek/mongoose-jumblator,num_dependents_deps.dev:0 github.com/ChucKN0risK/vue-snotify,num_dependents_deps.dev:0 @@ -39469,6 +40342,7 @@ github.com/Cian-Chambliss/utf8-fdf-generator,num_dependents_deps.dev:0 github.com/Cian-Chambliss/xbasic-linter,num_dependents_deps.dev:0 github.com/Cian-Chambliss/xbasic-parser,num_dependents_deps.dev:0 github.com/Cian911/angular-google-map,num_dependents_deps.dev:0 +github.com/Cian911/gomerge-action, github.com/CianCoders/react-stroke-7,num_dependents_deps.dev:0 github.com/CianLM/labtex, github.com/CianM/plain-cards,num_dependents_deps.dev:0 @@ -39592,6 +40466,7 @@ github.com/Cinux-Chosan/ember-zbj-ext-lib, github.com/Cinux-Chosan/q-cmd,num_dependents_deps.dev:0 github.com/CiottiGiorgio/algo-tides, github.com/Ciphey/Ciphey,criticality_score:0.518750 +github.com/Ciptex/s3-upload-github-action, github.com/CirQuS-UTS/QuanGuru, github.com/CirXe0N/nativescript-advanced-camera, github.com/CircArgs/git-graph, @@ -39606,6 +40481,7 @@ github.com/CircioSuite/circio-zen,num_dependents_deps.dev:0 github.com/CircleCI-Public/circleci-cli,"criticality_score:0.501830,num_dependents_deps.dev:2" github.com/CircleCI-Public/circleci-dockerfiles,criticality_score:0.311980 github.com/CircleCI-Public/java-api-client,num_dependents_deps.dev:0 +github.com/CircleCI-Public/trigger-circleci-pipeline-action, github.com/CircleCurve/wowza-webrtc-player, github.com/CircleOfNice/CoreWorker,num_dependents_deps.dev:2 github.com/CircleOfNice/reducePrototypeChain,num_dependents_deps.dev:0 @@ -39861,6 +40737,7 @@ github.com/Ciul/angular-facebook,num_dependents_deps.dev:0 github.com/Ciul/angularjs-facebook,num_dependents_deps.dev:0 github.com/CiviCDR/civicdr.github.io,num_dependents_deps.dev:0 github.com/CiviWiki/OpenCiviWiki,criticality_score:0.366130 +github.com/CivicActions/action-remark-lint-docs, github.com/CivicKnowledge/geoid, github.com/CivicKnowledge/publicdata, github.com/CivilNet/SYSZUXav, @@ -39922,6 +40799,7 @@ github.com/ClaraIO/Sagiri,num_dependents_deps.dev:0 github.com/ClaraSantosmf/NewClass, github.com/ClaraStream/elasticgoose,num_dependents_deps.dev:0 github.com/ClarabridgeInc/ngx-color, +github.com/ClareAI/actions-last-commit-user-info, github.com/ClareBee/design-systems-storybook,num_dependents_deps.dev:0 github.com/ClareKang/form-pdf2json, github.com/ClareKang/pdf2json,num_dependents_deps.dev:0 @@ -39986,6 +40864,7 @@ github.com/Class-Tooraj/nested_cipher, github.com/ClassDo/classdo-js,num_dependents_deps.dev:0 github.com/ClassFunc/Classfunc_Grid_24_col,num_dependents_deps.dev:0 github.com/ClassFunc/react-native-thumbnail-grid,num_dependents_deps.dev:0 +github.com/ClassFunc/what-changes, github.com/ClassHP/md-crud,num_dependents_deps.dev:0 github.com/ClassPreloader/ClassPreloader,criticality_score:0.411410 github.com/ClassicOldSong/Blyde,num_dependents_deps.dev:0 @@ -40125,7 +41004,9 @@ github.com/ClearScore/south-africa-national-id-validation,num_dependents_deps.de github.com/ClearTax/dropwizard-db-sharding-bundle,num_dependents_deps.dev:0 github.com/ClearTax/engines-ok,num_dependents_deps.dev:0 github.com/ClearTax/install-types,num_dependents_deps.dev:0 +github.com/ClearTax/jira-lint, github.com/ClearTax/pivotal-flow,num_dependents_deps.dev:0 +github.com/ClearTax/pivotal-lint, github.com/ClearTax/post-merge-install,num_dependents_deps.dev:0 github.com/ClearTax/props-validator,num_dependents_deps.dev:0 github.com/ClearVoice/multigzip, @@ -40165,6 +41046,7 @@ github.com/ClemDelp/heightmap-generator,num_dependents_deps.dev:0 github.com/Clemens-E/discord-task-list,num_dependents_deps.dev:0 github.com/Clemens-E/shori,num_dependents_deps.dev:0 github.com/Clement-Bresson/generate-template,num_dependents_deps.dev:0 +github.com/Clement-Jean/udemy-badge-generator, github.com/Clement-O/python-duplicate, github.com/Clement134/get-changelog,num_dependents_deps.dev:0 github.com/ClementBolin/weatherCLI, @@ -40185,9 +41067,14 @@ github.com/ClementPinard/SfmLearner-Pytorch,criticality_score:0.373060 github.com/ClementPinard/multiple-smi, github.com/ClementTsang/RustNAO,num_dependents_deps.dev:0 github.com/ClementTsang/bottom,"criticality_score:0.460280,num_dependents_deps.dev:0" +github.com/ClementTsang/cargo-action, +github.com/ClementTsang/cargo-deb-arm, +github.com/ClementTsang/delete-tag-and-release, +github.com/ClementTsang/docker-check-base-image-diff, github.com/ClementVH/angular-popup,num_dependents_deps.dev:0 github.com/ClementVidal/angular2-log,num_dependents_deps.dev:0 github.com/ClementVtrd/rpi-info,num_dependents_deps.dev:0 +github.com/ClementWalter/poetry-action, github.com/ClementiGroup/DensityPlotMaker, github.com/ClemsonSoCUnix/django-anyvcs, github.com/ClemsonSoCUnix/django-sshkey, @@ -40324,6 +41211,9 @@ github.com/ClickHouse/clickhouse-go,"criticality_score:0.482320,num_dependents_d github.com/ClickHouse/clickhouse-jdbc,"criticality_score:0.418480,num_dependents_deps.dev:9" github.com/ClickHouse/graphouse,criticality_score:0.360110 github.com/ClickMechanic/check_mot,num_dependents_deps.dev:0 +github.com/ClickPesa/bump-version, +github.com/ClickPesa/create-pull-request, +github.com/ClickPesa/eod-actions, github.com/ClickSend/clicksend-java,num_dependents_deps.dev:0 github.com/ClickSend/clicksend-nodejs,num_dependents_deps.dev:0 github.com/ClickSimply/Nano-SQL,num_dependents_deps.dev:12 @@ -40407,6 +41297,7 @@ github.com/CliffS/smoobu,num_dependents_deps.dev:0 github.com/CliffS/suncronjob,num_dependents_deps.dev:0 github.com/CliftonH/karma-headless-chrome-launcher,num_dependents_deps.dev:0 github.com/CliftonH/objectpath, +github.com/Clikengo/foundationdb-actions-install, github.com/Clikengo/markdown-print-tools,num_dependents_deps.dev:2 github.com/Clikengo/usize_cast,num_dependents_deps.dev:0 github.com/Climaider/rensti, @@ -40495,6 +41386,7 @@ github.com/ClivarLee/easy-cli, github.com/ClivarLee/rewire-client-env,num_dependents_deps.dev:0 github.com/Cliveburr/WebHost,num_dependents_deps.dev:0 github.com/Cliveburr/providerjs,num_dependents_deps.dev:0 +github.com/Clivern/krypton-actions, github.com/CloakingOcean/cloak-state-util,num_dependents_deps.dev:0 github.com/Clocktapus/short-cli, github.com/ClockworkConsulting/peregrin,num_dependents_deps.dev:0 @@ -40515,6 +41407,7 @@ github.com/Clonex/KahootBot,num_dependents_deps.dev:0 github.com/Clonk-HTML5/jshint-stylishexitonerror,num_dependents_deps.dev:0 github.com/ClosedXML/ClosedXML,criticality_score:0.498360 github.com/CloserPlatform/closer-sdk.js,num_dependents_deps.dev:0 +github.com/Closoco/pdflatex-action, github.com/ClosureTree/closure_tree,criticality_score:0.512490 github.com/ClouDesire/catwatcher,num_dependents_deps.dev:0 github.com/ClouDesire/cloudesire.js,num_dependents_deps.dev:0 @@ -40546,6 +41439,7 @@ github.com/Cloud2Box/c2b-session,num_dependents_deps.dev:0 github.com/Cloud2Box/fs-capture,num_dependents_deps.dev:0 github.com/Cloud370/qqmusic-sign, github.com/Cloud9-Music/angular-material-event-calendar, +github.com/Cloud9-linkdevops/first-action, github.com/Cloud9Trader/c9m,num_dependents_deps.dev:0 github.com/Cloud9Trader/c9m-instrument-process-monitor,num_dependents_deps.dev:0 github.com/Cloud9Trader/c9m-instrument-server-monitor,num_dependents_deps.dev:0 @@ -40615,6 +41509,7 @@ github.com/CloudKidStudio/project-grunt,num_dependents_deps.dev:0 github.com/CloudMade/Leaflet,num_dependents_deps.dev:1 github.com/CloudMages/PyPkgs-GitUtils, github.com/CloudMages/PyPkgs-JinjaUtils, +github.com/CloudNation-nl/cn-terragrunt-github-actions, github.com/CloudNativeEntrepreneur/knativebus,num_dependents_deps.dev:0 github.com/CloudNativeEntrepreneur/register-server-cloudevent-handlers,num_dependents_deps.dev:0 github.com/CloudNativeEntrepreneur/register-server-handlers,num_dependents_deps.dev:0 @@ -40633,6 +41528,8 @@ github.com/CloudRail/cloudrail-si-android-sdk,num_dependents_deps.dev:0 github.com/CloudRail/cloudrail-si-java-sdk,num_dependents_deps.dev:0 github.com/CloudRail/cloudrail-si-node-sdk,num_dependents_deps.dev:0 github.com/CloudRaker/firebaseui-web,num_dependents_deps.dev:0 +github.com/CloudReactor/aws-ecs-cloudreactor-deployer, +github.com/CloudReactor/cla-assistant-github-action, github.com/CloudReactor/cloudreactor-procwrapper, github.com/CloudRepoOSS/download-analytics, github.com/CloudSecurityAlliance/rubocop-csa,num_dependents_deps.dev:0 @@ -40705,6 +41602,7 @@ github.com/Cloudy10/loci, github.com/CloudyDirk/bpmn-viewer,num_dependents_deps.dev:0 github.com/CloudyKit/jet,criticality_score:0.474980 github.com/CloudyMountain/quadrigacx,num_dependents_deps.dev:0 +github.com/Cloudzero/cloudzero-action-publish-costformation, github.com/Cloudzero/cloudzero-uca-tools, github.com/Cloudzero/dynotool, github.com/Cloudzero/pyfaaster, @@ -40760,6 +41658,8 @@ github.com/Clycheng/taro-weapp-poster, github.com/ClydeDz/add-demo-npm,num_dependents_deps.dev:0 github.com/ClydeDz/getavataaars-npm,num_dependents_deps.dev:0 github.com/ClydeDz/give-me-an-avatar-npm,num_dependents_deps.dev:0 +github.com/ClydeDz/markdown-list-linter, +github.com/ClydeDz/markdown-to-json, github.com/ClydeDz/react-markdown-content,num_dependents_deps.dev:0 github.com/ClydeDz/robohash-avatars-npm,num_dependents_deps.dev:0 github.com/ClydeDz/uiavatars-npm,num_dependents_deps.dev:0 @@ -40785,6 +41685,7 @@ github.com/CntChen/tile-lnglat-transform,num_dependents_deps.dev:0 github.com/CntChen/webpack-splitting-manifest-plugin, github.com/Co-assist/dynamodel-client, github.com/Co-dfns/Co-dfns,criticality_score:0.418450 +github.com/Co-qn/google-chat-notification, github.com/Co0sh/option-result,num_dependents_deps.dev:0 github.com/CoAxLab/AdaptiveDecisionMaking_2018, github.com/CoAxLab/CBGT, @@ -40911,7 +41812,9 @@ github.com/CoMakery/trust-exchange,num_dependents_deps.dev:0 github.com/CoNarrative/framework-x,num_dependents_deps.dev:0 github.com/CoNarrative/ognom,num_dependents_deps.dev:0 github.com/CoNarrative/react-pdf, +github.com/CoProcure/aws-update-cloudwatch-ecs-event-target, github.com/CoProcure/ocr-space,num_dependents_deps.dev:0 +github.com/CoRunners/action-qiniu-upload, github.com/CoSMoSoftware/OBS-studio-webrtc,criticality_score:0.538410 github.com/CoSMoSoftware/kite-common,num_dependents_deps.dev:0 github.com/CoSchedule/cordova-photo-library,num_dependents_deps.dev:0 @@ -41017,6 +41920,7 @@ github.com/Cod3dDOT/aircrack-gui, github.com/Cod3ret/Bettah,num_dependents_deps.dev:0 github.com/CodFrm/cxmooc-tools,"criticality_score:0.373560,num_dependents_deps.dev:0" github.com/CodKnight/create-react-app,num_dependents_deps.dev:0 +github.com/CodSpeedHQ/action, github.com/CodaProtocol/coda,num_dependents_deps.dev:0 github.com/CodaProtocol/ledger-coda-app, github.com/Codaisseur/codaisseur-theme,num_dependents_deps.dev:0 @@ -41031,6 +41935,10 @@ github.com/Code-Cornelius/python_libraries, github.com/Code-Craftsmanship-Saturdays/software-testing,num_dependents_deps.dev:0 github.com/Code-Crash/cc-terminal,num_dependents_deps.dev:0 github.com/Code-Crew/custardpi6-control,num_dependents_deps.dev:0 +github.com/Code-Hex/auto-milestone-binder, +github.com/Code-Hex/first-label-interaction, +github.com/Code-Hex/gqldoc-actions, +github.com/Code-Hex/neo-cowsay-action, github.com/Code-House/bacnet4j-wrapper,num_dependents_deps.dev:6 github.com/Code-House/eaio-uuid-jackson,num_dependents_deps.dev:4 github.com/Code-House/karaf-jackson,num_dependents_deps.dev:14 @@ -41050,6 +41958,7 @@ github.com/Code-Y/redux-fluent,num_dependents_deps.dev:0 github.com/Code-for-Russia/selector-pipeline, github.com/Code-of-Power/react-hotkeys,num_dependents_deps.dev:0 github.com/Code-with-Luca/love,num_dependents_deps.dev:0 +github.com/Code0987/android-ci-github-action, github.com/Code0987/angular-npm-orb,num_dependents_deps.dev:0 github.com/Code0987/apscheduler-intervalcron, github.com/Code0x2/flashbots-js, @@ -41071,6 +41980,7 @@ github.com/Code52/carnac,criticality_score:0.392020 github.com/CodeAdventure/react-polymorph,num_dependents_deps.dev:0 github.com/CodeAgainstAManatee/Server,num_dependents_deps.dev:0 github.com/CodeAllianceOrg/odk2-json,num_dependents_deps.dev:0 +github.com/CodeAnalyzerIS/tool-runner-action, github.com/CodeAndChaos/utility-belt, github.com/CodeAndMagic/Wink,num_dependents_deps.dev:0 github.com/CodeAndWeb/PhysicsEditor-Loaders,num_dependents_deps.dev:0 @@ -41084,6 +41994,7 @@ github.com/CodeBanBan/dynamoose,num_dependents_deps.dev:0 github.com/CodeBizarre/cutesnowflakes, github.com/CodeBleu/rabbitmqStats, github.com/CodeBull/ionomy-node,num_dependents_deps.dev:0 +github.com/CodeByAidan/rst-autoformatter-action, github.com/CodeByZach/jhash.js,num_dependents_deps.dev:0 github.com/CodeByZach/pace,criticality_score:0.420760 github.com/CodeByZack/m3u8Tomp4, @@ -41183,6 +42094,7 @@ github.com/CodeCorico/allons-y-web-metrics,num_dependents_deps.dev:0 github.com/CodeCorico/allons-y-wiki,num_dependents_deps.dev:0 github.com/CodeCorico/plumes,num_dependents_deps.dev:30 github.com/CodeCorico/ractive-require, +github.com/CodeCrowCorp/wrangler-rs-action, github.com/CodeDaraW/douban-box,num_dependents_deps.dev:0 github.com/CodeDaraW/html-splitter,num_dependents_deps.dev:0 github.com/CodeDaraW/lottie-files-min-tool,num_dependents_deps.dev:0 @@ -41477,6 +42389,7 @@ github.com/CodeTanzania/open311-smtp,num_dependents_deps.dev:0 github.com/CodeTeam/tcrudge, github.com/CodeTengu/JokeKappa, github.com/CodeTheory/postcss-optional-comments,num_dependents_deps.dev:0 +github.com/CodeThreat/codethreat-scan-action, github.com/CodeTrol/sequence,num_dependents_deps.dev:0 github.com/CodeVachon/gatsby-source-untappd-json, github.com/CodeVachon/gatsby-source-wakatime,num_dependents_deps.dev:0 @@ -41588,6 +42501,7 @@ github.com/Codehesion-ZA/react-native-peach-mobile,num_dependents_deps.dev:0 github.com/Codehouze/node_plugin, github.com/CodeiSir/localstorage-ext,num_dependents_deps.dev:0 github.com/CodeineLabs/gulp-ngdocs-components, +github.com/Codeinwp/action-wordpress-theme-deploy, github.com/Codeinwp/conventional-changelog-simple-preset, github.com/Codeinwp/conventional-changelog-themeisle,num_dependents_deps.dev:0 github.com/Codeinwp/grunt-helpscout-faq,num_dependents_deps.dev:0 @@ -41599,8 +42513,12 @@ github.com/Codelica/nodefuel,num_dependents_deps.dev:0 github.com/Codellion/duet-js,num_dependents_deps.dev:0 github.com/Codellion/rosetta-js,num_dependents_deps.dev:0 github.com/Codello/Motor-ODM, +github.com/CodelyTV/check-critical-files, github.com/CodelyTV/dotly,criticality_score:0.337490 +github.com/CodelyTV/no-branches, +github.com/CodelyTV/no-pull-requests, github.com/CodelyTV/php-ddd-example,criticality_score:0.356770 +github.com/CodelyTV/pr-size-labeler, github.com/CodementorIO/bro,num_dependents_deps.dev:0 github.com/CodementorIO/eslint-config,num_dependents_deps.dev:0 github.com/Codeminer42/cm42-central,criticality_score:0.393890 @@ -41705,6 +42623,7 @@ github.com/CodersBrothers/btcaverage,num_dependents_deps.dev:0 github.com/CodersBrothers/coolors,num_dependents_deps.dev:0 github.com/CodersBrothers/mongocloning,num_dependents_deps.dev:0 github.com/CodersBrothers/smartaverage,num_dependents_deps.dev:2 +github.com/CodersLab-core/action-checkout-and-move, github.com/CodersOfTheNight/oshino, github.com/CodersOfTheNight/oshino-admin, github.com/CodersOfTheNight/stubilous, @@ -41731,7 +42650,16 @@ github.com/Coderty/runnerty-notificator-slack,num_dependents_deps.dev:0 github.com/Coderty/runnerty-notificator-telegram,num_dependents_deps.dev:0 github.com/Coderwelsch/duden-search-api,num_dependents_deps.dev:0 github.com/Coderwelsch/react-optical-aligned-text,num_dependents_deps.dev:0 +github.com/Codes-Exe/disconnect-server-action, +github.com/Codes-Exe/git-version, +github.com/Codes-Exe/javascript-action, +github.com/Codes-Exe/run-command, +github.com/Codes-Exe/s2i-build, +github.com/Codes-Exe/unity-activate, +github.com/Codes-Exe/unity-request-activation-file, github.com/CodesOfRa/vue-cli-plugin-ui5-webcomponents,num_dependents_deps.dev:0 +github.com/Codesee-io/codesee-detect-languages-action, +github.com/Codesee-io/codesee-map-action, github.com/CodesignDev/passport-poniverse,num_dependents_deps.dev:0 github.com/CodesmithLLC/hack-hour-14,num_dependents_deps.dev:0 github.com/Codestian/ltapysg, @@ -41741,8 +42669,13 @@ github.com/Codeteria/my-react-chatview,num_dependents_deps.dev:0 github.com/CodetrixStudio/CapacitorGoogleAuth,num_dependents_deps.dev:0 github.com/Codeusa/Borderless-Gaming,criticality_score:0.440090 github.com/Codeux-Software/Textual,criticality_score:0.419370 +github.com/Codex-/await-local-workflow-run, +github.com/Codex-/await-remote-run, +github.com/Codex-/knip-reporter, github.com/Codex-/metro-info,num_dependents_deps.dev:0 +github.com/Codex-/return-dispatch, github.com/Codex-Engine/codex-engine-pyqt, +github.com/CodexLink/discord-activity-badge, github.com/Codexlabs/TiCucumber,num_dependents_deps.dev:0 github.com/Codiad/Codiad,criticality_score:0.468280 github.com/Codibre/chai-callslike, @@ -41787,6 +42720,7 @@ github.com/CodingAvenue/codestop-proof-lib-dom,num_dependents_deps.dev:0 github.com/CodingAvenue/codestop-proof-lib-js,num_dependents_deps.dev:0 github.com/CodingBobby/bob-standard,num_dependents_deps.dev:0 github.com/CodingBobby/klyft, +github.com/CodingBull-dev/newest-rss-post-action, github.com/CodingByJerez/react-native-alert-notification,num_dependents_deps.dev:0 github.com/CodingByJerez/react-native-arrow-follow,num_dependents_deps.dev:0 github.com/CodingCarlos/modelate,num_dependents_deps.dev:0 @@ -41822,6 +42756,8 @@ github.com/CodingKitsune/typechain-develop-server,num_dependents_deps.dev:0 github.com/CodingLeonardo/jscritty,num_dependents_deps.dev:0 github.com/CodingLikeDavid/box-slider,num_dependents_deps.dev:0 github.com/CodingLizards/localizer,num_dependents_deps.dev:0 +github.com/CodingNagger/minikube-setup-action, +github.com/CodingNagger/minikube-wait-action, github.com/CodingPeaks/h2o,num_dependents_deps.dev:0 github.com/CodingPenguin/primealgorithm,num_dependents_deps.dev:0 github.com/CodingRedpanda/ImpureTrickyLogin, @@ -41899,8 +42835,11 @@ github.com/CodyReichert/whatcd-cli,num_dependents_deps.dev:0 github.com/CodyReichert/whatcd-cli/issues, github.com/CodySchaaf/acorn-dynamic-import-with-walk-support,num_dependents_deps.dev:0 github.com/CodySchrank/FastTail,num_dependents_deps.dev:0 +github.com/CodyTseng/auto-comment-merge-conflicts, github.com/CodyTseng/lucky-item,num_dependents_deps.dev:0 +github.com/CodyTseng/merge-branches-github-action, github.com/CodyTseng/time-divider,num_dependents_deps.dev:0 +github.com/Coedice/tsa-timestamp, github.com/CoefficientIO/async-boolean-expression-evaluator,num_dependents_deps.dev:0 github.com/CoefficientIO/vaccinate,num_dependents_deps.dev:0 github.com/CoelhoBranco/bromo-lib, @@ -42139,6 +43078,7 @@ github.com/Colaplusice/icecola, github.com/ColauttiLab/PyTrackDat, github.com/ColbaTechnologies/react-draft-wysiwyg,num_dependents_deps.dev:0 github.com/Colbetes/ColbyD-Devcamp-js-footer,num_dependents_deps.dev:0 +github.com/Colby-Butler-Imprivata/await-remote-workflow, github.com/ColbyAley/cumulus,num_dependents_deps.dev:0 github.com/ColbyAley/feedbin,num_dependents_deps.dev:0 github.com/ColbyCommunications/colby-react-student-handbook,num_dependents_deps.dev:0 @@ -42235,6 +43175,7 @@ github.com/ColinKennedy/ways, github.com/ColinLeo/kue-manager,num_dependents_deps.dev:0 github.com/ColinMaudry/sparql-router,num_dependents_deps.dev:0 github.com/ColinMcNeil/Aspect-Ratio-Tools,num_dependents_deps.dev:0 +github.com/ColinPitrat/update-release, github.com/ColinQiyangLi/embtest, github.com/ColinQiyangLi/hparam, github.com/ColinQiyangLi/ml-descriptor, @@ -42655,6 +43596,9 @@ github.com/CommandAlkon/dotnotater,num_dependents_deps.dev:1 github.com/CommandCracker8/BetterLogs,num_dependents_deps.dev:0 github.com/CommandGuy/usmapjs, github.com/CommandLineHeroes/clh-arcade,num_dependents_deps.dev:0 +github.com/Commandcracker/craftos-pc-action, +github.com/Commandcracker/lstore-put, +github.com/Commandcracker/pypi-publish, github.com/Commander-lol/basic-dom,num_dependents_deps.dev:0 github.com/Commander-lol/combi-server,num_dependents_deps.dev:0 github.com/Commander-lol/combi-server-router,num_dependents_deps.dev:0 @@ -42699,6 +43643,7 @@ github.com/CommonGarden/Grow-IoT, github.com/CommonGarden/Grow.js,num_dependents_deps.dev:0 github.com/CommonGarden/Thing.js,num_dependents_deps.dev:0 github.com/CommonGarden/graphql-api,num_dependents_deps.dev:0 +github.com/CommonMarvel/google-chat-notification, github.com/CommonMarvel/marvel-mono-js,num_dependents_deps.dev:0 github.com/CommonRaven/node-beehive-cluster,num_dependents_deps.dev:0 github.com/CommonWA/cwa-rs,num_dependents_deps.dev:0 @@ -42767,6 +43712,8 @@ github.com/CompassSecurity/SAMLRaider,criticality_score:0.361150 github.com/CompendioVicorum/compendiovicorum-crawler,num_dependents_deps.dev:0 github.com/Competec/eslint-config-competec,num_dependents_deps.dev:0 github.com/Competec/simple-animation-js,num_dependents_deps.dev:0 +github.com/CompeyDev/discord-status-action, +github.com/CompeyDev/rojo-build-action, github.com/Compile7/mail7-bug-tracker,num_dependents_deps.dev:0 github.com/Compile7/mail7-node-sdk, github.com/CompileInc/agua, @@ -42822,6 +43769,7 @@ github.com/ComradeXu/ComradeXu.github.io,num_dependents_deps.dev:0 github.com/Comsenz/discuz-uniapp,num_dependents_deps.dev:0 github.com/Comum/InfiniteScroll,num_dependents_deps.dev:0 github.com/Comum/react-img-gallery, +github.com/ComunidadAylas/PackSquash-action, github.com/Comver/ngx-masonry,num_dependents_deps.dev:0 github.com/ConConDiscord/passwordtools, github.com/ConConRob/aws-serverless-express, @@ -42867,6 +43815,7 @@ github.com/ConciseConstructs/concise-readableFormatter,num_dependents_deps.dev:0 github.com/ConciseVerbosity18/ChemE_CV, github.com/Concorda/concorda-rest,num_dependents_deps.dev:0 github.com/Concorda/seneca-mesh-base,num_dependents_deps.dev:0 +github.com/Concordium/github-parse-tag, github.com/ConcourseOpen/DEXAG-SDK,num_dependents_deps.dev:0 github.com/Concurix/minkelite,num_dependents_deps.dev:0 github.com/Concurix/module-stats,num_dependents_deps.dev:4 @@ -42875,6 +43824,7 @@ github.com/CondeNast-Copilot/ember-docs,num_dependents_deps.dev:0 github.com/CondeNast/MongoSync,num_dependents_deps.dev:0 github.com/CondeNast/atjson, github.com/CondeNast/bestfit,num_dependents_deps.dev:0 +github.com/CondeNast/conventional-pull-request-action, github.com/CondeNast/copilot-util,num_dependents_deps.dev:0 github.com/CondeNast/cross-check,num_dependents_deps.dev:0 github.com/CondeNast/ember-cli-content-for-index, @@ -43060,6 +44010,7 @@ github.com/ConnorAtherton/typeout,num_dependents_deps.dev:0 github.com/ConnorAtherton/typewriter,num_dependents_deps.dev:0 github.com/ConnorAtherton/uiscript,num_dependents_deps.dev:0 github.com/ConnorAtherton/walkway,num_dependents_deps.dev:0 +github.com/ConnorBaker/tasty-json-to-markdown-action, github.com/ConnorChristie/Audio-Mixer,num_dependents_deps.dev:0 github.com/ConnorChristie/Audio-Stream,num_dependents_deps.dev:0 github.com/ConnorChristie/Multi-Pipe-Stream,num_dependents_deps.dev:0 @@ -43075,6 +44026,7 @@ github.com/ConnorMcF/arrcur,num_dependents_deps.dev:0 github.com/ConnorMcF/node-isfridge,num_dependents_deps.dev:0 github.com/ConnorMinielly/connnor,num_dependents_deps.dev:0 github.com/ConnorMinielly/what-the-form,num_dependents_deps.dev:0 +github.com/ConnorMulqueen/pr-codename, github.com/ConnorSmith-pf/ngx-xcorr,num_dependents_deps.dev:0 github.com/ConnorSmith-pf/xcorr,num_dependents_deps.dev:0 github.com/ConnorTheFox/myq-node,num_dependents_deps.dev:0 @@ -43112,6 +44064,7 @@ github.com/Connum/npm-pinyin-separate,num_dependents_deps.dev:0 github.com/Connum/npm-pinyin2ipa,num_dependents_deps.dev:0 github.com/ConnyOnny/bluenoisers,num_dependents_deps.dev:0 github.com/ConorHamilton19/umbrella_cli_app,num_dependents_deps.dev:0 +github.com/ConorMacBride/install-package, github.com/ConorMacBride/mcalf, github.com/ConorMatthews/Python-Thermal-Printer, github.com/ConorMatthews/drivefiller, @@ -43179,6 +44132,7 @@ github.com/ConsenSys/ethjsonrpc, github.com/ConsenSys/ethql,num_dependents_deps.dev:0 github.com/ConsenSys/gnark,"criticality_score:0.368440,num_dependents_deps.dev:15" github.com/ConsenSys/ipfs.js,num_dependents_deps.dev:8 +github.com/ConsenSys/kubernetes-action, github.com/ConsenSys/linnia-js,num_dependents_deps.dev:4 github.com/ConsenSys/mythril,criticality_score:0.572250 github.com/ConsenSys/mythxjs,num_dependents_deps.dev:32 @@ -43252,6 +44206,7 @@ github.com/Constructor-io/constructorio-javascript,num_dependents_deps.dev:0 github.com/Constructor-io/constructorio-node,num_dependents_deps.dev:0 github.com/Constructor-io/constructorio-ruby-gem,num_dependents_deps.dev:0 github.com/ConsultingMD/react-native,num_dependents_deps.dev:0 +github.com/Consuma/release-management, github.com/ConsumerAffairs/django-affect, github.com/ConsumerAffairs/django-experiments, github.com/ConsumerAffairs/django-urlographer, @@ -43342,11 +44297,17 @@ github.com/Contraculto/sortino,num_dependents_deps.dev:0 github.com/Contrast-Security-Inc/node-fn-inspect,num_dependents_deps.dev:0 github.com/Contrast-Security-OSS/NodeTestBenches,num_dependents_deps.dev:0 github.com/Contrast-Security-OSS/cassandra-migration,num_dependents_deps.dev:0 +github.com/Contrast-Security-OSS/contrast-sca-action, github.com/Contrast-Security-OSS/contrast-sdk-javascript,num_dependents_deps.dev:0 github.com/Contrast-Security-OSS/contrast-sdk-python, +github.com/Contrast-Security-OSS/contrastscan-action, github.com/Contrast-Security-OSS/escodegen,num_dependents_deps.dev:0 github.com/Contrast-Security-OSS/eslint-config,num_dependents_deps.dev:0 github.com/Contrast-Security-OSS/estraverse, +github.com/Contrast-Security-OSS/integration-aks-github-action, +github.com/Contrast-Security-OSS/integration-azure-spring-cloud-github-action, +github.com/Contrast-Security-OSS/integration-eks-github-action, +github.com/Contrast-Security-OSS/integration-verify-github-action, github.com/Contrast-Security-OSS/test-bench-content,num_dependents_deps.dev:0 github.com/Contrast-Security-OSS/test-bench-utils,num_dependents_deps.dev:0 github.com/Contraz/demosys-py, @@ -43445,6 +44406,7 @@ github.com/CoolCyberBrain/webpack-image-placeholder-loader,num_dependents_deps.d github.com/CoolCyberBrain/webpack-image-resize-loader,num_dependents_deps.dev:0 github.com/CoolCyberBrain/webpack-image-srcset-loader,num_dependents_deps.dev:0 github.com/CoolCyberBrain/webpack-query-loader, +github.com/CoolDevGuys/image-tag-creator, github.com/CoolDudde4150/coursetemplater, github.com/CoolDudde4150/mdtemplater, github.com/CoolDudde4150/spotify_playlist_additions, @@ -43452,6 +44414,7 @@ github.com/CoolElvis/ruby_grep,num_dependents_deps.dev:0 github.com/CoolJames1610/Flighter, github.com/CoolOppo/bren,num_dependents_deps.dev:0 github.com/CoolOppo/fastgif,num_dependents_deps.dev:0 +github.com/CoolPlayLin/Tagger, github.com/CoolProp/CoolPlot, github.com/CoolProp/CoolProp,criticality_score:0.617880 github.com/CoolRice/gm-binary,num_dependents_deps.dev:0 @@ -43550,6 +44513,7 @@ github.com/Cordobo/angularx-qrcode,"criticality_score:0.395600,num_dependents_de github.com/Cordobo/rollup-plugin-replace-html-vars,num_dependents_deps.dev:0 github.com/Core-Three-Design/babel-preset-core3,num_dependents_deps.dev:0 github.com/Core-Three-Design/eslint-config-core3, +github.com/Core2Goal/ssh-action, github.com/CoreBelette/light-react-burger-menu,num_dependents_deps.dev:0 github.com/CoreCMF/builder-vue,num_dependents_deps.dev:0 github.com/CoreCMF/builder-vue-element,num_dependents_deps.dev:0 @@ -43650,6 +44614,7 @@ github.com/Corollarium/youtubedl-wrapper,num_dependents_deps.dev:0 github.com/Coromilly/epam-q4-2019, github.com/Corona-IDE/lockdown,num_dependents_deps.dev:0 github.com/CoronaCircles/arrange_videochat, +github.com/CoronelEzequiel/run-docker, github.com/Coronling/modal,num_dependents_deps.dev:0 github.com/Coronon/PySchemeTranspiler, github.com/CorpCie/api-mocks,num_dependents_deps.dev:0 @@ -43663,6 +44628,7 @@ github.com/Corpoflow/web2cast,num_dependents_deps.dev:0 github.com/CorrDyn/django-bulk-user-upload, github.com/CorrDyn/nlx-cli, github.com/CorrDyn/python-firestore-models, +github.com/CorrM/cache-apt-pkgs-action, github.com/CorralPeltzer/newTrackon,criticality_score:0.386130 github.com/Correct-Syntax/ui-style-lang, github.com/Correct-Syntax/wagtail-versesblock, @@ -43705,6 +44671,7 @@ github.com/CoryG89/markedejs,num_dependents_deps.dev:0 github.com/CoryG89/mini,num_dependents_deps.dev:0 github.com/CoryG89/update-qbittorrent-cert,num_dependents_deps.dev:0 github.com/CoryGH/JSONPP,num_dependents_deps.dev:0 +github.com/CoryJHolland/dotnet-tests-report, github.com/CoryKrol/ethosdistro_py, github.com/CoryKrol/miningpoolhub_py, github.com/CoryParsnipson/8080dasm,num_dependents_deps.dev:0 @@ -43783,6 +44750,7 @@ github.com/CosmosOS/Cosmos,criticality_score:0.633020 github.com/CosmosShadow/lake, github.com/Cosrnos/lo-q,num_dependents_deps.dev:0 github.com/Cosrnos/pacmod,num_dependents_deps.dev:0 +github.com/Cossey/release-notes-generator-action, github.com/Costamagna/easy_logger_mc,num_dependents_deps.dev:0 github.com/Costamilam/IDB2Promise,num_dependents_deps.dev:0 github.com/Costava/write-int,num_dependents_deps.dev:6 @@ -43906,6 +44874,7 @@ github.com/CourtHive/tods-react-draws,num_dependents_deps.dev:0 github.com/CourtHive/tods-tmx-classic-converter, github.com/CourtHive/tods-tournament-pdfs,num_dependents_deps.dev:0 github.com/CouscousPHP/Couscous,criticality_score:0.416850 +github.com/CouscousPHP/GitHub-Action, github.com/Couto/6to5-loader,num_dependents_deps.dev:0 github.com/Couto/Blueprint,num_dependents_deps.dev:0 github.com/Couto/allo,num_dependents_deps.dev:0 @@ -43993,6 +44962,7 @@ github.com/Coxhuang/django-google-auth, github.com/Coxhuang/django_restframework, github.com/Coximus/NodePlugwiseAPI,num_dependents_deps.dev:0 github.com/Coximus/gulp-sass-unicode-double-escape, +github.com/Coxxs/AppCenter-Github-Action, github.com/Coxxs/RCNB.js,num_dependents_deps.dev:0 github.com/Coxxs/bvid,num_dependents_deps.dev:0 github.com/CoyPan/easy-cli-react,num_dependents_deps.dev:0 @@ -44034,6 +45004,7 @@ github.com/CptFox/tokio-simplified,num_dependents_deps.dev:0 github.com/CptJason/flask-bootstraps, github.com/CptLemming/django-socket-server, github.com/CptLemming/django-subcommand2, +github.com/CptMokoena/maven-get-version-action, github.com/CptPirx/robo-package, github.com/CptSpaceToaster/pyluxafor_mac, github.com/CptSurfinBird/Chat,num_dependents_deps.dev:0 @@ -44069,6 +45040,8 @@ github.com/CrabDude/tiki,num_dependents_deps.dev:0 github.com/CrabDude/tracesquire,num_dependents_deps.dev:0 github.com/CrabDude/transquire,num_dependents_deps.dev:0 github.com/CrabDude/trycatch,num_dependents_deps.dev:128 +github.com/CrabMatrix/github-tagger, +github.com/CrabMatrix/update-action, github.com/CrabMen/react-native-amazing-utils,num_dependents_deps.dev:0 github.com/Crabar/ember-social-share,num_dependents_deps.dev:0 github.com/Crabcyborg/min-string,num_dependents_deps.dev:0 @@ -44119,6 +45092,7 @@ github.com/CraftWorldFr/commander-extra,num_dependents_deps.dev:0 github.com/CraftYun83/AVEncoding, github.com/CraftYun83/Questionare, github.com/CrafterPika/upload.py, +github.com/Craftermath/duolingo-to-markdown, github.com/CraftingGamerTom/webslack,num_dependents_deps.dev:0 github.com/CraftmanSam/s-inputs,num_dependents_deps.dev:0 github.com/Craftsy/babel-plugin-encapsulate-jsx,num_dependents_deps.dev:0 @@ -44218,6 +45192,7 @@ github.com/Crashdoom/spamwatch-js-fetch,num_dependents_deps.dev:0 github.com/CrashyBang/weblo,num_dependents_deps.dev:0 github.com/Craskermasker/mvwt, github.com/Craskermasker/print_partial_datasets, +github.com/Cratecode/upload-unit, github.com/CraterMaik/discord-gestor,num_dependents_deps.dev:0 github.com/Craterdome/angular-immutable-textbox,num_dependents_deps.dev:0 github.com/Cratis/Client.JavaScript.Setup,num_dependents_deps.dev:0 @@ -44423,7 +45398,10 @@ github.com/Creatures-Developer-Network/prayer, github.com/CreaturesInUnitards/mithril-datepicker,num_dependents_deps.dev:0 github.com/CreaturesInUnitards/mithril-timepicker,num_dependents_deps.dev:0 github.com/CreazyJack/simple-ui, +github.com/Crec0/announce-n-crosspost, github.com/Crecto/crecto,criticality_score:0.355450 +github.com/CredentialEngine/credential-registry-publish-action, +github.com/CredentialHunter/CredentialHunterAction_Public, github.com/Credfin-Australia/credfin-client-node, github.com/CreditAPI/js-sdk,num_dependents_deps.dev:0 github.com/CreditCloud/Log.io,num_dependents_deps.dev:0 @@ -44441,6 +45419,7 @@ github.com/Creekmind/class-mapper, github.com/CreepGin/node-easyimage, github.com/CreepPork/Magma,num_dependents_deps.dev:0 github.com/Creeper-100/pyDOS, +github.com/Creepios/sftp-action, github.com/Creeplays/i18n-translate,num_dependents_deps.dev:0 github.com/Creeplays/xpress,num_dependents_deps.dev:0 github.com/Creepler13/JSFrame, @@ -44576,6 +45555,7 @@ github.com/CristovaoHonorato/binge,num_dependents_deps.dev:0 github.com/CristovaoHonorato/md5-slim,num_dependents_deps.dev:0 github.com/CristovaoHonorato/react-date-widgets,num_dependents_deps.dev:0 github.com/Cristy94/canvas-mock,num_dependents_deps.dev:0 +github.com/CriticalBlue/action-store-s3, github.com/CriticalTechIo/bcrypt.js,num_dependents_deps.dev:0 github.com/Criticalcarpet/hyperlinkjs,num_dependents_deps.dev:0 github.com/Crizzooo/animated-react-buttonSVG,num_dependents_deps.dev:0 @@ -44617,6 +45597,7 @@ github.com/CroneKorkN/rbcm,num_dependents_deps.dev:0 github.com/Cronenbrogues/whimsylib, github.com/Cronos186/ckeditor5-build-classic-es5-spanish,num_dependents_deps.dev:0 github.com/CronosS/nodebb-plugin-shuffle-signature,num_dependents_deps.dev:0 +github.com/CronosUnder/block-autosquash-commits-action, github.com/Cronus1007/cronus-cli,num_dependents_deps.dev:0 github.com/Cropster/ember-l10n,num_dependents_deps.dev:0 github.com/Cropster/ember-visual-test, @@ -44694,6 +45675,7 @@ github.com/CrowdProcess/crpy, github.com/CrowdReactive/instascan,num_dependents_deps.dev:0 github.com/CrowdStrike/caracara, github.com/CrowdStrike/commitlint,num_dependents_deps.dev:0 +github.com/CrowdStrike/container-image-scan-action, github.com/CrowdStrike/csfalcon, github.com/CrowdStrike/ember-browser-services,num_dependents_deps.dev:0 github.com/CrowdStrike/ember-cli-content-for-nested,num_dependents_deps.dev:0 @@ -44762,9 +45744,11 @@ github.com/CruGlobal/cru-payments,num_dependents_deps.dev:0 github.com/CruGlobal/recommendations-component, github.com/CruGlobal/serverless-merge-config,num_dependents_deps.dev:0 github.com/CruPCI/cru-payments, +github.com/CruScanlan/scratchlink-version-action, github.com/CruelMoney/CUDE-CMS,num_dependents_deps.dev:0 github.com/CruelMoney/custom-animations,num_dependents_deps.dev:0 github.com/Cruikshanks/quke-demo-app,num_dependents_deps.dev:0 +github.com/CruiseCritic/fly-pr-review-apps, github.com/CruiseCritic/react-gpt,num_dependents_deps.dev:0 github.com/CruiseDevice/subsheets, github.com/CruiseDevice/twweet-cli, @@ -44788,6 +45772,7 @@ github.com/CrunchyData/crunchy-containers,"criticality_score:0.441620,num_depend github.com/CrunchyData/pg_tileserv,"criticality_score:0.425920,num_dependents_deps.dev:0" github.com/CrunchyData/postgres-operator,"criticality_score:0.618000,num_dependents_deps.dev:0" github.com/Crunkstar/dayspan-vuetify-next,num_dependents_deps.dev:0 +github.com/CrusaderX/changes, github.com/CrushedPixel/ember-jargo-realtime, github.com/CrushedPixel/ember-semantic-proper-modals,num_dependents_deps.dev:0 github.com/CrushedPixel/ember-semantic-validated-form, @@ -44813,6 +45798,7 @@ github.com/Cryden/FROND,num_dependents_deps.dev:0 github.com/Cryden/node-config-yaml, github.com/Cryden/node-config-yml,num_dependents_deps.dev:0 github.com/Cryma/twitch-rs,num_dependents_deps.dev:0 +github.com/CryogenicPlanet/run-with-secrets, github.com/CrypTools/Base64,num_dependents_deps.dev:0 github.com/CrypTools/BitShiftCipher,num_dependents_deps.dev:0 github.com/CrypTools/CaesarCipher,num_dependents_deps.dev:0 @@ -44827,6 +45813,7 @@ github.com/CryptOasisDS/multicall.js,num_dependents_deps.dev:0 github.com/Cryptact/crypto-db,num_dependents_deps.dev:0 github.com/Cryptex-github/async8ball, github.com/Cryptex-github/async_8ball, +github.com/Cryptex-github/cached-cargo-install, github.com/Cryptex-github/eight_ball, github.com/Cryptex-github/ferrischat.py, github.com/Cryptex-github/pygments-vsc-style, @@ -44900,6 +45887,13 @@ github.com/Cryptonomic/ImageProxy,num_dependents_deps.dev:0 github.com/Cryptonomic/Tezos-Micheline-to-Michelson-Conversion,num_dependents_deps.dev:0 github.com/Cryptos1337/RanTence-Py, github.com/Cryptos1337/rantence,num_dependents_deps.dev:0 +github.com/CryptosoftInc/Aggregate-Sbom, +github.com/CryptosoftInc/Aggregate-Sbom-Javascript, +github.com/CryptosoftInc/Cryptosoft-SBOM-generator, +github.com/CryptosoftInc/Dependency-Track, +github.com/CryptosoftInc/Dependency-Track-Javascript, +github.com/CryptosoftInc/dependencyTrack, +github.com/CryptosoftInc/dependencyTrack-Javascript, github.com/Cryptostats/Cryptostats-Python, github.com/Cryptovista/ccxt-exchanges-loader,num_dependents_deps.dev:0 github.com/Cryrivers/ember-dedupe-string-literals, @@ -44950,6 +45944,9 @@ github.com/CsKoushik9/primefib, github.com/CsYBot/csybotlist, github.com/CsYakamoz/excel-schema,num_dependents_deps.dev:0 github.com/CsYakamoz/excel-tool,num_dependents_deps.dev:0 +github.com/Cschau0701vip/CompositeAction, +github.com/Cschau0701vip/custom-action-using-docker, +github.com/Cschau0701vip/custom-message-to-pull-requests, github.com/CsharpLassi/pycourselet, github.com/Cshion/sunat-ruc-scraper2,num_dependents_deps.dev:0 github.com/Cskyleryoung/gravity-forms-styles,num_dependents_deps.dev:0 @@ -44972,6 +45969,8 @@ github.com/CthruTech/evented, github.com/CthruTech/jsmq,num_dependents_deps.dev:0 github.com/CthruTech/json-diff-report,num_dependents_deps.dev:0 github.com/CthruTech/searchTree,num_dependents_deps.dev:0 +github.com/Ctrain68/actions_github_test, +github.com/Ctrain68/git_diff_folders, github.com/CtripCloud/docker-make, github.com/CtripFE/format-weekly,num_dependents_deps.dev:0 github.com/Ctrl-Alt-Zen/aframe-mobile-controls,num_dependents_deps.dev:0 @@ -45035,6 +46034,7 @@ github.com/Cubicpath/HaloInfiniteGetter, github.com/Cubicpath/dyncommands, github.com/CubieDev/TheNounProjectAPI, github.com/CubieDev/TwitchWebsocket, +github.com/Cubik65536/merge-upstream, github.com/CubikNeRubik/ip-regex,num_dependents_deps.dev:0 github.com/CubikNeRubik/type-mapper,num_dependents_deps.dev:0 github.com/CubixCraft/bukkit,num_dependents_deps.dev:0 @@ -45079,6 +46079,8 @@ github.com/CultCornholio/solenya, github.com/CultOfOpenSource/bem-zurb-foundation,num_dependents_deps.dev:0 github.com/Cultti/webrcon-cli,num_dependents_deps.dev:0 github.com/Culttm/vue-search-select,num_dependents_deps.dev:0 +github.com/CultureHQ/actions-bundler, +github.com/CultureHQ/actions-yarn, github.com/CultureHQ/add-to-calendar,num_dependents_deps.dev:0 github.com/CultureHQ/charts,num_dependents_deps.dev:0 github.com/CultureHQ/client,num_dependents_deps.dev:0 @@ -45099,6 +46101,7 @@ github.com/Cumulo/cumulo-client,num_dependents_deps.dev:0 github.com/Cumulo/pipeline,num_dependents_deps.dev:0 github.com/Cumulo/react-timed-input,num_dependents_deps.dev:0 github.com/CumulusDS/aws-cloudformation-wait-ready,num_dependents_deps.dev:0 +github.com/CumulusDS/get-yaml-paths-action, github.com/CumulusNetworks/NetworkDocopt, github.com/CumulusNetworks/ifupdown2, github.com/CumulusNetworks/netshow-core, @@ -45119,6 +46122,7 @@ github.com/CupCakeArmy/memiens,num_dependents_deps.dev:0 github.com/CupCakeArmy/occulto,num_dependents_deps.dev:0 github.com/CupOfGeo/uberduckapi, github.com/CupOfTea696/atom-monokai-dark-soda-syntax,num_dependents_deps.dev:0 +github.com/CupOfTea696/gh-action-auto-release, github.com/CupOfTea696/karma-tinycolor,num_dependents_deps.dev:0 github.com/CupOfTea696/laravel-mix-imagemin,num_dependents_deps.dev:0 github.com/CupOfTea696/n-update,num_dependents_deps.dev:0 @@ -45185,6 +46189,7 @@ github.com/Curly-Mo/tensionflow, github.com/Curnull/istore-redux,num_dependents_deps.dev:0 github.com/Curnull/wrap-wrap, github.com/Curnull/wraptor,num_dependents_deps.dev:0 +github.com/CuroFinTechCorp/release-helper, github.com/CurosMJ/node-autoloader,num_dependents_deps.dev:0 github.com/CurosMJ/simple-autoloader, github.com/CurrenWong/ot.js,num_dependents_deps.dev:0 @@ -45261,6 +46266,7 @@ github.com/Cutewarriorlover/yaag-mme, github.com/CutieCat6778/mention-converter,num_dependents_deps.dev:0 github.com/Cutii/enocean,num_dependents_deps.dev:0 github.com/Cutty72/Formatter,num_dependents_deps.dev:0 +github.com/Cutwell/jekyll-build-action, github.com/CuveeCui/nego,num_dependents_deps.dev:0 github.com/CuveeCui/nego-bin,num_dependents_deps.dev:0 github.com/Cuxs/datepicker-dayjs,num_dependents_deps.dev:0 @@ -45334,6 +46340,7 @@ github.com/CyanH/map,num_dependents_deps.dev:0 github.com/CyanH/vuepress-theme-cyan, github.com/CyanRYi/Heimdallr,num_dependents_deps.dev:0 github.com/CyanRYi/gjall,num_dependents_deps.dev:0 +github.com/CyanRYi/trello-github-integration, github.com/CyanSalt/eslint-config,num_dependents_deps.dev:0 github.com/CyanSalt/eslint-plugin-galaxy,num_dependents_deps.dev:0 github.com/CyanSalt/inject-web-manifest-plugin,num_dependents_deps.dev:0 @@ -45353,11 +46360,17 @@ github.com/CyanogenMod/android_packages_apps_Trebuchet,criticality_score:0.35006 github.com/CyanogenMod/cm_platform_sdk,num_dependents_deps.dev:0 github.com/CyazyX/cx-mat-layout, github.com/Cyb10101/cookie-bar,num_dependents_deps.dev:0 +github.com/Cyb3r-Jak3/Clear-Cloudflare-Cache, github.com/Cyb3r-Jak3/Verkada_py, +github.com/Cyb3r-Jak3/action-cloudflare-cache, +github.com/Cyb3r-Jak3/actions-cloudflare-pages, github.com/Cyb3r-Jak3/common-python, github.com/Cyb3r-Jak3/haralyzer_3, +github.com/Cyb3r-Jak3/html5validator-action, +github.com/Cyb3r-Jak3/html5validator-action-experimental, github.com/Cyb3r-Jak3/premier_league_api, github.com/Cyb3r-Jak3/python_template_repo, +github.com/Cyb3r-Jak3/wrangler-action, github.com/Cyb3rN4u7/api_ocr_space,num_dependents_deps.dev:0 github.com/Cyb3rN4u7/image-splitter,num_dependents_deps.dev:0 github.com/Cyb3rWard0g/HELK,criticality_score:0.495270 @@ -45390,6 +46403,8 @@ github.com/CyberAgent/cmaes, github.com/CyberAgent/logcafe.js,num_dependents_deps.dev:0 github.com/CyberAgent/suns.js,num_dependents_deps.dev:10 github.com/CyberAgent/tunable-aws-ssm,num_dependents_deps.dev:0 +github.com/CyberAndrii/setup-steamcmd, +github.com/CyberAndrii/steam-totp, github.com/CyberCDN/D-Hooker, github.com/CyberCDN/DLDAPI, github.com/CyberCDN/Discord-Hooker,num_dependents_deps.dev:0 @@ -45488,6 +46503,7 @@ github.com/CyberZHG/torch-position-embedding, github.com/CyberZHG/torch-transformer, github.com/CyberZHG/toy-auto-diff, github.com/Cyberbeni/install-swift-tool,num_dependents_deps.dev:0 +github.com/Cyberboss/install-winget, github.com/Cyberbullie/discord-reaction-menu,num_dependents_deps.dev:0 github.com/CybercentreCanada/assemblyline-base, github.com/CybercentreCanada/assemblyline-core, @@ -45508,6 +46524,7 @@ github.com/Cybergroup-Research/ignite-odata,num_dependents_deps.dev:0 github.com/Cybergroup-Research/ignite-openapi,num_dependents_deps.dev:0 github.com/Cybergroup-Research/ignite-redis,num_dependents_deps.dev:0 github.com/Cybergroup-Research/ignite-sequelize,num_dependents_deps.dev:0 +github.com/Cyberhan123/rocm-toolkit, github.com/Cyberic/django-multifilefield, github.com/Cyberitas/svg4everybody,num_dependents_deps.dev:0 github.com/Cyberlane/Kidspeak-2016,num_dependents_deps.dev:0 @@ -45572,6 +46589,7 @@ github.com/Cyclip/Vanadium, github.com/Cyclododecene/newsfeed, github.com/Cyclokitty/cat-namer,num_dependents_deps.dev:0 github.com/Cyclone-Bot-List/API,num_dependents_deps.dev:0 +github.com/CycloneDX/cdxgen-action, github.com/CycloneDX/cyclonedx-conan, github.com/CycloneDX/cyclonedx-core-java,num_dependents_deps.dev:0 github.com/CycloneDX/cyclonedx-gradle-plugin,num_dependents_deps.dev:0 @@ -45579,6 +46597,11 @@ github.com/CycloneDX/cyclonedx-maven-plugin,num_dependents_deps.dev:0 github.com/CycloneDX/cyclonedx-node-module,num_dependents_deps.dev:0 github.com/CycloneDX/cyclonedx-python, github.com/CycloneDX/cyclonedx-python-lib, +github.com/CycloneDX/gh-dotnet-generate-sbom, +github.com/CycloneDX/gh-gomod-generate-sbom, +github.com/CycloneDX/gh-node-module-generatebom, +github.com/CycloneDX/gh-php-composer-generate-sbom, +github.com/CycloneDX/gh-python-generate-sbom, github.com/CycloneTechnology/ChaMP,num_dependents_deps.dev:0 github.com/CyclopsMC/forge-update-generator.js,num_dependents_deps.dev:0 github.com/CyclopsMC/infobook-html,num_dependents_deps.dev:0 @@ -45596,8 +46619,10 @@ github.com/Cycloware/npm-screen-clear,num_dependents_deps.dev:0 github.com/Cycloware/vscode-github-file-folder-url,num_dependents_deps.dev:0 github.com/CycoPH/docpad-plugin-csv,num_dependents_deps.dev:0 github.com/CycoPH/winston-filerotatedate,num_dependents_deps.dev:0 +github.com/CycodeLabs/cimon-action, github.com/CydarLtd/quarg, github.com/Cydmi/face,num_dependents_deps.dev:0 +github.com/CydrickT/GithubDeployBot, github.com/Cyer/dva-model-creator,num_dependents_deps.dev:0 github.com/CygnusNetworks/pyocfagent, github.com/CygnusNetworks/pypureomapi, @@ -45624,6 +46649,7 @@ github.com/CynderTech/strapi-plugin-paymongo,num_dependents_deps.dev:0 github.com/Cynerd/mcserver-wrapper, github.com/Cynicollision/nspace,num_dependents_deps.dev:0 github.com/Cynlis/DualFM-Python, +github.com/Cynnexis/expand-emoji, github.com/CyntechUK/touch4pi, github.com/Cyntheon/eslint-config-next,num_dependents_deps.dev:0 github.com/Cynthiamf/cli-pwned,num_dependents_deps.dev:0 @@ -45670,6 +46696,8 @@ github.com/CyrusBiotechnology/auth0-authorization,num_dependents_deps.dev:0 github.com/CyrusBiotechnology/chargify,num_dependents_deps.dev:0 github.com/CyrusBiotechnology/dj-protein, github.com/CyrusMang/c-validator-js,num_dependents_deps.dev:0 +github.com/CyrusRoshan/cachepurger, +github.com/CyrusRoshan/generic-docker-run, github.com/CyrusRoshan/lolbuddy, github.com/Cyrusrome22/DeepClone,num_dependents_deps.dev:0 github.com/Cysharp/MagicOnion,criticality_score:0.435050 @@ -45773,6 +46801,7 @@ github.com/D-xuanmo/d-table,num_dependents_deps.dev:0 github.com/D-xuanmo/mime-types,num_dependents_deps.dev:0 github.com/D-xuanmo/v-form, github.com/D-xuanmo/vue-color-picker,num_dependents_deps.dev:0 +github.com/D00Movenok/achtung-action, github.com/D0d0/cordova-plugin-sphero,num_dependents_deps.dev:0 github.com/D0miH/SMCNodeKit,num_dependents_deps.dev:0 github.com/D0miH/macos-system-info,num_dependents_deps.dev:0 @@ -45802,6 +46831,7 @@ github.com/D34THWINGS/ng-redux-dev-tools,num_dependents_deps.dev:0 github.com/D34THWINGS/react-named-router,num_dependents_deps.dev:0 github.com/D3CRYPT360/valoStatus, github.com/D3MNetworks/ruby-wifi-scanner,num_dependents_deps.dev:0 +github.com/D3OXY/pterodactyl-power, github.com/D3PSI/mailbomb, github.com/D3Portillo/ira,num_dependents_deps.dev:0 github.com/D3Portillo/whoom,num_dependents_deps.dev:0 @@ -45811,6 +46841,8 @@ github.com/D3adlock/mboarch,num_dependents_deps.dev:0 github.com/D3f0/maranet, github.com/D3f0/pandoc_minted, github.com/D3r3k23/LastFmGet, +github.com/D3rHase/rsync-deploy-action, +github.com/D3rHase/ssh-command-action, github.com/D4-project/d4-pyclient, github.com/D4H/angular,num_dependents_deps.dev:0 github.com/D4H/api-angular, @@ -45834,6 +46866,7 @@ github.com/D4v1X/ts-optional-class,num_dependents_deps.dev:0 github.com/D4v1d98Ru1z/Business-Card,num_dependents_deps.dev:0 github.com/D6-ream/reactUI-demo,num_dependents_deps.dev:0 github.com/D6-ream/util-demo,num_dependents_deps.dev:0 +github.com/D7440D3541CF/urban-telegram, github.com/D780/egg-valparams,num_dependents_deps.dev:0 github.com/D780/valparams,num_dependents_deps.dev:0 github.com/D9RS/react-calculator,num_dependents_deps.dev:0 @@ -45882,6 +46915,7 @@ github.com/DASHANANT/Wordsense, github.com/DATA-DOG/bootstrap-modal-form,num_dependents_deps.dev:0 github.com/DATA-DOG/go-sqlmock,"criticality_score:0.465380,num_dependents_deps.dev:57" github.com/DATA-DOG/go-txdb,criticality_score:0.389910 +github.com/DATADEER/run-ghost-inspector-suite-action, github.com/DATasso/simpleconjoint, github.com/DATechnologies/react-fa-icon-picker,num_dependents_deps.dev:0 github.com/DATechnologies/react-native-heremaps, @@ -45999,6 +47033,7 @@ github.com/DCKit/dckit,num_dependents_deps.dev:0 github.com/DCKit/hygen-dckit, github.com/DCKit/hygen-generators,num_dependents_deps.dev:0 github.com/DCMLab/corpusinterface, +github.com/DCMLab/dcml_corpus_workflow, github.com/DCMLab/hierarchicity-in-music, github.com/DCMLab/pitchplots, github.com/DCMLab/pitchtypes, @@ -46168,6 +47203,7 @@ github.com/DEKHTIARJonathan/python3-linkedin, github.com/DELTA37/TVN, github.com/DEMCON/libstored, github.com/DEMG-DEV/SimpleBlockchainDataBase, +github.com/DEMGroup/dotnet-settings-templator, github.com/DENG-MIT/reactorch, github.com/DENIELER/angular-sequence-events,num_dependents_deps.dev:0 github.com/DENjjA/nempy, @@ -46204,7 +47240,9 @@ github.com/DEgITx/tagslog,num_dependents_deps.dev:0 github.com/DEploid-dev/DEploid-py, github.com/DFASDL/dfasdl-core,num_dependents_deps.dev:0 github.com/DFASDL/dfasdl-utils,num_dependents_deps.dev:0 +github.com/DFE-Digital/keyvault-yaml-secret, github.com/DFE-Digital/login.dfe.jwt-strategies,num_dependents_deps.dev:0 +github.com/DFE-Digital/simplecov-resultset-diff-action, github.com/DFE-evernote/axe-ui,num_dependents_deps.dev:0 github.com/DFE/multisuite, github.com/DFEAGILEDEVOPS/dfe-platform-tool,num_dependents_deps.dev:0 @@ -46268,6 +47306,7 @@ github.com/DHARPA-project/kiara_modules.language_processing, github.com/DHARPA-project/kiara_modules.network_analysis, github.com/DHBW-VS-WI17B/rechenmodul-core, github.com/DHDaniel/finwiz,num_dependents_deps.dev:0 +github.com/DHI-GRAS/azure-multi-deploy-action, github.com/DHI-GRAS/gras-react-boilerplate,num_dependents_deps.dev:0 github.com/DHI-GRAS/terracotta, github.com/DHI-GRAS/wakati, @@ -46326,6 +47365,8 @@ github.com/DIREKTSPEED-LTD/diet-pug,num_dependents_deps.dev:0 github.com/DIRKMJK/bikeride, github.com/DISBi/django-disbi, github.com/DISTORTEC/distortos,criticality_score:0.345810 +github.com/DIVD-NL/cna-bot, +github.com/DIVD-NL/cve-rsus-validate-submit, github.com/DIYer22/boxx, github.com/DIYer22/bpycv, github.com/DIYer22/calibrating, @@ -46390,6 +47431,7 @@ github.com/DJercic/redux-fancy,num_dependents_deps.dev:0 github.com/DJones4822/pyTeamUp, github.com/DK-2013/project-lvl1-s490,num_dependents_deps.dev:0 github.com/DK-DAO/infrastructure, +github.com/DK-Khambhadiya/welcomify-me, github.com/DK-denno/flaskCli, github.com/DK26/pyrust-keyring, github.com/DKAResearchCenter/DKAPythonFramework, @@ -46584,6 +47626,8 @@ github.com/DNXLabs/plugin-commands, github.com/DNXLabs/plugin-dnx-assume, github.com/DNXLabs/plugin-foundation, github.com/DNXLabs/plugin-kube, +github.com/DNXLabs/ssosync-action, +github.com/DNXLabs/terraform-docs, github.com/DNature/nature-ui, github.com/DNetL/magent,num_dependents_deps.dev:0 github.com/DOBEEE/vuex-crossviews-shared,num_dependents_deps.dev:0 @@ -46616,6 +47660,7 @@ github.com/DP-3T/documents,criticality_score:0.305270 github.com/DP-3T/dp3t-sdk-android,criticality_score:0.366450 github.com/DP6/Marketing-Attribution-Models, github.com/DP6/customer-journey-analysis-toolbox, +github.com/DP6/jekyll-update-pages-action, github.com/DP6/penguin-adinfo, github.com/DP6/penguin-datalayer-core,num_dependents_deps.dev:0 github.com/DP6/pipeline-penguin, @@ -46666,6 +47711,7 @@ github.com/DREEBIT/node-modbus-rtu-tcp,num_dependents_deps.dev:0 github.com/DREEBIT/node_vsm,num_dependents_deps.dev:0 github.com/DREZZ3R/prefix-log,num_dependents_deps.dev:0 github.com/DREZZ3R/props-replace,num_dependents_deps.dev:0 +github.com/DRFR0ST/fly-pr-review-apps, github.com/DRFR0ST/littera,num_dependents_deps.dev:0 github.com/DRFR0ST/react-instant,num_dependents_deps.dev:0 github.com/DRFR0ST/react-langlate,num_dependents_deps.dev:0 @@ -46682,6 +47728,7 @@ github.com/DRIVER-EU/python-test-bed-adapter, github.com/DRIVER-EU/simple-message-injector,num_dependents_deps.dev:0 github.com/DRIVER-EU/test-bed-time-service,num_dependents_deps.dev:0 github.com/DRIVER-EU/twitter-gateway,num_dependents_deps.dev:0 +github.com/DRJ-Technologies/wire-generate, github.com/DRKSLV/zHv-parser,num_dependents_deps.dev:0 github.com/DRL9/generator-drl-nodejs,num_dependents_deps.dev:0 github.com/DRMacIver/hecate, @@ -46841,11 +47888,13 @@ github.com/DVDAGames/buttonmancer,num_dependents_deps.dev:0 github.com/DVDAGames/elite-dangerous-journal-server,num_dependents_deps.dev:0 github.com/DVDAGames/gamepadder,num_dependents_deps.dev:0 github.com/DVDAndroid/ColorListPreference,num_dependents_deps.dev:0 +github.com/DVDAndroid/action-android-lint, github.com/DVELP/airline-ccai-fulfillment-tools,num_dependents_deps.dev:0 github.com/DVELP/front_man,num_dependents_deps.dev:0 github.com/DVELP/nelly,num_dependents_deps.dev:0 github.com/DVELP/seoable,num_dependents_deps.dev:0 github.com/DVG/ember-cli-bootstrap-components, +github.com/DVKunion/CollieTrickster, github.com/DVLP/run-func,num_dependents_deps.dev:4 github.com/DVLP/signalr-no-jquery,num_dependents_deps.dev:4 github.com/DVNCL/dvnc-theme,num_dependents_deps.dev:0 @@ -46876,6 +47925,8 @@ github.com/DX-DeveloperExperience/project-starter,num_dependents_deps.dev:0 github.com/DXBrazil/dxconfig,num_dependents_deps.dev:0 github.com/DXC-Finsa/ds-snippets, github.com/DXFE/power-uploader, +github.com/DXH30/publish-schedule-action, +github.com/DXHeroes/gh-action-auto-release, github.com/DXINkemoduo/nodelea,num_dependents_deps.dev:0 github.com/DXMarkets/Savoir, github.com/DXSIoT/npm-cayenne-mqtt,num_dependents_deps.dev:0 @@ -47016,6 +48067,10 @@ github.com/Daadler6/react-native-detect-device,num_dependents_deps.dev:0 github.com/Daahorst/Aggregator, github.com/DaanDeMeyer/reproc,criticality_score:0.407190 github.com/DaanKorver/mojang-minecraft-api,num_dependents_deps.dev:0 +github.com/DaanV2/Json-Schema-Action-Compression, +github.com/DaanV2/Markdown-Action-Create-Indexes, +github.com/DaanV2/Typescript-Action-Create-Indexes, +github.com/DaanV2/action-commit-amount-last-release, github.com/DaanVanYperen/artemis-odb-contrib,num_dependents_deps.dev:80 github.com/DaanVervacke/pyToledo, github.com/DaanWet/gamesense-client, @@ -47155,6 +48210,8 @@ github.com/Daeren/tgb,num_dependents_deps.dev:0 github.com/Daeren/tgb-pl-botanio,num_dependents_deps.dev:0 github.com/Daeren/web-phantom,num_dependents_deps.dev:0 github.com/Daeren/xee,num_dependents_deps.dev:0 +github.com/Dafnik/generate-license-report, +github.com/Dafnik/setup-node-pnpm, github.com/Dafrok/BMapLib.CurveLine,num_dependents_deps.dev:266 github.com/Dafrok/BMapLib.DistanceTool,num_dependents_deps.dev:0 github.com/Dafrok/BMapLib.Heatmap,num_dependents_deps.dev:266 @@ -47251,6 +48308,7 @@ github.com/DaielChom/chackpasspy, github.com/DaikiAzuma/shot_point_scraper, github.com/DaikiriFinance/daikiriswap-lib,num_dependents_deps.dev:0 github.com/DaikiriFinance/daikiriswap-periphery,num_dependents_deps.dev:0 +github.com/DailyBotHQ/action-check-branches-state, github.com/DailyBurn/db-charts,num_dependents_deps.dev:0 github.com/DailyDeal/EasyLogs,num_dependents_deps.dev:0 github.com/DailyDreaming/bog, @@ -47341,6 +48399,7 @@ github.com/Dakuan/constant-enum,num_dependents_deps.dev:0 github.com/Dakuan/gulp-jest,num_dependents_deps.dev:0 github.com/Dakuan/jumanji,num_dependents_deps.dev:0 github.com/Dakuan/stub-fluxxor,num_dependents_deps.dev:0 +github.com/Dal-Papa/actions-uncrustify, github.com/Dalamar/react-native-navigation-redux,num_dependents_deps.dev:0 github.com/Dalamar42/or-shifty, github.com/DalangLy/testNodePackage,num_dependents_deps.dev:0 @@ -47352,6 +48411,7 @@ github.com/Dalas/pm2-webhook,num_dependents_deps.dev:0 github.com/Dale-/just-for-fun,num_dependents_deps.dev:0 github.com/DaleJefferson/gatsby-plugin-typescript-checker,num_dependents_deps.dev:0 github.com/DaleLaw/jest-single-file-coverage,num_dependents_deps.dev:0 +github.com/DaleSchool/calc-action, github.com/DaleSeo/daleseo-hello-npm,num_dependents_deps.dev:0 github.com/DaleSeo/gatsby-remark-breaks,num_dependents_deps.dev:0 github.com/Dalee/eslint-config-dalee,num_dependents_deps.dev:0 @@ -47438,6 +48498,7 @@ github.com/DameLyngdoh/guitar-chord-svg-generator-angular,num_dependents_deps.de github.com/DameLyngdoh/math-exp-string-eval-angular,num_dependents_deps.dev:0 github.com/Damego/discord-py-slash-components-bridge, github.com/Damego/discord_components_paginator, +github.com/Damego/prettier_action, github.com/DamengRandom/use-fetch-hook-trial,num_dependents_deps.dev:0 github.com/Damgaard/PyImgur, github.com/Dami-js/phonyjs-lite,num_dependents_deps.dev:0 @@ -47447,6 +48508,7 @@ github.com/Damian-Sanchez/ranpasscli, github.com/DamianB-BitFlipper/algopytest, github.com/DamianChojna/config-node,num_dependents_deps.dev:0 github.com/DamianEdwards/grunt-tsng,num_dependents_deps.dev:0 +github.com/DamianFlynn/py-obsidian-parser, github.com/DamianKu/perf-measure,num_dependents_deps.dev:0 github.com/DamianMullins/dom-buddy,num_dependents_deps.dev:2 github.com/DamianMullins/js-test-buddy,num_dependents_deps.dev:0 @@ -47454,9 +48516,11 @@ github.com/DamianOsipiuk/jest-reporter-testrail,num_dependents_deps.dev:0 github.com/DamianOsipiuk/testcafe-reporter-testrail,num_dependents_deps.dev:0 github.com/DamianOsipiuk/testrail-api,num_dependents_deps.dev:0 github.com/DamianOsipiuk/vue-query,num_dependents_deps.dev:0 +github.com/DamianReeves/write-file-action, github.com/DamianS1987/node-iedriver,num_dependents_deps.dev:0 github.com/DamianStanger/jshintRunner,num_dependents_deps.dev:0 github.com/DamianStanger/serviceHost,num_dependents_deps.dev:0 +github.com/DamianX/issue-labeler, github.com/DamianZaremba/django-social-auth-trello, github.com/DamianZaremba/sentry-trello, github.com/DamianoMagrini/interphone,num_dependents_deps.dev:0 @@ -47728,6 +48792,7 @@ github.com/DanBradbury/LeagueApi,num_dependents_deps.dev:0 github.com/DanBrown47/DanBrown47.github.io,num_dependents_deps.dev:0 github.com/DanBurkhardt/SimpleHashEncryption,num_dependents_deps.dev:0 github.com/DanByDay/palindrome,num_dependents_deps.dev:0 +github.com/DanCanetti/Create-Eleventy-Site, github.com/DanCanetti/eleventy-plugin-monetization, github.com/DanCanetti/wp-plugin-icons, github.com/DanCarlyon/newrelic-api-client,num_dependents_deps.dev:0 @@ -47826,6 +48891,9 @@ github.com/DanZBo/async-mqtt-mustache-events,num_dependents_deps.dev:0 github.com/DanZiti/GrindstoneJS,num_dependents_deps.dev:0 github.com/DanZiti/ShiftJS,num_dependents_deps.dev:0 github.com/Dana-Farber-AIOS/pathml, +github.com/Dana-Prajea/Setup-MSBuild, +github.com/Dana-Prajea/Setup-Nuget, +github.com/Dana-Prajea/code-sign-action, github.com/DanaJomar/PyALE, github.com/Danack/Message,num_dependents_deps.dev:0 github.com/Danack/widgety,num_dependents_deps.dev:0 @@ -47893,6 +48961,7 @@ github.com/DaniDPX/gebeya-number-generator,num_dependents_deps.dev:0 github.com/DaniFdezAlvarez/shexer, github.com/DaniFoldi/easydice,num_dependents_deps.dev:0 github.com/DaniFoldi/neumorphism-ui-kit,num_dependents_deps.dev:0 +github.com/DaniFoldi/pnpm-license-summary, github.com/DaniFoldi/teamtrees-counter,num_dependents_deps.dev:0 github.com/DaniJG/sinon-mongo,num_dependents_deps.dev:0 github.com/DaniMartinezIT/node-red-contrib-servicenow-table-api, @@ -47902,6 +48971,7 @@ github.com/DaniSancas/telegram-envelope, github.com/DaniSchenk/moment-feiertage, github.com/DaniTulp/aanzee-tina-next, github.com/DaniZakaria63/morsecrypt,num_dependents_deps.dev:0 +github.com/DaniaErnest/composite-Action, github.com/Danial-Alh/fast-bleu, github.com/DanialRafiee/starstrap,num_dependents_deps.dev:0 github.com/Danie-ZA/react-native-payfast, @@ -47933,6 +49003,7 @@ github.com/Daniel-Knights/svelte-dk-router, github.com/Daniel-Knights/vue-curve, github.com/Daniel-Knights/vue-dk-toast, github.com/Daniel-Knights/vuelity, +github.com/Daniel-Marynicz/postgresql-action, github.com/Daniel-N-Huss/lotide,num_dependents_deps.dev:0 github.com/Daniel-Novikov/op-inview,num_dependents_deps.dev:0 github.com/Daniel-Novikov/op-slider,num_dependents_deps.dev:0 @@ -47940,6 +49011,7 @@ github.com/Daniel-Novikov/op-view-progress,num_dependents_deps.dev:0 github.com/Daniel-R_Armstrong/med2nlp, github.com/Daniel-Sogbey/whitespaceremover, github.com/Daniel-Timothy-Leads/dtleads-api-helper, +github.com/Daniel-Trevitz/uncrustify-check, github.com/Daniel-Uzcategui/cordova-plugin-password-dialog,num_dependents_deps.dev:0 github.com/Daniel-Yonkov/jest-mysql,num_dependents_deps.dev:0 github.com/Daniel-t/MiLight_v6,num_dependents_deps.dev:0 @@ -48043,6 +49115,7 @@ github.com/DanielHands008/voicemeeter-remote-potato-napi,num_dependents_deps.dev github.com/DanielHdeez/jquery-backtotop,num_dependents_deps.dev:0 github.com/DanielHe4rt/php4noobs,criticality_score:0.315610 github.com/DanielHeath/geocoder-sensis,num_dependents_deps.dev:0 +github.com/DanielHilton/jira-jql-search, github.com/DanielHindi/aws-s3-zipper,num_dependents_deps.dev:0 github.com/DanielHreben/atlassian-connect-auth,num_dependents_deps.dev:0 github.com/DanielHreben/jest-matcher-specific-error,num_dependents_deps.dev:0 @@ -48256,11 +49329,13 @@ github.com/DanielPechersky/opml-translate, github.com/DanielPereod/react-code-editor-editable, github.com/DanielPintilei/hyper-fusion,num_dependents_deps.dev:0 github.com/DanielR59/target_description, +github.com/DanielRNDev/get-today, github.com/DanielRamosAcosta/aura-sdk,num_dependents_deps.dev:0 github.com/DanielRapp/doppler.js,num_dependents_deps.dev:0 github.com/DanielRapp/twss.js,num_dependents_deps.dev:2 github.com/DanielRejniak/flask_microservice,num_dependents_deps.dev:0 github.com/DanielRobertNicoud/dupont-contraction, +github.com/DanielRomero29/actions, github.com/DanielRowe/nmr-datastream,num_dependents_deps.dev:0 github.com/DanielRuf/filter-webpack-plugin,num_dependents_deps.dev:0 github.com/DanielRuf/get-ssl-certificate-next,num_dependents_deps.dev:0 @@ -48295,6 +49370,10 @@ github.com/DanielSiller/insurance-code-generator,num_dependents_deps.dev:0 github.com/DanielSimonsen90/DanhoLibraryJS,num_dependents_deps.dev:0 github.com/DanielSinclair/create-terraform-module,num_dependents_deps.dev:0 github.com/DanielSinclair/react-atv-parallax,num_dependents_deps.dev:0 +github.com/DanielSinclair/rover-fetch, +github.com/DanielSinclair/rover-introspect, +github.com/DanielSinclair/rover-publish, +github.com/DanielSinclair/rover-setup, github.com/DanielSinclair/terraform-scripts,num_dependents_deps.dev:0 github.com/DanielSitarz/react-slick,num_dependents_deps.dev:0 github.com/DanielSmedegaardBuus/node-wd-sync,num_dependents_deps.dev:0 @@ -48309,8 +49388,10 @@ github.com/DanielStocco/unnameable-cli,num_dependents_deps.dev:0 github.com/DanielStutzbach/heapdict,Google github.com/DanielSunami/dir-routes,num_dependents_deps.dev:0 github.com/DanielSunami/var-parser,num_dependents_deps.dev:0 +github.com/DanielSwensson/auto-assign-owner-action, github.com/DanielSwensson/spotify-osx-controller,num_dependents_deps.dev:0 github.com/DanielTakeshi/deformable-ravens,Google +github.com/DanielTamkin/HasLabel, github.com/DanielTamkin/release-test,num_dependents_deps.dev:0 github.com/DanielTamkin/sout.js,num_dependents_deps.dev:0 github.com/DanielTate/ox,num_dependents_deps.dev:0 @@ -48356,6 +49437,9 @@ github.com/DanielaValero/assemble-reveal-builder,num_dependents_deps.dev:0 github.com/DanielaValero/fit-commit-js,num_dependents_deps.dev:0 github.com/DanielaValero/generator-reveal-presentation, github.com/Danieldevop/npm-lenguage-Repository,num_dependents_deps.dev:0 +github.com/Daniele-Tentoni/VuePagesAction, +github.com/Daniele-Tentoni/quasar-vue-gh-pages-deploy, +github.com/Daniele-Tentoni/simple-github-pages-deployment, github.com/Daniele1602/Collections, github.com/Daniele1602/Segnali, github.com/DanieleAlessandro/KENN2, @@ -48445,6 +49529,7 @@ github.com/Daniloel/platzom,num_dependents_deps.dev:0 github.com/Danilopastor/how-days,num_dependents_deps.dev:0 github.com/Danilopastor/ig-node-js,num_dependents_deps.dev:0 github.com/Danimal4326/homebridge-ecoplug,num_dependents_deps.dev:0 +github.com/Daninator1/Breaker, github.com/Daninet/buffer-collection,num_dependents_deps.dev:0 github.com/Daninet/hash-wasm,num_dependents_deps.dev:72 github.com/Daninet/n-dimensional-map, @@ -48461,7 +49546,9 @@ github.com/DaniyarJakupov/react-native-animated-ui,num_dependents_deps.dev:0 github.com/Dank-Memer/imgen-client.py, github.com/Dank-del/SibylPy, github.com/Dank-del/anilistWrapPY, +github.com/Dank-del/flutter-build-and-publish-action, github.com/DankCity/dankbot, +github.com/DankMemer/pulumi-actions, github.com/DankNeon/hyper,num_dependents_deps.dev:0 github.com/DankSideSparkles/DankDB, github.com/Danke1983/christmas-widgets,num_dependents_deps.dev:0 @@ -48532,6 +49619,7 @@ github.com/DannyFeliz/vue-email-dropdown,num_dependents_deps.dev:0 github.com/DannyFeliz/vue-rocker-switch,num_dependents_deps.dev:0 github.com/DannyFeliz/vue-timed-content,num_dependents_deps.dev:0 github.com/DannyFeliz/vue-tweet,num_dependents_deps.dev:0 +github.com/DannyHinshaw/earmuffs, github.com/DannyLarn/FallingEmojis, github.com/DannyLee1991/AlgorithmInterfaceConstructor, github.com/DannyLee1991/MDWriter, @@ -48567,6 +49655,7 @@ github.com/DanskSupermarked/sg-npm-jobs-sdk,num_dependents_deps.dev:0 github.com/DanskSupermarked/sg-npm-pagination-traverser,num_dependents_deps.dev:0 github.com/DanskSupermarked/sg-npm-stores-sdk,num_dependents_deps.dev:0 github.com/DanskeBank/apamaeventparser, +github.com/Dansyuqri/newbiefy, github.com/Dansyuqri/react-simple-side-menu,num_dependents_deps.dev:0 github.com/Dantaro/IpsumNumberFive,num_dependents_deps.dev:0 github.com/Dante-dan/easy-intro,num_dependents_deps.dev:0 @@ -48597,6 +49686,8 @@ github.com/Danue1/react-hookable-store,num_dependents_deps.dev:0 github.com/Danue1/use-css-variable,num_dependents_deps.dev:0 github.com/Danue1/use-doc-title,num_dependents_deps.dev:0 github.com/Danue1/use-ws,num_dependents_deps.dev:0 +github.com/Danushka96/actions, +github.com/Danushka96/sns-action, github.com/Danushka96/vue-ustmodal,num_dependents_deps.dev:0 github.com/Danver97/RedisEventBroker,num_dependents_deps.dev:0 github.com/Danver97/eventSourcing,num_dependents_deps.dev:0 @@ -48631,8 +49722,11 @@ github.com/DanySK/alchemist-numericconcentrations,num_dependents_deps.dev:0 github.com/DanySK/alchemist-sapere-mathexp,num_dependents_deps.dev:4 github.com/DanySK/alchemist-swingui,num_dependents_deps.dev:0 github.com/DanySK/alchemist-time,num_dependents_deps.dev:64 +github.com/DanySK/auto-latexdiff, github.com/DanySK/boilerplate,num_dependents_deps.dev:59 github.com/DanySK/build-commons,num_dependents_deps.dev:0 +github.com/DanySK/compile-and-publish-all-latex, +github.com/DanySK/compile-latex-action, github.com/DanySK/conrec,num_dependents_deps.dev:4 github.com/DanySK/git-sensitive-semantic-versioning-gradle-plugin,num_dependents_deps.dev:0 github.com/DanySK/gradle-latex,num_dependents_deps.dev:0 @@ -48644,10 +49738,13 @@ github.com/DanySK/javalib-java7,num_dependents_deps.dev:17 github.com/DanySK/jirf,num_dependents_deps.dev:64 github.com/DanySK/listset,num_dependents_deps.dev:83 github.com/DanySK/maven-central-gradle-plugin,num_dependents_deps.dev:0 +github.com/DanySK/semver-autotag-action, +github.com/DanySK/setup-texlive-action, github.com/DanySK/smartrrr,num_dependents_deps.dev:0 github.com/DanySK/stream-goodies,num_dependents_deps.dev:12 github.com/DanySK/upgradle,num_dependents_deps.dev:0 github.com/DanySK/urlclassloader-util,num_dependents_deps.dev:1 +github.com/DanySK/yaagha, github.com/DanyST/react-loading-overlay,num_dependents_deps.dev:0 github.com/DanyWind/fast_neptune, github.com/DanyWits/randomRubikColor, @@ -48698,6 +49795,7 @@ github.com/Daplie/rsa-compat.js,num_dependents_deps.dev:0 github.com/Dapp-Stack/Dapp-Stack,num_dependents_deps.dev:27 github.com/Dapperware/node-rx-http,num_dependents_deps.dev:0 github.com/Dappetizer/transaction-hopper-js,num_dependents_deps.dev:0 +github.com/Dar1anMar1us/xray-reporter, github.com/Dar9586/NClientV2,criticality_score:0.365360 github.com/Dara-Ekanth/todo_custom_package, github.com/DarbiaDev/darbiadev-manageorders, @@ -48713,6 +49811,7 @@ github.com/DarceyLloyd/jSprite,num_dependents_deps.dev:0 github.com/DarceyLloyd/jsodoc,num_dependents_deps.dev:0 github.com/Darchiv/scrollus,num_dependents_deps.dev:0 github.com/DardanIseni/htpp_status_checker, +github.com/DareFox/delete-cache-by-key, github.com/DareFox/very-simple-log,num_dependents_deps.dev:0 github.com/Daredzik/leaflet-routing-machine-locationiq,num_dependents_deps.dev:0 github.com/Daredzik/lrm-Here,num_dependents_deps.dev:0 @@ -48759,6 +49858,7 @@ github.com/DariusMontez/grbl_gamepad, github.com/DariusMontez/grbl_link, github.com/DariusNorv/react-app-cli,num_dependents_deps.dev:0 github.com/DariusNorv/svg-iconset,num_dependents_deps.dev:0 +github.com/DariuszPorowski/github-action-gitleaks, github.com/Dark-Energy/Dynamic-popup-form,num_dependents_deps.dev:0 github.com/Dark2017/react-dark-photo,num_dependents_deps.dev:0 github.com/Dark2017/view-photo,num_dependents_deps.dev:0 @@ -48842,6 +49942,7 @@ github.com/DarkXaHTeP/angular-progress-http,num_dependents_deps.dev:0 github.com/DarkaOnLine/L5-Swagger,criticality_score:0.517810 github.com/DarkaOnLine/SwaggerLume,criticality_score:0.327550 github.com/DarkaOnLine/laravel-elixir-helpers,num_dependents_deps.dev:0 +github.com/Darkace01/DotNet-Azure-AppService-Action, github.com/Darkarmour/stencil-web-component,num_dependents_deps.dev:0 github.com/Darkdeford/dragonball-names,num_dependents_deps.dev:0 github.com/Darkela998/nrt14818zadatak1,num_dependents_deps.dev:0 @@ -48967,6 +50068,7 @@ github.com/DarqueWarrior/vsts-task-starter,num_dependents_deps.dev:0 github.com/Darquiche/Riot-Observer, github.com/DarraghFinn/react-jodit-editor,num_dependents_deps.dev:0 github.com/DarraghFinn/react-semantic-form-builder,num_dependents_deps.dev:0 +github.com/DarrellRichards/action-nx-affected-list, github.com/DarrellRichards/valcom-ngx-bs-table,num_dependents_deps.dev:0 github.com/Darren120/prisma-nest,num_dependents_deps.dev:0 github.com/DarrenCoppinger/reactjs, @@ -49017,6 +50119,7 @@ github.com/Darth-Knoppix/gatsby-plugin-amp-light,num_dependents_deps.dev:0 github.com/Darth-Knoppix/gatsby-plugin-feed,num_dependents_deps.dev:0 github.com/DarthAffe/RGB.NET,criticality_score:0.327740 github.com/DarthBenro008/dotCloud,num_dependents_deps.dev:0 +github.com/DarthBenro008/goimports-check-action, github.com/DarthCharles/generator-nearsoft-apprentice,num_dependents_deps.dev:0 github.com/DarthChungo/javascript-terminal,num_dependents_deps.dev:0 github.com/DarthChungo/react-terminal-component,num_dependents_deps.dev:0 @@ -49059,6 +50162,7 @@ github.com/DarvinStudio/frontend-components,num_dependents_deps.dev:0 github.com/Darwin666/Harley-UI,num_dependents_deps.dev:0 github.com/Darwin97VA/engine-typewriter,num_dependents_deps.dev:0 github.com/Darwin97VA/novum,num_dependents_deps.dev:0 +github.com/DarwinInnovation/cmake-project-version-action, github.com/DaryKiri/KindleClippings,num_dependents_deps.dev:0 github.com/DaryaDarya/TradeinTest,num_dependents_deps.dev:0 github.com/DaryaVeretennikova/postcss-color-blender,num_dependents_deps.dev:0 @@ -49127,6 +50231,7 @@ github.com/DasRed/perst,num_dependents_deps.dev:0 github.com/DasRed/requirejs-cfg,num_dependents_deps.dev:0 github.com/DasRed/resize-handler,num_dependents_deps.dev:0 github.com/DasRed/rollup-es2cjs-fix,num_dependents_deps.dev:0 +github.com/DasSkelett/AVC-VersionFileValidator, github.com/DasUberLeo/qvrpy, github.com/DasWolke/SnowTransfer,num_dependents_deps.dev:0 github.com/Dascr32/tempy, @@ -49249,6 +50354,8 @@ github.com/DataConservancy/dcs-package-ingest,num_dependents_deps.dev:1 github.com/DataConservancy/fcrepo-jsonld,num_dependents_deps.dev:0 github.com/DataCoveEU/STAM,num_dependents_deps.dev:0 github.com/DataDaoDe/py-settings-manager, +github.com/DataDog/action-py-black-formatter, +github.com/DataDog/agent-github-action, github.com/DataDog/apigentools, github.com/DataDog/async-listener,num_dependents_deps.dev:4 github.com/DataDog/browser-sdk,num_dependents_deps.dev:113 @@ -49263,6 +50370,7 @@ github.com/DataDog/datadog-go,num_dependents_deps.dev:1536 github.com/DataDog/datadog-lambda-js, github.com/DataDog/datadog-lambda-python, github.com/DataDog/datadog-serverless-functions,num_dependents_deps.dev:0 +github.com/DataDog/datadog-static-analyzer-github-action, github.com/DataDog/datadogpy,criticality_score:0.550870 github.com/DataDog/dd-agent,"criticality_score:0.534100,num_dependents_deps.dev:0" github.com/DataDog/dd-opentelemetry-exporter-js,num_dependents_deps.dev:0 @@ -49280,6 +50388,7 @@ github.com/DataDog/glommio,criticality_score:0.415700 github.com/DataDog/import-in-the-middle,num_dependents_deps.dev:14 github.com/DataDog/integrations-core,"criticality_score:0.675900,num_dependents_deps.dev:0" github.com/DataDog/java-dogstatsd-client,num_dependents_deps.dev:139 +github.com/DataDog/junit-upload-github-action, github.com/DataDog/kafka-kit,"criticality_score:0.309150,num_dependents_deps.dev:0" github.com/DataDog/mkdocs-click, github.com/DataDog/node-connect-datadog, @@ -49293,7 +50402,10 @@ github.com/DataDog/sketches-java,num_dependents_deps.dev:48 github.com/DataDog/sketches-js, github.com/DataDog/sketches-py,Google github.com/DataDog/statsd-datadog-backend,num_dependents_deps.dev:0 +github.com/DataDog/swift-test-action, +github.com/DataDog/synthetics-ci-github-action, github.com/DataDog/ui_apps_sdk, +github.com/DataDog/upload-dsyms-github-action, github.com/DataDog/zstd,"criticality_score:0.324760,num_dependents_deps.dev:4028" github.com/DataDrake/wiki-this,num_dependents_deps.dev:0 github.com/DataDropApp/dd-push-js,num_dependents_deps.dev:0 @@ -49593,6 +50705,7 @@ github.com/Datahero/node-hubspot,num_dependents_deps.dev:0 github.com/Datahero/node-marketo,num_dependents_deps.dev:0 github.com/Datahero/node-pardot,num_dependents_deps.dev:0 github.com/Datahero/surveymonkey,num_dependents_deps.dev:0 +github.com/DataliftHQ/datalift-action, github.com/Datalis/qvapay,num_dependents_deps.dev:0 github.com/DatalogiForAlle/pyagents, github.com/DatalyticsIT/chartbeat-client,num_dependents_deps.dev:0 @@ -49693,6 +50806,7 @@ github.com/DaveOrDead/pogojs,num_dependents_deps.dev:0 github.com/DavePearce/JEVM,num_dependents_deps.dev:0 github.com/DavePearce/JModelGen,num_dependents_deps.dev:3 github.com/DavePearce/JavaAVR,num_dependents_deps.dev:0 +github.com/DaveRoey/docker-image-build-push-action, github.com/DaveSeidel/ShlispTools,num_dependents_deps.dev:0 github.com/DaveSkender/Stock.Indicators.Python, github.com/DaveTCode/comala-workflow-python-lib, @@ -49701,8 +50815,10 @@ github.com/DaveTCode/confluence-python-lib, github.com/DaveTD/mjollnir,num_dependents_deps.dev:0 github.com/DaveTilheim/izi-pygame, github.com/DaveTrost/connect4-ai,num_dependents_deps.dev:0 +github.com/DaveVED/cdk-diff-action, github.com/DaveWM/ngx-graphs,num_dependents_deps.dev:0 github.com/DaveWoodCom/XCGLogger,criticality_score:0.404560 +github.com/DaveXiong/bump-maven-version-action, github.com/Daveloper87/gulp-list,num_dependents_deps.dev:0 github.com/Daveloper87/msw-client,num_dependents_deps.dev:0 github.com/Davenchy/live-torrent-backend,num_dependents_deps.dev:0 @@ -49721,6 +50837,7 @@ github.com/DaviBrancol/brancol-react-snackbar,num_dependents_deps.dev:0 github.com/DaviMendesDev/only-ts,num_dependents_deps.dev:0 github.com/DavichoStar/starmusic,num_dependents_deps.dev:0 github.com/David-Bauman/shipwire-node-client,num_dependents_deps.dev:0 +github.com/David-Byrne/jekyll-diff-action, github.com/David-Chen1999/iview,num_dependents_deps.dev:0 github.com/David-Corbett/test-kss-pages,num_dependents_deps.dev:0 github.com/David-Desmaisons/PoormanUiFramework,num_dependents_deps.dev:0 @@ -49739,6 +50856,7 @@ github.com/David-Durst/aetherling, github.com/David-Durst/frail, github.com/David-Lor/PyBuses, github.com/David-Lor/Python-DotEnv-Settings-Handler, +github.com/David-Lor/action-dockerhub-get-tag-metadata, github.com/David-Lor/python-wait4it, github.com/David-Mulder/paper-date-picker,num_dependents_deps.dev:0 github.com/David-Mulder/whenever.js,num_dependents_deps.dev:0 @@ -49781,6 +50899,7 @@ github.com/DavidAnson/grunt-check-pages,num_dependents_deps.dev:0 github.com/DavidAnson/gruntMock,num_dependents_deps.dev:0 github.com/DavidAnson/markdownlint,"criticality_score:0.533130,num_dependents_deps.dev:426" github.com/DavidAnson/markdownlint-cli2, +github.com/DavidAnson/markdownlint-cli2-action, github.com/DavidAnson/npm-placeholder,num_dependents_deps.dev:0 github.com/DavidAnson/promise-ring,num_dependents_deps.dev:0 github.com/DavidAnson/tape-player,num_dependents_deps.dev:0 @@ -49919,6 +51038,7 @@ github.com/DavidIsa/console-monit,num_dependents_deps.dev:0 github.com/DavidIsa/console-save,num_dependents_deps.dev:0 github.com/DavidJ-0/vue-j-scroll.js,num_dependents_deps.dev:0 github.com/DavidJBianco/pycef, +github.com/DavidJFelix/docker-pulumi, github.com/DavidJFelix/serverless-compose,num_dependents_deps.dev:0 github.com/DavidJFelix/serverless-plugin-ensure-env,num_dependents_deps.dev:0 github.com/DavidJLee/gitchangelog,num_dependents_deps.dev:0 @@ -49946,6 +51066,7 @@ github.com/DavidLazic/react-audio-visualizer,num_dependents_deps.dev:0 github.com/DavidLazic/react-augment,num_dependents_deps.dev:0 github.com/DavidLegrand/mars-2021,num_dependents_deps.dev:0 github.com/DavidLemarier/soldat-select-list,num_dependents_deps.dev:0 +github.com/DavidLeoni/readthedocs-to-actions, github.com/DavidLutton/LabToolkit, github.com/DavidM42/OpenEAN, github.com/DavidM42/SonaWrap, @@ -49962,6 +51083,9 @@ github.com/DavidMStraub/netviel, github.com/DavidMStraub/pylha, github.com/DavidMStraub/rundec-python, github.com/DavidMacDonald11/curfew-promise,num_dependents_deps.dev:0 +github.com/DavidMansolino/bloom-release-action, +github.com/DavidMansolino/webots-action-test, +github.com/DavidMarquezF/close-matching-issues, github.com/DavidMarquezF/d3-bullet,num_dependents_deps.dev:0 github.com/DavidMartinezRomero/contacto-js-footer,num_dependents_deps.dev:0 github.com/DavidMcEwan/binstr, @@ -49999,6 +51123,7 @@ github.com/DavidRockin/sapling,num_dependents_deps.dev:0 github.com/DavidRodriguezSoaresCUI/DRSlib, github.com/DavidRother/evalpy, github.com/DavidRouyer/grunt-aspnet-server,num_dependents_deps.dev:0 +github.com/DavidS/jekyll-deploy, github.com/DavidSamir/lighter,num_dependents_deps.dev:0 github.com/DavidSamir/lighters, github.com/DavidSanwald/react-use-brush,num_dependents_deps.dev:0 @@ -50025,6 +51150,7 @@ github.com/DavidSouther/snapci-npm-test,num_dependents_deps.dev:0 github.com/DavidSouther/stassets,num_dependents_deps.dev:4 github.com/DavidSouther/superscore,num_dependents_deps.dev:0 github.com/DavidSouthgate/leaflet-clonelayer,num_dependents_deps.dev:0 +github.com/DavidSpek/gha-get-docker-hub-tags, github.com/DavidSpriggs/passport-arcgis,num_dependents_deps.dev:0 github.com/DavidSpriggs/proxypage,num_dependents_deps.dev:0 github.com/DavidStrausz/cordova-plugin-today-widget,num_dependents_deps.dev:0 @@ -50138,7 +51264,10 @@ github.com/DavideViolante/emoji-flags-to-country,num_dependents_deps.dev:0 github.com/DavideViolante/gender-detection-from-name,num_dependents_deps.dev:0 github.com/DavideViolante/investing-com-api,num_dependents_deps.dev:0 github.com/DavideViolante/ocr-space-api-wrapper,num_dependents_deps.dev:0 +github.com/DavideViolante/pr-automerge-action, +github.com/DavideViolante/pr-reviews-reminder-action, github.com/DavideViolante/socialblade-scraper,num_dependents_deps.dev:0 +github.com/DavideViolante/sprint-milestone-action, github.com/DavideViolante/weird-to-normal-chars,num_dependents_deps.dev:0 github.com/Davideb94/Flujd,num_dependents_deps.dev:0 github.com/Davideini/qflow-cli,num_dependents_deps.dev:0 @@ -50190,6 +51319,7 @@ github.com/Davit-000/restify,num_dependents_deps.dev:0 github.com/Davood-M/gym_wumpus_world, github.com/Davood-M/mtcnn-pytorch, github.com/Davoudnsr/greenweb,num_dependents_deps.dev:0 +github.com/Davounet/waitForNetlify, github.com/Davra/connecthing-api,num_dependents_deps.dev:0 github.com/DavraYoung/autosize-vue,num_dependents_deps.dev:0 github.com/DavraYoung/js-xlsx,num_dependents_deps.dev:0 @@ -50206,10 +51336,12 @@ github.com/DavyJonesLocker/client_side_validations,"criticality_score:0.529600,n github.com/DavyJonesLocker/client_side_validations-simple_form,"criticality_score:0.436460,num_dependents_deps.dev:0" github.com/DavyJonesLocker/postgres_ext,criticality_score:0.305840 github.com/DavyVan/MatrixTest, +github.com/DawChihLiou/changed-files-action, github.com/DawChihLiou/cz-conventional-changelog-with-jiraid-detection,num_dependents_deps.dev:0 github.com/DawChihLiou/react-use-pip,num_dependents_deps.dev:0 github.com/Dawast/node-gpwebpay,num_dependents_deps.dev:0 github.com/DawesLab/rubidium, +github.com/DawidB/get-secret-from-keyvault, github.com/DawidDabkowski/dsfun, github.com/DawidRoguziak/DKRHexLoader,num_dependents_deps.dev:0 github.com/Dawidkubis/pressent,num_dependents_deps.dev:0 @@ -50267,6 +51399,7 @@ github.com/DayZFE/hooks-schedule, github.com/DayZFE/vue-injection-helper,num_dependents_deps.dev:0 github.com/DayZFE/vue-logic,num_dependents_deps.dev:0 github.com/DayZFE/vue-poly,num_dependents_deps.dev:0 +github.com/Dayanand-Chinchure/gcr-upload-action, github.com/Daybr3ak/async-replace-es6, github.com/DayeShing/apiface,num_dependents_deps.dev:0 github.com/Dayjo/joint,num_dependents_deps.dev:0 @@ -50279,6 +51412,7 @@ github.com/Daz2345/plop-react-ts,num_dependents_deps.dev:0 github.com/DazEdword/synology-toolset, github.com/DbUp/DbUp,criticality_score:0.484590 github.com/Dbof/cordova-protected-confirmation,num_dependents_deps.dev:0 +github.com/Dbono-dev/yaml-action, github.com/Dbroqua/Kicad_bom,num_dependents_deps.dev:0 github.com/Dbz/rails_events,num_dependents_deps.dev:0 github.com/Dcard/eslint-config-dcard,num_dependents_deps.dev:0 @@ -50332,10 +51466,15 @@ github.com/DeH4er/nsync-zip, github.com/DeJayDev/electron-google-oauth2,num_dependents_deps.dev:0 github.com/DeJayDev/ytsubtitledl, github.com/DeKaN/youtrack-rest-api, +github.com/DeKal/github-activity-readme, github.com/DeKoServidoni/OMFM,num_dependents_deps.dev:0 github.com/DeKoyre/vue-ahoy,num_dependents_deps.dev:0 +github.com/DeLaGuardo/clojure-lint-action, github.com/DeLaGuardo/dagre,num_dependents_deps.dev:0 github.com/DeLaGuardo/dagre-d3, +github.com/DeLaGuardo/setup-clj-kondo, +github.com/DeLaGuardo/setup-clojure, +github.com/DeLaGuardo/setup-graalvm, github.com/DeLaGuardo/ss-iced,num_dependents_deps.dev:0 github.com/DeLaGuardo/ss-jsx,num_dependents_deps.dev:0 github.com/DeLaGuardo/ss-sass,num_dependents_deps.dev:0 @@ -50348,8 +51487,10 @@ github.com/DeMoorJasper/parcel-plugin-imagemin,num_dependents_deps.dev:0 github.com/DeMoorJasper/parcel-plugin-svelte,num_dependents_deps.dev:22 github.com/DeMoorJasper/parcel-vue-component-compiler,num_dependents_deps.dev:0 github.com/DeMoorJasper/react-loadaable,num_dependents_deps.dev:0 +github.com/DeMoorJasper/stale, github.com/DeMoorJasper/stylish-components,num_dependents_deps.dev:0 github.com/DeMoorJasper/tiny-benchy, +github.com/DeMoorJasper/triage-bot, github.com/DeMoorJasper/with-cors,num_dependents_deps.dev:0 github.com/DeMoriarty/TorchPQ, github.com/DeNA/PacketProxy,criticality_score:0.314930 @@ -50360,6 +51501,7 @@ github.com/DeNA/thrush, github.com/DeNederlandscheBank/Arelle, github.com/DeNederlandscheBank/arelle_dnb, github.com/DeNederlandscheBank/data-patterns, +github.com/DeNepo/learning-space-single-setup, github.com/DeOne4eg/2captcha-rucaptcha,num_dependents_deps.dev:0 github.com/DeOne4eg/remove-dupl,num_dependents_deps.dev:0 github.com/DePaula-uondemand/depaula-contrib-ethip,num_dependents_deps.dev:0 @@ -50443,8 +51585,10 @@ github.com/DeadHipo/git-listener,num_dependents_deps.dev:0 github.com/DeadHipo/vk-api-help,num_dependents_deps.dev:0 github.com/DeadKuriel/react-native-circle-floatmenu,num_dependents_deps.dev:0 github.com/DeadMeme5441/RTMLCore, +github.com/DeadNews/setup-vapoursynth, github.com/DeadNight/WikiSort-js,num_dependents_deps.dev:0 github.com/DeadNight/WikiSort.js, +github.com/DeadPoetSpoon/zola-deploy-action, github.com/DeadRain/NvutiAPI, github.com/DeadWisdom/lit-observe, github.com/Deadarius/ink-quicksearch-input,num_dependents_deps.dev:0 @@ -50552,6 +51696,7 @@ github.com/DeathMark/gulp-scss-combine,num_dependents_deps.dev:8 github.com/DeathMark/gulp-sliquid,num_dependents_deps.dev:0 github.com/DeathMark/mysqldump,num_dependents_deps.dev:0 github.com/DeathMark/sliquid,num_dependents_deps.dev:0 +github.com/DeathSy/GHA-LoC-Badge, github.com/DeathTech154/screepsMods,num_dependents_deps.dev:0 github.com/DeathVenom54/itch-scraper,num_dependents_deps.dev:0 github.com/Deathangel908/lines-logger,num_dependents_deps.dev:0 @@ -50594,6 +51739,7 @@ github.com/Debiancc/bosonnlp.js,num_dependents_deps.dev:0 github.com/Debicred/debicred-node-sdk,num_dependents_deps.dev:0 github.com/Debith/py3traits, github.com/DebjyotiPaul16/CheckName,num_dependents_deps.dev:0 +github.com/Deborah-Digges/new-pull-request-comment-action, github.com/Deborah-Digges/node-health-check,num_dependents_deps.dev:0 github.com/Debrief-BC/hash-avataaars,num_dependents_deps.dev:0 github.com/Debrief-BC/web3-debrief-extend,num_dependents_deps.dev:0 @@ -50624,9 +51770,13 @@ github.com/Decathlon/decavision, github.com/Decathlon/moon,num_dependents_deps.dev:0 github.com/Decathlon/moon-testing,num_dependents_deps.dev:0 github.com/Decathlon/newman-reporter-pullrequest-decorator,num_dependents_deps.dev:0 +github.com/Decathlon/pull-request-labeler-action, github.com/Decathlon/react-table,num_dependents_deps.dev:0 +github.com/Decathlon/release-notes-generator-action, +github.com/Decathlon/slate-builder-action, github.com/Decathlon/sports-api-wrapper,num_dependents_deps.dev:0 github.com/Decathlon/vitamin-web,num_dependents_deps.dev:0 +github.com/Decathlon/wiki-page-creator-action, github.com/Dece/Scaruffi, github.com/Dece/Xion, github.com/December1208/flask_sample_test, @@ -50634,6 +51784,7 @@ github.com/DecentCMS/DecentInjection,num_dependents_deps.dev:0 github.com/DecentM/email-encoder,num_dependents_deps.dev:0 github.com/DecentM/generator-meta,num_dependents_deps.dev:0 github.com/DecentM/gulp-email-encoder,num_dependents_deps.dev:0 +github.com/DecentM/setup-steam-game-windows, github.com/DecenterApps/MelonMail,num_dependents_deps.dev:0 github.com/DecenterApps/defisaver-sdk,num_dependents_deps.dev:0 github.com/DecenterApps/defisaver-tokens, @@ -50645,6 +51796,7 @@ github.com/Decentralized-Sharing-Working-Group/rest-translator,num_dependents_de github.com/DecentricCorp/web3admin,num_dependents_deps.dev:0 github.com/Decentrix/TetriX,num_dependents_deps.dev:0 github.com/Decerno/formik-reimagined,num_dependents_deps.dev:0 +github.com/Dechea/Fauna-IaC_Action, github.com/Dechrissen/PokeQuiz, github.com/DecioAmador/Jdocuments-generator,num_dependents_deps.dev:0 github.com/DecipherNow/gm-ui-components,num_dependents_deps.dev:0 @@ -50691,9 +51843,11 @@ github.com/Dedda/rust-increment,num_dependents_deps.dev:0 github.com/Dedda/rust-string-stupidify,num_dependents_deps.dev:0 github.com/Dedefer/flake8-tuple-unpack-limit, github.com/DediProgSW/SF100Linux,Google +github.com/DedlySpyder/factorio-version-check, github.com/DedoxBR/hunit-js,num_dependents_deps.dev:0 github.com/DedrickEnc/json-manip,num_dependents_deps.dev:0 github.com/Dee-chen/Tree2gd, +github.com/DeeDeeG/rebase-github-action, github.com/DeeJayTC/adaptivecards-vue,num_dependents_deps.dev:0 github.com/DeeLindesay/check-and-format-number,num_dependents_deps.dev:0 github.com/DeeLindesay/deconstruct-number-format,num_dependents_deps.dev:74 @@ -50724,6 +51878,7 @@ github.com/Deep-Codes/affinity-css,num_dependents_deps.dev:0 github.com/Deep-Codes/convert-colorcodes,num_dependents_deps.dev:0 github.com/Deep-Codes/scroll-indicator,num_dependents_deps.dev:0 github.com/Deep-Codes/wakatime-cli,num_dependents_deps.dev:0 +github.com/Deep-Cold-Storage/dev-box, github.com/Deep-Mux/deepmux-cli, github.com/Deep-Mux/deepmux-python, github.com/Deep-Symmetry/asciidoctor-bytefield,num_dependents_deps.dev:0 @@ -50735,6 +51890,7 @@ github.com/Deep1144/MongoExport,num_dependents_deps.dev:0 github.com/Deep1144/exportmongodatabase, github.com/Deep512/header-footer, github.com/DeepAQ/Autumn,num_dependents_deps.dev:70 +github.com/DeepBitsTechnology/getsbom, github.com/DeepBlueAI/quixmart-java-sdk,num_dependents_deps.dev:0 github.com/DeepChainBio/datasets, github.com/DeepCodeAI/dcignore,num_dependents_deps.dev:10 @@ -50805,6 +51961,7 @@ github.com/DeepakNatraj/react-elementos,num_dependents_deps.dev:0 github.com/DeepakNatraj/react-ui-elements,num_dependents_deps.dev:0 github.com/DeepakTatachar/ADV-TRAIN, github.com/DeepakVelmurugan/deepNets, +github.com/Deepakanandrao/jfrog-cli, github.com/Deepakanandrao/monaco-editor-esm-bundle,num_dependents_deps.dev:0 github.com/Deepakanandrao/opencvjs,num_dependents_deps.dev:0 github.com/Deepaksai1919/cordova-truecaller, @@ -50955,6 +52112,7 @@ github.com/DeividVeloso/spotifyWrapper,num_dependents_deps.dev:0 github.com/DeividasK/ai-snippets,num_dependents_deps.dev:0 github.com/Deividy/argument-validator,num_dependents_deps.dev:36 github.com/Deividy/frete,num_dependents_deps.dev:0 +github.com/Deividy/move-stale-issues, github.com/Deividy/pagseguro-checkout,num_dependents_deps.dev:0 github.com/Deivu/Harusame,num_dependents_deps.dev:0 github.com/Deivu/Murasame,num_dependents_deps.dev:0 @@ -51032,6 +52190,7 @@ github.com/DelightfulStudio/react-native-svgson,num_dependents_deps.dev:0 github.com/DelightfulStudio/react-native-tab-view,num_dependents_deps.dev:0 github.com/DelightfulStudio/react-native-wheel-picker-android,num_dependents_deps.dev:0 github.com/Delin-Z/html-screenshot-tool-demo,num_dependents_deps.dev:0 +github.com/DelineaXPM/dsv-github-action, github.com/Delivator/togethertube-vote-bot,num_dependents_deps.dev:0 github.com/Delivator/vue-cli-plugin-skynet,num_dependents_deps.dev:0 github.com/Delivator/youtube-dl.js,num_dependents_deps.dev:0 @@ -51058,6 +52217,11 @@ github.com/DelphiSolutions/indexed-set,num_dependents_deps.dev:0 github.com/DelphinPRO/gulp-check-hash,num_dependents_deps.dev:0 github.com/Delphren-Phox/JSFileLogger,num_dependents_deps.dev:0 github.com/Delpinos/dataproc, +github.com/Delsinvg/check-favicon-action, +github.com/Delsinvg/check-hreflang-action, +github.com/Delsinvg/check-mobile-friendly-action, +github.com/Delsinvg/check-page-title-and-description-action, +github.com/Delsinvg/check-robots.txt-action, github.com/Delta-Band/delta-next-mui,num_dependents_deps.dev:0 github.com/Delta-ML/delta,criticality_score:0.313200 github.com/Delta843/pScript,num_dependents_deps.dev:0 @@ -51071,6 +52235,7 @@ github.com/DeltaEvo/proxy-scraper, github.com/DeltaEvolution/proxy-scraper,num_dependents_deps.dev:0 github.com/DeltaGraphs/norris-nrti, github.com/DeltaHeavy/git-contrib, +github.com/DeltaLaboratory/redocly-cli-action, github.com/DeltaLaboratory/simple-bson, github.com/DeltaMod/LDI, github.com/DeltaRCM/pyDeltaRCM, @@ -51097,11 +52262,13 @@ github.com/DelvarWorld/three-subdivision-modifier,num_dependents_deps.dev:0 github.com/DelvarWorld/webpack-cyclic-dependency-checker,num_dependents_deps.dev:0 github.com/DelvarWorld/webpack-hot-2048-loader,num_dependents_deps.dev:0 github.com/DelveFore/sagasauce, +github.com/Delwing/mudlet-map-diff-action, github.com/DemSpiderHips/Metakiller3000,num_dependents_deps.dev:0 github.com/DemSquirrel/PirateLang-V2,num_dependents_deps.dev:0 github.com/Dema/effector-persist, github.com/Dema/final-form-validations,num_dependents_deps.dev:0 github.com/Dema/remote-data,num_dependents_deps.dev:0 +github.com/DemaTrading-ai/s3-upload-github-action, github.com/DemandHub/react-kichiri,num_dependents_deps.dev:0 github.com/Demangio/scikit-garden, github.com/Demetri0/gstranslate,num_dependents_deps.dev:0 @@ -51332,6 +52499,7 @@ github.com/DenisKuivalainen/ramda-godlike,num_dependents_deps.dev:0 github.com/DenisLanks/adonisjs-scaffold,num_dependents_deps.dev:0 github.com/DenisMtfl/node-red-contrib-dynamic-thermostat, github.com/DenisNP/vkui-connect-helper,num_dependents_deps.dev:0 +github.com/DenisPalnitsky/gitops-release, github.com/DenisPodgurskii/pentestkit,num_dependents_deps.dev:0 github.com/DenisSalem/VenC, github.com/DenisSlaschilinDevPro/NodeJS,num_dependents_deps.dev:0 @@ -51374,7 +52542,9 @@ github.com/DennisAhaus/node-express-crud-router,num_dependents_deps.dev:0 github.com/DennisAhaus/statemachine,num_dependents_deps.dev:0 github.com/DennisBecker/grunt-sass-globbing,num_dependents_deps.dev:2 github.com/DennisBecker/sass-globbing,num_dependents_deps.dev:0 +github.com/DennisDenuto/go-mod-vendor-pr, github.com/DennisDreissen/vultr-api,num_dependents_deps.dev:0 +github.com/DennisJensen95/coverage-scope, github.com/DennisKehrig/ANSInception,num_dependents_deps.dev:0 github.com/DennisKehrig/autoborg,num_dependents_deps.dev:0 github.com/DennisKo/perseus,num_dependents_deps.dev:0 @@ -51439,8 +52609,11 @@ github.com/Denu8thell/twitch-mock-webhook-hub,num_dependents_deps.dev:0 github.com/Denu8thell/twitch-oauth-authorization-code-express,num_dependents_deps.dev:0 github.com/Denu8thell/twitch-webhooks,num_dependents_deps.dev:0 github.com/Denubis/factotum, +github.com/DenverCoder1/doxygen-github-pages-action, +github.com/DenverCoder1/github-readme-youtube-cards, github.com/DenverCoder1/play-lichess, github.com/DenverCoder1/table2ascii, +github.com/DenverCoderOne/readme-repos-list, github.com/Denvernoell/steel_helper, github.com/DenyVeyten/postcss-deadcss,num_dependents_deps.dev:0 github.com/Denys8/loopback-connector-postgresql-include,num_dependents_deps.dev:0 @@ -51470,8 +52643,10 @@ github.com/Depau/DepyTG, github.com/Depaulicious/Nova6, github.com/DependableSystemsLab/TensorFI, github.com/DependableSystemsLab/ThingsJS, +github.com/Dependency-Drift-Tracker/dependency-drift-tracker-action, github.com/DependencyTrack/dependency-track,criticality_score:0.501490 github.com/DependencyTrack/frontend,num_dependents_deps.dev:0 +github.com/DependencyTrack/gh-upload-sbom, github.com/DependencyTrack/public-api-java,num_dependents_deps.dev:0 github.com/DependencyWatcher/agent,num_dependents_deps.dev:0 github.com/DependencyWatcher/maven-plugin,num_dependents_deps.dev:0 @@ -51487,6 +52662,8 @@ github.com/DeployGate/gradle-deploygate-plugin,num_dependents_deps.dev:0 github.com/DeployMaster/DeployMaster,num_dependents_deps.dev:0 github.com/Deplux/dpt,num_dependents_deps.dev:0 github.com/DepokSarkar/vue-google-maps,num_dependents_deps.dev:0 +github.com/Depra-Inc/SemVer.Guard, +github.com/Depra-Inc/Setup.Npmrc, github.com/DeprecatedLuxas/aws-s3-tree-structure,num_dependents_deps.dev:0 github.com/DeprecatedLuxas/width-measurer,num_dependents_deps.dev:0 github.com/Depressurizer/Depressurizer,criticality_score:0.358620 @@ -51510,7 +52687,9 @@ github.com/DerHannes85/EventBus,num_dependents_deps.dev:0 github.com/DerHannes85/gulp-media-json,num_dependents_deps.dev:0 github.com/DerHannes85/gulp-translation-tool-srt,num_dependents_deps.dev:0 github.com/DerJacques/loopsie,num_dependents_deps.dev:0 +github.com/DerJuulsn/todo-issue, github.com/DerKobe/azure-keyvault-enctypted-config,num_dependents_deps.dev:0 +github.com/DerLev/eslint-annotations, github.com/DerMitch/fritzbox-smarthome, github.com/DerMolly/vault_printer, github.com/DerNivel/sinon-spy-react,num_dependents_deps.dev:0 @@ -51538,10 +52717,12 @@ github.com/DerTyan/altv-cli,num_dependents_deps.dev:0 github.com/DerTyp7214/DiscordUserApi,num_dependents_deps.dev:0 github.com/DerWeh/gftools, github.com/DerWeltbesteNachbar/DasWeltbesteGrid,num_dependents_deps.dev:0 +github.com/DerYeger/pnpm-setup-action, github.com/DerYeger/vue-marmoset-viewer,num_dependents_deps.dev:0 github.com/DerYeger/vue-masonry-wall,num_dependents_deps.dev:0 github.com/DerYeger/vue-persistent-storage-manager,num_dependents_deps.dev:0 github.com/DerYeger/vue2-masonry-wall,num_dependents_deps.dev:0 +github.com/DerYeger/yarn-setup-action, github.com/DerZyklop/eslint-plugin-no-unsafe-chars,num_dependents_deps.dev:0 github.com/Deradon/Rails-LookUpTable,num_dependents_deps.dev:0 github.com/Deraen/random-lodash-mixins,num_dependents_deps.dev:0 @@ -51676,6 +52857,7 @@ github.com/Desenroladev/ddev-pg,num_dependents_deps.dev:0 github.com/Desenroladev/pgddev,num_dependents_deps.dev:0 github.com/DesenvolvimentoDeBots/Bot,num_dependents_deps.dev:0 github.com/DesenvolvimentoDeBots/i18n,num_dependents_deps.dev:0 +github.com/Deseret-Mutual-Benefit-Administrators/littleci-littlecd-eks, github.com/DesertFoxNV/ngx-autosize-input,num_dependents_deps.dev:0 github.com/DesertNet/jarfile,"num_dependents_deps.dev:0,num_dependents_deps.dev:4" github.com/DesertNet/node-nailgun,"num_dependents_deps.dev:0,num_dependents_deps.dev:2" @@ -51702,6 +52884,7 @@ github.com/DesignSystemsOSS/eccentrictouch, github.com/Designer023/Wagtail-Paginated-Subpages, github.com/Designer023/generator-start-site,num_dependents_deps.dev:0 github.com/Designer023/generator-start-wp-theme,num_dependents_deps.dev:0 +github.com/DesigniteTools/DJAction, github.com/DesignmanIO/react-native-meteor-redux,num_dependents_deps.dev:0 github.com/Designory/CSS-JS-Proxies,num_dependents_deps.dev:0 github.com/Designory/Module-Picker,num_dependents_deps.dev:0 @@ -51713,6 +52896,7 @@ github.com/Designory/keystone-publish,num_dependents_deps.dev:0 github.com/Designory/keystone-publishable,num_dependents_deps.dev:0 github.com/Designory/mizer-overlay,num_dependents_deps.dev:0 github.com/Designory/yamodal, +github.com/DesignrKnight/js-package-info, github.com/Designveloper/deep-compare, github.com/Desiiii/weeb.py, github.com/Desionlab/node-cashcode-bv,num_dependents_deps.dev:0 @@ -51809,6 +52993,13 @@ github.com/DetectiveQuack/quill-hashtags,num_dependents_deps.dev:0 github.com/Detegr/rust-ctrlc,"criticality_score:0.425570,num_dependents_deps.dev:64" github.com/Deteri0n/lotide,num_dependents_deps.dev:0 github.com/Determinant/runes,num_dependents_deps.dev:0 +github.com/DeterminateSystems/flake-checker-action, +github.com/DeterminateSystems/flakehub-push, +github.com/DeterminateSystems/install-riff-action, +github.com/DeterminateSystems/magic-nix-cache-action, +github.com/DeterminateSystems/nix-installer, +github.com/DeterminateSystems/nix-installer-action, +github.com/DeterminateSystems/update-flake-lock, github.com/DethAriel/ng-recaptcha,"criticality_score:0.436700,num_dependents_deps.dev:0" github.com/DethAriel/ng2-recaptcha,num_dependents_deps.dev:0 github.com/DethRaid/sapiens-rs,num_dependents_deps.dev:0 @@ -51843,6 +53034,7 @@ github.com/DeudlyYT/Flying-Squid-Essentials,num_dependents_deps.dev:0 github.com/Deuqz/hw_python_show_graph_lib, github.com/DeusAres/funPIL, github.com/DeusExtimus/ABCalendar, +github.com/Deuscx/issue-blog-action, github.com/DeutscheMark/homebridge-kodi,num_dependents_deps.dev:0 github.com/DeutscheSoft/AES70.js,num_dependents_deps.dev:0 github.com/DeuxHuitHuit/algolia-webcrawler,num_dependents_deps.dev:0 @@ -51858,6 +53050,7 @@ github.com/DeuxHuitHuit/recursive-replace,num_dependents_deps.dev:0 github.com/Dev-Addict/apollo-blog,num_dependents_deps.dev:0 github.com/Dev-Addict/bucket.ml, github.com/Dev-Addict/decopress,num_dependents_deps.dev:0 +github.com/Dev-CasperTheGhost/create-linear-issue, github.com/Dev-CasperTheGhost/eslint-config,num_dependents_deps.dev:0 github.com/Dev-CasperTheGhost/mysql.ts, github.com/Dev-CasperTheGhost/pastebin-api, @@ -51868,6 +53061,7 @@ github.com/Dev-Force/express-conditional-tree-middleware,num_dependents_deps.dev github.com/Dev-JeromeBaek/redux-reducer-helper,num_dependents_deps.dev:0 github.com/Dev-JeromeBaek/redux-simple-pending,num_dependents_deps.dev:0 github.com/Dev-MHM/pyMHMuser, +github.com/Dev-MJ/LabelingWhenApproved, github.com/Dev-Mind/mockwebserver,num_dependents_deps.dev:0 github.com/Dev-Phani/capacitor-sample-test,num_dependents_deps.dev:0 github.com/Dev-Phani/testplugin,num_dependents_deps.dev:0 @@ -51876,6 +53070,7 @@ github.com/Dev-Songkran/vue-thailand, github.com/Dev-Vora/devs-unit-converter, github.com/Dev-Wito/gulp-clean-dir,num_dependents_deps.dev:0 github.com/Dev-Wito/gulp-sha256-filename, +github.com/Dev-Young-Jae/SLA, github.com/Dev-Yukine/Kurasuta,num_dependents_deps.dev:0 github.com/Dev-Yukine/node-opskins,num_dependents_deps.dev:0 github.com/Dev-Yukine/snek-node,num_dependents_deps.dev:0 @@ -51940,7 +53135,10 @@ github.com/DevChanQ/Scrype,num_dependents_deps.dev:0 github.com/DevChuckNorris/discord-webhook-proxy,num_dependents_deps.dev:0 github.com/DevCleverSolutions/ngx-clever,num_dependents_deps.dev:0 github.com/DevCloudFE/ng-devui,"criticality_score:0.326920,num_dependents_deps.dev:0" +github.com/DevCollaborate/quasar-playstore-github-action, github.com/DevCriss/pm-encoder,num_dependents_deps.dev:0 +github.com/DevCycleHQ/feature-flag-code-usage-action, +github.com/DevCycleHQ/feature-flag-pr-insights-action, github.com/DevDHera/Crypto-Cli,num_dependents_deps.dev:0 github.com/DevDay2019-AxonActive/DevDay2019-Micro-Frontends,num_dependents_deps.dev:0 github.com/DevDmitryHub/cordova-plugin-appsflyer,num_dependents_deps.dev:0 @@ -51980,6 +53178,7 @@ github.com/DevExpress/generator-testcafe-reporter,num_dependents_deps.dev:0 github.com/DevExpress/gulp-testcafe,num_dependents_deps.dev:0 github.com/DevExpress/stylelint-devextreme,num_dependents_deps.dev:0 github.com/DevExpress/testcafe,"criticality_score:0.623950,num_dependents_deps.dev:6" +github.com/DevExpress/testcafe-action, github.com/DevExpress/testcafe-browser-provider-browserstack,num_dependents_deps.dev:0 github.com/DevExpress/testcafe-browser-provider-electron,num_dependents_deps.dev:0 github.com/DevExpress/testcafe-browser-provider-phantomjs,num_dependents_deps.dev:0 @@ -51996,8 +53195,11 @@ github.com/DevExpress/testcafe-reporter-minimal,num_dependents_deps.dev:180 github.com/DevExpress/testcafe-reporter-spec,num_dependents_deps.dev:180 github.com/DevExpress/testcafe-reporter-xunit,num_dependents_deps.dev:180 github.com/DevExpress/testcafe-vue-selectors,num_dependents_deps.dev:2 +github.com/DevGrammo/init-simulation-app-action, +github.com/DevGrammo/simulation-static-page-generator, github.com/DevGroup-ru/dotplant2,criticality_score:0.339630 github.com/DevGuideDaily/no-fuss,num_dependents_deps.dev:0 +github.com/DevGuyOps/pr-thankyou-action, github.com/DevHalpin/lotide,num_dependents_deps.dev:0 github.com/DevHelp-Online/create-node-mocks,num_dependents_deps.dev:0 github.com/DevHigley/parse-proxy,num_dependents_deps.dev:0 @@ -52055,6 +53257,10 @@ github.com/DevNikita16/market-csgo-api,num_dependents_deps.dev:0 github.com/DevNiko/node-red-geofox-api,num_dependents_deps.dev:0 github.com/DevNullProd/vue-nyan-cat,num_dependents_deps.dev:0 github.com/DevNullProd/vue-xrp-waterfall,num_dependents_deps.dev:0 +github.com/DevOps-Nirvana/aws-helm-multi-deploy, +github.com/DevOps-Nirvana/aws-helm-multi-deploy-nodocker, +github.com/DevOps-Nirvana/aws-helm-multi-deploy-prebuilt, +github.com/DevOps-Tooling/helm-push-action, github.com/DevOps/flask_otpp_prometheus, github.com/DevOrc/chroniker,num_dependents_deps.dev:0 github.com/DevOrc/groupme-rs,num_dependents_deps.dev:0 @@ -52070,6 +53276,7 @@ github.com/DevSamuelV/Easy-Cryptography-js,num_dependents_deps.dev:0 github.com/DevSamuelV/SamsJavascriptPackage,num_dependents_deps.dev:0 github.com/DevSamurai/react-native-template-basic,num_dependents_deps.dev:0 github.com/DevSamurai/react-template-basic,num_dependents_deps.dev:0 +github.com/DevScyu/conventional-changelog-action, github.com/DevSecNinja/ZiggoF1Broadcasts, github.com/DevSecNinja/ZiggoStatus, github.com/DevSecNinja/aiobittrexapi, @@ -52191,6 +53398,7 @@ github.com/DevanB/gatsby-plugin-splitbee,num_dependents_deps.dev:0 github.com/DevanB/griditize,num_dependents_deps.dev:0 github.com/DevanB/modern-trello,num_dependents_deps.dev:0 github.com/DevanXU/dingcrm-jsapi,num_dependents_deps.dev:0 +github.com/Devansh-Maurya/Get-Email-Message-From-Branch-Action, github.com/Devansh-Sanghvi/react-native-multi-slider,num_dependents_deps.dev:0 github.com/Devansh-Sanghvi/react-rangeslider,num_dependents_deps.dev:0 github.com/Devansh-bit/WhatsappWebKit, @@ -52221,6 +53429,8 @@ github.com/DevdudeSami/json_dbms,num_dependents_deps.dev:0 github.com/DevdudeSami/node_cmd_app,num_dependents_deps.dev:0 github.com/Devecoop/react-jsonschema-form,num_dependents_deps.dev:0 github.com/DevecorSoft/rawproxy, +github.com/DevecorSoft/read-version, +github.com/DevecorSoft/verify-version, github.com/DevelAgora/make-gettext,num_dependents_deps.dev:0 github.com/DevelAx/RazorExpress,num_dependents_deps.dev:0 github.com/DevelAx/RazorExpressJS,num_dependents_deps.dev:0 @@ -52254,6 +53464,7 @@ github.com/DeveloperLaPoste/okapi-cli,num_dependents_deps.dev:0 github.com/DeveloperLaPoste/okapi-sdk-js,num_dependents_deps.dev:0 github.com/DeveloperMal/gissues, github.com/DeveloperMetal/krypton-ecs, +github.com/DeveloperMetrics/lead-time-for-changes, github.com/DeveloperMobile/AndroidUtils,num_dependents_deps.dev:0 github.com/DeveloperOfThings/material-ui-datagrid,num_dependents_deps.dev:0 github.com/DeveloperParana/recursos,num_dependents_deps.dev:0 @@ -52265,6 +53476,7 @@ github.com/DeveloperRSquared/case-insensitive-dict, github.com/DeveloperRSquared/datetime-helpers, github.com/DeveloperRSquared/http-exceptions, github.com/DeveloperRagin/ragin,num_dependents_deps.dev:0 +github.com/DeveloperRic/action-create-env, github.com/DeveloperSoFarApps/rn-circle-menu,num_dependents_deps.dev:0 github.com/DeveloperSubho/devsubhoshadow-,num_dependents_deps.dev:0 github.com/Developerayo/developerayo-cli,num_dependents_deps.dev:0 @@ -52330,6 +53542,7 @@ github.com/DeviceFarmer/stf, github.com/DeviceFarmer/stf-wiki,num_dependents_deps.dev:0 github.com/DevicePilot/devicepilot-js,num_dependents_deps.dev:0 github.com/DevicePush/DevicePush-Cordova-PhoneGap,num_dependents_deps.dev:0 +github.com/DeviesDevelopment/workflow-timer, github.com/DevifyPlatform/devify-cli,num_dependents_deps.dev:0 github.com/DevifyPlatform/devify-server,num_dependents_deps.dev:0 github.com/DevikaM/react-native-waltz,num_dependents_deps.dev:0 @@ -52425,6 +53638,8 @@ github.com/DevoInc/python-utils, github.com/DevoLearn/devolearn, github.com/DevoRia/UaScript,num_dependents_deps.dev:0 github.com/DevoRia/textvarify,num_dependents_deps.dev:0 +github.com/Devofure/advance-android-version-actions, +github.com/Devofure/version-reader-action, github.com/Devoll/sms24x7,num_dependents_deps.dev:0 github.com/Devolutions/IronRDP,num_dependents_deps.dev:0 github.com/Devolutions/mongodb-cwal-rs,num_dependents_deps.dev:0 @@ -52443,6 +53658,7 @@ github.com/Devorein/Nishan,num_dependents_deps.dev:652 github.com/Devorein/mongql,num_dependents_deps.dev:0 github.com/Devorein/weyder-package, github.com/Devoter/enumize, +github.com/DevourTech/snapshotter, github.com/Devoxin/Lavalink.py, github.com/Devoxin/TubeSearch,num_dependents_deps.dev:0 github.com/Devpodio/verdaccio-level-auth,num_dependents_deps.dev:0 @@ -52549,6 +53765,9 @@ github.com/Dgzt/tiled-extension-types,num_dependents_deps.dev:0 github.com/Dhaibuna/NodeJS-CLI,num_dependents_deps.dev:0 github.com/Dhaibuna/dhaibuna-card,num_dependents_deps.dev:0 github.com/Dhailin/vue-waterfall-simply,num_dependents_deps.dev:0 +github.com/Dhaiwat10/repo-backup-arweave, +github.com/Dhaiwat10/repo-backup-ipfs, +github.com/Dhaiwat10/typescript-action-template, github.com/Dhamodaran-Babu/ML-Thunai, github.com/DhanAzam93/archisoft-react-native-calendars,num_dependents_deps.dev:0 github.com/DhanaTontanahal/AutoComplete-Searchbox, @@ -52807,6 +54026,7 @@ github.com/Dids/homebridge-melcloud-ts,num_dependents_deps.dev:0 github.com/Dids/homebridge-ups-nut,num_dependents_deps.dev:0 github.com/Dids/nodejs-openssl-smime,num_dependents_deps.dev:0 github.com/Dids/weatherwoman,num_dependents_deps.dev:0 +github.com/Didstopia/SwiftAction, github.com/DieBrise/js-helpers,num_dependents_deps.dev:0 github.com/DieOver/aws-s3,num_dependents_deps.dev:0 github.com/DieOver/wc,num_dependents_deps.dev:0 @@ -52934,6 +54154,8 @@ github.com/Dietr/inuitcss-plugin-responsive-wrapper,num_dependents_deps.dev:0 github.com/Dietr/inuitcss-plugin-row,num_dependents_deps.dev:0 github.com/Diez37/contentBlocking,num_dependents_deps.dev:0 github.com/Difegue/LANraragi,criticality_score:0.475420 +github.com/Difegue/action-megacmd, +github.com/Difegue/action-perlcritic, github.com/DiffEqML/torchdyn,criticality_score:0.404310 github.com/DiffSK/configobj,criticality_score:0.413560 github.com/DiffSharp/DiffSharp,criticality_score:0.441220 @@ -52986,6 +54208,7 @@ github.com/DigiByte-Core/request-id,num_dependents_deps.dev:0 github.com/DigiDuncan/DigiFormatter, github.com/DigiExam/jszip2, github.com/DigiKlausur/ilias2nbgrader, +github.com/DigiPie/mongo-action, github.com/DigiTalentoCO/vue2-frappe,num_dependents_deps.dev:0 github.com/DigiThinkIT/bloom-conditionals,num_dependents_deps.dev:0 github.com/DigiThinkIT/electron-virtual-keyboard,num_dependents_deps.dev:0 @@ -53033,9 +54256,11 @@ github.com/Digital-First-Australia/react-org-chart, github.com/Digital-Frontiers/flyway-spring-boot,num_dependents_deps.dev:0 github.com/Digital-Identity-Labs/shibkit-meta_meta,num_dependents_deps.dev:0 github.com/Digital-MOB-Filecoin/filecoin-chaininfo,num_dependents_deps.dev:0 +github.com/Digital-Maritime-Consultancy/MRR_action, github.com/Digital-Sapphire/PyUpdater,criticality_score:0.383220 github.com/Digital-Structures/ghpythonremote, github.com/Digital-Thought/commons, +github.com/Digital-Udvikling/actions-calver, github.com/Digital-Visual/dc-chart,num_dependents_deps.dev:0 github.com/Digital-Visual/dc-sdk,num_dependents_deps.dev:0 github.com/DigitalArc/statuscast, @@ -53110,6 +54335,9 @@ github.com/DigitalRockers/stratos-posteon,num_dependents_deps.dev:0 github.com/DigitalRockers/stratos-render,num_dependents_deps.dev:0 github.com/DigitalRootsCRM/bbcode,num_dependents_deps.dev:0 github.com/DigitalRuby/IPBan,criticality_score:0.496750 +github.com/DigitalSVN/GoStatic, +github.com/DigitalSVN/bentodb-create-database, +github.com/DigitalSVN/bentodb-delete-database, github.com/DigitalSapphire/PyUpdater-s3-Plugin, github.com/DigitalSecurity/btim,num_dependents_deps.dev:0 github.com/DigitalSecurity/btlejuice,num_dependents_deps.dev:0 @@ -53516,6 +54744,7 @@ github.com/DirectlineDev/python-myeventhub, github.com/DirectlyMe/test_rust,num_dependents_deps.dev:0 github.com/Directord/task-core, github.com/DirectoryLister/DirectoryLister,criticality_score:0.534410 +github.com/DirectoryTree/Setup-OpenLDAP, github.com/Dirguis/ipfn, github.com/DiriectorDoc/DataImageAttachment,num_dependents_deps.dev:0 github.com/DiriectorDoc/RNG,num_dependents_deps.dev:0 @@ -53531,11 +54760,14 @@ github.com/DirksCGM/data-tap, github.com/DirksCGM/turbo-stream, github.com/Dirkster99/AvalonDock,criticality_score:0.471090 github.com/Dirnei/node-red-contrib-zigbee2mqtt-devices, +github.com/Dirrk/action-docs, github.com/Dirrk/deepen,num_dependents_deps.dev:0 github.com/Dirrk/depenpen,num_dependents_deps.dev:0 github.com/Dirrk/google-dynamic-dns,num_dependents_deps.dev:0 +github.com/Dirrk/terraform-docs, github.com/Dirrot/python-cryptocoincharts-api, github.com/Dirrot/python-dogechain-api, +github.com/DirtDiglett/actions-twigcs, github.com/Dirty-Bit/express-brute,num_dependents_deps.dev:0 github.com/DirtyCSS/dirtycss-grid,num_dependents_deps.dev:0 github.com/DirtyDevWork/homebridge-daikin,num_dependents_deps.dev:0 @@ -53577,6 +54809,7 @@ github.com/Discoin/scambio,num_dependents_deps.dev:0 github.com/Discolai/cra-template-disco-typescript,num_dependents_deps.dev:0 github.com/Discontinuity-srl/react-native-keyboard-aware-form-container,num_dependents_deps.dev:0 github.com/Discontinuity-srl/react-native-scroll-view-keyboard-manager,num_dependents_deps.dev:0 +github.com/Discontract/github-action-slack-notify-deployment, github.com/Discord-Architect/Arch,num_dependents_deps.dev:0 github.com/Discord-Architect/Colorize,num_dependents_deps.dev:0 github.com/Discord-Architect/Core,num_dependents_deps.dev:0 @@ -53601,6 +54834,7 @@ github.com/DiscordBotPortalJP/Daug.py, github.com/DiscordBotPortalJP/dispander, github.com/DiscordBots1/testPackage,num_dependents_deps.dev:0 github.com/DiscordDungeons/ImageServer-TS,num_dependents_deps.dev:0 +github.com/DiscordDungeons/ghost-post, github.com/DiscordDungeons/rethinkdb-mock,num_dependents_deps.dev:0 github.com/DiscordFactory/Command, github.com/DiscordFactory/Core, @@ -53610,6 +54844,7 @@ github.com/DiscordGSM/DiscordGSM, github.com/DiscordHangouts/github-update,num_dependents_deps.dev:0 github.com/DiscordHooks/travis-ci-discord-webhook,criticality_score:0.325210 github.com/DiscordInjections/DiscordInjections,num_dependents_deps.dev:0 +github.com/DiscordPP/getpackagepp, github.com/DiscordSRV/DiscordSRV,criticality_score:0.579070 github.com/DiscordServices/discordservices.js,num_dependents_deps.dev:0 github.com/DiscordServices/discordservices.py, @@ -53626,12 +54861,14 @@ github.com/DiscoverSDK/minfwjs,num_dependents_deps.dev:0 github.com/DiscoverSDK/minlibjs,num_dependents_deps.dev:0 github.com/DiscoverSDK/pysimplib, github.com/Discovery-Labs/Discovery,num_dependents_deps.dev:0 +github.com/Discovery-Labs/dCompass-Gitbook-action, github.com/Discreater/bili-live-danmaku, github.com/DiscreetAI/decentralized-ml,num_dependents_deps.dev:0 github.com/DiscreetAI/dml-library-js,num_dependents_deps.dev:0 github.com/DiscreteTom/refdict, github.com/DiscusTecnologia/dsRoute,num_dependents_deps.dev:0 github.com/DiscusTecnologia/jquery-assinadorDigitalDiscus,num_dependents_deps.dev:0 +github.com/Disha-Bhuva/goaction, github.com/DishanRajapaksha/ng-app-insights,num_dependents_deps.dev:0 github.com/Dishant15/react-datetime-range-super-picker,num_dependents_deps.dev:0 github.com/Dishit79/DisPydactyl, @@ -53735,6 +54972,7 @@ github.com/Ditmarscehen/myfds_package, github.com/Dito-Orkodashvili/azry-components,num_dependents_deps.dev:0 github.com/Dito-Orkodashvili/react-geokbd,num_dependents_deps.dev:0 github.com/Diuxx/xjson,num_dependents_deps.dev:0 +github.com/DivLoic/ccloud-registry-action, github.com/DivXPro/cmq-nodejs-sdk,num_dependents_deps.dev:0 github.com/DivXPro/element,num_dependents_deps.dev:0 github.com/DivXPro/formily,num_dependents_deps.dev:2 @@ -53754,6 +54992,7 @@ github.com/DiveCore/vue-storage,num_dependents_deps.dev:0 github.com/DiveWithDamian/divesoft-parser, github.com/DiveWithDamian/pikepdf-annots, github.com/DiveWithDamian/ratio-dumper, +github.com/DivergentCodes/labrador-action, github.com/DivertiseAsia/bs-divertise-core-components,num_dependents_deps.dev:0 github.com/DivertiseAsia/bs-mui,num_dependents_deps.dev:0 github.com/DivertiseAsia/bs-service-worker,num_dependents_deps.dev:0 @@ -53780,6 +55019,7 @@ github.com/Divirad/PythonTranslate, github.com/Divkix/ProxyGrab, github.com/Divkix/comments.bot, github.com/Divkix/pickledb_ujson, +github.com/Divkix/poetry-export-requirements-action, github.com/Divlo/create-fullstack-app,num_dependents_deps.dev:0 github.com/Divlo/react-component-form,num_dependents_deps.dev:0 github.com/DivoK/mystery, @@ -53857,6 +55097,7 @@ github.com/Djelibeybi/homebridge-button-platform,num_dependents_deps.dev:0 github.com/Djelibeybi/homebridge-delayed-occupancy,num_dependents_deps.dev:0 github.com/Djelnar/slava-ukraine,num_dependents_deps.dev:0 github.com/Djerys/ecys, +github.com/Djiit/action-renovate, github.com/Djiit/vvvv, github.com/Djiit/whydtogo, github.com/Djinhu/xjnpm,num_dependents_deps.dev:0 @@ -53879,6 +55120,7 @@ github.com/Dlom/wpg,num_dependents_deps.dev:0 github.com/Dloong/react-webpack,num_dependents_deps.dev:0 github.com/Dloong/twr-cli,num_dependents_deps.dev:0 github.com/Dloong/webpack-Azure-Blob,num_dependents_deps.dev:0 +github.com/Dlorite/exporter-builder-test, github.com/Dlunhappy226/easycanvas, github.com/Dlunhappy226/sockethttpserver, github.com/DlutMedimgGroup/MedImg_Py_Library, @@ -53912,6 +55154,9 @@ github.com/DmitrijTrifanov/TcContext,num_dependents_deps.dev:0 github.com/Dmitrijlin/ArrayToStringTestTask, github.com/Dmitrinilssonbysell/color_engine.github.io,num_dependents_deps.dev:0 github.com/Dmitriy-kiselyov/import-viewer,num_dependents_deps.dev:0 +github.com/Dmitriy129/moodle-github-sync-1, +github.com/Dmitriy129/moodle-github-sync-2, +github.com/DmitriyBobrovskiy/get-azure-keyvault-secrets, github.com/DmitriyKalekin/python-telegram-bot-api, github.com/DmitriyKalekin/python-trello-api, github.com/DmitriyKarpov/youtrack_slack_bot,num_dependents_deps.dev:0 @@ -53987,6 +55232,7 @@ github.com/DmitryKozhurkin/clickhouse_client,num_dependents_deps.dev:0 github.com/DmitryKozhurkin/m-ejs,num_dependents_deps.dev:0 github.com/DmitryKrekota/gulp-jlto,num_dependents_deps.dev:0 github.com/DmitryKrekota/jlto,num_dependents_deps.dev:0 +github.com/DmitryLegostaev/DmitryLegostaev.GitHubActions.PushNupkgToGitHub, github.com/DmitryMakhnev/annotation-loader,num_dependents_deps.dev:0 github.com/DmitryMakhnev/classyxin,num_dependents_deps.dev:0 github.com/DmitryMakhnev/defaultLib.js,num_dependents_deps.dev:0 @@ -54095,6 +55341,9 @@ github.com/DoWhileGeek/slice, github.com/DoZator/coloring,num_dependents_deps.dev:0 github.com/DoanDuong99hust/pdex-toolkit,num_dependents_deps.dev:0 github.com/DoanVanThuong/ngx-combogrid,num_dependents_deps.dev:0 +github.com/Doarakko/action-lgtmoon, +github.com/Doarakko/action-switchbot, +github.com/Doarakko/draw-action, github.com/DobaTech/django-gtin-fields, github.com/Dobatymo/ctypes-windows-sdk, github.com/Dobatymo/encoders, @@ -54466,6 +55715,7 @@ github.com/DominicVonk/BaseComponent,num_dependents_deps.dev:0 github.com/DominicVonk/BaseWebComponent,num_dependents_deps.dev:0 github.com/DominicVonk/BaseWebComponent-Redux,num_dependents_deps.dev:0 github.com/DominicVonk/vscode-variables, +github.com/DominicWatson/github-action-envsubst, github.com/DominicWhite/shapes, github.com/DominickVale/Pymodorino, github.com/Dominik1123/arguable, @@ -54659,6 +55909,7 @@ github.com/DonovanDMC/CheweyBotAPI,num_dependents_deps.dev:0 github.com/DonovanDMC/FluxPointAPI,num_dependents_deps.dev:0 github.com/DonovanWebb/CryoloRelion, github.com/DonovanWu/konsoru, +github.com/DonsWayo/conventional-changelog-npm-publish, github.com/DonsWayo/cordova-plugin-custom-exception,num_dependents_deps.dev:0 github.com/DonsWayo/nativescript-fitness,num_dependents_deps.dev:0 github.com/DonsWayo/react-native-loading-controller,num_dependents_deps.dev:0 @@ -54704,6 +55955,7 @@ github.com/Doodle3D/connman-api,num_dependents_deps.dev:2 github.com/Doodle3D/connman-simplified,num_dependents_deps.dev:0 github.com/Doodle3D/fill-path, github.com/Doodle3d/scpsync,num_dependents_deps.dev:0 +github.com/DoodleScheduling/package-retention, github.com/DoodlingDev/twenty-questions,num_dependents_deps.dev:0 github.com/Doolooper/DoDate,num_dependents_deps.dev:0 github.com/Doomcat55/MalCat, @@ -54714,6 +55966,7 @@ github.com/Doonloo/nodebb-plugin-facebook-pixel,num_dependents_deps.dev:0 github.com/DoooYouKnow/vue-marquee-cmpt,num_dependents_deps.dev:0 github.com/Dooor/ekispart-ts,num_dependents_deps.dev:0 github.com/DoostanKhas/cdm, +github.com/DoozyX/clang-format-lint-action, github.com/DopamineLabs/DopamineAPI_Node-Client,num_dependents_deps.dev:0 github.com/DopamineLabs/DopamineKit-Ruby,num_dependents_deps.dev:0 github.com/DopamineLabs/DopamineSDK-Maven,num_dependents_deps.dev:0 @@ -54724,9 +55977,11 @@ github.com/DopeHosting/dope-bot,num_dependents_deps.dev:0 github.com/Dophin2009/beets-playlistc, github.com/DophinL/baidu-ocr-idcard,num_dependents_deps.dev:0 github.com/Doppel40/PalletWarFront,num_dependents_deps.dev:0 +github.com/DopplerHQ/cli-action, github.com/DopplerHQ/node-cli,num_dependents_deps.dev:0 github.com/DopplerHQ/node-client,num_dependents_deps.dev:0 github.com/DopplerHQ/python-client, +github.com/DopplerHQ/secrets-fetch-action, github.com/DopplerLabs/parse-server-migrating-adapter,num_dependents_deps.dev:0 github.com/DopplerLabs/serverless-plugin-aws-resolvers,num_dependents_deps.dev:0 github.com/DopplerLabs/serverless-plugin-deploy-environment,num_dependents_deps.dev:0 @@ -54738,6 +55993,8 @@ github.com/DorJoogl/disco,num_dependents_deps.dev:0 github.com/DorJoogl/js-levenshtein,num_dependents_deps.dev:0 github.com/DorJoogl/yapg,num_dependents_deps.dev:0 github.com/DoraSz/sequenceBuilder, +github.com/Doradx/notion-blog-actions, +github.com/Doradx/notion2markdown-action, github.com/Dorae132/easyexcel,num_dependents_deps.dev:0 github.com/Doraku/DefaultEcs,criticality_score:0.345730 github.com/DoranYun/cz-mtb-commit,num_dependents_deps.dev:0 @@ -54762,6 +56019,7 @@ github.com/Doris927/tammy-components, github.com/DorkmasterFlek/Wii.py, github.com/DorkmasterFlek/python-nlzss, github.com/Dormilich/jqueryui-form-dialog,num_dependents_deps.dev:0 +github.com/Dornach/ecs-fargate, github.com/Dorothywen96/dorothy-house, github.com/DorsD/CDMX009-MdLinks,num_dependents_deps.dev:0 github.com/DorsetProject/dorset-framework,num_dependents_deps.dev:0 @@ -54811,6 +56069,7 @@ github.com/Dotneteer/generator-zxspectrum,num_dependents_deps.dev:0 github.com/Dotneteer/watsharp,num_dependents_deps.dev:0 github.com/Dotneteer/watson, github.com/Dottyboi/MyPack, +github.com/Dotunj/github-action-analyze-tags, github.com/DotwoodMedia/dmusicjs-framework,num_dependents_deps.dev:0 github.com/DotwoodMedia/easy-shorten-url,num_dependents_deps.dev:0 github.com/DotwoodMedia/minecraft-server-stats,num_dependents_deps.dev:0 @@ -55015,8 +56274,12 @@ github.com/DoveChen/work-weixin-js-sdk,num_dependents_deps.dev:0 github.com/DoveID/mary-mage-magento,num_dependents_deps.dev:0 github.com/DoviMaj/dropdownmenu,num_dependents_deps.dev:0 github.com/DovletAmanov/dovlet-rpi-sensors,num_dependents_deps.dev:0 +github.com/DovnarAlexander/github-action-file-detection, +github.com/DovnarAlexander/github-actions-jelastic, github.com/DovoCompany/TaskRun,num_dependents_deps.dev:0 github.com/Dovyski/cvui,criticality_score:0.308400 +github.com/Dovyski/payload-info-action, +github.com/Dovyski/setup-opencv-action, github.com/DowJones/passport-dowjones,num_dependents_deps.dev:0 github.com/Dowanna/ddd-generate, github.com/Dowell-Lab/DAStk, @@ -55057,7 +56320,9 @@ github.com/Dr-klo/tspath,num_dependents_deps.dev:0 github.com/Dr-robin/Maki-Template,num_dependents_deps.dev:0 github.com/Dr-robin/Maki-Templete,num_dependents_deps.dev:0 github.com/Dr3ll/hyper-ssh,num_dependents_deps.dev:0 +github.com/DrA1ex/pages-minify, github.com/DrBarnabus/koa-req-logger,num_dependents_deps.dev:0 +github.com/DrBarnabus/pullrequest-automation, github.com/DrBarnabus/secure-pass, github.com/DrBeen/eslint-config-drbeen,num_dependents_deps.dev:0 github.com/DrBenton/Medic-Injector-JS,num_dependents_deps.dev:0 @@ -55167,6 +56432,7 @@ github.com/DrPheltRight/uniform,num_dependents_deps.dev:0 github.com/DrPheltRight/waypoint,num_dependents_deps.dev:0 github.com/DrPheltRight/whiterabbit,num_dependents_deps.dev:0 github.com/DrPizza/yaserializer,num_dependents_deps.dev:0 +github.com/DrPlumcake/super-sast-action, github.com/DrRaider/express2md,num_dependents_deps.dev:0 github.com/DrReMain/reg-t,num_dependents_deps.dev:0 github.com/DrSLDR/krock32, @@ -55177,6 +56443,7 @@ github.com/DrSensor/binaryen-loader,num_dependents_deps.dev:0 github.com/DrSensor/bot-byte,num_dependents_deps.dev:0 github.com/DrSensor/fluent-git, github.com/DrSensor/git-notes,num_dependents_deps.dev:0 +github.com/DrSensor/mask-action, github.com/DrSensor/optnew,num_dependents_deps.dev:0 github.com/DrSensor/p5-global2instance,num_dependents_deps.dev:0 github.com/DrSensor/rollup-plugin-rust,num_dependents_deps.dev:0 @@ -55186,12 +56453,15 @@ github.com/DrSensor/vue-annotator,num_dependents_deps.dev:0 github.com/DrSensor/webassembly-loader,num_dependents_deps.dev:0 github.com/DrSerpent/DrSerpent-Core, github.com/DrSkippy/Gnip-Python-Search-API-Utilities, +github.com/DrSkunk/gp-docker-action, github.com/DrSlon/grunt-mage,num_dependents_deps.dev:0 github.com/DrSmile444/no-dependencies,num_dependents_deps.dev:0 github.com/DrSmile444/page-executor,num_dependents_deps.dev:0 +github.com/DrSmugleaf/MapDiffBot, github.com/DrSparky-2007/PythonicSwitchCase, github.com/DrSparky2k7/PyNetSocket, github.com/DrStefanFriedrich/f2blib,num_dependents_deps.dev:0 +github.com/DrStrangepork/deterministic-zip, github.com/DrTexx/lifxtools, github.com/DrTexxOfficial/bioCalc, github.com/DrTexxOfficial/colorThis, @@ -55242,6 +56512,9 @@ github.com/Draeggiar/react-utils,num_dependents_deps.dev:0 github.com/Draer/bookie,num_dependents_deps.dev:0 github.com/DrafProject/elmada, github.com/DraftProducts/string-to-vue,num_dependents_deps.dev:0 +github.com/Drafteame/ejson-action, +github.com/Drafteame/json-diff-action, +github.com/Drafteame/sync-secrets-manager, github.com/Drafteed/python-lgnetcast, github.com/Drag0s/node-websocketd,num_dependents_deps.dev:0 github.com/Drag13/RoundTo,num_dependents_deps.dev:0 @@ -55288,6 +56561,7 @@ github.com/Dragon445/swear_provention, github.com/Dragon93210/libft, github.com/DragonBones/DragonBonesJS,"criticality_score:0.333690,num_dependents_deps.dev:0" github.com/DragonBones/Tools,num_dependents_deps.dev:0 +github.com/DragonBuild/build, github.com/DragonCat4012/DiscordWelcomeCard,num_dependents_deps.dev:0 github.com/DragonCherry/AssetsPickerViewController,criticality_score:0.389090 github.com/DragonComputer/Dragonfire,criticality_score:0.302260 @@ -55311,6 +56585,7 @@ github.com/DragonSystems/DragonSystem,num_dependents_deps.dev:0 github.com/DragonT/DPlayer,num_dependents_deps.dev:0 github.com/DragonTaiko/Platzom,num_dependents_deps.dev:0 github.com/DragonTang/rabit,num_dependents_deps.dev:0 +github.com/Dragonink/cargo-ghannotate, github.com/Dragonlord1005/typety, github.com/Dragonrun1/djb_hash,num_dependents_deps.dev:0 github.com/Dragonrun1/uuid64ts,num_dependents_deps.dev:0 @@ -55391,6 +56666,7 @@ github.com/Drarig29/brackets-viewer.js,num_dependents_deps.dev:0 github.com/Drarig29/ts-json-db,num_dependents_deps.dev:0 github.com/Drarig29/typedoc-plugin-extras,num_dependents_deps.dev:6 github.com/Drarok/slack-say,num_dependents_deps.dev:0 +github.com/Drassil/action-package-version-bump, github.com/Draugiem/draugiem-android-sdk,num_dependents_deps.dev:0 github.com/Draup-Zinnov/draup_django, github.com/DravenLewis/infinitestrike-theia,num_dependents_deps.dev:0 @@ -55463,6 +56739,8 @@ github.com/Dreamacro/jsbox-cli,num_dependents_deps.dev:0 github.com/Dreamacro/koa-ratelimit-lru,num_dependents_deps.dev:72 github.com/Dreamacro/koa-wxsession,num_dependents_deps.dev:0 github.com/Dreambuilder4028/coder, +github.com/Dreamcodeio/does-pr-has-label, +github.com/Dreamcodeio/whats-the-pr-branch, github.com/DreamedAtlas/tor-downloader, github.com/Dreamer-Paul/Kico-Style,num_dependents_deps.dev:0 github.com/DreamerKing/fp, @@ -55471,6 +56749,7 @@ github.com/DreamerKing/utils,num_dependents_deps.dev:0 github.com/DreamersTraders/dreambot-monitor,num_dependents_deps.dev:0 github.com/DreamersTraders/generator-dreambot,num_dependents_deps.dev:0 github.com/Dreamiko/crypto-coin,num_dependents_deps.dev:0 +github.com/DreaminDani/cloud-foundry-action, github.com/DreaminginCodeZH/CustomTabsHelper,num_dependents_deps.dev:0 github.com/DreaminginCodeZH/EffortlessPermissions,num_dependents_deps.dev:0 github.com/DreaminginCodeZH/MaterialEditText,num_dependents_deps.dev:0 @@ -55497,6 +56776,7 @@ github.com/Dreamroute/locker,num_dependents_deps.dev:0 github.com/Dreamroute/sqlprinter,num_dependents_deps.dev:0 github.com/Dreams-d/svg-captcha,num_dependents_deps.dev:0 github.com/DreamsMakeToys/carcer,num_dependents_deps.dev:0 +github.com/DreamsOfImran/elasticsearch-action, github.com/Dreamsaviors/better-copy, github.com/Dreamsaviors/big-copy,num_dependents_deps.dev:0 github.com/Dreamsaviors/light-trans,num_dependents_deps.dev:0 @@ -55584,6 +56864,7 @@ github.com/Drew-Kimberly/udagram-auth, github.com/Drew-Kimberly/udagram-feed-svc,num_dependents_deps.dev:0 github.com/Drew-Mace/pamatat,num_dependents_deps.dev:0 github.com/Drew233/Artitalk,num_dependents_deps.dev:0 +github.com/DrewCarlson/github-action-appetize, github.com/DrewDahlman/tessel-vl53l0x,num_dependents_deps.dev:0 github.com/DrewDrinkwater/roundit,num_dependents_deps.dev:0 github.com/DrewImm/lavacolor,num_dependents_deps.dev:0 @@ -55725,6 +57006,7 @@ github.com/DropsOfSerenity/react-avatar-cropper,num_dependents_deps.dev:0 github.com/Dropsource/react-dnd-html5-backend,num_dependents_deps.dev:0 github.com/DroverLabs/gatsby-plugin-clearbit,num_dependents_deps.dev:0 github.com/DroverLtd/cli,num_dependents_deps.dev:0 +github.com/Drowze/action-publish-gem-to-nexus, github.com/DrozdMargo/vue2-daterange-picker,num_dependents_deps.dev:0 github.com/Drozerah/dep-to-doc-cli,num_dependents_deps.dev:0 github.com/Drozerah/mkdird-cli,num_dependents_deps.dev:0 @@ -55792,6 +57074,7 @@ github.com/Drxckzyz/Ferris-lib,num_dependents_deps.dev:0 github.com/Drxckzyz/get-dadjoke,num_dependents_deps.dev:0 github.com/Drxckzyz/random-jokes, github.com/DryKISS/industryui.com,num_dependents_deps.dev:0 +github.com/DryRunSecurity/dryrunsec-action-exp, github.com/Drylotrans/MeowDB.js, github.com/Drylotrans/meowdb,num_dependents_deps.dev:0 github.com/Dryymoon/nuxt-resolve-url-loader,num_dependents_deps.dev:0 @@ -55803,6 +57086,7 @@ github.com/Dsazz/plus.garden.webdriver,num_dependents_deps.dev:0 github.com/Dschinghis-Kahn/objectdecoupler,num_dependents_deps.dev:0 github.com/Dschinghis-Kahn/objectstore,num_dependents_deps.dev:1 github.com/Dschinghis-Kahn/worker,num_dependents_deps.dev:1 +github.com/Dschoordsch/slack-review-stats, github.com/Dschungelabenteuer/custom-property-extract,num_dependents_deps.dev:0 github.com/Dschungelabenteuer/custom-property-extract-loader,num_dependents_deps.dev:0 github.com/Dschungelabenteuer/webpack-gallery-plugin,num_dependents_deps.dev:0 @@ -55842,6 +57126,7 @@ github.com/DuLinRain/egg-antispider,num_dependents_deps.dev:0 github.com/DuLinRain/egg-fulllog, github.com/DuLinRain/fulllog, github.com/DuLinRain/lerna-test,num_dependents_deps.dev:0 +github.com/DuRoom/action-build, github.com/Dual-Exhaust/Stockton-Esports-Bot, github.com/Dual-Points/dplearn, github.com/DualBit/homebridge-garage-opener,num_dependents_deps.dev:0 @@ -55911,6 +57196,11 @@ github.com/Duchongc/lucpe, github.com/Duchongc/pyjsonec, github.com/DuckEverlasting/react-branching-menu, github.com/DuckLogic/TwoSidedVec,num_dependents_deps.dev:0 +github.com/DuckSoft/build-aur-action, +github.com/DuckSoft/create-7z-action, +github.com/DuckSoft/extract-7z-action, +github.com/DuckSoft/post-aur-build-action, +github.com/DuckSoft/setup-go-win32, github.com/DuckTesty/pcp-dev-pypi, github.com/DuckerMan/promise-vksdk,num_dependents_deps.dev:0 github.com/DuckerMan/vk-longpoll,num_dependents_deps.dev:0 @@ -55991,6 +57281,7 @@ github.com/DugganB/homebridge-nexia-thermostat-ts,num_dependents_deps.dev:0 github.com/Dugnist/jsberry,num_dependents_deps.dev:0 github.com/Duhemm/bloopstrap,num_dependents_deps.dev:0 github.com/DuimTechniek/node-red-contrib-queued-sqlite,num_dependents_deps.dev:0 +github.com/Duinhil/epoch-time-comments, github.com/Duke-GCB/DukeDSClient, github.com/Duke-GCB/calrissian, github.com/Duke-GCB/drf-ember-frontend,num_dependents_deps.dev:0 @@ -56042,6 +57333,7 @@ github.com/DuncanCragg/forestjs,num_dependents_deps.dev:0 github.com/DuncanCragg/forestreact, github.com/DuncanLii/cordova-plugin-lnsoft-touchid,num_dependents_deps.dev:0 github.com/DuncanMays/axon-ECRG, +github.com/DuncanScu/TestSpotlight, github.com/DuncanUszkay1/assemblyscript,num_dependents_deps.dev:0 github.com/DuncanWalter/bizzell-npm-monorepo,num_dependents_deps.dev:0 github.com/DuncanWalter/combobulate,num_dependents_deps.dev:0 @@ -56081,6 +57373,7 @@ github.com/Dunkelheit/monitos.web,num_dependents_deps.dev:0 github.com/Dunkelheit/pending-promise-recycler,num_dependents_deps.dev:0 github.com/Dunkelheit/readcache,num_dependents_deps.dev:0 github.com/Dunkelheit/rlmud-tintin,num_dependents_deps.dev:0 +github.com/Dunklas/pr-quote-action, github.com/Dunks1980/Cookiemunch, github.com/Dunks1980/inline.svg,num_dependents_deps.dev:0 github.com/Dunmail/edge-library,num_dependents_deps.dev:0 @@ -56115,6 +57408,7 @@ github.com/Duong-Trong-Nghia/simple-validation,num_dependents_deps.dev:0 github.com/DuongPhanHoai/codeceptjs-qtest-plugin,num_dependents_deps.dev:0 github.com/DuongPhanHoai/gsheet-js-api,num_dependents_deps.dev:0 github.com/Duonghailee/SimonGame,num_dependents_deps.dev:0 +github.com/Dup4/actions-setup-gcc, github.com/Dup4/mkdocs-material-extras, github.com/Duphlux/node-duphlux,num_dependents_deps.dev:0 github.com/Duplexes/pyco, @@ -56192,6 +57486,8 @@ github.com/DutchRican/status-spin, github.com/DutchRican/tablecli, github.com/DutchSun/create-react-app,num_dependents_deps.dev:0 github.com/DutchSun/icestark, +github.com/Dutchie1990/FlagsmithFeatureFlagRemoval, +github.com/Dutchie1990/GitDiffNotifierInSlack, github.com/DutchmanNL/ioBroker.discovergy,num_dependents_deps.dev:0 github.com/DutchmanNL/ioBroker.multicast,num_dependents_deps.dev:0 github.com/DutchmanNL/ioBroker.opentherm,num_dependents_deps.dev:0 @@ -56221,6 +57517,8 @@ github.com/Dvs-Bilisim/dot-ws,num_dependents_deps.dev:0 github.com/DwCleb/DWcarousel,num_dependents_deps.dev:0 github.com/DwCleb/React-native-creditcard-prixpay,num_dependents_deps.dev:0 github.com/DwCleb/react-native-dw-tooltip,num_dependents_deps.dev:0 +github.com/Dwarak91/log-to-file, +github.com/Dwarak91/log-to-file2, github.com/Dwarf-Therapist/Dwarf-Therapist,criticality_score:0.359170 github.com/Dwarfartisan/pyparsec, github.com/Dwarvesforge/thorin-vsce-snippets-extension,num_dependents_deps.dev:0 @@ -56276,6 +57574,10 @@ github.com/Dylan-DPC/ephemeral,num_dependents_deps.dev:0 github.com/Dylan-Myfarms/simple-kmeans,num_dependents_deps.dev:0 github.com/Dylan-Pro/discordmemes, github.com/Dylan5797/ScratchAPI, +github.com/Dylan700/ga4-action, +github.com/Dylan700/selenium-ide-action, +github.com/Dylan700/sftp-upload-action, +github.com/DylanBDev/beanstalk-deploy, github.com/DylanCulfogienis/remapdict, github.com/DylanDavidson/hubot-better-clipart,num_dependents_deps.dev:0 github.com/DylanFM/mhl-buoy-data,num_dependents_deps.dev:0 @@ -56405,7 +57707,9 @@ github.com/DynamicYield/ioredis, github.com/DynamicYield/node-github,num_dependents_deps.dev:0 github.com/DynamicYield/node-health-checker,num_dependents_deps.dev:0 github.com/DynamicYieldProjects/funnel-rocket-oss, +github.com/DynamicsNinja/cds-solution-set-version-action, github.com/DynamicsNinja/generator-pcf,num_dependents_deps.dev:0 +github.com/DynamicsNinja/pcf-control-info-action, github.com/DynamisDevelopment/Headwind,num_dependents_deps.dev:0 github.com/DynamisDevelopment/MTSchemas,num_dependents_deps.dev:0 github.com/Dynamit/referee,num_dependents_deps.dev:0 @@ -56488,6 +57792,7 @@ github.com/Dzhakhar/react-npm-module-boilerplate,num_dependents_deps.dev:0 github.com/Dzhakhar/react-video-player,num_dependents_deps.dev:0 github.com/Dzhakhar/reactiveStorage, github.com/Dzhamal265/piper, +github.com/Dzheky/slacklog-action, github.com/Dzhey/DroidWorker,num_dependents_deps.dev:0 github.com/Dzhuneyt/cdk-get-stack-output,num_dependents_deps.dev:0 github.com/DzikryFathullah/moduleUploadHRMS,num_dependents_deps.dev:0 @@ -56656,6 +57961,7 @@ github.com/EDRN/jpl.pipedreams, github.com/EDRN/labcas-downloader, github.com/EDS-APHP/HiveQLKernel, github.com/EDUC-EMM/madrassati-exercise-perseus-plugin, +github.com/EDUJOS/ds-webhook, github.com/EDWIAN004@myuct.ac.za/nfcreader, github.com/EDumdum/iban-js,num_dependents_deps.dev:0 github.com/EDumdum/iso-11649-js,num_dependents_deps.dev:0 @@ -56678,6 +57984,7 @@ github.com/EEHoveckis/ChemyMass,num_dependents_deps.dev:0 github.com/EEKIM10/emenus, github.com/EEKIM10/sblpy, github.com/EEParker/aspnetcore-vueclimiddleware,criticality_score:0.417300 +github.com/EESSI/github-action-eessi, github.com/EEvvee/eevvee-cardView,num_dependents_deps.dev:0 github.com/EEvvee/react-native-BGNativeModuleExample,num_dependents_deps.dev:0 github.com/EFF/lambdaws,num_dependents_deps.dev:0 @@ -56687,6 +57994,7 @@ github.com/EFFICIENTCORPORATES/efffcorp-gst, github.com/EFForg/action-center-platform,criticality_score:0.331150 github.com/EFForg/crocodilehunter,criticality_score:0.354500 github.com/EFForg/https-everywhere,criticality_score:0.715260 +github.com/EFForg/https-everywhere-labeller, github.com/EFForg/privacybadger,criticality_score:0.621790 github.com/EFForg/starttls-everywhere,criticality_score:0.303850 github.com/EFHMediaOfficial/kufurler,num_dependents_deps.dev:0 @@ -56742,6 +58050,7 @@ github.com/EIDA/embargo-roller, github.com/EIDOSlab/simplify, github.com/EIDOSlab/torchstain, github.com/EIGHTfs/pxrepo, +github.com/EINDEX/bump-homebrew-cask-action, github.com/EIP-SAM/SAM-Solution-Daemon-Client,num_dependents_deps.dev:0 github.com/EIPStackGroup/OpENer,criticality_score:0.425320 github.com/EIeven/env-js,num_dependents_deps.dev:0 @@ -56983,6 +58292,7 @@ github.com/EPCCed/pybde, github.com/EPCCed/pynmmso, github.com/EPCCed/pyrobust, github.com/EPFL-ENAC/ENACrestic, +github.com/EPFL-ENAC/poll_cd_status, github.com/EPFL-LCN/neuronaldynamics-exercises, github.com/EPFL-LCSB/pytfa, github.com/EPI-USE-Labs/client-central-python-api, @@ -56994,6 +58304,8 @@ github.com/EPLHREU/plover-current-time, github.com/EPLHREU/plover-minimal-english-stenotype, github.com/EPLKleijntjens/Media-Slideshow-Component,num_dependents_deps.dev:0 github.com/EPLKleijntjens/Media-View-Component,num_dependents_deps.dev:0 +github.com/EPMatt/reviewdog-action-prettier, +github.com/EPMatt/reviewdog-action-tsc, github.com/EPPlusSoftware/EPPlus,criticality_score:0.455390 github.com/EPSNV/eps-start,num_dependents_deps.dev:0 github.com/EPSNV/project-lvl1-s328,num_dependents_deps.dev:0 @@ -57037,6 +58349,7 @@ github.com/ERCdEX/automation-toolkit,num_dependents_deps.dev:0 github.com/ERCubed/quotinator,num_dependents_deps.dev:0 github.com/ERESB0S/eresbos.js, github.com/ERICAntoine/Allum1,num_dependents_deps.dev:0 +github.com/ERNI-Academy/action-eventbrite-events-to-md, github.com/EROIN/ReactNativeNetworkGraph,num_dependents_deps.dev:0 github.com/EROIN/ReactNativeSemiCircularGauge,num_dependents_deps.dev:0 github.com/ERPNextLatino/Restapi_erpnextonode,num_dependents_deps.dev:0 @@ -57080,6 +58393,7 @@ github.com/ESGF/config, github.com/ESGF/esgf-prepare, github.com/ESGF/esgf-test-suite, github.com/ESIPFed/LakePy, +github.com/ESLE-Org/security-status-monitoring-action, github.com/ESMValGroup/ESMValTool_sample_data, github.com/ESRIN-RSS/L8_reflectance, github.com/ESRecipes/esrecipes,num_dependents_deps.dev:0 @@ -57228,6 +58542,7 @@ github.com/Eagune/DancingLinks,num_dependents_deps.dev:0 github.com/Eajay/ml_tuning, github.com/EalenLuo/react-native-testlibrary,num_dependents_deps.dev:0 github.com/Ealenn/gi-gitignore-generator,num_dependents_deps.dev:0 +github.com/Ealenn/jekyll-build-action, github.com/Ealenn/mExport,num_dependents_deps.dev:0 github.com/EamonTracey/ifunnyapi, github.com/Eamonnzhang/fe-workflow-with-gulp,num_dependents_deps.dev:0 @@ -57267,12 +58582,15 @@ github.com/EarthlingInteractive/koa-generic-session-knex,num_dependents_deps.dev github.com/EarthlingInteractive/react-deep-link-state,num_dependents_deps.dev:0 github.com/Earthly/overseer,num_dependents_deps.dev:0 github.com/Eartz/animatePaper.js,num_dependents_deps.dev:0 +github.com/Earu/GSW-action, github.com/EaseDo/EasePlayer,num_dependents_deps.dev:0 github.com/EaseDo/EaseUrl,num_dependents_deps.dev:0 github.com/EaseDo/VueComponentLoader,num_dependents_deps.dev:0 github.com/EaseDo/vue-tsx-loader, github.com/EasierChan/qtp-client,num_dependents_deps.dev:0 github.com/Easle/toolkit,num_dependents_deps.dev:0 +github.com/Eason-S-Lu/CPP-Test-Compile, +github.com/Eason-S-Lu/cpp-tester, github.com/EasonC13/eason, github.com/EasonC13/easonc, github.com/EasonChangOP/nora,num_dependents_deps.dev:0 @@ -57349,6 +58667,16 @@ github.com/EasyCoders-ru/react-hooks, github.com/EasyCorp/EasyAdminBundle,criticality_score:0.701650 github.com/EasyDB-io/Python-Client, github.com/EasyDarwin/EasyDarwin,"criticality_score:0.363130,num_dependents_deps.dev:0" +github.com/EasyDesk/action-dotnet-build, +github.com/EasyDesk/action-dotnet-pack, +github.com/EasyDesk/action-dotnet-publish, +github.com/EasyDesk/action-dotnet-test, +github.com/EasyDesk/action-generate-migrations-script, +github.com/EasyDesk/action-nuget-push, +github.com/EasyDesk/action-semver-checkout, +github.com/EasyDesk/action-semver-release, +github.com/EasyDesk/job-azure-publish-webapp, +github.com/EasyDesk/job-nuget-library-deploy, github.com/EasyDeveloper2/react-native-do,num_dependents_deps.dev:0 github.com/EasyDeveloper2/rn-alibc-fix,num_dependents_deps.dev:0 github.com/EasyDeveloper2/rn-picker-fix,num_dependents_deps.dev:0 @@ -57406,6 +58734,7 @@ github.com/EasycryptosTeam/BOSS_TRADER,num_dependents_deps.dev:0 github.com/Easyvipin/easyloader,num_dependents_deps.dev:0 github.com/EatCodeCat/vue2-tap,num_dependents_deps.dev:0 github.com/EatEmAll/django-djeddit, +github.com/EatInstall/GitHub-Setup, github.com/EaterOfCode/BSONStream,num_dependents_deps.dev:0 github.com/EaterOfCode/Spread.js,num_dependents_deps.dev:0 github.com/EaterOfCode/sux,num_dependents_deps.dev:0 @@ -57444,6 +58773,8 @@ github.com/Eblancho/NodeRIO,num_dependents_deps.dev:0 github.com/Eblancho/battlenet-api-wrapper,num_dependents_deps.dev:0 github.com/Eblancho/occicom-api-wrapper,num_dependents_deps.dev:0 github.com/Ebonsignori/asset-tool,num_dependents_deps.dev:0 +github.com/Ebonsignori/github-notifications-forwarder, +github.com/Ebonsignori/github-notifications-slack-forwarder, github.com/EbookFoundation/fef-questionnaire, github.com/EbookFoundation/free-programming-books,criticality_score:0.707910 github.com/EbookFoundation/free-science-books,criticality_score:0.342420 @@ -57470,6 +58801,7 @@ github.com/Ecg-Ai-com/ecgai-logging, github.com/Ecg-Ai-com/ecgai-training-data-physionet, github.com/EchOneJY/ele-admin-layouts, github.com/EchOneJY/vue-ele-admin-layouts,num_dependents_deps.dev:0 +github.com/EchelonFour/pr-parser, github.com/Echi1993/echi-modal,num_dependents_deps.dev:0 github.com/Echi1993/ui-components,num_dependents_deps.dev:0 github.com/Echo-Lj/echo-rui,num_dependents_deps.dev:0 @@ -57499,6 +58831,7 @@ github.com/EchoShoot/Sheen, github.com/EchoShoot/SmartLogin, github.com/EchoXBR/RFID_UHF_SPEEDATA_PDA,num_dependents_deps.dev:0 github.com/EchoZw/toolkit,num_dependents_deps.dev:0 +github.com/EchoesHQ/deployments-action, github.com/Echohzy/create-react-demo,num_dependents_deps.dev:0 github.com/Echopraxium/design-patterns-api,num_dependents_deps.dev:0 github.com/Echopraxium/design-patterns-core-api,num_dependents_deps.dev:0 @@ -57520,6 +58853,7 @@ github.com/Eckhardt-D/firemaker,num_dependents_deps.dev:0 github.com/Eckhardt-D/payfastjs,num_dependents_deps.dev:0 github.com/Eckhardt-D/remote-file-zipper,num_dependents_deps.dev:0 github.com/Eckhart-csjc/seinn-ceol,num_dependents_deps.dev:0 +github.com/EcksDy/vscode-version-matrix, github.com/EclairJS/eclairjs, github.com/EclairJS/eclairjs-node,num_dependents_deps.dev:0 github.com/Eclatant/halfway,num_dependents_deps.dev:0 @@ -57633,6 +58967,7 @@ github.com/EdJoPaTo/telegraf-wikibase,num_dependents_deps.dev:0 github.com/EdJoPaTo/telegram-format,num_dependents_deps.dev:8 github.com/EdJoPaTo/telegramBotBotHandler,num_dependents_deps.dev:0 github.com/EdJoPaTo/telegramBotChatConfigHandler,num_dependents_deps.dev:0 +github.com/EdJoPaTo/website-stalker-github-action, github.com/EdJoPaTo/wikibase-types,num_dependents_deps.dev:2 github.com/EdJoPaTo/wikidata-entity-reader,num_dependents_deps.dev:0 github.com/EdJoPaTo/wikidata-entity-store,num_dependents_deps.dev:0 @@ -57685,6 +59020,8 @@ github.com/EddieCornelious/react-jeux,num_dependents_deps.dev:0 github.com/EddieCornelious/repick,num_dependents_deps.dev:0 github.com/EddieCornelious/reqache,num_dependents_deps.dev:0 github.com/EddieFerro/the-floating-dutchman, +github.com/EddieHubCommunity/gh-action-open-source-labels, +github.com/EddieHubCommunity/gh-actions-html-table-generator, github.com/EddieJamsession/jam-key-value-store,num_dependents_deps.dev:0 github.com/EddieLa/BarcodeReader,num_dependents_deps.dev:0 github.com/EddieLi/ng-spell-check,num_dependents_deps.dev:0 @@ -57953,6 +59290,7 @@ github.com/EdinburghGenomics/bashmocker, github.com/EdinburghGenomics/pyclarity-lims, github.com/EdinburghNLP/nematus,criticality_score:0.433610 github.com/EdinsonLisandro/xlsx-style-ebiz,num_dependents_deps.dev:0 +github.com/EdisonLabs/sns-publish-workflow-status-action, github.com/EdisonLee123/idateal-sdk,num_dependents_deps.dev:0 github.com/EdisonLeeeee/GraphGallery, github.com/EdisonPeM/gradient-generator-ui,num_dependents_deps.dev:0 @@ -57962,11 +59300,13 @@ github.com/EdisonSu768/nodebb-plugin-sso-oauth,num_dependents_deps.dev:0 github.com/EditLLC/javascript-montage,num_dependents_deps.dev:0 github.com/EditYJ/ts-axios-repeat01,num_dependents_deps.dev:0 github.com/Editmode-app/editmode-react,num_dependents_deps.dev:0 +github.com/Editst/SYSU-HealthReport, github.com/EdixonAlberto/instagrapi, github.com/EdjeElectronics/TensorFlow-Object-Detection-API-Tutorial-Train-Multiple-Objects-Windows-10,criticality_score:0.300760 github.com/EdjoLabs/image-match,criticality_score:0.314970 github.com/Edke/adaptest, github.com/Edmain1/CryptoCo-py, +github.com/EdmanJohan/schedule-update-action, github.com/Edmeral/nodecup,num_dependents_deps.dev:0 github.com/Edminsson/mini_npm,num_dependents_deps.dev:0 github.com/Edmond-XavierCollot/cosmic-react, @@ -58013,6 +59353,8 @@ github.com/EdouardTack/react-candlestick, github.com/Edqe14/AzylricsScraper,num_dependents_deps.dev:0 github.com/Edqe14/node-sc,num_dependents_deps.dev:0 github.com/Edraak/django-es-utils, +github.com/EdricChan03/action-build-deploy-ghpages, +github.com/EdricChan03/angular-problem-matchers-action, github.com/EdricChan03/ngx-ytd-api,num_dependents_deps.dev:0 github.com/EdricY/Tessalations,num_dependents_deps.dev:0 github.com/Edris89/facto, @@ -58051,6 +59393,8 @@ github.com/EduardAlex/beepboop, github.com/EduardAlex/laughing-octo-doodle, github.com/EduardKononov/from-root, github.com/EduardRosert/ogcutils,num_dependents_deps.dev:0 +github.com/EduardSergeev/dependent-pr-action, +github.com/EduardSergeev/project-version-action, github.com/EduardToth/JSONprocessing,num_dependents_deps.dev:0 github.com/Eduardo-Vieira/montserrat-ionic,num_dependents_deps.dev:0 github.com/EduardoAC/lerna-live-code,num_dependents_deps.dev:0 @@ -58102,6 +59446,7 @@ github.com/Eduworks/ew,num_dependents_deps.dev:1246 github.com/Edux87/lemmes, github.com/Edux87/retexto, github.com/Edvinas01/parcel,num_dependents_deps.dev:0 +github.com/EdwarDDay/upgrade-gradle-action, github.com/Edward-K1/roundface, github.com/Edward-K1/validatedata, github.com/Edward-Lombe/besix,num_dependents_deps.dev:0 @@ -58174,6 +59519,7 @@ github.com/Edznux/hubot-ethereum,num_dependents_deps.dev:0 github.com/Edznux/hubot-pokemongo,num_dependents_deps.dev:0 github.com/EeOneDown/spbuTimetableAPI, github.com/EeeMt/phone-number-geo,num_dependents_deps.dev:0 +github.com/Eeems-Org/apt-cache-action, github.com/Eeems/PooledWebSocket,num_dependents_deps.dev:0 github.com/Eeems/decopts, github.com/Eeems/intercessions, @@ -58263,6 +59609,7 @@ github.com/EgorBlagov/l2address, github.com/EgorBochkarev/shri-2020-task-1,num_dependents_deps.dev:0 github.com/EgorBochkarev/shri-2020-task-2,num_dependents_deps.dev:0 github.com/EgorBron/asyncforismatic, +github.com/EgorDm/gha-yarn-node-cache, github.com/EgorDm/notionsci, github.com/EgorDm/osupp, github.com/EgorDm/spacefill, @@ -58326,6 +59673,7 @@ github.com/Ehsan-MAE/BatchManager, github.com/Ehsan-MAE/PrettyConfig, github.com/Ehsan-MAE/TextGenerationEvaluationMetrics, github.com/EhsanFox/SteamLib,num_dependents_deps.dev:0 +github.com/EhsanFox/djs-actions, github.com/EhsanSafir/django_dumpdata_advance, github.com/EhsanSepehriNasab/vue-recaptcha-eh,num_dependents_deps.dev:0 github.com/EhsanTadayon/pynetstim, @@ -58525,6 +59873,7 @@ github.com/ElCholoGamer/ascii-converter,num_dependents_deps.dev:0 github.com/ElCholoGamer/directory.db, github.com/ElChupi/express-rbac,num_dependents_deps.dev:0 github.com/ElCondor1969/bpmn-js-task-resize,num_dependents_deps.dev:0 +github.com/ElCuboNegro/kedro-deployment, github.com/ElCuboNegro/win_elevator, github.com/ElCusanero/amortization-system, github.com/ElDiabloRojo/eks_auth, @@ -58608,6 +59957,7 @@ github.com/ElasticSearchCLITools/node-red-contrib-elasticsearch7,num_dependents_ github.com/Elastictable/schemas,num_dependents_deps.dev:0 github.com/Elastoo-Team/ethereum-gasprice-py, github.com/ElateralLtd/brandgility-embedded-api,num_dependents_deps.dev:0 +github.com/ElayGelbart/Heroku-Auto-Deployment, github.com/Elbanby/loggy,num_dependents_deps.dev:0 github.com/Elber-17/nestjs-redis,num_dependents_deps.dev:0 github.com/ElcoK/DamageScanner, @@ -58670,6 +60020,8 @@ github.com/Eldinnie/ptbtest, github.com/Eldjotnar/react-native-autocomplete-tags,num_dependents_deps.dev:0 github.com/EldoranDev/gridsome-plugin-remark-shiki,num_dependents_deps.dev:0 github.com/Eldorean/react-events-hooks,num_dependents_deps.dev:0 +github.com/Eldrick19/bulk-project-update, +github.com/Eldrick19/code-scanning-status-checker, github.com/Eldynn/index,num_dependents_deps.dev:0 github.com/Eldynn/jellax,num_dependents_deps.dev:0 github.com/Ele-Cat/ecui-weapp,num_dependents_deps.dev:0 @@ -58900,6 +60252,9 @@ github.com/ElfenLiedGH/redux-enchant-async-actions,num_dependents_deps.dev:0 github.com/Elfo404/gio,num_dependents_deps.dev:0 github.com/Elfo404/real-php-cs-fixer,num_dependents_deps.dev:0 github.com/Elfsquad/authentication,num_dependents_deps.dev:0 +github.com/Elfsquad/jira-deployment, +github.com/Elfsquad/jira-extract-issue-keys, +github.com/Elfsquad/pr-review-reminder, github.com/Elgg/Elgg,criticality_score:0.626570 github.com/Elgg/conventional-changelog,num_dependents_deps.dev:0 github.com/Elgolfin/CashBud,num_dependents_deps.dev:0 @@ -59003,6 +60358,7 @@ github.com/Eling486/EPicker, github.com/Eling486/ESelector,num_dependents_deps.dev:0 github.com/Elinpf/rich_typer, github.com/Elio-Earth/clark-cli, +github.com/Elioby/notion-sync-md-page, github.com/Elioking1/discord-images,num_dependents_deps.dev:0 github.com/EliosMolina/audio_degrader, github.com/Eliot00/python-trick, @@ -59090,6 +60446,7 @@ github.com/Elkfox/fetch,num_dependents_deps.dev:0 github.com/Elkfox/grid50,num_dependents_deps.dev:0 github.com/Elkfox/queue, github.com/Elkfox/shopify-theme,num_dependents_deps.dev:0 +github.com/Elkin-Vasily/cura-plugin-translation, github.com/EllanJiang/GameFramework,criticality_score:0.362590 github.com/EllarDevelopment/csv-manipulation-tool,num_dependents_deps.dev:0 github.com/Elliot-Evans-95/pharos,num_dependents_deps.dev:0 @@ -59107,6 +60464,7 @@ github.com/ElliotChong/simple-rss,num_dependents_deps.dev:1 github.com/ElliotChong/stylus-require,num_dependents_deps.dev:0 github.com/ElliotChong/submodules,num_dependents_deps.dev:0 github.com/ElliotChong/typecast-array,num_dependents_deps.dev:0 +github.com/ElliotLuque/check-total-mouredev-challenges, github.com/ElliotNB/nimbly,num_dependents_deps.dev:0 github.com/ElliotNB/observable-slim,num_dependents_deps.dev:4 github.com/ElliotSilver/dcmregistry2js,num_dependents_deps.dev:0 @@ -59130,6 +60488,7 @@ github.com/ElmCast/elm-vim,criticality_score:0.374850 github.com/ElmTheDev/express-parameter-pollution,num_dependents_deps.dev:0 github.com/ElmTheDev/require-external-bytecode,num_dependents_deps.dev:0 github.com/Elmanderrr/web-constructor,num_dependents_deps.dev:0 +github.com/ElmarJ/unity-cloud-build-action, github.com/ElmecOSS/pyLivestatus, github.com/ElmecOSS/vue-simple-tooltip,num_dependents_deps.dev:2 github.com/ElmerCSC/elmer_circuitbuilder, @@ -59146,6 +60505,7 @@ github.com/EloB/maybe-unused,num_dependents_deps.dev:0 github.com/EloB/nodular,num_dependents_deps.dev:0 github.com/EloB/nodular-stackparser,num_dependents_deps.dev:0 github.com/EloB/schema-viewer,num_dependents_deps.dev:0 +github.com/Eloco/docker-action-send-skype, github.com/ElofssonLab/PconsC4, github.com/EloiseCoding/TS-Project,num_dependents_deps.dev:0 github.com/EloiseSeverin/markdown_cjk_spacing, @@ -59179,6 +60539,8 @@ github.com/ElsevierDev/elsapy, github.com/ElsiddigAhmed/react-easy-notify, github.com/ElsiddigAhmed/react-video-stream,num_dependents_deps.dev:0 github.com/Elsidora/frontend-project-lvl1,num_dependents_deps.dev:0 +github.com/Elskom/build-dotnet, +github.com/Elskom/setup-latest-dotnet, github.com/Elsombrerobot/image_frame, github.com/ElspecAuto/elspecsetup, github.com/Elstargo00/elstargo_package, @@ -59278,6 +60640,7 @@ github.com/EmCeBeh/ultrafastFitFunctions, github.com/EmCeeEs/netlify-cms-i18n, github.com/EmDash00/ANCB, github.com/EmJee1/fluxxo-core,num_dependents_deps.dev:0 +github.com/EmJee1/setup-meteor, github.com/EmKayDK/jstepper,num_dependents_deps.dev:0 github.com/EmL01/expo-multiple-images-picker,num_dependents_deps.dev:0 github.com/EmNudge/Domyno,num_dependents_deps.dev:0 @@ -59337,6 +60700,7 @@ github.com/Embarcadero/Dev-Cpp,criticality_score:0.462280 github.com/EmbarkStudios/ash-molten,num_dependents_deps.dev:8 github.com/EmbarkStudios/cargo-about,num_dependents_deps.dev:0 github.com/EmbarkStudios/cargo-deny,"criticality_score:0.428630,num_dependents_deps.dev:0" +github.com/EmbarkStudios/cargo-deny-action, github.com/EmbarkStudios/cargo-fetcher,num_dependents_deps.dev:0 github.com/EmbarkStudios/cfg-expr,num_dependents_deps.dev:254 github.com/EmbarkStudios/clearly-defined,num_dependents_deps.dev:0 @@ -59363,6 +60727,7 @@ github.com/Ember7673/webpack-assets-cli, github.com/Ember7673/webpack-assetsCli,num_dependents_deps.dev:0 github.com/EmberAds/acts_as_uuid,num_dependents_deps.dev:0 github.com/EmberAds/trifle,num_dependents_deps.dev:0 +github.com/EmberCM/action-get-gradle-version, github.com/EmberGrep/ember-cli-eg-code-highlight,num_dependents_deps.dev:0 github.com/EmberMN/ember-cli-bootswatch, github.com/EmberMN/ember-cli-plotly,num_dependents_deps.dev:0 @@ -59392,8 +60757,10 @@ github.com/EmbodiedCognition/py-c3d, github.com/EmbodiedCognition/py-sim, github.com/Embonor-CocaCola/services-utilities,num_dependents_deps.dev:0 github.com/Embrace924/segma-ui,num_dependents_deps.dev:0 +github.com/Embraser01/docsearch-scraper-action, github.com/Embraser01/moleculer-middleware-permissions,num_dependents_deps.dev:0 github.com/Embraser01/santagifts,num_dependents_deps.dev:0 +github.com/Embraser01/update-git-branch-action, github.com/EmbroidePy/pyembroidery, github.com/Embroidepy/Embroidepy, github.com/Embroidermodder/Embroidermodder,criticality_score:0.359200 @@ -59407,6 +60774,7 @@ github.com/Emekaborisama/textgen, github.com/EmelyanenkoK/tvm_valuetypes, github.com/EmeraldAnalytics/pyreach, github.com/EmeraldWeb/react-cli-generator,num_dependents_deps.dev:0 +github.com/EmergeTools/emerge-upload-action, github.com/EmergencePlatform/hologit,num_dependents_deps.dev:4 github.com/EmergencePlatform/source-http-legacy,num_dependents_deps.dev:0 github.com/EmergencyReporting/er-api-cli,num_dependents_deps.dev:0 @@ -59505,6 +60873,8 @@ github.com/EmilEinarsen/bjork_react-hookup,num_dependents_deps.dev:0 github.com/EmilEinarsen/bjork_restrain, github.com/EmilEinarsen/bjork_useCookie,num_dependents_deps.dev:0 github.com/EmilEinarsen/bjork_useStorage,num_dependents_deps.dev:0 +github.com/EmilFreme/jekyll-pandoc, +github.com/EmilGedda/include-what-you-use-action, github.com/EmilHelle/Mobx-Constructs,num_dependents_deps.dev:0 github.com/EmilHvitfeldt/paletteer,criticality_score:0.323400 github.com/EmilKnudsen/rainbowLog,num_dependents_deps.dev:0 @@ -59537,6 +60907,7 @@ github.com/EmilienLeroy/kami-collection,num_dependents_deps.dev:0 github.com/EmilienLeroy/kami-component, github.com/EmilienLeroy/kami-flash, github.com/EmilienLeroy/kami-infinitelist, +github.com/EmilienM/devstack-action, github.com/EmilienPer/FileSender, github.com/EmilienPer/HackRecon, github.com/EmilioJeldes/ejs-acfactory,num_dependents_deps.dev:0 @@ -59546,6 +60917,7 @@ github.com/Emilios1995/react-native-tiles,num_dependents_deps.dev:0 github.com/Emilios1995/redux-create-module,num_dependents_deps.dev:0 github.com/Emill/node-ble-host,num_dependents_deps.dev:0 github.com/Emill/node-hci-socket, +github.com/Emiller88/pytest-workflow-composite-action, github.com/EmilsWebbod/dr-custer-api,num_dependents_deps.dev:0 github.com/EmilsWebbod/mongoose-export-import,num_dependents_deps.dev:0 github.com/EmilsWebbod/npm-typescript,num_dependents_deps.dev:0 @@ -59633,6 +61005,7 @@ github.com/Emoun/graphene,num_dependents_deps.dev:0 github.com/Emoun/tt-equal,num_dependents_deps.dev:0 github.com/Empact/js-lru,num_dependents_deps.dev:0 github.com/Empact/lru_cache,num_dependents_deps.dev:8 +github.com/Empathictech/versioning-checker, github.com/EmpatiLab/Linker,num_dependents_deps.dev:0 github.com/EmpatiLab/MemoryMap,num_dependents_deps.dev:0 github.com/Empeeric/formage-admin,num_dependents_deps.dev:0 @@ -59698,6 +61071,7 @@ github.com/EnKrypt/Botato,num_dependents_deps.dev:0 github.com/EnKrypt/TeamSpeakBot,num_dependents_deps.dev:0 github.com/EnKrypt/cardio-node, github.com/EnMarche/en-marche.fr,criticality_score:0.521440 +github.com/EnMasseProject/minikube-setup, github.com/EnSpec/SpecDAL, github.com/EnSpec/hytools, github.com/EnSpec/hytools-lite, @@ -59761,6 +61135,8 @@ github.com/Encentivize/neuron-dendrite, github.com/Encentivize/neuron-synapse, github.com/Encentivize/winston-log-remover,num_dependents_deps.dev:0 github.com/Enceradeira/neography-batch,num_dependents_deps.dev:0 +github.com/Enchan1207/rpi-buildroot, +github.com/Enchan1207/upload-googledrive, github.com/EnchangDu/wd-ui,num_dependents_deps.dev:0 github.com/EncircleInc/addresslib, github.com/EncircleInc/gplay-devices, @@ -59775,11 +61151,19 @@ github.com/Encke/Ubuntu-NodeJS-Git-Auto-Deploy,num_dependents_deps.dev:0 github.com/EncodeGroup/time-window, github.com/Encoded77/opblih,num_dependents_deps.dev:0 github.com/Encoded77/react-components-encoded,num_dependents_deps.dev:0 +github.com/Encore-Post-Sales/github-action-slack-notify-build, github.com/Encrylize/EasyEuler, github.com/Encrylize/translatify, github.com/End313234/nasawrapper, +github.com/EndBug/add-and-commit, +github.com/EndBug/discuss-on-discord, +github.com/EndBug/export-label-config, +github.com/EndBug/label-sync, +github.com/EndBug/latest-tag, +github.com/EndBug/pages-preview, github.com/EndBug/simple-spreadsheets,num_dependents_deps.dev:0 github.com/EndBug/uptime-monitor,num_dependents_deps.dev:0 +github.com/EndBug/version-check, github.com/EndaHallahan/BBClash,num_dependents_deps.dev:0 github.com/EndaHallahan/V_,num_dependents_deps.dev:0 github.com/EndaHallahan/syllabificate,num_dependents_deps.dev:0 @@ -59802,7 +61186,9 @@ github.com/EndemolShineGroup/react-native-video-with-ads,num_dependents_deps.dev github.com/EndemolShineGroup/serverless-dynamodb-autoscaler,num_dependents_deps.dev:0 github.com/EndemolShineGroup/serverless-test-utils,num_dependents_deps.dev:0 github.com/EndemolShineGroup/tslint-config,num_dependents_deps.dev:0 +github.com/Ender-events/pandoc, github.com/EnderBender08/pyfextras, +github.com/EnderDev/mozshell-action, github.com/EnderDragonneau/Pi-Network-SDK,num_dependents_deps.dev:0 github.com/EnderQIU/cp2translate, github.com/EnderRayquaza/Vector, @@ -59964,6 +61350,7 @@ github.com/Engineer2B/ts-common-tools,num_dependents_deps.dev:0 github.com/Engineer2B/ts-cooking-pathogens,num_dependents_deps.dev:0 github.com/EngineerApart/stencil-forms,num_dependents_deps.dev:0 github.com/EngineerCoding/mjml-django-extension,num_dependents_deps.dev:0 +github.com/Engineering-Change/Action, github.com/EngineeringMode/Grapnel.js,num_dependents_deps.dev:16 github.com/EngineeringMode/srcgrep,num_dependents_deps.dev:0 github.com/Engineeringradio/pirsclockbasic, @@ -60106,6 +61493,10 @@ github.com/EnotionZ/GpiO,num_dependents_deps.dev:6 github.com/EnotionZ/backbone-tree-model,num_dependents_deps.dev:0 github.com/EnotionZ/jscii,num_dependents_deps.dev:0 github.com/Enouvo/ReactNative-Spectrum,num_dependents_deps.dev:0 +github.com/Enovade/POST-REST, +github.com/Enovade/json2html, +github.com/Enovade/splask, +github.com/Enovade/whatsapp, github.com/Enplug/babel-preset-enplug, github.com/Enplug/dashboard-sdk,num_dependents_deps.dev:0 github.com/Enplug/dashboard-sdk-utils,num_dependents_deps.dev:0 @@ -60113,6 +61504,8 @@ github.com/Enprocon/ironlist-icons, github.com/Enprocon/ironlist-ui-library, github.com/EnricoChi/message_stacked_bucket, github.com/EnricoGiampieri/keggrest, +github.com/EnricoMi/download-buildkite-artifact-action, +github.com/EnricoMi/publish-unit-test-result-action, github.com/EnricoPicci/ng-joystick,num_dependents_deps.dev:0 github.com/EnricoPicci/node-typescript-utils-enrico,num_dependents_deps.dev:0 github.com/EnricoPicci/observable-fs,num_dependents_deps.dev:0 @@ -60136,6 +61529,7 @@ github.com/EnriqueGalindo/springbuk_de_bucket_download, github.com/EnriqueMoran/pyBittle, github.com/EnriqueSampaio/solr-zk-client,num_dependents_deps.dev:0 github.com/EnriqueSantafe/npm_publicar_modulo, +github.com/EnriqueSoria/annotate_pr_with_ruff, github.com/Enrise/BemClassNames,num_dependents_deps.dev:0 github.com/Enrise/CucumberPuppeteerAxe,num_dependents_deps.dev:0 github.com/Enrise/epic-cs,num_dependents_deps.dev:0 @@ -60177,6 +61571,9 @@ github.com/Enteee/pdml2flow-elasticsearch, github.com/Enteee/pdml2flow-frame-inter-arrival-time, github.com/Enteee/plantuml-parser,num_dependents_deps.dev:0 github.com/Entegrato/project-lvl1-s128,num_dependents_deps.dev:0 +github.com/Entelligence-AI/entelligence-pr-reviewer, +github.com/Entepotenz/change-string-case-action-min-dependencies, +github.com/Entepotenz/keep-github-actions-alive-min-dependencies, github.com/Enter-tainer/MaterialSlide,num_dependents_deps.dev:0 github.com/Enter-tainer/cpprepl,num_dependents_deps.dev:0 github.com/Enter-tainer/hexo-renderer-kramed,num_dependents_deps.dev:0 @@ -60207,12 +61604,14 @@ github.com/EntityB/xsd-mapping,num_dependents_deps.dev:0 github.com/Entkenntnis/challenges-server, github.com/Entkenntnis/hack-engine,num_dependents_deps.dev:0 github.com/Entkenntnis/serlo-searchindex,num_dependents_deps.dev:0 +github.com/Entle/action-pagerduty-alert, github.com/EntonyStark/ts-template, github.com/Entrementes/tupan-monitor,num_dependents_deps.dev:0 github.com/Entrenarme/entrenarme-ui,num_dependents_deps.dev:0 github.com/Entrivax/maboii.js,num_dependents_deps.dev:0 github.com/Entropy-xcy/mining_control, github.com/EntropyString/JavaScript,num_dependents_deps.dev:4 +github.com/EntrustCorporation/dvrenewal, github.com/EntryDSM/entry-logger-sanic, github.com/EntryDark/Pwentk,num_dependents_deps.dev:0 github.com/EntrybotJS/Node-Domain-Front,num_dependents_deps.dev:0 @@ -60307,6 +61706,8 @@ github.com/Eomm/kingdis,num_dependents_deps.dev:0 github.com/Eomm/lodash-mixin-diff-value,num_dependents_deps.dev:0 github.com/Eomm/massive-wax,num_dependents_deps.dev:0 github.com/Eomm/node-workshop-micro,num_dependents_deps.dev:0 +github.com/Eomm/notification-remover, +github.com/Eomm/notion-board, github.com/Eomm/on-idle,num_dependents_deps.dev:0 github.com/Eomm/package-compliant,num_dependents_deps.dev:0 github.com/Eomm/pm2-env-module,num_dependents_deps.dev:0 @@ -60314,6 +61715,7 @@ github.com/Eomm/speed-beat,num_dependents_deps.dev:0 github.com/Eomm/sqs-json-body-parser,num_dependents_deps.dev:0 github.com/Eomm/use-it,num_dependents_deps.dev:0 github.com/Eomm/verdaccio-static-token,num_dependents_deps.dev:0 +github.com/Eomm/why-don-t-you-tweet, github.com/Eomm/youtube-download-playlist,num_dependents_deps.dev:0 github.com/Eomys/MoSQITo,Google github.com/Eomys/SciDataTool, @@ -60363,6 +61765,7 @@ github.com/EpicKris/pantone-css,num_dependents_deps.dev:0 github.com/EpicKris/vestel-tv-api,num_dependents_deps.dev:0 github.com/EpicOkapi/npm-main-files,num_dependents_deps.dev:0 github.com/EpicScriptTime/update-wrapper, +github.com/EpicStep/clickhouse-github-action, github.com/EpicUsaMan/ngx-img-cropper,num_dependents_deps.dev:0 github.com/EpicWink/click-from-docstring, github.com/EpicWink/dynamodb-serialise, @@ -60372,6 +61775,7 @@ github.com/EpicWink/sfini, github.com/EpicWink/swf-typed, github.com/EpicWink/tqdm-logging-wrapper, github.com/EpicatSupercell/VeryFast,num_dependents_deps.dev:0 +github.com/Epicguru/publish-nuget, github.com/Epiconcept-Paris/changelog-js, github.com/Epiconcept-Paris/deep.piste, github.com/Epiconcept-Paris/kskit, @@ -60409,6 +61813,7 @@ github.com/Epistimio/orion.algo.robo, github.com/Epistimio/orion.algo.skopt, github.com/Epistoli/react2html,num_dependents_deps.dev:0 github.com/EpisysScience/SafeAI, +github.com/EpitomeGlobal/remove-package-versions, github.com/Eplayed/ep-cli,num_dependents_deps.dev:0 github.com/EpocDotFr/pyaimp, github.com/EpocDotFr/pyopml, @@ -60441,6 +61846,7 @@ github.com/EqualMa/tar-transform,num_dependents_deps.dev:0 github.com/EqualMa/unialphabet-lib,num_dependents_deps.dev:0 github.com/EqualsCollective/snippit,num_dependents_deps.dev:0 github.com/EqualsCollective/unpackr,num_dependents_deps.dev:0 +github.com/Equator-Analytics/python-health-checks, github.com/Equibit/bootstrap4-less,num_dependents_deps.dev:0 github.com/Equibit/candlestick-volume-chart, github.com/Equibit/wallet-crypto,num_dependents_deps.dev:0 @@ -60489,6 +61895,7 @@ github.com/EraseKesu/asynctr, github.com/Erawpalassalg/clj, github.com/ErazerBrecht/material-red,num_dependents_deps.dev:0 github.com/Erchoc/netfile,num_dependents_deps.dev:0 +github.com/ErcinDedeoglu/ftp-transfer-action, github.com/Erda-FE/dashboard-configuration,num_dependents_deps.dev:0 github.com/Erda-FE/react-markdown-editor-lite,num_dependents_deps.dev:0 github.com/Erdal-oz/objectiontotxt, @@ -60499,6 +61906,7 @@ github.com/ErdmanCT13/TypistJS,num_dependents_deps.dev:0 github.com/Ereis/easyscrapping, github.com/EremenkoAndrey/gulp-revhash-fork,num_dependents_deps.dev:0 github.com/ErenEla/transparencyEpias, +github.com/ErenKrt/ssh-push, github.com/ErenTuring/dl_tools, github.com/ErennDev/plusdb,num_dependents_deps.dev:0 github.com/Ereski/about-system,num_dependents_deps.dev:0 @@ -60554,6 +61962,7 @@ github.com/EricAlcaide/keras-wrn, github.com/EricAn0630/novelpia-python, github.com/EricAnderson1000/aws-swagger-generator,num_dependents_deps.dev:0 github.com/EricAndrechek/Homebridge-Display,num_dependents_deps.dev:0 +github.com/EricBagas-Wistkey/ios-build-action, github.com/EricBanker12/react-read-pdf,num_dependents_deps.dev:0 github.com/EricBartusch/StS-yo-protemplate,num_dependents_deps.dev:0 github.com/EricBartusch/sts-protemplate,num_dependents_deps.dev:0 @@ -60571,11 +61980,13 @@ github.com/EricCrosson/encapsulate-streams,num_dependents_deps.dev:0 github.com/EricCrosson/fanout-streams,num_dependents_deps.dev:0 github.com/EricCrosson/fast-check-numbers,num_dependents_deps.dev:0 github.com/EricCrosson/generator-typescript-package,num_dependents_deps.dev:0 +github.com/EricCrosson/install-github-release-binary, github.com/EricCrosson/io-ts-bigint,num_dependents_deps.dev:0 github.com/EricCrosson/io-ts-docopt,num_dependents_deps.dev:0 github.com/EricCrosson/io-ts-numbers,num_dependents_deps.dev:0 github.com/EricCrosson/is-doji,num_dependents_deps.dev:0 github.com/EricCrosson/json-value,num_dependents_deps.dev:0 +github.com/EricCrosson/semantic-release-your-github-action, github.com/EricCrosson/stump, github.com/EricDalrymple91/pyhorizon, github.com/EricDalrymple91/strawpy, @@ -60689,6 +62100,7 @@ github.com/ErichStyger/mcuoneclipse,criticality_score:0.363210 github.com/Erichain/blur-image,num_dependents_deps.dev:0 github.com/ErickAgrazal/ta-bulk-testing,num_dependents_deps.dev:0 github.com/ErickErock/pICNIK, +github.com/ErickGomez98/composer, github.com/ErickJBS/racoon-cli,num_dependents_deps.dev:0 github.com/ErickJoestar/react-data-structures,num_dependents_deps.dev:0 github.com/ErickMR19/insomnia-plugin-parse-json-property-body,num_dependents_deps.dev:0 @@ -60844,6 +62256,7 @@ github.com/Erkaman/regl-recorder,num_dependents_deps.dev:0 github.com/Erkaman/regl-stats-widget,num_dependents_deps.dev:0 github.com/Erkaman/rotate-vector-about-axis,num_dependents_deps.dev:0 github.com/ErkoKnoll/node-source-map-parser-wasm, +github.com/ErlGang/setup-erlang, github.com/ErlendEllingsen/Localization.js,num_dependents_deps.dev:0 github.com/ErlendEllingsen/app-tab-bar,num_dependents_deps.dev:0 github.com/ErlendEllingsen/digitalocean-developer-firewall,num_dependents_deps.dev:0 @@ -60940,6 +62353,7 @@ github.com/ErrorBot1122/EsayParsejs,num_dependents_deps.dev:0 github.com/ErrorCode101/numeric-formatter,num_dependents_deps.dev:0 github.com/ErrorFeed/errorfeed-python, github.com/ErrorGamer2000/base-convert.js,num_dependents_deps.dev:0 +github.com/ErrorGamer2000/github-readme-blog-post-action, github.com/ErrorGamer2000/scratch3-api,num_dependents_deps.dev:0 github.com/ErrorGamer2000/stringstonumbers,num_dependents_deps.dev:0 github.com/ErrorMessage404/Easy-HypixelAPI,num_dependents_deps.dev:0 @@ -60988,6 +62402,7 @@ github.com/EsaxCO/filerobot-image-editor, github.com/EsaxCO/slider-javascript,num_dependents_deps.dev:0 github.com/Esbiya/base64-wasm,num_dependents_deps.dev:0 github.com/Esbiya/knight_v8, +github.com/Escape-Technologies/action, github.com/Escape-Technologies/mookme, github.com/Escape-Technologies/pyuntype, github.com/Escapingbug/Rustep,num_dependents_deps.dev:0 @@ -61034,6 +62449,7 @@ github.com/EskoSalaka/mtgtools, github.com/Eslam-Yahya/cogni-reports,num_dependents_deps.dev:0 github.com/EslamAsfour/PyNNN, github.com/EslamElmadny/HijriGregorianDatepicker,num_dependents_deps.dev:0 +github.com/EsmerlinJM/gha-release-notes-improved, github.com/Esmio/simon-test-2,num_dependents_deps.dev:0 github.com/EsneiderSM/angular-med-cli, github.com/EsneiderSM/test-npm,num_dependents_deps.dev:0 @@ -61303,6 +62719,7 @@ github.com/EthanRutherford/jenny-js,num_dependents_deps.dev:0 github.com/EthanRutherford/lazy-iter,num_dependents_deps.dev:0 github.com/EthanRutherford/pre-req,num_dependents_deps.dev:0 github.com/EthanSK/get-node-modules-dir,num_dependents_deps.dev:0 +github.com/EthanSK/git-branch-name-action, github.com/EthanSk13s/async-kirara, github.com/EthanSk13s/pyKirara, github.com/EthanStandel/nanoleaf-extensions, @@ -61350,8 +62767,11 @@ github.com/EthereumEliteswap/governance,num_dependents_deps.dev:0 github.com/EthereumEliteswap/liquidity-staker,num_dependents_deps.dev:0 github.com/EthereumEliteswap/token-lists,num_dependents_deps.dev:0 github.com/EthereumEx/httpheaderprovider,num_dependents_deps.dev:0 +github.com/EthereumRemix/sol-test, +github.com/EthereumRemix/ts-sol-test, github.com/Etherll/OKanime, github.com/Etherll/probot.db, +github.com/Etherna/swarm-upload-action, github.com/Etheryte/nuxt-dropzone,num_dependents_deps.dev:2 github.com/Etheryte/vue-auto-dropzone,num_dependents_deps.dev:0 github.com/Etheryte/vue-raw-pre,num_dependents_deps.dev:0 @@ -61413,6 +62833,7 @@ github.com/Ethras/nativescript-hockeyapp,num_dependents_deps.dev:0 github.com/Ethras/nativescript-simple-permissions,num_dependents_deps.dev:0 github.com/EticaAI/HXL-Data-Science-file-formats, github.com/EticaAI/hxltm, +github.com/EtienneCmb/conda-publish-action, github.com/EtienneDepaulis/omniauth-mention,num_dependents_deps.dev:0 github.com/EtienneK/finlib,num_dependents_deps.dev:0 github.com/EtienneLem/architect,num_dependents_deps.dev:0 @@ -61534,8 +62955,12 @@ github.com/EulerJS/EulerJS,num_dependents_deps.dev:0 github.com/EulerianTechnologies/eanalytics-api-py, github.com/EulerianTechnologies/eanalytics-js,num_dependents_deps.dev:0 github.com/EulerianTechnologies/eanalytics-react,num_dependents_deps.dev:0 +github.com/Eun/http-server-action, github.com/Euphe/pepize, github.com/EuphoSomit/helix-ui-react,num_dependents_deps.dev:0 +github.com/EuphoricSystems/action-sync-template-repository, +github.com/EuphoricSystems/docker-promote-image, +github.com/EuphoricSystems/github-action-yaml-file-properties, github.com/Euphrasiologist/guitarneck,num_dependents_deps.dev:0 github.com/Euphrasiologist/lwPhylo,num_dependents_deps.dev:0 github.com/Euraxluo/dynamic_config, @@ -61726,6 +63151,7 @@ github.com/EvandroLG/pegasus.lua,criticality_score:0.409650 github.com/EvandroLG/serialized-redis, github.com/EvandroLG/simple-template,num_dependents_deps.dev:0 github.com/EvandroNeris/css-ngx-quill,num_dependents_deps.dev:0 +github.com/Evaneos/ssh-action, github.com/Evaneos/vitaminjs,num_dependents_deps.dev:0 github.com/Evanfeenstra/react-iota,num_dependents_deps.dev:0 github.com/Evanfeenstra/rn-rncryptor,num_dependents_deps.dev:0 @@ -61785,6 +63211,7 @@ github.com/EverRealGMBH/undefsafe-typed,num_dependents_deps.dev:0 github.com/EverSeenTOTOTO/pen,num_dependents_deps.dev:0 github.com/EverSeenTOTOTO/pen-middleware,num_dependents_deps.dev:0 github.com/EverSeenTOTOTO/yo-tsproject,num_dependents_deps.dev:0 +github.com/EverStarck/pr-timeline-commitizen-commits-list, github.com/EverWhimsical/jbehave-extras,num_dependents_deps.dev:0 github.com/EverWinter23/graphene-gis, github.com/EveraldoAraujo/collection-extended,num_dependents_deps.dev:0 @@ -61893,6 +63320,7 @@ github.com/EverythingMe/python-disposable-redis, github.com/EverythingMe/rainbow, github.com/EverythingMe/recat, github.com/EverythingMe/redshift_console, +github.com/EverythingSuckz/github-telegram-notify, github.com/Evgen74/react-native-voice,num_dependents_deps.dev:0 github.com/EvgenOst/homebridge-breezart-fan, github.com/EvgenOst/localizer,num_dependents_deps.dev:0 @@ -61981,6 +63409,7 @@ github.com/Evilcome/redis-security-code,num_dependents_deps.dev:0 github.com/Evilcome/restify-memory-session,num_dependents_deps.dev:0 github.com/Evilcome/umeng-node-sdk,num_dependents_deps.dev:0 github.com/Evilkanoa/react-week-calendar,num_dependents_deps.dev:0 +github.com/Evilweed/betterer-github-action, github.com/Evilweed/protractor-beautiful-reporter,num_dependents_deps.dev:0 github.com/Evilzebra/liquidfun-emscripten,num_dependents_deps.dev:0 github.com/EvineDeng/jd-base,criticality_score:0.393090 @@ -62006,6 +63435,7 @@ github.com/EvolutionJobs/pdf-viewer,num_dependents_deps.dev:0 github.com/EvolutionOS/eosjs-ecc,num_dependents_deps.dev:0 github.com/Evoluto/quickbas-sdk-python, github.com/EvoluxBR/react-smart-tabs,num_dependents_deps.dev:0 +github.com/EvolveArt/thoth-action, github.com/EvolveJS/EvoLava,num_dependents_deps.dev:0 github.com/EvolveJS/EvolveJS,num_dependents_deps.dev:0 github.com/EvolveJS/Objex,num_dependents_deps.dev:0 @@ -62062,6 +63492,7 @@ github.com/Ewkoll/newman-reporter-ewkoll,num_dependents_deps.dev:0 github.com/Ewocker/axios,num_dependents_deps.dev:0 github.com/Ewocker/vue-lodash,num_dependents_deps.dev:2 github.com/Ewpratten/BashSmash, +github.com/Ewpratten/FRC-actions, github.com/Ewpratten/ODWC, github.com/Ewpratten/PiHole-api, github.com/Ewpratten/classRaant, @@ -62276,6 +63707,7 @@ github.com/Exirel/sopel-8ball, github.com/Exirel/sopel-lichess, github.com/ExistentialAudio/BlackHole,criticality_score:0.371710 github.com/Exitialis/nuxt-yandex-metrica,num_dependents_deps.dev:0 +github.com/ExitoLab/packer-build-action, github.com/Exiv2/exiv2,criticality_score:0.600850 github.com/ExmgElements/exmg-cli,num_dependents_deps.dev:0 github.com/ExmgElements/exmg-date-format,num_dependents_deps.dev:0 @@ -62315,6 +63747,7 @@ github.com/ExodiusStudios/node-tmux,num_dependents_deps.dev:0 github.com/ExodiusStudios/sceptre,num_dependents_deps.dev:0 github.com/Exodus-Privacy/exodus,criticality_score:0.473980 github.com/Exodus-Privacy/exodus-core, +github.com/ExodusMovement/asana-actions, github.com/ExodusMovement/aws-multilog,num_dependents_deps.dev:0 github.com/ExodusMovement/binauth,num_dependents_deps.dev:0 github.com/ExodusMovement/bintoken,num_dependents_deps.dev:0 @@ -62420,13 +63853,16 @@ github.com/ExpediaGroup/apiary-extensions,num_dependents_deps.dev:52 github.com/ExpediaGroup/beekeeper,num_dependents_deps.dev:138 github.com/ExpediaGroup/dropwizard-template-config,num_dependents_deps.dev:0 github.com/ExpediaGroup/eg-oss-plugin-config,num_dependents_deps.dev:0 +github.com/ExpediaGroup/github-helpers, github.com/ExpediaGroup/graphql-component, github.com/ExpediaGroup/graphql-kotlin,"criticality_score:0.541170,num_dependents_deps.dev:428" github.com/ExpediaGroup/jarviz,num_dependents_deps.dev:0 github.com/ExpediaGroup/map-maker, +github.com/ExpediaGroup/package-json-validator, github.com/ExpediaGroup/rhapsody,num_dependents_deps.dev:90 github.com/ExpediaGroup/service-client, github.com/ExpediaGroup/shunting-yard,num_dependents_deps.dev:0 +github.com/ExpediaGroup/spinnaker-pipeline-trigger, github.com/ExpediaInc/alexa-conversation,num_dependents_deps.dev:0 github.com/ExpediaInc/apiary-extensions,num_dependents_deps.dev:0 github.com/ExpediaInceCommercePlatform/circus-train-datasqueeze,num_dependents_deps.dev:0 @@ -62459,6 +63895,7 @@ github.com/ExploreMqt/firebase-path,num_dependents_deps.dev:0 github.com/Explorer-Wu/explo-cli,num_dependents_deps.dev:0 github.com/Explorerhz/vue-awesome-ui,num_dependents_deps.dev:0 github.com/ExplosiveHippo/Entropy, +github.com/Exponential-Workload/create-index-action, github.com/ExposedCat/Satanic.JS,num_dependents_deps.dev:0 github.com/ExpressAI/ExplainaBoard, github.com/ExpressApp/express-widget,num_dependents_deps.dev:0 @@ -62635,6 +64072,7 @@ github.com/Eyepea/tanto, github.com/Eyes22798/anydoor,num_dependents_deps.dev:0 github.com/Eyesofbanquo/Creache, github.com/Eyesofbanquo/authher0, +github.com/Eyevinn/action-eks-kubectl, github.com/Eyevinn/adxchange-engine,num_dependents_deps.dev:0 github.com/Eyevinn/akamai-beacon-parser,num_dependents_deps.dev:0 github.com/Eyevinn/channel-engine,num_dependents_deps.dev:0 @@ -62708,6 +64146,8 @@ github.com/EzioMercer/cobo,num_dependents_deps.dev:0 github.com/EzioMercer/true-math,num_dependents_deps.dev:0 github.com/EzioMohsin/tiny-yeeter, github.com/EzioReturner/RATurbo-components,num_dependents_deps.dev:0 +github.com/EzioTheDeadPoet/actions-mdBook-indexer, +github.com/EzioTheDeadPoet/mdBook_rawJSON_api_generator, github.com/EzioW/command-line,num_dependents_deps.dev:0 github.com/EzioW/seraph-eslint, github.com/EzioW/seraphEslint,num_dependents_deps.dev:0 @@ -62760,6 +64200,7 @@ github.com/F0urTw0/aws-utils,num_dependents_deps.dev:0 github.com/F145h/jade-lite,num_dependents_deps.dev:0 github.com/F145h/node-dao,num_dependents_deps.dev:2 github.com/F145h/purejs-multipart-parser,num_dependents_deps.dev:0 +github.com/F1F7Y/titanfall-mod-docs-gen, github.com/F1LT3R/ansi-mark,num_dependents_deps.dev:1120 github.com/F1LT3R/ansi-parse,num_dependents_deps.dev:0 github.com/F1LT3R/ansi-to,num_dependents_deps.dev:10 @@ -62787,6 +64228,7 @@ github.com/F2011B/ami2py, github.com/F21/postcss-modular-scale-plus,num_dependents_deps.dev:0 github.com/F21/postcss-vertical-rhythm-function,num_dependents_deps.dev:0 github.com/F27Ventures/cohorts, +github.com/F2had/pr-telegram-action, github.com/F34th3R/feather-react-components,num_dependents_deps.dev:0 github.com/F3MDEV/f3m-search-terminator,num_dependents_deps.dev:0 github.com/F3MDEV/mpds-add-field,num_dependents_deps.dev:0 @@ -62863,6 +64305,7 @@ github.com/FAST-HEP/fast-curator, github.com/FASTGenomics/fgread-py, github.com/FATEx-DAO/community-token-list,num_dependents_deps.dev:0 github.com/FATEx-DAO/default-token-list,num_dependents_deps.dev:0 +github.com/FATMAP/gha-file-sync, github.com/FAXES/disbotapijs,num_dependents_deps.dev:0 github.com/FAXES/markdown-it-faxes, github.com/FAXES/syntax-checker-new,num_dependents_deps.dev:0 @@ -62972,6 +64415,7 @@ github.com/FDio/vpp,"criticality_score:0.545050,num_dependents_deps.dev:1" github.com/FDiskas/parcel-plugin-css-object,num_dependents_deps.dev:0 github.com/FDiskas/parcel-plugin-json,num_dependents_deps.dev:0 github.com/FDiskas/react-native-unicons,num_dependents_deps.dev:0 +github.com/FDuhen/consul-fetcher-action, github.com/FE-Driver/vue-beauty,num_dependents_deps.dev:2 github.com/FE-EE/generator-turbo, github.com/FE-EE/gulp-turbo, @@ -63103,6 +64547,7 @@ github.com/FFTYYY/fitterlog, github.com/FFX01/censorify,num_dependents_deps.dev:0 github.com/FFX01/django-restup, github.com/FFX313/aliyun-sdk-js,num_dependents_deps.dev:0 +github.com/FFY00/build-arch-package, github.com/FFY00/dbus-objects, github.com/FFY00/diiscord-github-release-notifier, github.com/FFY00/dominator, @@ -63277,6 +64722,7 @@ github.com/FINRAOS/herd-mdl,num_dependents_deps.dev:0 github.com/FINRAOS/karma-msl, github.com/FINRAOS/model-validation-toolkit, github.com/FINTLabs/fint-feature-toggle-react,num_dependents_deps.dev:0 +github.com/FIPOCHINA/setup-node-nvm, github.com/FIRESIDE-STORY/yyc, github.com/FIRHQ/fir-cli,criticality_score:0.460330 github.com/FIRHQ/flow-cli,num_dependents_deps.dev:0 @@ -63293,6 +64739,8 @@ github.com/FIWARE-Blockchain/iota-lib,num_dependents_deps.dev:0 github.com/FIWARE-Middleware/IDL-Parser,num_dependents_deps.dev:1 github.com/FIWARE-Middleware/KIARA,num_dependents_deps.dev:0 github.com/FIWARE-Middleware/kiaragen,num_dependents_deps.dev:0 +github.com/FIWARE-Ops/clair-to-markdown, +github.com/FIWARE-Ops/get-images-from-submodules, github.com/FIWARE-TMForum/ckanext-baepublisher, github.com/FIWARE/node-red-contrib-FIWARE_official,num_dependents_deps.dev:0 github.com/FIX94/Nintendont,criticality_score:0.396060 @@ -63314,6 +64762,7 @@ github.com/FJager/fbmessenger-express-bot,num_dependents_deps.dev:0 github.com/FJancsi/adaptive-loading-helper,num_dependents_deps.dev:0 github.com/FJancsi/what-week-is-it,num_dependents_deps.dev:0 github.com/FK78/fahad-styles-test,num_dependents_deps.dev:0 +github.com/FKLC/sign-files-action, github.com/FKN48/EPK,num_dependents_deps.dev:0 github.com/FKatenbrink/DeGiro-API, github.com/FKgk/testMail, @@ -63371,6 +64820,7 @@ github.com/FMS-Cat/chroma-shader,num_dependents_deps.dev:0 github.com/FMS-Cat/glcat-ts,num_dependents_deps.dev:0 github.com/FMS-Cat/wavenerd-deck,num_dependents_deps.dev:0 github.com/FMS-Mu2e/particle_EM_tracks, +github.com/FN-FAL113/minecraft-plugin-runtime-test, github.com/FNA-XNA/FAudio,criticality_score:0.517990 github.com/FNA-XNA/FNA,criticality_score:0.480140 github.com/FNATIC/sanity-plugin-vimeo-browser,num_dependents_deps.dev:0 @@ -63457,6 +64907,8 @@ github.com/FOStack/ion-viewcontrollers,num_dependents_deps.dev:0 github.com/FOXOBioScience/methylcheck, github.com/FOXOBioScience/methylize, github.com/FOXOBioScience/methylprep, +github.com/FOZAEL23/action-hide-comment, +github.com/FOZAEL23/create-hide-update-comment, github.com/FPG-Alan/simple-react-video,num_dependents_deps.dev:0 github.com/FPGAwars/apio,criticality_score:0.459500 github.com/FPGAwars/icestudio,criticality_score:0.531690 @@ -63539,6 +64991,7 @@ github.com/FSou1/find-focused-element,num_dependents_deps.dev:0 github.com/FStarLang/FStar,criticality_score:0.656300 github.com/FStarLang/kremlin,criticality_score:0.449630 github.com/FTA-Portal/tariff-formula,num_dependents_deps.dev:0 +github.com/FTBpro/action-kaniko, github.com/FTBpro/lighthouse-pipeline,num_dependents_deps.dev:0 github.com/FTChinese/bs-ftc-theme,num_dependents_deps.dev:0 github.com/FTChinese/ftc-footer,num_dependents_deps.dev:0 @@ -63556,6 +65009,7 @@ github.com/FThompson/FormPersistence.js,num_dependents_deps.dev:0 github.com/FThompson/Gamepads.js,num_dependents_deps.dev:0 github.com/FToovvr/anobbs-client-py, github.com/FTruglio/d19n-node-mq,num_dependents_deps.dev:0 +github.com/FTsbrown/msteams-action, github.com/FUB-HCC/Spring-Boot-Questionnaires,num_dependents_deps.dev:0 github.com/FUMiYAEMPiRE/Python_RPA_Module, github.com/FURI-J/msbt2json,num_dependents_deps.dev:0 @@ -63594,6 +65048,11 @@ github.com/FWin22/drprobe_interface, github.com/FWirtz/generator-edtriopg,num_dependents_deps.dev:0 github.com/FWoelffel/orthanc-client,num_dependents_deps.dev:0 github.com/FX-HAO/keycloak-ruby-client,num_dependents_deps.dev:0 +github.com/FX31337/FX-Data-Convert-Action, +github.com/FX31337/FX-Data-Download-Action, +github.com/FX31337/FX-Data-Generate-Action, +github.com/FX31337/MQL-Compile-Action, +github.com/FX31337/MQL-Tester-Action, github.com/FXBPinelli/angular-wsse,num_dependents_deps.dev:0 github.com/FXHDHR/cssUnit-loader,num_dependents_deps.dev:0 github.com/FXMisc/RichTextFX,criticality_score:0.489740 @@ -63640,6 +65099,7 @@ github.com/FaMaPy/fm_metamodel, github.com/FaMaPy/pysat_metamodel, github.com/FaRzad-845/iramount,num_dependents_deps.dev:0 github.com/FaRzad-845/numberToText,num_dependents_deps.dev:0 +github.com/FaSe22/gajira-test-results, github.com/FaXaq/musix,num_dependents_deps.dev:0 github.com/FaaPz/PDO,criticality_score:0.302800 github.com/FaaStRuby/faastruby-cli,num_dependents_deps.dev:0 @@ -63677,6 +65137,7 @@ github.com/FabianGosebrink/nx-karma-to-jest,num_dependents_deps.dev:0 github.com/FabianGosebrink/nx-protractor-to-cypress,num_dependents_deps.dev:0 github.com/FabianGroeger96/docx2python, github.com/FabianGroeger96/wandb-callbacks, +github.com/FabianKoestring/body-regex-validator-action, github.com/FabianLars/minimal-tauri-cli,num_dependents_deps.dev:0 github.com/FabianLauer/tsxml,num_dependents_deps.dev:0 github.com/FabianLauer/unsplash-json,num_dependents_deps.dev:0 @@ -63785,6 +65246,8 @@ github.com/FabricioFFC/to_worksheet,num_dependents_deps.dev:0 github.com/FabricioK/angular2-tinymce,num_dependents_deps.dev:0 github.com/FabricioK/hexenginets,num_dependents_deps.dev:0 github.com/FabricioK/mr-tusk,num_dependents_deps.dev:0 +github.com/Fabrimat/addon-packager-action, +github.com/Fabrimat/caprover-action, github.com/Fabriquartz/ember-computed-convert-unit,num_dependents_deps.dev:0 github.com/Fabriquartz/ember-keyboard-service, github.com/Fabriquartz/ember-proxy-util, @@ -63797,6 +65260,7 @@ github.com/Fabriquartz/ember-right-click-menu, github.com/FabrizioBrancati/BFKit-Swift,criticality_score:0.341750 github.com/FabrizioCaldarelli/angular2-swiper,num_dependents_deps.dev:0 github.com/FabrizioMontanari/pyAIC, +github.com/FabrizioSandri/RcppDeepState-action, github.com/FabrizioSandri/r-integration,num_dependents_deps.dev:0 github.com/Fabs/simple-gini,num_dependents_deps.dev:0 github.com/Fabulabs/spacy-js,num_dependents_deps.dev:0 @@ -63855,6 +65319,7 @@ github.com/FadeDave77/promiser,num_dependents_deps.dev:0 github.com/FadeFruit/RepositorioProgramacionII, github.com/FadedController/download-manager,num_dependents_deps.dev:0 github.com/Fadelis/grpcmock,num_dependents_deps.dev:25 +github.com/Fadikhayo1995/jest-coverage-optimized-diff, github.com/FadioIT/eslint-tools,num_dependents_deps.dev:0 github.com/FadioIT/react-form,num_dependents_deps.dev:0 github.com/FadioIT/workerify,num_dependents_deps.dev:0 @@ -64164,6 +65629,7 @@ github.com/FansPro/react-native-uniqueId,num_dependents_deps.dev:0 github.com/Fansana/bot-web-interface,num_dependents_deps.dev:0 github.com/Fantaso/whatsapp-web, github.com/Fantast/highmaps-browserify,num_dependents_deps.dev:0 +github.com/FantasticFiasco/action-update-license-year, github.com/FantasticFiasco/axis-configuration,num_dependents_deps.dev:0 github.com/FantasticFiasco/axis-discovery,num_dependents_deps.dev:0 github.com/FantasticFiasco/axis-discovery-bonjour,num_dependents_deps.dev:0 @@ -64215,6 +65681,7 @@ github.com/Fantomas42/zinnia-theme-html5, github.com/Fantomas42/zinnia-twitter, github.com/Fantomas42/zinnia-url-shortener-bitly, github.com/Fantomas42/zinnia-url-shortener-hashids, +github.com/Faolain/railway-pr-deploy, github.com/FapCarbonator/GameOfLifePython, github.com/Fapalz/scss-starter,num_dependents_deps.dev:0 github.com/Faqih0776/Indonesian-Volcano-Status, @@ -64243,6 +65710,7 @@ github.com/FarazzShaikh/WebAssemblr,num_dependents_deps.dev:0 github.com/FarazzShaikh/three-noise, github.com/FarbDev/grunt-fontdump,num_dependents_deps.dev:0 github.com/FarbDev/node-fontdump,num_dependents_deps.dev:0 +github.com/Farbfox/hetzner-cloud-deploy-server-action, github.com/Farbod-dev/react-native-tab,num_dependents_deps.dev:0 github.com/Farbod-dev/rrcli,num_dependents_deps.dev:0 github.com/FarbodSalamat-Zadeh/MaterialDesignUtils,num_dependents_deps.dev:0 @@ -64287,7 +65755,9 @@ github.com/Faridbabayev001/covid19-scraper,num_dependents_deps.dev:0 github.com/Faridbabayev001/tapaz,num_dependents_deps.dev:0 github.com/Faris-AH/ng-noob-table,num_dependents_deps.dev:0 github.com/FarisHijazi/htmltable-cli, +github.com/FarisZR/docker-compose-gitops-action, github.com/FaritorKang/wechat-pay-sdk,num_dependents_deps.dev:0 +github.com/Fariz-fx/IssueReminder, github.com/Farjad/oxford-speech-api,num_dependents_deps.dev:0 github.com/Farm-Investimentos/front-mfe-components,num_dependents_deps.dev:0 github.com/FarmBot-Labs/farmware-tools, @@ -64492,6 +65962,7 @@ github.com/FaureWu/webpack-alioss-upload-loader,num_dependents_deps.dev:0 github.com/FaureWu/zoro,num_dependents_deps.dev:0 github.com/FaureWu/zoro-plugin,num_dependents_deps.dev:0 github.com/FaustTobias/eslint-config,num_dependents_deps.dev:0 +github.com/FaustVX/GetRSSAction, github.com/FaustXVI/junit5-docker,num_dependents_deps.dev:0 github.com/FaustYKKN/nodebb-plugin-session-sharing,num_dependents_deps.dev:0 github.com/FaustinCarter/scraps, @@ -64570,6 +66041,7 @@ github.com/FayasNoushad/Stylish-Text, github.com/FayasNoushad/Telegram-Info, github.com/FayasNoushad/URL-Download, github.com/FayasNoushad/Youtube-Video-Thumbnail, +github.com/FayazRahman/setup-ffmpeg, github.com/Faylixe/conkyutil, github.com/Faylixe/flask-fool, github.com/Faylixe/pygame-vkeyboard, @@ -64606,6 +66078,7 @@ github.com/Fdawgs/node-unrtf, github.com/Fdawgs/sanitize-middleware,num_dependents_deps.dev:0 github.com/Fdebijl/clog,num_dependents_deps.dev:0 github.com/FdelMazo/grammaticommit, +github.com/FdelMazo/node-to-gh-action, github.com/FdelMazo/obliquestrategies, github.com/FdezRomero/npx-fdezromero,num_dependents_deps.dev:0 github.com/FdezRomero/request-image-size,num_dependents_deps.dev:10 @@ -64690,6 +66163,7 @@ github.com/FedeIII/hexagon,num_dependents_deps.dev:0 github.com/FedeLochbaum/slate-autocomplete,num_dependents_deps.dev:0 github.com/FedeMITIC/auth0-users,num_dependents_deps.dev:0 github.com/Fedejp/rn-aa-lib,num_dependents_deps.dev:0 +github.com/Fedeorlandau/better-qr-code-generator, github.com/Fedeorlandau/chakra-ui-simple-autocomplete, github.com/Fedeorlandau/jodit-react-ts,num_dependents_deps.dev:0 github.com/Fedeorlandau/l2-api,num_dependents_deps.dev:0 @@ -64703,6 +66177,7 @@ github.com/FedericoCarboni/eloquent-ffmpeg,num_dependents_deps.dev:0 github.com/FedericoCarboni/ffmeta,num_dependents_deps.dev:0 github.com/FedericoCarboni/fluent-ffmpeg-util,num_dependents_deps.dev:0 github.com/FedericoCarboni/node-ntsuspend,num_dependents_deps.dev:4 +github.com/FedericoCarboni/setup-ffmpeg, github.com/FedericoCeratto/dashing, github.com/FedericoCeratto/desktop-security-assistant, github.com/FedericoCeratto/dns-firewall, @@ -64711,6 +66186,7 @@ github.com/FedericoCeratto/shoebill, github.com/FedericoCeratto/supcut, github.com/FedericoCeratto/tox-pytest-summary, github.com/FedericoCinus/WoMG, +github.com/FedericoCisneros/add-field-option-to-height-app, github.com/FedericoCorchia/Italian_COVID_Library, github.com/FedericoDiMarzo/AbstractMelodyParser, github.com/FedericoDiMarzo/melodically, @@ -64719,6 +66195,7 @@ github.com/FedericoElles/bumper2,num_dependents_deps.dev:0 github.com/FedericoElles/sostatic,num_dependents_deps.dev:0 github.com/FedericoGarza/covidmx, github.com/FedericoGarza/mapsmx, +github.com/FedericoGarza/sync-repos, github.com/FedericoGarza/tsfeatures,Google github.com/FedericoMameliPrjs/vue-staged-transition,num_dependents_deps.dev:0 github.com/FedericoManzano/bodystyle, @@ -64741,6 +66218,7 @@ github.com/FedorMashoshin/lotide,num_dependents_deps.dev:0 github.com/FedoraGameDev/oxeo,num_dependents_deps.dev:0 github.com/FedoraQt/MediaWriter,criticality_score:0.333070 github.com/FedoraQt/adwaita-qt,criticality_score:0.368370 +github.com/Fedorm/actions-yarn, github.com/Fedorrychkov/node-express-sequelize-boilerplate,num_dependents_deps.dev:0 github.com/FeeFighters/samurai-client-nodejs,num_dependents_deps.dev:0 github.com/FeeFighters/samurai-client-ruby,num_dependents_deps.dev:0 @@ -64825,8 +66303,10 @@ github.com/FelipeBarrosCruz/seneca-seraph,num_dependents_deps.dev:0 github.com/FelipeBohnertPaetzold/react-native-slim-gallery,num_dependents_deps.dev:0 github.com/FelipeBohnertPaetzold/v-maps, github.com/FelipeBohnertPaetzold/vue-slim-lightbox, +github.com/FelipeBuenoNunes/action-basic, github.com/FelipeDecome/TMDBLib, github.com/FelipeGaos/react-block-full-ui,num_dependents_deps.dev:0 +github.com/FelipeGdM/doxygen-action, github.com/FelipeGdM/gzbridge,num_dependents_deps.dev:0 github.com/FelipeGerolomo/react-wintek,num_dependents_deps.dev:0 github.com/FelipeGetial/randomNames, @@ -64848,6 +66328,7 @@ github.com/FelipeSpirit/simple-bot-discord, github.com/FelipeSulser/NonNashianGameTheory, github.com/FelipeTaiarol/angular2-logger-universal,num_dependents_deps.dev:0 github.com/FelipeVa/rn-credit-card,num_dependents_deps.dev:0 +github.com/FelippeChemello/merge-bot, github.com/FelisCatus/SwitchyOmega,criticality_score:0.494790 github.com/FelisPhasma/Felis-Stack-Compiler,num_dependents_deps.dev:0 github.com/FelisPhasma/Txtup,num_dependents_deps.dev:0 @@ -64865,6 +66346,7 @@ github.com/FelixBenning/lazyRecursion, github.com/FelixBrgn/posemotion,num_dependents_deps.dev:0 github.com/FelixCeard/maj7, github.com/FelixDQ/kattis-kitten, +github.com/FelixFonteneau/readme-Generation-for-Devops-Course, github.com/FelixFurtmayr/url2pdf, github.com/FelixGSE/pypiano, github.com/FelixGail/gplaymusic,num_dependents_deps.dev:0 @@ -64915,6 +66397,7 @@ github.com/FelixSchwarz/puzzle-plugin-system, github.com/FelixSchwarz/pymta, github.com/FelixSchwarz/pythonic-testcase, github.com/FelixSchwarz/smartconstants, +github.com/FelixSeptem/matrixone-action, github.com/FelixTellmann/fx-style, github.com/FelixTellmann/rehype-prism-with-plugins,num_dependents_deps.dev:0 github.com/FelixTellmann/shopify-aws-cli,num_dependents_deps.dev:0 @@ -64959,6 +66442,7 @@ github.com/FendlerConsulting/ninja-sitemap,num_dependents_deps.dev:0 github.com/Feneric/doxypypy, github.com/Feneric/structspec, github.com/Feng-Bu-Jue/react-native-waterfall,num_dependents_deps.dev:0 +github.com/FengChendian/latex-dtx2cls-action, github.com/FengLin2016/cachepack,num_dependents_deps.dev:0 github.com/FengLin2016/cli,num_dependents_deps.dev:0 github.com/FengLin2016/vtree,num_dependents_deps.dev:0 @@ -65012,6 +66496,8 @@ github.com/FerAiwa/ng-score-polygon,num_dependents_deps.dev:0 github.com/FerCorona/crown, github.com/FerGonzalezT/create-react-app,num_dependents_deps.dev:0 github.com/FerLuisxd/addPropertyToObject,num_dependents_deps.dev:0 +github.com/FerLuisxd/create-npmrc, +github.com/FerLuisxd/push-docker-gcr, github.com/FeralInteractive/gamemode,criticality_score:0.434830 github.com/FerasAloudah/cra-template-feras,num_dependents_deps.dev:0 github.com/Fercho120/FASTA, @@ -65080,6 +66566,7 @@ github.com/FernandoTimo/FernandoTimo, github.com/FernandoTorresL/npm-random-msg,num_dependents_deps.dev:0 github.com/Fernerkundung/awesome-sentinel,criticality_score:0.331260 github.com/Ferniss/seje.dims,num_dependents_deps.dev:0 +github.com/Fernthedev/qpm-rust-action, github.com/FeroLabs/fero_client, github.com/FerociousCentaur/billdeskJS, github.com/FerociousCentaur/py-billdesk, @@ -65173,6 +66660,7 @@ github.com/FgitYY/time-glj,num_dependents_deps.dev:0 github.com/Fgl/react-native-splash-screen,num_dependents_deps.dev:0 github.com/Fhasghrge/js-ast,num_dependents_deps.dev:0 github.com/FhdAlotaibi/CryptographyAndroid,num_dependents_deps.dev:0 +github.com/Fhwang0926/upload-release-asset, github.com/Fi1osof/apollo-cms, github.com/Fi1osof/m3.js, github.com/Fi1osof/react-cms-draft-wysiwyg,num_dependents_deps.dev:0 @@ -65224,6 +66712,7 @@ github.com/FidelLimited/serverless-plugin-select,num_dependents_deps.dev:0 github.com/FidelLimited/serverless-plugin-warmup,num_dependents_deps.dev:0 github.com/FidelVe/recoco,num_dependents_deps.dev:0 github.com/FidelisClayton/react-redux-sweetalert2,num_dependents_deps.dev:0 +github.com/FidelusAleksander/gh-action-regex, github.com/Fidgrove/vue-scichart, github.com/Fidzup/Consent-String-SDK-Ruby,num_dependents_deps.dev:0 github.com/Fidzup/fidzup-gdpr-cmp-android,num_dependents_deps.dev:0 @@ -65242,12 +66731,15 @@ github.com/FieldMarshalGaig/Covid-dashboard, github.com/FieldMarshallVague/lorem-post-generator,num_dependents_deps.dev:0 github.com/FieldTech/conventional-commit-types-zh-cn, github.com/FieldTech/simple-conventional-changelog, +github.com/FieldTech/x-developer-analysis-action, github.com/FieldVal/fieldval-all-js,num_dependents_deps.dev:0 github.com/FieldVal/fieldval-basicval-js,num_dependents_deps.dev:0 github.com/FieldVal/fieldval-dateval-js,num_dependents_deps.dev:0 github.com/FieldVal/fieldval-js,num_dependents_deps.dev:8 github.com/FieldVal/fieldval-rules-js,num_dependents_deps.dev:0 github.com/FieldVal/fieldval-ui,num_dependents_deps.dev:0 +github.com/Fieldguide/action-hasura-change-summary, +github.com/Fieldguide/action-slack-deploy-pipeline, github.com/Fieldify/antd, github.com/Fieldscope/flux-hooks,num_dependents_deps.dev:0 github.com/FieryCod/airconsole-typescript,num_dependents_deps.dev:0 @@ -65262,6 +66754,8 @@ github.com/Figicons/cli,num_dependents_deps.dev:0 github.com/Figlets/Figlets,num_dependents_deps.dev:0 github.com/Figlets/helpers, github.com/Figma-Linux/figma-linux,criticality_score:0.427270 +github.com/Figma-Linux/figma-linux-actions, +github.com/FigmentBoy/ccache-action, github.com/FigureHook/figure_parser, github.com/FiguredLimited/vue-mc,"criticality_score:0.362860,num_dependents_deps.dev:4" github.com/Fiiii/fps-helper,num_dependents_deps.dev:0 @@ -65279,6 +66773,7 @@ github.com/Fil8/RFInder, github.com/Fil8/SHARPener, github.com/Fil923/node-version-checker,num_dependents_deps.dev:0 github.com/FilWisher/object-filler,num_dependents_deps.dev:0 +github.com/Filaind/portainer-stack-deploy, github.com/FilamentAI/node-red-contrib-email-actions,num_dependents_deps.dev:0 github.com/FilamentAI/node-red-contrib-filament-ebm,num_dependents_deps.dev:0 github.com/File-New-Project/EarTrumpet,criticality_score:0.416520 @@ -65388,6 +66883,7 @@ github.com/FinNLP/strdistance,num_dependents_deps.dev:0 github.com/FinTecSystems/xs2a-nodejs,num_dependents_deps.dev:0 github.com/FinX-IO/sdk, github.com/FinaeoInc/gulp-cloudfront,num_dependents_deps.dev:0 +github.com/FinalCAD/auto-pull-translation, github.com/FinalCAD/threadify_procs,num_dependents_deps.dev:0 github.com/FinalDes/normalize-uri,num_dependents_deps.dev:0 github.com/FinalDes/short-number2,num_dependents_deps.dev:0 @@ -65646,6 +67142,12 @@ github.com/FionaQwQ/hello-world, github.com/FionnCasey/Schema-Form-Generator,num_dependents_deps.dev:0 github.com/FionnCasey/react-hook-form-generator,num_dependents_deps.dev:0 github.com/FionnT/Electron-light-db,num_dependents_deps.dev:0 +github.com/FiorelaCiroku/XDTesting-CreateDirectory, +github.com/FiorelaCiroku/XDTesting-DiscoverOntology, +github.com/FiorelaCiroku/XDTesting-Print-Directory-Structure, +github.com/FiorelaCiroku/XDTesting-Run-Test, +github.com/FiorelaCiroku/XDTesting-SetupEnvironment, +github.com/FiorelaCiroku/XDTesting-ValidateJSON, github.com/FiorellaEffio/lim20181-Track-FE-markdown-list,num_dependents_deps.dev:0 github.com/Fiovex/typed-css-modules,num_dependents_deps.dev:0 github.com/Fipper-io/fipper-js-sdk,num_dependents_deps.dev:0 @@ -65833,8 +67335,16 @@ github.com/FirefoxUX/photon-icons,num_dependents_deps.dev:0 github.com/FirefoxUX/photon-themes, github.com/FirefoxUX/proton-design-system, github.com/Firefund/firefund-cli,num_dependents_deps.dev:0 +github.com/Firehed/deploy-to-kubernetes-action, +github.com/Firehed/docker-check-action, github.com/Firehed/homebridge-plugin-generic-switch,num_dependents_deps.dev:0 +github.com/Firehed/lint-php-action, +github.com/Firehed/multistage-docker-build-action, github.com/FirelyTeam/firely-net-sdk,criticality_score:0.553130 +github.com/FirelyTeam/firely-terminal-pipeline, +github.com/Firenza/get-organization-repositories, +github.com/Firenza/secrets-to-env, +github.com/Firenza/verify-secrets, github.com/Firenze11/manifold.ml,num_dependents_deps.dev:0 github.com/Firenze11/mlvis,num_dependents_deps.dev:0 github.com/Firenzia/sakura-ui,num_dependents_deps.dev:0 @@ -66115,6 +67625,7 @@ github.com/Fiz1994/pageViewCount, github.com/Fizcko/rsql-mongodb,num_dependents_deps.dev:20 github.com/Fizo55/launcher-release,num_dependents_deps.dev:0 github.com/Fizuku/hexo-db, +github.com/Fizz-Q/code-risk-analyzer, github.com/FizzBuzz791/angular-progress-button,num_dependents_deps.dev:0 github.com/FizzBuzz791/aws-fsbp,num_dependents_deps.dev:0 github.com/FizzBuzz791/csslint-teamcity,num_dependents_deps.dev:0 @@ -66173,6 +67684,7 @@ github.com/FlaPS/lazy-compose,num_dependents_deps.dev:0 github.com/FlaPer87/gerrit-cli, github.com/FlaPer87/vagrant-openstack,num_dependents_deps.dev:0 github.com/FlaUI/FlaUI,criticality_score:0.389950 +github.com/Flaavius/ssh-commands, github.com/FlabberIO/PyRavin, github.com/FlabbyBum/fortnite-publicapi,num_dependents_deps.dev:0 github.com/FlacheQL/FlacheQL,num_dependents_deps.dev:0 @@ -66260,6 +67772,7 @@ github.com/FlaneurApp/flaneur-geocoder, github.com/FlaneurApp/flaneur-mailjet-client,num_dependents_deps.dev:0 github.com/FlaneurApp/flaneur-social-location,num_dependents_deps.dev:0 github.com/Flank/flank,"criticality_score:0.577310,num_dependents_deps.dev:0" +github.com/Flank/flank_slack_notifier, github.com/Flanker72/vc-platform, github.com/FlantasticDan/mac-remote-command, github.com/FlantasticDan/oled-status, @@ -66338,8 +67851,11 @@ github.com/Flavien-Pensato/props.proxy.firebase,num_dependents_deps.dev:0 github.com/Flavien-Pensato/quokka-plugin-global,num_dependents_deps.dev:0 github.com/FlavienVernier/pyeventbus, github.com/FlavioANS/libpythonpro, +github.com/FlavioAandres/aws-secrets-manager-builder, +github.com/FlavioAandres/call-endpoints-action, github.com/FlavioAandres/daily-cli, github.com/FlavioAandres/jiracli, +github.com/FlavioAandres/secrets-manager-env-checker, github.com/FlavioF/quartz-scheduler-hazelcast-jobstore,num_dependents_deps.dev:0 github.com/FlavioFMBorges/libpythonpro, github.com/FlavioLionelRita/config-extends,num_dependents_deps.dev:0 @@ -66364,6 +67880,8 @@ github.com/Flcwl/unext,num_dependents_deps.dev:0 github.com/Flcwl/validater, github.com/Fled8617/react-form-builder-antd,num_dependents_deps.dev:0 github.com/FleefyPaws/simplemathsmodule,num_dependents_deps.dev:0 +github.com/FleekHQ/IC-Deploy-Action, +github.com/FleekHQ/action-deploy, github.com/FleekHQ/browser-rpc,num_dependents_deps.dev:0 github.com/FleekHQ/fleek-storage-js,num_dependents_deps.dev:0 github.com/FleekHQ/plug-inpage-provider, @@ -66380,6 +67898,7 @@ github.com/Fles/beq,num_dependents_deps.dev:0 github.com/Fles/yaml-docgen,num_dependents_deps.dev:0 github.com/Fleshgrinder/kotlin-case-format,num_dependents_deps.dev:0 github.com/Fleshgrinder/rust-exit-code,num_dependents_deps.dev:0 +github.com/Fleshgrinder/setup-java, github.com/Flesspro/email-client, github.com/Flesspro/vault-client, github.com/Flet/clockmoji,num_dependents_deps.dev:0 @@ -66475,6 +67994,7 @@ github.com/FlippieCoetser/Events,num_dependents_deps.dev:0 github.com/FlippieCoetser/List,num_dependents_deps.dev:0 github.com/FlippieCoetser/PN532,num_dependents_deps.dev:0 github.com/FlippieCoetser/SSD1306,num_dependents_deps.dev:0 +github.com/FlippievanDyk/ghactions-mplabx, github.com/FlippingBinary/wqxlib, github.com/FlippingBinary/wqxweblib-python, github.com/Flippo24/gdax-ext,num_dependents_deps.dev:0 @@ -66608,6 +68128,9 @@ github.com/Florents-Tselai/hello-googoo, github.com/Florents-Tselai/pandas-sets, github.com/Floresj4/shadowbox,num_dependents_deps.dev:0 github.com/FloretPig/float-number-calc,num_dependents_deps.dev:0 +github.com/FloriNNic/ChatGPT-code-review, +github.com/FloriNNic/ValidateScript, +github.com/FloriNNic/oxygen-scripting-comparison-action, github.com/Florian-Thauvin/xml-formatter, github.com/Florian77/ebay-trading-api-promise,num_dependents_deps.dev:0 github.com/Florian77/node-dev-console,num_dependents_deps.dev:2 @@ -66719,6 +68242,7 @@ github.com/FlowArg/OpenLauncherLib,num_dependents_deps.dev:0 github.com/FlowCI/docs,criticality_score:0.310270 github.com/FlowCI/flow-core-x,criticality_score:0.324660 github.com/FlowCrypt/flowcrypt-browser,criticality_score:0.511770 +github.com/FlowSquad/docker-cloud-build, github.com/Flowdash-ai/react-native-flowdash,num_dependents_deps.dev:0 github.com/Flowelcat/advanced-sqlalchemy-manager, github.com/Flowelcat/pybotman, @@ -66751,6 +68275,7 @@ github.com/Flowrome/fl-cli,num_dependents_deps.dev:0 github.com/Flowspace-Team/eslint-plugin-es5, github.com/Flowspace-Team/mws-feeds,num_dependents_deps.dev:0 github.com/Flowspace-Team/mws-merchant-fulfillment,num_dependents_deps.dev:0 +github.com/Flowster/git-ssh-key-action, github.com/Flowsystem/babel-plugin-pomes-extract, github.com/Flowsystem/pomes,num_dependents_deps.dev:0 github.com/FlowzPlatform/subscription,num_dependents_deps.dev:0 @@ -66799,10 +68324,13 @@ github.com/Fluorescence-Tools/avtraj, github.com/Fluorohydride/ygopro,criticality_score:0.442880 github.com/Flupster/NodeESI,num_dependents_deps.dev:0 github.com/Flupster/passport-eveonline-v2,num_dependents_deps.dev:0 +github.com/Flurb/verify-file-checksum-action, github.com/FlushBG/bigcommerce-vsf,num_dependents_deps.dev:0 github.com/FlushBG/vendure-social-auth,num_dependents_deps.dev:0 github.com/Flushot/gmailbackup, github.com/FlussoBV/NgDexie,num_dependents_deps.dev:0 +github.com/Flutter-libraries/mayo_flutter_workflows, +github.com/Flutterando/flutterando-metrics-action, github.com/Flutterando/modular,criticality_score:0.474030 github.com/Flutterando/slidy,criticality_score:0.402670 github.com/Flutterbee/grunt-build-release,num_dependents_deps.dev:0 @@ -66861,8 +68389,12 @@ github.com/FlyOrDie/react-justified-gallery,num_dependents_deps.dev:0 github.com/FlyOrDie/react-photo-grid,num_dependents_deps.dev:0 github.com/FlySkyBear/vue-stomp,num_dependents_deps.dev:2 github.com/FlySkyPie/goldberg-polyhedron,num_dependents_deps.dev:0 +github.com/Flydiverny/github-typescript, +github.com/Flydiverny/helm-package-action, github.com/Flydiverny/react-filtered,num_dependents_deps.dev:0 github.com/Flydiverny/react-refine,num_dependents_deps.dev:0 +github.com/Flydiverny/setup-git-crypt, +github.com/Flydiverny/setup-tfsec, github.com/Flyer53/jsPanel,num_dependents_deps.dev:0 github.com/Flyer53/jsPanel3,num_dependents_deps.dev:0 github.com/Flyer53/jsPanel4,num_dependents_deps.dev:2 @@ -66921,6 +68453,7 @@ github.com/Flywor/DragLoad,num_dependents_deps.dev:0 github.com/Flywor/vue-upload,num_dependents_deps.dev:0 github.com/Flyyta/flyyta-cli, github.com/Flyzy2005/daoutil,num_dependents_deps.dev:0 +github.com/Fmanuel809/github-project-automation-v2, github.com/FmeuMan/actions-on-google-nodejs-testbench,num_dependents_deps.dev:0 github.com/Fmstrat/winapps,criticality_score:0.310660 github.com/Fn-studyo/kpamoDB,num_dependents_deps.dev:0 @@ -66950,6 +68483,7 @@ github.com/FoXZilla/wordpress-helper,num_dependents_deps.dev:0 github.com/Foair/moocal-alpha, github.com/FoalTS/foal,"criticality_score:0.525060,num_dependents_deps.dev:4" github.com/FoalTS/generator-foal,num_dependents_deps.dev:0 +github.com/FoamFactory/ghp-release-cleaner, github.com/FoamScience/timeslot-selector,num_dependents_deps.dev:0 github.com/FoamyGuy/test_actions_deploy, github.com/Foap/GraphQL-Query-Builder-JS,num_dependents_deps.dev:0 @@ -67092,6 +68626,7 @@ github.com/FoodStandardsAgency/register-a-food-business-service,num_dependents_d github.com/Foodee/devour, github.com/Foodee/ember-foxy-forms,num_dependents_deps.dev:0 github.com/Foodee/flipper-rb-js,num_dependents_deps.dev:0 +github.com/Foodee/pr-includes-file-change, github.com/Foodji/congstar-router,num_dependents_deps.dev:0 github.com/Foodji/huawei-broadband,num_dependents_deps.dev:0 github.com/Fooeybar/FLog.io,num_dependents_deps.dev:0 @@ -67099,6 +68634,7 @@ github.com/Fooeybar/OandaV20,num_dependents_deps.dev:0 github.com/Fooeybar/fedit, github.com/Fooeybar/fstdin,num_dependents_deps.dev:0 github.com/Fooidge/PleaseJS,num_dependents_deps.dev:2 +github.com/Fooji/create-aws-profile-action, github.com/FoolCode/SphinxQL-Query-Builder,criticality_score:0.368110 github.com/FoolJs/black-bible, github.com/Foonz/create-react-app,num_dependents_deps.dev:0 @@ -67135,6 +68671,7 @@ github.com/For-Humans-Lab/log-scope-app,num_dependents_deps.dev:0 github.com/For-a-few-DPPs-more/spatstat-interface, github.com/For-a-few-DPPs-more/structure-factor, github.com/For-ever21/dzh-cli,num_dependents_deps.dev:0 +github.com/ForAllSecure/mapi-action, github.com/ForEvolve/bootstrap-dark,num_dependents_deps.dev:0 github.com/ForEvolve/prettier-config,num_dependents_deps.dev:0 github.com/ForNeVeR/wpf-math,criticality_score:0.320040 @@ -67404,12 +68941,17 @@ github.com/ForensicArtifacts/artifacts,criticality_score:0.413440 github.com/Forensor/elo, github.com/ForeoLelo/vue-org-tree,num_dependents_deps.dev:0 github.com/ForesightAI/fsai_data_sdk_python, +github.com/ForesightMiningSoftwareCorporation/is-newer-version, +github.com/ForesightMiningSoftwareCorporation/rust-latest-version, github.com/Forest-architecture/lin_hub, +github.com/Forest10/actions-hub, +github.com/Forest10/hexo-deploy-upyun-action, github.com/Forest337/react-native-all-mix,num_dependents_deps.dev:0 github.com/ForestAdmin/automatic-release-note,num_dependents_deps.dev:0 github.com/ForestAdmin/forest-express,num_dependents_deps.dev:12 github.com/ForestAdmin/forest-express-mongoose,num_dependents_deps.dev:0 github.com/ForestAdmin/forest-express-sequelize,num_dependents_deps.dev:0 +github.com/ForestAdmin/forestadmin-schema-dirtyness-checker, github.com/ForestAdmin/lumber,"criticality_score:0.502890,num_dependents_deps.dev:0" github.com/ForestAdmin/toolbelt,num_dependents_deps.dev:0 github.com/ForestHouse2316/gksdudaovld, @@ -67946,9 +69488,12 @@ github.com/ForteScarlet/simple-robot-core,num_dependents_deps.dev:11 github.com/ForteScarlet/simple-robot-core-springboot-starter,num_dependents_deps.dev:0 github.com/FortechRomania/eslint-config-fortech,num_dependents_deps.dev:0 github.com/FortechRomania/eslint-config-fortech-react,num_dependents_deps.dev:0 +github.com/Fortellis/api-spec-lint-action, +github.com/Fortellis/api-spec-push-action, github.com/Fortellis/fortellis-cli,num_dependents_deps.dev:0 github.com/ForterXu/goto,num_dependents_deps.dev:0 github.com/Fortiapp/hello-npm,num_dependents_deps.dev:0 +github.com/Fortinbra/RaspberryPiPicoBuild, github.com/Fortiz2305/pr-alarm-bot, github.com/Fortnite-API/nodejs-wrapper,num_dependents_deps.dev:0 github.com/Fortnite-API/py-wrapper, @@ -68116,6 +69661,7 @@ github.com/FoxxMD/react-interpunct,num_dependents_deps.dev:0 github.com/FoxxMD/winston-duplex,num_dependents_deps.dev:0 github.com/Foxy/foxy-elements,num_dependents_deps.dev:0 github.com/Foxy/foxy-eslint-config,num_dependents_deps.dev:0 +github.com/Foxy/foxy-github-action-s3cdn, github.com/FoxyCart/apple-pay-decrypt, github.com/Foysal87/sbnltk, github.com/FpRezDev/bootstrap-custom,num_dependents_deps.dev:0 @@ -68130,6 +69676,7 @@ github.com/Fr0st1e/project-lvl1-s232,num_dependents_deps.dev:0 github.com/Fr13dr1ch99/npm-orm,num_dependents_deps.dev:0 github.com/Fr3dric0/restful-node,num_dependents_deps.dev:0 github.com/Fr4ncisTaylor/HubSale-api, +github.com/Fr4nk1inCs/wakatime-charts, github.com/FrDH/dotdotdot-js,criticality_score:0.354730 github.com/FrDH/jQuery.dotdotdot,num_dependents_deps.dev:0 github.com/FrDH/jQuery.mhead,num_dependents_deps.dev:0 @@ -68139,6 +69686,8 @@ github.com/FrDH/mmenu-js,"criticality_score:0.494870,num_dependents_deps.dev:0" github.com/FrDH/mmenu-light,num_dependents_deps.dev:0 github.com/FrDH/sticky-event-listener,num_dependents_deps.dev:0 github.com/FrEaKAlL/RemueveSecretos, +github.com/FraBle/clean-after-action, +github.com/FraBle/codeartifact-auth, github.com/FraBle/python-duckling, github.com/FraBle/python-sutime, github.com/FraGag/byte_string,num_dependents_deps.dev:1 @@ -68163,15 +69712,18 @@ github.com/Fracture17/contracts, github.com/FradSer/create-react-figma-plugin,num_dependents_deps.dev:0 github.com/FradSer/watch-figma, github.com/FragLand/minestat,num_dependents_deps.dev:0 +github.com/FragileTech/bump-version, github.com/FragileTech/fragile, github.com/FragileTech/judo, github.com/FragileTech/ml-ops-quickstart, github.com/FragileTech/plangym, +github.com/FragnaroK/notify-action, github.com/FragsterAt/barcode_hid_reader,num_dependents_deps.dev:0 github.com/Fraina/-Ommr,num_dependents_deps.dev:0 github.com/Fraina/Material-Design-ColorHelper,num_dependents_deps.dev:0 github.com/Fraina/react-imagebox,num_dependents_deps.dev:0 github.com/Fraina/react-popupbox,num_dependents_deps.dev:0 +github.com/Frama-C/github-action-eva-sarif, github.com/Frame-One-Software/frame-one-table, github.com/FrameMuse/react-nuts,num_dependents_deps.dev:0 github.com/Framespaces/yavl,num_dependents_deps.dev:0 @@ -68342,6 +69894,8 @@ github.com/Frank-Kawp/project-lvl1-s340,num_dependents_deps.dev:0 github.com/Frank-Mayer/Rocket.ts,num_dependents_deps.dev:0 github.com/Frank-Mayer/magic,num_dependents_deps.dev:0 github.com/Frank-Mayer/photon,num_dependents_deps.dev:0 +github.com/Frank-Mayer/selene-setup, +github.com/Frank-Mayer/yab-setup, github.com/Frank-Mayer/yule,num_dependents_deps.dev:0 github.com/FrankAndFeng/vue-video-player,num_dependents_deps.dev:0 github.com/FrankApiyo/tiny,num_dependents_deps.dev:0 @@ -68436,6 +69990,7 @@ github.com/Frantab/pozdrav-parka,num_dependents_deps.dev:0 github.com/FrantisekGazo/capy, github.com/Frantss/npms-lib,num_dependents_deps.dev:0 github.com/Frantss/react-hookful,num_dependents_deps.dev:0 +github.com/FranzDiebold/github-env-vars-action, github.com/FranzDiebold/ng-google-sheets-db-library,num_dependents_deps.dev:0 github.com/FranzSkuffka/headless-work-timer,num_dependents_deps.dev:0 github.com/FranzSkuffka/snobject,num_dependents_deps.dev:0 @@ -68472,6 +70027,7 @@ github.com/FraserHamilton/dayjs-random, github.com/FraserHamilton/dayjs-recur, github.com/FraserHamilton/git-timelapse,num_dependents_deps.dev:0 github.com/FraserKillip/angular-fast-drag,num_dependents_deps.dev:0 +github.com/FraserTooth/go-to-sleep, github.com/FraserTooth/preference_optimization,num_dependents_deps.dev:0 github.com/Fraserbc/SpeakerCraftPy, github.com/FraternityInfoSec/Blackpearl-framework, @@ -68491,6 +70047,7 @@ github.com/Frax095/FakeToDo,num_dependents_deps.dev:0 github.com/Frazix12/GTD, github.com/FrazzIe/vue-three-cef-fix, github.com/FreAirLy/react-native-BGNativeModuleExample,num_dependents_deps.dev:0 +github.com/FreEZer00/teams-webhook-action, github.com/FreadChen/vue-images-preview,num_dependents_deps.dev:0 github.com/Freak613/create-notifier,num_dependents_deps.dev:0 github.com/Freak613/create-ref,num_dependents_deps.dev:0 @@ -68532,6 +70089,9 @@ github.com/Fred-Ch/python-aio-geojson-nsw-transport-incidents-master, github.com/Fred-el-Jolo/simple-broker,num_dependents_deps.dev:0 github.com/Fred-grais/transifex-interface-ruby,num_dependents_deps.dev:0 github.com/Fred31-pavel-sokov/SupercellSWF, +github.com/Fred78290/aws-codeartifact-delete-maven-package, +github.com/Fred78290/aws-codeartifact-delete-package-versions, +github.com/Fred78290/aws-codeartifact-maven-login, github.com/FredAtLandMetrics/sadie,num_dependents_deps.dev:0 github.com/FredBlo/node-red-contrib-myhome-bticino-v2, github.com/FredBrock/auto-cli,num_dependents_deps.dev:0 @@ -68550,6 +70110,7 @@ github.com/FredHutch/proxmox-tools, github.com/FredHutch/sci-package, github.com/FredHutch/slurm-toys, github.com/FredHutch/swift-commander, +github.com/FredIannon/ShouldLastCommitTriggerWorkflow, github.com/FredJiang/jsonschemachecker,num_dependents_deps.dev:0 github.com/FredJul/Flym,criticality_score:0.391720 github.com/FredKSchott/fflip,num_dependents_deps.dev:0 @@ -68601,6 +70162,7 @@ github.com/FreddyFY/styled-container-query,num_dependents_deps.dev:0 github.com/FreddyJD/SocialMediaJS,num_dependents_deps.dev:0 github.com/FreddyJD/usetube-improved,num_dependents_deps.dev:0 github.com/FreddyWordingham/arctk,num_dependents_deps.dev:0 +github.com/FredeHG/github-actions-gitmoji, github.com/Fredehagelund92/dawa-sdk, github.com/Frederic98/APA102_SPI, github.com/Frederic98/SCP-Syncer, @@ -68659,6 +70221,7 @@ github.com/Frederick-S/sp-view-fields,num_dependents_deps.dev:0 github.com/Frederick-S/sp-web-walker,num_dependents_deps.dev:0 github.com/Frederick-S/spEach,num_dependents_deps.dev:0 github.com/Frederick-S/wtouch, +github.com/Frederick888/gh-ph, github.com/FrederickGeek8/LYQL,num_dependents_deps.dev:0 github.com/FrederickGeek8/SpeedTest.js,num_dependents_deps.dev:0 github.com/FrederickGeek8/ovaltine.js,num_dependents_deps.dev:0 @@ -68676,6 +70239,7 @@ github.com/FrederikS/richie,num_dependents_deps.dev:0 github.com/Frederikam/Lavalink,criticality_score:0.509400 github.com/Frederikbh/tickspotv2-api,num_dependents_deps.dev:0 github.com/FrederiqueBaillais/nodefreba,num_dependents_deps.dev:0 +github.com/Frederisk/kaggle-action, github.com/FrediBach/Blowson,num_dependents_deps.dev:0 github.com/FrediBach/FakeQL-CLI,num_dependents_deps.dev:0 github.com/FrediBach/fakeql-loader,num_dependents_deps.dev:0 @@ -68793,6 +70357,8 @@ github.com/FreeOpcUa/opcua-modeler, github.com/FreeOpcUa/opcua-widgets, github.com/FreeOpcUa/python-opcua,criticality_score:0.528820 github.com/FreePPX/vue-ueditor,num_dependents_deps.dev:0 +github.com/FreePhoenix888/is-npm-package-version-changed-github-action, +github.com/FreePhoenix888/update-conan-dependants-in-organization-action, github.com/FreeRADIUS/freeradius-server,criticality_score:0.658120 github.com/FreeRDP/FreeRDP,criticality_score:0.755370 github.com/FreeRDP/Remmina,criticality_score:0.615560 @@ -68815,6 +70381,7 @@ github.com/Freecey/nager-CLI,num_dependents_deps.dev:0 github.com/Freecey/npxcard,num_dependents_deps.dev:0 github.com/Freecey/react-pomodoro,num_dependents_deps.dev:0 github.com/Freed-Wu/computer-graphics-homework, +github.com/Freed-Wu/translate-shell, github.com/FreedomBen/rtl8188ce-linux-driver,criticality_score:0.302820 github.com/FreedomVPN/liberty_reserve_payments,num_dependents_deps.dev:0 github.com/Freedombase/react-intl,num_dependents_deps.dev:0 @@ -68836,6 +70403,7 @@ github.com/FreemenL/emptyd-server,num_dependents_deps.dev:0 github.com/FreemenL/emptyd-tools,num_dependents_deps.dev:0 github.com/FreemenL/find-job,num_dependents_deps.dev:0 github.com/FreemenL/webpack-build-log-plugin,num_dependents_deps.dev:0 +github.com/FreeplayApp/codepush-action, github.com/Freeseer/freeseer, github.com/Freest10/angular4-json-schema-view,num_dependents_deps.dev:0 github.com/Freest10/isuse-ui,num_dependents_deps.dev:0 @@ -68852,6 +70420,7 @@ github.com/Freezon/dump_laravel_js,num_dependents_deps.dev:0 github.com/Frege/frege,criticality_score:0.330090 github.com/Frege/frege-gradle-plugin,num_dependents_deps.dev:0 github.com/Frege/frege-native-gen,num_dependents_deps.dev:0 +github.com/Freihart512/move-linked-pr-issue, github.com/FreiikDev/discord-addons,num_dependents_deps.dev:0 github.com/FreiraumIO/msgreader,num_dependents_deps.dev:0 github.com/FreiraumIO/react-native-share-extension,num_dependents_deps.dev:0 @@ -68904,6 +70473,8 @@ github.com/FrequentlyMissedDeadlines/Chessfessor,num_dependents_deps.dev:0 github.com/FrequentlyMissedDeadlines/angular-suunto-parser,num_dependents_deps.dev:0 github.com/FrequentlyMissedDeadlines/angular-x2js-wrapper,num_dependents_deps.dev:0 github.com/FrequentlyMissedDeadlines/py-chessfessor, +github.com/Fresa/release-notes-generator, +github.com/Fresa/trunk-based-release-versioning, github.com/FrescoDev/fresco-development-tool-cli,num_dependents_deps.dev:0 github.com/FrescoDev/fresco-http-service-utilities,num_dependents_deps.dev:0 github.com/FrescoDev/niobi-localhost,num_dependents_deps.dev:0 @@ -68924,6 +70495,7 @@ github.com/FreshXOpenSource/wallaby-plugin-couchdb, github.com/FreshXOpenSource/wallaby-plugin-elasticsearch, github.com/Fresheyeball/Clog,num_dependents_deps.dev:0 github.com/Fresheyeball/isMobile-node,num_dependents_deps.dev:0 +github.com/Freshly/Octocop, github.com/Freshly/spicerack,num_dependents_deps.dev:743 github.com/Freshly/stenotype,num_dependents_deps.dev:0 github.com/Freshly/stockpot,num_dependents_deps.dev:0 @@ -68972,6 +70544,7 @@ github.com/FridaS/vue_maxlength,num_dependents_deps.dev:0 github.com/FridayDai/ReactComponent,num_dependents_deps.dev:0 github.com/FridayDai/kscreenshot,num_dependents_deps.dev:0 github.com/Fridolph/vue-component,num_dependents_deps.dev:0 +github.com/FridrichDerGosse/pypi-github-sync, github.com/Fridus/checkdns,num_dependents_deps.dev:0 github.com/Fried-Chicken/ghost-static-site-generator,num_dependents_deps.dev:0 github.com/Fried-Chicken/momo,num_dependents_deps.dev:0 @@ -69000,6 +70573,7 @@ github.com/FriendlyJesse/utils,num_dependents_deps.dev:0 github.com/FriendlyScore/FriendlyScore-Python-SDK, github.com/FriendlyUser/cad_tickers, github.com/FriendlyUser/dli-scrapping-lib, +github.com/FriendlyUser/ip_address_of_runner, github.com/FriendlyUser/node-tft,num_dependents_deps.dev:0 github.com/FriendlyUser/tsc-openweather,num_dependents_deps.dev:0 github.com/FriendlyUser/typedoc-color-theme,num_dependents_deps.dev:0 @@ -69029,10 +70603,12 @@ github.com/FriendsOfPHP/PHP-CS-Fixer,criticality_score:0.751960 github.com/FriendsOfPHP/consul-php-sdk,criticality_score:0.340430 github.com/FriendsOfPHP/pickle,criticality_score:0.457550 github.com/FriendsOfPHP/security-advisories,criticality_score:0.555460 +github.com/FriendsOfREDAXO/installer-action, github.com/FriendsOfReact/axios-decorators,num_dependents_deps.dev:0 github.com/FriendsOfReact/react-leaflet-glify,num_dependents_deps.dev:0 github.com/FriendsOfReact/react-native-gradients,num_dependents_deps.dev:0 github.com/FriendsOfReactJS/react-css-themr, +github.com/FriendsOfShopware/shopware-cli-action, github.com/FriendsOfShopware/shopware-plugin-compiler,num_dependents_deps.dev:0 github.com/FriendsOfSymfony/FOSCKEditorBundle,criticality_score:0.474170 github.com/FriendsOfSymfony/FOSCommentBundle,criticality_score:0.420320 @@ -69057,6 +70633,7 @@ github.com/FriendsOfTrowel/Modals,num_dependents_deps.dev:0 github.com/FriendsOfTrowel/Progress,num_dependents_deps.dev:0 github.com/FriendsOfTrowel/Ribbons,num_dependents_deps.dev:0 github.com/FriendsOfTrowel/buttons,num_dependents_deps.dev:0 +github.com/FriesI23/honkit-build-page, github.com/FrigoEU/cordova-checkintent,num_dependents_deps.dev:0 github.com/FrigoEU/typescript-safe-router,num_dependents_deps.dev:0 github.com/Frijol/PIR,num_dependents_deps.dev:0 @@ -69109,6 +70686,8 @@ github.com/FroMage/testlol,num_dependents_deps.dev:0 github.com/FroastJ/roblox-js,num_dependents_deps.dev:0 github.com/Frobus/Frobus-core,num_dependents_deps.dev:0 github.com/Frobus/Frobus-utils,num_dependents_deps.dev:0 +github.com/FrodeHus/azwebapp-container-action, +github.com/FrodeHus/ludvig-action, github.com/FrodeSolheim/fs-uae,criticality_score:0.442640 github.com/FrodeSolheim/python-lhafile, github.com/Frodi1998/commander-core,num_dependents_deps.dev:0 @@ -69156,6 +70735,8 @@ github.com/Front/patchwork, github.com/FrontEnd2018/elementary-ui,num_dependents_deps.dev:0 github.com/FrontEndART/SonarQube-plug-in,num_dependents_deps.dev:0 github.com/FrontEndCoffee/tablr,num_dependents_deps.dev:0 +github.com/FrontEndDev-org/npm-mirror-sync-action, +github.com/FrontEndDev-org/publish-node-package-action, github.com/FrontEndStudio/metalsmith-datajson,num_dependents_deps.dev:0 github.com/FrontEndTV/sphero-node-music,num_dependents_deps.dev:0 github.com/FrontHuskies/Lazys,num_dependents_deps.dev:0 @@ -69224,6 +70805,7 @@ github.com/Frontyangcheng/react-questionnair,num_dependents_deps.dev:0 github.com/Frooob/rangierapparat, github.com/Froren/realtorca,num_dependents_deps.dev:0 github.com/Frost-Dev/Frost,num_dependents_deps.dev:0 +github.com/FrostBanditTeam/extract-unity-package-action, github.com/FrostDigital/fruster-log-js,num_dependents_deps.dev:12 github.com/FrostDigital/mock-nats-client, github.com/FrostDigital/nats-server-control,num_dependents_deps.dev:12 @@ -69244,6 +70826,7 @@ github.com/Frosty92/react-native-audio-android,num_dependents_deps.dev:0 github.com/Frowse/frowse-style,num_dependents_deps.dev:0 github.com/FroxTrost/express-request-fastest-validator,num_dependents_deps.dev:0 github.com/Froxlor/Froxlor,criticality_score:0.601450 +github.com/Froxz/helm, github.com/FroyoNom/Lotide,num_dependents_deps.dev:0 github.com/Frozen-Flask/Frozen-Flask,criticality_score:0.443490 github.com/Frozen-Tofu/gsm-decoder-js,num_dependents_deps.dev:0 @@ -69338,6 +70921,7 @@ github.com/FuGangqiang/rrpc, github.com/FuJuntao/useForm,num_dependents_deps.dev:0 github.com/FuKe/angular2-number-picker,num_dependents_deps.dev:0 github.com/FuLagann/paml-py, +github.com/FuLagann/tsc-build-push, github.com/FuYaoDe/react-native-egg,num_dependents_deps.dev:0 github.com/FuZhenn/chinese_coordinate_conversion,num_dependents_deps.dev:0 github.com/FuZhenn/maptalks-jsdoc,num_dependents_deps.dev:0 @@ -69376,6 +70960,7 @@ github.com/Fuechschen/rolling-rate-limiter,num_dependents_deps.dev:0 github.com/Fuechschen/twitch-realtime,num_dependents_deps.dev:0 github.com/FuelFrontend/generator-smacss,num_dependents_deps.dev:0 github.com/FuelInteractive/fuel-ui, +github.com/FuelLabs/action-fuel-toolchain, github.com/FuelRats/argument-validator-utils,num_dependents_deps.dev:0 github.com/FuelRats/babel-plugin-classnames,num_dependents_deps.dev:0 github.com/FuelRats/boomstick, @@ -69405,6 +70990,7 @@ github.com/FujiHaruka/dlint,num_dependents_deps.dev:10 github.com/FujiHaruka/eslint-plugin-lcom,num_dependents_deps.dev:0 github.com/FujiHaruka/fetch-github-content,num_dependents_deps.dev:0 github.com/FujiHaruka/inalz,num_dependents_deps.dev:0 +github.com/FujiHaruka/issue-refs-parser-action, github.com/FujiHaruka/jesep,num_dependents_deps.dev:0 github.com/FujiHaruka/kv-file-cache,num_dependents_deps.dev:0 github.com/FujiHaruka/mock-api-server,num_dependents_deps.dev:0 @@ -69452,6 +71038,7 @@ github.com/FullDungeon/abstract_builder, github.com/FullDungeon/python_pip, github.com/FullFacing/ff-build,num_dependents_deps.dev:0 github.com/FullFact/python-batchmailchimp, +github.com/FullFatBart/diff-poetry-lock, github.com/FullHuman/grunt-purgecss,num_dependents_deps.dev:0 github.com/FullHuman/gulp-purgecss,num_dependents_deps.dev:0 github.com/FullHuman/purgecss,"criticality_score:0.578320,num_dependents_deps.dev:7746" @@ -69509,6 +71096,7 @@ github.com/FullScreenShenanigans/flagswappr,num_dependents_deps.dev:0 github.com/FullStackBulletin/best-scheduled-tweets, github.com/FullStackBulletin/fullstack-book-of-the-week,num_dependents_deps.dev:0 github.com/FullStackBulletin/tech-quotes-of-the-week,num_dependents_deps.dev:0 +github.com/FullStackIndie/sitemap-generator, github.com/FullStackPlayer/TS-NiceError, github.com/FullStackPlayer/ts-xml-parser, github.com/FullStackUbuntu/KatanaJS,num_dependents_deps.dev:0 @@ -69824,7 +71412,9 @@ github.com/FuzzFoundation/WKTPlot, github.com/FuzzOli87/condition-codefresh,num_dependents_deps.dev:0 github.com/FuzzOli87/culebra,num_dependents_deps.dev:0 github.com/Fuzzy-Classifier-Project/fuzzy-classifier, +github.com/FuzzyGophers/action-owasp-dependecy-track, github.com/FuzzyMistborn/python-eufy-security, +github.com/FuzzyMonkeyCo/setup-monkey, github.com/FuzzyRhombus/keynum,num_dependents_deps.dev:0 github.com/FuzzyRhombus/scopeid,num_dependents_deps.dev:0 github.com/FuzzyRhombus/try.catch,num_dependents_deps.dev:0 @@ -69891,6 +71481,7 @@ github.com/Fzepeda10/ami-functions, github.com/Fzepeda10/asterisk-logs,num_dependents_deps.dev:0 github.com/Fzepeda10/asterisk-shell-functions, github.com/Fzepeda10/logfile,num_dependents_deps.dev:0 +github.com/Fzwael/ncu-action, github.com/G-ALX/coffeeswap-uikit,num_dependents_deps.dev:0 github.com/G-ChenNing/JDBC-yml-Quick,num_dependents_deps.dev:0 github.com/G-Core/gcore-dns-certbot-plugin, @@ -69909,6 +71500,7 @@ github.com/G-On-dev/homebridge-g-on-alice,num_dependents_deps.dev:0 github.com/G-Pereira/systats,num_dependents_deps.dev:0 github.com/G-Rath/audit-app, github.com/G-Rath/babel-plugin-replace-ts-export-assignment,num_dependents_deps.dev:10 +github.com/G-Rath/check-with-osv-detector, github.com/G-Rath/strongly-typed-event-emitter,num_dependents_deps.dev:0 github.com/G-Research/ahocorasick_rs, github.com/G-Research/siembol,num_dependents_deps.dev:21 @@ -70114,6 +71706,8 @@ github.com/GESkunkworks/cert-pruner, github.com/GESkunkworks/cert-uploader, github.com/GESkunkworks/goss-config-gen, github.com/GESkunkworks/scoutr, +github.com/GETProtocolLab/docker-build-action, +github.com/GETProtocolLab/get-toolkit-action, github.com/GEUS-Glaciology-and-Climate/Biblyser, github.com/GEbb4/matlab2py, github.com/GErP83/Deco,num_dependents_deps.dev:0 @@ -70169,7 +71763,9 @@ github.com/GGist/umio-rs,num_dependents_deps.dev:1 github.com/GGman25/Prank, github.com/GGracieux/lighthouse-keeper,num_dependents_deps.dev:0 github.com/GGracieux/lighthouse-orchestrator, +github.com/GGrouppFoundation/infra-sql-migration-action, github.com/GGsimidadada/my-own-components,num_dependents_deps.dev:0 +github.com/GGui/graviteeio-apim-api-definition-action, github.com/GGwangxin/wxpreview,num_dependents_deps.dev:0 github.com/GGwujun/MobEditor,num_dependents_deps.dev:0 github.com/GGwujun/downjs,num_dependents_deps.dev:0 @@ -70333,6 +71929,7 @@ github.com/GMchris/simple-overload,num_dependents_deps.dev:0 github.com/GMchris/strict-enum,num_dependents_deps.dev:0 github.com/GMchris/toolbox.scss,num_dependents_deps.dev:0 github.com/GMckeezy/psvr-framework, +github.com/GMkonan/fly-pr-review-apps, github.com/GNAGONI/react-slick,num_dependents_deps.dev:0 github.com/GNOME/dia,criticality_score:0.374630 github.com/GNOME/geary,criticality_score:0.319170 @@ -70378,6 +71975,7 @@ github.com/GNtousakis/string-upper, github.com/GO-HA-N/Lab7HH, github.com/GO2F/node-template,num_dependents_deps.dev:0 github.com/GOA-UVa/solys2, +github.com/GOD-oda/todo-mitsukeru-kun, github.com/GODBOYX/GODBOY, github.com/GODcoin/godcoin,num_dependents_deps.dev:0 github.com/GODcoin/godcoin-js,num_dependents_deps.dev:0 @@ -70425,6 +72023,8 @@ github.com/GPSBabel/gpsbabel,criticality_score:0.524130 github.com/GPSHiring/xadesjs,num_dependents_deps.dev:0 github.com/GPSHiring/xmldsigjs,num_dependents_deps.dev:0 github.com/GPSnoopy/RayTracingInVulkan,criticality_score:0.311890 +github.com/GPTED/Rsync-My-File, +github.com/GPTED/SSH-My-Action, github.com/GPUOpen-Drivers/AMDVLK,criticality_score:0.418550 github.com/GPUOpen-Drivers/CWPack,Google github.com/GPUOpen-Drivers/MetroHash,Google @@ -70532,6 +72132,7 @@ github.com/GSL-for-JS/gsl-const-js,num_dependents_deps.dev:0 github.com/GSL-for-JS/gsl-specfunc-js,num_dependents_deps.dev:0 github.com/GSMIoT-com/tplink-router-api-sdk, github.com/GSMarketingTech/anonymizer-service,num_dependents_deps.dev:0 +github.com/GSS-Cogs/csv-to-csvw-action, github.com/GSS-FED/javascript,num_dependents_deps.dev:0 github.com/GSS-FED/vital-ui-kit-react,num_dependents_deps.dev:0 github.com/GSangQin/mochawesome-zc, @@ -70635,7 +72236,9 @@ github.com/GYxiaOZ/eft-cool-taro-ui,num_dependents_deps.dev:0 github.com/GYxiaOZ/gm-taro-ui, github.com/GYxiaOZ/react-ueditor,num_dependents_deps.dev:0 github.com/GYxiaOZ/tools, +github.com/GZGavinZhao/setup-solbuild, github.com/GZPERRA/MC-Enchanter, +github.com/GZoltar/gzoltar-github-action, github.com/GZtheStackJourney/react-native-network-toast,num_dependents_deps.dev:0 github.com/GZtheStackJourney/rn-android-picker-dialog,num_dependents_deps.dev:0 github.com/GaParmar/clean-fid, @@ -70651,6 +72254,7 @@ github.com/Gab-km/papylon, github.com/Gab0/linkageMapper, github.com/Gab0/straintables, github.com/GabLeRoux/bootstrap-spinedit,num_dependents_deps.dev:0 +github.com/GabLeRoux/generate-github-release-notes, github.com/GabLeRoux/git-bump-cli, github.com/GabLeRoux/hubot-google-lucky,num_dependents_deps.dev:0 github.com/GabMic/ActiveBulma,num_dependents_deps.dev:0 @@ -70702,6 +72306,8 @@ github.com/Gabisonfire/Deckster, github.com/Gabisonfire/justlog, github.com/Gabisonfire/raincoat, github.com/Gabitzuu/DiscordDice,num_dependents_deps.dev:0 +github.com/Gabo-p/ssh-deploy-to-server, +github.com/GaboFDC/brakeman-linter-action, github.com/GaboXandre/gxmail, github.com/GaborFarkas/geojson_lite,num_dependents_deps.dev:0 github.com/GaborWnuk/image-preview-python, @@ -70733,10 +72339,12 @@ github.com/Gabriel439/haskell-nix,criticality_score:0.396620 github.com/Gabriel439/post-rfc,criticality_score:0.357320 github.com/Gabriel439/slides,criticality_score:0.322100 github.com/Gabriel6562014/model,num_dependents_deps.dev:0 +github.com/GabrielAcostaEngler/signtool-code-sign, github.com/GabrielAlacchi/d3graphs,num_dependents_deps.dev:0 github.com/GabrielAlacchi/fullstack-boilerplate,num_dependents_deps.dev:0 github.com/GabrielBB/react-use-session,num_dependents_deps.dev:0 github.com/GabrielBB/xtate,num_dependents_deps.dev:0 +github.com/GabrielBB/xvfb-action, github.com/GabrielBibiano/vue-github-profile,num_dependents_deps.dev:0 github.com/GabrielBibiano/vue-import-and-use,num_dependents_deps.dev:0 github.com/GabrielBibiano/vue-navigator-share, @@ -70755,6 +72363,7 @@ github.com/GabrielCastello/apiGenerator,num_dependents_deps.dev:0 github.com/GabrielCastro/mongo_oplog,num_dependents_deps.dev:0 github.com/GabrielCastro/neon-serde,num_dependents_deps.dev:0 github.com/GabrielCheung128/lazy-facet,num_dependents_deps.dev:0 +github.com/GabrielCousin/spa-smoke-test-action, github.com/GabrielCpp/automapping, github.com/GabrielCzar/git-properties,num_dependents_deps.dev:0 github.com/GabrielDViana/IsCoolParser,num_dependents_deps.dev:0 @@ -70848,6 +72457,8 @@ github.com/Gabrock94/PrettyWebsite, github.com/Gabrock94/Pysiology, github.com/Gabrock94/https:, github.com/Gabrock94/pyaesthetics, +github.com/Gabryel8818/kubectl, +github.com/Gabryel8818/rundeck-cli, github.com/Gabryk/TestIdea,num_dependents_deps.dev:0 github.com/Gabryk/json-event-emitter,num_dependents_deps.dev:0 github.com/Gabs00/OM-WebRTC,num_dependents_deps.dev:0 @@ -70873,6 +72484,7 @@ github.com/Gadicuz/jsvrx,num_dependents_deps.dev:0 github.com/Gadreel/divconq,num_dependents_deps.dev:0 github.com/Gadz00ks77/nestshredder, github.com/Gadzillion/new_pytest_needle, +github.com/GaelGirodon/ci-badges-action, github.com/GaelGirodon/markdown-to-document,num_dependents_deps.dev:0 github.com/GaelGirodon/reportmix, github.com/GaelMAS/PythonMatlab, @@ -71099,7 +72711,9 @@ github.com/GameMakerHub/catalyst,num_dependents_deps.dev:0 github.com/GameModsBR/NBT-Manipulator,num_dependents_deps.dev:0 github.com/GameModsBR/Region-Manipulator,num_dependents_deps.dev:0 github.com/GamePad64/python-telegram-bot-django-persistence, +github.com/GamePlayer-8/gitio, github.com/GamePowerNetwork/api,num_dependents_deps.dev:0 +github.com/GamePowerX/pipe-to-release, github.com/GameServerManagers/LinuxGSM,criticality_score:0.608640 github.com/GameSurge/pysrvx, github.com/GameSwapFinance/gameswap-uikit,num_dependents_deps.dev:0 @@ -71139,6 +72753,7 @@ github.com/GamesDoneQuick/eslint-config,num_dependents_deps.dev:0 github.com/GamesDoneQuick/prettier-config,num_dependents_deps.dev:0 github.com/GamesDoneQuick/typed-obs-scenes,num_dependents_deps.dev:0 github.com/GamesSenshi/constant-values,num_dependents_deps.dev:0 +github.com/Gamesight/slack-workflow-status, github.com/Gamevy/monte-carlo,num_dependents_deps.dev:0 github.com/Gamevy/node-redis-pubsub-emitter,num_dependents_deps.dev:0 github.com/Gameye/gameye-sdk-node,num_dependents_deps.dev:0 @@ -71165,6 +72780,7 @@ github.com/GammaGos/rnvm,num_dependents_deps.dev:0 github.com/GammaNu/svg-def-cleaner,num_dependents_deps.dev:0 github.com/GammaScience/pem-codec,num_dependents_deps.dev:0 github.com/GammaUNC/GST,Google +github.com/Gamote/k8s-deployer-action, github.com/Gamote/lottie-react,num_dependents_deps.dev:2 github.com/Gamrs-Inc/electron-overlay-window,num_dependents_deps.dev:0 github.com/Gamua/Starling-Extension-Particle-System,criticality_score:0.304600 @@ -71229,6 +72845,8 @@ github.com/GaneshSPatil/chai-arrays,num_dependents_deps.dev:48 github.com/GaneshSPatil/chai-asserttype,num_dependents_deps.dev:0 github.com/GaneshSPatil/cloner,num_dependents_deps.dev:0 github.com/GaneshSPatil/gocd-cli,num_dependents_deps.dev:0 +github.com/GaneshSPatil/gocd-mergeable, +github.com/GaneshSPatil/hello-world-javascript-action, github.com/GaneshSinghPapola/node-pinit,num_dependents_deps.dev:0 github.com/GaneshSinghPapola/rn-easy-toast, github.com/GaneshSinghPapola/rn-samsung-health,num_dependents_deps.dev:0 @@ -71321,6 +72939,7 @@ github.com/Gapminder/vizabi,num_dependents_deps.dev:0 github.com/Gapminder/vizabi-interpolators,num_dependents_deps.dev:14 github.com/Gapur/react-native-accordion,num_dependents_deps.dev:0 github.com/Gapur/react-native-dot-typing,num_dependents_deps.dev:0 +github.com/GarageAppTeam/elixir, github.com/GarageGames/Torque2D,criticality_score:0.341640 github.com/GarageGames/Torque3D,criticality_score:0.444570 github.com/Garbanas/rollup-vinyl-stream2,num_dependents_deps.dev:0 @@ -71392,6 +73011,7 @@ github.com/GarkGarcia/icon-pie,num_dependents_deps.dev:0 github.com/GarkGarcia/icon_baker,num_dependents_deps.dev:0 github.com/GarkGarcia/iko,num_dependents_deps.dev:0 github.com/GarkGarcia/ikon,num_dependents_deps.dev:0 +github.com/Garlic-Team/Auto-Review, github.com/Garlic-Team/GCommands,num_dependents_deps.dev:0 github.com/Garlic-Team/GExpressInteraction,num_dependents_deps.dev:0 github.com/GarlicB/github_from_cmd,num_dependents_deps.dev:0 @@ -71402,6 +73022,7 @@ github.com/GarntS/dotfiles,num_dependents_deps.dev:0 github.com/Garphild/react-editable-input,num_dependents_deps.dev:0 github.com/Garphild/viber-bot-node,num_dependents_deps.dev:0 github.com/GarraouiMarwen/ngx-dynamic-nav,num_dependents_deps.dev:0 +github.com/GarreauArthur/manage-digital-ocean-managed-database-trusted-sources-gh-action, github.com/Garrett-R/gender_bender, github.com/GarrettCannon/ts-three-stl-loader,num_dependents_deps.dev:0 github.com/GarrettCulos/lambda-webpack-plugin,num_dependents_deps.dev:0 @@ -71455,6 +73076,7 @@ github.com/Garvys/rustfst,num_dependents_deps.dev:0 github.com/Garwin4j/nativescript-paypal,num_dependents_deps.dev:0 github.com/Gary-Ascuy/ssc,num_dependents_deps.dev:0 github.com/Gary-Ascuy/ssc-web,num_dependents_deps.dev:0 +github.com/Gary-H9/license-existence-checker, github.com/Gary-Hertel/StockQuant, github.com/Gary-Hertel/StockQuant_simple, github.com/Gary-Hertel/easyquant, @@ -71497,7 +73119,9 @@ github.com/GaryWenneker/jss-umbrella, github.com/Garyhjj/ionicx-wechat-like-album,num_dependents_deps.dev:0 github.com/Garyhjj/ngx-validator-extend,num_dependents_deps.dev:0 github.com/Garyhjj/task-layer,num_dependents_deps.dev:0 +github.com/Gascon1/action-semantic-pull-request, github.com/Gascon1/lotide,num_dependents_deps.dev:0 +github.com/Gascon1/pr-size-labeler, github.com/Gaserd/vk-apps-button,num_dependents_deps.dev:0 github.com/GasiorowskiPiotr/express-ai,num_dependents_deps.dev:0 github.com/Gasol/node-nis,num_dependents_deps.dev:0 @@ -71626,10 +73250,13 @@ github.com/GateSchema/gateschema-js,num_dependents_deps.dev:0 github.com/GateSchema/gateschema-transformer,num_dependents_deps.dev:0 github.com/Gatech-Flash/FlashPythonToolbox, github.com/Gaterny/sougou-cli, +github.com/Gateway3B/BranchIssuePrLinker, github.com/Gathaspa/HelixPC, github.com/Gatien-Oudoire/python-fr, github.com/GatinMI/spring-httpstatus-javascript,num_dependents_deps.dev:0 github.com/Gato-X/python-LinkedTuple, +github.com/GatorEducator/gatorgrade-action, +github.com/GatorEducator/gatorgradle-action, github.com/GatorIO/gator-score,num_dependents_deps.dev:0 github.com/Gatsby-Lee/GatsbyPythonNormalizer, github.com/Gatsby-Lee/be-proxy-ip, @@ -71675,7 +73302,9 @@ github.com/GaugeBrasil/gauge-react-dates,num_dependents_deps.dev:0 github.com/Gaunt/bisect_scanner, github.com/Gaunt/jsasyncio-queues,num_dependents_deps.dev:0 github.com/Gaurang-k/jcryption,num_dependents_deps.dev:0 +github.com/Gaurang033/OneCommit, github.com/Gaurav-Shankar/check-username, +github.com/Gaurav0/backport, github.com/Gaurav0/ember-cli-deploy-s3-pack, github.com/Gaurav12342/demo-library-npm,num_dependents_deps.dev:0 github.com/Gaurav12342/sample-library-npm,num_dependents_deps.dev:0 @@ -71763,6 +73392,7 @@ github.com/GavinDmello/pfade,num_dependents_deps.dev:0 github.com/GavinDmello/pid-stats,num_dependents_deps.dev:0 github.com/GavinF17/reactstrap-form-validator,num_dependents_deps.dev:0 github.com/GavinHe322/vue3-use,num_dependents_deps.dev:0 +github.com/GavinHome/action-dingding, github.com/GavinJoyce/ember-backoff,num_dependents_deps.dev:0 github.com/GavinJoyce/ember-component-inbound-actions,num_dependents_deps.dev:30 github.com/GavinJoyce/ember-computed-change-gate,num_dependents_deps.dev:0 @@ -71772,12 +73402,15 @@ github.com/GavinJoyce/ember-pubsub,num_dependents_deps.dev:0 github.com/GavinJoyce/ember-reflection,num_dependents_deps.dev:0 github.com/GavinJoyce/rack-auto-session-domain,num_dependents_deps.dev:0 github.com/GavinJoyce/tailwindcss-question-mark,num_dependents_deps.dev:0 +github.com/GavinMeierSonos/dependabot-action, github.com/GavinPHR/Multi-Agent-Path-Finding, github.com/GavinPHR/Space-Time-AStar, github.com/GavinPHR/pytreemap, github.com/GavinRay97/expo-react-native-shadow,num_dependents_deps.dev:0 +github.com/GavinRay97/garden-eks-deploy-action, github.com/GavinRay97/graphql-automock,num_dependents_deps.dev:0 github.com/GavinRay97/graphql-operation-generator, +github.com/GavinRay97/hasura-ci-cd-action, github.com/GavinSuen/unicorn,num_dependents_deps.dev:0 github.com/GavinThomas1192/react-audio-recorder, github.com/GavinZhuLei/vue-form-making,num_dependents_deps.dev:6 @@ -72047,6 +73680,7 @@ github.com/GeekCash/geekcash-p2p,num_dependents_deps.dev:0 github.com/GeekChilider/startUI,num_dependents_deps.dev:0 github.com/GeekEast/Serverless-Nodejs-Typescript-Starter,num_dependents_deps.dev:0 github.com/GeekEast/cra-antwind, +github.com/GeekEast/trigger-open-pr-workflow, github.com/GeekEdem/node-red-contrib-srl,num_dependents_deps.dev:0 github.com/GeekFiftyFive/Alderson.js,num_dependents_deps.dev:0 github.com/GeekFiftyFive/ObjectQuery,num_dependents_deps.dev:0 @@ -72056,15 +73690,22 @@ github.com/GeekHive/gh-cli,num_dependents_deps.dev:0 github.com/GeekHive/stylelint-config-standard,num_dependents_deps.dev:0 github.com/GeekHive/tslint-config-standard,num_dependents_deps.dev:0 github.com/GeekHive/typescript-eslint-config-standard,num_dependents_deps.dev:0 +github.com/GeekHunter-Brasil/kubectl-aws-eks, github.com/GeekInCompany/mkcert,num_dependents_deps.dev:0 github.com/GeekJosh/tinymce-emoji,num_dependents_deps.dev:0 github.com/GeekMakerSun/13aq_blog_static,num_dependents_deps.dev:0 github.com/GeekMasher/GMConfig, github.com/GeekMasher/GMUtils, +github.com/GeekMasher/advanced-security-compliance, +github.com/GeekMasher/brew-dependency-submission-action, +github.com/GeekMasher/cocoapods-dependency-submission-action, +github.com/GeekMasher/container-dependency-submission-action, +github.com/GeekMasher/quibble, github.com/GeekMode/Chronus,num_dependents_deps.dev:0 github.com/GeekPark/grape,num_dependents_deps.dev:0 github.com/GeekRicardo/file-download-server, github.com/GeekTG/Telethon, +github.com/GeekZoneHQ/eisenhower, github.com/Geeked-Out-Solutions/mycroft_api, github.com/Geekfish/django-ajax-toolkit, github.com/Geeks-Solutions/vue-sections,num_dependents_deps.dev:0 @@ -72115,6 +73756,7 @@ github.com/GeekyAnts/vue-native-core,"criticality_score:0.388010,num_dependents_ github.com/GeekyAnts/vue-native-router, github.com/GeekyAubergine/digitalocean-droplet-sdk,num_dependents_deps.dev:0 github.com/GeekyDeaks/botkit-legacy,num_dependents_deps.dev:0 +github.com/GeekyEggo/delete-artifact, github.com/Geekz45679/fut.js,num_dependents_deps.dev:0 github.com/Geeman201/use-media-size, github.com/Geemarn/premitive, @@ -72126,6 +73768,7 @@ github.com/Geeni47/NodeJS,num_dependents_deps.dev:0 github.com/GeensNPO/Defined.id,num_dependents_deps.dev:0 github.com/GeeoIO/geeo-javascript,num_dependents_deps.dev:0 github.com/GeertJohan/go.rice,criticality_score:0.390260 +github.com/Geertvdc/setup-hub, github.com/GeeseBumps/pynodb, github.com/GeetaKrishnaAdhikari/generator-hold,num_dependents_deps.dev:0 github.com/GeetaKrishnaAdhikari/loopback-workspace-geet,num_dependents_deps.dev:1 @@ -72238,6 +73881,9 @@ github.com/GendoIkari/x16cli, github.com/GeneLil/frontend-project-lvl1,num_dependents_deps.dev:0 github.com/GenePeeks/django-hats, github.com/GeneZharov/introversion, +github.com/GeneaLabs/action-reviewdog-phpcs, +github.com/GeneaLabs/action-reviewdog-phpmd, +github.com/GeneaLabs/action-reviewdog-phpstan, github.com/GeneaLabs/laravel-caffeine,criticality_score:0.434400 github.com/GeneaLabs/laravel-model-caching,criticality_score:0.500840 github.com/GenealogyCollective/glab,num_dependents_deps.dev:0 @@ -72253,6 +73899,7 @@ github.com/GeneralDenmark/PyOutputHandler, github.com/GeneralElectric/snowizard,num_dependents_deps.dev:4 github.com/GeneralElectric/snowizard-discovery,num_dependents_deps.dev:0 github.com/GeneralMills/azure-ad-token-verify, +github.com/GeneralMills/gcloud-vault-action, github.com/GeneralMills/pytrends,criticality_score:0.325770 github.com/GeneralMine/kv-expire,num_dependents_deps.dev:0 github.com/GeneralMine/proxy-cutter,num_dependents_deps.dev:0 @@ -72285,12 +73932,14 @@ github.com/GenesisCoast/conditions-py, github.com/GenesisCoast/embedded-yaml-docs, github.com/GenesisGateway/android_sdk,num_dependents_deps.dev:0 github.com/GenesisGateway/genesis.js,num_dependents_deps.dev:0 +github.com/GenesisSam/get-simple-file-action, github.com/GenesisSam/image-brochure,num_dependents_deps.dev:0 github.com/GenesisSam/node-image-correlation,num_dependents_deps.dev:0 github.com/GenesisVision/gv-react-components,num_dependents_deps.dev:0 github.com/Genesor/hubot-slack,num_dependents_deps.dev:0 github.com/Genesor/yandex-translate-api,num_dependents_deps.dev:2 github.com/Genesys-Chennai-Front-End-Meetup/-genesys-chennai-front-end-meetup-demo-package,num_dependents_deps.dev:0 +github.com/Genesys225/cloudflared-service-token-ssh-proxy, github.com/GenesysPureEngage/authentication-client-java,num_dependents_deps.dev:0 github.com/GenesysPureEngage/authentication-client-js,num_dependents_deps.dev:0 github.com/GenesysPureEngage/authorization-client-java,num_dependents_deps.dev:0 @@ -72308,6 +73957,7 @@ github.com/Genetalks/gtxstorage-py, github.com/GeneticsJS/GeneticsJS, github.com/GenevieveBuckley/napari-tifffile-reader, github.com/Genex/ng2-mmbreakpoints,num_dependents_deps.dev:0 +github.com/Genez-io/genezio-github-action, github.com/Gengar-666/taro-color-ui,num_dependents_deps.dev:0 github.com/Genghius/is_uwu,num_dependents_deps.dev:0 github.com/Genially/typeorm-mimic,num_dependents_deps.dev:0 @@ -72323,6 +73973,7 @@ github.com/GenieFramework/Genie.jl,criticality_score:0.588780 github.com/GenieTim/PipefyEnhancer,num_dependents_deps.dev:0 github.com/GenieTim/auto-browser,num_dependents_deps.dev:0 github.com/GenieTim/fb-birthday-gratulator,num_dependents_deps.dev:0 +github.com/GenieTim/ftp-action, github.com/GenieTim/pylimer-tools, github.com/Genimelineji/Leaflet.draw,num_dependents_deps.dev:0 github.com/Genimelineji/fa-svg-js,num_dependents_deps.dev:0 @@ -72337,6 +73988,7 @@ github.com/GeniusFunny/node-thread-pool,num_dependents_deps.dev:0 github.com/GeniusLead/AlexaInSkillPurchasing,num_dependents_deps.dev:0 github.com/GeniusTony/react-native-9patch-image,num_dependents_deps.dev:0 github.com/GeniusTony/react-native-imagecapinsets, +github.com/GeniusVentures/cache-multi, github.com/GeniusesOfSymfony/WebSocketBundle,criticality_score:0.505250 github.com/Genivia/RE-flex,criticality_score:0.461680 github.com/Genivia/SJOT,num_dependents_deps.dev:0 @@ -72377,6 +74029,7 @@ github.com/GenyaHoshino/jquery.chainAjax.js,num_dependents_deps.dev:0 github.com/GenyaHoshino/k-flex,num_dependents_deps.dev:0 github.com/GenyaSol/aiocircuitbreaker, github.com/GenyaSol/aiohttp-cookauth, +github.com/Genymobile/genymotion-saas-github-action, github.com/Genymobile/gnirehtet,criticality_score:0.368430 github.com/Genymobile/scrcpy,criticality_score:0.643830 github.com/Genza999/readme_cli, @@ -72561,11 +74214,13 @@ github.com/GeoloeG/iron-pullable-container,num_dependents_deps.dev:0 github.com/GeoloeG/iron-swipeable-pages,num_dependents_deps.dev:0 github.com/GeomaticsResearch/lightningtrace, github.com/GeometriaLab/Shiterator,num_dependents_deps.dev:0 +github.com/Geometrically/fabric-test-runner, github.com/GeometryDeFi/geometry-core-contracts,num_dependents_deps.dev:0 github.com/GeometryDeFi/geometry-sdk,num_dependents_deps.dev:0 github.com/GeonTech/angular-redhawk,num_dependents_deps.dev:0 github.com/GeonTech/sigplot-ng,num_dependents_deps.dev:0 github.com/Geono/NumberToKorean,num_dependents_deps.dev:0 +github.com/GeopJr/CO2, github.com/GeopJr/SveltePress,num_dependents_deps.dev:0 github.com/GeopJr/pixelfed-js,num_dependents_deps.dev:0 github.com/GeopJr/tankionline.js,num_dependents_deps.dev:0 @@ -72861,6 +74516,7 @@ github.com/German-Stepanov/nodejs-output-static,num_dependents_deps.dev:0 github.com/German-Stepanov/nodejs-output-static-mime,num_dependents_deps.dev:0 github.com/German-Stepanov/nodejs-output-view,num_dependents_deps.dev:0 github.com/German-Stepanov/nodejs-router-controller,num_dependents_deps.dev:0 +github.com/GermanBluefox/code-sign-action, github.com/GermanBluefox/node-red-vis, github.com/GermanMtzmx/prism-markdown-element,num_dependents_deps.dev:0 github.com/Germanet-sfs/germanetpy, @@ -72883,6 +74539,7 @@ github.com/Geronimomiao/sm-cli,num_dependents_deps.dev:0 github.com/Gerrel/apollo-link-firebase-performance-monitoring,num_dependents_deps.dev:0 github.com/Gerrel/arangodb-foxx-upload,num_dependents_deps.dev:0 github.com/Gerrit0/TypeDoc,num_dependents_deps.dev:0 +github.com/Gerrit0/circular-dependency-check, github.com/GerritCodeReview/gerrit,criticality_score:0.526350 github.com/GerritErpenstein/ionic2-custom-icons,num_dependents_deps.dev:0 github.com/GerritSommer/ember-bulma-css, @@ -72897,6 +74554,7 @@ github.com/GerryIsWarrior/factory-js,num_dependents_deps.dev:0 github.com/GerryLarios/fisher-tukey,num_dependents_deps.dev:0 github.com/Gers2017/ts-tipi,num_dependents_deps.dev:0 github.com/Gerschtli/dwm-status,num_dependents_deps.dev:0 +github.com/Gershon-A/snyk-iac-code-security-checks, github.com/Gerson4G/react-iconoteka, github.com/GersonRS/react-native-template-gersonrsantos-basic,num_dependents_deps.dev:0 github.com/Gert-dev/php-ide-serenata,criticality_score:0.347080 @@ -72927,6 +74585,8 @@ github.com/GetCodePanda/create-ng4-semantic-ui, github.com/GetDKAN/dkan,criticality_score:0.473270 github.com/GetDutchie/SecretsManager,num_dependents_deps.dev:0 github.com/GetDutchie/Zah,num_dependents_deps.dev:0 +github.com/GetDutchie/github-action-delete-comment, +github.com/GetDutchie/github-action-wait-on-check, github.com/GetJenny/analyzer,num_dependents_deps.dev:0 github.com/GetJenny/manaus-lib,num_dependents_deps.dev:0 github.com/GetJobber/hash_accessor,num_dependents_deps.dev:0 @@ -72972,6 +74632,7 @@ github.com/GetStream/stream-js-web,num_dependents_deps.dev:0 github.com/GetStream/stream-python, github.com/GetStream/stream-rails,criticality_score:0.305380 github.com/GetStream/stream-ruby,num_dependents_deps.dev:0 +github.com/GetStream/verify-semantic-changelog-update, github.com/GetStream/xmlhttp-request,num_dependents_deps.dev:28 github.com/GetStructure/structure-api-js,num_dependents_deps.dev:0 github.com/GetStructure/structure-sdk-js,num_dependents_deps.dev:0 @@ -72986,6 +74647,7 @@ github.com/GetTerminus/ngx-tools,num_dependents_deps.dev:0 github.com/GetTerminus/stylelint-config-frontend,num_dependents_deps.dev:0 github.com/GetTerminus/terminus-oss,num_dependents_deps.dev:206 github.com/GetTerminus/terminus-ui,num_dependents_deps.dev:0 +github.com/GetTerminus/terraform-pr-commenter, github.com/GetTerminus/tslint-config-frontend,num_dependents_deps.dev:0 github.com/GetTogetherComm/GetTogether,criticality_score:0.360740 github.com/GetTogetherComm/totd, @@ -73004,6 +74666,7 @@ github.com/Geta/stylelint-config,num_dependents_deps.dev:0 github.com/Getable/mousetrap,num_dependents_deps.dev:0 github.com/GetafixIT/promise-runner,num_dependents_deps.dev:0 github.com/GetchaDEAGLE/eagle-versioner,num_dependents_deps.dev:0 +github.com/Getdeck/getdeck-action, github.com/Gethi/aws-cognito-promises,num_dependents_deps.dev:0 github.com/Gethi/aws-cognito-redux-saga,num_dependents_deps.dev:0 github.com/Gethi/create-react-app,num_dependents_deps.dev:0 @@ -73050,6 +74713,8 @@ github.com/GetuiLaboratory/cordova-plugin-getuisdk,num_dependents_deps.dev:0 github.com/GetuiLaboratory/react-native-getui,num_dependents_deps.dev:0 github.com/GetulioCastro/pytools_pythonpro, github.com/Geulmaster/Kingfish, +github.com/Geun-Oh/Jira-Github-Release-Automation, +github.com/Geun-Oh/jira-github-release-automation-with-go, github.com/GeuntaBuwono/react-native-hide-show-password-input,num_dependents_deps.dev:0 github.com/Gewaer/base-header,num_dependents_deps.dev:0 github.com/Gewaer/gw-browse,num_dependents_deps.dev:0 @@ -73206,6 +74871,7 @@ github.com/Gianfranco97/node-module-instapago,num_dependents_deps.dev:0 github.com/GianfrancoFois/react-native-rabbitmq,num_dependents_deps.dev:0 github.com/GianfrancoFois/ts-unit-converter,num_dependents_deps.dev:0 github.com/GianisTsol/python-p2p, +github.com/GianluDeveloper/AutoReposList, github.com/GianlucaCandiotti/yar-carousel,num_dependents_deps.dev:0 github.com/GianlucaCesari/convert-html-to-pdf, github.com/GianlucaCesari/rounded,num_dependents_deps.dev:0 @@ -73369,6 +75035,7 @@ github.com/GildaRech/pytLoc, github.com/GildedFinance/angular-request-network,num_dependents_deps.dev:0 github.com/GildedHonour/atarashii_imap,num_dependents_deps.dev:0 github.com/GildedHonour/frank_jwt,num_dependents_deps.dev:0 +github.com/Gildofj/upload-app-to-app-live-browserstack, github.com/GilesStrong/lumin, github.com/GilesStrong/pytorch_inferno, github.com/GilgusMaximus/videojs-vtt-thumbnails-freetube,num_dependents_deps.dev:0 @@ -73446,6 +75113,8 @@ github.com/GingerIndustries/Ginger-Bluetooth-Utils, github.com/GingerIndustries/screen2c, github.com/GingerTommy/slamdash,num_dependents_deps.dev:0 github.com/Gingerman960/modal-template,num_dependents_deps.dev:0 +github.com/GingertronMk1/dependabot-merger-bot, +github.com/GingertronMk1/pull-request-labeler, github.com/GingkathFox/EveJS,num_dependents_deps.dev:0 github.com/GingkathFox/esiJS, github.com/GingkathFox/simpleTable,num_dependents_deps.dev:0 @@ -73553,6 +75222,7 @@ github.com/Girish-K/polyfill-Number.toLocaleString-with-Locales,num_dependents_d github.com/Girish-K/react-chartist-axis-titles-polyfill,num_dependents_deps.dev:0 github.com/Girish-K/react-numeric-input,num_dependents_deps.dev:0 github.com/Girish-Mehta/xmlintojson,num_dependents_deps.dev:0 +github.com/GirishCodeAlchemy/githubaction-status-generator, github.com/GirishKotra/drf-dynamic-read, github.com/GirkovArpa/hutton, github.com/GirkovArpa/node-memory-process-scanner,num_dependents_deps.dev:0 @@ -73587,6 +75257,7 @@ github.com/GitBookIO/node-epubcheck,num_dependents_deps.dev:0 github.com/GitBookIO/percy-puppeteer,num_dependents_deps.dev:0 github.com/GitBruno/build-node-venv,num_dependents_deps.dev:0 github.com/GitGuardian/ggshield, +github.com/GitGuardian/ggshield-action, github.com/GitGuardian/py-gitguardian, github.com/GitGud-org/gitgud, github.com/GitHawkApp/GitHawk,criticality_score:0.378910 @@ -73605,6 +75276,7 @@ github.com/GitHub-lrb/react-native-waitview,num_dependents_deps.dev:0 github.com/GitHub-lrb/tm-react-native-datepicker,num_dependents_deps.dev:0 github.com/GitHub-lrb/tm-react-native-imagepicker, github.com/GitHub-lrb/tm-react-native-imgepicker,num_dependents_deps.dev:0 +github.com/GitHub30/action-tmate, github.com/GitHub30/firesql.js,num_dependents_deps.dev:0 github.com/GitHub30/vuexfiresql,num_dependents_deps.dev:0 github.com/GitHub30/winocr, @@ -73662,6 +75334,7 @@ github.com/GitSquared/komit,num_dependents_deps.dev:0 github.com/GitSquared/node-geolite2-redist,num_dependents_deps.dev:4 github.com/GitSquared/node-jwk-utils,num_dependents_deps.dev:0 github.com/GitSquared/rinzler, +github.com/GitStartHQ/actions, github.com/GitStonic/google-somethin,num_dependents_deps.dev:0 github.com/GitTiago/pychainpoint, github.com/GitToby/genetic_algorithms, @@ -73669,6 +75342,7 @@ github.com/GitToby/simple_note_taker, github.com/GitTom/faas-local,num_dependents_deps.dev:0 github.com/GitTools/GitLink,criticality_score:0.342600 github.com/GitTools/GitVersion,criticality_score:0.682480 +github.com/GitTools/actions, github.com/GitXuhaoY/demo-ui,num_dependents_deps.dev:0 github.com/GitXwj/react-native-baidu-mapview,num_dependents_deps.dev:0 github.com/GitXwj/react-native-wechat,num_dependents_deps.dev:0 @@ -73794,6 +75468,7 @@ github.com/Gitbub222/OpenTriviaSDK,num_dependents_deps.dev:0 github.com/Gitby-Leo/html-webpack-injector-leo,num_dependents_deps.dev:0 github.com/GiterLab/cordova-plugin-acmp,num_dependents_deps.dev:0 github.com/Gitforxuyang/uki-egg-jaeger, +github.com/Github-Actions-Community/merge-release, github.com/Github73840134/Timer, github.com/GithubCGY/argnames,num_dependents_deps.dev:0 github.com/GithubCGY/cache,num_dependents_deps.dev:0 @@ -73831,6 +75506,7 @@ github.com/GiulioRossetti/DEMON, github.com/GiulioRossetti/RDyn, github.com/GiulioRossetti/TILES, github.com/GiulioRossetti/cdlib, +github.com/GiulioRossetti/conda-package-publish-action, github.com/GiulioRossetti/conformity, github.com/GiulioRossetti/dynetx, github.com/GiulioRossetti/eva, @@ -73859,6 +75535,7 @@ github.com/Giveth/giveth-bridge,num_dependents_deps.dev:0 github.com/Giveth/giveth-dapp,criticality_score:0.529330 github.com/Giveth/givethcampaign,num_dependents_deps.dev:0 github.com/Giveth/givethdirectory,num_dependents_deps.dev:0 +github.com/Giveth/graph-deploy, github.com/Giveth/liquidpledging,num_dependents_deps.dev:0 github.com/Giveth/lpp-campaign,num_dependents_deps.dev:0 github.com/Giveth/lpp-capped-milestone,num_dependents_deps.dev:0 @@ -74013,6 +75690,7 @@ github.com/GlenKPeterson/UncleJim,num_dependents_deps.dev:7 github.com/GlenMasters/rest-delta-sync,num_dependents_deps.dev:0 github.com/GlenRSmith/Phibes, github.com/GlenTiki/hdr-histogram-percentiles-obj, +github.com/GlenTiki/xbin-release-action, github.com/Glench/ExtPay,num_dependents_deps.dev:0 github.com/Glench/Vim-Jinja2-Syntax,criticality_score:0.398300 github.com/Glench/fuzzyset.js,"criticality_score:0.361380,num_dependents_deps.dev:33" @@ -74029,6 +75707,8 @@ github.com/GlennGeenen/geenenauth,num_dependents_deps.dev:0 github.com/GlennGeenen/hapi-s3-upload,num_dependents_deps.dev:0 github.com/GlennPorter/alt-dependency,num_dependents_deps.dev:0 github.com/GlennPorter/node-twang,num_dependents_deps.dev:0 +github.com/Glennmen/datadog-event-action, +github.com/Glennmen/ploi-deploy-action, github.com/Glenpl/openytapi, github.com/Glenwing/LongDivide,num_dependents_deps.dev:0 github.com/GleytonLima/stringtodict, @@ -74083,7 +75763,9 @@ github.com/Global-Repo/global-uikit,num_dependents_deps.dev:0 github.com/Global-Repo/pancake-toolkit,num_dependents_deps.dev:0 github.com/Global-Repo/pancake-uikit,num_dependents_deps.dev:0 github.com/Global-Repo/pancakeswap-sdk-v2,num_dependents_deps.dev:0 +github.com/Global-Resolution-Experts/js2java-test-action, github.com/Global-Travel/postcss-sprites,num_dependents_deps.dev:0 +github.com/GlobalAppTesting/gat-actions-request-test, github.com/GlobalArrays/ga4py, github.com/GlobalArtLimited/vue-atlaskit,num_dependents_deps.dev:0 github.com/GlobalArtLimited/vue-vkui,num_dependents_deps.dev:0 @@ -74132,6 +75814,7 @@ github.com/GlobalWebIndex/d3scription,num_dependents_deps.dev:0 github.com/GlobalWebIndex/ember-clothier,num_dependents_deps.dev:0 github.com/GlobalWebIndex/segment,num_dependents_deps.dev:0 github.com/GlobalX/pockybot,num_dependents_deps.dev:0 +github.com/GlobeFishNG/setup-cloud-cli, github.com/Globegitter/Nord.js,num_dependents_deps.dev:0 github.com/Globegitter/broccoli-browser-sync,num_dependents_deps.dev:0 github.com/Globegitter/chartist-plugin-tooltip,num_dependents_deps.dev:0 @@ -74213,6 +75896,7 @@ github.com/GloryWong/unilog,num_dependents_deps.dev:0 github.com/GloryWong/version, github.com/Gloryofthe80s/generator-delta,num_dependents_deps.dev:0 github.com/GlossGenius/eslint-config,num_dependents_deps.dev:0 +github.com/GlossMod/ActionUpdateMod, github.com/Glosur/nest-actuator,num_dependents_deps.dev:0 github.com/Glosur/nestjs-actuator, github.com/Glovo/vue-multianalytics,num_dependents_deps.dev:8 @@ -74233,6 +75917,9 @@ github.com/GlueDigital/parallastic,num_dependents_deps.dev:0 github.com/GlueDigital/ruse-fetch,num_dependents_deps.dev:0 github.com/GlueDigital/universal-scripts,num_dependents_deps.dev:0 github.com/GlueHome/homebridge-plugin, +github.com/GlueOps/github-actions-build-push-containers, +github.com/GlueOps/github-actions-cleanup-redundant-cd-prs, +github.com/GlueOps/github-actions-create-container-tags, github.com/Gluejar/pyepub, github.com/Glup3/skhdrc-cheatsheet-generator,num_dependents_deps.dev:0 github.com/GlurG/express-throttle,num_dependents_deps.dev:4 @@ -74247,9 +75934,11 @@ github.com/GluuFederation/scim-node,num_dependents_deps.dev:0 github.com/Glyff/web3-zsl, github.com/Glympse/generator-glympse-journey-app,num_dependents_deps.dev:0 github.com/GlynL/react-slippery,num_dependents_deps.dev:0 +github.com/Glyphack/fandogh-service-deploy-action, github.com/GmBodhi/shandler,num_dependents_deps.dev:0 github.com/Gmiller290488/bin_collection, github.com/Gmiller290488/trial, +github.com/GmodNET/RebaseWorkflowStarterAction, github.com/Gmousse/dataframe-js,"criticality_score:0.330110,num_dependents_deps.dev:0" github.com/Gmousse/es7-checktypes-decorator,num_dependents_deps.dev:0 github.com/GnanaprakashChandiran/Angular-location,num_dependents_deps.dev:0 @@ -74323,6 +76012,8 @@ github.com/GoLP-IST/nata, github.com/GoLanceLLC/kafka-node,num_dependents_deps.dev:0 github.com/GoLearnUp/react-geosuggest,num_dependents_deps.dev:0 github.com/GoLedgerDev/configtxlator.js,num_dependents_deps.dev:0 +github.com/GoLinks/mysql-schema-artifact-action, +github.com/GoLinks/mysql-schema-diff-action, github.com/GoMake/gomake-api-migrations,num_dependents_deps.dev:0 github.com/GoMake/mock-telemetry,num_dependents_deps.dev:0 github.com/GoMarky/commitlint-plugin-jira-task,num_dependents_deps.dev:0 @@ -74345,6 +76036,8 @@ github.com/GoSimpleLLC/nbvcxz,"Google,num_dependents_deps.dev:0" github.com/GoStartLab/bayes,num_dependents_deps.dev:0 github.com/GoStartupsLtd/Apple-Login-Token-Validator,num_dependents_deps.dev:0 github.com/GoTeams/Dabooka-Codes,num_dependents_deps.dev:0 +github.com/GoTestTools/limgo-action, +github.com/GoTestTools/limgo-badge-action, github.com/GoThinkster/conduit-sass, github.com/GoThinkster/conduit-sass-prio,num_dependents_deps.dev:0 github.com/GoThinkster/imperial,num_dependents_deps.dev:0 @@ -74373,6 +76066,8 @@ github.com/GoalSmashers/enhance-css,num_dependents_deps.dev:0 github.com/Goaman/flattenChromeBookmarkChild,num_dependents_deps.dev:0 github.com/Goat-Lab/pyfluentformio, github.com/GoatFishes/utils,num_dependents_deps.dev:0 +github.com/GoatG33k/fivem-lua-lint-action, +github.com/GoatG33k/rage-lint-action, github.com/GoatSeller/Layer7-protections,num_dependents_deps.dev:0 github.com/GoatWang/Yolov4Detector, github.com/Gobie/busy-loop,num_dependents_deps.dev:0 @@ -74383,8 +76078,10 @@ github.com/GobitVietNam/gobit-toolkit,num_dependents_deps.dev:0 github.com/Gobitech/Gobi-Web-Integration,num_dependents_deps.dev:0 github.com/Goblab/ember-tools,num_dependents_deps.dev:0 github.com/Goblenus/pyaccesspoint, +github.com/GobletQA/goblet-tests-action, github.com/GoblinDBRocks/GoblinDB, github.com/GoblinLedger/wowapi, +github.com/Gobot1234/lint-action, github.com/Gobot1234/steam.py, github.com/Gobot1234/vdf3, github.com/Gochida/booru-getter,num_dependents_deps.dev:0 @@ -74479,6 +76176,7 @@ github.com/GokoshiJr/goko-random-messages, github.com/GokselKUCUKSAHIN/project-voltron,num_dependents_deps.dev:0 github.com/GoktugUlkuer/node-red-contrib-cbus,num_dependents_deps.dev:0 github.com/Gokujo/django-semanticui-form, +github.com/GokulDas027/TelegramBridge, github.com/GokulNC/Indic-PersoArabic-Script-Converter, github.com/GokulSoumya/clid, github.com/Gokuldroid/coolbool,num_dependents_deps.dev:0 @@ -74511,9 +76209,12 @@ github.com/GoldenOwlAsia/react-native-infinite-progress-bar,num_dependents_deps. github.com/GoldenOwlAsia/react-native-joi,num_dependents_deps.dev:2 github.com/GoldenOwlAsia/react-native-twitter-signin,num_dependents_deps.dev:0 github.com/GoldenPassport/vue-meteor-reactive-promise-calls,num_dependents_deps.dev:0 +github.com/GoldenPeople/gh-env, github.com/GoldenSeven/ezScss,num_dependents_deps.dev:0 github.com/GoldenStarCode/trjtrypy, github.com/GoldenZeppa/lodown,num_dependents_deps.dev:0 +github.com/GoldenspearLLC/build-jenkins-job, +github.com/GoldenspearLLC/slack-chat-postmessage, github.com/GolderBrother/james-cli,num_dependents_deps.dev:0 github.com/GoldinGuy/K-Means-TS,num_dependents_deps.dev:0 github.com/Goldinteractive/fe-cli,num_dependents_deps.dev:0 @@ -74548,6 +76249,8 @@ github.com/Goldziher/interfaceForge,num_dependents_deps.dev:0 github.com/Goldziher/pydantic-factories, github.com/Goldziher/vuex-factories,num_dependents_deps.dev:0 github.com/Goldziher/vuex-hooks,num_dependents_deps.dev:0 +github.com/GoleeTeam/golee-build-action-workflow, +github.com/GoleeTeam/robotframework-browser-action, github.com/GolemIron/MenuCreator, github.com/Goles/Battery,criticality_score:0.316780 github.com/Golevka/emacs-clang-complete-async,Google @@ -74602,7 +76305,9 @@ github.com/GoneToneStudio/node-google-play-api,num_dependents_deps.dev:0 github.com/GoneToneStudio/node-hinet-hichannel-taiwan-radio,num_dependents_deps.dev:0 github.com/GongSakura/SQLAlchemy-Faker, github.com/GongT/7zip-bin-wrapper,num_dependents_deps.dev:0 +github.com/GongT/actions-recreate-release, github.com/GongT/baobao,num_dependents_deps.dev:12 +github.com/GongT/cancel-previous-workflows, github.com/GongT/cjke,num_dependents_deps.dev:0 github.com/GongT/idlebox,num_dependents_deps.dev:0 github.com/GongT/jenv,num_dependents_deps.dev:0 @@ -74635,9 +76340,11 @@ github.com/Gonzih/markup5ever_arcdom,num_dependents_deps.dev:1 github.com/GooDeeJaY/ezFraction, github.com/GooDeeJaY/foma-py, github.com/GooGee/Entity-Core,num_dependents_deps.dev:0 +github.com/Goobles/gh-actions-merge-command, github.com/Goobley/Lightweaver, github.com/Goobley/Weno4Interpolation, github.com/Goobley/radynpy, +github.com/Goobwabber/download-beatmods-deps, github.com/Goochie/gch-truefx-pricefeed,num_dependents_deps.dev:0 github.com/Good-Coders/node-image-resize,num_dependents_deps.dev:0 github.com/GoodBoyDigital/gbo-parser,num_dependents_deps.dev:4 @@ -74651,6 +76358,7 @@ github.com/GoodDay360/Optifine-API, github.com/GoodDollar/GoodContracts,num_dependents_deps.dev:0 github.com/GoodDollar/GoodProtocol,num_dependents_deps.dev:0 github.com/GoodDollar/ReactNativeFaceTec,num_dependents_deps.dev:0 +github.com/GoodDollar/cloudflare-update-web3-hostname, github.com/GoodDollar/expo-getrandomvalues-sync,num_dependents_deps.dev:0 github.com/GoodDollar/gun, github.com/GoodDollar/gun-appendOnly,num_dependents_deps.dev:0 @@ -74722,6 +76430,8 @@ github.com/Goodluckhf/Pm2PrometheusConfGenerator,num_dependents_deps.dev:0 github.com/Goodluckhf/pm2ServiceDiscovery, github.com/Goodluckhf/uMetrics,num_dependents_deps.dev:0 github.com/Goodpaster/QSoME, +github.com/Goodsmileduck/helm-push-action, +github.com/Goodsmileduck/yandex-serverless-action, github.com/GoodwayGroup/babel-preset-goodway,num_dependents_deps.dev:0 github.com/GoodwayGroup/eslint-config-goodway,num_dependents_deps.dev:0 github.com/GoodwayGroup/intacct-api,num_dependents_deps.dev:4 @@ -76041,6 +77751,7 @@ github.com/GoribCo/w3ktmvp1,num_dependents_deps.dev:0 github.com/GorillaBot-Labs/vue-wysiwyg,num_dependents_deps.dev:0 github.com/GorillaBus/ddw, github.com/GorillaDash/LaravelWebsitePackage, +github.com/GorillaStack/github-action-apply-on-merge, github.com/GorillaStack/jmespath.js,num_dependents_deps.dev:0 github.com/GorillaStack/react-gif,num_dependents_deps.dev:0 github.com/GorillaStack/serverless-plugins,num_dependents_deps.dev:0 @@ -76096,6 +77807,7 @@ github.com/Gotterbild/toCamelCase,num_dependents_deps.dev:0 github.com/GottliebGlob/AuthInput, github.com/Gottox/child_pty,num_dependents_deps.dev:0 github.com/Gottox/dewey,num_dependents_deps.dev:0 +github.com/Gottox/irc-message-action, github.com/Gottox/mongoose-cache,num_dependents_deps.dev:0 github.com/Gottox/node-objdiff,num_dependents_deps.dev:0 github.com/Gottox/node-pdfutils, @@ -76103,6 +77815,7 @@ github.com/Gottox/node-termios,num_dependents_deps.dev:20 github.com/Gottox/node-urlify,num_dependents_deps.dev:16 github.com/Gottox/quotefm-node, github.com/Gottox/terminal.js,num_dependents_deps.dev:0 +github.com/Gottox/url-shortener-action, github.com/Gottwik/Enduro,"criticality_score:0.327500,num_dependents_deps.dev:0" github.com/Gottwik/enduro_admin,num_dependents_deps.dev:2 github.com/Gottwik/enduro_quill,num_dependents_deps.dev:0 @@ -76142,6 +77855,7 @@ github.com/Govern0r/discord.log, github.com/Govern0r/json-crusher,num_dependents_deps.dev:0 github.com/Govern0r/netpack,num_dependents_deps.dev:0 github.com/Governikus/AusweisApp2,criticality_score:0.315310 +github.com/Gowee/sync-contrib-calendar-action, github.com/GowerStreet/fetch,num_dependents_deps.dev:0 github.com/GowerStreet/infintestimal,num_dependents_deps.dev:0 github.com/GowerStreet/route66,num_dependents_deps.dev:0 @@ -76296,6 +78010,7 @@ github.com/Gozala/test-commonjs,num_dependents_deps.dev:262 github.com/Gozala/tree-reduce,num_dependents_deps.dev:0 github.com/Gozala/tuple.flow,num_dependents_deps.dev:1 github.com/Gozala/type,num_dependents_deps.dev:0 +github.com/Gozala/typescript-error-reporter-action, github.com/Gozala/undefined.js,num_dependents_deps.dev:2 github.com/Gozala/unreachable,num_dependents_deps.dev:2 github.com/Gozala/uses,num_dependents_deps.dev:0 @@ -76331,6 +78046,7 @@ github.com/Gr1N/jsonpointer-helpers, github.com/Gr1N/nats-python, github.com/Gr1N/pyfrozen, github.com/Gr1N/pytest-mockservers, +github.com/Gr1N/setup-poetry, github.com/Gr1f0n6x/TarantoolORM,num_dependents_deps.dev:0 github.com/Gr1f0n6x/TarantoolQueue,num_dependents_deps.dev:0 github.com/Gr33nbl00d/alsatian-tsmockito,num_dependents_deps.dev:0 @@ -76380,6 +78096,7 @@ github.com/GradedBlue/ask-sdk-firestore-persistence-adapter,num_dependents_deps. github.com/Gradiant/gradiant-xapi-dsl,num_dependents_deps.dev:0 github.com/Gradiant/pyodi, github.com/Gradiant/smart-xapi-dsl,num_dependents_deps.dev:0 +github.com/GradienceTeam/action-update-pot, github.com/Gradients/Gradients,criticality_score:0.338540 github.com/GradyTruitt/gatsby-shopify-starter,num_dependents_deps.dev:0 github.com/GradysGhost/jirc,num_dependents_deps.dev:0 @@ -76474,6 +78191,7 @@ github.com/GrandMoff100/TkinterClock01, github.com/GrandMoff100/WordFinds, github.com/GrandMoff100/sphinx-execute-code, github.com/GrandMothersill/lotide,num_dependents_deps.dev:0 +github.com/GrandPoohBear/stackpath-cdn-purge-action, github.com/GrandPurpleOcelot/Auto-EDA, github.com/GrandSchtroumpf/akita-firebase,num_dependents_deps.dev:0 github.com/Granddevv/react-text-raw-html,num_dependents_deps.dev:0 @@ -76513,6 +78231,13 @@ github.com/Grano22/jumper,num_dependents_deps.dev:0 github.com/Grano22/jumper_react, github.com/Gransi/awattar, github.com/Grant-Zietsman/validate-typescript, +github.com/GrantBirki/auditor-action-core, +github.com/GrantBirki/comment, +github.com/GrantBirki/git-diff-action, +github.com/GrantBirki/issue-template-parser, +github.com/GrantBirki/json-yaml-validate, +github.com/GrantBirki/lock, +github.com/GrantBirki/pr-diff, github.com/GrantGMiller/NWS-CAP-parser, github.com/GrantGMiller/blueprint_flask_login_dictabase, github.com/GrantGMiller/dictabase, @@ -76647,6 +78372,7 @@ github.com/GrayJack/tree-sitter-zig,num_dependents_deps.dev:0 github.com/GrayJacketStudios/translations,num_dependents_deps.dev:0 github.com/GrayJacketStudios/verificador-rut,num_dependents_deps.dev:0 github.com/GrayTable/paramap, +github.com/Graychen/phpunit-action, github.com/Grayda/node-orvibo,num_dependents_deps.dev:0 github.com/Graydalf/preimg,num_dependents_deps.dev:0 github.com/Graylog2/auto-value-javabean,num_dependents_deps.dev:0 @@ -76697,6 +78423,7 @@ github.com/GreatFruitOmsk/qrc_pathlib, github.com/GreatFruitOmsk/setuptools_scm_about, github.com/GreatFruitOmsk/setuptools_scm_build_number, github.com/GreatFruitOmsk/tailhead, +github.com/GreatWizard/coverage-diff-action, github.com/GreatWizard/ember-circleci,num_dependents_deps.dev:0 github.com/GreatWizard/ember-service-worker-unregistration, github.com/GreatWizard/get-github-tag,num_dependents_deps.dev:0 @@ -76711,6 +78438,7 @@ github.com/GreaterMKEMeetup/slack-integrations-api,num_dependents_deps.dev:0 github.com/GreaterMKEMeetup/slack-integrations-core,num_dependents_deps.dev:0 github.com/GreaterMKEMeetup/spring-restdocs-postman,num_dependents_deps.dev:0 github.com/Greatigalink/database-config,num_dependents_deps.dev:0 +github.com/Greatness7/action-set-mtime, github.com/Greatwallcorner/BingWallpaperDownload-ioliu, github.com/Greba3000/Homework, github.com/Grebble-team/python-flow-helper, @@ -76733,6 +78461,7 @@ github.com/Greedysky/TTKMusicplayer,criticality_score:0.347030 github.com/GreekPerspective/glem, github.com/GreekRush/gl_utils,num_dependents_deps.dev:0 github.com/Greekum/greekumipsum-cli,num_dependents_deps.dev:0 +github.com/Green-Hub-Tools/notifs-task, github.com/Green-Wood/structconf, github.com/Green7/terraswap.js,num_dependents_deps.dev:0 github.com/GreenBankObservatory/diffdirs, @@ -76794,6 +78523,7 @@ github.com/GreenSolver/green,num_dependents_deps.dev:0 github.com/GreenStage/react-central-state,num_dependents_deps.dev:0 github.com/GreenSteam/pep257, github.com/GreenSulley/Friends,num_dependents_deps.dev:0 +github.com/GreenTF/upload-thunderstore-package, github.com/GreenTurtwig/PySkyPlusHD, github.com/GreenTurtwig/hourbike-cli, github.com/GreenVine/ipinfo-sdk,num_dependents_deps.dev:0 @@ -76852,8 +78582,11 @@ github.com/GregBowyer/cld2-cffi, github.com/GregBowyer/gitbook-plugin-asciinema-local,num_dependents_deps.dev:0 github.com/GregBowyer/lz4-cffi, github.com/GregBowyer/tracing-coz,num_dependents_deps.dev:0 +github.com/GregBrimble/dark-static-assets-action, github.com/GregBrimble/gregbrimble-components,num_dependents_deps.dev:0 github.com/GregBrimble/kv-orm,num_dependents_deps.dev:0 +github.com/GregBrimble/linc-fab-action, +github.com/GregBrimble/tailwindui-crawler-action, github.com/GregCKrause/ElasticSearchSparkLoader, github.com/GregDiCaro/React-CLI,num_dependents_deps.dev:0 github.com/GregDiCaro/my-card,num_dependents_deps.dev:0 @@ -77264,6 +78997,7 @@ github.com/GrzegorzZajac000/gulp-landing-page-starter-kit,num_dependents_deps.de github.com/GrzegorzZajac000/js-simple-grid,num_dependents_deps.dev:0 github.com/GrzegorzZajac000/react-bootstrap4-modal,num_dependents_deps.dev:0 github.com/Grzetan/pygameZoom, +github.com/GsActions/commit-message-checker, github.com/Gsangu/wd-web-log, github.com/Gsciarra/shop-react,num_dependents_deps.dev:0 github.com/Gscorreia89/pyChemometrics, @@ -77288,6 +79022,7 @@ github.com/GuScarpim/Scarps,num_dependents_deps.dev:0 github.com/GuacLive/react-giphy-select, github.com/Guake/guake,criticality_score:0.542900 github.com/GuanLab/FastClone_GuanLab, +github.com/GuanceCloud/setup-guance, github.com/Guang91/pysrcor, github.com/GuangChao-Yu/vue-swiper-view,num_dependents_deps.dev:0 github.com/GuangTianLi/cache-alchemy, @@ -77313,6 +79048,7 @@ github.com/Guardiannw/stream-fs-cache,num_dependents_deps.dev:0 github.com/GuardiansLabs/eslint,num_dependents_deps.dev:0 github.com/Guardianzc/OpenMedicalChatBox, github.com/Guardiola31337/hexgrid,num_dependents_deps.dev:0 +github.com/Guardsquare/appsweep-action, github.com/Guardsquare/proguard,"criticality_score:0.428810,num_dependents_deps.dev:4" github.com/Guardsquare/proguard-core,num_dependents_deps.dev:74 github.com/GuavaAndNobi/NobiServicesLib-Python, @@ -77327,6 +79063,7 @@ github.com/GudarJs/teacv, github.com/GudniNatan/better_timers, github.com/Gueils/ishmael,num_dependents_deps.dev:0 github.com/Guercione/brazilian-barcode,num_dependents_deps.dev:0 +github.com/Guerra24/upload-to-release, github.com/Guerrero25/genereact, github.com/Guerrero25/gitclean,num_dependents_deps.dev:0 github.com/Guerrero25/react-g,num_dependents_deps.dev:0 @@ -77450,6 +79187,35 @@ github.com/GuillaumeDerval/JavaGrading,num_dependents_deps.dev:0 github.com/GuillaumeDesforges/pyjst, github.com/GuillaumeElisabeth/HostFileForJsDelivr,num_dependents_deps.dev:0 github.com/GuillaumeEscande/confultimate, +github.com/GuillaumeFalourd/SSH-to-HTTPS, +github.com/GuillaumeFalourd/assert-command-line-output, +github.com/GuillaumeFalourd/aws-clis-action, +github.com/GuillaumeFalourd/branch-exists, +github.com/GuillaumeFalourd/clone-github-repo-action, +github.com/GuillaumeFalourd/command-output-file-action, +github.com/GuillaumeFalourd/convert-json-to-env, +github.com/GuillaumeFalourd/copy-push-files, +github.com/GuillaumeFalourd/create-other-repo-branch-action, +github.com/GuillaumeFalourd/diff-action, +github.com/GuillaumeFalourd/get-release-or-tag, +github.com/GuillaumeFalourd/git-commit-push, +github.com/GuillaumeFalourd/github-team-members, +github.com/GuillaumeFalourd/maven-cli-jdks-action, +github.com/GuillaumeFalourd/notary-tools, +github.com/GuillaumeFalourd/open-issue-action, +github.com/GuillaumeFalourd/pull-request-action, +github.com/GuillaumeFalourd/replace-values-action, +github.com/GuillaumeFalourd/ritchie-action-go-15, +github.com/GuillaumeFalourd/ritchie-action-java-8, +github.com/GuillaumeFalourd/ritchie-action-node, +github.com/GuillaumeFalourd/ritchie-action-python, +github.com/GuillaumeFalourd/ritchie-action-shell, +github.com/GuillaumeFalourd/ritchie-cli-action, +github.com/GuillaumeFalourd/setup-rsync, +github.com/GuillaumeFalourd/setup-windows10-sdk-action, +github.com/GuillaumeFalourd/wait-sleep-action, +github.com/GuillaumeFalourd/write-java-properties-file, +github.com/GuillaumeFalourd/xcode-notarize, github.com/GuillaumeFavelier/blockbuilder, github.com/GuillaumeGenthial/streamplot, github.com/GuillaumeGomez/audio-video-metadata,num_dependents_deps.dev:0 @@ -77520,6 +79286,7 @@ github.com/Guillawme/classconvergence, github.com/Guillawme/countparticles, github.com/Guillawme/localres, github.com/Guillawme/topaztrainmetrics, +github.com/GuilleDF/buckaroo-action, github.com/GuilleFerru/platzom,num_dependents_deps.dev:0 github.com/GuillermoCoding/share-now,num_dependents_deps.dev:0 github.com/GuillermoParedes/bitandbang,num_dependents_deps.dev:0 @@ -77543,6 +79310,8 @@ github.com/GuipengLi/Dcluster, github.com/GuipengLi/pyrSNVs, github.com/GuipengLi/sharepathway, github.com/GuitarRich/sitecore.react.placeholders,num_dependents_deps.dev:0 +github.com/Guite/generator-action, +github.com/Guite/zikula-action, github.com/Guitenbay/layout2pages,num_dependents_deps.dev:0 github.com/Guitheg/mlcf, github.com/Guitheg/ritl, @@ -77551,6 +79320,7 @@ github.com/Guitou4573/node-robot-table,num_dependents_deps.dev:0 github.com/Guja1501/fieldset-object,num_dependents_deps.dev:0 github.com/Guja1501/lockscreen-sensor,num_dependents_deps.dev:0 github.com/Guja1501/sensor-afk,num_dependents_deps.dev:0 +github.com/GulaPetcare/jest-github-action, github.com/Gulamwaris/react-native-payment-card, github.com/Gulats/dc-json, github.com/Gulats/playmate, @@ -77646,6 +79416,7 @@ github.com/GuoJing/Drop2PI, github.com/GuoJing/boxcar.io, github.com/GuoJing/flask-maoko, github.com/GuoJing/push.co, +github.com/GuoJuna/sync-repo-action, github.com/GuoLizhi/Promise,num_dependents_deps.dev:0 github.com/GuoMeng6/npmtest,num_dependents_deps.dev:0 github.com/GuoMeng6/react-native-grid-picker, @@ -77761,6 +79532,7 @@ github.com/GussSoares/my-termo, github.com/GussSoares/triggercmd-cli, github.com/GussWare/bamba-soap, github.com/GustafB/k-cluster-npm,num_dependents_deps.dev:0 +github.com/GustafKisi/action_knugen, github.com/Gustash/react-native-giphy-keyboard, github.com/Gustash/react-native-image-keyboard,num_dependents_deps.dev:0 github.com/Gustash/react-native-siri-shortcut,num_dependents_deps.dev:0 @@ -77850,6 +79622,7 @@ github.com/Guy6767/javascript-graphs, github.com/GuyARoss/antd-form-validation,num_dependents_deps.dev:0 github.com/GuyARoss/dour-sequalize,num_dependents_deps.dev:0 github.com/GuyARoss/orbit,num_dependents_deps.dev:0 +github.com/GuyAttia/import-superset-dashboard-action, github.com/GuyCheung/hudson-remote-cli,num_dependents_deps.dev:0 github.com/GuyL99/metropolis,num_dependents_deps.dev:0 github.com/GuyLivni/guycli,num_dependents_deps.dev:0 @@ -77875,6 +79648,7 @@ github.com/Guyutongxue/tsgdbmi,num_dependents_deps.dev:0 github.com/GuziEconomy/python-guzi, github.com/GuzmanAndrew/Platzidioma,num_dependents_deps.dev:0 github.com/GuzmanPablo/fizz-docdash,num_dependents_deps.dev:0 +github.com/Guzzler/file-changelog-issue-action, github.com/Gvkundalwal/nativescript-audience-network,num_dependents_deps.dev:0 github.com/Gvozd/eslint-plugin-consistent-subscribe,num_dependents_deps.dev:0 github.com/Gvozd/eslint-plugin-deopt,num_dependents_deps.dev:0 @@ -78003,6 +79777,7 @@ github.com/H3Chief/vector.cli,num_dependents_deps.dev:0 github.com/H3RSKO/GG-beta,num_dependents_deps.dev:0 github.com/H3RSKO/ink-select-input,num_dependents_deps.dev:0 github.com/H3RSKO/modified-next-i18next,num_dependents_deps.dev:0 +github.com/H3aven-Labs/pascal-camel-case-action, github.com/H3c702/Hector9000, github.com/H3lloTom/ok-carousel,num_dependents_deps.dev:0 github.com/H3lltronik/h3-firebase-chat,num_dependents_deps.dev:0 @@ -78012,6 +79787,7 @@ github.com/H4CKY54CK/hackytools, github.com/H4KKR/pytube4, github.com/H4KKR/pytubeX, github.com/H4M5TER/bilibili-live-crawler,num_dependents_deps.dev:0 +github.com/H4M5TER/tag-semver-tracking, github.com/H4M5TER/tree-sitter-dice,num_dependents_deps.dev:0 github.com/H4ad/cordova-whatsapp-sticker-plugin,num_dependents_deps.dev:0 github.com/H4ckademy-Piston/Piston,num_dependents_deps.dev:0 @@ -78103,7 +79879,16 @@ github.com/HCESrl/vue-responsive-image,num_dependents_deps.dev:0 github.com/HCGB-IGTP/BacterialTyper, github.com/HCGB-IGTP/HCGB_python_functions, github.com/HCGB-IGTP/XICRA, +github.com/HCL-TECH-SOFTWARE/appscan-codesweep-action, +github.com/HCL-TECH-SOFTWARE/appscan-dast-action, +github.com/HCL-TECH-SOFTWARE/appscan-sast-action, +github.com/HCL-TECH-SOFTWARE/devops-deploy-createcomponentversion-action, github.com/HCL-TECH-SOFTWARE/node-red-contrib-hcl-iterate-loop, +github.com/HCL-TECH-SOFTWARE/onetest-api-action, +github.com/HCL-TECH-SOFTWARE/onetest-perf-action, +github.com/HCL-TECH-SOFTWARE/onetest-server-action, +github.com/HCL-TECH-SOFTWARE/onetest-ui-action, +github.com/HCL-TECH-SOFTWARE/onetest-web-action, github.com/HCLonely/Live2dV3,num_dependents_deps.dev:0 github.com/HCLonely/hexo-bilibili-bangumi,num_dependents_deps.dev:0 github.com/HCLonely/hexo-calendar,num_dependents_deps.dev:0 @@ -78122,6 +79907,7 @@ github.com/HCoban/truncand,num_dependents_deps.dev:0 github.com/HCord-py/hcord, github.com/HCsoft-RD/shaolin, github.com/HD-Development/hdapi.js,num_dependents_deps.dev:0 +github.com/HDBandit/gitflow-release-action, github.com/HDE/arsenic, github.com/HDE/py-mackerel-client, github.com/HDE/python-lambda-local, @@ -78171,6 +79957,7 @@ github.com/HENNGE/aapns, github.com/HENNGE/aiodynamo, github.com/HENNGE/minisaml, github.com/HENNGE/minisignxml, +github.com/HENNGE/terraform-check, github.com/HENNGE/vue3-pagination,num_dependents_deps.dev:0 github.com/HEP-KBFI/ccc, github.com/HEPCloud/bill-calculator-hep, @@ -78179,6 +79966,7 @@ github.com/HEPData/hepdata-converter, github.com/HEPData/hepdata-converter-ws, github.com/HEPData/hepdata-converter-ws-client, github.com/HEPData/hepdata_lib, +github.com/HEPTAhu/upload_github_release_assets_action, github.com/HERA-Team/aipy, github.com/HERA-Team/baseline_dependent_averaging, github.com/HERA-Team/linsolve, @@ -78537,6 +80325,7 @@ github.com/HXSecurity/DongTai-SDK-Python, github.com/HXWfromDJTU/mobile_bridge_js,num_dependents_deps.dev:0 github.com/HXWfromDJTU/rainbow-websocket,num_dependents_deps.dev:0 github.com/HXWfromDJTU/sw-koa,num_dependents_deps.dev:0 +github.com/HXavS/sync-branches, github.com/HY88883/react-native-common-components,num_dependents_deps.dev:0 github.com/HY88883/react-native-usefulapp, github.com/HYChou0515/utensil, @@ -78549,6 +80338,7 @@ github.com/HYPERTEGRITY-AG/OpenSim, github.com/HYang1996/NetworkSim, github.com/HZFE/mina-webpack-plugin,num_dependents_deps.dev:0 github.com/HZFE/wxml-loader,num_dependents_deps.dev:0 +github.com/HZKnight/github-tag-action, github.com/HZYDZT/hzytest,num_dependents_deps.dev:0 github.com/HZooly/create-discord-bot,num_dependents_deps.dev:0 github.com/HZooly/discord-bot-invitation,num_dependents_deps.dev:0 @@ -78564,6 +80354,7 @@ github.com/HaNdTriX/generator-web-extension,num_dependents_deps.dev:0 github.com/HaNdTriX/meteor-chrome-extension-utils,num_dependents_deps.dev:0 github.com/HaNdTriX/next-electron-server,num_dependents_deps.dev:0 github.com/HaRo87/mdbom, +github.com/HaaLeo/publish-vscode-extension, github.com/HaaLeo/pylint-file-header, github.com/HaaLeo/swarmlib, github.com/Haagimus/DbObjectCreator, @@ -78663,6 +80454,7 @@ github.com/HackerHappyHour/mailray,num_dependents_deps.dev:0 github.com/HackerHappyHour/mucky,num_dependents_deps.dev:0 github.com/HackerHappyHour/reveal,num_dependents_deps.dev:0 github.com/HackerHappyHour/rxjs-node,num_dependents_deps.dev:0 +github.com/HackerHappyHour/tagging-strategy, github.com/HackerNews/API,criticality_score:0.420240 github.com/HackerParadise2014/el_pinguino,num_dependents_deps.dev:0 github.com/HackerParadise2014/ensnare_bnb,num_dependents_deps.dev:0 @@ -78672,10 +80464,13 @@ github.com/HackerThemes/theme-kit,num_dependents_deps.dev:0 github.com/HackerThemes/theme-machine,num_dependents_deps.dev:0 github.com/HackerWand/ADate,num_dependents_deps.dev:0 github.com/HackerWins/summernote,num_dependents_deps.dev:0 +github.com/Hackerdash/csharptestttt, +github.com/Hackerdash/task-python-java-pas, github.com/Hackerfleet/hfos, github.com/HackersAtivistas/MonitoraBrasil,num_dependents_deps.dev:0 github.com/HackingGate/react-native-hg-tooltip,num_dependents_deps.dev:0 github.com/HackingGate/react-native-twitter-signin,num_dependents_deps.dev:0 +github.com/HackingGate/typst-out, github.com/Hackl0us/SS-Rule-Snippet,criticality_score:0.357990 github.com/Hacklone/angular-cool,num_dependents_deps.dev:0 github.com/Hacklone/angular1to2,num_dependents_deps.dev:0 @@ -78693,14 +80488,18 @@ github.com/Hackplayers/hackthebox-writeups,criticality_score:0.361480 github.com/Hackrrr/BakalariAPI, github.com/HackryHQ/Hackry-SDK-JS,num_dependents_deps.dev:0 github.com/HackryHQ/mymlh-mock,num_dependents_deps.dev:0 +github.com/Hacks4Snacks/secret-search, github.com/HacksawStudios/NoSleep.js,num_dependents_deps.dev:0 github.com/HacksawStudios/basisu,num_dependents_deps.dev:0 github.com/HacksawStudios/heaps,num_dependents_deps.dev:0 +github.com/Hacksore/node-red-flow, github.com/Hacksore/react-skinview3d,num_dependents_deps.dev:0 github.com/Hackstr/react-native-chess,num_dependents_deps.dev:0 github.com/Hacktix/expressjs-check,num_dependents_deps.dev:0 github.com/Hackuarium/legoino-device-information, github.com/Hackuarium/legoino-util, +github.com/HackzCompany/doppler-secrets-upload-action, +github.com/HackzCompany/vercel-env-push-action, github.com/Hackzzila/awesome-json,num_dependents_deps.dev:0 github.com/Hackzzila/node-ffmpeg-binaries,num_dependents_deps.dev:4 github.com/Hactar-js/hactar,num_dependents_deps.dev:0 @@ -78814,6 +80613,7 @@ github.com/HaileyBot/sanitize-role-mentions,num_dependents_deps.dev:0 github.com/Hailiax/DocsJS,num_dependents_deps.dev:0 github.com/Hailin-Wang/abageotests, github.com/HailongJson/vue-area-linkage,num_dependents_deps.dev:0 +github.com/Haimantika/random, github.com/Hainish/mobettah,num_dependents_deps.dev:0 github.com/HaipingXiaotong/vue-particle,num_dependents_deps.dev:0 github.com/HaipingXiaotong/vue-scroll,num_dependents_deps.dev:0 @@ -78939,6 +80739,7 @@ github.com/Hale-Lee/RuleEngine,num_dependents_deps.dev:0 github.com/Haleydu/Cimoc,criticality_score:0.432710 github.com/Half-Shot/matrix-appservice-discord,criticality_score:0.467410 github.com/Half-Shot/matrix-lastactive,num_dependents_deps.dev:0 +github.com/HalfCoke/download2release, github.com/HalfDeadPie/Yum4FIT, github.com/HalfDeadPie/labelord_halfdeadpie, github.com/HalfEmpty19/ArtiPy, @@ -79056,6 +80857,7 @@ github.com/Hamilkar247/usim800_hamilkar, github.com/HamiltonInsurance/outlook_msg, github.com/HamiltonMassango/LIB-JS,num_dependents_deps.dev:0 github.com/HamiltonWang/redux-event-emitter, +github.com/Hamish-taylor/ChatGPT-Documentation-Checker, github.com/HamishClulee/internal-analytics,num_dependents_deps.dev:0 github.com/HamishClulee/internal-insights,num_dependents_deps.dev:0 github.com/HamishWHC/geothmetic-meandian,num_dependents_deps.dev:0 @@ -79108,6 +80910,7 @@ github.com/Hanaasagi/XXTEA-Rust,num_dependents_deps.dev:0 github.com/Hanaasagi/machine-uid,num_dependents_deps.dev:0 github.com/Hanaasagi/rikka, github.com/Hanaasagi/ticket,num_dependents_deps.dev:0 +github.com/Hanaasagi/zig-action-cache, github.com/HanabiLab/github-trending,num_dependents_deps.dev:0 github.com/HanabishiRecca/Discord-Slim,num_dependents_deps.dev:0 github.com/HananyTolba/MakePrediction, @@ -79290,6 +81093,7 @@ github.com/HaolinHom/entry-builder,num_dependents_deps.dev:0 github.com/HaolinHom/material-colour, github.com/HaolinHom/std-logger,num_dependents_deps.dev:0 github.com/HaolingZHANG/ReverseEncodingTree, +github.com/Haonannn/waka-box, github.com/HaopengSun/lotide,num_dependents_deps.dev:0 github.com/HaoqiangChen/gitbook-plugin-flexible-linkcard,num_dependents_deps.dev:0 github.com/HaoqiangChen/gitbook-plugin-theme-hqbook,num_dependents_deps.dev:0 @@ -79298,6 +81102,7 @@ github.com/HaoruoLiu/richclub, github.com/Haos616/django-static-angular, github.com/Haos616/django-static-jquery, github.com/Haotian9850/djmongoauth, +github.com/Haoxi-Huang/trello-github-actions, github.com/HaoxiangShen/react-quick-resizable,num_dependents_deps.dev:0 github.com/Haoxuan8/react-spin, github.com/HaoyCn/babel-plugin-import-editor,num_dependents_deps.dev:0 @@ -79409,11 +81214,13 @@ github.com/Haravan/haramultipass,num_dependents_deps.dev:0 github.com/Haravan/haravan-validate,num_dependents_deps.dev:0 github.com/Haravan/haravan_python_api, github.com/HarborZeng/hexo-photoswipe,num_dependents_deps.dev:0 +github.com/Harbour-Enterprises/github-action-linear, github.com/HarbourProject/stakebank,num_dependents_deps.dev:0 github.com/HardAndHeavy/project-lvl1-s101,num_dependents_deps.dev:0 github.com/HardAndHeavy/project-lvl2-s102,num_dependents_deps.dev:0 github.com/HardAndHeavy/project-lvl3-s103,num_dependents_deps.dev:0 github.com/HardHook/SecretF, +github.com/HardNorth/github-version-generate, github.com/HardTacos/riot-games-api-nodejs, github.com/HardTacos/youtube-playlist-dl,num_dependents_deps.dev:0 github.com/HardcorePlayer/create-my,num_dependents_deps.dev:0 @@ -79452,6 +81259,7 @@ github.com/HarelAshwal/serialport-sync,num_dependents_deps.dev:0 github.com/HarelAshwal/typegoose-frontend, github.com/HarenBroog/ember-graph-data,num_dependents_deps.dev:0 github.com/Hares-Lab/license, +github.com/HareshPrajapati/esp_idf_build_action, github.com/Haretha74/textColoring-NPM,num_dependents_deps.dev:0 github.com/Hargne/html-creator,num_dependents_deps.dev:2 github.com/Hargne/jest-html-reporter,num_dependents_deps.dev:6 @@ -79490,6 +81298,8 @@ github.com/Harish120896/uClassify,num_dependents_deps.dev:0 github.com/HarishDevadiga/react-native-push-alarm-notification,num_dependents_deps.dev:0 github.com/HarishJangra/react-native-sketch-canvas,num_dependents_deps.dev:0 github.com/HarishSha/npm-sample1,num_dependents_deps.dev:0 +github.com/HarishTeens/hacktoberfest-greet, +github.com/HarishTeens/woofy-actions, github.com/Harishn28/react-native-signview,num_dependents_deps.dev:0 github.com/Harkamal/rails_api_doc,num_dependents_deps.dev:0 github.com/Harkame/JapScanDownloader, @@ -79510,11 +81320,13 @@ github.com/HarleyKwyn/tessel-wifi-controller,num_dependents_deps.dev:0 github.com/HarmoGlace/teamy,num_dependents_deps.dev:0 github.com/HarmoWatch/ngx-redux-core,num_dependents_deps.dev:0 github.com/HarmoWatch/openapi-generator-cli,num_dependents_deps.dev:0 +github.com/Harmon758/postgresql-action, github.com/Harmonickey/ng2-smart-table, github.com/Harmouch101/frozndict, github.com/Harmouch101/pydist2, github.com/Harmoware/Harmoware-VIS,num_dependents_deps.dev:0 github.com/HarmvZ/rpi_ws281x_mock, +github.com/HarmvZ/set-package-json-version-action, github.com/Haroenv/dedent.macro,num_dependents_deps.dev:0 github.com/Haroenv/floating.js,num_dependents_deps.dev:0 github.com/Haroenv/gatsby-plugin-algolia,num_dependents_deps.dev:0 @@ -79567,6 +81379,7 @@ github.com/Harry-Chen/rust-mips,num_dependents_deps.dev:0 github.com/Harry-Chen/thu-learn-lib,num_dependents_deps.dev:0 github.com/Harry-Lees/PyPressure, github.com/Harry-Lees/TemperaturePy, +github.com/Harry-Moore-dev/bump-tf-values, github.com/Harry-qi/cmq-cli, github.com/Harry24k/bayesian-neural-network, github.com/HarryBurns/karma-json-to-file-reporter,num_dependents_deps.dev:0 @@ -79580,6 +81393,7 @@ github.com/HarryChen1995/print_hello, github.com/HarryDolan/qquery, github.com/HarryET/Tokeni,num_dependents_deps.dev:0 github.com/HarryET/relayx,num_dependents_deps.dev:0 +github.com/HarryGogonis/docker-monorepo-action, github.com/HarryGogonis/immutable-transform-matrix,num_dependents_deps.dev:4 github.com/HarryGogonis/redux-routines-ts, github.com/HarryGull/generator-hmrcnodeprototype,num_dependents_deps.dev:0 @@ -79643,6 +81457,9 @@ github.com/Harsh1347/FPLDATA, github.com/HarshCasper/Data-Structures, github.com/HarshCasper/Rotten-Scripts,criticality_score:0.477850 github.com/HarshCasper/WebEdge, +github.com/HarshCasper/cloud-pod-save, +github.com/HarshCasper/validate-issues-over-pull-requests, +github.com/HarshKapadia2/deta-deploy, github.com/HarshKapadia2/nanonets-ocr,num_dependents_deps.dev:0 github.com/HarshKhandeparkar/calculate-js, github.com/HarshKhandeparkar/gpujs-real-renderer, @@ -79677,6 +81494,7 @@ github.com/HartiganHM/component-library,num_dependents_deps.dev:0 github.com/HartleyAHartley/RiichiRoyale, github.com/HartleyOriginalJam/fetch-with-log,num_dependents_deps.dev:0 github.com/Hartorn/XplaiNet, +github.com/Haru-T/zola-deploy-action, github.com/Haru1990/easy-print,num_dependents_deps.dev:0 github.com/Haru1990/my-first-module,num_dependents_deps.dev:0 github.com/Haru1990/yapi-plugin-sso2,num_dependents_deps.dev:0 @@ -79821,6 +81639,7 @@ github.com/HassanKadhem/django-custom-remote-user, github.com/HassanKrayem/devegram-ml,num_dependents_deps.dev:0 github.com/HassanKrayem/devegram-npm-vue-smart-input-component,num_dependents_deps.dev:0 github.com/HassanKrayem/vuex-ajax-manager,num_dependents_deps.dev:0 +github.com/HassanOnsori/my-first-action, github.com/HassanRady/TweetAnalysis, github.com/HassanRady/mba, github.com/HassanShulli/npm-cc-validate,num_dependents_deps.dev:0 @@ -79846,12 +81665,15 @@ github.com/HatStephens/make_me_a_gem_called,num_dependents_deps.dev:0 github.com/HatStephens/time_until_break,num_dependents_deps.dev:0 github.com/HatakoHaterson/CourseZero, github.com/Hatcat123/HubbleSec, +github.com/Hatch-Arcade/actions-vault-aws-secret, github.com/Hatchin/FlowSOM, github.com/HatemEng/Youtube_Unlimited_Search, github.com/HatemJerbi/bootstrap-treeview,num_dependents_deps.dev:0 github.com/HathorNetwork/hathor-wallet-lib,num_dependents_deps.dev:0 github.com/HathorNetwork/python-hathorlib, github.com/HathorTechnologies/hathor-processing, +github.com/Hathoute/action-create-comment, +github.com/Hathoute/semantic-version, github.com/HatiEth/ethsset,num_dependents_deps.dev:0 github.com/Hatisoft/koteky,num_dependents_deps.dev:0 github.com/Hatisoft/koteky-lib,num_dependents_deps.dev:0 @@ -79864,8 +81686,11 @@ github.com/Hatoris/RemoveMedia, github.com/Hatoris/taskwarrior_jrnl_hook, github.com/HatsuneMiku/googleDriveAccess, github.com/HatsuneMiku/pytz-memcache, +github.com/HatsuneMiku3939/direnv-action, github.com/HaturiHanzo/svg-extras,num_dependents_deps.dev:0 github.com/Hatyman/react-native-background-service,num_dependents_deps.dev:0 +github.com/Hatzelencio/create-ref, +github.com/Hatzelencio/merge-branch, github.com/Hatzz/express-auto-import-routes,num_dependents_deps.dev:0 github.com/Hau-Hau/Dreqt,num_dependents_deps.dev:0 github.com/Haufe-Lexware/hl.pas.samlplugin, @@ -79972,6 +81797,7 @@ github.com/Hayashi-Yudai/pykk, github.com/Haycher/vue-mobile-message,num_dependents_deps.dev:0 github.com/Haycher/vue-mobile-tap,num_dependents_deps.dev:0 github.com/Hayden-J-C/pybungie, +github.com/HaydenMacDonald/multigitminder, github.com/Hayder-Suwaed/lotide, github.com/HaykMan95/currency-converter-for-all,num_dependents_deps.dev:0 github.com/HaykSD/Text-into-image, @@ -80088,9 +81914,11 @@ github.com/HeMan/jobbergate, github.com/HeMan/micropython-ws2801, github.com/HeMiaoQ/FED-cli,num_dependents_deps.dev:0 github.com/HeMiaoQ/commonValidate,num_dependents_deps.dev:0 +github.com/HeRoMo/pronto-action, github.com/HeRoMo/site-checker,num_dependents_deps.dev:0 github.com/HeToC/sp-redux,num_dependents_deps.dev:0 github.com/HeWeMel/nographs, +github.com/HeadFox/mjml2sendgrid, github.com/HeadFox/npm-update-tool,num_dependents_deps.dev:0 github.com/HeadMad/postcss-cellspan,num_dependents_deps.dev:0 github.com/HeadMad/postcss-simple-media,num_dependents_deps.dev:0 @@ -80254,6 +82082,8 @@ github.com/HebiRobotics/MatFileLib,num_dependents_deps.dev:0 github.com/HebiRobotics/MatlabTools,num_dependents_deps.dev:0 github.com/HebiRobotics/QuickBuffers,num_dependents_deps.dev:0 github.com/HebiRobotics/RoboBuffers,num_dependents_deps.dev:0 +github.com/Hebilicious/action-netlify-deploy, +github.com/Hebilicious/reproduire, github.com/HecJimSan/stub-cli,num_dependents_deps.dev:0 github.com/HechengLi/vue-dual-listbox,num_dependents_deps.dev:0 github.com/Hecmatyar/react-date-range, @@ -80287,6 +82117,7 @@ github.com/Hedgehogking/iview,num_dependents_deps.dev:0 github.com/Hedgehogking/vue-metronic,num_dependents_deps.dev:0 github.com/Hedgehogking/vue-metronic-cli,num_dependents_deps.dev:0 github.com/Hedgehogking/yp-iview-2143,num_dependents_deps.dev:0 +github.com/Hedgehogs0808/UpdateCsprojectVersion, github.com/Hedgehogues/HoChiMinh, github.com/Hedgehogues/abc-storage, github.com/Hedgehogues/python-clients, @@ -80326,6 +82157,7 @@ github.com/Hedzer/yield-uid,num_dependents_deps.dev:4 github.com/Hee-San/num_ja,num_dependents_deps.dev:0 github.com/HeeL/der-die-das-js,num_dependents_deps.dev:0 github.com/HeeL/social_poster,num_dependents_deps.dev:0 +github.com/HeeSeok-kim/Automation_Issue_Closed, github.com/HeegyuKim/symspellpy-ko, github.com/HeekangPark/KoZIP, github.com/HeekangPark/hk-utils, @@ -80454,6 +82286,7 @@ github.com/HeliumEdu/heliumcli, github.com/HelixDesignSystem/helix-react,num_dependents_deps.dev:0 github.com/HelixDesignSystem/helix-ui, github.com/HelixOne/letojs,num_dependents_deps.dev:0 +github.com/HelixSleep/github-action-jira-status-check, github.com/HelixW/serve-express,num_dependents_deps.dev:0 github.com/Hell13Cat/PyOSU, github.com/HellAmbro/Trading212API, @@ -80513,6 +82346,7 @@ github.com/HelloMoli/fantasy.github.io,num_dependents_deps.dev:0 github.com/HelloMrBharath/image-pdf-slider, github.com/HelloMrGeorge/LinearAlgebraMachine, github.com/HelloMustard/lyra,num_dependents_deps.dev:0 +github.com/HelloOffice/approve-hotfix-action, github.com/HelloPopartz/rest-api-handler, github.com/HelloQingGuo/react-vivus,num_dependents_deps.dev:8 github.com/HelloRuiLi/create-react-ts-app,num_dependents_deps.dev:0 @@ -80563,6 +82397,7 @@ github.com/Helmasaur/Zodiac-signs,num_dependents_deps.dev:0 github.com/Helmasaur/ac-keijiban,num_dependents_deps.dev:0 github.com/Helmholtz-AI-Energy/HyDe, github.com/HelmholtzAI-Consultants-Munich/forest_guided_clustering, +github.com/Helmisek/conventional-changelog-generator, github.com/Helow19274/aiogTTS, github.com/Help-a-Sloth/mischief-managed, github.com/HelpHero/helphero-javascript,num_dependents_deps.dev:0 @@ -80849,6 +82684,7 @@ github.com/HerbLuo/babel-plugin-kotlish-also,num_dependents_deps.dev:0 github.com/HerbLuo/p-single,num_dependents_deps.dev:0 github.com/HerbLuo/qr-code-with-logo,num_dependents_deps.dev:8 github.com/HerbLuo/sync-proxy,num_dependents_deps.dev:0 +github.com/Herber230/action-check-base-image, github.com/Herber230/entifix-ts-backend,num_dependents_deps.dev:0 github.com/Herber230/entifix-ts-frontend,num_dependents_deps.dev:0 github.com/Herber230/entitixts-backend,num_dependents_deps.dev:0 @@ -80900,15 +82736,21 @@ github.com/HerixOfficial/discord-input, github.com/HerixOfficial/genshin-impact,num_dependents_deps.dev:0 github.com/Herlevsen/formstate-ts,num_dependents_deps.dev:0 github.com/Herlinus/coloquent,num_dependents_deps.dev:0 +github.com/Herlitzd/aws-parameter-store-env-action, github.com/Herlitzd/kweery,num_dependents_deps.dev:0 github.com/HermSidhu/lotide,num_dependents_deps.dev:0 github.com/Hermaia/hersite,num_dependents_deps.dev:0 +github.com/Herman-Wu/databrick-install-lib-action, +github.com/Herman-Wu/databrick-notebook-run-action, github.com/HermanNygaard/Karakterweb-CLI,num_dependents_deps.dev:0 github.com/HermanNygaard/react-scroll-to-top, github.com/Hermaner/redux-persist-immutable,num_dependents_deps.dev:0 github.com/HermannBjorgvin/Kennitala,num_dependents_deps.dev:0 github.com/HermannHH/mcduck,num_dependents_deps.dev:0 github.com/HermannPencole/mocha-html-reporter,num_dependents_deps.dev:0 +github.com/Hermanverschooten/scp-deploy, +github.com/Hermanverschooten/ssh-copy-command-action, +github.com/Hermanverschooten/wireguard, github.com/Hermanya/classnamed-components,num_dependents_deps.dev:0 github.com/Hermanya/color-system,num_dependents_deps.dev:0 github.com/Hermanya/create-react-hook,"criticality_score:0.309670,num_dependents_deps.dev:0" @@ -80937,6 +82779,7 @@ github.com/HermesWu/theone-react,num_dependents_deps.dev:0 github.com/Herminia-Jimenez/Calculater, github.com/HermitOS/mergepdfs, github.com/HermitOS/pdfconverter, +github.com/HermitSun/latex-action, github.com/Hernan4444/PyNetworkD3, github.com/HernandezAH21/ah-js-folder,num_dependents_deps.dev:0 github.com/Herndl/silverback,num_dependents_deps.dev:0 @@ -80991,6 +82834,7 @@ github.com/HerrZatacke/sstv,num_dependents_deps.dev:0 github.com/Herrad/neoscan,num_dependents_deps.dev:0 github.com/HerringtonDarkholme/gulp-jedi,num_dependents_deps.dev:0 github.com/HerringtonDarkholme/gulp-progeny,num_dependents_deps.dev:0 +github.com/HerringtonDarkholme/jest-coverage-report-action, github.com/HerringtonDarkholme/json-big,num_dependents_deps.dev:0 github.com/HerringtonDarkholme/overkill,num_dependents_deps.dev:0 github.com/HerringtonDarkholme/pattern,num_dependents_deps.dev:2 @@ -81002,6 +82846,7 @@ github.com/HerryLo/gulpZip,num_dependents_deps.dev:0 github.com/HerryYT/JSBinaryUtils,num_dependents_deps.dev:0 github.com/HerryYT/JSPrismarine,num_dependents_deps.dev:0 github.com/HerryYT/JSRakNet,num_dependents_deps.dev:0 +github.com/HerryYT/setup-ndk, github.com/Herschel/puremp3,num_dependents_deps.dev:0 github.com/Herschel/swf-rs,num_dependents_deps.dev:0 github.com/Hersh500/pistachio, @@ -81076,12 +82921,15 @@ github.com/HexCommunity/hex,num_dependents_deps.dev:0 github.com/HexDecimal/libtcod-cffi, github.com/HexDexFinance/uikit,num_dependents_deps.dev:0 github.com/HexF/DataJetJS,num_dependents_deps.dev:0 +github.com/HexF/chart-testing-action, github.com/HexFiend/HexFiend,criticality_score:0.454070 github.com/HexHive/retrowrite,criticality_score:0.325900 github.com/HexMox/geoman, github.com/HexMox/goman,num_dependents_deps.dev:0 github.com/HexNio/booking_scraper, github.com/HexNio/ssl_pinning_remover, +github.com/HexRabbit/whitespace-lint, +github.com/HexUML/github-action, github.com/HexaCubist/parsify-basejump,num_dependents_deps.dev:0 github.com/HexaField/snowpack-plugin-import-replacer,num_dependents_deps.dev:0 github.com/HexaField/snowpack-plugin-skypack-replacer,num_dependents_deps.dev:0 @@ -81111,7 +82959,9 @@ github.com/Hexiro/autorequests, github.com/Hexiro/randomword, github.com/Hexlet/analytics-pipedream,num_dependents_deps.dev:0 github.com/Hexlet/cli,num_dependents_deps.dev:0 +github.com/Hexlet/project-action, github.com/Hexlet/ru-test-assignments,criticality_score:0.339110 +github.com/HexlyOSS/hashi-k8s, github.com/HexlyOSS/node-dbo,num_dependents_deps.dev:0 github.com/HexlyOSS/systemjs,num_dependents_deps.dev:0 github.com/Hexmagic/dummy_useragent, @@ -81175,6 +83025,7 @@ github.com/Heyzap/heyzap-cordova-unityads, github.com/Hezi-Resheff/trajectory-aa-move-ecol, github.com/Hezko/MineBlown-GameUI,num_dependents_deps.dev:0 github.com/Hezko/MineBlown-Logic,num_dependents_deps.dev:0 +github.com/Hezkore/setup-blitzmax-action, github.com/Hfimy/redux-mina,num_dependents_deps.dev:0 github.com/Hfimy/staticfile-server,num_dependents_deps.dev:0 github.com/Hggo/vue-generic-application,num_dependents_deps.dev:0 @@ -81192,6 +83043,7 @@ github.com/HiCoinCom/js-wapi-sdk, github.com/HiCommon/contentful-sync, github.com/HiDAl/node-apac,num_dependents_deps.dev:0 github.com/HiDEVTeam/udp-rcon,num_dependents_deps.dev:0 +github.com/HiDeoo/changelogithub-action, github.com/HiDeoo/image-size.macro,num_dependents_deps.dev:0 github.com/HiDeoo/intro.js-react,num_dependents_deps.dev:18 github.com/HiDeoo/stylelint-formatter-yasf,num_dependents_deps.dev:0 @@ -81232,6 +83084,8 @@ github.com/HiTask/moment-recur,num_dependents_deps.dev:0 github.com/HiTask/react-big-calendar,num_dependents_deps.dev:0 github.com/HiTask/react-calendar,num_dependents_deps.dev:0 github.com/HiTask/redux-thunk-fsa,num_dependents_deps.dev:0 +github.com/HiWay-Media/Nvenc-ImageMagick, +github.com/HiWay-Media/nvenc-docker, github.com/HiYa1009/censorify,num_dependents_deps.dev:0 github.com/HiYue/vuepress-component-font-awesome,num_dependents_deps.dev:0 github.com/HiYue/vuepress-plugin-contact-us,num_dependents_deps.dev:0 @@ -81241,6 +83095,7 @@ github.com/HiagoMM/react-hmm-template,num_dependents_deps.dev:0 github.com/HiagoMachado777/atomicity,num_dependents_deps.dev:0 github.com/Hibear/verify, github.com/HibearME/NeuralEE, +github.com/HiberWorld/code-kit-upload, github.com/Hiberbee/graphql-gateway,num_dependents_deps.dev:0 github.com/HibiKier/nonebot_plugin_gamedraw, github.com/HibikineKage/clean, @@ -81309,7 +83164,10 @@ github.com/Highjhacker/pythark, github.com/Highnesslin/useFetch,num_dependents_deps.dev:0 github.com/HighteaCollaboration/hightea-client, github.com/HighteaCollaboration/hightea-plotting, +github.com/HighwayThree/jira-extract-issue-keys, github.com/HighwayThree/jira-github-actions-common,num_dependents_deps.dev:0 +github.com/HighwayThree/jira-upload-build-info, +github.com/HighwayThree/jira-upload-deployment-info, github.com/Highwinds/striketracker, github.com/HigoRibeiro/adonis-grapfql,num_dependents_deps.dev:0 github.com/HigorMonteiro/spotify-wrapper,num_dependents_deps.dev:0 @@ -81393,6 +83251,7 @@ github.com/Himenon/typescript-template,num_dependents_deps.dev:0 github.com/Himenon/web2pdf,num_dependents_deps.dev:0 github.com/Himenon/yarnlock-dedupe-check, github.com/Himmas/NeteaseMusicApi,num_dependents_deps.dev:0 +github.com/HimoSoft/ftp-deploy, github.com/Himscipy/BPrune, github.com/Himself12794/app-utilities, github.com/Himself65/Thanos.js,num_dependents_deps.dev:0 @@ -81528,6 +83387,8 @@ github.com/Hirobreak/react-dropdown-date,num_dependents_deps.dev:0 github.com/HirokiMiyaoka/QRLite,num_dependents_deps.dev:0 github.com/HirokiNagase/nnn-router,num_dependents_deps.dev:0 github.com/HirokiUmatani/PearPackage, +github.com/HiromiShikata/gh-actions-move-all-cards-on-projects, +github.com/HiromiShikata/gh-actions-move-waiting-cards-on-projects, github.com/Hironsan/HateSonar, github.com/Hironsan/anago, github.com/Hironsan/asari, @@ -81653,6 +83514,7 @@ github.com/Hivemapper/datagraph,num_dependents_deps.dev:0 github.com/Hivemapper/open-telemetry-kit, github.com/HivemindAG/app-backend,num_dependents_deps.dev:0 github.com/HivemindAG/app-cache,num_dependents_deps.dev:0 +github.com/HivenOu/cd-action, github.com/Hixan/av_slice, github.com/Hiyafoo/node-vrealize,num_dependents_deps.dev:0 github.com/Hiyurigi/NLP,num_dependents_deps.dev:0 @@ -81794,6 +83656,9 @@ github.com/Hoishin/prettierrc,num_dependents_deps.dev:0 github.com/Hoishin/serverless-lambda,num_dependents_deps.dev:0 github.com/Hoishin/twitter-account-crawler,num_dependents_deps.dev:0 github.com/Hoishin/xiii-save-manager,num_dependents_deps.dev:0 +github.com/Hojland/gha-chglog, +github.com/Hojland/gha-pypi-versions, +github.com/Hojland/github-changelog-action, github.com/Hojondo/react-dependent-form, github.com/Hokid/create-react-app,num_dependents_deps.dev:0 github.com/Hokid/modori,num_dependents_deps.dev:0 @@ -81827,6 +83692,7 @@ github.com/HoldYourWaffle/schemats,num_dependents_deps.dev:0 github.com/HoldYourWaffle/ts-call-site,num_dependents_deps.dev:0 github.com/HoldYourWaffle/tsoa-iso,num_dependents_deps.dev:0 github.com/HoldemPokerTools/HandMatrix,num_dependents_deps.dev:0 +github.com/HoldenLucas/build-jenkins-job, github.com/HoldenMilne/printfuk, github.com/HoldenMorris/nra,num_dependents_deps.dev:0 github.com/Holdy/KnowledgeGraphJS,num_dependents_deps.dev:0 @@ -81894,6 +83760,10 @@ github.com/Holixus/nano-unifs,num_dependents_deps.dev:0 github.com/Hollander/tuco.js,num_dependents_deps.dev:0 github.com/Holliehens/lotide,num_dependents_deps.dev:0 github.com/Holllo/opyml, +github.com/HollowMan6/GitHub-Issues-to-Wechat, +github.com/HollowMan6/Site-Notifications, +github.com/HollowMan6/Wechat-Timed-Message, +github.com/HollowMan6/sarif4reviewdog, github.com/HollyAssistTeam/holly_sdk, github.com/HollyIT/boot-mix,num_dependents_deps.dev:0 github.com/HollyPony/react-rest-api,num_dependents_deps.dev:0 @@ -81939,6 +83809,7 @@ github.com/HolyMarcell/hmc-hooks,num_dependents_deps.dev:0 github.com/HolyMeekrob/metalsmith-page-data,num_dependents_deps.dev:0 github.com/HolyMeekrob/metalsmith-transformer,num_dependents_deps.dev:0 github.com/HolyMeekrob/trello-yello,num_dependents_deps.dev:0 +github.com/HolyNoodle/monorepo-coverage-diff, github.com/HolyPi/HearthstoneAPI, github.com/HolyPi/String-JS-exercises,num_dependents_deps.dev:0 github.com/HolyWu/vs-basicvsr, @@ -81975,8 +83846,10 @@ github.com/HomeSkyLtd/homecloud-controller,num_dependents_deps.dev:0 github.com/HomeSkyLtd/sn-node,num_dependents_deps.dev:0 github.com/HomeXLabs/collectington, github.com/HomeXLabs/hxid-python, +github.com/HomeXLabs/review-comment-etiquette-action, github.com/HomeXLabs/reviewington, github.com/HomeXLabs/use-unique-id,num_dependents_deps.dev:0 +github.com/HomeXLabs/vault-aws-authentication, github.com/Homebrew/brew,criticality_score:0.859010 github.com/Homebrew/formulae.brew.sh,criticality_score:0.607120 github.com/Homebrew/homebrew,num_dependents_deps.dev:0 @@ -82039,6 +83912,7 @@ github.com/Hong-Xiang/dxl, github.com/HongDou-Client-Library/HongDou-Client-Library,num_dependents_deps.dev:0 github.com/HongJea-Park/robust_EM_for_gmm, github.com/HongJunhyoung/Snowball, +github.com/HongLinLiao/echo-action, github.com/HongSeokHwan/ait, github.com/HongSeokHwan/dit, github.com/HongSeokHwan/qmi, @@ -82074,6 +83948,7 @@ github.com/Hongcheng1997/pls-template,num_dependents_deps.dev:0 github.com/HongleiXie/budgetCB, github.com/Hongleilibs/cordova-plugin-photoviewer,num_dependents_deps.dev:0 github.com/Hongleilibs/cordova-plugin-telerik-imagepicker,num_dependents_deps.dev:0 +github.com/HongweiLuan/AutoML_production, github.com/HongxuChen/rust-koans,num_dependents_deps.dev:0 github.com/HongxuChen/sbib,num_dependents_deps.dev:0 github.com/HonmaMeikodesu/covid-19-datalist, @@ -82219,6 +84094,7 @@ github.com/HorizonCoding/jwtverify,num_dependents_deps.dev:0 github.com/Horlando-Leao/FriendlyArguments, github.com/Horlando-Leao/TextColorized, github.com/HorlogeSkynet/archey4, +github.com/HormCodes/do-not-deploy-on-friday, github.com/HornsAndHooves/lazy_object,num_dependents_deps.dev:2 github.com/Hornwitser/antihtml,num_dependents_deps.dev:0 github.com/Hornwitser/discord_bridge,num_dependents_deps.dev:0 @@ -82259,7 +84135,9 @@ github.com/HoseaLE/sku-calculate,num_dependents_deps.dev:0 github.com/HoseinKhanBeigi/thumbnail-slider,num_dependents_deps.dev:0 github.com/HoseungJang/npx-hsj, github.com/HoseungJang/oasis,num_dependents_deps.dev:0 +github.com/HosniD/close-related-issue, github.com/HosniD/onlineafspraken, +github.com/HosniD/transfer-issue, github.com/HospitalRun/cli,num_dependents_deps.dev:0 github.com/HospitalRun/components,num_dependents_deps.dev:0 github.com/HospitalRun/hospitalrun,criticality_score:0.365870 @@ -82508,6 +84386,7 @@ github.com/Hrushikesh555/watchproject,num_dependents_deps.dev:0 github.com/HrushikeshPawar/Sexagesimal-Calculator, github.com/HrutvikPatel/react-native-character-input,num_dependents_deps.dev:0 github.com/Hrysa/casket.js, +github.com/Hs1r1us/Release-AIO, github.com/HsOjo/OjoPyADB, github.com/HsOjo/PyAndroidTouch, github.com/HsOjo/PyDnfEx, @@ -82717,6 +84596,7 @@ github.com/HubSpot/hspy, github.com/HubSpot/hubspot-api-nodejs,num_dependents_deps.dev:2 github.com/HubSpot/hubspot-api-python, github.com/HubSpot/hubspot-cli,num_dependents_deps.dev:0 +github.com/HubSpot/hubspot-cms-deploy-action, github.com/HubSpot/hubspot-cms-tools,num_dependents_deps.dev:0 github.com/HubSpot/hubspot-php,criticality_score:0.457210 github.com/HubSpot/humanize,num_dependents_deps.dev:106 @@ -82926,12 +84806,15 @@ github.com/HugoTigre/pb-sec,num_dependents_deps.dev:0 github.com/HugoTigre/pb-sys,num_dependents_deps.dev:0 github.com/HugoWickham/apexxpython, github.com/Hugoer/CSSA11y,num_dependents_deps.dev:0 +github.com/Hugollemos/deploy, +github.com/Hugollemos/portainer_stack_deploy, github.com/Hugome/moleculer-bullmq,num_dependents_deps.dev:0 github.com/Hugome/pam-auth-express,num_dependents_deps.dev:0 github.com/Hugovdberg/PIconnect, github.com/Hugovdberg/projecttemplate_python, github.com/Hugovidafe/Crypt,num_dependents_deps.dev:0 github.com/Hugovidafe/useful-api, +github.com/Hugozys/ansible-deploy, github.com/Hui0830/lwh_react,num_dependents_deps.dev:0 github.com/HuiAzir/nchooks,num_dependents_deps.dev:0 github.com/HuiMingLin/hm-cli,num_dependents_deps.dev:0 @@ -83073,6 +84956,7 @@ github.com/HungryUp/datasources-seeder,num_dependents_deps.dev:0 github.com/HungryUp/datasources-seeder-mongoose,num_dependents_deps.dev:0 github.com/HungryUp/graphql-arango-bridge,num_dependents_deps.dev:0 github.com/HungryUp/simple-arangorm-js,num_dependents_deps.dev:0 +github.com/Huniko519/Github-Auto-Follow-Unfollow-View-User-List, github.com/HunjaeJung/airbridge, github.com/Hunlongyu/ZY-Player,criticality_score:0.464390 github.com/Hunlongyu/vue3-contextmenu, @@ -83101,6 +84985,8 @@ github.com/Huntingbear21/pymyransom, github.com/HuntingdonResearch/jadoo,num_dependents_deps.dev:0 github.com/HuntsmanCancerInstitute-RISR/hci-ng-grid,num_dependents_deps.dev:0 github.com/HuntsmanCancerInstitute-RISR/hci-ng-grid-dto,num_dependents_deps.dev:0 +github.com/HuoHuas001/Auto-Catch-BDS-Version, +github.com/HuoHuas001/Minebbs-Auto-Release, github.com/HuobiRDCenter/huobi_Python,criticality_score:0.321730 github.com/Huohuohuo/vue-tcbj,num_dependents_deps.dev:0 github.com/Huong-nt/flask-rak, @@ -83123,6 +85009,8 @@ github.com/Hurobaki/forms-binding-react,num_dependents_deps.dev:0 github.com/Hurobaki/insomnia-plugin-format, github.com/Hurobaki/react-native-bridge-module-boilerplate,num_dependents_deps.dev:0 github.com/Hurreman/tellstick-confparser,num_dependents_deps.dev:0 +github.com/HurricanKai/Docker-NetCore-Template-Github-Actions, +github.com/HurricanKai/Publish-Docker-Github-Action, github.com/HurricaneInteractive/builtin-react,num_dependents_deps.dev:0 github.com/HurricaneInteractive/colour-logger,num_dependents_deps.dev:0 github.com/HurricaneInteractive/in-browser-env,num_dependents_deps.dev:0 @@ -83145,6 +85033,7 @@ github.com/HuseyinKonak/codeproduce,num_dependents_deps.dev:0 github.com/HuseyinSoyturk/digitization, github.com/Huseyinnurbaki/backstage-plugin-gitlab,num_dependents_deps.dev:0 github.com/Huseyinnurbaki/node-html-parser, +github.com/Huseyinnurbaki/wait-action, github.com/HushBugger/hushbugger, github.com/Huskie/boxrec-client,num_dependents_deps.dev:0 github.com/HuskyMoonMoon/winston-logstash-ts,num_dependents_deps.dev:16 @@ -83188,6 +85077,7 @@ github.com/HuuLane/sanitize-html,num_dependents_deps.dev:0 github.com/Huxpro/Forcify,num_dependents_deps.dev:0 github.com/Huxpro/huxpro.github.io,criticality_score:0.462790 github.com/HuxyUK/pyasge, +github.com/Huy-Ngo/gha-sha, github.com/Huy-k60cc/FssOpenapiLanguage,num_dependents_deps.dev:0 github.com/HuyakDD/Huyak-UI,num_dependents_deps.dev:0 github.com/HuyenNguyen011/DemoModule,num_dependents_deps.dev:0 @@ -83309,6 +85199,9 @@ github.com/Hydrock/puzzle.js,num_dependents_deps.dev:0 github.com/Hydrock/test, github.com/Hydrog3n/upload-screenshot,num_dependents_deps.dev:0 github.com/Hydrogen-R3L04D/Hydrogen,num_dependents_deps.dev:0 +github.com/HydrolienF/LauncherJar, +github.com/HydrolienF/Version-Tool, +github.com/HydrolienF/usual, github.com/HydromanAG/react-native-android-installed-apps-unblocking,num_dependents_deps.dev:0 github.com/Hydrophobefireman/catom,num_dependents_deps.dev:0 github.com/Hydrophobefireman/domshot,num_dependents_deps.dev:0 @@ -83377,6 +85270,7 @@ github.com/Hype3808/discordland, github.com/HypeCjho/FireDB,num_dependents_deps.dev:0 github.com/HypeCjho/flame.db, github.com/HypeDis/spotcli, +github.com/HypeRate/action-publish-hex, github.com/HypeScout/HypeBeats,num_dependents_deps.dev:0 github.com/HypeUFO/simple-react-player,num_dependents_deps.dev:0 github.com/Hyper-Coder/simple-youtube-api,num_dependents_deps.dev:0 @@ -83386,6 +85280,8 @@ github.com/HyperBlob/PropManager,num_dependents_deps.dev:0 github.com/HyperBrain/node-jwk,num_dependents_deps.dev:118 github.com/HyperBrain/serverless-models-plugin,num_dependents_deps.dev:0 github.com/HyperBrain/serverless-package-plugin,num_dependents_deps.dev:0 +github.com/HyperChocolat/build-archlinux-package, +github.com/HyperCodec/shuttle-deploy, github.com/HyperDbg/HyperDbg,criticality_score:0.299210 github.com/HyperDunk/meshblu-hue-light-extended,num_dependents_deps.dev:0 github.com/HyperDunk/meshblu-wemo-extended,num_dependents_deps.dev:0 @@ -83406,6 +85302,7 @@ github.com/HyperMD/hypermd-mermaid,num_dependents_deps.dev:0 github.com/HyperMD/hypermd-twemoji,num_dependents_deps.dev:0 github.com/HyperOOP/hyperoop, github.com/HyperPh/PCILib, +github.com/HyperQR/ssh2actions-1, github.com/HyperSimon/markdown-js,num_dependents_deps.dev:0 github.com/HyperSimon/ts-kit,num_dependents_deps.dev:0 github.com/HyperSprite/google-drive-source,num_dependents_deps.dev:0 @@ -83585,6 +85482,8 @@ github.com/Hzyhhh/common,num_dependents_deps.dev:0 github.com/I-Gave/meta-auth,num_dependents_deps.dev:0 github.com/I-Good-Vegetable/JasonUtils, github.com/I-K0haku-I/base-api-connector, +github.com/I-TECH-UW/wait-for-openmrs-action, +github.com/I-Valchev/rss-to-json, github.com/I-We/cxs,num_dependents_deps.dev:0 github.com/I-We/i18n-nationality,num_dependents_deps.dev:0 github.com/I-We/namecase,num_dependents_deps.dev:0 @@ -83670,6 +85569,7 @@ github.com/IAmFletcher/eslint-config,num_dependents_deps.dev:0 github.com/IAmFletcher/eslint-config-epiphany,num_dependents_deps.dev:0 github.com/IAmFletcher/version,num_dependents_deps.dev:0 github.com/IAmFrench/projet_javascript_2017_machine_a_sous,num_dependents_deps.dev:0 +github.com/IAmHughes/giphy-generator, github.com/IAmMasterCraft/api-wrapper,num_dependents_deps.dev:0 github.com/IAmMasterCraft/decipher-jwt,num_dependents_deps.dev:0 github.com/IAmNithi/react-multiselect-dropdown,num_dependents_deps.dev:0 @@ -83679,6 +85579,9 @@ github.com/IAmTheVex/catbox-v8,num_dependents_deps.dev:0 github.com/IAmTheVex/infoeducatie-api-client,num_dependents_deps.dev:0 github.com/IAmTheVex/zuu,num_dependents_deps.dev:0 github.com/IAmTomahawkx/viper-lang, +github.com/IAreKyleW00t/crane-installer, +github.com/IAreKyleW00t/dockerfile-tag-extract-action, +github.com/IAreKyleW00t/regctl-installer, github.com/IBATS/IBATS_BitMexFeeder, github.com/IBATS/IBATS_BitMexTrader, github.com/IBATS/IBATS_Common, @@ -83776,6 +85679,7 @@ github.com/IBM/cloud-pak-operations-cli, github.com/IBM/cloudant-java-sdk,num_dependents_deps.dev:8 github.com/IBM/cloudant-node-sdk,num_dependents_deps.dev:0 github.com/IBM/cloudant-python-sdk, +github.com/IBM/cloudfoundry-deploy, github.com/IBM/code-engine-java-sdk,num_dependents_deps.dev:0 github.com/IBM/code-engine-node-sdk,num_dependents_deps.dev:0 github.com/IBM/code-engine-python-sdk, @@ -83789,6 +85693,11 @@ github.com/IBM/data-gate-cli, github.com/IBM/data-virtualization-on-cloud-node-sdk,num_dependents_deps.dev:0 github.com/IBM/data-virtualization-on-cloud-python-sdk, github.com/IBM/datastage-node-sdk,num_dependents_deps.dev:0 +github.com/IBM/devopsauto-functest-actions, +github.com/IBM/devopsauto-integrtest-actions, +github.com/IBM/devopsauto-perftest-actions, +github.com/IBM/devopsauto-testserver-actions, +github.com/IBM/devopsauto-uitest-actions, github.com/IBM/diem,num_dependents_deps.dev:0 github.com/IBM/differential-privacy-library,Google github.com/IBM/doframework, @@ -83889,6 +85798,7 @@ github.com/IBM/redstone, github.com/IBM/rotisserie,num_dependents_deps.dev:0 github.com/IBM/ruby-kubernetes-controller,num_dependents_deps.dev:0 github.com/IBM/ruby-sdk-core,num_dependents_deps.dev:1 +github.com/IBM/satellite-config-upload-action, github.com/IBM/scc-node-sdk,num_dependents_deps.dev:0 github.com/IBM/scc-python-sdk, github.com/IBM/schematics-java-sdk,num_dependents_deps.dev:0 @@ -84133,6 +86043,8 @@ github.com/IET-OU/our-journey,num_dependents_deps.dev:0 github.com/IEUNJI/npm-cli,num_dependents_deps.dev:0 github.com/IEUNJI/npm-hello,num_dependents_deps.dev:0 github.com/IEfucker/oninput-polyfill,num_dependents_deps.dev:0 +github.com/IEvangelist/profanity-filter, +github.com/IEvangelist/resource-translator, github.com/IFAEControl/pyttilan, github.com/IFAEControl/pyvsr53dl, github.com/IFAEControl/zmqCS, @@ -84214,6 +86126,7 @@ github.com/IIIF-Commons/vocabulary,num_dependents_deps.dev:78 github.com/IIIF/awesome-iiif,criticality_score:0.383060 github.com/IIIF/iiif-prezi, github.com/IIIF/image-api, +github.com/IIIMPACT/firebase-firestore-testing-action, github.com/IIINIII/Data-Validator,num_dependents_deps.dev:0 github.com/IIINIII/JDV-NodeJS,num_dependents_deps.dev:0 github.com/IIINIII/RBDV-NodeJS,num_dependents_deps.dev:0 @@ -84235,6 +86148,7 @@ github.com/IITDU-AMIT-MSSE1044/JSCMiner,num_dependents_deps.dev:0 github.com/IIXIXII/pymdtools, github.com/IIXIXII/upref, github.com/IIaJIeHo/react-maskedinput,num_dependents_deps.dev:0 +github.com/IIlyichev/github-tag-action, github.com/IJHack/QtPass,criticality_score:0.517190 github.com/IJMacD/GameEngine,num_dependents_deps.dev:0 github.com/IJSComplexMatter/cddm, @@ -84256,6 +86170,7 @@ github.com/IKangXu/vuepress-plugin-mouse-effects,num_dependents_deps.dev:0 github.com/IKangXu/vuepress-plugin-rss,num_dependents_deps.dev:0 github.com/IKangXu/vuepress-plugin-share,num_dependents_deps.dev:0 github.com/IKangXu/vuepress-theme-ic,num_dependents_deps.dev:0 +github.com/IKatsuba/linked-issues, github.com/IKatsuba/news-api,num_dependents_deps.dev:0 github.com/IKatsuba/ng-components,num_dependents_deps.dev:0 github.com/IKatsuba/ngx-cleave, @@ -84296,6 +86211,7 @@ github.com/ILLGrenoble/ngx-remote-desktop,num_dependents_deps.dev:0 github.com/ILLfame/search,num_dependents_deps.dev:0 github.com/ILikePizza555/Snakey,num_dependents_deps.dev:0 github.com/ILikePizza555/flake8-rewriter, +github.com/ILikePlayingGames/line-diff-action, github.com/ILiuDongHui/npm-hello-world,num_dependents_deps.dev:0 github.com/ILovePing/invisible-watermark,num_dependents_deps.dev:0 github.com/ILovePug/sample-package,num_dependents_deps.dev:0 @@ -84320,6 +86236,8 @@ github.com/IMCampbell/ubcscrapr,num_dependents_deps.dev:0 github.com/IMD-Business-School/sidler,num_dependents_deps.dev:0 github.com/IMEConsultants/colebrook, github.com/IMExConsortium/pymex, +github.com/IMGARENA/gh-action-build-info-file, +github.com/IMGARENA/gh-action-git-log-stats, github.com/IMGIITRoorkee/omniport-setup-cli, github.com/IMGNRY/domainiac,num_dependents_deps.dev:0 github.com/IMIO/collective.iconifieddocumentactions, @@ -84351,6 +86269,7 @@ github.com/IMQS/ssmd,num_dependents_deps.dev:0 github.com/IMRahulSaini/mongo-seed-faker,num_dependents_deps.dev:0 github.com/IMRahulSaini/react-native-tap-payment,num_dependents_deps.dev:0 github.com/IMS-Bio2Core-Facility/LTA, +github.com/IMS94/aws-sam-deploy-action, github.com/IMSGlobal/openbadges-validator-core, github.com/IMSupperkaka/ipa-metadata, github.com/IMSupperkaka/z-qiniu-webpack-plugin,num_dependents_deps.dev:0 @@ -84526,6 +86445,7 @@ github.com/IQDM/IQDM-PDF, github.com/IQGeo/ol-contextmenu,num_dependents_deps.dev:0 github.com/IQSS/dataverse,criticality_score:0.684270 github.com/IQSS/dataverse-client-javascript, +github.com/IQSS/dataverse-uploader, github.com/IQTLabs/Daedalus, github.com/IQTLabs/GitGeo, github.com/IQTLabs/NetworkML, @@ -84562,6 +86482,7 @@ github.com/IRONGit/store,num_dependents_deps.dev:0 github.com/IROpen/arrowLang,num_dependents_deps.dev:0 github.com/IROpen/farsiScript,num_dependents_deps.dev:0 github.com/IROpen/fingilish,num_dependents_deps.dev:0 +github.com/IRTF-HRPC/create-ietf-draft-repo-action, github.com/IRelLoveWeb/myCli,num_dependents_deps.dev:0 github.com/IRelLoveWeb/ts-decorate,num_dependents_deps.dev:0 github.com/IRiViI/machine_engine_python, @@ -84585,6 +86506,7 @@ github.com/ISET/iset3d,Google github.com/ISET/isetcam,Google github.com/ISEngineering/zmq-service-suite-broker-js,num_dependents_deps.dev:0 github.com/ISIB-Group/inspursmsdk, +github.com/ISID/build-and-scan-image, github.com/ISID/iPLAss,num_dependents_deps.dev:0 github.com/ISISScientificComputing/autoreduce-frontend, github.com/ISISScientificComputing/autoreduce-run-detection, @@ -84624,6 +86546,10 @@ github.com/IT-MikeS/capacitor-intents,num_dependents_deps.dev:0 github.com/IT-Minds-opensource/react-list-reducer,num_dependents_deps.dev:0 github.com/IT-Rafi/rafi_jszip_file, github.com/IT-Rafi/vue-player-media,num_dependents_deps.dev:0 +github.com/IT-Service/Invoke-Build, +github.com/IT-Service/Invoke-PSDepend, +github.com/IT-Service/New-ReleaseNotesFromChangeLog, +github.com/IT-Service/restore-nuget-packages, github.com/IT-ServiceLKLG/rtdi,num_dependents_deps.dev:0 github.com/ITAMCO/django2-auth0-auth, github.com/ITArtist/react-native-espider-engine,num_dependents_deps.dev:0 @@ -84667,6 +86593,7 @@ github.com/ITNG/dj-jsonapi, github.com/ITPDB/ITPDB-Data,num_dependents_deps.dev:0 github.com/ITPNYU/ml5,num_dependents_deps.dev:0 github.com/ITPNYU/p5.ble.js,num_dependents_deps.dev:0 +github.com/ITProKyle/action-setup-python, github.com/ITProKyle/f-cli, github.com/ITProKyle/f-lib, github.com/ITProKyle/ssm-dox, @@ -84857,6 +86784,7 @@ github.com/Iamie6/vue-markdown-sfc-loader,num_dependents_deps.dev:0 github.com/Iamie6/vue-sfc-component-cli-loader,num_dependents_deps.dev:0 github.com/Iamie6/vue-sfc-docs-webpack-plugin,num_dependents_deps.dev:0 github.com/Iammini5/Instrument,num_dependents_deps.dev:0 +github.com/Iamshankhadeep/setup-ffmpeg, github.com/Iamxiaozhu/file-uploader-cli, github.com/Iamxiaozhu/react-swiper,num_dependents_deps.dev:0 github.com/Iamxiaozhu/typora-img-uploader,num_dependents_deps.dev:0 @@ -84895,6 +86823,7 @@ github.com/IanLunn/Sequence,num_dependents_deps.dev:0 github.com/IanLunn/generator-sequence,num_dependents_deps.dev:0 github.com/IanLunn/grunt-sequence-themes,num_dependents_deps.dev:0 github.com/IanLunn/jQuery-Parallax,num_dependents_deps.dev:0 +github.com/IanMitchell/prisma-migration-warning-action, github.com/IanNMarshall/cards_imarshall, github.com/IanNMarshall/test_pkg, github.com/IanPedraza/random-messages, @@ -84948,6 +86877,7 @@ github.com/Ibcs16/react-utils,num_dependents_deps.dev:0 github.com/Ibenit/WebUI,num_dependents_deps.dev:0 github.com/IberaSoft/bower-bootstrap-less,num_dependents_deps.dev:0 github.com/Ibercivis/TwitterDataMining, +github.com/IbexOmega/lambda-build-action, github.com/Ibexian/char_predictor,num_dependents_deps.dev:0 github.com/Ibexian/keras-js,num_dependents_deps.dev:0 github.com/Ibirn/lotide,num_dependents_deps.dev:0 @@ -84957,6 +86887,7 @@ github.com/Ibotta/ibotta_uplift, github.com/Ibotta/mr_uplift, github.com/Ibotta/pure-predict, github.com/Ibotta/sk-dist, +github.com/IbragimovDP/tag-to-version, github.com/IbraheemAlnabriss/four-boot,num_dependents_deps.dev:0 github.com/Ibrahim-GHub/react-native-adobe-creative-tools,num_dependents_deps.dev:0 github.com/Ibrahim-GHub/react-native-android-circular-reveal,num_dependents_deps.dev:0 @@ -85050,6 +86981,7 @@ github.com/IcePanel/ice-generator,num_dependents_deps.dev:0 github.com/IceRain-mvc/bingyu-keyboard,num_dependents_deps.dev:0 github.com/IceSofticon30th/css-charset,num_dependents_deps.dev:0 github.com/IceSofticon30th/html-charset,num_dependents_deps.dev:0 +github.com/IceWizer/scp-action, github.com/IceXPR/usbic,num_dependents_deps.dev:0 github.com/Iceberg-incorporation/blackboard-convert-date-time, github.com/Iceberg-incorporation/blackboard-convert-format-number, @@ -85064,6 +86996,7 @@ github.com/IcedFrisby/IcedFrisby, github.com/IceeMC/FrozenCord,num_dependents_deps.dev:0 github.com/IceeMC/acacia,num_dependents_deps.dev:0 github.com/IceflowRE/cmt, +github.com/IceflowRE/gitcc, github.com/IceflowRE/mp3monitoring, github.com/IceflowRE/unidown, github.com/IceflowRE/unidown-mr_de, @@ -85086,11 +87019,13 @@ github.com/Icejundong/actionsheet,num_dependents_deps.dev:0 github.com/Icejundong/jsconfirm,num_dependents_deps.dev:0 github.com/Icejundong/vue-confirm-component,num_dependents_deps.dev:0 github.com/Icelain/YTStreamer, +github.com/Icelk/rustdoc-link-check, github.com/Iceloof/GoogleNews, github.com/Iceloof/PointInPolygon, github.com/Iceloof/RealtimeStock, github.com/IcemanEtika/deadlinkz, github.com/Icemanbeta/node-uchardet,num_dependents_deps.dev:0 +github.com/Icemap/tidb-action, github.com/Icemic/dns-packet,num_dependents_deps.dev:0 github.com/Icemic/egg-mongoose,num_dependents_deps.dev:0 github.com/Icemic/huozi.js,num_dependents_deps.dev:4 @@ -85185,6 +87120,7 @@ github.com/IdanLoo/tacer-template-koa,num_dependents_deps.dev:0 github.com/IdanLoo/tacer-template-lib,num_dependents_deps.dev:0 github.com/IdanLoo/tacer-template-react,num_dependents_deps.dev:0 github.com/IdanLoo/tacer-template-seed,num_dependents_deps.dev:0 +github.com/Idancc/WhiteSource-CI-Integration, github.com/IdaszakDaniel/Joeyify,num_dependents_deps.dev:0 github.com/Iddoyadlin/Py2JDatetime, github.com/IdeaBlade/angular.ts2js,num_dependents_deps.dev:0 @@ -85363,6 +87299,7 @@ github.com/IgniteUI/typedoc-plugin-localization, github.com/IgnitionModuleDevelopmentCommunity/IgnitionNode-RED, github.com/IgnitionWolf/ignite,num_dependents_deps.dev:0 github.com/Ignitus/Ignitus-sideNavigation,num_dependents_deps.dev:0 +github.com/IgnusG/jest-report-action, github.com/IgnusG/test-preact-hooks,num_dependents_deps.dev:0 github.com/Igor-A1/juldate,num_dependents_deps.dev:0 github.com/Igor-Adlab/hemera-fcm,num_dependents_deps.dev:0 @@ -85400,6 +87337,7 @@ github.com/IgorDePaula/express-qrcode,num_dependents_deps.dev:0 github.com/IgorFeshchenko/react-date-range,num_dependents_deps.dev:0 github.com/IgorFeshchenko/tmt-date-fns,num_dependents_deps.dev:0 github.com/IgorFilippov3/ngx-script-injector,num_dependents_deps.dev:0 +github.com/IgorGov/auto-inc-ver, github.com/IgorHalfeld/pr-maneiro,criticality_score:0.355940 github.com/IgorHalfeld/use-reactive-state,num_dependents_deps.dev:0 github.com/IgorJorobus/cocot,num_dependents_deps.dev:0 @@ -85529,6 +87467,7 @@ github.com/Ikagaka/shiorif,num_dependents_deps.dev:2 github.com/Ikagaka/ukagaka-install-descript-info.js,num_dependents_deps.dev:8 github.com/Ikagaka/ukagaka-timer-event-source.js,num_dependents_deps.dev:0 github.com/Ikana/1touch, +github.com/Ikana/check-ecr, github.com/Ikana/nodeschool-rank-client,num_dependents_deps.dev:0 github.com/Ikana/static-deployer,num_dependents_deps.dev:0 github.com/Ikaro025/trabajoFinal_npm,num_dependents_deps.dev:0 @@ -85562,6 +87501,7 @@ github.com/IlGalvo/N2W-IT, github.com/IlIMiniReiDIlI/node_crontab,num_dependents_deps.dev:0 github.com/IlanCosman/tide,criticality_score:0.395650 github.com/IlanFrumer/gulpy,num_dependents_deps.dev:0 +github.com/IlanVivanco/wpe-deployment-action, github.com/Ilandev/node-stripe,num_dependents_deps.dev:0 github.com/Ilankumaran-developer/stripe_node,num_dependents_deps.dev:0 github.com/IlarionHalushka/mongoose-activity-logger,num_dependents_deps.dev:0 @@ -85648,6 +87588,9 @@ github.com/IloveKFCchicken/kl-react-components,num_dependents_deps.dev:0 github.com/Ilrilan/depcheck,num_dependents_deps.dev:0 github.com/Ilrilan/humanize-hash-long-str,num_dependents_deps.dev:0 github.com/Ilrilan/yarn-lock-check-duplicates, +github.com/Ilshidur/action-discord, +github.com/Ilshidur/action-mercure, +github.com/Ilshidur/action-slack, github.com/Ilshidur/bind2,num_dependents_deps.dev:0 github.com/Ilshidur/bloggy-moment,num_dependents_deps.dev:0 github.com/Ilshidur/can-iframe-url,num_dependents_deps.dev:0 @@ -85729,6 +87672,8 @@ github.com/Ilyushin/resnet, github.com/Ilyushin/signal-transformation, github.com/Ilyushin/web-server-logs-analyzer,num_dependents_deps.dev:0 github.com/Im-Beast/crayon.js,num_dependents_deps.dev:0 +github.com/Im-Fran/git-hashes-action, +github.com/Im-Fran/version-from-tag-action, github.com/Im-Kevin/cordova.plugins.X5WebView,num_dependents_deps.dev:0 github.com/Im-Kevin/weapp-session,num_dependents_deps.dev:0 github.com/Im-Stevemmmmm/tailwindcss-components, @@ -85768,6 +87713,7 @@ github.com/ImJohnMDaniel/sfdx-toolbox-package-utils,num_dependents_deps.dev:0 github.com/ImJohnMDaniel/sfdx-toolbox-utils, github.com/ImJohnMDaniel/soqlx-opener,num_dependents_deps.dev:0 github.com/ImJuanan/flask-milligram, +github.com/ImJustChew/preact-action, github.com/ImLiar/slicker,num_dependents_deps.dev:0 github.com/ImNimboss/dshell, github.com/ImNimboss/uberduck, @@ -85791,6 +87737,7 @@ github.com/ImVexed/Procedurem,num_dependents_deps.dev:0 github.com/ImXman/MACA, github.com/ImXron/pytest-stress, github.com/ImXron/w8ing, +github.com/ImYrS/aliyun-auto-signin, github.com/Ima8/Nominal2KeyCSV,num_dependents_deps.dev:0 github.com/Ima8/lazada-lib,num_dependents_deps.dev:0 github.com/Ima8/vue-js-grid,num_dependents_deps.dev:0 @@ -85827,6 +87774,7 @@ github.com/ImaginaryLandscape/django_site_config, github.com/Imagination-International-Inc/CDN,num_dependents_deps.dev:0 github.com/ImaginationWorks/winston-splunk,num_dependents_deps.dev:0 github.com/ImaginationWorks/winston-transport-splunk, +github.com/ImagineBoom/Inno-Setup-Action, github.com/ImagineDesignDevelop/chuck_norris_terminal_jokes,num_dependents_deps.dev:0 github.com/ImagineDesignDevelop/rethinkdb-dump-restore-cli,num_dependents_deps.dev:0 github.com/ImagineLearning/cra-template-imaginelearning,num_dependents_deps.dev:0 @@ -85977,6 +87925,7 @@ github.com/ImpacGroup/cordova-plugin-impac-inapppayment,num_dependents_deps.dev: github.com/ImpacGroup/cordova-plugin-impac-keyboard,num_dependents_deps.dev:0 github.com/ImpactInc/ir-android-demo,num_dependents_deps.dev:0 github.com/Impacto-jor/fetchrss-api, +github.com/Impaktfull/gh_action_dart_conventional_release, github.com/ImparaAI/checkers, github.com/ImparaAI/monte-carlo-tree-search, github.com/Impasse52/TournamentAPI, @@ -85997,6 +87946,7 @@ github.com/ImperialCollegeLondon/R2T2, github.com/ImperialCollegeLondon/covid19model,criticality_score:0.377100 github.com/ImperialCollegeLondon/django-drf-filepond, github.com/ImperialCollegeLondon/python-gui-template, +github.com/ImperialXT/export-workflow-logs, github.com/ImperiumMaximus/sfdx-metadata-patcher,num_dependents_deps.dev:0 github.com/Imperiz/formsy-react,num_dependents_deps.dev:0 github.com/Impetus/Kundera,criticality_score:0.351980 @@ -86016,6 +87966,7 @@ github.com/Impromptu/impromptu-github,num_dependents_deps.dev:0 github.com/Impromptu/impromptu-system,num_dependents_deps.dev:0 github.com/Impromptu/summon,num_dependents_deps.dev:0 github.com/Impromptu/use-impromptu,num_dependents_deps.dev:0 +github.com/ImpromptuNinjas/unity-runner, github.com/ImprontaAdvance/eslint-config,num_dependents_deps.dev:0 github.com/ImprovedTube/YouTube-Extension,criticality_score:0.447980 github.com/ImpulseAdventure/GUIslice,criticality_score:0.497210 @@ -86077,6 +88028,7 @@ github.com/InJeCTrL/PyLiveRecorder, github.com/InMoment/angular-expandable-panel-list,num_dependents_deps.dev:0 github.com/InOG-projects/IRIS-library-js,num_dependents_deps.dev:0 github.com/InPageEdit/InPageEdit, +github.com/InProgres/translate-readme, github.com/InQuant/cookie_alert, github.com/InQuest/ThreatIngestor, github.com/InQuest/awesome-yara,criticality_score:0.304140 @@ -86144,6 +88096,7 @@ github.com/Inception-entry/utils,num_dependents_deps.dev:0 github.com/InceptionXR/upm-cli,num_dependents_deps.dev:0 github.com/Inchdev/pinch-ruby,num_dependents_deps.dev:0 github.com/Inciter/jsonschema2rdbmsddl, +github.com/IncludeHealth/manual-trigger, github.com/IncludeSecurity/safeurl-python, github.com/Inclushe/ethan,num_dependents_deps.dev:0 github.com/Inclushe/hooled,num_dependents_deps.dev:0 @@ -86365,6 +88318,7 @@ github.com/Industryswarm/isnode-mod-mailer,num_dependents_deps.dev:0 github.com/Industryswarm/isnode-mod-servicemanager,num_dependents_deps.dev:0 github.com/Industryswarm/isnode-mod-services,num_dependents_deps.dev:0 github.com/Indy2222/ncrs,num_dependents_deps.dev:0 +github.com/IndyV/IssueChecker, github.com/Indyandie/baf-react-parcel, github.com/Indyandie/baf-svelte-parcel,num_dependents_deps.dev:0 github.com/Indyandie/momokun,num_dependents_deps.dev:0 @@ -86453,6 +88407,7 @@ github.com/InfiniteXyy/tiny-carousel, github.com/InfiniteXyy/zoov, github.com/InfinitelyTyped/InfinitelyTyped, github.com/InfinitoSolutions/node-infinito-api, +github.com/Infinity-Biologix/dx-compile-wdl, github.com/Infinity0106/react-native-LoopAnimation,num_dependents_deps.dev:0 github.com/Infinity0106/react-native-chart-view,num_dependents_deps.dev:0 github.com/InfinityBotList/infinity-api,num_dependents_deps.dev:0 @@ -86516,6 +88471,8 @@ github.com/InformaticsMatters/pipelines-utils-rdkit, github.com/InformaticsMatters/pysquonk, github.com/InformaticsMatters/react-sci-components,num_dependents_deps.dev:0 github.com/InformaticsMatters/standardize-molecule, +github.com/InformaticsMatters/trigger-awx-action, +github.com/InformaticsMatters/trigger-ci-action, github.com/Informatievlaanderen/generic-hypermedia-api-client,num_dependents_deps.dev:0 github.com/Information-Fusion-Lab-Umass/NuX, github.com/Informatiqal/qlik-proxy-api,num_dependents_deps.dev:0 @@ -86529,9 +88486,21 @@ github.com/Infotition/infotition-next-boilerplate,num_dependents_deps.dev:0 github.com/Infouzi/mongoose-advanced-url-queries,num_dependents_deps.dev:0 github.com/Infowatch/class-transformer,num_dependents_deps.dev:0 github.com/Infqq/simpledemotivators, +github.com/InfraBits/pipup, github.com/InfraBlockchain/infra-did-js, github.com/InfraBlockchain/infra-did-resolver, github.com/InfraSightLabs/backtrace-script,num_dependents_deps.dev:0 +github.com/InfraWay/create-dns-record, +github.com/InfraWay/delete-dns-record, +github.com/InfraWay/delete-workflow-runs, +github.com/InfraWay/generate-kube-config, +github.com/InfraWay/get-changed-files, +github.com/InfraWay/get-markdown-meta-action, +github.com/InfraWay/gh-create-docker-tag, +github.com/InfraWay/k8s-deploy, +github.com/InfraWay/post-medium-action, +github.com/InfraWay/s3-signed-url-action, +github.com/InfraWay/tweet-action, github.com/InfrabelLinux/linuxportal-api-kernel, github.com/InfrabelLinux/linuxportal-rest-kernel, github.com/Infragistics-Blogs/generator-infragistics-sample,num_dependents_deps.dev:0 @@ -86540,6 +88509,8 @@ github.com/Infragistics/zero-blocks,num_dependents_deps.dev:0 github.com/Infraxion/modis, github.com/InfuseAI/colab-xterm, github.com/InfuseAI/mm-only-details, +github.com/InfuseAI/piperider-action, +github.com/InfuseAI/piperider-compare-action, github.com/InfuseAI/piperider-python-sdk, github.com/InfuseAI/primehub-job,num_dependents_deps.dev:0 github.com/InfuseAI/primehub-python-sdk, @@ -86763,6 +88734,7 @@ github.com/Innqube/ngx-iq-bootstraptable,num_dependents_deps.dev:0 github.com/Innqube/ngx-iq-datepicker,num_dependents_deps.dev:0 github.com/Ino-Bagaric/proton-native-reload,num_dependents_deps.dev:0 github.com/InoSoftCo/react-native-media-thumbnail,num_dependents_deps.dev:0 +github.com/InoUno/yaml-ls-check, github.com/InodUmayanga/JSON-CONTAIN,num_dependents_deps.dev:0 github.com/Inokinoki/django-multiplefilefield, github.com/Inouit/generator-grid-fce,num_dependents_deps.dev:0 @@ -86783,6 +88755,7 @@ github.com/Inqbus/superinactive, github.com/Inquisitive-Learners/copy-webpack-plugin,num_dependents_deps.dev:0 github.com/Inrice/qm-cmbls,num_dependents_deps.dev:0 github.com/Inrixia/Helpers,num_dependents_deps.dev:0 +github.com/Inrixia/Secret-Injector, github.com/Inrixia/db.js,num_dependents_deps.dev:0 github.com/Inrixia/db.ts, github.com/Inrixia/floatplaneAPI.js,num_dependents_deps.dev:0 @@ -86840,6 +88813,7 @@ github.com/Insidexa/jstore,num_dependents_deps.dev:0 github.com/Insidexa/nestjs-rpc,num_dependents_deps.dev:0 github.com/InsidiousClu/cordova-barcode-scanner,num_dependents_deps.dev:0 github.com/InsidiousClu/cordova-pdf-viewer,num_dependents_deps.dev:0 +github.com/Insight-IT-Web-IACDevops/poc-action-kube, github.com/Insight707/rchat,num_dependents_deps.dev:0 github.com/InsightAppDev/node-vkads,num_dependents_deps.dev:0 github.com/InsightDataCommunity/Rival-AI.NY-18C, @@ -86876,6 +88850,7 @@ github.com/Insolita/coloro, github.com/Insolita/ucopy, github.com/Insomniiak/KubePloy,num_dependents_deps.dev:0 github.com/Insomniiak/react-google-calendar-api,num_dependents_deps.dev:0 +github.com/InsonusK/get-latest-release, github.com/Insorum/hubot-spotify-control, github.com/Insorum/hubot-youtube-feed, github.com/InspectorMustache/maninex, @@ -86910,11 +88885,14 @@ github.com/Inspirock/tileserver-gl,num_dependents_deps.dev:0 github.com/Inspyre-Softworks/inspy_logger, github.com/Inspyre-Softworks/snek, github.com/Inst-AAA/archijson, +github.com/InstaCode/lockdown, +github.com/InstaCode/maven-settings-xml-action, github.com/InstaDApp/dsa-connect, github.com/InstaGIS/googlemaps-loader,num_dependents_deps.dev:0 github.com/InstaGIS/systemjs-less-plugin,num_dependents_deps.dev:0 github.com/InstaMarch/instapage,num_dependents_deps.dev:0 github.com/InstaPy/instapy-chromedriver, +github.com/InstaWP/wordpress-testing-automation, github.com/Instabridge/sqlite3-ruby-static,num_dependents_deps.dev:0 github.com/Instabug/Instabug-iOS,criticality_score:0.506210 github.com/Instabug/instabug-cordova,num_dependents_deps.dev:0 @@ -86996,6 +88974,7 @@ github.com/InstructionalWeb/iw-react-accordionMenu,num_dependents_deps.dev:0 github.com/InstructionalWeb/iw-react-dropdown,num_dependents_deps.dev:0 github.com/InstructionalWeb/iw-react-elements,num_dependents_deps.dev:0 github.com/Instrument/django-geetar, +github.com/Instrument/github-tag-action, github.com/Instrument/pattern-tool,num_dependents_deps.dev:0 github.com/Instrumental/metrician-ruby,num_dependents_deps.dev:3 github.com/Insurlytech/zetapush-android,num_dependents_deps.dev:0 @@ -87015,12 +88994,14 @@ github.com/Intai/bdux-timetravel,num_dependents_deps.dev:0 github.com/Intai/bdux-universal,num_dependents_deps.dev:0 github.com/IntegerMan/DoggoQuestLogic, github.com/Integerous/goQuality-dev-contents,criticality_score:0.446330 +github.com/Integral-Healthcare/robin-ai-reviewer, github.com/IntegralDefense/RotL, github.com/IntegralDefense/critsapi, github.com/IntegralDefense/pysip, github.com/IntegralDefense/splunklib, github.com/IntegralDefense/vxstreamlib, github.com/Integralist/Squirrel,num_dependents_deps.dev:0 +github.com/Integralist/setup-tinygo, github.com/IntegrateDev/json-schema-generator,num_dependents_deps.dev:0 github.com/IntegrateDev/postman2swagger2,num_dependents_deps.dev:0 github.com/Integrative-Transcriptomics/VIPurPCA, @@ -87244,6 +89225,7 @@ github.com/IntellectualSites/PlotSquared,criticality_score:0.505170 github.com/Intelli-Africa-Solutions/intelli-gateway, github.com/IntelliCEL/rn-ble-pic,num_dependents_deps.dev:0 github.com/IntelliJAbhishek/react-native-wc-api,num_dependents_deps.dev:0 +github.com/IntelliProve/ecr-login, github.com/IntelliSearch/search-client,num_dependents_deps.dev:0 github.com/IntelliTect/Coalesce,num_dependents_deps.dev:0 github.com/IntelliTect/EssentialCSharp,criticality_score:0.430660 @@ -87436,6 +89418,7 @@ github.com/InubashiriMomizi/emomi,num_dependents_deps.dev:0 github.com/Inumedia/SlackAPI,criticality_score:0.384080 github.com/Inuyashaaaaa/meow0w0,num_dependents_deps.dev:0 github.com/Invader444/node-cryptocurrency-addr,num_dependents_deps.dev:0 +github.com/InvalidLenni/README.md, github.com/InvalidLenni/disweb.py, github.com/InvalidLenni/simple-amari.py, github.com/Invarato/easy_binary_file_project, @@ -87534,6 +89517,7 @@ github.com/IoT-Ignite/pypi_learn, github.com/IoT-Inspector/python-client, github.com/IoTOpen/node-lynx,num_dependents_deps.dev:0 github.com/IoTOpen/node-red-lynx,num_dependents_deps.dev:0 +github.com/IoTSharp/tdengine-action, github.com/IoTboy/commercial-zigbee-device-daemon,num_dependents_deps.dev:0 github.com/IoTcat/cron-git,num_dependents_deps.dev:0 github.com/IoTcat/fp,num_dependents_deps.dev:0 @@ -87548,6 +89532,7 @@ github.com/Iojjj/RoundedCornersBackgroundSpan,num_dependents_deps.dev:0 github.com/Iolaum/fcust, github.com/Iolaum/podcust, github.com/Ion-Water/node-sdk, +github.com/IonBazan/composer-diff-action, github.com/IonDen/ion.checkRadio,num_dependents_deps.dev:0 github.com/IonDen/ion.rangeSlider,"criticality_score:0.423300,num_dependents_deps.dev:190" github.com/IonDen/ion.sound,num_dependents_deps.dev:0 @@ -88206,6 +90191,7 @@ github.com/Ireoo/getlibs.io,num_dependents_deps.dev:0 github.com/Ireoo/spider.npm,num_dependents_deps.dev:0 github.com/Ireoo/sql.io,num_dependents_deps.dev:0 github.com/Iress/expurgator, +github.com/Irev-Dev/action-install-openscad-nightly, github.com/Irevall/vue-i18n-locale-message,num_dependents_deps.dev:0 github.com/IrfDev/vuex-analytics, github.com/IrfanGhuori/Bootstrap-extra,num_dependents_deps.dev:0 @@ -88234,6 +90220,8 @@ github.com/Iristyle/bower-angular-placeholders,num_dependents_deps.dev:0 github.com/Irlirion/face-group, github.com/Irmiz/webpack-prepend-plugin,num_dependents_deps.dev:0 github.com/Iroha1024/json-form,num_dependents_deps.dev:0 +github.com/Iron-Ham/swift-format-linter-action, +github.com/IronCloud/setup-provisioned-concurrency, github.com/IronCoreLabs/cats-scalatest,num_dependents_deps.dev:0 github.com/IronCoreLabs/futurejs,num_dependents_deps.dev:4 github.com/IronCoreLabs/gridiron,num_dependents_deps.dev:3 @@ -88277,6 +90265,7 @@ github.com/IronsDu/brynet,criticality_score:0.434650 github.com/IrosTheBeggar/mStream,"criticality_score:0.385430,num_dependents_deps.dev:0" github.com/IrosTheBeggar/mstream-node,num_dependents_deps.dev:0 github.com/Irqbalance/irqbalance,criticality_score:0.555970 +github.com/Irrational-Encoding-Wizardry/install-vapoursynth-action, github.com/Irrational-Encoding-Wizardry/lvsfunc, github.com/Irrational-Encoding-Wizardry/vsutil, github.com/Irrational-Encoding-Wizardry/yuuno, @@ -88335,9 +90324,11 @@ github.com/IsaacRe/tacklebox, github.com/IsaacRoss/pyggy,num_dependents_deps.dev:0 github.com/IsaacScript/IsaacScript,num_dependents_deps.dev:0 github.com/IsaacScript/eslint-config-isaacscript, +github.com/IsaacScript/isaac-steam-workshop-upload, github.com/IsaacScript/isaac-typescript-definitions,num_dependents_deps.dev:0 github.com/IsaacScript/isaacscript-lint, github.com/IsaacScript/sync-directory, +github.com/IsaacShelton/update-existing-release, github.com/Isabek/es-response-parser,num_dependents_deps.dev:0 github.com/IsabellaS09/dcrw,num_dependents_deps.dev:0 github.com/IsaelDJunior/libpythonpro_junior, @@ -88351,7 +90342,9 @@ github.com/Isan-Rivkin/image-toolbox-rs,num_dependents_deps.dev:0 github.com/Isan-Rivkin/lamport-signatures-rs,num_dependents_deps.dev:0 github.com/Isan-Rivkin/nomad-api,num_dependents_deps.dev:0 github.com/Isan-Rivkin/rsocket-rs,num_dependents_deps.dev:0 +github.com/IsantePlus/wait-for-openmrs-action, github.com/Isatol/FetchModule, +github.com/Isaw-w/mastofeedbot, github.com/Ischca/chardin.js,num_dependents_deps.dev:0 github.com/IselaReyesPerdomo94/MEX008-FE-md-link,num_dependents_deps.dev:0 github.com/IsenTang/mongo-stash,num_dependents_deps.dev:0 @@ -88380,6 +90373,7 @@ github.com/IshmaelKargbo/vuety-ui,num_dependents_deps.dev:0 github.com/IshmaelKhalid/NewKS,num_dependents_deps.dev:0 github.com/IshmaelKhalid/newest_kickstarter,num_dependents_deps.dev:0 github.com/Ishoshot/Space-CSS,num_dependents_deps.dev:0 +github.com/IshuSinghKanwar/build-jenkins-job, github.com/IsibisiDev/zora-reset.css,num_dependents_deps.dev:0 github.com/Isithelo/Fraternate,num_dependents_deps.dev:0 github.com/Iskander508/react-native-clock-interval,num_dependents_deps.dev:0 @@ -88428,6 +90422,7 @@ github.com/Ismail-elkorchi/new-normalize,num_dependents_deps.dev:0 github.com/Ismailkasap/react-demoxxxyyz,num_dependents_deps.dev:0 github.com/IsmaryAlvarez/card-validator,num_dependents_deps.dev:0 github.com/IsmarySalgesM/scl-2018-01-FE-markdown,num_dependents_deps.dev:0 +github.com/Ismoh-Games/find-linked-issues, github.com/Ismonh/react-native-nested-scroll-view,num_dependents_deps.dev:0 github.com/IsoT0P0S/Metodo-GaussJordan, github.com/Isolated-/easemqtt,num_dependents_deps.dev:0 @@ -88639,9 +90634,11 @@ github.com/ItsDizzy/icon-util,num_dependents_deps.dev:0 github.com/ItsDizzy/rdi,num_dependents_deps.dev:0 github.com/ItsDrike/SecurePy, github.com/ItsDrike/pydispix, +github.com/ItsDrike/setup-poetry, github.com/ItsEcholot/cordova-plugin-stylus,num_dependents_deps.dev:0 github.com/ItsEcholot/node-red-contrib-meteoblue-scraper,num_dependents_deps.dev:0 github.com/ItsEcholot/node-red-contrib-snmp-trap-listener,num_dependents_deps.dev:0 +github.com/ItsEcholot/sonarqube-action, github.com/ItsErikSquared/MemeMirrorLoad,num_dependents_deps.dev:0 github.com/ItsHisoka17/TDB-API,num_dependents_deps.dev:0 github.com/ItsJimi/store-data,num_dependents_deps.dev:0 @@ -88656,6 +90653,7 @@ github.com/ItsJustMeChris/Aurora-Router,num_dependents_deps.dev:0 github.com/ItsJustMeChris/Sock-Chat,num_dependents_deps.dev:0 github.com/ItsJustNine/cathy, github.com/ItsJustNine/discord-giveaways-dashboard, +github.com/ItsKarma/aws-cli, github.com/ItsKas/dpycooldowns, github.com/ItsKas/embedcolors, github.com/ItsKerolos/Might,num_dependents_deps.dev:0 @@ -88701,6 +90699,7 @@ github.com/Itsaadarsh/aadarsh-cli,num_dependents_deps.dev:0 github.com/Itsaadarsh/create-apolloserver-app,num_dependents_deps.dev:0 github.com/Itsaadarsh/create-portfolio-app, github.com/Itsallonly/iao-alert,num_dependents_deps.dev:0 +github.com/Itsblue/download-release-assets-action, github.com/Itsdenty/adonis-swagger-jsdoc,num_dependents_deps.dev:0 github.com/Itsyuka/osu-bpdpc,num_dependents_deps.dev:0 github.com/Itsyuka/osu-buffer,num_dependents_deps.dev:0 @@ -88740,6 +90739,8 @@ github.com/ItzRabbs/puppeteer-pro,num_dependents_deps.dev:0 github.com/ItzSjDude/PikachuUserbot, github.com/ItzYuzuruYT/an-anime-scraper,num_dependents_deps.dev:0 github.com/ItzZed/r6s,num_dependents_deps.dev:0 +github.com/Itzbenz/deploy-to-pterodactyl, +github.com/Itzbenz/mindustry-plugin-deploy-to-pterodactyl, github.com/Iubalus/Knucklebones,num_dependents_deps.dev:0 github.com/Iucasmaia/autosub, github.com/IuryAlves/pyrunes, @@ -88777,6 +90778,7 @@ github.com/IvanAntipov/AntPy, github.com/IvanB475/simple-salary-calc,num_dependents_deps.dev:0 github.com/IvanBerkut/vue-my-own-component, github.com/IvanBiletskiy/json-refs-windows-fixed,num_dependents_deps.dev:0 +github.com/IvanBiruk/ec2-github-runner, github.com/IvanBlacky/mongoose-aggregation-builder,num_dependents_deps.dev:0 github.com/IvanCampos11/PyPal-API, github.com/IvanCanales/ExamenVanguardia,num_dependents_deps.dev:0 @@ -88793,6 +90795,7 @@ github.com/IvanFoke/pgex, github.com/IvanFon/hackerrank,num_dependents_deps.dev:0 github.com/IvanFon/node-gui,num_dependents_deps.dev:0 github.com/IvanFon/simple-exist, +github.com/IvanFon/super-labeler-action, github.com/IvanFon/xinput-gui, github.com/IvanGaravito/NodeRelay,num_dependents_deps.dev:0 github.com/IvanGaravito/dnp3,num_dependents_deps.dev:0 @@ -88818,10 +90821,12 @@ github.com/IvanK0405/rssreader,num_dependents_deps.dev:0 github.com/IvanKarpan/cordova-plugin-preferences,num_dependents_deps.dev:0 github.com/IvanKolechkin/React-Native-INTL-Phone-Input, github.com/IvanKozlov95/vue-search-select,num_dependents_deps.dev:0 +github.com/IvanKuchin/SAST, github.com/IvanLi-CN/class-sanitizer,num_dependents_deps.dev:0 github.com/IvanLi-CN/vue-quill-editor,num_dependents_deps.dev:0 github.com/IvanLuLyf/BunnyNode,num_dependents_deps.dev:0 github.com/IvanLuLyf/elaina, +github.com/IvanLudvig/clang-format-action, github.com/IvanMMM/node-priceplan,num_dependents_deps.dev:0 github.com/IvanMMM/proxy6,num_dependents_deps.dev:0 github.com/IvanMMM/proxymania,num_dependents_deps.dev:0 @@ -89135,6 +91140,7 @@ github.com/J-theta/j-store, github.com/J-theta/neopro,num_dependents_deps.dev:0 github.com/J00nz/directory-react-routes,num_dependents_deps.dev:0 github.com/J00nz/password-policy,num_dependents_deps.dev:0 +github.com/J0B10/aoc-badges-action, github.com/J0R6IT0/lyricsfinder,num_dependents_deps.dev:0 github.com/J0e9u0/cordova-plugin-adder,num_dependents_deps.dev:0 github.com/J0eppp/nodejs-session,num_dependents_deps.dev:0 @@ -89143,6 +91149,7 @@ github.com/J0ne/compute-input, github.com/J0ne/lithtml-file-input, github.com/J0sh0nat0r/lib-resp.rs,num_dependents_deps.dev:0 github.com/J1031/js-api-wrapper,num_dependents_deps.dev:0 +github.com/J12934/helm-gh-pages-action, github.com/J12934/mongoose-fresh-db,num_dependents_deps.dev:0 github.com/J16N/getpass3, github.com/J1M-RYAN/you-elle,num_dependents_deps.dev:0 @@ -89151,6 +91158,8 @@ github.com/J1mbo/homebridge-TH10-Fridge-Freezer-Alarm,num_dependents_deps.dev:0 github.com/J1mbo/homebridge-TH10-Switch,num_dependents_deps.dev:0 github.com/J1mbo/homebridge-rollertec-garage-door,num_dependents_deps.dev:0 github.com/J1ong/vuejs-mobile-datepicker,num_dependents_deps.dev:0 +github.com/J3-Tech/PHP-Lint-Action, +github.com/J3-Tech/PHPCpd-Action, github.com/J3573R/fastify-mongoose-rest,num_dependents_deps.dev:0 github.com/J35P312/SVDB, github.com/J3MPA/solid-hammers,num_dependents_deps.dev:0 @@ -89230,6 +91239,7 @@ github.com/JASchilz/pystrike, github.com/JASchilz/surrogate, github.com/JATS4R/jats-dtds,num_dependents_deps.dev:0 github.com/JAW-Dev/jawdev-react-demo-components,num_dependents_deps.dev:0 +github.com/JActions/maven-version, github.com/JAdshead/xandos,num_dependents_deps.dev:0 github.com/JAnderson419/Ferro, github.com/JAnnaraj/meta-labs_sdk, @@ -89271,6 +91281,7 @@ github.com/JB1905/s-trimmer,num_dependents_deps.dev:0 github.com/JB1905/two-digit,num_dependents_deps.dev:0 github.com/JB1905/universal-tilt.js,num_dependents_deps.dev:0 github.com/JB1905/where-is-my-node,num_dependents_deps.dev:0 +github.com/JBAhire/find-openAPI-Specifications, github.com/JBDAP/JBDAP-Node-Engine, github.com/JBDAP/JBDAP-Node-Global,num_dependents_deps.dev:2 github.com/JBDAP/JBDAP-Node-Interpreter, @@ -89290,6 +91301,7 @@ github.com/JBKahn/rednose, github.com/JBRector/generator-fred,num_dependents_deps.dev:0 github.com/JBYT27/Git-API, github.com/JBYT27/REPLAPI, +github.com/JBZoo/CI-Report-Converter, github.com/JBZoo/JBZoo,num_dependents_deps.dev:0 github.com/JBZoo/JS-Utils,num_dependents_deps.dev:0 github.com/JBZoo/Utils,criticality_score:0.309850 @@ -89320,6 +91332,7 @@ github.com/JBorrow/latex-pandoc-preprocessor, github.com/JBoss925/new-react-typing-effect,num_dependents_deps.dev:0 github.com/JBostelaar/gulp-tasks,num_dependents_deps.dev:0 github.com/JBowns/isomorphic-env,num_dependents_deps.dev:0 +github.com/JBraunsmaJr/ContributionGraph, github.com/JBthePenguin/TestCasesExecutor, github.com/JBtje/vue3pdf,num_dependents_deps.dev:0 github.com/JBtje/vue3tabs,num_dependents_deps.dev:0 @@ -89329,6 +91342,7 @@ github.com/JBwdn/jinfo, github.com/JC-2014/node-printer-escpos, github.com/JC-2014/request,num_dependents_deps.dev:0 github.com/JCAguilera/nativescript-betterwebsockets,num_dependents_deps.dev:0 +github.com/JCBLE/setup-aliyun-cli, github.com/JCBarry/cluster-airbrake,num_dependents_deps.dev:0 github.com/JCBrouwer/itunes-music-library-tracks,num_dependents_deps.dev:0 github.com/JCCDex/AHBCSalon,num_dependents_deps.dev:0 @@ -89366,6 +91380,7 @@ github.com/JCCR/web-streams-ponyfill, github.com/JCDecaux/opendata-client,num_dependents_deps.dev:0 github.com/JCGCosta/Prevh, github.com/JCGithu/SinonStories,num_dependents_deps.dev:0 +github.com/JCGrant/github-db, github.com/JCGrant/icu-ea-api, github.com/JCH222/dfqueue, github.com/JCMSK/pyMSK, @@ -89438,6 +91453,8 @@ github.com/JCloudYu/tiny-websock,num_dependents_deps.dev:0 github.com/JCloudYu/trimid,num_dependents_deps.dev:0 github.com/JCobbles/react-dnd-tree,num_dependents_deps.dev:0 github.com/JCofman/insertIf,num_dependents_deps.dev:0 +github.com/JCofman/vscodeaction, +github.com/JCofman/webPagetestAction, github.com/JCorley44/lodown,num_dependents_deps.dev:0 github.com/JCornat/material-icons-css,num_dependents_deps.dev:0 github.com/JCornat/node-logger,num_dependents_deps.dev:0 @@ -89448,6 +91465,7 @@ github.com/JCrestel/butter-github-star,num_dependents_deps.dev:0 github.com/JCron245/touchscreen-dnd-shim,num_dependents_deps.dev:0 github.com/JCyan90/lotide,num_dependents_deps.dev:0 github.com/JCyberSec/KIT, +github.com/JD-Howard/confuser-cli-action, github.com/JD-Smart-FE/vue-stone,num_dependents_deps.dev:0 github.com/JD-Smart-FE/welink-devtool,num_dependents_deps.dev:0 github.com/JD-wangyin/Ak47,num_dependents_deps.dev:1 @@ -89474,6 +91492,7 @@ github.com/JDRF/spirit,num_dependents_deps.dev:0 github.com/JDSalisbury/doro, github.com/JDSalisbury/familiar, github.com/JDStraughan/unnecessary-censorship,num_dependents_deps.dev:0 +github.com/JDTX0/branch-sync, github.com/JDW2018/pyTexecom, github.com/JDanielGar/ngpdftable,num_dependents_deps.dev:0 github.com/JDaren/subtitleConverter,num_dependents_deps.dev:3 @@ -89535,6 +91554,8 @@ github.com/JEG2/highline,criticality_score:0.443470 github.com/JESS2/vue-button-animation,num_dependents_deps.dev:0 github.com/JESS2/vue-qr-print,num_dependents_deps.dev:0 github.com/JEmonet67/objmpp-classification, +github.com/JEsperancinhaOrg/android-action, +github.com/JEsperancinhaOrg/loom-action, github.com/JEstabrook/regulon-enrichment, github.com/JEstes93/graphql-tumblr,num_dependents_deps.dev:0 github.com/JEuler/android-segmented-control,num_dependents_deps.dev:0 @@ -89676,7 +91697,13 @@ github.com/JIakki/gulp-quick,num_dependents_deps.dev:0 github.com/JIghtuse/rs-release,num_dependents_deps.dev:3 github.com/JInann/permission,num_dependents_deps.dev:0 github.com/JInann/vue-auto-router2, +github.com/JJ/files-present-action, +github.com/JJ/github-pr-contains-action, +github.com/JJ/issue-greeting-action, github.com/JJ/nodeo,num_dependents_deps.dev:0 +github.com/JJ/pull-request-checks-action, +github.com/JJ/raku-container-action, +github.com/JJ/raku-test-action, github.com/JJ0131/Cbastats, github.com/JJ11teen/cloud-mappings, github.com/JJ11teen/deflatable-dict, @@ -89709,6 +91736,7 @@ github.com/JJWesterkamp/remove-assets-webpack-plugin, github.com/JJWesterkamp/rx-postmessenger,num_dependents_deps.dev:0 github.com/JJWesterkamp/sass-utils,num_dependents_deps.dev:0 github.com/JJWesterkamp/typedoc-theme,num_dependents_deps.dev:0 +github.com/JJayet/pr-labeler-action, github.com/JJohnson45/lodown,num_dependents_deps.dev:0 github.com/JKC-Codes/eleventy-plugin-automatic-noopener,num_dependents_deps.dev:0 github.com/JKC-Codes/eleventy-plugin-code-style-hooks,num_dependents_deps.dev:0 @@ -89729,6 +91757,7 @@ github.com/JKU-ICG/trrack-notebook-vis,num_dependents_deps.dev:0 github.com/JKY/node-api-connector,num_dependents_deps.dev:0 github.com/JKaram/lotide,num_dependents_deps.dev:0 github.com/JKartchner24/devcamp-js-footer,num_dependents_deps.dev:0 +github.com/JKarwatka/validate-yaml-schema-action, github.com/JKearnsl/HentaiChanApi, github.com/JKearnsl/HentaiChanApi-async, github.com/JKerney-HunterIndustries/ApprovalResultFactory,num_dependents_deps.dev:0 @@ -89868,11 +91897,13 @@ github.com/JNevrly/cascadict, github.com/JNuutinen/varial, github.com/JOIVY/gaesd, github.com/JOML-CI/JOML,"criticality_score:0.442340,num_dependents_deps.dev:19" +github.com/JOSHUAJEBARAJ/Kubescape-custom-actions, github.com/JOSM/tag2link,num_dependents_deps.dev:0 github.com/JOT85/netatmo,num_dependents_deps.dev:0 github.com/JOU-amjs/string-discontinuous-match,num_dependents_deps.dev:0 github.com/JOU-amjs/super-inspector, github.com/JOURNEY-CP/eslintrc,num_dependents_deps.dev:0 +github.com/JOURNEY-CP/journey-publish-heroku, github.com/JOadelic/LOTIDE-pair-programming-,num_dependents_deps.dev:0 github.com/JOndarza/ngx-extensions,num_dependents_deps.dev:0 github.com/JOoNnN/jatchy_util,num_dependents_deps.dev:0 @@ -89939,6 +91970,7 @@ github.com/JPressProjects/jpress,criticality_score:0.448930 github.com/JPrisk/Tailwind-spacing-cli,num_dependents_deps.dev:0 github.com/JQHxx/react-native-cardview,num_dependents_deps.dev:0 github.com/JQIamo/pylcp, +github.com/JR-1991/markdown-to-api-action, github.com/JR-Lee/page-print,num_dependents_deps.dev:0 github.com/JR-Y/obj-sorting,num_dependents_deps.dev:0 github.com/JR93/joy-bundler,num_dependents_deps.dev:0 @@ -89961,6 +91993,7 @@ github.com/JRJurman/rollup-plugin-polyfill,num_dependents_deps.dev:24 github.com/JRJurman/steno-scripts,num_dependents_deps.dev:0 github.com/JRJurman/ticket-printer,num_dependents_deps.dev:0 github.com/JRJurman/url-listener,num_dependents_deps.dev:0 +github.com/JRMurr/direnv-nix-action, github.com/JRO-Peru/schainpy, github.com/JRafael91/ng-angular8-datatable,num_dependents_deps.dev:0 github.com/JRafiei/pyarango-async, @@ -89978,8 +92011,10 @@ github.com/JRoehrig/dgm1, github.com/JRoehrig/evapotranspiration, github.com/JRoseCPMax/cpmax_toolbox, github.com/JRosenkranz/opts,num_dependents_deps.dev:1 +github.com/JRubics/docker-github-action-template, github.com/JRubics/pjisp-diff, github.com/JRubics/pjisp-template-name, +github.com/JRubics/poetry-publish, github.com/JS-DevTools/assert,num_dependents_deps.dev:10 github.com/JS-DevTools/browserify-banner,num_dependents_deps.dev:6 github.com/JS-DevTools/chai-exec,num_dependents_deps.dev:2 @@ -90368,6 +92403,7 @@ github.com/JaLe29/travian-kingdoms-api,num_dependents_deps.dev:0 github.com/JaLe29/use-pure-query-state,num_dependents_deps.dev:0 github.com/JaRomero95/test-npm,num_dependents_deps.dev:0 github.com/JaSamLudiMoskri/cloud_time_saver_prod, +github.com/JaSiLez/smtp-notifier, github.com/JaWeilBaum/pyqtlet2, github.com/JaZo/vue-cli-plugin-gh-pages,num_dependents_deps.dev:0 github.com/Jaagrav/react-pretty-carousel,num_dependents_deps.dev:0 @@ -90408,6 +92444,7 @@ github.com/Jabher/cornerjs,num_dependents_deps.dev:0 github.com/Jabher/cypher-talker, github.com/Jabher/dothe,num_dependents_deps.dev:0 github.com/Jabher/gulp-todos,num_dependents_deps.dev:0 +github.com/JabobKrauskopf/flyctl-actions-with-output, github.com/Jabor047/LidarToGeo, github.com/Jac21/react-cinemagraph, github.com/JacBian/copote-ui,num_dependents_deps.dev:0 @@ -90471,6 +92508,7 @@ github.com/JackDTaylor/jsx-react-utils, github.com/JackDTaylor/webpack-here,num_dependents_deps.dev:0 github.com/JackDanger/permanent_records,num_dependents_deps.dev:0 github.com/JackDanielsAndCode/react-native-multi-slider,num_dependents_deps.dev:0 +github.com/JackDevAU/Flinter, github.com/JackDing1208/gulu-demo,num_dependents_deps.dev:0 github.com/JackDing1208/jd-react-ui,num_dependents_deps.dev:0 github.com/JackFGreen/green-cli,num_dependents_deps.dev:0 @@ -90485,6 +92523,7 @@ github.com/JackGit/material-ui-vue,num_dependents_deps.dev:0 github.com/JackGit/react-arcgis-ext,num_dependents_deps.dev:0 github.com/JackGouldingay/create-express,num_dependents_deps.dev:0 github.com/JackHamer09/alt-rpc, +github.com/JackHowa/delete-github-package-versions, github.com/JackHowa/react-actioncable-provider, github.com/JackHuang16/create-react-app,num_dependents_deps.dev:0 github.com/JackKCWong/concise-promise,num_dependents_deps.dev:0 @@ -90500,6 +92539,9 @@ github.com/JackLin00/hasaki, github.com/JackMarx/pokemon_lookup,num_dependents_deps.dev:0 github.com/JackMarx/sqlite_print_table,num_dependents_deps.dev:0 github.com/JackMcKew/pandas_alive,criticality_score:0.372800 +github.com/JackMcKew/pyinstaller-action-linux, +github.com/JackMcKew/pyinstaller-action-windows, +github.com/JackMcKew/python-interrogate-check, github.com/JackMcKew/wordsum, github.com/JackMorrissey/grunt-semvercopy,num_dependents_deps.dev:0 github.com/JackMoth/censorify,num_dependents_deps.dev:0 @@ -90531,6 +92573,8 @@ github.com/JackSouster/covid-dashboard-jis206, github.com/JackSpaniel/seed,num_dependents_deps.dev:0 github.com/JackSpaniel/yukon,num_dependents_deps.dev:0 github.com/JackTheMico/paramspy, +github.com/JackTn/repo-file-sync-action, +github.com/JackTn/script_github_actions, github.com/JackWReid/primes,num_dependents_deps.dev:0 github.com/JackWalpole/splitwavepy, github.com/JackWong992/feelone,num_dependents_deps.dev:0 @@ -90554,6 +92598,7 @@ github.com/Jackbar/v-tree-select,num_dependents_deps.dev:0 github.com/Jackbar/v-tree-select-element,num_dependents_deps.dev:0 github.com/Jackbennett/project-discovery,num_dependents_deps.dev:0 github.com/Jackdcj/cj-ui-vue,num_dependents_deps.dev:0 +github.com/Jackenmen/label-doconly-changes, github.com/JacketZeng/ccbar,num_dependents_deps.dev:0 github.com/Jackett/Jackett,criticality_score:0.739630 github.com/Jackevansevo/basic-utils, @@ -90614,6 +92659,7 @@ github.com/Jackong/react-title,num_dependents_deps.dev:0 github.com/Jackong/reactcss-decorator,num_dependents_deps.dev:0 github.com/Jackong/redux-authentication,num_dependents_deps.dev:0 github.com/Jackong/wxappy,num_dependents_deps.dev:0 +github.com/Jackroj/Go_Github_Action, github.com/Jacksgong/JKeyboardPanelSwitch,num_dependents_deps.dev:1 github.com/Jacksgong/MessageHandler,num_dependents_deps.dev:0 github.com/Jacksgong/PercentSmoothHandler,num_dependents_deps.dev:0 @@ -90737,6 +92783,7 @@ github.com/Jackybecomebetter/python_lib, github.com/Jackyjjc/MiniJSON.cs,Google github.com/Jackysi/advancedtomato,criticality_score:0.399660 github.com/JackywithaWhiteDog/dwtest, +github.com/JackywithaWhiteDog/lighthouse-viewer-action, github.com/Jackyzhang1991/grunt-webapp-final,num_dependents_deps.dev:0 github.com/Jackyzm/express-swagger-generator, github.com/JacoKoo/drizzlejs,num_dependents_deps.dev:0 @@ -90761,6 +92808,8 @@ github.com/JacobDB/node-sass-simple-css-importer,num_dependents_deps.dev:0 github.com/JacobDB/pwa-icon-generator,num_dependents_deps.dev:0 github.com/JacobDB/pwa-install-prompt,num_dependents_deps.dev:0 github.com/JacobDer/textbag, +github.com/JacobDomagala/CompileResult, +github.com/JacobDomagala/StaticAnalysis, github.com/JacobDoucet/juiceJs,num_dependents_deps.dev:0 github.com/JacobDowns/sigmapy, github.com/JacobEberhardt/OpenSSHPubKeyParser,num_dependents_deps.dev:0 @@ -90785,6 +92834,8 @@ github.com/JacobHilbert/week_schedule, github.com/JacobHsu/node-npm,num_dependents_deps.dev:0 github.com/JacobKnaack/linked-list,num_dependents_deps.dev:0 github.com/JacobLandau/pykcd, +github.com/JacobLinCool/huggingface-sync, +github.com/JacobLinCool/piconvert, github.com/JacobMGEvans/git-graft,num_dependents_deps.dev:0 github.com/JacobMGEvans/jacobmgevans-card,num_dependents_deps.dev:0 github.com/JacobMaldonado/pylogflow, @@ -90793,7 +92844,10 @@ github.com/JacobOscarson/pycrxlib, github.com/JacobOtte/filesweeper,num_dependents_deps.dev:0 github.com/JacobPlaster/hadron-theme-wocka,num_dependents_deps.dev:0 github.com/JacobReynolds/butt-time,num_dependents_deps.dev:0 +github.com/JacobSMoller/github-tag-action, +github.com/JacobSMoller/setup-protoc-grpc-java, github.com/JacobSNGoodwin/vue-dfs-store,num_dependents_deps.dev:0 +github.com/JacobSamro/netlify-deploy, github.com/JacobSickels/heropatterns-react,num_dependents_deps.dev:0 github.com/JacobSiegel35/list.js,num_dependents_deps.dev:0 github.com/JacobSteves/native-highcharts-wrapper,num_dependents_deps.dev:0 @@ -90865,6 +92919,7 @@ github.com/JacquesParis/model-tree,num_dependents_deps.dev:0 github.com/JacquesParis/objects-angular, github.com/JacquesParis/objects-website,num_dependents_deps.dev:0 github.com/JacquesW/gulp-dot2cjs,num_dependents_deps.dev:0 +github.com/Jacup/publish-nuget, github.com/Jacxk/Sourcebin-Wrapper,num_dependents_deps.dev:0 github.com/Jacxk/TeamTrees-API,num_dependents_deps.dev:0 github.com/Jacxk/discord-http.js,num_dependents_deps.dev:0 @@ -90897,6 +92952,7 @@ github.com/Jadtz/quran.py, github.com/JadziaHax/clean-cut,num_dependents_deps.dev:0 github.com/JaeHeyK/react-native-jellytoolbar,num_dependents_deps.dev:0 github.com/JaeSeoKim/kakao.maps.d.ts,num_dependents_deps.dev:0 +github.com/JaeSeoKim/norminette-action, github.com/JaeSeoKim/react-kakao-maps,num_dependents_deps.dev:0 github.com/JaeYeopHan/Interview_Question_for_Beginner,criticality_score:0.434520 github.com/JaeYeopHan/component_development_practice,num_dependents_deps.dev:0 @@ -90962,9 +93018,13 @@ github.com/JahlHernandez/Cochimetl,num_dependents_deps.dev:0 github.com/Jahosh/infinitjukebox,num_dependents_deps.dev:0 github.com/JahsiasWhite/AlbumOfTheYearWrapper, github.com/Jai-Chaudhary/pig-latin-translation-microservice, +github.com/Jai-JAP/sync-upstream-repo, github.com/Jai2500/particle-tagging, github.com/JaiLaff/XER-Splitter, github.com/JaiWillems/Celest, +github.com/Jaid/action-npm-install, +github.com/Jaid/action-sync-node-meta, +github.com/Jaid/action-uptodater, github.com/Jaid/alias-fields,num_dependents_deps.dev:4 github.com/Jaid/amazoom,num_dependents_deps.dev:0 github.com/Jaid/app-folder,num_dependents_deps.dev:30 @@ -91095,6 +93155,7 @@ github.com/JaimermXD/LbelDB.js,num_dependents_deps.dev:0 github.com/JaimermXD/logic-gates,num_dependents_deps.dev:0 github.com/JaimermXD/morse-converter,num_dependents_deps.dev:0 github.com/JaimieMurdock/othello, +github.com/Jaimin-Patel30/actions-tracker, github.com/JaineBudke/BIOME_testes_calcrustica, github.com/JairFrancesco/VNudity,num_dependents_deps.dev:0 github.com/JairLizarraga/tjbotlib,num_dependents_deps.dev:0 @@ -91224,7 +93285,9 @@ github.com/JakeOShannessy/rs-posix-resources,num_dependents_deps.dev:0 github.com/JakePartusch/gatsby-theme-contentful-gallery,num_dependents_deps.dev:0 github.com/JakePartusch/lighthouse-as-a-service,num_dependents_deps.dev:0 github.com/JakePartusch/lumberjack,num_dependents_deps.dev:0 +github.com/JakePartusch/psi-action, github.com/JakePartusch/serverlessui,num_dependents_deps.dev:21 +github.com/JakePartusch/wait-for-netlify-action, github.com/JakePrim/Frontend-engineering,num_dependents_deps.dev:0 github.com/JakeRawr/function-log,num_dependents_deps.dev:0 github.com/JakeRoggenbuck/ImportLinter, @@ -91375,6 +93438,7 @@ github.com/JakubKoralewski/mdbook-fluent,num_dependents_deps.dev:0 github.com/JakubMarkiewicz/bs-react-trello,num_dependents_deps.dev:0 github.com/JakubMarkiewicz/reason-transition-group,num_dependents_deps.dev:0 github.com/JakubMifek/SelectTransform,num_dependents_deps.dev:0 +github.com/JakubMosakowski/secret-into-file-action, github.com/JakubMrozek/eet,num_dependents_deps.dev:0 github.com/JakubMrozek/express-api-router,num_dependents_deps.dev:0 github.com/JakubMrozek/fb-test-user,num_dependents_deps.dev:0 @@ -91777,6 +93841,7 @@ github.com/JamesJGoodwin/umbress,num_dependents_deps.dev:0 github.com/JamesJJ/fluent-plugin-email-obfuscate,num_dependents_deps.dev:0 github.com/JamesJansson/sequelize-temporalize,num_dependents_deps.dev:0 github.com/JamesJeffryes/repo-stat-stash, +github.com/JamesJonesConsulting/github.bash-in-ssh-agent.action, github.com/JamesKBowler/opencollect, github.com/JamesKator/pie-react-native,num_dependents_deps.dev:0 github.com/JamesKator/piperjs,num_dependents_deps.dev:0 @@ -91822,6 +93887,7 @@ github.com/JamesMGreene/nedb-session-store,num_dependents_deps.dev:6 github.com/JamesMGreene/nestdb,num_dependents_deps.dev:0 github.com/JamesMGreene/node-aes256,num_dependents_deps.dev:92 github.com/JamesMGreene/node-dos2unix,num_dependents_deps.dev:6 +github.com/JamesMGreene/node-draft-releaser, github.com/JamesMGreene/node-flex-sdk,num_dependents_deps.dev:4 github.com/JamesMGreene/node-flexpmd,num_dependents_deps.dev:0 github.com/JamesMGreene/node-gcph-client,num_dependents_deps.dev:0 @@ -91889,6 +93955,7 @@ github.com/JamesRandall/AngularJS-OAuth2,num_dependents_deps.dev:0 github.com/JamesRandall/react-azure-adb2c,num_dependents_deps.dev:0 github.com/JamesRitchie/django-rest-framework-expiring-tokens, github.com/JamesRitchie/django-rest-framework-sav, +github.com/JamesRobertWiseman/pnpm-audit, github.com/JamesRobinson-THG/CsPy_Uploading, github.com/JamesRunnalls/canvas-heatmap,num_dependents_deps.dev:0 github.com/JamesRunnalls/leaflet-contour, @@ -91904,6 +93971,8 @@ github.com/JamesShuttler/Postie,num_dependents_deps.dev:0 github.com/JamesShuttler/Printr,num_dependents_deps.dev:0 github.com/JamesShuttler/SpideyBoy,num_dependents_deps.dev:0 github.com/JamesSingleton/hooks-arsenal,num_dependents_deps.dev:0 +github.com/JamesSingleton/is-organization-member, +github.com/JamesSingleton/leave-a-comment, github.com/JamesSingleton/one-app-tools, github.com/JamesSingleton/react-building-blocks,num_dependents_deps.dev:0 github.com/JamesSingleton/react-building-modules, @@ -91926,6 +93995,7 @@ github.com/JamesWheadon/prime-factors,num_dependents_deps.dev:0 github.com/JamesWhiteleyIV/Equity-Data-Web-Scraper, github.com/JamesWhiteleyIV/Investment-Utility, github.com/JamesWhiteleyIV/Portfolio-Manager, +github.com/JamesWoolfenden/action-pike, github.com/JamesWorth93/node-json2officexml-2,num_dependents_deps.dev:0 github.com/JamesYYang/Health-Check,num_dependents_deps.dev:0 github.com/JamesYYang/faq,num_dependents_deps.dev:0 @@ -92036,6 +94106,7 @@ github.com/JamieGrimwood/wisp.js,num_dependents_deps.dev:0 github.com/JamieLivingstone/LocalPress,num_dependents_deps.dev:0 github.com/JamieLivingstone/Notifications,num_dependents_deps.dev:8 github.com/JamieMagee/hashflags-node,num_dependents_deps.dev:0 +github.com/JamieMagee/wayback, github.com/JamieMason/ImageOptim-CLI,"criticality_score:0.391400,num_dependents_deps.dev:8" github.com/JamieMason/Jasmine-Matchers,"criticality_score:0.328650,num_dependents_deps.dev:59" github.com/JamieMason/Perftacular,num_dependents_deps.dev:0 @@ -92065,6 +94136,7 @@ github.com/JamieMason/self-help,num_dependents_deps.dev:0 github.com/JamieMason/shrinkpack,num_dependents_deps.dev:0 github.com/JamieMason/subclass.js,num_dependents_deps.dev:0 github.com/JamieMason/syncpack,num_dependents_deps.dev:0 +github.com/JamieMason/syncpack-github-action, github.com/JamieMason/ts-import-types-cli,num_dependents_deps.dev:0 github.com/JamieREvans/JSONPlus,num_dependents_deps.dev:0 github.com/JamieREvans/RequiredParams,num_dependents_deps.dev:0 @@ -92091,6 +94163,8 @@ github.com/Jamling/hexo-generator-github,num_dependents_deps.dev:0 github.com/Jamling/hexo-generator-i18n,num_dependents_deps.dev:0 github.com/Jamling/hexo-generator-index2,num_dependents_deps.dev:0 github.com/Jammerwoch/jawk,num_dependents_deps.dev:0 +github.com/Jamminroot/todo-2-azdo, +github.com/Jamminroot/todo-2-gh-issue, github.com/Jammy2211/PyAutoArray, github.com/Jammy2211/PyAutoGalaxy, github.com/Jammy2211/PyAutoLens, @@ -92130,6 +94204,7 @@ github.com/Jan000/Python-Freggers-Bot, github.com/Jan200101/ShellyPy, github.com/Jan200101/unixreg, github.com/JanAbraham/binance-reporting, +github.com/JanAdamiak/precommit-hooks-dependency-updating, github.com/JanBessai/shapeless-feat,num_dependents_deps.dev:6 github.com/JanBinkowski/SignLanguageRecognition, github.com/JanBloch/js-subscribable,num_dependents_deps.dev:0 @@ -92187,6 +94262,7 @@ github.com/JanST123/js.js,num_dependents_deps.dev:0 github.com/JanSchuermannPH/sd-ngx-jsonapi,num_dependents_deps.dev:0 github.com/JanSkvaril/Gabro-Framework,num_dependents_deps.dev:0 github.com/JanStevens/angular-growl-2,num_dependents_deps.dev:0 +github.com/JanSzewczyk/gh-action-szum-tech, github.com/JanUnld/confenv,num_dependents_deps.dev:0 github.com/JanVanRyswyck/awesome-talks,criticality_score:0.413870 github.com/JanVoracek/process-env-ts,num_dependents_deps.dev:0 @@ -92253,6 +94329,7 @@ github.com/JaneTurueva/py-romanify, github.com/JaneaSystems/convert-sourcemap-stacktrace,num_dependents_deps.dev:0 github.com/JaneaSystems/nodejs-mobile-react-native,"criticality_score:0.311260,num_dependents_deps.dev:0" github.com/JaneaSystems/webpack-sandbox-external-plugin,num_dependents_deps.dev:0 +github.com/Janealter/branch-pr-comment, github.com/Janealter/ref-array-napi,num_dependents_deps.dev:12 github.com/Janealter/ref-struct-napi,num_dependents_deps.dev:28 github.com/Janealter/ref-wchar-napi,num_dependents_deps.dev:26 @@ -92295,6 +94372,7 @@ github.com/Janinf/npm__pg-connection-wrapper,num_dependents_deps.dev:0 github.com/Janinf/openwhisk-function-error-handler,num_dependents_deps.dev:0 github.com/JaniniRami07/CustomFN, github.com/JaniszM/easylife, +github.com/JanithaR/github-fullname-action, github.com/Janjiran/react-native-off-storage,num_dependents_deps.dev:0 github.com/JankCrilly/anydoor,num_dependents_deps.dev:0 github.com/JankGaming/jankbot-modules,num_dependents_deps.dev:0 @@ -92312,6 +94390,8 @@ github.com/Jannchie/pyobe, github.com/Jannchie/simpyder, github.com/Jannchie/spider-cookies, github.com/Jannchie/spying.js,num_dependents_deps.dev:0 +github.com/JanneMattila/azure-api-management-developer-portal-action, +github.com/JanneMattila/get-version-from-tag, github.com/JannerM/gamma-models,Google github.com/JannesMeyer/chrome-tool,num_dependents_deps.dev:0 github.com/JannesMeyer/clipboard-tool,num_dependents_deps.dev:0 @@ -92364,6 +94444,10 @@ github.com/Janpot/then-redis-scripts, github.com/Janpot/virtual-time,num_dependents_deps.dev:0 github.com/JansenZ/react-context,num_dependents_deps.dev:0 github.com/JanssenZhang/vue-drag-select, +github.com/JantHsueh/get-apk-info-action, +github.com/JantHsueh/get-git-log-action, +github.com/JantHsueh/get-time-action, +github.com/JantHsueh/upload-file-action, github.com/Jantje19/material-swipeable-list,num_dependents_deps.dev:0 github.com/Jantje19/nodejs-move-folder-d1,num_dependents_deps.dev:0 github.com/Janus-Z/mailover,num_dependents_deps.dev:0 @@ -92387,6 +94471,7 @@ github.com/JaosnHsieh/github-star-search, github.com/JaouShingan/create-file-arv,num_dependents_deps.dev:0 github.com/JaouShingan/create-front-framework,num_dependents_deps.dev:0 github.com/JapMul/childnode-remove,num_dependents_deps.dev:0 +github.com/JapSeyz/action-electron-builder, github.com/Jap_patel/Perceptron_PyPi_package, github.com/Japan-Venture-Research/plume-ui,num_dependents_deps.dev:0 github.com/JapiAxom/nijor,num_dependents_deps.dev:0 @@ -92443,6 +94528,7 @@ github.com/JaredCrimmins/sequelize-transformations, github.com/JaredCubilla/goodnight,num_dependents_deps.dev:0 github.com/JaredCubilla/jsonresume-theme-classy,num_dependents_deps.dev:0 github.com/JaredCubilla/node-assmar,num_dependents_deps.dev:0 +github.com/JaredEzz/github-action-slack-notify-build, github.com/JaredFern/VecShare, github.com/JaredFlomen/lotide,num_dependents_deps.dev:0 github.com/JaredLincenberg/xml-stream-saxjs,num_dependents_deps.dev:0 @@ -92460,6 +94546,7 @@ github.com/JaredReando/convert-zip-to-gps,num_dependents_deps.dev:0 github.com/JaredReisinger/order-fetcher,num_dependents_deps.dev:0 github.com/JaredReisinger/react-crossword,num_dependents_deps.dev:0 github.com/JaredStufft/mbta, +github.com/JaredZieche/terragrunt-deployment-matrix, github.com/Jaredk3nt/Kent,num_dependents_deps.dev:0 github.com/Jaredk3nt/Marky,num_dependents_deps.dev:0 github.com/Jaredk3nt/enums,num_dependents_deps.dev:0 @@ -92480,6 +94567,7 @@ github.com/JargeZ/RocketChat-Simple-AppBot, github.com/JargonInc/jargon-sdk-nodejs,num_dependents_deps.dev:0 github.com/JariBou/PySimpleProperties, github.com/Jaric-Lefty/lodown,num_dependents_deps.dev:0 +github.com/Jarivanbakel/typst-action, github.com/JarivdKaap/steam-api-ts,num_dependents_deps.dev:0 github.com/Jarlakxen/play-prerender,num_dependents_deps.dev:0 github.com/Jarlakxen/prerender-base-path,num_dependents_deps.dev:0 @@ -92579,6 +94667,7 @@ github.com/JarvisZhangGurufocus/gf-event-bus,num_dependents_deps.dev:0 github.com/JarvisZhangGurufocus/gf-window-messager,num_dependents_deps.dev:0 github.com/Jarvix/node-easy-ideal,num_dependents_deps.dev:0 github.com/JarvusInnovations/Emergence,num_dependents_deps.dev:0 +github.com/JarvusInnovations/background-action, github.com/JarvusInnovations/chaki,num_dependents_deps.dev:0 github.com/JarvusInnovations/git-client,"num_dependents_deps.dev:4,num_dependents_deps.dev:0" github.com/JarvusInnovations/gitsheets,num_dependents_deps.dev:0 @@ -92596,6 +94685,7 @@ github.com/Jarweb/rufetch,num_dependents_deps.dev:0 github.com/Jarweb/wolverine,num_dependents_deps.dev:0 github.com/Jarweb/wolverine-state,num_dependents_deps.dev:0 github.com/Jarzon/PrimGulp,num_dependents_deps.dev:0 +github.com/JasCodes/pr-branch-action, github.com/JasKang/babel-plugin-vue-next-jsx, github.com/JasKang/craco-less-plugin, github.com/JasKang/elenext,num_dependents_deps.dev:0 @@ -92643,8 +94733,10 @@ github.com/Jasig/spring-webflow-client-repo,num_dependents_deps.dev:4 github.com/Jasig/ssp-data-import,num_dependents_deps.dev:0 github.com/Jasig/uPortal,num_dependents_deps.dev:24168 github.com/Jasig/uportal-maven-plugin,num_dependents_deps.dev:0 +github.com/JasirZaeem/caprover-deploy, github.com/Jasmeet-1998/create-full-api-boilerplate,num_dependents_deps.dev:0 github.com/JasmeetRangar/lotide,num_dependents_deps.dev:0 +github.com/Jasmin2895/open-graph-image, github.com/Jasmin2895/web-monetized-video,num_dependents_deps.dev:0 github.com/Jasmin2895/webpack-plugin, github.com/JasminDreasond/ForPromise-JS,num_dependents_deps.dev:4 @@ -92717,18 +94809,23 @@ github.com/JasonDemitri/gush,num_dependents_deps.dev:0 github.com/JasonDrt/semic, github.com/JasonEtco/action-record,num_dependents_deps.dev:0 github.com/JasonEtco/actions-toolkit,"criticality_score:0.372420,num_dependents_deps.dev:0" +github.com/JasonEtco/build-and-tag-action, github.com/JasonEtco/cachepot,num_dependents_deps.dev:0 +github.com/JasonEtco/create-an-issue, github.com/JasonEtco/find-code,num_dependents_deps.dev:0 github.com/JasonEtco/flintcms,num_dependents_deps.dev:0 github.com/JasonEtco/gist-box,num_dependents_deps.dev:0 github.com/JasonEtco/grunt-jekyll-post,num_dependents_deps.dev:0 +github.com/JasonEtco/is-sponsor-label-action, github.com/JasonEtco/jasonetco, github.com/JasonEtco/nunjucks-octicons-extension, github.com/JasonEtco/nunjucks-pre-lexer,num_dependents_deps.dev:0 github.com/JasonEtco/readme-box,num_dependents_deps.dev:0 +github.com/JasonEtco/smee-action, github.com/JasonEtco/streamydoo,num_dependents_deps.dev:0 github.com/JasonEtco/test-selector,num_dependents_deps.dev:0 github.com/JasonEtco/todo,criticality_score:0.344900 +github.com/JasonEtco/upload-to-release, github.com/JasonEtco/zappydoo,num_dependents_deps.dev:0 github.com/JasonFF/FMexMiner,num_dependents_deps.dev:0 github.com/JasonFF/jasonff-tools,num_dependents_deps.dev:0 @@ -92829,6 +94926,7 @@ github.com/JasonWangDev/drawable-view-android,num_dependents_deps.dev:0 github.com/JasonWangDev/filepicker-android,num_dependents_deps.dev:0 github.com/JasonWangDev/image-utils,num_dependents_deps.dev:0 github.com/JasonWangDev/signaturepad-dialogfragment-android,num_dependents_deps.dev:0 +github.com/JasonWei512/Upload-Microsoft-Store-MSIX-Package-to-GitHub-Release, github.com/JasonXu-histo/crystal-upload, github.com/JasonXuDeveloper/JEngine,criticality_score:0.308980 github.com/JasonYangShadow/owncloud_webdav_js,num_dependents_deps.dev:0 @@ -92855,6 +94953,7 @@ github.com/Jasper-Bekkers/xatlas-rs,num_dependents_deps.dev:0 github.com/Jasper-Koops/easy-gscv, github.com/Jasper-zzq/rn-appintro,num_dependents_deps.dev:0 github.com/Jasper912/jupyter_hdfs_kernel, +github.com/JasperAlexander/weaviate-github-action, github.com/JasperBoom/caltha, github.com/JasperFx/lamar,criticality_score:0.418760 github.com/JasperFx/marten,criticality_score:0.571830 @@ -92908,6 +95007,7 @@ github.com/JatinderSingh/Deferring-Executors,num_dependents_deps.dev:0 github.com/JatinderSingh/http-server,num_dependents_deps.dev:0 github.com/JatobaDjangoSolutions/libpythonprojat2022, github.com/JattCoder/react-native-listView,num_dependents_deps.dev:0 +github.com/Jatus93/Latex-multicompiler, github.com/Jaume-JCI/block_types, github.com/Jaume-JCI/hpsearch, github.com/Jaumo/apn-rest,num_dependents_deps.dev:0 @@ -92938,6 +95038,7 @@ github.com/JavaPOSWorkingGroup/javapos-config-loader,num_dependents_deps.dev:0 github.com/JavaPOSWorkingGroup/javapos-contracts,num_dependents_deps.dev:2 github.com/JavaPOSWorkingGroup/javapos-controls,num_dependents_deps.dev:0 github.com/JavaProgswing/googlescrape, +github.com/JavaRip/gpt-code-review, github.com/JavaSDR/HackRF-Driver,num_dependents_deps.dev:0 github.com/JavaSDR/JavaSDRLib,num_dependents_deps.dev:0 github.com/JavaSDR/UHD-Driver,num_dependents_deps.dev:0 @@ -93032,6 +95133,7 @@ github.com/Javid-Izadfar/gridsome-plugin-device-detector-js,num_dependents_deps. github.com/Javidjms/docker-prepare, github.com/Javidjms/influxable, github.com/Javier-Rotelli/donthack,num_dependents_deps.dev:0 +github.com/Javier-varez/google-repo-action, github.com/Javier747Belbruno/cannon-es-control, github.com/JavierArredondo/vue-fits,num_dependents_deps.dev:0 github.com/JavierDevs/Im-Bored-pypi, @@ -93046,6 +95148,7 @@ github.com/JavierMendozaGomez/deep-value-replacer,num_dependents_deps.dev:0 github.com/JavierMolinaH/my-own-library,num_dependents_deps.dev:0 github.com/JavierOramas/video-diet, github.com/JavierPalomares90/pypitchfx, +github.com/JavierReyesO/generate-task-definitions-files, github.com/JavierRizzoA/rimador,num_dependents_deps.dev:2 github.com/Javierex/platzom,num_dependents_deps.dev:0 github.com/Javierpal/nativescript-cscreenshot,num_dependents_deps.dev:0 @@ -93093,6 +95196,7 @@ github.com/JaxBen98/emoji-farm, github.com/JaxGit/react-native-keyboard-spacer,num_dependents_deps.dev:0 github.com/JaxGit/remotedev-app,num_dependents_deps.dev:0 github.com/JaxSongYanCheng/bit-util,num_dependents_deps.dev:0 +github.com/JaxStar90/hello-github-actions, github.com/Jaxmetalmax/clientdoapi, github.com/Jaxolotl/wdclib,num_dependents_deps.dev:0 github.com/JaxonSong/color-converter,num_dependents_deps.dev:0 @@ -93106,6 +95210,7 @@ github.com/Jaxwood/guardians-of-the-galaxies,num_dependents_deps.dev:0 github.com/Jay-Ayres/list-files-pkg,num_dependents_deps.dev:0 github.com/Jay-Ivy/ioredis-session-node,num_dependents_deps.dev:0 github.com/Jay-Ivy/mslog4js-node,num_dependents_deps.dev:0 +github.com/Jay-Plumb/shopify-theme-preview, github.com/Jay-Y/generator-creater,num_dependents_deps.dev:0 github.com/Jay-flow/flow-react-cli,num_dependents_deps.dev:0 github.com/Jay-flow/react-native-awesome-naver-maps,num_dependents_deps.dev:0 @@ -93155,6 +95260,7 @@ github.com/JayKan/angular-todo-scape,num_dependents_deps.dev:0 github.com/JayKan/angular2-instagram-core,num_dependents_deps.dev:0 github.com/JayKay135/Nextion-InstructionSet,num_dependents_deps.dev:0 github.com/JayKay24/mypluralize,num_dependents_deps.dev:0 +github.com/JayLap/Simple-Vue-Firebase-Deploy-Github-Workflow, github.com/JayLap/jtb-vue-modal,num_dependents_deps.dev:0 github.com/JayLap/vue-modo,num_dependents_deps.dev:0 github.com/JayLo-ol/paytrack,num_dependents_deps.dev:0 @@ -93165,6 +95271,7 @@ github.com/JayMc/middle-match,num_dependents_deps.dev:0 github.com/JayMc/mongoose-bucket,num_dependents_deps.dev:0 github.com/JayMc/mongoose-hose,num_dependents_deps.dev:0 github.com/JayMc/tictactoe,num_dependents_deps.dev:0 +github.com/JayMeDotDot/aliyun-OSS-deployer, github.com/JayMo666/js-expand-tool,num_dependents_deps.dev:0 github.com/JayMo666/webplus,num_dependents_deps.dev:0 github.com/JayPavlina/Game-Music-Emu-Rust,num_dependents_deps.dev:0 @@ -93206,6 +95313,7 @@ github.com/JayaoLiu/micromqtt,num_dependents_deps.dev:0 github.com/Jayasainath/npm_example,num_dependents_deps.dev:0 github.com/Jayasankar-m/mocha-html-single-reporter,num_dependents_deps.dev:0 github.com/JayatiGumber/topsis-jayati-101803546, +github.com/JayatirthKulkarni/test-publish-repo, github.com/JayboBaker/choppy,num_dependents_deps.dev:0 github.com/Jaybur1/lotide,num_dependents_deps.dev:0 github.com/JayceHammond/lodown,num_dependents_deps.dev:0 @@ -93367,6 +95475,7 @@ github.com/Jbcampbe/ember-dc-shim, github.com/Jbcampbe/rn-splash,num_dependents_deps.dev:0 github.com/Jberczel/holdem,num_dependents_deps.dev:0 github.com/Jberivera/vanilla-datepicker,num_dependents_deps.dev:0 +github.com/Jberlinsky/kubernetes-action, github.com/Jberryliu/generator-h5slide,num_dependents_deps.dev:0 github.com/Jblew/amerykahospital-personalizedadvice-businesslogic,num_dependents_deps.dev:1 github.com/Jblew/amerykahospital-personalizedadvice-core,num_dependents_deps.dev:0 @@ -93402,6 +95511,7 @@ github.com/Jc2k/statsd-cloudwatch, github.com/JcDenton86/cordova-plugin-googledrive,num_dependents_deps.dev:0 github.com/JcDenton86/cordova-plugin-jc-googledrive,num_dependents_deps.dev:0 github.com/JcDenton86/gr.denton.photosphere,num_dependents_deps.dev:0 +github.com/Jcabza008/go-coverage-action, github.com/Jcambass/sane_patch,num_dependents_deps.dev:0 github.com/Jcanno/alight,num_dependents_deps.dev:0 github.com/Jcanno/best-queue,num_dependents_deps.dev:0 @@ -93458,9 +95568,11 @@ github.com/JeXLiN/getsize, github.com/Jeach/jeach-components,num_dependents_deps.dev:0 github.com/Jeach/jeach-log4node,num_dependents_deps.dev:0 github.com/Jeach/jeach-pqueues,num_dependents_deps.dev:0 +github.com/Jeadie/github-engineer, github.com/Jealee3000/co-component-oauth,num_dependents_deps.dev:0 github.com/Jean-Baptiste-Garcia/history-store,num_dependents_deps.dev:0 github.com/Jean-Baptiste-Garcia/history-trend,num_dependents_deps.dev:0 +github.com/Jean-Beru/action-platformsh-cli, github.com/Jean-Gabriel/MYSQLQueryDecorator,num_dependents_deps.dev:0 github.com/Jean-MarcCheynier/virtual-me-ts-core,num_dependents_deps.dev:0 github.com/Jean-OIKONOMOU/buck,num_dependents_deps.dev:0 @@ -93529,6 +95641,8 @@ github.com/Jebasuthan/vue-star-rating, github.com/Jecen/vFetch,num_dependents_deps.dev:0 github.com/Jecen/venus-eslint,num_dependents_deps.dev:0 github.com/Jecen/venus-ui,num_dependents_deps.dev:0 +github.com/Jeckerson/do-app-deploy-action, +github.com/Jeconias/changelog, github.com/JedShiMing/react-native-scan-code-cn, github.com/JedWatson/asyncdi,num_dependents_deps.dev:48 github.com/JedWatson/block-timer,num_dependents_deps.dev:0 @@ -93575,6 +95689,7 @@ github.com/Jeddy-2020/vue-thousandth-input, github.com/JedenZhan/simple-guide,num_dependents_deps.dev:0 github.com/JediChamp178/applicable, github.com/JediHero/jedi_toolz, +github.com/JediSchools/RichChecks, github.com/JediThePro/colorer.js,num_dependents_deps.dev:0 github.com/JediThePro/discord.js,num_dependents_deps.dev:0 github.com/JediThePro/figletify,num_dependents_deps.dev:0 @@ -93768,6 +95883,7 @@ github.com/JeffreyDotDev/clear-on-disable,num_dependents_deps.dev:0 github.com/JeffreyDotDev/vue-clear-on-disable, github.com/JeffreyFalgout/ThrowingStream,num_dependents_deps.dev:0 github.com/JeffreyFalgout/junit5-extensions,num_dependents_deps.dev:0 +github.com/JeffreyGarrett/branch-gh-action, github.com/JeffreyLiu666/LView, github.com/JeffreyLiu90/lotide,num_dependents_deps.dev:0 github.com/JeffreyRiggle/bison,num_dependents_deps.dev:0 @@ -93812,6 +95928,7 @@ github.com/Jefreesujit/time-formatter,num_dependents_deps.dev:0 github.com/Jefung/SQLAlchemy_wrap, github.com/Jefwillems/dragger,num_dependents_deps.dev:0 github.com/Jefxie/weex-request,num_dependents_deps.dev:0 +github.com/Jegp/conda-package-publish-action, github.com/JehadNasser/array-splitter-chunks,num_dependents_deps.dev:0 github.com/Jehan-Gao/cos-upload,num_dependents_deps.dev:0 github.com/JehanneH/lotide,num_dependents_deps.dev:0 @@ -93999,6 +96116,7 @@ github.com/JerBouma/FundamentalAnalysis, github.com/JerBouma/StravaAnalysis, github.com/JerBouma/ThePassiveInvestor, github.com/JerTH/elfy,num_dependents_deps.dev:0 +github.com/JerakRus/action-tsc, github.com/Jerakin/DefTree, github.com/Jerald/cylon_ast,num_dependents_deps.dev:1 github.com/Jerald/serenity_group_name,num_dependents_deps.dev:0 @@ -94130,6 +96248,13 @@ github.com/JeroenoBoy/NeuralNetwork,num_dependents_deps.dev:0 github.com/JeroenoBoy/SlashCommandLoader,num_dependents_deps.dev:0 github.com/JeroenoBoy/SlashDiscord.js,num_dependents_deps.dev:0 github.com/Jerolan/hyper-subliminal,num_dependents_deps.dev:0 +github.com/Jerome-1010/workflow-time-predictor, +github.com/Jerome1337/comment-pull-request, +github.com/Jerome1337/gofmt-action, +github.com/Jerome1337/goimports-action, +github.com/Jerome1337/golint-action, +github.com/Jerome1337/gomod-action, +github.com/Jerome1337/kaniko-action, github.com/JeromeBu/ts-option-result,num_dependents_deps.dev:0 github.com/JeromeDevillers/theatrevr,num_dependents_deps.dev:0 github.com/JeromeDevillers/vue-marquee,num_dependents_deps.dev:0 @@ -94274,6 +96399,7 @@ github.com/JesperGlas/jgbitlib, github.com/JesperJensen/gaconsent,num_dependents_deps.dev:0 github.com/JesperK123456/spotifyy, github.com/JesperLekland/react-native-svg-charts,"criticality_score:0.433650,num_dependents_deps.dev:0" +github.com/JesperNJessen/push-to-balenacloud, github.com/Jesperpaulsen/sanity-mobile-preview,num_dependents_deps.dev:0 github.com/Jesrat/django-process, github.com/Jesrat/django-telegram-logging, @@ -94314,6 +96440,7 @@ github.com/JesseNoseworthy/parcel-react-starter,num_dependents_deps.dev:0 github.com/JesseSolomon/neon-server,num_dependents_deps.dev:0 github.com/JesseStolwijk/reconnecting-event-source, github.com/JesseStorms/yomama,num_dependents_deps.dev:0 +github.com/JesseTG/rm, github.com/JesseTG/rwog,num_dependents_deps.dev:0 github.com/JesseTG/socklint, github.com/JesseWeb/wechaty-room-manager,num_dependents_deps.dev:0 @@ -94388,6 +96515,7 @@ github.com/JetBrains/Grammar-Kit,criticality_score:0.393300 github.com/JetBrains/JetBrainsMono,criticality_score:0.518960 github.com/JetBrains/KotlinDL,criticality_score:0.335570 github.com/JetBrains/MPS,criticality_score:0.504460 +github.com/JetBrains/ReSharper-InspectCode, github.com/JetBrains/android,criticality_score:0.566230 github.com/JetBrains/babel-preset,num_dependents_deps.dev:106 github.com/JetBrains/compose-jb,criticality_score:0.454060 @@ -94422,6 +96550,7 @@ github.com/JetBrains/logos,num_dependents_deps.dev:104 github.com/JetBrains/meta-runner-power-pack,criticality_score:0.338820 github.com/JetBrains/phpstorm-stubs,criticality_score:0.598440 github.com/JetBrains/projector-installer, +github.com/JetBrains/qodana-action, github.com/JetBrains/rd,criticality_score:0.367700 github.com/JetBrains/resharper-unity,criticality_score:0.571160 github.com/JetBrains/ring-ui,"criticality_score:0.638910,num_dependents_deps.dev:0" @@ -94434,6 +96563,8 @@ github.com/JetBrains/svg-sprite-loader,"criticality_score:0.524700,num_dependent github.com/JetBrains/teamcity-api-js,num_dependents_deps.dev:0 github.com/JetBrains/teamcity-messages, github.com/JetBrains/web-types,num_dependents_deps.dev:0 +github.com/JetBrains/writerside-checker-action, +github.com/JetBrains/writerside-github-action, github.com/JetBrains/xodus,"criticality_score:0.401810,num_dependents_deps.dev:670" github.com/JetBrains/xodus-dnq,num_dependents_deps.dev:9 github.com/JetBrains/youtrack-python-scripts, @@ -94501,6 +96632,7 @@ github.com/Jey-Cee/ioBroker.heytech,num_dependents_deps.dev:0 github.com/Jey-Cee/ioBroker.ikettle2,num_dependents_deps.dev:0 github.com/Jey-Cee/ioBroker.upnp,num_dependents_deps.dev:0 github.com/Jey-Cee/iobroker.primelab, +github.com/Jey-Cee/node-lts-versions, github.com/Jey-Cee/sharp-aquos-remote-control,num_dependents_deps.dev:0 github.com/JeyKeu/bootstrap-tab-wizard,num_dependents_deps.dev:0 github.com/JeyKeu/font-os, @@ -94627,6 +96759,7 @@ github.com/JiLiZART/hyper-monokai-vibrancy,num_dependents_deps.dev:0 github.com/JiLiZART/may.js,num_dependents_deps.dev:0 github.com/JiLiZART/sequence-as-promise,num_dependents_deps.dev:0 github.com/JiPaix/dotenv-manipulator,num_dependents_deps.dev:0 +github.com/JiPaix/package-json-updated-action, github.com/JiPaix/xdccJS,num_dependents_deps.dev:0 github.com/Jia-feng/vue-ueditor-wrap-ue135,num_dependents_deps.dev:0 github.com/JiaCheng-Huang/pypixel, @@ -94828,6 +96961,7 @@ github.com/Jie-Yuan/tuning, github.com/Jie-Yuan/wecom, github.com/Jie-Yuan/x2embedding, github.com/Jie211/hexo-ruby-character-fix,num_dependents_deps.dev:0 +github.com/JieDing/github-followers-action, github.com/JieGroup/slants, github.com/JiefeiC/robinson, github.com/JientDoNgoc/jient_view_tool,num_dependents_deps.dev:0 @@ -94886,6 +97020,8 @@ github.com/JimBobBennett/CircuitPython_Parse, github.com/JimBobBennett/CircuitPython_azurecustomvision_prediction, github.com/JimBobSquarePants/ImageProcessor,criticality_score:0.454050 github.com/JimChenWYU/vue-easy-localforage,num_dependents_deps.dev:0 +github.com/JimCronqvist/action-helm-chart-repo, +github.com/JimCronqvist/action-ssh, github.com/JimCurryWang/pyshopee, github.com/JimDabell/pypast, github.com/JimFawkes/britz, @@ -94957,6 +97093,7 @@ github.com/Jimdo/range-slider-sass,num_dependents_deps.dev:0 github.com/Jimdo/react-deprecate-props,num_dependents_deps.dev:0 github.com/Jimdo/serverless-dotenv,num_dependents_deps.dev:0 github.com/Jimdo/serverless-dynamodb-ttl,num_dependents_deps.dev:0 +github.com/Jimdo/should-i-notify-action, github.com/Jimdo/stylelint-config-jimdo,num_dependents_deps.dev:0 github.com/Jimdo/target-background-areas,num_dependents_deps.dev:0 github.com/Jimdo/templateflow,num_dependents_deps.dev:0 @@ -95038,6 +97175,7 @@ github.com/JimmyDaddy/react-native-sxc-appupdate,num_dependents_deps.dev:0 github.com/JimmyDaddy/react-native-umpay,num_dependents_deps.dev:0 github.com/JimmyHowe/vue-form-helper,num_dependents_deps.dev:0 github.com/JimmyHuang454/ECY_exe, +github.com/JimmyJammed/hello-world-composite-action, github.com/JimmyKuruvilla/karma-quicker-reporter,num_dependents_deps.dev:0 github.com/JimmyLamothe/autofront, github.com/JimmyLaurent/cloudflare-scraper, @@ -95080,6 +97218,7 @@ github.com/JimtotheB/resume, github.com/Jimut123/jimner, github.com/Jimut123/jimutmap, github.com/Jimut123/wisp, +github.com/Jimver/cuda-toolkit, github.com/Jin-K-Yang/NBAcrawler_module,num_dependents_deps.dev:0 github.com/Jin-zakk/oxford-text-checker,num_dependents_deps.dev:0 github.com/JinGyeSetBirdsFree/RadicalMaker, @@ -95154,6 +97293,7 @@ github.com/JinnLynn/genpac, github.com/JinnLynn/genpac-server, github.com/Jinnified/dvcoms,num_dependents_deps.dev:0 github.com/Jinntec/Fore, +github.com/JinoArch/get-latest-tag, github.com/JinrFE/jinr-sdk,num_dependents_deps.dev:0 github.com/Jinrenjie/vue-avatar-crop,num_dependents_deps.dev:0 github.com/Jinsung-L/asynque,num_dependents_deps.dev:0 @@ -95212,6 +97352,7 @@ github.com/JiriChara/redux-blower,num_dependents_deps.dev:0 github.com/JiriChara/vuex-crud,num_dependents_deps.dev:0 github.com/JiriPatroch/jpreactmuidatatable,num_dependents_deps.dev:0 github.com/Jirka-Mayer/Mashcima, +github.com/Jiro-Digital/slack-workflow-action, github.com/Jiro-Digital/starling-cli, github.com/Jiro-Digital/three-csg-ts, github.com/JiroUK/starling-cli,num_dependents_deps.dev:0 @@ -95219,10 +97360,12 @@ github.com/JiroUK/three-csg-ts,num_dependents_deps.dev:0 github.com/Jironett/Consilium-Dei,num_dependents_deps.dev:0 github.com/Jironett/Thecla,num_dependents_deps.dev:0 github.com/JisThomas14/EyesLibraryExtended, +github.com/Jisan09/SSH4Me, github.com/JisangYoon/homebridge-commax-web-boiler,num_dependents_deps.dev:0 github.com/JiscDACT/qualkit, github.com/JiscRDSS/rdss-terraform-standards-checker, github.com/Jisco/gedcom.json,num_dependents_deps.dev:0 +github.com/JishanCalix/html-to-text-action, github.com/Jishnu04/loggerJS,num_dependents_deps.dev:0 github.com/Jistrokz/TheDigger, github.com/Jisu9921/soaper, @@ -95309,6 +97452,7 @@ github.com/JmurrayJr/node-etl,num_dependents_deps.dev:0 github.com/JnRMnT/jm-dbprovider,num_dependents_deps.dev:0 github.com/JnRMnT/jm-utilities,num_dependents_deps.dev:0 github.com/JneWalter25/TallerProgramacionII, +github.com/Jniklas2/DNSControl-Action, github.com/Jno21/gatsby-plugin-intl,num_dependents_deps.dev:0 github.com/Jnoee/xo-starter,num_dependents_deps.dev:87 github.com/JnyJny/GameOfLife, @@ -95322,6 +97466,7 @@ github.com/JnyJny/twod, github.com/Jo-Geek/jQuery-FixTableHeader,num_dependents_deps.dev:0 github.com/Jo-IE/palindrome-tester,num_dependents_deps.dev:0 github.com/Jo3-L/djs-pagination,num_dependents_deps.dev:0 +github.com/JoA-MoS/lcov-reporter-action, github.com/JoA-MoS/ngx-scoped-library,num_dependents_deps.dev:0 github.com/JoBinsJP/vue3-datatable,num_dependents_deps.dev:0 github.com/JoBrad/attribute_dict, @@ -95337,6 +97482,7 @@ github.com/JoDehli/pyloxone-api, github.com/JoDring/vue-scroller,num_dependents_deps.dev:0 github.com/JoElfner/multisim, github.com/JoFrhwld/chunkup, +github.com/JoGruen/publish_conda_package_action, github.com/JoHNNyRiver/ajaxabstract,num_dependents_deps.dev:0 github.com/JoHoN8/pd-spserverajax,num_dependents_deps.dev:0 github.com/JoHoN8/pd-spserverjsom,num_dependents_deps.dev:0 @@ -95401,6 +97547,7 @@ github.com/Joandres-Lara/sore-magic-constants,num_dependents_deps.dev:0 github.com/Joannazhx/FIX_wrapper, github.com/Joanvo/npm-extrapolate,num_dependents_deps.dev:0 github.com/Joao-CruzA/nucleo-quasar,num_dependents_deps.dev:0 +github.com/Joao208/resync-branch, github.com/JoaoCamposFrom94/OpenAPI-extension-remover, github.com/JoaoCarabetta/osm-road-length, github.com/JoaoCarabetta/osmpy, @@ -95553,6 +97700,7 @@ github.com/Jodu555/MySQLWrapper,num_dependents_deps.dev:0 github.com/JodusNodus/node-syncthing,num_dependents_deps.dev:0 github.com/JodusNodus/react-qr-reader,"criticality_score:0.332430,num_dependents_deps.dev:64" github.com/JodyPSmith/gatsby-plugin-tawk,num_dependents_deps.dev:0 +github.com/Joe-Downs/commit-checker, github.com/Joe-Edwards/theme.macro,num_dependents_deps.dev:0 github.com/Joe-Heffer-Shef/pyminknow, github.com/Joe-Heffer-Shef/ufmetadata, @@ -95591,6 +97739,7 @@ github.com/JoeBeeton/Cornflakerizer,num_dependents_deps.dev:0 github.com/JoeBeeton/Cornflakerizer-Java8,num_dependents_deps.dev:0 github.com/JoeBlack220/definer-js,num_dependents_deps.dev:0 github.com/JoeBobMiles/YASH,num_dependents_deps.dev:0 +github.com/JoeCMorgan/lerna-get-version-action, github.com/JoeCapo/dynamicjoe-js-footer,num_dependents_deps.dev:0 github.com/JoeCarstairs-FA/erbparser,num_dependents_deps.dev:0 github.com/JoeChapman/asparagus,num_dependents_deps.dev:0 @@ -95622,10 +97771,12 @@ github.com/JoeHartzell/obj-key-normalizer,num_dependents_deps.dev:2 github.com/JoeHegarty/ratatoskr,num_dependents_deps.dev:0 github.com/JoeHitHard/Markdown-Table, github.com/JoeIngledew/nodebb-plugin-stat-grid,num_dependents_deps.dev:0 +github.com/JoeIzzard/ghaction-wiki-sync, github.com/JoeJasinski/k8s_user, github.com/JoeKarlsson/movie-script-scraper, github.com/JoeKarlsson/movie-script-scrapper,num_dependents_deps.dev:0 github.com/JoeKarlsson1/Angular-Instafeed,num_dependents_deps.dev:0 +github.com/JoeKarow/act-which-package-mgr, github.com/JoeKerouac/socket,num_dependents_deps.dev:0 github.com/JoeKerouac/spiderutil,num_dependents_deps.dev:0 github.com/JoeKerouac/utils,num_dependents_deps.dev:0 @@ -95675,6 +97826,9 @@ github.com/Joel-H-dot/MVPR, github.com/Joel-H-dot/RLS, github.com/Joel-H-dot/TRA, github.com/Joel-Raju/cordova-RetrofitHTTP,num_dependents_deps.dev:0 +github.com/Joel-hanson/bandit-report-artifacts, +github.com/Joel-hanson/django-aws-eb-deploy, +github.com/Joel-hanson/kaggle-kernel-actions, github.com/JoelAtDeluxe/simplog, github.com/JoelAzevedo/another-random-number-generator, github.com/JoelAzevedo/just-another-random-number-generator,num_dependents_deps.dev:0 @@ -95712,6 +97866,7 @@ github.com/JoelLefkowitz/pipes, github.com/JoelLefkowitz/poetry-pdf, github.com/JoelLefkowitz/pyimport, github.com/JoelLefkowitz/quickdocs, +github.com/JoelLefkowitz/random-env, github.com/JoelLefkowitz/randutils, github.com/JoelLefkowitz/safe-environ, github.com/JoelLefkowitz/templ8, @@ -95883,6 +98038,7 @@ github.com/JohanPeeters/auth0-token-request,num_dependents_deps.dev:0 github.com/JohanPeeters/crypto-cli,num_dependents_deps.dev:0 github.com/JohanSJA/openexchangerates-rs,num_dependents_deps.dev:0 github.com/JohanWinther/vlc-playlist-control,num_dependents_deps.dev:0 +github.com/JohanWork/action-dataflow-template, github.com/JohanWork/url-test, github.com/Johann-S/JSUnitSaucelabs,num_dependents_deps.dev:0 github.com/Johann-S/bs-breakpoints,num_dependents_deps.dev:0 @@ -95949,6 +98105,8 @@ github.com/Johannestegner/clopy,num_dependents_deps.dev:0 github.com/Johannestegner/node-just-template-it,num_dependents_deps.dev:0 github.com/Johannestegner/node-yolog,num_dependents_deps.dev:0 github.com/JohelCastilloV/convertor,num_dependents_deps.dev:0 +github.com/JohelEGP/gcc-snapshot, +github.com/JohelEGP/modern-cmake-buildsystem, github.com/John-Craddock/angular-simple-popup,num_dependents_deps.dev:0 github.com/John-Jumper/Upside-MD,Google github.com/John-Kryspin/apexjs,num_dependents_deps.dev:0 @@ -96153,7 +98311,10 @@ github.com/JohnMcLear/ep_timesliderdiff,num_dependents_deps.dev:0 github.com/JohnMcLear/ep_user_font_size,num_dependents_deps.dev:0 github.com/JohnMcLear/tokbox-etherpad-plugin,num_dependents_deps.dev:0 github.com/JohnMealy23/cookie-toss, +github.com/JohnMeyerhoff/JunitAnnotations, +github.com/JohnMeyerhoff/markdown-to-pdf, github.com/JohnMurray/json-inspect, +github.com/JohnNeville/self-hosted-runner-grouper, github.com/JohnNiang/wechat-starter-boot-spring,num_dependents_deps.dev:0 github.com/JohnOmernik/sqlalchemy-drill, github.com/JohnPapps/django-oracle-drcp, @@ -96281,6 +98442,7 @@ github.com/JohnnyChedid/Random-Names,num_dependents_deps.dev:0 github.com/JohnnyCheng888/apdu2pcsc,num_dependents_deps.dev:0 github.com/JohnnyCheng888/app4v8,num_dependents_deps.dev:0 github.com/JohnnyCrazy/SpotifyAPI-NET,criticality_score:0.514310 +github.com/JohnnyCrazy/remove-stale-images-action, github.com/JohnnyCrazy/vue-apollo,num_dependents_deps.dev:0 github.com/JohnnyDev2001/fast_zipcode, github.com/JohnnyDevMode/fireball-db,num_dependents_deps.dev:0 @@ -96288,6 +98450,7 @@ github.com/JohnnyDevMode/ppl,num_dependents_deps.dev:0 github.com/JohnnyDve/hexo-deployer-qiniu,num_dependents_deps.dev:0 github.com/JohnnyEstilles/must-sinon,num_dependents_deps.dev:0 github.com/JohnnyJayJay/discord-api-command,num_dependents_deps.dev:0 +github.com/JohnnyMorganz/stylua-action, github.com/JohnnyOss/id-generator-module,num_dependents_deps.dev:0 github.com/JohnnyRacket/topography-css,num_dependents_deps.dev:0 github.com/JohnnyTheTank/angular-balance-text,num_dependents_deps.dev:0 @@ -96397,6 +98560,7 @@ github.com/Joinble/joinble-ui,num_dependents_deps.dev:0 github.com/Joinesty/nullafi-java-sdk,num_dependents_deps.dev:0 github.com/Joinesty/nullafi-node-sdk,num_dependents_deps.dev:0 github.com/Joish/JsonParser, +github.com/JojOatXGME/prepare-local-actions, github.com/JojiAndela/express-params-validator,num_dependents_deps.dev:0 github.com/JojiAndela/time_ago_in_words,num_dependents_deps.dev:0 github.com/JojiAndela/validMejs,num_dependents_deps.dev:0 @@ -96437,11 +98601,13 @@ github.com/Joku1806/node_palindrome,num_dependents_deps.dev:0 github.com/Jokymon/GIFImage_ext, github.com/Jokymon/binstruct, github.com/Jolcos/rbxlx,num_dependents_deps.dev:0 +github.com/Jolg42/action-renovate-checkbox, github.com/Joll59/d-ser-t,num_dependents_deps.dev:0 github.com/Jollor/tdl-multiprocess,num_dependents_deps.dev:0 github.com/JollySun/jollysun,num_dependents_deps.dev:0 github.com/JollyWizard/seeka-js,num_dependents_deps.dev:0 github.com/Jollyfant/libmseedjs,num_dependents_deps.dev:0 +github.com/JolonB/mplabv6.05-xc8-build-action, github.com/Jolt-Framework/local-lambdas,num_dependents_deps.dev:0 github.com/Jom3es12/stochastic-round,num_dependents_deps.dev:0 github.com/JomaMinoza/nationality,num_dependents_deps.dev:0 @@ -96499,6 +98665,7 @@ github.com/JonDotsoy/envuse, github.com/JonDotsoy/equip-resources-basestyles, github.com/JonDotsoy/express-async-methods,num_dependents_deps.dev:0 github.com/JonDotsoy/express-render-react,num_dependents_deps.dev:0 +github.com/JonDotsoy/feature-branching, github.com/JonDotsoy/gulp-delay-request,num_dependents_deps.dev:0 github.com/JonDotsoy/gulp-version-upgrade,num_dependents_deps.dev:0 github.com/JonDotsoy/imed-health,num_dependents_deps.dev:0 @@ -96582,13 +98749,17 @@ github.com/Jonahss/telme-promise,num_dependents_deps.dev:0 github.com/Jonahss/udidetect,num_dependents_deps.dev:2 github.com/Jonak-Adipta-Kalita/JAK-JavaScript-Package, github.com/Jonak-Adipta-Kalita/JAK-Python-Package, +github.com/Jonakemon/cloudflare-purge-cache-action, github.com/Jonarod/capacitor-navigation-bar, github.com/Jonarod/encryptio,num_dependents_deps.dev:0 github.com/Jonarod/markty,num_dependents_deps.dev:46 github.com/Jonarod/markty-CSV,num_dependents_deps.dev:0 github.com/Jonarod/markty-TOML, github.com/JonarsLi/flask-restapi, +github.com/Jonas-D-M/Webproject-recorder, github.com/Jonas-buriti/tree,num_dependents_deps.dev:0 +github.com/JonasAlfredsson/checkout-qemu-buildx, +github.com/JonasAlfredsson/docker-on-tmpfs, github.com/JonasBa/recent-searches,num_dependents_deps.dev:0 github.com/JonasBr68/npm-measure-duration,num_dependents_deps.dev:0 github.com/JonasDoebertin/webpack-watch,num_dependents_deps.dev:0 @@ -96596,6 +98767,8 @@ github.com/JonasFolletete/glsl-triplanar-mapping,num_dependents_deps.dev:0 github.com/JonasFolletete/inrtia,num_dependents_deps.dev:0 github.com/JonasFovea/swing-trajectory-generator, github.com/JonasGao/umi-plugin-vorlon,num_dependents_deps.dev:0 +github.com/JonasGe/elasticsearch-plugins-proxy, +github.com/JonasGe/elasticsearch-with-plugins-action, github.com/JonasGeiping/breaching, github.com/JonasGessner/JGProgressHUD,criticality_score:0.321510 github.com/JonasGruenwald/react-text-vice,num_dependents_deps.dev:0 @@ -96606,6 +98779,7 @@ github.com/JonasJs/svelte-qrcode,num_dependents_deps.dev:0 github.com/JonasKruckenberg/hyperswarm,num_dependents_deps.dev:0 github.com/JonasKruckenberg/imagetools,num_dependents_deps.dev:0 github.com/JonasKruckenberg/rollup-plugin-sri, +github.com/JonasKruckenberg/tauri-build, github.com/JonasKruckenberg/vite-imagetools,num_dependents_deps.dev:0 github.com/JonasKruckenberg/vite-plugin-imageset,num_dependents_deps.dev:0 github.com/JonasLarsson78/jonaslarsson_mynpm,num_dependents_deps.dev:0 @@ -96625,7 +98799,9 @@ github.com/JonasSC/SuMPF, github.com/JonasVDB-awingu/test-bower-dependency,num_dependents_deps.dev:0 github.com/JonasWN/My-fetch-JN,num_dependents_deps.dev:0 github.com/JonasWN/jonas-seje-dims,num_dependents_deps.dev:0 +github.com/JonasWanke/Unicorn, github.com/JonasYan/iheart-vue2-cli,num_dependents_deps.dev:0 +github.com/Jonasdart/actions.serverless-with-python-requirements, github.com/JonaszJestem/nest-admin-bro,num_dependents_deps.dev:0 github.com/JonatanFlores/chronos-php-cli,num_dependents_deps.dev:0 github.com/JonatanFlores/quickest,num_dependents_deps.dev:0 @@ -96702,6 +98878,7 @@ github.com/JonathanPerkins/winston-circular-buffer,num_dependents_deps.dev:0 github.com/JonathanPerryRMA/react-draft-editor, github.com/JonathanPetit/Parser-Renamer, github.com/JonathanPicques/event-class-es6,num_dependents_deps.dev:0 +github.com/JonathanPicques/godot-export-action, github.com/JonathanPicques/npm-licenses,num_dependents_deps.dev:0 github.com/JonathanPicques/pegjs,num_dependents_deps.dev:0 github.com/JonathanPort/jumpa,num_dependents_deps.dev:0 @@ -96732,6 +98909,7 @@ github.com/JonathanTheZero/better-arrays,num_dependents_deps.dev:0 github.com/JonathanTreffler/Quill-mathLive-blot, github.com/JonathanTreffler/Quill-mathQuill-blot, github.com/JonathanTreffler/canvas2image-2, +github.com/JonathanTreffler/full-website-screenshot-action, github.com/JonathanTreffler/modern-vue-gallery,num_dependents_deps.dev:0 github.com/JonathanTreffler/my-vue-eslintrc,num_dependents_deps.dev:0 github.com/JonathanTreffler/my-vue-stylelintrc,num_dependents_deps.dev:0 @@ -96980,6 +99158,7 @@ github.com/JordiOrriols/react-visual-regression,num_dependents_deps.dev:0 github.com/JordonPhillips/audify, github.com/JordyM01/consolebox, github.com/JordyVanKerkvoorde/html-to-pdf-dynamic,num_dependents_deps.dev:0 +github.com/JorelAli/setup-elm, github.com/JorenKoyen/problem-details, github.com/JorenRothman/size-chart,num_dependents_deps.dev:0 github.com/JorenRothman/swiper-wrapper,num_dependents_deps.dev:0 @@ -97012,6 +99191,7 @@ github.com/JorgeJuarezM/Angular-MsgBox,num_dependents_deps.dev:0 github.com/JorgeJuarezM/janus-server,num_dependents_deps.dev:0 github.com/JorgeJuarezM/kosmos-utils,num_dependents_deps.dev:0 github.com/JorgeJuarezM/kubrick-util,num_dependents_deps.dev:0 +github.com/JorgeLNJunior/render-deploy, github.com/JorgeMadson/nodeficando,num_dependents_deps.dev:0 github.com/JorgePHI/f7-v542,num_dependents_deps.dev:0 github.com/JorgePHI/f7-v550,num_dependents_deps.dev:0 @@ -97102,6 +99282,7 @@ github.com/JornyWang/alipay,num_dependents_deps.dev:0 github.com/JorrandeWit/django-oscar-fees, github.com/JorrandeWit/django-oscar-mollie, github.com/JorrandeWit/ithenticate-api-python, +github.com/Jorricks/action-python-autotagging, github.com/Jorricks/python-degiro, github.com/JorrinKievit/react-tradingview-widgets,num_dependents_deps.dev:0 github.com/JorrinKievit/react-ts-tradingview-widgets, @@ -97202,6 +99383,7 @@ github.com/JoseLlarena/pypey, github.com/JoseLlarena/symlarjs,num_dependents_deps.dev:0 github.com/JoseMinguez/node-wemo,num_dependents_deps.dev:0 github.com/JoseMontesRicardo/NodeFR,num_dependents_deps.dev:0 +github.com/JoseMoranUrena523/r2-backup, github.com/JoseNoriegaa/http-status,num_dependents_deps.dev:0 github.com/JoseNoriegaa/pydottie, github.com/JosePauloSavioli/IBICT-converter, @@ -97239,6 +99421,7 @@ github.com/JoseRoberts87/project-deap, github.com/JoseRolles/fdoering-mcrypt,num_dependents_deps.dev:0 github.com/JoseRosarioOS/DS_Julieo,num_dependents_deps.dev:0 github.com/JoseSalgado1024/schemarquify, +github.com/JoseThen/comment-pr, github.com/JoseVL92/http-requests, github.com/JoseWR5/willords,num_dependents_deps.dev:0 github.com/JoseXS/os-information,num_dependents_deps.dev:0 @@ -97312,6 +99495,8 @@ github.com/JosephDavis/perception,num_dependents_deps.dev:0 github.com/JosephDuffy/consequences,num_dependents_deps.dev:0 github.com/JosephDuffy/consequences-computer-speakers,num_dependents_deps.dev:0 github.com/JosephDuffy/homebridge-pc-volume,num_dependents_deps.dev:0 +github.com/JosephDuffy/update-xcode-version-action, +github.com/JosephDuffy/wait-for-netlify-action, github.com/JosephFarina/tempo-detector,num_dependents_deps.dev:0 github.com/JosephGarrone/smart-query,num_dependents_deps.dev:0 github.com/JosephJ12/DesktopScoreViewer, @@ -97389,6 +99574,7 @@ github.com/JosephusPaye/svg-text, github.com/JosephusPaye/win-audio-outputs, github.com/JosephusYang/s3-transload,num_dependents_deps.dev:0 github.com/Josewowgame2888/JHColors,num_dependents_deps.dev:0 +github.com/Josh-AS/slate-builder-action, github.com/Josh-Cena/eslint-config-jc,num_dependents_deps.dev:0 github.com/Josh-ES/node-simple-schema,num_dependents_deps.dev:0 github.com/Josh-ES/react-here-maps,num_dependents_deps.dev:0 @@ -97494,6 +99680,7 @@ github.com/JoshOY/simple-commonmark-markdown-editor,num_dependents_deps.dev:0 github.com/JoshOlives/NPM_palindrome,num_dependents_deps.dev:0 github.com/JoshOlives/olive_palindrome,num_dependents_deps.dev:0 github.com/JoshOrndorff/freshr,num_dependents_deps.dev:0 +github.com/JoshPiper/GModStore-Deployment, github.com/JoshPiper/Node-InterDB, github.com/JoshPiper/Node-InterEnv, github.com/JoshPiper/Node-InterGroup,num_dependents_deps.dev:0 @@ -97509,6 +99696,7 @@ github.com/JoshRosenstein/styler,num_dependents_deps.dev:0 github.com/JoshSmith/node-directededge,num_dependents_deps.dev:0 github.com/JoshStegmaier/kabocha, github.com/JoshStern/mktemp,num_dependents_deps.dev:0 +github.com/JoshStern/push-md-to-notion, github.com/JoshStern/typedoc-plugin-cname, github.com/JoshTheGeek/grunt-init-completion,num_dependents_deps.dev:0 github.com/JoshTheGeek/node-folder-stat,num_dependents_deps.dev:0 @@ -97539,7 +99727,9 @@ github.com/Joshsteverson/deep-pluck-ref,num_dependents_deps.dev:0 github.com/Joshsteverson/json-data-paths,num_dependents_deps.dev:0 github.com/Joshsteverson/object-path,num_dependents_deps.dev:0 github.com/Joshsteverson/safe-parse,num_dependents_deps.dev:0 +github.com/Joshua-Ashton/arch-mingw-github-action, github.com/Joshua-Ashton/d9vk,criticality_score:0.361880 +github.com/Joshua-Ashton/gcc-problem-matcher, github.com/Joshua-Brooke/Carbon-Intensity-API-wrapper, github.com/Joshua-Chin/matfactor, github.com/Joshua-F/runescape-api,num_dependents_deps.dev:0 @@ -97602,6 +99792,7 @@ github.com/JoshuaKGoldberg/Typespace, github.com/JoshuaKGoldberg/hello-josh-goldberg, github.com/JoshuaKGoldberg/hello-michael-scott, github.com/JoshuaKGoldberg/one-sentence-per-line,num_dependents_deps.dev:0 +github.com/JoshuaKGoldberg/release-it-action, github.com/JoshuaKGoldberg/sanitize-markdown,num_dependents_deps.dev:12 github.com/JoshuaKGoldberg/tslint-to-eslint-config,num_dependents_deps.dev:0 github.com/JoshuaKGoldberg/use-no-sleep,num_dependents_deps.dev:0 @@ -97632,6 +99823,8 @@ github.com/JoshuaSkelly/wick, github.com/JoshuaSkootsky/laughing-funicular,num_dependents_deps.dev:0 github.com/JoshuaTang/jstracking,num_dependents_deps.dev:0 github.com/JoshuaTheMiller/CarTalk-Auto-Downloader,num_dependents_deps.dev:0 +github.com/JoshuaTheMiller/conditional-build-matrix, +github.com/JoshuaTheMiller/groups-to-teams-sync-bot, github.com/JoshuaTianYangLiu/tcgen, github.com/JoshuaToenyes/browserify-testability, github.com/JoshuaToenyes/daemon-pid,num_dependents_deps.dev:0 @@ -97682,6 +99875,8 @@ github.com/Joshuakgoldberg/gulp-typespace,num_dependents_deps.dev:0 github.com/Joshuakgoldberg/lesshint-browser-support,num_dependents_deps.dev:0 github.com/JoshuvaGeorge03/capacitor-firebase-dynamic-links,num_dependents_deps.dev:0 github.com/JoshuvaGeorge03/color-converter,num_dependents_deps.dev:0 +github.com/JoshwJB/pull-request-size-labelling-probot, +github.com/JoshwJB/pull-request-size-probot, github.com/JoshyRobot/cssmodules-classnames,num_dependents_deps.dev:0 github.com/JoshyRobot/uan,num_dependents_deps.dev:0 github.com/Josiah-tan/ez_life, @@ -97695,8 +99890,16 @@ github.com/JosiahCraw/Is-the-Build-Done-Yet, github.com/JosiahCraw/Python-Comms-Utils-ENEL422-, github.com/JosiahCraw/vivado-xpr-fixer, github.com/JosiahMg/pyswan, +github.com/JosiahSiegel/AzViz-action, +github.com/JosiahSiegel/action-connect-ovpn, github.com/JosiahSiegel/brutish_sorts,num_dependents_deps.dev:0 +github.com/JosiahSiegel/checksum-validate-action, +github.com/JosiahSiegel/disable-azure-function, github.com/JosiahSiegel/novacancy-rails,num_dependents_deps.dev:0 +github.com/JosiahSiegel/randomrepo, +github.com/JosiahSiegel/runleaks, +github.com/JosiahSiegel/terraform-stats, +github.com/JosiahSiegel/workflow-housekeeper, github.com/JosiasAurel/python-hashnode, github.com/JosieGittingTheHub/draft-js, github.com/JosieGittingTheHub/learnstorybook-design-system,num_dependents_deps.dev:0 @@ -97720,6 +99923,8 @@ github.com/JosselinTD/always-bottom-footer,num_dependents_deps.dev:0 github.com/JosselinTD/material-design-fade-in,num_dependents_deps.dev:0 github.com/JosselinTD/simple-popup,num_dependents_deps.dev:0 github.com/JossyDevers/cron-expression-input,num_dependents_deps.dev:0 +github.com/JossyDevers/minify-js, +github.com/JossyDevers/transpiler-js, github.com/JostCrow/django-font-icons, github.com/JostMigenda/sntools, github.com/Josua96/UI-Components-Collection,num_dependents_deps.dev:0 @@ -97747,6 +99952,7 @@ github.com/JosunLP/Social-graphics-library,num_dependents_deps.dev:0 github.com/Josverl/micropython-stubber, github.com/Josvth/hermes-simulator, github.com/Josyto/strapi-plugin-ckeditor5-md,num_dependents_deps.dev:0 +github.com/JotaFan/pycoverage, github.com/JotaMiller/generator-angular-brunch,num_dependents_deps.dev:0 github.com/Jotade100/particiones-cli,num_dependents_deps.dev:0 github.com/Jotade100/youtubeCLI,num_dependents_deps.dev:0 @@ -97910,6 +100116,7 @@ github.com/JrSchild/grunt-retinafy,num_dependents_deps.dev:0 github.com/JrSchild/grunt-tmpl-compile,num_dependents_deps.dev:0 github.com/Jrakesh/go_social,num_dependents_deps.dev:0 github.com/Jrichlen/ReactReduxTemplate,num_dependents_deps.dev:0 +github.com/Jrigada/cargo-semver-checks-action, github.com/Jrlats/gulp-angular-embed-templates,num_dependents_deps.dev:0 github.com/JrobinWebDev/soccer.js,num_dependents_deps.dev:0 github.com/Jrodan88/jayoso-devcamp-js-footer,num_dependents_deps.dev:0 @@ -98016,7 +100223,10 @@ github.com/JsusDev/yandex-pictures,num_dependents_deps.dev:0 github.com/JsvnSvn/jsvn_qa_utils_rest, github.com/Jswig/sklearn-progestimator, github.com/Jsynk/jsynk.js,num_dependents_deps.dev:0 +github.com/Jtalk/k8s-deploy, +github.com/Jtalk/setup-sbt, github.com/Jtalk/tree-range-set,num_dependents_deps.dev:0 +github.com/Jtalk/url-health-check-action, github.com/Jtlet95/lodown,num_dependents_deps.dev:0 github.com/Ju2ender/js-x,num_dependents_deps.dev:0 github.com/Ju5tMyWo4d/discord-command-bot,num_dependents_deps.dev:0 @@ -98172,6 +100382,7 @@ github.com/Jucian0/juice-material,num_dependents_deps.dev:0 github.com/Jucian0/redux-async-state,num_dependents_deps.dev:0 github.com/Jucian0/useform,num_dependents_deps.dev:0 github.com/Jud/PassiveRedis,num_dependents_deps.dev:0 +github.com/Jud/hotfix, github.com/Judahh/appFramework,num_dependents_deps.dev:0 github.com/Judahh/backApi,num_dependents_deps.dev:0 github.com/Judahh/backApp,num_dependents_deps.dev:0 @@ -98179,10 +100390,15 @@ github.com/Judahh/backNextApi,num_dependents_deps.dev:0 github.com/Judahh/basicSocket,num_dependents_deps.dev:0 github.com/Judahh/basicUtil,num_dependents_deps.dev:0 github.com/Judahh/defaultInitializer, +github.com/Judahh/dockerBuildAndPublish, github.com/Judahh/flexiblePersistence,num_dependents_deps.dev:14 github.com/Judahh/journaly,num_dependents_deps.dev:30 +github.com/Judahh/nodeBuild, +github.com/Judahh/s3ToUnzip, github.com/Judahh/simpleUtils,num_dependents_deps.dev:2 github.com/Judahh/webhookConnector,num_dependents_deps.dev:0 +github.com/Judahh/yarnTest, +github.com/Judahh/zipToS3, github.com/JudasSong/angular-ngpopup,num_dependents_deps.dev:0 github.com/JudasSong/angular-popup,num_dependents_deps.dev:0 github.com/JudasSong/evenpowerUI, @@ -98221,6 +100437,8 @@ github.com/JuhQ/split-text-middle,num_dependents_deps.dev:0 github.com/JuhQ/timefunctions,num_dependents_deps.dev:0 github.com/JuhaniImberg/mkcss, github.com/JuhaniImberg/tmc.py, +github.com/Juhlinus/code-review, +github.com/Juhlinus/ecs-action, github.com/Juhlinus/jscatch,num_dependents_deps.dev:0 github.com/Juhz/Romans-Check,num_dependents_deps.dev:0 github.com/JuicEcommerce/juicechain-sdk-nodejs,num_dependents_deps.dev:0 @@ -98331,6 +100549,7 @@ github.com/JuliaPy/PyCall.jl,criticality_score:0.543930 github.com/JuliaPy/PyPlot.jl,criticality_score:0.442860 github.com/JuliaPy/pyjulia,criticality_score:0.412860 github.com/JuliaRegistries/General,criticality_score:0.681330 +github.com/JuliaRegistries/TagBot, github.com/JuliaStats/Distances.jl,criticality_score:0.530840 github.com/JuliaStats/Distributions.jl,criticality_score:0.656820 github.com/JuliaStats/GLM.jl,criticality_score:0.511330 @@ -98382,7 +100601,9 @@ github.com/Julian/libopenzwave-cffi, github.com/Julian/libraw-cffi, github.com/Julian/mkenv, github.com/Julian/mkpkg, +github.com/Julian/named-branch-action, github.com/Julian/regret, +github.com/Julian/setup-lean, github.com/Julian/sphinxcontrib-githubcomments, github.com/Julian/sphinxcontrib-lean, github.com/Julian/svmlight-loader, @@ -98392,6 +100613,7 @@ github.com/Julian/txmusicbrainz, github.com/Julian/veb, github.com/Julian/venvs, github.com/Julian1729/react-status-beacon,num_dependents_deps.dev:0 +github.com/Julian88Tex/cumulusci-action, github.com/JulianAlonso/Nylex.js,num_dependents_deps.dev:0 github.com/JulianAndrews/pyeval7, github.com/JulianBiermann/nest-mongoose,num_dependents_deps.dev:0 @@ -98447,6 +100669,7 @@ github.com/JulianSobott/api_schemas, github.com/JulianSobott/pynetworking, github.com/JulianSobott/string_templates, github.com/JulianSoto/test-npm-package,num_dependents_deps.dev:0 +github.com/JulianStremel/esp-idf-action, github.com/JulianVallee/wdio-errorshot-reporter,num_dependents_deps.dev:0 github.com/JulianWielga/angular-perfect-scrollbar,num_dependents_deps.dev:0 github.com/JulianWielga/nk-windows,num_dependents_deps.dev:0 @@ -98472,6 +100695,7 @@ github.com/Juliazlj/easy-oAuth, github.com/Juliazlj/meow-cli,num_dependents_deps.dev:0 github.com/JulieRossi/agnostic_loader, github.com/JulieRossi/mongo-connector-postgresql, +github.com/JulieWinchester/semver-release-action, github.com/Julien-ADDREA/azerrisk-file-minify,num_dependents_deps.dev:0 github.com/Julien-ADDREA/azerrisk-minify,num_dependents_deps.dev:0 github.com/Julien-ADDREA/hyper-tabs-enhanced-plus,num_dependents_deps.dev:0 @@ -98512,6 +100736,8 @@ github.com/JulienDefrance/recorderjs-rails,num_dependents_deps.dev:0 github.com/JulienErgan/masks-js,num_dependents_deps.dev:0 github.com/JulienHe/style-abbreviated-number,num_dependents_deps.dev:0 github.com/JulienHe/swap-lang,num_dependents_deps.dev:0 +github.com/JulienKode/pull-request-name-linter-action, +github.com/JulienKode/team-labeler-action, github.com/JulienLavocat/AlphaVantage,num_dependents_deps.dev:0 github.com/JulienLavocat/ExpressLib, github.com/JulienLavocat/InfoTBM-Client,num_dependents_deps.dev:0 @@ -98599,6 +100825,7 @@ github.com/Julius2342/pyvlx, github.com/Julius278/ioBroker.twitter,num_dependents_deps.dev:0 github.com/JuliusBrain/passport-azure-ad-oauth2,num_dependents_deps.dev:0 github.com/JuliusCC/heos-api,num_dependents_deps.dev:0 +github.com/JuliusHaring/llm-code-gen, github.com/JuliusHuttunen/npm-packagelist, github.com/JuliusKabugu/grunt-dot-object,num_dependents_deps.dev:0 github.com/JuliusKoronci/generator-rct,num_dependents_deps.dev:0 @@ -98622,6 +100849,7 @@ github.com/JumalIO/mopidy-sevensegmentdisplay, github.com/Jumballaya/f-of-s,num_dependents_deps.dev:0 github.com/Jumballaya/pgrid,num_dependents_deps.dev:0 github.com/Jumballaya/stylelint-config-pgb,num_dependents_deps.dev:0 +github.com/Jumbo810/Upload_Github_Artifacts_TO_GDrive, github.com/JumboInteractiveLimited/redux-cache,num_dependents_deps.dev:0 github.com/JumboInteractiveLimited/storybook-addon-emotion-theme,num_dependents_deps.dev:0 github.com/JumeiRdGroup/FineResources, @@ -98657,6 +100885,7 @@ github.com/JumpYD/node-gecoding,num_dependents_deps.dev:0 github.com/Jumpaku/AsyncResult,num_dependents_deps.dev:0 github.com/Jumpei-Arima/Navigation_Simulator_for_Mobile_Robot, github.com/JumpeiArashi/spreadsheet-sql,num_dependents_deps.dev:0 +github.com/JumperBot/Obliterate-Repository, github.com/Jumperr-labs/hci-protocol, github.com/Jumperr-labs/jumper-ble-logger, github.com/Jumplead/ObjectId.js,num_dependents_deps.dev:0 @@ -98735,6 +100964,7 @@ github.com/JungDev/django-telegrambot, github.com/JungHsuan/react-native-gesture-flip-card,num_dependents_deps.dev:0 github.com/JungSWon/React_Hooks,num_dependents_deps.dev:0 github.com/JungWinter/chatterbox, +github.com/JungWinter/comment, github.com/JungYeonHee/stock_test, github.com/JungeAlexander/cocoscore, github.com/JungeAlexander/finstar, @@ -98927,6 +101157,8 @@ github.com/Just-Doing/ylt, github.com/Just-Doing/yltui,num_dependents_deps.dev:0 github.com/Just-Hosam/lotide,num_dependents_deps.dev:0 github.com/Just-Jia/ccNet, +github.com/Just-Moh-it/Relano, +github.com/Just-Moh-it/openai, github.com/Just-Some-Bots/MusicBot,criticality_score:0.462470 github.com/Just1Dav/otelo-ui,num_dependents_deps.dev:0 github.com/Just4Ease/MongoLeon,num_dependents_deps.dev:0 @@ -99034,6 +101266,7 @@ github.com/JustPilz/gitbook-plugin-etoc-plus,num_dependents_deps.dev:0 github.com/JustPilz/gitbook-plugin-search-plus-mod,num_dependents_deps.dev:0 github.com/JustPilz/gitbook-plugin-sidebar-footer,num_dependents_deps.dev:0 github.com/JustPilz/gitbook-plugin-underline,num_dependents_deps.dev:0 +github.com/JustPyrrha/setup-melonloader, github.com/JustSamuel/sra,num_dependents_deps.dev:0 github.com/JustSamuel/ts-mailcow-api, github.com/JustScott/ListCrypt, @@ -99042,12 +101275,14 @@ github.com/JustSift/siftvendor,num_dependents_deps.dev:0 github.com/JustSittinHere/wdio-selenoid-standalone-service,num_dependents_deps.dev:0 github.com/JustSittinHere/wdio-testname-reporter,num_dependents_deps.dev:0 github.com/JustSkiv/vuepress-theme-justskiv,num_dependents_deps.dev:0 +github.com/JustSlone/actions-mention-to-teams, github.com/JustStanix/gtapi,num_dependents_deps.dev:0 github.com/JustSteveKing/vue2-frappe, github.com/JustSteveKing/vue2-heropatterns, github.com/JustString/easy_pod,num_dependents_deps.dev:0 github.com/JustTaya/MetaProg, github.com/JustTheWise/instagram.js,num_dependents_deps.dev:0 +github.com/JustUndertaker/Nuitka-Action, github.com/JustUtahCoders/juntos-por-la-salud-node-client,num_dependents_deps.dev:0 github.com/JustZak/DilatingDotsProgressBar,num_dependents_deps.dev:0 github.com/JustZisGuy/librarity,num_dependents_deps.dev:0 @@ -99069,6 +101304,7 @@ github.com/Justice-Eternal/je-transcore,num_dependents_deps.dev:0 github.com/Justicelemon/hubot-pandora,num_dependents_deps.dev:0 github.com/Justin-Cooney/functional-ts-primitives, github.com/Justin-Cooney/functional-ts-rest,num_dependents_deps.dev:0 +github.com/Justin-JHG/jira-release-actions, github.com/Justin-Moretto/lotide,num_dependents_deps.dev:0 github.com/Justin-Palmer/stencil-css-in-js,num_dependents_deps.dev:0 github.com/Justin-lu/egg-delayed-job,num_dependents_deps.dev:0 @@ -99105,6 +101341,7 @@ github.com/JustinBeckwith/gcbuild,num_dependents_deps.dev:0 github.com/JustinBeckwith/gcx,num_dependents_deps.dev:0 github.com/JustinBeckwith/jsdoc-fresh,num_dependents_deps.dev:0 github.com/JustinBeckwith/linkinator,"criticality_score:0.517700,num_dependents_deps.dev:0" +github.com/JustinBeckwith/linkinator-action, github.com/JustinBeckwith/pify,num_dependents_deps.dev:0 github.com/JustinBeckwith/promotime, github.com/JustinBeckwith/retry-axios,"criticality_score:0.387630,num_dependents_deps.dev:3664" @@ -99122,9 +101359,11 @@ github.com/JustinFletcher/hpc-deploy, github.com/JustinFletcher/pyhpc, github.com/JustinGOSSES/wellio.js,num_dependents_deps.dev:0 github.com/JustinGOSSES/wellioviz,num_dependents_deps.dev:0 +github.com/JustinGrote/Super-Duper-Linter, github.com/JustinGuese/pip-simple-elasticsearch-logging, github.com/JustinHallquist/factory-girl,num_dependents_deps.dev:0 github.com/JustinHorn/react-useonview, +github.com/JustinKozlowski/AutoLabAutoSubmit, github.com/JustinLG9/react-svg-path-timer,num_dependents_deps.dev:0 github.com/JustinLiao1314/simple-mqtt,num_dependents_deps.dev:0 github.com/JustinLivi/justinlivi.com,num_dependents_deps.dev:0 @@ -99138,6 +101377,7 @@ github.com/JustinMorgan/hubot-newbot,num_dependents_deps.dev:0 github.com/JustinMorgan/hubot-parsebot,num_dependents_deps.dev:0 github.com/JustinMorgan/swiss-army-eval,num_dependents_deps.dev:0 github.com/JustinNothling/react-native-text-innerstyle,num_dependents_deps.dev:0 +github.com/JustinOhms/heroku-deploy, github.com/JustinPMitchell/izi-travel-api,num_dependents_deps.dev:0 github.com/JustinPMitchell/number-formatter,num_dependents_deps.dev:0 github.com/JustinParratt/big-mult,num_dependents_deps.dev:0 @@ -99193,6 +101433,7 @@ github.com/Justintime50/build-project,num_dependents_deps.dev:0 github.com/Justintime50/build-readme,num_dependents_deps.dev:0 github.com/Justintime50/dad,num_dependents_deps.dev:0 github.com/Justintime50/dad-python, +github.com/Justintime50/homebrew-releaser, github.com/Justintime50/labelary,num_dependents_deps.dev:0 github.com/Justintime50/proxlist, github.com/Justintime50/slugify,num_dependents_deps.dev:0 @@ -99217,7 +101458,9 @@ github.com/Juulbl/command-line-arg-map,num_dependents_deps.dev:0 github.com/Juulsgaard/JuulsgaardHelpers,num_dependents_deps.dev:0 github.com/Juulsgaard/react-redux-basis,num_dependents_deps.dev:0 github.com/Juungle/juungle-python, +github.com/Juuxel/publish-checkstyle-report, github.com/Juvenal1228/XFlash, +github.com/JuvenileQ/delete-workflow-runs, github.com/JuvoS/higeroo,num_dependents_deps.dev:0 github.com/JuwayD/-, github.com/JuwonOh/Tacademy-project, @@ -99300,9 +101543,12 @@ github.com/K-Fitzpatrick/logtime-cli, github.com/K-LV/mdlinkparser,num_dependents_deps.dev:0 github.com/K-Molloy/rekishikon, github.com/K-Molloy/whitebeam, +github.com/K-Phoen/action-squawk, github.com/K-Phoen/grabana,"criticality_score:0.346420,num_dependents_deps.dev:0" +github.com/K-Phoen/hugo-gh-pages-action, github.com/K-Phoen/node-simple-xlsx,num_dependents_deps.dev:0 github.com/K-Phoen/rulerz,criticality_score:0.403580 +github.com/K-Phoen/semver-release-action, github.com/K-Rintaro/Toketeru, github.com/K-Rintaro/doppelganger-license,num_dependents_deps.dev:0 github.com/K-Sato1995/react-auto-toc, @@ -99362,6 +101608,7 @@ github.com/K3D-tools/chunky3d, github.com/K3TH3R/common-config,num_dependents_deps.dev:0 github.com/K3ler/react-quick-pinch-zoom,num_dependents_deps.dev:0 github.com/K3nIchi/phaser-spine,num_dependents_deps.dev:0 +github.com/K3vChan/amazon-batch-register-job-definition, github.com/K40Nano/K40Nano, github.com/K44rel/error-explainer, github.com/K44rel/thonny-error-explainer-plugin, @@ -99447,6 +101694,7 @@ github.com/KCATurner/conwech, github.com/KCCG/mity, github.com/KCErb/matlab-test-package,num_dependents_deps.dev:0 github.com/KCF-Convoy/kcfconvoy, +github.com/KCFindstr/Action-Unity-Bump-iOS-Build-Number, github.com/KCGD/local-port-checker,num_dependents_deps.dev:0 github.com/KCL-BMEIS/RandomDataset, github.com/KCL-BMEIS/spectrumdevice, @@ -99494,6 +101742,7 @@ github.com/KEEER/color-picker,num_dependents_deps.dev:0 github.com/KEGUstafsson/signalk-vessels-to-ais,num_dependents_deps.dev:0 github.com/KEGustafsson/signalk-net-ais-plugin,num_dependents_deps.dev:0 github.com/KEIII/k-stream,num_dependents_deps.dev:0 +github.com/KEINOS/gh-action-hash-for-cache, github.com/KELEN/ImageFileConvert,num_dependents_deps.dev:0 github.com/KELEN/generator-vue-component-developer,num_dependents_deps.dev:0 github.com/KELEN/k-catelog,num_dependents_deps.dev:0 @@ -99587,6 +101836,7 @@ github.com/KIVassilev/hfid,num_dependents_deps.dev:0 github.com/KInGATiLLa/antd-dynamic-tab,num_dependents_deps.dev:0 github.com/KIngchiJim/chinese-transform-pinyin,num_dependents_deps.dev:0 github.com/KJ002/Py-MathParser, +github.com/KJ002/read-yaml, github.com/KJCracks/Clutch,criticality_score:0.317140 github.com/KJDavis/react-pdf,num_dependents_deps.dev:0 github.com/KJH9501/NODEJS,num_dependents_deps.dev:0 @@ -99614,6 +101864,7 @@ github.com/KKosyfarinis/SnowflakeJS,num_dependents_deps.dev:0 github.com/KKuTu-Korea/passport-daldalso-oauth2,num_dependents_deps.dev:0 github.com/KKuTuDotNet/CDN,num_dependents_deps.dev:0 github.com/KL-Moment/eslint-config-moment,num_dependents_deps.dev:0 +github.com/KL13NT/action-electron-forge, github.com/KL13NT/discord-utils,num_dependents_deps.dev:0 github.com/KL3Answer/dynamicConfig,num_dependents_deps.dev:0 github.com/KL3Answer/mapofChina,num_dependents_deps.dev:0 @@ -99641,6 +101892,7 @@ github.com/KMJ192/wasm_dev01,num_dependents_deps.dev:0 github.com/KMJ192/wasm_dev10,num_dependents_deps.dev:0 github.com/KMK-ONLINE/barong,num_dependents_deps.dev:0 github.com/KMK-ONLINE/react-vidio-tv-navigation,num_dependents_deps.dev:0 +github.com/KMKoushik/action-pr-gifs, github.com/KMXKUN002/KMXKUN002-EEE3097S-dronecamera, github.com/KMahoney/funscene,num_dependents_deps.dev:0 github.com/KMahoney/pyesql, @@ -99670,6 +101922,7 @@ github.com/KO-Good-code/neigri-tools,num_dependents_deps.dev:0 github.com/KOBA789/batch-loader-rs,num_dependents_deps.dev:0 github.com/KOBA789/batch-recv-rs,num_dependents_deps.dev:0 github.com/KOBA789/bind-unit,num_dependents_deps.dev:0 +github.com/KOBA789/cascadenv, github.com/KOBA789/flesh,num_dependents_deps.dev:0 github.com/KOBA789/flowering-node,num_dependents_deps.dev:0 github.com/KOBA789/libmecab-ffi,num_dependents_deps.dev:0 @@ -99711,6 +101964,7 @@ github.com/KPSoftec/react-animation-lottie, github.com/KPSoftec/react-lottie,num_dependents_deps.dev:0 github.com/KPapac/Advanced_python_project, github.com/KPeedosk/concat-maven-plugin,num_dependents_deps.dev:0 +github.com/KPlots-org/action-get-gradle-kts-version, github.com/KPostOffice/QETool_pip, github.com/KPowroznik/vue-cli-locale-pl,num_dependents_deps.dev:0 github.com/KPull/Bastion,num_dependents_deps.dev:0 @@ -99721,6 +101975,8 @@ github.com/KQLYYY/easy-redux-undo,num_dependents_deps.dev:0 github.com/KQMATH/tex2max,num_dependents_deps.dev:0 github.com/KRADEL/RA-devcamp-JS-footer,num_dependents_deps.dev:0 github.com/KRAGA/eslint-config-kraga,num_dependents_deps.dev:0 +github.com/KRANTHI0918/actions-gh-pages, +github.com/KRANTHI0918/get-github-email-by-username-action, github.com/KRAUS1203/node-red-contrib-postgrestor, github.com/KRBeomJunKim/comfortable-google-map-react,num_dependents_deps.dev:0 github.com/KRBeomJunKim/comfortable-google-map-react-types,num_dependents_deps.dev:0 @@ -99768,6 +102024,8 @@ github.com/KSOra/multi-entry-plugin,num_dependents_deps.dev:0 github.com/KSP-CKAN/CKAN,criticality_score:0.631840 github.com/KSP-KOS/KOS,criticality_score:0.489860 github.com/KSP-RO/RealismOverhaul,criticality_score:0.503510 +github.com/KSXGitHub/github-actions-deploy-aur, +github.com/KSXGitHub/github-actions-setup-pnpm, github.com/KSXGitHub/personal-packages,num_dependents_deps.dev:4 github.com/KSXGitHub/personal-website,num_dependents_deps.dev:0 github.com/KSXGitHub/simple-babel-repo,num_dependents_deps.dev:0 @@ -99777,6 +102035,7 @@ github.com/KSanthanam/RaspberryPiMovementDetector, github.com/KSchreuder/Telemetery-F12017,num_dependents_deps.dev:0 github.com/KSiig/morningscore_challenge,num_dependents_deps.dev:0 github.com/KSmanis/pip-autocompile, +github.com/KSmigielski/pr-to-issue, github.com/KSneijders/AoE2ScenarioParser, github.com/KSoft-Si/ksoftapi.py, github.com/KStClaire/valour-form,num_dependents_deps.dev:0 @@ -99833,6 +102092,7 @@ github.com/KTala9/postcss-svgicon,num_dependents_deps.dev:0 github.com/KTamas/googlesets,num_dependents_deps.dev:0 github.com/KTensor/KTensorJs,num_dependents_deps.dev:0 github.com/KTensor/KTensorRs,num_dependents_deps.dev:0 +github.com/KTibow/ha-blueprint, github.com/KTranKHS/KMeans_BCM, github.com/KU-BIG/graphtorch, github.com/KUKUndrik/kukundrik.github.io,num_dependents_deps.dev:0 @@ -99858,6 +102118,7 @@ github.com/KYDronePilot/space-eye-satellite-config,num_dependents_deps.dev:0 github.com/KYDronePilot/space-eye-windows-node-api,num_dependents_deps.dev:0 github.com/KYDronePilot/tile_puzzle_a_star,num_dependents_deps.dev:0 github.com/KYHSGeekCode/Android-Disassembler,criticality_score:0.381150 +github.com/KYHyeon/tuist-action-3.0.1, github.com/KYVENetwork/avalanche,num_dependents_deps.dev:0 github.com/KYVENetwork/cosmos,num_dependents_deps.dev:0 github.com/KYVENetwork/kyve,num_dependents_deps.dev:0 @@ -99881,8 +102142,11 @@ github.com/KaLaUnlimited/fibonacci,num_dependents_deps.dev:0 github.com/KaMalisauskas/Centralized_Exchanges,num_dependents_deps.dev:0 github.com/KaMeHb-UA/LeNode,num_dependents_deps.dev:0 github.com/KaMeHb-UA/LoadingAnimation,num_dependents_deps.dev:0 +github.com/KaMeHb-UA/auto-review-action, +github.com/KaMeHb-UA/aws-cli-action, github.com/KaMeHb-UA/loader.mjs,num_dependents_deps.dev:0 github.com/KaMeHb-UA/node-vk-api,num_dependents_deps.dev:0 +github.com/KaMeHb-UA/telegram-ci-notify-action, github.com/KaMeHb-UA/version-class,num_dependents_deps.dev:0 github.com/KaSroka/Toshiba-AC-control, github.com/KaTeX/KaTeX,"criticality_score:0.600570,num_dependents_deps.dev:599" @@ -99909,6 +102173,7 @@ github.com/KableKompany/Kr0nOs-Core, github.com/KabutoYamato/Valiente,num_dependents_deps.dev:0 github.com/Kac001/sangfor_sslvpn_api, github.com/KacAmo/aws-cdk-github-pipeline, +github.com/KaceyGambill/setup-gh-token, github.com/Kachanov/Stopwatch,num_dependents_deps.dev:0 github.com/Kachit/angular-api-query-builder,num_dependents_deps.dev:0 github.com/Kachit/angular-api-utils,num_dependents_deps.dev:0 @@ -99948,6 +102213,7 @@ github.com/Kaelinator/quora-scraper,num_dependents_deps.dev:0 github.com/Kaelinator/skyward-rest,num_dependents_deps.dev:0 github.com/KaemonIsland/eslint-config-warlock,num_dependents_deps.dev:0 github.com/KaemonIsland/eslint-config-warlock-typescript,num_dependents_deps.dev:0 +github.com/KaemonIsland/k8s-job, github.com/KaemonIsland/warlock-ui,num_dependents_deps.dev:0 github.com/Kaerdan/TwoLevelExpandableRecyclerView,num_dependents_deps.dev:0 github.com/Kafajku/pyfie, @@ -99989,6 +102255,16 @@ github.com/Kagashino/programmer-almanac-generator, github.com/Kagashino/utaha,num_dependents_deps.dev:0 github.com/Kagashino/vue-exact-router-view,num_dependents_deps.dev:0 github.com/Kage0x3B/changesync,num_dependents_deps.dev:0 +github.com/KageKirin/bump-csproj-version, +github.com/KageKirin/bump-node-package-version, +github.com/KageKirin/bump-unity-bundle-version, +github.com/KageKirin/get-csproj-version, +github.com/KageKirin/get-node-package-version, +github.com/KageKirin/get-unity-bundle-version, +github.com/KageKirin/metagen-gha, +github.com/KageKirin/set-csproj-version, +github.com/KageKirin/set-node-package-version, +github.com/KageKirin/set-unity-bundle-version, github.com/KagedSoul/devcamp-js-footer-ks,num_dependents_deps.dev:0 github.com/KagenoMoheji/GanttLogger, github.com/KagenoMoheji/tscliparser,num_dependents_deps.dev:0 @@ -100096,6 +102372,8 @@ github.com/KaiyuYue/torchshard, github.com/Kaiz0r/AppImages-Manager, github.com/Kaiz0r/cardpacks, github.com/Kaiz0r/mogscript, +github.com/Kaizhe/alpine-echo, +github.com/Kaizhe/k8s-privilege-check, github.com/Kajabi/s3direct,num_dependents_deps.dev:0 github.com/Kajitaku/multiple-entrypoints-preconstruct,num_dependents_deps.dev:0 github.com/Kajja/multigame,num_dependents_deps.dev:0 @@ -100159,6 +102437,8 @@ github.com/Kalistenco/mytinerary-martin,num_dependents_deps.dev:0 github.com/KalitaAlexey/bmfont-rust,num_dependents_deps.dev:0 github.com/KalkidanMulatu/lodown,num_dependents_deps.dev:0 github.com/KallDrexx/rust-media-libs,num_dependents_deps.dev:1 +github.com/KalleDK/actions-abuild, +github.com/KalleDK/actions-apkrepo, github.com/KalleDK/stika-patterns-observer, github.com/KalleDK/webex-cortex, github.com/KallelGaNewk/mcdata,num_dependents_deps.dev:0 @@ -100218,6 +102498,7 @@ github.com/Kamalnrf/react-native-google-play-install-referrer,num_dependents_dep github.com/Kamalpaneru/Xtractor-Gem,num_dependents_deps.dev:0 github.com/Kamar-Meddah/ngx-cool-dialogs-rxjs6,num_dependents_deps.dev:0 github.com/Kamar-Meddah/vue-generate-component,num_dependents_deps.dev:0 +github.com/KamaranL/smart-mirror, github.com/Kamaropoulos/AirSim_Gym, github.com/Kamaropoulos/covid19py, github.com/KamataRyo/bird-api,num_dependents_deps.dev:0 @@ -100323,6 +102604,7 @@ github.com/KamyarLajani/validoz,num_dependents_deps.dev:0 github.com/Kamyil/reactive-utilities,num_dependents_deps.dev:0 github.com/Kan-Artem/mongofox,num_dependents_deps.dev:0 github.com/Kan0315/join-monster, +github.com/KanHarI/gpt-commit-summarizer, github.com/KanHarI/multi-tab-threadpool, github.com/KanHarI/units-calculator, github.com/KanHarI/vue3-analytics, @@ -100347,6 +102629,7 @@ github.com/KanbeKotoriDaisuki/elm-format, github.com/KanchiShimono/scopt, github.com/Kanchil/mac-address-input, github.com/Kandiie/pushbots,num_dependents_deps.dev:0 +github.com/Kandreas9/dynamic-profile-readme, github.com/KanduTeam/python-sigfox-backend-api, github.com/Kandy-IO/kandy-callMe-js-sdk,num_dependents_deps.dev:0 github.com/Kandy-IO/kandy-callMe-js-sdk-3.x,num_dependents_deps.dev:0 @@ -100396,6 +102679,7 @@ github.com/KangaCoders/newrelic_samba_agent,num_dependents_deps.dev:0 github.com/KangaFinance/kanga-default-token-list,num_dependents_deps.dev:0 github.com/Kangaroux/flaskrouting, github.com/Kangaroux/hamplify, +github.com/Kangdyu/korean-grammar-check-action, github.com/KangerDrew/lotide,num_dependents_deps.dev:0 github.com/KanghoonYi/express-cidr,num_dependents_deps.dev:0 github.com/Kangmo/korbit-nodejs-sdk,num_dependents_deps.dev:0 @@ -100442,6 +102726,7 @@ github.com/Kanoshi/SebasTian,num_dependents_deps.dev:0 github.com/KanseiKy/IteratorJS,num_dependents_deps.dev:0 github.com/Kanseno/hello,num_dependents_deps.dev:0 github.com/Kanseno/test-npm-package, +github.com/Kantonov/turnstyle, github.com/KaoImin/bft-core,num_dependents_deps.dev:0 github.com/KaoLaqi/alert-mask,num_dependents_deps.dev:0 github.com/KaoLaqi/basejs-tools,num_dependents_deps.dev:0 @@ -100476,6 +102761,7 @@ github.com/KappaML/kappaml-core, github.com/Kappeh/discord-cli, github.com/Kaprisa/koa-expect,num_dependents_deps.dev:0 github.com/Kapsonfire-DE/svelte-ktippy,num_dependents_deps.dev:0 +github.com/Kapsztajn/actions-set-secret, github.com/KaptainKrayola/logware-js,num_dependents_deps.dev:0 github.com/KaptainKrayola/prohashing,num_dependents_deps.dev:0 github.com/Kaptard/docker-bash-volume-watcher, @@ -100543,6 +102829,7 @@ github.com/Karibash/password-generator,num_dependents_deps.dev:0 github.com/Karibash/pixel-units,num_dependents_deps.dev:0 github.com/Kariel-Myrr/kariel_andan_test_module, github.com/Karify/external-svg-sprite-loader,num_dependents_deps.dev:11 +github.com/Karim-53/typilus-action, github.com/KarimAllah/libvmm,num_dependents_deps.dev:0 github.com/KarimAziev/redux-saga-modal,num_dependents_deps.dev:0 github.com/KarimEbrahemAbdelaziz/git_eraser,num_dependents_deps.dev:0 @@ -100582,6 +102869,7 @@ github.com/KarmaNetwork/addr-hal,num_dependents_deps.dev:0 github.com/KarmaNetwork/log_hal,num_dependents_deps.dev:0 github.com/KarmdipJoshi/MI-Cache-Clear,num_dependents_deps.dev:0 github.com/Karn/bonfire, +github.com/KarnaLab/action, github.com/Karnak123/maznet, github.com/Karnak19/config-project-wcs,num_dependents_deps.dev:0 github.com/Karnak19/create-react-rover, @@ -100684,6 +102972,9 @@ github.com/Karunakar/faster_shoulda,num_dependents_deps.dev:0 github.com/Karunamon/syslog_generator,num_dependents_deps.dev:0 github.com/Karunika/isEven,num_dependents_deps.dev:0 github.com/KaryonSH/Paginator,num_dependents_deps.dev:0 +github.com/Kas-tle/base-release-action, +github.com/Kas-tle/find-forks-action, +github.com/Kas-tle/release-build-log-action, github.com/Kasahs/conset.js,num_dependents_deps.dev:0 github.com/Kasahs/freezejs,num_dependents_deps.dev:0 github.com/Kasahs/znvm,num_dependents_deps.dev:0 @@ -100897,6 +103188,10 @@ github.com/Kavand-1400/react-widgets-persian, github.com/Kavand-1400/video-recorder-custom,num_dependents_deps.dev:0 github.com/KaveNegar/kavenegar-node,num_dependents_deps.dev:0 github.com/Kaveckas/react-siema,num_dependents_deps.dev:0 +github.com/Kaven-Universe/github-action-auto-increment-version, +github.com/Kaven-Universe/github-action-current-date-time, +github.com/Kaven-Universe/github-action-ftp-upload-file, +github.com/Kaven-Universe/github-action-http-upload-file, github.com/Kaversoniano/Python-package-RatingCF, github.com/Kavex/GameDev-Resources,criticality_score:0.340810 github.com/Kavinci/genericcss,num_dependents_deps.dev:0 @@ -100958,6 +103253,7 @@ github.com/Kazakuri/hain-plugin-cmd,num_dependents_deps.dev:0 github.com/KazanExpress/async-usage,num_dependents_deps.dev:0 github.com/KazanExpress/bound,num_dependents_deps.dev:0 github.com/KazanExpress/dadata-js,num_dependents_deps.dev:0 +github.com/KazanExpress/git-pr-release-action, github.com/KazanExpress/ke-the-mask,num_dependents_deps.dev:0 github.com/KazanExpress/kefetchup,num_dependents_deps.dev:0 github.com/KazanExpress/omnic,num_dependents_deps.dev:0 @@ -100978,9 +103274,11 @@ github.com/Kazeia/get-graphql-schema-pr,num_dependents_deps.dev:0 github.com/Kazhnuz/awesome-gnome,criticality_score:0.334580 github.com/Kazhuu/asm2cfg, github.com/KazmaArakaki/css-module-resolver,num_dependents_deps.dev:0 +github.com/KazooHR/rc-branch-action, github.com/KazuhikoKuroda/jsvardump,num_dependents_deps.dev:0 github.com/KazuhiroKuwabara/gitbook-plugin-japanese-support,num_dependents_deps.dev:0 github.com/Kazuhito00/imread_from_url, +github.com/KazukiHayase/review-git-diff-action, github.com/KazumaTakata/tiny,num_dependents_deps.dev:0 github.com/Kazunori-Kimura/electron-dialog-promise,num_dependents_deps.dev:0 github.com/Kazunori-Kimura/koa-log4js,num_dependents_deps.dev:0 @@ -101092,6 +103390,7 @@ github.com/KeeganFerrett/Aliax,num_dependents_deps.dev:0 github.com/KeeganFerrett/Generic-JSON-API,num_dependents_deps.dev:0 github.com/KeeganFerrett/JSON-API,num_dependents_deps.dev:0 github.com/KeeganJ/logentries-webhook-auth,num_dependents_deps.dev:0 +github.com/Keego-Mobile/Kebo, github.com/Keeguon/mongoose-behaviors,num_dependents_deps.dev:0 github.com/Keemotion/datacore_sdk_python, github.com/Keen-King/hexo-abbrlink,num_dependents_deps.dev:0 @@ -101134,6 +103433,7 @@ github.com/KeepZen/flp,num_dependents_deps.dev:0 github.com/KeepZen/fp, github.com/KeepZen/mutex.js, github.com/Keeper-Security/Commander, +github.com/Keeper-Security/ksm-action, github.com/Keeper-Security/secrets-manager, github.com/KeeperFormaturas/cnab240, github.com/KeepsakeAutomation/Functional-modules-for-Laser-Cutting-Nesting-, @@ -101188,13 +103488,21 @@ github.com/KeiserCorp/1-Wire-JS,num_dependents_deps.dev:0 github.com/KeiserCorp/Keiser.Air.eChip.WebUSB,num_dependents_deps.dev:0 github.com/KeiserCorp/Keiser.Air.eChipUtilities,num_dependents_deps.dev:0 github.com/KeiserCorp/Keiser.Metrics.SDK,num_dependents_deps.dev:0 +github.com/KeisukeKudo/open_pull-request_chatwork_notifier, github.com/KeisukeNagakawa/cisim, github.com/KeisukeToyota/fpsm, github.com/KeisukeToyota/performer, +github.com/KeisukeYamashita/attach-labels, +github.com/KeisukeYamashita/auto-dependabot-pull-request-merge, +github.com/KeisukeYamashita/auto-pull-request-merge, +github.com/KeisukeYamashita/auto-renovate-pull-request-merge, +github.com/KeisukeYamashita/create-comment, github.com/KeisukeYamashita/hyacinth,num_dependents_deps.dev:0 github.com/KeisukeYamashita/kot-sdk,num_dependents_deps.dev:0 github.com/KeisukeYamashita/memcached-node, +github.com/KeisukeYamashita/setup-release, github.com/KeisukeYamashita/slack-message-publisher,num_dependents_deps.dev:0 +github.com/KeisukeYamashita/tag-protector, github.com/KeitIG/buzzshit,num_dependents_deps.dev:0 github.com/KeitIG/museeks,num_dependents_deps.dev:0 github.com/KeitIG/next-plugin-transpile-modules,num_dependents_deps.dev:0 @@ -101266,6 +103574,8 @@ github.com/KeizerDev/block_spinning, github.com/Keizouw8/OCR-Command-Line-Tool,num_dependents_deps.dev:0 github.com/Keizouw8/docker-compose-gen,num_dependents_deps.dev:0 github.com/Kejax/Hypixel-Lib, +github.com/KekeHub/auto-assign-project, +github.com/KekeHub/project-current-iteration, github.com/Kekos/ampersand-input-number-step-view,num_dependents_deps.dev:0 github.com/Kekos/ampersand-movingobj,num_dependents_deps.dev:0 github.com/Keksiuwu/kawaii-api, @@ -101283,6 +103593,7 @@ github.com/KelSolaar/Oncilla, github.com/KelSolaar/Umbra, github.com/KelWill/node-fn-query, github.com/KelabDev/ChineseTimeNLP, +github.com/Kelbie/github-action-template, github.com/Kelerchian/florcky,num_dependents_deps.dev:0 github.com/Kelerchian/safe-single-emitter,num_dependents_deps.dev:0 github.com/Kelgors/BufferedListView.js,num_dependents_deps.dev:0 @@ -101306,6 +103617,7 @@ github.com/KellerLong/kirin-cli,num_dependents_deps.dev:0 github.com/KellerLong/kirin-logger,num_dependents_deps.dev:0 github.com/KellerLong/kirin-strap, github.com/KellerLong/x-render,num_dependents_deps.dev:0 +github.com/Kellojo/github-release-notes-generator, github.com/Kellojo/ui5-test-i18n,num_dependents_deps.dev:0 github.com/KellyHwong/ip138, github.com/KellyHwong/manhuagui, @@ -101372,6 +103684,7 @@ github.com/KenEucker/clobfig,num_dependents_deps.dev:4 github.com/KenEucker/keneucker,num_dependents_deps.dev:0 github.com/KenEucker/select-posts-dropdown,num_dependents_deps.dev:0 github.com/KenG98/better-html,num_dependents_deps.dev:0 +github.com/KenHaNVG/demo-action, github.com/KenHky/nohash-react-scripts,num_dependents_deps.dev:0 github.com/KenHky/react-native-menu-button,num_dependents_deps.dev:0 github.com/KenHky/react-native-modal-date-picker,num_dependents_deps.dev:0 @@ -101606,6 +103919,7 @@ github.com/Kenshin/node-zblog, github.com/Kenshin/simpread,"criticality_score:0.382710,num_dependents_deps.dev:0" github.com/Kenshinhu/mongoose-queryHelper,num_dependents_deps.dev:0 github.com/Kenshinhu/node2aria,num_dependents_deps.dev:0 +github.com/KensingtonOscupant/nbviewer-flush-cache-action, github.com/KensingtonTech/dragula,num_dependents_deps.dev:0 github.com/KensingtonTech/easy-rbac, github.com/KensingtonTech/ng2-mousewheel,num_dependents_deps.dev:0 @@ -101720,6 +104034,7 @@ github.com/Kequc/passage-rpc,num_dependents_deps.dev:0 github.com/KeralaBots/Keralagram, github.com/KeralaPyApi/KeralaPyApi, github.com/Kerbaya/reposync,num_dependents_deps.dev:0 +github.com/KerberosMorphy/docker-exist-action, github.com/Kerbores/Titans,num_dependents_deps.dev:0 github.com/Kerbores/gitea-integration,num_dependents_deps.dev:0 github.com/Kerdokan/SomeRandomWrapper, @@ -101792,6 +104107,7 @@ github.com/Keruspe/brainfuck.rs,num_dependents_deps.dev:0 github.com/Keruspe/pinky-swear,num_dependents_deps.dev:29 github.com/Keruspe/rustls-connector,num_dependents_deps.dev:1 github.com/Keruspe/tcp-stream,num_dependents_deps.dev:91 +github.com/Kerwit/esp-idf-ci-action, github.com/Kesci/klabutils, github.com/Kesci/modelwhaleutils, github.com/KeshavShetty/kesh-utils, @@ -101799,6 +104115,7 @@ github.com/KeshavaReddy1101/PyPOM, github.com/Keshyu/tree-sitter-nova,num_dependents_deps.dev:0 github.com/Kesin11/Firestore-simple,num_dependents_deps.dev:0 github.com/Kesin11/JpTokenPreprocessing, +github.com/Kesin11/actions-timeline, github.com/Kesin11/ts-junit2json,num_dependents_deps.dev:0 github.com/KesionX/wx-mock,num_dependents_deps.dev:0 github.com/KeskoSenukaiDigital/OwlCarousel2,num_dependents_deps.dev:0 @@ -101813,6 +104130,7 @@ github.com/Ketcap/FancyBox,num_dependents_deps.dev:0 github.com/Ketcap/FancyWrite, github.com/Kethku/neovide,criticality_score:0.455480 github.com/Ketouem/flask-boto3, +github.com/Ketryx/ketryx-github-action, github.com/Ketul-Patel/Pylot, github.com/Keunyoung-Jung/ParquetLoader, github.com/Kev/ampersand-websocket-hint,num_dependents_deps.dev:0 @@ -101834,6 +104152,8 @@ github.com/Keve1227/pills-in-my-coffee,num_dependents_deps.dev:0 github.com/Kevin-269581661/vue-input-number,num_dependents_deps.dev:0 github.com/Kevin-269581661/vue-puzzle-verification,num_dependents_deps.dev:0 github.com/Kevin-777/hello-world, +github.com/Kevin-Bronsdijk/npm-pre-release-packages-detection-action, +github.com/Kevin-Bronsdijk/nuget-pre-release-packages-detection-action, github.com/Kevin-Chen0/auto-time-series, github.com/Kevin-Chen0/deep-time-series, github.com/Kevin-Chen0/time-series, @@ -101877,6 +104197,7 @@ github.com/KevinDaKevoo/Lotide, github.com/KevinDalySmith/PyMoments, github.com/KevinDangVN/ckeditor, github.com/KevinDeJong-TomTom/bitbucket-code-insight-reporter, +github.com/KevinDeJong-TomTom/commisery-action, github.com/KevinDeJong-TomTom/jira-history-api, github.com/KevinDeJong-TomTom/llvm-diagnostics, github.com/KevinDoughty/hyperact,num_dependents_deps.dev:0 @@ -101965,6 +104286,11 @@ github.com/KevinRNelson/displaypurposes, github.com/KevinRamharak/ng-defer-bootstrap,num_dependents_deps.dev:0 github.com/KevinRamharak/ng-sane-defaults,num_dependents_deps.dev:0 github.com/KevinRignault/GPS-Manager,num_dependents_deps.dev:0 +github.com/KevinRohn/create-mender-artifact, +github.com/KevinRohn/github-action-javascript-obfuscator, +github.com/KevinRohn/github-action-upload-play-store, +github.com/KevinRohn/github-full-release-data, +github.com/KevinRohn/sign-mender-artifact, github.com/KevinS2333/learnstorybook-design-system,num_dependents_deps.dev:0 github.com/KevinSeghetti/react-cursor-position, github.com/KevinSeghetti/react-data-grid,num_dependents_deps.dev:0 @@ -102001,6 +104327,7 @@ github.com/Kevinenei/validcreditcard,num_dependents_deps.dev:0 github.com/Kevingarzon94/platzom,num_dependents_deps.dev:0 github.com/Kevingislason/bitcoin_coin_selection, github.com/Kevingtxz/Building-Python-Package, +github.com/Kevinjil/jellyfin-plugin-repo-action, github.com/Kevinli296/lotide,num_dependents_deps.dev:0 github.com/Kevinliao0857/lotide,num_dependents_deps.dev:0 github.com/Kevinparra535/random-messages-package, @@ -102056,6 +104383,7 @@ github.com/KeySpot/node-api,num_dependents_deps.dev:0 github.com/KeySpot/python-api, github.com/KeyStorke/1pronto, github.com/KeyStorke/ObjectModeler, +github.com/KeyValueSoftwareSystems/action-ecr-image-scan, github.com/KeyWeeUsr/Bear, github.com/KeyWeeUsr/Butch, github.com/KeyWeeUsr/Frostmark, @@ -102123,6 +104451,7 @@ github.com/Kh-011-WebUIPython/lit-cli, github.com/Kh4L1L0/esp-library,num_dependents_deps.dev:0 github.com/Khaalidsub/mongoose-autopopulator,num_dependents_deps.dev:0 github.com/Khaaz/AxonCore, +github.com/Khaaz/action-autoscope, github.com/Khaaz/create-axoncore-app, github.com/Khaazz/AxonCore,num_dependents_deps.dev:0 github.com/Khaazz/create-axoncore-app,num_dependents_deps.dev:0 @@ -102139,6 +104468,7 @@ github.com/KhafraDev/node-mailinabox,num_dependents_deps.dev:0 github.com/KhafraDev/require-dir,num_dependents_deps.dev:0 github.com/Khaladin/create-react-app,num_dependents_deps.dev:0 github.com/KhaldAttya/Aeye,num_dependents_deps.dev:0 +github.com/KhaledAhmed-Ibtikar/whatsapp-push-notify-action, github.com/KhaledAylii/navbegone,num_dependents_deps.dev:0 github.com/KhaledElAnsari/Hellrazor.js,num_dependents_deps.dev:0 github.com/KhaledElAnsari/Object.entries,num_dependents_deps.dev:0 @@ -102184,6 +104514,8 @@ github.com/Khan/kmath,num_dependents_deps.dev:0 github.com/Khan/lesshint,num_dependents_deps.dev:0 github.com/Khan/live-editor,criticality_score:0.384200 github.com/Khan/perseus,num_dependents_deps.dev:0 +github.com/Khan/pull-request-comment-trigger, +github.com/Khan/pull-request-workflow-cancel, github.com/Khan/react-components,num_dependents_deps.dev:2 github.com/Khan/reactiscriptsixify,num_dependents_deps.dev:0 github.com/Khan/simple-markdown,"criticality_score:0.422090,num_dependents_deps.dev:70" @@ -102202,6 +104534,10 @@ github.com/KhanhCT/adapy, github.com/KhanhChiTran/luly,num_dependents_deps.dev:0 github.com/KhanhKitin/input-ui-kit, github.com/KhanhTrinh2094/json-duplicate-key-handle,num_dependents_deps.dev:38 +github.com/KhannaAbhinav/file-commits-leaderboard-action, +github.com/KhannaAbhinav/random-selector-action, +github.com/KhannaAbhinav/terraform-action, +github.com/KhannaAbhinav/trigger-aws-lambda-action, github.com/KhaosArbiter/modern-react-qr-reader,num_dependents_deps.dev:0 github.com/KhaosT/HAP-NodeJS,num_dependents_deps.dev:64 github.com/KhaosT/bonjour,num_dependents_deps.dev:3 @@ -102273,6 +104609,8 @@ github.com/KhronosGroup/glTF-Sample-Viewer,"criticality_score:0.380790,num_depen github.com/KhronosGroup/glTF-Tutorials,criticality_score:0.397930 github.com/KhronosGroup/glTF-Validator,"Google,num_dependents_deps.dev:0" github.com/KhronosGroup/glslang,criticality_score:0.670780 +github.com/KhudaDad414/workflows2md-action, +github.com/KhulnaSoft-OpenSource/release, github.com/Khurvity/khur-core,num_dependents_deps.dev:0 github.com/KhushrajRathod/NodeSharedClipboard,num_dependents_deps.dev:0 github.com/KhushrajRathod/UptimeActionsCLI,num_dependents_deps.dev:0 @@ -102322,8 +104660,10 @@ github.com/Kibibit/cli-lit,num_dependents_deps.dev:0 github.com/Kibibit/cold-deck,num_dependents_deps.dev:0 github.com/Kibibit/configurations,num_dependents_deps.dev:0 github.com/Kibibit/consologo,num_dependents_deps.dev:0 +github.com/Kibibit/gitflow-hotfix, github.com/Kibibit/hass-kibibit-theme,num_dependents_deps.dev:0 github.com/Kibibit/jest-utils,num_dependents_deps.dev:0 +github.com/Kibibit/kb-badger-action, github.com/Kibibit/kb-better-graph-colors,num_dependents_deps.dev:0 github.com/Kibibit/kb-components,num_dependents_deps.dev:0 github.com/Kibibit/kb-error,num_dependents_deps.dev:0 @@ -102448,9 +104788,12 @@ github.com/KijijiCA/extract-jss-webpack-plugin,num_dependents_deps.dev:0 github.com/KijijiCA/jss-loader, github.com/Kijin-Seija/el-table-plus,num_dependents_deps.dev:0 github.com/Kijin-Seija/vue-kijin-validator,num_dependents_deps.dev:0 +github.com/KijungSong/action_test, github.com/KikahaPlus44/react16-markdown-native,num_dependents_deps.dev:0 github.com/Kikapay/kika-components-react, github.com/Kikasuru/melty_stream, +github.com/KikeMendez/automate-cdk-github-action-kmzz, +github.com/KikimoraGames/itch-publish, github.com/Kikketer/datapile,num_dependents_deps.dev:0 github.com/KikoPT1234/Minehut.js,num_dependents_deps.dev:0 github.com/KikoPalomares/is-audio,num_dependents_deps.dev:0 @@ -102654,6 +104997,8 @@ github.com/Kilix/okami, github.com/Kilix/storybook-addon-props-fela,num_dependents_deps.dev:0 github.com/KillAChicken/lila, github.com/KillAChicken/loose-server, +github.com/KillDozerX2/aws-lambda-publishlayer, +github.com/KillDozerX2/firebase-user-setter, github.com/KillDozerX2/vue-lax,num_dependents_deps.dev:0 github.com/KillTheMule/nvim-rs,num_dependents_deps.dev:0 github.com/KillTheMule/nvimpam,num_dependents_deps.dev:0 @@ -102779,6 +105124,7 @@ github.com/Kimundi/rustc-version-rs,num_dependents_deps.dev:13614 github.com/Kimundi/scoped-threadpool-rs,num_dependents_deps.dev:1215 github.com/KimuraYu45z/firebase-functions-template,num_dependents_deps.dev:0 github.com/Kimwj0318/lighthouse-lotide,num_dependents_deps.dev:0 +github.com/Kimyechan/kubectl-argo-rollout-eks, github.com/Kin-Carta-Connect/eslint-config,num_dependents_deps.dev:0 github.com/Kin-Carta-Connect/stylelint-config,num_dependents_deps.dev:0 github.com/KinPeter/PK-Image-Uploader,num_dependents_deps.dev:0 @@ -102800,6 +105146,7 @@ github.com/Kindzoku/kzFormDaimyo,num_dependents_deps.dev:0 github.com/Kinect/PyKinect2, github.com/Kinedu/comment_me,num_dependents_deps.dev:0 github.com/Kinedu/light-carousel,num_dependents_deps.dev:0 +github.com/KineticCafe/actions-dco, github.com/KineticCafe/cartage,num_dependents_deps.dev:0 github.com/KineticCafe/release-metadata,num_dependents_deps.dev:0 github.com/Kineviz/cra-template-graphxr-extension,num_dependents_deps.dev:0 @@ -102887,6 +105234,7 @@ github.com/KingPixil/sold,num_dependents_deps.dev:0 github.com/KingPixil/spark,num_dependents_deps.dev:0 github.com/KingPixil/voke,num_dependents_deps.dev:0 github.com/KingPixil/wade,num_dependents_deps.dev:0 +github.com/KingScooty/actions-yarn-cy, github.com/KingScooty/postcss-color-mod-function,num_dependents_deps.dev:0 github.com/KingSimon/iconv-md5,num_dependents_deps.dev:0 github.com/KingSkyLi/fv-cli, @@ -102902,6 +105250,8 @@ github.com/KingZhang/markdown-html-webpack-plugin,num_dependents_deps.dev:0 github.com/KingdomB/UpCase,num_dependents_deps.dev:0 github.com/Kingdutch/gatsby-remark-reason-rendering,num_dependents_deps.dev:0 github.com/Kingdutch/react-disc-menu,num_dependents_deps.dev:0 +github.com/KinglittleQ/markdown-latex-math-render, +github.com/Kingmidas74/git-secret-github-action, github.com/KingofApp/generator-koapp-service, github.com/KingofApp/koapp-cli,num_dependents_deps.dev:0 github.com/KingofHamyang/skku-login-module,num_dependents_deps.dev:0 @@ -102919,6 +105269,8 @@ github.com/KingsonGao/nd-handlehtml,num_dependents_deps.dev:0 github.com/KingstonSoftware/HummusJS,num_dependents_deps.dev:0 github.com/KingstonSoftware/pdf-o-rama,num_dependents_deps.dev:0 github.com/Kingsway-Digital/craftercms-react,num_dependents_deps.dev:0 +github.com/Kingwl/tencent-cloud-sms-send-action, +github.com/Kingwl/tj-roll-action, github.com/Kinice/K-article,num_dependents_deps.dev:0 github.com/Kinice/drag-block,num_dependents_deps.dev:0 github.com/Kinice/k-dev-server,num_dependents_deps.dev:0 @@ -102941,6 +105293,9 @@ github.com/Kinrany/vue-p5,num_dependents_deps.dev:0 github.com/Kinsi55/node_dvripclient,num_dependents_deps.dev:0 github.com/Kinsi55/node_primus-turborooms,num_dependents_deps.dev:0 github.com/Kinsi55/node_saved,num_dependents_deps.dev:0 +github.com/KinsonDigital/BranchValidator, +github.com/KinsonDigital/PackageMonster, +github.com/KinsonDigital/VersionMiner, github.com/Kintaro/futures-router-sink,num_dependents_deps.dev:0 github.com/Kintaro/wtftw,criticality_score:0.350300 github.com/Kintent/eslint-kintent-platform,num_dependents_deps.dev:0 @@ -103013,10 +105368,12 @@ github.com/KipFeher85/Fantasy-Baseball, github.com/KipSong/kip-element,num_dependents_deps.dev:0 github.com/KiperTecnologia/papertrail-logger, github.com/KiperTecnologia/react-native-kiper-contacts,num_dependents_deps.dev:0 +github.com/Kipriz/update-azure-api-management, github.com/Kir-Antipov/SimpleAjax,num_dependents_deps.dev:0 github.com/Kir-Antipov/append-prepend-loader,num_dependents_deps.dev:0 github.com/Kir-Antipov/dotnet-format,num_dependents_deps.dev:0 github.com/Kir-Antipov/emit-file-webpack-plugin,num_dependents_deps.dev:0 +github.com/Kir-Antipov/mc-publish, github.com/Kir23/TrendTestTask,num_dependents_deps.dev:0 github.com/Kira2/parse-server-mailjet-adapter,num_dependents_deps.dev:0 github.com/Kira2/parse-server-sendinblue-adapter,num_dependents_deps.dev:0 @@ -103100,6 +105457,7 @@ github.com/KirillTarasenko/fn-safe-run,num_dependents_deps.dev:0 github.com/KirillTemnov/redmine-eye,num_dependents_deps.dev:0 github.com/KirillTushin/target_encoding, github.com/KirioXX/apollo-link-react-native-firebase-perf,num_dependents_deps.dev:0 +github.com/KirioXX/employee-of-the-month-action, github.com/Kiririn00/Auto-HTTP,num_dependents_deps.dev:0 github.com/Kiririn00/insertion_sort,num_dependents_deps.dev:0 github.com/Kiririn00/shuffle_number,num_dependents_deps.dev:0 @@ -103115,6 +105473,7 @@ github.com/Kirkhammetz/lcov-total,num_dependents_deps.dev:0 github.com/Kirkhammetz/termly.js,num_dependents_deps.dev:0 github.com/Kirkify/cordova-plugin-echo,num_dependents_deps.dev:0 github.com/Kirksten3/pagespeedhelper,num_dependents_deps.dev:0 +github.com/Kirksten3/snowflake-query, github.com/Kirlovon/Mykoob-API, github.com/Kirlovon/Simple-SSR,num_dependents_deps.dev:0 github.com/Kirlovon/Zoomtastic,num_dependents_deps.dev:0 @@ -103210,6 +105569,7 @@ github.com/KitsonBroadhurst/emotion-react-flexbox-grid, github.com/Kitsuyo/DJS-Utils, github.com/Kitt-AI/parsetron, github.com/Kitt-AI/snowboy,"criticality_score:0.454580,num_dependents_deps.dev:26,num_dependents_deps.dev:2" +github.com/KittMedia/action-wsc-package-create, github.com/KittehOrg/KittehIRCClientLib,num_dependents_deps.dev:0 github.com/KittehOrg/KittehMavenVersionizer,num_dependents_deps.dev:0 github.com/KittenTeam/gl-matrix,num_dependents_deps.dev:0 @@ -103220,11 +105580,15 @@ github.com/KittenTeam/react-native-webp-support,num_dependents_deps.dev:0 github.com/KittenTeam/scratch-parser,num_dependents_deps.dev:0 github.com/KittenTeam/vuepress-theme-codemao_docs,num_dependents_deps.dev:0 github.com/KittenTeam/webpack-retry-load-plugin,num_dependents_deps.dev:0 +github.com/KittyCAD/action-convert-directory, +github.com/KittyCAD/action-install-cli, +github.com/KittyChiu/workflow-metrics, github.com/KittyCookie/react-native-chartjs,num_dependents_deps.dev:0 github.com/KittyFairy-Han/study-demos,num_dependents_deps.dev:0 github.com/KittyGiraudel/a11y-dialog, github.com/KittyGiraudel/react-a11y-dialog, github.com/KittyGiraudel/react-a11y-footnotes, +github.com/KittyJose/Insights, github.com/KittyKatt/screenFetch,criticality_score:0.536400 github.com/Kitura/BlueSocket,criticality_score:0.440500 github.com/Kitura/Kitura,criticality_score:0.406470 @@ -103269,6 +105633,7 @@ github.com/KivenChen/PyLego, github.com/Kivt/awescode-select,num_dependents_deps.dev:0 github.com/KiwiFinanceApps/kiwi-uikit,num_dependents_deps.dev:0 github.com/KiwiTrinsic/django-ajax-tables, +github.com/KiwisAreYummy/ecr-ssh-run, github.com/Kiwka/eslint-plugin-react-flow,num_dependents_deps.dev:0 github.com/Kiwka/fix-number-abbreviate,num_dependents_deps.dev:0 github.com/Kiwka/fixed-number-abbreviation, @@ -103431,11 +105796,14 @@ github.com/Klemen1337/node-thermal-printer,"criticality_score:0.310200,num_depen github.com/Klemen1337/simplygrid,num_dependents_deps.dev:0 github.com/KlemenS189/Translator,num_dependents_deps.dev:0 github.com/KlemenS189/django-expiring-token, +github.com/Klemensas/action-autotag, +github.com/Klemensas/chrome-extension-upload-action, github.com/Klemminn/klemenz-cv,num_dependents_deps.dev:0 github.com/KleoPetroff/babel-preset-react-boilerplate,num_dependents_deps.dev:0 github.com/Klervix/node-red-contrib,num_dependents_deps.dev:0 github.com/KlessitonRodrigues/fast-style,num_dependents_deps.dev:0 github.com/KlessitonRodrigues/sass-base-style,num_dependents_deps.dev:0 +github.com/KlexosNYC/docstr-coverage-action, github.com/Kliative/aws-ca-npm-jenkinks,num_dependents_deps.dev:0 github.com/Kliative/garicons,num_dependents_deps.dev:0 github.com/Klifu/cli,num_dependents_deps.dev:0 @@ -103447,7 +105815,9 @@ github.com/KlimMalgin/Morphine,num_dependents_deps.dev:0 github.com/KlimMalgin/react-tag-field,num_dependents_deps.dev:0 github.com/Klimonov/project-lvl1-s244,num_dependents_deps.dev:0 github.com/KlintonICT/semver-existing-max, +github.com/Klintrup/simple-shell-syntax-check, github.com/KloakIT/Kloak_platform,num_dependents_deps.dev:0 +github.com/Kloenk/ofbuild, github.com/KlonD90/HashIndex,num_dependents_deps.dev:0 github.com/KlonD90/gulp-simplefont64,num_dependents_deps.dev:0 github.com/KlonD90/node-tarantool-driver,num_dependents_deps.dev:2 @@ -103505,6 +105875,7 @@ github.com/Kludex/spec-parser, github.com/Kludex/sqlalchemy-dbml, github.com/Kludex/stream-csv, github.com/Kludex/taskqueue, +github.com/Kludex/update-file, github.com/Kludex/uvicorn-browser, github.com/KludgeKML/keyth,num_dependents_deps.dev:0 github.com/KludgeKML/tell-them,num_dependents_deps.dev:0 @@ -103517,6 +105888,7 @@ github.com/KlwntSingh/async-for,num_dependents_deps.dev:0 github.com/KlwntSingh/for-io, github.com/KlwntSingh/fs-advanced, github.com/Klynox/python-coinpayments-api-wrapper, +github.com/KlyuchnikovV/telegram-notify, github.com/KmKm007/react-redux-starter-kit,num_dependents_deps.dev:0 github.com/Kmaschta/graphql-ast-types,num_dependents_deps.dev:2 github.com/KmolYuan/Pyslvs-UI, @@ -103554,6 +105926,8 @@ github.com/KnewHow/ScalaProp,num_dependents_deps.dev:0 github.com/Knewton/cassandra-toolbox, github.com/Knewton/grifter,num_dependents_deps.dev:0 github.com/KnicKnic/WASM-ImageMagick,num_dependents_deps.dev:8 +github.com/KnicKnic/os-specific-run, +github.com/KnicKnic/temp-kubernetes-ci, github.com/KnifeC/simple-webp-converter,num_dependents_deps.dev:0 github.com/KnifeMaster007/structdc, github.com/KnightHacks/School-Normalizer,num_dependents_deps.dev:0 @@ -103728,6 +106102,7 @@ github.com/KnowledgeExpert/selenidejs,num_dependents_deps.dev:0 github.com/KnowledgeExpert/xpather,num_dependents_deps.dev:0 github.com/KnowledgeLinks/rdfframework, github.com/Knowlege/Mind, +github.com/Knowmad-Mood/defectdojo-import-scan, github.com/Knowre-Dev/esbuild-plugin-ignore,num_dependents_deps.dev:0 github.com/Knowre-Dev/random-hash-generator,num_dependents_deps.dev:0 github.com/Knowre-Dev/swint, @@ -103762,6 +106137,7 @@ github.com/KnugiHK/flask-hcaptcha, github.com/KnugiHK/flask-idempotent-memory, github.com/KnugiHK/rtmplite3, github.com/KnugiHK/synapse-admin-api-python, +github.com/KnutFr/github-actions-to-elk, github.com/KnutHelland/jsimports,num_dependents_deps.dev:0 github.com/KnutHelland/noop-loader,num_dependents_deps.dev:2 github.com/KnutSv/generator-vp-craft,num_dependents_deps.dev:0 @@ -103912,6 +106288,7 @@ github.com/KoenBrouwer/react-usetoggle,num_dependents_deps.dev:0 github.com/KoenKamman/evolve-ga,num_dependents_deps.dev:0 github.com/KoenLav/cordova-plugin-chrome-apps-sockets-tcp,num_dependents_deps.dev:0 github.com/Koeng101/opentronsfastapi, +github.com/Koenigseder/semver-action, github.com/Koenkk/Z-Stack-firmware,criticality_score:0.376170 github.com/Koenkk/zigbee-herdsman,num_dependents_deps.dev:3 github.com/Koenkk/zigbee-herdsman-converters,"criticality_score:0.714390,num_dependents_deps.dev:2" @@ -103952,6 +106329,7 @@ github.com/KoharaKazuya/cfn-deps,num_dependents_deps.dev:0 github.com/KoharaKazuya/coolit,num_dependents_deps.dev:0 github.com/KoharaKazuya/joqt,num_dependents_deps.dev:0 github.com/KoharaKazuya/js-yaml-schema-cfn,num_dependents_deps.dev:14 +github.com/KoharaKazuya/marp-cli-action, github.com/KoharaKazuya/md2img,num_dependents_deps.dev:0 github.com/KoharaKazuya/openapi-apigw-mock,num_dependents_deps.dev:0 github.com/KoharaKazuya/pickpatch,num_dependents_deps.dev:0 @@ -103961,6 +106339,7 @@ github.com/KoheiYoneda/pimo,num_dependents_deps.dev:0 github.com/Koheron/koheron-sdk, github.com/KohnoseLami/Twitter_Frontend_API, github.com/Kohulan/DECIMER-Image_Transformer, +github.com/KoiLVeD/testGA, github.com/KoiOates/plover_dict_commands, github.com/KoichaDev/replace-hash-in-file-webpack-plugin,num_dependents_deps.dev:0 github.com/Koichi-Sakata/pylib_sakata, @@ -104043,6 +106422,7 @@ github.com/KoleMyers/apple-musickit-example,num_dependents_deps.dev:0 github.com/KolektifLabs/ghost-node-api,num_dependents_deps.dev:0 github.com/KolektifLabs/onesignal-node,num_dependents_deps.dev:0 github.com/Kolenich/dialog-notification,num_dependents_deps.dev:0 +github.com/Koleok/action-find-linear-issue, github.com/Koleok/cliquer,num_dependents_deps.dev:0 github.com/Koleok/how-the-test-was-won,num_dependents_deps.dev:0 github.com/Koleok/jest-coverage-ratchet,num_dependents_deps.dev:6 @@ -104126,16 +106506,20 @@ github.com/Konecty/node-red-contrib-d3-array,num_dependents_deps.dev:0 github.com/Konecty/node-red-contrib-konecty,num_dependents_deps.dev:0 github.com/Konfekt/FastFold,criticality_score:0.340050 github.com/Kong/docker-kong,criticality_score:0.439820 +github.com/Kong/github-action-dist-size-checker, github.com/Kong/httpsnippet,"criticality_score:0.424370,num_dependents_deps.dev:0" github.com/Kong/insomnia,"criticality_score:0.597870,num_dependents_deps.dev:8" github.com/Kong/kong,criticality_score:0.744660 github.com/Kong/kong-js-pdk,num_dependents_deps.dev:0 +github.com/Kong/kong-pongo-action, github.com/Kong/kong-portal-cli,num_dependents_deps.dev:0 github.com/Kong/kong-python-pdk, github.com/Kong/kongponents,num_dependents_deps.dev:6 github.com/Kong/kubernetes-ingress-controller,"criticality_score:0.552240,num_dependents_deps.dev:0" github.com/Kong/mockbin,criticality_score:0.303330 github.com/Kong/py-postgrest, +github.com/Kong/setup-deck, +github.com/Kong/setup-inso, github.com/Kong/swrv,criticality_score:0.339900 github.com/Kong/unirest-java,"criticality_score:0.599470,num_dependents_deps.dev:160" github.com/Kong/unirest-php,criticality_score:0.331550 @@ -104171,11 +106555,13 @@ github.com/Konosprod/lospec2aseprite, github.com/Konosprod/node-bored-api,num_dependents_deps.dev:0 github.com/Konosprod/rpgmva2rpgmmz, github.com/Konquer/lightningmap,num_dependents_deps.dev:0 +github.com/KonradHoeffner/shacl, github.com/KonradIT/gopro-py-api,criticality_score:0.388080 github.com/KonradIT/goprowifihack,criticality_score:0.426720 github.com/KonradKiss/jsbitstream,num_dependents_deps.dev:0 github.com/KonradKuznicki/fs-ftp-ts, github.com/KonradKuznicki/ftp-ts,num_dependents_deps.dev:0 +github.com/KonradLinkowski/ContributionsGenerator, github.com/KonradLinkowski/GrafJS,num_dependents_deps.dev:0 github.com/KonradLinkowski/english-nums, github.com/KonradLinkowski/is-not-boolean, @@ -104189,6 +106575,7 @@ github.com/Konro1/typeorm-text-search,num_dependents_deps.dev:0 github.com/KonsomeJona/electron-localizer,num_dependents_deps.dev:0 github.com/KonstaL/okoo,num_dependents_deps.dev:0 github.com/Konstantin-GIT/project-lvl1-s320,num_dependents_deps.dev:0 +github.com/Konstantin343/cppcheck-annotation-action, github.com/Konstantin6487/project-lvl2-s273,num_dependents_deps.dev:0 github.com/Konstantin8105/c4go,criticality_score:0.312620 github.com/KonstantinEger/ExpressFunctions,num_dependents_deps.dev:0 @@ -104216,6 +106603,9 @@ github.com/KonstantinosAnd/emoFeatExtract, github.com/KonstantinosKaratzidis/range-seq,num_dependents_deps.dev:0 github.com/KonstantoS/react-native-web-svg,num_dependents_deps.dev:0 github.com/Konstellation/cosmosjs,num_dependents_deps.dev:0 +github.com/KonsumGandalf/rspd-assignment-grader, +github.com/KonsumGandalf/rspd-python-assignment-report, +github.com/KonsumGandalf/rspd-python-grade-action, github.com/Kontsedal/redux-call,num_dependents_deps.dev:0 github.com/KonyshevArtem/digit-index, github.com/Kooboo/Kooboo,criticality_score:0.418550 @@ -104233,6 +106623,7 @@ github.com/Koorosh/use-fields-hook,num_dependents_deps.dev:0 github.com/Koozco/pmp, github.com/Kop4lyf/child-process-manager,num_dependents_deps.dev:0 github.com/Kopetzki/PIT_APP, +github.com/Kopfstein/pyscaffold-gh-pages-deploy, github.com/Kopjra/generator-klibrary,num_dependents_deps.dev:0 github.com/Koppel-Zhou/react-native-baidu-trace,num_dependents_deps.dev:0 github.com/Koptelnya/strapi-plugin-k-editorjs,num_dependents_deps.dev:0 @@ -104283,6 +106674,7 @@ github.com/Korilakkuma/X-Sound,num_dependents_deps.dev:0 github.com/Korilakkuma/XSound,num_dependents_deps.dev:0 github.com/Korilakkuma/jqFlipSwitch,num_dependents_deps.dev:0 github.com/Korilakkuma/x-piano,num_dependents_deps.dev:0 +github.com/Korkrane/42project-badge-action, github.com/KorkyMonster/garlicoin-miner-nodejs,num_dependents_deps.dev:0 github.com/KorkyMonster/net-websocket-polyfill,num_dependents_deps.dev:0 github.com/KorkyMonster/tuxcoind-rpc,num_dependents_deps.dev:0 @@ -104560,6 +106952,7 @@ github.com/KosyanMedia/ereb, github.com/KosyanMedia/temple,num_dependents_deps.dev:0 github.com/KosyanMedia/templeify,num_dependents_deps.dev:0 github.com/KosyanMedia/tp_currency_css,num_dependents_deps.dev:0 +github.com/KotKompot0/create-proxy-conf-angular, github.com/KotRikD/osu-db-parser,num_dependents_deps.dev:0 github.com/KotRikD/paper-scroll-sdk-node,num_dependents_deps.dev:0 github.com/KotRikD/paper-scroll-sdk-py, @@ -104645,6 +107038,7 @@ github.com/KoveyMar/ws-socket-queue,num_dependents_deps.dev:0 github.com/KovganIV/koa-sequelize-simple-CRUD,num_dependents_deps.dev:0 github.com/KovganIV/sequelize-simple-CRUD,num_dependents_deps.dev:0 github.com/Kowalski-IO/jqb2jooq,num_dependents_deps.dev:0 +github.com/KowalskiTom/get-github-deployment, github.com/Kowanas/kowanasuti, github.com/KowlinMC/D.PY-utils, github.com/Kowsalya-Kanagaraj/siam-npm-package,num_dependents_deps.dev:0 @@ -104729,6 +107123,7 @@ github.com/Kraots/disnake_docs, github.com/Kraots/jishaku, github.com/Kras4ooo/django-bitbucket-hook, github.com/Krascal/laneDetection, +github.com/KrashLeviathan/gcloud-login-action, github.com/KrasiNedew/async-queue-js, github.com/Krasjet/pdf.tocgen, github.com/Krast76/onlinectl, @@ -104862,6 +107257,7 @@ github.com/KrisJordan/multimethod-js,num_dependents_deps.dev:0 github.com/KrisKuiper/Nerms,num_dependents_deps.dev:0 github.com/KrisKuiper/Simple-Mutex,num_dependents_deps.dev:0 github.com/KrisLRC/iview-onlyhi,num_dependents_deps.dev:0 +github.com/KrisPett/s3-sync-action, github.com/KrisSiegel/msngr.js,num_dependents_deps.dev:0 github.com/KrisWyb/stuqkoa34hellonode,num_dependents_deps.dev:0 github.com/Krisa/node-retries,num_dependents_deps.dev:0 @@ -104879,6 +107275,7 @@ github.com/Krish-ds/Instagram_Bot, github.com/KrishAgarwal2811/djs-utility,num_dependents_deps.dev:0 github.com/KrishMunot/awesome-startup,criticality_score:0.332040 github.com/Krishan14sharma/MineSweeper,num_dependents_deps.dev:0 +github.com/Krishanu230/staging-actions2, github.com/Krishap-s/wiki_scraper, github.com/Krishna-123/vk_view_tool,num_dependents_deps.dev:0 github.com/Krishna-Singhal/userge-federation, @@ -104915,6 +107312,7 @@ github.com/Kristian8606/Philips_Tv,num_dependents_deps.dev:0 github.com/KristianAbrahamsen/tree-util,num_dependents_deps.dev:0 github.com/KristianFJones/TS-CaddyFile,num_dependents_deps.dev:0 github.com/KristianFJones/TS-vCenter,num_dependents_deps.dev:0 +github.com/KristianGrafana/verify-signed-commits-in-pr-action, github.com/KristianOellegaard/cmsplugin-text-ng, github.com/KristianOellegaard/django-health-check,criticality_score:0.509280 github.com/KristianOellegaard/django-hvad,criticality_score:0.343620 @@ -104939,10 +107337,13 @@ github.com/KristofPusztai/EQL, github.com/KristoferMyhre/fpl-api-js,num_dependents_deps.dev:0 github.com/KristofferC/OhMyREPL.jl,criticality_score:0.449510 github.com/KristofferC/TimerOutputs.jl,criticality_score:0.381310 +github.com/KristofferHaakonsen/pr-question-template-action, +github.com/KristofferHogberg/validate-bpmn-action, github.com/KristofferTroncoso/kht-ui,num_dependents_deps.dev:0 github.com/KristofferTroncoso/react-easy-code,num_dependents_deps.dev:0 github.com/KristoforMaynard/music-tag, github.com/KristopherPaulsen/genuine-mock-server,num_dependents_deps.dev:0 +github.com/Kristories/cargo-test, github.com/Kristories/flight-manager,num_dependents_deps.dev:0 github.com/Kristories/frodev,num_dependents_deps.dev:0 github.com/Kristories/generator-frodev, @@ -104951,6 +107352,7 @@ github.com/Kristories/kodepos,num_dependents_deps.dev:0 github.com/Kristories/palestine,num_dependents_deps.dev:0 github.com/Kristories/phunt,num_dependents_deps.dev:0 github.com/KritR/picoc-wasm,num_dependents_deps.dev:0 +github.com/Kritik-ai/workflow, github.com/Kritika2808/react-virtual-scrolling,num_dependents_deps.dev:0 github.com/Kritish58/image-mod,num_dependents_deps.dev:0 github.com/Kritish58/shit-cli-tool,num_dependents_deps.dev:0 @@ -105000,6 +107402,7 @@ github.com/Kroisse/flask-factory, github.com/Kroisse/furnace,num_dependents_deps.dev:0 github.com/Krokop/turbosmsua, github.com/Krolcom/s3synclite,num_dependents_deps.dev:0 +github.com/KrollDevelopment/EarthElevationAction, github.com/KromDaniel/browser-cancelable-events,num_dependents_deps.dev:0 github.com/KromDaniel/web-mutex,num_dependents_deps.dev:0 github.com/Krombik/keysender,num_dependents_deps.dev:0 @@ -105121,6 +107524,7 @@ github.com/Krprashant94/pyimageocr, github.com/Krprashant94/pypollution, github.com/Krrish-raj/fire-logger,num_dependents_deps.dev:0 github.com/Krryxa/krry-transfer,num_dependents_deps.dev:0 +github.com/Krucible/krucible-github-action, github.com/Krucible/node-client,num_dependents_deps.dev:0 github.com/Kruhlmann/gpxpr, github.com/Kruiserx/eswrapsearch,num_dependents_deps.dev:0 @@ -105343,6 +107747,7 @@ github.com/Kuehle/monospace-rendering,num_dependents_deps.dev:0 github.com/KuenReol/kuen,num_dependents_deps.dev:2 github.com/Kuew/connect-flash-redis,num_dependents_deps.dev:0 github.com/Kuew/kuew-api-explorer,num_dependents_deps.dev:0 +github.com/KuhlTime/ghcr-action, github.com/Kuhron/flexpy, github.com/KuiShang/babel-plugin-transform-remove-console, github.com/KuiShang/kkCascader,num_dependents_deps.dev:0 @@ -105362,6 +107767,7 @@ github.com/Kukkimonsuta/inversify-react,num_dependents_deps.dev:0 github.com/Kukkimonsuta/odachi-js, github.com/Kukks/nuxt-ts-nameof,num_dependents_deps.dev:0 github.com/Kukks/ts-nameof-loader,num_dependents_deps.dev:0 +github.com/KukovecRok/thumbnails-readme-action, github.com/Kukuksumusu/expybox, github.com/Kukunin/fast-sound,num_dependents_deps.dev:0 github.com/KukuruzaAndrey/project-lvl2-s257,num_dependents_deps.dev:0 @@ -105385,6 +107791,7 @@ github.com/KumarAbhirup/bulk-mail-cli,num_dependents_deps.dev:0 github.com/KumarAbhirup/iconic-input, github.com/KumarAbhirup/koji-leaderboard-api,num_dependents_deps.dev:0 github.com/KumarAbhirup/koji-react-leaderboard,num_dependents_deps.dev:0 +github.com/KumarAkshayThakur/Customaction, github.com/KumarManoj-S/remote-logger,num_dependents_deps.dev:0 github.com/KumarManoj-S/start-react,num_dependents_deps.dev:0 github.com/KumarS-Naveen/input-validation,num_dependents_deps.dev:0 @@ -105416,6 +107823,7 @@ github.com/Kunduin/observable-context,num_dependents_deps.dev:0 github.com/Kunduin/react-picture-annotation,num_dependents_deps.dev:0 github.com/Kunduin/react-uploader-skeleton,num_dependents_deps.dev:0 github.com/Kunena/Kunena-Forum,criticality_score:0.626280 +github.com/KungFuDonkey/Install-OpenCppCoverage, github.com/KungWaz/slackbot-compliments,num_dependents_deps.dev:0 github.com/Kungbib/frontend-guide,num_dependents_deps.dev:0 github.com/Kungbib/styles, @@ -105577,7 +107985,9 @@ github.com/Kushki/kushki-sns-gateway,num_dependents_deps.dev:0 github.com/Kushki/kushki-tslint,num_dependents_deps.dev:0 github.com/Kushki/pidcrypt,num_dependents_deps.dev:0 github.com/Kusig/gwt-storage,num_dependents_deps.dev:0 +github.com/KusionStack/kusion-actions, github.com/Kusken/Twitten,num_dependents_deps.dev:0 +github.com/Kusnaditjung/hugo-deploy-action, github.com/KusoRedsto/discord-ui, github.com/Kusold/habitrpg-api,num_dependents_deps.dev:0 github.com/Kusold/todoist-habitrpg,num_dependents_deps.dev:0 @@ -105631,6 +108041,7 @@ github.com/KwanMan/preact-tiny-atom,num_dependents_deps.dev:0 github.com/KwangYeol/dts, github.com/Kwanthum08/karym-ne-curso-full,num_dependents_deps.dev:0 github.com/Kwapi/responsive-bootstrap-toolkit,num_dependents_deps.dev:0 +github.com/Kwarf/hetzner-ephemeral-runner, github.com/Kweiza/react-native-kakao,num_dependents_deps.dev:0 github.com/KwiatQIM/Quantum-Tomography, github.com/Kwikswap/default-token-list,num_dependents_deps.dev:0 @@ -105673,6 +108084,12 @@ github.com/KyLeoHC/magic-emitter,num_dependents_deps.dev:0 github.com/KyLeoHC/thin-ui,num_dependents_deps.dev:0 github.com/KyLeoHC/uglify-js-plugin,num_dependents_deps.dev:6 github.com/KyLeoHC/vue-scroll-list,num_dependents_deps.dev:0 +github.com/KyMidd/ActionJenkinsCommitNotification, +github.com/KyMidd/ActionJiraCommitValidate, +github.com/KyMidd/GitHubActions-JenkinsCommitNotificationTrackJob, +github.com/KyMidd/azure-terraform-apply-action, +github.com/KyMidd/azure-terraform-plan-action, +github.com/KyMidd/azure-terraform-validate-action, github.com/Kyando2/BrawlMoon, github.com/Kyando2/PyBlox, github.com/Kyando2/candle, @@ -105701,6 +108118,7 @@ github.com/Kyle-Martin1/movers.css,num_dependents_deps.dev:0 github.com/Kyle-Shanks/Dot,num_dependents_deps.dev:0 github.com/Kyle-Ski/react-dynamic-input,num_dependents_deps.dev:0 github.com/Kyle-Verhoog/doxxie, +github.com/Kyle-Verhoog/upstream-issue-notifier, github.com/Kyle1668/AWS-Ec2-Volumes-Encryption-Check, github.com/Kyle1668/ec2-check,num_dependents_deps.dev:0 github.com/Kyle8973/wblapi.js,num_dependents_deps.dev:0 @@ -105753,6 +108171,7 @@ github.com/KyleAMathews/typefaces,"criticality_score:0.450980,num_dependents_dep github.com/KyleAMathews/typography.js,"criticality_score:0.468950,num_dependents_deps.dev:1476" github.com/KyleAMathews/vertical-rhythm,num_dependents_deps.dev:796 github.com/KyleARector/automatic, +github.com/KyleAure/junit-report-annotations-action, github.com/KyleBanks/cluster-utils,num_dependents_deps.dev:0 github.com/KyleBanks/lambda-uploader,num_dependents_deps.dev:0 github.com/KyleBanks/metroid,num_dependents_deps.dev:0 @@ -105764,6 +108183,7 @@ github.com/KyleEvers/xbeetransmission, github.com/KyleFairns/bureau-ium,num_dependents_deps.dev:0 github.com/KyleGobel/nm-screenshot,num_dependents_deps.dev:0 github.com/KyleJamesWalker/keyvalueformatter, +github.com/KyleJamesWalker/pr-changes-matrix-builder, github.com/KyleJamesWalker/renogy_rover, github.com/KyleJamesWalker/restraint-py, github.com/KyleJamesWalker/telebot, @@ -105780,6 +108200,7 @@ github.com/KyleMayes/clang-sys,num_dependents_deps.dev:3099 github.com/KyleMayes/crtq,num_dependents_deps.dev:0 github.com/KyleMayes/eslint-plugin-ordered-imports,num_dependents_deps.dev:8 github.com/KyleMayes/hazard,num_dependents_deps.dev:2 +github.com/KyleMayes/install-llvm-action, github.com/KyleMayes/microbench,num_dependents_deps.dev:0 github.com/KyleMayes/npnc,num_dependents_deps.dev:0 github.com/KyleMayes/queuecheck,num_dependents_deps.dev:0 @@ -105824,6 +108245,7 @@ github.com/KyleU/sangria-circe,num_dependents_deps.dev:6 github.com/KyleU/sangria-marshalling-api,num_dependents_deps.dev:10 github.com/KyleU/sangria-streaming-api,num_dependents_deps.dev:10 github.com/KyleU/scrimage,num_dependents_deps.dev:2 +github.com/KyleUltimate/upgrade-aur-package, github.com/KyleYoung1997/pyIsaricBasics, github.com/Kyledmw/canvas-to-image-node,num_dependents_deps.dev:0 github.com/Kyledmw/rpi-energenie,num_dependents_deps.dev:0 @@ -105858,6 +108280,7 @@ github.com/KyoriPowered/cereal,num_dependents_deps.dev:0 github.com/KyoriPowered/event,num_dependents_deps.dev:24 github.com/KyoriPowered/examination,num_dependents_deps.dev:172 github.com/KyoriPowered/feature,num_dependents_deps.dev:0 +github.com/KyoriPowered/get-gradle-versions, github.com/KyoriPowered/lunar,num_dependents_deps.dev:2 github.com/KyoriPowered/mammoth,num_dependents_deps.dev:0 github.com/KyoriPowered/membrane,num_dependents_deps.dev:0 @@ -105886,6 +108309,7 @@ github.com/Kyrax324/Vuetify-Image-Clipper, github.com/Kyria/EsiPy, github.com/KyrioServices/kyrio-services-sdk-node,num_dependents_deps.dev:0 github.com/Kyruus/django-legal, +github.com/Kyslik/close-pull-requests-based-on-label, github.com/Kyslik/column-sortable,criticality_score:0.369020 github.com/Kyson/AnalysisProjectDependencies, github.com/Kyson/AndroidGodEye,"criticality_score:0.299270,num_dependents_deps.dev:0" @@ -105971,6 +108395,7 @@ github.com/L1aoXingyu/torchlib, github.com/L1fescape/cornify, github.com/L1fescape/curtsy,num_dependents_deps.dev:0 github.com/L1fescape/yaft,num_dependents_deps.dev:0 +github.com/L1ghtDream/maven-publish, github.com/L1ghtM4n/CryptoContainer, github.com/L1lith/2SWeet,num_dependents_deps.dev:0 github.com/L1lith/Aquadux,num_dependents_deps.dev:0 @@ -106053,6 +108478,7 @@ github.com/LAB-MI/attestation-deplacement-derogatoire-q4-2020,criticality_score: github.com/LABELNET/single-spa-asset-webpack-plugin,num_dependents_deps.dev:0 github.com/LABSIX-IO/generate-apollo-react-components,num_dependents_deps.dev:0 github.com/LABSIX-IO/react-scripts,num_dependents_deps.dev:0 +github.com/LABSN/sound-ci-helpers, github.com/LABSS/PyPROTON-OC, github.com/LABVIS-UFPA/vistechlib,num_dependents_deps.dev:0 github.com/LAC-Tech/mangaone, @@ -106065,12 +108491,14 @@ github.com/LANIF-UI/react-category-jd,num_dependents_deps.dev:0 github.com/LANIF-UI/react-picker-address,num_dependents_deps.dev:0 github.com/LANL-Seismoacoustics/pisces, github.com/LANL-seismoacoustics/e1, +github.com/LANsible/copy-image-manifest-action, github.com/LAPIS-Lazurite/node-lazurite,num_dependents_deps.dev:0 github.com/LAPIS-Lazurite/node-red-contrib-lazurite,num_dependents_deps.dev:0 github.com/LAPKT-dev/LAPKT-Public, github.com/LAPKT-dev/val-wrapper, github.com/LARPY/misspeller, github.com/LASER-Yi/homebridge-mi-acPartner,num_dependents_deps.dev:0 +github.com/LASER-Yi/workflow-status, github.com/LAStools/LAStools,criticality_score:0.451490 github.com/LATOKEN/latoken-api-v2-python-client, github.com/LAW-Unimi/BUbiNG,num_dependents_deps.dev:6 @@ -106216,6 +108644,7 @@ github.com/LEAFERx/hexo-leancloud-counter,num_dependents_deps.dev:0 github.com/LEAFERx/hexo-leancloud-counter-security,num_dependents_deps.dev:0 github.com/LEARAX/pack_2048,num_dependents_deps.dev:0 github.com/LEB-EPFL/DEFCoN-ImageJ,num_dependents_deps.dev:0 +github.com/LEDBrain/branch-protection-action, github.com/LEE-WAN/LogicFlow,num_dependents_deps.dev:0 github.com/LEEIilEEI/koa2-arttemplate,num_dependents_deps.dev:0 github.com/LEFapps/forms,num_dependents_deps.dev:0 @@ -106250,6 +108679,7 @@ github.com/LEv145/aiontai, github.com/LEv145/spore.py, github.com/LFBVR/camera.js,num_dependents_deps.dev:0 github.com/LFDM/chai-lint,num_dependents_deps.dev:0 +github.com/LFDM/firestore-backup-gh-action, github.com/LFDM/ftemp,num_dependents_deps.dev:0 github.com/LFDM/redux-state-keys,num_dependents_deps.dev:0 github.com/LFL398619091/buddha398619091,num_dependents_deps.dev:0 @@ -106284,6 +108714,7 @@ github.com/LGSInnovations/node-dbus-network-manager,num_dependents_deps.dev:0 github.com/LGSInnovations/sigfile,num_dependents_deps.dev:4 github.com/LGSInnovations/sigplot,num_dependents_deps.dev:0 github.com/LGgameLAB/pyLdtk, +github.com/LGinC/portainer-stack-deploy, github.com/LGline/relationTable,num_dependents_deps.dev:0 github.com/LHCfitNikhef/EELSfitter, github.com/LHKT/slack-logger,num_dependents_deps.dev:0 @@ -106299,6 +108730,7 @@ github.com/LIAFA/violat-fixer,num_dependents_deps.dev:0 github.com/LIBE-NUTES/query-strings-parser,num_dependents_deps.dev:0 github.com/LIBREary/libre-ary, github.com/LIDT-Lab/pySEED, +github.com/LIFX/buildlight-action, github.com/LIJI32/SameBoy,criticality_score:0.510950 github.com/LIJUN-XU/generator-vv,num_dependents_deps.dev:0 github.com/LIJUN-XU/vv-cli,num_dependents_deps.dev:0 @@ -106552,6 +108984,8 @@ github.com/LPGhatguy/rust-lua51-sys,num_dependents_deps.dev:0 github.com/LPGhatguy/snax,num_dependents_deps.dev:5 github.com/LPIX-11/SamaneCLI,num_dependents_deps.dev:0 github.com/LPJpei/react-google-recaptcha-v3,num_dependents_deps.dev:0 +github.com/LPMendoza/jest-badges-aws, +github.com/LPMendoza/open-issue, github.com/LPVua/curry,num_dependents_deps.dev:0 github.com/LPegasus/dts-from-thrift,num_dependents_deps.dev:0 github.com/LPegasus/react-dependence-analyze,num_dependents_deps.dev:0 @@ -106607,6 +109041,7 @@ github.com/LRagji/redis-streams-broker,num_dependents_deps.dev:0 github.com/LRydin/JumpDiff, github.com/LRydin/KramersMoyal, github.com/LRydin/MFDFA, +github.com/LS-ELLO/DXLabelAutoPR, github.com/LS1231/vue-preview,num_dependents_deps.dev:0 github.com/LS1231/vue-security-code,num_dependents_deps.dev:0 github.com/LS1231/vue-summernote,num_dependents_deps.dev:0 @@ -106633,6 +109068,8 @@ github.com/LSSTDESC/sacc, github.com/LSSTDESC/snmachine, github.com/LSSTDESC/tjpcov, github.com/LSVH/convert-to-css, +github.com/LSVH/gha-releases-to-changelog, +github.com/LSVH/gha-replace-placeholders, github.com/LSVH/inject-css-string,num_dependents_deps.dev:0 github.com/LSVH/numbering-patterns,num_dependents_deps.dev:0 github.com/LSVH/react-state-builder,num_dependents_deps.dev:0 @@ -106687,6 +109124,7 @@ github.com/LUXEYS/paper_cup, github.com/LUXROBO/modi-firmware-updater, github.com/LUXROBO/pymodi, github.com/LUXROBO/virtual-modi, +github.com/LV-APT/lvCICD, github.com/LVBK/255kb-meteor-status-client-side,num_dependents_deps.dev:0 github.com/LVBK/angular-meteor,num_dependents_deps.dev:0 github.com/LVBK/collection-client-side,num_dependents_deps.dev:0 @@ -106798,6 +109236,8 @@ github.com/LaBanHSPO/react-commons,num_dependents_deps.dev:0 github.com/LaBlazer/searchyt, github.com/LaGauffre/bayes-splicing, github.com/LaGrangeMtl/generator-freestone,num_dependents_deps.dev:0 +github.com/LaGrowthMachine/deployment-builder-action-public, +github.com/LaGrowthMachine/deployment-status-updater-public, github.com/LaGvidilo/gplearn, github.com/LaKing/ep_codepad,num_dependents_deps.dev:0 github.com/LaKing/ep_hash_auth,num_dependents_deps.dev:0 @@ -106813,6 +109253,8 @@ github.com/LaNsHoR/html-css-builder,num_dependents_deps.dev:0 github.com/LaNsHoR/html-tabs,num_dependents_deps.dev:0 github.com/LaNsHoR/json-editor,num_dependents_deps.dev:0 github.com/LaPetiteSouris/liftbridge, +github.com/LaPluses/unity-builder, +github.com/LaPluses/uptoc, github.com/LaQuay/TDTChannels,criticality_score:0.409090 github.com/LaRiffle/shaloop, github.com/LaRocca89/wto_data_puller, @@ -106895,6 +109337,7 @@ github.com/LabZDjee/agc-util,num_dependents_deps.dev:0 github.com/LabZDjee/obj-list-to-csv,num_dependents_deps.dev:0 github.com/LabZDjee/object-browse,num_dependents_deps.dev:0 github.com/LabZDjee/proc-template-literal,num_dependents_deps.dev:0 +github.com/Label305/AutoRebase, github.com/Labelbox/LabelSpark, github.com/LabeliaLabs/distributed-learning-contributivity, github.com/Labelings/pyLabeling, @@ -106951,6 +109394,8 @@ github.com/LachlanArthur/scroll-snap-arrows,num_dependents_deps.dev:0 github.com/LachlanDev/easy-number-formatter, github.com/LachlanMarnham/begin, github.com/LachlanMcKee/timber-junit-rule,num_dependents_deps.dev:0 +github.com/LachlanNewman/annalise-release-candidate-dispatch, +github.com/LachlanNewman/scroll-for-word-action, github.com/LachlanWalls/plob,num_dependents_deps.dev:0 github.com/Lacodda/lyrn,num_dependents_deps.dev:0 github.com/Lacrit/locman, @@ -106987,6 +109432,7 @@ github.com/Laduha/starwars-names,num_dependents_deps.dev:0 github.com/Ladus/javascript-sql-like-operator,num_dependents_deps.dev:0 github.com/Ladvace/easy-react-carousel, github.com/Lady-Luck77/lodown,num_dependents_deps.dev:0 +github.com/LadyCailin/azure-table-storage-upload, github.com/LadyYang/nestjs-pay,num_dependents_deps.dev:0 github.com/LadyYang/wx-gzh,num_dependents_deps.dev:0 github.com/Ladypino/SCL014-md-links, @@ -107078,6 +109524,7 @@ github.com/LaksCastro/ethereal-color.js,num_dependents_deps.dev:0 github.com/LaksCastro/menu-hamburguer,num_dependents_deps.dev:0 github.com/LaksCastro/react-menu-hamburger,num_dependents_deps.dev:0 github.com/Lakshamana/mxgraph-lakshamana,num_dependents_deps.dev:0 +github.com/LakshitF/pylint3-action, github.com/Lakshitnagar/nodeanz,num_dependents_deps.dev:0 github.com/Lakshmisowmya/git_apis_cli, github.com/Lakuna/Umbra,num_dependents_deps.dev:0 @@ -107104,6 +109551,7 @@ github.com/LamaAni/AirflowDBLogger, github.com/LamaAni/KubernetesJobOperator, github.com/LamaAni/MatchPattern, github.com/LamaAni/TicTocTimer, +github.com/LamaAni/parse-commit-args-action, github.com/LamaAni/stratis, github.com/LamaAni/zcommon.py, github.com/LamaAni/zlib-bash-config,num_dependents_deps.dev:0 @@ -107120,6 +109568,7 @@ github.com/LamarrD/keLP, github.com/Lamasaurus/lpdgenerator,num_dependents_deps.dev:0 github.com/Lamasaurus/sfvalidator,num_dependents_deps.dev:0 github.com/LambAgency/icon-transformer,num_dependents_deps.dev:0 +github.com/LambArchie/pulumi-helm-updater, github.com/LambChen/gulp-format,num_dependents_deps.dev:0 github.com/Lambda-3/PythonIndraClient, github.com/Lambda-Curry/lc-component-library,num_dependents_deps.dev:0 @@ -107135,6 +109584,7 @@ github.com/Lambda3/twitterraffle,num_dependents_deps.dev:0 github.com/LambdaCraft/LambdaMap,num_dependents_deps.dev:0 github.com/LambdaExpression/RequestBodyParam,num_dependents_deps.dev:0 github.com/LambdaHack/LambdaHack,criticality_score:0.433780 +github.com/LambdaTest/LambdaTest-tunnel-action, github.com/LambdaTest/jest-environment-lambdatest,num_dependents_deps.dev:0 github.com/LambdaTest/lambdatest-cypress-cli,num_dependents_deps.dev:0 github.com/LambdaTest/lambdatest-maven-tunnel,num_dependents_deps.dev:0 @@ -107144,6 +109594,7 @@ github.com/LambdaTest/testcafe-browser-provider-lambdatest,num_dependents_deps.d github.com/LambdaTest/wdio-lambdatest-service,num_dependents_deps.dev:0 github.com/Lambdacube/bnd-dsap-plugin,num_dependents_deps.dev:0 github.com/Lambdah/set-clock-interval,num_dependents_deps.dev:0 +github.com/Lambdaspire/action-substitute-secrets-in-file, github.com/LamboCreeper/Stratter,num_dependents_deps.dev:0 github.com/LamboCreeper/json-linter,num_dependents_deps.dev:0 github.com/Lamborshea/fork-me-on-github.css,num_dependents_deps.dev:0 @@ -107170,6 +109621,7 @@ github.com/LampV/Reinforcement-Learning, github.com/Lampese/virtual-hack,num_dependents_deps.dev:0 github.com/Lamtin/fis-optimizer-ng-annotate,num_dependents_deps.dev:0 github.com/Lamtin/fis-postprocessor-include-file,num_dependents_deps.dev:0 +github.com/Lan-Phan/commit-author-email-action, github.com/LanDeveloper/AnueCrawler, github.com/LanFly/Device,num_dependents_deps.dev:0 github.com/LanFly/gitbook-plugin-logo,num_dependents_deps.dev:0 @@ -107189,7 +109641,10 @@ github.com/LanceH/route66,num_dependents_deps.dev:0 github.com/LanceLou/eslint-config-yxadmin,num_dependents_deps.dev:0 github.com/LanceLou/gulp-forward,num_dependents_deps.dev:0 github.com/LanceLovereading/iojson-project, +github.com/LanceMcCarthy/Action-AzureBlobUpload, +github.com/LanceMcCarthy/Action-MsixBundler, github.com/LanceMcCarthy/PartnerCenterBroker,num_dependents_deps.dev:0 +github.com/LanceMcCarthy/akeyless-aad-secret, github.com/LanceMoe/dj-crontab, github.com/LancePutnam/Gamma,criticality_score:0.298200 github.com/LanceTurri/date-convert, @@ -107294,6 +109749,8 @@ github.com/Langion/introspector,num_dependents_deps.dev:0 github.com/Langion/langion,num_dependents_deps.dev:18 github.com/Langion/prism,num_dependents_deps.dev:0 github.com/Langsdorf/disclysia,num_dependents_deps.dev:0 +github.com/Langsdorf/easy-versioning, +github.com/Langsdorf/env-replace, github.com/Langstra/MFileChooser,num_dependents_deps.dev:0 github.com/LanguageMachines/CLIN28_ST_spelling_correction, github.com/Langur/pimcp3008, @@ -107318,6 +109775,7 @@ github.com/Lanseuo/mediathek, github.com/Lanseuo/onesignal-notifications, github.com/Lanseuo/uberspace-templates, github.com/Lanson2232/statuspage-ls,num_dependents_deps.dev:0 +github.com/Lansoweb/automatic-releases-version-file, github.com/Lansoweb/koa-mongo-crud,num_dependents_deps.dev:0 github.com/Lansoweb/koa-mongoose-crud,num_dependents_deps.dev:0 github.com/Lansoweb/koa-router-version,num_dependents_deps.dev:0 @@ -107415,7 +109873,10 @@ github.com/Laravelium/laravel-feed,criticality_score:0.301610 github.com/Laravelium/laravel-sitemap,criticality_score:0.318900 github.com/Laravelka/webrtc-peer-client,num_dependents_deps.dev:0 github.com/Laravelka/webrtc-peer-server,num_dependents_deps.dev:0 +github.com/LarchLiu/actions-save-files, github.com/LarchLiu/baidu-push-nodejs,num_dependents_deps.dev:0 +github.com/LarchLiu/cancel_previous_runs, +github.com/LarchLiu/encode-secret-action, github.com/LarchLiu/playcore-hls,num_dependents_deps.dev:0 github.com/LarchLiu/vue3-video-player,num_dependents_deps.dev:4 github.com/Larchy/BasicClass,num_dependents_deps.dev:0 @@ -107473,6 +109934,7 @@ github.com/LarsWallenstein/Geotrans_cluster, github.com/LarsWerkman/LicenseView,num_dependents_deps.dev:0 github.com/LarsWerkman/Lobsterpicker,num_dependents_deps.dev:0 github.com/LarsenDX/homebridge-mhacwifi1-v2,num_dependents_deps.dev:0 +github.com/LarsenLP/actions-find-and-replace-string, github.com/Larsg7/monaco-element,num_dependents_deps.dev:0 github.com/Larsv94/react-ts-plop,num_dependents_deps.dev:0 github.com/LartTyler/blueprintjs-components,num_dependents_deps.dev:0 @@ -107490,6 +109952,8 @@ github.com/LasCC/Hack-Tools,criticality_score:0.319830 github.com/LasMD/generator-yuna,num_dependents_deps.dev:0 github.com/LasMD/gulp-before,num_dependents_deps.dev:0 github.com/Lasagne/Lasagne,criticality_score:0.377370 +github.com/LasaleFamine/action-ff-merge, +github.com/LasaleFamine/action-release, github.com/LasaleFamine/casper-base,num_dependents_deps.dev:0 github.com/LasaleFamine/create-app,num_dependents_deps.dev:0 github.com/LasaleFamine/eslintc,num_dependents_deps.dev:6 @@ -107573,6 +110037,7 @@ github.com/LastStranger/funky-library,num_dependents_deps.dev:0 github.com/LastStranger/timestamp-transform,num_dependents_deps.dev:0 github.com/Lastline-Inc/eslint-config-lastline-react,num_dependents_deps.dev:0 github.com/Lastline-Inc/process-snapshot-toolkit, +github.com/LasyIsLazy/github-upload-action, github.com/LasyIsLazy/huaban-download,num_dependents_deps.dev:0 github.com/Laszlo-Lazuer/RNComponentLibraryTemplate,num_dependents_deps.dev:0 github.com/Laszlo-Lazuer/react-publish-test,num_dependents_deps.dev:0 @@ -107631,6 +110096,7 @@ github.com/LauWisdom/dynamic-bundle-loader,num_dependents_deps.dev:0 github.com/LaubetBeltran/CDMX010-md-links,num_dependents_deps.dev:0 github.com/Laucsen/node-migrate-lite,num_dependents_deps.dev:0 github.com/Laucsen/react-dynamic-components,num_dependents_deps.dev:0 +github.com/LauferTech/github-action-npm-release, github.com/Laufire/aws-sms-helper,num_dependents_deps.dev:0 github.com/Laufire/ec, github.com/Laufire/expiring-challenge,num_dependents_deps.dev:0 @@ -107640,6 +110106,7 @@ github.com/Laufire/kapi,num_dependents_deps.dev:0 github.com/Laufire/one,num_dependents_deps.dev:2 github.com/Laufire/oneWebServer,num_dependents_deps.dev:0 github.com/Laufire/resist,num_dependents_deps.dev:0 +github.com/LaughHQ/test-action, github.com/LaughingSun/buffer-index-of-items.js,num_dependents_deps.dev:0 github.com/LaughingVzr/d3-v4-contextmenu,num_dependents_deps.dev:0 github.com/LaugnaHealth/graphql-firehose-transformer,num_dependents_deps.dev:0 @@ -107686,6 +110153,7 @@ github.com/LaurenceMolloy/colab_gitlab_setup, github.com/LaurenceRawlings/savify, github.com/LaurenceWarne/curses-questions, github.com/LaurenceWarne/pdf-question-spacer, +github.com/Laurenfrost/mention-to-slack, github.com/Laurensvdmaas/tween-it,num_dependents_deps.dev:0 github.com/Laurent-Tupin/pynut, github.com/Laurent147/cypress-qatouch-api,num_dependents_deps.dev:0 @@ -107721,6 +110189,11 @@ github.com/LautaroParada/quickfs, github.com/Lautitia/Historian,num_dependents_deps.dev:0 github.com/Lautitia/include,num_dependents_deps.dev:0 github.com/Lautitia/node-include,num_dependents_deps.dev:0 +github.com/Lauweal/docker-env-action, +github.com/Lauweal/image-run-action, +github.com/Lauweal/setup-serverless, +github.com/Lauweal/sftp-deploy-action, +github.com/Lauweal/tencent-cos-action, github.com/Lauwisme/save-tabletop-json-webpack-plugin,num_dependents_deps.dev:0 github.com/LavaGang/MelonLoader,criticality_score:0.305650 github.com/LavaLab/isonasacs, @@ -107845,6 +110318,7 @@ github.com/Layzie/generator-beez-submodule,num_dependents_deps.dev:0 github.com/Layzie/md2conf-watcher,num_dependents_deps.dev:0 github.com/Lazar5555/censortext,num_dependents_deps.dev:0 github.com/LazarSoft/jsqrcode,num_dependents_deps.dev:0 +github.com/Lazaro-procogia-mdrc/MDRC-action-pull-request-another-repo, github.com/LazarusID/kanit, github.com/LazeBear/react-swirl,num_dependents_deps.dev:0 github.com/Lazer-Database/Lazer-Database,criticality_score:0.310070 @@ -107869,6 +110343,7 @@ github.com/LazyLea/x-fastscreenshot,num_dependents_deps.dev:0 github.com/LazyNeko1/ApertureCore, github.com/LazyNeko1/nbapi, github.com/LazyNeo/vue-oss-uploader,num_dependents_deps.dev:0 +github.com/LazyPanda07/extract-current-branch, github.com/LazySkills/lazyui-miniprogram, github.com/LazySkills/miniprogram-tabBar,num_dependents_deps.dev:0 github.com/LazyTWX/last-wrapper,num_dependents_deps.dev:0 @@ -107984,6 +110459,8 @@ github.com/LeFnord/rb_tags,num_dependents_deps.dev:0 github.com/LeFnord/rstt,num_dependents_deps.dev:0 github.com/LeFrank/pip_yoohoo, github.com/LeGenDXXX/SISSOkit, +github.com/LeGitHubDeTai/github-to-discord, +github.com/LeGitHubDeTai/mp4TOgif, github.com/LeGmask/Laravel-Echo-Server, github.com/LeGmask/numWorkshop, github.com/LeJeanbono/data-generator,num_dependents_deps.dev:0 @@ -108209,6 +110686,7 @@ github.com/LeandroBanaszeski/ckeditor5-line-height,num_dependents_deps.dev:0 github.com/LeandroBarone/python-ascii_magic, github.com/LeandroCesarr/simple-tabs-js, github.com/LeandroCesarr/simpleTabsJS,num_dependents_deps.dev:0 +github.com/LeandroLS/linksnitch, github.com/LeandroMG/readability-nodejs,num_dependents_deps.dev:0 github.com/LeandroSQ/apk-classifier,num_dependents_deps.dev:0 github.com/LeandroSe/vue-bs-toast,num_dependents_deps.dev:0 @@ -108438,6 +110916,7 @@ github.com/LeeJianQ/vue-next-components-cli,num_dependents_deps.dev:0 github.com/LeeJianQ/weilMt,num_dependents_deps.dev:0 github.com/LeeJim/ilazy,num_dependents_deps.dev:0 github.com/LeeJim/jui,num_dependents_deps.dev:0 +github.com/LeeJim/setup-miniprogram, github.com/LeeJim/wxml-minifier,num_dependents_deps.dev:150 github.com/LeeJim/wxml-parser,num_dependents_deps.dev:154 github.com/LeeJim/xColor,num_dependents_deps.dev:0 @@ -108463,6 +110942,8 @@ github.com/LeeSamFong/folee-vue-hooks,num_dependents_deps.dev:0 github.com/LeeSongA/hangul-virtual-keyboard,num_dependents_deps.dev:0 github.com/LeeSongA/react-hangul-virtual-keyboard,num_dependents_deps.dev:0 github.com/LeeSwagger/webpack-starter,num_dependents_deps.dev:0 +github.com/LeeTann/github-actions-open-issue, +github.com/LeeTann/hello-world-composite-action, github.com/LeeWannacott/TABLE-SORT-JS, github.com/LeeWannacott/svg-style,num_dependents_deps.dev:0 github.com/LeeWannacott/svg-style-js,num_dependents_deps.dev:0 @@ -108586,6 +111067,8 @@ github.com/LegNeato/asciicast-rs,num_dependents_deps.dev:0 github.com/LegNeato/aws-lambda-events,num_dependents_deps.dev:2 github.com/LegNeato/cups-sys,num_dependents_deps.dev:0 github.com/Legacy-Edge/Windows-PWA-WinRT-Definitions,num_dependents_deps.dev:0 +github.com/Legal-Hero/jira-issuer, +github.com/Legal-and-General/dependabot-batcher, github.com/LegalRobot/legalrobot,num_dependents_deps.dev:0 github.com/LegalRobot/legalrobot-cli,num_dependents_deps.dev:0 github.com/LegalShield/passport-legalshield,num_dependents_deps.dev:0 @@ -108619,8 +111102,13 @@ github.com/Legify/opengraph, github.com/Legify/vac,num_dependents_deps.dev:0 github.com/Legilibre/legi.py, github.com/Legion-God/dev-radio, +github.com/Legion2/arduino-builder-action, +github.com/Legion2/download-release-action, +github.com/Legion2/swagger-ui-action, github.com/Legisign/Praat-textgrids, github.com/Legisign/bibparse, +github.com/Legit-Labs/action-download-artifact, +github.com/Legit-Labs/legitify, github.com/LegitBaboulinet/blazeit.js, github.com/Legitblock/legitblock,num_dependents_deps.dev:0 github.com/Legitcode/cards,num_dependents_deps.dev:0 @@ -108640,6 +111128,7 @@ github.com/Legohuman/excelmapper,num_dependents_deps.dev:0 github.com/Legomegger/backend-project-lvl2,num_dependents_deps.dev:0 github.com/Legomegger/backend-project-lvl3,num_dependents_deps.dev:0 github.com/Legomegger/project-lvl1-s192,num_dependents_deps.dev:0 +github.com/Legorooj/skip-ci, github.com/Legrandin/pycryptodome,criticality_score:0.588920 github.com/LegumeFederation/lorax, github.com/LehaIvanov/project-lvl1-s17,num_dependents_deps.dev:0 @@ -108649,6 +111138,7 @@ github.com/LehaoLin/sentiment-zh_cn_web,num_dependents_deps.dev:0 github.com/Lehks/cascading-config,num_dependents_deps.dev:0 github.com/Lehks/file-configurator,num_dependents_deps.dev:0 github.com/Lehoczky/eslint-config-angular,num_dependents_deps.dev:0 +github.com/Lehoczky/render-nunjucks-template-action, github.com/Lehona/Parsiphae,num_dependents_deps.dev:0 github.com/Lehren/iot-js-sdk,num_dependents_deps.dev:0 github.com/Lehsuby/chatbotEORA, @@ -108660,6 +111150,9 @@ github.com/LeiZeng/aem-sync,num_dependents_deps.dev:0 github.com/LeiZeng/gulp-config,num_dependents_deps.dev:0 github.com/LeiZeng/gulp-config2, github.com/LeiZhang0724/dateTimeProcess,num_dependents_deps.dev:0 +github.com/LeiaInc/devops-check-quantity-deployments, +github.com/LeiaInc/devops-delete-old-aws-ecr-images, +github.com/LeiaInc/devops-secrets-actions, github.com/Leibniz-HBI/dabapush, github.com/Leibniz-HBI/twacapic, github.com/Leibniz-HBI/twock, @@ -108739,6 +111232,8 @@ github.com/LekoArts/gatsby-themes,"criticality_score:0.591490,num_dependents_dep github.com/LekoArts/thanks-contributors, github.com/LekongKong/ES-Tween,num_dependents_deps.dev:0 github.com/Lekxel/color-to-rgba,num_dependents_deps.dev:0 +github.com/LekyaS/onetest-ui-action-main-fortesting, +github.com/LekyaS/onetest-web-action-main-forTesting, github.com/LelandCer/power_of_friendship,num_dependents_deps.dev:0 github.com/LelesBox/radar-core,num_dependents_deps.dev:0 github.com/LelesBox/rhythm-cli,num_dependents_deps.dev:0 @@ -108807,9 +111302,11 @@ github.com/LemonFramework/python-aop, github.com/LemonHX/libseccomp-rs,num_dependents_deps.dev:0 github.com/LemonLDAPNG/node-fastcgi-authz-client,num_dependents_deps.dev:0 github.com/LemonLDAPNG/node-lemonldap-ng-handler,num_dependents_deps.dev:44 +github.com/LemonNekoGH/fetch-gh-release-asset, github.com/LemonNekoGH/lemonneko-currency-converter, github.com/LemonNekoGH/mdui-ext,num_dependents_deps.dev:0 github.com/LemonNekoGH/neko-builder, +github.com/LemonNekoGH/update-homebrew-formula-action, github.com/LemonNekoGH/vuetify-message,num_dependents_deps.dev:0 github.com/LemonPi/Context2DTracked,num_dependents_deps.dev:2 github.com/LemonPi/bbst,num_dependents_deps.dev:0 @@ -109033,6 +111530,7 @@ github.com/LeoTindall/nrfind,num_dependents_deps.dev:3 github.com/LeoVS09/Captain-redux,num_dependents_deps.dev:0 github.com/LeoVS09/module-hot-downloader,num_dependents_deps.dev:0 github.com/LeoVS09/muzero-general, +github.com/LeoVS09/semver-release-action, github.com/LeoVen/spaceship-sprite,num_dependents_deps.dev:0 github.com/LeoWangJ/node-todo,num_dependents_deps.dev:0 github.com/LeoWangJ/translation,num_dependents_deps.dev:0 @@ -109045,9 +111543,11 @@ github.com/Leocardoso94/Free-Courses,criticality_score:0.332690 github.com/Leocardoso94/animated-number-react,num_dependents_deps.dev:0 github.com/Leocardoso94/animated-number-vue,num_dependents_deps.dev:4 github.com/Leocardoso94/beauty-stars,num_dependents_deps.dev:0 +github.com/Leocardoso94/is-my-site-up, github.com/Leocardoso94/is-online-component,num_dependents_deps.dev:0 github.com/Leocardoso94/react-date-range,num_dependents_deps.dev:0 github.com/Leoche/WNGAPI-javascript-wrapper,num_dependents_deps.dev:0 +github.com/Leoche/ftp-delete-action-with-port, github.com/Leodau/bitandbang, github.com/Leolik/generator-gulp-foundation-emails,num_dependents_deps.dev:0 github.com/Leomaradan/git-autosave,num_dependents_deps.dev:0 @@ -109202,7 +111702,10 @@ github.com/Lerbron/websocket-class, github.com/Lereena/pascalabcnet-lsp,num_dependents_deps.dev:0 github.com/Lereena/tree-sitter-pascalabcnet,num_dependents_deps.dev:0 github.com/Leref/dbd.js,num_dependents_deps.dev:0 +github.com/Lerentis/soci-installer, github.com/Lerer/veracode-cli,num_dependents_deps.dev:0 +github.com/Lerer/veracode-sandboxes-helper, +github.com/Lerer/veracode-sca, github.com/Lergin/hive-api,num_dependents_deps.dev:0 github.com/Lergin/hive-report-cli,num_dependents_deps.dev:0 github.com/Lergin/lergins-bot-framework,num_dependents_deps.dev:0 @@ -109219,6 +111722,7 @@ github.com/LesDomen/react-open-weather,num_dependents_deps.dev:0 github.com/LesEchos/apicache,num_dependents_deps.dev:0 github.com/LesEchos/image-size-loader,num_dependents_deps.dev:0 github.com/LesEchos/styled-transition-group,num_dependents_deps.dev:0 +github.com/LesFabricants/merge-bot, github.com/LesNovell/helix-parent,num_dependents_deps.dev:5 github.com/LescanoMicaela/node.jsPACKAGE,num_dependents_deps.dev:0 github.com/Lesha-spr/String-to-object,num_dependents_deps.dev:0 @@ -109242,6 +111746,7 @@ github.com/LeslieMay/pro-tool,num_dependents_deps.dev:0 github.com/LeslieYQ/gulp-css-sprite,num_dependents_deps.dev:0 github.com/LeslieYQ/vue-pagination,num_dependents_deps.dev:0 github.com/LeslieZhu/OrgNote, +github.com/Lesmiscore/musl-cross-compilers, github.com/Lesnock/simple-store,num_dependents_deps.dev:0 github.com/LesnyRumcajs/wakey,num_dependents_deps.dev:0 github.com/LessRPC/lessrpc_stub_py2x, @@ -109333,6 +111838,7 @@ github.com/LeuisKen/eocky,num_dependents_deps.dev:0 github.com/LeuisKen/md2json2html,num_dependents_deps.dev:0 github.com/LeuisKen/mix-loader,num_dependents_deps.dev:0 github.com/LeuisKen/san-awesome,num_dependents_deps.dev:0 +github.com/Leukocyte-Lab/build-n-push, github.com/LeulAria/FireQuery,num_dependents_deps.dev:0 github.com/LeulAria/react-rolebased-router, github.com/LeunensMichiel/express-influx-multilogger,num_dependents_deps.dev:0 @@ -109423,6 +111929,8 @@ github.com/LeversonCarlos/yajsocket,num_dependents_deps.dev:0 github.com/Levertion/mcfunction,num_dependents_deps.dev:0 github.com/Levgenij/vue-modal-js,num_dependents_deps.dev:0 github.com/Levhav/redis-sql,num_dependents_deps.dev:0 +github.com/Levi-Lesches/Flutter-MSIX, +github.com/Levi-Lesches/blocking-issues, github.com/LeviBorodenko/dgcnn, github.com/LeviBorodenko/dortmund2array, github.com/LeviBorodenko/hybrid-face, @@ -109537,6 +112045,11 @@ github.com/Lexcelon/batlab-software-python, github.com/Lexfoxer/Leaflet.WMTS,num_dependents_deps.dev:2 github.com/Lexfoxer/last-git-hash,num_dependents_deps.dev:0 github.com/Lexicality/secret-token, +github.com/LexisNexis-GHA-Public/action-download-artifact, +github.com/LexisNexis-GHA-Public/checkmarx-scan-service, +github.com/LexisNexis-GHA-Public/checkout, +github.com/LexisNexis-Public-GHA/SBS.Enablement.checkmarx-scan-service, +github.com/LexisNexis-Public-GHA/sbs-action-download-artifact, github.com/LexisR/extract-links-from-md,num_dependents_deps.dev:0 github.com/LexitGroup/cordova-plugin-lexit-btprint, github.com/LexmarkWeb/eslint-config-lexmarkweb,num_dependents_deps.dev:0 @@ -109606,6 +112119,7 @@ github.com/LiFuHai1106/vue-tagtree,num_dependents_deps.dev:0 github.com/LiGHT0908/towords,num_dependents_deps.dev:0 github.com/LiGaoFenglove/vue-flaglist-lgf,num_dependents_deps.dev:0 github.com/LiGaoFenglove/vueareaselect-lgf,num_dependents_deps.dev:0 +github.com/LiHRaM/tectonic-nix, github.com/LiHongyan11/carousel-vue, github.com/LiHongyan11/vue-infinite-tree,num_dependents_deps.dev:0 github.com/LiHongyao/lg-big,num_dependents_deps.dev:0 @@ -109636,6 +112150,7 @@ github.com/LiLixikun/tuitui-ui,num_dependents_deps.dev:0 github.com/LiLixikun/xkweb-ui,num_dependents_deps.dev:0 github.com/LiMiu331/vanilla,num_dependents_deps.dev:0 github.com/LiNKS6B/cli-step-runner,num_dependents_deps.dev:0 +github.com/LiNoriat/composite-action-test, github.com/LiNuXaDDiKt/python_nested_dictionaries, github.com/LiPinghai/VPost, github.com/LiPinghai/avalon-loader,num_dependents_deps.dev:0 @@ -109694,6 +112209,7 @@ github.com/Liam-Gardner/Create-Branch-CLI, github.com/Liam-Williams/generator-node-express,num_dependents_deps.dev:0 github.com/Liam-Williams/generator-node-express-mongo, github.com/Liam-Williams/npm-check-interactive, +github.com/LiamAjones/resharper-codecleanup, github.com/LiamBindle/MQTT-C,criticality_score:0.414550 github.com/LiamBindle/PyVESC, github.com/LiamBlake/hcvote, @@ -109781,6 +112297,7 @@ github.com/Liaoct/vuex-sugar, github.com/Liaojinghui/neon-js,num_dependents_deps.dev:0 github.com/Liaozhenting/react-native-wechat-work, github.com/Liar0320/lich-form-designer, +github.com/Liar0320/setup-ossutil, github.com/LiavAvnaim/es6-data-structures,num_dependents_deps.dev:0 github.com/Lib-Core/js-Colors,num_dependents_deps.dev:0 github.com/LibCrowds/libcrowds-viewer,num_dependents_deps.dev:0 @@ -109838,6 +112355,7 @@ github.com/LibrERP/Pylibs, github.com/Libra-Lei/yl-cli,num_dependents_deps.dev:0 github.com/Libra-Lei/yl-form-design,num_dependents_deps.dev:0 github.com/Libra-Lei/yl-ui,num_dependents_deps.dev:0 +github.com/Libra-foundation/Pull-Request-Comments, github.com/Libra11/vuepress-theme-libra,num_dependents_deps.dev:0 github.com/Libranet/libranet_logging, github.com/LibrariesHacked/catalogues-library,num_dependents_deps.dev:0 @@ -109852,6 +112370,7 @@ github.com/LibreDWG/libredwg,criticality_score:0.519510 github.com/LibreELEC/LibreELEC.tv,criticality_score:0.695000 github.com/LibreHardwareMonitor/LibreHardwareMonitor,criticality_score:0.460880 github.com/LibreLabUCM/teleg-api-bot, +github.com/LibreLingo/course-ci, github.com/LibreOffice/core,criticality_score:0.685660 github.com/LibreOffice/impress_remote, github.com/LibreOffice/online,criticality_score:0.544430 @@ -109903,6 +112422,7 @@ github.com/Lie8466/better-js,num_dependents_deps.dev:0 github.com/Liebeck/IWNLP-py, github.com/Liebeck/spacy-iwnlp, github.com/Liebeck/spacy-sentiws, +github.com/LieberLieber/setup-LemonTree.Automation, github.com/LienJS/Lien, github.com/LienJack/alice-cli,num_dependents_deps.dev:0 github.com/LienJack/alice-ui,num_dependents_deps.dev:0 @@ -109949,6 +112469,8 @@ github.com/Liftitapp/redux-metrics, github.com/Liftitapp/typeorm-model-generator-liftit, github.com/Liftric/Auth,num_dependents_deps.dev:0 github.com/Ligengxin96/SQL-in-MongoDB,num_dependents_deps.dev:0 +github.com/Ligengxin96/UpdateReadmeAction-Private, +github.com/Ligengxin96/github-update-readme, github.com/LighghtEeloo/meme-lang, github.com/Light-City/CPlusPlusThings,criticality_score:0.315830 github.com/Light-Keeper/react-singleton-hook,num_dependents_deps.dev:4 @@ -110097,6 +112619,8 @@ github.com/Lijiang0703/Monaco-JSON-Editor,num_dependents_deps.dev:0 github.com/Lijiang0703/markdown-it-head-attr,num_dependents_deps.dev:0 github.com/Lijie0981/wx-formdata,num_dependents_deps.dev:0 github.com/Lijunpengeye/my-swiper,num_dependents_deps.dev:0 +github.com/LikDan/ActionDockerBuildImageToSSH, +github.com/LikDan/SyncRepositoriesAction, github.com/LikaloLLC/tourguide.js,num_dependents_deps.dev:0 github.com/Like-Falling-Leaves/mongodb-discuss,num_dependents_deps.dev:0 github.com/LikeMindNetworks/cordova-plugin-camera,num_dependents_deps.dev:0 @@ -110150,6 +112674,7 @@ github.com/LilithWittmann/ozg, github.com/LiljebergXYZ/eight-track-bypass,num_dependents_deps.dev:0 github.com/Lillebo/scroll-parents,num_dependents_deps.dev:0 github.com/LillianFish/vue-components-expend,num_dependents_deps.dev:0 +github.com/LillyWho/ghaction-wiki-sync-custom, github.com/Lillys21/cardify2,num_dependents_deps.dev:0 github.com/Lillys21/prueba-levitha,num_dependents_deps.dev:0 github.com/LiluSoft/s-expression, @@ -110171,6 +112696,7 @@ github.com/LimberDuck/nessus-file-analyzer, github.com/LimberDuck/nessus-file-reader, github.com/LimberDuck/tnscm, github.com/LimberDuck/tsccm, +github.com/LimbicAI/publish-pdf-version-action, github.com/LimbleCMMS/limble-tree, github.com/LimeChain/assemblyscript-scale-codec,num_dependents_deps.dev:0 github.com/LimeChain/eoslime,num_dependents_deps.dev:0 @@ -110183,6 +112709,8 @@ github.com/LimeDeck/nodemailer-stub,num_dependents_deps.dev:0 github.com/LimeDeck/settee, github.com/LimeEng/NodeFifoQueue,num_dependents_deps.dev:0 github.com/LimeEng/NodeSemaphore,num_dependents_deps.dev:0 +github.com/LimeFlight/lf-semantic-versioning, +github.com/LimeFlight/openapi-diff-action, github.com/LimeGreenJS/cli,num_dependents_deps.dev:0 github.com/LimePay/nodesdk, github.com/LimeSurvey/LimeSurvey,criticality_score:0.762120 @@ -110225,6 +112753,8 @@ github.com/Limvot/rust-sdl2_net,num_dependents_deps.dev:0 github.com/Limych/py-beward, github.com/Limych/py-blueprint, github.com/Limych/repository-updater, +github.com/Lin-jun-xiang/action-translate-readme, +github.com/Lin-jun-xiang/demo-action, github.com/LinArcX/tvdoon, github.com/LinFeng1997/markdown-it-react-component,num_dependents_deps.dev:6 github.com/LinFeng1997/vuepress-plugin-export-site, @@ -110306,6 +112836,7 @@ github.com/LinearSoft/jquery-idleTimeout-plus,num_dependents_deps.dev:0 github.com/LinearSpoon/TwistyBot,num_dependents_deps.dev:0 github.com/LinearZoetrope/cd-manager,num_dependents_deps.dev:0 github.com/Linekio/getmyancestors, +github.com/Lineosaurus/Lineosaurus, github.com/LinesApp/draftToMD,num_dependents_deps.dev:0 github.com/Lineup-app/react-native-ml-text-overlay,num_dependents_deps.dev:0 github.com/LingCoder/OnJava8,criticality_score:0.447040 @@ -110399,6 +112930,7 @@ github.com/Linjith/ng2-daterangepicker,num_dependents_deps.dev:0 github.com/Linjovi/sequelize-auto-egg,num_dependents_deps.dev:0 github.com/Linjovi/tpl-stencil,num_dependents_deps.dev:0 github.com/Linjovi/yoso,num_dependents_deps.dev:0 +github.com/Link-/gh-issues-ltt, github.com/Link-/starred_search, github.com/Link-Byte/newprojectjs, github.com/Link-Fight/geo,num_dependents_deps.dev:0 @@ -110485,6 +113017,7 @@ github.com/Linnanli/imagemin-webp-copy,num_dependents_deps.dev:0 github.com/Linnanli/inline-script-loader,num_dependents_deps.dev:0 github.com/Linq-Liquidity-Network/ethsnarks-loopring, github.com/LinqCod/censorify-2.0,num_dependents_deps.dev:0 +github.com/LinqLover/create-image, github.com/LinqVicky/react-native-camera-yx,num_dependents_deps.dev:0 github.com/Linqable/doc, github.com/Linqable/lib, @@ -110675,6 +113208,7 @@ github.com/LinusU/xrates-eur-sek,num_dependents_deps.dev:0 github.com/LinusU/xrates-gbp-sek,num_dependents_deps.dev:0 github.com/LinusU/xrates-ltc-usd,num_dependents_deps.dev:0 github.com/LinusU/xrates-usd-sek,num_dependents_deps.dev:0 +github.com/Linuturk/go-action, github.com/Linux-cpp-lisp/opt_einsum_fx, github.com/Linux123123/JSPteroAPI,num_dependents_deps.dev:0 github.com/Linux2Go/riakalchemy, @@ -110688,11 +113222,14 @@ github.com/LinuxMercedes/coinmarketcap,num_dependents_deps.dev:0 github.com/LinuxMercedes/hashpipe,num_dependents_deps.dev:0 github.com/LinuxMercedes/stream-combinators,num_dependents_deps.dev:0 github.com/LinuxSuRen/SuRenFront,num_dependents_deps.dev:0 +github.com/LinuxSuRen/api-testing, github.com/LinuxSuRen/autotest.parent,num_dependents_deps.dev:0 github.com/LinuxSuRen/autotest.utils,num_dependents_deps.dev:0 +github.com/LinuxSuRen/orbit-assistant, github.com/LinuxSuRen/phoenix.interface.framework,num_dependents_deps.dev:1 github.com/LinuxSuRen/phoenix.webui.framework,num_dependents_deps.dev:4 github.com/LinuxSuRen/suren-require,num_dependents_deps.dev:0 +github.com/LinuxSuRen/yaml-readme, github.com/Linuxpizi/demo-public-npm-package,num_dependents_deps.dev:0 github.com/Linuxpizi/demo-publish-npm-package,num_dependents_deps.dev:0 github.com/Linx-x/slideVerify,num_dependents_deps.dev:0 @@ -110716,6 +113253,7 @@ github.com/LionKimbro/lsf, github.com/LionOcean/commandFlag,num_dependents_deps.dev:0 github.com/LionRoar/colorout,num_dependents_deps.dev:0 github.com/LionRoar/youtube-api-v3-search,num_dependents_deps.dev:0 +github.com/LionZXY/idea-cli-inspector-actions, github.com/Lionardo/donut-chart-lib,num_dependents_deps.dev:0 github.com/Lioncat2002/pylcanim, github.com/LionelAuroux/cnorm, @@ -110850,6 +113388,7 @@ github.com/LiquidSolid/vue-create-ripple,num_dependents_deps.dev:0 github.com/LiquorZz/mxm-cli,num_dependents_deps.dev:0 github.com/Liriel/tlc59711, github.com/LironEr/bundlemon, +github.com/LironEr/bundlemon-action, github.com/LironEr/cypress-mochawesome-reporter,num_dependents_deps.dev:0 github.com/LironHazan/ng-ZzFx,num_dependents_deps.dev:0 github.com/LironHazan/ng-micro-interact,num_dependents_deps.dev:0 @@ -110975,6 +113514,7 @@ github.com/Litre-WU/demo, github.com/Litterman/EZClimate, github.com/Little-Gang/my-cache,num_dependents_deps.dev:0 github.com/Little-Tetra/pyscap, +github.com/LittleBigRefresh/MarkdownToDiscord, github.com/LittleBlueFox/littlebluefox-nodejs,num_dependents_deps.dev:0 github.com/LittleBoBo-beep/tree-table,num_dependents_deps.dev:0 github.com/LittleBreak/rc-dialog-drag,num_dependents_deps.dev:0 @@ -111135,6 +113675,7 @@ github.com/LiveRamp/workflow2,num_dependents_deps.dev:14 github.com/LiveReboot/TColor, github.com/LiveReboot/TerminalDisplay, github.com/LiveRelay/Parseable,num_dependents_deps.dev:0 +github.com/LiveSafe/ghactions-kubectl, github.com/LiveSafe/gulp-html5-lint,num_dependents_deps.dev:1 github.com/LiveSafe/ls-default-configs,num_dependents_deps.dev:0 github.com/LiveSafe/ls-fs,num_dependents_deps.dev:0 @@ -111225,6 +113766,7 @@ github.com/LiyuanLucasLiu/RAdam,criticality_score:0.301380 github.com/LiyuanLucasLiu/Torch-Scope, github.com/LiyueWang/serverless-plugin-custom-binary,num_dependents_deps.dev:0 github.com/Liyunkun11/mini-tree-map,num_dependents_deps.dev:0 +github.com/LizAinslie/VueBuildToBranchAction, github.com/LizGarciaC/GDL002-md-links,num_dependents_deps.dev:0 github.com/LizaProg/test_publish,num_dependents_deps.dev:0 github.com/Lizbethperez/biblioteca,num_dependents_deps.dev:0 @@ -111366,6 +113908,7 @@ github.com/Lobstrio/shadow-useragent, github.com/Locadados/Maxfrota-Post-XML,num_dependents_deps.dev:0 github.com/Local-E-Rewards-ML/itpminer, github.com/LocalBitcoins/lbcapi, +github.com/LocalCoinSwap/aws-kubectl, github.com/LocalCoinSwap/substrate-utils, github.com/LocalHostAS/noderunner,num_dependents_deps.dev:0 github.com/LocalMaps/ElevationProfileWidget,num_dependents_deps.dev:0 @@ -111497,6 +114040,13 @@ github.com/Loganrose/txtbelt,num_dependents_deps.dev:0 github.com/LogansUA/express-param-converter,num_dependents_deps.dev:0 github.com/Logdunum/ldm,num_dependents_deps.dev:0 github.com/Logdunum/logdunum, +github.com/Logerfo/close-action, +github.com/Logerfo/close-label, +github.com/Logerfo/gitflow-action, +github.com/Logerfo/newline-action, +github.com/Logerfo/target-label-action, +github.com/Logerfo/triage-action, +github.com/Logflare/action, github.com/Logflare/logflare,criticality_score:0.384870 github.com/Logflare/logflare-transport-core-js,num_dependents_deps.dev:0 github.com/Loggaby/Loggaby, @@ -111508,6 +114058,7 @@ github.com/Loghorn/fucmen,num_dependents_deps.dev:0 github.com/LogicBig/QuickCLI,num_dependents_deps.dev:0 github.com/LogicJake/print2message, github.com/LogicJake/some-scripts, +github.com/LogicOverSnacks/actions-publish, github.com/LogicPlum/logicplum_v3, github.com/LogicRoom/validator,num_dependents_deps.dev:0 github.com/LogicSoftware/React.Slider,num_dependents_deps.dev:0 @@ -111690,6 +114241,8 @@ github.com/Lokymil/react-adaptive,num_dependents_deps.dev:0 github.com/Loleilo/leilo-backend,num_dependents_deps.dev:4 github.com/Loleilo/leilo-redux,num_dependents_deps.dev:0 github.com/LoliGothick/cherries-rs,num_dependents_deps.dev:0 +github.com/LoliGothick/clippy-check, +github.com/LoliGothick/rustfmt-check, github.com/LoliIo/io.loli.upyun,num_dependents_deps.dev:0 github.com/Lolirofle/byte_conv,num_dependents_deps.dev:0 github.com/Lolirofle/endian-type,num_dependents_deps.dev:147 @@ -111753,9 +114306,12 @@ github.com/Lonero-Team/lonero-cli,num_dependents_deps.dev:0 github.com/Lonersun/ananas-doc, github.com/Lonestaz/IMDBCompare,num_dependents_deps.dev:0 github.com/Long-You/apiManage,num_dependents_deps.dev:0 +github.com/Long0x0/test-action, github.com/LongHuynh7149/lodown,num_dependents_deps.dev:0 github.com/LongJinCen/myReact,num_dependents_deps.dev:0 github.com/LongLiveCHIEF/RxSocket.io,num_dependents_deps.dev:0 +github.com/LongOddCode/assign-reviewer, +github.com/LongOddCode/semantic-versioning-tag, github.com/LongSoft/UEFITool,criticality_score:0.377840 github.com/LongStoryMedia/long-story-library,num_dependents_deps.dev:0 github.com/LongStoryMedia/react-gallery-designer,num_dependents_deps.dev:0 @@ -111784,6 +114340,7 @@ github.com/LongTengDao/j-vue,num_dependents_deps.dev:0 github.com/LongTengDao/original-fs,num_dependents_deps.dev:7 github.com/LongYC/shopi,num_dependents_deps.dev:0 github.com/LongbinChen/mlpipe, +github.com/LongbowActions/Blazor-Script, github.com/Longgererer/dom-pointer, github.com/Longhao-Chen/nofail,num_dependents_deps.dev:0 github.com/Longi94/rl-loadout-lib,num_dependents_deps.dev:0 @@ -111797,6 +114354,7 @@ github.com/Lonomis/LonomisRepo,num_dependents_deps.dev:0 github.com/Lonor/Tranclite,num_dependents_deps.dev:0 github.com/Lonsdaleiter/lonsdaleite,num_dependents_deps.dev:0 github.com/Lonsdaleiter/savannah,num_dependents_deps.dev:0 +github.com/LooDaHu/R-benchmark, github.com/LooMaclin/identity_function_rs,num_dependents_deps.dev:0 github.com/LooMan/looman-cli, github.com/LookLikeAPro/HoverTiles,num_dependents_deps.dev:0 @@ -111817,6 +114375,7 @@ github.com/LoonaHQ/stylelint-config, github.com/Looney-Dev/Nekolife.js,num_dependents_deps.dev:0 github.com/Loongwoo/react-bytes,num_dependents_deps.dev:0 github.com/LooorTor/wagerrd-rpc,num_dependents_deps.dev:0 +github.com/Loop3D/conda-publish-action, github.com/Loop3D/map2loop-2, github.com/LoopKit/Loop,criticality_score:0.445530 github.com/LoopKit/LoopKit,criticality_score:0.344650 @@ -111845,6 +114404,7 @@ github.com/Looxor/react-native-digital-ink,num_dependents_deps.dev:0 github.com/Lop-Language/lop,num_dependents_deps.dev:0 github.com/LopesAlysson/react-app-rewire-module-resolver,num_dependents_deps.dev:0 github.com/LopezBanos/PyFourier, +github.com/Lopla/Pla-Build, github.com/Loque-/guttr,num_dependents_deps.dev:0 github.com/Lora-net/LoRaMac-node,criticality_score:0.522680 github.com/Loracio/retrato-de-fases, @@ -111894,6 +114454,7 @@ github.com/LordLucass/Hexadecimal-generator,num_dependents_deps.dev:0 github.com/LordLucass/Vaporwave-Generator,num_dependents_deps.dev:0 github.com/LordMartron94/JSON_Handling, github.com/LordNoteworthy/al-khaser,criticality_score:0.324580 +github.com/LordOfDragons/build-delga, github.com/LordOfPolls/Rule34-API-Wrapper, github.com/LordPax/neural-network,num_dependents_deps.dev:0 github.com/LordRobert/fc-run,num_dependents_deps.dev:0 @@ -111915,6 +114476,8 @@ github.com/LordWingZero/tennu-cooldown,num_dependents_deps.dev:0 github.com/LordWingZero/tennu-topic-announce,num_dependents_deps.dev:0 github.com/LordWingZero/tennu-wibble,num_dependents_deps.dev:0 github.com/LordZardeck/alfred-portal,num_dependents_deps.dev:0 +github.com/Lordfirespeed/auth-steamcmd, +github.com/Lordfirespeed/setup-steamcmd, github.com/LordofMaps/babel-plugin-styled-components-css-templates,num_dependents_deps.dev:0 github.com/LordotU/amqpator,num_dependents_deps.dev:0 github.com/LordotU/cmild,num_dependents_deps.dev:0 @@ -111928,6 +114491,7 @@ github.com/LoreVazquez/extract-links-from-md,num_dependents_deps.dev:0 github.com/LoreVazquez/test-laboratoria-gdl1202018,num_dependents_deps.dev:0 github.com/LoreleiAurora/stylelint-config-sass,num_dependents_deps.dev:0 github.com/LoremIpsumGraz/mocking-hans,num_dependents_deps.dev:0 +github.com/LoremLabs/kudos-for-code-action, github.com/Loren-Wang/LorenWangCustomTools,num_dependents_deps.dev:0 github.com/LorenFrankLab/filterframework_to_nwb, github.com/LorenFrankLab/franklab_nwb_extensions, @@ -111959,6 +114523,7 @@ github.com/LorenzoVernazza/tidy-octopus-react,num_dependents_deps.dev:0 github.com/LoretoGutierrezH/SCL013-md-links,num_dependents_deps.dev:0 github.com/LorettaLei/vue-player,num_dependents_deps.dev:0 github.com/LorhanSohaky/timeline-creator,num_dependents_deps.dev:0 +github.com/Lori-Systems/submodule-checkout, github.com/Lori25/lori-pages, github.com/Loriick/useHttpClient,num_dependents_deps.dev:0 github.com/LorinczMate1990/rest-api-skeleton,num_dependents_deps.dev:0 @@ -112077,6 +114642,7 @@ github.com/Lotame/cc-android-sdk,num_dependents_deps.dev:0 github.com/LotannaEzenwa/knowlify, github.com/LotharII/semantic-test,num_dependents_deps.dev:0 github.com/LotharSee/exhaustive-prop-types,num_dependents_deps.dev:0 +github.com/Lothindir/pandoc-markdown-action, github.com/Lothiraldan/balto, github.com/Lothiraldan/python_boilerplate, github.com/Lottemint/json-to-bubble-object,num_dependents_deps.dev:0 @@ -112116,6 +114682,7 @@ github.com/LouiS0616/brainbite, github.com/LouiS0616/pyokaka, github.com/LouieK22/blox-api, github.com/LouieK22/rbx-firestore-api,num_dependents_deps.dev:0 +github.com/Louis-7/ai-code-review, github.com/Louis-Aime/calendrical-javascript,num_dependents_deps.dev:0 github.com/Louis-Chen/generator-react-storybook,num_dependents_deps.dev:0 github.com/Louis-Chen/generator-rollup-hyperapp,num_dependents_deps.dev:0 @@ -112124,6 +114691,7 @@ github.com/Louis-Chen/rollup-start-kit,num_dependents_deps.dev:0 github.com/Louis-He/windyLib, github.com/Louis-Saglio/newchanic, github.com/Louis-T/fernandez-polygon-decomposition,num_dependents_deps.dev:0 +github.com/Louis0723/logseq-export, github.com/LouisBIGDATA/deepneighbor, github.com/LouisBarranqueiro/hexo-algolia,num_dependents_deps.dev:0 github.com/LouisBarranqueiro/hexo-algoliasearch,num_dependents_deps.dev:0 @@ -112133,6 +114701,8 @@ github.com/LouisBarranqueiro/reapop,"criticality_score:0.412160,num_dependents_d github.com/LouisBarranqueiro/reapop-theme-bootstrap,num_dependents_deps.dev:0 github.com/LouisBarranqueiro/reapop-theme-wybo,num_dependents_deps.dev:6 github.com/LouisBrunner/babel-plugin-transform-nullish-operator,num_dependents_deps.dev:0 +github.com/LouisBrunner/checks-action, +github.com/LouisBrunner/diff-action, github.com/LouisBrunner/exist-utils,num_dependents_deps.dev:0 github.com/LouisBrunner/react-dnd-multi-backend,num_dependents_deps.dev:0 github.com/LouisBrunner/sinon-spy-utils,num_dependents_deps.dev:0 @@ -112335,6 +114905,7 @@ github.com/LoveNishimiyaShouko/hMailServerConsole, github.com/LoveNishimiyaShouko/signin, github.com/LoveNishimiyaShouko/signup, github.com/LoveSteak/Steak, +github.com/LoveToKnow/slackify-markdown-action, github.com/LoveXiaoLiu/mysqltokenparser, github.com/LoveYe/js-method, github.com/LovecraftianHorror/pubproxpy, @@ -112362,6 +114933,7 @@ github.com/LowerDeez/ok-likes, github.com/LowerDeez/ok-payparts, github.com/LowerDeez/ok-redirects, github.com/LowerDeez/ok-seo, +github.com/LowerRockLabs/larawatch-phpstan-upload, github.com/LowerSilesians/geo-squizzy, github.com/Lowest0ne/make_secret,num_dependents_deps.dev:0 github.com/Lowest0ne/poloniex,num_dependents_deps.dev:0 @@ -112440,6 +115012,7 @@ github.com/Ltre/Jinguanyu,num_dependents_deps.dev:0 github.com/Ltre/Ltre.js,num_dependents_deps.dev:0 github.com/Lu-MPI/NotionHTMLToLatex, github.com/Lu-Yi-Hsun/iqoptionapi, +github.com/LuCEresearchlab/expression-tutor-activity-generator, github.com/LuHong-HL/data-structure,num_dependents_deps.dev:0 github.com/LuKks/like-events,num_dependents_deps.dev:0 github.com/LuKks/like-json,num_dependents_deps.dev:0 @@ -112486,7 +115059,9 @@ github.com/Luavis/sherlock, github.com/LubDub/lubdub, github.com/Lube/create-react-app-seed,num_dependents_deps.dev:0 github.com/Lube/nfc-react-native,num_dependents_deps.dev:0 +github.com/LubricantJam/SFTP-Deploy-Action, github.com/Lubright/sqlite3-orm-nodejs,num_dependents_deps.dev:0 +github.com/Lubycon/github-reviewer-noti-action, github.com/Lubycon/lubycon-react,num_dependents_deps.dev:0 github.com/Lubycon/lubycon-ui-kit,num_dependents_deps.dev:0 github.com/Lubycon/lubycon-utils,num_dependents_deps.dev:0 @@ -112590,6 +115165,7 @@ github.com/LucaCode/ts-run-assert,num_dependents_deps.dev:0 github.com/LucaColonnello/focuz,num_dependents_deps.dev:0 github.com/LucaColonnello/redux-async-utils,num_dependents_deps.dev:0 github.com/LucaDe/react-upvoty,num_dependents_deps.dev:0 +github.com/LucaFeger/action-maven-cli, github.com/LucaFranceschini/wrapper-roo,num_dependents_deps.dev:0 github.com/LucaGabi/ts-sort-intelisense-plugin,num_dependents_deps.dev:0 github.com/LucaGas/tvimport, @@ -112712,6 +115288,7 @@ github.com/LucasRodrigues/sitemap-system,num_dependents_deps.dev:0 github.com/LucasRodrigues/sitemap-system-file-dispatcher,num_dependents_deps.dev:0 github.com/LucasRodrigues/sitemap-urlset,num_dependents_deps.dev:2 github.com/LucasRoesler/django-encrypted-json, +github.com/LucasRoesler/get-repo-owner-action, github.com/LucasSan/aws_arch,num_dependents_deps.dev:0 github.com/LucasSimpson/ConcurrentFloodScraper, github.com/LucasStarlingdePaulaSalles/hyper-distributor, @@ -112902,6 +115479,7 @@ github.com/LuckboxGG/mq-clients,num_dependents_deps.dev:0 github.com/LuckboxGG/node-redis,num_dependents_deps.dev:0 github.com/LuckboxGG/notification-client,num_dependents_deps.dev:0 github.com/LuckboxGG/token-data-middleware,num_dependents_deps.dev:0 +github.com/Lucklyric/unity-builder, github.com/Luckvery/sift-js,num_dependents_deps.dev:0 github.com/Lucky-Beard/lucky-render-upload-log,num_dependents_deps.dev:0 github.com/Lucky-Beard/nexrender-action-install-font,num_dependents_deps.dev:0 @@ -112909,6 +115487,7 @@ github.com/Lucky-LYZ/lyz-react-npm-demo, github.com/Lucky-Mano/mecab2pandas, github.com/Lucky-dj/hik-node-sdk,num_dependents_deps.dev:0 github.com/Lucky-dj/node-cegid-api,num_dependents_deps.dev:0 +github.com/Lucky3028/git-as-gha, github.com/LuckyDams/Attr-Dict, github.com/LuckyDams/Crypto-Factory, github.com/LuckyDams/modern-python-project, @@ -112940,6 +115519,7 @@ github.com/LuckyStarry/luckystarry-ui-utils,num_dependents_deps.dev:0 github.com/LuckyTeamX/sequelize-auto-migrations,num_dependents_deps.dev:0 github.com/LuckyTeamX/wg-api-strategy,num_dependents_deps.dev:0 github.com/LuckyThirteen/karma-notify-send-reporter,num_dependents_deps.dev:0 +github.com/LuckyTurtleDev/easy-docker-action, github.com/LuckyWinty/create-repo-cli,num_dependents_deps.dev:0 github.com/LuckyZhou880808/redux-fetch-middleware,num_dependents_deps.dev:0 github.com/Luckybox59/project-lvl1-s352,num_dependents_deps.dev:0 @@ -112974,6 +115554,7 @@ github.com/LucyBot-Inc/api-spec-converter,criticality_score:0.369610 github.com/LucyBot-Inc/documentation-starter,num_dependents_deps.dev:0 github.com/Lucyway/lucy-flash-drive,num_dependents_deps.dev:0 github.com/Lucz0xxZ/meowfacts-wrapper, +github.com/Ludea/elemental-setup, github.com/LudeeD/geohash-16,num_dependents_deps.dev:0 github.com/Ludic/box2d,num_dependents_deps.dev:0 github.com/Ludic/ein,num_dependents_deps.dev:0 @@ -112989,6 +115570,7 @@ github.com/LudovicRousseau/pyscard, github.com/Ludows/wpk-loader,num_dependents_deps.dev:0 github.com/Ludu/ember-blur-up, github.com/LudusMatchMaking/pyplanet_agones, +github.com/LudvigHz/vint-action, github.com/LudwigHoff/bundled-dependencies,num_dependents_deps.dev:0 github.com/LudwigThePig/Three-Particle-Effects,num_dependents_deps.dev:0 github.com/LudwigVonChesterfield/Asciiglet, @@ -113011,6 +115593,7 @@ github.com/Luehang/react-native-smart-gallery,num_dependents_deps.dev:0 github.com/Luehang/react-native-smart-page,num_dependents_deps.dev:6 github.com/Luehang/react-native-swipe-render,num_dependents_deps.dev:8 github.com/Luehang/react-paypal-button-v2,num_dependents_deps.dev:0 +github.com/Luet-lab/luet-github-action, github.com/Luewd/lepsen-core, github.com/Lufedi/cube-component,num_dependents_deps.dev:0 github.com/Lufedi/dimtec-weather-package,num_dependents_deps.dev:0 @@ -113066,19 +115649,31 @@ github.com/Luinova/ember-line-clamp, github.com/Luinova/ember-styled-components,num_dependents_deps.dev:0 github.com/Luis-GA/jobo-scrapper, github.com/Luis0Antonio/Trabajo-NPM-platzi,num_dependents_deps.dev:0 +github.com/Luis97lol/PSFTP, github.com/LuisARodr/array-extension,num_dependents_deps.dev:0 github.com/LuisAcerv/quarkdb,num_dependents_deps.dev:0 github.com/LuisAcerv/react-native-twitter-auth, github.com/LuisAcerv/user-preview,num_dependents_deps.dev:0 github.com/LuisAlbizo/milachan, +github.com/LuisAlejandro/fb-last-post-from-feed, +github.com/LuisAlejandro/fb-random-post-from-feed, +github.com/LuisAlejandro/movie-box, +github.com/LuisAlejandro/send-fb-post-with-media, +github.com/LuisAlejandro/send-tweet-with-media, +github.com/LuisAlejandro/tweet-last-post-from-feed, +github.com/LuisAlejandro/tweet-random-post-from-feed, github.com/LuisAngelG/ProyectoPrueba-lab06,num_dependents_deps.dev:0 github.com/LuisArmando-TestCoder/canvas-preset, github.com/LuisArmando-TestCoder/scene-preset,num_dependents_deps.dev:0 +github.com/LuisBoto/ngrok-tunnel-action, github.com/LuisCarlosAriasC/nestjs-casl-authorization,num_dependents_deps.dev:0 github.com/LuisCintron/cintron-js-package,num_dependents_deps.dev:0 +github.com/LuisCusihuaman/okteto-deploy, github.com/LuisEGR/angularjs-test-generator,num_dependents_deps.dev:0 github.com/LuisEGR/ng-module-parser,num_dependents_deps.dev:0 +github.com/LuisEnMarroquin/gh-pages-publish, github.com/LuisEnMarroquin/json-as-xlsx, +github.com/LuisEnMarroquin/setup-ssh-action, github.com/LuisEnMarroquin/ts-land,num_dependents_deps.dev:0 github.com/LuisFalk/node-vmt-parser,num_dependents_deps.dev:0 github.com/LuisFloresV/matrix-random-messages, @@ -113086,6 +115681,7 @@ github.com/LuisFuenTech/object-dot-parser,num_dependents_deps.dev:0 github.com/LuisFuenTech/platzon,num_dependents_deps.dev:0 github.com/LuisGazcon/sass-alias,num_dependents_deps.dev:0 github.com/LuisGhz/platzom,num_dependents_deps.dev:0 +github.com/LuisGhz/simple-ms-teams-webhook-notifier, github.com/LuisGilGB/js-utils,num_dependents_deps.dev:6 github.com/LuisGilGB/react-component-generator,num_dependents_deps.dev:0 github.com/LuisGilGB/react-container,num_dependents_deps.dev:0 @@ -113101,6 +115697,7 @@ github.com/LuisManuelNR/vue-cc,num_dependents_deps.dev:0 github.com/LuisManuelNR/vue-chart2d-constructor,num_dependents_deps.dev:0 github.com/LuisMayo/GoogleSTTtoSRTConverter,num_dependents_deps.dev:0 github.com/LuisMayo/schinquirer, +github.com/LuisMejiaF/number-of-approvals-label-action, github.com/LuisOlivaresJ/Dosepy, github.com/LuisOlive/stylus-kit, github.com/LuisPaGarcia/coco-gen,num_dependents_deps.dev:0 @@ -113171,6 +115768,7 @@ github.com/Lujo5/ng5-restful,num_dependents_deps.dev:0 github.com/Lujo5/ngx-restful,num_dependents_deps.dev:0 github.com/Lujo5/pm2-logrotate-ext,num_dependents_deps.dev:0 github.com/Lujo5/sms-cli, +github.com/LukBukkit/action-pr-limits, github.com/LukBukkit/chartist-plugin-tooltip,num_dependents_deps.dev:0 github.com/LukJA/python-spydagram, github.com/LukNasc/-luknasc-ui-components,num_dependents_deps.dev:0 @@ -113189,7 +115787,9 @@ github.com/LukaGamingDev/discord-interactive,num_dependents_deps.dev:0 github.com/LukaHarambasic/vue-resume-component,num_dependents_deps.dev:0 github.com/LukaJCB/rxscala-js,num_dependents_deps.dev:0 github.com/LukaPrebil/eslint-plugin-require-duplicate, +github.com/LukaPrebil/jira-merged-action, github.com/LukachoLombardi/BetterTimer_Python, +github.com/Lukacs5/action-latest-release-version, github.com/Lukadriel7/apollo-cache-instorage,num_dependents_deps.dev:0 github.com/Lukars/autocomplete,num_dependents_deps.dev:0 github.com/Lukas-Batema/pyslots, @@ -113218,6 +115818,7 @@ github.com/LukasDoesDev/web-hmm, github.com/LukasDrsman/pytermcanvas, github.com/LukasDrsman/vis3dpy, github.com/LukasDrsman/vis3dvf, +github.com/LukasEm/sql-action, github.com/LukasGentele/docusaurus-gtm-plugin,num_dependents_deps.dev:0 github.com/LukasHechenberger/automated-release,num_dependents_deps.dev:0 github.com/LukasHechenberger/babel-preset,num_dependents_deps.dev:0 @@ -113251,6 +115852,7 @@ github.com/LukasMazl/NicSpeedyModule, github.com/LukasMosser/MontePetro, github.com/LukasMusebrink/cfc,num_dependents_deps.dev:0 github.com/LukasNorbutas/imgic, +github.com/LukasOrcik/action-lambda-layer, github.com/LukasPatzke/homebridge-ambient-hue, github.com/LukasPolak/data-cy,num_dependents_deps.dev:0 github.com/LukasPolak/eslint-config,num_dependents_deps.dev:0 @@ -113270,6 +115872,8 @@ github.com/LukasWoodtli/PyMarkdownGen, github.com/LukasZahradnik/PyNeuraLogic, github.com/Lukasa/requests-ftp, github.com/Lukasa/rust-certitude,num_dependents_deps.dev:0 +github.com/Lukasss93/phpinsights-badger-action, +github.com/Lukasss93/telegram-action, github.com/Lukasz-Trzaskowski/react-numeric-input, github.com/Lukasz-pluszczewski/all-log,num_dependents_deps.dev:0 github.com/Lukasz-pluszczewski/debug-composer,num_dependents_deps.dev:0 @@ -113290,6 +115894,7 @@ github.com/LukaszKrawczyk/LPF,num_dependents_deps.dev:0 github.com/LukaszKrawczyk/anomaly-detector,num_dependents_deps.dev:0 github.com/LukaszKrawczyk/clustering,num_dependents_deps.dev:0 github.com/LukaszKrawczyk/density-clustering,num_dependents_deps.dev:1094 +github.com/LukaszLapaj/html-to-pdf-action, github.com/LukaszLupa/nestjs-expo-notifications,num_dependents_deps.dev:0 github.com/LukaszNowakPL/react-bootstrap-tools,num_dependents_deps.dev:0 github.com/LukaszSarzynski/Angular-ToDoList,num_dependents_deps.dev:0 @@ -113386,6 +115991,7 @@ github.com/LukePrior/PythonYourSuperAPI, github.com/LukeRoantree4815162342/pioton, github.com/LukeSavefrogs/SeleniumEngineJS,num_dependents_deps.dev:0 github.com/LukeSavefrogs/maximo-gui-connector, +github.com/LukeSavefrogs/setup-jython, github.com/LukeShay/lspm,num_dependents_deps.dev:0 github.com/LukeShay/lukeshay-web,num_dependents_deps.dev:8 github.com/LukeShay/route-rating-api,num_dependents_deps.dev:0 @@ -113453,6 +116059,7 @@ github.com/LulzAugusto/generator-gulp-webapp,num_dependents_deps.dev:0 github.com/LulzLoL231/lulzcode, github.com/LulzLoL231/lulzcrypto, github.com/LumaKernel/coc-denoland, +github.com/LumaKernel/npm-release-pack-action, github.com/LumaKernel/vfile-message-daemon,num_dependents_deps.dev:0 github.com/LumaPictures/generator-luma,num_dependents_deps.dev:0 github.com/LumaPictures/pymel,criticality_score:0.378670 @@ -113719,6 +116326,7 @@ github.com/Luthaf/materials-cloud-viewer,num_dependents_deps.dev:0 github.com/Luthaf/wigners, github.com/Lutif/react-native-animated-rating,num_dependents_deps.dev:0 github.com/Lutreer/cookie-in-vue,num_dependents_deps.dev:0 +github.com/LutrisEng/validate-cff, github.com/Luttik/auto-optional, github.com/Luttik/keras_svm, github.com/Luttik/pytest-locker, @@ -113886,6 +116494,7 @@ github.com/Lyhnx/bittrex-api-wrapper,num_dependents_deps.dev:0 github.com/LyhourChhen/enhance-antd-table,num_dependents_deps.dev:0 github.com/LykaiosNZ/reaper-osc.js, github.com/LykenSol/cyclotron,num_dependents_deps.dev:0 +github.com/LykkeBusiness/get-semver-from-tag-action, github.com/LykkeCity/HFT-java-client,num_dependents_deps.dev:0 github.com/LykkeCity/LykkeFramework,num_dependents_deps.dev:0 github.com/LykkeCity/lykke.js,num_dependents_deps.dev:0 @@ -113929,6 +116538,8 @@ github.com/LynxyssCZ/majak,num_dependents_deps.dev:0 github.com/LynxyssCZ/mapromise,num_dependents_deps.dev:0 github.com/LynxyssCZ/rin-core,num_dependents_deps.dev:0 github.com/LynxyssCZ/rinko,num_dependents_deps.dev:0 +github.com/Lyoko-Jeremie/js-copy-github-action, +github.com/Lyoko-Jeremie/js-rm-github-action, github.com/Lyoko-Jeremie/tus-node-server,num_dependents_deps.dev:0 github.com/Lyokone/flutterlocation,criticality_score:0.525830 github.com/LyonInc/preact-hooks,num_dependents_deps.dev:10 @@ -113945,6 +116556,7 @@ github.com/LyricLy/capncord.py, github.com/LyricalSecurity/django-yubikey-admin, github.com/Lyrichu/NetCloud, github.com/LyridInc/js-sdk,num_dependents_deps.dev:0 +github.com/LyridInc/lyrid-deploy, github.com/Lyrikz/serverless-apig-logs,num_dependents_deps.dev:0 github.com/Lyrillind/hyperterm-ayu-mirage,num_dependents_deps.dev:0 github.com/Lyrkan/ts-gb,num_dependents_deps.dev:0 @@ -114047,6 +116659,7 @@ github.com/M-Ulyanov/stickyBlock,num_dependents_deps.dev:0 github.com/M-Ulyanov/typeValidation,num_dependents_deps.dev:0 github.com/M-Watson/nopi, github.com/M-Willett/bemit-css,num_dependents_deps.dev:0 +github.com/M-Yamashita01/check-members, github.com/M-ZubairAhmed/React-Numbers,num_dependents_deps.dev:0 github.com/M-ZubairAhmed/chromium-updater,num_dependents_deps.dev:0 github.com/M-ZubairAhmed/cleave-md,num_dependents_deps.dev:0 @@ -114076,6 +116689,7 @@ github.com/M-o-a-T/trio-gpio, github.com/M-o-a-T/wago, github.com/M-rcus/yiff-dl,num_dependents_deps.dev:0 github.com/M00nF1sh/mkdocs_helm, +github.com/M0RGaming/Push-To-EsoUI, github.com/M0Rf30/android-udev-rules,criticality_score:0.468410 github.com/M0Rph3U56031769/commondtools, github.com/M0gician/lightRaven, @@ -114219,6 +116833,7 @@ github.com/MABelanger/starwars-names,num_dependents_deps.dev:0 github.com/MABottiglieri/dev-charts,num_dependents_deps.dev:0 github.com/MABottiglieri/dev-material,num_dependents_deps.dev:0 github.com/MABottiglieri/dev-tools,num_dependents_deps.dev:0 +github.com/MAD-I-T/magento-actions, github.com/MADCAZ/ngx-number-format, github.com/MADCAZ/ngx-watermark,num_dependents_deps.dev:0 github.com/MADEAPPS/newton-dynamics,criticality_score:0.492240 @@ -114327,6 +116942,7 @@ github.com/MBearo/kql,num_dependents_deps.dev:0 github.com/MBearo/web-server,num_dependents_deps.dev:0 github.com/MBeliou/bfm-rss, github.com/MBenBader/ngx-dnd,num_dependents_deps.dev:0 +github.com/MBilalShafi/no-response-add-label, github.com/MBmasher/big-num-format, github.com/MBravoS/scicm, github.com/MBravoS/splot, @@ -114336,6 +116952,7 @@ github.com/MC-LiuWei/next-multimedia,num_dependents_deps.dev:0 github.com/MC-LiuWei/oauth2-sdk,num_dependents_deps.dev:0 github.com/MC-LiuWei/postmate-client,num_dependents_deps.dev:0 github.com/MC-LiuWei/sam-utils,num_dependents_deps.dev:4 +github.com/MC-Machinations/auto-release-changelog, github.com/MC-Machinations/lectern,num_dependents_deps.dev:0 github.com/MC-kit/map-stp, github.com/MC-kit/mckit, @@ -114356,12 +116973,14 @@ github.com/MCGPPeters/Radix, github.com/MCGritti/autodeploy,num_dependents_deps.dev:0 github.com/MCGritti/vue-cbus,num_dependents_deps.dev:0 github.com/MCHalbi/AllYourUnitAreBelongToUs, +github.com/MCJack123/ghaction-Generate-Release-Hashes, github.com/MCKRUZ/ps-author-helper,num_dependents_deps.dev:0 github.com/MCKapur/LeapDuino,num_dependents_deps.dev:0 github.com/MCKapur/emoji-rainn, github.com/MCKreukniet/dynamic-side-nav,num_dependents_deps.dev:0 github.com/MCLConsortium/mcl.infirmary, github.com/MCLConsortium/mcl.sickbay, +github.com/MCLD/dotnet-outdated-action, github.com/MCMatters/vuejs-laravel-pagination,num_dependents_deps.dev:0 github.com/MCMicS/dist-exiftool,num_dependents_deps.dev:0 github.com/MCMicS/node-exiftool.exe,num_dependents_deps.dev:0 @@ -114465,6 +117084,13 @@ github.com/MDJ-Mikkel-Djurhuus/bingo-generator,num_dependents_deps.dev:0 github.com/MDKroon/react-global-state,num_dependents_deps.dev:0 github.com/MDKroon/react-ui-components,num_dependents_deps.dev:0 github.com/MDPHL/arbow, +github.com/MDPOps/azure-container-apps-deploy, +github.com/MDPOps/azure-container-registry-build, +github.com/MDPOps/azure-container-registry-deploy, +github.com/MDPOps/azure-mdp-webapp-deploy, +github.com/MDPOps/azure-resource-manager-deploy, +github.com/MDPOps/deploy-type-check, +github.com/MDRCNY/MDRCNY-Actions-CPR, github.com/MDReal32/GitHubCommitsDownloader, github.com/MDReal32/SocialServicesLibrary,num_dependents_deps.dev:0 github.com/MDSLKTR/pouch-vue,num_dependents_deps.dev:2 @@ -114492,6 +117118,7 @@ github.com/MDukauskas/redux-rx-http, github.com/ME-64/openfigipy, github.com/ME-64/yfinhanced, github.com/ME-ICA/ddmra, +github.com/ME-ON1/Leetcode-SyncInAction, github.com/ME-ON1/google-text-to-speech-concat, github.com/MEADez/btc-action-set, github.com/MEADez/btc-flex-forms, @@ -114539,6 +117166,7 @@ github.com/MEONMedical/Log4Qt,criticality_score:0.321300 github.com/MERTULAS/learned, github.com/MESMER-group/mesmer, github.com/MESMER-group/mesmer-openscmrunner, +github.com/META-DREAMER/qr-code-generator, github.com/METACEO/ng-refs,num_dependents_deps.dev:0 github.com/METACEO/ng-transition,num_dependents_deps.dev:0 github.com/METACEO/nodejs-aisle,num_dependents_deps.dev:0 @@ -114564,6 +117192,7 @@ github.com/MEhrn00/webhook-loghandlers, github.com/MFJamil/smyld-java,num_dependents_deps.dev:298 github.com/MFJamil/smyld-lib-3d, github.com/MFJamil/smyld-lib-common,num_dependents_deps.dev:0 +github.com/MFMentopolis/action-send-mail, github.com/MFQ/famous-views,num_dependents_deps.dev:0 github.com/MFSoftware/ctp,num_dependents_deps.dev:0 github.com/MFSoftware/noi,num_dependents_deps.dev:0 @@ -114598,6 +117227,7 @@ github.com/MGalv/coinsetter,num_dependents_deps.dev:0 github.com/MGardne8/DiscordPyColours, github.com/MGardner02/map-stream,num_dependents_deps.dev:0 github.com/MGautier/security-sensor,num_dependents_deps.dev:0 +github.com/MGenteluci/cloudformation-deploy-action, github.com/MGenteluci/cpf-validator,num_dependents_deps.dev:0 github.com/MGenteluci/math-operations,num_dependents_deps.dev:0 github.com/MGerrick202/lodown,num_dependents_deps.dev:0 @@ -114616,6 +117246,7 @@ github.com/MGutierrezT/rutcl,num_dependents_deps.dev:0 github.com/MH121017/zh-common-ui,num_dependents_deps.dev:0 github.com/MH15/neanderthal,num_dependents_deps.dev:0 github.com/MH15/unsure,num_dependents_deps.dev:0 +github.com/MH4GF/dependency-cruiser-report-action, github.com/MHA15/globalstate-hook,num_dependents_deps.dev:0 github.com/MHA15/observable-hook,num_dependents_deps.dev:0 github.com/MHA15/with-valued-data,num_dependents_deps.dev:0 @@ -114730,6 +117361,8 @@ github.com/MIzidio/my-simple-components,num_dependents_deps.dev:0 github.com/MJ-Shashank/clashofclans-events,num_dependents_deps.dev:0 github.com/MJ-Shashank/supercell-apis,num_dependents_deps.dev:0 github.com/MJ0826/react-native-qr-code,num_dependents_deps.dev:0 +github.com/MJAISE/Laravel-Rsync-Deploy, +github.com/MJAISE/laravel-deploy-migrate-cache, github.com/MJB-code6/SkyPort,num_dependents_deps.dev:0 github.com/MJBlack23/mws-sdk,num_dependents_deps.dev:0 github.com/MJDSys/grunt-image-debower,num_dependents_deps.dev:0 @@ -114770,6 +117403,7 @@ github.com/MKLab-ITI/reveal-user-annotation, github.com/MKLab-ITI/reveal-user-classification, github.com/MKRhere/rule34,num_dependents_deps.dev:0 github.com/MKSHLabs/HashedKNN, +github.com/MKachi/mkachi-blog-deploy-action, github.com/MKastek/SimulatedLIBS, github.com/MKergall/osmbonuspack,criticality_score:0.346120 github.com/MKilani/EgyVoc, @@ -114796,6 +117430,7 @@ github.com/MLDOliveira/cordova-plugin-mobile-ocr-scp,num_dependents_deps.dev:0 github.com/MLH-Fellowship/ClipBit, github.com/MLH-Fellowship/alphadoc, github.com/MLH-Fellowship/autoflow, +github.com/MLH-Fellowship/create-standup-discussions, github.com/MLH-Fellowship/jest-runner-tsd,num_dependents_deps.dev:0 github.com/MLH-Fellowship/pear, github.com/MLH-Fellowship/stackoverflow-cli,num_dependents_deps.dev:0 @@ -114901,6 +117536,7 @@ github.com/MNGuenther/ngtsio, github.com/MNGuenther/tess_infos, github.com/MNKanout/Pysafe, github.com/MNMdiagnostics/distribution_based_features, +github.com/MNThomson/otel-action, github.com/MNewman70115/lodown,num_dependents_deps.dev:0 github.com/MNoichl/physarum, github.com/MNoorFawi/lshashing, @@ -114939,6 +117575,7 @@ github.com/MODX-Club/react-cms-uploads,num_dependents_deps.dev:0 github.com/MODX-Club/react-editor,num_dependents_deps.dev:4 github.com/MODX-Club/react-study,num_dependents_deps.dev:0 github.com/MODX-Club/shopmodx-react,num_dependents_deps.dev:0 +github.com/MOES-Media/render-plantuml-to-wiki-action, github.com/MOHAMMADArsalan/react-draggable-image-viewer,num_dependents_deps.dev:0 github.com/MOHAMMADHMEAD/MH-Populate,num_dependents_deps.dev:0 github.com/MOHAMMADHMEAD/mh-gallery,num_dependents_deps.dev:0 @@ -114964,11 +117601,14 @@ github.com/MOXA-ISD/thingspro-cloud-node-sdk,num_dependents_deps.dev:0 github.com/MOXA-ISD/tp-window,num_dependents_deps.dev:0 github.com/MOXGA-OSS/gamer-serius, github.com/MOZGIII/ConfigDSL,num_dependents_deps.dev:0 +github.com/MOZGIII/action-plan, +github.com/MOZGIII/artifact-info, github.com/MOZGIII/efi-loadopt,num_dependents_deps.dev:3 github.com/MOZGIII/efibootnext,num_dependents_deps.dev:2 github.com/MOZGIII/electron-forge-webpack-advanced, github.com/MOZGIII/gmd,num_dependents_deps.dev:0 github.com/MOZGIII/http-proxy-client-async,num_dependents_deps.dev:0 +github.com/MOZGIII/install-ldid-action, github.com/MOZGIII/linux-nvme-sys,num_dependents_deps.dev:0 github.com/MOZGIII/merge-io-rs,num_dependents_deps.dev:0 github.com/MOZGIII/rebootinto,num_dependents_deps.dev:0 @@ -114978,7 +117618,10 @@ github.com/MOZGIII/twitchwatcher, github.com/MOZGIII/ucc,num_dependents_deps.dev:0 github.com/MOZGIII/vagrant-host-path,num_dependents_deps.dev:0 github.com/MOZGIII/wallpaper-rs,num_dependents_deps.dev:0 +github.com/MP-ES/build-push-action, +github.com/MP-ES/k8s-deploy, github.com/MP-ES/vmm_manager, +github.com/MP3Martin/semistandard-action, github.com/MPASolutions/django-dal, github.com/MPASolutions/django-filtersmerger, github.com/MPASolutions/django-webix, @@ -114998,6 +117641,7 @@ github.com/MPI-Dortmund/transphire_transform, github.com/MPI-IS/CityGraph, github.com/MPK44/node-red-contrib-xbox-smartglass,num_dependents_deps.dev:0 github.com/MPL-IT/mpl_pymanage, +github.com/MPLew-is/lfs-check-action, github.com/MPOS/php-mpos,criticality_score:0.421630 github.com/MPThLee/binary-reader.rs,num_dependents_deps.dev:0 github.com/MPalarya/log-throttling, @@ -115229,6 +117873,7 @@ github.com/MTES-MCT/bulk-geocoding-python-client, github.com/MTES-MCT/camino-api,num_dependents_deps.dev:0 github.com/MTES-MCT/node-cerbere,num_dependents_deps.dev:0 github.com/MTES-MCT/passport-cerbere,num_dependents_deps.dev:0 +github.com/MTES-MCT/updownio-action, github.com/MTG/essentia,criticality_score:0.557980 github.com/MTG/essentia.js,num_dependents_deps.dev:0 github.com/MTG/freesound-python,Google @@ -115236,6 +117881,7 @@ github.com/MTG/sms-tools,criticality_score:0.398330 github.com/MTO-SDC/mto-sdc-table,num_dependents_deps.dev:0 github.com/MTProto/MTProtoProxy,num_dependents_deps.dev:0 github.com/MTRNord/nordlab-hackerspace-door,num_dependents_deps.dev:0 +github.com/MTRNord/zola-check-manager, github.com/MTSolutions/superslacker, github.com/MTTTM/async-validator-uniapp,num_dependents_deps.dev:0 github.com/MTTTM/multi-page-router,num_dependents_deps.dev:0 @@ -115277,7 +117923,9 @@ github.com/MVIG-SJTU/AlphaPose,criticality_score:0.430280 github.com/MVIG-SJTU/RMPE,criticality_score:0.304980 github.com/MVMT107/cs107-FinalProject, github.com/MVNUCS/TeamThreeSP20, +github.com/MVPFactory/github-actions-pnpm-snyk, github.com/MVRonkin/dsatools, +github.com/MVS-Telecom/publish-nuget, github.com/MVYV/HITS, github.com/MWATelescope/mwa_hyperbeam, github.com/MWATelescope/mwa_pb, @@ -115292,6 +117940,9 @@ github.com/MWalid/gulp-build-system,num_dependents_deps.dev:0 github.com/MWarCZ/versioner,num_dependents_deps.dev:0 github.com/MWatch/mwatch-sdk-core,num_dependents_deps.dev:0 github.com/MWatch/sdk,num_dependents_deps.dev:0 +github.com/MWin10/bump-csproj-version-fork, +github.com/MWin10/get-csproj-version-fork, +github.com/MWin10/set-csproj-version-fork, github.com/MWolf88/starwars-names,num_dependents_deps.dev:0 github.com/MX-Futhark/four-color-ascii-canvas,num_dependents_deps.dev:0 github.com/MX-Futhark/terminal-gbc-emulator,num_dependents_deps.dev:0 @@ -115299,7 +117950,10 @@ github.com/MX8CLUB/react-native-alibaichuan,num_dependents_deps.dev:0 github.com/MX8CLUB/react-native-tomatohut-player, github.com/MXCHIP/mxos-cube, github.com/MXMP/swtoolz-api-wrapper, +github.com/MXNXV-ERR/Flutter-ApkBuild-And-Firbase-Deploy-Action, github.com/MXP2095onetechguy/PyRestart, +github.com/MXPicture/action-cncjs-ci-log, +github.com/MXPicture/action-docker-hub-fetch-tags, github.com/MXWXZ/sjtu-automata, github.com/MXXXXXS/classify-my-files,num_dependents_deps.dev:0 github.com/MY-CAPITAL/myui,num_dependents_deps.dev:0 @@ -115318,6 +117972,7 @@ github.com/MYOB-Technology/kumo-plugins,num_dependents_deps.dev:0 github.com/MYOB-Technology/node-config,num_dependents_deps.dev:0 github.com/MYOB-Technology/zipkin-pagination,num_dependents_deps.dev:0 github.com/MYSHIELD/node-client,num_dependents_deps.dev:0 +github.com/MYXOMOPX/modify-pkg-json, github.com/MYavuzYAGIS/cryptopy, github.com/MZIchenjl/amap-vue2, github.com/MZIchenjl/bodychecker,num_dependents_deps.dev:0 @@ -115334,6 +117989,7 @@ github.com/MZanggl/formakase,num_dependents_deps.dev:0 github.com/MZanggl/promistate,num_dependents_deps.dev:0 github.com/MZanggl/taptaptap,num_dependents_deps.dev:0 github.com/MZanggl/vue-blick,num_dependents_deps.dev:0 +github.com/Ma-ve/action-download-artifact-with-retry, github.com/Ma124/build.py, github.com/Ma124/markdown-it-emoji,num_dependents_deps.dev:0 github.com/Ma27/rediscala,num_dependents_deps.dev:3 @@ -115380,6 +118036,7 @@ github.com/MaZderMind/cwa-qr, github.com/MaZhaolin/prevue-image, github.com/MaZhaolin/vue-vaptcha,num_dependents_deps.dev:0 github.com/MaZhiQing123/-,num_dependents_deps.dev:0 +github.com/MaaAssistantArknights/maa-electronui-builder, github.com/Maaaartin/adb-ts,num_dependents_deps.dev:0 github.com/Maaaartin/emulator-ts,num_dependents_deps.dev:0 github.com/Maaaartin/single-instance-lock,num_dependents_deps.dev:0 @@ -115392,6 +118049,7 @@ github.com/Maanex/eslint-config-maanex,num_dependents_deps.dev:0 github.com/Maanex/parse-args,num_dependents_deps.dev:0 github.com/MaaniBeigy/pycvcqv, github.com/MaanuVazquez/StagedRunner,num_dependents_deps.dev:0 +github.com/Maanuj-Vora/List-Contributors, github.com/Maarkas/webfonts-generator, github.com/Maarten-s1991/testcicd, github.com/Maarten-vd-Sande/qnorm, @@ -115519,6 +118177,7 @@ github.com/Machtan/token-rs,num_dependents_deps.dev:0 github.com/Machy8/Grid,num_dependents_deps.dev:0 github.com/Machy8/Macdom-js,num_dependents_deps.dev:0 github.com/Machy8/async-github-gist,num_dependents_deps.dev:0 +github.com/MaciejBoguta/docker-clair-acr-action, github.com/MaciejCzyzewski/hyhyhy, github.com/MaciejDot/cache-manager-dotnet-like,num_dependents_deps.dev:0 github.com/MaciejDot/vuex-exact,num_dependents_deps.dev:0 @@ -115668,6 +118327,7 @@ github.com/MadKudu/node-mixpanel-export, github.com/MadKudu/q-while,num_dependents_deps.dev:0 github.com/MadKudu/url-track,num_dependents_deps.dev:0 github.com/MadLabDesign/skeleton-loader-package,num_dependents_deps.dev:0 +github.com/MadLadSquad/check-for-synced-branches-action, github.com/MadLittleMods/emoji-unicode-version,num_dependents_deps.dev:0 github.com/MadLittleMods/gulp-css-spriter,num_dependents_deps.dev:0 github.com/MadLittleMods/gulp-image-diff,num_dependents_deps.dev:0 @@ -115713,6 +118373,7 @@ github.com/Madao-3/vue-train-timetable,num_dependents_deps.dev:0 github.com/Madao-3/wasm-sudoku,num_dependents_deps.dev:0 github.com/MadaraUchiha/chusha,num_dependents_deps.dev:0 github.com/MadaraUchiha/config-resolver,num_dependents_deps.dev:0 +github.com/MadaraUchiha/copy-action, github.com/MadaraUchiha/karma-spring-messages-preprocessor,num_dependents_deps.dev:0 github.com/Madaster/xbimwebui,num_dependents_deps.dev:0 github.com/MadcapJake/earl-hyperscript,num_dependents_deps.dev:0 @@ -115728,6 +118389,7 @@ github.com/MaddHacker/output-manager,num_dependents_deps.dev:0 github.com/MaddHacker/server-lite,num_dependents_deps.dev:0 github.com/MaddHacker/string-utilz,num_dependents_deps.dev:6 github.com/MaddHacker/twitter-js,num_dependents_deps.dev:0 +github.com/Maddog2050/executable-wrapper, github.com/Maddonix/ukw-intelli-store, github.com/Maddonix/ukw-ml-tools, github.com/Maddonix/ukw_fax, @@ -115739,6 +118401,8 @@ github.com/MadeByMads/mad-migration, github.com/MadeByMike/periodic-layout,num_dependents_deps.dev:0 github.com/MadeByMike/untitled-grid, github.com/MadeByMunstersLLC/angular-waiting-button,num_dependents_deps.dev:0 +github.com/MadeByThePinsHub/setup-railway-cli-action, +github.com/MadeByThePinsHub/tailscale-action-labels, github.com/MadeHQ/baseplate-cloudinary,num_dependents_deps.dev:0 github.com/MadeHQ/baseplate-core,num_dependents_deps.dev:0 github.com/MadeInDreams-Team/node-sentry, @@ -115747,6 +118411,7 @@ github.com/MadeInHaus/ajpngasm,num_dependents_deps.dev:0 github.com/MadeInHaus/prettier-config,num_dependents_deps.dev:0 github.com/MadeInMoon/react-thumb-up,num_dependents_deps.dev:0 github.com/MadeMediaCorp/cordova-plugins,num_dependents_deps.dev:0 +github.com/MadeRelevant/update-gitops-action, github.com/MadeWithCards/adaptivecards-vue,num_dependents_deps.dev:0 github.com/MadeWithJiro/jiro-sdk,num_dependents_deps.dev:0 github.com/MadebyAe/express-handlebars,num_dependents_deps.dev:0 @@ -115778,6 +118443,7 @@ github.com/Madhava-mng/codelib, github.com/Madhava-mng/openssltool, github.com/Madhava-mng/pyloadart, github.com/Madhavraob/generator-mvl2,num_dependents_deps.dev:0 +github.com/Madhu-1/retest-action, github.com/Madhu1495/resume, github.com/MadhuPolu/autocomplete.js, github.com/MadhushaPrasad/backgroundColorChanger,num_dependents_deps.dev:0 @@ -115821,6 +118487,8 @@ github.com/Madrapps/AsyncQuery,num_dependents_deps.dev:0 github.com/Madrapps/Bubbles,num_dependents_deps.dev:0 github.com/Madrapps/EyeDropper,num_dependents_deps.dev:0 github.com/Madrapps/Pikolo,num_dependents_deps.dev:0 +github.com/Madrapps/add-reviewers, +github.com/Madrapps/jacoco-report, github.com/Madrok/qwkpkt,num_dependents_deps.dev:0 github.com/MadryLab/cifar10_challenge,Google github.com/MadryLab/cox, @@ -115857,8 +118525,10 @@ github.com/MaelWeb/upload-to-qiniu-webpack-plugin,num_dependents_deps.dev:0 github.com/MaenAbdulhadi91/nodebb-theme-nhp-custom-theme,num_dependents_deps.dev:0 github.com/MaenAbdulhadi91/nodebb-theme-nhp-theme, github.com/Maerig/sdbdump, +github.com/Maes95/maven-action, github.com/Maestro-Zacht/allianceauth-graphql, github.com/MaestroJolly/rave-ruby,num_dependents_deps.dev:0 +github.com/Maetis/github-action-tfxinstaller, github.com/Mafalda-SFU/FsSet,num_dependents_deps.dev:0 github.com/Mafalda-SFU/ReadonlyMap,num_dependents_deps.dev:0 github.com/MaffPerez/LIM015-md-links,num_dependents_deps.dev:0 @@ -115925,6 +118595,8 @@ github.com/MagentexSoftware/Kepler,num_dependents_deps.dev:0 github.com/MagentexSoftware/kepler-glfw,num_dependents_deps.dev:0 github.com/MagerValp/AutoDMG,criticality_score:0.365570 github.com/Maggi-Andrea/fs.imapfs, +github.com/Maggi64/kubectl-argo-rollout-aws-eks, +github.com/Maggi64/mongo-clone-action, github.com/Maggie216jie/mw-components,num_dependents_deps.dev:0 github.com/MaggieAppleton/digital-gardeners,criticality_score:0.334040 github.com/MaggieDeVito/lotide,num_dependents_deps.dev:0 @@ -115961,6 +118633,7 @@ github.com/MagicFun1241/anime4k,num_dependents_deps.dev:0 github.com/MagicFun1241/react-native-material-dropdown, github.com/MagicFun1241/sakura-sdk,num_dependents_deps.dev:0 github.com/MagicFun1241/streamer,num_dependents_deps.dev:0 +github.com/MagicFun1241/unixtime-action, github.com/MagicFun1241/waifu2x,num_dependents_deps.dev:0 github.com/MagicGreenDragon/winsyspath, github.com/MagicGreenDragon/winver, @@ -116047,9 +118720,12 @@ github.com/Magikcraft/server-sma,num_dependents_deps.dev:0 github.com/Magikcraft/smac, github.com/Magikevolution/sails-hook-magik-tenant,num_dependents_deps.dev:0 github.com/Magikevolution/sails-swagger,num_dependents_deps.dev:0 +github.com/Magikon/github-tag-action, +github.com/Magikon/mtag, github.com/Magillem/generator-jhipster-pages, github.com/Magination/nodebb-plugin-magination-points,num_dependents_deps.dev:0 github.com/Magister/js-lzma,num_dependents_deps.dev:6 +github.com/MagistrAVSH/rsync-deployments, github.com/Magmmi/garbage-func,num_dependents_deps.dev:0 github.com/Magmmi/testdir,num_dependents_deps.dev:0 github.com/MagnaXSoftware/python-inlineimporter, @@ -116151,12 +118827,14 @@ github.com/Magora-Systems-Frontend/mgr-gulp-angular-template,num_dependents_deps github.com/Magora-Systems-Frontend/mgr-validation,num_dependents_deps.dev:0 github.com/MagpieEmbedded/pysimpleapp, github.com/Magrippinho/js-cookies,num_dependents_deps.dev:0 +github.com/MagyarZoli/podcast-generator, github.com/MahApps/MahApps.Metro,criticality_score:0.633350 github.com/MahApps/MahApps.Metro.IconPacks,criticality_score:0.436010 github.com/MahShaaban/pycr, github.com/MahaDao/uniswap-sdk, github.com/Mahamed-Belkheir/qufl, github.com/Mahammad8564/sql-ddl-to-mongoose-schema,num_dependents_deps.dev:0 +github.com/Mahan-F/test-project-action, github.com/MahanBi/MakeDjango, github.com/Mahanotrahul/mysocks, github.com/MahanthMohan/fputsModule, @@ -116209,6 +118887,7 @@ github.com/MahmoudAliIbrahim/react-native-fawry-sdk,num_dependents_deps.dev:0 github.com/MahmoudAliIbrahim/react-native-loading-view,num_dependents_deps.dev:0 github.com/MahmoudOsama97/DL-Framework-Project, github.com/MahmoudRe/QueryString,num_dependents_deps.dev:0 +github.com/Mahmoudgalalz/surge-action, github.com/Mahmud-Iftekhar-Zamil/COLOR4CONSOLE, github.com/MahmudHamid/norsani-api-js,num_dependents_deps.dev:0 github.com/MahmudHamid/react-native-norsani-api,num_dependents_deps.dev:0 @@ -116271,6 +118950,7 @@ github.com/MaikoTan/boorukits, github.com/Maikscau/printdirlog, github.com/Maikscau/wx-delay-loading,num_dependents_deps.dev:0 github.com/MaikuB/flutter_local_notifications,criticality_score:0.509380 +github.com/Maikuh/chart-releaser-private-action, github.com/MailCore/mailcore2,criticality_score:0.503420 github.com/MailOnline/VPAIDFLASHClient,"Google,num_dependents_deps.dev:0" github.com/MailOnline/VPAIDHTML5Client,"Google,num_dependents_deps.dev:0" @@ -116346,6 +119026,7 @@ github.com/MainSystemDev/rf-seleniumextensionlibray, github.com/MainUserDrive/hastebin-post,num_dependents_deps.dev:0 github.com/MainaKamau92/JengaAPIPythonWrapper, github.com/Maindarker/wk-tools,num_dependents_deps.dev:0 +github.com/MaineK00n/latex-actions, github.com/MaineKuehn/classad, github.com/MaineKuehn/gksol, github.com/MaineKuehn/indico_footer, @@ -116373,6 +119054,7 @@ github.com/Mair/create-esp32-app,num_dependents_deps.dev:0 github.com/Mairu/swagger-ui-apikey-auth-form,num_dependents_deps.dev:0 github.com/MaisTodos/pynamodb-plus, github.com/MaisaMilena/inferno-canvas-component,num_dependents_deps.dev:0 +github.com/Maissacrement/PocArmv8byAndroid, github.com/MaistrenkoAnton/django-material-admin, github.com/Maitre-Pangolin/mw-username-generator,num_dependents_deps.dev:0 github.com/MaitreRenard/MonSQL-python, @@ -116381,6 +119063,7 @@ github.com/MajAhd/py_validations, github.com/MajedBojan/simple_request,num_dependents_deps.dev:0 github.com/MajesticFalcon/netbox_plugin_gpon, github.com/MajesticPotatoe/vue-cli-plugin-electron-vuetify,num_dependents_deps.dev:0 +github.com/MajesticString/action-hosting-deploy, github.com/MajicDesigns/MD_Parola,criticality_score:0.324490 github.com/Majidahmadi/typetest,num_dependents_deps.dev:0 github.com/Majiir/safesocket,num_dependents_deps.dev:0 @@ -116402,6 +119085,7 @@ github.com/MajorDOOM/node-rfxcomdecode,num_dependents_deps.dev:0 github.com/MajorDong/Orange,num_dependents_deps.dev:0 github.com/MajorLeagueBaseball/g5-component,num_dependents_deps.dev:0 github.com/MajorMaad/math-matrix,num_dependents_deps.dev:0 +github.com/MajorScruffy/delete-old-workflow-runs, github.com/MajorTom327/spf-master, github.com/MajorZiploc/json-test-utility,num_dependents_deps.dev:0 github.com/MajorZiploc/npm_registry_example,num_dependents_deps.dev:0 @@ -116420,6 +119104,7 @@ github.com/MakakeCommunity/create-react-app,num_dependents_deps.dev:0 github.com/Makanz/chartjs-plugin-trendline,num_dependents_deps.dev:0 github.com/MakarenkoDmitry/react-locale-app,num_dependents_deps.dev:0 github.com/MakarovAV/health-gorilla-ui-kit-test,num_dependents_deps.dev:0 +github.com/MakarovAleksey/add-labels, github.com/MakarovAlex/create-react-app,num_dependents_deps.dev:0 github.com/Makas9/hdwallet-generator,num_dependents_deps.dev:0 github.com/Makay11/express-builder,num_dependents_deps.dev:0 @@ -116430,6 +119115,7 @@ github.com/Makcy/react-native-test-demo, github.com/Make-Lemonade/iconicicons,num_dependents_deps.dev:0 github.com/Make-School-Labs/fizz-buzz-test, github.com/MakeAWishFoundation/SwiftyMocky,criticality_score:0.322440 +github.com/MakeAndDevelop/firebase-appversion, github.com/MakeCents-NYC/flask-sawtooth, github.com/MakeCents-NYC/makecents-exceptionst, github.com/MakeDirtyCode/webhook-receiver, @@ -116463,11 +119149,13 @@ github.com/MakePuzz/puzzleimage, github.com/MakeSchool/remark-preset-lint-make-school,num_dependents_deps.dev:0 github.com/MakeShiftArtist/AverageiFunnier,num_dependents_deps.dev:0 github.com/Makeblock-Official/NodeForMegaPi, +github.com/Makepad-fr/auto-release-on-version-bump-action, github.com/Makepad-fr/fbjs,num_dependents_deps.dev:0 github.com/Makepad-fr/fbjs-cli, github.com/Makepad-fr/puppeteer-cli,num_dependents_deps.dev:0 github.com/Makepad-fr/school-names-turkey,num_dependents_deps.dev:0 github.com/Makepad-fr/yacl,num_dependents_deps.dev:0 +github.com/Maker-Mark/expo-preview-action, github.com/MakerCollider/node-red-contrib-neuralnetwork,num_dependents_deps.dev:0 github.com/MakerCollider/node-red-contrib-smartnode,num_dependents_deps.dev:0 github.com/MakerCollider/node-red-contrib-smartnode-dfrobot,num_dependents_deps.dev:0 @@ -116482,6 +119170,8 @@ github.com/MakerReduxCorp/rolne, github.com/Makeshan/wp-inject-config,num_dependents_deps.dev:0 github.com/Makeshift/connor-base-config,num_dependents_deps.dev:0 github.com/Makeshift/connor-base-log,num_dependents_deps.dev:0 +github.com/Makeshift/generate-dependabot-glob-action, +github.com/Makeshift/increment-semver, github.com/MakhBeth/js-to-scss,num_dependents_deps.dev:0 github.com/MakingASlackBot/number-formatter,num_dependents_deps.dev:0 github.com/MakingSense/MSUIF,num_dependents_deps.dev:0 @@ -116578,6 +119268,7 @@ github.com/Malcomian/zipadeedoodah, github.com/MalcoreHardcore698/react-notify,num_dependents_deps.dev:0 github.com/Maldonado-J/inet-mytinerary,num_dependents_deps.dev:0 github.com/MalesM/react-native-soundpool,num_dependents_deps.dev:0 +github.com/MalevichAI/auto-ci, github.com/Malex/statcode, github.com/Malexion/aurelia-table,num_dependents_deps.dev:0 github.com/Malexion/iterate-js,num_dependents_deps.dev:0 @@ -116599,6 +119290,7 @@ github.com/MaliciousMonkey/JXR-Ant,num_dependents_deps.dev:0 github.com/MaliciousMonkey/liquibase-slf4j,num_dependents_deps.dev:2 github.com/Malick-stack/mkiva,num_dependents_deps.dev:0 github.com/Malick-stack/react-native-easy-increamentation, +github.com/Maliek2/ghost, github.com/Maliffic/nestjs-pusher, github.com/Maliffic/nestjs-sentry,num_dependents_deps.dev:0 github.com/Maliffic/nestjs-twilio,num_dependents_deps.dev:0 @@ -116776,6 +119468,9 @@ github.com/Manc/icalzone, github.com/Manc/promisifyer,num_dependents_deps.dev:0 github.com/ManchesterBioinference/BranchedGP, github.com/Manciukic/xpysom, +github.com/MandalAutomations/Get-Issue, +github.com/MandalAutomations/Increment-Environment-Variable, +github.com/MandalAutomations/Update-Environment-Variable, github.com/MandarGogate/RNNSim, github.com/MandarJKulkarni/lascheck, github.com/MandarinConLaBarba/docolate,num_dependents_deps.dev:0 @@ -116916,6 +119611,7 @@ github.com/ManiaJS/ManiaJS,num_dependents_deps.dev:0 github.com/ManiaJS/gbxparser,num_dependents_deps.dev:0 github.com/ManiaJS/plugins,num_dependents_deps.dev:0 github.com/ManiacalLabs/BiblioPixelNeoSegment, +github.com/ManiaciaChao/aur-sync-action, github.com/ManicEuphoria/algoru,num_dependents_deps.dev:0 github.com/Manideepto/SiteLinksCheck, github.com/Maniez/homebridge-FestoCpxControl,num_dependents_deps.dev:0 @@ -116994,7 +119690,9 @@ github.com/MannyIOI/progressive-wizard,num_dependents_deps.dev:0 github.com/ManoManoTech/serverless-plugin-tagsns,num_dependents_deps.dev:0 github.com/Manogel/cra-template-manogel,num_dependents_deps.dev:0 github.com/Manogel/cra-template-veltrix-manogel,num_dependents_deps.dev:0 +github.com/Manogel/jest-pr-analysis, github.com/Manohar-Gunturu/calendar-lite,num_dependents_deps.dev:0 +github.com/Manoj-Paramsetti/greets-action, github.com/ManojlovicMilos/ToyBox,num_dependents_deps.dev:0 github.com/Manojython/aqiretrieve, github.com/ManoloAlvarezForo/janus-ts-sdk,num_dependents_deps.dev:0 @@ -117012,6 +119710,9 @@ github.com/ManrajGrover/microbar,num_dependents_deps.dev:0 github.com/ManrajGrover/organize-cli,num_dependents_deps.dev:0 github.com/ManrajGrover/organizeit,num_dependents_deps.dev:0 github.com/MansMeg/posteriordb, +github.com/MansaGroup/gcs-cache-action, +github.com/MansaGroup/nrwl-nx-action, +github.com/MansaGroup/renovate-merge-action, github.com/Mansehej/Firestore-Composite-Index-Generator,num_dependents_deps.dev:0 github.com/Mansehej/Musik.js, github.com/Mansh05/quantumms-cnc-stimulus-forms,num_dependents_deps.dev:0 @@ -117300,6 +120001,7 @@ github.com/MaratIldarovich/nice_phone,num_dependents_deps.dev:0 github.com/MaratMartirosyan999/my-npm,num_dependents_deps.dev:0 github.com/MaratMartirosyan999/secondRepository,num_dependents_deps.dev:0 github.com/MaratSaidov/artificial-text-detection, +github.com/MarathonLabs/action-test, github.com/Maratyszcza/FP16,Google github.com/Maratyszcza/FXdiv,Google github.com/Maratyszcza/NNPACK,criticality_score:0.318840 @@ -117390,6 +120092,7 @@ github.com/MarcWang/tcitsdk-nodejs,num_dependents_deps.dev:0 github.com/MarcWeber/vim-addon-manager,criticality_score:0.318810 github.com/MarcYin/S2_TOA_TO_LAI, github.com/MarcYin/SIAC, +github.com/Marcanta/setup-ssh-keys, github.com/MarcatiliLab/EmulsiPred, github.com/Marce-8888/SCL013-md-links,num_dependents_deps.dev:0 github.com/MarceMMAD/prueba_paquete, @@ -117403,6 +120106,7 @@ github.com/MarcelBalsiger/ngl_resum, github.com/MarcelBlockchain/eosjs-node-cli,num_dependents_deps.dev:0 github.com/MarcelBlockchain/eosjs-react-native,num_dependents_deps.dev:0 github.com/MarcelBlockchain/react-native-eosjs-ecc,num_dependents_deps.dev:0 +github.com/MarcelBochtler/team-labeler-action, github.com/MarcelLZ/react-select-field, github.com/MarcelMichau/wallangle,num_dependents_deps.dev:0 github.com/MarcelSimader/SEPModules, @@ -117441,6 +120145,7 @@ github.com/MarceloJacinto/BSplineFit, github.com/MarceloJacinto/joystick-controller, github.com/MarceloLeite2604/eslint-config,num_dependents_deps.dev:0 github.com/MarceloPilatti/terrabrasilis-api,num_dependents_deps.dev:0 +github.com/MarceloPrado/has-changed-path, github.com/March-Hdz-Carba/GDL002-md-links,num_dependents_deps.dev:0 github.com/MarchTs/http-options,num_dependents_deps.dev:4 github.com/MarchWorks/colortone,num_dependents_deps.dev:0 @@ -117453,6 +120158,7 @@ github.com/Marcin-Duszynski/aws-lambda-logger-for-python, github.com/Marcin-Rogalski/electron-live,num_dependents_deps.dev:0 github.com/Marcin-Rogalski/webpac-file-manager,num_dependents_deps.dev:0 github.com/Marcin-Rogalski/webpack-helper,num_dependents_deps.dev:0 +github.com/MarcinGadomski94/pr-update-work-item-state, github.com/MarcinKoziuk/react-responsive-modal,num_dependents_deps.dev:0 github.com/MarcinMichalik/bsmodal,num_dependents_deps.dev:0 github.com/MarcinMichalik/ng-scrollTo,num_dependents_deps.dev:0 @@ -117470,6 +120176,7 @@ github.com/Marcisbee/actions-test,num_dependents_deps.dev:0 github.com/Marcisbee/boldom,num_dependents_deps.dev:0 github.com/Marcisbee/chipolette,num_dependents_deps.dev:0 github.com/Marcisbee/datacsv,num_dependents_deps.dev:0 +github.com/Marcisbee/dependency-check-action, github.com/Marcisbee/esjson,num_dependents_deps.dev:0 github.com/Marcisbee/exome,num_dependents_deps.dev:0 github.com/Marcisbee/letype,num_dependents_deps.dev:0 @@ -117521,6 +120228,8 @@ github.com/MarcoDaniels/cockpit-http-client,num_dependents_deps.dev:0 github.com/MarcoDaniels/cockpit-type,num_dependents_deps.dev:0 github.com/MarcoDaniels/environment-decoder,num_dependents_deps.dev:0 github.com/MarcoDaniels/wardrobe,num_dependents_deps.dev:0 +github.com/MarcoEidinger/swift-api-assign-reviewer, +github.com/MarcoEidinger/swift-package-dependencies-check, github.com/MarcoFaul/gridsome-source-shopware6,num_dependents_deps.dev:0 github.com/MarcoFavorito/moby_dict, github.com/MarcoFavorito/pythogic, @@ -117537,6 +120246,7 @@ github.com/MarcoGorelli/check-execution-order, github.com/MarcoGorelli/dequote-annotations, github.com/MarcoGorelli/madforhooks, github.com/MarcoGorelli/no-string-hints, +github.com/MarcoIeni/release-plz-action, github.com/MarcoLoPinto/DuckDNSUpdater, github.com/MarcoLoPinto/updateDuckDNS,num_dependents_deps.dev:0 github.com/MarcoMadera/random-messages-names, @@ -117584,6 +120294,7 @@ github.com/MarcosRMonzon/ramdom-messages-mrmyomark, github.com/MarcosRava/cep-brazil,num_dependents_deps.dev:0 github.com/MarcosRava/es6-angular-directive-boilerplate,num_dependents_deps.dev:0 github.com/MarcosRava/model-structure,num_dependents_deps.dev:0 +github.com/MarcosRava/semver-release-type, github.com/MarcosRecio/PowerSet, github.com/MarcosRochaPrimordial/decorated-router,num_dependents_deps.dev:0 github.com/MarcosRochaPrimordial/mj-framework,num_dependents_deps.dev:0 @@ -117639,6 +120350,7 @@ github.com/MarekKowalski/LiveScan3D,criticality_score:0.302980 github.com/MarekLabuz/babel-plugin-gruu,num_dependents_deps.dev:0 github.com/MarekLabuz/lets-paginate,num_dependents_deps.dev:0 github.com/MarekLani/botframeworksentimentmiddlewarejs,num_dependents_deps.dev:0 +github.com/MarekPinski/pr-content-validation, github.com/MarekSuchanek/asya, github.com/MarekSuchanek/labelord, github.com/MarekSuchanek/repocribro, @@ -117686,6 +120398,7 @@ github.com/MariaNattestad/multisegmentScale,num_dependents_deps.dev:0 github.com/MariaOskarsdottir/MultilayerCreditScoring, github.com/MariaSilvania/validador-cartao-credito,num_dependents_deps.dev:4 github.com/MariaTahir504/lodown,num_dependents_deps.dev:0 +github.com/MariachiBear/get-repo-name-action, github.com/MariadlRosa-1224/motivational-messages,num_dependents_deps.dev:0 github.com/MariamMohamedFawzy/KittiAug, github.com/Mariamjamal32/gwrapper_consumer, @@ -117707,6 +120420,7 @@ github.com/MarianoWalter/eslint-config,num_dependents_deps.dev:0 github.com/MarianoWalter/mwd,num_dependents_deps.dev:0 github.com/Mariapaulad1/conversor,num_dependents_deps.dev:0 github.com/Mariapaulad1/platzom,num_dependents_deps.dev:0 +github.com/Mariatta/mariatta-gh-action, github.com/Mariatta/pytaco, github.com/MaricoJs/MarCommander,num_dependents_deps.dev:0 github.com/MaridProject/typedmap,num_dependents_deps.dev:0 @@ -117842,6 +120556,7 @@ github.com/MarkBennett/greeter,num_dependents_deps.dev:0 github.com/MarkBezrukaviy/ng6-notify-popup,num_dependents_deps.dev:0 github.com/MarkBiesheuvel/poker-hand-evaluator,num_dependents_deps.dev:0 github.com/MarkBind/markbind,num_dependents_deps.dev:6 +github.com/MarkBind/markbind-action, github.com/MarkBind/vue-strap,num_dependents_deps.dev:0 github.com/MarkCBall/RandomNumber,num_dependents_deps.dev:0 github.com/MarkCBell/bigger, @@ -117927,6 +120642,8 @@ github.com/MarkLark/flask-dstore, github.com/MarkLark/pyman, github.com/MarkLinus/Buildjs,num_dependents_deps.dev:0 github.com/MarkLyck/chatbot-normalizer,num_dependents_deps.dev:0 +github.com/MarkLyck/gh-action-bump-version, +github.com/MarkLyck/gitmoji-changelog-action, github.com/MarkMYoung/ArrayToolbox,num_dependents_deps.dev:0 github.com/MarkMYoung/BetterDate,num_dependents_deps.dev:0 github.com/MarkMYoung/DateCollator,num_dependents_deps.dev:0 @@ -118049,6 +120766,7 @@ github.com/Markcial/pygal_maps_es, github.com/Markdown-it/markdown-it,"num_dependents_deps.dev:0,criticality_score:0.558020,num_dependents_deps.dev:11158" github.com/MarkdownDoc/markdowndoc-theme-default,num_dependents_deps.dev:0 github.com/MarkedBots/ChatBot-CE,num_dependents_deps.dev:0 +github.com/MarkedDown/News, github.com/MarkehMe/ah-middleware,num_dependents_deps.dev:0 github.com/MarkelHoxha1/Data-Generator,num_dependents_deps.dev:0 github.com/MarkelovSA/grunt-swig-templates-msa,num_dependents_deps.dev:0 @@ -118073,6 +120791,7 @@ github.com/Marketcircle/jiraSOAP,num_dependents_deps.dev:0 github.com/Marketcircle/thriftasyncioserver, github.com/Marketcloud/marketcloud-js,num_dependents_deps.dev:0 github.com/Marketcloud/marketcloud-node,num_dependents_deps.dev:0 +github.com/MarketingPipeline/OCR-PDF-Action, github.com/Marketionist/cms-protractor-helper,num_dependents_deps.dev:0 github.com/Marketionist/img-link-checker,num_dependents_deps.dev:0 github.com/Marketionist/js-automation-tools,num_dependents_deps.dev:0 @@ -118152,6 +120871,8 @@ github.com/MarkusH/django-migrations-formatter, github.com/MarkusH/django-osm-field, github.com/MarkusH/flask-pancake, github.com/MarkusH/gitbackhub, +github.com/MarkusJx/googletest-installer, +github.com/MarkusJx/install-boost, github.com/MarkusJx/n-api-tools,num_dependents_deps.dev:0 github.com/MarkusJx/node-java-bridge, github.com/MarkusJx/node-ms-passport,num_dependents_deps.dev:0 @@ -118179,6 +120900,7 @@ github.com/MarlonJD/django-rest-auth, github.com/MarlonLuan/hugo-bin-extended,num_dependents_deps.dev:0 github.com/MarlonX19/taskbox, github.com/Marlond25/easy-reactstrap-form,num_dependents_deps.dev:0 +github.com/Marloxo/compile-mermaid-markdown-action, github.com/Marlrus/walrus-tools,num_dependents_deps.dev:0 github.com/MarlvinzW/BulkSmsZim-Api, github.com/Marmelatze/avea_node,num_dependents_deps.dev:0 @@ -118201,6 +120923,7 @@ github.com/Maronato/vue-toast,num_dependents_deps.dev:0 github.com/Maronato/vue-toastification,criticality_score:0.416610 github.com/Maros316/create-project,num_dependents_deps.dev:0 github.com/Marouandev/gatsby-plugin-drupal-comments,num_dependents_deps.dev:0 +github.com/MarounMaroun/shell-checker, github.com/MarqQ/pythonrepoautomation, github.com/Marqin/bns-rs,num_dependents_deps.dev:0 github.com/MarquezProject/marquez,criticality_score:0.459100 @@ -118241,6 +120964,7 @@ github.com/MarshalX/python-webrtc, github.com/MarshalX/tgcalls, github.com/MarshalX/tlo,num_dependents_deps.dev:0 github.com/MarshalX/yandex-music-api,criticality_score:0.392800 +github.com/MarshallAsch/ns3-action, github.com/MarshallCB/dotz,num_dependents_deps.dev:0 github.com/MarshallCB/rollup-plugin-cloudport,num_dependents_deps.dev:0 github.com/MarshallCB/rollup-plugin-skypin,num_dependents_deps.dev:0 @@ -118273,6 +120997,7 @@ github.com/MarswapV1/marswap-lib,num_dependents_deps.dev:0 github.com/MarswapV1/marswap-v2-core,num_dependents_deps.dev:0 github.com/Mart100/Moosic,num_dependents_deps.dev:0 github.com/Mart100/minehutSkriptUploader,num_dependents_deps.dev:0 +github.com/Marta83/funny-comment-action, github.com/Martaly/Aly-CLI,num_dependents_deps.dev:0 github.com/Martaly/Aly-npxcard,num_dependents_deps.dev:0 github.com/MarteenSolutions/eslint-config-marteen,num_dependents_deps.dev:0 @@ -118302,6 +121027,7 @@ github.com/Martin-Jia/logInNOut, github.com/Martin-MacDonald/decimal-to-roman-converter,num_dependents_deps.dev:0 github.com/Martin-MacDonald/roman-to-decimal-converter,num_dependents_deps.dev:0 github.com/Martin-Pitt/console-extended,num_dependents_deps.dev:0 +github.com/Martin005/pyinstaller-action, github.com/Martin0809/modaler,num_dependents_deps.dev:0 github.com/Martin0809/reacter,num_dependents_deps.dev:0 github.com/Martin1887/oxigen,num_dependents_deps.dev:0 @@ -118345,6 +121071,7 @@ github.com/MartinGentleman/conditional-expression,num_dependents_deps.dev:0 github.com/MartinGoulet/bga-ts-types,num_dependents_deps.dev:0 github.com/MartinGris/node-red-contrib-skoda-connect,num_dependents_deps.dev:0 github.com/MartinHaeusler/chronos,num_dependents_deps.dev:0 +github.com/MartinHeinz/dive-action, github.com/MartinHelmut/berries,num_dependents_deps.dev:0 github.com/MartinHelmut/nerder-index,num_dependents_deps.dev:0 github.com/MartinHelmut/number-generator,num_dependents_deps.dev:0 @@ -118387,6 +121114,7 @@ github.com/MartinKolarik/relative-day-utc,num_dependents_deps.dev:0 github.com/MartinKolarik/stylelint-config,num_dependents_deps.dev:0 github.com/MartinKolarik/v-compare,num_dependents_deps.dev:0 github.com/MartinKristof/bem-linter,num_dependents_deps.dev:0 +github.com/MartinKukolos/action-ftp-deployment, github.com/MartinL83/react-use-fuse,num_dependents_deps.dev:0 github.com/MartinLG/nuxt-custom-headers,num_dependents_deps.dev:0 github.com/MartinLG/redis-component-cache,num_dependents_deps.dev:0 @@ -118403,6 +121131,7 @@ github.com/MartinMuzatko/flexproperties,num_dependents_deps.dev:0 github.com/MartinMuzatko/hjson-config,num_dependents_deps.dev:0 github.com/MartinMuzatko/hjsonw,num_dependents_deps.dev:0 github.com/MartinNuc/c3-angularjs,num_dependents_deps.dev:0 +github.com/MartinNuc/codeclimate-action, github.com/MartinNuc/homebridge-logic-data-table,num_dependents_deps.dev:0 github.com/MartinParrish/aglio-theme-shoelace,num_dependents_deps.dev:0 github.com/MartinPavlik/chai-types-no-global,num_dependents_deps.dev:0 @@ -118410,6 +121139,7 @@ github.com/MartinPavlik/node-base64,num_dependents_deps.dev:0 github.com/MartinPavlik/ramda-async,num_dependents_deps.dev:0 github.com/MartinPdeS/DataVisual, github.com/MartinPdeS/SuPyMode, +github.com/MartinQuesada/eks-helm-deploy-action, github.com/MartinR2295/rm-options, github.com/MartinR2295/rm-sec-toolkit, github.com/MartinRBX/bloxy,num_dependents_deps.dev:0 @@ -118550,6 +121280,7 @@ github.com/Marvin1003/react-images-lazy,num_dependents_deps.dev:0 github.com/Marvin1003/webpack-installer,num_dependents_deps.dev:0 github.com/Marvin9/gsoc-timeline,num_dependents_deps.dev:0 github.com/Marvin9/trackify,num_dependents_deps.dev:0 +github.com/MarvinDrude/DotNet.GitHubActionMetrics, github.com/MarvinErkes/thing-it-device-speech,num_dependents_deps.dev:0 github.com/MarvinJWendt/express-sec,num_dependents_deps.dev:0 github.com/MarvinJWendt/files-watcher, @@ -118559,6 +121290,7 @@ github.com/MarvinJWendt/node-hash-all,num_dependents_deps.dev:0 github.com/MarvinJWendt/node-test-hash,num_dependents_deps.dev:0 github.com/MarvinJWendt/npm-prettier-setup,num_dependents_deps.dev:0 github.com/MarvinJWendt/prettier-setup, +github.com/MarvinJWendt/run-node-formatter, github.com/MarvinJWendt/watch-here,num_dependents_deps.dev:0 github.com/MarvinKweyu/ColorDetect, github.com/MarvinRudolph/nuxt-storyblok-router,num_dependents_deps.dev:0 @@ -118575,6 +121307,7 @@ github.com/MarvineGothic/gym_doom, github.com/Marvinified/graphless,num_dependents_deps.dev:0 github.com/Marvinified/use-file-upload,num_dependents_deps.dev:0 github.com/Marvinified/use-form-input-validator,num_dependents_deps.dev:0 +github.com/Marvv90/discord-notify, github.com/Marwa7246/lotide,num_dependents_deps.dev:0 github.com/MarwanAlsoltany/centum,num_dependents_deps.dev:0 github.com/MarwanDebbiche/pylambdarest, @@ -118625,6 +121358,7 @@ github.com/Masabi/swagwire,num_dependents_deps.dev:0 github.com/MasahideJafa/util,num_dependents_deps.dev:0 github.com/MasahiroHarada/generator-hypertext,num_dependents_deps.dev:0 github.com/MasahiroHarada/tactical-design-code,num_dependents_deps.dev:0 +github.com/Masakinpo/assign-reviewers-by-day, github.com/MasalApper/Docapper,num_dependents_deps.dev:0 github.com/MasalaMunch/collab,num_dependents_deps.dev:0 github.com/MasalaMunch/def-in,num_dependents_deps.dev:0 @@ -118762,6 +121496,7 @@ github.com/MasterMaps/d3-slider,Google github.com/MasterMedo/typetest, github.com/MasterMind2k/flask-phpbb3, github.com/MasterMorsy/superoxide,num_dependents_deps.dev:0 +github.com/MasterOdin/action-vpnc, github.com/MasterOdin/crayons, github.com/MasterOdin/eslint-config-javascript,num_dependents_deps.dev:0 github.com/MasterOdin/eslint-config-typescript,num_dependents_deps.dev:0 @@ -118876,6 +121611,8 @@ github.com/Matduro/lotide,num_dependents_deps.dev:0 github.com/MateLabs/moment-oadate,num_dependents_deps.dev:0 github.com/MateLabs/socketIO-client, github.com/MateMalice/mail-listener2, +github.com/MateSousa/create-release, +github.com/MateSousa/create-release-bot, github.com/Matechs-Garage/matechs-effect,num_dependents_deps.dev:62 github.com/Mateiadrielrafael/Mongy,num_dependents_deps.dev:0 github.com/Mateiadrielrafael/Translucid,num_dependents_deps.dev:0 @@ -118912,6 +121649,7 @@ github.com/MaterializeInc/pulumi-docker-buildkit, github.com/MaterializeInc/pulumi-frontegg, github.com/MaterializeInc/rust-sasl,num_dependents_deps.dev:1 github.com/Materials-Consortia/optimade-python-tools, +github.com/Materials-Consortia/optimade-validator-action, github.com/Materials-Data-Science-and-Informatics/aiida-fenics, github.com/MaterialsDataInfrastructureConsortium/CommonMetadata, github.com/Matericious/Matericious,num_dependents_deps.dev:0 @@ -118940,6 +121678,7 @@ github.com/MateuszCh/froso,num_dependents_deps.dev:0 github.com/MateuszChmielewski99/CollardAdmin,num_dependents_deps.dev:0 github.com/MateuszCieslak/NpmTestPack,num_dependents_deps.dev:0 github.com/MateuszDabrowski/eslint-config-md,num_dependents_deps.dev:0 +github.com/MateuszKuba/python-django-coverage-unamangedmodels, github.com/MateuszKubuszok/useless,num_dependents_deps.dev:0 github.com/MateuszLisowski/mateusz_lisowski-merge-classnames, github.com/MateuszM/awesome-emojify,num_dependents_deps.dev:0 @@ -118978,6 +121717,7 @@ github.com/MatheusBNAguiar/storage-connector,num_dependents_deps.dev:0 github.com/MatheusBordin/react-custom-component,num_dependents_deps.dev:0 github.com/MatheusBrochi/CuteJoe, github.com/MatheusCarpe/Fatequino-robotic-vision, +github.com/MatheusConfortini/setup-lazarus, github.com/MatheusCoxxxta/react-native-select-input,num_dependents_deps.dev:0 github.com/MatheusFullstackOverkill/carousel_component_overblaster_supreme_of_the_galaxy,num_dependents_deps.dev:0 github.com/MatheusMK3/koa-router-static,num_dependents_deps.dev:0 @@ -119049,6 +121789,7 @@ github.com/MathieuLoutre/mock-aws-s3,num_dependents_deps.dev:10 github.com/MathieuLoutre/replacify,num_dependents_deps.dev:0 github.com/MathieuLoutre/shape-detector,num_dependents_deps.dev:0 github.com/MathieuLoutre/wheel.js,num_dependents_deps.dev:0 +github.com/MathieuMoalic/action-python-package-new-version, github.com/MathieuMoalic/adl, github.com/MathieuMoalic/colorconversion, github.com/MathieuMoalic/llyr, @@ -119056,6 +121797,13 @@ github.com/MathieuMoalic/lugh, github.com/MathieuMoalic/qpq, github.com/MathieuPaillart/git-charts,num_dependents_deps.dev:0 github.com/MathieuRS1/vigicrues,num_dependents_deps.dev:0 +github.com/MathieuSoysal/Hiden-dependency-updater, +github.com/MathieuSoysal/Java-maven-library-publisher, +github.com/MathieuSoysal/Javadoc-publisher.yml, +github.com/MathieuSoysal/file-updater-for-release, +github.com/MathieuSoysal/jib-container-publish.yml, +github.com/MathieuSoysal/publish-mutation-testing.yml, +github.com/MathieuSoysal/replace-string-in-file, github.com/MathieuTuli/gutils, github.com/MathieuTurcotte/msparser, github.com/MathieuTurcotte/node-backoff,num_dependents_deps.dev:8612 @@ -119106,6 +121854,7 @@ github.com/MatiFace/mati-verification-api-js,num_dependents_deps.dev:0 github.com/MatiMenich/cordova-plugin-nativeClickSound,num_dependents_deps.dev:0 github.com/MatiasArriola/imaginaria,num_dependents_deps.dev:0 github.com/MatiasFMolinari/tailwindcss-placeholders,num_dependents_deps.dev:0 +github.com/MatiasG19/android-sign, github.com/MatiasHiltunen/boxify,num_dependents_deps.dev:0 github.com/MaticBabnik/wikifeet-js, github.com/Matific/broken-down-models, @@ -119140,6 +121889,7 @@ github.com/Matoking/protontricks,criticality_score:0.376530 github.com/Matoking/pynanocurrency, github.com/Matoking/python-ed25519-blake2b, github.com/MatonAnthony/gook,num_dependents_deps.dev:0 +github.com/MatousJobanek/toolchain-cicd, github.com/Matrafoxy/react-micro-popover,num_dependents_deps.dev:0 github.com/MatriQ/auto-cache,num_dependents_deps.dev:0 github.com/MatriQ/node-iap,num_dependents_deps.dev:0 @@ -119188,6 +121938,7 @@ github.com/Matshec/time_dict, github.com/Matskevichivan/Blend, github.com/Matskevichivan/Calibrate, github.com/Matsukiyo/jsonrpc,num_dependents_deps.dev:0 +github.com/MatsuriJapon/promtool-action, github.com/Matsuuu/lit-flatpickr, github.com/Matsuuu/stoxy,num_dependents_deps.dev:2 github.com/Matsuuu/twitch-chat,num_dependents_deps.dev:0 @@ -119381,9 +122132,11 @@ github.com/MattMcFarland/sequelstore-connect,num_dependents_deps.dev:0 github.com/MattMcFarland/session-passport-info,num_dependents_deps.dev:0 github.com/MattMcNam/streamtip,num_dependents_deps.dev:0 github.com/MattMcNam/streamtip-listener,num_dependents_deps.dev:0 +github.com/MattMencel/validate-fluxcd-action, github.com/MattMoony/pash, github.com/MattMorgis/async-stream-generator,num_dependents_deps.dev:42 github.com/MattMurn/reminiscent, +github.com/MattNotarangelo/PR-review-google-chat-action, github.com/MattPD/cpplinks,criticality_score:0.354760 github.com/MattParr/python-atws, github.com/MattPlayGamez/auth,num_dependents_deps.dev:0 @@ -119440,6 +122193,7 @@ github.com/Matten-Matten/ioBroker.enigma2,num_dependents_deps.dev:0 github.com/Matteo0810/Asia, github.com/MatteoArella/async-openssl,num_dependents_deps.dev:0 github.com/MatteoBuccirossi/djs,num_dependents_deps.dev:0 +github.com/MatteoCampinoti94/changelog-to-release, github.com/MatteoGabriele/barkley,num_dependents_deps.dev:0 github.com/MatteoGabriele/create-npm-package,num_dependents_deps.dev:0 github.com/MatteoGabriele/extract-package,num_dependents_deps.dev:0 @@ -119467,6 +122221,7 @@ github.com/MatteoGuadrini/dinosay, github.com/MatteoGuadrini/nosqlapi, github.com/MatteoGuadrini/pyreports, github.com/MatteoGuadrini/pyrrole, +github.com/MatteoH2O1999/setup-python, github.com/MatteoJoliveau/PlugFace,num_dependents_deps.dev:0 github.com/MatteoLacki/MIDIA, github.com/MatteoLacki/csv_dispatcher, @@ -119826,6 +122581,8 @@ github.com/MattiSG/Watai,num_dependents_deps.dev:0 github.com/MattiSG/requirewith,num_dependents_deps.dev:0 github.com/Mattia46/lerna,num_dependents_deps.dev:0 github.com/MattiaCinelli/mycolorpalette, +github.com/MattiaFailla/android-version-autobump-action, +github.com/MattiaFailla/ios-version-autobump-action, github.com/MattiaMalonni/cordova-ios-plugin-userdefaults,num_dependents_deps.dev:0 github.com/MattiaMarche/magma-magmadocumentor,num_dependents_deps.dev:0 github.com/MattiaMarche/os,num_dependents_deps.dev:0 @@ -119843,6 +122600,8 @@ github.com/MattiasMansson/react-native-elevate,num_dependents_deps.dev:0 github.com/MattiasMartens/big-m, github.com/MattiasPernhult/snacks,num_dependents_deps.dev:0 github.com/Matticusau/EzyReqParamHelperJS,num_dependents_deps.dev:0 +github.com/Matticusau/pr-helper, +github.com/Matticusau/projectcard-autolabel, github.com/MattieBelt/strapi-email-nodemailer-gmail-oath2,num_dependents_deps.dev:0 github.com/MattieBelt/strapi-hook-algolia,num_dependents_deps.dev:0 github.com/MattieBelt/strapi-plugin-international-fields,num_dependents_deps.dev:0 @@ -119859,17 +122618,20 @@ github.com/MattouFP/midijs,num_dependents_deps.dev:0 github.com/MattouFP/mongoose-beautiful-unique-validation,num_dependents_deps.dev:0 github.com/Mattowsky/skeleton-framework,num_dependents_deps.dev:0 github.com/MattrAus/odesli.js,num_dependents_deps.dev:0 +github.com/Mattraks/delete-workflow-runs, github.com/MattsGitCode/razorscript,num_dependents_deps.dev:0 github.com/MattsSe/crossref-rs,num_dependents_deps.dev:0 github.com/MattsSe/msphere-starter,num_dependents_deps.dev:0 github.com/MattsSe/sublercli-rs,num_dependents_deps.dev:0 github.com/Matty9191/ssl-cert-check,criticality_score:0.304270 github.com/MattyIce/postpromoter,num_dependents_deps.dev:0 +github.com/MattyJ007/test-action-ansible-playbook, github.com/MattyRad/vue-i18n,num_dependents_deps.dev:0 github.com/MatulaDesign/chipper,num_dependents_deps.dev:0 github.com/MatulaDesign/lumberyard-chipper, github.com/MatulaDesign/lumberyard-plugin-template,num_dependents_deps.dev:0 github.com/MatulaDesign/lumberyard-react-doomsday, +github.com/Matuyuhi/generate-user-stat-graph-action, github.com/MatveiT/GraphFromOSM,num_dependents_deps.dev:0 github.com/Matvey-Kuk/cspark-python, github.com/MatvilCorp/create-react-app,num_dependents_deps.dev:0 @@ -119906,6 +122668,7 @@ github.com/Maumasi/log-me,num_dependents_deps.dev:0 github.com/MaungSan/sematable, github.com/MaurerKrisztian/Authentication-Middlewares,num_dependents_deps.dev:0 github.com/MaurerKrisztian/command-pattern-queue,num_dependents_deps.dev:0 +github.com/MaurerKrisztian/issue-improver-action, github.com/MaurerKrisztian/minimal-dependency-injection, github.com/MauriDV/generator-basic-mern-structure, github.com/MauriceBenink/python_stream_zipper, @@ -120064,6 +122827,7 @@ github.com/Mavlarn/vantiq-stream-sdk,num_dependents_deps.dev:0 github.com/Mavricus/flex-cache-critical-section,num_dependents_deps.dev:0 github.com/Mavricus/flex-cache-in-memory,num_dependents_deps.dev:0 github.com/Mavricus/flex-cache-redis,num_dependents_deps.dev:0 +github.com/Mavrikant/clang-format-action, github.com/Mavrin/gitbook-plugin-jsfiddle,num_dependents_deps.dev:0 github.com/Mavrin/karma-yatra,num_dependents_deps.dev:0 github.com/Mavrin/maskInput,num_dependents_deps.dev:0 @@ -120134,6 +122898,7 @@ github.com/MaxChu23/hero-selector,num_dependents_deps.dev:0 github.com/MaxCodeDE/ember-clean-project, github.com/MaxDeAngelis/create-react-app,num_dependents_deps.dev:0 github.com/MaxDesiatov/XMLCoder,criticality_score:0.360710 +github.com/MaxDesiatov/swift-windows-action, github.com/MaxEgg/Observers,num_dependents_deps.dev:0 github.com/MaxEgg/pwa-navigator, github.com/MaxEvan/pragmatic-email-regex,num_dependents_deps.dev:0 @@ -120304,6 +123069,7 @@ github.com/MaxdeoxiS/nickname-generator,num_dependents_deps.dev:0 github.com/Maxdmtrev/project-lvl1-s352,num_dependents_deps.dev:0 github.com/Maxdola/dola-logger,num_dependents_deps.dev:0 github.com/Maxeh/react-native-tabbar-bottom,num_dependents_deps.dev:0 +github.com/Maxelweb/ds-store-patrol, github.com/MaxenceLarose/dicom2hdf, github.com/MaxenceMottard/file-server-module, github.com/MaxenceMottard/script-style-starter,num_dependents_deps.dev:0 @@ -120383,6 +123149,7 @@ github.com/MaximeCheramy/remotefreebox, github.com/MaximeDruart/react-sudoku,num_dependents_deps.dev:0 github.com/MaximeFarrugia/getOpaqueColor, github.com/MaximeGir/StarTrekCorporaNPM,num_dependents_deps.dev:0 +github.com/MaximeHeckel/github-action-merge-fast-forward, github.com/MaximeHeckel/jest-runner-go,num_dependents_deps.dev:0 github.com/MaximeHeckel/react-livephoto,num_dependents_deps.dev:0 github.com/MaximeJallu/RecyclerAdapter-Java,num_dependents_deps.dev:0 @@ -120407,6 +123174,9 @@ github.com/MaximilianLau/npxMaximilianL,num_dependents_deps.dev:0 github.com/MaximilianSchneider97/example-react-component-for-npm-publication,num_dependents_deps.dev:0 github.com/MaximilianSchneider97/fluentui-pagination,num_dependents_deps.dev:0 github.com/MaximilianSchroeder/SDW_API, +github.com/MaximilianoBz/actions-build-lambda-layer, +github.com/MaximilianoBz/actions-cloudformation, +github.com/MaximilianoBz/actions-samdeploy, github.com/MaximilianoFelice/bob,num_dependents_deps.dev:0 github.com/MaximilianoFelice/rx-bootstrap-react-component,num_dependents_deps.dev:0 github.com/MaximilianoFelice/rx-producer-consumer,num_dependents_deps.dev:0 @@ -120422,6 +123192,7 @@ github.com/Maximilianos/temperature,num_dependents_deps.dev:0 github.com/Maximilien-R/django-rest-framework-recaptcha, github.com/MaximilienLC/nevo, github.com/Maximillion195/google-shopping-list,num_dependents_deps.dev:0 +github.com/Maximisch/issue-sync-action, github.com/MaximlLabs/nativescript-dev-appium,num_dependents_deps.dev:0 github.com/Maximoo/jquery-svg3dtagcloud-plugin,num_dependents_deps.dev:0 github.com/Maximus-Agency-Pty-Ltd/cap-jc-maps,num_dependents_deps.dev:0 @@ -120497,10 +123268,19 @@ github.com/MaxySpark/Ng-Scatter-Directional-Chart,num_dependents_deps.dev:0 github.com/MaxySpark/change-wallpaper,num_dependents_deps.dev:0 github.com/MaxySpark/maxyspark-download,num_dependents_deps.dev:0 github.com/MaxySpark/rename-utility,num_dependents_deps.dev:0 +github.com/Maxyme/get-release-or-tag, github.com/Maxython/TOWFM, github.com/Maxytreal123/Discord-bot-maker,num_dependents_deps.dev:0 github.com/MayGo/tockler,criticality_score:0.419950 github.com/MayIFit/vue-components,num_dependents_deps.dev:0 +github.com/MayMeow/action-mattermost-notify, +github.com/MayMeow/apk-build-action, +github.com/MayMeowHQ/Hugo-Build-Action, +github.com/MayMeowHQ/PHPCS-Action, +github.com/MayMeowHQ/PHPUnit-Test-Action, +github.com/MayMeowHQ/composer-run-action, +github.com/MayMeowHQ/minio-deploy-action, +github.com/MayNiklas/flake-update-action, github.com/MaySoMusician/NodeRT,num_dependents_deps.dev:0 github.com/MayTD/lodown,num_dependents_deps.dev:0 github.com/MayaPosch/NymphCast,criticality_score:0.332850 @@ -120581,12 +123361,14 @@ github.com/MayorMonty/robotevents, github.com/MayorMonty/vexdb,num_dependents_deps.dev:0 github.com/Mayrinika/emoji,num_dependents_deps.dev:0 github.com/Maysora/lita-exclusive-route,num_dependents_deps.dev:0 +github.com/Mayu-mic/google-apps-script-action, github.com/MayukhaB/Data533_Lab4, github.com/Mayukhdeb/localhost-on-colab, github.com/Mayukhdeb/torch-dreams, github.com/Mayur1009/PSF_py, github.com/Mayur1496/solidity_parser,num_dependents_deps.dev:0 github.com/MayurDeshmukh10/CaaS, +github.com/MayurDuduka/soci-index-action, github.com/MayurSatav/ImageToColors, github.com/Mazarineblue/MazarineBlue,num_dependents_deps.dev:65 github.com/Mazatech/amanithsvg-bindings,num_dependents_deps.dev:0 @@ -120618,6 +123400,7 @@ github.com/McCauslandBrett/ReactNaitve-QuickModal,num_dependents_deps.dev:0 github.com/McClain-Thiel/gff3_parser, github.com/McCrearyD/rigl-torch, github.com/McCzarny/totptray, +github.com/McCzarny/upload-image, github.com/McDaddy/i18n-zh-en-webpack-plugin,num_dependents_deps.dev:0 github.com/McDeez/hornshash,num_dependents_deps.dev:0 github.com/McDick/hopjs-ui,num_dependents_deps.dev:0 @@ -120665,6 +123448,7 @@ github.com/McNull/angular-inform,num_dependents_deps.dev:0 github.com/McNull/gulp-angular,num_dependents_deps.dev:0 github.com/McNull/http-upload,num_dependents_deps.dev:0 github.com/McNull/ngx-breadcrumbs,num_dependents_deps.dev:36 +github.com/McNultyyy/publish-profile-actions, github.com/McOmghall/comp-pool,num_dependents_deps.dev:0 github.com/McOmghall/random-generators,num_dependents_deps.dev:0 github.com/McPants/jquery.shapeshift,num_dependents_deps.dev:0 @@ -120770,6 +123554,7 @@ github.com/MeXaaR/meteor-interface,num_dependents_deps.dev:0 github.com/MeZKaL/adyen,num_dependents_deps.dev:0 github.com/MeadCo/MeadCoScriptXJS,num_dependents_deps.dev:0 github.com/MeadCo/ScriptX.Print.Client,num_dependents_deps.dev:0 +github.com/Meadowsys/action-get-mc-jar, github.com/Meaglin/simplenamespace,num_dependents_deps.dev:0 github.com/Meakle/meakle-ui,num_dependents_deps.dev:0 github.com/MeanBoyCousin/color-groups,num_dependents_deps.dev:0 @@ -120780,6 +123565,7 @@ github.com/MeanEYE/Sunflower,criticality_score:0.510070 github.com/MeanPug/django-crmify, github.com/MeanPug/django-gsheets, github.com/MeanYou/my-test-package,num_dependents_deps.dev:0 +github.com/MeanZhang/wecom-group-robot, github.com/Meandmybadself/react-cookie-input,num_dependents_deps.dev:0 github.com/MeaningCloud/meaningcloud-java,num_dependents_deps.dev:0 github.com/MeaningCloud/meaningcloud-python, @@ -120958,6 +123744,7 @@ github.com/Medical-Image-Analysis-Laboratory/mialsuperresolutiontoolkit, github.com/Medical-OnEx/onex-sequelize,num_dependents_deps.dev:0 github.com/MedinaGitHub/react-jsonschema-form-builder,num_dependents_deps.dev:0 github.com/MediocreFred/Gary,num_dependents_deps.dev:0 +github.com/Medipreco/key-manager, github.com/Medisphere/web-app,num_dependents_deps.dev:0 github.com/Meditect/geofirestore-clustering-js, github.com/Medium/draccus, @@ -120986,7 +123773,9 @@ github.com/Medpy/McScraping, github.com/Medsaad/node-db-models,num_dependents_deps.dev:0 github.com/Medsaad/oraios-queries,num_dependents_deps.dev:0 github.com/Medsestrun/vwt-tools,num_dependents_deps.dev:0 +github.com/Medsien/django-migration-guy, github.com/Medsien/django3-admin-select2, +github.com/Medsien/release-to-jira, github.com/Meduzz/js-rpc,num_dependents_deps.dev:0 github.com/Medvate/lippy, github.com/MeechaPooch/NPM-GoogleIt-SafeSearch,num_dependents_deps.dev:0 @@ -121004,6 +123793,7 @@ github.com/MeelonUsk/simplesim, github.com/Meema-Tech/utils,num_dependents_deps.dev:0 github.com/Meemaw/react-big-list,num_dependents_deps.dev:0 github.com/Meemaw/react-micro-modal,num_dependents_deps.dev:0 +github.com/Meemaw/testcafe-action, github.com/MeepGroup/meep-egg, github.com/MeepGroup/meep-hawk, github.com/MeepGroup/meep-meepfile,num_dependents_deps.dev:0 @@ -121105,6 +123895,7 @@ github.com/MegaGlest/megaglest-source,criticality_score:0.428390 github.com/MegaIng/pattern-matching, github.com/MegaIng/regex_intersections, github.com/MegaNetTeam/nestjs-redis,num_dependents_deps.dev:0 +github.com/MegaPiggy/json-reader-action, github.com/MegaVasiliy007/sdc-api,num_dependents_deps.dev:0 github.com/MegafonWebLab/frontend-presets,num_dependents_deps.dev:0 github.com/MegafonWebLab/histone-acceptance-tests,num_dependents_deps.dev:0 @@ -121140,6 +123931,7 @@ github.com/Megarushing/python-bitcointrade-api, github.com/Megatron8010/science_concierge, github.com/MegatronKing/SVG-Android,num_dependents_deps.dev:0 github.com/MegatronKing/StringFog,num_dependents_deps.dev:0 +github.com/MegaverseBE/backports-gitflow-action, github.com/Meghanath91/lotide,num_dependents_deps.dev:0 github.com/Meghduta/MeghdutaJS,num_dependents_deps.dev:0 github.com/Megic/Mkoa,num_dependents_deps.dev:0 @@ -121219,7 +124011,24 @@ github.com/MeighenBergerS/fourth_day, github.com/Meigyoku-Thmn/CSBinary, github.com/Meigyoku-Thmn/iconv-lite,num_dependents_deps.dev:0 github.com/MeikelLP/UnityLint.Core,num_dependents_deps.dev:0 +github.com/MeilCli/android-lint-statistics, +github.com/MeilCli/bump-release-action, +github.com/MeilCli/carthage-update-check-action, +github.com/MeilCli/cocoapods-update-check-action, +github.com/MeilCli/common-lint-reporter, +github.com/MeilCli/danger-action, +github.com/MeilCli/detekt-statistics, +github.com/MeilCli/gradle-update-check-action, +github.com/MeilCli/hidable-comment-action, +github.com/MeilCli/npm-update-check-action, +github.com/MeilCli/nuget-update-check-action, +github.com/MeilCli/regex-match, +github.com/MeilCli/setup-crystal-action, +github.com/MeilCli/slack-upload-file, +github.com/MeilCli/swiftpm-update-check-action, +github.com/MeilCli/test-command-action, github.com/MeilleursAgents/react-mapbox-wrapper,num_dependents_deps.dev:2 +github.com/MeilleursBiens/sentry-react-github-action, github.com/Meiqia/MeiqiaSDK-Android,num_dependents_deps.dev:0 github.com/Meiqia/flake8-meiqia, github.com/Meiqia/flask-sqlalchemy, @@ -121270,6 +124079,7 @@ github.com/MelSumner/ember-a11y-landmarks,num_dependents_deps.dev:0 github.com/MelSumner/ember-a11y-refocus, github.com/MelSumner/mommy-look,num_dependents_deps.dev:0 github.com/Melanchol1c/eslint-config-react,num_dependents_deps.dev:0 +github.com/Meland-Inc/helm-gh-pages, github.com/MelanieGravel/generator-mg-project-gtb,num_dependents_deps.dev:0 github.com/MelanieMenard/create-react-app,num_dependents_deps.dev:0 github.com/MelanieMorin/react-native-escape-imie,num_dependents_deps.dev:0 @@ -121421,6 +124231,11 @@ github.com/MenaraSolutions/geographer,criticality_score:0.325860 github.com/MenaraSolutions/geographer-data,num_dependents_deps.dev:0 github.com/MenaraSolutions/geographer-js,num_dependents_deps.dev:0 github.com/Menardi/vue-cli-plugin-cordova-simple,num_dependents_deps.dev:0 +github.com/Menci/acme, +github.com/Menci/build-archlinux-package, +github.com/Menci/deploy-certificate-to-aliyun, +github.com/Menci/deploy-certificate-to-azure-web-app, +github.com/Menci/deploy-certificate-to-upyun, github.com/Menci/electron-titlebar,num_dependents_deps.dev:0 github.com/Menci/hexo-deployer-upyun,num_dependents_deps.dev:0 github.com/Menci/hexo-renderer-syzoj-renderer,num_dependents_deps.dev:0 @@ -121428,8 +124243,10 @@ github.com/Menci/markdown-it-math-loose,num_dependents_deps.dev:2 github.com/Menci/markdown-it-merge-cells,num_dependents_deps.dev:0 github.com/Menci/monaco-tree-sitter,num_dependents_deps.dev:0 github.com/Menci/pygments-promise,num_dependents_deps.dev:0 +github.com/Menci/service-worker-redirect-origin, github.com/Menci/sf-mono-webfont, github.com/Menci/tree-sitter-wasm-prebuilt,num_dependents_deps.dev:0 +github.com/Menci/upload-to-oss, github.com/Menci/wastyle,num_dependents_deps.dev:0 github.com/Menda0/behance_python3, github.com/Mendeo/csv-to-js,num_dependents_deps.dev:0 @@ -121570,6 +124387,7 @@ github.com/Mercurial/Mammonite,num_dependents_deps.dev:0 github.com/Mercurial/TypedMVC,num_dependents_deps.dev:0 github.com/MercurialUroboros/pixi-gameobject,num_dependents_deps.dev:0 github.com/Mercury-Language/mercury,criticality_score:0.458490 +github.com/MercymeIlya/last-workflow-status, github.com/MeredithCorpOSS/ape-pronto,num_dependents_deps.dev:0 github.com/Mereng/pyVKApi, github.com/Merenon/django-tmdb, @@ -121579,6 +124397,7 @@ github.com/Mergifyio/graphql-utils, github.com/Mergifyio/react-crisp,num_dependents_deps.dev:0 github.com/MergimUkaa/ahv-validator-nodejs, github.com/MergusDesign/mergus-icons,num_dependents_deps.dev:0 +github.com/Merian0818/Github-Release-Action, github.com/Meridian59/Meridian59,criticality_score:0.324190 github.com/MeridioRE/dappeteer,num_dependents_deps.dev:0 github.com/MerifondNewMarkets/i-do-config,num_dependents_deps.dev:4 @@ -121605,6 +124424,7 @@ github.com/Merlin-R/babel-plugin-ui5-jsx-rm,num_dependents_deps.dev:0 github.com/Merlin-Taylor/emjen, github.com/Merlin-Taylor/node-cfn-packager,num_dependents_deps.dev:0 github.com/Merlin-Taylor/node-pack-zip,num_dependents_deps.dev:0 +github.com/Merlin04/github-contentful-readme, github.com/MerlinB/planter,num_dependents_deps.dev:0 github.com/MerlinB/pycerpt, github.com/MerlinEmris/youtube_srapping_with_python, @@ -121797,6 +124617,7 @@ github.com/MetaSys-LISBP/PhysioFit, github.com/Metaa/beam-interactive2-keyboard,num_dependents_deps.dev:0 github.com/Metaa/mixer-keyboard,num_dependents_deps.dev:0 github.com/MetabolicAtlas/3d-network-viewer,num_dependents_deps.dev:0 +github.com/MetabolicAtlas/action-yamllint, github.com/MetacitySuite/Metacity, github.com/MetacitySuite/Metacity-Workspace, github.com/MetacitySuite/earcut-python, @@ -121835,6 +124656,7 @@ github.com/Metamist/connect-arango,num_dependents_deps.dev:0 github.com/Metanome/metanome,num_dependents_deps.dev:0 github.com/Metanome/metanome-tail,num_dependents_deps.dev:0 github.com/Metanome/syslog,num_dependents_deps.dev:0 +github.com/MetaphorData/connectors-action, github.com/Metastasis/omniauth_headhunter,num_dependents_deps.dev:0 github.com/Metaswitch/assert-type-eq-rs,num_dependents_deps.dev:0 github.com/Metaswitch/cargo-swagger,num_dependents_deps.dev:0 @@ -121909,6 +124731,7 @@ github.com/Meteor-Community-Packages/meteor-scss,criticality_score:0.357390 github.com/Meteor-Community-Packages/meteor-user-status,criticality_score:0.357650 github.com/Meteorix/pylcs, github.com/Meteosource/pymeteosource, +github.com/MeterianHQ/meterian-github-action, github.com/Meterius/rfb-mc, github.com/Meterius/serverless-aws-auto-resource-names,num_dependents_deps.dev:0 github.com/Meterius/serverless-aws-service-framework,num_dependents_deps.dev:0 @@ -121973,6 +124796,8 @@ github.com/MeuhMeuhConcept/react-mobx-cookie-consent, github.com/MeuhMeuhConcept/react-mobx-intl, github.com/MeuhMeuhConcept/react-mobx-loader, github.com/MeuhMeuhConcept/react-mobx-store-container, +github.com/Meuko/get-last-regex-tag, +github.com/Meuko/terraform-github-actions, github.com/Mevrael/assets-builder,num_dependents_deps.dev:0 github.com/Mevrael/bunny,num_dependents_deps.dev:0 github.com/Mewongu/raptorstr, @@ -122016,7 +124841,11 @@ github.com/MhankBarBar/SekteModule, github.com/MhankBarBar/otakudesu, github.com/MhdBssd/Vtrim,num_dependents_deps.dev:0 github.com/MhdFeras/cordova-plugin-image-recognition,num_dependents_deps.dev:0 +github.com/Mhm0ud/deploy-moleculer-pr, +github.com/Mhm0ud/github-actions-gitflow, +github.com/Mhm0ud/github-actions-jira, github.com/Mhmd-Hisham/OptivolutionPy, +github.com/Mhmdabed11/md-replacer, github.com/MhmtMutlu/react-inputs-validator,num_dependents_deps.dev:0 github.com/Mhp23/react-native-fast-base, github.com/Mhusain/FacebookAccountKit,num_dependents_deps.dev:0 @@ -122136,6 +124965,7 @@ github.com/MicahChalmer/nesta-plugin-foldable,num_dependents_deps.dev:0 github.com/MicahChiu/passport-multi-type,num_dependents_deps.dev:0 github.com/MicahHinckley/imperium,num_dependents_deps.dev:0 github.com/MicahMartin/highlighter,num_dependents_deps.dev:0 +github.com/MicahSphelele/action-publish-signed-apk, github.com/MicahZoltu/node-usb,num_dependents_deps.dev:0 github.com/Mical-kiss/talk-simple,num_dependents_deps.dev:0 github.com/MiccDev/SJSGL,num_dependents_deps.dev:0 @@ -122209,6 +125039,7 @@ github.com/Michael18811380328/Leisure,num_dependents_deps.dev:0 github.com/Michael190996/async-steps,num_dependents_deps.dev:2 github.com/Michael190996/async-steps.engine,num_dependents_deps.dev:0 github.com/Michael190996/async-steps.modules-as,num_dependents_deps.dev:2 +github.com/Michael2MacDonald/Discord-Message-Updater, github.com/Michael78912/tbip, github.com/MichaelAllenWarner/eth-util-lite,num_dependents_deps.dev:4 github.com/MichaelAnckaert/galax, @@ -122356,6 +125187,7 @@ github.com/MichaelLNorth/ember-cli-table,num_dependents_deps.dev:0 github.com/MichaelLeeHobbs/mirth-api, github.com/MichaelLeeHobbs/pdfMerger,num_dependents_deps.dev:0 github.com/MichaelLeith/Mockery,num_dependents_deps.dev:0 +github.com/MichaelMULLER/highlight-scan-github-action, github.com/MichaelMade/homebridge-onkyo-latest, github.com/MichaelMammoliti/viewport-manager,num_dependents_deps.dev:0 github.com/MichaelMauderer/filter-rs,num_dependents_deps.dev:0 @@ -122364,6 +125196,8 @@ github.com/MichaelMaurice/lodown,num_dependents_deps.dev:0 github.com/MichaelMcDonnell/test_bin,num_dependents_deps.dev:0 github.com/MichaelMedford/fringez, github.com/MichaelMedford/zort, +github.com/MichaelMelena/list-artifacts, +github.com/MichaelMelena/remove-artifacts, github.com/MichaelMikeJones/editorjs-parser,num_dependents_deps.dev:0 github.com/MichaelMikeJones/m3u8-parser, github.com/MichaelMure/git-bug,"criticality_score:0.432810,num_dependents_deps.dev:0" @@ -122421,6 +125255,8 @@ github.com/MichaelTheriot/bf-rcon,num_dependents_deps.dev:0 github.com/MichaelTheriot/promise-task,num_dependents_deps.dev:0 github.com/MichaelVasseur/electron-ipc-bus,num_dependents_deps.dev:0 github.com/MichaelVerdegaal/ezstr, +github.com/MichaelVoelkel/code-sign-action, +github.com/MichaelVoelkel/test-reporter, github.com/MichaelWarneke/ng-schematics,num_dependents_deps.dev:0 github.com/MichaelWehar/Crossword-Layout-Generator,num_dependents_deps.dev:0 github.com/MichaelXF/js-confuser,num_dependents_deps.dev:0 @@ -122453,6 +125289,7 @@ github.com/Michaelpalacce/er_memcached_data_server,num_dependents_deps.dev:0 github.com/Michaelpalacce/er_redis_data_server,num_dependents_deps.dev:0 github.com/Michaelpalacce/fs-browser,num_dependents_deps.dev:0 github.com/Michaelpalacce/storage,num_dependents_deps.dev:0 +github.com/MichaelsJP/conda-package-publish-action, github.com/Michaelvilleneuve/brut-net,num_dependents_deps.dev:0 github.com/Michaelvilleneuve/react-native-custom-crop,num_dependents_deps.dev:0 github.com/Michaelvilleneuve/react-native-document-scanner,num_dependents_deps.dev:0 @@ -122612,6 +125449,7 @@ github.com/Michikoid/michikoid-cli,num_dependents_deps.dev:0 github.com/Michikoid/michikoid-compiler,num_dependents_deps.dev:0 github.com/Michikoid/michikoid-web3-mocha-ui,num_dependents_deps.dev:0 github.com/Michikoid/module-template,num_dependents_deps.dev:0 +github.com/MichinaoShimizu/workflow-time-report, github.com/MichinariNukazawa/daisy-cell-block-diagram,num_dependents_deps.dev:0 github.com/Michionlion/mesi, github.com/Michriko/cz-conventional-changelog-jira-first,num_dependents_deps.dev:0 @@ -122643,6 +125481,7 @@ github.com/MickaelRigault/pysnid, github.com/MickaelRigault/ztfdr, github.com/Mickaelh51/pyVigicrues, github.com/Mickawesomesque/slush-phaser-game,num_dependents_deps.dev:0 +github.com/Micker5502/rsync-deploy, github.com/Mickey-/generator-rrrw,num_dependents_deps.dev:0 github.com/Mickey-/prefix-cssclass,num_dependents_deps.dev:0 github.com/Mickey-/webpage-scaffold,num_dependents_deps.dev:0 @@ -122689,12 +125528,14 @@ github.com/MicroDroid/vue-invisible-recaptcha,num_dependents_deps.dev:0 github.com/MicroDroid/vue-materialize-datatable,num_dependents_deps.dev:0 github.com/MicroDroid/vuex-electron-ipc,num_dependents_deps.dev:0 github.com/MicroFocus/ALMOctaneJavaRESTSDK,num_dependents_deps.dev:4 +github.com/MicroFocus/alm-octane-github-actions-integration, github.com/MicroFocus/alm-octane-js-rest-sdk,num_dependents_deps.dev:0 github.com/MicroFocus/cluster-tasks-service,num_dependents_deps.dev:0 github.com/MicroFocus/com-microfocus-performancecenter-plugins-common,num_dependents_deps.dev:0 github.com/MicroFocus/hubot-alm-octane,num_dependents_deps.dev:0 github.com/MicroFocus/leanft-selenium-java-sdk,num_dependents_deps.dev:0 github.com/MicroFocus/leanft-selenium-js-sdk,num_dependents_deps.dev:0 +github.com/MicroFocus/lrc-gh-action, github.com/MicroFocus/ng-gulp,num_dependents_deps.dev:0 github.com/MicroFocus/ng-prism,num_dependents_deps.dev:0 github.com/MicroFocus/octane-ci-java-sdk,num_dependents_deps.dev:38 @@ -123164,6 +126005,7 @@ github.com/MidAutumnMoon/Vomi,num_dependents_deps.dev:0 github.com/MidD3Vil/PyColor256, github.com/MidEndProject/node-fileproxy,num_dependents_deps.dev:0 github.com/MidEndProject/node-pdf2img,num_dependents_deps.dev:0 +github.com/MidKnightXI/rs-actions, github.com/Midas-Technologies-AG/protocol,num_dependents_deps.dev:0 github.com/MidasCore/mcashweb, github.com/Midbound/Midbound.js,num_dependents_deps.dev:0 @@ -123329,6 +126171,7 @@ github.com/MiguelMedeiros/visao-libertaria-api,num_dependents_deps.dev:0 github.com/MiguelMelo/react-native-template-avalon-advanced, github.com/MiguelRAvila/Bento,criticality_score:0.305810 github.com/MiguelRAvila/projectTOBARA, +github.com/MiguelRipoll23/generate-tag-name, github.com/MiguelRipoll23/homebridge-securitysystem,num_dependents_deps.dev:0 github.com/MiguelSavignano/ajax-handler-es6,num_dependents_deps.dev:0 github.com/MiguelSavignano/backend-service,num_dependents_deps.dev:0 @@ -123427,6 +126270,8 @@ github.com/MikaeI/mouthful,num_dependents_deps.dev:0 github.com/MikaeI/replenish,num_dependents_deps.dev:0 github.com/Mikael-MStinson/Bulk-Import, github.com/Mikael-R/readme-template-generator, +github.com/Mikael-RnD/setup-uipath, +github.com/Mikael-RnD/uipath-check-prerelease-dependencies, github.com/MikaelCarpenter/gb-native-router,num_dependents_deps.dev:0 github.com/MikaelEdebro/vue-airbnb-style-datepicker,num_dependents_deps.dev:0 github.com/MikaelLazarev/redux-data-connect, @@ -123442,6 +126287,7 @@ github.com/MikailBag/gen-io,num_dependents_deps.dev:0 github.com/Mikaleb/ckeditor-nuxt,num_dependents_deps.dev:0 github.com/Mikan-OwO/discord.js-noobs,num_dependents_deps.dev:0 github.com/Mikanebu/country-list,num_dependents_deps.dev:0 +github.com/MikasaEureka/pub-private-submodule-checkout, github.com/Mikata-Project/df_io, github.com/Mikata-Project/pandag, github.com/Mikata-Project/parallel_write, @@ -123496,6 +126342,7 @@ github.com/MikeAndDove/wcyx-utils,num_dependents_deps.dev:0 github.com/MikeAxtell/gsat, github.com/MikeBarnhardt/mako,num_dependents_deps.dev:0 github.com/MikeBendorf11/ol-next,num_dependents_deps.dev:0 +github.com/MikeBild/aws-cdk-js-github-action, github.com/MikeBild/cflow,num_dependents_deps.dev:0 github.com/MikeBild/excel-couchdb-import,num_dependents_deps.dev:0 github.com/MikeBild/graphql-pouch,num_dependents_deps.dev:0 @@ -123517,6 +126364,7 @@ github.com/MikeCoder/hexo-blog-encrypt,num_dependents_deps.dev:0 github.com/MikeCoder/hexo-tag-cloud,num_dependents_deps.dev:0 github.com/MikeCoder/hexo-theme-gandalfr,num_dependents_deps.dev:0 github.com/MikeCostello/query-declaration,num_dependents_deps.dev:0 +github.com/MikeCxx/paths-filter-strict, github.com/MikeDacanay/cpr_scrollpath,num_dependents_deps.dev:0 github.com/MikeDev101/cloudlink, github.com/MikeDev75015/mongodb-pipeline-builder,num_dependents_deps.dev:0 @@ -123536,6 +126384,8 @@ github.com/MikeFielden/astro-sass, github.com/MikeG96/anxelin-project-structure,num_dependents_deps.dev:0 github.com/MikeG96/cookies,num_dependents_deps.dev:0 github.com/MikeG96/ngx-pipe-search-by,num_dependents_deps.dev:0 +github.com/MikeHamilton-RW/deploy-common-actions, +github.com/MikeHamilton-RW/release-collector, github.com/MikeHitrov/CustomTooltip,num_dependents_deps.dev:0 github.com/MikeHopcroft/PrixFixe,num_dependents_deps.dev:0 github.com/MikeHopcroft/ShortOrder,num_dependents_deps.dev:0 @@ -123682,6 +126532,7 @@ github.com/MikeyBurkman/x51,num_dependents_deps.dev:0 github.com/MikeyJW/football_betting_models, github.com/MikeyParton/react-mapbox-search,num_dependents_deps.dev:0 github.com/MikhaelMIEM/ONVIFCameraControl, +github.com/Mikhail-Borisov/ips-cortex-zephyr-scale-upload, github.com/MikhailGA/project-lvl2-s345,num_dependents_deps.dev:0 github.com/MikhailGA/project-lvl3-s346,num_dependents_deps.dev:0 github.com/MikhailGlv/puppeteer-extra-plugin-recaptcha-custom,num_dependents_deps.dev:0 @@ -123786,7 +126637,14 @@ github.com/Milchreis/p5.tween,num_dependents_deps.dev:0 github.com/MilelyM/scl-2018-01-FE-markdown,num_dependents_deps.dev:0 github.com/MilenaMMay/organigram,num_dependents_deps.dev:0 github.com/MilenaMalysh/vuest-plugin,num_dependents_deps.dev:0 +github.com/MilesChou/composer-action, +github.com/MilesChou/docker-php-tester, +github.com/MilesChou/docker-xdebug, +github.com/MilesChou/elixir-action, github.com/MilesChou/hexo-mdlink,num_dependents_deps.dev:0 +github.com/MilesChou/lua-action, +github.com/MilesChou/phalcon-action, +github.com/MilesChou/php-tools-action, github.com/MilesCranmer/pysr, github.com/MilesEngineering/MsgTools, github.com/MilesHamilton/npm-resume,num_dependents_deps.dev:0 @@ -123870,6 +126728,7 @@ github.com/MillionIntegrals/vel, github.com/MilllerTime/react-pointable,num_dependents_deps.dev:8 github.com/MilllerTime/run-effect,num_dependents_deps.dev:0 github.com/Millsky/lenscrafter,num_dependents_deps.dev:0 +github.com/Millz147/auto-slack-message, github.com/Milo-z/fis-postprocessor-qunit-phantomjs,num_dependents_deps.dev:0 github.com/Milo-z/webpack-mockjs-plugin,num_dependents_deps.dev:0 github.com/Milo123459/consel, @@ -123890,6 +126749,7 @@ github.com/Miloas/schema-based-json-editor,num_dependents_deps.dev:0 github.com/Miloas/typescript-plugin-glamorous-displayname,num_dependents_deps.dev:0 github.com/Milogav/GuardCam, github.com/Milogav/PytorchDL, +github.com/Milos5611/helm, github.com/Milos5611/pdfmake-browserify,num_dependents_deps.dev:0 github.com/MilosBakic/censorify,num_dependents_deps.dev:0 github.com/MilosKozak/AndroidAPS,criticality_score:0.509900 @@ -123902,6 +126762,7 @@ github.com/MilosRasic/split-demo-app-list,num_dependents_deps.dev:0 github.com/MilosRasic/split-demo-shared-build-deps,num_dependents_deps.dev:0 github.com/MilosRasic/split-demo-shared-config,num_dependents_deps.dev:0 github.com/MilosRasic/split-demo-shared-deps,num_dependents_deps.dev:0 +github.com/MiloshC94/test3, github.com/MiloszRolla/palindrome, github.com/MiloudiMohamed/sliding-navbar,num_dependents_deps.dev:0 github.com/MiloudiMohamed/vue-flashy,num_dependents_deps.dev:0 @@ -123940,6 +126801,7 @@ github.com/MinJieLiu/umi-plugin-activation-route-modify,num_dependents_deps.dev: github.com/MinJieLiu/validate-framework, github.com/MinJieLiu/validate-framework-utils,num_dependents_deps.dev:2 github.com/MinJieLiu/validator.js,num_dependents_deps.dev:0 +github.com/MinJunKweon/action-ktlint-auto-review, github.com/MinJunSeo/project-structure-generator,num_dependents_deps.dev:0 github.com/MinMiguelM/connector-utility,num_dependents_deps.dev:0 github.com/MinRegret/Ventilator-Dev, @@ -124022,6 +126884,7 @@ github.com/MindTouch/node-ckbuilder,num_dependents_deps.dev:0 github.com/MindTouch/rollup-plugin-alias-module-specifiers,num_dependents_deps.dev:0 github.com/MindTwister/isms, github.com/Mindbaz/python-gpostmaster-domains-datas, +github.com/Mindblast-Games/setup-wally, github.com/Mindcurv/capacitor-idfa-ios-app-tracking, github.com/Mindcurv/capacitor-ios-app-tracking,num_dependents_deps.dev:0 github.com/MindeVieras/node-ssh-deploy,num_dependents_deps.dev:0 @@ -124044,6 +126907,7 @@ github.com/Mindful/cardbuilder, github.com/Mindful/m2data, github.com/MindfulMinun/Semantics,num_dependents_deps.dev:0 github.com/MindfulMinun/discord-haruka,num_dependents_deps.dev:0 +github.com/Mindgamesnl/openaudio-maven-discord-integration, github.com/Mindgreppers/js-object-updater,num_dependents_deps.dev:0 github.com/Mindgrub/zoinks, github.com/Mindik/mailgun-nestjs,num_dependents_deps.dev:0 @@ -124058,6 +126922,7 @@ github.com/Minds/minds,criticality_score:0.527030 github.com/Minds/ng-data-table,num_dependents_deps.dev:0 github.com/MindscapeHQ/grunt-raygun-deployment,num_dependents_deps.dev:0 github.com/MindscapeHQ/gulp-raygun-sourcemaps,num_dependents_deps.dev:0 +github.com/MindscapeHQ/raygun-deployments-action, github.com/MindscapeHQ/raygun4android,num_dependents_deps.dev:0 github.com/MindscapeHQ/raygun4js,num_dependents_deps.dev:0 github.com/MindscapeHQ/raygun4node,num_dependents_deps.dev:14 @@ -124075,6 +126940,9 @@ github.com/Mindtribe/MTBuild,num_dependents_deps.dev:0 github.com/Mindwerks/pyplatec, github.com/Mindwerks/worldengine,criticality_score:0.335790 github.com/MindzGroupTechnologies/spinner-control,num_dependents_deps.dev:0 +github.com/Mine02C4/auto_backup_wiki_action, +github.com/MineBartekSA/discord-webhook, +github.com/MineBartekSA/quick-mdbook, github.com/MineEx/LibEx,num_dependents_deps.dev:0 github.com/MineFlash07/Discord-Webhook,num_dependents_deps.dev:0 github.com/MineGame159/brutils,num_dependents_deps.dev:0 @@ -124181,6 +127049,7 @@ github.com/MiniCai/bag-tool, github.com/MiniCai/bagjs,num_dependents_deps.dev:0 github.com/MiniCodeMonkey/node-peapod,num_dependents_deps.dev:0 github.com/MiniDigger/MiniMessage,num_dependents_deps.dev:0 +github.com/MiniDigger/github-actions-maven-release, github.com/MiniDigger/thelounge-plugin-giphy,num_dependents_deps.dev:0 github.com/MiniDigger/thelounge-plugin-shortcuts,num_dependents_deps.dev:0 github.com/MiniDigger/thelounge-theme-mininapse,num_dependents_deps.dev:0 @@ -124225,7 +127094,9 @@ github.com/MinimalistYing/Bape,num_dependents_deps.dev:0 github.com/MinimalistYing/easy-fetch,num_dependents_deps.dev:0 github.com/MinimalistYing/vanilla-antd-message,num_dependents_deps.dev:0 github.com/MinimineLP/Minetem, +github.com/Minimonium/conan-request-action, github.com/Minims/somfy-protect-api, +github.com/MinimulDev/tag-creator, github.com/MinimumViablePerson/make-middlewared-usereducer, github.com/MinimumViablePerson/make-middlewared-usestate,num_dependents_deps.dev:0 github.com/MinimumViablePerson/useStore,num_dependents_deps.dev:0 @@ -124236,18 +127107,26 @@ github.com/MininuxDev/mininux-replay-manager, github.com/Minion3665/MiniUtils, github.com/Minion3665/slasher, github.com/Minion3665/thelounge-theme-discordapp,num_dependents_deps.dev:0 +github.com/Minionguyjpro/Afk-bot, +github.com/Minionguyjpro/Create-Disk-Image-Action, +github.com/Minionguyjpro/Push-Action, +github.com/Minionguyjpro/signtool-code-sign, github.com/MinionsDave/alfred-abbreviation,num_dependents_deps.dev:0 github.com/MinionsDave/dotenv-ts-generator,num_dependents_deps.dev:0 github.com/MinionsHero/flexlayout, github.com/MinionsHero/less-plugin-theme,num_dependents_deps.dev:0 github.com/MinionsHero/react-dev-cli,num_dependents_deps.dev:0 +github.com/Miniontoby/Tauri-Plugin-List-Generator-Action, github.com/Miniplop/react-camera,num_dependents_deps.dev:0 +github.com/Minish144/delete-untagged-action, github.com/Minishlink/easy-lottie-react-native,num_dependents_deps.dev:0 github.com/MinisterioPublicoRJ/MapasTeca-Web,num_dependents_deps.dev:0 github.com/MinistryOfWelfare/SibylSystem-Py, github.com/Minitex/pdfreader-android,num_dependents_deps.dev:2 github.com/Minitiai/minitiai,num_dependents_deps.dev:0 github.com/Minitour/crofis-android-uikit,num_dependents_deps.dev:0 +github.com/Minituff/add-header-action, +github.com/Minituff/save-image, github.com/Minivera/react-bulma-vitae,num_dependents_deps.dev:0 github.com/Minivera/react-vitae,num_dependents_deps.dev:0 github.com/Minivera/testifyjs,num_dependents_deps.dev:0 @@ -124261,7 +127140,9 @@ github.com/Minlessika/lightweight-db,num_dependents_deps.dev:0 github.com/Minnozz/rescript-recharts, github.com/Mino-shiro/Minoshiro, github.com/Mino1289/mathsup, +github.com/MinoDab492/action-electron-builder, github.com/Minori100/Amino.fix, +github.com/Minoro-Ltd/kleene_ai.doctor, github.com/Minrael/dps-tool,num_dependents_deps.dev:0 github.com/MinshuG/UE4Parse, github.com/MinshuG/pyUsmap, @@ -124286,6 +127167,7 @@ github.com/MintPlayer/mintplayer-ng-soundcloud-player,num_dependents_deps.dev:0 github.com/MintPlayer/mintplayer-ng-video-player,num_dependents_deps.dev:0 github.com/MintPlayer/mintplayer-ng-vimeo-player,num_dependents_deps.dev:0 github.com/MintPlayer/mintplayer-ng-youtube-player,num_dependents_deps.dev:0 +github.com/MintPlayer/publish-vscode-extension, github.com/MintPond/hasher-beamhash,num_dependents_deps.dev:0 github.com/Mintbase/mintbase-bridge,num_dependents_deps.dev:0 github.com/Mintbase/mintbase-js, @@ -124361,7 +127243,12 @@ github.com/Miraclx/stringd-colors,"num_dependents_deps.dev:0,num_dependents_deps github.com/Miraclx/xbytes,"num_dependents_deps.dev:0,num_dependents_deps.dev:2" github.com/Mirage74/proxy-lists-upd,num_dependents_deps.dev:0 github.com/Mirage911/corem-dtm-view,num_dependents_deps.dev:0 +github.com/MirageNet/nunit-reporter, +github.com/MirageNet/unity-runner, +github.com/MirageNet/unity-sonarscanner, github.com/MirageZoe/better-discord-antispam,num_dependents_deps.dev:0 +github.com/Miragon/miranum-cli-action, +github.com/Miragon/sarif-report-parse, github.com/MirahezeBots/MirahezeBots, github.com/MirahezeBots/jsonparser, github.com/MirahezeBots/sopel-adminlist, @@ -124371,6 +127258,7 @@ github.com/MirahezeBots/sopel-pingpong, github.com/MiraiEx/trade-api-sdk, github.com/MiraiSubject/passport-osu,num_dependents_deps.dev:0 github.com/MiraldiLab/maxATAC, +github.com/MiraliumRe/actions-pubsub, github.com/Miramac/data2level,num_dependents_deps.dev:0 github.com/Miramac/datakey,num_dependents_deps.dev:0 github.com/Miramac/dir-util,num_dependents_deps.dev:0 @@ -124402,12 +127290,14 @@ github.com/Mirdalan/base_astro_bot, github.com/Mirdalan/discord_astro_bot, github.com/Mirebeau/AdaptiveGridDiscretizations, github.com/MiriKabrt/ion-temp-list,num_dependents_deps.dev:0 +github.com/MiriamBlanco/node, github.com/MiriamNM/CDMX010-md-links,num_dependents_deps.dev:0 github.com/Mirio/amazonstoreprice, github.com/MirkoMignini/acts_as_default,num_dependents_deps.dev:0 github.com/MirkoRainer/react-hexgrid,num_dependents_deps.dev:0 github.com/MirkoRossini/django-altauth, github.com/MirkoRossini/pybuilder_django_enhanced_plugin, +github.com/Mirlahiji/rust-action, github.com/MiroDojkic/edx-oauth-middleware,num_dependents_deps.dev:0 github.com/MiroDojkic/react-clickable,num_dependents_deps.dev:0 github.com/MiroDojkic/vue-reform,num_dependents_deps.dev:0 @@ -124489,9 +127379,13 @@ github.com/MishaConway/wavefront-ruby,num_dependents_deps.dev:0 github.com/MishaKanai/Spel2ScalaJS,num_dependents_deps.dev:0 github.com/MishaKanai/mui-rest-list,num_dependents_deps.dev:0 github.com/MishaKanai/ts-spel,num_dependents_deps.dev:0 +github.com/MishaKav/jest-coverage-comment, +github.com/MishaKav/pytest-coverage-comment, github.com/MishaKlopukh/python-saccharide, github.com/MishaPetrov/Contrast.js,num_dependents_deps.dev:0 github.com/MishaPetrov/vue-playlist,num_dependents_deps.dev:0 +github.com/MishaSerbenyuk/magento2-grumphp-action, +github.com/MishaSerbenyuk/magento2-static-test-action, github.com/MishaShapo/Grunt-Phaser-Asset-Loader,num_dependents_deps.dev:0 github.com/Mishieck/jsonat,num_dependents_deps.dev:0 github.com/Mishieck/parawait,num_dependents_deps.dev:0 @@ -124529,6 +127423,7 @@ github.com/Misssusu/simple-style-ui, github.com/Misssusu/wheel,num_dependents_deps.dev:0 github.com/Misstmourt/ngx-cron-editor, github.com/Mist-Rain/Bot-Framework,num_dependents_deps.dev:0 +github.com/Mist3r-Robot/classic-discord-webhook, github.com/MistAEGIS/Directory-Structure-JSON,num_dependents_deps.dev:0 github.com/MistAEGIS/Training-Data-Compressor,num_dependents_deps.dev:0 github.com/MistaPidaus/react-use-country-region, @@ -124556,6 +127451,7 @@ github.com/MisterFix/django-rgbfield, github.com/MisterFlix/drawingjs,num_dependents_deps.dev:0 github.com/MisterGoodcat/good-injector,num_dependents_deps.dev:0 github.com/MisterGoodcat/good-injector-vue,num_dependents_deps.dev:0 +github.com/MisterIcy/zap-automation-framework, github.com/MisterIsaak/d3-radar,num_dependents_deps.dev:0 github.com/MisterKeefe/dom-particles,num_dependents_deps.dev:0 github.com/MisterKeefe/pq-dashboard, @@ -124653,6 +127549,7 @@ github.com/MitchPierias/React-Flow-Components,num_dependents_deps.dev:0 github.com/MitchPierias/Reactron, github.com/MitchReed123/cra-template-jsx-sass, github.com/MitchWilkins/ionic-lifecycle-interface,num_dependents_deps.dev:0 +github.com/MitchWind/ftp-deploy, github.com/Mitcheljager/brainblocks-rails,num_dependents_deps.dev:0 github.com/Mitcheljager/svelte-supabase-lazy-images,num_dependents_deps.dev:0 github.com/Mitcheljager/svelte-tiny-linked-charts,num_dependents_deps.dev:0 @@ -124665,6 +127562,7 @@ github.com/MitchellCash/node-storage-polyfill,num_dependents_deps.dev:0 github.com/MitchellDuhe/CKEditorResize,num_dependents_deps.dev:0 github.com/MitchellMarkGeorge/Docit,num_dependents_deps.dev:0 github.com/MitchellNorthern/frostwork,num_dependents_deps.dev:0 +github.com/MitchellThompkins/cocoOS_github_action, github.com/MitchellWeg/schemer, github.com/MitchiLaser/scpi-whisperer, github.com/Mitchwatts93/lyrics_generator, @@ -124805,6 +127703,8 @@ github.com/MitsuhideOhi/react-native-fast-image,num_dependents_deps.dev:0 github.com/Mitsunee/leetspeakify,num_dependents_deps.dev:0 github.com/Mitsunee/spork-js, github.com/Mitsuroseba/enzyme,num_dependents_deps.dev:0 +github.com/MittWillson/helm-deploy, +github.com/MittWillson/slack-workflow-status, github.com/Mittenbuhler/Neural_Network, github.com/MittoAG/mitto-nodejs,num_dependents_deps.dev:0 github.com/MitulGedeeya/google-ads-api,num_dependents_deps.dev:0 @@ -124862,6 +127762,7 @@ github.com/MizarWeb/Mizar, github.com/Mizkino/cscart_api_client, github.com/Mizo-Inc/psymz, github.com/Mizugorou/package01, +github.com/MizukiSonoko/gh-action-with-emoji, github.com/MizzzViolet/filterMap, github.com/MjBosss82/node-red-scoketio-client-helix,num_dependents_deps.dev:0 github.com/MjBosss82/node-red-socketio-client-helix,num_dependents_deps.dev:0 @@ -124923,10 +127824,13 @@ github.com/Mo-jon/npmStudy,num_dependents_deps.dev:0 github.com/Mo-xiaoyu/xiaoyu-vue,num_dependents_deps.dev:0 github.com/Mo0812/release-note-generator,num_dependents_deps.dev:0 github.com/Mo0nl19ht/youtube_crawler, +github.com/Mo7amedSMahdi/gpt-pr-description, github.com/MoBagel/awesome-minio, github.com/MoBagel/awesome-sso, github.com/MoBagel/decanter-ai-core-sdk, github.com/MoBlaa/irc_rust,num_dependents_deps.dev:0 +github.com/MoChilia/ActionDemo, +github.com/MoChilia/ActionsDemo, github.com/MoGnedy/ngx-loading-spinner,num_dependents_deps.dev:0 github.com/MoGnedy/ngx-loading-spinners, github.com/MoHax22rus/use-window-resize-handler,num_dependents_deps.dev:0 @@ -124998,6 +127902,7 @@ github.com/MoaufmKlo/hubdot, github.com/MoaufmKlo/log,num_dependents_deps.dev:0 github.com/MoaufmKlo/rasb.js,num_dependents_deps.dev:0 github.com/Moaz-Mohammed-Elesawey/py-cra, +github.com/Moazan1/check-commit-action, github.com/MobClub/ShareSDK-for-iOS,criticality_score:0.303190 github.com/MobClub/mobpush-websdkv3-nodejs,num_dependents_deps.dev:0 github.com/MobClub/mobpush-websdkv3-python, @@ -125098,6 +128003,9 @@ github.com/MobileChromeApps/topeka,Google github.com/MobileChromeApps/topeka-elements,Google github.com/MobileChromeApps/workshop-cca-eh,Google github.com/MobileChromeApps/zip,num_dependents_deps.dev:0 +github.com/MobileDevOps/flutter-sdk-action, +github.com/MobileDevOps/secret-to-file-action, +github.com/MobileDevOps/xcode-select-version-action, github.com/MobileDynasty/dorthy, github.com/MobileDynasty/pytest-env, github.com/MobileFacil/cordova-plugin-googlemaps,num_dependents_deps.dev:0 @@ -125120,6 +128028,8 @@ github.com/MobileTribe/recast-gaction-connector,num_dependents_deps.dev:0 github.com/MobileUI/mobileui,num_dependents_deps.dev:0 github.com/MobileWaves/grunt-path-to-animation,num_dependents_deps.dev:0 github.com/MobileWaves/path-to-animation,num_dependents_deps.dev:0 +github.com/MobileheadHolding/github-action-purge-packages, +github.com/MobileheadHolding/github-action-rebase, github.com/MobileheadHolding/mongo-migrations,num_dependents_deps.dev:0 github.com/Mobiletainment/protractor-jasmine2-html-reporter,num_dependents_deps.dev:0 github.com/MobiliseMe/sapi,num_dependents_deps.dev:0 @@ -125270,6 +128180,7 @@ github.com/ModularCodingInc/withnode,num_dependents_deps.dev:0 github.com/ModuleLoader/es-module-loader,num_dependents_deps.dev:2 github.com/ModuleLoader/es6-module-loader,num_dependents_deps.dev:472 github.com/ModuledkQuy/test, +github.com/Modulemancer/github-action, github.com/ModulesUnraveled/sous-components,num_dependents_deps.dev:0 github.com/ModulesUnraveled/sous-styles,num_dependents_deps.dev:0 github.com/ModulesUnraveled/visreg-config-files,num_dependents_deps.dev:0 @@ -125314,6 +128225,8 @@ github.com/Moe-Net/live2d-zoo, github.com/Moe520/tweet-sentiment, github.com/MoeBadr/phonertc,num_dependents_deps.dev:0 github.com/MoeFE/vue-aplayer,num_dependents_deps.dev:0 +github.com/MoeKernel/cache, +github.com/MoeKernel/github-repo-action, github.com/MoeLove/qyweixin, github.com/MoeLove/weixinpay, github.com/MoeMoeFish/mpvue-loader,num_dependents_deps.dev:0 @@ -125422,7 +128335,11 @@ github.com/MohamedBeydoun/atlas,num_dependents_deps.dev:0 github.com/MohamedDounnani94/gen-files, github.com/MohamedDounnani94/github-trend-cli, github.com/MohamedElashri/Arxiv-Aabstract-scraper, +github.com/MohamedElashri/Jupyter-to-Markdown, +github.com/MohamedElashri/Jupyter-to-PDF, github.com/MohamedElashri/hadd-parallel, +github.com/MohamedElashri/overleaf-sync-action, +github.com/MohamedElashri/rootcern-action, github.com/MohamedElmdary/fte,num_dependents_deps.dev:0 github.com/MohamedElmdary/react-redux-class-reducer,num_dependents_deps.dev:0 github.com/MohamedElmdary/ts-redux-cli,num_dependents_deps.dev:0 @@ -125447,6 +128364,7 @@ github.com/Mohamedismail77/Android-Location-Provider,num_dependents_deps.dev:0 github.com/Mohamedsa1990/lotide,num_dependents_deps.dev:0 github.com/Mohamilr/climate-cli,num_dependents_deps.dev:0 github.com/Mohamilr/forecasts, +github.com/Mohammad-Alqadi/execution-checker, github.com/Mohammad-Faisal/react-ant-form-validation,num_dependents_deps.dev:0 github.com/Mohammad-Faisal/react-ant-form-wrapper,num_dependents_deps.dev:0 github.com/Mohammad-Khalid/Oclif-modify-readme-url-script,num_dependents_deps.dev:0 @@ -125511,6 +128429,7 @@ github.com/MohannadNaj/run-subdir,num_dependents_deps.dev:0 github.com/MohannadNaj/vue-eventbus2,num_dependents_deps.dev:0 github.com/MohanrajChandrasekar/express_cli,num_dependents_deps.dev:0 github.com/Moharu/buckler,num_dependents_deps.dev:0 +github.com/MohdRashid01/test, github.com/MohdShakib/is-null-or-empty,num_dependents_deps.dev:0 github.com/Mohist-Community/Mohist,criticality_score:0.426090 github.com/Mohit21GoJs/generator-express,num_dependents_deps.dev:0 @@ -125709,6 +128628,7 @@ github.com/MomsFriendlyRobotCompany/yivo, github.com/Mon-Imitator/vue-country-code,num_dependents_deps.dev:0 github.com/Mon-ius/flask-deploy, github.com/MonGDCH/js-util,num_dependents_deps.dev:0 +github.com/Mona-bele/action-integration-terraform, github.com/MonadCo/synth.io,num_dependents_deps.dev:0 github.com/Monadic-Cat/madap,num_dependents_deps.dev:0 github.com/Monadical-SAS/react-components,num_dependents_deps.dev:2 @@ -125753,8 +128673,10 @@ github.com/MondayBread/generator-bagle,num_dependents_deps.dev:0 github.com/MondayBread/generator-bagle-component,num_dependents_deps.dev:0 github.com/Mondego/spacetime, github.com/MondoAurora/pydust, +github.com/MondoPower/codeartifact-auth, github.com/Mondonno/ilyrics-core,num_dependents_deps.dev:0 github.com/Mondschein-SX/naza-cli,num_dependents_deps.dev:0 +github.com/Mondtic/build-jenkins-job, github.com/Mone-Lee/simpleEditor,num_dependents_deps.dev:0 github.com/Mone-Lee/webpack-project-builder, github.com/MonederoBingo/database-service,num_dependents_deps.dev:0 @@ -125779,6 +128701,7 @@ github.com/MoneyLego/milkyswap-sdk,num_dependents_deps.dev:0 github.com/Mongey/terraform-provider-kafka,"criticality_score:0.416710,num_dependents_deps.dev:0" github.com/MongieLai/zaolunzi,num_dependents_deps.dev:0 github.com/Mongkii/Surge-Config-Parser,num_dependents_deps.dev:0 +github.com/MongoCamp/mongodb-github-action, github.com/MongoEngine/django-mongoengine,criticality_score:0.369710 github.com/MongoEngine/flask-mongoengine,criticality_score:0.503880 github.com/MongoEngine/marshmallow-mongoengine, @@ -125849,9 +128772,14 @@ github.com/MonochromeChameleon/mezcal,num_dependents_deps.dev:0 github.com/Monochromish/mono,num_dependents_deps.dev:0 github.com/Monogatari/Monogatari,"criticality_score:0.413830,num_dependents_deps.dev:0" github.com/Monogramm/taiga-contrib-ldap-auth-ext, +github.com/MonoidDev/clone-postgresql-action, github.com/MonoidDev/smbc-gp-client, github.com/MonolithAILtd/caching, github.com/MonolithAILtd/monolith-filemanager, +github.com/MonolithProjects/action-molecule, +github.com/Monorepo-Actions/config-for-actions, +github.com/Monorepo-Actions/file-dup-action, +github.com/Monorepo-Actions/setup-gh-cli, github.com/Monotrix/Mono.db,num_dependents_deps.dev:0 github.com/Monotrix/py-scanpackages, github.com/Monotrix/pypkg, @@ -125915,11 +128843,13 @@ github.com/MontrealCorpusTools/Montreal-Forced-Aligner,criticality_score:0.37110 github.com/MontrealCorpusTools/PolyglotDB, github.com/Montvydas/translatesubs, github.com/Monty-Ma/disorganized,num_dependents_deps.dev:0 +github.com/MontyD/package-json-updated-action, github.com/MonveChen/TSexample,num_dependents_deps.dev:0 github.com/Monwara/JSTmpl,num_dependents_deps.dev:0 github.com/Monwara/htmltools, github.com/Monwara/node-logging, github.com/Monwara/sanidate,num_dependents_deps.dev:0 +github.com/Moo-Salaah/Wiki-Action-build, github.com/MooCommerce/moo-react-pagination,num_dependents_deps.dev:0 github.com/Moobin/Cation,num_dependents_deps.dev:0 github.com/Moobin/Plank,num_dependents_deps.dev:0 @@ -125943,6 +128873,13 @@ github.com/MoomFE/eslint-config,num_dependents_deps.dev:0 github.com/MoomFE/hu-template-minifier,num_dependents_deps.dev:0 github.com/MoombaDS/redux-simple-localstorage,num_dependents_deps.dev:0 github.com/Moon-R/generator-dp-react-demo,num_dependents_deps.dev:0 +github.com/Moon1706/keptn-create-monitoring, +github.com/Moon1706/keptn-get-event, +github.com/Moon1706/keptn-provisioning-gha, +github.com/Moon1706/keptn-send-event, +github.com/Moon1706/keptn-setup, +github.com/Moon1706/keptn-update-projects, +github.com/Moon1706/keptn-update-services, github.com/MoonBarc/Knob,num_dependents_deps.dev:0 github.com/MoonBegonia/hexo-tag-remote-code,num_dependents_deps.dev:0 github.com/MoonCui-Ying/moon-ying-cui-test,num_dependents_deps.dev:0 @@ -125951,6 +128888,7 @@ github.com/MoonHighway/create-timesplitter-course,num_dependents_deps.dev:0 github.com/MoonHighway/timesplitter,num_dependents_deps.dev:0 github.com/MoonHighway/timesplitter-dev,num_dependents_deps.dev:0 github.com/MoonJuhan/homebridge-esp8266-dht22,num_dependents_deps.dev:0 +github.com/MoonLGH/MAL-autoreadme, github.com/MoonMail/moonmail-js-sdk, github.com/MoonSHRD/core,num_dependents_deps.dev:0 github.com/MoonShineVFX/node-package, @@ -125973,6 +128911,7 @@ github.com/Moonhint/bunyan-logstash-tcp, github.com/Moonhint/florest, github.com/Moonhint/front-roles,num_dependents_deps.dev:0 github.com/Moonhint/pesona,num_dependents_deps.dev:0 +github.com/MoonieGZ/changelog-ci-cz, github.com/Moonlight-Token/material-theme,num_dependents_deps.dev:0 github.com/Moonlightwsn/momoui, github.com/Moonoik/Hansei-Cafeteria,num_dependents_deps.dev:0 @@ -125985,6 +128924,7 @@ github.com/MoorLex/Cute-Framework,num_dependents_deps.dev:0 github.com/MoordMachineYT/async-bucket,num_dependents_deps.dev:0 github.com/MoordMachineYT/eventemitter16,num_dependents_deps.dev:0 github.com/MoordMachineYT/testingDrooM.js,num_dependents_deps.dev:0 +github.com/Moosara/CodeLevel, github.com/Moosecoop/PrettyLog,num_dependents_deps.dev:0 github.com/Moosecoop/d.jsError,num_dependents_deps.dev:0 github.com/Moosylvania/GifMeme,num_dependents_deps.dev:0 @@ -126006,6 +128946,7 @@ github.com/MopTym/vue-waterfall,num_dependents_deps.dev:0 github.com/Mopolo/node-todo,num_dependents_deps.dev:0 github.com/Moppler/terminalui,num_dependents_deps.dev:0 github.com/Moptop32/waifus-wrapper,num_dependents_deps.dev:0 +github.com/MorFix/amplify-cli-action, github.com/MorPelRub97/TFG-GraphQL,num_dependents_deps.dev:0 github.com/Moraga/db.js,num_dependents_deps.dev:0 github.com/Moraga/itemsinlists.js,num_dependents_deps.dev:0 @@ -126079,6 +129020,8 @@ github.com/MorganConrad/parse-retry-after,num_dependents_deps.dev:0 github.com/MorganConrad/remodeler,num_dependents_deps.dev:0 github.com/MorganEPatch/javascript-style,num_dependents_deps.dev:0 github.com/MorganGallant/twitter-rs,num_dependents_deps.dev:0 +github.com/MorganGeek/conform, +github.com/MorganGeek/pr-lint-action, github.com/MorganStanley/needle, github.com/MorganZ/zaxios,num_dependents_deps.dev:0 github.com/MorganZhang100/line-counter, @@ -126165,6 +129108,7 @@ github.com/Morioh-Lab/v-scrollbar,num_dependents_deps.dev:0 github.com/Morioh-Lab/v-smooth-scrollbar,num_dependents_deps.dev:0 github.com/Morioh-Lab/v-tooltip,num_dependents_deps.dev:0 github.com/MorisHarA/loadmore,num_dependents_deps.dev:0 +github.com/Morishiri/block-merge-commits-action, github.com/Morishiri/gulp-junit-merge,num_dependents_deps.dev:0 github.com/Morishiri/hubot-matrix-org,num_dependents_deps.dev:0 github.com/Morishiri/simple-coverage-badger,num_dependents_deps.dev:0 @@ -126204,6 +129148,7 @@ github.com/Moro-Code/sqltills, github.com/MoroccanOSS/react-stoon,num_dependents_deps.dev:0 github.com/Moroder95/Touchless-navigation, github.com/Moroder95/cant-touch-this,num_dependents_deps.dev:0 +github.com/MoronSlayer/podcast-generator, github.com/MoronVV/asyncsip, github.com/Morpheu5/Inequality,num_dependents_deps.dev:0 github.com/Morpheu5/Inequality-grammar,num_dependents_deps.dev:0 @@ -126222,6 +129167,7 @@ github.com/Morphosium/reForm-js,num_dependents_deps.dev:0 github.com/Morphosium/reform, github.com/Morphosium/xcelsior,num_dependents_deps.dev:0 github.com/Morphotech/NeverNoneDict, +github.com/Morr0/s3Sync, github.com/Morr123/shiitake,num_dependents_deps.dev:0 github.com/Morrantho/mandycan,num_dependents_deps.dev:0 github.com/MorriganR/SciPyFST, @@ -126234,8 +129180,11 @@ github.com/MorrisDa/twilio-chat-item,num_dependents_deps.dev:0 github.com/MorrisGallego/POTrans,num_dependents_deps.dev:0 github.com/MorrisLLC/grunt-war, github.com/Morrisai/Google-Oauth-API,num_dependents_deps.dev:0 +github.com/MorrisonCole/pr-lint-action, github.com/MorrisseySoftware/paycomp-mock-server,num_dependents_deps.dev:0 github.com/Morsby/gatsby-remark-behead,num_dependents_deps.dev:0 +github.com/MorsiC/Dependency-Check_Action, +github.com/MorsiC/changelog-release-by-branch, github.com/MortJC/homebridge-platform-isolarcloud,num_dependents_deps.dev:0 github.com/MortJC/homebridge-platform-orbit,num_dependents_deps.dev:0 github.com/Mortafix/RedisPersistence, @@ -126260,6 +129209,8 @@ github.com/Mortem45/ClonInstagram-Client,num_dependents_deps.dev:0 github.com/Mortem45/ClonInstagram-DB,num_dependents_deps.dev:0 github.com/MortenBirk/fishfingers, github.com/MortenBirk/foxface,num_dependents_deps.dev:0 +github.com/MortenDuus/create-repo, +github.com/MortenDuus/create-repo-action, github.com/MortenHoustonLudvigsen/clean-assets-webpack-plugin,num_dependents_deps.dev:0 github.com/MortenHoustonLudvigsen/karma-vs-reporter,num_dependents_deps.dev:0 github.com/MortenHoustonLudvigsen/process-promises,num_dependents_deps.dev:86 @@ -126560,6 +129511,7 @@ github.com/Mozartted/ravepay-nodejs,num_dependents_deps.dev:0 github.com/Mozetsu/ministring,num_dependents_deps.dev:0 github.com/Mozfe/react-text-selection-popover,num_dependents_deps.dev:0 github.com/Mozi92/codh,num_dependents_deps.dev:0 +github.com/Mozilla-Actions/sccache-action, github.com/MozillaFoundation/javascript-style-guide,num_dependents_deps.dev:0 github.com/MozillaFoundation/mofo-style, github.com/MozillaReality/FirefoxReality,criticality_score:0.558360 @@ -126629,6 +129581,7 @@ github.com/Mr-Hqq/aggregate-big-data-paginate,num_dependents_deps.dev:0 github.com/Mr-Io/dset, github.com/Mr-KayJayDee/discord-image-generation,num_dependents_deps.dev:0 github.com/Mr-KayJayDee/discord-mongodb-economy,num_dependents_deps.dev:0 +github.com/Mr-Leonerrr/labeler-actions, github.com/Mr-Milk/SpatialEntropy, github.com/Mr-Milk/SpatialTis, github.com/Mr-Milk/circDraw-py, @@ -126818,6 +129771,8 @@ github.com/MrComboF10/PygameMenus, github.com/MrCorncob/Youtube-Title-Parser, github.com/MrCreEper002/vka, github.com/MrDHat/generator-node-mocha,num_dependents_deps.dev:0 +github.com/MrDaar/add-tag-to-azure-workitem-action, +github.com/MrDaar/one-of-labels-action, github.com/MrDandycorn/vk-botting, github.com/MrDarkSkil/html-css-obfuscator,num_dependents_deps.dev:0 github.com/MrDatastorage/Netflix-unofficial-API,num_dependents_deps.dev:0 @@ -126859,6 +129814,7 @@ github.com/MrFizzyBubbs/pymafia, github.com/MrFlashAccount/redux-cookie,num_dependents_deps.dev:0 github.com/MrFloya/enigma.rs,num_dependents_deps.dev:0 github.com/MrFlynn/thesaurize, +github.com/MrFlynn/upload-to-netlify-action, github.com/MrFo2sh/Cordova-SDK,num_dependents_deps.dev:0 github.com/MrFo2sh/IonicAppgainNGX,num_dependents_deps.dev:0 github.com/MrFrangipane/frangidoc, @@ -126870,6 +129826,7 @@ github.com/MrFrankel/ngx-popper, github.com/MrFrankel/ob-genie,num_dependents_deps.dev:0 github.com/MrFrankel/ruler,num_dependents_deps.dev:0 github.com/MrFrankel/share-loader,num_dependents_deps.dev:0 +github.com/MrFreasy/action-caprover, github.com/MrFrontend/cursor,num_dependents_deps.dev:0 github.com/MrFu1998/input-plate-number, github.com/MrFuku/gem_test,num_dependents_deps.dev:0 @@ -126883,6 +129840,8 @@ github.com/MrGaoGang/parse-jsx-to-css,num_dependents_deps.dev:0 github.com/MrGaoGang/react-native-file-hash-plugin,num_dependents_deps.dev:0 github.com/MrGogo400/site_statique, github.com/MrGolden1/FastLine, +github.com/MrGossett/github-action-milestone-closer, +github.com/MrGossett/github-action-milestone-schedule, github.com/MrGps1/MrGps, github.com/MrGps1/PyHtml5, github.com/MrGranddy/koyash, @@ -126972,6 +129931,8 @@ github.com/MrKou47/raw-module-require-hook,num_dependents_deps.dev:0 github.com/MrKou47/webpack-modules-manifest-plugin,num_dependents_deps.dev:0 github.com/MrKou47/webpack-unused-files-plugin,num_dependents_deps.dev:0 github.com/MrKou47/wechat-pay-sdk,num_dependents_deps.dev:0 +github.com/MrKrishnaAgarwal/deploy-react-app-to-gh-pages, +github.com/MrKrishnaAgarwal/hello-world-docker-action, github.com/MrKriss/masonry, github.com/MrKuchu/RandomCurrency,num_dependents_deps.dev:0 github.com/MrL1605/ngx-scroll-to-top,num_dependents_deps.dev:0 @@ -127015,6 +129976,7 @@ github.com/MrLuit/elfproef,num_dependents_deps.dev:0 github.com/MrLuit/evm,num_dependents_deps.dev:0 github.com/MrLuit/graceful-dns,num_dependents_deps.dev:0 github.com/MrLuit/selfdestruct-detect,num_dependents_deps.dev:0 +github.com/MrLuje/vs-marketplace-publisher, github.com/MrMEEE/bumblebee-Old-and-abbandoned,criticality_score:0.303750 github.com/MrMYHuang/cbetar2,num_dependents_deps.dev:0 github.com/MrMYHuang/iconv-lite-myh, @@ -127044,6 +130006,7 @@ github.com/MrMaxie/ts-types-parser, github.com/MrMaximus/textlocal-promise,num_dependents_deps.dev:0 github.com/MrMcyeet/node-captcha,num_dependents_deps.dev:0 github.com/MrMebelMan/misspell, +github.com/MrMeison/yc-object-storage-action, github.com/MrMenezes/mcpi, github.com/MrMicrowaveOven/ZADT,num_dependents_deps.dev:0 github.com/MrMimic/data-scientist-roadmap,criticality_score:0.356720 @@ -127086,6 +130049,7 @@ github.com/MrNossiom/react-starterpack,num_dependents_deps.dev:0 github.com/MrNuggelz/sklearn-glvq, github.com/MrNuggelz/sklearn-lvq, github.com/MrObe13/models-from-swagger,num_dependents_deps.dev:0 +github.com/MrOctopus/download-asset-action, github.com/MrOhyang/babel-plugin-ivcomponent,num_dependents_deps.dev:0 github.com/MrOldK/trans-num,num_dependents_deps.dev:0 github.com/MrOlm/drep, @@ -127241,6 +130205,7 @@ github.com/MrSpadala/pklcache, github.com/MrSpecific/classToggle,num_dependents_deps.dev:0 github.com/MrSpecific/simpleClassToggle, github.com/MrSpinne/DiscordBotsList.py, +github.com/MrSquaare/ssh-setup-action, github.com/MrSuicideParrot/ctf-cicd, github.com/MrSuicideParrot/python-netdiscover, github.com/MrSunshyne/ramgolam,num_dependents_deps.dev:0 @@ -127402,6 +130367,7 @@ github.com/MrityunjayBhardwaj/Yoga.js,num_dependents_deps.dev:0 github.com/Mrjianghan/fixPrintVue-pdf,num_dependents_deps.dev:0 github.com/Mrjing/node-rawHeaders2Obj,num_dependents_deps.dev:0 github.com/Mrkisha/vue-auth-session,num_dependents_deps.dev:0 +github.com/Mrkristal/require-checklist-action, github.com/Mrletejhon/sendMail, github.com/Mrlgm/voir-UI,num_dependents_deps.dev:0 github.com/Mrlgm/voir-react,num_dependents_deps.dev:0 @@ -127473,6 +130439,8 @@ github.com/Ms2ger/group-by,num_dependents_deps.dev:0 github.com/Msawtelle/PyNHDPLUS, github.com/MscrmTools/XrmToolBox,criticality_score:0.546700 github.com/Mshivam2409/online-answering,num_dependents_deps.dev:0 +github.com/MssKnd/documentaly, +github.com/MssKnd/documentaly-publish, github.com/MssText/mssui, github.com/Mssjim/selfo.js,num_dependents_deps.dev:0 github.com/Mssjim/simillar-commands,num_dependents_deps.dev:0 @@ -127512,6 +130480,7 @@ github.com/MuTsunTsai/gulp-workbox,num_dependents_deps.dev:0 github.com/MuTsunTsai/shrewd,num_dependents_deps.dev:0 github.com/MuTsunTsai/vue-on-clickout,num_dependents_deps.dev:0 github.com/MuTsunTsai/vue-property-decorator-transpiler,num_dependents_deps.dev:0 +github.com/MuXiu1997/run-zx, github.com/MuYiBo/vue-round-progress,num_dependents_deps.dev:0 github.com/MuYiGrass/js-plugin-cli,num_dependents_deps.dev:0 github.com/MuYunyun/analyze-webpack-plugin,num_dependents_deps.dev:0 @@ -127528,6 +130497,7 @@ github.com/Mubelotix/gtts,num_dependents_deps.dev:1 github.com/Mubelotix/wasm-game-lib,num_dependents_deps.dev:0 github.com/Mubelotix/webdriver,num_dependents_deps.dev:0 github.com/Mucephie/DORADO, +github.com/Muchaszewski/read-json-action, github.com/MuchenSun/me314, github.com/MuchenSun/ros-lab, github.com/MuchenSun/yeah, @@ -127540,6 +130510,7 @@ github.com/Mudassar045/cond-construct,num_dependents_deps.dev:0 github.com/Mudassaralimosu/imdb-rotten_tomatoes-metacritic, github.com/MuditDandwate/zetta-pir-pi-driver,num_dependents_deps.dev:0 github.com/Mudlet/Mudlet,criticality_score:0.659490 +github.com/Mudlet/xmlstarlet-action, github.com/Mudrekh/bull-qm, github.com/Mudrekh/node-ping,num_dependents_deps.dev:0 github.com/Mudrekh/priority-worker-queue, @@ -127592,6 +130563,7 @@ github.com/MuhammadAmir5670/psx-data-reader, github.com/MuhammadAnas14/math-function-crate,num_dependents_deps.dev:0 github.com/MuhammadAnas14/rust-crates,num_dependents_deps.dev:0 github.com/MuhammadHani10p/10p-keycloak,num_dependents_deps.dev:0 +github.com/MuhammadJamee/email_generator, github.com/MuhammadMabrouk/jquery-hijri-date, github.com/MuhammadMabrouk/jquery-prayer-times,num_dependents_deps.dev:0 github.com/MuhammadMabrouk/jquery.hijri.date,num_dependents_deps.dev:0 @@ -127660,8 +130632,11 @@ github.com/Multi-collinear/MCfun, github.com/MultiAgentLearning/playground,criticality_score:0.303360 github.com/MultiChain/multichain,criticality_score:0.321530 github.com/MultiMC/MultiMC5,criticality_score:0.572650 +github.com/MultiMx/RancherRedeployAction, github.com/MultiSafepay/multisafepay-node-wrapper,num_dependents_deps.dev:0 github.com/MultiSafepay/multisafepay-python-wrapper, +github.com/MultiTheFranky/action-release-to-steam-ws, +github.com/MultiTheFranky/action-release-with-hemtt, github.com/MultiVault/models,num_dependents_deps.dev:0 github.com/Multicolour/javascript-sdk,num_dependents_deps.dev:0 github.com/Multicolour/multicolor-npm-proxy,num_dependents_deps.dev:0 @@ -127744,12 +130719,15 @@ github.com/MunifTanjim/gatsby-theme-dox,num_dependents_deps.dev:0 github.com/MunifTanjim/gist-embedder,num_dependents_deps.dev:0 github.com/MunifTanjim/is-mobile-phone-number-bd,num_dependents_deps.dev:0 github.com/MunifTanjim/js-set-time,num_dependents_deps.dev:0 +github.com/MunifTanjim/luarocks-publish-action, +github.com/MunifTanjim/luver-action, github.com/MunifTanjim/middleware-pipeline,num_dependents_deps.dev:0 github.com/MunifTanjim/minimo,criticality_score:0.387520 github.com/MunifTanjim/node-bitbucket, github.com/MunifTanjim/node-bkash,num_dependents_deps.dev:0 github.com/MunifTanjim/oclif-plugin-completion,num_dependents_deps.dev:24 github.com/MunifTanjim/octoherd-script-set-pr-merge-config,num_dependents_deps.dev:0 +github.com/MunifTanjim/setup-neovim-action, github.com/MunifTanjim/synor,num_dependents_deps.dev:0 github.com/MunifTanjim/tree-sitter-lua,num_dependents_deps.dev:0 github.com/MunifTanjim/typography.css, @@ -127838,6 +130816,7 @@ github.com/MurilloGroupMSU/spartan, github.com/Murilo-BiO/vue-fancy-router,num_dependents_deps.dev:0 github.com/Murilo-Gruppi/DonkeyKong-BirdIsland, github.com/MuriloAbranches/bya-cli,num_dependents_deps.dev:0 +github.com/MuriloChianfa/ioncube-encoder-action, github.com/MuriloEduardo/vnda-cli,num_dependents_deps.dev:0 github.com/MuriloFrade/google-spreadsheets-db,num_dependents_deps.dev:0 github.com/MuriloScarpaSitonio/python-cei-crawler, @@ -127863,8 +130842,10 @@ github.com/MurrayJack/webfonts-generator,num_dependents_deps.dev:0 github.com/MurrellGroup/SeqUMAP, github.com/Murriouz/gulp-md5-statics,num_dependents_deps.dev:0 github.com/Murriouz/srt-parser,num_dependents_deps.dev:0 +github.com/Murror/action-check-supabase-migration-order, github.com/MursAi/react-flow-chart,num_dependents_deps.dev:0 github.com/Mursaat/ngx-rating,num_dependents_deps.dev:0 +github.com/MurtajaKadiyani/open-defect-action-fail, github.com/Murthy10/pyschieber, github.com/Murthy1999/varunmurthy, github.com/Murthy582/Cordova-Plugin-Logcat,num_dependents_deps.dev:0 @@ -127893,12 +130874,15 @@ github.com/Muserk-team/cerebro, github.com/Muses/error,num_dependents_deps.dev:2 github.com/Muses/errors,num_dependents_deps.dev:0 github.com/Muses/service,num_dependents_deps.dev:0 +github.com/MusfiqDehan/Auto-Update-CHANGELOG, github.com/MushroomMaula/Log2DB, github.com/MushroomMaula/fastapi_login, github.com/MushroomRL/mushroom-rl,criticality_score:0.446500 github.com/Mushu-Tutorials/tuto-npmjs-packages,num_dependents_deps.dev:0 github.com/Mushud/polyform-generator,num_dependents_deps.dev:0 github.com/Mushud/react-axios-hooks-graphql-style, +github.com/Mushus/checkout-submodule, +github.com/Mushus/golangci-linter, github.com/MusiCode1/yemot-api,num_dependents_deps.dev:0 github.com/MusiCode1/yemot-router,num_dependents_deps.dev:0 github.com/Musialny/rpi-pins,num_dependents_deps.dev:0 @@ -127969,6 +130953,8 @@ github.com/MustafaGungor/hazelnut-ui, github.com/MustafaGungor/mg-ui,num_dependents_deps.dev:0 github.com/MustafaOnurKilinc/express-backend-server,num_dependents_deps.dev:0 github.com/MustafaTRK/randomim,num_dependents_deps.dev:0 +github.com/Mustafakhn/health-check-action, +github.com/Mustafakhn/pr-title-verifier-action, github.com/Mustajbasic/bemu-cli,num_dependents_deps.dev:0 github.com/Mustajbasic/bemu-express-wrapper,num_dependents_deps.dev:0 github.com/Mustajbasic/bemu-simple-event,num_dependents_deps.dev:0 @@ -128008,6 +130994,7 @@ github.com/MutsuApp/cda-extractor-js,num_dependents_deps.dev:0 github.com/MutterPedro/digjoy,num_dependents_deps.dev:0 github.com/MutterPedro/easy-api-doc,num_dependents_deps.dev:0 github.com/MutterPedro/trampo,num_dependents_deps.dev:0 +github.com/MutterPedro/varjs, github.com/Mutton/nodebb-plugin-testmehard,num_dependents_deps.dev:0 github.com/MutualDEX/bigswap-sdk-core, github.com/MutualDEX/bigswap-v2-sdk,num_dependents_deps.dev:0 @@ -128077,12 +131064,16 @@ github.com/Mxbonn/visualwakewords, github.com/Mxintro/cola,num_dependents_deps.dev:0 github.com/MxsicXYZ/lewds.api, github.com/MxsicXYZ/lewdsfunpy, +github.com/My-MC/check-sync-volta-and-node-version, github.com/My-Templates/TypeScript-Library,num_dependents_deps.dev:0 github.com/My-kal/2Captcha, github.com/My-refer/chatbot-creator, github.com/My42/clean-directory,num_dependents_deps.dev:0 +github.com/MyActionWay/branch-pruner-action, +github.com/MyActionWay/lighthouse-badger-action, github.com/MyAeroCode/tistory-api,num_dependents_deps.dev:0 github.com/MyAeroCode/waait-sync,num_dependents_deps.dev:0 +github.com/MyAlbum/purge-cache, github.com/MyBadProjects/UK-Phone-Number-Generator,num_dependents_deps.dev:0 github.com/MyBadProjects/ezcustomlogger,num_dependents_deps.dev:0 github.com/MyBestPro/node-mybestpro,num_dependents_deps.dev:0 @@ -128281,6 +131272,7 @@ github.com/Myhaylyak/ember-cli-story,num_dependents_deps.dev:0 github.com/Mykhail/jscs-preset-genn,num_dependents_deps.dev:0 github.com/MykolaGolubyev/react-components-viewer,num_dependents_deps.dev:0 github.com/MykooBot/Mykoob-API,num_dependents_deps.dev:0 +github.com/Mykyta/hello-world-javascript-action, github.com/MylesBorins/nihilism, github.com/MylesBorins/node-osc,"criticality_score:0.355470,num_dependents_deps.dev:4" github.com/MylesBorins/oh-hi,num_dependents_deps.dev:0 @@ -128331,6 +131323,8 @@ github.com/MystPi/tinted, github.com/Mysterico/sentiment_analysis, github.com/Mystery-Coder/better-codegen,num_dependents_deps.dev:0 github.com/Mystery-K/puppeteer-ssr,num_dependents_deps.dev:0 +github.com/Mystery00/github-release-getter, +github.com/Mystery00/upload-actions, github.com/MysteryBlokHed/Encwork, github.com/MysteryBlokHed/QRConsole, github.com/MysteryBlokHed/mbhupdater, @@ -128383,6 +131377,7 @@ github.com/Myzel394/react-native-nested-selects,num_dependents_deps.dev:0 github.com/Myzel394/react-native-onoff-component,num_dependents_deps.dev:0 github.com/Myzel394/react-native-style-helper,num_dependents_deps.dev:0 github.com/Myzel394/secure-file-detection, +github.com/Myztiq/github-assign, github.com/Myztiq/tosser,num_dependents_deps.dev:0 github.com/Mz1006/generator-qiankun-child-vue,num_dependents_deps.dev:0 github.com/Mz1326/eletokeyboard,num_dependents_deps.dev:0 @@ -128421,11 +131416,13 @@ github.com/N0ps32/co-functional,num_dependents_deps.dev:4 github.com/N0ps32/cordova-plugin-root,num_dependents_deps.dev:0 github.com/N0ps32/gulp-xml-editor-re-re,num_dependents_deps.dev:0 github.com/N0t-Eth1ca1-Hac4r/pygetpic, +github.com/N0tExisting/setup-pnpm, github.com/N0taN3rd/chrome-remote-interface-extra,num_dependents_deps.dev:0 github.com/N0taN3rd/node-cdxj,num_dependents_deps.dev:0 github.com/N0taN3rd/node-warc,num_dependents_deps.dev:2 github.com/N0taN3rd/pyee2, github.com/N0ury/dmm_util, +github.com/N0zz/docker-run-action, github.com/N1Anoobis/npm-generator,num_dependents_deps.dev:0 github.com/N1Boldyrev/materialUI_dateRangePicker_ru,num_dependents_deps.dev:0 github.com/N1K1TAS95/django_composite_auto_field, @@ -128539,6 +131536,7 @@ github.com/NBISweden/GUESSmyLT, github.com/NBISweden/vcf2cytosure, github.com/NBTSolutions/Leaflet.Dialog,num_dependents_deps.dev:0 github.com/NBTSolutions/Leaflet.VectorTiles,num_dependents_deps.dev:0 +github.com/NBTX/upload-release-assets, github.com/NBUT-Developers/config.util,num_dependents_deps.dev:0 github.com/NBUT-Developers/node-judger,num_dependents_deps.dev:0 github.com/NBUT-Developers/node-judger-core,num_dependents_deps.dev:0 @@ -128548,6 +131546,7 @@ github.com/NBakaev/angular-essential-select,num_dependents_deps.dev:0 github.com/NBakaev/web-component-essential-select,num_dependents_deps.dev:0 github.com/NBoulle/greenlearning, github.com/NBoychev/slate,num_dependents_deps.dev:0 +github.com/NBprojekt/gource-action, github.com/NBye/dir-montor,num_dependents_deps.dev:0 github.com/NBye/fooler-core,num_dependents_deps.dev:0 github.com/NBye/fooler-cross-domain,num_dependents_deps.dev:0 @@ -128812,6 +131811,8 @@ github.com/NIB-DEVELOPMENT/NIB_utils, github.com/NIC-MichalLabedzki/jsonfromschema, github.com/NIC-MichalLabedzki/nf, github.com/NICD-UK/float-on-py, +github.com/NICEElevateAI/ElevateAIActions, +github.com/NICEElevateAI/ElevateAITranscriptionAction, github.com/NICHD-BSPC/geo_prepper, github.com/NICTA/nationalmap,num_dependents_deps.dev:0 github.com/NICTA/nicta-ner,num_dependents_deps.dev:0 @@ -128829,6 +131830,8 @@ github.com/NIKDISSV-Forever/TGPhind, github.com/NIKDISSV-Forever/proxyscan, github.com/NILID/nmax2,num_dependents_deps.dev:0 github.com/NINAnor/csv2postgresql, +github.com/NIOMIND-srl-sb/deploy-repository-to-server-action, +github.com/NIOMIND-srl-sb/flutter-analyze-action, github.com/NIPE-SYSTEMS/eventflow, github.com/NIRALUser/clusterpost,num_dependents_deps.dev:0 github.com/NIT-Administrative-Systems/nusso-node, @@ -128876,6 +131879,7 @@ github.com/NLPchina/ansj_seg,criticality_score:0.398020 github.com/NLPchina/elasticsearch-analysis-ansj,criticality_score:0.358810 github.com/NLPchina/elasticsearch-sql,criticality_score:0.510550 github.com/NLPchina/nlp-lang,criticality_score:0.298220 +github.com/NLTGit/aicf-action, github.com/NLeRoy917/gatsby-plugin-tiktok,num_dependents_deps.dev:0 github.com/NLeRoy917/optipyzer, github.com/NLeSC-GO-common-infrastructure/dcachefs, @@ -129068,6 +132072,7 @@ github.com/NREL/phygnn, github.com/NREL/pySMARTS, github.com/NREL/rdtools, github.com/NRL-Plasma-Physics-Division/turbopy, +github.com/NRO04/docker-build-push-action, github.com/NRTnarathip/vphackez, github.com/NReilingh/unsafe-hash-words,num_dependents_deps.dev:0 github.com/NRshka/remote-dataset, @@ -129078,6 +132083,11 @@ github.com/NS-BOBBY-C/react-native-create-thumbnail,num_dependents_deps.dev:0 github.com/NS-BOBBY-C/react-native-open-settings,num_dependents_deps.dev:0 github.com/NSBum/hexo-filter-russify,num_dependents_deps.dev:0 github.com/NSBum/hexo-tag-russophilia,num_dependents_deps.dev:0 +github.com/NSCoder/archive-action, +github.com/NSCoder/regex-filter, +github.com/NSCoder/rust-musl-action, +github.com/NSCoder/sentry, +github.com/NSCoder/sentry-release, github.com/NSDrowned/svelte-masonry,num_dependents_deps.dev:0 github.com/NSError/legal-poo,num_dependents_deps.dev:0 github.com/NSFA/jstpl,num_dependents_deps.dev:0 @@ -129167,6 +132177,7 @@ github.com/NStal/node-tasks,num_dependents_deps.dev:0 github.com/NStal/node-watch-compile,num_dependents_deps.dev:2 github.com/NSwag/NSwag,num_dependents_deps.dev:0 github.com/NTBBloodbath/Seconds, +github.com/NTBBloodbath/selene-action, github.com/NTFS2020/UsefulTool, github.com/NTHINGs/cfdi-api,num_dependents_deps.dev:0 github.com/NTHINGs/mongoose-history,num_dependents_deps.dev:0 @@ -129298,6 +132309,7 @@ github.com/NVlabs/Bongard-LOGO, github.com/NVlabs/sionna, github.com/NVlabs/timeloop,Google github.com/NWBY/lablook,num_dependents_deps.dev:0 +github.com/NWBY/pest-action, github.com/NWBY/taskord-cli,num_dependents_deps.dev:0 github.com/NWKDenmark/sentry-auth-crowd, github.com/NWRichmond/gatsby-plugin-graphql-loader,num_dependents_deps.dev:0 @@ -129312,9 +132324,12 @@ github.com/NWalker4483/diagram-js-code-editor,num_dependents_deps.dev:0 github.com/NWylynko/ASXapi, github.com/NWylynko/Datebase,num_dependents_deps.dev:0 github.com/NWylynko/howLongAgo, +github.com/NWylynko/markdown-add-files, +github.com/NWylynko/markdown-code-runner, github.com/NWylynko/pleasant-logs, github.com/NWylynko/react-font, github.com/NWylynko/react-simple-badges, +github.com/NX-Official/github-actions-demo, github.com/NX915/lotide,num_dependents_deps.dev:0 github.com/NX915/tag-match,num_dependents_deps.dev:0 github.com/NXMIX/emoji-seq-match,num_dependents_deps.dev:36 @@ -129338,6 +132353,7 @@ github.com/NYCOpportunity/pattern-attribution,num_dependents_deps.dev:0 github.com/NYCOpportunity/pattern-menu,num_dependents_deps.dev:0 github.com/NYCOpportunity/pattern-modal,num_dependents_deps.dev:0 github.com/NYCOpportunity/pattern-navigation,num_dependents_deps.dev:0 +github.com/NYCPlanning/action-library-archive, github.com/NYCPlanning/ember-mapbox-composer,num_dependents_deps.dev:0 github.com/NYCPlanning/geojson2mvt,num_dependents_deps.dev:0 github.com/NYCPlanning/jane-maps,num_dependents_deps.dev:0 @@ -129452,12 +132468,14 @@ github.com/NachoCasta/command-line-utils,num_dependents_deps.dev:0 github.com/NachoSEO/seo-scraper, github.com/NachoSoto/node-hostedgraphite,num_dependents_deps.dev:0 github.com/NachoSoto/node-tweet-blink, +github.com/NachoVazquez/loc-alarm, github.com/Nacht1gall/animal-avatar-generator, github.com/Nachtalb/PixivDownloader, github.com/Nachtfeuer/concept-py, github.com/Nachtfeuer/pipeline, github.com/NaciAkce/frontend,num_dependents_deps.dev:0 github.com/NaciAkce/toggle-all,num_dependents_deps.dev:0 +github.com/Nackophilz/pyinstaller-action, github.com/Naclplus/nacl-vuex-loading, github.com/Naclplus/vue-np-cli,num_dependents_deps.dev:0 github.com/NacsonXXX/testNodejsModule,num_dependents_deps.dev:0 @@ -129489,6 +132507,7 @@ github.com/Nadja-s-open-source-stuff/famouse-name-generator,num_dependents_deps. github.com/NadjaNNN/excelHandling,num_dependents_deps.dev:0 github.com/Nadjaroemer/rainbowLog,num_dependents_deps.dev:0 github.com/Nadock/toa_days, +github.com/Nadock/verified_commits_check, github.com/Nadr0jj/sarcastic_gd, github.com/Nadrieril/dhall-rust,num_dependents_deps.dev:25 github.com/Nadrieril/improved_slice_patterns,num_dependents_deps.dev:0 @@ -129527,6 +132546,9 @@ github.com/Nagasai-Aytha/custom-names,num_dependents_deps.dev:0 github.com/Nagasaki45/bibo, github.com/Nagasaki45/fluteline, github.com/Nagasaki45/watson-streaming, +github.com/Nagasree2000/Simple-Javascript, +github.com/Nagasree2000/open-issue, +github.com/Nagasree2000/simple-open-issue, github.com/Naggertooth/ra-data-firestore-client,num_dependents_deps.dev:0 github.com/Nagidal/ordered_argparse, github.com/Nagidal/re_patterns, @@ -129588,6 +132610,7 @@ github.com/Nakerdev/tsc-query-string-serializer,num_dependents_deps.dev:0 github.com/Nakhunsong/animation-menu, github.com/Nakhunsong/react-animation-menu, github.com/Nakiami/mellivora,criticality_score:0.371300 +github.com/Nakilon/git-to-gcs, github.com/Naklecha/knip, github.com/Nakroma/wow-classic-items,num_dependents_deps.dev:0 github.com/NakshatraCodes/gitauto,num_dependents_deps.dev:0 @@ -129627,10 +132650,15 @@ github.com/NamanJain1902/Topsis-Naman-101903304, github.com/Namanjn/namuskj, github.com/NamasteJasutin/hwglance, github.com/NamasteJasutin/wizprint, +github.com/Nambers/ReplaceStringInFile, +github.com/Namchee/actions-case-police, +github.com/Namchee/conventional-pr, github.com/Namchee/decora,num_dependents_deps.dev:0 github.com/Namchee/decorator-ku, github.com/Namchee/dependent,num_dependents_deps.dev:0 github.com/Namchee/eslint-config-namchee,num_dependents_deps.dev:0 +github.com/Namchee/good-weekend, +github.com/Namchee/konfigured, github.com/Namchee/remov,num_dependents_deps.dev:0 github.com/Namchee/telepon,num_dependents_deps.dev:0 github.com/Namchee/tetikus,num_dependents_deps.dev:0 @@ -129653,6 +132681,10 @@ github.com/NamitPandey/PythonPackage, github.com/NamorNiradnug/SimpleParser, github.com/NamorNiradnug/physicslib, github.com/NamorNiradnug/raymarching, +github.com/Namoshek/emqx-github-action, +github.com/Namoshek/hivemq4-github-action, +github.com/Namoshek/mosquitto-github-action, +github.com/Namoshek/rabbitmq-github-action, github.com/NamuTree0345/jommand,num_dependents_deps.dev:0 github.com/NamuTree0345/strawberry-buildtool,num_dependents_deps.dev:0 github.com/NanBlanc/OSToolBox, @@ -129663,6 +132695,7 @@ github.com/NanJingBoy/nvmw,num_dependents_deps.dev:0 github.com/NanJingBoy/resource_build,num_dependents_deps.dev:0 github.com/NanQi/wxcloud,num_dependents_deps.dev:0 github.com/NanaMorse/react-native-pull-up-listview,num_dependents_deps.dev:0 +github.com/Nanai10a/setup-engines, github.com/Nanakii/summernote-plugins,num_dependents_deps.dev:0 github.com/Nanami-the-Soft/tree-sitter-inmu,num_dependents_deps.dev:0 github.com/Nanami-the-Soft/tree-sitter-kos,num_dependents_deps.dev:0 @@ -129700,6 +132733,7 @@ github.com/Nangxif/toast,num_dependents_deps.dev:0 github.com/NanhuaZhang/node-grpc-interceptors,num_dependents_deps.dev:0 github.com/NaniTanuki/node-mcleaks, github.com/Nannan-Liu/Multidimensional-Analysis-Tagger-of-Mandarin-Chinese, +github.com/Nano-API/Deploy, github.com/Nano1237/Systeme-international,num_dependents_deps.dev:0 github.com/Nano1237/iizuna,num_dependents_deps.dev:0 github.com/Nano1237/typescript-components,num_dependents_deps.dev:0 @@ -129725,6 +132759,7 @@ github.com/Nanopro/oculussdk-sys,num_dependents_deps.dev:0 github.com/Nanopublication/nanopub-java,num_dependents_deps.dev:0 github.com/Nanosim-LIG/opencl-ruby,num_dependents_deps.dev:1 github.com/NanroYahel/P3_Labyrinthe, +github.com/NansD/heroku-deploy-review-app, github.com/NansD/use-state-if-mounted,num_dependents_deps.dev:0 github.com/Nantis-GmbH/eslint-config-typescript,num_dependents_deps.dev:0 github.com/NaoTu/DesktopNaotu,criticality_score:0.301490 @@ -129749,7 +132784,9 @@ github.com/Naouak/random-placeholder,num_dependents_deps.dev:0 github.com/Napam/PyPat-Console, github.com/Napam/meny, github.com/Naphrum/cts-js-footer,num_dependents_deps.dev:0 +github.com/Napokue/setup-dxc, github.com/Napolei/dmtree, +github.com/Napoleon280/xUnitEPITAgrading, github.com/Nappa9693/elfenben,num_dependents_deps.dev:0 github.com/Napster/napster.js,num_dependents_deps.dev:0 github.com/Napster2210/ngx-spinner,num_dependents_deps.dev:4 @@ -129873,6 +132910,7 @@ github.com/Narnach/blocklist,num_dependents_deps.dev:0 github.com/Narnach/fast_group_by,num_dependents_deps.dev:0 github.com/Narnach/freeze_time,num_dependents_deps.dev:0 github.com/Narnach/permutations,num_dependents_deps.dev:0 +github.com/Narottam04/action-capacitor-android, github.com/NarrativeScience/Log.io,num_dependents_deps.dev:0 github.com/NarrativeScience/async-task-queue, github.com/NarrativeScience/cubejs-client-async, @@ -129897,6 +132935,7 @@ github.com/Narzerus/catch-async,num_dependents_deps.dev:0 github.com/Narzerus/passport-discord-oauth2,num_dependents_deps.dev:0 github.com/Narzerus/yakuza,num_dependents_deps.dev:0 github.com/Narzon/aca-dash,num_dependents_deps.dev:0 +github.com/NasAmin/trx-parser, github.com/NasExt/DependentSelectBox,num_dependents_deps.dev:0 github.com/NasaTeam/Nasa.js,num_dependents_deps.dev:0 github.com/NasaTeam/naslint, @@ -129922,6 +132961,7 @@ github.com/Nase00/withStyles,num_dependents_deps.dev:0 github.com/NaseerHines/lodown,num_dependents_deps.dev:0 github.com/Nases/react-debounce-function, github.com/Nasfald/tagify,num_dependents_deps.dev:0 +github.com/Nasfame/github-actions-ngrok, github.com/Nash-Cash/wallet-backend,num_dependents_deps.dev:0 github.com/NashInc/NashSync, github.com/NashMiao/ontology-ddxf-crypto, @@ -130085,6 +133125,7 @@ github.com/Nathan-Wall/Secrets,num_dependents_deps.dev:0 github.com/Nathan-Wall/proprima,num_dependents_deps.dev:0 github.com/Nathan-Wall/proto,num_dependents_deps.dev:0 github.com/Nathan-Wall/simile,num_dependents_deps.dev:0 +github.com/Nathan1258/cloudNotify-action, github.com/Nathan219/docker-stream-cleanser,num_dependents_deps.dev:0 github.com/Nathan219/plotly.js, github.com/Nathan219/react-tags,num_dependents_deps.dev:0 @@ -130100,6 +133141,8 @@ github.com/NathanEpstein/clusters,num_dependents_deps.dev:0 github.com/NathanEpstein/datakit,num_dependents_deps.dev:0 github.com/NathanEpstein/stochastic,num_dependents_deps.dev:0 github.com/NathanEscandor/codon,num_dependents_deps.dev:0 +github.com/NathanFirmo/wait-for-other-action, +github.com/NathanFirmo/wait-for-other-job, github.com/NathanGRomano/express-logical-routes,num_dependents_deps.dev:0 github.com/NathanGavenski/Tensorboard, github.com/NathanGrimaud/md-color-picker,num_dependents_deps.dev:0 @@ -130127,6 +133170,7 @@ github.com/NathanTan/ChessState,num_dependents_deps.dev:0 github.com/NathanTan/ChessStateExample,num_dependents_deps.dev:0 github.com/NathanUA/U-2-Net,criticality_score:0.305020 github.com/NathanUrwin/gitlab-release-generator, +github.com/NathanVaughn/actions-cloudflare-purge, github.com/NathanVaughn/pyleft, github.com/NathanVss/vssContentsLoaded,num_dependents_deps.dev:0 github.com/NathanWalker/angular-seed-advanced,criticality_score:0.437900 @@ -130158,9 +133202,12 @@ github.com/NathanaelA/nativescript-keyboardshowing,num_dependents_deps.dev:0 github.com/NathanaelA/nativescript-localstorage,num_dependents_deps.dev:0 github.com/NathanaelA/nativescript-platform-css,num_dependents_deps.dev:0 github.com/Nathanaela/v8-natives,num_dependents_deps.dev:0 +github.com/Nathandelenclos/GASnewsletter-actions, github.com/Nathaniel-Rink/myFirstNPMPackage,num_dependents_deps.dev:0 github.com/Nathaniel-github/CombinedServerClientRepo, github.com/NathanielHill/RamanuJS,num_dependents_deps.dev:0 +github.com/NathanielHill/check-pr-label-action, +github.com/NathanielHill/fail-if-changes, github.com/NathanielHill/micro-captcha,num_dependents_deps.dev:0 github.com/NathanielHill/micro-ping,num_dependents_deps.dev:0 github.com/NathanielInman/gulp-jade-split,num_dependents_deps.dev:0 @@ -130170,8 +133217,11 @@ github.com/NathanielInman/slush-jspm,num_dependents_deps.dev:0 github.com/NathanielInman/slush-jugs,num_dependents_deps.dev:0 github.com/NathanielInman/slush-justice,num_dependents_deps.dev:0 github.com/NathanielInman/slush-ng2,num_dependents_deps.dev:0 +github.com/NathanielRN/create-an-issue, +github.com/NathanielRN/github-action-benchmark, github.com/Nathanlauga/transparentai, github.com/Nathanmalnoury/duplicate-detector, +github.com/Nathanmalnoury/gh-backport-action, github.com/NatherG/ApiDiscordModule,num_dependents_deps.dev:0 github.com/NatherG/natherdiscordapi,num_dependents_deps.dev:0 github.com/Natim/uber-cache-helpers,num_dependents_deps.dev:0 @@ -130304,6 +133354,7 @@ github.com/NativeSync/nativesync,num_dependents_deps.dev:0 github.com/Nativescript-Vue-Web/Nativescript-Vue-Web,num_dependents_deps.dev:0 github.com/Natkarock/react-native-payments,num_dependents_deps.dev:0 github.com/NatoNathan/Hash-byte-Dedupe, +github.com/NatoNathan/increment-semantic-version, github.com/Natooz/MidiTok, github.com/Natrinicle/shm_dict, github.com/NatriumLab/AioCacheBucket, @@ -130312,6 +133363,9 @@ github.com/NatriumLab/python-mirai, github.com/NatriumLab/python-mirai-core, github.com/Natron0919/twofourseven, github.com/NatronGitHub/Natron,criticality_score:0.566950 +github.com/Nats-ji/3dm-release-action, +github.com/Nats-ji/Action3DMLargeFileUpload, +github.com/Nats-ji/delete-old-releases, github.com/Natshah/bootstrap-no-spacing,num_dependents_deps.dev:0 github.com/Natshah/bootstrap-print,num_dependents_deps.dev:0 github.com/Natshah/bootstrap-pull,num_dependents_deps.dev:0 @@ -130408,6 +133462,7 @@ github.com/NaturalWill/hexo-filter-nofollow-with-goto,num_dependents_deps.dev:0 github.com/Naturalclar/babel-plugin-expo-vector-icon-storybook,num_dependents_deps.dev:0 github.com/Naturalclar/eslint-config,num_dependents_deps.dev:0 github.com/Naturalclar/hermes-bin,num_dependents_deps.dev:0 +github.com/Naturalclar/issue-action, github.com/Naturalclar/klank,num_dependents_deps.dev:0 github.com/Naturalclar/ncv,num_dependents_deps.dev:0 github.com/Naturalclar/npmcu,num_dependents_deps.dev:0 @@ -130422,6 +133477,7 @@ github.com/Naturalclar/tbs,num_dependents_deps.dev:0 github.com/Naturalclar/tsconfig,num_dependents_deps.dev:0 github.com/Naturalclar/use-persist-auth,num_dependents_deps.dev:0 github.com/Naturally-Being/G-Rex,num_dependents_deps.dev:0 +github.com/Nature40/pimod, github.com/NatureFeng/eslint-config-no-es2015,num_dependents_deps.dev:0 github.com/NatureFeng/eslint-plugin-no-es2015,num_dependents_deps.dev:0 github.com/NatureFeng/generator-react-component-gen,num_dependents_deps.dev:0 @@ -130441,6 +133497,7 @@ github.com/NaughtyMC/angular-error-tooltip,num_dependents_deps.dev:0 github.com/Nauja/kanjidb, github.com/Naujiano/node-sql-query,num_dependents_deps.dev:0 github.com/Naujiano/simple-table,num_dependents_deps.dev:0 +github.com/Nautilus-Cyberneering/git-queue, github.com/Nautilus-Cyberneering/nautilus-librarian, github.com/NauxLiu/five-star-rating,num_dependents_deps.dev:0 github.com/NavJobs/animate,num_dependents_deps.dev:0 @@ -130522,6 +133579,7 @@ github.com/Naxmeify/express-routes-manager,num_dependents_deps.dev:0 github.com/Naxmeify/nloc,num_dependents_deps.dev:0 github.com/NayakwadiS/mftool, github.com/NayakwadiS/selenium-page-factory, +github.com/NayamAmarshe/cp-file-to-s3, github.com/Naycon/roc-plugin-react-hot-ts,num_dependents_deps.dev:0 github.com/Naycon/roc-plugin-typed-css-modules,num_dependents_deps.dev:0 github.com/Naycon/roc-plugin-typescript,num_dependents_deps.dev:0 @@ -130557,6 +133615,7 @@ github.com/NazimMertBilgi/nativescript-sweet-alert,num_dependents_deps.dev:0 github.com/Nazin/json-proxy,num_dependents_deps.dev:0 github.com/NazirArifin/stemmer-madura, github.com/NazirHasan92/modified-angular-query-builder, +github.com/NazmiAltun/dotnet-parallel-sonar-scan, github.com/NazmiAltun/testokur-ui,num_dependents_deps.dev:0 github.com/NazoSnare/malcom-authentication-mongo,num_dependents_deps.dev:0 github.com/NazoSnare/malcom-random-string,num_dependents_deps.dev:0 @@ -130579,6 +133638,7 @@ github.com/NdYAG/anki-apkg,num_dependents_deps.dev:0 github.com/NdYAG/react-rater,num_dependents_deps.dev:0 github.com/NdYAG/react-tageditor,num_dependents_deps.dev:0 github.com/NdYAG/sass-pattern,num_dependents_deps.dev:0 +github.com/NdagiStanley/github-project-automation, github.com/NdagiStanley/vue-django,criticality_score:0.336290 github.com/Ndjieudja/Inauconf, github.com/Ndrou/n8n-nodes-laposte,num_dependents_deps.dev:0 @@ -130631,6 +133691,12 @@ github.com/NeQuissimus/zio-slf4j,num_dependents_deps.dev:0 github.com/NeRo8/phone-input,num_dependents_deps.dev:0 github.com/NeRo8/rn-start-js, github.com/NeWbLt123/cucumber-html-report,num_dependents_deps.dev:0 +github.com/NeXTLinux/action-push-hub, +github.com/NeXTLinux/ai-codewise, +github.com/NeXTLinux/harden-runner, +github.com/NeXTLinux/profiler, +github.com/NeXTLinux/publish-action, +github.com/NeXTLinux/wait-for-secrets, github.com/NeXTs/Clusterize.js,num_dependents_deps.dev:14 github.com/NeXTs/Jets.js,num_dependents_deps.dev:0 github.com/NeXTs/Multiple.js,num_dependents_deps.dev:0 @@ -130695,6 +133761,8 @@ github.com/Nebo15/nebo-form-errors,num_dependents_deps.dev:0 github.com/Nebo15/nebo-rangeslider,num_dependents_deps.dev:0 github.com/Neboer/ipgw-py-manager, github.com/Nebojsa92/git_set_commit_status, +github.com/NebraLtd/balena-cli-action, +github.com/NebraLtd/git-tag-action, github.com/NebraLtd/helium-hardware-definitions, github.com/NebraLtd/hm-pyhelper, github.com/Nebula-Developers/Moomoo.js,num_dependents_deps.dev:0 @@ -130740,6 +133808,7 @@ github.com/Nectres/mathmatrix, github.com/NedFodder/nodebb-plugin-tdwtf-articles,num_dependents_deps.dev:0 github.com/NedFodder/nodebb-plugin-tdwtf-buttons, github.com/NedalEldeen/react-dialog-manager,num_dependents_deps.dev:0 +github.com/NeddM/nonsible, github.com/Nedgeva/es6-highcharts2image,num_dependents_deps.dev:0 github.com/Nedomas/candour,num_dependents_deps.dev:0 github.com/Nedomas/databound,num_dependents_deps.dev:0 @@ -130784,9 +133853,12 @@ github.com/Neemworks/nw.orm,num_dependents_deps.dev:0 github.com/Neemworks/wilddog, github.com/NeenJah/dynamic_import, github.com/Neeraj-Chouhan/React_loader,num_dependents_deps.dev:0 +github.com/Neeraj319/zipit-action, +github.com/Neeraj6897/gophercon-2021Neeraj, github.com/Neethukp93/CurrencyMaskLibrary,num_dependents_deps.dev:0 github.com/Neetz78/DATA533_Lab4, github.com/Nef10/homebridge-midea-air,num_dependents_deps.dev:0 +github.com/Nef10/lcov-reporter-action, github.com/NefedovAO/grunt-wi-json-palette,num_dependents_deps.dev:0 github.com/Nefelim4ag/Ananicy,criticality_score:0.311420 github.com/Nefelim4ag/systemd-swap,criticality_score:0.409850 @@ -130880,12 +133952,15 @@ github.com/NeilujD/paper-avatar,num_dependents_deps.dev:0 github.com/NeilujD/paper-buttons-group,num_dependents_deps.dev:0 github.com/Neisha1618/lodown,num_dependents_deps.dev:0 github.com/Neisvestney/faceit-js-api,num_dependents_deps.dev:0 +github.com/NeithLogistics/neith-hello, github.com/Neitsch/graphql-rs,num_dependents_deps.dev:0 github.com/Neivi-IT/tokenchannel-java,num_dependents_deps.dev:0 github.com/Neivi-IT/tokenchannel-java-starter,num_dependents_deps.dev:0 github.com/Neivi-IT/tokenchannel-java11,num_dependents_deps.dev:0 github.com/Neivi-IT/tokenchannel-java11-starter,num_dependents_deps.dev:0 github.com/NejcGrenc/DynamicStoredProcedures,num_dependents_deps.dev:0 +github.com/NejcZdovc/bundle-size-diff, +github.com/NejcZdovc/comment-pr, github.com/NejcZdovc/ng2-select2,num_dependents_deps.dev:0 github.com/Nejivoi/redux-rubik-reducer,num_dependents_deps.dev:0 github.com/NekR/async-module-loader,num_dependents_deps.dev:0 @@ -130897,6 +133972,7 @@ github.com/NekR/webpaths,num_dependents_deps.dev:0 github.com/Neketek/gridonjs,num_dependents_deps.dev:0 github.com/Neketek/react-generic-form,num_dependents_deps.dev:0 github.com/Nekit10/pyloges, +github.com/NekitCorp/yandex-storage-website-action, github.com/Neklan/apiculi,num_dependents_deps.dev:0 github.com/Neklan/graphql-amqp-subscriptions,num_dependents_deps.dev:0 github.com/Nekmo/angular-django, @@ -130906,6 +133982,7 @@ github.com/Nekmo/dirhunt, github.com/Nekmo/django-code-generator, github.com/Nekmo/geoip2-tools, github.com/Nekmo/gkeep, +github.com/Nekmo/pip-rating, github.com/Nekmo/proxy-db, github.com/Nekmo/pypi-admin, github.com/Nekmo/pypi-manage, @@ -130937,6 +134014,7 @@ github.com/NekoWheel/NekoCAS_Python_SDK, github.com/NekoX-Dev/NekoX,criticality_score:0.456880 github.com/NekoboyTM/nekos-longify-function,num_dependents_deps.dev:0 github.com/Nekochxn-API/neko-chxn-node,num_dependents_deps.dev:0 +github.com/NekomiyaKumi/YTB-Combiner, github.com/Nekos-life/nekos-dot-life,num_dependents_deps.dev:0 github.com/Nekos-life/nekos.py, github.com/Nekoyasuii/discord-button-embed,num_dependents_deps.dev:0 @@ -130998,6 +134076,7 @@ github.com/NelsonScott/verbose_ls, github.com/NelsonSharma/Public, github.com/NeltaGmbh/Framework, github.com/Nelthorim/gitman, +github.com/Nelyx/action-calver, github.com/NemProject/NanoWallet,"criticality_score:0.460530,num_dependents_deps.dev:0" github.com/Nemesarial/console-writer,num_dependents_deps.dev:0 github.com/Nemesarial/cthru-comma,num_dependents_deps.dev:0 @@ -131088,6 +134167,7 @@ github.com/NeoExtended/gym-gathering, github.com/NeoFusion/hierarchy-select,num_dependents_deps.dev:0 github.com/NeoGalaxy/Tycker,num_dependents_deps.dev:0 github.com/NeoGeographyToolkit/StereoPipeline,criticality_score:0.470500 +github.com/NeoHsu/deploy-files-to-repo, github.com/NeoJRotary/redux-driver,num_dependents_deps.dev:0 github.com/NeoLSN/cordova-plugin-android-permission,num_dependents_deps.dev:0 github.com/NeoLSN/cordova-plugin-gyroscope,num_dependents_deps.dev:0 @@ -131135,6 +134215,7 @@ github.com/Neoklosch/crlf-helper,num_dependents_deps.dev:0 github.com/Neol-d2022/stampsfinder-se106a,num_dependents_deps.dev:0 github.com/Neologixgithub/video_trimmer,num_dependents_deps.dev:0 github.com/NeonGamerBot-QK/aoijs-dashboard,num_dependents_deps.dev:0 +github.com/NeonGamerBot-QK/resume-action, github.com/NeonGamerBot-QK/shadow-utils, github.com/NeonGeckoCom/neon-api-proxy, github.com/NeonGeckoCom/neon-diana-backend, @@ -131204,6 +134285,7 @@ github.com/Neos21GitHub/npm-neos21,num_dependents_deps.dev:0 github.com/Neos21GitHub/req-cmd,num_dependents_deps.dev:0 github.com/Neos21GitHub/template-html,num_dependents_deps.dev:0 github.com/Neos3452/TypedJSON,num_dependents_deps.dev:0 +github.com/Neosperience/vendorito, github.com/Neoster/homebridge-foscam-nextlevel,num_dependents_deps.dev:0 github.com/Neoteroi/BlackSheep, github.com/Neoteroi/BlackSheep-SQLAlchemy, @@ -131260,6 +134342,7 @@ github.com/Neppord/riverbank,num_dependents_deps.dev:0 github.com/Neppord/timeit-async,num_dependents_deps.dev:0 github.com/Neppord/timeit-stream,num_dependents_deps.dev:0 github.com/Neppord/timeit-sync,num_dependents_deps.dev:0 +github.com/Neproxx/similar-contributions, github.com/Nepsha1986/svg-signature,num_dependents_deps.dev:0 github.com/NeptuneMF/NMF,num_dependents_deps.dev:0 github.com/Nepxion/Aquarius,num_dependents_deps.dev:588 @@ -131318,6 +134401,7 @@ github.com/Nerdtrix/FetchAsync,num_dependents_deps.dev:0 github.com/NerdyDeedsLLC/get-elements-by-text-contents,num_dependents_deps.dev:0 github.com/NerdyPepper/dijo,"criticality_score:0.325890,num_dependents_deps.dev:0" github.com/NerdyPepper/eva,"criticality_score:0.321800,num_dependents_deps.dev:0" +github.com/NerdyTechy/API-Timer, github.com/Nereare/Adventure,num_dependents_deps.dev:0 github.com/Nereare/Grimoire,num_dependents_deps.dev:0 github.com/Nereare/adventure-theme,num_dependents_deps.dev:0 @@ -131525,6 +134609,7 @@ github.com/NetTopologySuite/NetTopologySuite,criticality_score:0.506860 github.com/NetWilliam/protobuf-jsonschema,num_dependents_deps.dev:0 github.com/NetWilliam/protocol-buffers-schema,num_dependents_deps.dev:0 github.com/Netacea/Cloudflare-Worker-Examples,num_dependents_deps.dev:0 +github.com/Netail/webhook-notifier, github.com/NetanelBasal/akita-cli,num_dependents_deps.dev:0 github.com/NetanelBasal/akita-ng-forms-manager,num_dependents_deps.dev:0 github.com/NetanelBasal/angular-es6-templates,num_dependents_deps.dev:0 @@ -131809,6 +134894,9 @@ github.com/NeuraLegion/node-os-service,num_dependents_deps.dev:0 github.com/NeuraLegion/oas2har,num_dependents_deps.dev:0 github.com/NeuraLegion/passport-headerapikey,num_dependents_deps.dev:0 github.com/NeuraLegion/postman2har,num_dependents_deps.dev:0 +github.com/NeuraLegion/run-scan, +github.com/NeuraLegion/stop-scan, +github.com/NeuraLegion/wait-for, github.com/Neural-Space/genos, github.com/NeuralDynamicsWeb/django-multicurrency, github.com/NeuralEnsemble/ephyviewer, @@ -131953,6 +135041,10 @@ github.com/Nevoss/s-icons,num_dependents_deps.dev:0 github.com/Nevraeka/star-rating,num_dependents_deps.dev:0 github.com/Nevraeka/template-repeater,num_dependents_deps.dev:0 github.com/Nevren/droplet,num_dependents_deps.dev:0 +github.com/Nevvulo/dev-to-publisher, +github.com/Nevvulo/hashnode-publisher, +github.com/Nevvulo/upsert-json, +github.com/New-Dev3/UltroidWorkflow, github.com/New-Math-Data/rollcred, github.com/New-Ton88/npmPackage,num_dependents_deps.dev:0 github.com/NewAlexandria/crossing_guard,num_dependents_deps.dev:0 @@ -132062,6 +135154,7 @@ github.com/NewTownData/koala-webgen, github.com/NewUserAyush/react-infinity-scroll-list,num_dependents_deps.dev:0 github.com/NewVadim/graylog-json-formatter, github.com/NewVadim/project-settings, +github.com/NewWorldComingSoon/setup-llvm-msvc, github.com/NewYorker/tny-uturn, github.com/Newan/ioBroker.aio,num_dependents_deps.dev:0 github.com/Newan/ioBroker.bluelink,num_dependents_deps.dev:0 @@ -132152,6 +135245,7 @@ github.com/Nexmo/nexmo-python, github.com/Nexmo/nexmo-rails,num_dependents_deps.dev:0 github.com/Nexmo/nexmo-spring-boot-starter,num_dependents_deps.dev:0 github.com/Nexmo/rack-verify-signature-middleware,num_dependents_deps.dev:0 +github.com/Nexmo/release-to-noticeable-action, github.com/Nexmo/stitch-android-quickstart,num_dependents_deps.dev:4 github.com/Nexmo/verify-android-sdk,num_dependents_deps.dev:0 github.com/Nexmo/verify-javascript-sdk,num_dependents_deps.dev:0 @@ -132278,6 +135372,7 @@ github.com/NexusDevelopment/dapple,num_dependents_deps.dev:0 github.com/NexusDevelopment/elastic-ethereum,num_dependents_deps.dev:0 github.com/NexusFramework/NexusFrameworkJS, github.com/NexusNull/bot-web-interface, +github.com/NexusPHP/no-merge-commits, github.com/NexusTools/NexusFrameworkJS,num_dependents_deps.dev:0 github.com/NexusTools/node-argwrap,num_dependents_deps.dev:0 github.com/NexusTools/node-execs,num_dependents_deps.dev:0 @@ -132407,6 +135502,8 @@ github.com/NiGhTTraX/strong-mock,num_dependents_deps.dev:0 github.com/NiGhTTraX/tdd-buffet,num_dependents_deps.dev:0 github.com/NiKlimenko/FFParser,num_dependents_deps.dev:0 github.com/NiMlr/PyFunctionBases, +github.com/NiNiyas/ntfy-action, +github.com/NiRit100/pyinstaller-action-windows, github.com/NiRuff/IntelliPy, github.com/NiZiL/clitube, github.com/NiaMori/slate-debug-visualizer,num_dependents_deps.dev:0 @@ -132427,6 +135524,7 @@ github.com/Nibbler999/passport-ecobee,num_dependents_deps.dev:0 github.com/Nibbler999/passport-honeywell,num_dependents_deps.dev:0 github.com/Nibbler999/passport-netatmo,num_dependents_deps.dev:0 github.com/Nibbler999/passport-wink,num_dependents_deps.dev:0 +github.com/NibiruChain/localnet-action, github.com/NibiruOS/afip,num_dependents_deps.dev:0 github.com/NibiruOS/async,num_dependents_deps.dev:22 github.com/NibiruOS/mobile,num_dependents_deps.dev:8 @@ -132449,6 +135547,7 @@ github.com/NicDom/easemail, github.com/NicDom/overloadlib, github.com/NicDominguez/svelte-wrapped-astro,num_dependents_deps.dev:0 github.com/Nicals/markdown-extra, +github.com/NiccoMlt/setup-antlr4, github.com/Niccolum/py_parse_sber, github.com/NiccsJ/elastic-logger,num_dependents_deps.dev:0 github.com/Nice-PLQ/framehost, @@ -132458,6 +135557,7 @@ github.com/NiceKingWei/tigerfix, github.com/NiceLabs/git-flow-init,num_dependents_deps.dev:0 github.com/NiceLabs/git-rev,num_dependents_deps.dev:0 github.com/NiceLabs/node-expandvars, +github.com/NiceLabs/rclone-action, github.com/NiceLabs/react-cropper,num_dependents_deps.dev:0 github.com/NiceLabs/sprit,num_dependents_deps.dev:0 github.com/NiceLabs/ts-import-plugin,num_dependents_deps.dev:0 @@ -132501,6 +135601,7 @@ github.com/NicholasAzar/ng2-selectize,num_dependents_deps.dev:0 github.com/NicholasBallard/tempo, github.com/NicholasBertazzon/escpos-generator-js,num_dependents_deps.dev:0 github.com/NicholasBertazzon/react-native-orientation-aware-view,num_dependents_deps.dev:0 +github.com/NicholasBoll/action-forward-merge-pr, github.com/NicholasBoll/cypress-enter-plugin,num_dependents_deps.dev:0 github.com/NicholasBoll/cypress-keyboard-plugin,num_dependents_deps.dev:0 github.com/NicholasBoll/cypress-pipe,num_dependents_deps.dev:0 @@ -132579,6 +135680,7 @@ github.com/NickC1/skedm, github.com/NickCarneiro/curlconverter,"criticality_score:0.446210,num_dependents_deps.dev:0" github.com/NickCarneiro/gps2zip,num_dependents_deps.dev:0 github.com/NickCashFlow/zipify-colorpicker,num_dependents_deps.dev:0 +github.com/NickChecan/sap-btp-action, github.com/NickChuCode/jUtils,num_dependents_deps.dev:0 github.com/NickChuCode/nick-library-template,num_dependents_deps.dev:0 github.com/NickChuCode/nick-mobile,num_dependents_deps.dev:0 @@ -132589,6 +135691,7 @@ github.com/NickCis/node-tcl-remote, github.com/NickCis/razzle-plugin-device-specific-bundles,num_dependents_deps.dev:0 github.com/NickCis/razzle-plugin-firebase, github.com/NickCraver/StackExchange.Exceptional,criticality_score:0.395830 +github.com/NickCrews/gotoraptor, github.com/NickCrews/ms5803py, github.com/NickDJM/accessible-menu,num_dependents_deps.dev:0 github.com/NickDJM/accessible-menu-bootstrap-4,num_dependents_deps.dev:0 @@ -132683,6 +135786,12 @@ github.com/NickLaMuro/formtastic_jquids,num_dependents_deps.dev:0 github.com/NickLaMuro/jquids,num_dependents_deps.dev:0 github.com/NickLargen/testcafe-reporter-nunit3,num_dependents_deps.dev:0 github.com/NickLewry/pd-snooze,num_dependents_deps.dev:0 +github.com/NickLiffen/check-slash-command-approval, +github.com/NickLiffen/compare-releases, +github.com/NickLiffen/create-sales-ops-issue, +github.com/NickLiffen/delete-empty-codespaces, +github.com/NickLiffen/ghas-licence, +github.com/NickLiffen/notify-correct-ase, github.com/NickMacDon/BasicJavaFlightRecorder,num_dependents_deps.dev:0 github.com/NickMaev/NEventBus,num_dependents_deps.dev:0 github.com/NickMaev/NSerializeJson,num_dependents_deps.dev:0 @@ -132718,8 +135827,10 @@ github.com/NickProgramm/Atomjs,num_dependents_deps.dev:0 github.com/NickQiZhu/dc,Google github.com/NickQiZhu/dc.js,num_dependents_deps.dev:0 github.com/NickQiZhu/di.js,num_dependents_deps.dev:0 +github.com/NickRTR/WakaTime-Readme, github.com/NickResky/webapps-reschke-common,num_dependents_deps.dev:0 github.com/NickSablukov/django-dynamic-structure, +github.com/NickSchimek/deploy_jamstack_action, github.com/NickSerg/cordova-plugin-ews,num_dependents_deps.dev:0 github.com/NickShallee/yelp-api,num_dependents_deps.dev:0 github.com/NickSklyuev/onesignal-api-override, @@ -132850,6 +135961,7 @@ github.com/NicoCevallos/svelte-preprocess-chain,num_dependents_deps.dev:0 github.com/NicoChampagne/react-images-upload,num_dependents_deps.dev:0 github.com/NicoChampagne/react-images-upload-update, github.com/NicoCroce/UI-Angularjs-Framework,num_dependents_deps.dev:0 +github.com/NicoG60/simple-template-renderer, github.com/NicoGorr/node-moratorium,num_dependents_deps.dev:0 github.com/NicoHood/HID,criticality_score:0.431560 github.com/NicoHood/HoodLoader2,criticality_score:0.303750 @@ -132954,6 +136066,7 @@ github.com/NicolasCARPi/bootstrap-markdown, github.com/NicolasCARPi/jquery_jeditable,"criticality_score:0.383270,num_dependents_deps.dev:0" github.com/NicolasCaous/slorm,num_dependents_deps.dev:0 github.com/NicolasDelahaigue/threejs-transformcontrols,num_dependents_deps.dev:0 +github.com/NicolasDesnoust/scully-gh-pages-action, github.com/NicolasDeveloper/fluent-validator-typescript,num_dependents_deps.dev:0 github.com/NicolasDeveloper/guid-typescript,num_dependents_deps.dev:122 github.com/NicolasGasull/example-chat-backend,num_dependents_deps.dev:0 @@ -133052,6 +136165,7 @@ github.com/Nicusor97/WekaPythonWrapper, github.com/Nida759/crates_library,num_dependents_deps.dev:0 github.com/Nida759/nida_project,num_dependents_deps.dev:0 github.com/Nida759/nida_shower,num_dependents_deps.dev:0 +github.com/Nidhi-Patel20/open-issue, github.com/Nidhi16/NodeJs_Session8_Assignment2,num_dependents_deps.dev:0 github.com/NidhishG/djs-fun-v12,num_dependents_deps.dev:0 github.com/Nidrux/get-quotes,num_dependents_deps.dev:0 @@ -133099,6 +136213,8 @@ github.com/NiftyPET/NIMPA, github.com/NiftyPET/NInst, github.com/NiftyPET/NiftyML, github.com/NiftyPET/NiftyPET, +github.com/NiftyStack/appstore-connect-authenticate-with-key-action, +github.com/NiftyStack/install-cocoapods-action, github.com/NigarMovsumova/saj, github.com/NigelDcruz/is-in-browser-viewport, github.com/NigelOToole/direction-reveal,num_dependents_deps.dev:0 @@ -133185,6 +136301,8 @@ github.com/Nightpanda/task-time-manager,num_dependents_deps.dev:0 github.com/NightscoutFoundation/xDrip,criticality_score:0.610080 github.com/Nightstars/smartui,num_dependents_deps.dev:0 github.com/Nightsuki/tornado-session, +github.com/Nightwind-Developments/debian-control-file-builder, +github.com/Nightwind-Developments/debian-packer, github.com/NightyLOL/adv-print.js,num_dependents_deps.dev:0 github.com/Nigiss/eslint-plugin-viper,num_dependents_deps.dev:0 github.com/Nigiss/eslint-plugin-viper-v3,num_dependents_deps.dev:0 @@ -133270,6 +136388,7 @@ github.com/Nike-Inc/wingtips,num_dependents_deps.dev:190 github.com/Nike-inc/signal_analog, github.com/Nike-rgb/SwiftServer-,num_dependents_deps.dev:0 github.com/NikeGTeam/source-server-status,num_dependents_deps.dev:0 +github.com/NikeNano/kubeflow-github-action, github.com/Nikea/historydict, github.com/Nikea/scikit-xray, github.com/Nikea/xray-vision, @@ -133309,9 +136428,11 @@ github.com/NikhilNarayana/Melee-YouTube-Uploader, github.com/NikhilNarayana/pyforms-lite, github.com/NikhilShrivastava/Greendeck-Assignment, github.com/NikhilVashistha/NgxJsonToCSVGenerator, +github.com/NikhilVashistha/update-github-action-secret, github.com/NikhilVerma/jest-environment-jsdom-debug, github.com/NikhilVerma/jest-environment-node-debug-fixed,num_dependents_deps.dev:0 github.com/Nikhilkoneru/react-d3-zoomable-sunburst,num_dependents_deps.dev:0 +github.com/Nikhilsunil90s/action-interest-puller, github.com/Nikhinrajkk/React-Responsive-Grid,num_dependents_deps.dev:0 github.com/Nikhinrajkk/mui-switch, github.com/Nikhinrajkk/react-date-picker,num_dependents_deps.dev:0 @@ -133332,6 +136453,8 @@ github.com/Nikita-schetko/capacitor-suppress-longpress-gesture,num_dependents_de github.com/Nikita2305/vk_parsing, github.com/NikitaChaykin/Node,num_dependents_deps.dev:0 github.com/NikitaDev14/graphql-express,num_dependents_deps.dev:0 +github.com/NikitaGlukhi/firebase-clone-channels, +github.com/NikitaGlukhi/heroku-pipelines-promoting, github.com/NikitaGordia/Kowalsky, github.com/NikitaKorzhov/Convert_Grivna,num_dependents_deps.dev:0 github.com/NikitaMel456/cwp22-1,num_dependents_deps.dev:0 @@ -133372,6 +136495,7 @@ github.com/Niklas9/django-showurls, github.com/Niklas9/django-unixdatetimefield, github.com/NiklasEi/jekyll-exif-data,num_dependents_deps.dev:0 github.com/NiklasEi/jekyll_custom_permalink,num_dependents_deps.dev:0 +github.com/NiklasEi/wasm-opt-action, github.com/NiklasGollenstede/es6lib,num_dependents_deps.dev:0 github.com/NiklasGollenstede/get-tld,num_dependents_deps.dev:0 github.com/NiklasGollenstede/multiport,num_dependents_deps.dev:0 @@ -133384,10 +136508,14 @@ github.com/NiklasGollenstede/web-ext-build,num_dependents_deps.dev:0 github.com/NiklasGollenstede/web-ext-utils, github.com/NiklasKnaack/jquery-anyimagecomparisonslider-plugin,num_dependents_deps.dev:0 github.com/NiklasKnaack/jquery-wobblewindow-plugin,num_dependents_deps.dev:0 +github.com/NiklasLehnfeld/flutter-android-build-action, +github.com/NiklasLehnfeld/flutter-version-number-action, github.com/NiklasMencke/nextjs-breadcrumbs, github.com/NiklasMencke/react-ab-test-hooks,num_dependents_deps.dev:0 github.com/NiklasMerz/cordova-plugin-indexappcontent,num_dependents_deps.dev:0 +github.com/NiklasMerz/github-deployment-action, github.com/NiklasMerz/ion-icon-generator,num_dependents_deps.dev:0 +github.com/NiklasMerz/netlify-analytics-collector, github.com/NiklasPor/ngrx-clean-forms,num_dependents_deps.dev:0 github.com/NiklasPor/nx-remotecache-azure,num_dependents_deps.dev:0 github.com/NiklasPor/nx-remotecache-custom,num_dependents_deps.dev:0 @@ -133418,6 +136546,7 @@ github.com/NiklasTiede/Spasco, github.com/NiklasTiede/covid19pyclient, github.com/Niklasson-Development/nikdev_iot_python, github.com/Niklus/you-tube,num_dependents_deps.dev:0 +github.com/NikoBergemann/action-sbt-test-report, github.com/NikoHienonen/react-responsive-header-navigation,num_dependents_deps.dev:0 github.com/NikoYuwono/ToolbarPanel,num_dependents_deps.dev:0 github.com/Nikodermus/stylelint-config,num_dependents_deps.dev:0 @@ -133586,6 +136715,7 @@ github.com/NimbleWing/fetch-github-repo,num_dependents_deps.dev:0 github.com/NimbleWing/koa,num_dependents_deps.dev:0 github.com/NimbleWing/logger,num_dependents_deps.dev:0 github.com/NimbleWing/node-module-generator,num_dependents_deps.dev:0 +github.com/Nimbleway/nomad-deploy-action, github.com/Nimblr/passport-acuity-oauth2,num_dependents_deps.dev:0 github.com/Nimblr/passport-drchrono,num_dependents_deps.dev:0 github.com/Nimbo1999/nimbo-components,num_dependents_deps.dev:0 @@ -133693,6 +136823,7 @@ github.com/Nipunroyal21/demoMean,num_dependents_deps.dev:0 github.com/NirBerko/Mezrmouse,num_dependents_deps.dev:0 github.com/NirBerko/protected-route,num_dependents_deps.dev:0 github.com/Niraj-Kamdar/async-files, +github.com/Niraj-Kamdar/manylinux-wheel-builder, github.com/Niraj-Kamdar/qpt_generator, github.com/Nirajkashyap/cra-template-redux-rxjs-typescript,num_dependents_deps.dev:0 github.com/Nirajkashyap/generator-angular-2-lazy,num_dependents_deps.dev:0 @@ -133758,7 +136889,9 @@ github.com/NishantGupt1/stock-table,num_dependents_deps.dev:0 github.com/NishantNick/censorify,num_dependents_deps.dev:0 github.com/NishantSinghChandel/pravatar,num_dependents_deps.dev:0 github.com/NishantUpadhyay-BTC/iconate_rails,num_dependents_deps.dev:0 +github.com/NishanthJKumar/python-autoyapf, github.com/NishanthShankar/awesome-cursor,num_dependents_deps.dev:0 +github.com/NishanthShankar/codepush-action, github.com/NishanthShankar/react-native-android-statusbar,num_dependents_deps.dev:0 github.com/NishanthShankar/react-native-keyguard,num_dependents_deps.dev:0 github.com/NishanthShankar/react-native-modal-picker,num_dependents_deps.dev:0 @@ -133781,6 +136914,11 @@ github.com/Nishkalkashyap/print-console-status, github.com/Nishkalkashyap/text-to-worker,num_dependents_deps.dev:0 github.com/Nishkalkashyap/vscode-material-icon-theme-js,num_dependents_deps.dev:0 github.com/Nishkalkashyap/winston-papertrail,num_dependents_deps.dev:10 +github.com/NishkarshRaj/Computer-Graphics, +github.com/NishkarshRaj/Dockerize-Actions, +github.com/NishkarshRaj/Maven_Actions, +github.com/NishkarshRaj/OpenGL_Actions, +github.com/NishkarshRaj/eleventh-june, github.com/Nishu2696/ARRAY-METHOD-NPM-PACKAGE,num_dependents_deps.dev:0 github.com/NishuGoel/microJSLib,num_dependents_deps.dev:0 github.com/Nisitay/scapy-p0f, @@ -133875,11 +137013,13 @@ github.com/NitzanHen/agrippa,num_dependents_deps.dev:0 github.com/NitzanHen/rhax,num_dependents_deps.dev:0 github.com/NiuWeb/MathParserJS,num_dependents_deps.dev:0 github.com/Niubaobao/template-cli, +github.com/NivEz/interactive-inputs-action, github.com/NivadCloud/NivadPy, github.com/Nivani/jshint-practical,num_dependents_deps.dev:0 github.com/NivedhaSenthil/releasenote, github.com/NiveditN/upcdatabase,num_dependents_deps.dev:0 github.com/Niveditha-kumaran/lrucachenivkum, +github.com/Nivl/voorhees-github-action, github.com/Niweera/node-asterer,num_dependents_deps.dev:0 github.com/Niweera/node-complexer,num_dependents_deps.dev:0 github.com/NixLord/pravega,num_dependents_deps.dev:0 @@ -134108,6 +137248,7 @@ github.com/Noah2610/simoncli,num_dependents_deps.dev:0 github.com/Noah2610/sprongen,num_dependents_deps.dev:0 github.com/Noah2610/timesub,num_dependents_deps.dev:0 github.com/NoahAdams-c/easy-egg,num_dependents_deps.dev:0 +github.com/NoahAmethyst/kuber-opt-action, github.com/NoahBres/Heredity,num_dependents_deps.dev:0 github.com/NoahCallaway/tsl-umd-v5,num_dependents_deps.dev:0 github.com/NoahCardoza/CaptchaHarvester, @@ -134115,6 +137256,7 @@ github.com/NoahCardoza/REquier,num_dependents_deps.dev:0 github.com/NoahCardoza/graphql-query-builder,num_dependents_deps.dev:0 github.com/NoahCardoza/python-requests-anonymous-session, github.com/NoahCristino/robloxlib, +github.com/NoahDragon/action-push-repo-as-subdirectory-in-another-repo, github.com/NoahDrisort/Vie_Text2Graph2IPA, github.com/NoahDrisort/vinorm, github.com/NoahDumba/lotide,num_dependents_deps.dev:0 @@ -134170,6 +137312,7 @@ github.com/NobleWorship/bible-book-names,num_dependents_deps.dev:0 github.com/NoblesseCoder/gym-karmedbandits, github.com/Noblis/ties-lib, github.com/NobodyMiner/minecraft-client,num_dependents_deps.dev:0 +github.com/NobodyXu/dependencies-autoupdate, github.com/Nobodysbuddy/CreatorUI,num_dependents_deps.dev:0 github.com/Nobox/finalizer,num_dependents_deps.dev:0 github.com/Nobregaigor/febio-python, @@ -134329,6 +137472,7 @@ github.com/NodeRedis/node-redis-parser,num_dependents_deps.dev:26120 github.com/NodeRedis/node_redis,num_dependents_deps.dev:7166 github.com/NodeRedis/redis-commands,num_dependents_deps.dev:24100 github.com/NodeRedis/redis-errors,num_dependents_deps.dev:11070 +github.com/NodeSecure/ci-action, github.com/NodeSecure/eslint-config,num_dependents_deps.dev:0 github.com/NodeSecure/fs-walk,num_dependents_deps.dev:0 github.com/NodeSecure/i18n,num_dependents_deps.dev:0 @@ -134374,6 +137518,7 @@ github.com/Nodeport-SA-de-CV/NP-if, github.com/Nodewood/cli,num_dependents_deps.dev:0 github.com/Nodiff/noop-exec,num_dependents_deps.dev:0 github.com/Nodiril/gql-tag-objection-notation, +github.com/NodleCode/action-try-runtime, github.com/Nodlik/StPageFlip, github.com/Nodlik/react-pageflip, github.com/Nodlik/react-st-modal, @@ -134407,7 +137552,10 @@ github.com/Noeloikeau/networkm, github.com/Noeloikeau/sidis, github.com/Noelware/Lilith, github.com/Noelware/collections, +github.com/Noelware/docker-manifest-action, github.com/Noelware/orchid, +github.com/Noelware/s3-action, +github.com/Noelware/setup-protoc, github.com/NoemieTav/GraphQL-Prisma-Info-Include,num_dependents_deps.dev:0 github.com/NoevilMe/asyncsshscript, github.com/Noext/ng2-smart-table,num_dependents_deps.dev:0 @@ -134836,6 +137984,7 @@ github.com/Nose407/test05,num_dependents_deps.dev:0 github.com/Nosenation/ghostcode-react-scripts,num_dependents_deps.dev:0 github.com/Nosenation/shared-components,num_dependents_deps.dev:0 github.com/Nosherwan/reesorce,num_dependents_deps.dev:0 +github.com/Noshup/todo-to-issue-action, github.com/Noskcaj19/hyper-solarized,num_dependents_deps.dev:0 github.com/Noskcaj19/iterm2,num_dependents_deps.dev:0 github.com/Noso-Project/NosoPy, @@ -134854,6 +138003,7 @@ github.com/NostrumBioDiscovery/PPP, github.com/NostrumBioDiscovery/cluster_drug_discovery, github.com/NostrumBioDiscovery/modtox, github.com/NostrumBioDiscovery/pele_platform, +github.com/Not-Dhanraj/purge-cache-by-id, github.com/Not-found-squad/knights-canvas,num_dependents_deps.dev:0 github.com/NotANameServer/incipyt, github.com/NotAlfred/technicalindicators,num_dependents_deps.dev:0 @@ -134864,6 +138014,7 @@ github.com/NotBlueBeast/tout-cli,num_dependents_deps.dev:0 github.com/NotBobTheBuilder/grunt-coffee-format,num_dependents_deps.dev:0 github.com/NotBobTheBuilder/hook-trigger, github.com/NotBobTheBuilder/robogrid, +github.com/NotCoffee418/s3-zip-upload, github.com/NotFaizen/Aly_facts, github.com/NotFaizen/popcat_wrapper, github.com/NotFlawffles/canvas-drawing-app,num_dependents_deps.dev:0 @@ -135006,6 +138157,7 @@ github.com/NoumanSaleem/router-handles-url,num_dependents_deps.dev:0 github.com/Noumenae/SAI,num_dependents_deps.dev:0 github.com/NourEldin275/reGrid,num_dependents_deps.dev:0 github.com/NouvelleTechno/Javascript-Form-Validation,num_dependents_deps.dev:0 +github.com/Nouzbe/check-pull-request-description, github.com/Nov1kov/pipeline_to_mermaid, github.com/NovaAtWarren/uncss,num_dependents_deps.dev:0 github.com/NovaCreatorSoftware/bootstrap-data-grid,num_dependents_deps.dev:0 @@ -135086,6 +138238,7 @@ github.com/Novicell/novicell-map,num_dependents_deps.dev:0 github.com/Novicell/novicell-overlay,num_dependents_deps.dev:0 github.com/Novicell/novicell-sprite-animation, github.com/Novicell/novicell-visible,num_dependents_deps.dev:0 +github.com/Noviconnect/release_helper, github.com/Noviel/cluster-launcher,num_dependents_deps.dev:0 github.com/Noviel/everyday,num_dependents_deps.dev:0 github.com/Noviel/mobx-little-router,num_dependents_deps.dev:0 @@ -135124,6 +138277,8 @@ github.com/Novsochetra/react-native-circular-chart, github.com/Novum/vkQuake,criticality_score:0.482240 github.com/NovusInventorMan/mtbc-reader,num_dependents_deps.dev:0 github.com/NovusTheory/vue-nodegui,num_dependents_deps.dev:0 +github.com/Novusvetus/action-php_codesniffer, +github.com/Novusvetus/action-phpinsights, github.com/Now-Sprouting/rooting-document,num_dependents_deps.dev:0 github.com/NowAssistant/generator-cloud-function,num_dependents_deps.dev:0 github.com/NowComponents/fa-icon,num_dependents_deps.dev:0 @@ -135244,10 +138399,12 @@ github.com/NuCivic/react-nvd3,num_dependents_deps.dev:0 github.com/NuGet/Home,criticality_score:0.600050 github.com/NuGet/NuGet.Client,criticality_score:0.648780 github.com/NuGet/NuGetGallery,"criticality_score:0.601790,num_dependents_deps.dev:0" +github.com/NuGet/setup-nuget, github.com/NuGetPackageExplorer/NuGetPackageExplorer,criticality_score:0.557430 github.com/NuITTake/gpdc-dynamodb,num_dependents_deps.dev:0 github.com/NuITTake/simple-level-log, github.com/NuKeeperDotNet/NuKeeper,criticality_score:0.459690 +github.com/NuKeeperDotNet/NuKeeper-Action, github.com/NuML/NuML, github.com/NuSkooler/enigma-bbs,criticality_score:0.436780 github.com/NuSkooler/sqlite3-trans,num_dependents_deps.dev:0 @@ -135305,6 +138462,7 @@ github.com/NugoTeam/com.nugo.web.component.pagination,num_dependents_deps.dev:0 github.com/NugoTeam/com.nugo.web.component.table,num_dependents_deps.dev:0 github.com/Nuintun/nengine-cli,num_dependents_deps.dev:0 github.com/Nuitka/Nuitka,criticality_score:0.675200 +github.com/Nuitka/Nuitka-Action, github.com/NukaPunk/riot-autoresize,num_dependents_deps.dev:0 github.com/NukeVietSystems/appnukeviet,num_dependents_deps.dev:0 github.com/Nukeer/ottimizza-utils,num_dependents_deps.dev:0 @@ -135336,6 +138494,7 @@ github.com/NullSense/Linda,num_dependents_deps.dev:0 github.com/NullServe/faaskit,num_dependents_deps.dev:0 github.com/NullVoxPopuli/MetaHash,num_dependents_deps.dev:0 github.com/NullVoxPopuli/MetaInstance,num_dependents_deps.dev:0 +github.com/NullVoxPopuli/action-setup-pnpm, github.com/NullVoxPopuli/crypto-exchange-client,num_dependents_deps.dev:0 github.com/NullVoxPopuli/ember-addon-automated-ci,num_dependents_deps.dev:0 github.com/NullVoxPopuli/ember-app,num_dependents_deps.dev:0 @@ -135364,6 +138523,7 @@ github.com/NullVoxPopuli/react-state-helpers,num_dependents_deps.dev:0 github.com/NullVoxPopuli/tsc-lite, github.com/NullYing/flask-cdn, github.com/Nullifiers/Hackerrank-Solution-Crawler, +github.com/Nullify-Platform/dast-action, github.com/Nullizer/gfwlist-domains,num_dependents_deps.dev:0 github.com/NumEconCopenhagen/ConsumptionSaving, github.com/NumEconCopenhagen/EconModel, @@ -135375,6 +138535,7 @@ github.com/Numdata/numdata-open,num_dependents_deps.dev:2 github.com/Numenorean/ShazamAPI, github.com/NumerHero/fox-listener,num_dependents_deps.dev:0 github.com/Numergy/yoda, +github.com/Numericas/matrix-action, github.com/NumminorihSF/ami-io,num_dependents_deps.dev:0 github.com/NumminorihSF/ami-io-simple,num_dependents_deps.dev:0 github.com/NumminorihSF/async-props,num_dependents_deps.dev:0 @@ -135402,6 +138563,8 @@ github.com/NumminorihSF/response-formatter,num_dependents_deps.dev:0 github.com/NumminorihSF/sonar-web-frontend-reporters,num_dependents_deps.dev:0 github.com/NumminorihSF/uniq-interval,num_dependents_deps.dev:0 github.com/NumminorihSF/uniq-request,num_dependents_deps.dev:0 +github.com/Numynum/ToCDuplicator, +github.com/Numynum/ToCVersions, github.com/NunaInc/sql_tools, github.com/NunchakusHuang/DjangoQiniu, github.com/Nunie123/simple_db_builder, @@ -135450,6 +138613,7 @@ github.com/NutBoltu/men-stack-starter-kit,num_dependents_deps.dev:0 github.com/Nutchawat/number-formatter,num_dependents_deps.dev:0 github.com/Nutchawat/vue2table,num_dependents_deps.dev:0 github.com/Nutelac/react.animate,num_dependents_deps.dev:0 +github.com/Nutella399/action-cached-lfs-checkout, github.com/NutellaCoder/NutellaSdk, github.com/NutriconsultorOnline/angularjs-conekta,num_dependents_deps.dev:0 github.com/NutriconsultorOnline/conekta-debug,num_dependents_deps.dev:0 @@ -135471,6 +138635,7 @@ github.com/NuxiNL/argdata-rust,num_dependents_deps.dev:0 github.com/NuxiNL/cloudlibc,criticality_score:0.350680 github.com/Nuxos-Asia/exception_notification-redmine,num_dependents_deps.dev:0 github.com/Nuxstep/nativescript-plugins,num_dependents_deps.dev:0 +github.com/Nuytemans-Dieter/YAML-sync-action, github.com/Nv-js/Nv-cli,num_dependents_deps.dev:0 github.com/Nv7-GitHub/7pack_Code, github.com/Nv7-GitHub/GPGame, @@ -135487,6 +138652,12 @@ github.com/Nvveen/style-prepend-loader, github.com/Nwaneto/palindrome,num_dependents_deps.dev:0 github.com/NwangwuOsitadinma/gateman,num_dependents_deps.dev:0 github.com/NxSoftware/stronglyboards,num_dependents_deps.dev:0 +github.com/NxtLvLSoftware/git-subtree-action, +github.com/NxtLvLSoftware/run-phpstan-action, +github.com/NxtLvLSoftware/run-phpstan-pmmp-action, +github.com/NxtLvLSoftware/setup-phpstan-action, +github.com/NxtLvLSoftware/setup-pmmp-phpstan-env-action, +github.com/NxtLvLSoftware/tar-ops-action, github.com/NxtStudios/p3d-analyze, github.com/NxtStudios/p3d-prite, github.com/NxtStudios/p3d-rest, @@ -135498,6 +138669,7 @@ github.com/NyPhile/ne-build,num_dependents_deps.dev:0 github.com/NyPhile/ne-node-parse-loader,num_dependents_deps.dev:0 github.com/NyPhile/ne-ssi-loader,num_dependents_deps.dev:0 github.com/NyaMisty/PyPLTHook, +github.com/NyaMisty/reverse-rdp-windows-github-actions-ng, github.com/Nyakinyua/redesigned-guacamole,num_dependents_deps.dev:0 github.com/Nyamazing/colorful-voice,num_dependents_deps.dev:0 github.com/Nyamazing/gulp-wrapper-baki,num_dependents_deps.dev:0 @@ -135541,6 +138713,7 @@ github.com/Nyfos/easy-random.js,num_dependents_deps.dev:0 github.com/Nyfos/process-infos,num_dependents_deps.dev:0 github.com/Nyholm/effective-interest-rate-js,num_dependents_deps.dev:0 github.com/Nyholm/psr7,criticality_score:0.463830 +github.com/Nyholm/roave-bc-check-docker, github.com/Nyigan/number-formatter,num_dependents_deps.dev:0 github.com/Nyior/django-rest-paystack, github.com/Nykakin/chompjs, @@ -135552,6 +138725,7 @@ github.com/Nylle/JavaFixture,num_dependents_deps.dev:0 github.com/Nylle/grunt-stylecop-runner,num_dependents_deps.dev:0 github.com/Nymphxyz/ghat, github.com/Nymphxyz/nspider, +github.com/Nyoho/review-epub-generator-action, github.com/Nyquase/dessert-yaml,num_dependents_deps.dev:0 github.com/Nyr/openvpn-install,criticality_score:0.365770 github.com/Nyrok/discord-vanity,num_dependents_deps.dev:0 @@ -135567,6 +138741,7 @@ github.com/Nytramr/mr-inquirer,num_dependents_deps.dev:0 github.com/Nytramr/npm-zepto,num_dependents_deps.dev:1 github.com/Nytramr/railroad-diagrams, github.com/Nytramr/zepto,num_dependents_deps.dev:0 +github.com/NyuB/self-docker-action, github.com/Nyuno/node-kakao-bizmessage-toast,num_dependents_deps.dev:0 github.com/Nyuno/node-sms-toast,num_dependents_deps.dev:0 github.com/Nyx0uf/NYXImagesKit,criticality_score:0.310280 @@ -135640,6 +138815,7 @@ github.com/OBKoro1/notification-Koro1, github.com/OBKoro1/npmKoro1-notification,num_dependents_deps.dev:0 github.com/OBKoro1/obkoro1-cli,num_dependents_deps.dev:0 github.com/OBSCodeInc/discord-passport,num_dependents_deps.dev:0 +github.com/OBannon37/zenhub-link-pr-to-issue, github.com/OBout/ceyenne-fo-base,num_dependents_deps.dev:0 github.com/OBrink/RanDepict, github.com/OBrown92/vue2-leaflet-semicircle,num_dependents_deps.dev:0 @@ -135921,6 +139097,7 @@ github.com/OMQ/omq-contact-react, github.com/OMQ/omq-help-react,num_dependents_deps.dev:0 github.com/OMS-NetZero/FAIR, github.com/OMalenfantThuot/ML_Calc_Driver, +github.com/OMikkel/find-occurences, github.com/OMoF/Converter, github.com/OMooer/SaUI,num_dependents_deps.dev:0 github.com/ONB-RD/iiif-cropper,num_dependents_deps.dev:0 @@ -135932,6 +139109,7 @@ github.com/ONE001/css-file-rules-webpack-separator,num_dependents_deps.dev:0 github.com/ONEARMY/community-platform,criticality_score:0.501450 github.com/ONESucH/crypto-pro-customize,num_dependents_deps.dev:0 github.com/ONEmCommunications/onemsdk-js, +github.com/ONGOING-Z/transfer-issue-to-md-file, github.com/ONLAYER/x-table,num_dependents_deps.dev:0 github.com/ONLPS/lda2vec, github.com/ONLYOFFICE-QA/onlyoffice_gmail_helper,num_dependents_deps.dev:0 @@ -136107,6 +139285,8 @@ github.com/ORNL-Modelica/ModelicaPy, github.com/ORNL/curifactory, github.com/ORTECScientificBenchmarks/ortec-scientific-benchmarks-loadbuilding, github.com/ORTHOIN3D/django-ndarrayfield, +github.com/ORTHOIN3D/jscpd-check, +github.com/ORTHOIN3D/python-black20-check, github.com/ORelio/Minecraft-Console-Client,criticality_score:0.537470 github.com/ORingnet/node-red-contrib-oring-paas, github.com/ORusak/monad-sequence, @@ -136126,6 +139306,9 @@ github.com/OSCAAR/OSCAAR, github.com/OSCHFoundation/js-osch-base,num_dependents_deps.dev:0 github.com/OSCHFoundation/js-osch-sdk, github.com/OSCPU/NutShell,criticality_score:0.313120 +github.com/OSCloudysky/UniNotify, +github.com/OSDKDev/lock-issues, +github.com/OSDKDev/unlock-issues, github.com/OSEHRA-Sandbox/gtm-bindings,num_dependents_deps.dev:0 github.com/OSFDigital/Linter, github.com/OSFGlobal/OSF-Linter,num_dependents_deps.dev:0 @@ -136162,6 +139345,7 @@ github.com/OSNZ/java-tile,num_dependents_deps.dev:0 github.com/OSNZ/kotlin-tile,num_dependents_deps.dev:0 github.com/OSNZ/scala-tile,num_dependents_deps.dev:0 github.com/OSOceanAcoustics/echopype, +github.com/OSS-Docs-Tools/code-owner-self-merge, github.com/OSS-Docs-Tools/sync, github.com/OSSDeveloper/couchpromise,num_dependents_deps.dev:0 github.com/OSSIndex/auditjs,num_dependents_deps.dev:0 @@ -136174,6 +139358,7 @@ github.com/OSSOS/liborbfit, github.com/OSSystems/compress-tools-rs,num_dependents_deps.dev:0 github.com/OSSystems/find-binary-version-rs,num_dependents_deps.dev:0 github.com/OSSystems/with_embedded_assets,num_dependents_deps.dev:0 +github.com/OST-HS20/latex-parser-action, github.com/OSU-BEE/eco-eng, github.com/OSU-BEE/ecoe, github.com/OSU-CS419/viewmydb, @@ -136195,6 +139380,7 @@ github.com/OSWeDev/OSWeDev, github.com/OSWeekends/GingerCode,num_dependents_deps.dev:0 github.com/OSWeekends/protoUnicorn,num_dependents_deps.dev:0 github.com/OSeMOSYS/clewsy, +github.com/OSpoon/auto-push-oss, github.com/OSpoon/eslint-config-ospoon,num_dependents_deps.dev:0 github.com/OSpoon/zg-cli-template, github.com/OTA-Insight/djangosaml2idp, @@ -136220,6 +139406,10 @@ github.com/OUARRICH/hsl-to-hex,num_dependents_deps.dev:0 github.com/OUDUIDUI/ga-tracker,num_dependents_deps.dev:0 github.com/OUEasley/alpaca-scala,num_dependents_deps.dev:0 github.com/OUP/javascript,num_dependents_deps.dev:0 +github.com/OUXT-Polaris/build-mbed-app-action, +github.com/OUXT-Polaris/ros-integration-test-action, +github.com/OUXT-Polaris/setup-workflow-action, +github.com/OUXT-Polaris/update-repos-action, github.com/OVVO-Financial/NNS-Python, github.com/OVYVO/yan-css,num_dependents_deps.dev:0 github.com/OVYVO/yan-utils,num_dependents_deps.dev:0 @@ -136255,6 +139445,7 @@ github.com/OWIN-JS/owin-js,num_dependents_deps.dev:0 github.com/OWOX/brainy-tree,num_dependents_deps.dev:0 github.com/OXAYAZA/oxyz-build,num_dependents_deps.dev:0 github.com/OXAYAZA/oxyz-express,num_dependents_deps.dev:0 +github.com/OXIDFabian/docker-run-action, github.com/OXINION/python-package, github.com/OXOYO/X-Bing-Wallpaper,num_dependents_deps.dev:0 github.com/OXOYO/X-Browser-Update-Vue,num_dependents_deps.dev:0 @@ -136392,6 +139583,7 @@ github.com/ObsidianLabs/bsc-components, github.com/ObsidianMinor/trapper,num_dependents_deps.dev:0 github.com/Obsidion-dev/aiomcstats, github.com/Obsidion-dev/mcsrvstats, +github.com/Obuc/action-deploy-sp, github.com/Obvious/canoe,num_dependents_deps.dev:4 github.com/Obvious/daemonsauce,num_dependents_deps.dev:0 github.com/Obvious/draccus,num_dependents_deps.dev:0 @@ -136418,6 +139610,7 @@ github.com/Oc-master/medusa-wx-toast,num_dependents_deps.dev:0 github.com/Oc-master/stylelint-config-medusa,num_dependents_deps.dev:0 github.com/Oc-master/ui-extract-webpack-plugin,num_dependents_deps.dev:0 github.com/Oc-master/webpack-build-miniprogram,num_dependents_deps.dev:0 +github.com/OccamsLabs/kaowao-action, github.com/OceanCodes/generator-component,num_dependents_deps.dev:0 github.com/OceanEx/thor-contract-verify,num_dependents_deps.dev:0 github.com/OceanLabs/Android-Print-SDK,num_dependents_deps.dev:30 @@ -136443,6 +139636,7 @@ github.com/Ocramius/DoctrineBatchUtils,criticality_score:0.385970 github.com/Ocramius/GeneratedHydrator,criticality_score:0.456560 github.com/Ocramius/PackageVersions,criticality_score:0.503590 github.com/Ocramius/ProxyManager,criticality_score:0.614600 +github.com/Ocramius/automatic-releases, github.com/OctaDist/OctaDist, github.com/Octadesk-Tech/module-iframe-service,num_dependents_deps.dev:0 github.com/Octane/Promise,num_dependents_deps.dev:48 @@ -136470,10 +139664,12 @@ github.com/OctoD/effepi,num_dependents_deps.dev:0 github.com/OctoD/ooop,num_dependents_deps.dev:0 github.com/OctoDumb/pipiu,num_dependents_deps.dev:0 github.com/OctoFarm/OctoFarm,num_dependents_deps.dev:0 +github.com/OctoGeeks/send-workflow-notifications, github.com/OctoLinker/OctoLinker,criticality_score:0.528080 github.com/OctoLinker/injection, github.com/OctoMap/octomap,criticality_score:0.495760 github.com/OctoMap/octomap_msgs,Google +github.com/OctoPrint/CustoPiZer, github.com/OctoPrint/OctoPrint,criticality_score:0.624250 github.com/OctoPrint/OctoPrint-FileCheck, github.com/OctoPrint/OctoPrint-FirmwareCheck, @@ -136483,12 +139679,25 @@ github.com/OctoberCity/readline-chunk,num_dependents_deps.dev:0 github.com/Octoberr/swmpackages, github.com/Octonius/boxv2, github.com/Octoober/tuya-bulb-control, +github.com/Octopus-Moneycoach/version-has-changed, +github.com/OctopusDeploy/await-task-action, +github.com/OctopusDeploy/create-nuget-package-action, +github.com/OctopusDeploy/create-release-action, +github.com/OctopusDeploy/create-zip-package-action, +github.com/OctopusDeploy/deploy-release-action, +github.com/OctopusDeploy/deploy-release-tenanted-action, github.com/OctopusDeploy/grunt-octo,num_dependents_deps.dev:0 github.com/OctopusDeploy/gulp-octo,num_dependents_deps.dev:0 +github.com/OctopusDeploy/install-octopus-cli-action, +github.com/OctopusDeploy/login, github.com/OctopusDeploy/octopackjs,num_dependents_deps.dev:0 +github.com/OctopusDeploy/push-build-information-action, +github.com/OctopusDeploy/push-package-action, +github.com/OctopusDeploy/run-runbook-action, github.com/OctupleSakura/ShellTool,num_dependents_deps.dev:0 github.com/OctupleSakura/rollup-generate-entry,num_dependents_deps.dev:0 github.com/Oda2/api-middleware-response,num_dependents_deps.dev:0 +github.com/Oda2/ibmcloud-deploy, github.com/Oda2/react-text-typing, github.com/Oda2/using-try-catch, github.com/Odame/gae-env, @@ -136530,6 +139739,7 @@ github.com/OdonataResearchLLC/lisp-unit,Google github.com/Odonno/ngrx-signalr,num_dependents_deps.dev:0 github.com/Odonno/ngrx-signalr-core,num_dependents_deps.dev:0 github.com/Odonno/ngrx-toolkit,num_dependents_deps.dev:0 +github.com/Odonno/surrealdb-migrations-github-actions, github.com/Odoo-mobile/framework,criticality_score:0.366900 github.com/OdorajBotoj/BetterPyXZH, github.com/Odrin/express-easy-rest,num_dependents_deps.dev:0 @@ -136542,6 +139752,8 @@ github.com/OdysseyOnlineClassic/odyssey-2-shared,num_dependents_deps.dev:0 github.com/Oelin/Aprils,num_dependents_deps.dev:0 github.com/OerUED/generator-oe-base,num_dependents_deps.dev:0 github.com/Ofadiman/eslint-configs,num_dependents_deps.dev:0 +github.com/Ofadiman/golang-script, +github.com/Ofadiman/http-request, github.com/Ofadiman/plop-utils,num_dependents_deps.dev:0 github.com/Ofalos/core,num_dependents_deps.dev:0 github.com/Ofekmeister/depq, @@ -136590,9 +139802,11 @@ github.com/OfficeDev/office-js-helpers,num_dependents_deps.dev:0 github.com/OfficeDev/office-toolbox,num_dependents_deps.dev:0 github.com/OfficeDev/office-ui-fabric-react,num_dependents_deps.dev:4362 github.com/OfficeDev/script-lab,criticality_score:0.366430 +github.com/OfficeDev/teamsfx-cli-action, github.com/OfficerHalf/the-captains-hooks,num_dependents_deps.dev:0 github.com/Officeyutong/codeforces-rating, github.com/Official-Hawks/kate-sleep-npm,num_dependents_deps.dev:0 +github.com/Official-James/rover-terraform-action, github.com/Official-Rahul/file-input-react,num_dependents_deps.dev:0 github.com/Official-Rahul/slider-input-react,num_dependents_deps.dev:0 github.com/Official-Rahul/text-input-react,num_dependents_deps.dev:0 @@ -136663,6 +139877,7 @@ github.com/OhYaGames/react-facebook-message-us,num_dependents_deps.dev:0 github.com/OhYaGames/react-unity-player,num_dependents_deps.dev:0 github.com/OhYee/documentDownloader, github.com/OhYee/next-dynamic-antd-theme,num_dependents_deps.dev:0 +github.com/OhZedTee/action-cloud-run, github.com/OhadBaehr/big-crypto,num_dependents_deps.dev:0 github.com/OhadBaehr/class-without-new,num_dependents_deps.dev:0 github.com/OhadBaehr/easy-inherit,num_dependents_deps.dev:0 @@ -136720,6 +139935,8 @@ github.com/OkHi/react-native-okverify,num_dependents_deps.dev:0 github.com/OkHi/types,num_dependents_deps.dev:0 github.com/OkThought/cryptocmp, github.com/OkThought/data-mapper, +github.com/Okabe-Junya/issue-validator, +github.com/Okabe-Junya/reviewdog-textlint, github.com/OkaeriPoland/okaeri-sdk-node,num_dependents_deps.dev:0 github.com/OkaeriPoland/okaeri-sdk-python, github.com/Okahyphen/mtd,num_dependents_deps.dev:0 @@ -136805,6 +140022,7 @@ github.com/OlavHN/restart,num_dependents_deps.dev:0 github.com/OlavHN/virtuallist,num_dependents_deps.dev:0 github.com/Olcina/react-native-faq,num_dependents_deps.dev:0 github.com/Old-Rain/dc-ui,num_dependents_deps.dev:0 +github.com/Old-Shatterhand/publish-conda-multichannel-action, github.com/OldBlackJoe/ibatis-mapper,num_dependents_deps.dev:0 github.com/OldBlackJoe/mybatis-mapper,num_dependents_deps.dev:6 github.com/OldDream/copy-to-clipboard-ultralight,num_dependents_deps.dev:0 @@ -136818,6 +140036,8 @@ github.com/OldPanda/Baidu-Translator, github.com/OldPanda/bloomfilter-py, github.com/OldSneerJaw/couchster,num_dependents_deps.dev:0 github.com/Oldenborg/node-grep,num_dependents_deps.dev:0 +github.com/Oldes/install-rebol, +github.com/Oldes/install-siskin, github.com/OldhamMade/PySO8601, github.com/OldhamMade/RunnerBean, github.com/OldhamMade/beanstalktop, @@ -136902,6 +140122,7 @@ github.com/OleksiiSukhov/chess-lead-lib, github.com/OleksiiSukhov/chess-lib,num_dependents_deps.dev:0 github.com/OleksiyMartynov/pnp-bitcoin,num_dependents_deps.dev:0 github.com/OleksiyRudenko/default-beauty.css,num_dependents_deps.dev:0 +github.com/OleksiyRudenko/gha-git-credentials, github.com/OleksiyRudenko/s10n,num_dependents_deps.dev:0 github.com/OleksiyRudenko/stalin-sort,num_dependents_deps.dev:0 github.com/Olen/python-openplantbook, @@ -136960,6 +140181,7 @@ github.com/Olical/impl,num_dependents_deps.dev:0 github.com/Olical/react-bodymovin,num_dependents_deps.dev:18 github.com/Olical/react-faux-dom,num_dependents_deps.dev:90 github.com/OlifyIO/ts-odata-v4,num_dependents_deps.dev:0 +github.com/OligoCyberSecurity/helm-deploy, github.com/Oligocalse/cup-cli,num_dependents_deps.dev:0 github.com/Oligocalse/deploy-cli,num_dependents_deps.dev:0 github.com/Oligrand/query-logentries,num_dependents_deps.dev:0 @@ -136974,6 +140196,7 @@ github.com/OlivOS-Team/lib-onedice, github.com/OliveTreeBible/s3-file-scan-cat,num_dependents_deps.dev:0 github.com/OliveiraCleidson/myFirstPackageNPM, github.com/OliveiraCleidson/mySecondPackage, +github.com/Oliver-Binns/Versioning, github.com/Oliver-Loeffler/FXFileChooser,num_dependents_deps.dev:0 github.com/Oliver-Loeffler/UndecoratorBis,num_dependents_deps.dev:0 github.com/Oliver-Loeffler/image-registration,num_dependents_deps.dev:0 @@ -137001,6 +140224,7 @@ github.com/OliverNChalk/simple-perf,num_dependents_deps.dev:0 github.com/OliverOverend/gym-simplifiedtetris, github.com/OliverSherouse/bls, github.com/OliverSherouse/yo-runner, +github.com/OliverSieweke/kaggle-graph, github.com/OliverUv/bundled-source,num_dependents_deps.dev:0 github.com/OliverUv/catastrophic,num_dependents_deps.dev:0 github.com/OliverUv/config-cats,num_dependents_deps.dev:0 @@ -137028,8 +140252,10 @@ github.com/OlivierPT/google-maps-react,num_dependents_deps.dev:0 github.com/OlivierR68/Bootstrap-Cookie-Manager,num_dependents_deps.dev:0 github.com/Olivine-Labs/busted,criticality_score:0.518390 github.com/Olivine-Labs/lua-style-guide,criticality_score:0.320540 +github.com/Olivr/copybara-action, github.com/OliwerDrywa/snowpack-plugin-swc,num_dependents_deps.dev:0 github.com/OliwerSmedjevik/vue-select,num_dependents_deps.dev:0 +github.com/Olixc/podcast-generator, github.com/Ollebolle/bouncefix.js,num_dependents_deps.dev:0 github.com/OlliV/micri,num_dependents_deps.dev:0 github.com/OlliV/node-fd-slicer,num_dependents_deps.dev:0 @@ -137073,6 +140299,7 @@ github.com/OlsonDigital/osgi-bundle-status-maven-plugin,num_dependents_deps.dev: github.com/OlsonDigital/promised-lambda-context,num_dependents_deps.dev:0 github.com/OlsonDigital/prosper,num_dependents_deps.dev:0 github.com/Olunas/calendar,num_dependents_deps.dev:0 +github.com/OluwaferanmiLove/codepush-action, github.com/Oluwasegun-AA/md-generator,num_dependents_deps.dev:0 github.com/Oluwatob-i/react-match-finder,num_dependents_deps.dev:0 github.com/Oluwatobii/lotide,num_dependents_deps.dev:0 @@ -137210,6 +140437,7 @@ github.com/OmicsDI/spring-social-mongo,num_dependents_deps.dev:0 github.com/OmicsDI/spring-social-orcid,num_dependents_deps.dev:0 github.com/OmicsDI/springboot-base-master,num_dependents_deps.dev:0 github.com/OmicsDI/xml-validator,num_dependents_deps.dev:0 +github.com/Omid-Mirzaee-Yazdi/wheres_my_review, github.com/OmisNomis/mgit-cli,num_dependents_deps.dev:0 github.com/Omisoft-LLC/micro,num_dependents_deps.dev:0 github.com/Omixy/troposphere-cli, @@ -137293,6 +140521,7 @@ github.com/OnVelocity/react-modal-overlay,num_dependents_deps.dev:0 github.com/OnagiNagao/trform,num_dependents_deps.dev:0 github.com/Onatcer/vue-newsroom-picture-component,num_dependents_deps.dev:0 github.com/Onatolich/saga-guide,num_dependents_deps.dev:0 +github.com/Onboardbase/onboardbase-action, github.com/OnceDoc/node-oncedb-client,num_dependents_deps.dev:0 github.com/OnceDoc/oncedb,num_dependents_deps.dev:0 github.com/OnceDoc/onceio,num_dependents_deps.dev:0 @@ -137384,6 +140613,7 @@ github.com/OneCTeam/r-i,num_dependents_deps.dev:0 github.com/OneCent01/LiquidCrypto,num_dependents_deps.dev:0 github.com/OneCent01/LiquidCrypto-browser,num_dependents_deps.dev:0 github.com/OneCent01/TokenLink,num_dependents_deps.dev:0 +github.com/OneContainer/gherkin-feature-format, github.com/OneDash-DE/onedash-dialog,num_dependents_deps.dev:0 github.com/OneDash-DE/onedash-react-calendar,num_dependents_deps.dev:0 github.com/OneDash-DE/onedash-react-input-form,num_dependents_deps.dev:0 @@ -137431,6 +140661,7 @@ github.com/OneIdentity/safeguard.js,num_dependents_deps.dev:0 github.com/OneJSToolkit/gulp-onejs-build,num_dependents_deps.dev:0 github.com/OneJSToolkit/onejs, github.com/OneKenShiii/ken1997,num_dependents_deps.dev:0 +github.com/OneLemonyBoi/Javadoc-publisher.yml, github.com/OneLittleRobot/gulp-lodash-builder,num_dependents_deps.dev:0 github.com/OneLittleRobot/ok-text-search,num_dependents_deps.dev:0 github.com/OneLittleRobot/resistor-data,num_dependents_deps.dev:0 @@ -137501,6 +140732,8 @@ github.com/Oneia/read-more-angular2,num_dependents_deps.dev:0 github.com/Oneiroe/PySimpleAutomata, github.com/Oneistox-dev/designx,num_dependents_deps.dev:0 github.com/Onelin/HorizontalLayoutCanlendarView,num_dependents_deps.dev:0 +github.com/Onemind-Services-LLC/actions-pr-label-enforcer, +github.com/Onemind-Services-LLC/update-codeowners, github.com/Onepark/react-native-components-collection,num_dependents_deps.dev:0 github.com/OneraHub/RefractionShift, github.com/OneraHub/WhatsOpt-CLI, @@ -137509,6 +140742,7 @@ github.com/OneraHub/openmdao_extensions, github.com/OneraHub/smoot, github.com/OnesignalIran/OnesignalIran-Android-SDK,num_dependents_deps.dev:0 github.com/Onetail/automatic-name, +github.com/Onetail/github-action, github.com/OnetapInc/async-chain-proxy,num_dependents_deps.dev:56 github.com/OnetapInc/chromy,num_dependents_deps.dev:86 github.com/OnetapInc/multiple-picker-proptype-update,num_dependents_deps.dev:0 @@ -137791,6 +141025,9 @@ github.com/Open-Scanner-Serial/OSS,num_dependents_deps.dev:0 github.com/Open-Security-Group-OSG/HiddenEyeReborn, github.com/Open-Source-Agriculture/farmlayers, github.com/Open-Source-Agriculture/geotiff, +github.com/Open-Source-Contrib/bitrise-trigger-action, +github.com/Open-Source-Contrib/circle-ci-trigger-action, +github.com/Open-Source-Contrib/org-repo-scanner, github.com/Open-Source-Contributors-JSS/Hacktoberfest2019,criticality_score:0.437830 github.com/Open-Speech-EkStep/indic-punct, github.com/Open-Web-Analytics/Open-Web-Analytics,criticality_score:0.442970 @@ -137805,6 +141042,7 @@ github.com/Open-Xchange-Frontend/require-check,num_dependents_deps.dev:0 github.com/Open-Xchange-Frontend/shared-grunt-config,num_dependents_deps.dev:0 github.com/Open365/eyeos-bustohttp,num_dependents_deps.dev:0 github.com/Open365/grunt-hash-replace-files,num_dependents_deps.dev:0 +github.com/OpenAF/ojob-action, github.com/OpenAMP/libmetal,Google github.com/OpenAMP/open-amp,criticality_score:0.493530 github.com/OpenAPITools/empoa,num_dependents_deps.dev:2 @@ -137815,10 +141053,12 @@ github.com/OpenAPITools/openapi-generator-cli,"criticality_score:0.547990,num_de github.com/OpenATK/oada-app-cache,num_dependents_deps.dev:0 github.com/OpenAcousticDevices/audiomoth-hid, github.com/OpenAcousticDevices/audiomoth-utils,num_dependents_deps.dev:0 +github.com/OpenActions/dd-synthetics, github.com/OpenAgInitiative/openag_python, github.com/OpenAgenda/oa-public, github.com/OpenAgenda/verror, github.com/OpenAgriTech/opencroplib, +github.com/OpenAlcoholics/github-action-helm, github.com/OpenAnsible/rust-jsonrpc2,num_dependents_deps.dev:0 github.com/OpenApify/openapify,num_dependents_deps.dev:0 github.com/OpenApoc/OpenApoc,criticality_score:0.413730 @@ -137828,6 +141068,7 @@ github.com/OpenArCloud/ssd-access, github.com/OpenArchitex/gatsby-themes,num_dependents_deps.dev:0 github.com/OpenAssets/openassets, github.com/OpenAstroTech/OpenAstroTracker,criticality_score:0.391940 +github.com/OpenAstronomy/build-python-dist, github.com/OpenAvikom/camunda-client, github.com/OpenAyame/ayame-web-sdk,num_dependents_deps.dev:0 github.com/OpenBCI/OpenBCI_GUI,criticality_score:0.487030 @@ -137885,6 +141126,8 @@ github.com/OpenCageData/js-geo-what3words, github.com/OpenCageData/leaflet-opencage-search,num_dependents_deps.dev:0 github.com/OpenCageData/python-opencage-geocoder, github.com/OpenCannabis/Python, +github.com/OpenCatalogi/opencatalogi-action, +github.com/OpenCatalogi/productpage-action, github.com/OpenCerts/dnsprove,num_dependents_deps.dev:0 github.com/OpenCerts/open-certificate,num_dependents_deps.dev:0 github.com/OpenCerts/verify,num_dependents_deps.dev:0 @@ -137995,6 +141238,8 @@ github.com/OpenFlutter/flutter_image_compress,"criticality_score:0.333090,num_de github.com/OpenFlutter/flutter_screenutil,criticality_score:0.397380 github.com/OpenFlutter/fluwx,criticality_score:0.456450 github.com/OpenFn/adaptor,num_dependents_deps.dev:0 +github.com/OpenFn/cli-deploy-action, +github.com/OpenFn/cli-pull-action, github.com/OpenFn/core,num_dependents_deps.dev:0 github.com/OpenFn/language-common, github.com/OpenFn/language-divoc,num_dependents_deps.dev:0 @@ -138255,6 +141500,8 @@ github.com/OpenPaaS-Suite/jmap-client-ts,num_dependents_deps.dev:0 github.com/OpenPaymentPlatform/python, github.com/OpenPeeDeeP/depguard, github.com/OpenPeerPower/OPP-ui, +github.com/OpenPeerPower/builder, +github.com/OpenPeerPower/wheels, github.com/OpenPixel/blocky, github.com/OpenPostcodes/postcodes-jquery,num_dependents_deps.dev:0 github.com/OpenPostcodes/postcodes-node,num_dependents_deps.dev:0 @@ -138686,6 +141933,7 @@ github.com/OpportunityLiu/hexo-renderer-ts,num_dependents_deps.dev:0 github.com/OpportunityProtocol/opportunity-service,num_dependents_deps.dev:0 github.com/OpsCaptain/cli,num_dependents_deps.dev:0 github.com/OpsLabJPL/firstdown_cloud, +github.com/OpsLevel/report-deploy-github-action, github.com/Opsolem/react-simple-checkbox,num_dependents_deps.dev:0 github.com/Opstarts/generator-react-webpack,num_dependents_deps.dev:0 github.com/Opteo/google-ads-api,num_dependents_deps.dev:8 @@ -138697,6 +141945,7 @@ github.com/Optibus/playback, github.com/OpticGenius/download-tarball, github.com/OpticGenius/git-create-repo, github.com/OpticGenius/pypi-download-tarball, +github.com/Optick-Labs/last-successful-build-action, github.com/OptimalBI/optimal-spyglass-library,num_dependents_deps.dev:0 github.com/OptimalBPM/angular-schema-form-dynamic-select,num_dependents_deps.dev:0 github.com/OptimalBPM/mbe, @@ -138880,6 +142129,7 @@ github.com/OrKoN/npm-link-shared, github.com/OrKoN/typed-messenger-platform,num_dependents_deps.dev:0 github.com/OrLavy/parse-json-or,num_dependents_deps.dev:0 github.com/OrPolyzos/spring-web-initializr,num_dependents_deps.dev:0 +github.com/OrRosenblatt/validate-json-action, github.com/OraOpenSource/apex-frontend-boost,num_dependents_deps.dev:0 github.com/OraOpenSource/apex-nitro,num_dependents_deps.dev:0 github.com/OraOpenSource/orawrap,num_dependents_deps.dev:0 @@ -138987,6 +142237,7 @@ github.com/OrbitalEnterprises/evekit-sync,num_dependents_deps.dev:0 github.com/OrbitalEnterprises/license,num_dependents_deps.dev:0 github.com/OrbitalEnterprises/orbital-db-manager,num_dependents_deps.dev:31 github.com/OrbitalEnterprises/orbital-oauth,num_dependents_deps.dev:31 +github.com/OrbitalOwen/desktop-screenshot-action, github.com/Orbmancer/cycle-amqp,num_dependents_deps.dev:0 github.com/Orbmancer/cycle-websocket,num_dependents_deps.dev:0 github.com/Orbmancer/kuiz.md,num_dependents_deps.dev:0 @@ -139002,6 +142253,9 @@ github.com/OrceMaceski/active_admin_theme,num_dependents_deps.dev:0 github.com/Orchard-Analytics/orchard_aws, github.com/OrchardCMS/Orchard,criticality_score:0.583730 github.com/OrchardCMS/OrchardCore,criticality_score:0.640490 +github.com/OrchidIsle/UE5-Build-Project, +github.com/OrchidIsle/UE5-EOS-Config, +github.com/OrchidIsle/UE5-Semantic-Versioning, github.com/OrchidLiu/vue-router-breadcrumb,num_dependents_deps.dev:0 github.com/OrchidTechnologies/orchid,criticality_score:0.479280 github.com/Orckestra/orc-scripts,num_dependents_deps.dev:0 @@ -139045,11 +142299,14 @@ github.com/OrfeasZ/node-binutils,num_dependents_deps.dev:0 github.com/OrfeasZ/node-binutils-hiperf,num_dependents_deps.dev:0 github.com/OrfeasZ/node-couchbase,num_dependents_deps.dev:0 github.com/OrfeasZ/node-vbucket,num_dependents_deps.dev:0 +github.com/Orfium/critical-dependabot-jira, github.com/Orfium/django-command-monitoring, github.com/Orfium/orfium-ictinus,num_dependents_deps.dev:0 github.com/Orfium/s3-parquetifier, github.com/Orfund/Nika,num_dependents_deps.dev:0 github.com/OrgDependencies/app,num_dependents_deps.dev:0 +github.com/OrgFlow-Actions/result-to-comment, +github.com/OrgFlow-Actions/setup, github.com/OrgaChem/doclink,num_dependents_deps.dev:0 github.com/OrgaChem/json-jsdoc,num_dependents_deps.dev:0 github.com/OrgaChem/slackit,num_dependents_deps.dev:0 @@ -139156,6 +142413,7 @@ github.com/Originate/tertestrial-server, github.com/Originate/text-runner,num_dependents_deps.dev:0 github.com/Originate/tutorial-runner,num_dependents_deps.dev:0 github.com/Originate/wait-for-sequelize-authenticate,num_dependents_deps.dev:0 +github.com/OrigoHealthcareSolutions/gh-upload-sbom, github.com/Orime112/orime_cli,num_dependents_deps.dev:0 github.com/Orion98MC/arguee,num_dependents_deps.dev:0 github.com/Orion98MC/express_layout,num_dependents_deps.dev:0 @@ -139192,6 +142450,7 @@ github.com/Orivoir/fs-json-writer,num_dependents_deps.dev:0 github.com/Orivoir/fully-storage,num_dependents_deps.dev:0 github.com/Orivoir/fully-storage-users-api,num_dependents_deps.dev:0 github.com/Orivoir/simply-store, +github.com/OrjanSkarnes/changelog-action, github.com/OrkhanAlikhanov/prosemirror-image-uploader,num_dependents_deps.dev:0 github.com/OrkhanAlikhanov/prosemirror-replaceattrs,num_dependents_deps.dev:2 github.com/Orkhydea/libreria-levhita,num_dependents_deps.dev:0 @@ -139216,6 +142475,7 @@ github.com/OrleansContrib/Orleankka,criticality_score:0.325420 github.com/OrleansContrib/OrleansDashboard,criticality_score:0.436890 github.com/OrleansContrib/node-orleans,num_dependents_deps.dev:0 github.com/OrliDevelopment/ds-wrapper,num_dependents_deps.dev:0 +github.com/OrlovM/Wiki-Action, github.com/OrnaOrg/Orna4Node-CLI,num_dependents_deps.dev:0 github.com/OrnaOrg/OrnaJS,num_dependents_deps.dev:0 github.com/Ornaldo-RP-R/React-Time-Picker-Input, @@ -139251,6 +142511,10 @@ github.com/Ortham/json-schema-env-config,num_dependents_deps.dev:0 github.com/OrthoFi/puppeteer-brillo,num_dependents_deps.dev:0 github.com/Orthodox-Union/ShnayimMikrah,num_dependents_deps.dev:0 github.com/Ortonzhang/rollins-cli,num_dependents_deps.dev:0 +github.com/Ortus-Solutions/commandbox-action, +github.com/Ortus-Solutions/fixinator-action, +github.com/Ortus-Solutions/semantic-release-action, +github.com/Ortus-Solutions/setup-commandbox, github.com/Ortyommm/eFunc.js,num_dependents_deps.dev:0 github.com/OryJonay/Odds-Gym, github.com/OryJonay/scrapy-headless, @@ -139336,6 +142600,11 @@ github.com/Osirium/vcdriver, github.com/Ositoozy/inherito,num_dependents_deps.dev:0 github.com/Oskang09/digdata,num_dependents_deps.dev:0 github.com/OskarLebuda/kodilla-google-calendar,num_dependents_deps.dev:0 +github.com/OskarStark/doctor-rst, +github.com/OskarStark/php-cs-fixer-ga, +github.com/OskarStark/phpcs-ga, +github.com/OskarStark/phpstan-ga, +github.com/OskarStark/symfony-cloud-ga, github.com/Oskarino29/test-node-module,num_dependents_deps.dev:0 github.com/Osky772/parcel-plugin-build-time,num_dependents_deps.dev:0 github.com/Osky772/parcel-plugin-git-sha,num_dependents_deps.dev:0 @@ -139364,6 +142633,7 @@ github.com/OsomePteLtd/redux-data-preloader,num_dependents_deps.dev:0 github.com/OsomePteLtd/redux-preload,num_dependents_deps.dev:0 github.com/OsparkSolutions/cb-async,num_dependents_deps.dev:0 github.com/OssamaZ/botsfactory-plugin,num_dependents_deps.dev:0 +github.com/OssiPesonen/action-update-api-management-openapi, github.com/Osspial/nbez-rs,num_dependents_deps.dev:0 github.com/Osspial/slot_generator,num_dependents_deps.dev:0 github.com/Osspial/vk-rs,num_dependents_deps.dev:0 @@ -139372,6 +142642,8 @@ github.com/Osterjour/line-by-line,num_dependents_deps.dev:285 github.com/OstlerDev/PopcornTV,num_dependents_deps.dev:0 github.com/Ostoic/trio-socks, github.com/Ostorlab/ostorlab, +github.com/Ostorlab/ostorlab_actions, +github.com/Ostrich-Cyber-Risk/ai-codereviewer, github.com/OstrichProjects/phoneme,num_dependents_deps.dev:0 github.com/Ostrichbeta/adv-math-captcha, github.com/Ostrovski/js-itertools,num_dependents_deps.dev:0 @@ -139447,6 +142719,7 @@ github.com/OttawaSki/canada-weather, github.com/Ottegi/exalt-tools,num_dependents_deps.dev:0 github.com/OtterBrowser/otter-browser,criticality_score:0.476350 github.com/OtterCode/summoner,num_dependents_deps.dev:0 +github.com/OtterDoc/otterdoc-actions, github.com/OtterWhisperer/202101-angular-library-template,num_dependents_deps.dev:0 github.com/OttoGroupSolutionProvider/aws-maven,num_dependents_deps.dev:0 github.com/OttoWinter/esphomeyaml, @@ -139828,6 +143101,7 @@ github.com/Oyinna/relay-package,num_dependents_deps.dev:0 github.com/OystParis/hapi-locale-i18n,num_dependents_deps.dev:0 github.com/OystParis/joi-phone-validator,num_dependents_deps.dev:0 github.com/OyukiCV/MEX008-FE-md-link,num_dependents_deps.dev:0 +github.com/OyvindLGjesdal/lychee-action, github.com/OyvindSabo/insomniac,num_dependents_deps.dev:0 github.com/OyvindSabo/quoridor.js,num_dependents_deps.dev:0 github.com/OyvindSabo/sharp-router,num_dependents_deps.dev:0 @@ -139900,6 +143174,8 @@ github.com/P0lip/ts-import-equals-rewriter,num_dependents_deps.dev:0 github.com/P0lip/ui-kit-converter,num_dependents_deps.dev:0 github.com/P0lip/url-tilde-loader,num_dependents_deps.dev:0 github.com/P0rt3rH/docxtemplater,num_dependents_deps.dev:0 +github.com/P10-ai/Perf-Action, +github.com/P10-ai/Perf-Actions, github.com/P13R3/rpi-ws281x-python-3bp_spi1, github.com/P1N2O/ng-tour,num_dependents_deps.dev:0 github.com/P1sec/pycrate, @@ -139921,6 +143197,7 @@ github.com/P2PVPS/openbazaar-node,num_dependents_deps.dev:0 github.com/P2Pvalue/gulp-docker-swellrt,num_dependents_deps.dev:0 github.com/P3KI/bendy,num_dependents_deps.dev:0 github.com/P3T3R-Z/uniapp-z-audio,num_dependents_deps.dev:0 +github.com/P3TERX/ssh2actions, github.com/P3qch/aioradios, github.com/P3t3rU5/ft-ffi,num_dependents_deps.dev:0 github.com/P3t3rU5/pigment,num_dependents_deps.dev:0 @@ -139937,6 +143214,7 @@ github.com/P403n1x87/blighty, github.com/P403n1x87/git-railway, github.com/P403n1x87/pytest-austin, github.com/P403n1x87/sibilla, +github.com/P47Phoenix/dotnet-cdk-action, github.com/P4IT/react-native-cidscan, github.com/P4N74/demangler, github.com/P4X666/custom-calendar-taro,num_dependents_deps.dev:0 @@ -140116,6 +143394,7 @@ github.com/PDOK/geoserver-manager,num_dependents_deps.dev:0 github.com/PDOK/geoserver-manager-pdok,num_dependents_deps.dev:0 github.com/PDOK/geoserver-workspace-builder,num_dependents_deps.dev:0 github.com/PDOK/gml3-jts,num_dependents_deps.dev:0 +github.com/PDOK/molecule-action, github.com/PDOK/nested-dataclasses, github.com/PDOK/pdok-util,num_dependents_deps.dev:0 github.com/PDOK/rdnaptrans-java,num_dependents_deps.dev:0 @@ -140147,6 +143426,7 @@ github.com/PENGUINLIONG/writium-auth,num_dependents_deps.dev:0 github.com/PENGUINLIONG/writium-cache,num_dependents_deps.dev:0 github.com/PENGWAYNE/js-typeof,num_dependents_deps.dev:0 github.com/PENTONCOS/jpd-utils,num_dependents_deps.dev:0 +github.com/PERES-Richard/maven-get-version-action, github.com/PERSISTENC/client-construction-tool,num_dependents_deps.dev:0 github.com/PERSISTENC/client-infrastructure-tool,num_dependents_deps.dev:0 github.com/PERSISTENC/http-server-axios,num_dependents_deps.dev:0 @@ -140171,6 +143451,7 @@ github.com/PFElements/pf-progress-slider,num_dependents_deps.dev:0 github.com/PFGimenez/ecf-anomaly-detection, github.com/PFLUGS/lotide, github.com/PFLeget/treegp, +github.com/PFM-PowerForMe/PFM-Archbuild, github.com/PFTL/SimpleDaq, github.com/PFernanda2397/random-msg, github.com/PFight/angular-gulp-starter-api,num_dependents_deps.dev:0 @@ -140210,6 +143491,7 @@ github.com/PGSSoft/gulp-recipe-preprocess, github.com/PGSSoft/gulp-recipe-rev, github.com/PGSSoft/gulp-recipe-sass, github.com/PGSSoft/ramlo,num_dependents_deps.dev:0 +github.com/PGYER/pgyer-upload-app-action, github.com/PGijsbers/GAMA, github.com/PGilbertSchmitt/mtj-parser, github.com/PGilbertSchmitt/mtj-react,num_dependents_deps.dev:0 @@ -140237,8 +143519,10 @@ github.com/PHLAK/Twine,criticality_score:0.311820 github.com/PHOTON-ONE/neutron-ui,num_dependents_deps.dev:0 github.com/PHP-DI/PHP-DI,criticality_score:0.585380 github.com/PHP-FFMpeg/PHP-FFMpeg,criticality_score:0.493020 +github.com/PHP-Prefixer/php-prefixer-build-action, github.com/PHPAuth/PHPAuth,criticality_score:0.445240 github.com/PHPCompatibility/PHPCompatibility,criticality_score:0.458840 +github.com/PHPDevsr/check-conflict-action, github.com/PHPJasper/phpjasper,criticality_score:0.316410 github.com/PHPJunior/vue-zawuni,num_dependents_deps.dev:0 github.com/PHPMailer/PHPMailer,criticality_score:0.685430 @@ -140258,6 +143542,7 @@ github.com/PILTT/silky,num_dependents_deps.dev:0 github.com/PILTT/silky-akka,num_dependents_deps.dev:0 github.com/PILTT/silky-persistence,num_dependents_deps.dev:0 github.com/PIMBA/inline-import.macro,num_dependents_deps.dev:0 +github.com/PIMPfiction/AutoTagVersionRelease, github.com/PINKONG/sun-oss-python, github.com/PINPODEV/time-slots-finder, github.com/PINTO0309/json2onnx, @@ -140431,6 +143716,7 @@ github.com/PPACI/mojito, github.com/PPACI/node-binance-scraper,num_dependents_deps.dev:0 github.com/PPACI/wrk2img, github.com/PPCM/composer-wallet-mongodb,num_dependents_deps.dev:0 +github.com/PPG007/keywords-scanner, github.com/PPIO/ppio-sdk-js,num_dependents_deps.dev:0 github.com/PPMESSAGE/gitbook-plugin-ppmessage,num_dependents_deps.dev:0 github.com/PPPatt/numberToLetters,num_dependents_deps.dev:0 @@ -140479,7 +143765,11 @@ github.com/PRINTR3D/formide-client,num_dependents_deps.dev:0 github.com/PRIV00/quikcsv, github.com/PRNDcompany/ReactSvgStarRating,num_dependents_deps.dev:0 github.com/PRNDcompany/canvas-object,num_dependents_deps.dev:0 +github.com/PRNDcompany/compare-jira-release-issue-by-release-pr, github.com/PRNDcompany/fast-vector, +github.com/PRNDcompany/jira-issue-version-by-release-pr, +github.com/PRNDcompany/jira-release, +github.com/PRNDcompany/jira-release-notes, github.com/PROB8/npm-gitonga,num_dependents_deps.dev:0 github.com/PROBIC/tigreBrowser, github.com/PROBOOKINGCENTER/ihere,num_dependents_deps.dev:0 @@ -140677,6 +143967,7 @@ github.com/PXLbros/ember-svg-sprite-sheet,num_dependents_deps.dev:0 github.com/PXLbros/other-utils,num_dependents_deps.dev:0 github.com/PXLbros/social-utilities,num_dependents_deps.dev:0 github.com/PXgamer/wwt-simple-upload-npm,num_dependents_deps.dev:0 +github.com/PXshadow/setup-hashlink, github.com/PY-GZKY/Moyu_, github.com/PY-GZKY/aiorq, github.com/PY-GZKY/mongo2file, @@ -140706,6 +143997,7 @@ github.com/Paahn/lotide,num_dependents_deps.dev:0 github.com/Paaltomo/nodebb-theme-classic,num_dependents_deps.dev:0 github.com/Paaltomo/nodebb-theme-flip,num_dependents_deps.dev:0 github.com/Paaltomo/nodebb-theme-tron,num_dependents_deps.dev:0 +github.com/PabiGamito/cloudflare-update-dnslink, github.com/PablitoElMaldy/random-messages, github.com/Pablo-Lemos/NestConverge, github.com/Pablo-Rodriguez/copico,num_dependents_deps.dev:0 @@ -140716,6 +144008,7 @@ github.com/PabloAlexandre/js-model-mapper,num_dependents_deps.dev:0 github.com/PabloAlexandre/saga-maker,num_dependents_deps.dev:0 github.com/PabloAlmonte/loopback-component-relation-filter,num_dependents_deps.dev:0 github.com/PabloAlmonte/mydom,num_dependents_deps.dev:0 +github.com/PabloBarrenechea-Reflektion/pull-request, github.com/PabloCastellano/bormeparser, github.com/PabloCastellano/extract-dtb, github.com/PabloCastellano/libcnml, @@ -140729,11 +144022,14 @@ github.com/PabloGaudard/Apax,num_dependents_deps.dev:0 github.com/PabloGaudard/shadowizard,num_dependents_deps.dev:0 github.com/PabloLION/symmetric-secret-share, github.com/PabloLION/symmetric-secrete-share, +github.com/PabloLec/action-website-gif, github.com/PabloLec/freebox_reboot, github.com/PabloLec/livelog, github.com/PabloLec/oc_chess_club, +github.com/PabloLec/pypi-github-sync, github.com/PabloLec/recoverpy, github.com/PabloLec/test-pypi-action, +github.com/PabloLec/website-to-gif, github.com/PabloM1986/jScheduler,num_dependents_deps.dev:0 github.com/PabloMDiez/sequentially-run-promise,num_dependents_deps.dev:0 github.com/PabloMSanAla/fabada, @@ -140771,8 +144067,10 @@ github.com/PabloVallejo/Rebel,num_dependents_deps.dev:0 github.com/PabloZaiden/html-localizer,num_dependents_deps.dev:0 github.com/PablocFonseca/streamlit-aggrid, github.com/Pablocyc/platzom,num_dependents_deps.dev:0 +github.com/Pablohn26/ansible-syntax-check-action, github.com/Pabloitto/samuraiject,num_dependents_deps.dev:0 github.com/Pabloitto/samurainject, +github.com/Pablommr/kubernetes-eks, github.com/Pabrick/roger,num_dependents_deps.dev:0 github.com/Pabrick/roger.js,num_dependents_deps.dev:0 github.com/Pabrisson/husky, @@ -140809,6 +144107,13 @@ github.com/PackageFactory/pflibs--shared-scope,num_dependents_deps.dev:0 github.com/PackagedCat/nativescript-google-maps,num_dependents_deps.dev:0 github.com/PackagedCat/nativescript-iap, github.com/PackagedCat/nativescript-in-app-purchase,num_dependents_deps.dev:0 +github.com/PackagrIO/action-bumpr-generic, +github.com/PackagrIO/action-bumpr-go, +github.com/PackagrIO/action-bumpr-node, +github.com/PackagrIO/action-publishr-go, +github.com/PackagrIO/action-publishr-node, +github.com/PackagrIO/action-releasr-go, +github.com/PackagrIO/action-releasr-node, github.com/PackeTsar/autoshell, github.com/PackeTsar/gsuite_sync, github.com/PackeTsar/meraki-cli, @@ -140983,6 +144288,7 @@ github.com/PagerDuty/incident-response-docs,criticality_score:0.319990 github.com/PagerDuty/lita-enhance,num_dependents_deps.dev:0 github.com/PagerDuty/net-ntp-check,num_dependents_deps.dev:0 github.com/PagerDuty/pagerduty-api-python-client, +github.com/PagerDuty/pagerduty-change-events-action, github.com/PagerDuty/pdjs,num_dependents_deps.dev:0 github.com/PagerTree/ember-cli-pagertree-adminlte,num_dependents_deps.dev:0 github.com/Pageworks/djinnjs,num_dependents_deps.dev:0 @@ -141112,6 +144418,7 @@ github.com/PalmerEk/BleuTrade-API,num_dependents_deps.dev:0 github.com/PalmerEk/CryptsyV2-API,num_dependents_deps.dev:0 github.com/Palmr/classfile-parser,num_dependents_deps.dev:0 github.com/PaloAltoNetworks-BD/autofocus-client-library, +github.com/PaloAltoNetworks/cov, github.com/PaloAltoNetworks/gridmeld, github.com/PaloAltoNetworks/pan-cortex-data-lake-nodejs, github.com/PaloAltoNetworks/pan-cortex-data-lake-python, @@ -141123,12 +144430,14 @@ github.com/PaloAltoNetworks/pancloud, github.com/PaloAltoNetworks/pancloud-nodejs,num_dependents_deps.dev:0 github.com/PaloAltoNetworks/pandevice, github.com/PaloAltoNetworks/passport-cortex,num_dependents_deps.dev:0 +github.com/PaloAltoNetworks/prisma-cloud-scan, github.com/PaloAltoNetworks/prismacloud-cli, github.com/PaloAltoNetworks/remediate-gcp, github.com/PalomaCiffBigData/Model_P_y_D, github.com/PalomaMobile/android-db-migration,num_dependents_deps.dev:0 github.com/PalomaMobile/paloma-android-sdk,num_dependents_deps.dev:0 github.com/PalotaCompany/cordova-plugin-honeywell-barcode-scanner,num_dependents_deps.dev:0 +github.com/Paloudi/build-jenkins-job, github.com/Palpatineli/bibdb, github.com/Palpatineli/noformat, github.com/Palpatineli/starburst, @@ -141136,6 +144445,7 @@ github.com/Palpatineli/tiffreader, github.com/Palpatineli/uifunc, github.com/PalsRoy/react-calculator,num_dependents_deps.dev:0 github.com/PaluchLabUCL/DeformingMesh3D-plugin, +github.com/Pam-Pam-Co/action-cloud-run, github.com/PamCai/DLSuR, github.com/Pamblam/Go-Life,num_dependents_deps.dev:0 github.com/Pamblam/Universal-Encoder,num_dependents_deps.dev:0 @@ -141183,6 +144493,7 @@ github.com/Pana/esrequire, github.com/Pana/nrm,"criticality_score:0.307530,num_dependents_deps.dev:12" github.com/Pana/qingcloud-sdk,num_dependents_deps.dev:0 github.com/Pana/wga,num_dependents_deps.dev:0 +github.com/PanagiotisPtr/cov-diff, github.com/PanayotCankov/device.io,num_dependents_deps.dev:0 github.com/PanayotCankov/mocha-typescript,num_dependents_deps.dev:26 github.com/PanayotCankov/nativescript-idle,num_dependents_deps.dev:0 @@ -141223,6 +144534,7 @@ github.com/PandaWood/rubyann,num_dependents_deps.dev:0 github.com/PandaXcentric/game_apis, github.com/PandaXz/postgres-logical-decoding-events,num_dependents_deps.dev:0 github.com/Pandaaaa906/xlsx_validator, +github.com/Pandapip1/jekyll-label-action, github.com/Pandapip1/node-thealtening,num_dependents_deps.dev:0 github.com/Pandapm/ace-vue2,num_dependents_deps.dev:0 github.com/Pandapm/webpack-inline-modern-source-plugin,num_dependents_deps.dev:0 @@ -141285,6 +144597,8 @@ github.com/Panopta/panopta-style-guide-generator,num_dependents_deps.dev:0 github.com/Panopta/python-panopta-api-client, github.com/PanosCodes/active_policy,num_dependents_deps.dev:0 github.com/PanosJee/streamapi,num_dependents_deps.dev:0 +github.com/Panquesito7/setup-jule, +github.com/Panquesito7/submodules-alternative, github.com/Pantarheon/koliba, github.com/PantelisGeorgiadis/dcmjs-dimse,num_dependents_deps.dev:0 github.com/PanthR/eslint-config-panthr,num_dependents_deps.dev:0 @@ -141298,6 +144612,7 @@ github.com/Panthera-Framework/Panthera-Desktop, github.com/PantheraRed/typemon,num_dependents_deps.dev:0 github.com/Panthro/env-checker,num_dependents_deps.dev:0 github.com/Pantrist-dev/capacitor-firebase-dynamic-links,num_dependents_deps.dev:0 +github.com/Panuchi/VkNetJobStatusChangeAction, github.com/Panya/svelte-intl,num_dependents_deps.dev:0 github.com/PaodingAI/aipod, github.com/Paol-imi/blockly-gamepad,num_dependents_deps.dev:0 @@ -141340,6 +144655,7 @@ github.com/PaperElectron/ownAnylitics,num_dependents_deps.dev:0 github.com/PaperElectron/resume,num_dependents_deps.dev:0 github.com/PaperMC/Paper,criticality_score:0.651480 github.com/PaperMC/Waterfall,criticality_score:0.436210 +github.com/PaperMC/update-projects-action, github.com/PaperMtn/github-watchman, github.com/PaperMtn/gitlab-watchman, github.com/PaperMtn/slack-watchman, @@ -141363,6 +144679,7 @@ github.com/Paperist/remark-math,num_dependents_deps.dev:4 github.com/Paperist/remark-table-caption,num_dependents_deps.dev:4 github.com/Paperist/types-remark,num_dependents_deps.dev:0 github.com/PapersHive/lang-papershive,num_dependents_deps.dev:0 +github.com/Paperspace/deploy-action, github.com/Paperspace/gradient-sdk, github.com/Paperspace/gradient-utils, github.com/Paperspace/paperspace-client-sdk,num_dependents_deps.dev:0 @@ -141400,6 +144717,7 @@ github.com/ParRes/Kernels,criticality_score:0.483480 github.com/Para-C/Para-C-CLI, github.com/Para-Lang/Para, github.com/Para-Lang/Para-CLI, +github.com/ParaSpl01t/smiley.sh, github.com/Parabeac/Parabeac-Core,criticality_score:0.400230 github.com/ParabolInc/falcor-saddle,num_dependents_deps.dev:0 github.com/ParabolInc/migrate-rethinkdb,num_dependents_deps.dev:0 @@ -141503,11 +144821,13 @@ github.com/ParamagicDev/snowpacker, github.com/ParamagicDev/vite_rb, github.com/ParamagicDev/vps_cli,num_dependents_deps.dev:0 github.com/Paramagnetic/newman-reporter-json-light,num_dependents_deps.dev:0 +github.com/Paramdigma/setup-yak, github.com/Parametricos/bcf-js, github.com/ParamoshkinAndrew/ReactNativeCircleCheckbox,num_dependents_deps.dev:0 github.com/Paranoid-AF/ipc-promise-invoke, github.com/Paranoid-AF/object-keys-diff, github.com/Paranoid-AF/redux-key-listener, +github.com/ParanoidBeing/action-wip-blocker, github.com/ParanoydAndroid/qisquick, github.com/Paraply-Project/paraply-eslint, github.com/Paras-Sood/Topsis_Paras_101916051, @@ -141618,6 +144938,8 @@ github.com/ParomovEvg/react-fipc,num_dependents_deps.dev:2 github.com/ParomovEvg/useful-monads,num_dependents_deps.dev:0 github.com/Paroxity/hive-tools-wrapper, github.com/ParoxityTeam/hive-tools-wrapper,num_dependents_deps.dev:0 +github.com/Parply/profile-wordcloud, +github.com/Parply/readme-badge-colouriser, github.com/Parquery/datetime-glob, github.com/Parquery/east-detector, github.com/Parquery/elm-docstyle,num_dependents_deps.dev:0 @@ -141845,6 +145167,9 @@ github.com/PassTheWessel/larg,num_dependents_deps.dev:0 github.com/PassTheWessel/lumah,num_dependents_deps.dev:0 github.com/PassTheWessel/nabbit,num_dependents_deps.dev:0 github.com/PassTheWessel/wumpfetch,num_dependents_deps.dev:4 +github.com/PasseiDireto/aws-add-ip-to-security-group-action, +github.com/PasseiDireto/gh-runner-task-action, +github.com/PasseiDireto/trigger-external-workflow-action, github.com/Passeriform/clique,num_dependents_deps.dev:0 github.com/PassionPI/fpie-option,num_dependents_deps.dev:0 github.com/PassionPI/koa-body,num_dependents_deps.dev:0 @@ -141853,6 +145178,7 @@ github.com/PassionPI/koa-static,num_dependents_deps.dev:0 github.com/PassionPenguin/markdown-html,num_dependents_deps.dev:0 github.com/PassivePDNS/pypdns, github.com/Passiverecords/angular-flag-icon-css, +github.com/Passiverecords/chrome-extension-upload-action, github.com/Passiverecords/ng-cemodel,num_dependents_deps.dev:0 github.com/Passiverecords/ngx-flatpickr,num_dependents_deps.dev:0 github.com/Passkou/bilibili-api, @@ -141885,6 +145211,7 @@ github.com/PatLillis/more-words,num_dependents_deps.dev:0 github.com/PatMES/Preen,num_dependents_deps.dev:0 github.com/PatMan10/kickstart.css,num_dependents_deps.dev:0 github.com/PatMan10/kickstart_css,num_dependents_deps.dev:0 +github.com/PatMyron/pocket-lint, github.com/PatNeedham/google-it,num_dependents_deps.dev:0 github.com/PatRedway/bluetooth-classic-serialport-client,num_dependents_deps.dev:0 github.com/PatWalters/rd_filters,Google @@ -142037,6 +145364,7 @@ github.com/PatrikValkovic/FEAT, github.com/PatrikValkovic/csfd-api,num_dependents_deps.dev:0 github.com/PatrikValkovic/grammpy, github.com/PatrikValkovic/grammpy-transforms, +github.com/PatrikValkovic/last-successful-commit-action, github.com/PatrikValkovic/pyparsers, github.com/PatriotCodes/fetchz,num_dependents_deps.dev:0 github.com/PatriotRossii/e621-py, @@ -142064,6 +145392,7 @@ github.com/Patternslib/generator-patternslib,num_dependents_deps.dev:0 github.com/Patternslib/pat-resourcepolling,num_dependents_deps.dev:0 github.com/Patternslib/pat-upload,num_dependents_deps.dev:0 github.com/Pattio/DeepSwarm, +github.com/PattniVishal/github-action-sample, github.com/Paturages/ng-ucldr,num_dependents_deps.dev:0 github.com/PatyYe/pubg.op.gg-API-Wrapper,num_dependents_deps.dev:0 github.com/Patzold/piptest, @@ -142254,6 +145583,7 @@ github.com/PaulGuo/juicer-express-adapter,num_dependents_deps.dev:0 github.com/PaulGuo/v8-perf-shield,num_dependents_deps.dev:0 github.com/PaulHMason/themie,num_dependents_deps.dev:0 github.com/PaulHancock/Aegean, +github.com/PaulHatch/semantic-version, github.com/PaulKGrimes/python-graspfile, github.com/PaulKariukiRimiru/millennium-node-falcon,num_dependents_deps.dev:0 github.com/PaulKinlan/air-horner,num_dependents_deps.dev:0 @@ -142267,6 +145597,7 @@ github.com/PaulLeCam/node-slob, github.com/PaulLeCam/react-json-renderer,num_dependents_deps.dev:0 github.com/PaulLeCam/react-leaflet,"criticality_score:0.550750,num_dependents_deps.dev:268" github.com/PaulLeCam/react-native-electron,num_dependents_deps.dev:0 +github.com/PaulLesur/wait-docker-image-github-action, github.com/PaulLikesToCode/shareit,num_dependents_deps.dev:0 github.com/PaulLockwood/types-browser-bunyan,num_dependents_deps.dev:0 github.com/PaulMEdwards/testcafe-reporter-xray-cloud-json,num_dependents_deps.dev:0 @@ -142309,6 +145640,9 @@ github.com/PaulPortal/lectionary,num_dependents_deps.dev:0 github.com/PaulRBerg/eslint-config,num_dependents_deps.dev:0 github.com/PaulRBerg/react-hooks,num_dependents_deps.dev:0 github.com/PaulRenvoise/flashback, +github.com/PaulRitter/github-action-create-commit-parent-submodule, +github.com/PaulRitter/yaml-schema-validator, +github.com/PaulRosenthal/Jekyll-Deploy-Test-Action, github.com/PaulRosset/EasyIP,num_dependents_deps.dev:0 github.com/PaulRosset/bundlesize,num_dependents_deps.dev:0 github.com/PaulRosset/formidable-upload-koa,num_dependents_deps.dev:0 @@ -142425,6 +145759,17 @@ github.com/PauuuIFBM/test_scope,num_dependents_deps.dev:0 github.com/Pav0l/express-restricted,num_dependents_deps.dev:0 github.com/Pavan164-ml/oneNeuron_pypi, github.com/PavanKu/web-component-lib,num_dependents_deps.dev:0 +github.com/PavanMudigonda/allure-html-reporter-aws-s3-website, +github.com/PavanMudigonda/allure-html-reporter-azure-website, +github.com/PavanMudigonda/allure-html-reporter-github-pages, +github.com/PavanMudigonda/html-reporter, +github.com/PavanMudigonda/html-reporter-aws-s3-website, +github.com/PavanMudigonda/html-reporter-azure-website, +github.com/PavanMudigonda/html-reporter-github-pages, +github.com/PavanMudigonda/jacoco-reporter, +github.com/PavanMudigonda/lines-of-code-reporter, +github.com/PavanMudigonda/markdown-reporter, +github.com/PavanMudigonda/near-duplicate-code-detector, github.com/PavanTatikonda/itypes, github.com/Pavek/create-react-app,num_dependents_deps.dev:0 github.com/Pavek/marksy,num_dependents_deps.dev:0 @@ -142483,6 +145828,7 @@ github.com/PavelShar/vue-and-router-guards,num_dependents_deps.dev:0 github.com/PavelSrom/TrackBuddy-Shared,num_dependents_deps.dev:0 github.com/PavelSrom/redux-query-dispatch,num_dependents_deps.dev:0 github.com/PavelStancik/enhanced-env-azure-vault,num_dependents_deps.dev:0 +github.com/PavelStancik/enhanced-env-azure-vault-action, github.com/PavelTkachenko/processing_kz,num_dependents_deps.dev:0 github.com/PavelTyk/sendgrid-rails,num_dependents_deps.dev:0 github.com/PavelVanecek/drop-sudo,num_dependents_deps.dev:0 @@ -142786,6 +146132,7 @@ github.com/PederHA/mwdictionary, github.com/PederHA/mwthesaurus, github.com/PederHA/odherogrid, github.com/Pedestria/vortex-rtde,num_dependents_deps.dev:0 +github.com/PedigreeTechnologies/github-action-molecule, github.com/Pedneri1/precodahora-api, github.com/Pedr0R0cha/prompt_terminal, github.com/Pedram26/markover, @@ -142846,6 +146193,7 @@ github.com/PeerBoard/node-api,num_dependents_deps.dev:0 github.com/PeerBoard/react-components,num_dependents_deps.dev:0 github.com/PeerSocial-io/gunfs,num_dependents_deps.dev:0 github.com/PeerTunnel/forward-addr,num_dependents_deps.dev:0 +github.com/PeerXu/upload-asset, github.com/Peerby/eslint-config-peerby,num_dependents_deps.dev:0 github.com/Peerby/mongoose-lock-release,num_dependents_deps.dev:0 github.com/Peerby/node-configuratoror,num_dependents_deps.dev:0 @@ -142948,6 +146296,7 @@ github.com/Peltoche/lsd,"criticality_score:0.514560,num_dependents_deps.dev:0" github.com/PelumiAlesh/motionjs,num_dependents_deps.dev:0 github.com/PelumiWeb/input_-formatterr,num_dependents_deps.dev:0 github.com/Pelv/frontlog,num_dependents_deps.dev:0 +github.com/PenPow/determine-version-bump-action, github.com/Pena-Co-Ltd/dag-api-python, github.com/Penagwin/asmcpuid,num_dependents_deps.dev:0 github.com/Penagwin/letter,num_dependents_deps.dev:0 @@ -142968,6 +146317,7 @@ github.com/PendaRed/sackfix,num_dependents_deps.dev:0 github.com/PendaRed/sackfixmessages,num_dependents_deps.dev:0 github.com/PendaRed/sackfixsessions,num_dependents_deps.dev:0 github.com/Pendapa/buccaneer-tester,num_dependents_deps.dev:0 +github.com/Pendect/action-rsyncer, github.com/PendletonJones/zorigami-pub,num_dependents_deps.dev:0 github.com/Pendlimarris/app-test,num_dependents_deps.dev:0 github.com/PendragonLore/async_pokepy, @@ -142975,6 +146325,7 @@ github.com/PendragonLore/discord-timers, github.com/PendragonLore/shinkei, github.com/PenetratingShot/Python-ASCII-Art, github.com/PenfoldTechnology/validate-env-vars-webpack-plugin,num_dependents_deps.dev:0 +github.com/PenfoldTechnology/vercel-branch-preview-url-action, github.com/Peng-Xiao-Shuai-0902/el-plus-powerful-table,num_dependents_deps.dev:0 github.com/PengBoXiangShang/torchsketch, github.com/PengCJun/anydoor,num_dependents_deps.dev:0 @@ -143032,6 +146383,8 @@ github.com/Pengeszikra/react-slash,num_dependents_deps.dev:0 github.com/Pengeszikra/react-troll, github.com/PenguBot/eslint-config,num_dependents_deps.dev:0 github.com/PenguBot/klasa,num_dependents_deps.dev:0 +github.com/Penguibird/FTP-Deploy-Action, +github.com/Penguin-Spy/factorio-mod-portal-publish, github.com/Penguin3007/TelegramApiVue,num_dependents_deps.dev:0 github.com/PenguinMaster0226/discord-ext-dashboard, github.com/PenguinOfWar/react-paginate,num_dependents_deps.dev:0 @@ -143050,7 +146403,9 @@ github.com/PennBBL/bids-on-flywheel, github.com/PennBBL/fw-gear-audit, github.com/PennBBL/fw_heudiconv, github.com/PennLINC/FlyBIDS, +github.com/PennRobotics/abc2pdf-action, github.com/PennSIVE/WhiteStripe.py, +github.com/PennSIVE/r2py, github.com/PennState/commons-jaxrs,num_dependents_deps.dev:3 github.com/PennState/scim,num_dependents_deps.dev:27 github.com/PennTao/stt-serde-mjs,num_dependents_deps.dev:0 @@ -143090,6 +146445,7 @@ github.com/Penta-Game/pentagraph, github.com/Penta0308/kspconfig-python, github.com/PentaTea/B-Tree.studio, github.com/PentagonalProject/P-Proxies,num_dependents_deps.dev:0 +github.com/Pentangle/laravel-deployment-action, github.com/PentiaLabs/Package.Installer,num_dependents_deps.dev:0 github.com/PentiaLabs/configuration.transform,num_dependents_deps.dev:0 github.com/PentiaLabs/crust-io,num_dependents_deps.dev:0 @@ -143182,6 +146538,7 @@ github.com/Percona-Lab/sysbench-tpcc,Google github.com/Percorso/CoreLib.js,num_dependents_deps.dev:0 github.com/PercyChuang/modest,num_dependents_deps.dev:20 github.com/PercyJackson235/pydirbuster, +github.com/PereViader/CSharpProjectToUnity3dPackage, github.com/Peregrine-node/exceptions,num_dependents_deps.dev:0 github.com/Peregrine-node/filesystem,num_dependents_deps.dev:0 github.com/Peregrine-node/static-implements, @@ -143199,6 +146556,7 @@ github.com/Perevalov/LinguaF, github.com/Perevalov/qanary_helpers, github.com/PerezYuan/express-file-autorouter,num_dependents_deps.dev:0 github.com/Perezmarc/vuemarc-ui-kit,num_dependents_deps.dev:0 +github.com/PerfAI-Inc/PerfAI-Action, github.com/PerfCake/PerfCake,num_dependents_deps.dev:14 github.com/PerfCake/Weaver,num_dependents_deps.dev:0 github.com/PerfRepo/PerfRepo,num_dependents_deps.dev:0 @@ -143282,6 +146640,8 @@ github.com/Permanent-Legacy-Foundation/permanent-api-js,num_dependents_deps.dev: github.com/Permanent-Legacy-Foundation/vis-timeline,num_dependents_deps.dev:0 github.com/PermanentOrg/vis-timeline, github.com/PermanentRecord/mercury-client,num_dependents_deps.dev:0 +github.com/Permify/permify-coverage-action, +github.com/Permify/permify-validate-action, github.com/PermissionData/protobufjs-loader, github.com/Permissionless-Software-Foundation/avax-cli-wallet,num_dependents_deps.dev:0 github.com/Permissionless-Software-Foundation/bch-donation,num_dependents_deps.dev:6 @@ -143323,6 +146683,7 @@ github.com/Perpetto/client-ruby,num_dependents_deps.dev:0 github.com/PerpetualWar/vue2-dragula,num_dependents_deps.dev:0 github.com/PerrineBoissieres/time-loop,num_dependents_deps.dev:0 github.com/Perroquiet/azure-activedirectory-library-for-cordova,num_dependents_deps.dev:0 +github.com/PerrorOne/rancher-update-workload, github.com/PerryDu/dianping-wedding-button,num_dependents_deps.dev:0 github.com/PerryRylance/DataTable.js,num_dependents_deps.dev:0 github.com/PerryRylance/EventDispatcher,num_dependents_deps.dev:0 @@ -143342,6 +146703,7 @@ github.com/PerseusDL/Capitains-Sparrow,num_dependents_deps.dev:0 github.com/PerseusTheGreat/bootstrap-4-rtl,num_dependents_deps.dev:0 github.com/PerseusTheGreat/bootstrap-rtl-npm-scss,num_dependents_deps.dev:0 github.com/PersiaML/PersiaML, +github.com/Person-93/commitlint-gh-action, github.com/PersonaClick/rn-sdk,num_dependents_deps.dev:0 github.com/Personal-Assistant-Project/ProjectHelper, github.com/Personal-Data-Center/pdc_dev, @@ -143393,6 +146755,7 @@ github.com/Petemir/bootstrap-daterangepicker,num_dependents_deps.dev:0 github.com/Peter-Ba/plusTwo, github.com/Peter-Bread/CS-Programming-Module-Current, github.com/Peter-E-Lenz/compassheadinglib, +github.com/Peter-Easterbrook/podcast-generator, github.com/Peter-JanGootzen/doem-math,num_dependents_deps.dev:0 github.com/Peter-Morawski/gen-repr, github.com/Peter-Morawski/ng-logging,num_dependents_deps.dev:0 @@ -143479,7 +146842,9 @@ github.com/PeterJCLaw/ranker, github.com/PeterJCLaw/srcomp, github.com/PeterJCLaw/srcomp-cli, github.com/PeterJCLaw/srcomp-http, +github.com/PeterJCLaw/srcomp-validate-action, github.com/PeterJCLaw/tuck, +github.com/PeterJCLaw/validate-generated-files, github.com/PeterJackNaylor/dynamic_watershed, github.com/PeterJames4719/cordova-pluginTest,num_dependents_deps.dev:0 github.com/PeterKamphuis/make_moments, @@ -143761,6 +147126,7 @@ github.com/PhanDungTri/obsjs,num_dependents_deps.dev:0 github.com/PhanNN/postman-combine,num_dependents_deps.dev:0 github.com/Phanatic/Github-webook-signature-middleware,num_dependents_deps.dev:0 github.com/Phanatic/KhanAcademyJS,num_dependents_deps.dev:0 +github.com/PhanindraReddyP/hello-world-docker, github.com/PhantasWeng/onDuty.js, github.com/PhantasWeng/onDutySchedule, github.com/PhantasWeng/vue-echo,num_dependents_deps.dev:0 @@ -143808,6 +147174,7 @@ github.com/Phara0h/sky-puppy-checker-mongodb,num_dependents_deps.dev:0 github.com/Phara0h/sky-puppy-checker-template,num_dependents_deps.dev:0 github.com/Phara0h/wog,num_dependents_deps.dev:0 github.com/Phara0h/zcs,num_dependents_deps.dev:0 +github.com/PharaohCola13/fyx-autoapi, github.com/PharbersDeveloper/BP-Components,num_dependents_deps.dev:0 github.com/PharbersDeveloper/ember-cli-web-components, github.com/PharbersDeveloper/pharbers-addon-example,num_dependents_deps.dev:0 @@ -143873,6 +147240,9 @@ github.com/PhilCorcoran/combine-settings,num_dependents_deps.dev:0 github.com/PhilCorcoran/oracle-json,num_dependents_deps.dev:0 github.com/PhilCorcoran/schema-api,num_dependents_deps.dev:0 github.com/PhilDenoncourt/fractions,num_dependents_deps.dev:0 +github.com/PhilGale92/github-action-push-to-another-repository, +github.com/PhilGarb/deploy-to-vercel-action, +github.com/PhilGarb/fly-pr-review-apps, github.com/PhilGlass/auto-moshi,num_dependents_deps.dev:0 github.com/PhilInTheGaps/audio-mixer,num_dependents_deps.dev:0 github.com/PhilJay/MPAndroidChart,criticality_score:0.520720 @@ -143977,6 +147347,7 @@ github.com/PhilippRados/BirdJumpExtreme, github.com/PhilippRigoll/POSM, github.com/PhilippRigoll/osmapy, github.com/PhilippRitzberger/crud-worker,num_dependents_deps.dev:0 +github.com/PhilippS93/merge_graphql_schema-action, github.com/PhilippSalvisberg/oddgen,num_dependents_deps.dev:0 github.com/PhilippSchuette/PID_pendulum, github.com/PhilippStein/ng2-ion-range-slider,num_dependents_deps.dev:0 @@ -144135,6 +147506,7 @@ github.com/Photonios/py-momit-cool-remote, github.com/Photonios/py-sony-bravia-remote, github.com/Photonios/pyasar, github.com/PhpPlaisio/sp-log, +github.com/PhpSecureScanner/phpsecure_action, github.com/Phreakx/socialbuttons,num_dependents_deps.dev:0 github.com/Phreeman703/angular-lib-yandex-maps,num_dependents_deps.dev:0 github.com/Phris/wechat-pay,num_dependents_deps.dev:0 @@ -144148,6 +147520,7 @@ github.com/Phrohdoh/cnc-shp,num_dependents_deps.dev:0 github.com/Phrohdoh/gimp-palette-rs,num_dependents_deps.dev:0 github.com/Phrohdoh/github-webhook-data-rs,num_dependents_deps.dev:0 github.com/Phrohdoh/inth_oauth2_slack,num_dependents_deps.dev:0 +github.com/PhrozenByte/gh-workflow-immortality, github.com/PhtevenJS/Phtring,num_dependents_deps.dev:0 github.com/Phu96/foodesg,num_dependents_deps.dev:0 github.com/PhuQuy/gocodee-gallery,num_dependents_deps.dev:0 @@ -144167,6 +147540,8 @@ github.com/PhuocDoan/react-native-flatlist-picker,num_dependents_deps.dev:0 github.com/PhuongNQK/simplyws,num_dependents_deps.dev:0 github.com/PhuongNguyenETIT/react-native-smartconfig-p,num_dependents_deps.dev:0 github.com/PhuongTMR/pyinstrument_patch, +github.com/PhutureCorp/container-ssh-agent, +github.com/PhutureCorp/ecr-login-token, github.com/Phwoop/uhm,num_dependents_deps.dev:0 github.com/Phxntxm/AniTracker, github.com/Phxntxm/aniparser, @@ -144224,6 +147599,7 @@ github.com/PiNetwork-js/mrm-preset,num_dependents_deps.dev:0 github.com/PiNetwork-js/nodepi,num_dependents_deps.dev:0 github.com/PiNetwork-js/sdk,num_dependents_deps.dev:0 github.com/PiRK/ecashaddress, +github.com/PiSaucer/upload-to-release, github.com/PiSugar/pisugar-server-py, github.com/PiSupply/PaPiRus,criticality_score:0.328030 github.com/PiSupply/PiJuice,criticality_score:0.453640 @@ -144365,6 +147741,7 @@ github.com/Pierre-Sassoulas/django-zxcvbn-password-validator, github.com/Pierre-Sassoulas/remove-empty-comment, github.com/Pierre-Sassoulas/shadok, github.com/PierreAlphonse/pyDataVis, +github.com/PierreAndreis/do-registry-prune-tags, github.com/PierreBdR/PyQt-fit, github.com/PierreBerger/metromobilite, github.com/PierreBesson/generator-jhipster-banner,num_dependents_deps.dev:0 @@ -144389,6 +147766,7 @@ github.com/PierrePaul/django-otp-notify, github.com/PierreQuentel/bihan, github.com/PierreQuentel/httpcompressionserver, github.com/PierreQuentel/patrom, +github.com/PierreRAFFA/cancel-previous-runs-action, github.com/PierreRAFFA/node-access-control,num_dependents_deps.dev:0 github.com/PierreRAFFA/promise-series-advanced,num_dependents_deps.dev:0 github.com/PierreRAFFA/wait-until,num_dependents_deps.dev:0 @@ -144405,6 +147783,7 @@ github.com/PierreRaybaut/guiqwt, github.com/PierreRust/apigpio, github.com/PierreSelim/gzinfo, github.com/PierreThiollent/Personal-NPM-card,num_dependents_deps.dev:0 +github.com/PierreVH2/azure-containergroup-deploy, github.com/PierreWeets/piwicard,num_dependents_deps.dev:0 github.com/PierreYoltic/npm-random-msg-pysv, github.com/PierreYvesParis/google-map-react,num_dependents_deps.dev:0 @@ -144436,6 +147815,7 @@ github.com/PieterVanPoyer/fullstack-dropzone,num_dependents_deps.dev:0 github.com/Pieterv24/lit-particles, github.com/Pietrassyk/tpclean, github.com/Pietro303HD/wordcalc, +github.com/PietroLubini/actions-mplabx-xc16, github.com/PietroSharks/xlsx-style-formula, github.com/Pietroiu/fp, github.com/Pietrum/BaseMQ,num_dependents_deps.dev:0 @@ -144572,6 +147952,7 @@ github.com/Pines-Cheng/component-inspector,num_dependents_deps.dev:0 github.com/Pines-Cheng/devtools-backend, github.com/Pines-Cheng/gm-theme,num_dependents_deps.dev:0 github.com/Ping-P0ng/ADBox, +github.com/PingChunChung/actions-discord-notifier, github.com/PingPlusPlus/pingpp-html5,num_dependents_deps.dev:0 github.com/PingPlusPlus/pingpp-js,num_dependents_deps.dev:0 github.com/PingPlusPlus/pingpp-nodejs,num_dependents_deps.dev:0 @@ -144584,6 +147965,7 @@ github.com/PingYenLin/ECGanalysis, github.com/Pingbits/emojikeyboard,num_dependents_deps.dev:0 github.com/Pingendo/pi-template, github.com/Pingflow/webservice-mock,num_dependents_deps.dev:0 +github.com/Pinghigh/pkgbuild-action, github.com/PinghuaZhuang/lib,num_dependents_deps.dev:0 github.com/PinghuaZhuang/zstark,num_dependents_deps.dev:0 github.com/Pingid/schematizr,num_dependents_deps.dev:0 @@ -144800,6 +148182,7 @@ github.com/PistonDevelopers/wavefront_obj,num_dependents_deps.dev:47 github.com/PistonY/torch-toolbox, github.com/Pistos/diakonos,num_dependents_deps.dev:0 github.com/Pistos/m4dbi,num_dependents_deps.dev:0 +github.com/Piszmog/next-version, github.com/Pit896/fallguys-api-fixed,num_dependents_deps.dev:0 github.com/Pita/reco,num_dependents_deps.dev:0 github.com/Pitasi/py-whatismymovie, @@ -145026,6 +148409,10 @@ github.com/Pkthunder/aws-emailer,num_dependents_deps.dev:0 github.com/Pl4gue/Hello-World,num_dependents_deps.dev:0 github.com/Pl4gue/fetch-btc,num_dependents_deps.dev:0 github.com/Pl4nty/Quora.js,num_dependents_deps.dev:0 +github.com/Plabick/ACR-Container-Purge-Action, +github.com/Plabick/Azure-CLI-Wrapper-Action, +github.com/Plabick/GitHub-Secret-Extractor, +github.com/Plabick/Remote-Time-Action, github.com/Place1/homebridge-tradfri-gateway, github.com/Place1/node-gir,num_dependents_deps.dev:0 github.com/Place1/parcel-plugin-typed-css-modules,num_dependents_deps.dev:0 @@ -145035,10 +148422,13 @@ github.com/PlaceDevs/place-scraper, github.com/PlaceMe-SAS/ngx-geo-api-gouv,num_dependents_deps.dev:0 github.com/PlaceMe-SAS/single-spa-angular-cli,num_dependents_deps.dev:0 github.com/PlaceOS/composer,num_dependents_deps.dev:0 +github.com/PlaceReporter99/auto-fish-action, +github.com/PlaceReporter99/repo-rm-clean, github.com/PlaceholderAPI/PlaceholderAPI,criticality_score:0.455830 github.com/Placekey/placekey-py, github.com/PlacewiseMedia/jsontest, github.com/Placidina/hsuite, +github.com/Plagiatus/RCON-Action, github.com/PlaidCloud/PyUpdater-gcs-Plugin, github.com/PlaidCloud/docker-entrypoint, github.com/PlaidCloud/sqlalchemy-greenplum, @@ -145141,6 +148531,9 @@ github.com/PlasmaPower/nano-vanity,num_dependents_deps.dev:0 github.com/PlasmaPower/railroad,num_dependents_deps.dev:0 github.com/PlasmaPy/PlasmaPy,criticality_score:0.517180 github.com/PlasmaRobotics2403/TBApi, +github.com/PlasmoHQ/bpp, +github.com/PlasmoHQ/download-release-asset, +github.com/PlasmoHQ/soft-secret, github.com/Plastic-Metal/pyLabOn, github.com/PlasticPanda/li.i18n,num_dependents_deps.dev:0 github.com/Plasticcaz/timed_cache,num_dependents_deps.dev:0 @@ -145156,6 +148549,7 @@ github.com/Platane/react-propsTransition,num_dependents_deps.dev:0 github.com/Platane/react-simplest-typeahead,num_dependents_deps.dev:0 github.com/Platane/refinery,num_dependents_deps.dev:0 github.com/Platane/refinery-tools, +github.com/Platane/snk, github.com/Platekun/bare-ui, github.com/Platekun/bz-cli,num_dependents_deps.dev:0 github.com/Platekun/bz-define,num_dependents_deps.dev:0 @@ -145231,6 +148625,7 @@ github.com/PlayNetwork/spotifier, github.com/PlayOnLinux/POL-POM-4,criticality_score:0.392980 github.com/PlayPickUp/sluggy,num_dependents_deps.dev:0 github.com/PlayQ/d4s,num_dependents_deps.dev:211 +github.com/PlayWithGithubActions/log-ai-analysis, github.com/PlayeMatthieu/html-sass-boilerplate,num_dependents_deps.dev:0 github.com/Player1os/javascript-support,num_dependents_deps.dev:0 github.com/Player1os/js-base-error, @@ -145370,6 +148765,7 @@ github.com/PlugNative-Ionic/plugnative-ionicv2-sidemenu,num_dependents_deps.dev: github.com/PlugNative-NodeJS/plugnative-nodejs-jwtauthserver,num_dependents_deps.dev:0 github.com/PlugNative/plugnative-cordova-sms,num_dependents_deps.dev:0 github.com/PlugaDotCo/pluga-cli,num_dependents_deps.dev:0 +github.com/Plugily-Projects/version-bump-action, github.com/Plugin-contrib/jest-liveserver, github.com/PluginFinchy/FigmaIcons,num_dependents_deps.dev:0 github.com/PluginIO/nano-typescript,num_dependents_deps.dev:0 @@ -145381,6 +148777,7 @@ github.com/Plume-org/canapi-stdweb,num_dependents_deps.dev:0 github.com/Plume-org/gettext-macros,num_dependents_deps.dev:0 github.com/Plume-org/rocket_i18n,num_dependents_deps.dev:0 github.com/Plume-org/webfinger,num_dependents_deps.dev:0 +github.com/Pluralith/actions, github.com/Plurilogic/testPlugin,num_dependents_deps.dev:0 github.com/Pluritech/dialog-service,num_dependents_deps.dev:0 github.com/Pluritech/ion-currencymask,num_dependents_deps.dev:0 @@ -145540,6 +148937,7 @@ github.com/Pointsz/haxball.py, github.com/Poio-NLP/poio-lib, github.com/Poio-NLP/pressagio, github.com/PoisonAlien/maftools,criticality_score:0.490350 +github.com/PoisonousJohn/upload-to-kobiton, github.com/PoisonousMilkPowder/vue-pdf,num_dependents_deps.dev:0 github.com/Poissonfish/GRID, github.com/PojavLauncherTeam/PojavLauncher,criticality_score:0.540400 @@ -145610,6 +149008,7 @@ github.com/PolarizedIons/eskom-loadshedding-api,num_dependents_deps.dev:0 github.com/PolarsBear/Discord-Message-Components, github.com/PolarsBear/parseaia, github.com/Pole458/pokemon-tcg-sdk-python-async, +github.com/Polectron/action-gh-release, github.com/Polen-Donation/PolenCharityDonationAPI,num_dependents_deps.dev:0 github.com/Polen-Donation/polen-charity-donation-api, github.com/Poletay/js-algorithms,num_dependents_deps.dev:0 @@ -145640,6 +149039,7 @@ github.com/Polidoro-root/reactx-components,num_dependents_deps.dev:0 github.com/Polifev/gallimimus,num_dependents_deps.dev:0 github.com/Polight/lego,num_dependents_deps.dev:0 github.com/PolinaYud/Final-Task, +github.com/PolitCubes/github-openvpn-connect-windows-action, github.com/Polite-AI/node-personality-helper, github.com/PoliteJS/cody-cli,num_dependents_deps.dev:0 github.com/PoliteJS/grunt-workspace,num_dependents_deps.dev:0 @@ -145674,6 +149074,7 @@ github.com/Polsaker/wheezy_extractor, github.com/Polsulpicien/ObserverAPI, github.com/Poltergeist/pr-template-dcos-ui,num_dependents_deps.dev:0 github.com/Poltergeist/tickr,num_dependents_deps.dev:0 +github.com/Poltio/action-release, github.com/PoluektPolina/project-lvl1-s412,num_dependents_deps.dev:0 github.com/PoluosmakAndrew/generator-lizard-engine,num_dependents_deps.dev:0 github.com/PoluosmakAndrew/lizard-engine,num_dependents_deps.dev:0 @@ -146212,6 +149613,8 @@ github.com/PondThanapon/Pangpond_Hello,num_dependents_deps.dev:0 github.com/PondWader/Cubed-API,num_dependents_deps.dev:0 github.com/PondWader/skript-parser, github.com/PonderfulWoop/YEETER, +github.com/Pondidum/Flagon, +github.com/Pondidum/cas, github.com/Pondidum/dotnet-solution,num_dependents_deps.dev:0 github.com/Pondorasti/remark-img-links,num_dependents_deps.dev:0 github.com/Pong420/nestjs-ts-transform-paths, @@ -146240,6 +149643,8 @@ github.com/Poogles/limitediterables, github.com/Pooja444/leetcode-profile-lib,num_dependents_deps.dev:0 github.com/PoojaAg18/generator-drupal-module-theme,num_dependents_deps.dev:0 github.com/PoojaGuleria-git/Nodejs,num_dependents_deps.dev:0 +github.com/PoojaMutadak504/DockerAction, +github.com/PoojeshShetty/push-json-to-env, github.com/PoojithaGowthaman/knn_integration, github.com/PoolDAO/pooldao-js, github.com/Pooler22/Activiti-api,num_dependents_deps.dev:0 @@ -146253,8 +149658,10 @@ github.com/PoorBillionaire/Windows-Prefetch-Parser, github.com/PoorBillionaire/linedrive, github.com/PoorQB/alexsecond,num_dependents_deps.dev:0 github.com/Pooria-H/upperBox,num_dependents_deps.dev:0 +github.com/PoorlyDefinedBehaviour/nyc-reporter, github.com/PoorlyDefinedBehaviour/process-env-loader, github.com/PoorlyDefinedBehaviour/vscode-cpp-cli,num_dependents_deps.dev:0 +github.com/Poorva17/create-pr-action, github.com/Poorvak/analyzers, github.com/PootisPenserHere/template_string_generator, github.com/Pooya-Y/twitter-webscraper,num_dependents_deps.dev:0 @@ -146304,6 +149711,7 @@ github.com/Poppin-Tech/mr-plow, github.com/Poppy-flower/insert-data-2-html-plugin,num_dependents_deps.dev:0 github.com/PoppyPop/aioiregul, github.com/PopsicleKnight/generator-dyn365,num_dependents_deps.dev:0 +github.com/Popsiclestick/gist-sync-action, github.com/Popsoy-Enterprise/FrostMail,num_dependents_deps.dev:0 github.com/Poptato/common-raml, github.com/PopulateTools/dc-population-pyramid, @@ -146313,6 +149721,7 @@ github.com/PorUnaCabeza/string-to-react,num_dependents_deps.dev:0 github.com/PoracleJS/Pgo-webhook-validator,num_dependents_deps.dev:0 github.com/Porchetta-Industries/pyMalleableC2, github.com/Porinn/react-datetime-slider-picker,num_dependents_deps.dev:0 +github.com/Poriyaalar/katalon-studio-github-action, github.com/PorkShoulderHolder/ericsbandnames, github.com/PorkShoulderHolder/gexdat, github.com/Porkbutts/lendingclub-python, @@ -146325,6 +149734,8 @@ github.com/PoroWCI/react-place-autocomplete,num_dependents_deps.dev:0 github.com/Porso7/simple-exist,num_dependents_deps.dev:0 github.com/PortBlueSky/jest-nock,num_dependents_deps.dev:0 github.com/PortBlueSky/thread-puddle, +github.com/PortSwigger/ci-driven-scan-github-action, +github.com/PortSwigger/dastardly-github-action, github.com/PortSwigger/param-miner,criticality_score:0.378990 github.com/PortSwigger/turbo-intruder,criticality_score:0.344980 github.com/Porta/poxy_client,num_dependents_deps.dev:0 @@ -146379,14 +149790,17 @@ github.com/Positive2022/discord-moderator-light,num_dependents_deps.dev:0 github.com/PositroniumSpectroscopy/positronium, github.com/PositroniumSpectroscopy/sspals, github.com/PoslavskySV/rings,num_dependents_deps.dev:0 +github.com/Poss111/discord-hook-action, github.com/Possardt/espn-ff-api,num_dependents_deps.dev:0 github.com/PostCrafter/league-wrapper,num_dependents_deps.dev:0 +github.com/PostHog/check-package-version, github.com/PostHog/helloworldplugin,num_dependents_deps.dev:0 github.com/PostHog/node-clickhouse,num_dependents_deps.dev:0 github.com/PostHog/piscina, github.com/PostHog/plugin-contrib,num_dependents_deps.dev:0 github.com/PostHog/plugin-scaffold,num_dependents_deps.dev:0 github.com/PostHog/posthog,criticality_score:0.583890 +github.com/PostHog/posthog-annotate-merges-github-action, github.com/PostHog/posthog-currency-normalization-plugin,num_dependents_deps.dev:0 github.com/PostHog/posthog-js,num_dependents_deps.dev:4 github.com/PostHog/posthog-maxmind-plugin,num_dependents_deps.dev:0 @@ -146480,6 +149894,7 @@ github.com/PowerBroker2/pyPilot, github.com/PowerBroker2/pySerialTransfer, github.com/PowerBroker2/rfd900x, github.com/PowerDNS/pdns,criticality_score:0.699160 +github.com/PowerDocs-net/deploy, github.com/PowerJob/PowerJob,criticality_score:0.411160 github.com/PowerLZY/Bold-Falcon, github.com/PowerNukkit/Bedrock-LevelDB,num_dependents_deps.dev:6 @@ -146532,6 +149947,7 @@ github.com/Poyoman39/node-lefff,num_dependents_deps.dev:0 github.com/Poyoman39/react-key-from-object,num_dependents_deps.dev:0 github.com/Pozi-js/Pozi,num_dependents_deps.dev:0 github.com/Pozi-js/Pozi-App,num_dependents_deps.dev:0 +github.com/Pposong-Hantaihe/dry-code, github.com/Pptongo/linear-regression-js,num_dependents_deps.dev:0 github.com/Pr0Ger/PyAPNs2,criticality_score:0.406540 github.com/Pr0methean/BetterRandom,num_dependents_deps.dev:0 @@ -146607,6 +150023,8 @@ github.com/PrairieLearn/zyspawn,num_dependents_deps.dev:0 github.com/PrairieOps/bandwidth-hero-core,num_dependents_deps.dev:0 github.com/Praisebetoscience/dockerhub-webhook, github.com/Prajeeths18/Basic_Sudoku_Solver, +github.com/PrajjawalBanati/Build_Management_Using_Maven, +github.com/PrajjawalBanati/Python-actions, github.com/PrajjwalDatir/lyrics-monarch-api,num_dependents_deps.dev:0 github.com/Prakash2403/Djognito, github.com/Prakshal-Jain/React-Video-Editor,num_dependents_deps.dev:0 @@ -146652,6 +150070,7 @@ github.com/PrashamTrivedi/SharedPreferenceInspector,num_dependents_deps.dev:0 github.com/PrashantLabh/assignment-universal-form-renderer,num_dependents_deps.dev:0 github.com/PrashantMohta/beholdJS,num_dependents_deps.dev:0 github.com/PrashantP9070/htmllogger, +github.com/PrashantRaj18198/migrator-conflicts, github.com/PrashantRaj18198/typeql, github.com/Prashanth-Nelli/build-friend,num_dependents_deps.dev:0 github.com/Prashanth-Nelli/conditional-image-loader,num_dependents_deps.dev:0 @@ -146674,8 +150093,10 @@ github.com/Prasundas99/Express-Server,num_dependents_deps.dev:0 github.com/Pratap22/react-native-radio-button,num_dependents_deps.dev:0 github.com/Prateek23n/PyImageConverter, github.com/PrateekKumarPython/jupyter-timetracker, +github.com/Pratham31/AdmireME, github.com/PrathamBapat/hello_name, github.com/PrathamBapat/mypackagebapat, +github.com/Prathamesh-B/chess-stats-readme, github.com/Prathamesh-B/inford, github.com/PrathameshPatki/Dynamuix-client,num_dependents_deps.dev:0 github.com/Pratheeshps/FirstNodePackage,num_dependents_deps.dev:0 @@ -146736,6 +150157,9 @@ github.com/PrebenHesvik/plotly_chart_builder, github.com/Precanto/py-netsuite-sdk, github.com/Prechan/Leaflet.Resizer,num_dependents_deps.dev:0 github.com/PreciousWarrior/wiz.js,num_dependents_deps.dev:0 +github.com/Precise-Finance/azure-devops-npm-action, +github.com/Precise-Finance/gpt-review, +github.com/Precise-Finance/slack-approval, github.com/Precise-software/ckeditor5-footnote,num_dependents_deps.dev:0 github.com/PreciselyData/PreciselyAPIsSDK-Python, github.com/PrecisionHawk/model-api,num_dependents_deps.dev:0 @@ -146800,6 +150224,7 @@ github.com/Preetam2114/Automail, github.com/PreetamJinka/atto,num_dependents_deps.dev:0 github.com/PreetiSarojAcharya/MyBootstrap4Template,num_dependents_deps.dev:0 github.com/Preetirani123/lotide,num_dependents_deps.dev:0 +github.com/PrefectHQ/actions-prefect-deploy, github.com/PrefectHQ/prefect,criticality_score:0.685140 github.com/PrefectHQ/prefect-aws, github.com/PrefectHQ/prefect-azure, @@ -147240,12 +150665,14 @@ github.com/ProTip/ssh2-async,num_dependents_deps.dev:0 github.com/ProWebCraft/less.js, github.com/ProYT303/trollDB, github.com/ProZoom/ProPythonUtils, +github.com/ProZsolt/rubocop-github-action, github.com/ProbablePrime/keyboardz,num_dependents_deps.dev:0 github.com/ProbablePrime/wsabi-client-bacon,num_dependents_deps.dev:0 github.com/ProbablyAimee/midbot-wikipedia,num_dependents_deps.dev:0 github.com/ProbeDream/lulu-ui,num_dependents_deps.dev:0 github.com/ProbedJS/taskRunner,num_dependents_deps.dev:0 github.com/ProbedJS/work-pool, +github.com/Probely/probely-github-action, github.com/Problematic/Gonfalon.js,num_dependents_deps.dev:2 github.com/Problematic/helix-loop,num_dependents_deps.dev:0 github.com/ProboCI/eslint-config-probo,num_dependents_deps.dev:0 @@ -147277,6 +150704,8 @@ github.com/Procode2/monorepo-test, github.com/Procot/webOSTV-as-promised,num_dependents_deps.dev:0 github.com/Procrastinate/procrastinate.js,num_dependents_deps.dev:0 github.com/ProctorU/hootstrap,num_dependents_deps.dev:0 +github.com/ProcureAi/aws-ssm-secrets-multiple, +github.com/ProcureAi/hasura-reload-remote-schema, github.com/ProcursusTeam/Procursus,criticality_score:0.396850 github.com/ProdPerfect/django-prodperfect, github.com/ProdPerfect/monday, @@ -147325,6 +150754,7 @@ github.com/ProdioDesignWorks/stripe-connector-prodio,num_dependents_deps.dev:0 github.com/ProdioDesignWorks/stripe-react-sdk-prodio,num_dependents_deps.dev:0 github.com/ProdioDesignWorks/ticketing-module-prodio,num_dependents_deps.dev:0 github.com/ProdioDesignWorks/tsys-connector-prodio, +github.com/Produce8/actions-aws-ssm-params-to-env, github.com/Product-Foundry/business-elements-angular,num_dependents_deps.dev:0 github.com/Product-Foundry/business-elements-client-js,num_dependents_deps.dev:0 github.com/Product-Live/Singularity,num_dependents_deps.dev:0 @@ -147378,6 +150808,7 @@ github.com/Profesor08/media,num_dependents_deps.dev:0 github.com/Profesor08/responsive-slider,num_dependents_deps.dev:0 github.com/Profesor08/sticky,num_dependents_deps.dev:0 github.com/ProfesseurIssou/Easy-QLearning, +github.com/ProfessionalWiki/setup-mediawiki, github.com/Professor-Oz/impulse-mongo,num_dependents_deps.dev:0 github.com/ProfessorDev/DesignSystem,num_dependents_deps.dev:0 github.com/ProfessorEugene/PortReserve,num_dependents_deps.dev:0 @@ -147415,6 +150846,7 @@ github.com/ProgerXP/FileDrop,num_dependents_deps.dev:0 github.com/ProgerXP/Sqimitive,num_dependents_deps.dev:0 github.com/Progether/JAdventure,criticality_score:0.388030 github.com/ProgettoCompany/Progetto_One_Pin_Keypad_Python_Package, +github.com/Progi1984/setup-keycloak, github.com/Progi1984/sporticons,num_dependents_deps.dev:0 github.com/Program-AR/ember-blockly, github.com/Program-AR/pilas-bloques-blocks,num_dependents_deps.dev:0 @@ -147443,6 +150875,7 @@ github.com/Programmin-in-Python/vectorise, github.com/Programming-With-Love/dd1024,num_dependents_deps.dev:0 github.com/ProgrammingBlockchain/ProgrammingBlockchain,criticality_score:0.311300 github.com/ProgrammingError/sipak-pypi, +github.com/ProgrammingJoe/bastila-action, github.com/ProgrammingLanguageLeader/dictionary-profanity-filter, github.com/ProgrammingMyLife/statstok, github.com/ProgrammingNerdGit/print_vis, @@ -147455,6 +150888,7 @@ github.com/Project-Ann/Entity-Parser,num_dependents_deps.dev:0 github.com/Project-Cepi/github-download-directory,num_dependents_deps.dev:0 github.com/Project-DC/pyevolve, github.com/Project-EPIC/crowdrouter, +github.com/Project-Env/project-env-github-action, github.com/Project-Fluid/fluidreleaser, github.com/Project-Groceries/tailwind-config,num_dependents_deps.dev:0 github.com/Project-Hud/hud-widget,num_dependents_deps.dev:0 @@ -147480,12 +150914,16 @@ github.com/Project-Platypus/Rhodium, github.com/Project-SILPA/inexactsearch, github.com/Project-SILPA/soundex, github.com/Project-Simple/valueToText,num_dependents_deps.dev:0 +github.com/Project-StarDust/get-spatial-cli-action, +github.com/Project-Testing-H1/test-actions-marketplace, github.com/Project-Wartemis/package-typescript,num_dependents_deps.dev:0 github.com/Project-eTe/discord-oauth,num_dependents_deps.dev:0 github.com/Project5E/react-native-awesome-medialib,num_dependents_deps.dev:0 github.com/Project5E/react-native-awesome-navigation,num_dependents_deps.dev:0 github.com/Project5E/react-native-navigation-5e,num_dependents_deps.dev:0 github.com/ProjectAcopalyse/device, +github.com/ProjectAliceDev/renpy-build-action, +github.com/ProjectAliceDev/renpy-lint-action, github.com/ProjectBabbler/bird-list,num_dependents_deps.dev:0 github.com/ProjectBabbler/bird-locations,num_dependents_deps.dev:0 github.com/ProjectBabbler/ebird,num_dependents_deps.dev:0 @@ -147536,6 +150974,9 @@ github.com/ProjectPyRhO/PyRhO, github.com/ProjectPythia/pythia-datasets, github.com/ProjectPythia/sphinx-pythia-theme, github.com/ProjectQ-Framework/ProjectQ,criticality_score:0.386330 +github.com/ProjectSIRA/download-sira-stripped, +github.com/ProjectSavanna/setup-smackage, +github.com/ProjectSavanna/setup-sml, github.com/ProjectSeptemberInc/gl-react,num_dependents_deps.dev:0 github.com/ProjectSeptemberInc/gl-react-core,num_dependents_deps.dev:0 github.com/ProjectSeptemberInc/gl-react-dom,num_dependents_deps.dev:0 @@ -147597,8 +151038,11 @@ github.com/Promises/JassToTs,num_dependents_deps.dev:6 github.com/Promo/just-carousel, github.com/Promo/scrollissimo,num_dependents_deps.dev:0 github.com/Promo/wheel-indicator,num_dependents_deps.dev:0 +github.com/Promptly-Technologies-LLC/rss-fetch-action, +github.com/Promptly-Technologies-LLC/setup-dir-diary, github.com/Promptus/geokit-ar,num_dependents_deps.dev:0 github.com/Promptus/ladda-rails,num_dependents_deps.dev:0 +github.com/PromyLOPh/guix-install-action, github.com/PromyLOPh/pianobar,criticality_score:0.468300 github.com/Pronovix/unicompile,num_dependents_deps.dev:0 github.com/Pronoy999/ValidatorsAndGenerators,num_dependents_deps.dev:0 @@ -147609,6 +151053,8 @@ github.com/ProofShow/PCCAVerifier,num_dependents_deps.dev:0 github.com/Prooffreader/chorogrid, github.com/Prooffreader/pyprooff, github.com/Proofme-id/ProofMe-RTC,num_dependents_deps.dev:0 +github.com/PropFuel/laravel-forge-deploy-action, +github.com/PropFuel/planetscale-migrate-deploy-action, github.com/Propaganistas/Laravel-Phone,criticality_score:0.450750 github.com/PropelPLM/jsforce,num_dependents_deps.dev:0 github.com/PropellerAero/cesium-elevation-gradient,num_dependents_deps.dev:0 @@ -147653,6 +151099,7 @@ github.com/PropertyUX/nubot, github.com/PropertyUX/nubot-connect-mongo, github.com/PropertyUX/nubot-playbook,num_dependents_deps.dev:0 github.com/PropertyUX/rocketchat-commandwords,num_dependents_deps.dev:0 +github.com/Propertyfinder/github-action-jira-release-notes, github.com/ProphetDaniel/drizzle-react-components-plus,num_dependents_deps.dev:0 github.com/ProphetDaniel/github-release-info-downloader, github.com/ProphetDaniel/remixd, @@ -147664,6 +151111,7 @@ github.com/Prophets/dameblanche,num_dependents_deps.dev:0 github.com/Prophets/eslint-config-prophets,num_dependents_deps.dev:0 github.com/Prophets/stylelint-config-prophets,num_dependents_deps.dev:0 github.com/PropreCity/base64-u8array-arraybuffer,num_dependents_deps.dev:0 +github.com/Propromp/nexus-release, github.com/PropsFantasy/retrieval,num_dependents_deps.dev:0 github.com/ProrokWielki/graphic_lib, github.com/ProrokWielki/py_buildsystem, @@ -147755,6 +151203,7 @@ github.com/Proto-Garage/highoutput-library,num_dependents_deps.dev:0 github.com/Proto-Garage/logbin.io-client,num_dependents_deps.dev:0 github.com/Proto-Garage/onewallet-client-node,num_dependents_deps.dev:0 github.com/Proto133/writemeREADME,num_dependents_deps.dev:0 +github.com/ProtoByter/run-on-arch-action, github.com/ProtoCh4os/cryfs-cli,num_dependents_deps.dev:0 github.com/ProtoDef-io/node-protodef,num_dependents_deps.dev:234 github.com/ProtoDef-io/node-protodef-validator,num_dependents_deps.dev:268 @@ -147841,6 +151290,7 @@ github.com/Proxy-wasted-time-counter/multithread-it, github.com/Proxy-wasted-time-counter/worker-as-a-promise,num_dependents_deps.dev:0 github.com/ProxyBuilder/proxybuilder,num_dependents_deps.dev:16 github.com/ProxyKit/ProxyKit,criticality_score:0.333140 +github.com/ProxyQB/minio-cache, github.com/Proxymal/Vegtex, github.com/ProxymanApp/Proxyman,criticality_score:0.443200 github.com/Proxymiity/MangaDex.py, @@ -147945,6 +151395,7 @@ github.com/Psidium/ui5-compatible-webpack-build, github.com/Psiphon-Labs/psiphon-tunnel-core,"criticality_score:0.478450,num_dependents_deps.dev:6" github.com/Psixodelik/project-lvl1-s474,num_dependents_deps.dev:0 github.com/PsrSigSim/PsrSigSim, +github.com/PssbleTrngle/VersionManagment, github.com/Pstumpf2/lodown,num_dependents_deps.dev:0 github.com/Psuedohim/l298n, github.com/Psvensso/dotnetcore-webpack-typescript-buildtool,num_dependents_deps.dev:0 @@ -147987,6 +151438,7 @@ github.com/PsychoLlama/mytosis,num_dependents_deps.dev:0 github.com/PsychoLlama/panic-manager,num_dependents_deps.dev:0 github.com/PsychoLlama/reactionable,num_dependents_deps.dev:0 github.com/PsychoLlama/retreon,num_dependents_deps.dev:0 +github.com/PsychoLlama/vader-action, github.com/PsychoPflanze/sockery,num_dependents_deps.dev:0 github.com/PsychoinformaticsLab/pliers,criticality_score:0.462230 github.com/Psychopoulet/angularjs-lazyloading,num_dependents_deps.dev:0 @@ -148057,6 +151509,7 @@ github.com/PuRelic/proxy-commons,num_dependents_deps.dev:0 github.com/PuShaoWei/peach,num_dependents_deps.dev:0 github.com/PuSuEngine/pypusu, github.com/PuYart/iconfont-creator,num_dependents_deps.dev:0 +github.com/PuZZleDucK/4-Letter-Fails, github.com/PubInv/TriadBalance,num_dependents_deps.dev:0 github.com/PublicFess/angular-sails-models,num_dependents_deps.dev:0 github.com/PublicFess/verstack, @@ -148080,6 +151533,8 @@ github.com/PublicisSapient/cra-template-accelerate,num_dependents_deps.dev:0 github.com/PublicisSapient/javascript,num_dependents_deps.dev:0 github.com/PublicisSapientParis/vue-cli-plugin-ssr,num_dependents_deps.dev:0 github.com/PublisherName/nepalithar, +github.com/Pubnic/sls-deploy-microservices, +github.com/Pubnic/sync-doppler-aws-lambda-action, github.com/Pucek9/log4js-protractor-appender-file,num_dependents_deps.dev:0 github.com/Pucinelli/mktree, github.com/PuddletownDesign/csv-utilities,num_dependents_deps.dev:0 @@ -148096,6 +151551,7 @@ github.com/Puemos/sails-hook-sequelize-blueprints,num_dependents_deps.dev:0 github.com/Puemos/triangulation,num_dependents_deps.dev:0 github.com/Puemos/window-scroll-to-animate,num_dependents_deps.dev:0 github.com/Puemos/window-scroller, +github.com/PuerNya/sign-android-release, github.com/PuerkitoBio/advice,num_dependents_deps.dev:0 github.com/PuerkitoBio/goquery,"criticality_score:0.467020,num_dependents_deps.dev:3335" github.com/PuerkitoBio/implement.js,num_dependents_deps.dev:0 @@ -148197,6 +151653,7 @@ github.com/Pupix/smart-queue,num_dependents_deps.dev:0 github.com/Puppets/puppets,num_dependents_deps.dev:0 github.com/Puppo/typescript-library-project,num_dependents_deps.dev:0 github.com/Puppy-Li/Wonderland,num_dependents_deps.dev:0 +github.com/PurGPT/AutoPR, github.com/PurdueCAM2Project/CameraDatabaseClient, github.com/Pure-D/code-d-api,num_dependents_deps.dev:0 github.com/Pure-Function/mock-server, @@ -148256,9 +151713,11 @@ github.com/PurplShip/purplship, github.com/PurplShip/purplship-carriers, github.com/PurplShip/purplship-node,num_dependents_deps.dev:0 github.com/PurplShip/py-soap, +github.com/Purple-Rocket-Technologies/dokku-deploy-go-lang, github.com/Purple-Towel/lotide,num_dependents_deps.dev:0 github.com/Purple-Unicorns/DynamoDbBackUp,num_dependents_deps.dev:0 github.com/PurpleAspen/djdevcamp-js-footer,num_dependents_deps.dev:0 +github.com/PurpleBooth/gfmfmt-action, github.com/PurpleCoding/spectre-css,num_dependents_deps.dev:0 github.com/PurpleDoll01/First-NPM-package,num_dependents_deps.dev:0 github.com/PurpleGizmo/chartist-plugin-barlabels,num_dependents_deps.dev:0 @@ -148287,6 +151746,7 @@ github.com/PuryginKE/dtoGenerator,num_dependents_deps.dev:0 github.com/PushAMP/strictdict3, github.com/PushAMP/tornado-route-simple, github.com/PushAppsPlatform/cordova-pushapps-sdk,num_dependents_deps.dev:0 +github.com/PushLabsHQ/pushpreview-action, github.com/PushProtocol/design2, github.com/PushProtocol/pushswap-uikit,num_dependents_deps.dev:0 github.com/PushProtocol/sdk,num_dependents_deps.dev:0 @@ -148367,6 +151827,10 @@ github.com/PvdBerg1998/bitty,num_dependents_deps.dev:0 github.com/PvtHaggard/pydarksky, github.com/PwCUK-CTO/rtfsig, github.com/PwWuYan/week_01,num_dependents_deps.dev:0 +github.com/Pwd9000-ML/azure-vm-password-rotate, +github.com/Pwd9000-ML/terraform-azurerm-apply, +github.com/Pwd9000-ML/terraform-azurerm-plan, +github.com/Pwd9000-ML/terraform-azurerm-tests, github.com/Pwn2Ninja/ColorSky, github.com/Pwntus/cf-xviz,num_dependents_deps.dev:0 github.com/Pwntus/mic-sdk-js,num_dependents_deps.dev:0 @@ -148378,6 +151842,7 @@ github.com/PxyUp/Revact,num_dependents_deps.dev:0 github.com/PxyUp/di-decorator,num_dependents_deps.dev:0 github.com/PxyUp/lanurite,num_dependents_deps.dev:0 github.com/PxyUp/ng-virtual-table,num_dependents_deps.dev:0 +github.com/PxyUp/protoc-actions, github.com/PxyUp/rxjs-min-max,num_dependents_deps.dev:0 github.com/PxyUp/test,num_dependents_deps.dev:0 github.com/PxyUp/uri-parse-lib,num_dependents_deps.dev:0 @@ -148468,6 +151933,7 @@ github.com/PyMySQL/myloginpath, github.com/PyMySQL/mysqlclient,criticality_score:0.548030 github.com/PyMySQL/mysqlclient-python,Google github.com/PyO3/maturin,"criticality_score:0.539550,num_dependents_deps.dev:0" +github.com/PyO3/maturin-action, github.com/PyO3/pyo3,"criticality_score:0.652650,num_dependents_deps.dev:553" github.com/PyO3/rust-numpy,criticality_score:0.425200 github.com/PyO3/setuptools-rust,criticality_score:0.454670 @@ -148728,6 +152194,7 @@ github.com/Q42/json-typescript-decoder,num_dependents_deps.dev:0 github.com/Q42/lesswatch, github.com/Q42/lighthouse-plugin-social-sharing,num_dependents_deps.dev:0 github.com/Q42/openapi-typescript-validator,num_dependents_deps.dev:0 +github.com/Q42/setup-meteor, github.com/Q42/tslint-react-native-a11y,num_dependents_deps.dev:0 github.com/Q42/vue-dotnet-validator,num_dependents_deps.dev:0 github.com/Q42/vue-multi-loader,num_dependents_deps.dev:0 @@ -148736,6 +152203,8 @@ github.com/Q4n/mypwn, github.com/Q4n/mywinpwn, github.com/Q956164483/qiniu-qupload,num_dependents_deps.dev:0 github.com/QACore/Selenium-Testing-Toolbox,num_dependents_deps.dev:0 +github.com/QAInsights/PerfAction, +github.com/QAInsights/ddosify-action, github.com/QAM-ATC/Risk, github.com/QAOAKit/QAOAKit, github.com/QAR-Lab/uqoclient, @@ -148762,6 +152231,8 @@ github.com/QC-L/docschina-slugger,num_dependents_deps.dev:0 github.com/QCCS/nice-swa-cli,num_dependents_deps.dev:0 github.com/QCDIS/CloudCells, github.com/QCDIS/FAIRCells, +github.com/QCDIS/choose-action-runner, +github.com/QCDIS/chose-action-runner, github.com/QCDIS/semaphore-python-client, github.com/QCM-Media/js-feature-toggle,num_dependents_deps.dev:0 github.com/QCObjects/qcobjects-handler-openapi,num_dependents_deps.dev:0 @@ -148806,6 +152277,9 @@ github.com/QIWI-API/pull-payments-node-js-sdk,num_dependents_deps.dev:0 github.com/QInfer/python-qinfer, github.com/QIngyuanfl/mgkegg, github.com/QJesus/datetime,num_dependents_deps.dev:0 +github.com/QJoly/Nix-Maintained_by, +github.com/QJoly/SiteWatchdog, +github.com/QJoly/xelatex, github.com/QL-Win/QuickLook,criticality_score:0.443210 github.com/QLFE/eslint-config-qlfe,num_dependents_deps.dev:0 github.com/QLFE/generator-vapp,num_dependents_deps.dev:0 @@ -148850,6 +152324,7 @@ github.com/QQuick/Planetarium, github.com/QQuick/Pyact, github.com/QQuick/Pymui, github.com/QQuick/Transcrypt,"criticality_score:0.441590,num_dependents_deps.dev:0" +github.com/QQxiaoming/create-dmg-action, github.com/QSCTech/BaseCoreSocialistValues,num_dependents_deps.dev:0 github.com/QSCTech/jw-parser,num_dependents_deps.dev:0 github.com/QSCTech/jw-scraper-rs,num_dependents_deps.dev:0 @@ -148885,13 +152360,17 @@ github.com/QVina/qvina,Google github.com/QVote/ZilliqaSDK, github.com/QWYNG/green_day,num_dependents_deps.dev:0 github.com/QWYNG/pry-singular,num_dependents_deps.dev:0 +github.com/QXIP/github-action-push-to-another-repository, github.com/QXIP/gun-host,num_dependents_deps.dev:0 +github.com/QXIP/packagecloud-action, +github.com/QXIP/please-star-light, github.com/QXIP/qrelate,num_dependents_deps.dev:2 github.com/QXIP/stenoscope,num_dependents_deps.dev:0 github.com/QY-Y/HandyLib, github.com/QYueWang/vuepress-plugin-flexsearch-pro,num_dependents_deps.dev:0 github.com/Qaaj/react-s3-upload,num_dependents_deps.dev:0 github.com/Qadik/ertuapi,num_dependents_deps.dev:0 +github.com/Qafana/xunit-xml-slack-action, github.com/Qafeen/Laravue,num_dependents_deps.dev:0 github.com/Qafoo/bdog,num_dependents_deps.dev:0 github.com/Qakulukiam/dit-commit,num_dependents_deps.dev:0 @@ -148935,6 +152414,7 @@ github.com/Qard/express-coffee,num_dependents_deps.dev:0 github.com/Qard/graphql-page,num_dependents_deps.dev:4 github.com/Qard/gulp-matcha,num_dependents_deps.dev:0 github.com/Qard/gulp-namespace,num_dependents_deps.dev:0 +github.com/Qard/heaviest-objects-in-the-universe, github.com/Qard/http-iterator,num_dependents_deps.dev:0 github.com/Qard/http-request-to-url,num_dependents_deps.dev:22 github.com/Qard/input-event-name,num_dependents_deps.dev:0 @@ -149035,6 +152515,7 @@ github.com/QiYuTechDev/apns_sdk_py, github.com/QiYuTechDev/dj-qiyu-tpl, github.com/QiYuTechDev/py_apple_signin, github.com/QiYuTechDev/qiyu-api, +github.com/QiYuTechDev/seo-action, github.com/QiYuTechDev/ztk_api, github.com/QiYuTechOrg/baidu-translate-py, github.com/QiYuTechOrg/django-qiyu-token, @@ -149103,6 +152584,7 @@ github.com/Qingluan/x-mroy-1, github.com/Qingluan/xproj, github.com/QingpingMeng/gatsby-remark-external-images-native-lazy-load,num_dependents_deps.dev:0 github.com/QingqiShi/react-lit-store,num_dependents_deps.dev:0 +github.com/QingqinKong/action-sharepoint-publish, github.com/Qingquanlv/testflow_api,num_dependents_deps.dev:0 github.com/QingshanLuoyue/long-press,num_dependents_deps.dev:0 github.com/QingshanLuoyue/markdown-pdf-marked,num_dependents_deps.dev:0 @@ -149147,6 +152629,7 @@ github.com/Qiufeng54321/muser, github.com/Qiulin-Wang/scrapy-fake-useragent, github.com/QiuyangQ/vue-carousel-title, github.com/QiuyangQ/vue-track-navigation-bar,num_dependents_deps.dev:0 +github.com/Qiwei08/cicd_saagie_tool, github.com/Qiwen-Yu/TextHTMLPress, github.com/QiwenZz/public_data_food_analysis_3, github.com/Qix-/better-exceptions,criticality_score:0.436240 @@ -149213,6 +152696,7 @@ github.com/QortexDevs/fnsapi, github.com/Qotes/octicons-react,num_dependents_deps.dev:0 github.com/Qotov/jaal, github.com/Qotto/firebase-client, +github.com/Qovery/qovery-github-actions, github.com/Qovery/qovery-java-sdk,num_dependents_deps.dev:0 github.com/Qquanwei/OverAssert,num_dependents_deps.dev:0 github.com/Qquanwei/electron-windows-inno-installer,num_dependents_deps.dev:0 @@ -149296,6 +152780,7 @@ github.com/QuadFlask/colorpicker,criticality_score:0.386240 github.com/QuadFlask/react-superellipse,num_dependents_deps.dev:0 github.com/QuadFlask/rgba-of,num_dependents_deps.dev:0 github.com/QuadFlask/superellipse.js,num_dependents_deps.dev:4 +github.com/QuadStingray/questdb-github-action, github.com/Quadrats/quadrats,num_dependents_deps.dev:0 github.com/Quadric/babel-plugin-graphql-raw,num_dependents_deps.dev:0 github.com/Quadric/babel-plugin-inline-import,"num_dependents_deps.dev:30,num_dependents_deps.dev:20" @@ -149356,6 +152841,11 @@ github.com/QualiSystemsLab/Power-Management, github.com/QualiSystemsLab/Sandbox-API-Python, github.com/QualiSystemsLab/abstract-http-client, github.com/QualiSystemsLab/cloudshell-sandbox-reporter, +github.com/QualiTorque/torque-end-environment, +github.com/QualiTorque/torque-start-environment, +github.com/QualiTorque/torque-start-sb-action, +github.com/QualiTorque/torque-validate-blueprints, +github.com/QualiTorque/torque-validate-bp-action, github.com/Qualifyze/airtable-formulator,num_dependents_deps.dev:0 github.com/Qualifyze/design-system,num_dependents_deps.dev:0 github.com/QualityHammer/instrumental-downloader, @@ -149368,6 +152858,7 @@ github.com/Qualphey/node-linuxcam,num_dependents_deps.dev:0 github.com/Qualphey/pg-aura,num_dependents_deps.dev:0 github.com/Qualthera/qqpusher, github.com/Qualthera/xzitaao, +github.com/Qualys/github_action_qiac, github.com/Quamolit/painter,num_dependents_deps.dev:0 github.com/Quamolit/phlox.calcit, github.com/Quamolit/quamolit,num_dependents_deps.dev:0 @@ -149399,6 +152890,7 @@ github.com/Quansight/jupyterlab-conda-store,num_dependents_deps.dev:0 github.com/Quansight/jupyterlab-omnisci,num_dependents_deps.dev:0 github.com/Quansight/pnumpy, github.com/Quansight/pytest-pytorch, +github.com/Quansight/qhub-github-actions, github.com/Quansight/qhub-jupyterhub-theme, github.com/Quant-Finance-HQ/solidity-datetime,num_dependents_deps.dev:0 github.com/Quant-Network/python-api-client, @@ -149557,6 +153049,9 @@ github.com/QubesOS/qubes-issues,criticality_score:0.591980 github.com/QubesOS/qubes-secpack,criticality_score:0.363370 github.com/QubieDiscord/public-motto-system,num_dependents_deps.dev:0 github.com/QubitDigital/queue-that,num_dependents_deps.dev:0 +github.com/QubitPi/aergia, +github.com/QubitPi/cypress-github, +github.com/QubitPi/hashicorp-aws, github.com/QubitProducts/animates, github.com/QubitProducts/base64int,num_dependents_deps.dev:0 github.com/QubitProducts/cashcow,num_dependents_deps.dev:0 @@ -149674,6 +153169,8 @@ github.com/Quernest/arr-flatten-unflatten, github.com/Quernest/flatten,num_dependents_deps.dev:0 github.com/Quernest/mui-modal-provider, github.com/Query-man/queryman-builder,num_dependents_deps.dev:0 +github.com/QueryDesk/remove-db-client, +github.com/QueryDesk/setup-db-client, github.com/QueryPark/UIKit,num_dependents_deps.dev:0 github.com/QueryPark/qp-well-parser,num_dependents_deps.dev:0 github.com/Querz/mcaselector,criticality_score:0.411650 @@ -149839,6 +153336,7 @@ github.com/Quinten/simple-sw,num_dependents_deps.dev:0 github.com/Quinten/verf,num_dependents_deps.dev:0 github.com/Quinteng/quinteng-chaoyue, github.com/Quintetio/vue-quintable,num_dependents_deps.dev:0 +github.com/QuintilianoNery/action-allure-report-V2, github.com/Quintinity/humio-winston,num_dependents_deps.dev:0 github.com/Quintinity/questrade-api-client,num_dependents_deps.dev:0 github.com/Quintinity/spectre-modular,num_dependents_deps.dev:0 @@ -149887,6 +153385,7 @@ github.com/QunarOPS/qg.test, github.com/QunarOPS/qg.web, github.com/QunarOPS/qtdigest, github.com/QunarOPS/qtdigest-cffi, +github.com/Quobis/action-owasp-dependecy-track-check, github.com/Quobject/SocketIoClientDotNet,criticality_score:0.325070 github.com/Quobject/amq.rabbitmq.reply-to.js,num_dependents_deps.dev:0 github.com/Quobject/ansible-cli-js,num_dependents_deps.dev:0 @@ -150004,6 +153503,7 @@ github.com/QwantResearch/masq-crypto,num_dependents_deps.dev:0 github.com/QwantResearch/masq-store,num_dependents_deps.dev:0 github.com/QwantResearch/qwant-react-feather-icons,num_dependents_deps.dev:0 github.com/QwekoDev/collision, +github.com/QwerMike/xpath-action, github.com/Qwerios/generator-madlib-apicore,num_dependents_deps.dev:0 github.com/Qwerios/generator-madlib-module,num_dependents_deps.dev:0 github.com/Qwerios/generator-madlib-restify-api,num_dependents_deps.dev:0 @@ -150027,6 +153527,7 @@ github.com/Qwerios/madlib-xhr,num_dependents_deps.dev:0 github.com/Qwerios/madlib-xhr-xdm,num_dependents_deps.dev:0 github.com/Qwerios/madlib-xml-objectifier,num_dependents_deps.dev:0 github.com/Qwerios/madlib-xmldom,num_dependents_deps.dev:4 +github.com/Qwerty-133/python-setup, github.com/Qwerty-Space/tup, github.com/QwertyQwertovich/free-sms-otp, github.com/Qwiery/Qwiery-Client-NodeJS,num_dependents_deps.dev:0 @@ -150040,6 +153541,7 @@ github.com/Qwoyn/smoke-transact,num_dependents_deps.dev:0 github.com/QxQstar/grape-cli,num_dependents_deps.dev:0 github.com/Qxiaoqi/test-cli,num_dependents_deps.dev:0 github.com/Qxiaoqi/xq-cli,num_dependents_deps.dev:0 +github.com/Qybercom/AutoReleaser-GitHub, github.com/Qyir/hexo-theme-lyusha,num_dependents_deps.dev:0 github.com/Qymh/eslint-config-qymh,num_dependents_deps.dev:0 github.com/Qymh/q-dialog,num_dependents_deps.dev:0 @@ -150082,6 +153584,7 @@ github.com/R-js/mangos,num_dependents_deps.dev:0 github.com/R-terraDev/lodown,num_dependents_deps.dev:0 github.com/R-vijayendren/custom-react-pagination,num_dependents_deps.dev:0 github.com/R0L3eX9/webdev-generator, +github.com/R0Wi/nextcloud-appstore-push-action, github.com/R0X4R/bhedak, github.com/R0X4R/snetra, github.com/R0b95/player_amp, @@ -150295,6 +153798,7 @@ github.com/RENCI/pyBPCA, github.com/RENCI/py_bpca, github.com/RENCI/tx-functional, github.com/RENCI/tx-parallex, +github.com/REND42/hello-world-github-action, github.com/RESTDocsEXT/restdocsext-jersey,num_dependents_deps.dev:0 github.com/RESTRack/RESTRack,num_dependents_deps.dev:0 github.com/RESTful-Drupal/restful,criticality_score:0.333570 @@ -150374,6 +153878,7 @@ github.com/RGkevin/migrar,num_dependents_deps.dev:0 github.com/RH-ISAC/PyOTI, github.com/RH12503/tip-backend,num_dependents_deps.dev:0 github.com/RHEAGROUP/CDP4-SDKTs-Community-Edition,num_dependents_deps.dev:0 +github.com/RHEMS-Japan/actions-rhems-badges, github.com/RHElements/generator-rhelements, github.com/RHElements/generator-rhelements-theme,num_dependents_deps.dev:0 github.com/RHElements/lgtm,num_dependents_deps.dev:0 @@ -150454,6 +153959,7 @@ github.com/RIDERIUS/Akasia, github.com/RIDGIDSoftwareSolutions/EmersonProtoolsPortal_Public,num_dependents_deps.dev:0 github.com/RIDGIDSoftwareSolutions/SpringREST_API_Version,num_dependents_deps.dev:0 github.com/RIDICS/Loading-Visualization,num_dependents_deps.dev:0 +github.com/RIGS-IT/xanitizer-action, github.com/RILAB/mop, github.com/RILAB/statements,criticality_score:0.308660 github.com/RIMS-Code/RIMSEval, @@ -150500,6 +154006,7 @@ github.com/RISCfuture/url_validation,num_dependents_deps.dev:0 github.com/RISCfuture/validates_im,num_dependents_deps.dev:0 github.com/RISE-MPIWG/react-shine-api, github.com/RISMME/bob-bot, +github.com/RITct/members-list-action, github.com/RIVACON/RiVaPy, github.com/RIVM-bioinformatics/AmpliGone, github.com/RIVOIRA/smooth-interpolator, @@ -150559,6 +154066,7 @@ github.com/RMKeene/twit, github.com/RMLio/download-rmlmapper-java-js,num_dependents_deps.dev:0 github.com/RMLio/fetch-rmlmapper-java-js, github.com/RMLio/matey,num_dependents_deps.dev:0 +github.com/RMLio/rml-action, github.com/RMLio/rmlmapper-java-wrapper-js,num_dependents_deps.dev:2 github.com/RMLio/rmlmapper-webapi-js,num_dependents_deps.dev:0 github.com/RMLio/solid-rml-store,num_dependents_deps.dev:0 @@ -150620,6 +154128,7 @@ github.com/ROGUE-JCTD/django-gsschema, github.com/ROGUE-JCTD/django-maploom, github.com/ROGUE-JCTD/django-tilebundler, github.com/ROKOLabs/ROKO.Mobi.Cordova, +github.com/ROMVoid95/discord-webhook, github.com/RONAKDHOLARIYA/alpha-editable-text-react-native,num_dependents_deps.dev:0 github.com/RONALD55/BMG-SMS-GATEWAY, github.com/RONALD55/ZimPlaces-Python-Library, @@ -150658,6 +154167,7 @@ github.com/RPGTheGreat/anti-spam,num_dependents_deps.dev:0 github.com/RPGTheGreat/github-info,num_dependents_deps.dev:0 github.com/RPGTheGreat/lavaplayer,num_dependents_deps.dev:0 github.com/RPGTheGreat/project-uptimer,num_dependents_deps.dev:0 +github.com/RPMTW/Translation-Scripts, github.com/RPSMain/speedcord, github.com/RPTools/maptool,criticality_score:0.498430 github.com/RPallas92/heap-ts,num_dependents_deps.dev:0 @@ -150744,6 +154254,7 @@ github.com/RSSchermer/cgmath-std140.rs,num_dependents_deps.dev:0 github.com/RSSchermer/std140.rs,num_dependents_deps.dev:6 github.com/RSSerpent/RSSerpent, github.com/RSabet/rolling-backup, +github.com/RSaiga/sonarqube-quality-gate-report, github.com/RSamaium/CanvasEngine,num_dependents_deps.dev:0 github.com/RSamaium/Languages,num_dependents_deps.dev:4 github.com/RSamaium/async-replace,num_dependents_deps.dev:4 @@ -150775,6 +154286,7 @@ github.com/RTEYL/star_wars_finder,num_dependents_deps.dev:0 github.com/RTICWDT/college-scorecard,criticality_score:0.449070 github.com/RTIInternational/co-words, github.com/RTIInternational/gobbli, +github.com/RTJL/pmd-analyzer-action, github.com/RTK/cordova-cookie-emperor,num_dependents_deps.dev:0 github.com/RTK/cordova-plugin-inappbrowser,num_dependents_deps.dev:0 github.com/RTK99/ares.js, @@ -150877,6 +154389,8 @@ github.com/RaVbaker/flickr,num_dependents_deps.dev:0 github.com/RaVenHelm/rainbow-gen,num_dependents_deps.dev:0 github.com/RaZegame/Discord-Collector,num_dependents_deps.dev:0 github.com/RaaLabs/TSIClient, +github.com/RaaLabs/azure-storage-upload-files, +github.com/RaaLabs/validate-json, github.com/Raader/css-classname-merger, github.com/RaafatSobhy/dep_collector,num_dependents_deps.dev:0 github.com/Raalzz/personalCard,num_dependents_deps.dev:0 @@ -150896,6 +154410,7 @@ github.com/RabadanLab/randomly, github.com/RabahZeineddine/Formik,num_dependents_deps.dev:0 github.com/RabahZeineddine/Material-ui,num_dependents_deps.dev:0 github.com/RabahZeineddine/saml2FJ,num_dependents_deps.dev:0 +github.com/Rabatta-ApS/BuildPulse-Discord, github.com/Rabbit-Converter/Rabbit-Node,num_dependents_deps.dev:0 github.com/Rabbit-Inc/node-posix,num_dependents_deps.dev:0 github.com/Rabbit-Response/rabbitresponse-js,num_dependents_deps.dev:0 @@ -150924,11 +154439,13 @@ github.com/Rabrennie/anything.js,criticality_score:0.321590 github.com/Rabrennie/investigatr,num_dependents_deps.dev:0 github.com/RabsRincon/ccs-js,num_dependents_deps.dev:0 github.com/RacZo/Smarty-Streets-AutoCompleteTextView,num_dependents_deps.dev:0 +github.com/RaccoonDev/push-docker-gcr, github.com/RaceCondition-io/race_condition-rspec,num_dependents_deps.dev:0 github.com/RaceProUK/SockBot-Emoji,num_dependents_deps.dev:0 github.com/RaceProUK/SockBot-Markov,num_dependents_deps.dev:0 github.com/RaceProUK/SockBot-Math,num_dependents_deps.dev:0 github.com/Racer159/nestjs-rmq,num_dependents_deps.dev:0 +github.com/RachelGanonNew/Run-All-.Net-Unit-Test, github.com/RachelRen/mcss-loader,num_dependents_deps.dev:0 github.com/RachelRen/regular-component,num_dependents_deps.dev:0 github.com/RachelSa/hansolo.log,num_dependents_deps.dev:0 @@ -150937,6 +154454,7 @@ github.com/RachelSatoyama/grunt-mocha-istanbul-extra,num_dependents_deps.dev:0 github.com/RachelTWQ/guess-what-is-inside-haha,num_dependents_deps.dev:0 github.com/RachidBoubekeur-dev/hrnet-table,num_dependents_deps.dev:0 github.com/RachidZianne/core.js,num_dependents_deps.dev:0 +github.com/RachitSharma2001/ec2-github-runner, github.com/Rachnerd/nativescript-angular-test-helper, github.com/Rachnus/WoWGameDataAPI-JS,num_dependents_deps.dev:0 github.com/RacimoLab/dinf, @@ -151038,6 +154556,7 @@ github.com/RadioSystems/npm-tokenator,num_dependents_deps.dev:0 github.com/RadioSystems/prettier-config,num_dependents_deps.dev:0 github.com/RadioactiveDroid/bpoptimizer, github.com/Radioafricagroup/swafe, +github.com/Radioh/action-content-overwrite, github.com/Radiomics/pyradiomics, github.com/Radioplayer/WRAPI-JS-SDK,num_dependents_deps.dev:0 github.com/RadishLab/dataviz,num_dependents_deps.dev:0 @@ -151069,6 +154588,7 @@ github.com/RadostW/stochastic, github.com/RadovanBednar/ts-line-lint,num_dependents_deps.dev:0 github.com/RadovanPelka/Easy-Fetch,num_dependents_deps.dev:0 github.com/RadovanPelka/Easy-Instagram-Feed,num_dependents_deps.dev:0 +github.com/RadovanPelka/github-action-json, github.com/Radu-Dunarentu/ng2-table-sorting,num_dependents_deps.dev:0 github.com/Radu-Grigorovici/jira-tasks-enquiry,num_dependents_deps.dev:0 github.com/RaduCiumag/shapeshift,num_dependents_deps.dev:0 @@ -151109,6 +154629,7 @@ github.com/Raesta/node-puush-upload,num_dependents_deps.dev:0 github.com/RaetProtocol/raet, github.com/Raevsky-Team/planfact_api, github.com/RafGb/django-clever-cache, +github.com/RafPe/githubaction_deploy-helm-eks, github.com/RafPe/hubot-zabbix-scripts,num_dependents_deps.dev:0 github.com/RafPe/serverless-reqvalidator-plugin,num_dependents_deps.dev:0 github.com/RafRaf/fipper-python-sdk, @@ -151149,9 +154670,12 @@ github.com/RafaelFing25/Eventjs,num_dependents_deps.dev:0 github.com/RafaelFreita/hcpa-image-processing, github.com/RafaelGB/pythonScripts, github.com/RafaelGSS/autobench,num_dependents_deps.dev:0 +github.com/RafaelGSS/bad-action, +github.com/RafaelGSS/create-deployment, github.com/RafaelGSS/fastify-amqp,num_dependents_deps.dev:0 github.com/RafaelGSS/fastify-conditional-requests,num_dependents_deps.dev:0 github.com/RafaelGSS/gonzagajs,num_dependents_deps.dev:0 +github.com/RafaelGSS/is-my-node-vulnerable, github.com/RafaelGSS/kafka-load-consumer,num_dependents_deps.dev:0 github.com/RafaelGSS/napd,num_dependents_deps.dev:0 github.com/RafaelGSS/open-apm-sdk-node,num_dependents_deps.dev:0 @@ -151220,6 +154744,7 @@ github.com/Rafase282/URL-Shortener,num_dependents_deps.dev:0 github.com/Rafase282/Voting-App,num_dependents_deps.dev:0 github.com/Rafase282/header-parser,num_dependents_deps.dev:0 github.com/RafayGhafoor/Subscene-Subtitle-Grabber, +github.com/RafaySystems/rafay-publish-workload, github.com/Rafelder/knx-datapoints,num_dependents_deps.dev:0 github.com/RaffaeleCanale/wx-ts-library,num_dependents_deps.dev:0 github.com/Raffahc/lerna-test,num_dependents_deps.dev:0 @@ -151252,6 +154777,8 @@ github.com/RafiAfridiCubix/TesserectOCR, github.com/Rafiatu/calculator, github.com/Rafiatu/eBay-scraper, github.com/RafidMuhymin/astro-spa,num_dependents_deps.dev:0 +github.com/RafikFarhad/clang-format-github-action, +github.com/RafikFarhad/push-to-gcr-github-action, github.com/Rafiot/ASN-Description-History, github.com/Rafiot/PubSubLogger, github.com/Rafler/shelf-test,num_dependents_deps.dev:0 @@ -151275,8 +154802,12 @@ github.com/Ragaroto/ng-json-form-bootstrap,num_dependents_deps.dev:0 github.com/Ragate/shimba-ui,num_dependents_deps.dev:0 github.com/RagazziMoscow/koa-location,num_dependents_deps.dev:0 github.com/RagazziMoscow/koa-location-filter,num_dependents_deps.dev:0 +github.com/RageAgainstThePixel/setup-ovr-platform-util, +github.com/RageAgainstThePixel/unity-build, +github.com/RageAgainstThePixel/upload-meta-quest-build, github.com/RageBill/core-native-boilerplate,num_dependents_deps.dev:0 github.com/RageBill/react-native-autoscroll-flatlist,num_dependents_deps.dev:0 +github.com/RagedUnicorn/action-luacheck, github.com/RagedUnicorn/js-tail-log, github.com/Rageous0/gd-fetch,num_dependents_deps.dev:0 github.com/Ragg-/DisposableEmitter,num_dependents_deps.dev:0 @@ -151351,6 +154882,7 @@ github.com/Rahul15963/homebridge-rgb,num_dependents_deps.dev:0 github.com/Rahul9046/eslint-plugin-good-practices,num_dependents_deps.dev:0 github.com/RahulCV/cordova-ios-export-compliance,num_dependents_deps.dev:0 github.com/RahulCV/cordova-plugin-memory-warning,num_dependents_deps.dev:0 +github.com/RahulParmarRP/dotnet-build-test-msdeploy, github.com/RahulRawat1994/rrMetaData,num_dependents_deps.dev:0 github.com/RahulRawat1994/rrlogger,num_dependents_deps.dev:0 github.com/RahulRonit1912/logger,num_dependents_deps.dev:0 @@ -151497,6 +155029,7 @@ github.com/Rainy934/vue-i18n-simple,num_dependents_deps.dev:0 github.com/RainyNight9/rain-mobile-react-ui,num_dependents_deps.dev:0 github.com/RainyTest/cordoba-save-to-photoalbum-ios-android,num_dependents_deps.dev:0 github.com/RainyTest/save-image,num_dependents_deps.dev:0 +github.com/Rainyan/action-sp-cvar-docs, github.com/Raiondesu/Tuex,num_dependents_deps.dev:0 github.com/Raiondesu/eventhoven, github.com/Raiondesu/if-const,num_dependents_deps.dev:0 @@ -151596,6 +155129,7 @@ github.com/Rajsoni03/neuralplot, github.com/RajuKSingh-TechVariable/nodejs_Http, github.com/Rajvir-Singh/TOPSIS-Rajvir-101803685, github.com/Rajvir-Singh/p-topsis, +github.com/RajvirSingh1313/ReleaseBannerAction, github.com/RakanNimer/react-google-charts,"num_dependents_deps.dev:25,criticality_score:0.427340,num_dependents_deps.dev:1" github.com/RakanNimer/react-keymaster,num_dependents_deps.dev:0 github.com/RakanNimer/react-orchestra,num_dependents_deps.dev:0 @@ -151623,6 +155157,8 @@ github.com/Raldir/FEVEROUS, github.com/Raleigh-xc/vue-element-cron, github.com/RalfG/cascade-config, github.com/RalfG/jsonschema2md, +github.com/RalfG/python-wheels-manylinux-build, +github.com/RalfNellesCap/composite_action_dockertag, github.com/Ralim/IronOS,criticality_score:0.477320 github.com/Ralith/err-ctx,num_dependents_deps.dev:0 github.com/Ralith/hecs,num_dependents_deps.dev:129 @@ -151695,6 +155231,8 @@ github.com/RamAlapure/jsonparser,num_dependents_deps.dev:0 github.com/RamEduard/admin-lte-express,num_dependents_deps.dev:0 github.com/RamParameswaran/pyAFL, github.com/RamPrasadAgarwal/sequence-to-range,num_dependents_deps.dev:0 +github.com/RamPrin/push_folders, +github.com/RamSailopal/Mcode-Github-Action, github.com/Ramadanko/rama-slider, github.com/Raman-Raje/spokenTowritten, github.com/Raman-Raje/voiceClassifier, @@ -151822,6 +155360,7 @@ github.com/Ramya-Palaniswami/vue2-datepicker-mask,num_dependents_deps.dev:0 github.com/RamyaIyer96/js-formdata,num_dependents_deps.dev:0 github.com/RamyaM12/publish_package_fun, github.com/Ramzus/primereact,num_dependents_deps.dev:0 +github.com/RamzziSudip/secure-github-webhook, github.com/Ran-n/conexions, github.com/Ran463/random_string_module,num_dependents_deps.dev:0 github.com/RanIt-app/types, @@ -151841,6 +155380,8 @@ github.com/RandallBalestriero/numpy-datasets, github.com/RandallShanePhD/fkscore, github.com/Randallonius/hydrate-mongodb,num_dependents_deps.dev:0 github.com/Randgalt/maple,num_dependents_deps.dev:0 +github.com/RandhirMSingh/S3Manager, +github.com/RandhirMSingh/iOSScreenshots, github.com/RandoApp/Rando-db,num_dependents_deps.dev:0 github.com/RandomAPI/Offline-RandomAPI,num_dependents_deps.dev:0 github.com/RandomAPI/Randomuser.me-Node,criticality_score:0.302530 @@ -151872,6 +155413,7 @@ github.com/RandomStudio/omxconductor, github.com/RandomStudio/prestissimo,num_dependents_deps.dev:0 github.com/RandomStudio/screenshot-windows,num_dependents_deps.dev:0 github.com/RandomVoid/cpp-merge, +github.com/Randomblock1/theos-action, github.com/Randomize163/MenashMQ, github.com/Randomize163/spike-token-manager, github.com/RandomlyFish/domflow, @@ -151885,6 +155427,7 @@ github.com/Randy341/arrayBuffer2Base64,num_dependents_deps.dev:2 github.com/Randy341/chain-encryption,num_dependents_deps.dev:0 github.com/Randy341/one-time-pad-es6,num_dependents_deps.dev:0 github.com/RandyGaul/cute_headers,criticality_score:0.422960 +github.com/RandyLutcavich/android-emulator-runner-without-sdk-setup, github.com/RaneWallin/sanitize-words,num_dependents_deps.dev:0 github.com/RaneWallin/silly-animals,num_dependents_deps.dev:0 github.com/RaneemQaddoura/EvoCluster, @@ -151914,6 +155457,7 @@ github.com/RangelReale/kubragen, github.com/RangelReale/kubragen2, github.com/RangelReale/python-json-patch-ext, github.com/Ranger105/date_monthly, +github.com/RangerDigital/neko-box, github.com/RangerDigital/senko, github.com/RangerEmerald/NitrotypePy, github.com/RangerMauve/StreamEmitter,num_dependents_deps.dev:0 @@ -152081,12 +155625,14 @@ github.com/Rantelo/GUIM,num_dependents_deps.dev:0 github.com/RanvierMUD/datasource-file,num_dependents_deps.dev:0 github.com/RanvierMUD/ranviermud,criticality_score:0.325060 github.com/RaoHai/babel-plugin-override-antd-prefix-cls,num_dependents_deps.dev:0 +github.com/RaoHai/datocms2md, github.com/RaoHai/fringing,num_dependents_deps.dev:0 github.com/RaoHai/pretty-chart,num_dependents_deps.dev:0 github.com/RaoHai/react-ansi,num_dependents_deps.dev:0 github.com/RaoHai/react-free-layout,num_dependents_deps.dev:0 github.com/RaoHai/react-hooks-g2,num_dependents_deps.dev:0 github.com/RaoHai/test-hooks,num_dependents_deps.dev:0 +github.com/RaoHai/yuque2Readme, github.com/Raon31/apac, github.com/Raonitish/sampleone,num_dependents_deps.dev:0 github.com/Raoul1996/egg-captcha, @@ -152134,6 +155680,7 @@ github.com/RaphaelIvan/string_helpers,num_dependents_deps.dev:0 github.com/RaphaelJenni/firebaseui-angular,num_dependents_deps.dev:0 github.com/RaphaelKimmig/processlib, github.com/RaphaelManke/fzi-iota-showcase,num_dependents_deps.dev:0 +github.com/RaphaelNeumann/json-to-env-action, github.com/RaphaelSaban/jfest,num_dependents_deps.dev:0 github.com/RaphaelSaban/jinstatest,num_dependents_deps.dev:0 github.com/RaphaelValdez/raphaelv,num_dependents_deps.dev:0 @@ -152160,6 +155707,7 @@ github.com/Rapid-Application-Development-JS/itemplate,num_dependents_deps.dev:8 github.com/Rapid-Application-Development-JS/itemplate-loader,num_dependents_deps.dev:0 github.com/Rapid-Application-Development-JS/verbose-console-log, github.com/Rapid-Design-of-Systems-Laboratory/beluga, +github.com/RapidAPI/gh-api-testing-trigger, github.com/RapidAPI/testing-worker,num_dependents_deps.dev:0 github.com/RapidApps/elasticsearch-hapi-logger,num_dependents_deps.dev:0 github.com/RapidApps/elasticsearch-hapi-plugin,num_dependents_deps.dev:0 @@ -152278,8 +155826,13 @@ github.com/RasPhilCo/leif,num_dependents_deps.dev:0 github.com/RasPhilCo/rabbit-hole,num_dependents_deps.dev:0 github.com/RasPlex/OpenPHT,criticality_score:0.414710 github.com/RasaHQ/botsociety-py-client, +github.com/RasaHQ/nlu-hyperopt, github.com/RasaHQ/rasa,criticality_score:0.791120 +github.com/RasaHQ/rasa-action-server-gha, github.com/RasaHQ/rasa-demo,criticality_score:0.410600 +github.com/RasaHQ/rasa-nlu-eval-compare-gha, +github.com/RasaHQ/rasa-nlu-target-files-gha, +github.com/RasaHQ/rasa-train-test-gha, github.com/RasaHQ/whatlies, github.com/RasamizafyB/node-js-card,num_dependents_deps.dev:0 github.com/RasamizafyB/node-js-cli,num_dependents_deps.dev:0 @@ -152303,6 +155856,7 @@ github.com/Rasix/Node2Fritz,num_dependents_deps.dev:0 github.com/Rasland/prosemirror-tables, github.com/Rasland/prosemirror-utils,num_dependents_deps.dev:0 github.com/RasmusBuchholdt/plex-wrapper,num_dependents_deps.dev:0 +github.com/RasmusBuchholdt/simply-web-deploy, github.com/RasmusHaugaard/image-grid, github.com/RasmusHaugaard/texercise-cli, github.com/RasmusHaugaard/transform3d, @@ -152338,6 +155892,7 @@ github.com/Rastow/wave-packet-dynamics, github.com/Rasukarusan/hyper-imgcat,num_dependents_deps.dev:0 github.com/Raswanth8/shadowpad,num_dependents_deps.dev:0 github.com/RatJuggler/led-shim-demo, +github.com/RatakondalaArun/pub.dev-cd, github.com/RatanNarayanHegde/sql-injection,num_dependents_deps.dev:0 github.com/Ratatinator97/merge-images,num_dependents_deps.dev:0 github.com/RateBroker/BlueBridge,num_dependents_deps.dev:0 @@ -152418,6 +155973,7 @@ github.com/Raufoon/reakt-formular,num_dependents_deps.dev:0 github.com/Raufoon/reaktionsschnelle,num_dependents_deps.dev:0 github.com/Raukk/tf-keras-surgeon, github.com/Raul-Navarro/fuzzy-framework, +github.com/Raul6469/android-gradle-action, github.com/Raul6469/quadra,num_dependents_deps.dev:0 github.com/RaulCifuentes/pueblitos-names,num_dependents_deps.dev:0 github.com/RaulCorreia/my-template-raul, @@ -152436,6 +155992,7 @@ github.com/RauliL/lametric-foli,num_dependents_deps.dev:0 github.com/RauliL/lametric-iltasanomat,num_dependents_deps.dev:0 github.com/RauliL/lametric-rss-formatter,num_dependents_deps.dev:0 github.com/RauliL/lametric-yle,num_dependents_deps.dev:0 +github.com/RauliL/lerna-lcov-aggregate-action, github.com/RauliL/nodom-global,num_dependents_deps.dev:0 github.com/RauliL/oddcast-tts-demo, github.com/RauliL/ostoslista,num_dependents_deps.dev:0 @@ -152473,6 +156030,8 @@ github.com/RaveJS/rave,num_dependents_deps.dev:0 github.com/RaveNoX/watch-win,num_dependents_deps.dev:0 github.com/RavelLaw/e3,num_dependents_deps.dev:0 github.com/RavelLaw/ember-cli-deploy-zookeeper,num_dependents_deps.dev:0 +github.com/RavelloH/readme-tree, +github.com/RavelloH/readme-tree-undo, github.com/Raven-Source/raven-commons-java,num_dependents_deps.dev:2 github.com/Raven0uss/magic-modal,num_dependents_deps.dev:0 github.com/RavenColEvol/react-ast-component, @@ -152527,6 +156086,7 @@ github.com/Ravsehajsinghpuri/topsis_by_ravsehaj, github.com/RawBlunt/VKMix,num_dependents_deps.dev:0 github.com/RawfishIndustries/accedo-one-sdk-js,num_dependents_deps.dev:0 github.com/Rawnly/festivities.json,num_dependents_deps.dev:0 +github.com/Rawnly/hawk, github.com/Rawnly/hyper-white-theme,num_dependents_deps.dev:0 github.com/Rawnly/path-parser,num_dependents_deps.dev:0 github.com/Rawnly/scale.js,num_dependents_deps.dev:0 @@ -152964,6 +156524,7 @@ github.com/RazKissos/ansicolorslib, github.com/Razaekel/noise-rs,"criticality_score:0.362020,num_dependents_deps.dev:41" github.com/RazakAlpha/hubtel-sms,num_dependents_deps.dev:0 github.com/RazcoDev/aioprometheus-thin, +github.com/RazcoDev/broken-urls-in-code, github.com/Razem/Enix, github.com/Razem/Expanso, github.com/Razem/Fibra,num_dependents_deps.dev:0 @@ -153027,6 +156588,7 @@ github.com/RazvanDH/rs-golden-ratio-grid,num_dependents_deps.dev:0 github.com/RazvanRauta/nodejs-microservices-common, github.com/RazzM13/yubikey-pivfs, github.com/Razzeeyy/node-fshare,num_dependents_deps.dev:0 +github.com/Rbillon59/taurus-action, github.com/Rbin-life/gulp-msapp-comps,num_dependents_deps.dev:0 github.com/Rbin-life/gulp-msapp-require,num_dependents_deps.dev:0 github.com/RbkGh/ckeditor-full-options,num_dependents_deps.dev:0 @@ -153316,6 +156878,8 @@ github.com/ReadingandMath/Quickbase-Python-SDK, github.com/ReadingandMath/react-paginate,num_dependents_deps.dev:0 github.com/Readiz/svelte-h-split-pane,num_dependents_deps.dev:0 github.com/Readiz/svelte-split-pane,num_dependents_deps.dev:0 +github.com/Readme-Workflows/readme-replacer, +github.com/Readme-Workflows/recent-activity, github.com/Readtt/easier-iss, github.com/Readtt/osu-npm, github.com/Readtt/waifulabs-cli, @@ -153499,6 +157063,7 @@ github.com/ReapexJS/reapex-plugin-dataloader,num_dependents_deps.dev:0 github.com/ReapexJS/reapex-plugin-immer,num_dependents_deps.dev:0 github.com/ReapexJS/reapex-plugin-tracking,num_dependents_deps.dev:0 github.com/Reasno/league-of-filters,num_dependents_deps.dev:0 +github.com/ReasonSoftware/action-pylint, github.com/ReasonVienna/reason-these,num_dependents_deps.dev:0 github.com/ReasonX7/mirror-keys,num_dependents_deps.dev:0 github.com/ReasonX7/mongoose-sanitizer-plugin,num_dependents_deps.dev:0 @@ -153513,9 +157078,12 @@ github.com/Rebaiahmed/tunpopulation,num_dependents_deps.dev:0 github.com/Rebaiahmed/tunpopulation/issues, github.com/RebeccaStevens/deepmerge-ts,num_dependents_deps.dev:0 github.com/RebeccaStevens/eslint-config-rebeccastevens,num_dependents_deps.dev:0 +github.com/RebeccaStevens/issue-closed-labeler-action, github.com/RebeccaStevens/purity-optimizer,num_dependents_deps.dev:0 github.com/RebeccaStevens/tslint-rebeccastevens,num_dependents_deps.dev:0 github.com/RebekahKlemm/hubot-blameSomeone, +github.com/Rebel028/publish-nuget, +github.com/Rebel028/s3-upload-github-action, github.com/RebelCodeBase/testaid, github.com/RebelMail/emittable,num_dependents_deps.dev:0 github.com/RebelMail/html-postcss,num_dependents_deps.dev:41 @@ -153545,6 +157113,7 @@ github.com/Reboot82/brandtReverseRoman,num_dependents_deps.dev:0 github.com/Reboot82/brandtdefang,num_dependents_deps.dev:0 github.com/Reboot82/romanum,num_dependents_deps.dev:0 github.com/RebornLimited/FastDBM, +github.com/RebornQ/github-actions-hugo, github.com/Rebornnn/ant-design,num_dependents_deps.dev:0 github.com/Rebornnn/wepy-haitou-toast,num_dependents_deps.dev:0 github.com/Rebsos/node-gzip,num_dependents_deps.dev:66 @@ -153557,6 +157126,7 @@ github.com/RecallGraph/foxx-tracer,num_dependents_deps.dev:0 github.com/RecallGraph/foxx-tracer-reporter-console,num_dependents_deps.dev:0 github.com/RecallGraph/foxx-tracer-reporter-datadog,num_dependents_deps.dev:0 github.com/RecallMxt/jutai-cement-diagram,num_dependents_deps.dev:0 +github.com/RecapTime/github-activity-readme, github.com/RecastAI/SDK-NodeJs,num_dependents_deps.dev:0 github.com/RecastAI/sdk-python, github.com/ReceiptManager/receipt-parser-legacy,criticality_score:0.367590 @@ -153587,6 +157157,7 @@ github.com/Recime/recime-nlp-provider,num_dependents_deps.dev:2 github.com/Recime/recime-node-cli,num_dependents_deps.dev:0 github.com/Recipiece/Recipiece-Common,num_dependents_deps.dev:0 github.com/RecklessTechnology/create-reckless-tech-app,num_dependents_deps.dev:0 +github.com/Reckon-Limited/action-forward-merge-pr, github.com/Reckon-Limited/containerless,num_dependents_deps.dev:0 github.com/Reckon-Limited/serverless-swagger,num_dependents_deps.dev:0 github.com/Reckon-Limited/serverless_swagger, @@ -153672,10 +157243,12 @@ github.com/RedBackSpider/node-red-contrib-pdfjs,num_dependents_deps.dev:0 github.com/RedBallG/SelfDiscord, github.com/RedBeardCory/gunna,num_dependents_deps.dev:0 github.com/RedBeardLab/rediSQL,criticality_score:0.345720 +github.com/RedBeardLab/redis-action, github.com/RedBlueKoi/vue-ripple-inred,num_dependents_deps.dev:0 github.com/RedBlueVideo/hvml,num_dependents_deps.dev:0 github.com/RedBlueVideo/redblue,num_dependents_deps.dev:0 github.com/RedBomb1811/cwp-22-1,num_dependents_deps.dev:0 +github.com/RedBrumbler/qpm-info, github.com/RedBug312/markdown-it-multimd-table,num_dependents_deps.dev:36 github.com/RedBulli/cors-tester,num_dependents_deps.dev:0 github.com/RedCA-Family/code-analyst,num_dependents_deps.dev:0 @@ -153688,6 +157261,7 @@ github.com/RedCastor/rc-consent,num_dependents_deps.dev:0 github.com/RedCastor/rc-consent-angular,num_dependents_deps.dev:0 github.com/RedCastor/rc-restore-scroll,num_dependents_deps.dev:0 github.com/RedContact/pusher-js,num_dependents_deps.dev:0 +github.com/RedCrafter07/release-notes-action, github.com/RedCrewOS/sdk-creator-js,num_dependents_deps.dev:2 github.com/RedCrowConsulting/test-sem-ver,num_dependents_deps.dev:0 github.com/RedDocMD/cprunner, @@ -153791,6 +157365,7 @@ github.com/RedKrieg/pysparklines, github.com/RedL0tus/rifling,num_dependents_deps.dev:0 github.com/RedL0tus/trigger,num_dependents_deps.dev:0 github.com/RedLeap/reactnative-redux-apollo,num_dependents_deps.dev:0 +github.com/RedLime/mc-lang-translation-action, github.com/RedLukeBug/discord-prefix,num_dependents_deps.dev:0 github.com/RedMadRobot/Chronos,num_dependents_deps.dev:0 github.com/RedMadRobot/aiomigrate, @@ -153894,6 +157469,7 @@ github.com/RedYetiDev/blooket.js,num_dependents_deps.dev:0 github.com/RedYetiDev/fs-gui, github.com/Reda1000/canvas-map,num_dependents_deps.dev:0 github.com/Reda1000/ngx-canvas-map,num_dependents_deps.dev:0 +github.com/RedaktionsNetzwerk-Deutschland/action-jest-reporter, github.com/RedanHassoun/tiny,num_dependents_deps.dev:0 github.com/Redbility/paper-carousel,num_dependents_deps.dev:0 github.com/RedbirdHQ/aws-ome-sdk,num_dependents_deps.dev:0 @@ -153920,6 +157496,7 @@ github.com/RedesignScience/OMMTK, github.com/RedesignScience/RSSimTools, github.com/Redeux/sql-inject-reject,num_dependents_deps.dev:0 github.com/Redface/ng-image-viewer,num_dependents_deps.dev:0 +github.com/Redfig-LLC/release-action, github.com/RedfishGroup/LeafletElementOverlay,num_dependents_deps.dev:0 github.com/RedfishGroup/parseLatLon,num_dependents_deps.dev:0 github.com/RedgooseDev/image-resize,num_dependents_deps.dev:0 @@ -153984,8 +157561,10 @@ github.com/Redknife/rs-carousel,num_dependents_deps.dev:0 github.com/Redknife/rs-slide-menu,num_dependents_deps.dev:0 github.com/Redknife/volvo-vin-decoder,num_dependents_deps.dev:0 github.com/RedlineResearch/floorplan,num_dependents_deps.dev:0 +github.com/RedlineTriad/molecule-vagrant-qemu-action, github.com/Redmart/eslint-config-redmart,num_dependents_deps.dev:0 github.com/RedmindAB/RMTest,num_dependents_deps.dev:319 +github.com/RedmindAB/action-cloud-run, github.com/RedmindAB/react-native-test-utility,num_dependents_deps.dev:0 github.com/RedmindAB/rm-infinity,num_dependents_deps.dev:0 github.com/Redningsselskapet/ad,num_dependents_deps.dev:0 @@ -154024,6 +157603,7 @@ github.com/RedstoneGamez/Pterodactyl.js,num_dependents_deps.dev:0 github.com/RedstoneMedia/among-us-parser-python, github.com/RedstoneMedia/auto-iserv, github.com/RedstoneMedia/py_swagger_generator, +github.com/RedstonePfalz/setup-cordova, github.com/Redth/PushSharp,criticality_score:0.353470 github.com/Redth/ResizetizerNT,criticality_score:0.349970 github.com/Redth/ZXing.Net.Mobile,criticality_score:0.543310 @@ -154057,6 +157637,9 @@ github.com/ReedOei/eunomia,num_dependents_deps.dev:0 github.com/ReedOwens/UXsyncNow,num_dependents_deps.dev:0 github.com/ReedSun/ant-design-mobile-without-normalize, github.com/ReedSun/weather-reedsun,num_dependents_deps.dev:0 +github.com/Reedyuk/NPM-Version, +github.com/Reedyuk/read-properties, +github.com/Reedyuk/write-properties, github.com/ReeganExE/fill-tpl,num_dependents_deps.dev:0 github.com/ReekenX/Django-simple-news, github.com/ReeseKenn/salt-ui,num_dependents_deps.dev:0 @@ -154079,8 +157662,10 @@ github.com/ReferralCandy/referral_candy,num_dependents_deps.dev:0 github.com/ReferralCandy/referral_candy_python, github.com/RefinedDev/EasierSQL, github.com/Refineries/refine,num_dependents_deps.dev:0 +github.com/Refitter/generate-code, github.com/ReformedCola/snowflake-ui,num_dependents_deps.dev:0 github.com/Reformo-Software/woocommerce-rest-api-js-lib,num_dependents_deps.dev:0 +github.com/RefractureMedia/mercury-core-test, github.com/Refsheet/refsheet-ruby,num_dependents_deps.dev:0 github.com/Refty/bubble-client, github.com/RefugeRestrooms/refugerestrooms,criticality_score:0.491750 @@ -154105,10 +157690,14 @@ github.com/Regangilb/rgdevcamp-js-footer,num_dependents_deps.dev:0 github.com/Regani/json-rp,num_dependents_deps.dev:0 github.com/Regendor/coliform-project, github.com/Regenine/react-markdown,num_dependents_deps.dev:0 +github.com/RegestaItalia/abapVersion, +github.com/RegestaItalia/trm-action-install, +github.com/RegestaItalia/trm-action-publish, github.com/RegexMC/minecraft-color-utils,num_dependents_deps.dev:0 github.com/ReggaePanda/napi-typescript-tesseract,num_dependents_deps.dev:0 github.com/Reggino/backbone-json-schema,num_dependents_deps.dev:0 github.com/Reggino/react-svg-gauge,num_dependents_deps.dev:0 +github.com/Reggionick/s3-deploy, github.com/Regia-Corporation/s2projection,num_dependents_deps.dev:2 github.com/Regia-Corporation/s2tiles-spec,num_dependents_deps.dev:4 github.com/Reginald-Yoeng-Lee/xml-js,num_dependents_deps.dev:0 @@ -154184,6 +157773,7 @@ github.com/ReinaldoM2/vue-range-slider,num_dependents_deps.dev:0 github.com/ReinaldoMT/libdi,num_dependents_deps.dev:0 github.com/Reinecam/lodown,num_dependents_deps.dev:0 github.com/ReinerNippes/nextcloud,criticality_score:0.321720 +github.com/Reinforz/github-readme-learn-section-notion, github.com/ReinhardM-dev/MzChess, github.com/ReinhardtJ/Functional-Extensions, github.com/ReinierMaas/microfacet,num_dependents_deps.dev:0 @@ -154200,6 +157790,14 @@ github.com/Rejjak/imap-riyo,num_dependents_deps.dev:0 github.com/Rejjak/jio-query,num_dependents_deps.dev:0 github.com/Rejjak/rn-riyo-cli,num_dependents_deps.dev:0 github.com/Rejo12/react-multiselect-search-dropdown, +github.com/RekGRpth/docker-login-build-push-shell-action, +github.com/RekGRpth/git-clone-shell-action, +github.com/RekGRpth/git-fetch-upstream-merge-push-shell-action, +github.com/RekGRpth/github-publish-action-shell-action, +github.com/RekGRpth/github-repository-dispatch-shell-action, +github.com/RekGRpth/pgxn-release-shell-action, +github.com/RekGRpth/strip-docker-image-shell-action, +github.com/RekGRpth/update-license-year-shell-action, github.com/Rekamy/rekajs,num_dependents_deps.dev:0 github.com/RekhaLambotte/Nodejs-drill-cli-nager,num_dependents_deps.dev:0 github.com/RekhaLambotte/Nodejs-drill-npx-card,num_dependents_deps.dev:0 @@ -154288,6 +157886,7 @@ github.com/Remagpie/redux-saga-http,num_dependents_deps.dev:0 github.com/Remco75/openapi-test-generator, github.com/Remco75/progalenor,num_dependents_deps.dev:0 github.com/RemcoB00/cordova-phonegap_youtube_player_api_android,num_dependents_deps.dev:0 +github.com/RemcoHalman/python-helloworld-action, github.com/RemcoHaszing/python-audiolayer, github.com/RemeJuan/cache-fetch,num_dependents_deps.dev:0 github.com/RemeJuan/debounce-redux-dispatch,num_dependents_deps.dev:0 @@ -154369,6 +157968,8 @@ github.com/RenanRicoldi/data-structures-cormen, github.com/Renanse/Ardor3D,num_dependents_deps.dev:57 github.com/Renante/Calendar,num_dependents_deps.dev:0 github.com/RenardDev/CryptICE, +github.com/Renato66/auto-label, +github.com/Renato66/pick-package, github.com/RenatoAmaral/simple-calculator,num_dependents_deps.dev:0 github.com/RenatoFernandesTotti/Renato-Fernandes-GSoC2019,num_dependents_deps.dev:0 github.com/RenatoFernandesTotti/json-validator,num_dependents_deps.dev:0 @@ -154442,6 +158043,7 @@ github.com/Renfrew/react-infinite-refresh-load-hook,num_dependents_deps.dev:0 github.com/Renien/doc-diff, github.com/RenierM26/py-Ezviz, github.com/RenierM26/pyncentral, +github.com/RenjiSann/tree-sitter-check, github.com/Renkinjutsu/npm-test,num_dependents_deps.dev:0 github.com/Renmusxd/QIP, github.com/Renmusxd/RustQIP,num_dependents_deps.dev:0 @@ -154485,6 +158087,7 @@ github.com/RentDynamics/ng-core,num_dependents_deps.dev:0 github.com/RentDynamics/ng-forms,num_dependents_deps.dev:0 github.com/RentDynamics/rentdynamics-js,num_dependents_deps.dev:0 github.com/RentMethod/celerytest, +github.com/RentTheRunway/signalfx-reporting-action, github.com/RentTheRunway2/alchemy,num_dependents_deps.dev:110 github.com/RentTheRunway2/conduit,num_dependents_deps.dev:0 github.com/Rentberry/ngx-gallery,num_dependents_deps.dev:0 @@ -154517,9 +158120,17 @@ github.com/Repeg/enlargeImg,num_dependents_deps.dev:0 github.com/ReplAPI-it/Python-ReplAPI-It, github.com/ReplayMod/ReplayMod,criticality_score:0.370050 github.com/ReplyTechnologies/ReplyPDF,num_dependents_deps.dev:0 +github.com/Repodex-Organization/repodex-sarif-solver, github.com/Reportr/dashboard,num_dependents_deps.dev:0 github.com/Reportr/node-reportr,num_dependents_deps.dev:0 github.com/RepositPower/reposit-python-client, +github.com/Repositorios-Actions/Checkout-GitLab, +github.com/Repositorios-Actions/Workspace-Cleaner, +github.com/Repositorios-Actions/api-deployment-with-mvn, +github.com/Repositorios-Actions/az-artifacts-universal-download, +github.com/Repositorios-Actions/az-artifacts-universal-publish, +github.com/Repositorios-Actions/copy-file-to, +github.com/Repositorios-Actions/create-universal-artifact, github.com/Reposoft/alertify.js,num_dependents_deps.dev:0 github.com/Reposoft/bev,num_dependents_deps.dev:2 github.com/Reposoft/bmc,num_dependents_deps.dev:0 @@ -154581,8 +158192,11 @@ github.com/ResearchComputing/OIDE, github.com/ResearchComputing/oide-nb-term, github.com/ResearchComputing/oide-slurm-assist, github.com/ResearchKit/ResearchKit,criticality_score:0.513650 +github.com/ResearchObject/ro-crate-preview-action, github.com/ResearchObject/ro-crate-py, github.com/ResearchObject/ro-crate-validator-py, +github.com/ResearchSoftwareActions/EnsureCleanNotebooksAction, +github.com/ResearchSoftwareActions/ford-build, github.com/Reselim/Flipper, github.com/Reselim/roact-router,num_dependents_deps.dev:0 github.com/Reservix/docker-await-postgres,num_dependents_deps.dev:0 @@ -154603,6 +158217,10 @@ github.com/ResilienceTesting/gremlinsdk-python, github.com/Resinchen/LR-Parser,num_dependents_deps.dev:0 github.com/Resinchen/VNTSCompiler, github.com/Resmedia/react-user-photo-cropper,num_dependents_deps.dev:0 +github.com/Resnovas/label-mastermind, +github.com/Resnovas/release-mastermind, +github.com/Resnovas/smartcloud, +github.com/Resnovas/variable-mastermind, github.com/Resocio/core,num_dependents_deps.dev:0 github.com/Resocio/devkit,num_dependents_deps.dev:0 github.com/ResolveWang/Tomorrow, @@ -154610,6 +158228,7 @@ github.com/ResolventaGroup/eslint-config,num_dependents_deps.dev:0 github.com/Resonance1584/WFMClient,num_dependents_deps.dev:0 github.com/Resonance1584/node-https-hijack,num_dependents_deps.dev:0 github.com/ResonantGeoData/ResonantGeoData, +github.com/ResoneticsSystems/build-release-nuget-action, github.com/ResourceDataInc/Centroid, github.com/ResourceDataInc/rvr,num_dependents_deps.dev:0 github.com/ResourcefulHumans/meownica-web-fonts-loader,num_dependents_deps.dev:2 @@ -154638,6 +158257,7 @@ github.com/ResourcefulHumans/www,num_dependents_deps.dev:0 github.com/ResourcefulJS/ResourcefulJS,num_dependents_deps.dev:0 github.com/ResourcefulJS/ResourcefulJS-Express,num_dependents_deps.dev:0 github.com/ResourcefulJS/ResourcefulJS-NeDB,num_dependents_deps.dev:0 +github.com/Resourcely-Inc/resourcely-action, github.com/ResourcesCo/passport-gitea, github.com/Resousse/cloudrun-stay-awake, github.com/Respect/Rest,criticality_score:0.336160 @@ -154770,6 +158390,7 @@ github.com/Retinad/retinad,num_dependents_deps.dev:0 github.com/Retinad/videojs-vr-retinad,num_dependents_deps.dev:0 github.com/RetireJS/grunt-retire, github.com/RetireJS/retire.js,criticality_score:0.477670 +github.com/Retr0-01/better-discord-notification, github.com/Retrium/clocksync,num_dependents_deps.dev:0 github.com/Retrium/react-sharedb,num_dependents_deps.dev:0 github.com/Retrium/sharedb,num_dependents_deps.dev:0 @@ -154805,6 +158426,7 @@ github.com/Reusjs/ruler,num_dependents_deps.dev:0 github.com/Reutovsky/plury,num_dependents_deps.dev:0 github.com/Reutovsky/react-native-twitter-header,num_dependents_deps.dev:0 github.com/Reuynil/PacketReader, +github.com/RevBits/revbits-github-actions, github.com/RevCRM/revcrm,num_dependents_deps.dev:0 github.com/RevCRM/revcrm-base,num_dependents_deps.dev:0 github.com/RevEngine3r/RevUtilities, @@ -154864,6 +158486,7 @@ github.com/RevillWeb/rebel-router,num_dependents_deps.dev:0 github.com/RevillWeb/rebel-slide-menu,num_dependents_deps.dev:0 github.com/Revisolution/typed-redux-kit,num_dependents_deps.dev:0 github.com/ReviveNetwork/Revive-Stats.js,num_dependents_deps.dev:0 +github.com/ReviversMC/the-mod-index-validation, github.com/Revmaker/cl_rasa_components, github.com/Revmaker/innatis, github.com/RevoTechnology/revo-sdk-ruby,num_dependents_deps.dev:0 @@ -154902,6 +158525,7 @@ github.com/Rex-xx-glitch/Rexy-Gallery, github.com/Rex1911/compile-code,num_dependents_deps.dev:0 github.com/RexGalicie/generator-4-redux,num_dependents_deps.dev:0 github.com/RexGalilae/vasp_tools, +github.com/RexIturan/create-link-dropbox, github.com/RexMorgan/webpack-zepto,num_dependents_deps.dev:2 github.com/RexOps/Rex,criticality_score:0.468670 github.com/RexSheng/vue-common-rexsheng,num_dependents_deps.dev:0 @@ -154909,8 +158533,10 @@ github.com/RexSheng/vue-dialog-rexsheng,num_dependents_deps.dev:0 github.com/RexSheng/vue-http-rexsheng,num_dependents_deps.dev:0 github.com/RexYing/gnn-model-explainer,criticality_score:0.311110 github.com/Rexians/umapy, +github.com/Rexicon226/VerifierAction, github.com/Rexiduz/mq, github.com/Rexingleung/rx_demo_02,num_dependents_deps.dev:0 +github.com/Rexios80/flutter-tizen-action, github.com/Rexmen/i18n, github.com/Rexmen/shark561, github.com/RexterR/Exor,num_dependents_deps.dev:0 @@ -154920,6 +158546,7 @@ github.com/ReyHaynes/exchange-gdax-public-api,num_dependents_deps.dev:0 github.com/ReyPena/bootstrap-table-mobile,num_dependents_deps.dev:0 github.com/ReyPena/nanoScrollerJS,num_dependents_deps.dev:0 github.com/ReySun/console-in-dom,num_dependents_deps.dev:0 +github.com/ReyahSolutions/matrix-git-generator, github.com/ReycoDev/tradier-client,num_dependents_deps.dev:0 github.com/ReyhaneMasumi/mapbox-gl-draw-additional-tools,num_dependents_deps.dev:0 github.com/ReyhaneMasumi/mapbox-gl-draw-cut-polygon-mode,num_dependents_deps.dev:0 @@ -154942,6 +158569,7 @@ github.com/Rezenter/phys-const, github.com/Rezenter/shtRipper_cpp, github.com/Rezi/eq-grid,num_dependents_deps.dev:0 github.com/Rezi/svelte-gestures,num_dependents_deps.dev:0 +github.com/Rezilion/github-action, github.com/Rezillien/reglue,num_dependents_deps.dev:0 github.com/Rezmason/Golems,num_dependents_deps.dev:0 github.com/RezoChiang/node-mysqlhelper,num_dependents_deps.dev:0 @@ -154978,6 +158606,7 @@ github.com/Rhiino1/oengus.api.js, github.com/Rhinik/vk_bot, github.com/Rhinik/vkquick, github.com/RhinoCodes/Ebuilder, +github.com/RhinoCodes/wrangler2-action, github.com/RhinoSecurityLabs/pacu,criticality_score:0.368980 github.com/RhinocerosBomb/react-hooks-toaster, github.com/RhinocerosBomb/react-toaster,num_dependents_deps.dev:0 @@ -155003,6 +158632,7 @@ github.com/Rhodium24/rh24-webapp-sdk,num_dependents_deps.dev:0 github.com/RhodiumGroup/rhg_compute_tools, github.com/RhodiumToad/ip4r,Google github.com/Rhosys/ghost.js,num_dependents_deps.dev:0 +github.com/Rhosys/github-action-rebuild-pull-requests, github.com/Rhosys/openapi-explorer,num_dependents_deps.dev:0 github.com/Rhuagh/rhusics,num_dependents_deps.dev:0 github.com/Rhuagh/shrev-rs,num_dependents_deps.dev:123 @@ -155085,12 +158715,14 @@ github.com/RicardoJBarrios/kaikokeke, github.com/RicardoJunior/honey-git-flow,num_dependents_deps.dev:0 github.com/RicardoLR/demo-pip-sample, github.com/RicardoLimaDev/elearning-player-bridge,num_dependents_deps.dev:0 +github.com/RicardoMonteiroSimoes/CustomHookAction, github.com/RicardoNeves/ngx-dawn,num_dependents_deps.dev:0 github.com/RicardoPizano/basic-crud, github.com/RicardoPizano/django_basic_crud, github.com/RicardoQLG/compadd,num_dependents_deps.dev:0 github.com/RicardoValero95/graphql-voyager-fastify-plugin,num_dependents_deps.dev:0 github.com/RicardoVaranda/ics, +github.com/RicardoVelaC/42project-badge-action, github.com/Ricardoengithub/chessboardjsx-custom, github.com/Ricardokevins/EasyTransformer, github.com/Ricardolcm888/discord_error_handle, @@ -155104,8 +158736,10 @@ github.com/RiccardoCurcio/super-case-convertor-2000, github.com/RicciPierre/card-ricci,num_dependents_deps.dev:0 github.com/RicciPierre/ricci-CLI,num_dependents_deps.dev:0 github.com/Ricco1010/ricco, +github.com/Riccorl/conda-publish-action, github.com/Riccorl/nlp-dataset-readers, github.com/Riccorl/preprocessing-wrappers, +github.com/Riccorl/publish_conda_package_action, github.com/Riccorl/transformer-embedder, github.com/Riccorl/transformer-srl, github.com/Riccorl/transformers-embedder, @@ -155208,6 +158842,8 @@ github.com/RichardHightower/qbit,num_dependents_deps.dev:0 github.com/RichardHightower/slumberdb,num_dependents_deps.dev:7 github.com/RichardHpa/learnstorybook-design-system,num_dependents_deps.dev:0 github.com/RichardHpa/react-draft-js-editor,num_dependents_deps.dev:0 +github.com/RichardInnocent/semantic-versioning-git, +github.com/RichardInnocent/semantic-versioning-maven, github.com/RichardJECooke/hexo-fbcomments,num_dependents_deps.dev:0 github.com/RichardKnop/go-oauth2-server,criticality_score:0.303570 github.com/RichardKnop/machinery,"criticality_score:0.566780,num_dependents_deps.dev:8" @@ -155304,6 +158940,7 @@ github.com/Richi2293/react-native-timer-countdown,num_dependents_deps.dev:0 github.com/Richi2293/rn-falcon-app-intro,num_dependents_deps.dev:0 github.com/Richi2293/rn-falcon-orientation,num_dependents_deps.dev:0 github.com/RichiCoder1/jenkins-github-helpers,num_dependents_deps.dev:0 +github.com/RichiCoder1/kube-forward-action, github.com/RichiCoder1/vault-action,num_dependents_deps.dev:0 github.com/RichiH/vcsh,criticality_score:0.370580 github.com/Richie765/meteor-pg,num_dependents_deps.dev:0 @@ -155736,6 +159373,7 @@ github.com/Ridel1e/js-form-validator,num_dependents_deps.dev:0 github.com/Ridel1e/proxy-rc,num_dependents_deps.dev:0 github.com/RiderSx/node-etcd-watcher,num_dependents_deps.dev:0 github.com/Riderize/passport-strava-oauth2,num_dependents_deps.dev:0 +github.com/Ridermansb/firebase-action, github.com/Ridermansb/isomorphic-library,num_dependents_deps.dev:0 github.com/Ridermansb/ridermansb,num_dependents_deps.dev:0 github.com/Ridermansb/take-nponto,num_dependents_deps.dev:0 @@ -155831,6 +159469,7 @@ github.com/Riglerr/react-native-hr,num_dependents_deps.dev:0 github.com/Rignak/MightyMosaic, github.com/Rignak/PyplotAnnotation, github.com/RignonNoel/imailing, +github.com/Rigo-m/git-sync, github.com/RigottiG/calculator-ts,num_dependents_deps.dev:0 github.com/RigsMonitoring/rigcollector, github.com/RigsOfRods/rigs-of-rods,criticality_score:0.510180 @@ -156131,6 +159770,7 @@ github.com/RiseVision/Rise-SDK-Ruby,num_dependents_deps.dev:0 github.com/RiseVision/rise-js,num_dependents_deps.dev:0 github.com/RishBar/Lotide,num_dependents_deps.dev:0 github.com/Rishabh2801/NPM-gci,num_dependents_deps.dev:0 +github.com/Rishabh510/Path-lister-action, github.com/RishabhBhatnagar/algorhythms, github.com/RishabhBhatnagar/docxl, github.com/RishabhBhatnagar/mlp, @@ -156174,6 +159814,7 @@ github.com/Rishit-dagli/Perceiver, github.com/Rishit-dagli/TF-Watcher, github.com/Rishit-dagli/Transformer-in-Transformer, github.com/Rishk/django-user-fields, +github.com/RisingInIris2017/cjk-fonts-action, github.com/RisingOak/ec2audit, github.com/RisingOak/jenkins-client,num_dependents_deps.dev:2 github.com/RisingOak/launchbox, @@ -156216,6 +159857,7 @@ github.com/RiskChallenger/translation-validation, github.com/RiskIQ/pyyamlcfg, github.com/RiskLens/verispy, github.com/Risker-C/myFullPageLoading,num_dependents_deps.dev:0 +github.com/Riskified/action-conftest, github.com/Riskified/java_sdk,num_dependents_deps.dev:0 github.com/Riskified/timeasure,num_dependents_deps.dev:0 github.com/RissLee/buit, @@ -156321,6 +159963,7 @@ github.com/Rivela/rivelajs,num_dependents_deps.dev:0 github.com/RivenSkaye/rvsfunc, github.com/RiverMeadow/logsnada, github.com/RiverSafeUK/eze-cli, +github.com/RiverSafeUK/eze-docker-action, github.com/RiverSafeUK/eze-example-plugin, github.com/RiverTwilight/jianjia, github.com/RivercodeAB/facebook-conversion-api,num_dependents_deps.dev:0 @@ -156375,6 +160018,7 @@ github.com/Rjpdude/redux-pods,num_dependents_deps.dev:0 github.com/Rjpdude/twbs-react-grid, github.com/RkEclair/hyper-cherry-petals,num_dependents_deps.dev:0 github.com/Rkokie/homebridge-lutron-shades,num_dependents_deps.dev:0 +github.com/Rkverma94/sfdx-orgdev-build-deploy, github.com/Rleahy22/angularJsonEditor,num_dependents_deps.dev:0 github.com/Rleahy22/fredApi,num_dependents_deps.dev:0 github.com/Rleahy22/ng-contextual-help,num_dependents_deps.dev:0 @@ -156407,6 +160051,7 @@ github.com/RnbWd/quick-commit, github.com/RnbWd/wadata,num_dependents_deps.dev:0 github.com/RndPhrase/RndPhrase.js,num_dependents_deps.dev:0 github.com/RndPhrase/cubehash.js, +github.com/RndmCodeGuy20/GithubActionsGiphy, github.com/RnkeZ/ng2-currency-mask,num_dependents_deps.dev:0 github.com/Ro0tk1t/LibcSearcher3, github.com/Ro4z/react-native-animated-ellipsis,num_dependents_deps.dev:0 @@ -156500,6 +160145,7 @@ github.com/RoadieHQ/backstage-plugin-github-pull-requests, github.com/RoadieHQ/backstage-plugin-jira,num_dependents_deps.dev:0 github.com/RoadieHQ/backstage-plugin-security-insights, github.com/RoadieHQ/backstage-plugin-travis-ci, +github.com/RoadieHQ/roadie-tech-insights-action, github.com/Roadirsh/ngx-infinite-scroll,num_dependents_deps.dev:0 github.com/Roadmaster/forcediphttpsadapter, github.com/Roadmunk/JS,num_dependents_deps.dev:0 @@ -156519,6 +160165,11 @@ github.com/Roam-gg/RestCore, github.com/RoamIn/vue-custom-input,num_dependents_deps.dev:0 github.com/RoamIn/vue-pattern-input,num_dependents_deps.dev:0 github.com/Roang-zero1/factorio-changelog-creator, +github.com/Roang-zero1/factorio-create-release-action, +github.com/Roang-zero1/factorio-mod-luacheck, +github.com/Roang-zero1/factorio-mod-package, +github.com/Roang-zero1/github-create-release-action, +github.com/Roang-zero1/github-upload-release-artifacts-action, github.com/RoanixS2k12/es6-library,num_dependents_deps.dev:0 github.com/RoanokeControls/PkgUltrasonicUSBDemo, github.com/Roar-Song/noto-sans-kr-font,num_dependents_deps.dev:0 @@ -156678,6 +160329,7 @@ github.com/RobbieClarken/update-req-spec, github.com/Robbin-App/eslint-config, github.com/Robbin-App/prettier-config,num_dependents_deps.dev:0 github.com/Robbin-App/ui-kit-web,num_dependents_deps.dev:0 +github.com/RobbinBaauw/benchmark-action, github.com/RobbinBaauw/eslint-config,num_dependents_deps.dev:0 github.com/RobbinHabermehl/gulp-angular-templates,num_dependents_deps.dev:0 github.com/RobbinHabermehl/gulp-angular-translate,num_dependents_deps.dev:0 @@ -156761,6 +160413,7 @@ github.com/RobertFOConnor/react-native-number-ticker,num_dependents_deps.dev:0 github.com/RobertFOConnor/react-native-progress-wheel,num_dependents_deps.dev:0 github.com/RobertFainarea/cheerio-mapper,num_dependents_deps.dev:0 github.com/RobertFischer/check1.js,num_dependents_deps.dev:0 +github.com/RobertFischer/detect-secrets-action, github.com/RobertFischer/fetch-dns,num_dependents_deps.dev:0 github.com/RobertFischer/fun-promises, github.com/RobertFischer/randombytes-pure,num_dependents_deps.dev:0 @@ -156771,6 +160424,7 @@ github.com/RobertGrubb/needler,num_dependents_deps.dev:0 github.com/RobertGrubb/node-instascraper,num_dependents_deps.dev:0 github.com/RobertGrubb/twitchapi,num_dependents_deps.dev:0 github.com/RobertGrubb/webpack-s3-deployer,num_dependents_deps.dev:0 +github.com/RobertHLiu/robert-action-test-release-and-tags, github.com/RobertHerhold/IcedFrisby,num_dependents_deps.dev:0 github.com/RobertHerhold/boolean-json-joi-schema,num_dependents_deps.dev:0 github.com/RobertHerhold/boolean-json-prune,num_dependents_deps.dev:0 @@ -156816,6 +160470,7 @@ github.com/RobertLucey/road-collisions-ireland, github.com/RobertLucey/road-collisions-uk, github.com/RobertLucey/road-collisions-us, github.com/RobertLucey/via, +github.com/RobertLynJA/variable-substitution, github.com/RobertM574/pdfExport,num_dependents_deps.dev:0 github.com/RobertM905/wrap_dog,num_dependents_deps.dev:0 github.com/RobertMacauley/node-mssql-db-schema-generator,num_dependents_deps.dev:0 @@ -156829,6 +160484,7 @@ github.com/RobertMenke/event-light,num_dependents_deps.dev:0 github.com/RobertMenke/react-popover,num_dependents_deps.dev:0 github.com/RobertMenke/rm-emoji-picker,num_dependents_deps.dev:0 github.com/RobertMrowiec/SurpriseJS,num_dependents_deps.dev:0 +github.com/RobertMrowiec/URLs-checker, github.com/RobertMrowiec/repolisher,num_dependents_deps.dev:0 github.com/RobertMrowiec/surpriseJS-cors,num_dependents_deps.dev:0 github.com/RobertOlechowski/Jupyter-Style, @@ -157014,6 +160670,7 @@ github.com/RobinJQ/babel-plugin-debug-functions, github.com/RobinJayaswal/hubot-slack, github.com/RobinJayaswal/oldchatkit,num_dependents_deps.dev:0 github.com/RobinJayaswal/progress,num_dependents_deps.dev:0 +github.com/RobinJesba/GitHub-Labeler-Action, github.com/RobinJespersen/WunderPython, github.com/RobinKa/jaxga, github.com/RobinKa/tadiff,num_dependents_deps.dev:0 @@ -157159,6 +160816,7 @@ github.com/RobotSnacks/stout-orm,num_dependents_deps.dev:0 github.com/RobotSnacks/stout-schedule,num_dependents_deps.dev:0 github.com/RobotSnacks/stout-ui,num_dependents_deps.dev:0 github.com/RobotSnacks/stout-validators,num_dependents_deps.dev:0 +github.com/RobotSolar/review-gpt-action, github.com/RobotStudio/astronaut, github.com/RobotStudio/bors, github.com/RobotStudio/datalore, @@ -157210,6 +160868,7 @@ github.com/Robotois/robotois-servo-controller,num_dependents_deps.dev:0 github.com/Robotois/robotois-sound-sensor,num_dependents_deps.dev:0 github.com/Robotois/robotois-temperature-sensor,num_dependents_deps.dev:0 github.com/Robotois/robotois-ws2811,num_dependents_deps.dev:0 +github.com/RobotsAndPencils/1password-action, github.com/RobotsAndPencils/xcodes,criticality_score:0.342600 github.com/RobotsPlay/get-hidden-height,num_dependents_deps.dev:0 github.com/Roboy/sonosco, @@ -157227,6 +160886,7 @@ github.com/Robpol86/sphinx-imgur, github.com/Robpol86/sphinxcontrib-imgur, github.com/Robpol86/sphinxcontrib-versioning, github.com/Robpol86/terminaltables,Google +github.com/Robs-Organisation/Robs-action, github.com/Robsinco/ccprice,num_dependents_deps.dev:0 github.com/Robsonsjre/ethereum-connect-button,num_dependents_deps.dev:0 github.com/Robtom5/ distance_from_picture, @@ -157280,6 +160940,8 @@ github.com/RockFeng0/rtsf-http, github.com/RockFeng0/rtsf-locust, github.com/RockFeng0/rtsf-web, github.com/RockFeng0/rtsf-win, +github.com/RockLobster/archiving-upload-artifact, +github.com/RockLobster/unarchiving-download-artifact, github.com/RockProfile/Ansible-Output-Parser, github.com/RockRobotic/copc-lib, github.com/RockaLabs/botkit-testing,num_dependents_deps.dev:0 @@ -157301,6 +160963,7 @@ github.com/RocketChat/Rocket.Chat.Apps-ts-definition,num_dependents_deps.dev:0 github.com/RocketChat/Rocket.Chat.Electron,"criticality_score:0.598290,num_dependents_deps.dev:0" github.com/RocketChat/Rocket.Chat.Federation,num_dependents_deps.dev:0 github.com/RocketChat/Rocket.Chat.Fuselage,num_dependents_deps.dev:34 +github.com/RocketChat/Rocket.Chat.GitHub.Action.Notification, github.com/RocketChat/Rocket.Chat.Houston,num_dependents_deps.dev:0 github.com/RocketChat/Rocket.Chat.Livechat,num_dependents_deps.dev:0 github.com/RocketChat/Rocket.Chat.Ops,num_dependents_deps.dev:0 @@ -157311,6 +160974,8 @@ github.com/RocketChat/botkit-rocketchat-connector,num_dependents_deps.dev:0 github.com/RocketChat/botpress-channel-rocketchat,num_dependents_deps.dev:0 github.com/RocketChat/docs,criticality_score:0.597450 github.com/RocketChat/eslint-config-rocketchat,num_dependents_deps.dev:0 +github.com/RocketChat/ghpages-dynamic-badges-action, +github.com/RocketChat/github-vulnerabilities-jira-integration, github.com/RocketChat/google-analytics-plugin,num_dependents_deps.dev:0 github.com/RocketChat/hubot-natural,num_dependents_deps.dev:0 github.com/RocketChat/hubot-rocketchat,"criticality_score:0.462670,num_dependents_deps.dev:6" @@ -157369,6 +161034,7 @@ github.com/Rockhopper-Technologies/enlighten, github.com/Rockhopper-Technologies/jinxed, github.com/Rockhopper-Technologies/pluginlib, github.com/Rockhopper-Technologies/prefixed, +github.com/RockiRider/version-has-changed, github.com/RockinY/passport-alipay2,num_dependents_deps.dev:0 github.com/RockingRolli/meconf, github.com/RockingRolli/mongostick, @@ -157488,6 +161154,7 @@ github.com/Rodrigo1999/dynamic-react-grid,num_dependents_deps.dev:0 github.com/Rodrigo1999/my-fetcher,num_dependents_deps.dev:0 github.com/Rodrigo77777/react-native-signalr,num_dependents_deps.dev:0 github.com/RodrigoAPimentel/jabuti-environment-cli, +github.com/RodrigoAmaroEng/now-secure-uploader-action, github.com/RodrigoEspinosa/gitter-cli,num_dependents_deps.dev:0 github.com/RodrigoEspinosa/hapi-nunjucks-wrapper,num_dependents_deps.dev:0 github.com/RodrigoEspinosa/lookenv,num_dependents_deps.dev:0 @@ -157750,6 +161417,7 @@ github.com/RollinSafary/phaser3-i18n-plugin,num_dependents_deps.dev:0 github.com/RollinSafary/phaser3-ninepatch-plugin,num_dependents_deps.dev:0 github.com/RollingForm/rolling-form,num_dependents_deps.dev:0 github.com/RollingVersions/RollingVersions,num_dependents_deps.dev:0 +github.com/Rollingegg/feishu-robot-action, github.com/Rolltrax/bs-react-grid, github.com/Rolltrax/bs-react-table,num_dependents_deps.dev:0 github.com/Rolltrax/xlsxwriter-rs,num_dependents_deps.dev:0 @@ -157769,6 +161437,7 @@ github.com/Roma4ka-RedBad/brawlapi, github.com/RomaDev94/toaster,num_dependents_deps.dev:0 github.com/RomaTur/multi-install-modules,num_dependents_deps.dev:0 github.com/RomainCoudour/react-side-pane,num_dependents_deps.dev:0 +github.com/RomainEndelin/github-tag-action, github.com/RomainFleury/ngx-smile,num_dependents_deps.dev:0 github.com/RomainFrancony/webpack-boilerplate-cli,num_dependents_deps.dev:0 github.com/RomainGehrig/PDFCollate, @@ -157826,6 +161495,7 @@ github.com/RomanDashevsky/aslint-wrapper, github.com/RomanDashevsky/scraping-knife,num_dependents_deps.dev:0 github.com/RomanDashevsky/snippet-from-dom-element,num_dependents_deps.dev:0 github.com/RomanDashevsky/web-surfer-protocol,num_dependents_deps.dev:0 +github.com/RomanFama592/folder_mapping_action, github.com/RomanGorbatko/monk-rg,num_dependents_deps.dev:0 github.com/RomanGotsiy/branch-release,num_dependents_deps.dev:0 github.com/RomanHargrave/murmur-grpc-ruby,num_dependents_deps.dev:0 @@ -157857,7 +161527,11 @@ github.com/Romanchuk/angular-validation-message-i18next,num_dependents_deps.dev: github.com/Romanior/ember-intl-phone-input, github.com/Romanior/ember-ui-pagination,num_dependents_deps.dev:0 github.com/RomanistHere/preact-tilt,num_dependents_deps.dev:0 +github.com/RomanosTrechlis/actions-go-release, +github.com/RomanosTrechlis/actions-react-build-push, +github.com/RomanosTrechlis/actions-validate-yaml, github.com/RomanovMikeV/scorch, +github.com/Romanow/google-sheet-autograder-marker, github.com/Romanpavel/lodown,num_dependents_deps.dev:0 github.com/Romario5/LList,num_dependents_deps.dev:0 github.com/Romario5/UIBuilder,num_dependents_deps.dev:0 @@ -157900,6 +161574,7 @@ github.com/Rommeo85/app-ico,num_dependents_deps.dev:0 github.com/Rommeo85/rfg-config,num_dependents_deps.dev:0 github.com/Romms/bem-class-names-builder,num_dependents_deps.dev:0 github.com/Roms1383/commitlint-config-kroms,num_dependents_deps.dev:0 +github.com/Roms1383/emissary, github.com/Roms1383/eslint-config-kroms,num_dependents_deps.dev:0 github.com/Roms1383/generator-kroms,num_dependents_deps.dev:0 github.com/Roms1383/mesg-pusher,num_dependents_deps.dev:0 @@ -158077,6 +161752,7 @@ github.com/Rootre/forms-filtering-dropdown,num_dependents_deps.dev:0 github.com/Rootre/ftshp-michelangelo,num_dependents_deps.dev:0 github.com/RootstockMFG/rstk-sfdx-package-utils,num_dependents_deps.dev:0 github.com/RootstockMFG/rstk-sfdx-utils,num_dependents_deps.dev:0 +github.com/Rooyca/url-check-with-AUTH, github.com/RopePy/nip, github.com/RopeXJS/RopeX,num_dependents_deps.dev:0 github.com/RoqquPay/roqqupay-nodejs,num_dependents_deps.dev:0 @@ -158088,9 +161764,11 @@ github.com/RoryCombe/anyapi, github.com/RoryDuncan/great-animals,num_dependents_deps.dev:0 github.com/RoryDuncan/suki.js,num_dependents_deps.dev:0 github.com/RoryLetteney/rsl-js-footer,num_dependents_deps.dev:0 +github.com/RoryQ/checkmate, github.com/RoryStokes/ad-ts,num_dependents_deps.dev:0 github.com/RoryStokes/node-pulseaudio-client,num_dependents_deps.dev:0 github.com/RoryWirch/koji-channel-validator, +github.com/Rorychan/jira-releases-action, github.com/RosaeNLG/rosaenlg,num_dependents_deps.dev:5808 github.com/RosalindFranklinInstitute/rfi-downloader, github.com/RosalindFranklinInstitute/rfi-file-monitor, @@ -158100,6 +161778,7 @@ github.com/Rose-STL-Lab/torchTS, github.com/RoseAmelia/Easymongo, github.com/RoseEnd/address-picker,num_dependents_deps.dev:0 github.com/RoseKimball/emojis-db,num_dependents_deps.dev:0 +github.com/RoseSecurity-Research/packer-fmt, github.com/RosemarieLopHu/lim20181-Track-FE-markdown-list,num_dependents_deps.dev:0 github.com/Rosendito/nuxt-bulma-breakpoints,num_dependents_deps.dev:0 github.com/RosettaCommons/privileged_residues, @@ -158116,6 +161795,7 @@ github.com/Rosita222-bit/Indonesia-earthquake-monitoring, github.com/Roslovets-Inc/ckeditor5-build-strapi-wysiwyg,num_dependents_deps.dev:0 github.com/Roslovets-Inc/greenlock-proxy,num_dependents_deps.dev:0 github.com/Roslovets-Inc/strapi-plugin-ckeditor5,num_dependents_deps.dev:0 +github.com/Roslovets-Inc/zip-npm-files, github.com/Rosmerytp/project-node-npm, github.com/Ross-Hunter/jsonapi_expectations,num_dependents_deps.dev:0 github.com/Ross-Hunter/s3-unzipper,num_dependents_deps.dev:0 @@ -158134,10 +161814,13 @@ github.com/Rossb0b/nHTMLToPDF,num_dependents_deps.dev:0 github.com/Rossevv/LIM012-fe-md-links,num_dependents_deps.dev:0 github.com/Rosseyn/Gitsub,num_dependents_deps.dev:0 github.com/RossyWhite/hubot-island,num_dependents_deps.dev:0 +github.com/RossyWhite/setup-tfsubst, +github.com/RossyWhite/tfsubst, github.com/RostMyr/jConfig,num_dependents_deps.dev:0 github.com/RostMyr/jDispatch,num_dependents_deps.dev:0 github.com/RostanTabet/refery, github.com/RosterBuster/rn-zendesk,num_dependents_deps.dev:0 +github.com/RostiMelk/one.com-deployer, github.com/Rostlab/JS16_ProjectB_Group6,num_dependents_deps.dev:0 github.com/Rostlab/JS16_ProjectB_Group7,num_dependents_deps.dev:0 github.com/Rostlab/JS16_ProjectC_Group10,num_dependents_deps.dev:0 @@ -158167,6 +161850,8 @@ github.com/Rotimi-Best/city-country-timezone,num_dependents_deps.dev:0 github.com/Rotorsoft/event-store,num_dependents_deps.dev:0 github.com/Rotorsoft/firebase-authenticator,num_dependents_deps.dev:0 github.com/Rotorsoft/firebase-event-store,num_dependents_deps.dev:0 +github.com/Rotorsoft/semrel-analyze, +github.com/Rotorsoft/semrel-release, github.com/Rotten-LKZ/EasyJwt,num_dependents_deps.dev:0 github.com/Rotten-LKZ/RottenRichText,num_dependents_deps.dev:0 github.com/Rotten-LKZ/subtitle-parser,num_dependents_deps.dev:0 @@ -158301,6 +161986,7 @@ github.com/RoyalBingBong/exiftool-wrapper,num_dependents_deps.dev:0 github.com/RoyalBingBong/vdfplus,num_dependents_deps.dev:0 github.com/RoyalDeveloper2015/Cli-React-Page,num_dependents_deps.dev:0 github.com/RoyalDeveloper2015/TitledImage,num_dependents_deps.dev:0 +github.com/RoyalHaskoningDHV/wait-for-deployment-action, github.com/RoyalHunt/create-react-app,num_dependents_deps.dev:0 github.com/RoyalIcing/gateau,num_dependents_deps.dev:0 github.com/RoyalIcing/lofi-js,num_dependents_deps.dev:0 @@ -158332,6 +162018,8 @@ github.com/RphWbr/visiannot, github.com/Rplus/lazy-blur.js,num_dependents_deps.dev:0 github.com/Rplus/postcss-simple-trig,num_dependents_deps.dev:0 github.com/RpprRoger/packagify,num_dependents_deps.dev:0 +github.com/RpxdYTX/install-glfw-deps, +github.com/RpxdYTX/setup-cargo-bin, github.com/Rq0/django-report-builder, github.com/RryLee/vdeo,num_dependents_deps.dev:0 github.com/RsVijayTiwari/KrishnJS,num_dependents_deps.dev:0 @@ -158369,11 +162057,13 @@ github.com/RubaXa/require-fest,num_dependents_deps.dev:0 github.com/RubaXa/skeletik,num_dependents_deps.dev:0 github.com/RubanMaster/loopback,num_dependents_deps.dev:0 github.com/RubanSeven/MirrorMirror, +github.com/RubbaBoy/BYOB, github.com/RubbaBoy/NewOCR,num_dependents_deps.dev:0 github.com/RubberClucky/SIDD, github.com/Rubberduckycooly/Sonic-1-2-2013-Decompilation,criticality_score:0.370170 github.com/Rubberfate/mk312com, github.com/RubeRuby/vanillatree,num_dependents_deps.dev:0 +github.com/Rubemlrm/gh-check-last-release, github.com/Ruben-Arushanyan/desmos,num_dependents_deps.dev:0 github.com/Ruben-Arushanyan/exit-success,num_dependents_deps.dev:0 github.com/Ruben2776/PicView,criticality_score:0.388850 @@ -158417,6 +162107,8 @@ github.com/Rubendewit/fastify-redis-mock,num_dependents_deps.dev:0 github.com/Rubenknex/qtplot, github.com/Ruberto/countrify,num_dependents_deps.dev:0 github.com/RubiconInternational/gulp-mean-seed, +github.com/Rubilmax/foundry-gas-diff, +github.com/Rubilmax/foundry-storage-check, github.com/Rubilmax/peerpy, github.com/Rubinder25/Crypt-AES, github.com/Rubinder25/NodeCrypt,num_dependents_deps.dev:0 @@ -158425,6 +162117,9 @@ github.com/Rubinder25/NodeSimpleCli, github.com/Rubinder25/SimpleCLI,num_dependents_deps.dev:0 github.com/RubinderS/git-stash-staged,num_dependents_deps.dev:0 github.com/RubinlakeHQ/rl-node-sdk,num_dependents_deps.dev:0 +github.com/RubixDev/modrinth-auto-feature, +github.com/RubixDev/modrinth-upload, +github.com/RubixDev/read-properties, github.com/RubixML/ML,criticality_score:0.457720 github.com/Rubnyk/oone-login,num_dependents_deps.dev:0 github.com/RubtsovAV/jquery.maskedinput,num_dependents_deps.dev:0 @@ -158516,6 +162211,7 @@ github.com/Rudolph-Miller/redux-fetch-action,num_dependents_deps.dev:0 github.com/Rudrabha/Wav2Lip,criticality_score:0.340800 github.com/RudyComputing/microAeth-AE51-Ruby,num_dependents_deps.dev:0 github.com/RudyComputing/shopsense-ruby,num_dependents_deps.dev:0 +github.com/RueLaLa/auto-tagger, github.com/RueLaLa/optimizely-sync,num_dependents_deps.dev:0 github.com/RueLaLa/savory-pie, github.com/RuedigerMoeller/fast-serialization,"criticality_score:0.386550,num_dependents_deps.dev:1849" @@ -158537,6 +162233,7 @@ github.com/Rufflewind/index_queue,num_dependents_deps.dev:0 github.com/Rufflewind/synchrotron,num_dependents_deps.dev:0 github.com/Rufflewind/tokio-file-unix,num_dependents_deps.dev:1 github.com/Rufflewind/wigner-symbols-rs,num_dependents_deps.dev:0 +github.com/Rugal/local-veracode-scan-action, github.com/Rugal/spring-boot-feign-generator,num_dependents_deps.dev:0 github.com/Rugosh/jsonresume-theme-kendall-de,num_dependents_deps.dev:0 github.com/Rugvip/lerna-publish-experiment, @@ -158640,6 +162337,7 @@ github.com/RuneHistory/runehistoryjs,num_dependents_deps.dev:0 github.com/Runedia/winston-better-sqlite3-transport,num_dependents_deps.dev:0 github.com/RunestoneInteractive/RunestoneComponents, github.com/RunestoneInteractive/RunestoneServer,criticality_score:0.590390 +github.com/Rungutan/rungutan-actions, github.com/Rungutan/rungutan-cli, github.com/Rungutan/stackuchin, github.com/Rungutan/structlog-sentry-lambda, @@ -158723,6 +162421,7 @@ github.com/RuntimeTools/cloud-diagnostics,num_dependents_deps.dev:0 github.com/RuntimeTools/gencore,num_dependents_deps.dev:0 github.com/RuntimeTools/graphmetrics,num_dependents_deps.dev:0 github.com/RunxingZhong/stacking_automl_001, +github.com/RuochenFu21/compilation, github.com/Ruochenfu2011/Tuling123, github.com/Ruoyu-Klaus/react_simple_typist, github.com/Ruoyu-Klaus/react_typist,num_dependents_deps.dev:0 @@ -158750,6 +162449,7 @@ github.com/Rupsbant/bcsat,num_dependents_deps.dev:0 github.com/Rupsbant/prefix_opt,num_dependents_deps.dev:0 github.com/Rupsbant/tagged_ptr,num_dependents_deps.dev:0 github.com/RuralRouteSoftware/jIRClib,num_dependents_deps.dev:0 +github.com/Rurquhart/sceptre-action, github.com/Rurusetto/rurusetto-django-allauth, github.com/RusAlex/swparser,num_dependents_deps.dev:0 github.com/RusAnonym/rucaptcha-io,num_dependents_deps.dev:0 @@ -158997,10 +162697,12 @@ github.com/RvltDigital/ember-global-loader,num_dependents_deps.dev:0 github.com/RvltDigital/ember-layout, github.com/RvltDigital/ember-object-validator,num_dependents_deps.dev:0 github.com/RvltDigital/ember-promise-proxy,num_dependents_deps.dev:0 +github.com/RvuvuzelaM/ansible-cli-github-action, github.com/Rwanda-Coding-Academy/Valdie,num_dependents_deps.dev:0 github.com/RwbyChan/react-templates,num_dependents_deps.dev:0 github.com/Rwhytsell/react-multi-select,num_dependents_deps.dev:0 github.com/Rwing/node-csharp-random,num_dependents_deps.dev:0 +github.com/RwsTranslationTechnologies/LanguageWeaverCloudAction, github.com/Rwwwrl/database_installer, github.com/RxCEP/cepjs,num_dependents_deps.dev:0 github.com/RxJSInAction/rxjs-in-action,num_dependents_deps.dev:0 @@ -159031,6 +162733,7 @@ github.com/RxSwiftCommunity/RxSwiftExt,criticality_score:0.400200 github.com/Rxbsxn/Ember-cleave,num_dependents_deps.dev:0 github.com/Rxdey/postcss-px-to-viewport,num_dependents_deps.dev:0 github.com/Rxdey/vue-loading,num_dependents_deps.dev:0 +github.com/Rxinui/ssh-deploy-repo-action, github.com/Rxsto/komponents,num_dependents_deps.dev:0 github.com/Ry-Hebert/First-NPM-Package,num_dependents_deps.dev:0 github.com/Ry-yuan/ryuan,num_dependents_deps.dev:0 @@ -159173,6 +162876,8 @@ github.com/RyanMcG/git-fyncy,num_dependents_deps.dev:0 github.com/RyanMillerC/clogging, github.com/RyanMillerC/conlog, github.com/RyanMillerC/encase, +github.com/RyanModDev/mrpack-publish, +github.com/RyanModDev/quilted-dependabot, github.com/RyanMolyneux/WebsitePageFrame,num_dependents_deps.dev:0 github.com/RyanMullins/angular-hammer,num_dependents_deps.dev:0 github.com/RyanNerd/ember-cli-dom-observer,num_dependents_deps.dev:0 @@ -159194,6 +162899,7 @@ github.com/RyanRoll/you-cant-see-me,num_dependents_deps.dev:0 github.com/RyanRong/RongIM-React-Native,num_dependents_deps.dev:0 github.com/RyanSacha/BetterCounters,num_dependents_deps.dev:0 github.com/RyanScottLewis/haml-plain-loader,num_dependents_deps.dev:0 +github.com/RyanSiu1995/kubebuilder-action, github.com/RyanSusana/elepy-css,num_dependents_deps.dev:0 github.com/RyanSy/LIRI,num_dependents_deps.dev:0 github.com/RyanSylvestre/grunt-tasks-list,num_dependents_deps.dev:0 @@ -159230,7 +162936,9 @@ github.com/Ryanair/serverless-global-tables-plugin,num_dependents_deps.dev:0 github.com/Ryanb58/tdoc, github.com/Ryanc1256/connect-mysql,num_dependents_deps.dev:0 github.com/Ryandev/homebridge_ippower9258_light,num_dependents_deps.dev:0 +github.com/Ryang20718/merge-action, github.com/Ryanide/vue-select,num_dependents_deps.dev:0 +github.com/Ryank90/action-hugo-firebase-deploy, github.com/Ryanmtate/ethereum-go-ipc,num_dependents_deps.dev:0 github.com/RyannDaGreat/Quick-Python, github.com/Ryannnnnnn/vue-i18n-xgettext, @@ -159264,6 +162972,7 @@ github.com/Rynxiao/datepicker,num_dependents_deps.dev:0 github.com/Rynxiao/react-image,num_dependents_deps.dev:0 github.com/Rynxiao/react-scheduler,num_dependents_deps.dev:0 github.com/RyoHina/electron-is-running-in-asar2,num_dependents_deps.dev:0 +github.com/RyoJerryYu/notion-clipper-archiver, github.com/RyoNkmr/engines-checker,num_dependents_deps.dev:0 github.com/RyoNkmr/eslint-plugin-atomic-design,num_dependents_deps.dev:0 github.com/RyoNkmr/github-token-generator,num_dependents_deps.dev:0 @@ -159502,6 +163211,7 @@ github.com/SAP/contextual-ai, github.com/SAP/data-synthesis-for-machine-learning, github.com/SAP/eslint-plugin-openui5,num_dependents_deps.dev:0 github.com/SAP/feature-toggle-node, +github.com/SAP/fosstars-rating-core-action, github.com/SAP/fsm-shell, github.com/SAP/fundamental,"criticality_score:0.492620,num_dependents_deps.dev:0" github.com/SAP/fundamental-ngx,num_dependents_deps.dev:2 @@ -159528,6 +163238,7 @@ github.com/SAP/odata-library,num_dependents_deps.dev:0 github.com/SAP/openui5,"criticality_score:0.725510,num_dependents_deps.dev:8022" github.com/SAP/openui5-fhir,num_dependents_deps.dev:0 github.com/SAP/pipeline-dsl, +github.com/SAP/project-piper-action, github.com/SAP/project-sailor, github.com/SAP/pyhdb,Google github.com/SAP/python-pyodata, @@ -159581,6 +163292,7 @@ github.com/SATAY-LL/Transposonmapper, github.com/SATHISH357/sampleText,num_dependents_deps.dev:0 github.com/SATrek/EarthTrek,num_dependents_deps.dev:0 github.com/SAVE-POlNT/instantAPI, +github.com/SAn4Es-TV/renpy-build-action, github.com/SAnatoliiS/project-lvl2-s237,num_dependents_deps.dev:0 github.com/SArnab/react-number-textfield,num_dependents_deps.dev:0 github.com/SAshwinAchu10/audit-logger,num_dependents_deps.dev:0 @@ -159745,6 +163457,7 @@ github.com/SDR-VariableSelection/ADMMFTIRE, github.com/SDRACK/Trumbowyg,num_dependents_deps.dev:0 github.com/SDRausty/TermuxArch,criticality_score:0.347260 github.com/SDRausty/termux-archlinux,criticality_score:0.322240 +github.com/SDSC-ORD/shacl-validation-action, github.com/SDSWanderer/sequelize-transparent-cache,num_dependents_deps.dev:0 github.com/SDV-Plurimedia/ngx-generators,num_dependents_deps.dev:0 github.com/SDV-Plurimedia/ngx-widgets,num_dependents_deps.dev:0 @@ -159764,6 +163477,7 @@ github.com/SDuck4/type-hangul,num_dependents_deps.dev:0 github.com/SDxBacon/dates-helper-js,num_dependents_deps.dev:0 github.com/SDxBacon/node-sdl-parser, github.com/SE-Jr/tada.js,num_dependents_deps.dev:0 +github.com/SE06-Glasgow-University/lead-time-for-change-action, github.com/SE2018-Capstone/node-os-calls,num_dependents_deps.dev:0 github.com/SE2Dev/PyCoD,Google github.com/SE7ENSKY/cssjs,num_dependents_deps.dev:0 @@ -159871,10 +163585,15 @@ github.com/SFDO-Tooling/Snowfakery, github.com/SFDigitalServices/design-system,num_dependents_deps.dev:0 github.com/SFDigitalServices/formio-sfds,num_dependents_deps.dev:0 github.com/SFDigitalServices/sf-design-system,num_dependents_deps.dev:0 +github.com/SFDigitalServices/wait-for-deployment-action, github.com/SFEley/candy,num_dependents_deps.dev:0 github.com/SFEley/sinatra-flash,num_dependents_deps.dev:2 github.com/SFEley/sinatra-head,num_dependents_deps.dev:0 github.com/SFEley/sinatra-sessionography,num_dependents_deps.dev:0 +github.com/SFLScientific/IPYNB_to_MD, +github.com/SFLScientific/PresentTenseArgs, +github.com/SFLScientific/TODOandCommentedCodeCheck, +github.com/SFLScientific/spellcheck-github-actions, github.com/SFM61319/DyePy, github.com/SFML/SFML,criticality_score:0.568690 github.com/SFML/SFML.Net,criticality_score:0.354690 @@ -159920,6 +163639,7 @@ github.com/SG-WebDev/motion-pointer, github.com/SG2B/appmetrics-statsd-client, github.com/SG2B/db-migrate-mongodb,num_dependents_deps.dev:0 github.com/SG60/Notion-and-Google-Calendar-2-Way-Sync, +github.com/SG60/setup-poetry, github.com/SGBC/capture, github.com/SGCI/sgci-resource-clients, github.com/SGCMarketing/sgcConsole,num_dependents_deps.dev:0 @@ -159928,6 +163648,7 @@ github.com/SGGames/litegui.js,num_dependents_deps.dev:0 github.com/SGL-UT/GPSTk,criticality_score:0.475230 github.com/SGMAP-AGD/anonymisation, github.com/SGTulip023/cenzura,num_dependents_deps.dev:0 +github.com/SGURLY/goolge-cloud-composer-auto-deployment, github.com/SGWissInfo/sogl, github.com/SGevorg/aim-deploy, github.com/SGpp/SGpp, @@ -159975,6 +163696,7 @@ github.com/SHOUTCLOUD/SHOUTCLOUD_NODE, github.com/SHPE-UTDallas/sync-dotenv-slack,num_dependents_deps.dev:0 github.com/SHREYAS1188/vector_python_package, github.com/SHSharkar/LMVH,num_dependents_deps.dev:0 +github.com/SHSharkar/Laravel-Rsync-Deploy, github.com/SHTUPLUS/Venus, github.com/SHTrassEr/Estella.Core,num_dependents_deps.dev:0 github.com/SHUAI1317464601/mathcool, @@ -160208,6 +163930,7 @@ github.com/SMRT-WSU/cards, github.com/SMRuggiero/sbmltoodepy, github.com/SMRxT/auth0-sso-util,num_dependents_deps.dev:0 github.com/SMSAlert/API-Integration-Sample-Code-NODE-JS,num_dependents_deps.dev:0 +github.com/SMSAlert/smsalert, github.com/SMSEdge/API-NodeJs,num_dependents_deps.dev:0 github.com/SMSEdge/API-Python, github.com/SMTG-UCL/galore, @@ -160271,6 +163994,7 @@ github.com/SOF3/cube-engine,num_dependents_deps.dev:0 github.com/SOF3/dirmod,num_dependents_deps.dev:2 github.com/SOF3/include-flate,num_dependents_deps.dev:21 github.com/SOF3/matux,num_dependents_deps.dev:0 +github.com/SOF3/octodiff, github.com/SOF3/operator-sugar,num_dependents_deps.dev:0 github.com/SOF3/plugin-system,num_dependents_deps.dev:0 github.com/SOF3/posrel,num_dependents_deps.dev:0 @@ -160295,10 +164019,13 @@ github.com/SOFTWARE-CLINIC/featurebook-pdf,num_dependents_deps.dev:0 github.com/SOFTWARE-CLINIC/featurebook-serve,num_dependents_deps.dev:0 github.com/SOFTWARE-CLINIC/id-pl,num_dependents_deps.dev:0 github.com/SOFTWARE-CLINIC/identification-numbers-pl,num_dependents_deps.dev:0 +github.com/SOFYAIOFFICIAL/sofy-upload-github-actions, +github.com/SOFYDEVELOPER/sofy-app-upload-github-action, github.com/SOGUITECH/diffHours,num_dependents_deps.dev:0 github.com/SOHU-Co/kafka-node,"criticality_score:0.432580,num_dependents_deps.dev:335,num_dependents_deps.dev:314" github.com/SOHU-Co/redis-cache-proxy,num_dependents_deps.dev:0 github.com/SOLENO-API/solenolyrics,num_dependents_deps.dev:2 +github.com/SOLIDSoftworks/semver-tags, github.com/SOMSRICAT/grandmasomsri, github.com/SONGDONGYUAN1994/scsampler, github.com/SOOS-Pchen/reader, @@ -160310,6 +164037,7 @@ github.com/SOTETO/heureka-widget-navigation,num_dependents_deps.dev:0 github.com/SOTETO/heureka-widget-navigation-2021,num_dependents_deps.dev:0 github.com/SOUHARDYAADHIKARY1999/Face_rec_pip, github.com/SOUI2/soui,criticality_score:0.350980 +github.com/SOUNDBOKS/ghactions-mplabx-xc32, github.com/SOURAV-ROY/shadowizard,num_dependents_deps.dev:0 github.com/SOUTHSLALED/create-react-app,num_dependents_deps.dev:0 github.com/SOVLOOKUP/FastDocx, @@ -160360,6 +164088,7 @@ github.com/SPOpenSource/edgeconnect-python, github.com/SPQR-Informatik-GmbH/cups4j,num_dependents_deps.dev:2 github.com/SPRACE/python-odl, github.com/SPRAVEDLIVO/VK-SDK, +github.com/SPRK-global/register-deployments-elasticsearch-github-action, github.com/SPRNGSMMR/livereloadify-script,num_dependents_deps.dev:0 github.com/SPSCommerce/identity-service, github.com/SPSCommerce/py-mock-couchbase, @@ -160469,6 +164198,10 @@ github.com/SSTGroup/independent_vector_analysis, github.com/SSTIA/node-oauth-jaccount,num_dependents_deps.dev:0 github.com/SSUmunity/SandCastle,num_dependents_deps.dev:0 github.com/SSWConsulting/SSW.CodingStandards, +github.com/SSWConsulting/codeauditor-scan-site, +github.com/SSanjeevi/YouTube-Website, +github.com/SSanjeevi/YouTubeVideosAsPosts, +github.com/SSanjeevi/rss-to-blogger, github.com/SSharyk/customized-tree-view,num_dependents_deps.dev:0 github.com/SSharyk/encrypted-ticket,num_dependents_deps.dev:0 github.com/SSharyk/properties-mapper,num_dependents_deps.dev:0 @@ -160511,8 +164244,10 @@ github.com/STAMP-project/evosuite-ramp,num_dependents_deps.dev:2 github.com/STAMP-project/pitest-descartes,num_dependents_deps.dev:14 github.com/STAMP-project/pitmp-maven-plugin,num_dependents_deps.dev:0 github.com/STAMP-project/testrunner,num_dependents_deps.dev:24 +github.com/STAR-RG/shaker, github.com/STARRY-S/hikaru-generator-aplayer,num_dependents_deps.dev:0 github.com/STC-VoiceKey/stc-speechkit-android,num_dependents_deps.dev:0 +github.com/STDSuperman/deploy-files, github.com/STEELISI/DEW, github.com/STEIN197/ts-cookie, github.com/STEMPremier/celula,num_dependents_deps.dev:0 @@ -160617,6 +164352,7 @@ github.com/SUI-Components/babel-preset-schibsted-spain,num_dependents_deps.dev:2 github.com/SUI-Components/babel-standalone,num_dependents_deps.dev:0 github.com/SUI-Components/commit-release-manager,num_dependents_deps.dev:0 github.com/SUI-Components/docs-components,num_dependents_deps.dev:0 +github.com/SUI-Components/lighthouse-action, github.com/SUI-Components/rosetta,num_dependents_deps.dev:44 github.com/SUI-Components/sui,num_dependents_deps.dev:244 github.com/SUI-Components/sui-autocompleted, @@ -160763,6 +164499,7 @@ github.com/SaMuELToLoKo/homebridge-http-fan,num_dependents_deps.dev:0 github.com/SaW-/gulp-versioning-asset,num_dependents_deps.dev:0 github.com/SaadAhmedSiddiqui/Intrasonics-sdk,num_dependents_deps.dev:0 github.com/SaadAsif1/shadowwizard,num_dependents_deps.dev:0 +github.com/SaadBazaz/django-coveragepy-github-action, github.com/SaadMTSA/optimyze, github.com/SaadTalaat/Nodejs-Broker, github.com/SaadiKarim/ngx-mat-intl-tel-input, @@ -160837,6 +164574,7 @@ github.com/Saber2pr/gen-icon, github.com/Saber2pr/gen-index,num_dependents_deps.dev:0 github.com/Saber2pr/gen-less,num_dependents_deps.dev:0 github.com/Saber2pr/gen-pack,num_dependents_deps.dev:0 +github.com/Saber2pr/gh-pages-modules, github.com/Saber2pr/git,num_dependents_deps.dev:0 github.com/Saber2pr/github-edit,num_dependents_deps.dev:0 github.com/Saber2pr/highlight,num_dependents_deps.dev:0 @@ -160907,6 +164645,7 @@ github.com/Saber2pr/types-github-api,num_dependents_deps.dev:0 github.com/Saber2pr/use-reducer,num_dependents_deps.dev:0 github.com/Saber2pr/vscode-webview,num_dependents_deps.dev:0 github.com/Saber2pr/webpack-configer,num_dependents_deps.dev:0 +github.com/Saber2pr/wiki-builder, github.com/Saber2pr/yield,num_dependents_deps.dev:0 github.com/SaberElghoul/tui.image-editor, github.com/SaberOuarezzamen/awb-design,num_dependents_deps.dev:0 @@ -160946,6 +164685,8 @@ github.com/SachaZvetelman/vue-connection-aware,num_dependents_deps.dev:0 github.com/Sacharified/anagram-solver,num_dependents_deps.dev:0 github.com/Sacharified/videocontext-gif-source,num_dependents_deps.dev:0 github.com/Sachin-Kahandal/bselib, +github.com/Sachin-chaurasiya/PR-File-Change-Threshold-Comment, +github.com/Sachin-chaurasiya/hashnode-blog-action, github.com/SachinJadhav222/shadowsac,num_dependents_deps.dev:0 github.com/SachinShekhar/ngx-ssr-exclude,num_dependents_deps.dev:0 github.com/SachinShekhar/ss-ngrx-router-store,num_dependents_deps.dev:0 @@ -161070,6 +164811,7 @@ github.com/Safareli/magtifun,num_dependents_deps.dev:0 github.com/Safareli/slush-static,num_dependents_deps.dev:0 github.com/Safari92/readable-token,num_dependents_deps.dev:0 github.com/Safe-DEED/PSA,num_dependents_deps.dev:0 +github.com/SafeAndS0und/deploy-tracker-action, github.com/SafeChargeInternational/safecharge-node-js,num_dependents_deps.dev:0 github.com/SafeEval/graphyre, github.com/SafeGraphInc/flake8-safegraph-crawl, @@ -161362,10 +165104,13 @@ github.com/Sainan/Universal-Bypass,criticality_score:0.448380 github.com/Sainglend/tda-api-client,num_dependents_deps.dev:0 github.com/SainsburyWellcomeCentre/amap-python, github.com/SainsburyWellcomeCentre/btpytools, +github.com/Sainsburys/airwatch-schedule, +github.com/Sainsburys/airwatch-upload, github.com/Saint9/mario-vue,num_dependents_deps.dev:0 github.com/SaintAttila/infotags, github.com/SaintDako/node-email-verification,num_dependents_deps.dev:0 github.com/SaintMiner/privet-js,num_dependents_deps.dev:0 +github.com/Saionaro/extract-package-version, github.com/Saionaro/feanor, github.com/Saionaro/notefer,num_dependents_deps.dev:0 github.com/Saionaro/oxipng-node,num_dependents_deps.dev:0 @@ -161409,6 +165154,7 @@ github.com/SaitoTsutomu/unionfind, github.com/SaitoWu/grit_ext,num_dependents_deps.dev:0 github.com/Saiv46/node-protodef-neo,num_dependents_deps.dev:0 github.com/Sajandhakal12/nepali-calender-react,num_dependents_deps.dev:0 +github.com/Sajantoor/Notion-GitHub-Issues-Automation, github.com/SajayAntony/node-red-contrib-execute,num_dependents_deps.dev:0 github.com/Sajeenthiran/npmtest,num_dependents_deps.dev:0 github.com/Sajjal/SQLite_As_JSON, @@ -161437,6 +165183,8 @@ github.com/SakshamSingh-v2/Pygeclip, github.com/SakshayMahna/Notifier-Bot, github.com/Sakthivelgovindan/random-hex-color-generator, github.com/Saku117/saw-ui, +github.com/Sakul6499/GitHub-Action-Ansible, +github.com/Sakul6499/GitHub-Action-LaTeX, github.com/Sakuni/example-web-components,num_dependents_deps.dev:0 github.com/SakuraAsh/react-transform-control,num_dependents_deps.dev:0 github.com/SakuraBot-dev/Rumia,num_dependents_deps.dev:0 @@ -161565,6 +165313,7 @@ github.com/SalithaUCSC/basic-opts, github.com/SalithaUCSC/bmi-generator,num_dependents_deps.dev:0 github.com/Salk-Harnessing-Plants-Initiative/nsipptparser, github.com/Salkcid/BulkManager,num_dependents_deps.dev:0 +github.com/SallyBlichG/github-build-stats, github.com/SallySoul/camera_ss,num_dependents_deps.dev:0 github.com/Salman-Samian/location-changer-js,num_dependents_deps.dev:0 github.com/SalmanAA/wordifyfa,num_dependents_deps.dev:0 @@ -161747,6 +165496,7 @@ github.com/SamKChang/qctoolkit, github.com/SamKer/apidoc-plugin-specs,num_dependents_deps.dev:0 github.com/SamKirkland/FTP-Deploy-Action,criticality_score:0.399380 github.com/SamKirkland/ftp-deploy, +github.com/SamKirkland/web-deploy, github.com/SamKuper/backend-project-lvl2,num_dependents_deps.dev:0 github.com/SamKuper/project-lvl1-s454,num_dependents_deps.dev:0 github.com/SamLau95/expylain, @@ -161787,6 +165537,7 @@ github.com/SamSchott/maestral,criticality_score:0.477890 github.com/SamSchott/maestral-gui, github.com/SamSepi0l59/medikalnet, github.com/SamSteele01/tedis,num_dependents_deps.dev:0 +github.com/SamStephens/nanoc-build-pages, github.com/SamStonehouse/node-elasticsearch-test,num_dependents_deps.dev:0 github.com/SamStonehouse/node-mongo-mtg-card-models,num_dependents_deps.dev:0 github.com/SamTheOracle/healthychecks,num_dependents_deps.dev:0 @@ -161989,6 +165740,7 @@ github.com/SamirJouni/razzle-plugin-disable-sourcemaps,num_dependents_deps.dev:0 github.com/SamirL/bonfida-api-node, github.com/SamirL/easycrawler,num_dependents_deps.dev:0 github.com/SamirL/graphicsmagick-static,num_dependents_deps.dev:0 +github.com/SamirMarin/get-labels-action, github.com/SamirMitha/NotifyMe, github.com/SamirMoustafa/gym-embedding-world, github.com/SamirPS/News-Scrapper, @@ -162031,6 +165783,7 @@ github.com/Samnsparky/simple-table-refine,num_dependents_deps.dev:0 github.com/SamoSargisyan/array-to-string-converter,num_dependents_deps.dev:0 github.com/Samoray-l337/Stringiful,num_dependents_deps.dev:0 github.com/Samourai-Wallet/samourai-wallet-android,criticality_score:0.356030 +github.com/Samox/checkout-master-and-current, github.com/Samox/pycard, github.com/Samoy/react-native-badge-view,num_dependents_deps.dev:0 github.com/SampaioLeal/material-ui-numeric-input, @@ -162060,6 +165813,7 @@ github.com/Samridhi412/TOPSIS_Samridhi_101916086, github.com/Samridhi412/python_topsis_Samridhi_101916086, github.com/SamridhiGusain/TOPSIS, github.com/Samrodev/react-big-calendar,num_dependents_deps.dev:0 +github.com/Samseppiol/trial-github-action, github.com/Samsinite/broccoli-vendor,num_dependents_deps.dev:0 github.com/Samsomyajit/s-atmech, github.com/Samsung-IoT-Academy/mockquitto, @@ -162115,6 +165869,8 @@ github.com/SamuelBolduc/crashplan-logs,num_dependents_deps.dev:0 github.com/SamuelBolduc/log4js-wrapper,num_dependents_deps.dev:0 github.com/SamuelBolduc/socket-router-client,num_dependents_deps.dev:0 github.com/SamuelBolduc/socket-server,num_dependents_deps.dev:0 +github.com/SamuelCabralCruz/free-code-coverage, +github.com/SamuelCabralCruz/unresolved-review-threads, github.com/SamuelCahyawijaya/greenformer, github.com/SamuelCahyawijaya/indobenchmark-toolkit, github.com/SamuelCarliles2/soms,num_dependents_deps.dev:0 @@ -162369,7 +166125,9 @@ github.com/SandersForPresident/bootstrap,num_dependents_deps.dev:0 github.com/Sandersland/chromie, github.com/Sandersland/pylaunch, github.com/Sandglaz/maktoub,num_dependents_deps.dev:0 +github.com/SandiSopian/scratch-automate-semantic-release, github.com/SandiaPSL/UncertaintyCalc, +github.com/Sandiep/ESP_IDF_Build, github.com/Sandmann79/xbmc,criticality_score:0.447960 github.com/Sandon/compile-theme,num_dependents_deps.dev:0 github.com/Sandon/filter-dir,num_dependents_deps.dev:0 @@ -162567,7 +166325,9 @@ github.com/SanthoshRaju91/ci-server,num_dependents_deps.dev:0 github.com/SanthoshReddy97/smartapi-angelbroking,num_dependents_deps.dev:0 github.com/Santhoshkumard11/quickdataanalysis, github.com/SantiMA10/HomePi,num_dependents_deps.dev:0 +github.com/SantiMA10/streamdeck-action, github.com/Santiago-Barrios/Npm_package, +github.com/Santiago-Labs/telophase-action, github.com/Santiago-MG/captionbot.js,num_dependents_deps.dev:0 github.com/Santiago-MG/ordinales,num_dependents_deps.dev:0 github.com/Santiago-MG/reusing-calendars.js,num_dependents_deps.dev:0 @@ -162604,6 +166364,7 @@ github.com/Sapfir0/SwaggerCodeGenerator, github.com/Sapfir0/micropython-uploader, github.com/Sapfir0/premier-eye, github.com/Saphareas/Andor-Custom-Cards-Builder,num_dependents_deps.dev:0 +github.com/Saphareas/sign-web-extension-action, github.com/SapienML/template,num_dependents_deps.dev:0 github.com/SapientNitroLA/sugarcoat,num_dependents_deps.dev:0 github.com/Sapioweb/authentication,num_dependents_deps.dev:0 @@ -162620,6 +166381,7 @@ github.com/SaraAnnHall/533Lab4_SaraJustine, github.com/SaraIrving/lotide,num_dependents_deps.dev:0 github.com/SaraKate51115/lotide,num_dependents_deps.dev:0 github.com/SaraM92/Quantum-Circuit-Slicer, +github.com/SaraPrager/DockerBasedAction, github.com/SaraVieira/Capitalize,num_dependents_deps.dev:0 github.com/SaraVieira/Flexy,num_dependents_deps.dev:0 github.com/SaraVieira/babel-caralho,num_dependents_deps.dev:0 @@ -162800,6 +166562,7 @@ github.com/Satachito/jp-split,num_dependents_deps.dev:0 github.com/Satachito/jp-tree,num_dependents_deps.dev:0 github.com/Satachito/jp-tree-view,num_dependents_deps.dev:0 github.com/Satachito/serve-json,num_dependents_deps.dev:0 +github.com/Satak/webrequest-action, github.com/Satalia/solveengine-python-modeling-lib, github.com/SatanPanda/trackerjs,num_dependents_deps.dev:0 github.com/Satanpit/posthtml-bike,num_dependents_deps.dev:0 @@ -162855,6 +166618,7 @@ github.com/SatsumaLabs/react-native-typed-navigation,num_dependents_deps.dev:0 github.com/Saturate/grunt-information,num_dependents_deps.dev:0 github.com/Saturate/gulp-water,num_dependents_deps.dev:0 github.com/Saturate/mock-api-middleware,num_dependents_deps.dev:0 +github.com/Saturn745/HostListCompiler-Action, github.com/SaturnFramework/Saturn,criticality_score:0.432160 github.com/SaturnFromTitan/adobe_analytics, github.com/SaturnFromTitan/adwords_reports, @@ -162903,6 +166667,7 @@ github.com/SauloSilva/grunt-node-sprite-mixings, github.com/SauloSilva/redux-websocket, github.com/SauloSilva/sinatra-active-model-serializers,num_dependents_deps.dev:0 github.com/Sauloxd/css-analyser,num_dependents_deps.dev:0 +github.com/Sauloxd/review-apps, github.com/Saunalol/cssbeautify-cli,num_dependents_deps.dev:0 github.com/Saunalol/grunt-jsfuck,num_dependents_deps.dev:0 github.com/Saunved/animatecss-helper, @@ -162930,6 +166695,7 @@ github.com/SauravMaheshkar/RSNA-MICCAI, github.com/SauravMaheshkar/ResMLP-Flax, github.com/SauravMaheshkar/gMLP, github.com/SauravMaheshkar/sonix, +github.com/SauravP97/test-prgramming-problems, github.com/Sauron220/yx, github.com/SauronLee/meme_analysis, github.com/Saurox/GDAX-Fix-Client,num_dependents_deps.dev:0 @@ -162950,6 +166716,7 @@ github.com/SavanDev/cleanify-design,num_dependents_deps.dev:0 github.com/SavanaPointOfficial/sp-validators, github.com/SavannahHQ/savannahcrm-client-python, github.com/SavchenkoValeriy/react-table,num_dependents_deps.dev:0 +github.com/SavchenkoValeriy/setup-swift, github.com/Save-the-code/blockrc,num_dependents_deps.dev:0 github.com/SaveTheAles/cyber.py, github.com/SaveTheAles/cyberpy, @@ -163066,7 +166833,10 @@ github.com/ScOrPiU5/corner-ribbon,num_dependents_deps.dev:0 github.com/ScRiPt1337/argox, github.com/ScRiPt1337/back_music_player, github.com/ScRiPt1337/pyffuf, +github.com/ScaCap/action-ktlint, +github.com/ScaCap/action-surefire-report, github.com/ScaCap/chai-redux,num_dependents_deps.dev:0 +github.com/ScaCap/code-coverage-assistant, github.com/ScaCap/next-app-builder,num_dependents_deps.dev:0 github.com/ScaCap/spring-auto-restdocs,"criticality_score:0.403650,num_dependents_deps.dev:25" github.com/ScaDS/ORC-Schlange, @@ -163143,6 +166913,7 @@ github.com/Scalingo/scalingo-ruby-api,num_dependents_deps.dev:0 github.com/Scalingo/scalingo.js,num_dependents_deps.dev:0 github.com/Scalr/cloudbench, github.com/Scalr/pygohcl,num_dependents_deps.dev:0 +github.com/Scalr/scalr-action, github.com/Scalr/stackbench, github.com/ScanEx/Leaflet-IconLayers,num_dependents_deps.dev:0 github.com/ScanNet/ScanNet,Google @@ -163159,6 +166930,7 @@ github.com/ScarVite/Url-Shortener-MongoDB, github.com/ScarWar/winston-fast-rabbitmq,num_dependents_deps.dev:0 github.com/ScarWar/winston-rabbitmq, github.com/ScarboroughCoral/router-decorator-ts,num_dependents_deps.dev:0 +github.com/Scarbous/node-runner, github.com/ScaredIbis/merge-sequelize-options,num_dependents_deps.dev:0 github.com/Scaremonger/doodah, github.com/Scarface69420/nixonkurian,num_dependents_deps.dev:0 @@ -163184,6 +166956,7 @@ github.com/Scdales/is-not-even,num_dependents_deps.dev:0 github.com/Scdales/is-not-odd,num_dependents_deps.dev:0 github.com/Sceat/tap-spec-emoji,num_dependents_deps.dev:0 github.com/Sceptive/forgiva,num_dependents_deps.dev:0 +github.com/Sceptre/github-ci-action, github.com/Sceptre/sceptre,criticality_score:0.464180 github.com/Sceptre/sceptre-resolver-cmd, github.com/Scetch/rlstats-rs,num_dependents_deps.dev:0 @@ -163301,6 +167074,7 @@ github.com/SchnapsterDog/flexi-slider,num_dependents_deps.dev:0 github.com/SchnapsterDog/flexi-table, github.com/SchnapsterDog/flexi-timeline, github.com/SchneePingu/chikfactor, +github.com/Schneegans/dynamic-badges-action, github.com/SchneiderOr/simple-stackdriver,num_dependents_deps.dev:0 github.com/Schnitker/LogManager,num_dependents_deps.dev:0 github.com/Schnittcher/homebridge-ip-symcon,num_dependents_deps.dev:0 @@ -163332,8 +167106,10 @@ github.com/ScholarPack/awspy, github.com/ScholarPack/cookie-manager, github.com/ScholarPack/flask-api-tools, github.com/ScholarPack/flask-environment-manager, +github.com/ScholliYT/Broken-Links-Crawler-Action, github.com/ScholtenSeb/react-action,num_dependents_deps.dev:0 github.com/SchoofsKelvin/crdt-tree,num_dependents_deps.dev:0 +github.com/SchoofsKelvin/event-utilities, github.com/SchoofsKelvin/getprocesses,num_dependents_deps.dev:0 github.com/SchoofsKelvin/ip-matching,num_dependents_deps.dev:0 github.com/SchoofsKelvin/vscode-sshfs,criticality_score:0.337160 @@ -163352,6 +167128,7 @@ github.com/School-Improvement-Network/wrk-node, github.com/School-Yard/Card-Catalog, github.com/School-Yard/Recess, github.com/School-Yard/TrapperKeeper, +github.com/SchoolAI/action-lambda-python-zip, github.com/SchoolKeep/sktl_to_liquid,num_dependents_deps.dev:0 github.com/SchoolOrchestration/ProcessEngineV2, github.com/SchoolOrchestration/kongoauth, @@ -163397,6 +167174,7 @@ github.com/Schoutenk/ui5-middleware-proxy-basicauth,num_dependents_deps.dev:0 github.com/Schr3da/mapkitjs-token-gen,num_dependents_deps.dev:0 github.com/Schreibmann/react-native-simple-calendar,num_dependents_deps.dev:0 github.com/Schrodinger-Hat/ImageGoNord-pip, +github.com/Schrodinger-Hat/youtube-to-anchorfm, github.com/SchrodingerZhu/snmalloc-rs,num_dependents_deps.dev:3 github.com/SchrodingersGat/KiBom, github.com/SchroterQuentin/django-search-listview, @@ -163417,6 +167195,7 @@ github.com/SchwSimon/BinarySearchTree.js,num_dependents_deps.dev:0 github.com/SchwSimon/DoublyLinkedList.js,num_dependents_deps.dev:0 github.com/SchwSimon/FloatingNodes,num_dependents_deps.dev:0 github.com/SchwSimon/creatella-react-components,num_dependents_deps.dev:0 +github.com/Schwad/pronto-action-reek-fork, github.com/Schwaneberg/pymeterreader, github.com/Schwanksta/python-arcgis-rest-query, github.com/SchwarzIT/runs-on-stackit, @@ -163648,6 +167427,10 @@ github.com/ScottAgirs/Agi-React-Dropdown,num_dependents_deps.dev:0 github.com/ScottBouloutian/apiai-automatic,num_dependents_deps.dev:0 github.com/ScottBouloutian/cw-pipe,num_dependents_deps.dev:0 github.com/ScottBouloutian/homebridge-plugin-usbnet,num_dependents_deps.dev:0 +github.com/ScottBrenner/aws-cdk-action, +github.com/ScottBrenner/cfn-lint-action, +github.com/ScottBrenner/generate-changelog-action, +github.com/ScottBrenner/puppet-lint-action, github.com/ScottBrian/scottbrian_locking, github.com/ScottBrian/scottbrian_utils, github.com/ScottChapman/Watson-Work-Express,num_dependents_deps.dev:0 @@ -163657,6 +167440,7 @@ github.com/ScottDowne/simple-html-precompiler,num_dependents_deps.dev:0 github.com/ScottDuckworth/python-anyvcs, github.com/ScottEnock/react-typed.js,num_dependents_deps.dev:0 github.com/ScottFreeLLC/AlphaPy, +github.com/ScottG489/loglint-action, github.com/ScottGrun/lotdie,num_dependents_deps.dev:0 github.com/ScottHamper/Cookies,num_dependents_deps.dev:188 github.com/ScottHaney/file_data,num_dependents_deps.dev:0 @@ -163691,6 +167475,8 @@ github.com/ScottPolhemus/load-more,num_dependents_deps.dev:0 github.com/ScottPolhemus/scroll-in,num_dependents_deps.dev:0 github.com/ScottRadcliff/random-password-generator, github.com/ScottRoberts0/lotide,num_dependents_deps.dev:0 +github.com/ScottRocha/remove-dns-record, +github.com/ScottRocha/upsert-dns-record, github.com/ScottRudiger/eslint-config,num_dependents_deps.dev:0 github.com/ScottSavarie/react-canvas-color-picker,num_dependents_deps.dev:0 github.com/ScottSoren/EC_MS, @@ -163780,6 +167566,7 @@ github.com/ScreenPyHQ/screenpy_adapter_allure, github.com/ScreenPyHQ/screenpy_pyotp, github.com/ScreenPyHQ/screenpy_requests, github.com/ScreenPyHQ/screenpy_selenium, +github.com/Screenly/cli, github.com/Screenly/screenly-ose,criticality_score:0.583520 github.com/ScreenshotAPInet/node-sdk, github.com/ScreenshotMonitor/screenshot-monitor-capture,num_dependents_deps.dev:0 @@ -163788,12 +167575,19 @@ github.com/ScreepsPlus/node-agent,num_dependents_deps.dev:0 github.com/Screetsec/Sudomy,criticality_score:0.302380 github.com/ScrewTheTrees/TreeLib-WC3,num_dependents_deps.dev:0 github.com/Scribblerockerz/time-descriptor,num_dependents_deps.dev:0 +github.com/ScribeMD/docker-cache, +github.com/ScribeMD/pre-commit-action, +github.com/ScribeMD/rootless-docker, +github.com/ScribeMD/slack-templates, github.com/ScrimForever/normalizacao, github.com/Scrimmage/karma-slim-preprocessor,num_dependents_deps.dev:0 github.com/Scrip7/500px-api,num_dependents_deps.dev:0 github.com/Scrip7/simple-instagram-api,num_dependents_deps.dev:0 github.com/ScripTerasu/ngx-bootstrap-notify,num_dependents_deps.dev:0 github.com/Script47/Toast,num_dependents_deps.dev:0 +github.com/ScriptAPIOSS/bds-gametest-run-action, +github.com/ScriptAPIOSS/setup-bds-action, +github.com/ScriptAPIOSS/setup-resource-packs, github.com/ScriptArtist/PageTools,num_dependents_deps.dev:0 github.com/ScriptArtist/Scalable,num_dependents_deps.dev:0 github.com/ScriptHero/ui,num_dependents_deps.dev:0 @@ -163831,6 +167625,9 @@ github.com/Scrounger/ioBroker.linkeddevices,num_dependents_deps.dev:0 github.com/Scrounger/ioBroker.linux-control,num_dependents_deps.dev:0 github.com/Scrounger/ioBroker.sqlstatistics,num_dependents_deps.dev:0 github.com/Scrounger/ioBroker.vis-materialdesign,num_dependents_deps.dev:0 +github.com/Scrum/awesome-lint-action, +github.com/Scrum/awesome-readme-lint-double-link-action, +github.com/Scrum/awesome-readme-to-data-action, github.com/Scrum/get-cff, github.com/Scrum/postcss-map-get, github.com/Scrum/remark-lint-double-link, @@ -163838,6 +167635,8 @@ github.com/Scrum/rexios, github.com/Scrum/vue-2-breadcrumbs, github.com/Scrum/vue-axillo, github.com/Scrum/webpack-extension-manifest-plugin, +github.com/ScrumWorks/github-actions-aws-task-cleaner, +github.com/ScrumWorks/github-actions-workflow-expect, github.com/Scrumplex/Implify,num_dependents_deps.dev:0 github.com/Scrumpyy/WaifuPics4Python, github.com/Scrumpyy/WaifuPicsPython, @@ -163962,6 +167761,7 @@ github.com/SeanBlend/SeanBlendModule, github.com/SeanBrum/React-Responsive-Window,num_dependents_deps.dev:0 github.com/SeanCPP/easydollar, github.com/SeanCannon/fpure,num_dependents_deps.dev:0 +github.com/SeanChao/clear-iptables, github.com/SeanCox/psvr-game-list,num_dependents_deps.dev:0 github.com/SeanDS/datalog, github.com/SeanDS/pinto, @@ -164003,6 +167803,7 @@ github.com/SeanNieuwoudt/wobbly,num_dependents_deps.dev:0 github.com/SeanOC/humus, github.com/SeanPedersen/HyperTag, github.com/SeanPhilippi/aca-dash,num_dependents_deps.dev:0 +github.com/SeanReece/pr-reporter-slack, github.com/SeanRobb/nemchina-api-node,num_dependents_deps.dev:0 github.com/SeanSRice/SeansPipTest, github.com/SeanSRice/SeansPipTest2, @@ -164075,6 +167876,7 @@ github.com/SebFlippence/get-macos-notifications,num_dependents_deps.dev:0 github.com/SebKuzminsky/pycam,criticality_score:0.354240 github.com/SebMilardo/pychoropleth, github.com/SebOuellette/LiveBot,criticality_score:0.342240 +github.com/SebRollen/toml-action, github.com/SebSchwartz/node-max7219-led-matrix,num_dependents_deps.dev:0 github.com/SebSzcze/event-bus,num_dependents_deps.dev:0 github.com/SebTota/Node-Google-Resumable-Upload,num_dependents_deps.dev:0 @@ -164090,6 +167892,7 @@ github.com/SebastBake/h,num_dependents_deps.dev:0 github.com/SebastBake/pleb-component,num_dependents_deps.dev:0 github.com/SebastiaanBij/log.py, github.com/SebastiaanKlippert/go-wkhtmltopdf,"criticality_score:0.352420,num_dependents_deps.dev:0" +github.com/SebastiaanZ/github-status-embed-for-discord, github.com/Sebastian-Fitzner/generator-veams,num_dependents_deps.dev:0 github.com/Sebastian-Fitzner/grunt-data-separator,num_dependents_deps.dev:0 github.com/Sebastian-Fitzner/grunt-image-size-export,num_dependents_deps.dev:0 @@ -164187,6 +167990,7 @@ github.com/SebastienElet/get-domain-from-url,num_dependents_deps.dev:0 github.com/SebastienElet/metapak-sebastienelet,num_dependents_deps.dev:0 github.com/SebastienEveno/molecule-parser, github.com/SebastienFPRousseau/handypixi,num_dependents_deps.dev:0 +github.com/SebastienGllmt/chrome-addon, github.com/SebastienGllmt/eslint-plugin-no-floating-promise, github.com/SebastienPittet/demo-webapp, github.com/SebastienTainon/microbundle, @@ -164200,6 +168004,7 @@ github.com/Sebbia/figma-design-tokens,num_dependents_deps.dev:0 github.com/Sebbia/object-deserializer,num_dependents_deps.dev:0 github.com/Sebbia/sentry-release-cli,num_dependents_deps.dev:0 github.com/Sebelino/SL-CLI, +github.com/Sebelino/action-dirname, github.com/SebestikCZ/quick-mariadb, github.com/Sebi55/chartit,num_dependents_deps.dev:0 github.com/SebiSebi/DataMine, @@ -164234,9 +168039,11 @@ github.com/Secbone/koa-session2,num_dependents_deps.dev:6 github.com/Secbone/koa-static2,num_dependents_deps.dev:0 github.com/Secbone/py_publish_test, github.com/Secbone/react-eventable,num_dependents_deps.dev:0 +github.com/Secbyte/dotnet-sonarscanner, github.com/SecexSaudeTCU/pegasus, github.com/SecondCloset/mobile-components,num_dependents_deps.dev:0 github.com/SecondStreetDevelopment/ebayapi,num_dependents_deps.dev:0 +github.com/SecondThundeR/action, github.com/Secondi/tinyperson, github.com/SecousseClama/yieldlab-uikit,num_dependents_deps.dev:0 github.com/Secozzi/CASPy, @@ -164285,6 +168092,20 @@ github.com/Secullum/secullum-react-native-ui,num_dependents_deps.dev:0 github.com/Secullum/secullum-react-ui,num_dependents_deps.dev:0 github.com/Secuoyas-Experience/gatsby-plugin-leadfeeder, github.com/SecureAuthCorp/impacket,criticality_score:0.583820 +github.com/SecureCodeWarrior/github-action-add-sarif-contextual-training, +github.com/SecureHats/JsonTo-Variable, +github.com/SecureHats/Kusto-ToArm, +github.com/SecureHats/YamlTo-Arm, +github.com/SecureHats/custom-logs, +github.com/SecureHats/kusto-alias, +github.com/SecureHats/validate-detections, +github.com/SecureStackCo/actions-abom, +github.com/SecureStackCo/actions-all-in-one, +github.com/SecureStackCo/actions-code, +github.com/SecureStackCo/actions-exposure, +github.com/SecureStackCo/actions-log4j, +github.com/SecureStackCo/actions-sbom, +github.com/SecureStackCo/actions-secrets, github.com/SecureTrading/js-payment-card,num_dependents_deps.dev:0 github.com/SecureTrading/js-payments-card,num_dependents_deps.dev:0 github.com/SecureTrading/js-payments-utils,num_dependents_deps.dev:0 @@ -164302,6 +168123,7 @@ github.com/SecurityInsanity/text-to-polly-ssml,num_dependents_deps.dev:0 github.com/SecurityRiskAdvisors/VECTR,criticality_score:0.326510 github.com/SecurityRiskAdvisors/sra-stix2-validator,num_dependents_deps.dev:0 github.com/SecurityRiskAdvisors/sra-taxii2-server-model,num_dependents_deps.dev:0 +github.com/SeddonShen/setup-btormc, github.com/Sedona-Solutions/create-react-app,num_dependents_deps.dev:0 github.com/Sedona-Solutions/eslint-config-sedona, github.com/SedovArtem/Uploader.Forpost,num_dependents_deps.dev:0 @@ -164432,6 +168254,7 @@ github.com/Sekhmet/eslint-plugin-file-header,num_dependents_deps.dev:0 github.com/Sekhmet/lightrpc,num_dependents_deps.dev:0 github.com/SekibOmazic/angular2-kaltura,num_dependents_deps.dev:0 github.com/SekibOmazic/myoo,num_dependents_deps.dev:0 +github.com/SekoiaLab/github-actions-mattermost-post, github.com/SekouD/lyricsmaster, github.com/SekouD/mlconjug, github.com/SekouD/potranslator, @@ -164666,6 +168489,7 @@ github.com/Semprini/drf-nest, github.com/Sempro/git-flow-versionbumping,num_dependents_deps.dev:0 github.com/Sempro/guesthouse,num_dependents_deps.dev:0 github.com/Sempro/vue-url-parameters,num_dependents_deps.dev:0 +github.com/SemraSh/test-detect-secrets, github.com/Semro/syncwatch,num_dependents_deps.dev:0 github.com/Sen-Gupta/lit-element-template-generator,num_dependents_deps.dev:0 github.com/SenLiangpi/Amx,num_dependents_deps.dev:0 @@ -164887,6 +168711,7 @@ github.com/Seokky/vue-number-smarty,num_dependents_deps.dev:0 github.com/Seokky/vue-pincode-input,num_dependents_deps.dev:0 github.com/Seokky/vuetify-number-smarty,num_dependents_deps.dev:0 github.com/SeokminHong/korsubset, +github.com/SeokminHong/pages-action, github.com/Seol7523/SimpleMaze, github.com/SeolHa314/pypapagotranslate, github.com/SeolJaeHyeok/Hooks-jh,num_dependents_deps.dev:0 @@ -164909,6 +168734,8 @@ github.com/SeongBrave/gckit, github.com/Seongbeom-Park/MockMyTest,num_dependents_deps.dev:0 github.com/SeonghoJin/jypescript,num_dependents_deps.dev:0 github.com/SeonghoJin/typejnu, +github.com/Sep0lkit/git-issues-blog, +github.com/SepVeneto/sync-npmmirror-action, github.com/SeparateRecords/Syntags, github.com/SeparateRecords/catalist,num_dependents_deps.dev:0 github.com/SeparateRecords/intflags, @@ -164973,6 +168800,7 @@ github.com/Serabe/ember-bind-helper, github.com/Serabe/ember-deadpool,num_dependents_deps.dev:0 github.com/Serabe/stencil-barcode,num_dependents_deps.dev:0 github.com/Serabe/stencil-test-helpers, +github.com/Serac-Technologies/Github-Merge-Tag, github.com/Seraf/lisa-plugins-test, github.com/Seraf/numeter-vera-modules, github.com/Serafim-V/slug,num_dependents_deps.dev:0 @@ -165100,6 +168928,7 @@ github.com/Serena7423/seo-detector,num_dependents_deps.dev:0 github.com/Serendipias/object_get,num_dependents_deps.dev:0 github.com/Serendipity-AI/email-butler,num_dependents_deps.dev:0 github.com/SerenityOS/serenity,criticality_score:0.634240 +github.com/SerenityOS/setup-jakt, github.com/SerenitySoftware/paymentech, github.com/SerenitySoftwareLLC/cahoots, github.com/SerenitySoftwareLLC/serene-registry, @@ -165126,6 +168955,7 @@ github.com/SergeBayet/card,num_dependents_deps.dev:0 github.com/SergeBayet/cli-nager,num_dependents_deps.dev:0 github.com/SergeChurkin-ca/lotide,num_dependents_deps.dev:0 github.com/SergeDmi/Python-Tools, +github.com/SergeNarhi/helm-deploy, github.com/SergeOlabin/keypress-handler,num_dependents_deps.dev:0 github.com/SergeRNR/i18n-node,num_dependents_deps.dev:0 github.com/SergeRodriguez/lotide,num_dependents_deps.dev:0 @@ -165177,6 +169007,7 @@ github.com/SergeyMokeyev/soku, github.com/SergeyMyssak/nextjs-sitemap,num_dependents_deps.dev:0 github.com/SergeyMyssak/swipeable-bottom-sheet,num_dependents_deps.dev:0 github.com/SergeyPirogov/allure-cmd, +github.com/SergeyPirogov/playwright-to-slack-action, github.com/SergeyPirogov/webdriver_manager,criticality_score:0.483770 github.com/SergeyPish/nodebb-plugin-composer-default, github.com/SergeyPodolyak2018/gulp-elevator,num_dependents_deps.dev:0 @@ -165262,6 +169093,7 @@ github.com/SergiusIW/collider-rs,num_dependents_deps.dev:0 github.com/SergiusIW/gate,num_dependents_deps.dev:0 github.com/SergiusIW/noisy_float-rs,num_dependents_deps.dev:27 github.com/SergiusTheBest/plog,criticality_score:0.443420 +github.com/SergkeiM/helm-deploy, github.com/SergoZheludkov/frontend-project-lvl1,num_dependents_deps.dev:0 github.com/Serguei-P/http,num_dependents_deps.dev:0 github.com/Serguei-P/test-utils,num_dependents_deps.dev:0 @@ -165277,6 +169109,7 @@ github.com/Serhey/nodebb-plugin-ns-slugify-fixed-on-edit,num_dependents_deps.dev github.com/Serhey/nodebb-plugin-sso-vk-test,num_dependents_deps.dev:0 github.com/Serhg94/asyncio-context, github.com/Serhg94/rlog_async, +github.com/SerhiiKa/VuePagesAction, github.com/SerhiiKundys/text-percentage-difference,num_dependents_deps.dev:0 github.com/SerhiiM/ng-simple-table, github.com/Serhioromano/bootstrap-calendar,"criticality_score:0.414390,num_dependents_deps.dev:0" @@ -165331,6 +169164,7 @@ github.com/SertoID/didconf,num_dependents_deps.dev:0 github.com/SertoID/serto-ui,num_dependents_deps.dev:0 github.com/SertoID/vc-schema-tools,num_dependents_deps.dev:0 github.com/SertyOan/Oyat,num_dependents_deps.dev:0 +github.com/Serubin/labeler, github.com/ServUO/ServUO,criticality_score:0.523710 github.com/ServeRest/ServeRest, github.com/Server-Eye/bucket-collector,num_dependents_deps.dev:0 @@ -165354,6 +169188,23 @@ github.com/Servian-NZ-MLOPS/servian_vertex_components, github.com/ServiceComb/java-chassis,num_dependents_deps.dev:3188 github.com/ServiceMashup/lc-sdk-node.js,num_dependents_deps.dev:0 github.com/ServiceNow/PySNC, +github.com/ServiceNow/servicenow-devops-change, +github.com/ServiceNow/servicenow-devops-get-change, +github.com/ServiceNow/servicenow-devops-register-artifact, +github.com/ServiceNow/servicenow-devops-register-package, +github.com/ServiceNow/servicenow-devops-security-result, +github.com/ServiceNow/servicenow-devops-sonar, +github.com/ServiceNow/servicenow-devops-test-report, +github.com/ServiceNow/servicenow-devops-update-change, +github.com/ServiceNow/sncicd-apply-changes, +github.com/ServiceNow/sncicd-batch-install, +github.com/ServiceNow/sncicd-install-app, +github.com/ServiceNow/sncicd-instance-scan, +github.com/ServiceNow/sncicd-plugin-activate, +github.com/ServiceNow/sncicd-plugin-rollback, +github.com/ServiceNow/sncicd-publish-app, +github.com/ServiceNow/sncicd-rollback-app, +github.com/ServiceNow/sncicd-tests-run, github.com/ServiceRocket/fast-release-notes,num_dependents_deps.dev:0 github.com/ServiceRocket/provision-dynamodb,num_dependents_deps.dev:0 github.com/ServiceStack/Issues,num_dependents_deps.dev:0 @@ -165407,6 +169258,7 @@ github.com/SetaSouto/winston-namespace,num_dependents_deps.dev:0 github.com/Setar-Bot/Setar-Bot,num_dependents_deps.dev:0 github.com/Setasign/FPDI,criticality_score:0.376200 github.com/SeteMares/vue-mapkit,num_dependents_deps.dev:0 +github.com/SethCohen/github-releases-to-discord, github.com/SethDavenport/fgeo,num_dependents_deps.dev:0 github.com/SethDavenport/moonads,num_dependents_deps.dev:0 github.com/SethDavenport/ng2-redux-select, @@ -165465,6 +169317,8 @@ github.com/Setsun/react-spring-components,num_dependents_deps.dev:0 github.com/Setsun/react-three-hooks,num_dependents_deps.dev:0 github.com/Setsun/react-three-player,num_dependents_deps.dev:0 github.com/Setsun/react-transition-components,num_dependents_deps.dev:0 +github.com/Sett17/gomarkdoc-action, +github.com/SettingDust/publish-firefox-addon-action, github.com/SettleAPI/settle-sdk-node,num_dependents_deps.dev:0 github.com/SettleFinance/DEXAG-SDK,num_dependents_deps.dev:0 github.com/SettleFinance/Settle-SDK-Python, @@ -165475,11 +169329,14 @@ github.com/Seun-O/ts-web,num_dependents_deps.dev:0 github.com/SeunLanLege/vscode-action-buttons,num_dependents_deps.dev:0 github.com/SeunMatt/backup-mongodb,num_dependents_deps.dev:0 github.com/SeunMatt/backup-mongodb-restorer,num_dependents_deps.dev:0 +github.com/Seung-o/AutoRebase, +github.com/Seung-o/sync-jira-github-action, github.com/SeungBack/easy_tcp_python2_3, github.com/SeungBack/open3d-ros-helper, github.com/SeungKiLeeCS/Javascript-Data-Structure,num_dependents_deps.dev:0 github.com/SeungUkLee/pps, github.com/SeungUkLee/travis-practice, +github.com/Seungmin-develop/multi-version-control-action, github.com/Seungwoo321/korbit-node-client,num_dependents_deps.dev:0 github.com/Seungwoo321/vue-datamaps,num_dependents_deps.dev:0 github.com/Seungwoo321/vue-pivot,num_dependents_deps.dev:0 @@ -165589,6 +169446,7 @@ github.com/SeydX/homebridge-yi-camera,num_dependents_deps.dev:0 github.com/SeydX/node-journalctl,num_dependents_deps.dev:0 github.com/SeydX/node-rtsp-stream,num_dependents_deps.dev:0 github.com/SeyedSaeidDehghani/VoiPy, +github.com/SeyfSV/setup-mqclient, github.com/Seyij/norman, github.com/Seyronh/toxicity,num_dependents_deps.dev:0 github.com/Seysa/japscandl,num_dependents_deps.dev:0 @@ -165614,6 +169472,7 @@ github.com/Sgemini/slibrary,num_dependents_deps.dev:0 github.com/Sgeo/hlist,num_dependents_deps.dev:0 github.com/Sgeo/take_mut,"Google,num_dependents_deps.dev:1034" github.com/Sghazzawi/Node-Netflowd,num_dependents_deps.dev:0 +github.com/Sgitario/setup-container-registry, github.com/SgtClubby/lookatmysco.re,num_dependents_deps.dev:0 github.com/SgtFlame/aurelia-bootstrap-fix,num_dependents_deps.dev:0 github.com/SgtHoloToaster/datatables-knockout-binding,num_dependents_deps.dev:0 @@ -165639,8 +169498,12 @@ github.com/ShMcK/test-context, github.com/ShPakvel/simple_navigation_renderers,num_dependents_deps.dev:0 github.com/ShPelles/rx-if, github.com/ShPelles/ts-null-safe,num_dependents_deps.dev:0 +github.com/Sha-code/standard-version_action, github.com/Sha4ek/CoffeePaginator, github.com/ShaKann/angular-unsavedChanges,num_dependents_deps.dev:0 +github.com/ShaMan123/gha-form-dropdown-options, +github.com/ShaMan123/gha-populate-form-version, +github.com/ShaMan123/lcov-reporter-action, github.com/ShaMan123/react-math-view, github.com/ShaMan123/react-native-math-view,num_dependents_deps.dev:0 github.com/ShaMan123/react-native-reanimated-canvas,num_dependents_deps.dev:0 @@ -165778,6 +169641,7 @@ github.com/Shahor/Numparser,num_dependents_deps.dev:0 github.com/Shahor/dingdingdong,num_dependents_deps.dev:0 github.com/Shahor/lel, github.com/Shahprogrammer/Django-CryptographicFields, +github.com/ShahradR/action-taskcat, github.com/ShahriarSayeed/react-date-pagination,num_dependents_deps.dev:0 github.com/ShahriatHossain/react-reusable-table-support, github.com/ShahriatHossain/react-reusable-tabs-support,num_dependents_deps.dev:0 @@ -165788,10 +169652,12 @@ github.com/ShahrozTanveer/covid19-pakistan,num_dependents_deps.dev:0 github.com/ShahrozTanveer/create-exnode-app,num_dependents_deps.dev:0 github.com/Shahrukh0396/Business-Card,num_dependents_deps.dev:0 github.com/ShahzaibMumtaz07/django_drf_jwt, +github.com/Shahzainali/ios-build-action, github.com/ShaiLesh-Haldankar/sh-fifth-lib,num_dependents_deps.dev:0 github.com/ShaiMesisterano/BlindJS,num_dependents_deps.dev:0 github.com/ShaiYer/trga-analytics,num_dependents_deps.dev:0 github.com/ShaiYer/trga-css-driven-events,num_dependents_deps.dev:0 +github.com/ShaidK/Snowflake, github.com/Shail-Shouryya/yt_videos_list,num_dependents_deps.dev:0 github.com/ShailChoksi/lichess-bot,criticality_score:0.383360 github.com/ShailenNaidoo/covid19,num_dependents_deps.dev:0 @@ -165851,6 +169717,7 @@ github.com/ShallweXiaowei/earning, github.com/ShallweXiaowei/intraday, github.com/Shallyin83/react-foundation-modal,num_dependents_deps.dev:0 github.com/ShalmaliRoy/service-discovery-pcf,num_dependents_deps.dev:0 +github.com/ShamKarthikS-Hexaware/dependabot-alert-export, github.com/ShamaRus/django-wandimagefield, github.com/Shaman05/electron-launch-page, github.com/Shamash2014/sleep_walker,num_dependents_deps.dev:0 @@ -165940,6 +169807,7 @@ github.com/ShanghaiTechVENUS/venus, github.com/Shanginre/OPCDataTransfer, github.com/ShangtongZhang/DeepRL,criticality_score:0.344770 github.com/ShangtongZhang/reinforcement-learning-an-introduction,criticality_score:0.352690 +github.com/Shankar-CodeJunkie/release-notifications-pr, github.com/Shankar-IBM-ISL-Developer/logentries_reader,num_dependents_deps.dev:0 github.com/Shankar-IBM-ISL-Developer/logentries_reader_cli, github.com/ShankarCodes/sct, @@ -165958,7 +169826,10 @@ github.com/ShanmugaPriyaElango/vue2-datepicker-updated,num_dependents_deps.dev:0 github.com/Shanon/node-sql-generator,num_dependents_deps.dev:0 github.com/ShanonJackson/babel-plugin-qubic,num_dependents_deps.dev:0 github.com/ShanonJackson/nextjs-azure-function,num_dependents_deps.dev:0 +github.com/ShantanuDash/siesta-action, github.com/Shantti-Y/Methamphetamine.js,num_dependents_deps.dev:0 +github.com/ShanuDey/Jira-AIO-Action, +github.com/ShanuDey/deploy-react-to-ghpages, github.com/Shanya1356/Topsis-Shanya-101953017, github.com/ShaoGongBra/Taro-js-tools,num_dependents_deps.dev:0 github.com/ShaoGongBra/react-native-text-radius,num_dependents_deps.dev:0 @@ -166159,7 +170030,9 @@ github.com/Shaun2D2/react-pedigree,num_dependents_deps.dev:0 github.com/Shaun2D2/reduction,num_dependents_deps.dev:0 github.com/ShaunBaker/PredictionIO-Node-SDK,num_dependents_deps.dev:0 github.com/ShaunBaker/vinelib,num_dependents_deps.dev:0 +github.com/ShaunBulbrook/jest-coverage-report-on-commit, github.com/ShaunBulbrook/scrapes,num_dependents_deps.dev:0 +github.com/ShaunEgan/aws-params-action, github.com/ShaunEgan/lambda-event-router,num_dependents_deps.dev:0 github.com/ShaunKulesa/Texture-Atlas, github.com/ShaunLWM/9GAG.js,num_dependents_deps.dev:0 @@ -166168,6 +170041,10 @@ github.com/ShaunLWM/Droney,num_dependents_deps.dev:0 github.com/ShaunLWM/LimitOrderBook, github.com/ShaunLWM/NTULearnDownloader,num_dependents_deps.dev:0 github.com/ShaunLWM/OverwatchLeague.js, +github.com/ShaunLWM/action-join, +github.com/ShaunLWM/action-pushbullet, +github.com/ShaunLWM/action-release-debugapk, +github.com/ShaunLWM/action-steammessage, github.com/ShaunLWM/compress-image-cli,num_dependents_deps.dev:0 github.com/ShaunLWM/deuces.js,num_dependents_deps.dev:0 github.com/ShaunLWM/dwix, @@ -166198,6 +170075,7 @@ github.com/ShaunieVH/ngx-mqtt,num_dependents_deps.dev:0 github.com/Shaunmak1214/InvaUI,num_dependents_deps.dev:0 github.com/Shaunters/SimpleTimer_Module, github.com/Shaunwild97/Larger, +github.com/ShauryaAg/AWS-Deploy-action, github.com/ShavaShav/react-native-midi, github.com/ShavaShav/react-native-soundfont,num_dependents_deps.dev:0 github.com/ShavidzeT/react-smart-checkbox,num_dependents_deps.dev:0 @@ -166370,6 +170248,7 @@ github.com/ShenTengTu/async-self-cert,num_dependents_deps.dev:0 github.com/ShenTengTu/itri-tts-async,num_dependents_deps.dev:0 github.com/ShenTengTu/node-tw-e-invoice,num_dependents_deps.dev:0 github.com/ShenTengTu/postcss-util-class-placeholder,num_dependents_deps.dev:0 +github.com/ShenTengTu/setup-gnu-coreutils-action, github.com/ShenTengTu/x_msgpack, github.com/ShenYiQian/zipkin-transport-file,num_dependents_deps.dev:2 github.com/ShenZhenpeng/crawler,num_dependents_deps.dev:0 @@ -166397,6 +170276,7 @@ github.com/ShepherdOrg/shepherd,num_dependents_deps.dev:6 github.com/Shepless/neeo-api,num_dependents_deps.dev:0 github.com/Shepless/neeo-driver-tivo-v6,num_dependents_deps.dev:0 github.com/Shepless/node-plex-api,num_dependents_deps.dev:0 +github.com/SheplyRam/compile-sourcepawn-plugin, github.com/SherApp/sher-shared, github.com/SherHoooo/odin-cli,num_dependents_deps.dev:0 github.com/SherMarri/sequelize-enc,num_dependents_deps.dev:0 @@ -166494,6 +170374,7 @@ github.com/ShieldBattery/jssuh, github.com/ShieldBattery/node-interval-tree, github.com/ShieldMnt/invisible-watermark, github.com/ShieldMyFiles/duly-noted, +github.com/ShieldedDotDev/shielded-action, github.com/ShielderSec/webtech, github.com/Shielkwamm/shielkwamm, github.com/Shift46/light-cue,num_dependents_deps.dev:0 @@ -166506,6 +170387,7 @@ github.com/ShiftLeftSecurity/codepropertygraph,num_dependents_deps.dev:11236 github.com/ShiftLeftSecurity/fuzzyc2cpg,num_dependents_deps.dev:2 github.com/ShiftLeftSecurity/joern,criticality_score:0.422070 github.com/ShiftLeftSecurity/overflowdb,num_dependents_deps.dev:511 +github.com/ShiftLeftSecurity/scan-action, github.com/ShiftLeftSecurity/scan-reports, github.com/ShiftbrainStd/harmonic-modular-scale,num_dependents_deps.dev:0 github.com/ShiftbrainStd/polyrhythm-typography,num_dependents_deps.dev:0 @@ -166590,6 +170472,8 @@ github.com/Shinetechchina/react-native-audio,num_dependents_deps.dev:0 github.com/Shinetechchina/react-native-audio-player-recorder,num_dependents_deps.dev:0 github.com/ShineyDev/github.py, github.com/ShineyDev/jackbox.py, +github.com/ShineyDev/sync-labels-action, +github.com/ShineyDev/sync-readme-action, github.com/Shingyx/koa-shell,num_dependents_deps.dev:0 github.com/Shingyx/schedule-shutdown,num_dependents_deps.dev:0 github.com/Shinh18/urltest,num_dependents_deps.dev:0 @@ -166690,6 +170574,7 @@ github.com/Shir0kamii/pyspooler, github.com/Shir0kamii/slack-client, github.com/Shir0kamii/tiny-thingy, github.com/ShirAvr/updator, +github.com/ShirasawaSama/cos-action, github.com/ShirasawaSama/generator-fromzero, github.com/ShirasawaSama/google-analytics-lite,num_dependents_deps.dev:0 github.com/ShirasawaSama/idb-wrapped,num_dependents_deps.dev:0 @@ -166736,6 +170621,7 @@ github.com/Shivangisingla2710/Topsis, github.com/Shivank12batra/understatscraper, github.com/Shivansh-007/piston-cli, github.com/ShivanshVij/privacy-api,num_dependents_deps.dev:0 +github.com/Shivanshu-lambdatest/Github-VT-Plugin, github.com/Shivanshu10/PyTempMail, github.com/Shivanshu26shiv/devcon_win, github.com/Shivelight/kaskus-py, @@ -166783,8 +170669,10 @@ github.com/ShnHz/vue-iconfont-online,num_dependents_deps.dev:0 github.com/ShnHz/vue-touch-box,num_dependents_deps.dev:0 github.com/Shnoo/js-CIE-1931-rgb-color-converter,num_dependents_deps.dev:0 github.com/Sho0ouman/Cjs,num_dependents_deps.dev:0 +github.com/ShoGinn/action-netlify-hugo-update, github.com/Shobbak/react-native-compressor,num_dependents_deps.dev:0 github.com/Shobbak/react-native-zendesk-sdk,num_dependents_deps.dev:0 +github.com/Shobhit05/semver-release, github.com/Shobhit1/babel-preset-reactTeam,num_dependents_deps.dev:0 github.com/Shobhit1/eslint-config-simple,num_dependents_deps.dev:0 github.com/ShobiStassen/PARC, @@ -166804,6 +170692,7 @@ github.com/ShockkPony/mods,num_dependents_deps.dev:0 github.com/Shoen/kaizen,num_dependents_deps.dev:0 github.com/Shoen/kaizen-mongodb,num_dependents_deps.dev:0 github.com/ShoesFly/fund_alchemy, +github.com/Shogan/rust-musl-action, github.com/Shogobg/markdown2confluence,num_dependents_deps.dev:0 github.com/Shogobg/react-chartjs,num_dependents_deps.dev:0 github.com/Shogun147/Jinsoku,num_dependents_deps.dev:0 @@ -166857,6 +170746,7 @@ github.com/ShookLyngs/chain,num_dependents_deps.dev:0 github.com/ShookLyngs/digger,num_dependents_deps.dev:0 github.com/ShookLyngs/merge,num_dependents_deps.dev:0 github.com/ShookLyngs/themer,num_dependents_deps.dev:0 +github.com/ShookTea/JunitCloverReporter, github.com/Shooksie/Flame.js, github.com/ShoopiApp/PagueloFacil,num_dependents_deps.dev:0 github.com/Shooshte/react-async-image,num_dependents_deps.dev:0 @@ -166920,6 +170810,7 @@ github.com/Shopify/krane,criticality_score:0.484830 github.com/Shopify/kubeaudit,"criticality_score:0.421960,num_dependents_deps.dev:0" github.com/Shopify/kubernetes-deploy,num_dependents_deps.dev:0 github.com/Shopify/libra-web-tools,num_dependents_deps.dev:0 +github.com/Shopify/lighthouse-ci-action, github.com/Shopify/liquid,"criticality_score:0.569940,num_dependents_deps.dev:1967" github.com/Shopify/liquid-c,num_dependents_deps.dev:0 github.com/Shopify/logrus-bugsnag, @@ -166975,6 +170866,7 @@ github.com/Shopify/toxiproxy-ruby,num_dependents_deps.dev:0 github.com/Shopify/tslint-config-shopify,num_dependents_deps.dev:0 github.com/Shopify/turbograft,num_dependents_deps.dev:0 github.com/Shopify/twine,num_dependents_deps.dev:0 +github.com/Shopify/upload-to-release, github.com/Shopify/web-configs,"criticality_score:0.470350,num_dependents_deps.dev:8" github.com/Shopify/web-foundation,num_dependents_deps.dev:2 github.com/Shoplo/bulma-scss,num_dependents_deps.dev:0 @@ -167008,6 +170900,7 @@ github.com/Shortlyster/shortlyster-password,num_dependents_deps.dev:0 github.com/ShortyPing/shortping-express-generator,num_dependents_deps.dev:0 github.com/ShotSkydiver/create-react-app,num_dependents_deps.dev:0 github.com/ShotSkydiver/gulp-lintspaces,num_dependents_deps.dev:0 +github.com/ShotaKitazawa/action-bump-calver, github.com/ShotaKitazawa/rtmbot-mattermost, github.com/ShotaroKataoka/ls-Improved, github.com/ShotaroTsuji/botao,num_dependents_deps.dev:0 @@ -167050,6 +170943,7 @@ github.com/ShowJoy/element-helper-json,num_dependents_deps.dev:0 github.com/ShowJoy/vue-custom-datepicker,num_dependents_deps.dev:0 github.com/ShowJoy/vue-datepicker-freedom, github.com/ShowMax/django-admin-page-lock, +github.com/ShowMeThe/github_action_release, github.com/Showndarya/Hacktoberfest,criticality_score:0.404030 github.com/Showrin/anagram_checker,num_dependents_deps.dev:0 github.com/Shpota/goxygen,"criticality_score:0.325130,num_dependents_deps.dev:0" @@ -167074,6 +170968,8 @@ github.com/Shreya-hgd/NativeSampleApp,num_dependents_deps.dev:0 github.com/Shreya-hgd/ReactIMMobile,num_dependents_deps.dev:0 github.com/Shreya7793/IpfsNode-Red,num_dependents_deps.dev:0 github.com/Shreya7793/NpmDevTest,num_dependents_deps.dev:0 +github.com/ShreyamMaity/Assignmenty, +github.com/ShreyamMaity/Copy-Paste-Action, github.com/Shreyanand/stats_comp, github.com/Shreyansh7499/smart-status-bar, github.com/ShreyanshPrakash/find-entity,num_dependents_deps.dev:0 @@ -167144,6 +171040,9 @@ github.com/Shubham-Somani/aws-s3,num_dependents_deps.dev:0 github.com/Shubham9918/authApi,num_dependents_deps.dev:0 github.com/ShubhamAsthana/js-ts-converter,num_dependents_deps.dev:0 github.com/ShubhamBansal1997/pdf-to-base64,num_dependents_deps.dev:0 +github.com/ShubhamTatvamasi/free-disk-space-action, +github.com/ShubhamTatvamasi/terraform-lint-action, +github.com/ShubhamTatvamasi/terraform-localstack-action, github.com/ShubhamVerma1811/CadabraUI, github.com/Shubhamsharma585/custom-ui-shinemasai, github.com/Shubhank101/react-native-animated-view-slider, @@ -167184,6 +171083,7 @@ github.com/ShuqinL/NodeJS-project,num_dependents_deps.dev:0 github.com/Shurelia/base16-tomorrow-dark-vscode,num_dependents_deps.dev:0 github.com/Shurelia/gazelle-api,num_dependents_deps.dev:0 github.com/Shurelia/immer-connect,num_dependents_deps.dev:0 +github.com/Shurtu-gal/autoupdate-fork-action, github.com/Shushishtok/tooltip_generator,num_dependents_deps.dev:0 github.com/Shusshu/Android-LightSensitiveColor,num_dependents_deps.dev:0 github.com/Shusshu/Android-RecurrencePicker,num_dependents_deps.dev:0 @@ -167215,6 +171115,7 @@ github.com/ShuyunFF2E/shuyun-utils,num_dependents_deps.dev:2 github.com/Shvarts/cordova-share-extension-handler,num_dependents_deps.dev:0 github.com/Shwaolin/RibosomalRTF,num_dependents_deps.dev:0 github.com/Shweta-Porwal/react-native-ios-wifi, +github.com/ShwetaPatel19/action-sharepoint-publish, github.com/Shwetajain148/loggly-log4j,num_dependents_deps.dev:0 github.com/Shwetakale/mongoid_transaction,num_dependents_deps.dev:0 github.com/Shwheelz/capital_one,num_dependents_deps.dev:0 @@ -167289,6 +171190,7 @@ github.com/SiSol-Systems/localcosmos-cordova-builder, github.com/SiSol-Systems/localcosmos-server, github.com/SiTaggart/color-combos,num_dependents_deps.dev:2 github.com/SiTaggart/lint-config,num_dependents_deps.dev:0 +github.com/SiTribal/s3-sync-action, github.com/SiaHub/siad-api,num_dependents_deps.dev:0 github.com/SiaQnbr/logmog,num_dependents_deps.dev:0 github.com/SiaQnbr/randoit,num_dependents_deps.dev:0 @@ -167298,6 +171200,7 @@ github.com/SiamandMaroufi/vector-graphics,num_dependents_deps.dev:0 github.com/SiameseLab/quesadiya, github.com/Siao-pin/resolver,num_dependents_deps.dev:0 github.com/SiarheiMelnik/siarheimelnik,num_dependents_deps.dev:0 +github.com/SibaDoge1/unity-runner-sibadoge, github.com/Sibakeny/b_format,num_dependents_deps.dev:0 github.com/SiberianMark/vuephpPrac,num_dependents_deps.dev:0 github.com/Sibicle/onetwoeight,num_dependents_deps.dev:0 @@ -167319,6 +171222,8 @@ github.com/Sibyx/django_api_forms, github.com/Sibyx/django_imap_backend, github.com/Sibyx/duckql-django, github.com/Sibyx/duckql-python, +github.com/Sibz/await-status-action, +github.com/Sibz/github-status-action, github.com/Sicau-HsuYang/general-export,num_dependents_deps.dev:0 github.com/Sicau-HsuYang/pagination-table,num_dependents_deps.dev:0 github.com/Siccity/GLTFUtility,criticality_score:0.375860 @@ -167326,6 +171231,7 @@ github.com/Siccity/xNode,criticality_score:0.419360 github.com/Sichangi/node-red-contrib-cloud-firestore,num_dependents_deps.dev:0 github.com/SickChill/SickChill,criticality_score:0.582030 github.com/SickGear/SickGear,criticality_score:0.524980 +github.com/SickSAMA/amazon-ecs-render-task-definition, github.com/Sickboy78/ioBroker.sureflap,num_dependents_deps.dev:0 github.com/Sicness/pyNooLite, github.com/Sicos1977/MSGReader,criticality_score:0.492230 @@ -167360,6 +171266,8 @@ github.com/Sidd27/sv-bootstrap-modal,num_dependents_deps.dev:0 github.com/Sidd27/sv-bootstrap-tooltip,num_dependents_deps.dev:0 github.com/SiddeshSambasivam/DataAnnotated-PythonPackage, github.com/SiddeshSambasivam/MatterIx, +github.com/Siddhant-K-code/JSON-to-Table, +github.com/Siddhant-K-code/delete-clean-workspaces, github.com/SiddhantDeshmukh/usefulScripts, github.com/Siddharth0892/near_by_employees,num_dependents_deps.dev:0 github.com/Siddharth11/gradStop.js,num_dependents_deps.dev:0 @@ -167372,6 +171280,7 @@ github.com/SiddharthS018/NpmModule,num_dependents_deps.dev:0 github.com/SiddharthShringi/Gitpy, github.com/SiddharthShyniben/betteregex,num_dependents_deps.dev:0 github.com/SiddharthShyniben/random-password-generator,num_dependents_deps.dev:0 +github.com/SiddharthShyniben/todoist-readme, github.com/SiddharthShyniben/uno-reloaded,num_dependents_deps.dev:0 github.com/SiddharthaChowdhury/austin-generic-react-micro-components, github.com/SiddharthaChowdhury/bp-common,num_dependents_deps.dev:0 @@ -167443,6 +171352,9 @@ github.com/Siedrix/record-tape,num_dependents_deps.dev:0 github.com/Siedrix/stacker,num_dependents_deps.dev:0 github.com/Siedrix/teiparser,num_dependents_deps.dev:0 github.com/Siedrix/yet-another-nunjucks-koa-render,num_dependents_deps.dev:0 +github.com/Siege-Wizard/anonfiles-upload, +github.com/Siege-Wizard/mega-upload, +github.com/Siege-Wizard/renpy-build, github.com/SiegeEngine/ddsfile,num_dependents_deps.dev:0 github.com/SiegeEngine/efloat,num_dependents_deps.dev:0 github.com/SiegeEngine/siege-color,num_dependents_deps.dev:0 @@ -167472,10 +171384,13 @@ github.com/SierraSoftworks/Functionality,num_dependents_deps.dev:0 github.com/SierraSoftworks/GuardHouse,num_dependents_deps.dev:0 github.com/SierraSoftworks/Iridium,"criticality_score:0.309740,num_dependents_deps.dev:0" github.com/SierraSoftworks/Suspenders,num_dependents_deps.dev:0 +github.com/SierraSoftworks/gh-releases, github.com/SierraSoftworks/iridium-timestamps,num_dependents_deps.dev:0 github.com/SierraSoftworks/mocha-gitlablist,num_dependents_deps.dev:0 github.com/SierraSoftworks/node-conversation,num_dependents_deps.dev:0 +github.com/SierraSoftworks/setup-grcov, github.com/SierraSoftworks/skmatc,num_dependents_deps.dev:8 +github.com/SierraSoftworks/ynab-automation, github.com/SiestaMadokaist/SecretCredential,num_dependents_deps.dev:0 github.com/SiestaMadokaist/primitive-interpolation,num_dependents_deps.dev:0 github.com/Sifatul/react-firebase-chat,num_dependents_deps.dev:0 @@ -167713,6 +171628,7 @@ github.com/Silind/tslint-config-silind,num_dependents_deps.dev:0 github.com/Silind/use-scroll-display,num_dependents_deps.dev:0 github.com/Silk-GUI/Silk,num_dependents_deps.dev:0 github.com/Silk-GUI/silk-api-server,num_dependents_deps.dev:0 +github.com/SilkFred/action-rubocop, github.com/SilkSource/silk,num_dependents_deps.dev:0 github.com/SilkageNet/PDFRender,num_dependents_deps.dev:0 github.com/Silkey-Team/silkey-jwt,num_dependents_deps.dev:0 @@ -167725,6 +171641,7 @@ github.com/Silksofthesoul/vue-m-validator, github.com/Silksofthesoul/vuex-masked-modules,num_dependents_deps.dev:0 github.com/SilkyCin/lotide,num_dependents_deps.dev:0 github.com/SilleBille/DynamicCalendar,num_dependents_deps.dev:0 +github.com/Silleellie/pylint-github-action, github.com/Sillhouette/book-cli,num_dependents_deps.dev:0 github.com/SillyFreak/ConcurrentUtils, github.com/SillyFreak/gsl, @@ -167783,6 +171700,7 @@ github.com/SilverFox70/react-lottie-segments, github.com/SilverLabUCL/PySilverLabNWB, github.com/SilverLaius/cumulocitypython, github.com/SilverMira/angular-snowpack-plugin, +github.com/SilverNine/s3-file-exists, github.com/SilverNine/spring-boot-graceful-shutdown,num_dependents_deps.dev:0 github.com/SilverNine/wowza-securetoken,num_dependents_deps.dev:0 github.com/SilverPhoenix99/blender-3d,num_dependents_deps.dev:0 @@ -167837,6 +171755,8 @@ github.com/SimPaypl/SimPay-DB-Api-TypeScript,num_dependents_deps.dev:0 github.com/SimProch/diploma-thesis,num_dependents_deps.dev:0 github.com/SimPyClassic/SimPyClassic, github.com/SimSimY/node-etcdwatcher,num_dependents_deps.dev:0 +github.com/SimTech-Research-Data-Management/dataverse-sync, +github.com/SimWinSports/sw-create-release, github.com/SimY4/client-stub,num_dependents_deps.dev:0 github.com/SimY4/xpath-to-xml,num_dependents_deps.dev:0 github.com/SimZhou/yima, @@ -167855,12 +171775,14 @@ github.com/Simbioz/handles.js,num_dependents_deps.dev:0 github.com/Simbioz/sequencer.js,num_dependents_deps.dev:0 github.com/Simbioz/smoother.js,num_dependents_deps.dev:0 github.com/Simbul/semaphoreapp,num_dependents_deps.dev:0 +github.com/Simek/yarn-lock-changes, github.com/SimenB/add-asset-html-webpack-plugin,"criticality_score:0.336000,num_dependents_deps.dev:228" github.com/SimenB/bowser-cache,num_dependents_deps.dev:0 github.com/SimenB/check-es3-syntax-cli,num_dependents_deps.dev:0 github.com/SimenB/collect-v8-coverage, github.com/SimenB/csslint-stylish,num_dependents_deps.dev:0 github.com/SimenB/eslint-config-simenb,num_dependents_deps.dev:0 +github.com/SimenB/github-actions-cpu-cores, github.com/SimenB/jest-environment-jsdom-sixteen, github.com/SimenB/node-prometheus-gc-stats,"num_dependents_deps.dev:480,num_dependents_deps.dev:6" github.com/SimenB/node-prometheus-hystrix,num_dependents_deps.dev:0 @@ -167872,6 +171794,7 @@ github.com/SimenB/util.promisify-all,num_dependents_deps.dev:2 github.com/SimenB/wait-until-promise,num_dependents_deps.dev:0 github.com/SimenCodes/react-native-imei,num_dependents_deps.dev:0 github.com/SimenCodes/react-native-permissions,num_dependents_deps.dev:0 +github.com/SimenWO/bicep-colorize-pr, github.com/Simeon94/ebay_car_scraper_pypi, github.com/Simeon979/card-gen,num_dependents_deps.dev:0 github.com/SimeonC/md-date-time,num_dependents_deps.dev:0 @@ -168064,8 +171987,11 @@ github.com/SimonMarcelLinden/LightCSS,num_dependents_deps.dev:0 github.com/SimonMarcelLinden/responsive-vue-image,num_dependents_deps.dev:0 github.com/SimonMarcelLinden/simplify-css,num_dependents_deps.dev:0 github.com/SimonMarcelLinden/simplify-icon,num_dependents_deps.dev:0 +github.com/SimonMarquis/android-accept-licenses, +github.com/SimonMarquis/ci-gradle-properties-action, github.com/SimonMeskens/TypeProps,num_dependents_deps.dev:0 github.com/SimonMillerIO/eazy-log,num_dependents_deps.dev:0 +github.com/SimonMisencik/gitops-environment-propagation, github.com/SimonPersson/ease,num_dependents_deps.dev:0 github.com/SimonPfeifer/cprint, github.com/SimonPuckey/jsonjuicer, @@ -168081,6 +172007,7 @@ github.com/SimonRichardson/fantasy-seqs,num_dependents_deps.dev:0 github.com/SimonRichardson/fantasy-world,num_dependents_deps.dev:0 github.com/SimonRichardson/squishy-pants,num_dependents_deps.dev:0 github.com/SimonRichardson/trampoline,num_dependents_deps.dev:2 +github.com/SimonRosenau/yarn-workspace-isolator, github.com/SimonRovder/everywhere, github.com/SimonRovder/pomd, github.com/SimonSapin/Flask-Static, @@ -168107,6 +172034,8 @@ github.com/SimonSchick/esprintf,num_dependents_deps.dev:0 github.com/SimonSchick/event-promisify,num_dependents_deps.dev:0 github.com/SimonSchick/flist-api,num_dependents_deps.dev:0 github.com/SimonSchick/furrymap-api,num_dependents_deps.dev:0 +github.com/SimonScholz/google-chat-action, +github.com/SimonScholz/postman-newman-action, github.com/SimonSchuster93/test_npm_package,num_dependents_deps.dev:0 github.com/SimonSegerblomRex/pdflayers, github.com/SimonShi1994/Princess-connection-farm,criticality_score:0.383600 @@ -168121,6 +172050,7 @@ github.com/SimonTeg/multiple_regressions, github.com/SimonTestNet/autof,num_dependents_deps.dev:0 github.com/SimonTestNet/ng-cache-testing-module,num_dependents_deps.dev:0 github.com/SimonTheChain/deck_of_cards, +github.com/SimonTheLeg/semver-tag-from-pr-action, github.com/SimonVT/MessageBar,num_dependents_deps.dev:0 github.com/SimonVT/ThreePaneLayout,num_dependents_deps.dev:0 github.com/SimonVT/android-calendarview,num_dependents_deps.dev:2 @@ -168277,6 +172207,7 @@ github.com/SimpliField/sf-time-mock,num_dependents_deps.dev:0 github.com/SimpliField/sf-token,num_dependents_deps.dev:0 github.com/SimpliField/yerror,num_dependents_deps.dev:126 github.com/SimpliField/yhttperror,num_dependents_deps.dev:74 +github.com/Simplicity-Tech/last-green-commit-action, github.com/Simplicity-at-Source/muon-node,num_dependents_deps.dev:0 github.com/Simplicity-at-Source/nodemsh,num_dependents_deps.dev:0 github.com/SimplicityDiscord/discord-eaze,num_dependents_deps.dev:0 @@ -168333,6 +172264,7 @@ github.com/SimplySayHi/javascript-helpers,num_dependents_deps.dev:0 github.com/SimplySayHi/surveyJS,num_dependents_deps.dev:0 github.com/SimplySecurity/simplydomain-pkg, github.com/SimpoLab/unimi-dl, +github.com/Simporter/get-env-file-from-vault, github.com/Simran-B/gitbook-plugin-add-header,num_dependents_deps.dev:0 github.com/Simran-B/gitbook-plugin-anchorjs,num_dependents_deps.dev:2 github.com/Simran-B/gitbook-plugin-theme-arangodb,num_dependents_deps.dev:0 @@ -168394,6 +172326,7 @@ github.com/Sinbadsoft/angular_csrf,num_dependents_deps.dev:0 github.com/Sinbadsoft/rack-defense,num_dependents_deps.dev:0 github.com/Sinbu/sinbu,num_dependents_deps.dev:0 github.com/SincoSoft-GoldenBerry/S5,num_dependents_deps.dev:0 +github.com/Sindercube/Packr, github.com/SineObama/AlarmClock, github.com/Sineos/node-red-contrib-hysteresis,num_dependents_deps.dev:0 github.com/Sineos/node-red-contrib-timeouttrigger,num_dependents_deps.dev:0 @@ -168424,6 +172357,8 @@ github.com/Singletoned/forked-path, github.com/Singletoned/testino, github.com/Singularity-Ayden/vue-Lm-Iframe,num_dependents_deps.dev:0 github.com/SingularityInteractive/kosher,num_dependents_deps.dev:0 +github.com/SingularityX-ai/snorkell-auto-documentation, +github.com/SingularityX-ai/snorkell-documentation-client, github.com/SingularityXD/vertag,num_dependents_deps.dev:0 github.com/SinimaWath/tslint-multi-line-import,num_dependents_deps.dev:0 github.com/SinisterDeveloper/Rock-Paper-Scissor,num_dependents_deps.dev:0 @@ -168436,6 +172371,7 @@ github.com/Sinkler/django-radiogrid, github.com/Sinnaj94/npm_plugin_example,num_dependents_deps.dev:0 github.com/SinnerAngel/googlepay-issuer,num_dependents_deps.dev:0 github.com/Sinobu-X/Semantic-UI-React,num_dependents_deps.dev:0 +github.com/SinonJZH/simple-deploy-angular-github-pages, github.com/Sinova/Bite.js,num_dependents_deps.dev:0 github.com/Sinova/Collisions,num_dependents_deps.dev:0 github.com/Sinova/DoubleDown,num_dependents_deps.dev:0 @@ -168467,6 +172403,7 @@ github.com/SipiZork/tooltip,num_dependents_deps.dev:0 github.com/SippieCup/loopback-dynamodb-model,num_dependents_deps.dev:0 github.com/SippieCup/ocr-space-api-alt,num_dependents_deps.dev:0 github.com/Siqi-Jian/ceshideuiku-ui,num_dependents_deps.dev:0 +github.com/SiqiLu/dotnet-bump-version, github.com/SiqiLu/grunt-moe-bower,num_dependents_deps.dev:0 github.com/SiqiLu/grunt-moe-handlebars,num_dependents_deps.dev:0 github.com/SiqiLu/grunt-moe-image,num_dependents_deps.dev:0 @@ -168574,6 +172511,7 @@ github.com/SirWyver/dvis, github.com/SirYuSuk/postcl,num_dependents_deps.dev:0 github.com/SirYuye/hay-tools,num_dependents_deps.dev:0 github.com/SirYuye/hayho-react-cli,num_dependents_deps.dev:0 +github.com/SirYwell/sarif-annotator, github.com/SiraArduino/sirataxi, github.com/SiraDoc/SiraDoc,num_dependents_deps.dev:0 github.com/Sirboys/node-realms,num_dependents_deps.dev:0 @@ -168665,6 +172603,7 @@ github.com/Sitecore/jss,"num_dependents_deps.dev:30,num_dependents_deps.dev:81" github.com/SitecoreUnicorn/Unicorn,criticality_score:0.490960 github.com/Sitefinity/nativescript-dec-sdk,num_dependents_deps.dev:0 github.com/Sitetheory/stratus,"num_dependents_deps.dev:31,num_dependents_deps.dev:23" +github.com/Sithi5/remote-ssh-commands-action, github.com/Sitin/coffee-mix,num_dependents_deps.dev:0 github.com/Sitin/node-grypher,num_dependents_deps.dev:0 github.com/Sitin/node-ovirt,num_dependents_deps.dev:0 @@ -168719,6 +172658,8 @@ github.com/SixLabors/ImageSharp,criticality_score:0.655650 github.com/SixLabors/ImageSharp.Web,criticality_score:0.440540 github.com/SixLib/litchi,num_dependents_deps.dev:0 github.com/Sixthdim/angular-vertilize,num_dependents_deps.dev:0 +github.com/SiyaoIsHiding/R_GA_GSOC, +github.com/SiyaoIsHiding/r-asymptotic-testing, github.com/Siyer2/node-rdpjs, github.com/Siyfion/angular-typeahead,num_dependents_deps.dev:0 github.com/Siyris-Inc/SIYCommands,num_dependents_deps.dev:0 @@ -168773,11 +172714,16 @@ github.com/Skallwar/suckit,"criticality_score:0.357310,num_dependents_deps.dev:0 github.com/SkalskiP/cv-metrics, github.com/SkalskiP/make-sense,criticality_score:0.316460 github.com/SkalskiP/onemetric, +github.com/Skandalik/save-secret, github.com/Skandar-Ln/DomEvent,num_dependents_deps.dev:0 github.com/Skandar-Ln/mock-server,num_dependents_deps.dev:0 github.com/Skarbo/funko-pop-avatar-generator,num_dependents_deps.dev:0 github.com/Skarbo/js-inline-html-loader,num_dependents_deps.dev:0 github.com/Skarlett/dispatchtable,num_dependents_deps.dev:0 +github.com/Skarlso/blog-builder, +github.com/Skarlso/blog-publisher, +github.com/Skarlso/caretaker, +github.com/Skarlso/dependabot-bundler, github.com/Skarlso/fsyncer, github.com/Skarlso/jenkins2-api,num_dependents_deps.dev:0 github.com/Skarlso/js-miner,num_dependents_deps.dev:0 @@ -168809,6 +172755,8 @@ github.com/SkeLLLa/mqee, github.com/SkeLLLa/node-object-hash,num_dependents_deps.dev:6248 github.com/SkeLLLa/server-status,num_dependents_deps.dev:0 github.com/SkeLLLa/yammy, +github.com/Skedulo/kubernetes-validate-action, +github.com/Skedulo/tekh-github-action, github.com/Skeen/CuraJS,num_dependents_deps.dev:0 github.com/Skeen/midttrafik-live,num_dependents_deps.dev:0 github.com/SkeletonSkelettron/Linq-Typed,num_dependents_deps.dev:0 @@ -168837,6 +172785,7 @@ github.com/Skelp/verifier,num_dependents_deps.dev:0 github.com/Skelware/node-asset-compress,num_dependents_deps.dev:0 github.com/Skelware/node-file-parser, github.com/Skenvy/Collatz, +github.com/Skenvy/julia-release, github.com/SkepticalHippo/crypto-random,num_dependents_deps.dev:0 github.com/SkepticalHippo/fisher-yates-shuffle,num_dependents_deps.dev:0 github.com/SkepticalHippo/twitch-url,num_dependents_deps.dev:0 @@ -168851,6 +172800,7 @@ github.com/SketchingDev/feedbaby-client,num_dependents_deps.dev:0 github.com/SketchingDev/image-to-ascii-converter, github.com/SketchingDev/ivr-tester,num_dependents_deps.dev:0 github.com/SkewedAspect/grunt-vueify,num_dependents_deps.dev:0 +github.com/SkewedAspect/rancher-redeploy, github.com/SkewedAspect/rfi-physics,num_dependents_deps.dev:0 github.com/SkewedAspect/vuemirror,num_dependents_deps.dev:0 github.com/Skhmt/ttlog,num_dependents_deps.dev:0 @@ -168894,6 +172844,7 @@ github.com/Skinner927/gruntify-eslint-v2,num_dependents_deps.dev:0 github.com/Skinney/elm-git-install,num_dependents_deps.dev:0 github.com/Skinney/linked-folder,num_dependents_deps.dev:0 github.com/Skinz3/League-of-Legends-Bot,criticality_score:0.336790 +github.com/Skippeh/steamfetch-action, github.com/SkippyZA/ibt-telemetry,num_dependents_deps.dev:0 github.com/SkippyZA/lambda-lib,num_dependents_deps.dev:0 github.com/SkippyZA/rx-amqplib,num_dependents_deps.dev:0 @@ -168901,11 +172852,15 @@ github.com/SkippyZA/sls-webpack,num_dependents_deps.dev:0 github.com/Skitionek/alpha-vantage-data-source,num_dependents_deps.dev:0 github.com/Skitionek/financial-modeling-prep-data-source, github.com/Skitionek/gql-generator-node, +github.com/Skitionek/notify-microsoft-teams, +github.com/Skitionek/star-wars-quote-action, github.com/Skiwa/create-materialize-sass-project,num_dependents_deps.dev:0 +github.com/Skizu/s3-upload-action, github.com/Skizzk/lita-tell_on_wake,num_dependents_deps.dev:0 github.com/SklyarovYura/frame-net,num_dependents_deps.dev:0 github.com/SklyarovYura/ipnc,num_dependents_deps.dev:0 github.com/Skn0tt/linkboard-generator,num_dependents_deps.dev:0 +github.com/SknUps/deploy-action, github.com/SkogDev/cordova-plugin-sms,num_dependents_deps.dev:0 github.com/Skolozub/custom-form-select,num_dependents_deps.dev:0 github.com/Skolozub/npm-react-redux-pagination,num_dependents_deps.dev:0 @@ -168970,6 +172925,7 @@ github.com/SkyBlueFeet/rollup-plugin-style-process,num_dependents_deps.dev:0 github.com/SkyBlueFeet/utils,num_dependents_deps.dev:0 github.com/SkyCell-AG/RichTable, github.com/SkyCell-AG/Theme,num_dependents_deps.dev:0 +github.com/SkyCell-AG/quarkus-healthcheck-action, github.com/SkyCell-AG/shared-components,num_dependents_deps.dev:2 github.com/SkyDonald/spdl-core,num_dependents_deps.dev:0 github.com/SkyGenProg/SkyTools, @@ -168985,6 +172941,7 @@ github.com/SkyIsTheLimit/pluggable,num_dependents_deps.dev:0 github.com/SkyIsTheLimit/pluggin, github.com/SkyIsTheLimit/ripjs,num_dependents_deps.dev:0 github.com/SkyIsTheLimit/whackodb,num_dependents_deps.dev:0 +github.com/SkyLightRBX/RojoBuildAction, github.com/SkyLined/cWinPerfCounter,num_dependents_deps.dev:0 github.com/SkyLined/foParseArguments,num_dependents_deps.dev:0 github.com/SkyLined/mColor,num_dependents_deps.dev:0 @@ -169003,6 +172960,7 @@ github.com/SkyManager/homebridge-struct-rgb_skyedition, github.com/SkyMocha/DiscordQuiz,num_dependents_deps.dev:0 github.com/SkyPet/SkyPetSmartContractWrapper,num_dependents_deps.dev:0 github.com/SkyPressATX/nestjs-dynamodb,num_dependents_deps.dev:0 +github.com/SkySoft-ATM/github-actions, github.com/SkySor44/quill-image-resize-module,num_dependents_deps.dev:0 github.com/SkySquirrel/redux-async-payload,num_dependents_deps.dev:0 github.com/SkyTemple/ExplorerScript, @@ -169051,6 +173009,7 @@ github.com/Skydipper/Skydipper, github.com/Skydipper/ct-register-microservice-node,num_dependents_deps.dev:0 github.com/Skydropx/compropago-node,num_dependents_deps.dev:0 github.com/SkyeBlack/TedViewVue,num_dependents_deps.dev:0 +github.com/SkyfightTV/EpiAction, github.com/SkygearIO/chat-SDK-JS,num_dependents_deps.dev:0 github.com/SkygearIO/generator-skygear,num_dependents_deps.dev:0 github.com/SkygearIO/globby,num_dependents_deps.dev:0 @@ -169081,6 +173040,7 @@ github.com/SkylerLipthay/schemamama,num_dependents_deps.dev:0 github.com/SkylerLipthay/schemamama_postgres,num_dependents_deps.dev:0 github.com/SkylerLipthay/string_to_expr,num_dependents_deps.dev:0 github.com/SkylerLipthay/zip_codes,num_dependents_deps.dev:0 +github.com/SkylineCommunications/Skyline-DataMiner-Deploy-Action, github.com/Skylines316/hairyBH, github.com/Skyller360/cli-react-components,num_dependents_deps.dev:0 github.com/Skylude/django-rest-framework-signature, @@ -169090,6 +173050,7 @@ github.com/SkymindIO/pipelines, github.com/SkymindIO/skil-python, github.com/SkynetHQ/content-record-library,num_dependents_deps.dev:0 github.com/SkynetHQ/skynet-mysky-utils,num_dependents_deps.dev:22 +github.com/SkynetLabs/deploy-to-skynet-action, github.com/SkynetLabs/nodejs-skynet,num_dependents_deps.dev:0 github.com/SkynetLabs/python-skynet, github.com/SkypLabs/faker-wifi-essid, @@ -169163,8 +173124,10 @@ github.com/SlashDevv/ashink,num_dependents_deps.dev:0 github.com/SlashGordon/pyeasysocket, github.com/SlashGordon/pyfirebasestockscli, github.com/SlashGordon/pyjdpu, +github.com/Slashgear/action-check-pr-title, github.com/Slashgear/cloud-random-user, github.com/Slashgear/fallback-webpack-plugin,num_dependents_deps.dev:0 +github.com/Slashgear/flo-du-bot, github.com/Slashgear/monorepo-dependencies-check, github.com/Slashgear/tabou, github.com/Slashgear/use-reduce-motion,num_dependents_deps.dev:0 @@ -169244,6 +173207,8 @@ github.com/Sleepy-Fish/BogieJS,num_dependents_deps.dev:0 github.com/SleepyBandit/oxford-dictionary,num_dependents_deps.dev:0 github.com/SleepyFanjo/redux-functional-reducer,num_dependents_deps.dev:0 github.com/SleepyMathematics/sm-integral,num_dependents_deps.dev:0 +github.com/SleepySysadmin/github-action-pscheck, +github.com/SleepySysadmin/ps-check-temp, github.com/SleepyTrousers/EnderIO,criticality_score:0.585160 github.com/SleepyViolin/logger,num_dependents_deps.dev:0 github.com/SleepyViolin/nodered-types,num_dependents_deps.dev:0 @@ -169299,6 +173264,8 @@ github.com/SlickyJS/Translator,num_dependents_deps.dev:0 github.com/SlideAtlas/SlideAtlas-viewer,num_dependents_deps.dev:0 github.com/SlideWorx/backbone-combobox,num_dependents_deps.dev:0 github.com/SlideWorx/backbone-tree,num_dependents_deps.dev:0 +github.com/Slidem/branch-name-normalizer, +github.com/Slidem/inplace-envsubst-action, github.com/SlidesWorker/react-dnd-multi-sortable-component,num_dependents_deps.dev:0 github.com/Slideworx/periods-helper,num_dependents_deps.dev:0 github.com/SlikIO/slikio-nodejs,num_dependents_deps.dev:0 @@ -169385,6 +173352,7 @@ github.com/SlimenTN/SlarnAutocomplete,num_dependents_deps.dev:0 github.com/Slimmer-AI/mpire, github.com/Slimmer-AI/sai-airflow-plugins, github.com/Slimmer-AI/text-scrubber, +github.com/SlingNode/git-tag-from-changelog, github.com/Slitherlizard/blizard.js-NPM,num_dependents_deps.dev:0 github.com/SliverYuki/egg-proxifier,num_dependents_deps.dev:0 github.com/Sliverb/multer-azure-blob-storage,num_dependents_deps.dev:2 @@ -169424,6 +173392,7 @@ github.com/Sly-Little-Fox/easy-load, github.com/Sly321/express-parameter-rewriter,num_dependents_deps.dev:0 github.com/Sly321/strap-components,num_dependents_deps.dev:0 github.com/Sly777/React-UI-Debugger,num_dependents_deps.dev:0 +github.com/Sly777/pr_title_jira_linker, github.com/Sly777/ran,"criticality_score:0.340770,num_dependents_deps.dev:0" github.com/SlyLi/hexo-steam,num_dependents_deps.dev:0 github.com/SlyOtis/SlyPager,num_dependents_deps.dev:0 @@ -169462,6 +173431,7 @@ github.com/Sm03leBr00t/Awesome-Boilerplate-Cli,num_dependents_deps.dev:0 github.com/SmBe19/praw-OAuth2Util, github.com/Smadger1/prismarine-tokens-fixed, github.com/Smahrt/mongoose-sentry-logger,num_dependents_deps.dev:0 +github.com/Smaiil/npm-login, github.com/SmallAiTT/SmallCocosUtils,num_dependents_deps.dev:0 github.com/SmallComfort/react-vue,num_dependents_deps.dev:6 github.com/SmallComfort/react-vue-loader, @@ -169507,6 +173477,7 @@ github.com/Smart-Hypercube/autocert, github.com/Smart-Hypercube/cubic-sdk, github.com/Smart-Programs/mixer-client-node, github.com/Smart-Space/TinUI, +github.com/Smart-Transportation/push, github.com/Smart-hr-recruitment/smart-models-db, github.com/SmartAngus/Hurricane-V, github.com/SmartAngus/create-react-app, @@ -169563,6 +173534,7 @@ github.com/SmartDiff/cs107-FinalProject, github.com/SmartEnergySolutions/gruenstromindex-server,num_dependents_deps.dev:0 github.com/SmartFE/lazy-smart,num_dependents_deps.dev:0 github.com/SmartFileManager/SmartFileManagerCoreLibrary,num_dependents_deps.dev:0 +github.com/SmartGiftEngineering/ssm-output-to-s3, github.com/SmartI18N/SmartI18N,num_dependents_deps.dev:0 github.com/SmartITteam/react-native-svg-uri,num_dependents_deps.dev:0 github.com/SmartImobCRM/sml-recommender-sdk, @@ -169636,8 +173608,11 @@ github.com/Smartlogic-Semaphore-Limited/workbench-widget-api,num_dependents_deps github.com/SmartlyAI/smartlyai-nodejs-client,num_dependents_deps.dev:0 github.com/Smartrobotics/AmarettoPy, github.com/Smartrobotics/Buildit, +github.com/SmartsquareGmbH/delete-old-packages, github.com/SmartsquareGmbH/mqtt-admin-starter,num_dependents_deps.dev:0 github.com/SmartsquareGmbH/mqtt-starter,num_dependents_deps.dev:0 +github.com/SmartsquareGmbH/post-k8s-lb, +github.com/SmartsquareGmbH/setup-multiwerf, github.com/SmartsquareGmbH/socket-io-redis-emitter,num_dependents_deps.dev:0 github.com/Smarttkow/chain-of-custody,num_dependents_deps.dev:0 github.com/Smartupz/gevent-socketio, @@ -169937,6 +173912,7 @@ github.com/Sneezry/serialport-lite,num_dependents_deps.dev:0 github.com/Sneezry/volumelist,num_dependents_deps.dev:0 github.com/Sneezry/vscode-express,num_dependents_deps.dev:0 github.com/Sneezry/vscode-iot-device-cube-sdk,num_dependents_deps.dev:0 +github.com/SnehaDavari/open-issue, github.com/SnehaSSD/react-native-custom-keyboard,num_dependents_deps.dev:0 github.com/Snehal-2310/TOPSIS_Snehal_101803036, github.com/Snehal1112/utils,num_dependents_deps.dev:0 @@ -169954,7 +173930,9 @@ github.com/Sneppy/snue,num_dependents_deps.dev:0 github.com/SnezanaDichevska/bigbrotha,num_dependents_deps.dev:0 github.com/Sniadekk/sftp-dump,num_dependents_deps.dev:0 github.com/Sniddl/Sniddl-AJAX,num_dependents_deps.dev:0 +github.com/Sniddl/discord-commits, github.com/Sniddl/sniddl-popup,num_dependents_deps.dev:0 +github.com/Snider/bunnycdn-gh-action, github.com/SnigBhaumik/site-mobile-friendly,num_dependents_deps.dev:0 github.com/Snikanes/react-mathjax,num_dependents_deps.dev:0 github.com/SniperAK/cli-sqlite,num_dependents_deps.dev:0 @@ -170070,6 +174048,7 @@ github.com/Snowshield/redesign-typography,num_dependents_deps.dev:0 github.com/Snowshield/reset-css-extended,num_dependents_deps.dev:0 github.com/Snowy-27/EcoleDirect, github.com/Snowy27/Coroutines,num_dependents_deps.dev:0 +github.com/SnowyGFL/FTP-Deploy-Action, github.com/SnrdTeam/algorithm-executor-java,num_dependents_deps.dev:0 github.com/SnrdTeam/command-line-utils-java,num_dependents_deps.dev:0 github.com/SnrdTeam/gateway-interface-java,num_dependents_deps.dev:0 @@ -170154,6 +174133,8 @@ github.com/SoapStuff/string-colours,num_dependents_deps.dev:0 github.com/SoapyIllusions/lozigo,num_dependents_deps.dev:0 github.com/SoapyIllusions/resty,num_dependents_deps.dev:0 github.com/SoarLin/seocheck, +github.com/Soarex16/ormolu-action, +github.com/Soarex16/pg-formatter-action, github.com/Soarez/M2E,num_dependents_deps.dev:0 github.com/Soarez/ar-drone-png-stream,num_dependents_deps.dev:0 github.com/Soarez/bora,num_dependents_deps.dev:0 @@ -170401,6 +174382,7 @@ github.com/SoftChef/oobe,num_dependents_deps.dev:0 github.com/SoftChef/sensor.live-things-registry-javascript,num_dependents_deps.dev:0 github.com/SoftChef/softchef-utility,num_dependents_deps.dev:0 github.com/SoftChef/vuejs2-breadcrumbs,num_dependents_deps.dev:0 +github.com/SoftCreatR/validate-yaml-schema, github.com/SoftEng-HEIGVD/bower-sticky-footer,num_dependents_deps.dev:0 github.com/SoftEng-HEIGVD/iflux-node-client,num_dependents_deps.dev:0 github.com/SoftEng-HEIGVD/iflux-populator,num_dependents_deps.dev:0 @@ -170456,6 +174438,7 @@ github.com/Softpagehomeware/grunt-realsync,num_dependents_deps.dev:0 github.com/Software-City/SWC_packagemanager, github.com/Software-Design-2017/SSMais, github.com/Software-Engineering-BBSRC-Group-6/PK_modelling, +github.com/Software-Improvement-Group/sigridci, github.com/Software-Natives-OSS/transferlua,num_dependents_deps.dev:0 github.com/Software-On-The-Road/agendash-v2,num_dependents_deps.dev:0 github.com/SoftwareAG/adabas-tcp,num_dependents_deps.dev:0 @@ -170542,6 +174525,7 @@ github.com/SoftwearDevelopment/angular-fontawesome,num_dependents_deps.dev:0 github.com/Softwire/mysql-file-sync,num_dependents_deps.dev:0 github.com/Softwire/wp-install,num_dependents_deps.dev:0 github.com/Softyy/dash-cli, +github.com/SofyDotAi/SofyAzureStaticWebappAction, github.com/SoggyGate/uxrequest, github.com/SoggyPiggy/cactpot-solver,num_dependents_deps.dev:0 github.com/SoggyPiggy/worge,num_dependents_deps.dev:0 @@ -170578,6 +174562,7 @@ github.com/Sojer23/api-performance,num_dependents_deps.dev:0 github.com/SojiroFukuda/efshape, github.com/SojiroFukuda/sview-gui, github.com/Sojo-uk/meteor-ejson-python, +github.com/Sojusan/github-action-reminder, github.com/SokhnaNdate/univlabo, github.com/SokichiFujita/react-draggable-droppable, github.com/SokichiFujita/starter-npm-cli,num_dependents_deps.dev:0 @@ -170602,6 +174587,7 @@ github.com/SolDes/linters,num_dependents_deps.dev:0 github.com/SolGee/MEX008-FE-md-link,num_dependents_deps.dev:0 github.com/SolMarina/SCL014-md-links,num_dependents_deps.dev:0 github.com/Sola-BG/bg-stencil-components, +github.com/SolaceDev/solace-ep-provisioning-github-action, github.com/SolaceLabs/sl-spring-cloud-connectors,num_dependents_deps.dev:0 github.com/SolaceLabs/solace-java-spring-boot,num_dependents_deps.dev:0 github.com/SolaceLabs/solace-jms-spring-boot,num_dependents_deps.dev:0 @@ -170620,6 +174606,7 @@ github.com/SolalDR/spritesheet,num_dependents_deps.dev:0 github.com/SolalDR/three-dat.gui, github.com/Solant/bimo,num_dependents_deps.dev:0 github.com/Solant/nodegui-stylesheet,num_dependents_deps.dev:0 +github.com/Solar-Control/open-balena-cli-action, github.com/Solar-Helix-Independent-Transport/allianceauth-blacklist, github.com/Solar-Helix-Independent-Transport/allianceauth-corp-tools-pinger, github.com/Solar-Helix-Independent-Transport/allianceauth-invoice-manager, @@ -170791,6 +174778,7 @@ github.com/SolraBizna/outer_cgi,num_dependents_deps.dev:0 github.com/SolraBizna/rust-w65c02s,num_dependents_deps.dev:0 github.com/Solracsiio/HoneywellPrinter, github.com/Solracsiio/hw-printer-plugin,num_dependents_deps.dev:0 +github.com/Solratic/checksum-action, github.com/Solstice-Short-Film/solstice, github.com/Solstice-Short-Film/solstice-config, github.com/Solstice-Short-Film/solstice-core, @@ -170839,6 +174827,7 @@ github.com/Solvoj/zxing,num_dependents_deps.dev:0 github.com/Solwinds/mui-use-responsive,num_dependents_deps.dev:0 github.com/Solwinds/react-use-responsive,num_dependents_deps.dev:0 github.com/Solyankin/UISteps,num_dependents_deps.dev:0 +github.com/Solybum/hexo-deploy, github.com/Som-Energia/distri-remesa-parser, github.com/Som-Energia/emili, github.com/Som-Energia/intercoop, @@ -170911,10 +174900,14 @@ github.com/SomeoneWeird/yubinode,num_dependents_deps.dev:0 github.com/Someoneece/Shadowizard,num_dependents_deps.dev:0 github.com/SomeshKb/ngx-chatbot, github.com/Something-Technology/something-ts,num_dependents_deps.dev:0 +github.com/SomethingCo/conventional-changelog-action, github.com/SomethingCo/expo-job-queue, github.com/SomethingGeneric/Remind, +github.com/SomethingGeneric/action-open-issue, github.com/Somewater/ruword_frequency, github.com/SomewhatDamaged/discordstatus, +github.com/Somfic/bypass-branch-protection, +github.com/Somfic/cleanupcode-action, github.com/SomiFrame/somi-dashjs,num_dependents_deps.dev:0 github.com/Somiel/rspec_typeof,num_dependents_deps.dev:0 github.com/Sommerfeld/short-id-gen,num_dependents_deps.dev:0 @@ -171040,10 +175033,15 @@ github.com/SonarSource/sonar-ui-common,num_dependents_deps.dev:0 github.com/SonarSource/sonar-update-center,num_dependents_deps.dev:296 github.com/SonarSource/sonar-web,num_dependents_deps.dev:0 github.com/SonarSource/sonar-xml,num_dependents_deps.dev:0 +github.com/SonarSource/sonarcloud-github-action, +github.com/SonarSource/sonarcloud-github-c-cpp, +github.com/SonarSource/sonarcloud-github-c-cpp-addition, github.com/SonarSource/sonarjs-cli,num_dependents_deps.dev:6 github.com/SonarSource/sonarlint-cli,num_dependents_deps.dev:0 github.com/SonarSource/sonarlint-intellij,criticality_score:0.443470 github.com/SonarSource/sonarqube,"criticality_score:0.566230,num_dependents_deps.dev:3860" +github.com/SonarSource/sonarqube-quality-gate-action, +github.com/SonarSource/sonarqube-scan-action, github.com/SonarSource/sslr,num_dependents_deps.dev:732 github.com/SonarSource/sslr-squid-bridge,num_dependents_deps.dev:197 github.com/Sonarr/Sonarr,criticality_score:0.625060 @@ -171076,6 +175074,7 @@ github.com/Songkeys/tswc,num_dependents_deps.dev:0 github.com/Songkick/replaceinfiles,num_dependents_deps.dev:0 github.com/SongleJp/songle-api,num_dependents_deps.dev:0 github.com/SongminYu/Melodie, +github.com/Songmu/tagpr, github.com/Songoo7/cookieconsent2,num_dependents_deps.dev:0 github.com/Songsungeun/jsflag,num_dependents_deps.dev:0 github.com/Songsungeun/ts-flag, @@ -171097,6 +175096,7 @@ github.com/Sonia-corporation/conventional-changelog,num_dependents_deps.dev:0 github.com/Sonia-corporation/il-est-midi-discord,num_dependents_deps.dev:0 github.com/Sonia-corporation/ngx-achievements,num_dependents_deps.dev:0 github.com/Sonia-corporation/sonia-discord,num_dependents_deps.dev:0 +github.com/Sonia-corporation/stale, github.com/Sonia-corporation/yokai,num_dependents_deps.dev:0 github.com/Sonia012/node.js,num_dependents_deps.dev:0 github.com/Sonic0/cron-converter, @@ -171106,9 +175106,11 @@ github.com/SonicCodes/hotpress,num_dependents_deps.dev:0 github.com/SonicCodes/next-fun,num_dependents_deps.dev:0 github.com/SonicCodes/noloadanim, github.com/SonicGarden/autosize-textarea-element,num_dependents_deps.dev:0 +github.com/SonicGarden/check-merged-action, github.com/SonicGarden/jquery-ujs-plus,num_dependents_deps.dev:0 github.com/SonicGarden/next-csr-rewrites-generator,num_dependents_deps.dev:0 github.com/SonicGarden/prettier-config,num_dependents_deps.dev:0 +github.com/SonicGarden/rspec-report-action, github.com/SonicGarden/stylelint-config,num_dependents_deps.dev:0 github.com/SonicGarden/vwrap,num_dependents_deps.dev:0 github.com/SonicHedgehog/brave-mouse,num_dependents_deps.dev:0 @@ -171133,6 +175135,7 @@ github.com/SonicXChain/sonicxbox, github.com/Sonicoms/MQTT, github.com/Sonictherocketman/microblog_feedcrawler, github.com/Sonkal/application-type,num_dependents_deps.dev:0 +github.com/Sonlis/setup-testkube-cli, github.com/SonniesEdge/grunt-inlinestyles,num_dependents_deps.dev:0 github.com/SonoIo/backbone.firebase,num_dependents_deps.dev:0 github.com/SonoIo/context-utils,num_dependents_deps.dev:0 @@ -171209,6 +175212,7 @@ github.com/Sophize/ngx-sophize-md-renderer,num_dependents_deps.dev:0 github.com/Sophize/sophize-md-parser,num_dependents_deps.dev:0 github.com/SophonLab/lambda-kit,num_dependents_deps.dev:0 github.com/Sophrinix/fixappjs,num_dependents_deps.dev:0 +github.com/SoprachevAK/yandex-cloud-worker-folder, github.com/SoptikHa2/video-summarizer,num_dependents_deps.dev:0 github.com/Soptq/balsnap, github.com/Soqet/observable-event, @@ -171253,6 +175257,8 @@ github.com/SorooshMerajiyan/idpay-ts, github.com/SorooshMerajiyan/loggir,num_dependents_deps.dev:0 github.com/SorooshMerajiyan/zarinpal-typescript,num_dependents_deps.dev:0 github.com/Sorosliu1029/Jike-Metro, +github.com/Sorosliu1029/follower-change, +github.com/Sorrowfall/Resource-Packager, github.com/SortableJS/Sortable,"criticality_score:0.530820,num_dependents_deps.dev:5218" github.com/SortableJS/Vue.Draggable,"criticality_score:0.469780,num_dependents_deps.dev:765" github.com/SortableJS/angular-legacy-sortablejs,num_dependents_deps.dev:0 @@ -171273,6 +175279,7 @@ github.com/Sorunome/node-serialport,num_dependents_deps.dev:0 github.com/Sorunome/slack-markdown,num_dependents_deps.dev:0 github.com/Sorunome/soru-slack-client,num_dependents_deps.dev:0 github.com/Sorunome/toxclient,num_dependents_deps.dev:0 +github.com/Soryyyn/qmk-build, github.com/Sorzen/price-formate,num_dependents_deps.dev:0 github.com/SorziaX/XCodeAssetsSynchonizer,num_dependents_deps.dev:0 github.com/Sosomqk/xlstocsv, @@ -171321,6 +175328,7 @@ github.com/Soulou/hubot-github-assign-issues,num_dependents_deps.dev:0 github.com/Soulpay/JsSDK,num_dependents_deps.dev:0 github.com/Soulpicks/create-react-app,num_dependents_deps.dev:0 github.com/Soulpicks/react-spring-modal,num_dependents_deps.dev:0 +github.com/Soumeh-zz/Auto-Versioning, github.com/Soumeh/pyfigure, github.com/SoumeshBanerjee/udp-radio,num_dependents_deps.dev:0 github.com/Soumil07/bread-tags, @@ -171352,6 +175360,7 @@ github.com/Soundscape/sublime-oauth2,num_dependents_deps.dev:0 github.com/Soundscape/sublime-sessions,num_dependents_deps.dev:0 github.com/SoundstripeEngineering/react-audio-waveform,num_dependents_deps.dev:0 github.com/Soundwubz/Element-Printer,num_dependents_deps.dev:0 +github.com/SoupBuild/Setup-Soup, github.com/Souqalmal/dynamodb-localhost,num_dependents_deps.dev:0 github.com/Souqalmal/dynamodb-localhost-manager,num_dependents_deps.dev:0 github.com/Souqalmal/serverless-dynamodb-local,num_dependents_deps.dev:0 @@ -171367,6 +175376,7 @@ github.com/SouravJohar/chatbots-101, github.com/Souravdey777/OpenWeatherMapIcons,num_dependents_deps.dev:0 github.com/Souravdey777/colored-console,num_dependents_deps.dev:0 github.com/Souravdey777/time-ago, +github.com/Source-Code-Inspection-inc/CodeWeTrust-GitHubAction-ExecutiveReport, github.com/Source-Digital/SourceCore,num_dependents_deps.dev:0 github.com/Source-Digital/experience-engine-sdk,num_dependents_deps.dev:0 github.com/Source-Digital/quasar-app-extension-experience-engine,num_dependents_deps.dev:0 @@ -171386,6 +175396,8 @@ github.com/SourceNinja/sourceninja-maven,num_dependents_deps.dev:0 github.com/SourceNinja/sourceninja-node,num_dependents_deps.dev:0 github.com/SourceNinja/sourceninja-ruby,num_dependents_deps.dev:0 github.com/SourcePond/metatype-builder,num_dependents_deps.dev:0 +github.com/SourceR85/couchdb-github-action, +github.com/SourceSprint/upload-multiple-releases, github.com/SourceWatch/SourceWatch, github.com/SoureCode/Deploy-CLI,num_dependents_deps.dev:0 github.com/SoureCode/SoureCode,num_dependents_deps.dev:44 @@ -171395,6 +175407,8 @@ github.com/Soutar/bem-class,num_dependents_deps.dev:2 github.com/Soutar/hyperterm-float,num_dependents_deps.dev:0 github.com/Soutar/hyperterm-register-shortcut,num_dependents_deps.dev:0 github.com/Soutar/hyperterm-summon,num_dependents_deps.dev:0 +github.com/South-Paw/action-netlify-cli, +github.com/South-Paw/action-netlify-deploy, github.com/South-Paw/discord-music-bot,num_dependents_deps.dev:0 github.com/South-Paw/koa-mongoose,num_dependents_deps.dev:0 github.com/South-Paw/react-obfuscate-ts,num_dependents_deps.dev:0 @@ -171437,12 +175451,14 @@ github.com/SouvickMondal/Assignment,num_dependents_deps.dev:0 github.com/SouvickMondal/reactFirstProject,num_dependents_deps.dev:0 github.com/Souvik1991/react-lazy-load-image,num_dependents_deps.dev:0 github.com/SouvikBhowmick/cordova-plugin-connectedwifi,num_dependents_deps.dev:0 +github.com/Souvikns/Notion-Board, github.com/Souvikns/ink-cli-parser,num_dependents_deps.dev:0 github.com/Souza-Adriano/simple-json-scheme-validator, github.com/SovTech/ReactNativeAndroidAudioConverter,num_dependents_deps.dev:0 github.com/SovTech/everblue-ui,num_dependents_deps.dev:0 github.com/SovTech/meteocontrol,num_dependents_deps.dev:0 github.com/Sovenok-Hacker/owlshell, +github.com/SovereignWallet-Network/SSID-Backend-requirements, github.com/SovereignWallet-Network/mui-metablockchain-sdk,num_dependents_deps.dev:0 github.com/SovietFrontier/data-grouper, github.com/SovietFrontier/grouper,num_dependents_deps.dev:0 @@ -171575,6 +175591,7 @@ github.com/SpamWatch/spamwatch-js,num_dependents_deps.dev:0 github.com/SpamWatch/spamwatch-py, github.com/SpamapS/flamel, github.com/SpankChain/chainsaw,num_dependents_deps.dev:0 +github.com/Spantree/gce-cloudsql-proxy-action, github.com/Spantree/name-genius,num_dependents_deps.dev:0 github.com/Spantree/nexus-federation-plugin, github.com/Spantree/nexus-validate-plugin, @@ -171614,6 +175631,7 @@ github.com/SparkPost/node-sparkpost,num_dependents_deps.dev:26 github.com/SparkPost/node-sparkpost-cli,num_dependents_deps.dev:0 github.com/SparkPost/nodemailer-sparkpost-transport,num_dependents_deps.dev:0 github.com/SparkPost/python-sparkpost, +github.com/SparkPost/review-badger, github.com/SparkPost/styles,num_dependents_deps.dev:0 github.com/SparkartGroupInc/handlebars-helpers,num_dependents_deps.dev:4 github.com/SparkartGroupInc/qa-deployer,num_dependents_deps.dev:0 @@ -171749,10 +175767,14 @@ github.com/Spected/customlog,num_dependents_deps.dev:0 github.com/Spected/djsmusic,num_dependents_deps.dev:0 github.com/SpectoIT/specto-faker,num_dependents_deps.dev:0 github.com/SpectoLabs/hoverfly,"criticality_score:0.458700,num_dependents_deps.dev:0" +github.com/SpectoLabs/hoverfly-github-action, github.com/SpectoLabs/hoverfly-npm,num_dependents_deps.dev:0 github.com/SpectoLabs/hoverpy, github.com/SpectoLabs/myna,num_dependents_deps.dev:0 github.com/SpectralKH/colorboy,num_dependents_deps.dev:0 +github.com/SpectralOps/setup-preflight-action, +github.com/SpectralOps/setup-teller-action, +github.com/SpectralOps/spectral-github-action, github.com/SpectralSequences/pyodide_interrupts, github.com/SpectralSequences/sseq, github.com/SpectrumApp/spectrum-python, @@ -171760,6 +175782,7 @@ github.com/SpectrumIM/spectrum2,criticality_score:0.397360 github.com/Specyk/fancy-loader,num_dependents_deps.dev:0 github.com/Speech-Rule-Engine/sre-mathmaps-ie,num_dependents_deps.dev:0 github.com/SpeedCurve-Metrics/speedcurve-cli, +github.com/SpeedCurve-Metrics/speedcurve-test-action, github.com/SpeedNeo/mooltycommons,num_dependents_deps.dev:0 github.com/SpeedShifter/grunt-static-i18next, github.com/SpeedUp-io/nodejs-async-http-server,num_dependents_deps.dev:0 @@ -171820,6 +175843,7 @@ github.com/Spendar89/roman,num_dependents_deps.dev:0 github.com/Spendar89/roman-numeral, github.com/Spendesk/collect-node, github.com/Spendesk/ezmoney,num_dependents_deps.dev:0 +github.com/Spendesk/npm-release-action, github.com/Spengreb/generator-deploy-tf-spec,num_dependents_deps.dev:0 github.com/Spennyapp/react-navigation-custom-bottom-tab-component, github.com/Spensaur-K/sync-sharedarraybuffer,num_dependents_deps.dev:6 @@ -171850,6 +175874,7 @@ github.com/SphericalElephant/express-api-version,num_dependents_deps.dev:0 github.com/SphericalElephant/express-package-version,num_dependents_deps.dev:0 github.com/SphericalElephant/senodeconf,num_dependents_deps.dev:0 github.com/Spherity/vc-status-2021-ldap,num_dependents_deps.dev:0 +github.com/Spherix-Technologies/header-comments, github.com/Sphiinx/runescape-account-creator,num_dependents_deps.dev:0 github.com/SphinxKnight/compat-tester,num_dependents_deps.dev:0 github.com/Sphinxxxx/abo-utils,num_dependents_deps.dev:0 @@ -171892,6 +175917,7 @@ github.com/Spicy-Sparks/react-native-discover-casts,num_dependents_deps.dev:0 github.com/Spicy-Sparks/react-native-google-one-tap-signin,num_dependents_deps.dev:0 github.com/Spicy-Sparks/react-native-mediastore,num_dependents_deps.dev:0 github.com/Spicy-Sparks/react-native-wear-engine, +github.com/SpicyPizza/create-envfile, github.com/SpicySpices/FnCache,num_dependents_deps.dev:0 github.com/SpicyTakis/node-bench,num_dependents_deps.dev:0 github.com/SpicyTakis/vbujs, @@ -172056,6 +176082,7 @@ github.com/Spinoco/fs2-log,num_dependents_deps.dev:0 github.com/Spinoco/fs2-mail,num_dependents_deps.dev:0 github.com/Spinoco/fs2-zk,num_dependents_deps.dev:0 github.com/Spinoco/protocol,num_dependents_deps.dev:65 +github.com/SpinyOwl/publish-artifact-to-git, github.com/Spiony/econicer, github.com/SpiralDeveloper/django_tfactory, github.com/SpiralOutDoEu/cookiepy, @@ -172119,6 +176146,7 @@ github.com/Splidejs/vue-splide,num_dependents_deps.dev:0 github.com/Splinter0/evil-select-pkg, github.com/SplinterDev/ezgame, github.com/SplinterDev/point2d, +github.com/SplinterRAT/sonarscan-dotnet, github.com/Split174/cyclopy, github.com/Splitit/Splitit.SDKs.Python, github.com/SplitmediaLabsLimited/devctl,num_dependents_deps.dev:0 @@ -172304,6 +176332,7 @@ github.com/Spratiher9/Exelog, github.com/Spratiher9/Netplot, github.com/Spratiher9/Seedr-Client, github.com/Spratiher9/SparkDataset, +github.com/SpraxDev/Action-SpigotMC, github.com/Sprayxe/valorant.js,num_dependents_deps.dev:0 github.com/Spreads/SignalW,num_dependents_deps.dev:0 github.com/Spreads/Spreads,num_dependents_deps.dev:0 @@ -172329,6 +176358,7 @@ github.com/SpringCloud/spring-cloud-gray,num_dependents_deps.dev:0 github.com/SpringCloud/venus-cloud-feign,num_dependents_deps.dev:3 github.com/SpringForAll/spring-boot-starter-swagger,criticality_score:0.359490 github.com/SpringHgui/compile2ant, +github.com/SpringHgui/publish-nuget, github.com/SpringLIAO/coachee,num_dependents_deps.dev:0 github.com/SpringLIAO/postcss-plugin-bem-atrule,num_dependents_deps.dev:0 github.com/SpringLIAO/v-api,num_dependents_deps.dev:0 @@ -172499,6 +176529,7 @@ github.com/Square789/BL2_skingen, github.com/Square789/Demomgr, github.com/Square789/multiframe_list, github.com/SquareBracketAssociates/UpdatedPharoByExample,criticality_score:0.345020 +github.com/SquareFactory/setup-isquare-cli, github.com/SquareGPS/navixy-js-sdk,num_dependents_deps.dev:0 github.com/SquarePants1991/flutterdebugger, github.com/Squarefront/squarespace-cli,num_dependents_deps.dev:0 @@ -172525,6 +176556,7 @@ github.com/Squarespace/squarespace-video-background-rendering,num_dependents_dep github.com/Squarespace/template-engine,num_dependents_deps.dev:0 github.com/Squaretechre/ubiquitous,num_dependents_deps.dev:0 github.com/Squarific/npmwindowswireless, +github.com/Squazz/publish-nuget, github.com/Squeebot/squeebot-core,num_dependents_deps.dev:0 github.com/Squeebot/squeebot-protocol,num_dependents_deps.dev:0 github.com/Squeebot/squeebot-protocol-discord,num_dependents_deps.dev:0 @@ -172560,6 +176592,7 @@ github.com/Squirrel/Squirrel.Windows,criticality_score:0.516130 github.com/SquirrelGrip/scientist-yxorp,num_dependents_deps.dev:0 github.com/SquirrelStudios/video-player,num_dependents_deps.dev:0 github.com/Squirrelcoding/mailCaptcha,num_dependents_deps.dev:0 +github.com/SquisEat/pull-request-comment-trigger, github.com/Squishy123/9anime-scraper,num_dependents_deps.dev:0 github.com/Squishy123/heello-module,num_dependents_deps.dev:0 github.com/Squishy123/masterani-scraper,num_dependents_deps.dev:0 @@ -172603,6 +176636,7 @@ github.com/Sreekiranar/createPackage, github.com/Sreekiranar/tesseract2dict, github.com/Sreemanth/sequelize-auto-migrations,num_dependents_deps.dev:0 github.com/SreenathYettapu/sras, +github.com/SreeniIO/cypress-upload-to-workchat-action, github.com/Sreevatsa03/FISH-Image-Analysis, github.com/SrgyPetrov/pydead, github.com/Sri--/gulp-help-docs,num_dependents_deps.dev:0 @@ -172777,14 +176811,21 @@ github.com/StadGent/npm_package_modal,num_dependents_deps.dev:0 github.com/StadGent/npm_package_opening-hours-widget,num_dependents_deps.dev:0 github.com/Stadicus/RaspiBolt,criticality_score:0.443980 github.com/StadiumRunner/markdown-watch,num_dependents_deps.dev:0 +github.com/Staffbase/backstage-techdocs-action, +github.com/Staffbase/bigquery-github-action, github.com/Staffbase/create-staffbase-plugin-nodejs,num_dependents_deps.dev:0 +github.com/Staffbase/gitops-github-action, github.com/Staffbase/plugins-client-sdk,num_dependents_deps.dev:0 github.com/Staffbase/plugins-sdk-nodejs,num_dependents_deps.dev:0 +github.com/Staffbase/testio-trigger-test-github-action, +github.com/StafflinePeoplePlus/dependabot-changesets, github.com/StagPython/StagPy, github.com/Stage2Sec/magepy, +github.com/StageUp/docker-cloud-build, github.com/Stahlneckr/simple-profanity-filter,num_dependents_deps.dev:0 github.com/Stake-Cafe/uikit,num_dependents_deps.dev:0 github.com/Stakk/Media-Cache-Manager-Android,num_dependents_deps.dev:0 +github.com/StalemateInc/jira-release-action, github.com/Stalinko/xunoUiBreadcrumbs,num_dependents_deps.dev:0 github.com/StalkAltan/multiselect-combo-box,num_dependents_deps.dev:0 github.com/StalkAltan/paper-toggle-button,num_dependents_deps.dev:0 @@ -172881,6 +176922,8 @@ github.com/Stanko/window-scroll-manager,num_dependents_deps.dev:14 github.com/Stanley/pigeons,num_dependents_deps.dev:0 github.com/StanleyDing/ccxt,num_dependents_deps.dev:0 github.com/StanleyGoldman/commit-analyzer-cli,num_dependents_deps.dev:0 +github.com/StanleyGoldman/setup-gitversion, +github.com/StanleyMasinde/mailpit-action, github.com/StanleyMasinde/mevn-orm, github.com/StanleyMasinde/mevn-validator, github.com/StanleySane/sane-finances, @@ -172902,6 +176945,7 @@ github.com/StansAssets/com.stansassets.web,num_dependents_deps.dev:0 github.com/StansAssets/com.stansassets.xcode-project, github.com/StanyMwamba/traceanalyzer, github.com/Staq-AI/zorro-client, +github.com/Star-Island/actions-file-deployer, github.com/Star-JS/starjs,num_dependents_deps.dev:0 github.com/Star-Tube/Politics_and_Py, github.com/Star2Billing/django-audiofield, @@ -172932,6 +176976,9 @@ github.com/StarOfService/babel-plugin-transform-react-native-svg, github.com/StarPowered/Varia, github.com/StarPrecursor/hepynet, github.com/StarScape/slidein.js,num_dependents_deps.dev:0 +github.com/StarUbiquitous/command-output, +github.com/StarUbiquitous/kubectl, +github.com/StarUbiquitous/kubectl-argo-rollouts, github.com/Starangle/torcher, github.com/StarbreezeStudios/cloudscript-engine, github.com/Starchup/google-pubsub-wrapper,num_dependents_deps.dev:0 @@ -173109,6 +177156,17 @@ github.com/StarryYang/v-audio,num_dependents_deps.dev:0 github.com/StarryYang/v-select,num_dependents_deps.dev:0 github.com/Starstorm3/aespy, github.com/Starstorm3/easy-aes, +github.com/Starsuff/Post-to-Recording-Archive, +github.com/Starsuff/actions-all-in-one, +github.com/Starsuff/codecov-action, +github.com/Starsuff/dagger-for-github, +github.com/Starsuff/disconnect-server-action, +github.com/Starsuff/github-security-report-action, +github.com/Starsuff/hawkscan-action, +github.com/Starsuff/login-action, +github.com/Starsuff/s2i-build, +github.com/Starsuff/unity-activate, +github.com/Starsuff/unity-request-activation-file, github.com/Start2Run/TypeScript2Famix,num_dependents_deps.dev:0 github.com/Start9Labs/c-lightning-http-plugin,num_dependents_deps.dev:0 github.com/Start9Labs/c-lightning-pruning-plugin,num_dependents_deps.dev:0 @@ -173116,6 +177174,24 @@ github.com/Start9Labs/capacitor-tor, github.com/Start9Labs/cups-cli,num_dependents_deps.dev:0 github.com/Start9Labs/emver-rs,num_dependents_deps.dev:0 github.com/Start9Labs/http-api-proxy, +github.com/StartAutomating/Benchpress, +github.com/StartAutomating/EZOut, +github.com/StartAutomating/GitPub, +github.com/StartAutomating/HelpOut, +github.com/StartAutomating/Irregular, +github.com/StartAutomating/PS3D, +github.com/StartAutomating/PSA, +github.com/StartAutomating/PSDevOps, +github.com/StartAutomating/PSMetrics, +github.com/StartAutomating/PSMinifier, +github.com/StartAutomating/PSSVG, +github.com/StartAutomating/Piecemeal, +github.com/StartAutomating/PipeScript, +github.com/StartAutomating/RoughDraft, +github.com/StartAutomating/ScriptDeck, +github.com/StartAutomating/ShowDemo, +github.com/StartAutomating/Splatter, +github.com/StartAutomating/ugit, github.com/StartBootstrap/sb-clean-blog-shared-types,num_dependents_deps.dev:0 github.com/StartBootstrap/startbootstrap-agency,criticality_score:0.328240 github.com/StartBootstrap/startbootstrap-bare, @@ -173376,6 +177452,8 @@ github.com/SteezCram/sevenzip-node,num_dependents_deps.dev:0 github.com/StefGou/pyp-w3-gw-jobs-detector, github.com/StefH/PrimeNG-DataTable-Extensions,num_dependents_deps.dev:0 github.com/StefH/angular-odata-es5,num_dependents_deps.dev:0 +github.com/StefH/ghaction-BlazorWebAssemblyFileHashFixer, +github.com/StefH/ghaction-CompressFiles, github.com/StefH/string-split-join,num_dependents_deps.dev:0 github.com/Stefan-Code/aestar, github.com/Stefan-Code/gglsbl3, @@ -173390,6 +177468,7 @@ github.com/StefanDywersant/qthrottle,num_dependents_deps.dev:0 github.com/StefanDywersant/reliable-graphite,num_dependents_deps.dev:0 github.com/StefanEnberg/halyard.js,num_dependents_deps.dev:0 github.com/StefanEnberg/mimir.js,num_dependents_deps.dev:0 +github.com/StefanEnsmann/Minify-Json-Action, github.com/StefanGreve/iterfun, github.com/StefanHamminga/block-parser.js,num_dependents_deps.dev:0 github.com/StefanHamminga/damerau-levenshtein-git.js,num_dependents_deps.dev:0 @@ -173508,6 +177587,7 @@ github.com/Stefdv/gun-tag,num_dependents_deps.dev:0 github.com/SteffTek/Node-Data-Validator,num_dependents_deps.dev:0 github.com/SteffTek/Tick.js,num_dependents_deps.dev:0 github.com/SteffTek/planet.js,num_dependents_deps.dev:0 +github.com/Steffen911/license-checker-action, github.com/Steffen982/cloudflare-ddns-sync,num_dependents_deps.dev:0 github.com/Steffen982/cloudflare-ddns-sync-cli,num_dependents_deps.dev:0 github.com/SteffenDE/superlogin-client,num_dependents_deps.dev:0 @@ -173535,6 +177615,8 @@ github.com/SteffenKoehler/ngx-boolean-input,num_dependents_deps.dev:0 github.com/Steffenkt/getcomposer,num_dependents_deps.dev:0 github.com/SteffiB/grunt-license-concat,num_dependents_deps.dev:0 github.com/Steffion/i18n-translate-json, +github.com/Steffo99/actions-poetry-deps, +github.com/Steffo99/actions-semver, github.com/Steffo99/appuntiweb,num_dependents_deps.dev:0 github.com/Steffo99/async-chain, github.com/Steffo99/bluelib-react,num_dependents_deps.dev:0 @@ -173604,9 +177686,11 @@ github.com/StellarCN/stellar-model, github.com/StellarFw/node-formidable,num_dependents_deps.dev:0 github.com/StellarFw/stellar, github.com/Stellarium/stellarium,criticality_score:0.670580 +github.com/StellateHQ/config-preview-action, github.com/Stellaverse/Stella-Node-Client,num_dependents_deps.dev:0 github.com/Stellaverse/stella-json-validator,num_dependents_deps.dev:0 github.com/StelosHight/django_admin_custom_filters, +github.com/Stelzi79/action-minver, github.com/StemResearch/stemre, github.com/Stemanz/liputils, github.com/Stemanz/restring, @@ -173633,6 +177717,7 @@ github.com/StepanZharychev/ngx-file-input,num_dependents_deps.dev:0 github.com/StepanZharychev/sequelize-es-decorator,num_dependents_deps.dev:0 github.com/StepfenShawn/Cantonese, github.com/Steph-harris/py_weather_graph, +github.com/Steph0/dotenv-configserver, github.com/Stephan-Hydra/HydraWebGenerator,num_dependents_deps.dev:0 github.com/Stephan-Pauld/lotide,num_dependents_deps.dev:0 github.com/Stephan-S/FS19_AutoDrive,criticality_score:0.515510 @@ -173673,11 +177758,18 @@ github.com/StephanMeijer/ReportWarrior,num_dependents_deps.dev:0 github.com/StephanMeijer/Zepel, github.com/StephanSchmidt/taghiro,num_dependents_deps.dev:0 github.com/StephanSchmidt/taghiro-validator,num_dependents_deps.dev:0 +github.com/StephanThierry/ftp-delete-action, github.com/StephanWagner/jBox,"criticality_score:0.333570,num_dependents_deps.dev:0" github.com/StephanWagner/svgMap, github.com/StephanWagner/unscroll,num_dependents_deps.dev:0 github.com/StephanWagner/wordpress-deploy,num_dependents_deps.dev:0 github.com/Stephane-D/SGDK,criticality_score:0.474820 +github.com/StephaneBour/actions-calver, +github.com/StephaneBour/actions-ovh-storage, +github.com/StephaneBour/actions-php-cpd, +github.com/StephaneBour/actions-php-cs-fixer, +github.com/StephaneBour/actions-php-lint, +github.com/StephaneBour/actions-php-security-checker, github.com/StephaneGcrd/react-easy-navbar,num_dependents_deps.dev:0 github.com/StephaneP/node-refills,num_dependents_deps.dev:2 github.com/StephaneP/node-stopwords,num_dependents_deps.dev:0 @@ -173694,6 +177786,7 @@ github.com/Stephen-Meyerhofer/node-fs-writefile-promise,num_dependents_deps.dev: github.com/Stephen-Murphy/CompositeCLI,num_dependents_deps.dev:0 github.com/Stephen-Murphy/ResultHandler,num_dependents_deps.dev:0 github.com/Stephen-PP/browserview-resizing,num_dependents_deps.dev:0 +github.com/Stephen-RA-King/jinja-genie, github.com/Stephen920611/dfe_vue_template_complicate,num_dependents_deps.dev:0 github.com/StephenABoyd/post-validator,num_dependents_deps.dev:0 github.com/StephenAshmore/falconir,num_dependents_deps.dev:0 @@ -173703,6 +177796,7 @@ github.com/StephenBrooks220413/CodeBrew-js-footer,num_dependents_deps.dev:0 github.com/StephenCWan/airsonos,num_dependents_deps.dev:0 github.com/StephenCWan/httplike,num_dependents_deps.dev:2 github.com/StephenCWan/nicercast,num_dependents_deps.dev:0 +github.com/StephenCathcart/iap-header-check, github.com/StephenChou1017/react-big-scheduler,num_dependents_deps.dev:0 github.com/StephenCleary/AsyncEx,criticality_score:0.340210 github.com/StephenCleary/arc-templates,num_dependents_deps.dev:0 @@ -173730,6 +177824,7 @@ github.com/StephenKe/we-clone,num_dependents_deps.dev:0 github.com/StephenKevin/logicycl, github.com/StephenKwen/zugh, github.com/StephenMP/fail-whale,num_dependents_deps.dev:0 +github.com/StephenMP/workflow-toggle, github.com/StephenMal/simpcfg, github.com/StephenMal/simpgenalg, github.com/StephenMal/simptoolbox, @@ -173845,12 +177940,15 @@ github.com/SteveNield/winter-simple-auth,num_dependents_deps.dev:0 github.com/SteveOscar/isIphoneX,num_dependents_deps.dev:0 github.com/SteveRidout/banana,num_dependents_deps.dev:0 github.com/SteveRidout/banana-split,num_dependents_deps.dev:0 +github.com/SteveRosam/QuixReadmeAction, +github.com/SteveRosam/test_action, github.com/SteveSanderson/generator-ko,num_dependents_deps.dev:0 github.com/SteveSanderson/gulp-requirejs-bundler,num_dependents_deps.dev:0 github.com/SteveSanderson/knockout,num_dependents_deps.dev:0 github.com/SteveSanderson/knockout-es5,"Google,num_dependents_deps.dev:2" github.com/SteveSanderson/knockout.mapping,num_dependents_deps.dev:2 github.com/SteveSanderson/node-ejs-middleware,num_dependents_deps.dev:0 +github.com/SteveSandersonMS/ghaction-rewrite-base-href, github.com/SteveStrongBAH/LegalDocsPipeline,num_dependents_deps.dev:0 github.com/SteveSuv/easystore,num_dependents_deps.dev:0 github.com/SteveTheEngineer/StevesDB-Client-Node,num_dependents_deps.dev:0 @@ -173870,8 +177968,11 @@ github.com/SteveWestbrook/edge-reference,num_dependents_deps.dev:0 github.com/SteveWestbrook/is-valid-var-name,num_dependents_deps.dev:8 github.com/SteveWilshaw/mocha-image-compiler,num_dependents_deps.dev:0 github.com/SteveYuOWO/eslint-config,num_dependents_deps.dev:0 +github.com/SteveYurongSu/netease-music-box, github.com/SteveZheng-BSFT/generator-ng2component, github.com/Stevedev7/Crypto,num_dependents_deps.dev:0 +github.com/Stevedow99/dbt-cloud-cancel-running-ci-job-action, +github.com/Stevedow99/dbt-cloud-get-job-run-action, github.com/SteveeH/krovak05, github.com/Steveeeie/react-css-3d,num_dependents_deps.dev:0 github.com/Steveeeie/react-page-transitions,num_dependents_deps.dev:0 @@ -173888,9 +177989,11 @@ github.com/Steven-Torres/jsxify,num_dependents_deps.dev:0 github.com/Steven-Torres/jsxl, github.com/Steven-UV/mangoUI,num_dependents_deps.dev:0 github.com/Steven-dp/tasmota2mqtt2loxone,num_dependents_deps.dev:0 +github.com/Steven0124/create-release, github.com/Steven0811/hyper-polarbear,num_dependents_deps.dev:0 github.com/Steven24K/Hello-React-Typescript,num_dependents_deps.dev:0 github.com/Steven24K/Typesafe-Formbuilder, +github.com/StevenACoffman/hugo-deploy-gh-org-pages, github.com/StevenAnaya/Conversor,num_dependents_deps.dev:0 github.com/StevenBaby/dandan, github.com/StevenBaby/fastdict, @@ -173901,6 +178004,7 @@ github.com/StevenBlasi/msal-b2c-react,num_dependents_deps.dev:0 github.com/StevenC4/Lab-6-Node.js,num_dependents_deps.dev:0 github.com/StevenCostiou/reflectivipy, github.com/StevenCreates/react-upload-all-aws,num_dependents_deps.dev:0 +github.com/StevenCyb/sc-go-cross-build, github.com/StevenDStanton/chat-dice, github.com/StevenDStanton/chat-joke,num_dependents_deps.dev:0 github.com/StevenDevooght/tinyMCE-mention,num_dependents_deps.dev:0 @@ -174101,6 +178205,9 @@ github.com/StirFry-js/stirfry-sessions,num_dependents_deps.dev:0 github.com/StirfireStudios/Jacquard-YarnCompiler,num_dependents_deps.dev:0 github.com/StirfireStudios/Jacquard-YarnParser,num_dependents_deps.dev:0 github.com/StirfireStudios/Jacquard-js-Runtime,num_dependents_deps.dev:0 +github.com/StirlingLabs/BranchStorageAction, +github.com/StirlingLabs/GithubNugetAuthAction, +github.com/StirlingLabs/PROutputAction, github.com/Stitch-seagull/bmi-imc-calculator, github.com/Stiudeo/Thorin-fetch,num_dependents_deps.dev:0 github.com/Stiudeo/Thorin-fetch-ws,num_dependents_deps.dev:0 @@ -174139,6 +178246,9 @@ github.com/StochSS/GillesPy2, github.com/StochSS/SpatialPy, github.com/StochSS/stochss-compute, github.com/StockSharp/StockSharp,criticality_score:0.477300 +github.com/Stockopedia/action-get-changed-files, +github.com/Stockopedia/action-octommit, +github.com/Stockopedia/action-run-on-list, github.com/Stockopedia/octommit,num_dependents_deps.dev:0 github.com/Stockopedia/typed-env, github.com/StockpileInc/dynamodb-writer,num_dependents_deps.dev:0 @@ -174158,6 +178268,7 @@ github.com/Stolz/Assets,criticality_score:0.318930 github.com/Stomp1998/dbs-writer,num_dependents_deps.dev:0 github.com/StompRocket/BlastOff,num_dependents_deps.dev:0 github.com/Stompf/acli,num_dependents_deps.dev:0 +github.com/Stompf/ms-teams-deploy-release-card, github.com/StoneColdCoder/StoneJS,num_dependents_deps.dev:0 github.com/StoneCypher/DeepakChopra_NodeJS,num_dependents_deps.dev:0 github.com/StoneCypher/ReverseLodestone,num_dependents_deps.dev:0 @@ -174230,6 +178341,7 @@ github.com/StoneCypher/txt_tocfill,num_dependents_deps.dev:14 github.com/StoneGod/clickhouse_activerecord,num_dependents_deps.dev:0 github.com/StoneLabs/webduino-generator, github.com/StoneMoe/mongoengine_dsl, +github.com/StoneMoe/setup-antlr4, github.com/StoneShiLei/screeps-remote, github.com/StoneT2000/Dimensions,num_dependents_deps.dev:0 github.com/Stonebound/nodebb-plugin-align-center,num_dependents_deps.dev:0 @@ -174640,6 +178752,7 @@ github.com/Strikersoft/striker-store,num_dependents_deps.dev:0 github.com/Strilanc/Quirk,criticality_score:0.345680 github.com/Strilanc/python-chp-stabilizer-simulator, github.com/StrinTH/Antidote, +github.com/String-Obj/ssh-scp-deploy, github.com/StringEpsilon/Alnilam,num_dependents_deps.dev:0 github.com/StringEpsilon/mini-create-react-context,num_dependents_deps.dev:17900 github.com/StringEpsilon/verlauf,num_dependents_deps.dev:0 @@ -174663,6 +178776,8 @@ github.com/Strong-Platform/types,num_dependents_deps.dev:0 github.com/StrongJoshua/libgdx-inGameConsole,num_dependents_deps.dev:0 github.com/StrongMind/angularcomponentsdemo,num_dependents_deps.dev:0 github.com/StrongMind/canvas_api_client, +github.com/StrongMonkey/flt-apply, +github.com/StrongMonkey/flt-test, github.com/StrongSquirrel/react-native-webim,num_dependents_deps.dev:0 github.com/StrongeLeeroy/teamr,num_dependents_deps.dev:0 github.com/StrongerMyself/tsx-date-picker,num_dependents_deps.dev:0 @@ -174673,6 +178788,7 @@ github.com/StruanMclean/StruanAi, github.com/Structural/hippodrome,num_dependents_deps.dev:0 github.com/StructureBuilder/react-keep-alive,num_dependents_deps.dev:4 github.com/Structured-Markdown/structured_markdown, +github.com/StruggleYang/VuePagesAction, github.com/StruggleYang/nodeTest,num_dependents_deps.dev:0 github.com/Strumenta/strumenta-generators,num_dependents_deps.dev:0 github.com/Strumenta/webeditkit,num_dependents_deps.dev:0 @@ -174681,8 +178797,10 @@ github.com/Stryker0301/google-image-extractor, github.com/Stryzhevskyi/rangeSlider,num_dependents_deps.dev:0 github.com/Stu-P/common-dinkum-ui,num_dependents_deps.dev:0 github.com/StuDocu/ajacks,num_dependents_deps.dev:0 +github.com/StuMason/codebuild-logs, github.com/StuPig/grunt-tree,num_dependents_deps.dev:0 github.com/StuPyd/stupyd-lang, +github.com/StuYarrow/publish-release, github.com/Stuard256/nodejs,num_dependents_deps.dev:0 github.com/Stuart-Wilcox/servepy, github.com/StuartApp/ops-aws-scripts, @@ -174713,6 +178831,9 @@ github.com/StudentVue-Community/StudentVue.js,num_dependents_deps.dev:0 github.com/StudentVue/StudentVue.py, github.com/Studentmediene/azure-function-mocker,num_dependents_deps.dev:0 github.com/Studentmediene/sm-js-test-utils,num_dependents_deps.dev:0 +github.com/Studio-41/relisio-artefact-action, +github.com/Studio-41/relisio-product-action, +github.com/Studio-41/relisio-project-action, github.com/Studio-42/elFinder,"criticality_score:0.582930,num_dependents_deps.dev:0" github.com/Studio-Haiku/Sakura,num_dependents_deps.dev:0 github.com/Studio-Lemon/stylelint-basebuilder,num_dependents_deps.dev:0 @@ -174755,6 +178876,8 @@ github.com/StudioThick/opine-rsync,num_dependents_deps.dev:0 github.com/StudioTrackr/configur, github.com/Studiobear/replogger,num_dependents_deps.dev:0 github.com/Studiobear/snowpack-plugin-mdsvex, +github.com/StudistCorporation/actions-repo-file-sync, +github.com/StudistCorporation/actions-setup-terraform-credentials, github.com/StudyGPS-Company/generator-ms,num_dependents_deps.dev:0 github.com/StudyGPS-Company/generator-studygps,num_dependents_deps.dev:0 github.com/StudyTube/offline2,num_dependents_deps.dev:0 @@ -174786,6 +178909,7 @@ github.com/Stupeflix/freeze-requirements, github.com/Stupeflix/robust-graphite-client, github.com/Stupeflix/waitredis, github.com/StupidIncarnate/roachy,num_dependents_deps.dev:0 +github.com/StupidRepo/Issue_Watcher, github.com/StupidStudio/stupid-callctrl,num_dependents_deps.dev:0 github.com/StupidStudio/stupid-changed,num_dependents_deps.dev:0 github.com/StupidStudio/stupid-deferred,num_dependents_deps.dev:0 @@ -174817,6 +178941,7 @@ github.com/Stvad/remark-text-decoration,num_dependents_deps.dev:0 github.com/Stvenoo/eslint-config-dlw,num_dependents_deps.dev:0 github.com/Stvenoo/eslint-config-mad-it,num_dependents_deps.dev:0 github.com/StwertnikCoding/stw-js-footer, +github.com/Stwissel/build-mkdocs-action, github.com/Stwissel/node-red-contrib-enigma,num_dependents_deps.dev:0 github.com/Stwissel/node-red-contrib-objectcleaner,num_dependents_deps.dev:0 github.com/Stwissel/node-red-contrib-salesforce,num_dependents_deps.dev:0 @@ -174833,6 +178958,7 @@ github.com/StyleCop/StyleCop,criticality_score:0.417100 github.com/StyleLounge/http-queue,num_dependents_deps.dev:0 github.com/StyleLounge/types-diacritics,num_dependents_deps.dev:0 github.com/StyleShare/log2jsconsole, +github.com/StyleShit/action-whitelist-users, github.com/StyleT/angularjs-acl,num_dependents_deps.dev:0 github.com/StyleT/js-acl,num_dependents_deps.dev:0 github.com/StyleT/mytunnel,num_dependents_deps.dev:0 @@ -174863,6 +178989,7 @@ github.com/Stynson/react-serpent,num_dependents_deps.dev:0 github.com/StyraHem/ShellyForHASS,criticality_score:0.463610 github.com/StyraHem/pyShelly, github.com/StyraHem/pyTesy, +github.com/StyraInc/setup-regal, github.com/Styria-Digital/confgetti, github.com/Styria-Digital/django-rest-framework-jwt, github.com/Styria-Digital/django-unload, @@ -174872,6 +178999,7 @@ github.com/Styria-Digital/v-photo,num_dependents_deps.dev:0 github.com/Styria-Digital/vue-snackbar,num_dependents_deps.dev:0 github.com/Styx11/emitter,num_dependents_deps.dev:0 github.com/Styx11/whats,num_dependents_deps.dev:0 +github.com/SuCicada/su-action-webhook, github.com/SuGroB81/project-lvl1-s388,num_dependents_deps.dev:0 github.com/SuLG-ik/Euclid-Algorithm, github.com/SuLinXin66/bk-usbkey-request,num_dependents_deps.dev:0 @@ -174927,6 +179055,7 @@ github.com/Subash/run,num_dependents_deps.dev:0 github.com/Subash/turf,num_dependents_deps.dev:0 github.com/Subash/turf-html, github.com/Subash48/number-formatter,num_dependents_deps.dev:0 +github.com/Subatomic-Agency/lcov-report-action-with-context, github.com/SubhaChandraDas/node-exotel-whitelist,num_dependents_deps.dev:0 github.com/SubhaChandraDas/node-sms-horizon,num_dependents_deps.dev:0 github.com/SubhadipDatta/SatIOpsT, @@ -174971,6 +179100,7 @@ github.com/SublimeText/Origami,criticality_score:0.388510 github.com/SublimeText/PackageDev,criticality_score:0.431750 github.com/SublimeText/PowerShell,criticality_score:0.300100 github.com/SublimeText/TrailingSpaces,criticality_score:0.400710 +github.com/SublimeText/syntax-test-action, github.com/Submarinonline/cjp.js,num_dependents_deps.dev:0 github.com/Submarinonline/generator,num_dependents_deps.dev:2 github.com/Submarinonline/submarin-converter,num_dependents_deps.dev:0 @@ -174987,6 +179117,8 @@ github.com/Submersible/node-signobj, github.com/Submersible/node-staticfile,num_dependents_deps.dev:0 github.com/Submersible/zeppelin-toc-spell,num_dependents_deps.dev:0 github.com/Submitty/Submitty,criticality_score:0.628970 +github.com/Submitty/action-dependabot-title-fixer, +github.com/Submitty/action-pr-title, github.com/Submitty/pdf-annotate.js,num_dependents_deps.dev:0 github.com/Submitty/submitty-config, github.com/SubnauticaNitrox/Nitrox,criticality_score:0.497380 @@ -175029,6 +179161,7 @@ github.com/SudSupreme/node-of-legends, github.com/SuddenDevelopment/suddenStats,num_dependents_deps.dev:0 github.com/SuddenDevelopment/utils,num_dependents_deps.dev:0 github.com/Sude-/lgogdownloader,criticality_score:0.404650 +github.com/SudeepSidhu/diff-stats-action, github.com/SudgYT/tools.dev,num_dependents_deps.dev:0 github.com/Sudhagar7/PyStoch, github.com/SudhagarS/pry-state,num_dependents_deps.dev:0 @@ -175230,6 +179363,7 @@ github.com/Suhesong/anydoor,num_dependents_deps.dev:0 github.com/SuhushinAS/eslint-config, github.com/SuhushinAS/stylelint-config,num_dependents_deps.dev:0 github.com/SuhushinAS/webpack-config,num_dependents_deps.dev:0 +github.com/SuibianP/verilog-cleaner, github.com/SuicV/CirclesJs,num_dependents_deps.dev:0 github.com/SuiiiDe/Rabboni, github.com/SuiiiDe/RabboniHandGes, @@ -175254,6 +179388,7 @@ github.com/Sujimoshi/jarvis.js,num_dependents_deps.dev:0 github.com/Sujimoshi/jq.visibility,num_dependents_deps.dev:0 github.com/Sujimoshi/jsonschema-definer, github.com/Sujimoshi/mpn,num_dependents_deps.dev:0 +github.com/Sujimoshi/semantic-release-action, github.com/Sujimoshi/swagger-definer,num_dependents_deps.dev:0 github.com/Sujimoshi/webpack-one-to-one-plugin,num_dependents_deps.dev:0 github.com/Sujit-O/dynamicgem, @@ -175599,6 +179734,7 @@ github.com/SunscorchCalvin/determ, github.com/Sunshine168/egg-mongolass,num_dependents_deps.dev:0 github.com/Sunshine168/koa2-session-mongolass,num_dependents_deps.dev:0 github.com/Sunshine168/koa2-session-store,num_dependents_deps.dev:0 +github.com/SunshineCTF/Challenge-Requirements, github.com/SunshineList/django-custom-utils, github.com/SunshinyNeko/AsyncNode,num_dependents_deps.dev:0 github.com/SunshinyNeko/Kinq,num_dependents_deps.dev:0 @@ -175606,6 +179742,7 @@ github.com/SunshinyNeko/LightSword,num_dependents_deps.dev:0 github.com/SunshowerC/simple-lint,num_dependents_deps.dev:0 github.com/SunstroUS/discord-webhook-api,num_dependents_deps.dev:0 github.com/SunstroUS/supreme-community-api,num_dependents_deps.dev:0 +github.com/Sunwoo0110/IREM, github.com/Sunxinqiang/npm,num_dependents_deps.dev:0 github.com/Sunxiuwen2018/sdk_python_for_mylog, github.com/Suor/aioscrape, @@ -175669,6 +179806,7 @@ github.com/SuperFola/forge,num_dependents_deps.dev:0 github.com/SuperGuangDi/fsmlib, github.com/SuperHappysir/vue-first-demo,num_dependents_deps.dev:0 github.com/SuperHouse/esp-open-rtos,criticality_score:0.351720 +github.com/SuperHuangXu/juejin-post-action, github.com/SuperHubber3/commando-provider-mongo, github.com/SuperID/nanoservices,num_dependents_deps.dev:2 github.com/SuperID/query-mobile-phone-area,num_dependents_deps.dev:0 @@ -175809,6 +179947,8 @@ github.com/Superbalist/js-pubsub-rest-proxy,num_dependents_deps.dev:0 github.com/Superbalist/laravel-google-cloud-storage,criticality_score:0.367170 github.com/Superbalist/python-pubsub, github.com/Superbalist/python-pubsub-validators, +github.com/Superbasil3/build-failure-analyser-action, +github.com/Superbasil3/retrieve-workflow-logs-action, github.com/SuperblocksHQ/super-artifacts,num_dependents_deps.dev:0 github.com/SuperblocksHQ/super-cli,num_dependents_deps.dev:0 github.com/SuperblocksHQ/super-web3-provider,num_dependents_deps.dev:0 @@ -175818,6 +179958,7 @@ github.com/Supercide/loxium,num_dependents_deps.dev:0 github.com/Superd22/ngxs-socketio,num_dependents_deps.dev:0 github.com/Superd22/spectrum-bot,num_dependents_deps.dev:0 github.com/Superdao-DAO/web3.js,num_dependents_deps.dev:0 +github.com/Supereg/action-swiftlint, github.com/Supereg/hap-proxy,num_dependents_deps.dev:0 github.com/Supereg/homebridge-http-fanv2, github.com/Supereg/homebridge-http-humidity-sensor,num_dependents_deps.dev:0 @@ -175914,6 +180055,7 @@ github.com/SupportClass/sc-three-stage-video,num_dependents_deps.dev:0 github.com/SupportClass/stylelint-config,num_dependents_deps.dev:0 github.com/SupportClass/tsconfigs,num_dependents_deps.dev:0 github.com/SuprDewd/algorithm_x_python, +github.com/SuprGames/serverless-github-action, github.com/SupraSummus/ipfs-api-mount, github.com/SupraSummus/pgspawn, github.com/SupratikRulz/soft-ui,num_dependents_deps.dev:0 @@ -175951,11 +180093,16 @@ github.com/Suresh-Singamsetty/oneNeuron_Pypi, github.com/SureshAthanti/DXC-Industrialized-AI-Starter, github.com/SureshCS-50/sample-widget,num_dependents_deps.dev:0 github.com/SureshSc/react-pinch-and-zoom,num_dependents_deps.dev:0 +github.com/Suresofttech-official/vulcan-action, github.com/SurfaceJS/modules,num_dependents_deps.dev:378 github.com/SurfaceW/Qualifys,num_dependents_deps.dev:0 +github.com/Surferlul/logseq-publish-adjust-content-width, +github.com/Surferlul/logseq-publish-excalidraw-to-svg, +github.com/Surferlul/logseq-publish-theme-tenset, github.com/Surfix/icechart, github.com/SurgeryLab/gpyx-uikit, github.com/SurgicalPhotonics/dlc-generic-analysis, +github.com/Surgo/docker-smart-tag-action, github.com/SurienDG/NAPI-Thread-Safe-Promise,num_dependents_deps.dev:0 github.com/Surigoma/hubot-meshitero,num_dependents_deps.dev:0 github.com/Surile/react-native-app-upgrade, @@ -175963,6 +180110,8 @@ github.com/Surile/react-native-vinocr,num_dependents_deps.dev:0 github.com/SuriyaaKudoIsc/animate-a-name,num_dependents_deps.dev:0 github.com/SuriyaaKudoIsc/iscinc-hw-gem,num_dependents_deps.dev:0 github.com/Surkal/WiktionnaireParser, +github.com/Surnet/change-pr-base, +github.com/Surnet/get-json-matrix, github.com/Surnet/graphql-amqp-subscriptions,num_dependents_deps.dev:0 github.com/Surnet/ionic-multi-camera,num_dependents_deps.dev:0 github.com/Surnet/swagger-jsdoc,"criticality_score:0.568170,num_dependents_deps.dev:190" @@ -175997,6 +180146,8 @@ github.com/SuryaSankar/toolspy, github.com/SuryaSrikanth/BTP-Plotter-npm-package,num_dependents_deps.dev:0 github.com/SuryaThiru/mlgauge, github.com/Suryansh2002/jsonsh, +github.com/SusanDoggie/mongodb-action, +github.com/SusanDoggie/swift-action, github.com/SusejR/SCL012-MD-Links-,num_dependents_deps.dev:0 github.com/SushainGpt96/randomNumber,num_dependents_deps.dev:0 github.com/Sushant-ABdigital/lotide,num_dependents_deps.dev:0 @@ -176006,6 +180157,7 @@ github.com/Sushantgakhar/censorify,num_dependents_deps.dev:0 github.com/Susheel-1999/Sentence_Similarity, github.com/SushiBtw/discord-music-player, github.com/SushiBtw/epicgames-status,num_dependents_deps.dev:0 +github.com/SushiFu/cache-local-fs, github.com/SushiLab/mTAGs, github.com/SushiWaUmai/goki,num_dependents_deps.dev:0 github.com/Sushil-Thapa/PyTorch-Hackathon-2019, @@ -176044,6 +180196,7 @@ github.com/Suteki/react-native-webview-bypass-ssl-errors,num_dependents_deps.dev github.com/Suteki/starwars-names,num_dependents_deps.dev:0 github.com/SutharMukesh/api-controller-express, github.com/Sutil/react-native-template-neos-eslint,num_dependents_deps.dev:0 +github.com/Sutil/snk, github.com/SutirthaSahu/PyPi, github.com/Sutor-Design/fs-grow,num_dependents_deps.dev:0 github.com/Sutro-Analytics/sutro-ui,num_dependents_deps.dev:0 @@ -176053,6 +180206,7 @@ github.com/Sutto/Reversible-Data,num_dependents_deps.dev:0 github.com/Sutto/marvin,num_dependents_deps.dev:0 github.com/Sutto/perennial,num_dependents_deps.dev:0 github.com/Sutton-Research-Lab/parsetta, +github.com/SuttonJack/jira-lint, github.com/SuuQi/egg-router-decorator,num_dependents_deps.dev:0 github.com/SuuQi/middle-layer,num_dependents_deps.dev:0 github.com/Suva/ccconvert,num_dependents_deps.dev:0 @@ -176063,6 +180217,7 @@ github.com/SuvabBaral/Angular-log-that-error,num_dependents_deps.dev:0 github.com/Suven/ember-cli-swiper,num_dependents_deps.dev:0 github.com/Suven/ember-cli-visjs,num_dependents_deps.dev:0 github.com/Suven/ember-cordova-storage,num_dependents_deps.dev:0 +github.com/Suvink/heroku-deploy, github.com/Suvink/let-me-react,num_dependents_deps.dev:0 github.com/Suvitruf/protoc-gen,num_dependents_deps.dev:0 github.com/Suvodeep90/SuvoTest, @@ -176086,8 +180241,16 @@ github.com/Sv443/node-wrap, github.com/Sv443/workspace-hash,num_dependents_deps.dev:0 github.com/SvSchmidt/linqjs,num_dependents_deps.dev:0 github.com/SvajkaJ/react-spectrogram,num_dependents_deps.dev:0 +github.com/SvanBoxel/azure-cost-report-action, +github.com/SvanBoxel/azure-purge-cdn, +github.com/SvanBoxel/codeowners-action, github.com/SvanBoxel/delete-merged-branch,"criticality_score:0.385400,num_dependents_deps.dev:0" +github.com/SvanBoxel/gitlab-mirror-and-ci-action, +github.com/SvanBoxel/org-audit-action, +github.com/SvanBoxel/organization-workflows, +github.com/SvanBoxel/spotify-action, github.com/SvanBoxel/visibility-sensor-react-native,num_dependents_deps.dev:0 +github.com/SvanBoxel/zaproxy-to-ghas, github.com/Svatikk/Antima-Style, github.com/SvavaCapital/react-snap, github.com/Svdvoort/PREDICTFastr, @@ -176147,6 +180310,7 @@ github.com/SvetaPrepPrep/ep_tables2,num_dependents_deps.dev:0 github.com/SvetlanaVesna/react-animate-height,num_dependents_deps.dev:0 github.com/Svetloslav15/react-sidebar-ui, github.com/Svetloslav15/words-to-time,num_dependents_deps.dev:0 +github.com/SvetoslavSlavov/ios-build-action, github.com/SvetoslavTsenov/devices-controller,num_dependents_deps.dev:0 github.com/SvetozarMateev/fs-assistant,num_dependents_deps.dev:0 github.com/SvineruS/mopidy-async-client, @@ -176209,6 +180373,7 @@ github.com/Swan/RippleAPI.js,num_dependents_deps.dev:0 github.com/Swan/osuReplayParser,num_dependents_deps.dev:0 github.com/SwankSwashbucklers/uploadwithus, github.com/Swannbm/django-app-parameter, +github.com/Swanseatom/js-dynamic-methods-action, github.com/Swanson-Tyler/react-text-reveal,num_dependents_deps.dev:0 github.com/SwapX-Team/swapx-lib,num_dependents_deps.dev:0 github.com/SwapX-Team/swapx-v1-core,num_dependents_deps.dev:0 @@ -176246,6 +180411,7 @@ github.com/Swatinem/cow,num_dependents_deps.dev:0 github.com/Swatinem/esgraph,num_dependents_deps.dev:0 github.com/Swatinem/eslint-config-swatinem,num_dependents_deps.dev:0 github.com/Swatinem/fast-babel-register,num_dependents_deps.dev:0 +github.com/Swatinem/fucov, github.com/Swatinem/gobble-cssnext,num_dependents_deps.dev:0 github.com/Swatinem/jade-virtualdom,num_dependents_deps.dev:0 github.com/Swatinem/motorina,num_dependents_deps.dev:0 @@ -176256,6 +180422,7 @@ github.com/Swatinem/rendez,num_dependents_deps.dev:0 github.com/Swatinem/rollup-plugin-dce,num_dependents_deps.dev:2 github.com/Swatinem/rollup-plugin-dts,num_dependents_deps.dev:122 github.com/Swatinem/rollup-plugin-url,num_dependents_deps.dev:52 +github.com/Swatinem/rust-cache, github.com/Swatinem/walkes,num_dependents_deps.dev:126 github.com/Swatinem/wamp1,num_dependents_deps.dev:0 github.com/Swatinem/websocket-buffering,num_dependents_deps.dev:2 @@ -176275,6 +180442,7 @@ github.com/SweHassanAhmed/csharp-typescript-class-convertor,num_dependents_deps. github.com/Sweanyy/base.json,num_dependents_deps.dev:0 github.com/SweatWorking/react-native-airplay,num_dependents_deps.dev:0 github.com/SweatWorking/react-native-video,num_dependents_deps.dev:0 +github.com/Swechhya/R-actions, github.com/SwedbankPay/design.swedbankpay.com,num_dependents_deps.dev:0 github.com/SwedbankPay/jekyll-material-icon-tag,num_dependents_deps.dev:0 github.com/SwedbankPay/kramdown-plantuml,num_dependents_deps.dev:0 @@ -176283,6 +180451,7 @@ github.com/Swedish-li/markdown-it-katex,num_dependents_deps.dev:0 github.com/SwedishChef/ioBroker.bosesoundtouch, github.com/SwedishChef1/ioBroker.bosesoundtouch,num_dependents_deps.dev:0 github.com/Sweefty/temply,num_dependents_deps.dev:0 +github.com/Sweeistaken/sweelease, github.com/Sweenu/lockatme, github.com/SweepMe/pysweepme, github.com/Sweet-666/paging-helper, @@ -176297,6 +180466,9 @@ github.com/SweetIQ/redis-poller, github.com/SweetIQ/tx-easy-pika, github.com/SweetMNM/dreidels,num_dependents_deps.dev:0 github.com/SweetProcess/django-pg-queue, +github.com/SweetRainGarden/SrgCounterServiceGaction, +github.com/SweetRainGarden/SrgGactionChangelogApp, +github.com/SweetRainGarden/SrgGactionNameTransferJs, github.com/SweetSmoke21/pyevents21, github.com/Sweetbridge/tslint-config,num_dependents_deps.dev:0 github.com/Sweetchuck/grunt-behat-wrapper,num_dependents_deps.dev:0 @@ -176321,6 +180493,10 @@ github.com/Sweex99/funt,num_dependents_deps.dev:0 github.com/SwetankPoddar/UofG-Timetable-CLI, github.com/SwiCago/HeatPump,criticality_score:0.341090 github.com/SwiTool/Ankonnect,num_dependents_deps.dev:0 +github.com/Swibi/connect-to-gke, +github.com/SwiftActions/SwiftBuild, +github.com/SwiftActions/SwiftTest, +github.com/SwiftDocOrg/github-wiki-publish-action, github.com/SwiftDocOrg/swift-doc,criticality_score:0.418060 github.com/SwiftGGTeam/the-swift-programming-language-in-chinese,criticality_score:0.418040 github.com/SwiftGen/SwiftGen,criticality_score:0.527990 @@ -176351,6 +180527,7 @@ github.com/Swiftx/swiftx-guardian,num_dependents_deps.dev:0 github.com/SwiftyBeaver/SwiftyBeaver,criticality_score:0.481830 github.com/SwiftyBeaver/SwiftyBeaver-Python, github.com/SwiftyJSON/SwiftyJSON,criticality_score:0.465240 +github.com/SwiftyLab/setup-swift, github.com/SwiftySpartan/Angular-1.5-cli,num_dependents_deps.dev:0 github.com/SwiftySpartan/i18n-extended,num_dependents_deps.dev:0 github.com/SwiftySpartan/ng-smart-tabs,num_dependents_deps.dev:0 @@ -176360,6 +180537,8 @@ github.com/Swiip/compo,num_dependents_deps.dev:0 github.com/Swiip/generator-gulp-angular,"criticality_score:0.362140,num_dependents_deps.dev:0" github.com/Swiiz/discord-escape, github.com/Swiiz/youtube-api-v3-wrapper, +github.com/Swilder-M/playstation-box, +github.com/Swile/ts-migration-companion-action, github.com/SwimComm/hytek-parser, github.com/Swimlane/angular-data-table,num_dependents_deps.dev:0 github.com/Swimlane/angular-model-factory,num_dependents_deps.dev:0 @@ -176389,6 +180568,7 @@ github.com/SwipeCellKit/SwipeCellKit,criticality_score:0.332270 github.com/SwipeWallet/default-token-list,num_dependents_deps.dev:0 github.com/SwipeWallet/swipe-swap,num_dependents_deps.dev:0 github.com/SwipeWallet/venus-js,num_dependents_deps.dev:0 +github.com/Swiple/swiple-action, github.com/SwirlNetworks/discus,num_dependents_deps.dev:0 github.com/SwirlNetworks/swirl-sdk-android,num_dependents_deps.dev:0 github.com/SwissArmyMike/flvsckeditorcustom,num_dependents_deps.dev:0 @@ -176413,6 +180593,10 @@ github.com/Swisyn/Android-Consent-SDK-Helper,num_dependents_deps.dev:0 github.com/Swisyn/Android-Onboarder,num_dependents_deps.dev:0 github.com/Swisyn/GestureImageView,num_dependents_deps.dev:0 github.com/Swisyn/SimpleGCM,num_dependents_deps.dev:0 +github.com/Swisyn/action-android-lint, +github.com/Swisyn/action-android-lint-review, +github.com/Swisyn/android-version-generator-actions, +github.com/Swit-ChristianKim/swit-webhook, github.com/Switch-Company/chouchenn,num_dependents_deps.dev:0 github.com/Switch-Company/fetcher,num_dependents_deps.dev:0 github.com/Switch-Company/form-utils,num_dependents_deps.dev:0 @@ -176475,6 +180659,7 @@ github.com/SwoopCMI/swoop-boilerplate,num_dependents_deps.dev:0 github.com/SwoopSearch/pyaddress, github.com/Swoorup/dgraph-rs,num_dependents_deps.dev:0 github.com/Swoorup/eth-batcher-contracts,num_dependents_deps.dev:0 +github.com/Swootte/upload-google-play, github.com/Sword-Smith/tezos-pack, github.com/Sworder71/JimpFONT,num_dependents_deps.dev:0 github.com/Swordfish-Security/stingray-cli-core, @@ -176564,11 +180749,13 @@ github.com/SyedUzairAhmed03/Physics_Numericals,num_dependents_deps.dev:0 github.com/SyedWasiHaider/VueHighlightInput,num_dependents_deps.dev:0 github.com/Syeda-Urooj-Fatima/ip-input,num_dependents_deps.dev:0 github.com/Syedkumailabbaszaidi/ng-kzsidenav,num_dependents_deps.dev:0 +github.com/SyedsImran/NewDrone, github.com/Syforce/node-ping, github.com/Syft-Application/redux-rollbar-log-middleware,num_dependents_deps.dev:0 github.com/Syft-Application/redux-rollbar-state-middleware,num_dependents_deps.dev:0 github.com/Syft-Application/redux-rollbar-telemetry-middleware,num_dependents_deps.dev:0 github.com/Sygic/sygic-maps-services-python, +github.com/SygilGroup/foundry-toolchain, github.com/Sygmei/ObEngine,criticality_score:0.386180 github.com/Sygmei/PyVili, github.com/Sygmei/ah, @@ -176592,6 +180779,7 @@ github.com/Sylhare/simple-lda, github.com/Sylhare/todo-app,num_dependents_deps.dev:0 github.com/Sylhare/webkit,num_dependents_deps.dev:0 github.com/Sylius/Sylius,criticality_score:0.742270 +github.com/SyliusLabs/BuildTestAppAction, github.com/Syllo/nvtop,criticality_score:0.306650 github.com/SyloRei/ts-json-decoder,num_dependents_deps.dev:0 github.com/SylonZero/node-pin,num_dependents_deps.dev:0 @@ -176661,6 +180849,7 @@ github.com/SymbiFlow/sphinxcontrib-hdl-diagrams, github.com/SymbiFlow/symbiflow-rr-graph, github.com/SymbiFlow/yosys-symbiflow-plugins,Google github.com/SymbioticLab/fluid, +github.com/Symbitic/install-cmake, github.com/Symbitic/spotify-web-playback,num_dependents_deps.dev:0 github.com/Symblight/toolset,num_dependents_deps.dev:0 github.com/Symbol-Lab/symbol-utils,num_dependents_deps.dev:0 @@ -176781,6 +180970,8 @@ github.com/Synclop/Vaseline,num_dependents_deps.dev:0 github.com/Syncplay/syncplay,criticality_score:0.551230 github.com/SyncroIT/Raspir, github.com/SyncroIT/electroneum-rpc-js,num_dependents_deps.dev:0 +github.com/Syncronet-APS/laravel-deploy, +github.com/Syncronet-APS/nuxt-deploy, github.com/Syncthetic/ElectronAutoUpdate,num_dependents_deps.dev:0 github.com/Syncthetic/RestOnExpress,num_dependents_deps.dev:0 github.com/Syncurity/opendxl-irflow-client, @@ -176790,6 +180981,10 @@ github.com/Syndace/python-omemo-backend-signal, github.com/Syndace/python-x3dh, github.com/Syndace/python-xeddsa, github.com/Syndallic/py-to-ts-interfaces, +github.com/Syndelis/cbindgen-action, +github.com/Syndelis/cpp-linter-action, +github.com/Syndelis/cpp-linter-cached-action, +github.com/Syndelis/rustfmt-action, github.com/SynderBlack/Kadal, github.com/Syndesi/bootstrap-widget,num_dependents_deps.dev:0 github.com/Syndesi/license-icons,num_dependents_deps.dev:0 @@ -176803,6 +180998,7 @@ github.com/SynedraAcus/bear_hug, github.com/Synergetic-ai/Bio-knowledge-graph-python, github.com/SynergiTech/chrome-pdf,num_dependents_deps.dev:0 github.com/SynergiTech/display-control,num_dependents_deps.dev:0 +github.com/SynergiTech/slack-workflow-result, github.com/Synergistic/react-all-in-one-table, github.com/SynergyKit/synergykit-sdk-nodejs, github.com/Synerise/synerise-design,"num_dependents_deps.dev:1686,num_dependents_deps.dev:1672" @@ -176849,6 +181045,7 @@ github.com/Synodic-Software/CPPython, github.com/Synodic-Software/CPPython-Core, github.com/Synodic-Software/Pytest-CPPython, github.com/Synodic-Software/Synodic-Tools, +github.com/Synodic-Software/Tag-Metadata, github.com/Synook/elfhex, github.com/Synopsis/fastai2_extensions, github.com/Synopsis/fastai_amalgam, @@ -177007,6 +181204,7 @@ github.com/Szegoo/preact-js,num_dependents_deps.dev:0 github.com/Szero/tweetmagick, github.com/Szpadel/chrome-headless-render-pdf,num_dependents_deps.dev:0 github.com/Szpadel/clicore,num_dependents_deps.dev:0 +github.com/Szpadel/magento-l18n-extractor-action, github.com/Szpadel/metadata-tools,num_dependents_deps.dev:0 github.com/Szuszukami/posi,num_dependents_deps.dev:0 github.com/Szuszukami/usehooks,num_dependents_deps.dev:0 @@ -177018,6 +181216,7 @@ github.com/SzybkiSasza/unified-config,num_dependents_deps.dev:0 github.com/SzybkiSasza/validators-pl,num_dependents_deps.dev:0 github.com/Szymon-D/semantic-release-plugin-csproj,num_dependents_deps.dev:0 github.com/Szymon-D/vue-material-icons-generator,num_dependents_deps.dev:0 +github.com/SzymonDukla/action-curl-gunzip, github.com/SzymonDukla/kubemq-node,num_dependents_deps.dev:0 github.com/SzymonDukla/node-loggly-bulk,num_dependents_deps.dev:0 github.com/SzymonDukla/object-filter-js,num_dependents_deps.dev:0 @@ -177063,6 +181262,7 @@ github.com/T-PWK/biguint-format,num_dependents_deps.dev:164 github.com/T-PWK/flake-idgen,num_dependents_deps.dev:124 github.com/T-PWK/node-line-reader,num_dependents_deps.dev:38 github.com/T-PWK/node-password-analyzer,num_dependents_deps.dev:0 +github.com/T-R-I-X/action-rbxtsc, github.com/T-ROC/sendinfo-page, github.com/T-Regx/T-Regx,criticality_score:0.355510 github.com/T-Reimer/WebSocketAPI, @@ -177162,6 +181362,8 @@ github.com/TAG-Epic/chatwatch.py, github.com/TAGC/vue-expandable-grid,num_dependents_deps.dev:0 github.com/TAIT-Towers/slack_file_manager,num_dependents_deps.dev:0 github.com/TAJD/route_helpers, +github.com/TAKANOME-DEV/assign-issue-action, +github.com/TAKANOME-DEV/assign-to-me-action, github.com/TAKAyukiatkwsk/hubot-queue,num_dependents_deps.dev:0 github.com/TAKETODAY/today-context,num_dependents_deps.dev:4 github.com/TAKETODAY/today-framework,num_dependents_deps.dev:0 @@ -177183,10 +181385,13 @@ github.com/TAPP-Travel/prettier-config,num_dependents_deps.dev:0 github.com/TAPPGuild/bitjws-js,num_dependents_deps.dev:0 github.com/TAPPGuild/sqlalchemy-models, github.com/TAPevents/tap-i18n,criticality_score:0.303720 +github.com/TARAAI/PR-Label-Checker, +github.com/TASSIA710/action-glua-lint, github.com/TASSIA710/boiling-react,num_dependents_deps.dev:0 github.com/TASVideos/BizHawk,criticality_score:0.642120 github.com/TASVideos/desmume,criticality_score:0.463890 github.com/TASVideos/fceux,criticality_score:0.548010 +github.com/TAServers/lest, github.com/TATDK/JavascriptObjectTemplates,num_dependents_deps.dev:0 github.com/TAXIIProject/libtaxii, github.com/TAYBI/taybi-print, @@ -177242,6 +181447,8 @@ github.com/TCMiranda/actorEmitter,num_dependents_deps.dev:0 github.com/TCMiranda/joi-extract-type,num_dependents_deps.dev:30 github.com/TCModus/arkServiceEdit,num_dependents_deps.dev:0 github.com/TCMooney/tcm-devcamp-js-footer,num_dependents_deps.dev:0 +github.com/TCPShield/gp-docker-action, +github.com/TCPShield/s3cmd, github.com/TCPWAVE/tims-python-client, github.com/TCatshoek/STMLearn, github.com/TCatshoek/dash-split, @@ -177264,6 +181471,9 @@ github.com/TCvanLeth/ScatterPy, github.com/TDAF/is-user-valid,num_dependents_deps.dev:0 github.com/TDAF/passport-taccounts-oauth2,num_dependents_deps.dev:0 github.com/TDAF/varufaker,num_dependents_deps.dev:0 +github.com/TDAK1509/label-pr-based-on-files-changed, +github.com/TDAK1509/set-label-based-on-pr-title, +github.com/TDASinternal/gh-amp-package-pusher, github.com/TDAmeritrade/botbuilder-storage-postgres,num_dependents_deps.dev:0 github.com/TDAmeritrade/halfpipe, github.com/TDAmeritrade/recur,num_dependents_deps.dev:0 @@ -177352,12 +181562,14 @@ github.com/TGMPA/TGM-Plugin-Activation,criticality_score:0.384300 github.com/TGMorais/aurelia-elm,num_dependents_deps.dev:0 github.com/TGMorais/aurelia-simple-tabs,num_dependents_deps.dev:0 github.com/TGMorais/aurelia-tags-input,num_dependents_deps.dev:0 +github.com/TGNThump/factorio-publish-mod-action, github.com/TGOlson/dupertest,num_dependents_deps.dev:0 github.com/TGOlson/fn-proxy,num_dependents_deps.dev:0 github.com/TGOlson/livecoding-primes, github.com/TGOlson/monoid,num_dependents_deps.dev:0 github.com/TGOlson/o-validator,num_dependents_deps.dev:0 github.com/TGOlson/woot-js,num_dependents_deps.dev:0 +github.com/TGPSKI/name-generator-node-action, github.com/TGPSKI/react-native-checkmate, github.com/TGRstack/avatars,num_dependents_deps.dev:0 github.com/TGRstack/country-state-city,num_dependents_deps.dev:0 @@ -177537,6 +181749,7 @@ github.com/TKais/Travelbug,num_dependents_deps.dev:0 github.com/TKasperczyk/child_pty,num_dependents_deps.dev:0 github.com/TKasperczyk/node-termios,num_dependents_deps.dev:2 github.com/TKasperczyk/spectcl,num_dependents_deps.dev:0 +github.com/TKlauenberg/chart-releaser-action, github.com/TKnpl/ioBroker.divera247,num_dependents_deps.dev:0 github.com/TKnudsen/ComplexDataObject,num_dependents_deps.dev:0 github.com/TL-Garcia/chordConstructor,num_dependents_deps.dev:0 @@ -177554,6 +181767,8 @@ github.com/TLacke/node-red-contrib-automation-controller,num_dependents_deps.dev github.com/TLacke/node-red-contrib-multi-sensor,num_dependents_deps.dev:0 github.com/TLacke/node-red-contrib-switch-break,num_dependents_deps.dev:0 github.com/TLacke/node-red-multi-sensor,num_dependents_deps.dev:0 +github.com/TLizer/action-with-post-step, +github.com/TLizer/git-auth, github.com/TLmaK0/phaser-mvc,num_dependents_deps.dev:0 github.com/TLmaK0/rustneat,num_dependents_deps.dev:0 github.com/TLmaK0/rusty_dashed,num_dependents_deps.dev:0 @@ -177561,6 +181776,7 @@ github.com/TLmaK0/witcase,num_dependents_deps.dev:0 github.com/TLuigi003/json-duplicate-key-handle,num_dependents_deps.dev:22 github.com/TLuthra/node-xmpp,num_dependents_deps.dev:0 github.com/TMCApplications/eslint-config,num_dependents_deps.dev:0 +github.com/TMCB-SPACE/release, github.com/TMCee/tmc-client,num_dependents_deps.dev:0 github.com/TMDer/facebook-js-ads-sdk,num_dependents_deps.dev:0 github.com/TMDer/trm,num_dependents_deps.dev:0 @@ -177620,6 +181836,7 @@ github.com/TMiguelT/wordnet-sqlite,num_dependents_deps.dev:0 github.com/TN1ck/onion-loader,num_dependents_deps.dev:0 github.com/TN1ck/yaml-markdown,num_dependents_deps.dev:0 github.com/TNAlotaibi/DTM-crypt, +github.com/TNAucoin/gh-action-file-change, github.com/TND/webpack-server-runner-plugin,num_dependents_deps.dev:0 github.com/TNFlexso/sap-cf-capm-sqlite-persistence,num_dependents_deps.dev:0 github.com/TNG/ArchUnit,"criticality_score:0.561680,num_dependents_deps.dev:1424" @@ -177668,6 +181885,7 @@ github.com/TNT-Likely/koa-loggers,num_dependents_deps.dev:0 github.com/TNT-Likely/koa-mocks,num_dependents_deps.dev:0 github.com/TNT-Likely/mock-middleware,num_dependents_deps.dev:0 github.com/TNT-Likely/wawatiny, +github.com/TNT-Likely/webhook-action, github.com/TNT-Likely/webpack-rev-replace-plugin,num_dependents_deps.dev:0 github.com/TNT1314/mixrestview, github.com/TNThacker2015/mp-utils,num_dependents_deps.dev:0 @@ -177742,6 +181960,7 @@ github.com/TPreece101/df2geojson, github.com/TR1PTyCH/VirtualPorter,num_dependents_deps.dev:0 github.com/TRCYX/py_monad_do, github.com/TREEcg/Basic-LDES-Server,num_dependents_deps.dev:0 +github.com/TREEcg/LDES-Action, github.com/TREEcg/event-stream-client,num_dependents_deps.dev:0 github.com/TREFZ/handlebars-echo,num_dependents_deps.dev:0 github.com/TREMA-UNH/trec-car-tools, @@ -177800,6 +182019,7 @@ github.com/TSNoble/dynamodb-ghost, github.com/TSNobleSoftware/minimize, github.com/TSOHO/xiaoaojiao,num_dependents_deps.dev:0 github.com/TSP66/Espanol, +github.com/TSRBerry/unstable-commands, github.com/TSaaristo/certbot-dns-he, github.com/TSavo/Link,num_dependents_deps.dev:0 github.com/TSavo/english2number-js,num_dependents_deps.dev:2 @@ -177826,6 +182046,7 @@ github.com/TTWShell/hobbit-core, github.com/TTaras/rbc-gulp-modify-css,num_dependents_deps.dev:0 github.com/TTaras/rbc-twig-browserify-transform,num_dependents_deps.dev:0 github.com/TTaras/rbc-twig-compiler,num_dependents_deps.dev:0 +github.com/TTengs/MarkdownToConfluence, github.com/TTimo/GtkRadiant,criticality_score:0.440490 github.com/TTitanUA/ngx-ttitan-color-picker,num_dependents_deps.dev:0 github.com/TTitanUA/videojs-hlsjs-live-record,num_dependents_deps.dev:0 @@ -177849,6 +182070,7 @@ github.com/TUD-RST/symbtools, github.com/TUD-STKS/PyRCN, github.com/TUD-STKS/tud-ais-package, github.com/TUD-STKS/tud-themes, +github.com/TUDOCK/action-composer-nexus-upload, github.com/TUDelft-CITG/OpenQTSim, github.com/TUDelft-CITG/OpenTISim, github.com/TUDelft-CITG/OpenTNSim, @@ -177896,6 +182118,7 @@ github.com/TWOCHE/dsmlbootcamp4, github.com/TWOWhite/redux-no-reducer-helper,num_dependents_deps.dev:0 github.com/TWT233/khl.py, github.com/TWT233/nowem, +github.com/TWoolhouse/setup-vulkan-sdk, github.com/TXWSLYF/lyf-ui,num_dependents_deps.dev:0 github.com/TXisfine/hexo-echarts-tagcloud, github.com/TYKUHN2/gerte-node,num_dependents_deps.dev:0 @@ -177918,6 +182141,7 @@ github.com/TYPECASTINGSG/rpscript-api-telegram-bot,num_dependents_deps.dev:0 github.com/TYPECASTINGSG/rpscript-api-twilio,num_dependents_deps.dev:0 github.com/TYPECASTINGSG/rpscript-api-twitter,num_dependents_deps.dev:0 github.com/TYPO3-Console/TYPO3-Console,criticality_score:0.537750 +github.com/TYPO3-Documentation/gh-render-action, github.com/TYPO3-Documentation/sphinx_typo3_theme, github.com/TYPO3-Documentation/sphinxcontrib-gitloginfo, github.com/TYPO3-Documentation/sphinxcontrib.t3fieldlisttable, @@ -178061,6 +182285,7 @@ github.com/TadaoYamaoka/cshogi, github.com/TadasBaltrusaitis/OpenFace,criticality_score:0.403960 github.com/TadasPaplauskas/pattern-parser,num_dependents_deps.dev:0 github.com/TadeasKriz/grunt-cordova-plugin-jasmine,num_dependents_deps.dev:0 +github.com/TadeuBraga/trigger-jenkins-job, github.com/TadeuszRychter/mock-from-pact,num_dependents_deps.dev:0 github.com/Tadija1986/sharecomponent,num_dependents_deps.dev:0 github.com/TadjerouniMohamedAdel/simple-link-previewer, @@ -178111,6 +182336,7 @@ github.com/TahaSh/vue-expandable-image,num_dependents_deps.dev:0 github.com/TahaSh/vue-paginate,num_dependents_deps.dev:0 github.com/TaherJsStack/CallPlugin,num_dependents_deps.dev:0 github.com/Tahler/rust-lang-currency,num_dependents_deps.dev:0 +github.com/Tahmid12Khan/kubectl-aws-eks, github.com/Tahseenm/fizzbuzz,num_dependents_deps.dev:0 github.com/Tahseenm/marrakech,num_dependents_deps.dev:0 github.com/Tahseenm/youreadydom,num_dependents_deps.dev:0 @@ -178121,6 +182347,7 @@ github.com/Tahul/nuxt-use-sound,num_dependents_deps.dev:0 github.com/Tahul/vue-catch-hrefs,num_dependents_deps.dev:0 github.com/Tahul/vue-use-sound,num_dependents_deps.dev:0 github.com/TaiRongSyuStudio/util_func, +github.com/TaiStudio/action-edit-YML, github.com/TaiStudio/animeback-submit,num_dependents_deps.dev:0 github.com/TaiStudio/animebackKit,num_dependents_deps.dev:0 github.com/TaiStudio/console-art, @@ -178196,6 +182423,7 @@ github.com/Taka8112/CSV-assert,num_dependents_deps.dev:0 github.com/TakaakiFuruse/jump-kun,num_dependents_deps.dev:0 github.com/Takachi67/vue3-autocomplete,num_dependents_deps.dev:0 github.com/TakaharaShujin/laravel-elixir-cleanup,num_dependents_deps.dev:0 +github.com/TakahashiIkki/previous-issue-finder, github.com/TakahashiNZ/Dropbox,num_dependents_deps.dev:0 github.com/TakahiroKobayashi/coininfo,num_dependents_deps.dev:0 github.com/TakahiroSato/canvas2d,num_dependents_deps.dev:0 @@ -178224,6 +182452,7 @@ github.com/TakeLab/spacy-udpipe, github.com/TakeOffLabs/tol,num_dependents_deps.dev:0 github.com/TakeScoop/SwiftyRSA,criticality_score:0.352950 github.com/TakeScoop/eslint-config-scoop,num_dependents_deps.dev:0 +github.com/TakeScoop/publish-terraform-cloud-module-action, github.com/TakeWingCo/eth-tools, github.com/Takeafile/JsonRpcClient,num_dependents_deps.dev:0 github.com/Takeafile/backpressurify,num_dependents_deps.dev:0 @@ -178342,6 +182571,7 @@ github.com/TaleLin/lin-cms-koa-core, github.com/TaleLin/lin-cms-vue,criticality_score:0.424630 github.com/TaleLin/lin-ui,"criticality_score:0.453580,num_dependents_deps.dev:0" github.com/TaleirOfDeynai/NAI-Lore-Helper,num_dependents_deps.dev:0 +github.com/Talend-Marketing/publish-to-cloud, github.com/Talend/component-api,num_dependents_deps.dev:123 github.com/Talend/component-runtime,"num_dependents_deps.dev:1679,num_dependents_deps.dev:3363" github.com/Talend/daikon,num_dependents_deps.dev:0 @@ -178359,6 +182589,7 @@ github.com/TalentBox/sequel-rails,num_dependents_deps.dev:0 github.com/TalentSoft/eslint-config-talentsoft,num_dependents_deps.dev:0 github.com/TalentVN/NTDemo-Lib,num_dependents_deps.dev:0 github.com/TalentedEurope/TranslatorBuilder,num_dependents_deps.dev:0 +github.com/Talentia-Software-OSS/check-pr-comments-action, github.com/Talentia-Software/OSS-github-action-python-template, github.com/Talesoft/bem,num_dependents_deps.dev:0 github.com/Talesoft/event-js,num_dependents_deps.dev:0 @@ -178390,6 +182621,7 @@ github.com/Talk-Point/shopcloud-metric-cli, github.com/Talk-Point/shopcloud-secrethub-cli, github.com/Talk-Point/shopcloud-streams-cli, github.com/TalkFusionDev/angular-emoji-filter-hd,num_dependents_deps.dev:0 +github.com/TalkWIthKeyboard/airflow-dags-test-action, github.com/TalkWithKeyboard/moogle, github.com/Talkdesk/woodstock,num_dependents_deps.dev:0 github.com/Talkgh/talkgh-ruby,num_dependents_deps.dev:0 @@ -178427,6 +182659,7 @@ github.com/TallerWebSolutions/eslint-config-taller,num_dependents_deps.dev:0 github.com/TallerWebSolutions/hasura-allowed-queries,num_dependents_deps.dev:0 github.com/TallerWebSolutions/slush-druboot,num_dependents_deps.dev:0 github.com/Tallglass9000/Drawer-framework,num_dependents_deps.dev:0 +github.com/Talljack/daily-code-stats, github.com/Talljack/storage,num_dependents_deps.dev:0 github.com/Talljack/vue3-hotKey,num_dependents_deps.dev:0 github.com/Talljack/vue3-json-view,num_dependents_deps.dev:0 @@ -178435,6 +182668,8 @@ github.com/Talljoe/hexo-cover-utils,num_dependents_deps.dev:0 github.com/Talljoe/hexo-filter-post-identifier,num_dependents_deps.dev:0 github.com/Tallock/create-react-app, github.com/TallyFox/ui-utils,num_dependents_deps.dev:0 +github.com/Tallyb/deployments, +github.com/Tallyb/lerna-graph-action, github.com/Tallyb/meteor-angular2-accounts-material-ui,num_dependents_deps.dev:0 github.com/Tallyrald/pdc-ts,num_dependents_deps.dev:0 github.com/Tallysticks/cobbler,num_dependents_deps.dev:0 @@ -178544,6 +182779,7 @@ github.com/Tangerine-Community/cordova-plugin-nearby-connections,num_dependents_ github.com/Tangerine-Community/tangy-form,num_dependents_deps.dev:2 github.com/Tangerine-Community/tangy-form-editor,num_dependents_deps.dev:0 github.com/Tangerine-Community/tangy-log,num_dependents_deps.dev:0 +github.com/Tangerine-Community/tangy-mkdocs-build-action, github.com/Tangerino/telemetry-datastore, github.com/Tanghailun/node-computer-guid,num_dependents_deps.dev:0 github.com/TangibleThings/drovideo-backend, @@ -178593,6 +182829,7 @@ github.com/TanmayArya-1p/UrbanDictAPI, github.com/Tanmoy741127/pyaadhaar, github.com/TanmoySG/configPy, github.com/TanmoySG/flinit, +github.com/TanmoySG/k-deploy-action, github.com/TanmoySG/logsmith, github.com/Tanndev/bar-menu,num_dependents_deps.dev:0 github.com/Tanndev/performance-profiler,num_dependents_deps.dev:0 @@ -178655,6 +182892,7 @@ github.com/TapResearch/react-native-tapresearch,num_dependents_deps.dev:0 github.com/TapSwap/uikit,num_dependents_deps.dev:0 github.com/TapSwapV2/sdk,num_dependents_deps.dev:0 github.com/TapSwapV2/uikit,num_dependents_deps.dev:0 +github.com/TapTap21/docker-remote-deployment-action, github.com/TapTrack/NdefJS,num_dependents_deps.dev:0 github.com/TapTrack/TappyChromeSerialCommunicatorJs,num_dependents_deps.dev:0 github.com/TapTrack/TappyNobleBleCommunicatorJs,num_dependents_deps.dev:0 @@ -178723,6 +182961,7 @@ github.com/Taraj/express-validator,num_dependents_deps.dev:0 github.com/TaranVH/2nd-keyboard,criticality_score:0.355610 github.com/Tarang/ddp-server,num_dependents_deps.dev:0 github.com/Tarang11/fastify-csrf,num_dependents_deps.dev:0 +github.com/Tarang74/README-CI, github.com/TarantulaDefi/uikit, github.com/Taranys/ng-selector, github.com/Taras-S/StringSwaper,num_dependents_deps.dev:0 @@ -178840,6 +183079,7 @@ github.com/Tarsnap/scrypt,criticality_score:0.416630 github.com/Tarsnap/spiped,criticality_score:0.421570 github.com/Tarsnap/tarsnap,criticality_score:0.483550 github.com/Tarsnap/tarsnap-gui,criticality_score:0.323590 +github.com/TartanLlama/actions-eleventy, github.com/TartanLlama/expected,criticality_score:0.313600 github.com/Tartorus/smev3Transform, github.com/TartuNLP/nauron, @@ -178930,6 +183170,8 @@ github.com/TauZero/node-fq,num_dependents_deps.dev:0 github.com/TauZero/node-stat-collector,num_dependents_deps.dev:0 github.com/Tauag/react-use-debouncer,num_dependents_deps.dev:0 github.com/Tauag/spass, +github.com/Taucher2003/GitLab-Pipeline-Action, +github.com/Taucher2003/date-difference-action, github.com/Taufeeq-Khan99/taufeeq-dims,num_dependents_deps.dev:0 github.com/TaufiqHassan/acccmip5, github.com/TaufiqHassan/acccmip6, @@ -178968,6 +183210,7 @@ github.com/Tautulli/Tautulli,criticality_score:0.557080 github.com/TavDev/rf-table,num_dependents_deps.dev:0 github.com/Tavernari/react-native-volume-controller,num_dependents_deps.dev:0 github.com/Tavernier-App/tavernier-toolbox,num_dependents_deps.dev:0 +github.com/Tavh/github-issues-automation, github.com/Tavisca-Saurabh/ORXe-2.0-Project-Setup-Automation,num_dependents_deps.dev:0 github.com/TaviscaSolutions/oski-node-common,num_dependents_deps.dev:0 github.com/Tavishi18/101903046, @@ -179132,6 +183375,7 @@ github.com/Teahouse-Studios/memepack-builder, github.com/Teahouse-Studios/memepack-builder-ts,num_dependents_deps.dev:0 github.com/Teajo/super-events,num_dependents_deps.dev:0 github.com/Teakowa/probable-happiness, +github.com/Teakowa/setup-serverless, github.com/Teal-Projects/rdmi, github.com/Teal/H2Server, github.com/Teal/TDK,num_dependents_deps.dev:0 @@ -179204,6 +183448,7 @@ github.com/TeamEQ/chartist-plugin-pointlabels,num_dependents_deps.dev:0 github.com/TeamExtremePro/ExtremeProUserbot, github.com/TeamFleet/KCKit, github.com/TeamFleet/Ooyodo,num_dependents_deps.dev:0 +github.com/TeamGalacticraft/discord-reporter, github.com/TeamGenerAid/GANerAid, github.com/TeamGrid/eslint-config,num_dependents_deps.dev:0 github.com/TeamHG-Memex/Formasaurus, @@ -179272,6 +183517,7 @@ github.com/TeamMapR/d-mapreduce,num_dependents_deps.dev:0 github.com/TeamMentor/node-teammentor,num_dependents_deps.dev:0 github.com/TeamMocha/PostMark,num_dependents_deps.dev:0 github.com/TeamMsgExtractor/msg-extractor,criticality_score:0.402220 +github.com/TeamNecta/build-signed-apk, github.com/TeamNewPipe/NewPipe,criticality_score:0.757680 github.com/TeamNewPipe/NewPipeExtractor,criticality_score:0.526770 github.com/TeamNightSky/EasySQL, @@ -179308,6 +183554,7 @@ github.com/TeamStuQ/skill-map,criticality_score:0.313690 github.com/TeamSubjectMatter/tsm-mdcss-theme,num_dependents_deps.dev:0 github.com/TeamSupercell/typings-for-css-modules-loader,num_dependents_deps.dev:4 github.com/TeamTailify/node-auth-runner,num_dependents_deps.dev:0 +github.com/TeamTigers/minisauras, github.com/TeamToes/Webpack-make,num_dependents_deps.dev:0 github.com/TeamUltroid/Ultroid, github.com/TeamUltroid/pyUltroid, @@ -179352,6 +183599,7 @@ github.com/Teamweek/instadate,num_dependents_deps.dev:0 github.com/Teamweek/key-storage, github.com/Teamweek/react-native-lockable-scroll-view,num_dependents_deps.dev:0 github.com/Teamwork/autocomplete,num_dependents_deps.dev:0 +github.com/Teamwork/github-sync, github.com/Teamwork/node-afk, github.com/Teamwork/node-auto-launch,criticality_score:0.328230 github.com/Teamwork/ot-rich-text,num_dependents_deps.dev:0 @@ -179391,6 +183639,7 @@ github.com/Tech46-AB/myra-ui,num_dependents_deps.dev:0 github.com/Tech4Med/machinepack-ncbi,num_dependents_deps.dev:0 github.com/TechAppsSv/upaint,num_dependents_deps.dev:0 github.com/TechAssembly/colyseus,num_dependents_deps.dev:0 +github.com/TechBooster/ReVIEW-build-artifact-action, github.com/TechBubbleJordan/js-xlsx, github.com/TechCareBD/topup-react-native-scratch-view,num_dependents_deps.dev:0 github.com/TechChange/console-to-slack,num_dependents_deps.dev:0 @@ -179402,6 +183651,9 @@ github.com/TechDevils/PercentageTime,num_dependents_deps.dev:0 github.com/TechDevils/TimeAnything-npm,num_dependents_deps.dev:0 github.com/TechDevils/array-random-picker,num_dependents_deps.dev:2 github.com/TechDudie/tkinterDnD, +github.com/TechDufus/BlogQueue, +github.com/TechDufus/MyTop8, +github.com/TechDufus/Sponsors, github.com/TechEmpower/FrameworkBenchmarks,criticality_score:0.667330 github.com/TechEmpower/gemini,num_dependents_deps.dev:0 github.com/TechEmpower/react-governor,num_dependents_deps.dev:0 @@ -179426,6 +183678,7 @@ github.com/TechLearnersInc/cythonizer, github.com/TechLearnersInc/rubaialter, github.com/TechMeLy/utils,num_dependents_deps.dev:0 github.com/TechMely/eslint-config-ts,num_dependents_deps.dev:0 +github.com/TechMindsDev/trigger-jenkins-and-return-result, github.com/TechNottingham/hubot-hackbot,num_dependents_deps.dev:0 github.com/TechOpsX/nihao-pypi, github.com/TechPacket/techpacket-build-tools,num_dependents_deps.dev:2 @@ -179481,6 +183734,7 @@ github.com/TechToThePeople/proca-gw,num_dependents_deps.dev:0 github.com/TechToThePeople/react-geolocation,num_dependents_deps.dev:0 github.com/TechToThePeople/react-ipgeolocation, github.com/TechWebAuthn/web-authn-components,num_dependents_deps.dev:0 +github.com/TechWiz-3/linksafe, github.com/Techainer/mlchain-python, github.com/Techainer/norfair, github.com/Techainer/sort-node,num_dependents_deps.dev:0 @@ -179505,6 +183759,7 @@ github.com/Techern/linux-api-rs,num_dependents_deps.dev:1 github.com/Techern/shutdown_hooks_rs,num_dependents_deps.dev:0 github.com/Techie-Alex/DevTeamAPI,num_dependents_deps.dev:0 github.com/Techie-Pi/loggerine, +github.com/Techie-Pi/node-vps-deployment, github.com/Techie-Pi/soundy,num_dependents_deps.dev:0 github.com/Techie-Pi/techie-web-utils,num_dependents_deps.dev:0 github.com/Techie-Qabila/fastify-mongoose, @@ -179543,6 +183798,7 @@ github.com/Techniv/jsonivers,num_dependents_deps.dev:0 github.com/Techniv/node-cmd-conf,num_dependents_deps.dev:0 github.com/Techniv/node-command-io,num_dependents_deps.dev:0 github.com/Techniv/node-dates,num_dependents_deps.dev:0 +github.com/Techno-Disaster/github-activity-readme, github.com/Techno-Hwizrdry/python-malurl, github.com/Techno-Hwizrdry/rainbowprint, github.com/TechnoBureau/tb-admin,num_dependents_deps.dev:0 @@ -179613,9 +183869,11 @@ github.com/Techofficer/passport-apple,num_dependents_deps.dev:0 github.com/Techolution/generator-spring-boot-microservice,num_dependents_deps.dev:0 github.com/TechplexEngineer/frc-livescore, github.com/TechplexEngineer/json-sanitizer,num_dependents_deps.dev:0 +github.com/Techshift/mention-reviewers, github.com/Techstyle-Open-Source/debug-color-formatter, github.com/Techstyle-Open-Source/react-tabindex, github.com/Techtonica/curriculum,criticality_score:0.575920 +github.com/Techwards/pr-keeper, github.com/Techwraith/ScrollFix,num_dependents_deps.dev:2 github.com/Techwraith/atomify-cli,num_dependents_deps.dev:0 github.com/Techwraith/atomify-css,num_dependents_deps.dev:7 @@ -179637,6 +183895,7 @@ github.com/Techwraith/window-mode,num_dependents_deps.dev:0 github.com/TechyChan/react-responsive-carousel, github.com/TechyNilesh/DeepImageSearch, github.com/TechyNilesh/DeepTextSearch, +github.com/TechySwift/docker-anchor, github.com/TeckZy/ng-image-box,num_dependents_deps.dev:0 github.com/Tecktron/html-partials-compiler,num_dependents_deps.dev:0 github.com/TecladistaProd/html-gen-pdf,num_dependents_deps.dev:0 @@ -179712,6 +183971,7 @@ github.com/TeeSeal/ffmkek,num_dependents_deps.dev:0 github.com/Teebo/ng-tippy,num_dependents_deps.dev:0 github.com/Teebo/scss-migrate,num_dependents_deps.dev:0 github.com/Teebo/unused-modules-webpack-plugin,num_dependents_deps.dev:0 +github.com/Teebra/JSON-to-HTML-table, github.com/Teebytes/TnT-Fuzzer, github.com/TeehanLax/node-carrot2,num_dependents_deps.dev:0 github.com/Teekeks/pyTwitchAPI, @@ -179883,6 +184143,7 @@ github.com/TejaBeta/SerialKiller,num_dependents_deps.dev:0 github.com/Tejas003/draw_missing, github.com/TejasAvinashShetty/ihu, github.com/TejasQ/get-all-css-properties, +github.com/TejasvOnly/random-rickroll, github.com/Tejasvp25/Api-Mocker,num_dependents_deps.dev:0 github.com/TekSiDoT/bunyan-windows-eventlog,num_dependents_deps.dev:0 github.com/TekVanDo/Angular-Tek-Progress-bar,num_dependents_deps.dev:0 @@ -179900,6 +184161,7 @@ github.com/TelAPI/telapi-nodejs, github.com/TelAPI/telapi-ruby,num_dependents_deps.dev:0 github.com/TelaClaims/ignite-tela-boilerplate,num_dependents_deps.dev:0 github.com/Telcrome/ai-trainer, +github.com/Tele-Train-Software-GmbH/http-server-action, github.com/Tele2-NL/react-native-pdf-wrapper,num_dependents_deps.dev:0 github.com/Tele2-NL/react-native-select-input,num_dependents_deps.dev:0 github.com/TeleClinic/ngx-auth-img,num_dependents_deps.dev:0 @@ -180057,7 +184319,9 @@ github.com/Templarian/ui.bootstrap.contextMenu,num_dependents_deps.dev:0 github.com/Template-generator/create-node-cli-app,num_dependents_deps.dev:0 github.com/Template-generator/create-typescript-app, github.com/TemplatemonsterPlugins/rd-parallax,num_dependents_deps.dev:0 +github.com/TemplatesHub/gh-action-latex-build-and-release, github.com/TemplesOfSyrinx/tiny,num_dependents_deps.dev:0 +github.com/Templum/govulncheck-action, github.com/Templum/lib-of-commons, github.com/Templum/node-api-mocker,num_dependents_deps.dev:0 github.com/Temzasse/react-buffet,num_dependents_deps.dev:0 @@ -180123,6 +184387,8 @@ github.com/TencentBlueKing/blueapps, github.com/TencentBlueKing/django-versionlog, github.com/TencentBlueKing/iam-python-sdk, github.com/TencentCloud/O266player,criticality_score:0.445530 +github.com/TencentCloud/cli-action, +github.com/TencentCloud/cos-action, github.com/TencentCloud/media-hosting-miniprogram-sdk,num_dependents_deps.dev:0 github.com/TencentCloud/tencentcloud-cli, github.com/TencentCloud/tencentcloud-cli-intl-en, @@ -180131,7 +184397,9 @@ github.com/TencentCloud/tencentcloud-sdk-go,criticality_score:0.397030 github.com/TencentCloud/tencentcloud-sdk-java,"criticality_score:0.340420,num_dependents_deps.dev:41" github.com/TencentCloud/tencentcloud-sdk-java-en,num_dependents_deps.dev:0 github.com/TencentCloud/tencentcloud-sdk-python,criticality_score:0.303320 +github.com/TencentCloud/tke-cluster-credential-action, github.com/TencentCloudBase/cloud-base-cli,num_dependents_deps.dev:0 +github.com/TencentCloudBase/cloudbase-action, github.com/TencentCloudBase/cloudbase-extension-cms,criticality_score:0.298410 github.com/TencentCloudBase/cloudbase-framework,num_dependents_deps.dev:0 github.com/TencentCloudBase/cloudbase-js-sdk,num_dependents_deps.dev:456 @@ -180285,6 +184553,7 @@ github.com/TerAleS/node-glvrd,num_dependents_deps.dev:0 github.com/TerStudio/ivislider,num_dependents_deps.dev:0 github.com/TerStudio/vsocial,num_dependents_deps.dev:0 github.com/TerThesz/tb-http,num_dependents_deps.dev:0 +github.com/TerabyteTiger/action-happyPR, github.com/Teradata/covalent,"criticality_score:0.448750,num_dependents_deps.dev:0" github.com/Teradata/covalent-code-editor,num_dependents_deps.dev:1 github.com/Teradata/covalent-data,num_dependents_deps.dev:0 @@ -180362,6 +184631,7 @@ github.com/TerminusEst/Power_Network, github.com/TerminusHQ/gitbook-plugin-terminus,num_dependents_deps.dev:0 github.com/TerminusHQ/gitbook-theme-terminus,num_dependents_deps.dev:0 github.com/TerminusStudio/Capacitor-InApp-Billing,num_dependents_deps.dev:0 +github.com/TerosTechnology/teroshdl-documenter-action, github.com/Terra-rian/snakecord,num_dependents_deps.dev:0 github.com/TerraEclipse/node-peerlink,num_dependents_deps.dev:0 github.com/TerraEclipse/react-mapboxgl,num_dependents_deps.dev:4 @@ -180428,6 +184698,7 @@ github.com/TerrayTM/pytimize, github.com/Terreii/hoodie-plugin-store-crypto,num_dependents_deps.dev:0 github.com/Terreii/use-pouchdb,num_dependents_deps.dev:0 github.com/TerrellV/python-coinbasepro, +github.com/TerrenceHo/cache-always, github.com/TerriaJS/NationalMap-Catalog,num_dependents_deps.dev:0 github.com/TerriaJS/TerriaJS-Server,num_dependents_deps.dev:0 github.com/TerriaJS/catalog-converter, @@ -180556,9 +184827,11 @@ github.com/Tessmore/em-highlight,num_dependents_deps.dev:0 github.com/Tessmore/neo4j-batch-index-stream,num_dependents_deps.dev:0 github.com/Tessmore/sbd,num_dependents_deps.dev:38 github.com/Tessmore/term-suggest,num_dependents_deps.dev:0 +github.com/Tessot/hello-world-javascript-reactor, github.com/TessyPowder/Quill-mathLive-blot,num_dependents_deps.dev:0 github.com/TessyPowder/Quill-mathQuill-blot,num_dependents_deps.dev:0 github.com/TessyPowder/vuejs-quill,num_dependents_deps.dev:0 +github.com/Test-Org-Jay/test-PR-Metadata-action, github.com/TestArmada/boilerplate,num_dependents_deps.dev:0 github.com/TestArmada/drydock-scaffold,num_dependents_deps.dev:0 github.com/TestArmada/logger,num_dependents_deps.dev:2 @@ -180605,6 +184878,8 @@ github.com/Tester86/encrypter, github.com/Tester86/passfactory, github.com/Tester86/stadista, github.com/TesterLess/testerless,num_dependents_deps.dev:0 +github.com/TesterPrem/DockerAction, +github.com/TesterPrem/pythongithub3, github.com/TesterRandolph/SEO_Sniffer,num_dependents_deps.dev:0 github.com/TesterSong/Ctype-Struct-Python, github.com/TesterlifeRaymond/BeautifulReport, @@ -180693,6 +184968,7 @@ github.com/Th3Cod3/platzom,num_dependents_deps.dev:0 github.com/Th3M4ttman/ezcolors, github.com/Th3M4ttman/mptc, github.com/Th3OneAndOnly/Sourc,num_dependents_deps.dev:0 +github.com/Th3Un1q3/kinda-contribute, github.com/ThBM/node-storage-service, github.com/ThCC/miitepro-js,num_dependents_deps.dev:0 github.com/ThCC/mittepro-js, @@ -180785,6 +185061,7 @@ github.com/ThansEX/thans.db,num_dependents_deps.dev:0 github.com/Thanseem007/strapi-upload-provider-windows-network-drive-local,num_dependents_deps.dev:0 github.com/ThaoPN/py_slack_notify, github.com/ThapeloDev/angular-boss-pdf,num_dependents_deps.dev:0 +github.com/TharindaDilshan/ballerina-dependabot-action, github.com/TharinduDR/DeepOffense, github.com/TharinduDR/HateSpans, github.com/TharinduDR/MUDES, @@ -180874,6 +185151,7 @@ github.com/Thaumatorium/python-bitvavo-api, github.com/Thaumaturge/aiomonetaclient, github.com/ThaumicTom/gbx.js,num_dependents_deps.dev:0 github.com/Thavarshan/formlink,num_dependents_deps.dev:0 +github.com/Thazz/rosinstall_credentials_action, github.com/ThbtSprt/euros, github.com/ThbtSprt/frdate, github.com/ThbtSprt/taeg, @@ -180934,6 +185212,7 @@ github.com/The-Martin-Agency/generator-martinlab-static,num_dependents_deps.dev: github.com/The-Naomi-Developers/naomi-paginator, github.com/The-Nicholas-R-Barrow-Company-LLC/PyMacApp, github.com/The-Nicholas-R-Barrow-Company-LLC/mongoengine-user, +github.com/The-Noah/pages-action, github.com/The-Noah/static-site-generator,num_dependents_deps.dev:0 github.com/The-OpenROAD-Project/OpenROAD,criticality_score:0.527650 github.com/The-OpenROAD-Project/asap7,Google @@ -181003,6 +185282,7 @@ github.com/The-Politico/us-house, github.com/The-Politico/us-senate, github.com/The-Poolz/Poolz-Helper, github.com/The-Powder-Toy/The-Powder-Toy,criticality_score:0.502800 +github.com/The-PullRequest-Club/action-delete-release, github.com/The-PyWaiters/GiphyPy, github.com/The-Pyoneers/cs107-FinalProject, github.com/The-Quill/crimpy,num_dependents_deps.dev:0 @@ -181020,6 +185300,7 @@ github.com/The-SocialLion/physicscalc, github.com/The-Software-Academy/cascade-carousel, github.com/The-Special/Burc-api, github.com/The-Speck/query-builder-ts,num_dependents_deps.dev:0 +github.com/The-Vincit-Group/promote-google-play-track-action, github.com/The-mortal-phoenix/alexa-reply, github.com/The-mortal-phoenix/alexa-reply-api,num_dependents_deps.dev:0 github.com/The-only/okam-plugin-tinyimg,num_dependents_deps.dev:0 @@ -181027,6 +185308,7 @@ github.com/The-only/okam-plugin-wx2swan,num_dependents_deps.dev:0 github.com/The0therChad/DATA533-Lab3, github.com/The18thWarrior/web3_extended,num_dependents_deps.dev:0 github.com/The1only/ek80, +github.com/The24thDS/stellaris-localisation-crowdin-fix, github.com/The2ndOne3/gallop,num_dependents_deps.dev:0 github.com/The2ndOne3/generator-orbit,num_dependents_deps.dev:0 github.com/The3DSquare/inkscape-cli,num_dependents_deps.dev:0 @@ -181051,6 +185333,7 @@ github.com/TheAlan404/flying-squid-authme, github.com/TheAlan404/life,num_dependents_deps.dev:0 github.com/TheAlan404/nmp-player,num_dependents_deps.dev:0 github.com/TheAlbatrossCodes/plotfa, +github.com/TheAlbertDev/get-orcid-publications, github.com/TheAlgorithms/Algorithms-Explanation,criticality_score:0.352730 github.com/TheAlgorithms/C,criticality_score:0.533230 github.com/TheAlgorithms/C-Plus-Plus,criticality_score:0.550380 @@ -181117,6 +185400,7 @@ github.com/TheAwiteb/meendag, github.com/TheAwiteb/past_date2word, github.com/TheAwiteb/pybfc, github.com/TheAwiteb/salla, +github.com/TheAxZim/Whitesource-Scan-Action, github.com/TheAxiome/discord_auto_prefix, github.com/TheAxiome/discord_counting,num_dependents_deps.dev:0 github.com/TheAxiome/discord_economy,num_dependents_deps.dev:0 @@ -181199,6 +185483,8 @@ github.com/TheBrownLab/PhyloFisher, github.com/TheBrownMotie/finite-byte-field,num_dependents_deps.dev:0 github.com/TheBund1st/daming-ui,num_dependents_deps.dev:0 github.com/TheBunyip/asciichart,num_dependents_deps.dev:0 +github.com/TheBurchLog/body-env-tag-action, +github.com/TheBusyBiscuit/recently-closed-issues, github.com/TheBusyBiscuit/xml-library,num_dependents_deps.dev:0 github.com/TheButlah/makrl, github.com/TheBuzzDee/hain-plugin-amzn,num_dependents_deps.dev:0 @@ -181267,6 +185553,7 @@ github.com/TheCoderGuru/bot-starter-js,num_dependents_deps.dev:0 github.com/TheCodingBeats/react-native-grid-image-viewer-with-caption,num_dependents_deps.dev:0 github.com/TheCodingBeats/react-native-modern-header-thecodingbeats,num_dependents_deps.dev:0 github.com/TheCodingGorilla/storybook-theme-changer,num_dependents_deps.dev:0 +github.com/TheCodingWombat/RichardLabs, github.com/TheCognizantFoundry/react-zest,num_dependents_deps.dev:0 github.com/TheColdVoid/MIAO, github.com/TheCollinCashio/Rib-Client,num_dependents_deps.dev:0 @@ -181279,7 +185566,9 @@ github.com/TheColorRed/red5,num_dependents_deps.dev:0 github.com/TheColorRed/typescript-middleware,num_dependents_deps.dev:0 github.com/TheColvinCo/cache-bottle-dependencies,num_dependents_deps.dev:0 github.com/TheColvinCo/react-native-payments,num_dependents_deps.dev:0 +github.com/TheColvinCo/shunit2-github-action, github.com/TheComfyChair/redux-scc,num_dependents_deps.dev:0 +github.com/TheCommieAxolotl/Bump-Hash-Action, github.com/TheCommitments/npmhua,num_dependents_deps.dev:0 github.com/TheComputerDan/pkg-downloader, github.com/TheComputerM/posthtml-markdownit,num_dependents_deps.dev:0 @@ -181365,13 +185654,16 @@ github.com/TheDiveO/linuxns_rel, github.com/TheDivic/roler, github.com/TheDnM/vismit-python, github.com/TheDoctor0/vue-input-mask,num_dependents_deps.dev:0 +github.com/TheDoctor0/zip-release, github.com/TheDome/xmljs-sax,num_dependents_deps.dev:0 github.com/TheDotLabs/changelog-generator, +github.com/TheDotLabs/github-asana-action, github.com/TheDoudou/homebridge-BoschIndego, github.com/TheDoxMedia/thewatcher,num_dependents_deps.dev:0 github.com/TheDoxMedia/wbox,num_dependents_deps.dev:0 github.com/TheDrHax/Twitch-Chat-Downloader, github.com/TheDrHax/Twitch-Utils, +github.com/TheDragonCode/codestyler, github.com/TheDragonProject/weeb.sh,num_dependents_deps.dev:0 github.com/TheDrone7/disco-oauth,num_dependents_deps.dev:0 github.com/TheDrone7/jsonstore-io,num_dependents_deps.dev:0 @@ -181429,8 +185721,10 @@ github.com/TheEwok/wistie,num_dependents_deps.dev:0 github.com/TheExpandingPolytope/gltf-pbr-loader,num_dependents_deps.dev:0 github.com/TheF1ng3r/amari.py, github.com/TheFBplus/pc-ex,num_dependents_deps.dev:0 +github.com/TheFabbiusCorp/gha-kotlin-linter, github.com/TheFarGG/pycatapi, github.com/TheFe91/cypress-react-selector,num_dependents_deps.dev:0 +github.com/TheFe91/flutter-version-number-action, github.com/TheFifthLeaf/sublib, github.com/TheFinalJoke/ohmyoled, github.com/TheFiremanH/pytester, @@ -181510,6 +185804,7 @@ github.com/TheGreenToaster/grunt-openui5-deploy-abap,num_dependents_deps.dev:0 github.com/TheGreyGhost/MinecraftByExample,criticality_score:0.400360 github.com/TheGrimSilence/strategos, github.com/TheGrotesk/scripterra,num_dependents_deps.dev:0 +github.com/TheGroundZero/exiftool-scrub, github.com/TheGroundZero/openvasreporting, github.com/TheGrove/grunt-channel-builder,num_dependents_deps.dev:0 github.com/TheGuardianWolf/OpenSeadragonPaperjsOverlay,num_dependents_deps.dev:0 @@ -181644,6 +185939,8 @@ github.com/TheLastGimbus/D-Link_Scraper, github.com/TheLastGimbus/GooglePhotosTakeoutHelper,criticality_score:0.401250 github.com/TheLastGimbus/easydrop, github.com/TheLastGimbus/mobile-vikings-scraper, +github.com/TheLastProject/contributors-to-file-action, +github.com/TheLastProject/keep-remote-file-locally-up-to-date-action, github.com/TheLastZombie/sshpm,num_dependents_deps.dev:0 github.com/TheLaunchNinja/exosphere, github.com/TheLearneer/CRoyale,num_dependents_deps.dev:0 @@ -181658,6 +185955,7 @@ github.com/TheLindaProjectInc/metrixjs-lib, github.com/TheLindaProjectInc/metrixjs-wallet,num_dependents_deps.dev:0 github.com/TheLocehiliosan/yadm,criticality_score:0.528830 github.com/TheLogicMaster/Netwave-Camera, +github.com/TheLogicalNights/GitHub-Actions-Release-Demo, github.com/TheLoneRonin/SolarweaveBridge,num_dependents_deps.dev:0 github.com/TheLonelyAstronaut/react-native-swipeable,num_dependents_deps.dev:0 github.com/TheLonelyGhost/generator-thelonelyghost,num_dependents_deps.dev:0 @@ -181731,6 +186029,7 @@ github.com/TheMisir/node-millikart,num_dependents_deps.dev:0 github.com/TheMisir/ra-tree-menu,num_dependents_deps.dev:0 github.com/TheMisir/react-hooks-pro,num_dependents_deps.dev:0 github.com/TheMisir/simla,num_dependents_deps.dev:0 +github.com/TheModdingInquisition/actions-team-membership, github.com/TheMonkeys/grunt-MonkeytestJS,num_dependents_deps.dev:0 github.com/TheMouseHouse/glitchin,num_dependents_deps.dev:0 github.com/TheMouseHouse/grunt-svgpackager,num_dependents_deps.dev:0 @@ -181740,6 +186039,7 @@ github.com/TheMrMilchmann/Kraton,num_dependents_deps.dev:0 github.com/TheMrMilchmann/MJLEvents,num_dependents_deps.dev:0 github.com/TheMrMilchmann/MJLOptions,num_dependents_deps.dev:0 github.com/TheMrMilchmann/kopt,num_dependents_deps.dev:0 +github.com/TheMrMilchmann/setup-msvc-dev, github.com/TheMrZZ/sandstone,num_dependents_deps.dev:0 github.com/TheMrZZ/sandstone-cli,num_dependents_deps.dev:0 github.com/TheMrinalSinha/drishti, @@ -181867,6 +186167,9 @@ github.com/TheOriginalJosh/nativescript-slides,num_dependents_deps.dev:0 github.com/TheOriginalJosh/nativescript-swiss-army-knife,num_dependents_deps.dev:0 github.com/TheOstrichIO/ostrichlib, github.com/ThePBone/GalaxyBudsClient,criticality_score:0.437260 +github.com/ThePBone/XamlTranslationValidator, +github.com/ThePBone/action-crowdin-contributors-fork, +github.com/ThePBone/github-actions-deploy-aur, github.com/ThePacielloGroup/CCAe,criticality_score:0.351360 github.com/ThePacific/adapter,num_dependents_deps.dev:0 github.com/ThePacific/mvc-android,num_dependents_deps.dev:0 @@ -181932,6 +186235,7 @@ github.com/TheRamann/easy-torrent, github.com/TheRamey/spin-react,num_dependents_deps.dev:0 github.com/TheRandomLabs/massive.py, github.com/TheRaphael0000/latex_utils, +github.com/TheRealAgentK/redoc-cli-speccy-action, github.com/TheRealAksel/structjs,num_dependents_deps.dev:0 github.com/TheRealArthurDent/jsonpath-maven-plugin,num_dependents_deps.dev:0 github.com/TheRealBarenziah/commandlinefu,num_dependents_deps.dev:0 @@ -181952,6 +186256,7 @@ github.com/TheRealNate/grammarland,num_dependents_deps.dev:0 github.com/TheRealNate/meteor-react-native,num_dependents_deps.dev:0 github.com/TheRealNate/react-native-meteor,num_dependents_deps.dev:0 github.com/TheRealRaeed/raeedchat-api,num_dependents_deps.dev:0 +github.com/TheRealRyGuy/clear-cache-action, github.com/TheRealSimonMlr/homebridge-http-lock-ultimate,num_dependents_deps.dev:0 github.com/TheRealSyler/FBXLoader,num_dependents_deps.dev:0 github.com/TheRealSyler/angularPiePackage,num_dependents_deps.dev:0 @@ -181974,6 +186279,11 @@ github.com/TheRealSyler/ts-doc-gen,num_dependents_deps.dev:0 github.com/TheRealSyler/tsvp-cli,num_dependents_deps.dev:0 github.com/TheRealToxicDev/nextgenapi.js,num_dependents_deps.dev:0 github.com/TheRealVish/helloworldnode,num_dependents_deps.dev:0 +github.com/TheRealWaldo/faster-hacs-action, +github.com/TheRealWaldo/jira-get-issue, +github.com/TheRealWaldo/pull-request, +github.com/TheRealWaldo/quick-release, +github.com/TheRealWaldo/release-it, github.com/TheRealest/eventful-react,num_dependents_deps.dev:0 github.com/TheReasonable/eslint-config, github.com/TheRedIsHere/pets-common,num_dependents_deps.dev:0 @@ -182050,6 +186360,7 @@ github.com/TheSharpieOne/react-select,num_dependents_deps.dev:6 github.com/TheShellLand/automonisaur, github.com/TheShining/swift-http, github.com/TheShooter89/tq-logger,num_dependents_deps.dev:0 +github.com/TheShubham99/YouRock, github.com/TheShubham99/react-typing-text,num_dependents_deps.dev:0 github.com/TheShubhendra/profile-watcher, github.com/TheShubhendra/profiles, @@ -182130,16 +186441,20 @@ github.com/TheTechCompany/dashboard-bits,num_dependents_deps.dev:0 github.com/TheTechCompany/react-ipfs-dropzone,num_dependents_deps.dev:0 github.com/TheTechCompany/react-ipfs-provider, github.com/TheTechCompany/react-live-loader,num_dependents_deps.dev:0 +github.com/TheTechNexus/pull_request_action, +github.com/TheTechNexus/telegram_notifier, github.com/TheTechRobo/PyGit, github.com/TheTechRobo/python-radix, github.com/TheTechRobo/python-text-calculator, github.com/TheTechRobo/snakegit, github.com/TheTechRobo/turbofunc, +github.com/TheTechTrap/dgit-action, github.com/TheTechTrap/dgit-cli,num_dependents_deps.dev:0 github.com/TheTechTrap/git-remote-dgit,num_dependents_deps.dev:0 github.com/TheTechmo/at-ui,num_dependents_deps.dev:0 github.com/TheTechromancer/password-smelter, github.com/TheTechromancer/password-stretcher, +github.com/TheTechsTech/action-environment-info, github.com/TheTerminalTemplar/compynator, github.com/TheTesla/dnsuptools, github.com/TheTesla/simpleloggerplus, @@ -182199,6 +186514,7 @@ github.com/TheThunderGuyS/usefulTags,num_dependents_deps.dev:0 github.com/TheTimmaeh/node-expresstrade,num_dependents_deps.dev:0 github.com/TheTimmaeh/node-expresstrade/issues, github.com/TheTimmoth/wireui, +github.com/TheTipsyTurtle/mirror-action, github.com/TheToddLuci0/PyPunch, github.com/TheToddLuci0/node_ip_serielizer,num_dependents_deps.dev:0 github.com/TheToddLuci0/tomorrow_io, @@ -182270,6 +186586,8 @@ github.com/TheWindRises-2/coco-modal,num_dependents_deps.dev:0 github.com/TheWirv/react-native-wallet-passes,num_dependents_deps.dev:0 github.com/TheWiseLion/open-redis, github.com/TheWiseLion/pykhet, +github.com/TheWisker/aur-update, +github.com/TheWisker/aur-update-git, github.com/TheWizard0f0z/node-js-id-generator,num_dependents_deps.dev:0 github.com/TheWizardBear/maze_generator,num_dependents_deps.dev:0 github.com/TheWolfNL/machinepack-2fa,num_dependents_deps.dev:0 @@ -182303,6 +186621,7 @@ github.com/TheZ3ro/simsalapad, github.com/TheZoq2/brexit,num_dependents_deps.dev:0 github.com/Theadd/react-panels,num_dependents_deps.dev:0 github.com/Theag9998/lotide,num_dependents_deps.dev:0 +github.com/Theaninova/get-block-name, github.com/Theano/Theano,criticality_score:0.544630 github.com/Thebarda/react-d3-heatmap,num_dependents_deps.dev:0 github.com/Thebigbignooby/slimpay,num_dependents_deps.dev:0 @@ -182318,6 +186637,7 @@ github.com/Thehive-Project/Cortex4py, github.com/Theiremi/rewardsauto,num_dependents_deps.dev:0 github.com/Theiremi/rewardsauto-cli,num_dependents_deps.dev:0 github.com/Thejaswiniy/number-formatter,num_dependents_deps.dev:0 +github.com/Thejus-Paul/bump-gem-action, github.com/Thejuse/SocialColors,num_dependents_deps.dev:0 github.com/Thejuse/supermenu,num_dependents_deps.dev:0 github.com/Thekiddiejsandpython/hello-sugarlabs,num_dependents_deps.dev:0 @@ -182342,6 +186662,7 @@ github.com/Themimitoof/cambak, github.com/Themis3000/FreeProxyRevolver, github.com/Themis3000/FreeProxyScraper, github.com/Themis3000/lazy_db, +github.com/Theneo-Inc/api-documentation, github.com/Thenerdstation/mltest, github.com/Thenis/ngx-slick,num_dependents_deps.dev:0 github.com/Theo-/sequelize-turbo,num_dependents_deps.dev:0 @@ -182352,6 +186673,7 @@ github.com/Theo-eBrown/scrollthescroll, github.com/TheoDlmz/embedded_voting, github.com/TheoHay/ciseaux_client,num_dependents_deps.dev:0 github.com/TheoMLP/lotide,num_dependents_deps.dev:0 +github.com/TheoNoyau/assign-reviewers-action, github.com/TheoOkafor/react-device-emulator,num_dependents_deps.dev:0 github.com/TheoSabattie/math-understanding-tools, github.com/TheoTT/my_doc, @@ -182385,6 +186707,7 @@ github.com/TheodoreKrypton/JavPy,num_dependents_deps.dev:0 github.com/TheodoreKrypton/javscript,num_dependents_deps.dev:0 github.com/Theokalo/react-native-modbus-tcp,num_dependents_deps.dev:0 github.com/Theomat/pltpublish, +github.com/Theonlymore/MkdocsToS3, github.com/TheophileMot/treeChalk,num_dependents_deps.dev:0 github.com/TheophileMot/weightedTextRank,num_dependents_deps.dev:0 github.com/Theorem/eslint-plugin,num_dependents_deps.dev:0 @@ -182452,11 +186775,13 @@ github.com/Thiago-Caramelo/ingaia-graylog,num_dependents_deps.dev:0 github.com/Thiago4breu/vue-idb,num_dependents_deps.dev:0 github.com/ThiagoAllves/angular-minimalist-parallax,num_dependents_deps.dev:0 github.com/ThiagoAndradedev1/CSSFramework,num_dependents_deps.dev:0 +github.com/ThiagoAnunciacao/s3cmd-sync-action, github.com/ThiagoAugustoSM/arduino-tablature,num_dependents_deps.dev:0 github.com/ThiagoBastosN/Arrow2D,num_dependents_deps.dev:0 github.com/ThiagoCComelli/randomstring,num_dependents_deps.dev:0 github.com/ThiagoCTN/django-foreign-fields, github.com/ThiagoDallacqua/react-boilerplate-ts, +github.com/ThiagoJaweb/ghaction-CompressFiles, github.com/ThiagoLuizNunes/mock-json-server,num_dependents_deps.dev:0 github.com/ThiagoMdonca/AsyncStorageFixed, github.com/ThiagoMiklan/Biblioteca, @@ -182649,6 +186974,8 @@ github.com/ThinkRealize/vue-switch-display,num_dependents_deps.dev:0 github.com/Thinkei/ReasonBizCharts,num_dependents_deps.dev:0 github.com/Thinkei/bs-chakra,num_dependents_deps.dev:0 github.com/Thinkei/bs-eh-design,num_dependents_deps.dev:0 +github.com/Thinkei/bump-it-action, +github.com/Thinkei/eh-deploy-action, github.com/Thinkei/re-api-call,num_dependents_deps.dev:0 github.com/Thinkei/re-memoize,num_dependents_deps.dev:0 github.com/Thinkei/react-signature-pad,num_dependents_deps.dev:0 @@ -182759,6 +187086,7 @@ github.com/ThoenigAdrian/logfast, github.com/Thog/mkisofs-rs,num_dependents_deps.dev:0 github.com/Thom-x/arduino-api,num_dependents_deps.dev:0 github.com/Thom-x/arduino-serial-api,num_dependents_deps.dev:0 +github.com/ThomFree/action-build-cloud-run, github.com/ThomLaGreca/react-native-simple-popover-menu,num_dependents_deps.dev:0 github.com/ThomRick/nest-cli,num_dependents_deps.dev:0 github.com/ThomWoltman/React-progress-hook,num_dependents_deps.dev:0 @@ -182807,6 +187135,7 @@ github.com/Thomas-T/nodebjectify,num_dependents_deps.dev:0 github.com/Thomas-T/sncf-api,num_dependents_deps.dev:0 github.com/Thomas-X/jsonapi-mock,num_dependents_deps.dev:0 github.com/Thomas-X/retrievejs,num_dependents_deps.dev:0 +github.com/Thomas-X/with-lambda-tools, github.com/Thomas101/react-native-fence-html,num_dependents_deps.dev:0 github.com/Thomas55555/aioautomower, github.com/Thomas55555/husqvarna_automower_py, @@ -182848,6 +187177,7 @@ github.com/ThomasDarby/COVIS, github.com/ThomasDiGregorio/movie_gem,num_dependents_deps.dev:0 github.com/ThomasDiGregorio/td-js-footer,num_dependents_deps.dev:0 github.com/ThomasDonath/turbo-rest-node,num_dependents_deps.dev:0 +github.com/ThomasF34/update-notion, github.com/ThomasFurtado/data-processing-package, github.com/ThomasG77/create-oclif-sample-demo,num_dependents_deps.dev:0 github.com/ThomasGJL/django-github-storage, @@ -182875,6 +187205,7 @@ github.com/ThomasK33/node-underlords,num_dependents_deps.dev:0 github.com/ThomasKenyeres/CliNodes, github.com/ThomasKerbrat/json_ppc,num_dependents_deps.dev:0 github.com/ThomasKientz/capacitor-plugin-file-infos,num_dependents_deps.dev:0 +github.com/ThomasKliszowski/setup-kubectl, github.com/ThomasKliszowski/ubackup, github.com/ThomasKluiters/fetchy, github.com/ThomasKluiters/figipy, @@ -182897,6 +187228,7 @@ github.com/ThomasMarcel/robinhood-api,num_dependents_deps.dev:0 github.com/ThomasMarques/django-settings-custom, github.com/ThomasMeissnerDS/e2e_ml, github.com/ThomasMeli/predictions_analyzer, +github.com/ThomasMonnier/dbt-cloud-cancel-running-ci-job-action, github.com/ThomasNeve/pySldWrap, github.com/ThomasOrlita/Snap.svg-cjs, github.com/ThomasP1988/insomnia-plugin-aws-cognito-iam,num_dependents_deps.dev:0 @@ -183055,6 +187387,7 @@ github.com/ThorpeJosh/ffmpeg-gui, github.com/ThorpeJosh/image-sorting-tool, github.com/Thors-open-source/backend-contact-form,num_dependents_deps.dev:0 github.com/Thors-open-source/nodemailer-template,num_dependents_deps.dev:0 +github.com/ThorstenHans/check-aca-arm-namespace-migration, github.com/ThorstenHans/generator-bower,num_dependents_deps.dev:0 github.com/ThorstenHans/generator-sharecoffee-addon,num_dependents_deps.dev:0 github.com/ThorstenHans/generator-sp2013-bootstrap3,num_dependents_deps.dev:0 @@ -183156,6 +187489,7 @@ github.com/ThreadsStyling/apollo-resolver-types,num_dependents_deps.dev:0 github.com/ThreadsStyling/json-patch-ot,num_dependents_deps.dev:0 github.com/ThreadsStyling/tsconfig,num_dependents_deps.dev:0 github.com/ThreadsStyling/video-renderer,num_dependents_deps.dev:0 +github.com/Threagile/run-threagile-action, github.com/Thream/socketio-jwt,num_dependents_deps.dev:46 github.com/Thream/styled-jsx-plugin-sass, github.com/ThreatConnect-Inc/tcex, @@ -183252,6 +187586,7 @@ github.com/ThunderStruct/PyBNG, github.com/Thunderbird7/JitPush,num_dependents_deps.dev:0 github.com/Thunderbite/vue-vapor-upload-component,num_dependents_deps.dev:0 github.com/Thunderbottom/ploggy, +github.com/Thundernerd/dotnet-project-version-updater, github.com/Thunf/swiger,num_dependents_deps.dev:0 github.com/Thunkar/StormWatchNodePlugin,num_dependents_deps.dev:0 github.com/Thuplek/tp-select,num_dependents_deps.dev:0 @@ -183448,6 +187783,9 @@ github.com/TicTak21/bike-shop,num_dependents_deps.dev:0 github.com/TicTak21/react-creatify,num_dependents_deps.dev:0 github.com/Ticalie/bs-eslint,num_dependents_deps.dev:0 github.com/TiceTrackerApp/time-tracker-lib,num_dependents_deps.dev:0 +github.com/TickX/auto-cross-pr, +github.com/TickX/aws-secret-to-dotenv, +github.com/TickX/var-to-dotenv, github.com/Tickaroo/express-jade-cache-helper, github.com/Tickaroo/express-page-error-middleware,num_dependents_deps.dev:0 github.com/Tickaroo/express-protect-maps-middleware,num_dependents_deps.dev:0 @@ -183659,10 +187997,13 @@ github.com/TikhonP/yandex-speechkit-lib-python, github.com/TikiTDO/ember-cli-deploy-zip-new,num_dependents_deps.dev:0 github.com/Tikmoing/datanlysis, github.com/Tikubonn/omitter.js,num_dependents_deps.dev:0 +github.com/TilBlechschmidt/gp-docker-action, github.com/Tilak999/jsonbase.com,num_dependents_deps.dev:0 github.com/Tilak999/jsonstore.io,num_dependents_deps.dev:0 github.com/Tilak999/nutil, github.com/TilakPatel/pypi-easy-sms, +github.com/Tilation/multiplatform-commit-tagger, +github.com/Tilation/regex-on-repo, github.com/TildenJ/hexo-filter-ignore-formula-rendering,num_dependents_deps.dev:0 github.com/TileDB-Inc/TileDB,criticality_score:0.503730 github.com/TileDB-Inc/TileDB-CF-Py, @@ -183706,6 +188047,7 @@ github.com/Tim-Abwao/time-series-app, github.com/Tim-B/grunt-aws-lambda,num_dependents_deps.dev:38 github.com/Tim-Erwin/oauth2-pkce,num_dependents_deps.dev:0 github.com/Tim-Erwin/python-jsonapi-datastore, +github.com/Tim-Fronsee/slack-bot-reporter, github.com/Tim-Gaud/ksys-file-viewer,num_dependents_deps.dev:0 github.com/Tim-Shadow/wy-image-viewer,num_dependents_deps.dev:0 github.com/Tim-Smart/async-array,num_dependents_deps.dev:1 @@ -183777,6 +188119,7 @@ github.com/TimDaub/1way,num_dependents_deps.dev:0 github.com/TimDaub/at-bindings,num_dependents_deps.dev:0 github.com/TimDaub/better-sqlite3-session-store,num_dependents_deps.dev:0 github.com/TimDaub/ephemeral-store,num_dependents_deps.dev:0 +github.com/TimDaub/hetzner-cloud-deploy-server-action, github.com/TimDaub/hexo-compat-report,num_dependents_deps.dev:0 github.com/TimDaub/isgsm7bit,num_dependents_deps.dev:0 github.com/TimDaub/jsonresume-theme-paper,num_dependents_deps.dev:0 @@ -183990,6 +188333,7 @@ github.com/TimeZynk/timezynk-cordova-notification-plugin,num_dependents_deps.dev github.com/TimeZynk/tzdateutils, github.com/Timebutt/google-maps-autocomplete,num_dependents_deps.dev:0 github.com/Timehello/react-native-root-toast,num_dependents_deps.dev:0 +github.com/TimekillerTK/s3-sync-action, github.com/TimelordUK/jspurefix,num_dependents_deps.dev:0 github.com/TimelordUK/node-sqlserver-v8,num_dependents_deps.dev:6 github.com/TimelyDataflow/abomonation,num_dependents_deps.dev:7 @@ -184029,12 +188373,15 @@ github.com/Timkor/nuxt-server-module,num_dependents_deps.dev:0 github.com/Timkor/nuxt-session,num_dependents_deps.dev:4 github.com/Timkor/vue-stick-stack,num_dependents_deps.dev:0 github.com/Timkor/vue-stick-transition,num_dependents_deps.dev:0 +github.com/Timmatt-Lee/GitHub-Jira-Integration, github.com/Timmehs/buddhablog-cli,num_dependents_deps.dev:0 github.com/Timmehs/pure-uploader, github.com/Timmimim/erc-validator,num_dependents_deps.dev:0 github.com/Timmmm/dull,num_dependents_deps.dev:0 github.com/Timmmm/json2cbor,num_dependents_deps.dev:0 +github.com/Timmmm/setup-osxcross, github.com/TimmsIO/easyphrase,num_dependents_deps.dev:0 +github.com/Timmy/plantuml-action, github.com/Timmy93/IUBBaseTools, github.com/Timmy93/IUBConfiguration, github.com/Timo534/-do-api-extractor,num_dependents_deps.dev:0 @@ -184079,6 +188426,7 @@ github.com/TimonKK/ng-bootstrap,num_dependents_deps.dev:0 github.com/TimonKK/stream2asyncIter,num_dependents_deps.dev:22 github.com/TimonKK/ucoz-uapi,num_dependents_deps.dev:0 github.com/TimonLukas/FileSaver,num_dependents_deps.dev:0 +github.com/TimonLukas/action-static-redbean, github.com/TimonLukas/java-math,num_dependents_deps.dev:0 github.com/TimonLukas/node-red-contrib-db2-fixed,num_dependents_deps.dev:0 github.com/TimonLukas/node-red-contrib-wstt-stream-fixed,num_dependents_deps.dev:0 @@ -184090,6 +188438,7 @@ github.com/TimonPost/crosscurses,num_dependents_deps.dev:0 github.com/TimonPost/udp-dtls,num_dependents_deps.dev:0 github.com/TimonSotiropoulos/respack,num_dependents_deps.dev:0 github.com/TimonSotiropoulos/utilities,num_dependents_deps.dev:0 +github.com/TimonVS/pr-labeler-action, github.com/TimorCookie/jlgl-cli, github.com/TimorCookie/jsStorage-tool,num_dependents_deps.dev:0 github.com/TimorCookie/timo-jsutil,num_dependents_deps.dev:0 @@ -184191,6 +188540,7 @@ github.com/Tinche/cattrs,criticality_score:0.484190 github.com/Tinche/fakeriak, github.com/Tinche/incant, github.com/TinchyChing/django_miniprogram_api, +github.com/Tincre/commit-meaning, github.com/Tinder/Scarlet,"criticality_score:0.395030,num_dependents_deps.dev:207" github.com/Tinder/StateMachine,num_dependents_deps.dev:14 github.com/Tinder/crap, @@ -184225,6 +188575,7 @@ github.com/TinkGu/use-atom-view,num_dependents_deps.dev:0 github.com/TinkGu/wx-audio-manager,num_dependents_deps.dev:0 github.com/TinkGu/wx-enhancer,num_dependents_deps.dev:0 github.com/TinkerStorm/channel-backup,num_dependents_deps.dev:0 +github.com/TinkerStorm/discord-cotd-action, github.com/TinkerStorm/validate, github.com/TinkerTravel/bips, github.com/TinkerWork/PythonPusherClient, @@ -184269,6 +188620,11 @@ github.com/TinkoffCreditSystems/tokenizer,num_dependents_deps.dev:0 github.com/TinkoffCreditSystems/typed-schema,num_dependents_deps.dev:1205 github.com/TinkoffCreditSystems/utils.js,num_dependents_deps.dev:14 github.com/TinkoffCreditSystems/vkarmane-sdk-android,num_dependents_deps.dev:0 +github.com/TinkurLab/commit-issue-commenter-action, +github.com/TinkurLab/issue-labeler-action, +github.com/TinkurLab/mirror-labels-to-child-action, +github.com/TinkurLab/monorepo-pr-labeler-action, +github.com/TinkurLab/top-issues-action, github.com/Tinmar3/starwars-names,num_dependents_deps.dev:0 github.com/Tino-F/aframe-fractal-component,num_dependents_deps.dev:0 github.com/Tino-F/gyroBackground,num_dependents_deps.dev:0 @@ -184287,9 +188643,11 @@ github.com/Tinple/mongooseValidator,num_dependents_deps.dev:0 github.com/Tinple/uncurryThis,num_dependents_deps.dev:0 github.com/Tinple/util-crack,num_dependents_deps.dev:0 github.com/TinsFox/u-hepler,num_dependents_deps.dev:0 +github.com/Tintef/nyc-reporter-action, github.com/Tintef/react-google-places-autocomplete,num_dependents_deps.dev:0 github.com/Tintef/react-native-headphone-detection,num_dependents_deps.dev:0 github.com/Tintef/rn-headphone-detection,num_dependents_deps.dev:0 +github.com/Tintef/upstream-trello-card-creator, github.com/TintypeMolly/gunghap.js,num_dependents_deps.dev:0 github.com/Tiny-CLI-Template/vanilla-rollup-ts,num_dependents_deps.dev:0 github.com/Tiny-Fendy/koa-structure,num_dependents_deps.dev:0 @@ -184387,6 +188745,8 @@ github.com/Tiross/nucleus,num_dependents_deps.dev:0 github.com/Tirrilee/Django-Packages, github.com/Tirth886/contentLoader,num_dependents_deps.dev:0 github.com/Tiru443/tiru-button-comp,num_dependents_deps.dev:0 +github.com/Tiryoh/actions-mkdocs, +github.com/Tiryoh/gha-jobid-action, github.com/TiscotSerVices/blzd-uikit, github.com/Tishacy/MSpider, github.com/Tishacy/SciDownl, @@ -184512,7 +188872,9 @@ github.com/Tlalocan-Courses/Taller-publica-un-paquete-en-Pypi, github.com/Tlalocan/cheatsheets, github.com/Tlalocan/file-explorer-utils, github.com/Tlapi/color-picker,num_dependents_deps.dev:0 +github.com/Tlaster/android-sign, github.com/Tlaster/chrome-extension-broadcast,num_dependents_deps.dev:0 +github.com/Tlazypanda/cpp-clang-check, github.com/Tmaf/drag-and-drop-react,num_dependents_deps.dev:0 github.com/Tmeister/hyperterm-new-moon-theme,num_dependents_deps.dev:0 github.com/Tmenos3/no-if-validator,num_dependents_deps.dev:0 @@ -184575,6 +188937,7 @@ github.com/Toadless/Discord-Bot-Template,num_dependents_deps.dev:0 github.com/Toadless/discord-level,num_dependents_deps.dev:0 github.com/ToamCohen/NPM,num_dependents_deps.dev:0 github.com/Toanzzz/jsdoc-webpack-plugin,num_dependents_deps.dev:0 +github.com/ToastCoder/cml-actions, github.com/ToastCoder/gearai, github.com/ToastCoder/pyvect, github.com/ToastCoder/sysinf, @@ -184591,14 +188954,19 @@ github.com/Toaztr/commons,num_dependents_deps.dev:0 github.com/Toaztr/openapi-ajv-validators,num_dependents_deps.dev:0 github.com/Toaztr/specs,num_dependents_deps.dev:0 github.com/TobAde/Calculator, +github.com/TobKed/fetch-github-actions-queue, +github.com/TobKed/github-forks-sync-action, +github.com/TobKed/label-when-approved-action, github.com/Tobbe/googlereaderauth,num_dependents_deps.dev:0 github.com/Tobbe/pi-fast-gpio,num_dependents_deps.dev:0 github.com/Tobbe/react-slim-image-viewer,num_dependents_deps.dev:0 github.com/TobbeTripitaka/agrid, +github.com/TobeTek/gdrive-chronos, github.com/Tobee4Lin/seer-uni-cli,num_dependents_deps.dev:0 github.com/Tobi-De/dj-shop-cart, github.com/Tobi-De/qosic-sdk, github.com/Tobi-De/smsdrop-python, +github.com/TobiMichael96/github-actions-autograding, github.com/TobiP64/vec_arith,num_dependents_deps.dev:0 github.com/TobiRes/react-native-altering-app-icon,num_dependents_deps.dev:0 github.com/TobiWtf/cleverbot,num_dependents_deps.dev:0 @@ -184612,6 +188980,7 @@ github.com/TobiasBerg/graphql-hooks, github.com/TobiasBg/TablePress,criticality_score:0.456990 github.com/TobiasBuchholz/CircularViewPager,num_dependents_deps.dev:0 github.com/TobiasBuchholz/SnappingSeekBar,num_dependents_deps.dev:0 +github.com/TobiasCGoetz/hugo-s3-deploy-action, github.com/TobiasFeld22/Easy-Discord-Bot,num_dependents_deps.dev:0 github.com/TobiasFeld22/Spark,num_dependents_deps.dev:0 github.com/TobiasFranek/gatsby-source-sulu,num_dependents_deps.dev:0 @@ -184649,6 +189018,7 @@ github.com/TobiasNickel/trsa,num_dependents_deps.dev:0 github.com/TobiasNickel/tsqlreader,num_dependents_deps.dev:0 github.com/TobiasNickel/tstaticstoringproxy,num_dependents_deps.dev:0 github.com/TobiasNickel/ttime,num_dependents_deps.dev:0 +github.com/TobiasOlofsson88/github-action-validate-json-request-result, github.com/TobiasPankner/Teams-Auto-Joiner,criticality_score:0.346870 github.com/TobiasPleyer/pytest-todo, github.com/TobiasSN/eslint-config-wiw,num_dependents_deps.dev:0 @@ -184741,6 +189111,7 @@ github.com/Toerodor/filesystem-native,num_dependents_deps.dev:0 github.com/TofPlay/django-easyextjs4, github.com/Tofandel/hash-router,num_dependents_deps.dev:0 github.com/Tofandel/postcss-var-optimize,num_dependents_deps.dev:0 +github.com/Tofandel/ssh-server-action, github.com/Tofandel/uuid-base62,num_dependents_deps.dev:0 github.com/Toffi-123/KTBL-APIs,num_dependents_deps.dev:0 github.com/Toffoh/Covid-Dashboard, @@ -184883,6 +189254,7 @@ github.com/TomByrne/cordova-screenppi-plugin,num_dependents_deps.dev:0 github.com/TomCaserta/A858Decrypter,num_dependents_deps.dev:0 github.com/TomCaserta/vue-wc-model,num_dependents_deps.dev:0 github.com/TomCharles92/zhat-utilities,num_dependents_deps.dev:0 +github.com/TomChv/wait-my-workflow, github.com/TomCoded/zipfilemap,num_dependents_deps.dev:0 github.com/TomCools/GetterSetterVerifier,num_dependents_deps.dev:0 github.com/TomCools/dropwizard-websocket-jee7-bundle,num_dependents_deps.dev:0 @@ -184915,6 +189287,7 @@ github.com/TomFern/semaphore-demo-monorepo-javascript,num_dependents_deps.dev:0 github.com/TomFevrier/kiwis,num_dependents_deps.dev:0 github.com/TomFon/quick-deploy, github.com/TomFrederik/unseal, +github.com/TomFreeman/sem-vpr, github.com/TomFrost/Bristol,num_dependents_deps.dev:0 github.com/TomFrost/Cryptex, github.com/TomFrost/FlushWritable,num_dependents_deps.dev:1552 @@ -184941,6 +189314,7 @@ github.com/TomIsion/gulp-test12345,num_dependents_deps.dev:0 github.com/TomK/webpack-file-extract-plugin, github.com/TomKevin/truncate-text,num_dependents_deps.dev:0 github.com/TomKrcmar/node-avatars,num_dependents_deps.dev:0 +github.com/TomKristie/test-action, github.com/TomLXXVI/heaty, github.com/TomLXXVI/pypeflow, github.com/TomLingham/Natali,num_dependents_deps.dev:0 @@ -185008,6 +189382,7 @@ github.com/Tomabage/easy,num_dependents_deps.dev:0 github.com/TomahawX/Mustache.hx,num_dependents_deps.dev:0 github.com/TomahawX/Path.hx,num_dependents_deps.dev:0 github.com/Tomamy/koa-image,num_dependents_deps.dev:0 +github.com/Tomas-Jurov/Ros-clang-formatter, github.com/Tomas-M/linux-live,criticality_score:0.301600 github.com/Tomas-Sereikis/eserve,num_dependents_deps.dev:0 github.com/Tomas-Sereikis/process-events,num_dependents_deps.dev:0 @@ -185063,6 +189438,8 @@ github.com/Tomasz-Zielinski/points-in-country,num_dependents_deps.dev:0 github.com/Tomasz5648/npm,num_dependents_deps.dev:0 github.com/TomaszAdamowicz/flexy-grid,num_dependents_deps.dev:0 github.com/TomaszDudek/url-params-toolkit,num_dependents_deps.dev:0 +github.com/TomaszKandula/get-keyvault-secrets, +github.com/TomaszKandula/variable-substitution, github.com/TomaszLaski/MyFirstNPMPack,num_dependents_deps.dev:0 github.com/TomaszPilch/BHE-be-ui-components,num_dependents_deps.dev:0 github.com/TomaszPilch/BHE-be-ui-server-functions,num_dependents_deps.dev:0 @@ -185118,6 +189495,7 @@ github.com/TomerAberbach/src2img,num_dependents_deps.dev:0 github.com/TomerAberbach/src2img-cli,num_dependents_deps.dev:0 github.com/TomerAberbach/tomer,num_dependents_deps.dev:0 github.com/TomerAberbach/weak-merge,num_dependents_deps.dev:0 +github.com/TomerFi/version-bumper-action, github.com/TomerRon/cordless,num_dependents_deps.dev:0 github.com/TomersHan/AI-X-crawler, github.com/Tomesyy/blackdev-file-creator, @@ -185271,6 +189649,7 @@ github.com/ToniKorin/cordova-plugin-config-alert,num_dependents_deps.dev:0 github.com/ToniKorin/cordova-plugin-location-provider,num_dependents_deps.dev:0 github.com/ToniRV/evo-1, github.com/ToniRV/spark_vio_evaluation, +github.com/ToniSantosBalbi/expo-github-action-env-allowed, github.com/ToniWestbrook/repeatfs, github.com/ToniWonKanobi/markdown-it-footnote-conventional,num_dependents_deps.dev:0 github.com/TonicArtos/StickyGridHeaders,num_dependents_deps.dev:0 @@ -185291,6 +189670,7 @@ github.com/Tony-Liuduan/babel-plugin-try-catch-auto,num_dependents_deps.dev:0 github.com/Tony-sama/pylfit, github.com/Tony-xy-Liu/Limes, github.com/TonyBJC/vue2-leaflet-height-graph, +github.com/TonyBogdanov/coverage, github.com/TonyBogdanov/data-expectation-js,num_dependents_deps.dev:0 github.com/TonyBogdanov/data-type-js,num_dependents_deps.dev:0 github.com/TonyBogdanov/data-types-js, @@ -185299,10 +189679,12 @@ github.com/TonyBogdanov/gulp-imager,num_dependents_deps.dev:0 github.com/TonyBogdanov/gulp-optimize-html,num_dependents_deps.dev:0 github.com/TonyBogdanov/vue-dependency,num_dependents_deps.dev:0 github.com/TonyBogdanov/webpack-preload-chunks,num_dependents_deps.dev:0 +github.com/TonyBogdanov/zip, github.com/TonyBrobston/jpegasus,num_dependents_deps.dev:0 github.com/TonyBrobston/logs-to-mqtt-publisher,num_dependents_deps.dev:0 github.com/TonyCSB/Perimetr, github.com/TonyCiel/ciel-ui, +github.com/TonyCode2012/crust-replicas-action, github.com/TonyFNZ/bunyan-sumologic,num_dependents_deps.dev:0 github.com/TonyFlury/py-importjson, github.com/TonyGao625/react-native-screen-recorder,num_dependents_deps.dev:0 @@ -185358,6 +189740,7 @@ github.com/TooManyBees/lab,num_dependents_deps.dev:12 github.com/TooManyBees/nite2-sys,num_dependents_deps.dev:0 github.com/TooManyBees/openni2-sys,num_dependents_deps.dev:0 github.com/TooManyBees/rust-openni2,num_dependents_deps.dev:0 +github.com/TooMuch4U/actions-clean, github.com/TooNote/MdEditor,num_dependents_deps.dev:0 github.com/TooTallNate/Java-WebSocket,"criticality_score:0.562490,num_dependents_deps.dev:480" github.com/TooTallNate/NodObjC,num_dependents_deps.dev:11 @@ -185503,6 +189886,7 @@ github.com/TopSoft4U/utils,num_dependents_deps.dev:0 github.com/TopSoft4U/yarn-link-dir,num_dependents_deps.dev:0 github.com/TopSyi/bakura, github.com/TopTuK/PyTfsClient, +github.com/TopVakantiehuizen/turborepo-serverless-framework-action, github.com/Toparvion/jmint,num_dependents_deps.dev:0 github.com/Topazoo/dead_simple_framework, github.com/Topcoder-Kitty-ML/cs207-FinalProject, @@ -185627,6 +190011,7 @@ github.com/Toricane/snek-paginator, github.com/TorijaCarlos/himitsu,num_dependents_deps.dev:0 github.com/TorkamaniLab/metapipe, github.com/TorkelV/officeprops,num_dependents_deps.dev:0 +github.com/Tormak9970/reliable-changelog, github.com/Tornike-Skhulukhia/browser_automation_helper, github.com/TornikeNatsvlishvili/flask-pyotp, github.com/TornjV/jest-serializer-no-mock-function,num_dependents_deps.dev:0 @@ -185634,6 +190019,7 @@ github.com/ToroLiu/tt_node_random_string,num_dependents_deps.dev:0 github.com/Toromtomtom/robocup-instrumentation,num_dependents_deps.dev:0 github.com/Torone/gulp-replace-quotes,num_dependents_deps.dev:0 github.com/Torontow/README_Generator,num_dependents_deps.dev:0 +github.com/TorqIT/issue-management-action, github.com/TorrenTamm/discordjs-musicbot-plugin,num_dependents_deps.dev:0 github.com/Torrentov/Fun_package, github.com/Torres92/ngx-tweets,num_dependents_deps.dev:0 @@ -185641,6 +190027,7 @@ github.com/TorresAvila/npm-test,num_dependents_deps.dev:0 github.com/TorresGeek/mydaterangepicker-torrescodex,num_dependents_deps.dev:0 github.com/TorsteinTh/npmPackageTest,num_dependents_deps.dev:0 github.com/TorstenDittmann/absurdUID,num_dependents_deps.dev:0 +github.com/TorstenDittmann/get-semver-action, github.com/Torte/django-urli18n, github.com/Torthu/grunt-slack-webhook,num_dependents_deps.dev:0 github.com/Torthu/quickserver,num_dependents_deps.dev:0 @@ -185656,6 +190043,7 @@ github.com/TorusHelm/sticky-js-reworked,num_dependents_deps.dev:0 github.com/Torvaney/mezzala, github.com/Torvin/react-ref-composer, github.com/Torvin/seqitr,num_dependents_deps.dev:0 +github.com/Torwent/setup-simba, github.com/Torxed/ourkvm, github.com/Torxed/slimDNS, github.com/Torxed/slimHTTP, @@ -185670,6 +190058,7 @@ github.com/Toscale-platform/json-validator,num_dependents_deps.dev:0 github.com/Tosh39/yureijs,num_dependents_deps.dev:0 github.com/ToshieUya/nile-amq,num_dependents_deps.dev:0 github.com/Toshigarg/demo-library,num_dependents_deps.dev:0 +github.com/Toshimichi0915/force-format-action, github.com/ToshioAkaneya/html-pug-converter,num_dependents_deps.dev:0 github.com/ToshioAkaneya/vue-pug,num_dependents_deps.dev:0 github.com/TosinHub/unique_id_key,num_dependents_deps.dev:0 @@ -185811,6 +190200,7 @@ github.com/Toxblh/react-hoc-outside-click,num_dependents_deps.dev:0 github.com/Toxblh/react-simple-pdf-viewer,num_dependents_deps.dev:0 github.com/Toxblh/samsung-tv-remote,num_dependents_deps.dev:0 github.com/Toxic-Noob/ToxicNoob_Modules, +github.com/ToxicAven/generate-checksum-file, github.com/ToxicBakery/Accidental-Noise-Generator,num_dependents_deps.dev:0 github.com/ToxicBakery/Android-Nsd-Rx,num_dependents_deps.dev:0 github.com/ToxicBakery/Android-Versions,num_dependents_deps.dev:0 @@ -185843,6 +190233,7 @@ github.com/ToyotaReseachInstitute/protosearch, github.com/ToyotaResearchInstitute/lakefront,num_dependents_deps.dev:0 github.com/ToywheelDev/gamewheel.public,num_dependents_deps.dev:0 github.com/Toyz/require2,num_dependents_deps.dev:0 +github.com/TozyF/setup-gradle-action, github.com/TozyMC/commands-api,num_dependents_deps.dev:0 github.com/Tpaga/generic_rest_client, github.com/Tparakh7/ngcustompackage,num_dependents_deps.dev:0 @@ -185859,10 +190250,13 @@ github.com/Traackr/formaat,num_dependents_deps.dev:0 github.com/Traackr/karma-traackr-reporter,num_dependents_deps.dev:0 github.com/TraceSoftwareInternational/HostMyDocs-python-client, github.com/TraceSoftwareInternational/glob2po2json,num_dependents_deps.dev:0 +github.com/Traceableai/ast-action, github.com/Tracer1337/react-mui-boilerplate,num_dependents_deps.dev:0 github.com/Tracer1337/react-mui-swipeable, github.com/Tracer1337/task-runner,num_dependents_deps.dev:0 github.com/TracerBench/tracerbench,num_dependents_deps.dev:36 +github.com/TracerBench/tracerbench-compare-action, +github.com/Tracey-Tracy/components-gha, github.com/TracingTools/libtrace,Google github.com/Tracis/easy-scroll,num_dependents_deps.dev:0 github.com/Tracis/is-blank,num_dependents_deps.dev:0 @@ -185891,6 +190285,7 @@ github.com/TractorZoom/dynamo-utils, github.com/TractorZoom/equipment-attributes,num_dependents_deps.dev:0 github.com/TractorZoom/generator-dev-tools, github.com/TractorZoom/http-response, +github.com/TractorZoom/sam-cli-action, github.com/TractorZoom/serverless-mysql-utils, github.com/TractorZoom/virtualized-select,num_dependents_deps.dev:0 github.com/Tractr/accepts-https,num_dependents_deps.dev:0 @@ -186007,6 +190402,7 @@ github.com/TralahM/pytek-wasiliana, github.com/TralahM/pytekdatamuse, github.com/TralahM/pytekmomoapi, github.com/TralahM/pytekswift, +github.com/TralahM/setup-opencv-action, github.com/TralahM/sudoku-solver, github.com/TralahM/tekmpesa, github.com/TralahM/tekrepodoc, @@ -186029,6 +190425,7 @@ github.com/Tram-One/tram-pack-server,num_dependents_deps.dev:0 github.com/Tram-One/url-listener, github.com/TramboCloud/react-native-video-controls,num_dependents_deps.dev:0 github.com/Trampoline-CX/Cubes, +github.com/Trampoline-CX/action-turbo-changed, github.com/Trampoline-CX/playroom,num_dependents_deps.dev:0 github.com/Trampoline-CX/workplate, github.com/TrampolineRTOS/trampoline,criticality_score:0.516940 @@ -186073,6 +190470,7 @@ github.com/TranslateMaker/translate-maker,num_dependents_deps.dev:0 github.com/TranslatorSRI/reasoner-pydantic, github.com/TranslucentTB/TranslucentTB,criticality_score:0.385070 github.com/TransmissionsDev/buttered-chakra,num_dependents_deps.dev:0 +github.com/Transmitt0r/build-marlin-action, github.com/Transmutable/bink,num_dependents_deps.dev:0 github.com/Transoid/StackerInterface,num_dependents_deps.dev:0 github.com/Transparency-Information-Language/python-tilt, @@ -186094,6 +190492,7 @@ github.com/Trard/CICD-tests,num_dependents_deps.dev:0 github.com/Trard/test,num_dependents_deps.dev:0 github.com/Trard/vk-bit-masks-decoder,num_dependents_deps.dev:0 github.com/TrashGuyAnimations/TrashGuy, +github.com/Trass3r/setup-cpp, github.com/TravCav/AdaBoost,num_dependents_deps.dev:0 github.com/TravalAlone/lib-ws,num_dependents_deps.dev:0 github.com/Travancore-Analytics/react-native-amplitude-lite,num_dependents_deps.dev:0 @@ -186146,6 +190545,8 @@ github.com/TravisMullen/truncate-title, github.com/TravisMullen/ventrilo,num_dependents_deps.dev:0 github.com/TravisMullen/ventrilo-bootstrap,num_dependents_deps.dev:0 github.com/TravisSpomer/Tidbits,num_dependents_deps.dev:0 +github.com/TravisSpomer/create-redirects, +github.com/TravisSpomer/deploy-to-azure-storage, github.com/TravisWheelerLab/beetles-cnn, github.com/TravisWheelerLab/polyA, github.com/TravisWheelerLab/polya-soda,num_dependents_deps.dev:0 @@ -186187,6 +190588,7 @@ github.com/Trazable/changelog-generator,num_dependents_deps.dev:0 github.com/Trazable/eslint-config, github.com/TreTuna/dev-deps,num_dependents_deps.dev:0 github.com/TreTuna/eslint-config,num_dependents_deps.dev:0 +github.com/TreTuna/sync-branches, github.com/Treagzhao/elasticsearc-orm,num_dependents_deps.dev:0 github.com/Treast/curlew.js,num_dependents_deps.dev:0 github.com/Treast/eider.js,num_dependents_deps.dev:0 @@ -186246,9 +190648,11 @@ github.com/TrekkingForCharity/ts-odata,num_dependents_deps.dev:0 github.com/Trekklog/trekkbyte,num_dependents_deps.dev:0 github.com/Trekklog/youtube-search-list,num_dependents_deps.dev:0 github.com/Trel725/quantstyles, +github.com/TrellisCommerce/vercel-lighthouse-score-action, github.com/TremayneChrist/ProtectJS,num_dependents_deps.dev:0 github.com/TremayneChrist/npm-g-search, github.com/TremayneChrist/tagver,num_dependents_deps.dev:0 +github.com/TremoloSecurity/action-generate-oidc-jwt, github.com/TrenchBroom/TrenchBroom,criticality_score:0.554670 github.com/TrendDevs/jgroups-zookeeper-ping,num_dependents_deps.dev:0 github.com/TrenderSwap/trender-swap-sdk,num_dependents_deps.dev:0 @@ -186410,6 +190814,7 @@ github.com/TriOxygen/oxygen-md-svg-icons,num_dependents_deps.dev:0 github.com/TriOxygen/oxygen-rsa-static-markup,num_dependents_deps.dev:0 github.com/TriOxygen/oxygen-rte,num_dependents_deps.dev:0 github.com/TriOxygen/oxygen-ui,num_dependents_deps.dev:0 +github.com/TriPSs/conventional-changelog-action, github.com/TriPSs/electron-browser-link,num_dependents_deps.dev:0 github.com/TriPSs/quill-react,num_dependents_deps.dev:0 github.com/TriPSs/react-esc,num_dependents_deps.dev:3 @@ -186428,6 +190833,7 @@ github.com/TriangleLeft/assert-dialog,num_dependents_deps.dev:0 github.com/TrianglePlusPlus/django-key-generator, github.com/TriangularCube/fauna-pulumi-provider,num_dependents_deps.dev:0 github.com/TriangularCube/simple-human-ids,num_dependents_deps.dev:0 +github.com/TrianguloY/action-validate-Triple-T, github.com/Tribex/iceblerg,num_dependents_deps.dev:0 github.com/Tribex/prerenderer,num_dependents_deps.dev:210 github.com/Tribex/prerenderer-webpack-plugin,num_dependents_deps.dev:0 @@ -186518,6 +190924,7 @@ github.com/Trii/NoseGAE, github.com/Trii/smartermeasure-python, github.com/TrikinCurt/quickbooks,num_dependents_deps.dev:0 github.com/Trilarion/java-vorbis-support,num_dependents_deps.dev:1 +github.com/Trillion-Servers/SFTP-Deploy, github.com/TrilonIO/angular-application-insights, github.com/TrilonIO/ng-universal,num_dependents_deps.dev:0 github.com/Trim21/aiohttp-send, @@ -186577,6 +190984,7 @@ github.com/TripleParity/docker-api-to-compose,num_dependents_deps.dev:0 github.com/TriplePoint-Software/django-data-models, github.com/TriplePoint-Software/django-tables2-reports, github.com/TripleSpeeder/bn2string,num_dependents_deps.dev:0 +github.com/TripleSpeeder/codepush-action, github.com/TripleSpeeder/ens-updater,num_dependents_deps.dev:0 github.com/TripleSpeeder/web3-eventfetcher,num_dependents_deps.dev:0 github.com/Tripletex/dropdawn,num_dependents_deps.dev:0 @@ -186589,12 +190997,14 @@ github.com/TriptoAfsin/jsHash,num_dependents_deps.dev:0 github.com/Tripwire/octagon, github.com/Tripwire/protoc-gem,num_dependents_deps.dev:0 github.com/Trireir/react-info-gallery,num_dependents_deps.dev:0 +github.com/TrisNol/trello-create-card-action, github.com/TrisTOON/noyo,num_dependents_deps.dev:0 github.com/Trisfald/weasel,num_dependents_deps.dev:0 github.com/Trisia/ofdrw,"criticality_score:0.303320,num_dependents_deps.dev:178" github.com/Tristan-Andersen/Tamagotchi-challenge, github.com/Tristan2357/taskana-workplace-lib, github.com/Tristan971/EasyFXML,num_dependents_deps.dev:0 +github.com/TristanBarlow/setup-elasticbeanstalk-cli, github.com/TristanBilot/bqfetch, github.com/TristanBlg/Isolde,num_dependents_deps.dev:0 github.com/TristanBonsor/phaser-component-library,num_dependents_deps.dev:0 @@ -186757,10 +191167,12 @@ github.com/TruckPad/deed-py, github.com/Truclinic/sdk,num_dependents_deps.dev:0 github.com/Trudko/bitcoin-fiat-price,num_dependents_deps.dev:0 github.com/True-North-Creatives/ttt-packages, +github.com/TrueAnalyticsSolutions/mtconnect-compare-version-action, github.com/TrueBitFoundation/interactive-coin-offerings,num_dependents_deps.dev:0 github.com/TrueBoxGuy/ControllableRandomness,num_dependents_deps.dev:0 github.com/TrueBoxGuy/MlgJsProxy, github.com/TrueBoxGuy/TrueLogger, +github.com/TrueBrain/actions-flake8, github.com/TrueBrain/wikitexthtml, github.com/TrueCar/gluestick,num_dependents_deps.dev:0 github.com/TrueCar/gluestick-shared,num_dependents_deps.dev:0 @@ -186769,6 +191181,7 @@ github.com/TrueCar/react-launch-darkly,num_dependents_deps.dev:0 github.com/TrueCar/vscode-apollo-relay, github.com/TrueCodeMedia/LinkedList,num_dependents_deps.dev:0 github.com/TrueCommerce/node-x12,num_dependents_deps.dev:0 +github.com/TrueDeploy-com/TrueDeploy-Curl-to-AWS, github.com/TrueDub/bootstrap-react-treetable,num_dependents_deps.dev:0 github.com/TrueDub/grunt-nexus-release,num_dependents_deps.dev:0 github.com/TrueDub/maven-usage,num_dependents_deps.dev:0 @@ -186808,9 +191221,11 @@ github.com/TrueNorth/ember-svg,num_dependents_deps.dev:0 github.com/TrueNorth/flavordb-node,num_dependents_deps.dev:0 github.com/TrueNorth/foundation-icons-rails,num_dependents_deps.dev:0 github.com/TrueNorth/spurs,num_dependents_deps.dev:0 +github.com/TrueSparrowSystems/ghost-static-website-generator, github.com/TrueVote/TrueVote,num_dependents_deps.dev:0 github.com/TrueWill/tzientist,num_dependents_deps.dev:0 github.com/TrueWinter/migrate-json,num_dependents_deps.dev:0 +github.com/TrueXPixells/action-fork-sync, github.com/TrueXPixels/list-image-gen,num_dependents_deps.dev:0 github.com/TrueXPixels/quick.db,num_dependents_deps.dev:16 github.com/TrueXPixels/quick.hook,num_dependents_deps.dev:0 @@ -186949,6 +191364,7 @@ github.com/TryGhost/Members,num_dependents_deps.dev:23 github.com/TryGhost/Portal, github.com/TryGhost/SDK,num_dependents_deps.dev:35 github.com/TryGhost/Utils,num_dependents_deps.dev:41 +github.com/TryGhost/action-deploy-theme, github.com/TryGhost/algolia, github.com/TryGhost/bookshelf-relations,num_dependents_deps.dev:0 github.com/TryGhost/domain-validator,num_dependents_deps.dev:0 @@ -187180,6 +191596,8 @@ github.com/TuentyFaiv/Mediaplayer, github.com/TuentyFaiv/random-messages,num_dependents_deps.dev:0 github.com/TuerCo/generator-ngbp-typescript, github.com/TuffyLiu/TuffyLiu-html2images, +github.com/Tufin/oasdiff-action, +github.com/Tufin/securecloud-image-analysis-action, github.com/Tug/express-asset-manager,num_dependents_deps.dev:0 github.com/Tug/express-autoload,num_dependents_deps.dev:0 github.com/Tug/node-pdns, @@ -187574,6 +191992,7 @@ github.com/TwQin0403/TWCB, github.com/TwQin0403/twstock_downloader, github.com/TwakeApp/Twake,criticality_score:0.333630 github.com/TwanLuttik/data-passthrough-filter,num_dependents_deps.dev:0 +github.com/TwanLuttik/gh-action-scp, github.com/Twangist/prelogging, github.com/Tween-SA/react-native-intercom, github.com/TweetJMorales/cordova-framework7,num_dependents_deps.dev:0 @@ -187581,6 +192000,7 @@ github.com/TweetLite/tweetlite-automate,num_dependents_deps.dev:0 github.com/TwelveIsLove/npmInitTest,num_dependents_deps.dev:0 github.com/TwentyBN/pyfackel, github.com/TwentyBN/tnt, +github.com/TwentyFourMinutes/PublishNuget, github.com/TwentyFourSevenOLC/dicomviewer,num_dependents_deps.dev:0 github.com/Tweries/FeatureContext,num_dependents_deps.dev:0 github.com/Twibap/EVM-priceboard,num_dependents_deps.dev:0 @@ -187592,6 +192012,7 @@ github.com/TwicPics/vue-twicpics,num_dependents_deps.dev:0 github.com/Twiddlle/acl-nest,num_dependents_deps.dev:0 github.com/TwidereProject/Twidere-Android,criticality_score:0.531290 github.com/TwigWorld/eslint-config-twig,num_dependents_deps.dev:0 +github.com/TwiggyBuffalo/create-npmrc, github.com/TwiggyRJ/react-native-anubis-component-library,num_dependents_deps.dev:0 github.com/Twiinlab/oscarwinner-names,num_dependents_deps.dev:0 github.com/Twikito/easy-toggle-state,"criticality_score:0.325090,num_dependents_deps.dev:0" @@ -187599,6 +192020,7 @@ github.com/Twikito/onscroll-effect,num_dependents_deps.dev:0 github.com/Twiknight/eslint-plugin-vue,num_dependents_deps.dev:2 github.com/Twiknight/vue-transition,num_dependents_deps.dev:0 github.com/TwilCynder/nodeCommandLine,num_dependents_deps.dev:0 +github.com/Twilight-Wings-Studio/YouTube-Uploads-Notifyer, github.com/TwilightTitus/de.titus.form,num_dependents_deps.dev:0 github.com/TwilightTitus/de.titus.logging,num_dependents_deps.dev:0 github.com/TwilightTitus/dom-api-extension,num_dependents_deps.dev:0 @@ -187612,6 +192034,7 @@ github.com/TwinLight/dota2-api,num_dependents_deps.dev:0 github.com/TwinProduction/gatus,"criticality_score:0.406340,num_dependents_deps.dev:0" github.com/Twinfield/xml2xpath,num_dependents_deps.dev:0 github.com/Twinfield/xsd2xpath,num_dependents_deps.dev:0 +github.com/Twingate/github-action, github.com/Twinkle942910/MonthYearPicker,num_dependents_deps.dev:0 github.com/TwinkleLeon/cli-res,num_dependents_deps.dev:0 github.com/Twinklebear/arcball,num_dependents_deps.dev:0 @@ -187644,6 +192067,9 @@ github.com/Twistage/helix,num_dependents_deps.dev:0 github.com/Twistbioscience/DesignerComponents,num_dependents_deps.dev:0 github.com/Twistbioscience/csv_composer,num_dependents_deps.dev:0 github.com/TwistedAsylumMC/1mbsite-node,num_dependents_deps.dev:0 +github.com/TwistoPayments/actions-techdocs, +github.com/TwistoPayments/deploy-checker, +github.com/TwistoPayments/github-repo-replicator, github.com/TwistoPayments/pycsob, github.com/Twitch-Prime-Live/ioredis-mock,num_dependents_deps.dev:0 github.com/TwitchBronBron/MessageManager,num_dependents_deps.dev:0 @@ -187767,6 +192193,7 @@ github.com/TyPR124/ipstuff,num_dependents_deps.dev:0 github.com/TyPR124/winapi-rs,num_dependents_deps.dev:3 github.com/TyPR124/winping,num_dependents_deps.dev:1 github.com/TyVik/YaDiskClient, +github.com/Tyagdit/release-telegram-action, github.com/Tyba/sigdispatch, github.com/TyberiusPrime/KeyToKey,num_dependents_deps.dev:0 github.com/TyberiusPrime/debouncing,num_dependents_deps.dev:0 @@ -187791,7 +192218,9 @@ github.com/Tygs/0bin,criticality_score:0.373750 github.com/Tyill/skynet, github.com/Tyill/zmey, github.com/Tyilo/z4, +github.com/TykTechnologies/go-plugin-compiler-action, github.com/TykTechnologies/graphiql,num_dependents_deps.dev:0 +github.com/TykTechnologies/packagecloud-action, github.com/TykTechnologies/tyk,"criticality_score:0.646790,num_dependents_deps.dev:7" github.com/Tyki/GoogleDocTranslations,num_dependents_deps.dev:0 github.com/Tyl3rM/lodown,num_dependents_deps.dev:0 @@ -187821,6 +192250,11 @@ github.com/Tyler-Murphy/require-from-drive,num_dependents_deps.dev:0 github.com/Tyler-Murphy/set-helpers,num_dependents_deps.dev:0 github.com/Tyler-V/ckeditor5,num_dependents_deps.dev:0 github.com/Tyler-Zhang/words-with-coworkers,num_dependents_deps.dev:0 +github.com/Tyler887/PS-Runner, +github.com/Tyler887/TypeScript-GitHub-Actions, +github.com/Tyler887/chocolatey-install, +github.com/Tyler887/jekyllbuild, +github.com/Tyler887/python-action, github.com/TylerAHolden/changelog-to-react-component,num_dependents_deps.dev:0 github.com/TylerAHolden/guts,num_dependents_deps.dev:0 github.com/TylerAHolden/react-capacitor-firebase-image-upload,num_dependents_deps.dev:0 @@ -187864,8 +192298,10 @@ github.com/TylerLH/react-native-timeago,num_dependents_deps.dev:0 github.com/TylerLH/rolo,num_dependents_deps.dev:0 github.com/TylerLH/tinyconf,num_dependents_deps.dev:0 github.com/TylerLafayette/react-native-custom-shadows-android,num_dependents_deps.dev:0 +github.com/TylerLeonhardt/first-interaction-pwsh, github.com/TylerLeonhardt/tylerleonhardt,num_dependents_deps.dev:0 github.com/TylerLubeck/battlebots, +github.com/TylerMS887/python-gh-action, github.com/TylerMartinez/AutoKanji,num_dependents_deps.dev:0 github.com/TylerMartinez/JSONTrie,num_dependents_deps.dev:0 github.com/TylerMathis/apollo, @@ -188044,7 +192480,9 @@ github.com/TypedRest/TypedRest-TypeScript,num_dependents_deps.dev:0 github.com/Typeform/eslint-config-typeform,num_dependents_deps.dev:0 github.com/Typeform/foreyes,num_dependents_deps.dev:0 github.com/Typeform/js-api-client,num_dependents_deps.dev:2 +github.com/Typeform/labeler, github.com/Typeform/openapi-micro-merge,num_dependents_deps.dev:0 +github.com/Typeform/siesta, github.com/Typeform/typeform-elements, github.com/TypesInCode/jTemplates,num_dependents_deps.dev:0 github.com/Typescript-TDD/jasmine-ts-auto-mock, @@ -188144,6 +192582,7 @@ github.com/Tzinov15/react-native-animated-components,num_dependents_deps.dev:0 github.com/Tzinov15/swagger-bank, github.com/Tzng/ReactTemplate,num_dependents_deps.dev:0 github.com/Tzutori/watermelon-feature-selection, +github.com/TzviPM/laravel-deploy, github.com/Tzxhy/make-normal-web,num_dependents_deps.dev:0 github.com/Tzxhy/mock-case-server,num_dependents_deps.dev:0 github.com/Tzxhy/optipng,num_dependents_deps.dev:0 @@ -188400,6 +192839,8 @@ github.com/UKQIDA/mzqLibrary,num_dependents_deps.dev:0 github.com/UKRIN-MAPS/ukat, github.com/UKTradeInvestment/govstrap,num_dependents_deps.dev:0 github.com/UKTradeInvestment/trade-elements,num_dependents_deps.dev:0 +github.com/UKnowWhoIm/auto-pr-fork, +github.com/UKnowWhoIm/django-test-action, github.com/ULIVZ/html-css-transformer,num_dependents_deps.dev:0 github.com/ULIVZ/markdown-catalogue-parser,num_dependents_deps.dev:0 github.com/ULIVZ/markdown-it-chain,num_dependents_deps.dev:490 @@ -188644,6 +193085,7 @@ github.com/US-CBP/ngx-cbp-theme,num_dependents_deps.dev:0 github.com/US-Fabrics/usf-parse-helpers,num_dependents_deps.dev:0 github.com/USA-RedDragon/create-jacob,num_dependents_deps.dev:0 github.com/USA-RedDragon/create-jacob-app,num_dependents_deps.dev:0 +github.com/USA-RedDragon/kiri-github-action, github.com/USA-RedDragon/material-dashboard-react-dark,num_dependents_deps.dev:0 github.com/USA-RedDragon/python-algolab, github.com/USAJOBS/Help,num_dependents_deps.dev:0 @@ -188899,6 +193341,8 @@ github.com/Ubleam/eslint-config-ubleam,num_dependents_deps.dev:0 github.com/Ublimjo/pyfield, github.com/Ubuntu-Solutions-Engineering/maasclient, github.com/Ubuntu-Solutions-Engineering/macumba, +github.com/UcheSylvester/pr-labelr, +github.com/UcheSylvester/pr-smartrr, github.com/UcheSylvester/shadow-master,num_dependents_deps.dev:0 github.com/Uchencho/okra_py, github.com/Uchibori3/mfcloud-invoice-scala,num_dependents_deps.dev:0 @@ -188966,6 +193410,10 @@ github.com/Uello/r-script,num_dependents_deps.dev:0 github.com/Uelstudios/csv-parser,num_dependents_deps.dev:0 github.com/Uepaa-AG/react-native-p2pkit,num_dependents_deps.dev:0 github.com/Uetty/common-excel,num_dependents_deps.dev:0 +github.com/UffizziCloud/cluster-action, +github.com/UffizziCloud/delete-preview-action, +github.com/UffizziCloud/preview-action, +github.com/UffizziCloud/update-preview-action, github.com/UggoPrince/id3-tag-reader,num_dependents_deps.dev:0 github.com/UghThatGuyAgain/cGG,num_dependents_deps.dev:0 github.com/UglyToad/PdfPig,criticality_score:0.457470 @@ -188996,6 +193444,7 @@ github.com/Ujang360/py-servicehost, github.com/UjinPererva/jsonapi-league-fractal,num_dependents_deps.dev:0 github.com/Ujinjinjin/lars, github.com/Ujinjinjin/msu_helpers, +github.com/Ujjwal048/action-ecr-image-scan, github.com/UjoTeam/contracts-handlers,num_dependents_deps.dev:0 github.com/UjoTeam/contracts-oracle,num_dependents_deps.dev:0 github.com/Ukeeyo/react-ez-bs-grid,num_dependents_deps.dev:0 @@ -189012,6 +193461,7 @@ github.com/Ulbora/ulbora-oauth2,num_dependents_deps.dev:0 github.com/Ulbora/ulboracms-installer,num_dependents_deps.dev:0 github.com/UlfR/jupyterlab-attachments,num_dependents_deps.dev:0 github.com/UlfR/jupyterlab_commands,num_dependents_deps.dev:0 +github.com/Ulferno/upload-to-roblox, github.com/Ulflander/Noode.js, github.com/Ulflander/compendium-js,num_dependents_deps.dev:2 github.com/Ulflander/gulp-lyonesse,num_dependents_deps.dev:0 @@ -189035,7 +193485,9 @@ github.com/UlisesGascon/browser-redirect,num_dependents_deps.dev:0 github.com/UlisesGascon/check-metadata,num_dependents_deps.dev:0 github.com/UlisesGascon/check-my-headers,num_dependents_deps.dev:0 github.com/UlisesGascon/express-simple-pagination,num_dependents_deps.dev:0 +github.com/UlisesGascon/jenkins-status-alerts-and-reporting, github.com/UlisesGascon/madrid-traffic-cameras-cli,num_dependents_deps.dev:0 +github.com/UlisesGascon/openssf-scorecard-monitor, github.com/UlisesGascon/sweetpgp,num_dependents_deps.dev:0 github.com/UlisesGascon/the-scraping-machine,num_dependents_deps.dev:0 github.com/UlisesGascon/tor-detect-middleware,num_dependents_deps.dev:0 @@ -189147,6 +193599,7 @@ github.com/Umajs/plugin-redis,num_dependents_deps.dev:0 github.com/Umajs/plugin-vue-ssr,num_dependents_deps.dev:0 github.com/Umajs/umajs-express,num_dependents_deps.dev:0 github.com/Umanlife/angular-ui-router-pagetitle,num_dependents_deps.dev:0 +github.com/UmbHost/umbhost-web-deploy, github.com/UmboFrance/Discord-AntiSpam,num_dependents_deps.dev:0 github.com/UmbraEngineering/cloak-cli,num_dependents_deps.dev:0 github.com/UmbraEngineering/cloak.animate,num_dependents_deps.dev:0 @@ -189200,9 +193653,11 @@ github.com/Umca/pixi-font-middlewear,num_dependents_deps.dev:0 github.com/Umecan/eslint-config-ume,num_dependents_deps.dev:0 github.com/UmerIftikhar/normalizerdms,num_dependents_deps.dev:0 github.com/UmerMuxhal/automate-wordpress-post, +github.com/UmerMuxhal/python-lambda-layer, github.com/Umesh02/ume-react-custom-button,num_dependents_deps.dev:0 github.com/Umesh8Joshi/BooksWord, github.com/Uminily/neatsio-rest,num_dependents_deps.dev:0 +github.com/Umio-Yasuno/gh_pages-sitemap-ping, github.com/Umkus/bad-ip-blocklist,num_dependents_deps.dev:0 github.com/Umkus/ip-index,num_dependents_deps.dev:0 github.com/Umma1/hadith, @@ -189210,6 +193665,7 @@ github.com/Umqra/imports-fixer, github.com/UmutKiziloglu/giphy-api,num_dependents_deps.dev:0 github.com/UmutKiziloglu/oxygen-api,num_dependents_deps.dev:0 github.com/UmutKiziloglu/oxygen.db,num_dependents_deps.dev:0 +github.com/UmutSERIFLER/test-ios-application, github.com/Umzugsagenten/dic,num_dependents_deps.dev:0 github.com/Un-Bourguignon/un-bourguignon, github.com/UnB-KnEDLe/DODFMiner, @@ -189232,6 +193688,7 @@ github.com/UnPourTous/react-native-stub-toast,num_dependents_deps.dev:0 github.com/UnPourTous/react-native-touchable,num_dependents_deps.dev:2 github.com/UnPourTous/rn-console-polyfill,num_dependents_deps.dev:0 github.com/UnPourTous/rn-seed,num_dependents_deps.dev:0 +github.com/UnSetSoft/ryunixjs-action, github.com/UnSstrennen/cookie.js,num_dependents_deps.dev:0 github.com/UnTalDulcey/cdmetro, github.com/UnTalDulcey/loducode_maytapi, @@ -189462,12 +193919,17 @@ github.com/Unicorn/horseshoes,num_dependents_deps.dev:0 github.com/Unicorn/neue-ui, github.com/UnicornGlobal/avatars,num_dependents_deps.dev:0 github.com/UnicornGlobal/data-table,num_dependents_deps.dev:0 +github.com/UnicornGlobal/get-run-metadata, +github.com/UnicornGlobal/has-changes-action, github.com/UnicornGlobal/howzit-vue,num_dependents_deps.dev:0 github.com/UnicornGlobal/liquid-linter,num_dependents_deps.dev:0 github.com/UnicornGlobal/liquid-linter-cli, github.com/UnicornGlobal/printer,num_dependents_deps.dev:0 github.com/UnicornGlobal/quick-dash-framework,num_dependents_deps.dev:0 +github.com/UnicornGlobal/shopify-theme-lint-action, +github.com/UnicornGlobal/spellcheck-github-actions, github.com/UnicornGlobal/toaster,num_dependents_deps.dev:0 +github.com/UnicornGlobal/trufflehog-actions-scan, github.com/UnicornGlobal/uploader,num_dependents_deps.dev:0 github.com/UnicornHeartClub/debog,num_dependents_deps.dev:0 github.com/UnicornHeartClub/menuit,num_dependents_deps.dev:0 @@ -189532,6 +193994,7 @@ github.com/Uniswap/uniswap-v3-core,num_dependents_deps.dev:68 github.com/Uniswap/uniswap-v3-periphery,num_dependents_deps.dev:56 github.com/Uniswap/uniswap-v3-sdk,num_dependents_deps.dev:2 github.com/Uniswap/uniswap-v3-staker,num_dependents_deps.dev:0 +github.com/UnitTestBot/UTBotJava-action, github.com/Unitech/Logman,num_dependents_deps.dev:0 github.com/Unitech/angular-bridge, github.com/Unitech/cryptoengine, @@ -189683,6 +194146,9 @@ github.com/UnlockDep/app-template-react-typescript-sass,num_dependents_deps.dev: github.com/UnlockDep/utilitateak, github.com/UnlyEd/cli-confirm,num_dependents_deps.dev:0 github.com/UnlyEd/conditions-matcher,num_dependents_deps.dev:0 +github.com/UnlyEd/github-action-await-vercel, +github.com/UnlyEd/github-action-deploy-on-vercel, +github.com/UnlyEd/github-action-store-variable, github.com/UnlyEd/iso3166-1,num_dependents_deps.dev:4 github.com/UnlyEd/next-right-now,criticality_score:0.417670 github.com/UnlyEd/prisma-algorithm-matcher,num_dependents_deps.dev:0 @@ -189705,6 +194171,8 @@ github.com/UnnamedMoose/BasicOpenFOAMProgrammingTutorials,criticality_score:0.32 github.com/UnnamedWorks/typecm,num_dependents_deps.dev:0 github.com/UnnamedXAer/find-next-file-name,num_dependents_deps.dev:0 github.com/UnnecessaryEngineering/oid,num_dependents_deps.dev:6 +github.com/Uno-Takashi/Lizard-Runner, +github.com/Uno-Takashi/checkmake-action, github.com/UnoLauncher/hexo-generator-atlnews,num_dependents_deps.dev:0 github.com/Unode/simpletap, github.com/UnofficialDathost/TypeScript,num_dependents_deps.dev:0 @@ -189722,6 +194190,7 @@ github.com/UnquietCode/spring-generics,num_dependents_deps.dev:7 github.com/UnrealEugene/curly_potato, github.com/UnrealValentin/dnd-api, github.com/Unrealman1/react-dadata,num_dependents_deps.dev:0 +github.com/UnsafePointer/cmake-clang-ninja-build-github-action, github.com/UnscriptedVN/candella-sdk, github.com/UnscriptedVN/fira, github.com/UnscriptedVN/rdt, @@ -189761,6 +194230,7 @@ github.com/UnwrittenFun/svelte-language-server,num_dependents_deps.dev:0 github.com/UnwrittenFun/svelte-matter,num_dependents_deps.dev:0 github.com/UnwrittenFun/svelte-redux,num_dependents_deps.dev:0 github.com/UnwrittenFun/ts-injectable,num_dependents_deps.dev:0 +github.com/UnwrittenMedia/helm3-push-action, github.com/UnwrittenMedia/overobservable,num_dependents_deps.dev:0 github.com/UoA-CARES/BuilT, github.com/UoMResearchIT/region-estimators, @@ -189789,6 +194259,7 @@ github.com/UpLab/react-d3-speedometer, github.com/UpLab/should-update,num_dependents_deps.dev:0 github.com/UpSolv-it/C2LI,num_dependents_deps.dev:0 github.com/UpStride/betterargparse, +github.com/UpSync-Dev/sbt-dependency-updates-action, github.com/Upasana242/random-encode,num_dependents_deps.dev:0 github.com/Upd4ting/nativescript-hook-versioning,num_dependents_deps.dev:0 github.com/Upd4ting/nativescript-tinyengine,num_dependents_deps.dev:0 @@ -189947,6 +194418,7 @@ github.com/Ureimu/Ure-screeps-external,num_dependents_deps.dev:0 github.com/Ureimu/screeps-calculator,num_dependents_deps.dev:0 github.com/Urento/Hastebin-API,num_dependents_deps.dev:0 github.com/Urhengulas/python-procolog2msgpack, +github.com/UriKatsirPrivate/deploy-gcp-workflow, github.com/UriaMorP/mprod_package, github.com/Urie96/svgu,num_dependents_deps.dev:0 github.com/Uriel-Alves/ASC, @@ -189959,6 +194431,7 @@ github.com/UrielCh/node-alpine,num_dependents_deps.dev:0 github.com/UrielCh/node-alpine-ts, github.com/UrielCh/node-dev-input-reader,num_dependents_deps.dev:0 github.com/UrielCh/node-worker-threads-pool-ts,num_dependents_deps.dev:0 +github.com/UrielCh/opencv-cache-action, github.com/UrielCh/ovh-java-sdk,num_dependents_deps.dev:0 github.com/UrielCh/prime-js,num_dependents_deps.dev:0 github.com/UrielCh/proxmox-api,num_dependents_deps.dev:0 @@ -190082,6 +194555,7 @@ github.com/UsabilityDynamics/object-validation,num_dependents_deps.dev:0 github.com/UsabilityDynamics/rabbit,num_dependents_deps.dev:0 github.com/UsabilityEtc/file-size-tree-js,num_dependents_deps.dev:0 github.com/UsabilityEtc/tweet-utils-js,num_dependents_deps.dev:0 +github.com/Usabl-dev/usabl-github-action, github.com/Usama0121/ariadne-jwt, github.com/Usama0121/neo4j-graphql-py, github.com/Usama0511/Components,num_dependents_deps.dev:0 @@ -190102,6 +194576,8 @@ github.com/UseAllFive/react-global-grid,num_dependents_deps.dev:0 github.com/UseAllFive/react-nested-nav,num_dependents_deps.dev:0 github.com/UseFedora/dockable,num_dependents_deps.dev:0 github.com/UseFedora/fedora-analytics.js-integration-sumome,num_dependents_deps.dev:0 +github.com/UseGPTest/GPRobot, +github.com/UseKeyp/publish-pr-packages, github.com/UseTheApi/flask_url_discovery, github.com/Usearcade/arcade-js,num_dependents_deps.dev:0 github.com/Usearcade/arcade-libs, @@ -190164,9 +194640,11 @@ github.com/Usio-Energy/ENSEK, github.com/UsmanAAV/game-2048-library-functional,num_dependents_deps.dev:0 github.com/UsmanAAV/project-lvl1-s204,num_dependents_deps.dev:0 github.com/UsmanAAV/project-lvl2-s225,num_dependents_deps.dev:0 +github.com/UsmanAsif193/Surge-Action, github.com/UsmanMaan324/uMath, github.com/UsmanYasin/superset-ui-plugins-template,num_dependents_deps.dev:0 github.com/UsmaniSaad/cordova-plugin-fp-secugen,num_dependents_deps.dev:0 +github.com/Uspacy/aws-ecr-action, github.com/Usterix/emma-sdk,num_dependents_deps.dev:0 github.com/Ustimov/SvgSaver,num_dependents_deps.dev:2 github.com/Ustimov/node-red-flow-drawer,num_dependents_deps.dev:0 @@ -190312,6 +194790,7 @@ github.com/V-in/scrappy, github.com/V-in/tscpaths,num_dependents_deps.dev:0 github.com/V-n-B/voi,num_dependents_deps.dev:0 github.com/V0idExp/mercury, +github.com/V0ldek/modify-label, github.com/V1LL0/never-undefined,num_dependents_deps.dev:0 github.com/V1ad98/woeBinningPandas, github.com/V1ncNet/spring-boot-dkim-javamail,num_dependents_deps.dev:0 @@ -190326,6 +194805,7 @@ github.com/V3N0ME/redis-controller-adaptor,num_dependents_deps.dev:0 github.com/V3RITAS-UTD/m10,num_dependents_deps.dev:0 github.com/V3RITAS-UTD/m10-cli,num_dependents_deps.dev:0 github.com/V3RT1AG0/FadingTextView,num_dependents_deps.dev:0 +github.com/V3lop5/latex-action, github.com/V413H4V/Komodo-RPC-Library-Python, github.com/V4Fire/Client,num_dependents_deps.dev:0 github.com/V4Fire/Core,num_dependents_deps.dev:0 @@ -190552,6 +195032,7 @@ github.com/VLaroye/ts-snake,num_dependents_deps.dev:0 github.com/VLavado/vlc_pypackage, github.com/VLprojects/chat,num_dependents_deps.dev:0 github.com/VMashanov/crypto-pro-provider,num_dependents_deps.dev:0 +github.com/VMelnalksnis/resharper-inspect-action, github.com/VMois/loopback-sendgrid-connector,num_dependents_deps.dev:0 github.com/VN666/add-charset-webpack-plugin,num_dependents_deps.dev:0 github.com/VN666/ez-nuxtjs-axios-ie,num_dependents_deps.dev:0 @@ -190595,6 +195076,8 @@ github.com/VRGhost/objective_regex, github.com/VRGhost/pytest-flake8, github.com/VRGhost/sqlalchemy-fsm, github.com/VRGhost/vbox, +github.com/VRLabs/VRCTools-Packaging-Action, +github.com/VRLabs/extract-unity-package-action, github.com/VRMink/credit-card-generator, github.com/VRMink/credit-card-identifier, github.com/VRMink/syslog-console, @@ -190629,6 +195112,7 @@ github.com/VSymonenko/vue-cloud-manager,num_dependents_deps.dev:0 github.com/VT-CHCI/google-scholar,num_dependents_deps.dev:0 github.com/VTJamie/grunt-pythonjs,num_dependents_deps.dev:0 github.com/VTNPlusD/react-native-wheel-picker,num_dependents_deps.dev:0 +github.com/VTTAssets/fvtt-release-packager, github.com/VTUL/VIVOHarvester, github.com/VTimofeenko/confluence_poster, github.com/VTimofeenko/overlay-maintain-tools, @@ -190640,6 +195124,7 @@ github.com/VUIIS/pyxnat, github.com/VUIIS/recon-stats, github.com/VUIIS/seam, github.com/VUnit/vunit,criticality_score:0.405290 +github.com/VUnit/vunit_action, github.com/VV-NS-CY-ZW-CS-207-Organization/cs207-FinalProject, github.com/VV-UI/VV-UI,num_dependents_deps.dev:0 github.com/VVEIRD/StreamDeckCore,num_dependents_deps.dev:0 @@ -190687,6 +195172,7 @@ github.com/VaclavObornik/mocked-server,num_dependents_deps.dev:0 github.com/VaclavObornik/mongodash,num_dependents_deps.dev:0 github.com/VaclavSynacek/RF24SN_nodejs_server,num_dependents_deps.dev:0 github.com/VacuumDecay/react-native-verify-installer,num_dependents_deps.dev:0 +github.com/Vacxe/firebase-test-lab-action, github.com/VadLogan/creactor, github.com/VadLogan/isNotEmptyArray,num_dependents_deps.dev:0 github.com/VadVergasov/CodeforcesApiPy, @@ -190706,6 +195192,7 @@ github.com/VadimDez/ngx-filter-pipe, github.com/VadimDez/ngx-img-fallback,num_dependents_deps.dev:0 github.com/VadimDez/ngx-online-status,num_dependents_deps.dev:0 github.com/VadimDez/ngx-order-pipe,num_dependents_deps.dev:94 +github.com/VadimDez/weather-action, github.com/VadimDor/ssh-exec-plus,num_dependents_deps.dev:0 github.com/VadimDyliko/air-logger-rn,num_dependents_deps.dev:0 github.com/VadimDyliko/flipper-plugin-tree-metro-logger,num_dependents_deps.dev:0 @@ -190767,6 +195254,7 @@ github.com/VaheSaroyan/react-native-boilerplate,num_dependents_deps.dev:0 github.com/VaheSaroyan/redux-offline,num_dependents_deps.dev:0 github.com/Vahelnir/easydownload,num_dependents_deps.dev:0 github.com/VahidN/iTextSharp.LGPLv2.Core,criticality_score:0.320230 +github.com/VaibhavChidrawar/merge-schedule-action, github.com/VaibhavHaswani/textract-plus, github.com/VaibhavKaushik3220/abroca, github.com/VaibhavPage/graphnode,num_dependents_deps.dev:0 @@ -190783,6 +195271,7 @@ github.com/Vajehyab/arabic-to-persian.js,num_dependents_deps.dev:0 github.com/VakiGlobal/epayco-node,num_dependents_deps.dev:0 github.com/Vakrim/kostki,num_dependents_deps.dev:0 github.com/Vakrim/smol-state,num_dependents_deps.dev:0 +github.com/VakuWare/docfx-pdf-action, github.com/Val-istar-Guo/alfred-google-translate,num_dependents_deps.dev:0 github.com/Val-istar-Guo/alfred-npm-search,num_dependents_deps.dev:0 github.com/Val-istar-Guo/assist-plugin-system,num_dependents_deps.dev:0 @@ -190846,6 +195335,7 @@ github.com/ValeeraJS/Voxel,num_dependents_deps.dev:0 github.com/ValeeraJS/WebRTCRecorder,num_dependents_deps.dev:0 github.com/ValeeraJS/code-style,num_dependents_deps.dev:0 github.com/ValeeraJS/x,num_dependents_deps.dev:0 +github.com/Valen-C12/sync-up-to-codecommit-action, github.com/Valen-H/Dirstamp,num_dependents_deps.dev:0 github.com/Valen-H/Vale3,num_dependents_deps.dev:0 github.com/ValencyHQ/react, @@ -190853,6 +195343,7 @@ github.com/ValencyHQ/vanilla,num_dependents_deps.dev:0 github.com/Valenookua/aiobook, github.com/ValentaTomas/blanket,num_dependents_deps.dev:0 github.com/ValentiMS/ogame-api,num_dependents_deps.dev:0 +github.com/Valentin-Kaiser/protocdock, github.com/Valentin1503/Chekhov,num_dependents_deps.dev:0 github.com/Valentin1918/pecker,num_dependents_deps.dev:0 github.com/Valentin1918/safe-get-prop,num_dependents_deps.dev:0 @@ -190871,6 +195362,8 @@ github.com/ValentinHacker/Loader,num_dependents_deps.dev:0 github.com/ValentinHacker/url-extra,num_dependents_deps.dev:0 github.com/ValentinVignal/EpicPath, github.com/ValentinVignal/LoadBar, +github.com/ValentinVignal/action-dart-analyze, +github.com/ValentinVignal/action-json-keys, github.com/Valentine-Mario/imagizer, github.com/Valentine-Mario/schema_types_generator,num_dependents_deps.dev:0 github.com/ValentineStone/dynamic-imports,num_dependents_deps.dev:0 @@ -190962,6 +195455,7 @@ github.com/ValkyrieStudios/node-args,num_dependents_deps.dev:0 github.com/ValkyrieStudios/node-cluster,num_dependents_deps.dev:0 github.com/ValkyrieStudios/utils,num_dependents_deps.dev:0 github.com/ValkyrieStudios/validator, +github.com/ValkyrienSkies/Minecraft-Architectury-Testing, github.com/Valkyrihane/emojison,num_dependents_deps.dev:0 github.com/Vall3y/jest-json-reporter,num_dependents_deps.dev:0 github.com/Vall3y/jest-slack-reporter,num_dependents_deps.dev:0 @@ -191029,6 +195523,7 @@ github.com/VamOSGS/image-analyzer,num_dependents_deps.dev:0 github.com/VamOSGS/jwt-koa,num_dependents_deps.dev:0 github.com/VamOSGS/koa-starter-cli,num_dependents_deps.dev:0 github.com/Vampire/command-framework,num_dependents_deps.dev:0 +github.com/Vampire/setup-wsl, github.com/Vampire2008/bootstrap4-paginator,num_dependents_deps.dev:0 github.com/Vampyrian/number-to-lt, github.com/Vamsee147/grunt-check-copyright,num_dependents_deps.dev:0 @@ -191060,6 +195555,7 @@ github.com/VanMess/generator-iview-admin,num_dependents_deps.dev:0 github.com/VanMess/oss-reader,num_dependents_deps.dev:0 github.com/VanMess/vue-next-clipboard,num_dependents_deps.dev:0 github.com/VanNostrandLab/peak, +github.com/VanOns/get-merged-pull-requests-action, github.com/VanOord/pandas-xlsx-tables, github.com/VanOvermeire/fp-ts-lambda-routing,num_dependents_deps.dev:0 github.com/VanOvermeire/sam-template-creator,num_dependents_deps.dev:0 @@ -191100,6 +195596,7 @@ github.com/Vanderhoof/PyNuclino, github.com/Vanderhoof/raml2html-full-markdown-theme, github.com/Vanderson-Moura/libppythonpro2, github.com/Vandesm14/node-express-boilerplate-gen,num_dependents_deps.dev:0 +github.com/VandeurenGlenn/action-electron-kit, github.com/VandeurenGlenn/backed-cli,num_dependents_deps.dev:0 github.com/VandeurenGlenn/backed-crisper,num_dependents_deps.dev:0 github.com/VandeurenGlenn/custom-button,num_dependents_deps.dev:0 @@ -191180,10 +195677,12 @@ github.com/VanishingDante/terminal-clear,num_dependents_deps.dev:0 github.com/VanishingDante/twitter-format-for-moment,num_dependents_deps.dev:0 github.com/VanityEmperor/gulu-demo,num_dependents_deps.dev:0 github.com/VankaTaganai/simplearraysumVT, +github.com/Vankka/pr-target-branch-action, github.com/Vanlee0129/node-des-cbc,num_dependents_deps.dev:0 github.com/Vanluren/cra-template-vanluren,num_dependents_deps.dev:0 github.com/VannTen/oauth2token, github.com/Vannevartech/unitify,num_dependents_deps.dev:0 +github.com/Vannevelj/sensitivity, github.com/Vanns35/Random-Number-Generator,num_dependents_deps.dev:0 github.com/VanoKoliesnik/sort-json-by-key,num_dependents_deps.dev:0 github.com/VansonLeung/react-native-android-webview-v,num_dependents_deps.dev:0 @@ -191263,6 +195762,7 @@ github.com/VarnaLab/node-organic,num_dependents_deps.dev:32 github.com/VarnaLab/varnalab-cli,num_dependents_deps.dev:0 github.com/Varnit-Zilingo/zilingo_airflow_utils_test, github.com/Varrcan/privacy_cookie,num_dependents_deps.dev:0 +github.com/Varriount/fvtt-autopublish, github.com/VarshneyaB/kudoSudoku, github.com/VarthanV/django-picsum, github.com/VarthanV/pywhoisxml, @@ -191362,13 +195862,18 @@ github.com/Vatras/mpi-node, github.com/Vatras/mpi-node-cli,num_dependents_deps.dev:0 github.com/Vatrushkin/loopback-hook-socket,num_dependents_deps.dev:0 github.com/VatsaDev/simple.js, +github.com/VatsalJagani/splunk-app-action, github.com/VatsalP/PyUrbanDict, github.com/Vauhtio/tslint-react-native,num_dependents_deps.dev:0 github.com/VaultTree/vault-tree,num_dependents_deps.dev:0 +github.com/VaultVulp/action-pipenv, github.com/VaultVulp/dypendence, +github.com/VaultVulp/gp-docker-action, +github.com/VaultVulp/lektor-action, github.com/VaultVulp/lektor-atom, github.com/Vaultio/react-useportal,num_dependents_deps.dev:0 github.com/Vaultio/schemats,num_dependents_deps.dev:0 +github.com/VauntDev/vaunt-cards-action, github.com/Vautrinss/rrice, github.com/Vauxoo/deployv-addon-gitlab-tools, github.com/Vauxoo/deployv-static, @@ -191384,6 +195889,7 @@ github.com/Vaziria/copebach, github.com/Vaziria/vtool, github.com/Vazkii/Botania,criticality_score:0.631900 github.com/Vazkii/Quark,criticality_score:0.492400 +github.com/Vba-actions/lint-vba, github.com/Vbobell/react-space-background,num_dependents_deps.dev:0 github.com/Vbrawl/Password_Safe_Box, github.com/VcDevel/Vc,criticality_score:0.491910 @@ -191395,6 +195901,7 @@ github.com/Vdogue/shadowizard,num_dependents_deps.dev:0 github.com/VdustR/font-splitter,num_dependents_deps.dev:0 github.com/VdustR/hanamin,num_dependents_deps.dev:0 github.com/VdustR/promise-over,num_dependents_deps.dev:0 +github.com/VdustR/semver-action, github.com/VdustR/swagger-dir,num_dependents_deps.dev:0 github.com/VdustR/taipei-sans-tc,num_dependents_deps.dev:0 github.com/VdustR/use-less,num_dependents_deps.dev:0 @@ -191520,6 +196027,8 @@ github.com/Vegasq/pytest-env-raw, github.com/VegeWong/PipelineDT, github.com/Vegeta-47/react-pixel-facebook,num_dependents_deps.dev:0 github.com/Vegeta-BJT/canvas-tailor,num_dependents_deps.dev:0 +github.com/VegetableGarden/beet, +github.com/VegetableGarden/melon, github.com/VeguiIzumi/MaiList,num_dependents_deps.dev:0 github.com/Vehemont/nvdlib, github.com/Vehmloewff/decentralized-particles,num_dependents_deps.dev:0 @@ -191614,6 +196123,7 @@ github.com/Venafi/pytpp, github.com/Venafi/vcert-python, github.com/VencaKrecl/pdf-generator,num_dependents_deps.dev:0 github.com/VencaKrecl/vuex-simple-cache, +github.com/Vendetta8247/github-action-slack-notify-build-jira, github.com/Vendic/vsf-external-checkout,num_dependents_deps.dev:0 github.com/VendingMashine/bit-drive,num_dependents_deps.dev:0 github.com/VendingMashine/catapult,num_dependents_deps.dev:0 @@ -191628,6 +196138,7 @@ github.com/VenkMallikarjun/BENPPy, github.com/Venkat-RK/multi_distinct_logger,num_dependents_deps.dev:0 github.com/VenkatPuttaganti/nodejsexamples,num_dependents_deps.dev:0 github.com/VenkatakrishnanG/mle-training_2, +github.com/Venkatesh-KCET/minify-action, github.com/VenkateshChinthakindi11/Network-Access-Status,num_dependents_deps.dev:0 github.com/Venki-BPM/HEFLO-nodejs,num_dependents_deps.dev:0 github.com/VenkiGovind/wr-styled-widgets,num_dependents_deps.dev:0 @@ -191680,6 +196191,8 @@ github.com/Venryx/webpack-runtime-require,num_dependents_deps.dev:0 github.com/Venryx/webpack-string-replacer,num_dependents_deps.dev:0 github.com/Venryx/yarn-vtools, github.com/VensonYang/awcp,num_dependents_deps.dev:8 +github.com/Vent-Finance/branch_creator, +github.com/Vent-Finance/release_chief, github.com/VentGrey/scanrs,num_dependents_deps.dev:0 github.com/Venti-/pubcode, github.com/Ventilador/ts-extras,num_dependents_deps.dev:40 @@ -191735,6 +196248,7 @@ github.com/Verba/data-lackey,num_dependents_deps.dev:0 github.com/VerbalExpressions/JSVerbalExpressions,criticality_score:0.412460 github.com/VerbalExpressions/PythonVerbalExpressions, github.com/VerbalExpressions/RustVerbalExpressions,num_dependents_deps.dev:0 +github.com/Verbalinsurection/track-pypi-version, github.com/VerbalizeItInc/verbalizeit,num_dependents_deps.dev:0 github.com/Vercjames/Node-Plus-Logging,num_dependents_deps.dev:0 github.com/Vercryger/sneak-file,num_dependents_deps.dev:0 @@ -191776,6 +196290,7 @@ github.com/Verikon/node-service-utils,num_dependents_deps.dev:0 github.com/Verikon/rdm-dialogue,num_dependents_deps.dev:0 github.com/Verikon/rdm-notifications,num_dependents_deps.dev:0 github.com/Verikon/stomped-rabbit,num_dependents_deps.dev:0 +github.com/Verimatrix/app-shield-protect, github.com/VerimatrixGen1/Veriteem,num_dependents_deps.dev:0 github.com/VerimatrixGen1/VeriteemComplianceLedger, github.com/VeriorPies/ParrelSync,criticality_score:0.358330 @@ -191884,6 +196399,7 @@ github.com/VeryCrazyDog/native-promise-util,num_dependents_deps.dev:0 github.com/VeryCrazyDog/task-scheduler-collection,num_dependents_deps.dev:0 github.com/VeryGame/XUE,num_dependents_deps.dev:0 github.com/VeryGame/gdx-surface,num_dependents_deps.dev:0 +github.com/VeryGoodOpenSource/very_good_coverage, github.com/VeryWow/vue-simple-headful, github.com/VesQ/cbNetwork-node,num_dependents_deps.dev:0 github.com/VesQ/node-NetMatch,num_dependents_deps.dev:0 @@ -191938,6 +196454,7 @@ github.com/Vetnow-Management/eslint-config, github.com/Vetted/python-heideltime, github.com/Vettvangur/Pagination,num_dependents_deps.dev:0 github.com/VevoxDigital/vx-util,num_dependents_deps.dev:0 +github.com/VewTech/Vew-Docker-Action, github.com/Vexcited/launchpad-midi-converter,num_dependents_deps.dev:0 github.com/Vexed01/vex-cog-utils, github.com/Vexera/cache,num_dependents_deps.dev:0 @@ -191991,10 +196508,14 @@ github.com/ViGo5190/mconf,num_dependents_deps.dev:0 github.com/ViGo5190/miniheap,num_dependents_deps.dev:0 github.com/ViGo5190/pm2-consul,num_dependents_deps.dev:0 github.com/ViMaSter/sessionserver,num_dependents_deps.dev:0 +github.com/ViRGiL175/github-check-branch-fast-forward-ness, +github.com/ViRGiL175/github-project-issue-to-sheets, github.com/ViTess/RxBus,num_dependents_deps.dev:0 github.com/ViXP/abstrakt,num_dependents_deps.dev:0 github.com/ViaSat/hotcidr, github.com/ViaVersion/ViaVersion,criticality_score:0.474460 +github.com/Viaceslav-Kodesh/Chaos, +github.com/Viaceslav-Kodesh/Test, github.com/ViacheslavOsadchyi/liteshop,num_dependents_deps.dev:0 github.com/ViacomInc/broadcast-calendar,num_dependents_deps.dev:0 github.com/ViacomInc/data-point, @@ -192047,6 +196568,7 @@ github.com/VicSolWang/eslint-config-wzx-vue,num_dependents_deps.dev:0 github.com/VicSolWang/tar-compress-cli,num_dependents_deps.dev:0 github.com/VicSolWang/webpack-base-cli,num_dependents_deps.dev:0 github.com/VicStor/type-check,num_dependents_deps.dev:0 +github.com/VicariousNetwork/vn-discord-webhook, github.com/Vicatim/rn-pin-view, github.com/VicenLaw/lerna-demo,num_dependents_deps.dev:0 github.com/Vicente015/instatus.ts,num_dependents_deps.dev:0 @@ -192079,6 +196601,7 @@ github.com/Victor-H5/gitee-webhook-handler,num_dependents_deps.dev:0 github.com/Victor-H5/gitee-webhook-middleware, github.com/VictorAlessander/Smith, github.com/VictorArowo/consim,num_dependents_deps.dev:0 +github.com/VictorAssunc/github-project-issue-to-sheets, github.com/VictorAvelar/theme-cdj,num_dependents_deps.dev:0 github.com/VictorBaba/react-field-validation-form,num_dependents_deps.dev:0 github.com/VictorBarbosa/alert-dialog,num_dependents_deps.dev:0 @@ -192099,6 +196622,7 @@ github.com/VictorCazanave/taiwan-weather-cli,num_dependents_deps.dev:0 github.com/VictorCazanave/vue-svg-map,num_dependents_deps.dev:0 github.com/VictorCoder123/ghost-storage,num_dependents_deps.dev:0 github.com/VictorCoder123/krona-viz-tool,num_dependents_deps.dev:0 +github.com/VictorDanilov/react-project-checker-action, github.com/VictorDavis/legomena, github.com/VictorDeAndres/angular-lib,num_dependents_deps.dev:0 github.com/VictorDeAndres/ngx-charts,num_dependents_deps.dev:0 @@ -192325,6 +196849,7 @@ github.com/Vikram-Ahuja/nsestockdata, github.com/VikramMaiya/modified-react-checkbox-tree,num_dependents_deps.dev:0 github.com/VikramN/Re-Tag,num_dependents_deps.dev:0 github.com/VikramTiwari/asynclog,num_dependents_deps.dev:0 +github.com/VikramTiwari/changed-in-duration, github.com/VikramTiwari/geo-from-ip,num_dependents_deps.dev:0 github.com/VikramTiwari/mean,num_dependents_deps.dev:0 github.com/VikramTiwari/not-sir,num_dependents_deps.dev:0 @@ -192339,6 +196864,7 @@ github.com/ViktorBarzin/lansync, github.com/ViktorBezdek/loan-calculations,num_dependents_deps.dev:0 github.com/ViktorC/PP4J,num_dependents_deps.dev:0 github.com/ViktorC/PararealML, +github.com/ViktorJT/Get-Vercel-preview-url, github.com/ViktorKinko/ZoomHandler,num_dependents_deps.dev:0 github.com/ViktorKonsta/examjs,num_dependents_deps.dev:0 github.com/ViktorKonsta/fb-ninja,num_dependents_deps.dev:0 @@ -192380,6 +196906,8 @@ github.com/ViliamV/timewarrior-extensions, github.com/ViliamV/vurf, github.com/ViliamVadocz/tmcp, github.com/Vilisag/jquery-fulltable,num_dependents_deps.dev:0 +github.com/ViliusSutkus89/WaitForURLsToBeAvailable, +github.com/ViliusSutkus89/promote-Nexus-repository-to-MavenCentral, github.com/ViljarVoidula/react-file-viewer,num_dependents_deps.dev:0 github.com/ViljarVoidula/testreel-nightwatch-recoder,num_dependents_deps.dev:0 github.com/VillSource/calendar-cli, @@ -192473,11 +197001,13 @@ github.com/VinayakHegde/who-am-i,num_dependents_deps.dev:0 github.com/VinayakHegde/who-are-u, github.com/VinayakRugvedi/authjs,num_dependents_deps.dev:0 github.com/Vinayakrevankar/frequency-module,num_dependents_deps.dev:0 +github.com/Vinayaks439/test-goactions, github.com/Vinayk93/io,num_dependents_deps.dev:0 github.com/Vinccool96/Algorithms,num_dependents_deps.dev:0 github.com/Vinccool96/json-verifier,num_dependents_deps.dev:0 github.com/Vinccool96/junit4-suite-generator,num_dependents_deps.dev:0 github.com/Vinccool96/modifications-api,num_dependents_deps.dev:0 +github.com/Vinccool96/rubocop-linter, github.com/Vince-9/vin-rc, github.com/Vince0382/react-horizontal-timeline,num_dependents_deps.dev:0 github.com/Vince0382/react-scroll-collision,num_dependents_deps.dev:0 @@ -192504,6 +197034,7 @@ github.com/Vincedream/react-mark-highlight,num_dependents_deps.dev:0 github.com/Vincema/rfdocsindexer, github.com/Vincenius/generator-next-styled-components,num_dependents_deps.dev:0 github.com/Vincent-Carrier/lotide-1,num_dependents_deps.dev:0 +github.com/Vincent-FundApps/action-cve-multiple-repos, github.com/Vincent-P/maniascript-rust,num_dependents_deps.dev:0 github.com/Vincent-P/webdoc,num_dependents_deps.dev:0 github.com/Vincent-Pang/aws-jwt-verifier,num_dependents_deps.dev:0 @@ -192636,6 +197167,7 @@ github.com/Vinnovera/glob-chokidar,num_dependents_deps.dev:0 github.com/Vinnovera/node-beanstalkd-rpc,num_dependents_deps.dev:0 github.com/Vinnovera/redux-contexts,num_dependents_deps.dev:0 github.com/Vinnovera/rimd,num_dependents_deps.dev:0 +github.com/VinnyBabuManjaly/copyright-action, github.com/VinoShipper/vinoshipper-js, github.com/VinodRanganath/rn-app-rating,num_dependents_deps.dev:0 github.com/Vinorcola/vinorcolium,num_dependents_deps.dev:0 @@ -192757,11 +197289,14 @@ github.com/VirtuoWorks/electron-sahara-template-vuejs,num_dependents_deps.dev:0 github.com/VirtuosoJoel/RubyExcel,num_dependents_deps.dev:0 github.com/VirtuousCrane/shrinemaiden, github.com/VirtusAI/multer-azure-blob-storage,num_dependents_deps.dev:0 +github.com/VirtusLab/bazel-steward, github.com/VirtusLab/beholder,num_dependents_deps.dev:0 +github.com/VirtusLab/codetale, github.com/VirtusLab/formts,num_dependents_deps.dev:0 github.com/VirtusLab/git-machete, github.com/VirtusLab/pandas-stubs, github.com/VirtusLab/play-slick-configuration,num_dependents_deps.dev:0 +github.com/VirtusLab/scala-cli-setup, github.com/VirtusLab/strapi-molecules,num_dependents_deps.dev:0 github.com/VirtusLab/strapi-plugin-comments,num_dependents_deps.dev:0 github.com/VirtusLab/strapi-plugin-navigation,num_dependents_deps.dev:0 @@ -192824,6 +197359,7 @@ github.com/VishvajeetRamanuj/hello_world_package, github.com/Vishwa17/jwplayer-ionic-cordova-plugin,num_dependents_deps.dev:0 github.com/Vishwas1/ae-channel-lib,num_dependents_deps.dev:0 github.com/VishwasShashidhar/geo-node,num_dependents_deps.dev:0 +github.com/Vishwastp89/CF, github.com/Vishwesh-Vishwesh/Logic_Py, github.com/VisibaCare/stylelint-config-visibacare,num_dependents_deps.dev:0 github.com/VisibaCare/tslint-config-visibacare,num_dependents_deps.dev:0 @@ -192857,6 +197393,7 @@ github.com/Visual-Regression-Tracker/agent-codeceptjs,num_dependents_deps.dev:0 github.com/Visual-Regression-Tracker/agent-cypress,num_dependents_deps.dev:0 github.com/Visual-Regression-Tracker/agent-playwright,num_dependents_deps.dev:0 github.com/Visual-Regression-Tracker/vrt-sdk-js,num_dependents_deps.dev:0 +github.com/VisualBean/reactive-readme, github.com/VisualComposer/vc-webpack-vendors,num_dependents_deps.dev:0 github.com/VisualComputingInstitute/TrackR-CNN,Google github.com/VisualDataIO/tinyimage, @@ -192985,12 +197522,14 @@ github.com/VitorLuizC/vue-loadable,num_dependents_deps.dev:0 github.com/VitorLuizC/vue-uuid,num_dependents_deps.dev:2 github.com/VitorLuizC/vuex-handler,num_dependents_deps.dev:0 github.com/VitorLuizC/vuex-shortly,num_dependents_deps.dev:0 +github.com/VitorNoVictor/fork-news, github.com/VitorRamos/cpufreq, github.com/VitorRamos/ipmi, github.com/VitorRamos/performance_features, github.com/VitorSFranca/simple-react-modal,num_dependents_deps.dev:0 github.com/VitorSavedra/pipz-tracker,num_dependents_deps.dev:0 github.com/VitorVRS/vrsflix,num_dependents_deps.dev:0 +github.com/Vitorgus/Setup-Godot, github.com/Vitormdias/br-cotation,num_dependents_deps.dev:0 github.com/Vitormdias/dc-names,num_dependents_deps.dev:0 github.com/Vitormdias/vitor-manfre-cv,num_dependents_deps.dev:0 @@ -193180,6 +197719,7 @@ github.com/Vlad-Zhukov/webpack-universal-helpers,num_dependents_deps.dev:0 github.com/Vlad1094/project-lvl1-s438,num_dependents_deps.dev:0 github.com/Vlad1094/project-lvl2-s439,num_dependents_deps.dev:0 github.com/VladBlow/re-style,num_dependents_deps.dev:0 +github.com/VladDaniliuk/action-release-releaseapk, github.com/VladG1T/cwp-22-1,num_dependents_deps.dev:0 github.com/VladKochetov007/BestArbitrage, github.com/VladKochetov007/quick_trade, @@ -193312,6 +197852,7 @@ github.com/Vmlweb/Vladiator,num_dependents_deps.dev:0 github.com/Vn-ChemGio/Parallax-Onboarding,num_dependents_deps.dev:0 github.com/VnValley/vv-std,num_dependents_deps.dev:0 github.com/Vnicius/capes-busca, +github.com/Vnicius/mobile-app-strings-update, github.com/Vnkitaev/mongoose-float, github.com/Vnkitaev/react-summernote,num_dependents_deps.dev:0 github.com/Vnkitaev/react-validatorjs,num_dependents_deps.dev:0 @@ -193338,15 +197879,18 @@ github.com/VoIlAlex/setup-py-cli, github.com/VoIlAlex/telebot-utils, github.com/VoIlAlex/via-sudoku-solver, github.com/VoVaVc/babel-console-log-plugin,num_dependents_deps.dev:0 +github.com/VoVaVc/migrate-github-action, github.com/VoVaVc/react-card-payment,num_dependents_deps.dev:0 github.com/VoVaVc/vue-card-payment,num_dependents_deps.dev:0 github.com/Voakie/ebcdic-ascii,num_dependents_deps.dev:0 github.com/VocalZero/another-cache,num_dependents_deps.dev:0 github.com/VoctroLabs/vtt-utils,num_dependents_deps.dev:0 +github.com/VodaPay-Gateway/github-action-copy, github.com/Vodafone-ES/vfes-validator,num_dependents_deps.dev:0 github.com/VodafoneGlobalServices/vodafone-android-sdk,num_dependents_deps.dev:0 github.com/Vodek2/express-response-config, github.com/Vodek2/intersecting-polygon-detector, +github.com/Vodianoi/uploadMod, github.com/VodkaBears/Interdimensional,num_dependents_deps.dev:0 github.com/VodkaBears/Remodal,num_dependents_deps.dev:4 github.com/VodkaBears/Sop,num_dependents_deps.dev:0 @@ -193629,6 +198173,7 @@ github.com/Voter-Science/DoubleBlind,num_dependents_deps.dev:0 github.com/Voter-Science/TrcLibNpm,num_dependents_deps.dev:4 github.com/Voter-Science/trc.runplugin,num_dependents_deps.dev:0 github.com/VoterScience/trc.cli,num_dependents_deps.dev:0 +github.com/Voteshield/VapeShield, github.com/Votion/exclude-extensions-from-require,num_dependents_deps.dev:0 github.com/Votion/hapi-dev-error-page,num_dependents_deps.dev:0 github.com/Votion/hapi-get-locales,num_dependents_deps.dev:0 @@ -193692,6 +198237,7 @@ github.com/VoxelMed/charls-js,num_dependents_deps.dev:0 github.com/VoxelMed/openjpegjs,num_dependents_deps.dev:0 github.com/VoxelSrv/protocol,num_dependents_deps.dev:0 github.com/VoxelSrv/voxelsrv-server,num_dependents_deps.dev:0 +github.com/Voxelot/publish-crates, github.com/Voxelum/minecraft-launcher-core-node,num_dependents_deps.dev:131 github.com/Voxer/lb_pool,num_dependents_deps.dev:18 github.com/Voxer/nagios-html-email,num_dependents_deps.dev:0 @@ -193712,6 +198258,7 @@ github.com/Voyz/databay, github.com/Voyzz/react-native-animated-carousel,num_dependents_deps.dev:0 github.com/Voyzz/react-native-hooks-swiper,num_dependents_deps.dev:0 github.com/Voyzz/react-native-swiper-hooks,num_dependents_deps.dev:0 +github.com/VozdyxStuff/self-hosted-clean, github.com/Vrael/keycloak-angular-ionic, github.com/Vraj11590/Censorify,num_dependents_deps.dev:0 github.com/Vrolijkx/platform-proxy,num_dependents_deps.dev:0 @@ -193736,6 +198283,8 @@ github.com/VuThuyThuy97/htmlprinter5,num_dependents_deps.dev:0 github.com/VuThuyThuy97/my-kurento-client,num_dependents_deps.dev:0 github.com/VuWall/svglite,num_dependents_deps.dev:0 github.com/Vuchan/gene-file,num_dependents_deps.dev:0 +github.com/Vucko130/delete-older-releases, +github.com/Vucko130/upload-release-action, github.com/Vue-Charts-CSS/vue.charts.css, github.com/Vue3-Components-Ts/infinite-loading-vue3-ts, github.com/VueBaseUi/BaseComponents,num_dependents_deps.dev:0 @@ -193772,6 +198321,7 @@ github.com/Vulmajs/vulma,num_dependents_deps.dev:0 github.com/VulnCorp/vuln-common, github.com/VulnCorp/vuln-pub-sdk, github.com/VulnCorp/vuln-utils, +github.com/VulnerabilitySpace/open-agent-action, github.com/Vulpine-IO/Catcher,num_dependents_deps.dev:0 github.com/Vulpine-IO/Jackfish,num_dependents_deps.dev:0 github.com/Vulpine-IO/lib-http,num_dependents_deps.dev:0 @@ -193794,6 +198344,7 @@ github.com/VunterSlaush/m-seeds,num_dependents_deps.dev:0 github.com/VuongVu/word2pdf,num_dependents_deps.dev:0 github.com/Vupy/Packs, github.com/Vurich/bsp,num_dependents_deps.dev:0 +github.com/Vurv78/gmod-upload, github.com/Vusumzi123/b-dialogs.js,num_dependents_deps.dev:0 github.com/Vutov/equihashjs-verify,num_dependents_deps.dev:0 github.com/Vutsuak16/filestats, @@ -193839,6 +198390,7 @@ github.com/W-Z-FinTech-GmbH/websms, github.com/W01fw00d/chemistry-ui,num_dependents_deps.dev:0 github.com/W0LFMAN/midmare,num_dependents_deps.dev:0 github.com/W0LFMAN/midmare-http-router,num_dependents_deps.dev:0 +github.com/W0lfw00d/mjml-github-action, github.com/W0lfw00d/parse-server-mailgun, github.com/W1ldPo1nter/django-queryable-properties, github.com/W1nU/react-native-token,num_dependents_deps.dev:0 @@ -193849,6 +198401,7 @@ github.com/W3AI/common, github.com/W3Dojo/Generate-ESM-Pathnames,num_dependents_deps.dev:0 github.com/W3Dojo/project-pathnames-esm,num_dependents_deps.dev:0 github.com/W3G33K/nginject-decorator,num_dependents_deps.dev:0 +github.com/W3Security/gitscan, github.com/W3TS-Project/ceres-ts-template,num_dependents_deps.dev:0 github.com/W3TS-Project/utils,num_dependents_deps.dev:0 github.com/W3lcomeApp/feathers-refresh-token, @@ -193894,6 +198447,7 @@ github.com/WCraaS/wcraas_control, github.com/WCraaS/wcraas_discovery, github.com/WCraaS/wcraas_storage, github.com/WDIlsb/vk-appscentrum-api,num_dependents_deps.dev:0 +github.com/WDaan/helm-kubeconform-action, github.com/WDever/cra-template-hanlight,num_dependents_deps.dev:0 github.com/WDies/eslint-config-fix-all,num_dependents_deps.dev:0 github.com/WDies/react-native-redux-i18next,num_dependents_deps.dev:0 @@ -194013,8 +198567,14 @@ github.com/WIPACrepo/MQClient, github.com/WIPACrepo/MQClient-GCP, github.com/WIPACrepo/MQClient-NATS, github.com/WIPACrepo/MQClient-RabbitMQ, +github.com/WIPACrepo/build-singularity-cvmfs-action, github.com/WIPACrepo/pyglidein, github.com/WIPACrepo/rest-tools, +github.com/WIPACrepo/wipac-dev-flake8-action, +github.com/WIPACrepo/wipac-dev-mypy-action, +github.com/WIPACrepo/wipac-dev-project-action, +github.com/WIPACrepo/wipac-dev-py-setup-action, +github.com/WIPACrepo/wipac-dev-py-versions-action, github.com/WIPACrepo/wipac-dev-tools, github.com/WIPACrepo/wipac-telemetry, github.com/WIPACrepo/wipac_fc, @@ -194099,6 +198659,7 @@ github.com/WOO-Electronics/APNs,num_dependents_deps.dev:0 github.com/WOOLAN/hapi-decorators,num_dependents_deps.dev:0 github.com/WOOLAN/karma-rest-fixtures-preprocessor,num_dependents_deps.dev:0 github.com/WOOLAN/swagger,num_dependents_deps.dev:0 +github.com/WOOSERK/get-prev-tag-action, github.com/WORD559/TileEngine, github.com/WORD559/snapchat-downloader, github.com/WORK90873/spellerjs, @@ -194109,14 +198670,19 @@ github.com/WORMSS/node-batch-github,num_dependents_deps.dev:0 github.com/WORMSS/node-find-matching-bracket,num_dependents_deps.dev:0 github.com/WORMSS/node-github,num_dependents_deps.dev:0 github.com/WORMSS/node-png-colour-type,num_dependents_deps.dev:0 +github.com/WOSPM/wospm-checker-github-action, github.com/WP-API/node-wpapi,"criticality_score:0.362950,num_dependents_deps.dev:128" github.com/WP-API/wordpress-rest-api-oauth-1, +github.com/WPCanny/action-build, github.com/WPI-RAIL/jrosbridge,num_dependents_deps.dev:6 github.com/WPIRoboticsProjects/GRIP,criticality_score:0.354060 +github.com/WPMedia/ads-changeset-action, +github.com/WPMedia/delete-github-package-versions, github.com/WPMedia/fusion-news-theme-blocks,num_dependents_deps.dev:0 github.com/WPMedia/py-arc-identifiers, github.com/WPMedia/storybook-web-vitals, github.com/WPO-Foundation/webpagetest,criticality_score:0.596420 +github.com/WPO-Foundation/webpagetest-github-action, github.com/WPQuark/eslint-config,num_dependents_deps.dev:0 github.com/WPS/domain-story-modeler,criticality_score:0.329540 github.com/WPTT/theme-unit-test,criticality_score:0.298590 @@ -194170,6 +198736,7 @@ github.com/WTFSSD/react-native-wtfssd-imagecompress,num_dependents_deps.dev:0 github.com/WTFSSD/react-native-wtfssd-remind,num_dependents_deps.dev:0 github.com/WTFSSD/react-native-wtfssd.alipay,num_dependents_deps.dev:0 github.com/WTFender/CMA, +github.com/WTFender/wpscan-action, github.com/WTFlay/fetch-http-errors,num_dependents_deps.dev:0 github.com/WTRMQDev/VM, github.com/WTRMQDev/leer, @@ -194358,6 +198925,7 @@ github.com/WaldoJeffers/react-dc,num_dependents_deps.dev:0 github.com/WaldoJeffers/rx-request,num_dependents_deps.dev:0 github.com/WaldoJeffers/transformer,num_dependents_deps.dev:0 github.com/WaleedAli070/react-use-popper,num_dependents_deps.dev:0 +github.com/WaleedAshraf/asyncapi-github-action, github.com/WaleedAshraf/asyncapi-validator,num_dependents_deps.dev:0 github.com/WaleedAshraf/hubot-double-parking,num_dependents_deps.dev:0 github.com/WaleedAshraf/migrating,num_dependents_deps.dev:0 @@ -194416,6 +198984,8 @@ github.com/Walrick/gui_tool, github.com/WalrusNetwork/prettier-config,num_dependents_deps.dev:0 github.com/Walrusking16/js-wktools,num_dependents_deps.dev:0 github.com/Walrusking16/scss-wkfrontend,num_dependents_deps.dev:0 +github.com/WalshyDev/Discord-Status-Webhook, +github.com/WalshyDev/cf-pages-await, github.com/WaltRock/knex,num_dependents_deps.dev:0 github.com/Walteann/walteann-ckeditor4-custom, github.com/Walter-Sparrow/nHentaiAPIWrapper,num_dependents_deps.dev:0 @@ -194692,6 +199262,7 @@ github.com/Wandalen/wfiles_,num_dependents_deps.dev:0 github.com/Wandalen/wgraphextra,num_dependents_deps.dev:0 github.com/Wandalen/willbe,num_dependents_deps.dev:0 github.com/Wandalen/wimex,num_dependents_deps.dev:0 +github.com/Wandalen/wretry.action, github.com/Wandalen/wtools_, github.com/WanderGomes/take-home-assignment-design-system,num_dependents_deps.dev:0 github.com/WanderHuang/carl, @@ -194859,6 +199430,8 @@ github.com/Warbring3r/gulp-grunt,num_dependents_deps.dev:0 github.com/WarbyParker/lookmlint, github.com/WarbyParker/ternup,num_dependents_deps.dev:0 github.com/Warcaith/robotframework-serial, +github.com/Warchant/setup-mold, +github.com/Warchant/setup-sonar-scanner, github.com/Warcraft3-GG/epicwar-download-maps, github.com/Warcraft3-GG/warcraft3gg-dto,num_dependents_deps.dev:0 github.com/Warcraft3-GG/wc3maps-download-maps,num_dependents_deps.dev:0 @@ -194883,6 +199456,7 @@ github.com/Warfare03/auto_clicker, github.com/Wargog/lctv-chatlib,num_dependents_deps.dev:0 github.com/Wargog/nodecaptcha,num_dependents_deps.dev:0 github.com/Wargus/stratagus,criticality_score:0.468430 +github.com/Warhammer4000/FileStack-Share-Artifact, github.com/WarheadsSE/node-gntp,num_dependents_deps.dev:0 github.com/WarheadsSE/node-kismet,num_dependents_deps.dev:0 github.com/WarmVissarutRonaldoDude/node-async-redis,num_dependents_deps.dev:0 @@ -194898,6 +199472,8 @@ github.com/WarnerHooh/babel-plugin-parameter-decorator,num_dependents_deps.dev:6 github.com/WarnerMedia/antiope-aws-module, github.com/Warouxlucas/Node.JS-CLI,num_dependents_deps.dev:0 github.com/Warouxlucas/npx-card,num_dependents_deps.dev:0 +github.com/WarpBuilds/action-debugger, +github.com/WarpBuilds/cache, github.com/WarpCloud/PyStellarDB, github.com/WarpCloud/verminator, github.com/WarpDreams/cloudatlas, @@ -194924,6 +199500,7 @@ github.com/WarpWorks/warpjs-plugins,num_dependents_deps.dev:2 github.com/WarpWorks/warpjs-session-plugin,num_dependents_deps.dev:0 github.com/WarpWorks/warpjs-survey-tool-plugin,num_dependents_deps.dev:0 github.com/WarpWorks/warpjs-utils,num_dependents_deps.dev:0 +github.com/Warped-Modding/mrpack-upload, github.com/WarrenF/form-builder,num_dependents_deps.dev:0 github.com/WarrenF/remember-me,num_dependents_deps.dev:0 github.com/WarrenJones/nemetric,num_dependents_deps.dev:0 @@ -194974,6 +199551,7 @@ github.com/WasiqB/coteafs-error,num_dependents_deps.dev:18 github.com/WasiqB/coteafs-listeners,num_dependents_deps.dev:0 github.com/WasiqB/coteafs-logger,num_dependents_deps.dev:0 github.com/WasiqB/coteafs-parent,num_dependents_deps.dev:0 +github.com/WasiqB/maven-publish-action, github.com/Wason1797/QueueAutomator, github.com/Wasp971/papertrail_logger, github.com/WassimBenzarti/colab-ssh-connector, @@ -195027,6 +199605,7 @@ github.com/WaterEye0o/react-native-scrollable-tab-view-custom-bar,num_dependents github.com/WaterEye0o/react-native-scrollable-tab-view-mask-bar,num_dependents_deps.dev:0 github.com/WaterKnight1998/Deep-Tumour-Spheroid, github.com/WaterKnight1998/SemTorch, +github.com/WaterLemons2k/scheduled-workflow-activity-action, github.com/WaterMozilla/comet, github.com/WaterNguyen96/react-horizontal-timeline,num_dependents_deps.dev:0 github.com/WaterTian/sint.js, @@ -195072,6 +199651,8 @@ github.com/WavyWalk/reactize-html,num_dependents_deps.dev:0 github.com/WavyWalk/reformations-tag,num_dependents_deps.dev:0 github.com/WavyWalk/subscription-state,num_dependents_deps.dev:0 github.com/Wavychat/neo4j_migrations,num_dependents_deps.dev:0 +github.com/Wawa27/automatic-version-bump, +github.com/Wawa27/github-contributions-calendar-writer, github.com/Wawlik/vue-image-lightbox,num_dependents_deps.dev:0 github.com/Waxo/generator-ramda-chai, github.com/Waxolunist/bittwiddling,num_dependents_deps.dev:0 @@ -195125,6 +199706,7 @@ github.com/Wayley/wing-storage,num_dependents_deps.dev:0 github.com/Wayley/wz-popup, github.com/WaylonWalker/ExcelToCsv, github.com/WaylonWalker/find-kedro, +github.com/WaylonWalker/kedro-action, github.com/WaylonWalker/kedro-diff, github.com/WaylonWalker/kedro-static-viz, github.com/Waymilk/mw-imgUploader,num_dependents_deps.dev:0 @@ -195161,6 +199743,7 @@ github.com/WazzaJB/react-useunmount,num_dependents_deps.dev:0 github.com/WazzaMo/fluid-dom,num_dependents_deps.dev:0 github.com/Wazzaps/fingerpaint, github.com/Wazzaps/jqed, +github.com/WcAServices/markdown-template-action, github.com/Wcado/wcado-design-native,num_dependents_deps.dev:0 github.com/Wchenguang/gglearn, github.com/We-Inspire/WIConnect-node,num_dependents_deps.dev:0 @@ -195274,7 +199857,9 @@ github.com/WeakenedPlayer/screenshot-bot,num_dependents_deps.dev:0 github.com/WeakenedPlayer/watcher,num_dependents_deps.dev:0 github.com/Wealize/alastria-identity-lib-py, github.com/Wealize/apminsight-site24x7-py, +github.com/Wealize/deploy-lambda, github.com/Wealize/react-chat-window, +github.com/Wealize/tnp-frontend-testing-action, github.com/WealthBar/angular-d3,num_dependents_deps.dev:0 github.com/WealthBar/peak-style, github.com/WealthBar/wprun,num_dependents_deps.dev:0 @@ -195453,6 +200038,10 @@ github.com/WebFactoryMk/ng2-opentok,num_dependents_deps.dev:0 github.com/WebFactoryMk/ngx-wf-modal,num_dependents_deps.dev:0 github.com/WebFilings/karma-jspm,num_dependents_deps.dev:0 github.com/WebForLife/wxApiPromise,num_dependents_deps.dev:0 +github.com/WebFreak001/deploy-nightly, +github.com/WebFreak001/dub-upgrade, +github.com/WebFreak001/setup-dmd, +github.com/WebFreak001/upload-asset, github.com/WebGExecutive/app,num_dependents_deps.dev:0 github.com/WebGL-Map/glm-client-base,num_dependents_deps.dev:0 github.com/WebGLSamples/WebGLSamples.github.io,criticality_score:0.304630 @@ -195897,6 +200486,7 @@ github.com/Webura/element,num_dependents_deps.dev:0 github.com/Webura/mongooseadmin,num_dependents_deps.dev:0 github.com/Webura/mongooserest,num_dependents_deps.dev:2 github.com/Webura/webura-template, +github.com/Weburz/pr-lint-action, github.com/WebwareForPython/DBUtils, github.com/WebwareForPython/w4py3, github.com/Webwwl/Utils,num_dependents_deps.dev:0 @@ -195941,6 +200531,7 @@ github.com/Weerapat1993/use-codex,num_dependents_deps.dev:0 github.com/Weetbix/facebot,num_dependents_deps.dev:0 github.com/Weetbix/haikufy,num_dependents_deps.dev:0 github.com/Weetbix/raiku,num_dependents_deps.dev:0 +github.com/WeeverApps/gha-task-list-zero, github.com/Weezlo/pie-meter,num_dependents_deps.dev:0 github.com/Weffe/axios-api-versioning,num_dependents_deps.dev:0 github.com/Weffe/babel-plugin-transform-liquid-in-template-literals,num_dependents_deps.dev:0 @@ -195984,6 +200575,7 @@ github.com/Weibozzz/generate-webpack-cli,num_dependents_deps.dev:0 github.com/Weibozzz/lwb-intercept,num_dependents_deps.dev:0 github.com/Weibozzz/weibozzz,num_dependents_deps.dev:0 github.com/Weibozzz/weibozzz-utils, +github.com/Weibye/action-internal-link-consistency, github.com/WeicMa/nodejs-string-batch-replace-script,num_dependents_deps.dev:0 github.com/WeideMo/gulp-css-spriterm, github.com/WeideMo/gulp-revm,num_dependents_deps.dev:0 @@ -195994,6 +200586,7 @@ github.com/WeihaoLiTW/variousconnector, github.com/WeijieWu/wechat,num_dependents_deps.dev:0 github.com/Weilbyte/PVEDiscordDark,criticality_score:0.335790 github.com/Weilbyte/pfp_lgbt.py, +github.com/Weilbyte/steam-workshop-upload, github.com/Weilence/view-design-extra,num_dependents_deps.dev:0 github.com/Weiming-Hu/PyPIOMAS, github.com/WeiqunPengLab/HiC_Hub, @@ -196162,8 +200755,11 @@ github.com/WesVanVugt/promise-batcher, github.com/WesVleuten/AssetHelper,num_dependents_deps.dev:0 github.com/WesVleuten/cloudframe,num_dependents_deps.dev:0 github.com/WesionaryTEAM/annotorious-openseadragon, +github.com/WesleyBatista/setup-algia, +github.com/WesleyBatista/setup-oura, github.com/WesleyClements/asm-noise,num_dependents_deps.dev:0 github.com/WesleyClements/rollup-plugin-raw-wasm,num_dependents_deps.dev:0 +github.com/WesleyDucharme/action-update-vcpkg-repository, github.com/WesleyFaveri/react-native-modalize,num_dependents_deps.dev:0 github.com/WesleyFaveri/react-native-optimized-flatlist,num_dependents_deps.dev:0 github.com/WesleyFaveri/react-native-wheel-picker,num_dependents_deps.dev:0 @@ -196326,6 +200922,7 @@ github.com/WhileTruu/format-elm-webpack-errors,num_dependents_deps.dev:0 github.com/Whiley/Jasm,num_dependents_deps.dev:0 github.com/Whiley/Whiley2JavaCompiler,num_dependents_deps.dev:0 github.com/Whiley/Whiley2JavaScript,num_dependents_deps.dev:0 +github.com/Whiley/WhileyBuildAction, github.com/Whiley/WhileyCompiler,num_dependents_deps.dev:12 github.com/Whiley/WhileyCompilerCollection,num_dependents_deps.dev:19 github.com/Whimsical-Doodles/baa,num_dependents_deps.dev:0 @@ -196613,6 +201210,8 @@ github.com/WikiDreams/npm-module-example-hello,num_dependents_deps.dev:0 github.com/WikiDreams/wikidreamspip, github.com/WikiEducationFoundation/WikiEduDashboard,criticality_score:0.577520 github.com/WikiTeam/wikiteam,criticality_score:0.406760 +github.com/WikiTeq/compose-deploy-tunnel-action, +github.com/WikiTeq/mediawiki-phpunit-action, github.com/WikiToLearn/texla, github.com/WikiWatershed/gwlf-e, github.com/Wikia/dependency-injection-js,num_dependents_deps.dev:0 @@ -196647,6 +201246,7 @@ github.com/Wikiviews/wikiviews-api-server, github.com/Wikodit/js-data-jsonapi-light,num_dependents_deps.dev:0 github.com/Wikodit/nativescript-appcenter,num_dependents_deps.dev:0 github.com/Wikodit/nativescript-transcoder,num_dependents_deps.dev:0 +github.com/WiktorJ/github-tag-action, github.com/Wikunia/Javis.jl,criticality_score:0.387140 github.com/Wikunia/fracmat, github.com/WilShotton/di-cast,num_dependents_deps.dev:0 @@ -196658,6 +201258,7 @@ github.com/WilcoTerink/GlabTop2-py, github.com/WilcoTerink/Hydrograph-py, github.com/WilcoTerink/SPHY, github.com/WilcoTerink/stream_depletion, +github.com/Wild-Wits/steam-deploy, github.com/WildAndrewLee/Dratini,num_dependents_deps.dev:0 github.com/WildAndrewLee/Munchlax, github.com/WildCodeSchool/toulouse-0918-js-wildhub-backend,num_dependents_deps.dev:0 @@ -196671,6 +201272,7 @@ github.com/WildDogTeam/wilddog-python, github.com/WildDogTeam/wilddog-token-generator-java,num_dependents_deps.dev:0 github.com/WildDogTeam/wilddog-token-generator-node,num_dependents_deps.dev:0 github.com/WildDylan/YarnDemo,num_dependents_deps.dev:0 +github.com/WildEgor/tg-notification-action, github.com/WildGums/Orchestra,criticality_score:0.491500 github.com/WildHorse19/configure,num_dependents_deps.dev:0 github.com/WildMeOrg/wildbook-ia, @@ -196895,6 +201497,9 @@ github.com/Will-wpl/single-spa-login,num_dependents_deps.dev:0 github.com/Will-wpl/single-spa-react, github.com/Will-wpl/single-spa-vue, github.com/Will233/shadow-loader,num_dependents_deps.dev:0 +github.com/WillAbides/benchdiff-action, +github.com/WillAbides/semver-release-action, +github.com/WillAbides/setup-go-faster, github.com/WillAyd/pantab, github.com/WillBarden/import-cat,num_dependents_deps.dev:0 github.com/WillBarden/tributary,num_dependents_deps.dev:0 @@ -196912,6 +201517,7 @@ github.com/WillCMcC/wutangloremupsum,num_dependents_deps.dev:0 github.com/WillCoates/primefactors, github.com/WillCoco/react-native-normalization-text,num_dependents_deps.dev:0 github.com/WillCodeCat/catk,num_dependents_deps.dev:0 +github.com/WillCodeForCats/python-lint-action, github.com/WillDudley/margingame, github.com/WillFour20/i3-status-node,num_dependents_deps.dev:0 github.com/WillFr/rest-helpers, @@ -197161,6 +201767,7 @@ github.com/WindFantasy98/ADVT, github.com/WindMay/angular-tablita,num_dependents_deps.dev:0 github.com/WindProphet/emu8086,num_dependents_deps.dev:0 github.com/WindQAQ/tf-recsys, +github.com/WindSekirun/check-title-wip-actions, github.com/WindSoilder/ajson-rpc2, github.com/WindSoilder/hors,num_dependents_deps.dev:0 github.com/WindSoilder/lsp, @@ -197267,6 +201874,7 @@ github.com/Winseven4lyf/rust-filecrate,num_dependents_deps.dev:0 github.com/Winslett/RubyRanges,num_dependents_deps.dev:0 github.com/WinstonMarvel/js-router,num_dependents_deps.dev:0 github.com/WinstonMarvel/light-js-router, +github.com/Winte256/reviewer-lottery, github.com/Wintech-thekop/wintechschool, github.com/Winter-Yang/npmtest,num_dependents_deps.dev:0 github.com/Winter-Yang/react-native-BGNativeModuleExample,num_dependents_deps.dev:0 @@ -197493,6 +202101,7 @@ github.com/Wixel/Chameleon,num_dependents_deps.dev:0 github.com/Wixel/GUMP,criticality_score:0.501520 github.com/Wixel/Plugg,num_dependents_deps.dev:0 github.com/Wixel/readingbar,num_dependents_deps.dev:0 +github.com/Wixonic/File-Lister, github.com/Wiz-Amit/mundana-frontity-theme, github.com/WizTeam/WizNoteLite,criticality_score:0.342380 github.com/WizTeam/WizQTClient,criticality_score:0.443250 @@ -197504,9 +202113,11 @@ github.com/WizTeam/wiznote-sdk-js,num_dependents_deps.dev:0 github.com/WizTeam/wiznote-sdk-js-share,num_dependents_deps.dev:0 github.com/Wizard67/typing.css,num_dependents_deps.dev:0 github.com/Wizard67/vue-cli-plugin-admin,num_dependents_deps.dev:0 +github.com/WizardComputer/action-erblint, github.com/WizardComputer/wh-dropdown,num_dependents_deps.dev:0 github.com/WizardMac/ReadStat,Google github.com/WizardOfOgz/NoGo,num_dependents_deps.dev:0 +github.com/WizardOhio24/label-pr-size-action, github.com/Wizcorp/AudioManager,num_dependents_deps.dev:0 github.com/Wizcorp/MError,num_dependents_deps.dev:0 github.com/Wizcorp/andever,num_dependents_deps.dev:0 @@ -197584,6 +202195,8 @@ github.com/Wizhi/cmde,num_dependents_deps.dev:0 github.com/Wizhi/cmdp,num_dependents_deps.dev:0 github.com/WiziShop/api-v3-js-sdk,num_dependents_deps.dev:0 github.com/WiziShop/ng-wizi-bulma,num_dependents_deps.dev:0 +github.com/Wizkas0/PR-LabelGenerator, +github.com/Wizkas0/repo-score, github.com/Wizyma/LngLatToLocaleCartesian,num_dependents_deps.dev:0 github.com/Wizyma/monorepo-tooling,num_dependents_deps.dev:0 github.com/Wizyma/object-transformer,num_dependents_deps.dev:0 @@ -197667,6 +202280,7 @@ github.com/Woile/starlette-apispec, github.com/WojciechCendrzak/beprofiler,num_dependents_deps.dev:0 github.com/WojciechCendrzak/i18n-keys,num_dependents_deps.dev:0 github.com/WojciechKrakowiak/letterize,num_dependents_deps.dev:0 +github.com/WojciechMatuszewskiStedi/nx-set-shas, github.com/WojciechMula/canvas2svg, github.com/WojciechMula/locatedb, github.com/WojciechMula/pyDAWG, @@ -197683,21 +202297,25 @@ github.com/Wojteek/diacritics-normalizr,num_dependents_deps.dev:0 github.com/Wojteek/symlinks_generator,num_dependents_deps.dev:0 github.com/Wojtek242/cqc,num_dependents_deps.dev:0 github.com/Wojtek242/rwmstatus,num_dependents_deps.dev:0 +github.com/WojtekObl/file-changes, github.com/Wokay/ThreejsDemo,num_dependents_deps.dev:0 github.com/WokoLiu/sentry-pushbear, github.com/Wol/chartjs-plugin-loadingscreen,num_dependents_deps.dev:0 github.com/Woldstn/PyGL-Astroids, github.com/Woldstn/PyGL-Tetrix, github.com/WoleObayomi/invasion,num_dependents_deps.dev:0 +github.com/Wolemercy/heroku-django-s3-deploy, github.com/Wolf-Rost/prettier-plugin-solidity,num_dependents_deps.dev:0 github.com/Wolf-Team/NodeVK-TypeScript,num_dependents_deps.dev:0 github.com/Wolf480pl/MIaS4J,num_dependents_deps.dev:0 github.com/Wolf480pl/template-maven-plugin,num_dependents_deps.dev:0 +github.com/WolfGear-Tech/Action-ParsePR, github.com/WolfLabs/eslint-config,num_dependents_deps.dev:0 github.com/WolfLabs/grunt-configurator,num_dependents_deps.dev:0 github.com/WolfLabs/grunt-tools,num_dependents_deps.dev:0 github.com/WolfLabs/server,num_dependents_deps.dev:0 github.com/WolfSoftwareDev/wolfbotslistapi,num_dependents_deps.dev:0 +github.com/WolfangAukang/packer-validate-template, github.com/WolfangT/sql_xml_table, github.com/Wolfchamane/am-factory,num_dependents_deps.dev:0 github.com/Wolfchamane/am-vue-tools,num_dependents_deps.dev:0 @@ -197749,6 +202367,10 @@ github.com/WolframHempel/speaking-jpg,num_dependents_deps.dev:0 github.com/WolframResearch/WolframClientForPython, github.com/WolframResearch/WolframLanguageForJupyter,criticality_score:0.304150 github.com/WolframResearch/WolframWebEngineForPython, +github.com/WolframResearch/build-paclet, +github.com/WolframResearch/check-paclet, +github.com/WolframResearch/submit-paclet, +github.com/WolframResearch/test-paclet, github.com/WolframResearch/wolfram-notebook-embedder,num_dependents_deps.dev:0 github.com/Wolframoviy/WOPkg, github.com/Wolframoviy/morerandom-py, @@ -197771,6 +202393,7 @@ github.com/Wolkabout/node-red-contrib-wolkconnect,num_dependents_deps.dev:0 github.com/Wolkabout/wolk-rest,num_dependents_deps.dev:0 github.com/Wolke/botbuilder-linebot-connector,num_dependents_deps.dev:0 github.com/Wolke/botbuilder-storage,num_dependents_deps.dev:0 +github.com/WolleTD/clang-format-checker, github.com/Wolnosciowiec/npm-vue-backend-tools,num_dependents_deps.dev:0 github.com/Wolnosciowiec/ssh-server-audit, github.com/Wolnosciowiec/thin-deployer, @@ -197851,6 +202474,7 @@ github.com/Woniuke/mtgx2nx, github.com/WonkiDonk/homebridge-jlr-incontrol,num_dependents_deps.dev:0 github.com/Woo-Dong93/groupProjectLibrary,num_dependents_deps.dev:0 github.com/WooCommerce/wc-admin,num_dependents_deps.dev:0 +github.com/WooDeNDark/cmake-build-qemu-static, github.com/WooVictory/Ready-For-Tech-Interview,criticality_score:0.313960 github.com/Woobble/easyscroll.js,num_dependents_deps.dev:0 github.com/Wooble/marctools, @@ -197859,13 +202483,16 @@ github.com/WoodNeck/call-timer,num_dependents_deps.dev:0 github.com/WoodNeck/css-camera,num_dependents_deps.dev:0 github.com/WoodNeck/signboard.js,num_dependents_deps.dev:0 github.com/WoodWing/csde-components-validator,num_dependents_deps.dev:0 +github.com/WoodenMaiden/sparql-virtuoso-action, github.com/Woodie-07/earnapp.py, github.com/Woodie-07/honeygain.py, +github.com/Woodpile37/EIP-Bot, github.com/WoodyDark/v-easy-dialog, github.com/WoodyDark/vue-charge,num_dependents_deps.dev:0 github.com/WoodyDark/vuetify-audio-player,num_dependents_deps.dev:0 github.com/WoodyWoodsta/mars-rover,num_dependents_deps.dev:0 github.com/WoodyWoodsta/mars-rover-rce,num_dependents_deps.dev:0 +github.com/Woofenator/action-aws-iam-authenticator, github.com/Woogo-io/admin-ui,num_dependents_deps.dev:0 github.com/Woohaik/bin-tree,num_dependents_deps.dev:0 github.com/Woohaik/react-date-range-divider,num_dependents_deps.dev:0 @@ -197888,6 +202515,7 @@ github.com/WoolenWang/js_helper,num_dependents_deps.dev:0 github.com/Woolha/sse,num_dependents_deps.dev:0 github.com/Woolly-Mammoth/gatsby-plugin-segment-js, github.com/WoolseyWorkshop/WoolseyWorkshop_CircuitPython_74HC165, +github.com/WoonHaKim/actions-limit-rate, github.com/WoonchanCho/dicomedit, github.com/WoonchanCho/jsxnat, github.com/Woonivers/i18n-translate,num_dependents_deps.dev:0 @@ -198027,6 +202655,7 @@ github.com/WorksApplications/textlint-plugin-po,num_dependents_deps.dev:0 github.com/Workshape/icon-font-generator,num_dependents_deps.dev:12 github.com/Workshape/mandi,num_dependents_deps.dev:0 github.com/Workshape/reql-cli,num_dependents_deps.dev:0 +github.com/Workshop64/buildpulse-action, github.com/WorkshopCLI/workshop-advanced-gulp,num_dependents_deps.dev:0 github.com/WorkshopCLI/workshop-basic, github.com/WorkshopCLI/workshop-cli, @@ -198088,6 +202717,8 @@ github.com/Worldpay/worldpay-lib-java,num_dependents_deps.dev:0 github.com/Worlize/WebSocket-Node,num_dependents_deps.dev:16 github.com/WormBase/graphical-curation, github.com/WormBase/wbtools, +github.com/WormJim/dispatch-workflow-action, +github.com/WormJim/version-bump-action, github.com/WormholeStudio/wormhole-stc,num_dependents_deps.dev:0 github.com/WormieCorp/conventional-changelog-wormiecorp,num_dependents_deps.dev:0 github.com/WormieCorp/generator-cake-addin,num_dependents_deps.dev:0 @@ -198324,6 +202955,8 @@ github.com/Wster11/rollup-base-cli,num_dependents_deps.dev:0 github.com/Wstump/lodown,num_dependents_deps.dev:0 github.com/WtecHtec/TemplateVue,num_dependents_deps.dev:0 github.com/WterBerg/mongooseloader,num_dependents_deps.dev:0 +github.com/WtfJoke/setup-groovy, +github.com/WtfJoke/setup-tectonic, github.com/Wtower/covid-tracker.js,num_dependents_deps.dev:0 github.com/Wtower/django-admin-bootstrapped-plus, github.com/Wtower/django-ckeditor-widget, @@ -198359,6 +202992,9 @@ github.com/WuWenhui/gitbook-plugin-mySEO,num_dependents_deps.dev:0 github.com/WuYuMax/TaskSpider, github.com/WuYuntaoTheGreat/jcs-middleware,num_dependents_deps.dev:0 github.com/WuYuntaoTheGreat/timeformatter,num_dependents_deps.dev:0 +github.com/Wuemeli/all-in-one-action, +github.com/Wuemeli/thankyou-action, +github.com/Wuerike/standard-version-release-branch, github.com/WuerthPhoenix/log-generator, github.com/Wufe/React-video-component,num_dependents_deps.dev:0 github.com/Wufe/cc,num_dependents_deps.dev:0 @@ -198479,6 +203115,21 @@ github.com/Wyntau/MVCObject, github.com/Wyntau/unneeded,num_dependents_deps.dev:0 github.com/WyomingSoftware/noditor,num_dependents_deps.dev:0 github.com/WyriHaximus/awesome-phpstorm,criticality_score:0.321250 +github.com/WyriHaximus/github-action-close-milestone, +github.com/WyriHaximus/github-action-composer-php-versions-in-range, +github.com/WyriHaximus/github-action-composer.lock-diff, +github.com/WyriHaximus/github-action-create-milestone, +github.com/WyriHaximus/github-action-delete-package, +github.com/WyriHaximus/github-action-files-in-commit, +github.com/WyriHaximus/github-action-get-previous-tag, +github.com/WyriHaximus/github-action-helm3, +github.com/WyriHaximus/github-action-jwage-changelog-generator, +github.com/WyriHaximus/github-action-next-release-version, +github.com/WyriHaximus/github-action-next-semvers, +github.com/WyriHaximus/github-action-supported-alpine-linux-versions, +github.com/WyriHaximus/github-action-supported-debian-linux-versions, +github.com/WyriHaximus/github-action-supported-php-versions, +github.com/WyriHaximus/github-action-wait-for-status, github.com/Wyss/ssw-py, github.com/WyssCenter/MOTA, github.com/WyssCenter/hoss-client, @@ -198525,6 +203176,7 @@ github.com/X-Profiler/xtransit,num_dependents_deps.dev:0 github.com/X-Streamly/node-profiler,num_dependents_deps.dev:0 github.com/X-Ultraman/ant-design,num_dependents_deps.dev:0 github.com/X-Wei/flutter_catalog,criticality_score:0.300170 +github.com/X-Wei/pelican-gh-actions-xwei, github.com/X-Y/holidays-nordic,num_dependents_deps.dev:0 github.com/X-Yin/fast-cache,num_dependents_deps.dev:0 github.com/X-corpion/aws-simpledb-query-builder, @@ -198553,6 +203205,7 @@ github.com/XAHTEP26/splinter.js,num_dependents_deps.dev:0 github.com/XAHTEP26/vue-vtree,num_dependents_deps.dev:0 github.com/XAITK/xaitk-saliency, github.com/XAMLMarkupExtensions/WPFLocalizationExtension,criticality_score:0.372850 +github.com/XAMPPRocky/deploy-mdbook, github.com/XAMPPRocky/fluent-template-helper,num_dependents_deps.dev:0 github.com/XAMPPRocky/get-github-release,num_dependents_deps.dev:0 github.com/XAMPPRocky/gh-auditor,num_dependents_deps.dev:0 @@ -198587,6 +203240,8 @@ github.com/XDIME/nodejs,num_dependents_deps.dev:0 github.com/XDMYstery/nodebb-plugin-coolq-notification, github.com/XDUSA-Computer-Department/nodebb-plugin-coolq-notification,num_dependents_deps.dev:0 github.com/XDagger/xdag,criticality_score:0.372000 +github.com/XDanielPaul/build-merged-binaries-upload-ci-action, +github.com/XDanielPaul/idf-examples-launchpad-ci-action, github.com/XDean/Annotation-EX,num_dependents_deps.dev:0 github.com/XDean/AnnotationProcessorToolkit,num_dependents_deps.dev:10 github.com/XDean/Deannotation,num_dependents_deps.dev:0 @@ -198689,6 +203344,7 @@ github.com/XLNT/gnarly,num_dependents_deps.dev:0 github.com/XLNT/micro-api-auth, github.com/XLPRUtils/xllabelme, github.com/XLabKC/GomJabbar,num_dependents_deps.dev:0 +github.com/XLipcak/sql-action, github.com/XMEN-Framework/xmen-cli,num_dependents_deps.dev:0 github.com/XMLPro/atam,num_dependents_deps.dev:0 github.com/XMPPwocky/oven,num_dependents_deps.dev:0 @@ -198734,6 +203390,7 @@ github.com/XPBytes/media_types-serialization,num_dependents_deps.dev:0 github.com/XPBytes/media_types-validation,num_dependents_deps.dev:0 github.com/XPBytes/optimistically_stale,num_dependents_deps.dev:0 github.com/XPBytes/resource_allow_header,num_dependents_deps.dev:0 +github.com/XPH0816/webdav-deploy-action, github.com/XPLing/vue-xpl-tree,num_dependents_deps.dev:0 github.com/XPRESSyourself/XPRESSplot, github.com/XPRESSyourself/XPRESStools, @@ -198763,6 +203420,12 @@ github.com/XRPL-Labs/xumm-sdk-py, github.com/XRPL-Labs/xumm-string-decode, github.com/XRPLF/typescript-style,num_dependents_deps.dev:0 github.com/XRPLF/xrpl-py, +github.com/XRTK/activate-unity-license, +github.com/XRTK/unity-action, +github.com/XRTK/unity-build, +github.com/XRTK/unity-setup, +github.com/XRTK/unity-validate, +github.com/XRTK/upm-release, github.com/XRayV5/eslint-config-xlint,num_dependents_deps.dev:0 github.com/XSLTdoc/XSLTdoc,num_dependents_deps.dev:0 github.com/XScripter/geekpack-cli,num_dependents_deps.dev:0 @@ -198777,6 +203440,7 @@ github.com/XTLS/Xray-core,"criticality_score:0.349600,num_dependents_deps.dev:0" github.com/XTStudio/Kimi-Web-SDK,num_dependents_deps.dev:0 github.com/XTStudio/xt,num_dependents_deps.dev:0 github.com/XU-MA/Git-Text,num_dependents_deps.dev:0 +github.com/XUEGAONET/tencent-cos-action, github.com/XUJING-already/Mobile-console,num_dependents_deps.dev:0 github.com/XUMUMI/xumumi-system-security,num_dependents_deps.dev:0 github.com/XUWeijiang/ts-datacontract,num_dependents_deps.dev:0 @@ -198832,6 +203496,14 @@ github.com/Xabadu/create-fastify-app, github.com/Xabadu/react-native-jest-mocks,num_dependents_deps.dev:0 github.com/Xabaril/AspNetCore.Diagnostics.HealthChecks,criticality_score:0.601250 github.com/Xabaril/Esquio,criticality_score:0.481590 +github.com/Xabaril/EsquioRolloffAction, +github.com/Xabaril/EsquioRolloffActionV2, +github.com/Xabaril/EsquioRolloffActionV3, +github.com/Xabaril/EsquioRolloutAction, +github.com/Xabaril/EsquioRolloutActionV2, +github.com/Xabaril/EsquioRolloutActionV3, +github.com/Xabaril/EsquioSetParameterActionV2, +github.com/Xabaril/EsquioSetParameterActionV3, github.com/Xaber20110202/atcon,num_dependents_deps.dev:0 github.com/Xaber20110202/getDomainFromWeb,num_dependents_deps.dev:0 github.com/Xaber20110202/kucoin-node, @@ -198991,6 +203663,7 @@ github.com/Xaqron/kcn,num_dependents_deps.dev:0 github.com/Xaqron/politify,num_dependents_deps.dev:0 github.com/Xaqron/twitter-followers,num_dependents_deps.dev:0 github.com/Xarcrax/download_images, +github.com/Xaroth/action-slack-notification, github.com/Xarrow/simple-pyyuque, github.com/Xarrow/tan, github.com/Xarrow/weibo-scraper, @@ -199127,7 +203800,9 @@ github.com/XeNoNZaa/node-datetime-thai,num_dependents_deps.dev:0 github.com/XeNoNZaa/stork-iden,num_dependents_deps.dev:0 github.com/XeNoNZaa/thailand-flag,num_dependents_deps.dev:0 github.com/XeO3/vuetify-calculator,num_dependents_deps.dev:0 +github.com/XeQtr792/templated-action, github.com/XealRedan/cntk-java-wrapper,num_dependents_deps.dev:0 +github.com/Xealth/cherry-pick-action, github.com/Xearus/beer-cah,num_dependents_deps.dev:0 github.com/XebiaStudio/react-native-activity-recognition,num_dependents_deps.dev:0 github.com/XebiaStudio/react-native-google-vr-panorama,num_dependents_deps.dev:0 @@ -199141,6 +203816,7 @@ github.com/Xeelley/AntMessenger,num_dependents_deps.dev:0 github.com/Xeelley/AntTelegram,num_dependents_deps.dev:0 github.com/Xeelley/AntViber,num_dependents_deps.dev:0 github.com/Xeeshanmalik/deep_ml_esn, +github.com/Xeio/esoui-deploy-action, github.com/Xeiron/ref_thread_local.rs,num_dependents_deps.dev:9 github.com/Xeite/oslo.config.comparator, github.com/XelK/pihole_api, @@ -199200,6 +203876,7 @@ github.com/XenonApp/xenpm,num_dependents_deps.dev:0 github.com/XenonApp/xenpm-utils,num_dependents_deps.dev:0 github.com/XenonLab/xecd-rates-client-node,num_dependents_deps.dev:0 github.com/XenonLab/xecd-rates-client-python, +github.com/XenonMolecule/github-action-push-to-another-repository, github.com/Xenorio/paxbot-node,num_dependents_deps.dev:0 github.com/XenosLu/xenoslib, github.com/XenoverseUp/react-clamped, @@ -199566,6 +204243,7 @@ github.com/Xmader/twitter-video-dl,num_dependents_deps.dev:0 github.com/Xmader/youbbs-backup-helper,num_dependents_deps.dev:0 github.com/XmanLin/node-to-code,num_dependents_deps.dev:0 github.com/XmanLin/xl-cli, +github.com/Xmaxer/setup-android, github.com/XmlAspect/browser-xml,num_dependents_deps.dev:0 github.com/XmlAspect/xml4jquery,num_dependents_deps.dev:0 github.com/XmlmXmlmX/gulp-sendinblue,num_dependents_deps.dev:0 @@ -199609,6 +204287,8 @@ github.com/Xotabu4/http-request-builder,num_dependents_deps.dev:0 github.com/Xotabu4/inbucket-js-client,num_dependents_deps.dev:0 github.com/Xotabu4/jasmine-protractor-matchers,num_dependents_deps.dev:0 github.com/Xotabu4/protractor-element-extend,num_dependents_deps.dev:0 +github.com/Xotabu4/selenoid-github-action, +github.com/Xotabu4/send-to-allure-server-action, github.com/Xotabu4/webdriverio-explicit-waits,num_dependents_deps.dev:0 github.com/Xotic750/array-all-x,num_dependents_deps.dev:60 github.com/Xotic750/array-any-x,num_dependents_deps.dev:68 @@ -199776,6 +204456,7 @@ github.com/Xotic750/util-x,num_dependents_deps.dev:0 github.com/Xotic750/v-click-outside-x,num_dependents_deps.dev:1364 github.com/Xotic750/webpack-global-object-x,num_dependents_deps.dev:0 github.com/Xotic750/white-space-x,num_dependents_deps.dev:1812 +github.com/Xotl/cool-github-releases, github.com/XourseDev/bitcore-lib,num_dependents_deps.dev:0 github.com/XourseDev/speakeasy,num_dependents_deps.dev:0 github.com/Xovee/uestc-course,criticality_score:0.313400 @@ -199800,6 +204481,7 @@ github.com/Xpertsea/sea-configuration,num_dependents_deps.dev:0 github.com/Xpertsea/sea-form,num_dependents_deps.dev:0 github.com/Xpertsea/sea-reset,num_dependents_deps.dev:0 github.com/Xpheriono/pykov, +github.com/XpiritBV/doepicshit, github.com/Xpitfire/lighter, github.com/Xpktro/bndr, github.com/XploitsR/XRDownloader, @@ -199807,6 +204489,7 @@ github.com/XploitsR/XRSmtp, github.com/Xploration-Technologies/touch,num_dependents_deps.dev:0 github.com/XplorationByAdrian/houston,num_dependents_deps.dev:0 github.com/XploreX/node-file-dialog,num_dependents_deps.dev:0 +github.com/Xplouder/setup-kubelogin, github.com/Xpp521/MultiprocessingSpider, github.com/Xpp521/PyHotKey, github.com/XpressAI/xircuits, @@ -199826,6 +204509,7 @@ github.com/Xsmael/SIM800-Interface,num_dependents_deps.dev:0 github.com/Xsmael/bible-parser,num_dependents_deps.dev:0 github.com/Xsmael/node-logger,num_dependents_deps.dev:0 github.com/XsongyangX/musicautobot, +github.com/Xstoudi/gatsby-gh-pages-action, github.com/Xstoudi/map-region-sync,num_dependents_deps.dev:0 github.com/Xstoudi/minimaximator,num_dependents_deps.dev:0 github.com/Xstoudi/pino-pg,num_dependents_deps.dev:0 @@ -199845,6 +204529,7 @@ github.com/Xtralien/pycloi, github.com/XtremeDevX/turbocharge, github.com/Xtremilicious/projectlearn-project-based-learning,criticality_score:0.330420 github.com/Xu-Dong/MODER, +github.com/Xu-Justin/nuctl-deploy-checker-action, github.com/XuFeng-Li/comp-ui-demo,num_dependents_deps.dev:0 github.com/XuFeng-Li/taskbox,num_dependents_deps.dev:0 github.com/XuHanpeace/R-utils,num_dependents_deps.dev:0 @@ -199892,6 +204577,9 @@ github.com/XueMary/kepp-out-polyfill, github.com/XueMary/keyBoard-hook,num_dependents_deps.dev:0 github.com/XueMary/vue-control-load,num_dependents_deps.dev:0 github.com/XueMary/vue-load-scroll, +github.com/XueMoMo/Sync-Fork-action, +github.com/XueMoMo/actions-coudflare-dns, +github.com/XueMoMo/ipfs-upload-action, github.com/XueQinliang/xqlpdemo, github.com/XueRainey/MutilPlatformManage,num_dependents_deps.dev:0 github.com/XueSeason/axer,num_dependents_deps.dev:0 @@ -199937,6 +204625,7 @@ github.com/Xunnamius/typescript-utils, github.com/Xunnamius/webpack-node-module-types,num_dependents_deps.dev:0 github.com/Xuntron/create-seereact,num_dependents_deps.dev:0 github.com/Xuntron/seerat-ui,num_dependents_deps.dev:0 +github.com/Xunzhuo/kube-prow-bot, github.com/XurdeFdez/Kindable,num_dependents_deps.dev:0 github.com/Xusirong/convert-ts-to-graphql,num_dependents_deps.dev:0 github.com/Xustyx/remote-loader,num_dependents_deps.dev:0 @@ -200077,6 +204766,7 @@ github.com/YASIINN/vue-yed-progressbar,num_dependents_deps.dev:0 github.com/YASIINN/yed-tag-input,num_dependents_deps.dev:0 github.com/YASIINN/yed-timer,num_dependents_deps.dev:0 github.com/YASSB-FOSS/yassb,num_dependents_deps.dev:0 +github.com/YAYA-shiori/yaya-CI-check, github.com/YAZART/sw2ngx,num_dependents_deps.dev:0 github.com/YAmikep/django-xmlmapping, github.com/YAtOff/fake_memcached, @@ -200212,6 +204902,7 @@ github.com/YNUWAIWAI/LiCOS-JSON4TypeScript,num_dependents_deps.dev:0 github.com/YNY-Learning/Phoenix-UI-Kit,num_dependents_deps.dev:0 github.com/YNestA/react-y-swiper,num_dependents_deps.dev:0 github.com/YNestA/y-swiper,num_dependents_deps.dev:0 +github.com/YOCKOW/Action-setup-swift, github.com/YOHO-LAB/influxdb-winston,num_dependents_deps.dev:0 github.com/YONDE927/ytrader, github.com/YONG-LIN-LIANG/steven-test-utils,num_dependents_deps.dev:0 @@ -200219,6 +204910,7 @@ github.com/YONGHAPAPA/sample,num_dependents_deps.dev:0 github.com/YOU-i-Labs/appium-youi-driver,num_dependents_deps.dev:0 github.com/YOU-i-Labs/appium-youiengine-driver,num_dependents_deps.dev:84 github.com/YOU54F/cypress-edge, +github.com/YOU54F/grumpygit, github.com/YOU54F/serverless-offline-dynamodb, github.com/YOU54F/serverless-offline-elasticmq, github.com/YOU54F/serverless-offline-pact, @@ -200380,12 +205072,16 @@ github.com/Yaco-Sistemas/peer, github.com/Yaco-Sistemas/pyjslint, github.com/Yacona/yacona,num_dependents_deps.dev:0 github.com/Yacone/ng-ion-range-slider,num_dependents_deps.dev:0 +github.com/YadavGulshan/gist-box, github.com/Yadaxim/markov-chain-generator,num_dependents_deps.dev:0 github.com/Yadaxim/markov-string-generator, github.com/Yadaxim/remaches,num_dependents_deps.dev:0 github.com/Yadaxim/sugarandcream,num_dependents_deps.dev:0 github.com/YadhuEkambaran/react-native-rn-notification, github.com/YadiraFranco/random-messagesyadirafranco28, +github.com/Yadoms/build-yadoms-action, +github.com/Yadoms/build-yadoms-rpiimage-action, +github.com/Yadoms/build-yadoms-windows-action, github.com/YaduS/react-sample-library,num_dependents_deps.dev:0 github.com/YaelAbdissa/Ahun-Date-and-Time-Converter,num_dependents_deps.dev:0 github.com/Yaffle/BigDecimal,num_dependents_deps.dev:0 @@ -200438,6 +205134,7 @@ github.com/YajanaRao/react-native-audio-player,num_dependents_deps.dev:0 github.com/YajanaRao/react-native-get-music-files, github.com/YajanaRao/react-track-player, github.com/Yajie-Zhou/grunt-useref-zyj,num_dependents_deps.dev:0 +github.com/YakDriver/md-check-links, github.com/YakDriver/scratchrelaxtv, github.com/Yakifo/amqtt, github.com/Yakika/func,num_dependents_deps.dev:0 @@ -200495,8 +205192,10 @@ github.com/Yamidev/node-red-contrib-hidtotext,num_dependents_deps.dev:0 github.com/Yamilquery/nativescript-uber,num_dependents_deps.dev:0 github.com/Yamilquery/react-native-timekeeper,num_dependents_deps.dev:0 github.com/YaminaBoghossian/yaminafetch,num_dependents_deps.dev:0 +github.com/Yaminyam/auto-label-in-issue, github.com/Yamsafer/batch_queue,num_dependents_deps.dev:0 github.com/Yamsafer/intersection-observer-react,num_dependents_deps.dev:0 +github.com/Yan-Jobs/action-electron-builder, github.com/Yan-Jobs/git-pkg, github.com/YanAndFish/vue-xripple,num_dependents_deps.dev:0 github.com/YanCastle/castle-audio,num_dependents_deps.dev:0 @@ -200590,6 +205289,7 @@ github.com/YangAndWang/common-utils,num_dependents_deps.dev:0 github.com/YangAndWang/custom-utils,num_dependents_deps.dev:0 github.com/YangFan789/antd-navbutton,num_dependents_deps.dev:0 github.com/YangHanlin/egg-sentry,num_dependents_deps.dev:0 +github.com/YangHanlin/oss-deployment-action, github.com/YangJ0605/ui-wheel,num_dependents_deps.dev:0 github.com/YangJianFei/vue-long-scroll, github.com/YangKeao/Agilulf,num_dependents_deps.dev:2 @@ -200645,6 +205345,8 @@ github.com/YanjiangWu/ssctianchuangTwo,num_dependents_deps.dev:0 github.com/YanjiangWu/sscwebview,num_dependents_deps.dev:0 github.com/Yanjiie/babel-plugin-weexcomponent,num_dependents_deps.dev:0 github.com/Yanjiie/weex-flymeui,num_dependents_deps.dev:0 +github.com/Yanjingzhu/DockerContainer_action, +github.com/Yanjingzhu/FirstJSAction, github.com/YankeeTube/django-graphql-google-accounts, github.com/YankinA/project-lvl1-s224,num_dependents_deps.dev:0 github.com/YankinA/project-lvl2-s233,num_dependents_deps.dev:0 @@ -200680,6 +205382,7 @@ github.com/YannDub/FunParserJS,num_dependents_deps.dev:0 github.com/YannF87/censorify,num_dependents_deps.dev:0 github.com/YannLelong/testForNpm,num_dependents_deps.dev:0 github.com/YannicEl/veifa,num_dependents_deps.dev:0 +github.com/YannickAaron/scw-easy-container-redeploy, github.com/YannickBochatay/JSYG,num_dependents_deps.dev:14 github.com/YannickBochatay/JSYG-strutils,num_dependents_deps.dev:21 github.com/YannickBochatay/JSYG-utils,num_dependents_deps.dev:61 @@ -200747,6 +205450,7 @@ github.com/Yannis4444/Orange-Share, github.com/YannisHofmann/react-native-country-flag,num_dependents_deps.dev:0 github.com/Yanniyiyi/vue-simple-toaster,num_dependents_deps.dev:0 github.com/YanpingDong/IndexProject, +github.com/Yanqiao4396/BranchWrite, github.com/YanshuoH/APM-mouse,num_dependents_deps.dev:0 github.com/YanshuoH/breadcrumb-trail-literally,num_dependents_deps.dev:0 github.com/YanshuoH/combo,num_dependents_deps.dev:0 @@ -200788,6 +205492,8 @@ github.com/Yard1/hpbandster-sklearn, github.com/Yard1/ray-skorch, github.com/Yard1/sourcerandom, github.com/YardWill/rubber,num_dependents_deps.dev:0 +github.com/Yarden-zamir/install-mssql-odbc, +github.com/Yarden-zamir/launch-and-follow-workflow, github.com/YardstickIt/yardstick-nodejs,num_dependents_deps.dev:0 github.com/Yaremi18/geofire-js, github.com/Yarflam/Yengin,num_dependents_deps.dev:0 @@ -200864,6 +205570,7 @@ github.com/Yash-Singh1/jsonlines, github.com/Yash-Singh1/nocodelint,num_dependents_deps.dev:0 github.com/Yash-Singh1/node-dedupredup, github.com/Yash-Singh1/nolint-cli,num_dependents_deps.dev:0 +github.com/Yash-Singh1/pr-labeler-config-validator, github.com/Yash-Singh1/randomgen-parser, github.com/Yash-Singh1/zoom.js, github.com/Yash094/Mongo-Eco,num_dependents_deps.dev:0 @@ -200890,8 +205597,10 @@ github.com/YashTotale/react-hash-scroll,num_dependents_deps.dev:0 github.com/YasharGK/dynamics365-comparison,num_dependents_deps.dev:0 github.com/Yashasvi-Sriram/alieneffects-13r3, github.com/YashchenkoN/java-migration-tool,num_dependents_deps.dev:0 +github.com/YashdalfTheGray/amazon-ecs-run-task, github.com/YashdalfTheGray/cluster-cleanup,num_dependents_deps.dev:0 github.com/YashdalfTheGray/particle-throttled,num_dependents_deps.dev:0 +github.com/Yashdigi/hello-world-javascript-action, github.com/Yasherica0ne/cwp-22-1,num_dependents_deps.dev:0 github.com/Yashin32/broadlinkjs-sm,num_dependents_deps.dev:0 github.com/Yashin32/homebridge-broadlink-platform,num_dependents_deps.dev:0 @@ -200929,6 +205638,7 @@ github.com/YasserMahfoud/linchackathon, github.com/YassienW/kik-node-api,num_dependents_deps.dev:0 github.com/YassienW/paypal-node-api,num_dependents_deps.dev:0 github.com/YassienW/react-bootstrap-editable,num_dependents_deps.dev:0 +github.com/YassinEldeeb/has-changed-path, github.com/YassinEldeeb/start-dev-faster,num_dependents_deps.dev:0 github.com/YassineElbouchaibi/tgam-finance,num_dependents_deps.dev:0 github.com/YassineGherbi/sniffy,num_dependents_deps.dev:0 @@ -201050,6 +205760,8 @@ github.com/Yehuda1977/create-twik,num_dependents_deps.dev:0 github.com/YehudaGold/context-component,num_dependents_deps.dev:0 github.com/YehudaKremer/reactjs-windows,num_dependents_deps.dev:0 github.com/Yehzuna/jquery-schedule,num_dependents_deps.dev:0 +github.com/Yeicor/cadquery-action, +github.com/Yeicor/ocp-action, github.com/Yeine/PageTransitions,num_dependents_deps.dev:0 github.com/YeisonTapia/paginateJson,num_dependents_deps.dev:0 github.com/Yekc/PyHill, @@ -201061,6 +205773,7 @@ github.com/Yello001/react-esquio,num_dependents_deps.dev:0 github.com/Yellorn/get_nested_value_by_path, github.com/Yellorn/get_set_nested_dict, github.com/Yellorn/shorten-func, +github.com/Yellow-Box-Software/terraform-action, github.com/YellowDi/Elenore,num_dependents_deps.dev:0 github.com/YellowFoxH4XOR/connapi, github.com/YellowInnovation/actix-nats,num_dependents_deps.dev:0 @@ -201155,6 +205868,7 @@ github.com/YenePay/yenepay.sdk.nodejs, github.com/Yengas/pipline,num_dependents_deps.dev:0 github.com/Yengas/redux-rxjs-socket.io,num_dependents_deps.dev:0 github.com/Yengas/ruby-factorial-cached,num_dependents_deps.dev:0 +github.com/YenlinChenMoments/cert-2-aws-creds, github.com/Yenole/react-native-easy-loading,num_dependents_deps.dev:0 github.com/Yenole/react-native-jsc,num_dependents_deps.dev:0 github.com/Yenthe666/InstallScript,criticality_score:0.424160 @@ -201314,12 +206028,14 @@ github.com/Yidoon/tree-traversal,num_dependents_deps.dev:0 github.com/YieldNull/Alioss,num_dependents_deps.dev:0 github.com/YieldbirdDev/yieldbird_gpt_components, github.com/YieldifyLabs/snowplow-javascript-tracker, +github.com/YieldingExploiter/License-Action, github.com/YienCheng/vue-cli-plugin-multiple-build,num_dependents_deps.dev:0 github.com/YienCheng/vue-file-select,num_dependents_deps.dev:0 github.com/Yiguan/Cookie2Dict, github.com/YiguoWang/oucoffee, github.com/Yihao-G/mdi-es,num_dependents_deps.dev:0 github.com/YiiGuxing/TranslationPlugin,criticality_score:0.354020 +github.com/YiiGuxing/close-issue, github.com/Yiiiqing/baseform-yiqing,num_dependents_deps.dev:0 github.com/Yiiu/eslint-config-yiiu,num_dependents_deps.dev:0 github.com/Yiiu/hyper-atom-dark-vibrancy,num_dependents_deps.dev:0 @@ -201328,6 +206044,7 @@ github.com/YijunBao/TUnCaT, github.com/YikaJ/react-countdown,num_dependents_deps.dev:0 github.com/Yikun/hexo-generator-douban,num_dependents_deps.dev:0 github.com/Yikun/hexo-migrator-github-issue,num_dependents_deps.dev:0 +github.com/Yikun/hub-mirror-action, github.com/YilianSource/party-js,num_dependents_deps.dev:0 github.com/YilianSource/prsize,num_dependents_deps.dev:0 github.com/Yiling-J/cacheme, @@ -201337,6 +206054,7 @@ github.com/Yill625/oss-src,num_dependents_deps.dev:0 github.com/Yilmaz4/perspective.py, github.com/YilverMolina/scaffoldcsharp,num_dependents_deps.dev:0 github.com/Yimura/Scraper, +github.com/Yimura/gtav-sigscan-action, github.com/Yimura/importDir, github.com/Yin-Jie/quill-image-extend-module,num_dependents_deps.dev:0 github.com/YinAoXiong/blog-statistics-client,num_dependents_deps.dev:0 @@ -201437,6 +206155,7 @@ github.com/YizheZhang-Ervin/EZFintech, github.com/YjjTT/tao-test,num_dependents_deps.dev:0 github.com/Ykpauneu/nekos.py-aiohttp, github.com/Yleisradio/aws-maven,num_dependents_deps.dev:0 +github.com/Yleisradio/github-action-trello-integration, github.com/Yleisradio/yle-aws-role,num_dependents_deps.dev:0 github.com/Yleisradio/yle_tf,num_dependents_deps.dev:0 github.com/Yleisradio/yle_tf-aws_assume_role,num_dependents_deps.dev:0 @@ -201454,6 +206173,7 @@ github.com/Ymple/ymple-commerce,num_dependents_deps.dev:0 github.com/Ymple/ymple-ecommerce,num_dependents_deps.dev:0 github.com/Ynjxsjmh/gitbook-plugin-bottom-navigation,num_dependents_deps.dev:0 github.com/YnkDK/Dawa-Facade, +github.com/Ynniss/golang-security-action, github.com/Ynote/is-plain-number,num_dependents_deps.dev:0 github.com/Ynote/is-string-a-number,num_dependents_deps.dev:0 github.com/YnsOzt/FastTorch, @@ -201567,6 +206287,7 @@ github.com/YogenderPalChandra/pandasSeries2pandasDf, github.com/Yogendra-Telus/custom-multiselect-dropdown,num_dependents_deps.dev:0 github.com/Yogendra0Sharma/hello_npm_package,num_dependents_deps.dev:0 github.com/Yogendra0Sharma/mendix-nodejs-sdk,num_dependents_deps.dev:0 +github.com/Yogendra0Sharma/mendix-widget-release-action, github.com/Yogendra0Sharma/mendixstoriessdk,num_dependents_deps.dev:0 github.com/YogendraShelke/native-cookies,num_dependents_deps.dev:0 github.com/YogendraShelke/native-datetime,num_dependents_deps.dev:0 @@ -201817,6 +206538,7 @@ github.com/YosefYuan/tinypng-webpack-plugin,num_dependents_deps.dev:0 github.com/YosemiteLabs/electron-ipc-webview-stream,num_dependents_deps.dev:0 github.com/YosemiteLabs/yosemite-j,num_dependents_deps.dev:0 github.com/YosephHaryanto/newman-reporter-slack,num_dependents_deps.dev:0 +github.com/YosephKS/moralis-deploy-action, github.com/Yoshi106/matrix-of-ones, github.com/YoshiYo/redux-cancelable-request,num_dependents_deps.dev:0 github.com/Yoshiboi18303/Skypi.js,num_dependents_deps.dev:0 @@ -201867,6 +206589,7 @@ github.com/YosysHQ/apicula, github.com/YosysHQ/icestorm,criticality_score:0.346220 github.com/YosysHQ/nextpnr,criticality_score:0.478980 github.com/YosysHQ/prjtrellis,criticality_score:0.405780 +github.com/YosysHQ/setup-oss-cad-suite, github.com/YosysHQ/yosys,criticality_score:0.610310 github.com/Yot360/mc-server-python, github.com/YotamHassin/config-file-helper,num_dependents_deps.dev:0 @@ -201901,6 +206624,7 @@ github.com/YouHan26/react-native-comps,num_dependents_deps.dev:0 github.com/YouHan26/react-native-mob-sms,num_dependents_deps.dev:0 github.com/YouHan26/utils,num_dependents_deps.dev:0 github.com/YouHan26/wow,num_dependents_deps.dev:0 +github.com/YouHao0809/show-ut-coverage, github.com/YouHaveFailedThisCity/node-red-contrib-rr-full-response,num_dependents_deps.dev:0 github.com/YouLend/yl-third-party-instantsettlement-api-client,num_dependents_deps.dev:0 github.com/YouLend/yl-third-party-loan-api-client,num_dependents_deps.dev:0 @@ -201928,6 +206652,7 @@ github.com/YouTwitFace/telegraf-plugin-tgan,num_dependents_deps.dev:0 github.com/YouTwitFace/tgxtheme-js,num_dependents_deps.dev:0 github.com/YouTwitFaceTG/english-telegram-bot, github.com/YouTwitFaceTG/new-i18n,num_dependents_deps.dev:0 +github.com/YouXam/Notion-GitHub-Sync, github.com/YouXam/mdup,num_dependents_deps.dev:0 github.com/YouXam/vue-jsdiff,num_dependents_deps.dev:0 github.com/YouYII/cordova-plugin-gdt,num_dependents_deps.dev:0 @@ -202154,12 +206879,14 @@ github.com/Yourthy/lotide,num_dependents_deps.dev:0 github.com/Yousef-Hatem/validation-all,num_dependents_deps.dev:0 github.com/YousefED/contentspinner,num_dependents_deps.dev:0 github.com/YousefED/typescript-json-schema,"criticality_score:0.555760,num_dependents_deps.dev:524" +github.com/YousefEZ/auto-pypi, github.com/Yousefjb/react-native-pjsip,num_dependents_deps.dev:0 github.com/YouseiTakei/expy, github.com/Yousif-CS/eventsocketclientjs,num_dependents_deps.dev:0 github.com/YousifHmada/Lego,num_dependents_deps.dev:0 github.com/YousifHmada/legofy,num_dependents_deps.dev:0 github.com/Youssef-ben/js-guid,num_dependents_deps.dev:0 +github.com/Youssef1313/markdown-links-verifier, github.com/Youssef93/fast-clean,num_dependents_deps.dev:0 github.com/Youssef93/sharp-mapper,num_dependents_deps.dev:0 github.com/YoussefElOualid/Ezy-JS,num_dependents_deps.dev:0 @@ -202192,6 +206919,7 @@ github.com/YozhikM/postcss-normalize-casing,num_dependents_deps.dev:0 github.com/YozhikM/stylelint-a11y,"criticality_score:0.313280,num_dependents_deps.dev:54" github.com/YozhikM/tinyUrl-mongoose-express,num_dependents_deps.dev:0 github.com/YpchenLove/vera-cli,num_dependents_deps.dev:0 +github.com/Yproximite/auto-approve-and-merge-dependabot-action, github.com/Yproximite/eslint-config-base,num_dependents_deps.dev:0 github.com/Yproximite/eslint-config-wordpress,num_dependents_deps.dev:0 github.com/Yproximite/eslint-config-yprox,num_dependents_deps.dev:0 @@ -202271,6 +206999,7 @@ github.com/YuJianrong/fast-array-diff,num_dependents_deps.dev:2 github.com/YuJianrong/node-unrar.js,num_dependents_deps.dev:7 github.com/YuJieHou/vue-music-player, github.com/YuJinLei/miniprogram-cache, +github.com/YuKitsune/template-cli, github.com/YuKongEr/yRpc,num_dependents_deps.dev:0 github.com/YuLab-SMU/clusterProfiler,criticality_score:0.400800 github.com/YuLab-SMU/ggtree,criticality_score:0.396120 @@ -202332,6 +207061,7 @@ github.com/Yubico/yubikey-neo-manager, github.com/Yubico/yubikey-personalization,criticality_score:0.417340 github.com/Yubico/yubikey-piv-manager, github.com/Yubico/yubioath-desktop,criticality_score:0.480350 +github.com/YubicoLabs/action-conftest, github.com/YubicoLabs/yubikit-android,num_dependents_deps.dev:0 github.com/Yubin/ember-cli-ss, github.com/Yubisaki/vuepress-plugin-blog,num_dependents_deps.dev:0 @@ -202520,6 +207250,10 @@ github.com/YunYouJun/vuepress-plugin-google-adsense,num_dependents_deps.dev:0 github.com/YunaBraska/AndWaitMatcher,num_dependents_deps.dev:0 github.com/YunaBraska/EmbeddedNatsServer,num_dependents_deps.dev:0 github.com/YunaBraska/command-line-util,num_dependents_deps.dev:6 +github.com/YunaBraska/git-info-action, +github.com/YunaBraska/java-info-action, +github.com/YunaBraska/java-version, +github.com/YunaBraska/maven-license-info-action, github.com/YunaBraska/nats-streaming-server-embedded,num_dependents_deps.dev:0 github.com/YunaBraska/tinkerforge-sensor,num_dependents_deps.dev:0 github.com/YunaBraska/version-endpoint,num_dependents_deps.dev:0 @@ -202580,6 +207314,8 @@ github.com/Yurgeman/vue-c-ui,num_dependents_deps.dev:0 github.com/YurgenUA/gulp-aws-stepfunctions-deploy,num_dependents_deps.dev:0 github.com/YurgenUA/gulp-jasmine-parallel,num_dependents_deps.dev:0 github.com/Yuri-x/pyexcel-yuri, +github.com/Yuri6037/Action-CargoVersionBump, +github.com/Yuri6037/Action-FakeTTY, github.com/YuriAlessandro/pagarme-surfmappers, github.com/YuriBrunetto/4by3, github.com/YuriBrunetto/fahrenelsius,num_dependents_deps.dev:0 @@ -202611,6 +207347,7 @@ github.com/Yurickh/ouxe,num_dependents_deps.dev:0 github.com/Yurickh/yurick, github.com/Yuricoden/simplify-dev,num_dependents_deps.dev:0 github.com/Yuricst/polaris, +github.com/Yurii-Lutsyk/ios-build-action, github.com/YuriiDunaev/vue-firebase-chat,num_dependents_deps.dev:0 github.com/YuriiF/react-blitz, github.com/YuriiKoval/gallifrey-adb-lib,num_dependents_deps.dev:0 @@ -202832,6 +207569,8 @@ github.com/Z-HNAN/batch-perform-promise,num_dependents_deps.dev:0 github.com/Z-HNAN/create-redux-action,num_dependents_deps.dev:0 github.com/Z-HNAN/nppack,num_dependents_deps.dev:0 github.com/Z-HNAN/wxmp-qrcode,num_dependents_deps.dev:0 +github.com/Z-M-Huang/TweetOnAction, +github.com/Z-M-Huang/docker-retag-curl, github.com/Z-Shang/fpy, github.com/Z-Shang/pyttern, github.com/Z-Team-Pro/ZTeam-Chat,num_dependents_deps.dev:0 @@ -202857,6 +207596,7 @@ github.com/Z3TA/DBO,num_dependents_deps.dev:0 github.com/Z3TA/dateLog,num_dependents_deps.dev:0 github.com/Z4Tech/bilibili-embed-convert,num_dependents_deps.dev:0 github.com/Z4Tech/hexo-tag-bilibili,num_dependents_deps.dev:0 +github.com/Z4ck404/jira-add-attachments, github.com/Z8264/dz,num_dependents_deps.dev:0 github.com/Z8264/iconfont-core,num_dependents_deps.dev:0 github.com/Z8264/poker-calculator, @@ -203014,6 +207754,7 @@ github.com/ZMAsd/nodejsLearn,num_dependents_deps.dev:0 github.com/ZNEGGE-SDK/magichome, github.com/ZNN-She/jq-carousel,num_dependents_deps.dev:0 github.com/ZNN-She/maskGuide,num_dependents_deps.dev:0 +github.com/ZNotify/action, github.com/ZOYBAD14xx/emergency-lao-number,num_dependents_deps.dev:0 github.com/ZPAC-UZH/touchstone-language,num_dependents_deps.dev:0 github.com/ZPascal/grafana_api_sdk, @@ -203133,6 +207874,7 @@ github.com/Zabanaa/molly, github.com/Zabanaa/nuddles,num_dependents_deps.dev:0 github.com/Zabanaa/wypy, github.com/Zabandy/homebridge-modbus-custom,num_dependents_deps.dev:0 +github.com/Zabaniya001/SPDependy, github.com/ZabedovskiyA/react-easy-validate,num_dependents_deps.dev:0 github.com/Zac-Garby/argtyper, github.com/Zac-Garby/mex,num_dependents_deps.dev:0 @@ -203148,12 +207890,15 @@ github.com/ZacBytes/Straits-Times-Scraper,num_dependents_deps.dev:0 github.com/ZacBytes/cna-scraper,num_dependents_deps.dev:0 github.com/ZacBytes/sg-haze,num_dependents_deps.dev:0 github.com/ZacHooper/spacePyTraders, +github.com/ZacJW/inline-css-action, +github.com/ZacJW/markdown-html-action, github.com/ZacJW/shell-scripter, github.com/ZacKeskin/PyCausality, github.com/ZacSweers/AutoTransient,"Google,num_dependents_deps.dev:30" github.com/ZacSweers/CatchUp,criticality_score:0.369580 github.com/ZacSweers/configurable-checkreturnvalue,num_dependents_deps.dev:0 github.com/ZacSweers/moshi-sealed,num_dependents_deps.dev:0 +github.com/ZacSweers/rebase, github.com/ZacSweers/redacted-compiler-plugin,num_dependents_deps.dev:0 github.com/Zacaria/node-full-text-search, github.com/Zacaria/node-full-text-search-light,num_dependents_deps.dev:0 @@ -203295,7 +208040,9 @@ github.com/Zaibot/tslint-preset,num_dependents_deps.dev:0 github.com/Zaid-Ajaj/Fable.Remoting,num_dependents_deps.dev:0 github.com/Zaid-Ajaj/Feliz,criticality_score:0.418010 github.com/Zaid-Ajaj/gitbook-enhanced-katex,num_dependents_deps.dev:0 +github.com/Zaid-maker/better-uptime-monitor, github.com/Zaid-maker/discord-jokes, +github.com/Zaid-maker/recent-activity, github.com/ZaidulinKirill/koa-crud-router,num_dependents_deps.dev:0 github.com/ZaidulinKirill/koa-file-uploader-router,num_dependents_deps.dev:0 github.com/ZaidulinKirill/notification-management-system,num_dependents_deps.dev:0 @@ -203306,6 +208053,7 @@ github.com/ZaidulinKirill/vuetify-hasura-table,num_dependents_deps.dev:0 github.com/ZaidulinKirill/vuetify-schema-form,num_dependents_deps.dev:0 github.com/ZaidulinKirill/vuetify-schema-table,num_dependents_deps.dev:0 github.com/ZaikoARG/Craxk, +github.com/ZainAmjad68/test-coverage-annotate, github.com/ZainBW/bwdatausagelib, github.com/ZainMustafaaa/web-nearby-locations, github.com/Zainali5/PyQuickML, @@ -203370,6 +208118,7 @@ github.com/Zanadar/upticker,num_dependents_deps.dev:0 github.com/ZanchiTheo/neumorphism-react, github.com/ZanderBrown/belgium,num_dependents_deps.dev:0 github.com/ZanderZhang/vue-generate-component,num_dependents_deps.dev:0 +github.com/ZanderZhao/gitbook-action, github.com/ZanderZhao/pynlfff, github.com/Zandero/cmd,num_dependents_deps.dev:0 github.com/Zandero/ffpojo,num_dependents_deps.dev:0 @@ -203544,6 +208293,7 @@ github.com/ZealShah96/CodeInjector,num_dependents_deps.dev:0 github.com/Zealandia-Systems/gladius-controller,num_dependents_deps.dev:0 github.com/Zeald/core.zest.api.library,num_dependents_deps.dev:0 github.com/Zealder/zealder-cms,num_dependents_deps.dev:0 +github.com/Zealen-Forks/sam-deploy-action, github.com/Zebfred/DS-OOP-Review, github.com/Zebiano/apinator,num_dependents_deps.dev:0 github.com/ZebinYang/GAMINet, @@ -203570,6 +208320,7 @@ github.com/ZechCodes/gully, github.com/ZechyW/ignis-tm, github.com/ZechyW/material-table-remote-demo,num_dependents_deps.dev:0 github.com/Zed-M/moveslint,num_dependents_deps.dev:0 +github.com/ZedThree/clang-tidy-review, github.com/ZedThree/fort_depend.py, github.com/ZedThree/jupyter-fortran-kernel, github.com/ZedThree/pyxpad, @@ -203640,6 +208391,7 @@ github.com/ZehCnas34/chinchilla, github.com/ZehLuckmann/hbdatacache, github.com/Zehir/eesmart-d2l,num_dependents_deps.dev:0 github.com/Zehir/node-red-contrib-eesmart-d2l, +github.com/Zehir/update-package-node-red-flow-library-action, github.com/Zehua-Chen/latexbuild,num_dependents_deps.dev:0 github.com/Zeikko/jsonresume-theme-modern-extended,num_dependents_deps.dev:0 github.com/Zeikko/z-score, @@ -203651,6 +208403,9 @@ github.com/Zeindelf/vtexify,num_dependents_deps.dev:0 github.com/Zeioth/django-dual-authentication, github.com/Zeipt/update_from_github,num_dependents_deps.dev:0 github.com/ZeitOnline/briefkasten, +github.com/ZeitOnline/gh-action-baseproject, +github.com/ZeitOnline/gh-action-baseproject-sa, +github.com/ZeitOnline/gh-action-gke-deployer, github.com/ZeitOnline/liveblog-amp-theme,num_dependents_deps.dev:0 github.com/ZeitOnline/zeit.shipit, github.com/ZeitounCorp/keepflash_node_api,num_dependents_deps.dev:0 @@ -203659,6 +208414,7 @@ github.com/ZekLouis/react-video-seek-slider,num_dependents_deps.dev:0 github.com/Zekardo/MyProjects, github.com/Zeke2017/tiny,num_dependents_deps.dev:0 github.com/ZekeXu/react-ckeditor-classic,num_dependents_deps.dev:0 +github.com/ZekeriyaAY/workflow-datetime, github.com/Zekfad/BitByte,num_dependents_deps.dev:0 github.com/Zekfad/BitByteArray, github.com/Zekfad/coolstrings,num_dependents_deps.dev:0 @@ -203697,6 +208453,7 @@ github.com/Zemnmez/create-react-app-z, github.com/Zemnmez/do-sync,num_dependents_deps.dev:2 github.com/Zemnmez/mermaid-render,num_dependents_deps.dev:0 github.com/Zemnmez/react-storage-hook, +github.com/Zemotacqy/Appium-js, github.com/Zen-CI/zenci-shell,num_dependents_deps.dev:0 github.com/Zen-Panel/ZenpanelJS,num_dependents_deps.dev:0 github.com/Zen-Reportz/zen_knit, @@ -203794,6 +208551,7 @@ github.com/Zenike/startpack,num_dependents_deps.dev:0 github.com/ZeninZenin/gatsby-dynamical-navigation,num_dependents_deps.dev:0 github.com/Zening-Li/picdetect, github.com/Zening-Li/tiktokimage, +github.com/Zenious/opendaylight-maven-action, github.com/ZenitechSoftware/lambda-node,num_dependents_deps.dev:0 github.com/ZenitechSoftware/visa-js,num_dependents_deps.dev:0 github.com/Zenith00/aur-message, @@ -203801,6 +208559,8 @@ github.com/Zenith00/lux, github.com/ZenithClown/VisualCrossing, github.com/ZenithClown/agine, github.com/ZenithSwap/zenithswap-lib,num_dependents_deps.dev:0 +github.com/ZenithalHourlyRate/nix-shell-action, +github.com/Zenithar/gh-gomod-generate-sbom, github.com/Zenithsiz/mecs,num_dependents_deps.dev:0 github.com/Zenithsiz/string-err,num_dependents_deps.dev:0 github.com/Zenitram-Oriaj/groupwise,num_dependents_deps.dev:0 @@ -203884,6 +208644,7 @@ github.com/Zequez/render-hydratable,num_dependents_deps.dev:0 github.com/Zer0897/lcu_connectorpy, github.com/Zer0897/linux-touchpad, github.com/Zer0Credibility/chronoamperometry, +github.com/Zer0Divis0r/rebuild-cache-sitemap, github.com/ZerBea/hcxdumptool,criticality_score:0.525150 github.com/ZerBea/hcxtools,criticality_score:0.517180 github.com/ZerNico/dywapitchtrack-rust, @@ -204049,6 +208810,7 @@ github.com/ZetaE/rofa,num_dependents_deps.dev:0 github.com/ZetaMap/Ion-numworks, github.com/ZetaMap/Kandinsky-Numworks, github.com/ZetaMap/Python_Upgrade, +github.com/ZetabotCo/github-repository-sync-action, github.com/Zetaphor/webxr-controller-helper,num_dependents_deps.dev:0 github.com/Zetasis/wagtail_restaurant_standart_modules, github.com/Zetatango/petunia,num_dependents_deps.dev:0 @@ -204244,6 +209006,8 @@ github.com/ZhenyuCheng/egg-view-freemarker,num_dependents_deps.dev:0 github.com/ZhenyuCheng/multiCascaderBaseEle,num_dependents_deps.dev:0 github.com/ZhenyuTsai/vue-pdf-up,num_dependents_deps.dev:0 github.com/ZheyangSong/hsl-to-hex,num_dependents_deps.dev:0 +github.com/ZhgChgLi/ZMediumToMarkdown, +github.com/ZhgChgLi/ZReviewTender, github.com/ZhiCYue/lerna-gp,num_dependents_deps.dev:0 github.com/ZhiPengTu/chrome-block-cli, github.com/ZhiPengTu/totals,num_dependents_deps.dev:0 @@ -204263,6 +209027,7 @@ github.com/Zhiketong/zkt-fetch-retry,num_dependents_deps.dev:0 github.com/Zhiketong/zkt-loader,num_dependents_deps.dev:0 github.com/Zhiketong/zkt-updater,num_dependents_deps.dev:0 github.com/ZhiliangLiu/beautiful-console,num_dependents_deps.dev:0 +github.com/ZhilinS/action-maven-cli, github.com/ZhiningLiu1998/imbalanced-ensemble, github.com/ZhiningLiu1998/self-paced-ensemble, github.com/ZhipengZeng/cordova-plugin-ultra-unionpay, @@ -204448,6 +209213,7 @@ github.com/Zidaan-Hayat/owoifyer., github.com/ZidaanHabib/agro_kit, github.com/ZidaanHabib/nextrad-linky-links, github.com/Ziden/SimpleNodeDependencyInjection,num_dependents_deps.dev:0 +github.com/Zidious/update-multiple-deps-action, github.com/Zidium/ApiJava,num_dependents_deps.dev:0 github.com/Zidium/Log4jAdapter,num_dependents_deps.dev:0 github.com/ZieIony/Carbon,num_dependents_deps.dev:0 @@ -204540,6 +209306,7 @@ github.com/ZimpFidelidade/node-magazine-luiza,num_dependents_deps.dev:0 github.com/ZimpFidelidade/node-walmart,num_dependents_deps.dev:0 github.com/ZimpFidelidade/universal-event-tracker,num_dependents_deps.dev:0 github.com/ZimpFidelidade/zimp-eslint,num_dependents_deps.dev:0 +github.com/Zimperium/zScanMarketplace, github.com/Zimtir/NECK-template, github.com/Zimtir/svelte-item-list,num_dependents_deps.dev:0 github.com/ZinLiao/handybox,num_dependents_deps.dev:0 @@ -204651,6 +209418,7 @@ github.com/Zirro/css-object-model,num_dependents_deps.dev:0 github.com/Zirrus/google-cloud-logging-log4j,num_dependents_deps.dev:0 github.com/ZishengLin/TSLibraryNPM,num_dependents_deps.dev:0 github.com/ZitRos/LightPivotTable,num_dependents_deps.dev:0 +github.com/ZitRos/action-sparse-commit, github.com/ZitRos/array-merge-by-key,num_dependents_deps.dev:0 github.com/ZitRos/cocookie,num_dependents_deps.dev:0 github.com/ZitRos/datetime-difference,num_dependents_deps.dev:18 @@ -204693,6 +209461,8 @@ github.com/Zizzamia/generator-ng-flask,num_dependents_deps.dev:0 github.com/Zizzamia/generator-ngtasty,num_dependents_deps.dev:0 github.com/Zizzamia/ng-tasty,num_dependents_deps.dev:0 github.com/Zizzamia/perfume.js,"criticality_score:0.431320,num_dependents_deps.dev:4" +github.com/ZjBlog/create-issue-by-lables, +github.com/ZjBlog/message, github.com/ZjBlog/vuepress-theme-zjblog,num_dependents_deps.dev:0 github.com/ZjBlog/wxapp-api,num_dependents_deps.dev:0 github.com/ZjGaothu/OpenAnnotate, @@ -204722,6 +209492,7 @@ github.com/Zmeu213/Unit-cli,num_dependents_deps.dev:0 github.com/Zmeu213/beanstalk-promises,num_dependents_deps.dev:0 github.com/Zmeu213/telegram-bot-auth,num_dependents_deps.dev:0 github.com/Zmhan-github/fake-phone,num_dependents_deps.dev:0 +github.com/Zmicier14/discord-webhook, github.com/Zmixon/bord,num_dependents_deps.dev:0 github.com/Zmoki/fetch-images,num_dependents_deps.dev:0 github.com/Zmoki/js-module-starter-kit,num_dependents_deps.dev:0 @@ -204736,7 +209507,9 @@ github.com/Znax/python-simple-timer, github.com/Zneider/react-html-comment,num_dependents_deps.dev:0 github.com/Znudzony/quick-ms,num_dependents_deps.dev:0 github.com/Znudzony/viall,num_dependents_deps.dev:4 +github.com/Zo-Bro-23/grs-action, github.com/Zo-Bro-23/zoauth,num_dependents_deps.dev:0 +github.com/ZoMa-Toys/zoma-ssh, github.com/Zoapp/common,num_dependents_deps.dev:0 github.com/Zoapp/core,num_dependents_deps.dev:4 github.com/Zoapp/front,num_dependents_deps.dev:0 @@ -204765,6 +209538,7 @@ github.com/ZoeLeee/anydoor,num_dependents_deps.dev:0 github.com/ZoeLeee/my-cli,num_dependents_deps.dev:0 github.com/ZoetropeImaging/keenmqtt, github.com/ZoeyF75/lotide,num_dependents_deps.dev:0 +github.com/ZoeyVid/tailwindcss-update, github.com/Zohaibshah19/rust_library,num_dependents_deps.dev:0 github.com/ZoheirHADID/EnergySystemModels, github.com/ZoheirHADID/Pypi_publisher, @@ -204829,6 +209603,7 @@ github.com/ZombieHippie/undergen,num_dependents_deps.dev:0 github.com/ZombineDev/resizer,num_dependents_deps.dev:0 github.com/Zombispormedio/i18ner,num_dependents_deps.dev:0 github.com/Zombispormedio/xsedev,num_dependents_deps.dev:0 +github.com/Zomzog/changelog-checker, github.com/Zonarius/create-ts-node-app,num_dependents_deps.dev:0 github.com/Zonarius/deluge-promise, github.com/Zonarius/gourmet-api,num_dependents_deps.dev:0 @@ -204869,6 +209644,7 @@ github.com/Zooz/prometheus-api-metrics,num_dependents_deps.dev:0 github.com/Zooz/requestxn, github.com/Zopitirik/pdfCreator,num_dependents_deps.dev:0 github.com/ZoranPandovski/al-go-rithms,criticality_score:0.537210 +github.com/ZoranPandovski/automl-actions, github.com/ZoranPandovski/design-patterns,criticality_score:0.378720 github.com/ZoranRavic/SvgTextures,num_dependents_deps.dev:0 github.com/ZoranRavic/VElements, @@ -204948,6 +209724,7 @@ github.com/Zsailer/pyasr, github.com/Zsailer/shorten, github.com/Zsailer/sphinx_pydantic, github.com/Zsailer/traitlets_paths, +github.com/ZscalerCWP/Zscaler-IaC-Action, github.com/Zselter07/Utilities, github.com/Zselter07/linechart_animator, github.com/Zselter07/py_amazon_buddy, @@ -204965,6 +209742,7 @@ github.com/ZsoltSafrany/java-apns-gae,num_dependents_deps.dev:0 github.com/ZsoltSafrany/needle,num_dependents_deps.dev:0 github.com/Zspindrift/studyNode,num_dependents_deps.dev:0 github.com/Zt-freak/zootycoon.css,num_dependents_deps.dev:0 +github.com/ZtModArchive/Castor-Build-Action, github.com/Ztachi/vuejs-pagination-simple, github.com/Ztail/ztail-cocos-types,num_dependents_deps.dev:0 github.com/Ztail/ztail-event,num_dependents_deps.dev:0 @@ -205078,6 +209856,7 @@ github.com/ZviBaratz/dicom_parser, github.com/ZviBaratz/django_dicom, github.com/ZviBaratz/flics, github.com/ZviBerger/wobject,num_dependents_deps.dev:0 +github.com/ZvonimirSun/read-package-version-actions, github.com/Zvukamar/react-native-accessibility, github.com/ZwEin27/dig-attribute-name-identification, github.com/ZwEin27/dig-phone-extractor, @@ -205121,6 +209900,7 @@ github.com/ZxBing0066/recodo,num_dependents_deps.dev:0 github.com/ZxBing0066/sync-step-runner,num_dependents_deps.dev:0 github.com/ZxBing0066/z-sandbox,num_dependents_deps.dev:0 github.com/ZxBud/JSON.prune,num_dependents_deps.dev:0 +github.com/Zxilly/animated-timeline, github.com/Zxilly/vue-casbin, github.com/Zxnii/scratch-site-api,num_dependents_deps.dev:0 github.com/Zxr1314/ChineseCalendarYf, @@ -205172,6 +209952,7 @@ github.com/ZzqiZQute/xxdz,num_dependents_deps.dev:0 github.com/ZzxStormrage/vue-3d-card, github.com/ZzxStormrage/vue-mimi-alert,num_dependents_deps.dev:0 github.com/ZzxStormrage/vue-video-cut,num_dependents_deps.dev:0 +github.com/ZzzTechCorp/github-ssh-action, github.com/Zzzen/super-random,num_dependents_deps.dev:0 github.com/Zzzen/with-default-props,num_dependents_deps.dev:8 github.com/Zzznorlax/image-printer, @@ -205216,7 +209997,10 @@ github.com/a-axton/react-router-confirm-navigation,num_dependents_deps.dev:0 github.com/a-axton/rollup-umd,num_dependents_deps.dev:0 github.com/a-axton/sacramento-parking-data,num_dependents_deps.dev:0 github.com/a-axton/sacramento-tree-data,num_dependents_deps.dev:0 +github.com/a-b-r-o-w-n/add-pr-owner-action, +github.com/a-b-r-o-w-n/check-base-branch-action, github.com/a-b-r-o-w-n/esbuild-plugin-globals,num_dependents_deps.dev:0 +github.com/a-b-r-o-w-n/eslint-action, github.com/a-b-r-o-w-n/eslint-formatter-github-actions,num_dependents_deps.dev:0 github.com/a-b-r-o-w-n/peloton-tcx,num_dependents_deps.dev:0 github.com/a-ba/os_socketaddr,num_dependents_deps.dev:1 @@ -205280,6 +210064,7 @@ github.com/a-fuenzalida/validar-rut,num_dependents_deps.dev:0 github.com/a-galal/movocrypt,num_dependents_deps.dev:0 github.com/a-game/schellings-model,num_dependents_deps.dev:0 github.com/a-h/alarm,num_dependents_deps.dev:0 +github.com/a-h/ci-policy-test, github.com/a-h/ddbimport,num_dependents_deps.dev:0 github.com/a-h/gemini,num_dependents_deps.dev:0 github.com/a-h/go-hotwire-todo,num_dependents_deps.dev:0 @@ -205307,6 +210092,7 @@ github.com/a-jie/RxEmitter,num_dependents_deps.dev:0 github.com/a-jie/three.proton,num_dependents_deps.dev:0 github.com/a-johnston/datapype, github.com/a-kalinin/toast-me,num_dependents_deps.dev:0 +github.com/a-kenji/update-rust-toolchain, github.com/a-know/grass-graph,num_dependents_deps.dev:0 github.com/a-kon/jsvat,num_dependents_deps.dev:0 github.com/a-la/alamode,num_dependents_deps.dev:2 @@ -205408,11 +210194,13 @@ github.com/a-mishra/dashboard-panels,num_dependents_deps.dev:0 github.com/a-mitani/welford, github.com/a-miyashita/gulp-custom-filter,num_dependents_deps.dev:0 github.com/a-mma/AquilaDB-Python, +github.com/a-morrison/windows-git-crypt-unlock, github.com/a-musing-moose/bakedbeans, github.com/a-musing-moose/rind, github.com/a-n-d-r-3-w/event,num_dependents_deps.dev:0 github.com/a-n-rose/Python-Sound-Tool, github.com/a-n-u-b-i-s/bigparser,num_dependents_deps.dev:0 +github.com/a-nau/pdf-link-checker, github.com/a-ndrey/tododo,num_dependents_deps.dev:0 github.com/a-nemes/create-react-app,num_dependents_deps.dev:0 github.com/a-nice-username/react-native-telegram-apk-deployer,num_dependents_deps.dev:0 @@ -205507,6 +210295,7 @@ github.com/a-schild/nextcloud-java-api,num_dependents_deps.dev:0 github.com/a-sh3pherd/my-ui-reacts, github.com/a-shabanov/comein-admin-frontend,num_dependents_deps.dev:0 github.com/a-shabanov/rn-animate-selector,num_dependents_deps.dev:0 +github.com/a-shumanski/rabbitmq-with-delayed, github.com/a-sk/connman-dispatcher, github.com/a-sk/dynoclick, github.com/a-sk/node-imapnotify,num_dependents_deps.dev:0 @@ -205536,6 +210325,7 @@ github.com/a-sync/hummus-lambda,num_dependents_deps.dev:0 github.com/a-sync/mediaklikk-downloader,num_dependents_deps.dev:0 github.com/a-sync/nodejs.org,num_dependents_deps.dev:0 github.com/a-sync/rtlmost-downloader,num_dependents_deps.dev:0 +github.com/a-sync/s3-uploader, github.com/a-sync/screen-avg-color,num_dependents_deps.dev:0 github.com/a-synchronous/rubico, github.com/a-t-jam/jame,num_dependents_deps.dev:0 @@ -205571,6 +210361,7 @@ github.com/a-tarasyuk/tag,num_dependents_deps.dev:0 github.com/a-tharva/LaunchEnv, github.com/a-tharva/fort, github.com/a-tharva/type, +github.com/a-thomas-22/helm-push-action, github.com/a-tokyo/apple-signin-auth,num_dependents_deps.dev:0 github.com/a-tokyo/react-apple-signin-auth,num_dependents_deps.dev:0 github.com/a-tokyo/react-native-stripe-checkout-webview,num_dependents_deps.dev:0 @@ -205605,6 +210396,7 @@ github.com/a-vis/regl-splom,num_dependents_deps.dev:0 github.com/a-wakeel/PyDEGIRO, github.com/a-warner/ghost_dog,num_dependents_deps.dev:0 github.com/a-warner/model_transporter,num_dependents_deps.dev:0 +github.com/a-was/scp-files-action, github.com/a-wing/lightcable,num_dependents_deps.dev:0 github.com/a-wozniakowski/scikit-physlearn, github.com/a-ws-m/unlockNN, @@ -205695,10 +210487,12 @@ github.com/a115/python-dating, github.com/a11ce/defKey, github.com/a11might/gee,num_dependents_deps.dev:0 github.com/a11n/RedmineCLI,num_dependents_deps.dev:0 +github.com/a11smiles/GitSync, github.com/a11smiles/gulp-config-transform,num_dependents_deps.dev:0 github.com/a11smiles/karma-html-detailed-reporter,num_dependents_deps.dev:0 github.com/a11y-kit/a11y-kit,num_dependents_deps.dev:0 github.com/a11yproject/a11yproject.com,criticality_score:0.610670 +github.com/a11ywatch/github-actions, github.com/a1245582339/minxing-cli,num_dependents_deps.dev:0 github.com/a1245582339/vue-cli-plugins-px2rem,num_dependents_deps.dev:0 github.com/a1292999652/puffer-ui,num_dependents_deps.dev:0 @@ -205873,6 +210667,7 @@ github.com/a2liro/check-cpf-cnpj,num_dependents_deps.dev:0 github.com/a2liro/l2dev-spinner,num_dependents_deps.dev:0 github.com/a2lix/TranslationFormBundle,criticality_score:0.411430 github.com/a2lix/symfony-collection,num_dependents_deps.dev:0 +github.com/a2m1/slim-ssh-action, github.com/a2mz/microspark,num_dependents_deps.dev:0 github.com/a2not/errorhandle,num_dependents_deps.dev:0 github.com/a2not/gobtree,num_dependents_deps.dev:0 @@ -205964,6 +210759,7 @@ github.com/a5doc/cli,num_dependents_deps.dev:0 github.com/a5hik/angular-multi-select-tree,num_dependents_deps.dev:0 github.com/a5hik/ng-sortable,"criticality_score:0.354680,num_dependents_deps.dev:0" github.com/a5iv7a/utils.phone,num_dependents_deps.dev:0 +github.com/a5k-actions/shellchecker, github.com/a5kin/df3tools, github.com/a5kin/moire, github.com/a5kin/probart, @@ -205992,6 +210788,8 @@ github.com/a624669980/cordova-plugin-videoclips, github.com/a62527776a/tab-scroll,num_dependents_deps.dev:0 github.com/a62527776a/vue-fab,num_dependents_deps.dev:0 github.com/a62527776a/vue-floating-action-button, +github.com/a631807682/issues-translate-chinese-action, +github.com/a631807682/issues-translator, github.com/a631807682/koa-resume-download,num_dependents_deps.dev:0 github.com/a631807682/xlsxp,num_dependents_deps.dev:0 github.com/a632079/nodebb-plugin-pa-core,num_dependents_deps.dev:0 @@ -206046,6 +210844,7 @@ github.com/a7a/criteria2IDBQuery,num_dependents_deps.dev:2 github.com/a7a/imy,num_dependents_deps.dev:0 github.com/a7b0/raml2html-plain-theme,num_dependents_deps.dev:0 github.com/a7b0/ramldoc,num_dependents_deps.dev:0 +github.com/a7d-corp/action-build-aur-package, github.com/a7madnassar/django-database-views, github.com/a7mdzahw/use-get,num_dependents_deps.dev:0 github.com/a7med-mahmoud/react-native-map-input,num_dependents_deps.dev:0 @@ -206054,6 +210853,7 @@ github.com/a7medkamel/tailf.io-cli,num_dependents_deps.dev:0 github.com/a7medkamel/tailf.io-sdk,num_dependents_deps.dev:0 github.com/a7medkamel/tailf.io-sdk-web,num_dependents_deps.dev:0 github.com/a7ul/react-native-exception-handler,criticality_score:0.332970 +github.com/a7ul/tar-action, github.com/a7urag/react-native-onscreen-keyboard,num_dependents_deps.dev:0 github.com/a7urag/timerQueue,num_dependents_deps.dev:0 github.com/a7vicky/go-tour,num_dependents_deps.dev:0 @@ -206199,6 +210999,8 @@ github.com/aLifeLived/react-native-audio-record,num_dependents_deps.dev:0 github.com/aLittleTooQuiet/dice-utils,num_dependents_deps.dev:0 github.com/aLizlab/aliz-config-eslint,num_dependents_deps.dev:0 github.com/aMATTEour/auto-discovery,num_dependents_deps.dev:0 +github.com/aMahanna/clang-format-checker, +github.com/aMahanna/clang-format-fixer, github.com/aMarCruz/addmonths,num_dependents_deps.dev:0 github.com/aMarCruz/bublejs-brunch,num_dependents_deps.dev:0 github.com/aMarCruz/easyrouter,num_dependents_deps.dev:0 @@ -206227,6 +211029,7 @@ github.com/aMarCruz/rollup-plugin-cleanup,num_dependents_deps.dev:560 github.com/aMarCruz/rollup-plugin-jscc,num_dependents_deps.dev:0 github.com/aMarCruz/rollup-plugin-pug,num_dependents_deps.dev:10 github.com/aMarCruz/skip-regex,num_dependents_deps.dev:606 +github.com/aMediocreDad/foundry-db-packer, github.com/aMichaelPoernomo/atl-frontend,num_dependents_deps.dev:0 github.com/aMiing/vue-g6,num_dependents_deps.dev:0 github.com/aMoniker/ripple-command,num_dependents_deps.dev:0 @@ -206238,6 +211041,7 @@ github.com/aNNiMON/Lightweight-Stream-API,"criticality_score:0.397890,num_depend github.com/aNNiMON/PaperStyleWidgets,num_dependents_deps.dev:0 github.com/aNNiMON/tgbots-module,num_dependents_deps.dev:0 github.com/aNerdInTheHand/react-group-table,num_dependents_deps.dev:0 +github.com/aNereds/magento2-coding-standard, github.com/aNinjaMonk/react-native-helpshift,num_dependents_deps.dev:0 github.com/aNinjaMonk/rn-generator,num_dependents_deps.dev:0 github.com/aNulliHate/web-archive-stream,num_dependents_deps.dev:0 @@ -206260,12 +211064,14 @@ github.com/aSosunoff/React-Use-Form,num_dependents_deps.dev:0 github.com/aSosunoff/ts-tools,num_dependents_deps.dev:0 github.com/aTable/automagic-systemjs-client,num_dependents_deps.dev:0 github.com/aTable/automagic-systemjs-server,num_dependents_deps.dev:0 +github.com/aTable/deploy-to-dropbox, github.com/aTanW/django-confenv, github.com/aTechGuide/gatsby-theme-blog-starter, github.com/aTechGuide/gatsby-theme-portfolio-starter,num_dependents_deps.dev:0 github.com/aTewan/lol.ts,num_dependents_deps.dev:0 github.com/aThornes/mongodb-if,num_dependents_deps.dev:0 github.com/aThornes/quickexpress,num_dependents_deps.dev:0 +github.com/aThorp96/sourcehut_issue_mirror, github.com/aTong9/vue-phone-preview,num_dependents_deps.dev:0 github.com/aTool-org/canvas-nest.js,num_dependents_deps.dev:0 github.com/aTuaMaeD4/GeoMatrix,num_dependents_deps.dev:0 @@ -206360,11 +211166,14 @@ github.com/aaaschmitt/huchat-tools,num_dependents_deps.dev:0 github.com/aaashuai/swagger-doc, github.com/aaaustin10/Python-Auto-Mock, github.com/aab009725/golangstl,num_dependents_deps.dev:0 +github.com/aabadie/action-install-python-requirements, +github.com/aabadie/riot-action, github.com/aabadie/riot-generator, github.com/aabbccsmith/SimpleDOM,num_dependents_deps.dev:0 github.com/aabbccsmith/d-flex,num_dependents_deps.dev:0 github.com/aabbfive/PPark, github.com/aabc/ipt-netflow,criticality_score:0.339090 +github.com/aabccd021/direnv-action, github.com/aabccd021/flamestore,num_dependents_deps.dev:0 github.com/aabccd021/kira-client-js,num_dependents_deps.dev:0 github.com/aabccd021/kira-core, @@ -206378,6 +211187,7 @@ github.com/aabdullah-bos/finsym, github.com/aabdullah-bos/py-asl, github.com/aabeben/vini-vidi-vici-go,num_dependents_deps.dev:0 github.com/aabeborn/benn-scripts,num_dependents_deps.dev:0 +github.com/aabed/newrelic-record-deployment, github.com/aabedraba/node-cli,num_dependents_deps.dev:0 github.com/aabenoja/conventional-changelog-eslint-lerna, github.com/aabenoja/flow-bin,num_dependents_deps.dev:0 @@ -206443,6 +211253,7 @@ github.com/aaccurso/phaser-state-transition-plugin,num_dependents_deps.dev:0 github.com/aaccurso/rockyjs,num_dependents_deps.dev:0 github.com/aacebo/equinox-api,num_dependents_deps.dev:0 github.com/aacebo/uniform,num_dependents_deps.dev:0 +github.com/aacecandev/codesec, github.com/aacerox/node-rest-client,num_dependents_deps.dev:462 github.com/aacevedot/gsindex, github.com/aacfactory/configuares,num_dependents_deps.dev:1 @@ -206493,6 +211304,7 @@ github.com/aadilhasan/react-async-popup,num_dependents_deps.dev:0 github.com/aadilhasan/react-ctx-store,num_dependents_deps.dev:0 github.com/aadilhasan/react-range-picker,num_dependents_deps.dev:0 github.com/aadilhasan/react-touch-keyboard,num_dependents_deps.dev:0 +github.com/aadimator/hugo-obsidian, github.com/aadishri17/Topsis-Aadishri-102083030, github.com/aaditep/aadioptimize, github.com/aaditisawesome/hangman, @@ -206511,6 +211323,7 @@ github.com/aaditya/magento-api-rest, github.com/aaditya/magento-api-rest-legacy,num_dependents_deps.dev:0 github.com/aaditya/mal-js,num_dependents_deps.dev:0 github.com/aaditya/myanimelist-api,num_dependents_deps.dev:0 +github.com/aaditya1499/-github-to-codecommit-sync-, github.com/aaditya2200/aws-doc-sdk-examples,num_dependents_deps.dev:0 github.com/aaditya29/golang-materials,num_dependents_deps.dev:0 github.com/aaditya29/golang-projects,num_dependents_deps.dev:0 @@ -206569,6 +211382,7 @@ github.com/aaharu/gifken,num_dependents_deps.dev:0 github.com/aaharu/gulp-yaml-include,num_dependents_deps.dev:0 github.com/aahilashik/zeroBYT, github.com/aahmed-se/pymmh3, +github.com/aahmed-se/setup-maven, github.com/aahnik/ado-py, github.com/aahnik/cbse-xii-cs-proj, github.com/aahnik/dirganize, @@ -206583,8 +211397,13 @@ github.com/aahnik/wappdriver, github.com/aahnik/watermark.py, github.com/aahung/Unshaky,criticality_score:0.404120 github.com/aahvocado/aah-util-css,num_dependents_deps.dev:0 +github.com/aaiezza/create-release, github.com/aailyin/user-notifications,num_dependents_deps.dev:0 github.com/aaimio/cz-conventional-changelog-with-tasks, +github.com/aaimio/deriv-app-id-action, +github.com/aaimio/get-persistent-value, +github.com/aaimio/set-persistent-value, +github.com/aaimio/vercel-preview-url-action, github.com/aaitmouloud/aspectj-maven-plugin,num_dependents_deps.dev:0 github.com/aaitmouloud/springfox-collection-example-plugin,num_dependents_deps.dev:0 github.com/aaitor/truffle-plugin-blockscout-verify,num_dependents_deps.dev:0 @@ -206616,12 +211435,14 @@ github.com/aakashRajur/offload,num_dependents_deps.dev:0 github.com/aakashRajur/react-bottomsup,num_dependents_deps.dev:0 github.com/aakashRajur/react-entangle,num_dependents_deps.dev:0 github.com/aakasharora/console-logger,num_dependents_deps.dev:0 +github.com/aakashbhardwaj619/action-pnp-powershell-deploy, github.com/aakashconky/learning-git,num_dependents_deps.dev:0 github.com/aakashdatanomiqer/datanomiq_alien, github.com/aakashdinkar/codeforces-cli, github.com/aakashkaji/golanag_data_structure,num_dependents_deps.dev:0 github.com/aakashkath/pubsub,num_dependents_deps.dev:0 github.com/aakashkulkarni/aakash-devcamp-js-footer,num_dependents_deps.dev:0 +github.com/aakashlpin/cloudflare-worker-route-update, github.com/aakashns/aws4-react-native,num_dependents_deps.dev:0 github.com/aakashns/chrome-track-activity,num_dependents_deps.dev:0 github.com/aakashns/cloudman, @@ -206793,6 +211614,8 @@ github.com/aamirshah/generator-boom,num_dependents_deps.dev:0 github.com/aamirvohra/angular2-flash-message,num_dependents_deps.dev:0 github.com/aamirvohra/ngx-translate-extract,num_dependents_deps.dev:0 github.com/aamirza/bookworm, +github.com/aammirmirza/Publish2PSGallery, +github.com/aammirmirza/RandomPasswordGenerator, github.com/aamnv/fred-cli, github.com/aamod2017/excelcolumn,num_dependents_deps.dev:0 github.com/aamodtgroup/agtech,num_dependents_deps.dev:0 @@ -206834,6 +211657,7 @@ github.com/aanfuso/spree_delivery_date,num_dependents_deps.dev:0 github.com/aanfuso/spree_delivery_time,num_dependents_deps.dev:0 github.com/aanfuso/spree_delivery_time_range,num_dependents_deps.dev:0 github.com/aangelisc/agnostic-sql-migrator,num_dependents_deps.dev:0 +github.com/aanimesh23/openapi-publish-action, github.com/aanjan123/RNEsewa,num_dependents_deps.dev:0 github.com/aanjan123/react-native-imepay,num_dependents_deps.dev:0 github.com/aankittcoolest/learn-go,num_dependents_deps.dev:0 @@ -206844,6 +211668,7 @@ github.com/aannapureddy/faux_sure, github.com/aanno/pacur,num_dependents_deps.dev:0 github.com/aanogueira/camel-k,num_dependents_deps.dev:0 github.com/aanogueira/k8s-addons,num_dependents_deps.dev:0 +github.com/aanogueira/k8s-kustomize-diff-action, github.com/aanon4/homebridge-fujitsu-smart,num_dependents_deps.dev:0 github.com/aanon4/homebridge-purpleair,num_dependents_deps.dev:0 github.com/aanrii/thermohydrometer-rpi,num_dependents_deps.dev:0 @@ -206929,6 +211754,7 @@ github.com/aar015/rl-2048-player, github.com/aar0nTw/lita-line,num_dependents_deps.dev:0 github.com/aar0ndev/pdfium-sys,num_dependents_deps.dev:0 github.com/aar0njaw/shadowsocks-legendsock,num_dependents_deps.dev:0 +github.com/aar0nsky/discord-webhook-github-action, github.com/aar87/react-date-calendar, github.com/aaranda82/2020-04-17-personal-npm-package,num_dependents_deps.dev:0 github.com/aarande/nexradaws, @@ -206937,6 +211763,7 @@ github.com/aaratn/terraenv, github.com/aarbmx6s/concat-files-cli, github.com/aarbmx6s/express-temp-file,num_dependents_deps.dev:0 github.com/aarbmx6s/stdin-to-files-cli, +github.com/aarcangeli/load-dotenv, github.com/aarcoraci/vue-parallax-view,num_dependents_deps.dev:0 github.com/aarcro/django-field-object-permissions, github.com/aarcro/helga-versionone, @@ -206965,6 +211792,7 @@ github.com/aaren/pandoc-attributes, github.com/aaren/pandoc-reference-filter, github.com/aaren/parallelprogress, github.com/aaren/pharminv, +github.com/aarhusit/deploy, github.com/aarhusstadsarkiv/digiarch, github.com/aariacarterweir/docker-nginx,num_dependents_deps.dev:0 github.com/aariacarterweir/dockerfile-build-tools,num_dependents_deps.dev:0 @@ -206991,6 +211819,7 @@ github.com/aarnaud/ipxeblue,num_dependents_deps.dev:0 github.com/aarnaud/vault-pki-exporter,num_dependents_deps.dev:0 github.com/aarnott/cloudbuild-task,num_dependents_deps.dev:0 github.com/aarnphm/dha-ps,num_dependents_deps.dev:0 +github.com/aarnphm/ec2-github-runner, github.com/aarnt/octopi,criticality_score:0.479360 github.com/aaroca/dson,num_dependents_deps.dev:0 github.com/aarock1234/akinator-api,num_dependents_deps.dev:0 @@ -207057,6 +211886,9 @@ github.com/aaronbai/rediscas,num_dependents_deps.dev:0 github.com/aaronbalthaser/crackerjack-utils,num_dependents_deps.dev:0 github.com/aaronbalthaser/masks,num_dependents_deps.dev:0 github.com/aaronbarnaby/NG-Infrastructure,num_dependents_deps.dev:0 +github.com/aaronbarnaby/create-release-action, +github.com/aaronbarnaby/deploy-to-subrepo, +github.com/aaronbarnaby/get-tag, github.com/aaronbassett/django-cyborg, github.com/aaronbeall/i18n-possessive,num_dependents_deps.dev:0 github.com/aaronbell/vttmisc, @@ -207120,6 +211952,7 @@ github.com/aarondack/checked-in,num_dependents_deps.dev:0 github.com/aarondail/react-zoomable-ui,num_dependents_deps.dev:0 github.com/aarondancer/redux-api-middleware,num_dependents_deps.dev:0 github.com/aarondancer/sails-service-stripe,num_dependents_deps.dev:0 +github.com/aarondarwish/github-autorelease-notes, github.com/aarondcohen/id128,num_dependents_deps.dev:0 github.com/aarondfrancis/vue-model,num_dependents_deps.dev:0 github.com/aarondls/affability, @@ -207222,6 +212055,7 @@ github.com/aaronjonen/fireeyeapi, github.com/aaronjonen/tippingpoint, github.com/aaronjorbin/grunt-patch-wordpress,num_dependents_deps.dev:0 github.com/aaronjorbin/xerography,num_dependents_deps.dev:0 +github.com/aaronjsutton/phoenix-release-action, github.com/aaronjwang/redux-websocket,num_dependents_deps.dev:0 github.com/aaronjy/google-photos-to-flickr,num_dependents_deps.dev:0 github.com/aaronkaka/es6-react-component,num_dependents_deps.dev:0 @@ -207350,6 +212184,7 @@ github.com/aaronp/kafka-reactive,num_dependents_deps.dev:0 github.com/aaronp/kafka4m,num_dependents_deps.dev:0 github.com/aaronp/migration,num_dependents_deps.dev:0 github.com/aaronp/mongo4m,num_dependents_deps.dev:0 +github.com/aaronpanch/action-serverless, github.com/aaronpanch/react-router-query-hooks,num_dependents_deps.dev:0 github.com/aaronpanch/tiffin,num_dependents_deps.dev:0 github.com/aaronpdennis/esri-rest-url,num_dependents_deps.dev:0 @@ -207476,6 +212311,8 @@ github.com/aaronvb/logrequest,num_dependents_deps.dev:0 github.com/aaronvb/react-native-redux-example,num_dependents_deps.dev:0 github.com/aaronvb/request_hole,num_dependents_deps.dev:0 github.com/aaronvb/turbolinks-5-shim,num_dependents_deps.dev:0 +github.com/aaronvg/actions-rust-cross, +github.com/aaronwaggener/add-prs, github.com/aaronwalsman/ltron, github.com/aaronwalsman/splendor-render, github.com/aaronwlee/Mongo-To-GQL,num_dependents_deps.dev:0 @@ -207584,6 +212421,9 @@ github.com/aasifrasul/val-obj,num_dependents_deps.dev:0 github.com/aasimkhan30/ads-kerberos,num_dependents_deps.dev:0 github.com/aasis2520c/notifylinux, github.com/aasm/aasm,"criticality_score:0.554680,num_dependents_deps.dev:118" +github.com/aasmal97/RepoSync, +github.com/aasmal97/create-react-app-env, +github.com/aasmal97/deploy-react-app-to-aws, github.com/aasmpro/django-zero-settings, github.com/aasmpro/djangosmartshare, github.com/aasmpro/simplesm, @@ -207749,6 +212589,7 @@ github.com/ab0ndar/gitversion-gradle-plugin,num_dependents_deps.dev:0 github.com/ab111404212/gi,num_dependents_deps.dev:0 github.com/ab180/grpc-cloudmap-resolver,num_dependents_deps.dev:0 github.com/ab180/lrmr,num_dependents_deps.dev:0 +github.com/ab185508/file-type-finder, github.com/ab185508/weather-discord-bot,num_dependents_deps.dev:0 github.com/ab25db/django-currency-field, github.com/ab5424/agility, @@ -207806,6 +212647,7 @@ github.com/abagames/particle-pattern-emitter,num_dependents_deps.dev:0 github.com/abagames/pixel-art-gen,num_dependents_deps.dev:0 github.com/abagames/pixel-perfect-collider,num_dependents_deps.dev:0 github.com/abagames/sounds-some-sounds,num_dependents_deps.dev:0 +github.com/abagayev/cypress-included-dockerfile-action, github.com/abaghinyan/binper,num_dependents_deps.dev:0 github.com/abaha91/i18n-ru,num_dependents_deps.dev:0 github.com/abahachuk/sche-pdp-lit,num_dependents_deps.dev:0 @@ -207846,8 +212688,10 @@ github.com/abaldeweg/vuepress-theme-cms,num_dependents_deps.dev:0 github.com/abaldwin88/roamer, github.com/abalhier/luxon-jest-matchers,num_dependents_deps.dev:0 github.com/abalint88/simpleflex, +github.com/abalioni/branchlog, github.com/abaliunov-sc/markdown-deserialaser,num_dependents_deps.dev:0 github.com/abalkin/pytest-leaks, +github.com/aballiet/action-sqlfluff, github.com/abalmos/oats-apps,num_dependents_deps.dev:0 github.com/abalmus/aurelia-ace-editor,num_dependents_deps.dev:0 github.com/abalmus/design-tokens-starter,num_dependents_deps.dev:0 @@ -207888,6 +212732,7 @@ github.com/abarcenas29/atomic_classes,num_dependents_deps.dev:0 github.com/abarghoud/ngx-reactive-form-class-validator,num_dependents_deps.dev:0 github.com/abargnesi/ncbi-eutils-xml,num_dependents_deps.dev:0 github.com/abargnesi/rantly,num_dependents_deps.dev:0 +github.com/abarichello/godot-ci, github.com/abarik1981/getmyip, github.com/abarisain/dmix,criticality_score:0.367950 github.com/abarker/camel-snake-pep8, @@ -207922,9 +212767,13 @@ github.com/abates/insteon,num_dependents_deps.dev:0 github.com/abates/mediacleaner,num_dependents_deps.dev:0 github.com/abates/monoprice,num_dependents_deps.dev:0 github.com/abatewongc/generator-x2mod,num_dependents_deps.dev:0 +github.com/abatilo/actions-poetry, +github.com/abatilo/aws-assume-role-action, github.com/abatilo/chat,num_dependents_deps.dev:0 +github.com/abatilo/github-action-locks, github.com/abatilo/go-releaser-testing,num_dependents_deps.dev:0 github.com/abatilo/multiregion-chat-experiment,num_dependents_deps.dev:0 +github.com/abatilo/pulumi-composite-actions, github.com/abatilo/sanic-healthchecks, github.com/abatilo/sanic-swagger, github.com/abatilo/streamlit-preview-environments-demo,num_dependents_deps.dev:0 @@ -207969,6 +212818,7 @@ github.com/abbasymot/convert-txt-to-pdf,num_dependents_deps.dev:0 github.com/abbasymot/hello-world-web-app,num_dependents_deps.dev:0 github.com/abbaye/WpfHexEditorControl,criticality_score:0.477970 github.com/abbbaf/access-modes-js,num_dependents_deps.dev:0 +github.com/abbbi/github-actions-tune, github.com/abbe98/postlog,num_dependents_deps.dev:0 github.com/abberesina/lvlDragDrop,num_dependents_deps.dev:0 github.com/abbey007/delete-redis-key-using-scan,num_dependents_deps.dev:0 @@ -208390,6 +213240,7 @@ github.com/abduhbm/dep-license, github.com/abduhbm/pdsys, github.com/abduhbm/saudiaddress, github.com/abduhbm/zmapio, +github.com/abdul-at/jenkinsjob, github.com/abdul-aziz666/boiler-plate,num_dependents_deps.dev:0 github.com/abdul-elah-js/react-electron-app,num_dependents_deps.dev:0 github.com/abdul-gendy/FPL_wildcard_team_selector, @@ -208410,11 +213261,13 @@ github.com/abdulapopoola/Adehun,num_dependents_deps.dev:0 github.com/abdulapopoola/Stream,num_dependents_deps.dev:0 github.com/abdularis/commonlib,num_dependents_deps.dev:0 github.com/abdularis/go-storage,num_dependents_deps.dev:0 +github.com/abdulawal39/zipped-repo-s3-upload, github.com/abdulazam19/gender_identification,num_dependents_deps.dev:0 github.com/abdulbahajaj/brutus,num_dependents_deps.dev:0 github.com/abdulbiqbal/javascript,num_dependents_deps.dev:0 github.com/abdulgani92/fixer.io,num_dependents_deps.dev:0 github.com/abdulgaphy/r3con1z3r, +github.com/abdulghani/pipelines, github.com/abdulghani/promise-modal,num_dependents_deps.dev:0 github.com/abdulghanitech/react-table-modern,num_dependents_deps.dev:0 github.com/abdulghofurme/go-quiz-game,num_dependents_deps.dev:0 @@ -208615,6 +213468,7 @@ github.com/abedra/chronometrophobia,num_dependents_deps.dev:0 github.com/abedra/orchard,num_dependents_deps.dev:0 github.com/abedra/repsheet_etl,num_dependents_deps.dev:0 github.com/abedra/security_traits,num_dependents_deps.dev:0 +github.com/abeebu/purview-custom-permissions, github.com/abeelen/nikamap, github.com/abeet/babel-plugin-for-zving-project,num_dependents_deps.dev:0 github.com/abeet/eslint-plugin-elrond-childapp-bound,num_dependents_deps.dev:0 @@ -208637,11 +213491,13 @@ github.com/abeiderman/active_record_data_loader,num_dependents_deps.dev:0 github.com/abeisgreat/FiltrES,num_dependents_deps.dev:0 github.com/abeisgreat/Shares.js,num_dependents_deps.dev:0 github.com/abejarano/onix_price_buy, +github.com/abekoh/commit-plantuml-action, github.com/abekoh/minecraft-logs-to-discord,num_dependents_deps.dev:0 github.com/abekoh/minecraft-server,num_dependents_deps.dev:0 github.com/abel-n/ember-argument-decorator, github.com/abel-nieva/alna-jekyll-theme,num_dependents_deps.dev:0 github.com/abel-protocol/node-gpg, +github.com/abel0b/setup-premake, github.com/abel1311/hunts_gambit, github.com/abel30567/bitcore-insight,num_dependents_deps.dev:0 github.com/abel533/Mapper,criticality_score:0.318580 @@ -208678,6 +213534,7 @@ github.com/abeledovictor/react-declarative-animations,num_dependents_deps.dev:0 github.com/abeledovictor/react-google-stories,num_dependents_deps.dev:0 github.com/abeleuta/easyannotation,num_dependents_deps.dev:0 github.com/abelevtsov/XrmSoapSDK,num_dependents_deps.dev:0 +github.com/abelfodil/protoc-action, github.com/abelgoodwin1988/goluca,num_dependents_deps.dev:0 github.com/abelheinsbroek/chartjs-plugin-crosshair,num_dependents_deps.dev:29 github.com/abelheinsbroek/chartjs-plugin-threshold, @@ -208726,6 +213583,7 @@ github.com/abeluzhenko/sco-bot,num_dependents_deps.dev:0 github.com/abelvii/abelRoute,num_dependents_deps.dev:0 github.com/abelwei/abel.special3,num_dependents_deps.dev:0 github.com/abelzeng/zui,num_dependents_deps.dev:0 +github.com/abema/github-actions-merger, github.com/abema/go-mp4,num_dependents_deps.dev:0 github.com/abema/m3u8,num_dependents_deps.dev:0 github.com/abemassry/node-wsend,num_dependents_deps.dev:0 @@ -208742,6 +213600,7 @@ github.com/abenassi/xlseries, github.com/abenbyy/spotify-graphql,num_dependents_deps.dev:0 github.com/abenbyy/spotify-rest,num_dependents_deps.dev:0 github.com/abencz/rosa, +github.com/abendigo/create-deployment, github.com/abendory/probability-game,num_dependents_deps.dev:0 github.com/abenelazar/docker-registry-client,num_dependents_deps.dev:0 github.com/abenezermulatu/lodown,num_dependents_deps.dev:0 @@ -208824,6 +213683,7 @@ github.com/abersheeran/pdm-version, github.com/abersheeran/pep249, github.com/abersheeran/rpc.py, github.com/abersheeran/socks5, +github.com/abersheeran/sync-gitee-mirror, github.com/abersheeran/websocks, github.com/abersnaze/2d-algebra,num_dependents_deps.dev:0 github.com/abersnaze/2d-solver,num_dependents_deps.dev:0 @@ -208874,6 +213734,7 @@ github.com/abey79/vpype,criticality_score:0.299980 github.com/abeyahmad/servicenow-rest,num_dependents_deps.dev:0 github.com/abeychain/abeyj,num_dependents_deps.dev:0 github.com/abeychain/go-abey,num_dependents_deps.dev:0 +github.com/abeyuya/actions-mention-to-slack, github.com/abfeldman/pydepqbf, github.com/abfeldman/pylgl, github.com/abfist/NgxNumbersOnlyDirective, @@ -208881,6 +213742,8 @@ github.com/abfluss/abfluss,num_dependents_deps.dev:0 github.com/abfrad/dwm-angular-google-maps,num_dependents_deps.dev:0 github.com/abfranco/roomz-proto,num_dependents_deps.dev:0 github.com/abgata20000/grunt-allhaml,num_dependents_deps.dev:0 +github.com/abgeo/goclockify, +github.com/abgeo/mailtm, github.com/abgov/nx-tools,num_dependents_deps.dev:0 github.com/abguthrie/go-mod-test,num_dependents_deps.dev:0 github.com/abgv9221/lowdb-recursive,num_dependents_deps.dev:0 @@ -208957,6 +213820,8 @@ github.com/abhi1122/ringcaptcha-nodejs,num_dependents_deps.dev:0 github.com/abhi11verma/my-component,num_dependents_deps.dev:0 github.com/abhi11verma/webp-component,num_dependents_deps.dev:0 github.com/abhi1510abhi/go-workspace,num_dependents_deps.dev:0 +github.com/abhi1693/labels, +github.com/abhi1693/setup-browser, github.com/abhi18av/acm-icpc-problems-aggregator,num_dependents_deps.dev:0 github.com/abhi18av/sabedoria-api,num_dependents_deps.dev:0 github.com/abhi1982j/excel-dead-client,num_dependents_deps.dev:0 @@ -208967,6 +213832,7 @@ github.com/abhi4010/vhive,num_dependents_deps.dev:0 github.com/abhi4ssj/quickNAT_pytorch, github.com/abhi4ssj/relaynet_pytorch, github.com/abhi7585/SortingAlgorithms, +github.com/abhi7765/action, github.com/abhi922/grunt-ts-concat,num_dependents_deps.dev:0 github.com/abhiTamrakar/PessimisticMongo, github.com/abhiTronix/deffcode, @@ -209047,6 +213913,7 @@ github.com/abhijithvijayan/eslint-config-airbnb,num_dependents_deps.dev:0 github.com/abhijithvijayan/eslint-prettier-config,num_dependents_deps.dev:0 github.com/abhijithvijayan/hyper-atlantic-night-owl,num_dependents_deps.dev:0 github.com/abhijithvijayan/import-github-labels-cli,num_dependents_deps.dev:0 +github.com/abhijithvijayan/label-pr-on-merge-bot, github.com/abhijithvijayan/react-initials-avatar,num_dependents_deps.dev:0 github.com/abhijithvijayan/react-minimal-side-navigation,num_dependents_deps.dev:0 github.com/abhijithvijayan/stargazed,num_dependents_deps.dev:0 @@ -209065,8 +213932,10 @@ github.com/abhik-b/frontendmentor,num_dependents_deps.dev:0 github.com/abhik/django-disenchained, github.com/abhikandoi2000/logn,num_dependents_deps.dev:0 github.com/abhikanojia/allow_numeric,num_dependents_deps.dev:0 +github.com/abhikb101/sync-up-to-codecommit-action, github.com/abhikmitra/ng-joyride,num_dependents_deps.dev:0 github.com/abhikulshrestha22/react-bootbox,num_dependents_deps.dev:0 +github.com/abhilash1in/aws-secrets-manager-action, github.com/abhilash1in/paperplane, github.com/abhilash1in/sangria, github.com/abhilash4252/react-easy-widget,num_dependents_deps.dev:0 @@ -209092,9 +213961,11 @@ github.com/abhilashsajeev/loaders-react,num_dependents_deps.dev:0 github.com/abhilashsajeev/uni-carousel-react,num_dependents_deps.dev:0 github.com/abhilive/frame-print,num_dependents_deps.dev:0 github.com/abhiman-alt/amv7, +github.com/abhimanbhau/algolia-jekyll-bootstrap, github.com/abhimanusharma/mern-crud-app, github.com/abhimanyuPathania/lyrico, github.com/abhimanyupandian/hover-color-picker,num_dependents_deps.dev:0 +github.com/abhimarshal1/cloudflare-web3-gateway, github.com/abhimediratta/vue-multiselect-listbox,num_dependents_deps.dev:0 github.com/abhimotu/eks_thru_terraform,num_dependents_deps.dev:0 github.com/abhimuktheeswarar/DryRunKotlinMPP,num_dependents_deps.dev:0 @@ -209125,6 +213996,7 @@ github.com/abhinav-devden/simple-button,num_dependents_deps.dev:0 github.com/abhinav-egov/create-ui-library,num_dependents_deps.dev:0 github.com/abhinav-egov/digit-ui.css,num_dependents_deps.dev:0 github.com/abhinav-kumar-thakur/orchestrator, +github.com/abhinav-singh-vineti/pr-format-rules, github.com/abhinav-sureka/gochannels,num_dependents_deps.dev:0 github.com/abhinav-sureka/todolist,num_dependents_deps.dev:0 github.com/abhinav-upadhyay/lrupy, @@ -209135,6 +214007,7 @@ github.com/abhinav/goldmark-toc,num_dependents_deps.dev:0 github.com/abhinav/goldmark-wikilink,num_dependents_deps.dev:0 github.com/abhinav/restack,num_dependents_deps.dev:0 github.com/abhinav/reversible, +github.com/abhinav/stitchmd-action, github.com/abhinav/tmux-fastcopy,num_dependents_deps.dev:0 github.com/abhinav098/ember-form-validator,num_dependents_deps.dev:0 github.com/abhinav314/distkit, @@ -209155,6 +214028,7 @@ github.com/abhinavk99/livecoin-api,num_dependents_deps.dev:0 github.com/abhinavk99/worldcoinindex-api,num_dependents_deps.dev:0 github.com/abhinavkareer/ng2-filter-bar,num_dependents_deps.dev:0 github.com/abhinavkashyap/sciwing, +github.com/abhinavminhas/replace-tokens, github.com/abhinavmishra14/amazon-aws-s3-utils,num_dependents_deps.dev:0 github.com/abhinavprakash1992/Hotel-Booking-App,num_dependents_deps.dev:0 github.com/abhinavralhan/lintpy, @@ -209169,6 +214043,7 @@ github.com/abhinavsingh/avm,num_dependents_deps.dev:0 github.com/abhinavsingh/django-saml2, github.com/abhinavsingh/proxy.py,criticality_score:0.412620 github.com/abhinavsingh/remotail, +github.com/abhinavsingh/setup-bazel, github.com/abhinavsingh/sshpool, github.com/abhinavsingh/task.py, github.com/abhinavsingh/tord, @@ -209196,6 +214071,7 @@ github.com/abhisajja/nodezilla,num_dependents_deps.dev:0 github.com/abhisek-niyo/mongoose-to-json,num_dependents_deps.dev:0 github.com/abhisek1985/python-arithmatic, github.com/abhisek1985/python-digifinex, +github.com/abhisek91/github-actions-jelastic, github.com/abhisekhaldar/test-package-678,num_dependents_deps.dev:0 github.com/abhisekhaldar/test-package789,num_dependents_deps.dev:0 github.com/abhisekp/Test-NPM-App,num_dependents_deps.dev:0 @@ -209294,14 +214170,17 @@ github.com/abhisheklalnediya/bitly-react,num_dependents_deps.dev:0 github.com/abhishekmishra/picoturtle-nodejs-client,num_dependents_deps.dev:0 github.com/abhishekmishra/picoturtle-web-canvas,num_dependents_deps.dev:0 github.com/abhisheknaiidu/awesome-github-profile-readme,criticality_score:0.457070 +github.com/abhisheknaiidu/todoist-readme, github.com/abhisheknairofficial/react-native-progressbar, github.com/abhisheknairofficial/useMarkDown,num_dependents_deps.dev:0 github.com/abhishekori/react-basic-input, github.com/abhishekori/react-github-profile-showcase,num_dependents_deps.dev:0 github.com/abhishekoza/generator-ratchet, github.com/abhishekoza/standard,num_dependents_deps.dev:0 +github.com/abhishekpaul/actions-set-secret, github.com/abhishekpratapa/ptrading, github.com/abhishekq61/tunnel-client, +github.com/abhishekr700/push-flock-notify, github.com/abhishekraok/GraphMap, github.com/abhishekratnam/say-grpc,num_dependents_deps.dev:0 github.com/abhisheksarewar1911/to-doc-dev,num_dependents_deps.dev:0 @@ -209420,7 +214299,17 @@ github.com/abigailjs/abigail-plugin-watch,num_dependents_deps.dev:0 github.com/abigailmcgovern/paintedlife, github.com/abigailnguyen/go-learning,num_dependents_deps.dev:0 github.com/abigger87/faucet-sdk,num_dependents_deps.dev:0 +github.com/abigger87/huff-tests, github.com/abiglobalhealth/aor-dynamodb-client,num_dependents_deps.dev:0 +github.com/abiglobalhealth/github-action-after-deploy, +github.com/abiglobalhealth/github-action-before-deploy, +github.com/abiglobalhealth/github-action-before-deploy-from-PR, +github.com/abiglobalhealth/github-action-deploy, +github.com/abiglobalhealth/github-action-deploy-any, +github.com/abiglobalhealth/github-action-deploy-from-PR, +github.com/abiglobalhealth/github-action-promote, +github.com/abiglobalhealth/github-action-promote-any, +github.com/abiglobalhealth/github-action-standard-version-release, github.com/abigoroth/malaysia-state-cities,num_dependents_deps.dev:0 github.com/abihf/cached-fetcher,num_dependents_deps.dev:0 github.com/abihf/cacheloader,num_dependents_deps.dev:0 @@ -209477,7 +214366,11 @@ github.com/abinit/abipy, github.com/abinj30/pricefinder-ecommerce,num_dependents_deps.dev:0 github.com/abinj30/tamilrockers-search,num_dependents_deps.dev:0 github.com/abinmahfuth/Picycle, +github.com/abinmn/gcp-storage-bucket-action, github.com/abinnq/sa-sdk-smartprogram,num_dependents_deps.dev:0 +github.com/abinoda/assignee-to-reviewer-action, +github.com/abinoda/label-when-approved-action, +github.com/abinoda/slack-action, github.com/abinpal/glassie,num_dependents_deps.dev:0 github.com/abinpal/lockpc,num_dependents_deps.dev:0 github.com/abinpal/npm-jira,num_dependents_deps.dev:0 @@ -209508,6 +214401,7 @@ github.com/abird/twinject,num_dependents_deps.dev:0 github.com/abirhoss/serverless-event-mocks, github.com/abiriadev/MSG,num_dependents_deps.dev:0 github.com/abiriadev/multi-console,num_dependents_deps.dev:0 +github.com/abirismyname/create-discussion, github.com/abirmingham/gradle-jacoco-plugin,num_dependents_deps.dev:0 github.com/abirmingham/gradle-jasquire-plugin,num_dependents_deps.dev:0 github.com/abirtone/stb, @@ -209528,6 +214422,7 @@ github.com/abitebite/simple-calculator-module,num_dependents_deps.dev:0 github.com/abitfan/shapeshiftio, github.com/abitofdev/ensure-value, github.com/abitofdev/type-protector,num_dependents_deps.dev:0 +github.com/abitofevrything/publish-mason-brick, github.com/abitofhelp/pipeline,num_dependents_deps.dev:0 github.com/abitwise/express-api-test,num_dependents_deps.dev:0 github.com/abiuDoIT/17monip,num_dependents_deps.dev:0 @@ -209619,6 +214514,7 @@ github.com/ably-forks/node-amqp-cli,num_dependents_deps.dev:0 github.com/ably-forks/socketrocket,num_dependents_deps.dev:0 github.com/ably-forks/vcdiff-decoder,num_dependents_deps.dev:0 github.com/ably-forks/xdelta,num_dependents_deps.dev:0 +github.com/ably-labs/ably-control-api-action, github.com/ably-labs/ably-postgres-connector,num_dependents_deps.dev:0 github.com/ably-labs/graphql-ably-pubsub,num_dependents_deps.dev:0 github.com/ably/ably-boomer,num_dependents_deps.dev:0 @@ -209749,8 +214645,10 @@ github.com/abolfazlpanahiazar/playing-cards,num_dependents_deps.dev:0 github.com/abolis-biotechnologies/plate-maker,num_dependents_deps.dev:0 github.com/abolkog/eslint-config-abolkog,num_dependents_deps.dev:0 github.com/abolkog/gulp-minio-s3,num_dependents_deps.dev:0 +github.com/abolkog/jest-pr-code-coverage, github.com/abolkog/theme-kit,num_dependents_deps.dev:0 github.com/abologna-r7/react-native-infobox,num_dependents_deps.dev:0 +github.com/abom/scp-action, github.com/abom/testgridtypes,num_dependents_deps.dev:0 github.com/abom/tm2rmb,num_dependents_deps.dev:0 github.com/abomadev/changedetector,num_dependents_deps.dev:0 @@ -209779,6 +214677,8 @@ github.com/aboodmufti/request_logger,num_dependents_deps.dev:0 github.com/aboood40091/SarcLib, github.com/aboood40091/libyaz0, github.com/aboqasem/prettierrc,num_dependents_deps.dev:0 +github.com/abordage/lighthouse-box, +github.com/abordage/wakatime-box, github.com/abordeau/module-rollup,num_dependents_deps.dev:0 github.com/aborilov/sdk,num_dependents_deps.dev:0 github.com/aboritskiy/grunt-extract-modules,num_dependents_deps.dev:0 @@ -209858,6 +214758,7 @@ github.com/aboutlo/ether-swr,num_dependents_deps.dev:0 github.com/aboutlo/swr-eth,num_dependents_deps.dev:0 github.com/aboutmydreams/pycapt, github.com/aboutqx/script-link-html-webpack-plugin,num_dependents_deps.dev:0 +github.com/aboutte/build-and-tag-action, github.com/aboutyou/serf-plugin-handler, github.com/above5th/sanity-plugin-dashboard-widget-amplify,num_dependents_deps.dev:0 github.com/abovebored/web-es6-templates,num_dependents_deps.dev:0 @@ -209963,6 +214864,7 @@ github.com/abrahamjso/status-exchange-mgo,num_dependents_deps.dev:0 github.com/abrahammurciano/discord-lumberjack, github.com/abrahammurciano/pygraphsearch, github.com/abrahammurciano/typed-data-structures, +github.com/abrahamnm/twitter-header, github.com/abrahamos/he-date,num_dependents_deps.dev:0 github.com/abrahampeh/swagger-express-ts,num_dependents_deps.dev:0 github.com/abrahampreciado/hodor,num_dependents_deps.dev:0 @@ -210207,6 +215109,7 @@ github.com/abrochard/svelte-lazyload,num_dependents_deps.dev:0 github.com/abrolon87/babbel_explorer_cli_gem,num_dependents_deps.dev:0 github.com/abronan/hs100-rust-api,num_dependents_deps.dev:0 github.com/abronan/valkeyrie,num_dependents_deps.dev:167 +github.com/abronin/ecr-retag-action, github.com/abronte/BigQuery,num_dependents_deps.dev:0 github.com/abronte/PysparkRPC, github.com/abrooke/vagrant-openvz,num_dependents_deps.dev:0 @@ -210435,6 +215338,7 @@ github.com/abstractvector/node-dbf,num_dependents_deps.dev:0 github.com/abstractvector/squasher, github.com/abstrakct/sbanken-python, github.com/abstraktor/tokenizes,num_dependents_deps.dev:0 +github.com/abstrctn/lightroom-album-import, github.com/abstrqt/ColabTurtleClass, github.com/absu5530/langidentification, github.com/absunstar/isite,num_dependents_deps.dev:0 @@ -210651,6 +215555,7 @@ github.com/acSpock/duolingo-js, github.com/aca-labs/skype-native,num_dependents_deps.dev:0 github.com/aca/emmet-ls,num_dependents_deps.dev:0 github.com/aca/korean-language-server,num_dependents_deps.dev:0 +github.com/aca/setup-agebox, github.com/aca/tdraw,num_dependents_deps.dev:0 github.com/aca2328/yesserv,num_dependents_deps.dev:0 github.com/acabezar/definitive-image-comparison-slider, @@ -210848,6 +215753,7 @@ github.com/acba/elm, github.com/acbart/waltz, github.com/acbde45/my-project-generator,num_dependents_deps.dev:0 github.com/acbetter/appify,num_dependents_deps.dev:0 +github.com/acblog/wasm-ghpages-generate-action, github.com/acburdine/ember-power-table,num_dependents_deps.dev:0 github.com/acburdine/gh-contrib-list, github.com/acburdine/ghost-cli-pm2,num_dependents_deps.dev:0 @@ -210877,6 +215783,7 @@ github.com/acccco/flex-x,num_dependents_deps.dev:0 github.com/acccco/matrixChange,num_dependents_deps.dev:0 github.com/accchi/GI-project, github.com/accedo-products/groupcache,num_dependents_deps.dev:0 +github.com/accedo-robcc/tizen-build, github.com/accel-brain/accel-brain-code, github.com/accelbread/simple-xml-builder,num_dependents_deps.dev:0 github.com/accelbyte/abgocyclo,num_dependents_deps.dev:0 @@ -210891,6 +215798,7 @@ github.com/accelerate/waxillium,num_dependents_deps.dev:0 github.com/accelery/passport-openid-oauth20, github.com/accelery/unicode-encode,num_dependents_deps.dev:0 github.com/accell/basscss-responsive-border,num_dependents_deps.dev:0 +github.com/accelq/accelq-ci-github-actions, github.com/accent-starlette/starlette-core, github.com/accentdesign/karma-css,num_dependents_deps.dev:0 github.com/accentdesign/mono,num_dependents_deps.dev:0 @@ -211042,6 +215950,8 @@ github.com/accsyn/accsyn-python-api, github.com/accubits/logger,num_dependents_deps.dev:0 github.com/accubits/spinner,num_dependents_deps.dev:0 github.com/accudio/swup-meta-tags-plugin,num_dependents_deps.dev:0 +github.com/accuknox/install-action, +github.com/accuknox/report-action, github.com/accuminium/memora-rs,num_dependents_deps.dev:0 github.com/accumulatenetwork/accumulated,num_dependents_deps.dev:0 github.com/accumulatenetwork/jsonrpc2,num_dependents_deps.dev:0 @@ -211185,6 +216095,7 @@ github.com/ace0/pyrelic, github.com/ace0109/ace-vue-waves,num_dependents_deps.dev:0 github.com/ace13/BitWizard-Ruby,num_dependents_deps.dev:0 github.com/ace1573/gulp-replace,num_dependents_deps.dev:0 +github.com/ace411/bingo-functional, github.com/ace411/bingo-functional-js,num_dependents_deps.dev:0 github.com/ace68723/chanmao-design,num_dependents_deps.dev:0 github.com/aceHubert/material-ui-slider,num_dependents_deps.dev:0 @@ -211424,6 +216335,8 @@ github.com/achenet/timelog,num_dependents_deps.dev:0 github.com/achengscode/slideshow,num_dependents_deps.dev:0 github.com/achenjs/cross-domain,num_dependents_deps.dev:0 github.com/achepukov/react-axios-connect,num_dependents_deps.dev:0 +github.com/acheron-it/demo-adm, +github.com/acheron-it/test-action, github.com/acheronfail/aurrs,num_dependents_deps.dev:0 github.com/acheronfail/easy_collections,num_dependents_deps.dev:0 github.com/acheronfail/ftrace,num_dependents_deps.dev:0 @@ -211451,6 +216364,7 @@ github.com/achicha/chat, github.com/achichenin/gryml, github.com/achicu/babel-plugin-dead-code-elimination,num_dependents_deps.dev:0 github.com/achidlow/pytan, +github.com/achieve-3000/diff-action, github.com/achievehigh/oneNeuron_pypi, github.com/achievek/yk-uidesign,num_dependents_deps.dev:0 github.com/achievement-watcher/celes,num_dependents_deps.dev:0 @@ -211475,6 +216389,7 @@ github.com/achilleasa/charmrepo,num_dependents_deps.dev:0 github.com/achilleasa/go-pathtrace,num_dependents_deps.dev:0 github.com/achilleasa/polaris,num_dependents_deps.dev:0 github.com/achilleasatha/PyQubole, +github.com/achilleslinux/sonarqube-actions, github.com/achillesrasquinha/Minitron.js,num_dependents_deps.dev:0 github.com/achillesrasquinha/SnackJS,num_dependents_deps.dev:0 github.com/achillesrasquinha/bpyutils, @@ -211597,6 +216512,7 @@ github.com/achorein/angular-joystick, github.com/achouaiekh/vuedrops-animate,num_dependents_deps.dev:0 github.com/achouaiekh/vuedrops-carousel,num_dependents_deps.dev:0 github.com/achrafamil/splendor-api,num_dependents_deps.dev:0 +github.com/achrafelkhnissi/1337-norm-checker, github.com/achrinza/node-ipc, github.com/achristens/storybook_component,num_dependents_deps.dev:0 github.com/achristie/npm-test,num_dependents_deps.dev:0 @@ -211629,6 +216545,7 @@ github.com/acibilous/sfcc-catalog-reducer,num_dependents_deps.dev:0 github.com/acicn/deployer2,num_dependents_deps.dev:0 github.com/acicn/library,num_dependents_deps.dev:0 github.com/acicn/minit,num_dependents_deps.dev:0 +github.com/acid-chicken/code-coverage-reporter-action, github.com/acid-state/acid-state,criticality_score:0.330080 github.com/acid1103/lazy-sorted-array,num_dependents_deps.dev:0 github.com/acida/pyima, @@ -211715,6 +216632,7 @@ github.com/acifani/cetriolino,num_dependents_deps.dev:0 github.com/acifani/flask-sqla2api, github.com/acifani/node-prometheus-gc-stats,num_dependents_deps.dev:0 github.com/acifani/pkg-info, +github.com/acifani/setup-tinygo, github.com/acifani/soccer-go,num_dependents_deps.dev:0 github.com/acifani/update-notipy, github.com/acifani/url-polyfill,num_dependents_deps.dev:0 @@ -212017,6 +216935,9 @@ github.com/acorg/py3seq, github.com/acorg/pymds, github.com/acorg/seqgen, github.com/acorg/slurm-pipeline, +github.com/acorn-io/actions-login, +github.com/acorn-io/actions-setup, +github.com/acorn-io/actions-setup-keychain, github.com/acorn421/node-webvtt-youtube,num_dependents_deps.dev:0 github.com/acorn421/react-html5video-subs,num_dependents_deps.dev:0 github.com/acorn421/react-medium-editor-yj,num_dependents_deps.dev:0 @@ -212046,6 +216967,7 @@ github.com/acornpublishing/grpc,num_dependents_deps.dev:0 github.com/acornpublishing/istio-up-and-running,num_dependents_deps.dev:0 github.com/acornpublishing/kubernetes-operators,num_dependents_deps.dev:0 github.com/acornpublishing/mastering-go-2e,num_dependents_deps.dev:0 +github.com/acorretti/review-upon-keywords-action, github.com/acortcab/generator-tsf-test,num_dependents_deps.dev:0 github.com/acory/intervention-pages,num_dependents_deps.dev:0 github.com/acos-server/acos-annotated,num_dependents_deps.dev:0 @@ -212118,8 +217040,10 @@ github.com/acpplife/create-code, github.com/acpreda/sprint10,num_dependents_deps.dev:0 github.com/acpuchades/lestrade, github.com/acpuchades/libtool, +github.com/acq688/Request-Reviewer-For-Team-Action, github.com/acqsk/html-webpack-basepath-plugin,num_dependents_deps.dev:0 github.com/acqsk/random-unique-number,num_dependents_deps.dev:0 +github.com/acquaintable/gem_bench, github.com/acquia/aws-proxy,num_dependents_deps.dev:0 github.com/acquia/blt,criticality_score:0.604530 github.com/acquia/content-hub-node,num_dependents_deps.dev:0 @@ -212195,6 +217119,7 @@ github.com/acrius/wagtail-snippet-image, github.com/acrlakshman/cra-template-ts-pwa,num_dependents_deps.dev:0 github.com/acrmp/foodcritic,num_dependents_deps.dev:8 github.com/acro5piano/ccg,num_dependents_deps.dev:0 +github.com/acro5piano/github-actions-fargatecli, github.com/acro5piano/graphql-fullstack,num_dependents_deps.dev:0 github.com/acro5piano/graphql-pg-listen-subscriptions,num_dependents_deps.dev:0 github.com/acro5piano/graphql-rest-proxy,num_dependents_deps.dev:0 @@ -212215,6 +217140,7 @@ github.com/acro5piano/type-db,num_dependents_deps.dev:0 github.com/acro5piano/typed-graphqlify,"criticality_score:0.450890,num_dependents_deps.dev:2" github.com/acro5piano/typed-i18n,num_dependents_deps.dev:0 github.com/acro5piano/wayremap, +github.com/acrobat/subtree-splitter, github.com/acrochet95/transport-rennes-be,num_dependents_deps.dev:0 github.com/acrodrig/bind,num_dependents_deps.dev:0 github.com/acrodrig/blender,num_dependents_deps.dev:0 @@ -212230,6 +217156,7 @@ github.com/acrolinx/sdk-js,num_dependents_deps.dev:0 github.com/acrolinx/sidebar-interface,num_dependents_deps.dev:2 github.com/acrolinx/sidebar-sdk-java,num_dependents_deps.dev:0 github.com/acrolinx/sidebar-sdk-js,num_dependents_deps.dev:0 +github.com/acrollet/action-phpcs-drupal, github.com/acrome-robotics/python-library, github.com/acromusashi/acromusashi-stream,num_dependents_deps.dev:0 github.com/acromusashi/acromusashi-stream-ml,num_dependents_deps.dev:0 @@ -212250,6 +217177,7 @@ github.com/acrose99/weathercly,num_dependents_deps.dev:0 github.com/acrosman/simple-project-sim,num_dependents_deps.dev:0 github.com/across-the-stars/ngx-pinch-zoom,num_dependents_deps.dev:0 github.com/acrossmountain/ci,num_dependents_deps.dev:0 +github.com/acrossoffwest/deploy-pr-action, github.com/acrossoffwest/multi-file-downloader,num_dependents_deps.dev:0 github.com/acroucher/FRUITPy, github.com/acroucher/layermesh, @@ -212300,6 +217228,7 @@ github.com/acscorrea/golang_tdd,num_dependents_deps.dev:0 github.com/acscript666/power-string-number,num_dependents_deps.dev:0 github.com/acse-2019/irp-acse-nt719, github.com/acsellers/jams,num_dependents_deps.dev:0 +github.com/acsetter/release-harmonizer, github.com/acsg-64/protobuf3_demostration,num_dependents_deps.dev:0 github.com/acsgh/gradle-plugins,num_dependents_deps.dev:0 github.com/acsgh/mad-scala,num_dependents_deps.dev:310 @@ -212342,6 +217271,7 @@ github.com/act-labs/gatsby-plugin-relative,num_dependents_deps.dev:0 github.com/act-labs/video_facenet, github.com/act-org/dls,num_dependents_deps.dev:0 github.com/act-org/eslint-config, +github.com/act10ns/slack, github.com/act1on3/collaborator,num_dependents_deps.dev:0 github.com/act2/i18n-simple,num_dependents_deps.dev:0 github.com/actano/advocate,num_dependents_deps.dev:0 @@ -212393,6 +217323,7 @@ github.com/actbase/react-daum-postcode,num_dependents_deps.dev:0 github.com/actbase/react-kakaosdk,num_dependents_deps.dev:0 github.com/actblue/fullccnum,num_dependents_deps.dev:0 github.com/actboy168/YDWE,criticality_score:0.389750 +github.com/actboy168/setup-luamake, github.com/actck/nodebb-plugin-cdn,num_dependents_deps.dev:0 github.com/actcwlf/panelexpr, github.com/actcwlf/record-kit, @@ -212441,12 +217372,23 @@ github.com/action-badges/core, github.com/action-is-hope/shelley,num_dependents_deps.dev:0 github.com/action-is-hope/shelley-puma,num_dependents_deps.dev:0 github.com/action-land/action-land,num_dependents_deps.dev:0 +github.com/action-pack/bump, +github.com/action-pack/cancel, +github.com/action-pack/set-secret, +github.com/action-pack/tag-exists, +github.com/action-python/pyinstaller-py3.7, +github.com/action-python/pyinstaller-py3.8, +github.com/action-runner/conventional-labeler, +github.com/action-runner/dependencies-outdater, +github.com/action-runner/npm-publish, +github.com/action-runner/release-uploader, github.com/action-streams/core,num_dependents_deps.dev:0 github.com/action-streams/location,num_dependents_deps.dev:0 github.com/action-streams/network,num_dependents_deps.dev:0 github.com/action-streams/state,num_dependents_deps.dev:0 github.com/action-streams/storage,num_dependents_deps.dev:0 github.com/action-streams/vdom,num_dependents_deps.dev:0 +github.com/action-works/cabal-cache-s3, github.com/actionably/assert-object,num_dependents_deps.dev:0 github.com/actionably/dashbot,num_dependents_deps.dev:6 github.com/actionably/dashbot-db-pool,num_dependents_deps.dev:0 @@ -212472,6 +217414,7 @@ github.com/actionhero/browser_fingerprint, github.com/actionhero/docdash-actionhero, github.com/actionhero/docdash-actionhero-theme,num_dependents_deps.dev:0 github.com/actionhero/node-resque,criticality_score:0.526600 +github.com/actionhub/gitee-pages, github.com/actionless/pikaur,criticality_score:0.392240 github.com/actionless/wooper, github.com/actionml/harness-auth-server,num_dependents_deps.dev:0 @@ -212480,11 +217423,79 @@ github.com/actionorg/js-action-base,num_dependents_deps.dev:0 github.com/actionorg/js-action-sdk,num_dependents_deps.dev:0 github.com/actionpackedgeneral/quic-go,num_dependents_deps.dev:0 github.com/actions-automation/githubgql, +github.com/actions-automation/link-your-issues, +github.com/actions-automation/manage-your-labels, +github.com/actions-automation/pull-request-responsibility, +github.com/actions-awesome/pr-helper, +github.com/actions-awesome/tweet-bot, +github.com/actions-bash/composite, +github.com/actions-bash/docker, +github.com/actions-bash/node, +github.com/actions-cool/action-js-template, +github.com/actions-cool/action-ts-template, github.com/actions-cool/actions-util,num_dependents_deps.dev:0 github.com/actions-cool/analyze-action,num_dependents_deps.dev:0 +github.com/actions-cool/check-issue-ref, +github.com/actions-cool/check-pr-ci, +github.com/actions-cool/check-user-permission, +github.com/actions-cool/ci-notice, +github.com/actions-cool/contributor-helper, +github.com/actions-cool/emoji-helper, +github.com/actions-cool/issue-chat, +github.com/actions-cool/issues-helper, +github.com/actions-cool/issues-similarity-analysis, +github.com/actions-cool/keep-semantic, +github.com/actions-cool/maintain-one-comment, +github.com/actions-cool/pr-approve, +github.com/actions-cool/pr-auto-label, +github.com/actions-cool/pr-check-fill, +github.com/actions-cool/pr-extract-issues, +github.com/actions-cool/pr-helper, +github.com/actions-cool/pr-merge, +github.com/actions-cool/pr-review, +github.com/actions-cool/pr-welcome, +github.com/actions-cool/release-helper, +github.com/actions-cool/remind-outdated, +github.com/actions-cool/star-helper, +github.com/actions-cool/test-ci-version, +github.com/actions-cool/translation-helper, +github.com/actions-cool/verify-files-modify, +github.com/actions-cool/verify-package-version, +github.com/actions-ecosystem/action-add-assignees, +github.com/actions-ecosystem/action-add-labels, +github.com/actions-ecosystem/action-create-comment, +github.com/actions-ecosystem/action-create-issue, +github.com/actions-ecosystem/action-get-latest-tag, +github.com/actions-ecosystem/action-get-merged-pull-request, +github.com/actions-ecosystem/action-lint-commits, +github.com/actions-ecosystem/action-push-tag, +github.com/actions-ecosystem/action-regex-match, +github.com/actions-ecosystem/action-release-label, +github.com/actions-ecosystem/action-remove-labels, +github.com/actions-ecosystem/action-size, +github.com/actions-ecosystem/action-slack-notifier, github.com/actions-ecosystem/describe-action,num_dependents_deps.dev:0 +github.com/actions-for-kicad/generate-kicad-files, +github.com/actions-for-kicad/setup-kicad, +github.com/actions-github/create-repository, +github.com/actions-go/build, +github.com/actions-go/push, github.com/actions-go/toolkit,num_dependents_deps.dev:0 +github.com/actions-gw/setup-protoc-to-env, +github.com/actions-hub/docker, +github.com/actions-hub/gcloud, +github.com/actions-hub/kubectl, +github.com/actions-hub/stylelint, +github.com/actions-js/profile-readme, +github.com/actions-js/push, github.com/actions-library/actions,num_dependents_deps.dev:0 +github.com/actions-matrix/release-matrix-action, +github.com/actions-mn/build-and-publish, +github.com/actions-mn/cache, +github.com/actions-mn/compile, +github.com/actions-mn/setup, +github.com/actions-mn/setup-flavors, +github.com/actions-mn/site-gen, github.com/actions-on-google-labs/cookie-detective-game-nodejs,Google github.com/actions-on-google-labs/dialogflow-speech-markdown-plugin-nodejs,Google github.com/actions-on-google-labs/dialogflow-spellcast-nodejs,Google @@ -212579,15 +217590,38 @@ github.com/actions-on-google/smart-home-nodejs,"Google,criticality_score:0.41286 github.com/actions-on-google/smart-home-schema,Google github.com/actions-on-google/user-engagement-codelab-nodejs,Google github.com/actions-poc/sharedlib,num_dependents_deps.dev:0 +github.com/actions-registry/github-repo-sync-upstream, +github.com/actions-rs/audit-check, +github.com/actions-rs/cargo, +github.com/actions-rs/clippy-check, +github.com/actions-rs/grcov, +github.com/actions-rs/install, +github.com/actions-rs/tarpaulin, +github.com/actions-rs/toolchain, github.com/actions-runner-controller/actions-runner-controller,num_dependents_deps.dev:0 +github.com/actions-rust-lang/audit, +github.com/actions-rust-lang/rustfmt, +github.com/actions-rust-lang/setup-rust-toolchain, +github.com/actions-tools/yaml-outputs, +github.com/actions-x/commit, +github.com/actions-x/phpstan, +github.com/actions/add-to-project, github.com/actions/cache,criticality_score:0.595180 github.com/actions/checkout,"criticality_score:0.560690,num_dependents_deps.dev:0" +github.com/actions/configure-pages, +github.com/actions/create-github-app-token, github.com/actions/create-release,"criticality_score:0.431160,num_dependents_deps.dev:0" +github.com/actions/delete-package-versions, +github.com/actions/dependency-review-action, +github.com/actions/deploy-pages, github.com/actions/download-artifact,criticality_score:0.460860 +github.com/actions/first-interaction, github.com/actions/github-script,criticality_score:0.484400 +github.com/actions/go-dependency-submission, github.com/actions/http-client,num_dependents_deps.dev:376 github.com/actions/javascript-action,"criticality_score:0.355310,num_dependents_deps.dev:0" github.com/actions/javascript-template,num_dependents_deps.dev:0 +github.com/actions/jekyll-build-pages, github.com/actions/labeler,criticality_score:0.489610 github.com/actions/runner,criticality_score:0.593840 github.com/actions/setup-dotnet,criticality_score:0.425320 @@ -212600,14 +217634,35 @@ github.com/actions/starter-workflows,criticality_score:0.513260 github.com/actions/toolkit,"criticality_score:0.548460,num_dependents_deps.dev:560" github.com/actions/typescript-action,"criticality_score:0.405020,num_dependents_deps.dev:0" github.com/actions/upload-artifact,criticality_score:0.531070 +github.com/actions/upload-pages-artifact, github.com/actions/upload-release-asset,criticality_score:0.363910 github.com/actions/virtual-environments,criticality_score:0.642510 +github.com/actions4gh/close-pr, +github.com/actions4gh/create-issue-comment, +github.com/actions4gh/setup-gh, +github.com/actions4git/add-commit-push, +github.com/actions4git/mirror, +github.com/actions4git/setup-git, github.com/actionscore/cli,num_dependents_deps.dev:0 github.com/actionsflow/actionsflow,num_dependents_deps.dev:0 github.com/actionsflow/actionsflow-trigger-example,num_dependents_deps.dev:0 github.com/actionsflow/actionsflow-trigger-example_for_js,num_dependents_deps.dev:0 +github.com/actionsflow/axios, +github.com/actionsflow/ifttt-webhook-action, github.com/actionsflow/setup-act, +github.com/actionsflow/setup-act-for-actionsflow, +github.com/actionshub/chef-delivery, +github.com/actionshub/chef-install, +github.com/actionshub/danger-rb, +github.com/actionshub/kitchen-dokken, +github.com/actionshub/markdownlint, +github.com/actionshub/publish-gem-to-github, +github.com/actionshub/publish-gem-to-rubygems, +github.com/actionshub/terraform-lint, +github.com/actionshub/test-kitchen, +github.com/actionshub/yamllint, github.com/actionsquad/hornet,num_dependents_deps.dev:0 +github.com/actionsx/prettier, github.com/actiontech/dble,criticality_score:0.424450 github.com/actiontech/dtle,"criticality_score:0.424520,num_dependents_deps.dev:0" github.com/actiontech/parser,num_dependents_deps.dev:0 @@ -212615,6 +217670,7 @@ github.com/actiontech/txle,num_dependents_deps.dev:128 github.com/actiontestscript/components,num_dependents_deps.dev:0 github.com/actiontwo/node-ftp,num_dependents_deps.dev:0 github.com/actiontwo/swagger-inline-extent,num_dependents_deps.dev:0 +github.com/actionv/python-container-action, github.com/actito/data-model-sdk,num_dependents_deps.dev:0 github.com/activadee/gin-server,num_dependents_deps.dev:0 github.com/activadee/threecommasgoapi,num_dependents_deps.dev:0 @@ -212751,6 +217807,7 @@ github.com/activerecord-hackery/ransack,criticality_score:0.610310 github.com/activereports/ars-client,num_dependents_deps.dev:0 github.com/activescaffold/active_scaffold,criticality_score:0.615870 github.com/activescott/agentmarkdown,num_dependents_deps.dev:0 +github.com/activescott/automate-environment-deployment-approval, github.com/activescott/cookieconsent,num_dependents_deps.dev:0 github.com/activescott/diag-winston,num_dependents_deps.dev:0 github.com/activescott/irritable-iterable,num_dependents_deps.dev:0 @@ -212891,6 +217948,7 @@ github.com/actualchao/chao-cli,num_dependents_deps.dev:0 github.com/actualdankcoder/danksearch-discord, github.com/actualfan/vue-form-generator,num_dependents_deps.dev:0 github.com/actually-colab/editor,num_dependents_deps.dev:0 +github.com/actually-colab/github-action-create-env-file, github.com/actuallyachraf/algebra,num_dependents_deps.dev:0 github.com/actuallyachraf/sketch,num_dependents_deps.dev:0 github.com/actuallyakash/evie-gatsby, @@ -212985,6 +218043,7 @@ github.com/acvetkov/teamcity-client,num_dependents_deps.dev:0 github.com/acvetkov/then-chrome,num_dependents_deps.dev:4 github.com/acvitech/spa4j,num_dependents_deps.dev:0 github.com/acvm007/Easy-Sprite,num_dependents_deps.dev:0 +github.com/acvogel/github-action-sbt, github.com/acvos/function-apply,num_dependents_deps.dev:0 github.com/acvos/function-lift, github.com/acvos/function-memoize, @@ -213046,6 +218105,7 @@ github.com/ad-m/django-atom, github.com/ad-m/django-teryt-tree, github.com/ad-m/github-push-action,criticality_score:0.432120 github.com/ad-m/python-anticaptcha, +github.com/ad-m/report-link-action, github.com/ad-m/trello-csv-schedule, github.com/ad-sho-loko/wareki,num_dependents_deps.dev:0 github.com/ad-si/awesome-music-production,criticality_score:0.313940 @@ -213067,6 +218127,7 @@ github.com/ad12/meddlr, github.com/ad12/msk_seg_util, github.com/ad12/pyvisstats, github.com/ad1217/python-SCOM7330, +github.com/ad1992/clean-commit-action, github.com/ad1tyara0/react-scroll-progress-bar,num_dependents_deps.dev:0 github.com/ad1v7/ternpy, github.com/ad22/fastarchive,num_dependents_deps.dev:0 @@ -213083,8 +218144,11 @@ github.com/adHawk/adhawk.js,num_dependents_deps.dev:0 github.com/adHawk/airtable-java,num_dependents_deps.dev:0 github.com/adMooH/admooh-app,num_dependents_deps.dev:0 github.com/adMooH/admooh-cli,num_dependents_deps.dev:0 +github.com/adRise/jest-cov-reporter, github.com/adRise/node-connect-datadog,num_dependents_deps.dev:0 github.com/adRise/rule-parser,num_dependents_deps.dev:0 +github.com/adRise/update-pr-branch, +github.com/ada-actions/toolchain, github.com/ada-cloud/boot,num_dependents_deps.dev:0 github.com/ada-cloud/hub,num_dependents_deps.dev:2 github.com/ada-cloud/util,num_dependents_deps.dev:6 @@ -213664,6 +218728,7 @@ github.com/adam-p/markdown-it-smartarrows,num_dependents_deps.dev:10 github.com/adam-p/text-file-follower,num_dependents_deps.dev:0 github.com/adam-phillipps/recon, github.com/adam-powers/pigunit,num_dependents_deps.dev:0 +github.com/adam-putland/divido-testing-deploy, github.com/adam-rao/gophercises-exercises,num_dependents_deps.dev:0 github.com/adam-rumpf/angle-headings, github.com/adam-rumpf/pynetgen, @@ -213708,6 +218773,7 @@ github.com/adam2392/eegio, github.com/adam2661/gulp-local-screenshots-for-windows,num_dependents_deps.dev:0 github.com/adam6313/gen-locales-webpack-plugin,num_dependents_deps.dev:0 github.com/adam6313/webpack-auto-inject-version-plugin,num_dependents_deps.dev:0 +github.com/adam7/platformsh-cli-action, github.com/adam757521/PikudHaoref.py, github.com/adam757521/discordSuperUtils-splitted, github.com/adam757521/ksp.py, @@ -213772,6 +218838,8 @@ github.com/adambiltcliffe/board-state,num_dependents_deps.dev:0 github.com/adambiltcliffe/codex,num_dependents_deps.dev:0 github.com/adambird/entity_store,num_dependents_deps.dev:0 github.com/adambirds/adamlint, +github.com/adambirds/docker-compose-action, +github.com/adambirds/sync-github-to-gitlab-action, github.com/adambirds/xkcd-password-gen, github.com/adambisek/string-pixel-width,num_dependents_deps.dev:19 github.com/adambkaplan/source-to-image,num_dependents_deps.dev:0 @@ -213871,6 +218939,7 @@ github.com/adamchainz/django-upgrade, github.com/adamchainz/django-version-checks, github.com/adamchainz/ec2-metadata, github.com/adamchainz/flake8-comprehensions,criticality_score:0.421220 +github.com/adamchainz/flake8-logging, github.com/adamchainz/flake8-no-pep420, github.com/adamchainz/flake8-no-types, github.com/adamchainz/flake8-tidy-imports, @@ -213887,6 +218956,7 @@ github.com/adamchainz/nose-randomly, github.com/adamchainz/patchy, github.com/adamchainz/pip-lock, github.com/adamchainz/pretty-cron, +github.com/adamchainz/pygments-git, github.com/adamchainz/pytest-flake8-path, github.com/adamchainz/pytest-flake8dir, github.com/adamchainz/pytest-is-running, @@ -213896,6 +218966,7 @@ github.com/adamchainz/pytest-super-check, github.com/adamchainz/time-machine, github.com/adamchainz/tox-py, github.com/adamchainz/treepoem, +github.com/adamchainz/unittest-parametrize, github.com/adamchainz/wsgi-harakiri, github.com/adamchalmers/fountain-rs,num_dependents_deps.dev:0 github.com/adamchalmers/retry,num_dependents_deps.dev:0 @@ -213942,6 +219013,7 @@ github.com/adamcin/oakpal,num_dependents_deps.dev:122 github.com/adamcin/tycho-karaf-bridge,num_dependents_deps.dev:0 github.com/adamciolkowski/kitchen-table,num_dependents_deps.dev:0 github.com/adamclark64/cerebro-wiki,num_dependents_deps.dev:0 +github.com/adamclark64/twilio-actions-sms-mms, github.com/adamcmiel/instagram-location,num_dependents_deps.dev:0 github.com/adamcohen/godotenv-test,num_dependents_deps.dev:0 github.com/adamcollins/JustJS,num_dependents_deps.dev:0 @@ -214095,6 +219167,7 @@ github.com/adamgen/express-force-listen,num_dependents_deps.dev:0 github.com/adamgen/findup-exact, github.com/adamgen/tswatch,num_dependents_deps.dev:0 github.com/adamgeorgeson/ruby_build_info,num_dependents_deps.dev:0 +github.com/adamghill/build-docker-and-deploy-to-caprover, github.com/adamghill/coltrane, github.com/adamghill/dj, github.com/adamghill/djajax, @@ -214185,6 +219258,7 @@ github.com/adamhalasz/reorder-array,num_dependents_deps.dev:0 github.com/adamhalasz/rgauge,num_dependents_deps.dev:0 github.com/adamhalasz/uniqid,num_dependents_deps.dev:2256 github.com/adamhamden/sql_robot_logger, +github.com/adamhamlin/checkout-node-project, github.com/adamhamlin/frap,num_dependents_deps.dev:0 github.com/adamhammes/pokemon_go_data,num_dependents_deps.dev:0 github.com/adamhancock/connectwisenodejs,num_dependents_deps.dev:0 @@ -214250,6 +219324,7 @@ github.com/adamjarret/argv-walk,num_dependents_deps.dev:0 github.com/adamjarret/cfcc,num_dependents_deps.dev:0 github.com/adamjarret/parse-refresh-redirect,num_dependents_deps.dev:0 github.com/adamjarret/s3-publish,num_dependents_deps.dev:10 +github.com/adamjarret/s3-publish-action, github.com/adamjarret/shortid-dist,num_dependents_deps.dev:0 github.com/adamjarret/spooning,num_dependents_deps.dev:0 github.com/adamjarret/spooning-cli,num_dependents_deps.dev:0 @@ -214313,6 +219388,7 @@ github.com/adamkdean/koa-serve,num_dependents_deps.dev:12 github.com/adamkdean/nomoreunhandledrejections,num_dependents_deps.dev:0 github.com/adamkdean/re-require,num_dependents_deps.dev:0 github.com/adamkdean/react-native-webviewhook,num_dependents_deps.dev:0 +github.com/adamkdean/simple-slack-notify, github.com/adamkdean/superdocker,num_dependents_deps.dev:0 github.com/adamkecskes/complex-iterations,num_dependents_deps.dev:0 github.com/adamkerz/akData, @@ -214343,6 +219419,7 @@ github.com/adamko147/verdaccio-profile-api, github.com/adamkobi/xt,num_dependents_deps.dev:0 github.com/adamkorcz/gofuzz,num_dependents_deps.dev:0 github.com/adamkoziol/ftir_renamer, +github.com/adamkrawczyk/setup-o3de-extras, github.com/adamkrell/RNFlipView, github.com/adamkrol93/wolf-smartset, github.com/adamkss/react-simple-grid-dnd,num_dependents_deps.dev:0 @@ -214605,6 +219682,7 @@ github.com/adamsky/cns,num_dependents_deps.dev:0 github.com/adamsky/consecrates,num_dependents_deps.dev:0 github.com/adamsky/globe,num_dependents_deps.dev:0 github.com/adamsky/id-pool,num_dependents_deps.dev:0 +github.com/adamsocrat/jest-lcov-reporter, github.com/adamsoffer/next-apollo,criticality_score:0.416320 github.com/adamsoffer/react-hubspot, github.com/adamsol/vue-component-store,num_dependents_deps.dev:0 @@ -214705,6 +219783,7 @@ github.com/adamwoolhether/algorithmswithgo,num_dependents_deps.dev:0 github.com/adamwoolhether/k8s-service,num_dependents_deps.dev:0 github.com/adamwoolhether/proglog,num_dependents_deps.dev:0 github.com/adamwoolhether/sql-string-build,num_dependents_deps.dev:0 +github.com/adamws/github-pages-generator, github.com/adamwulf/Columnizer-jQuery-Plugin,num_dependents_deps.dev:0 github.com/adamwynne/twitter-api,criticality_score:0.336060 github.com/adamwysocki/react-form-countries-select,num_dependents_deps.dev:0 @@ -214750,10 +219829,12 @@ github.com/adamzolyak/hubot-custom-out-of-office,num_dependents_deps.dev:0 github.com/adamzolyak/hubot-custom-outofoffice, github.com/adamzr/git-working-directory,num_dependents_deps.dev:0 github.com/adamzy/cedar-go,num_dependents_deps.dev:161 +github.com/adan2013/package-version-checker, github.com/adana-coverage/adana-dump,num_dependents_deps.dev:0 github.com/adana-coverage/adana-format-istanbul,num_dependents_deps.dev:0 github.com/adana-coverage/adana-format-json,num_dependents_deps.dev:0 github.com/adanalife/tripbot,num_dependents_deps.dev:0 +github.com/adanalvarez/openai-security-review, github.com/adanamanya/React-Native-SEED-Encryption,num_dependents_deps.dev:0 github.com/adanbnchr/cervezas,num_dependents_deps.dev:0 github.com/adandris/adaptive-streams,num_dependents_deps.dev:0 @@ -214815,6 +219896,8 @@ github.com/adaptmen/js-prop, github.com/adaptmen/react-amazing-input,num_dependents_deps.dev:0 github.com/adaptretail/adapt-mix-extender,num_dependents_deps.dev:0 github.com/adaptretail/banner-data,num_dependents_deps.dev:0 +github.com/adapttive/algolia-docsearch-action, +github.com/adapttive/cache-delete-action, github.com/adapttive/markdown-it-external-preview,num_dependents_deps.dev:0 github.com/adapttive/remark-external-preview,num_dependents_deps.dev:0 github.com/adapttive/vue-markdown,num_dependents_deps.dev:0 @@ -214969,6 +220052,7 @@ github.com/adcade/voyager,num_dependents_deps.dev:0 github.com/adcarabajal/generator-css-testing,num_dependents_deps.dev:0 github.com/adcarabajal/grunt-css-test,num_dependents_deps.dev:0 github.com/adcash/cordova-plugin-adcash,num_dependents_deps.dev:0 +github.com/adcdr/detect-blank-pr-action, github.com/adcentury/material-spinner,num_dependents_deps.dev:0 github.com/adcentury/react-mobile-picker,num_dependents_deps.dev:0 github.com/adcentury/socketio-jwt-auth,num_dependents_deps.dev:0 @@ -215114,6 +220198,7 @@ github.com/addityasingh/add-eventlistener-with-options, github.com/addityasingh/istanbul-coverage-enforcer,num_dependents_deps.dev:0 github.com/addleonel/unitrevpy, github.com/addmitriev/grunt-browser-extension,num_dependents_deps.dev:0 +github.com/addnab/docker-run-action, github.com/addnorth/Octoprint-Addlink, github.com/addoeventi/addo.models,num_dependents_deps.dev:0 github.com/addoeventi/fatture-in-cloud-api,num_dependents_deps.dev:0 @@ -215137,6 +220222,7 @@ github.com/addr-rs/psl-types,num_dependents_deps.dev:14 github.com/addreas/cuebuild-controller,num_dependents_deps.dev:0 github.com/addreas/template-secrets,num_dependents_deps.dev:0 github.com/address-so/address-python-sdk, +github.com/addresscloud/terraform-cloud-action, github.com/addressix/passport-addressix-oauth2,num_dependents_deps.dev:0 github.com/addressr/addressr-node,num_dependents_deps.dev:0 github.com/addrobots/grpc-web,num_dependents_deps.dev:0 @@ -215309,6 +220395,7 @@ github.com/adelonzeta/scientific-calculator,num_dependents_deps.dev:0 github.com/adelosa/cardutil, github.com/adelosa/mciutil, github.com/adelowo/pusher-calendar-app,num_dependents_deps.dev:0 +github.com/adeloyedeji/github-actions-hello, github.com/adelphes/elf-tools,num_dependents_deps.dev:74 github.com/adelplanque/html-test-report, github.com/adelq/card_identifier, @@ -215327,6 +220414,7 @@ github.com/adelura/callslip-client,num_dependents_deps.dev:0 github.com/adelura/dependencyhellper,num_dependents_deps.dev:0 github.com/adelura/sass-unused,num_dependents_deps.dev:0 github.com/adelura/vue-swing2,num_dependents_deps.dev:0 +github.com/adelynx/github-actions-nodemailer, github.com/adem522/golang,num_dependents_deps.dev:0 github.com/adem522/tesodev,num_dependents_deps.dev:0 github.com/ademakdogan/epath, @@ -215550,6 +220638,7 @@ github.com/adgaudio/ietk-ret, github.com/adgaudio/majorityredis, github.com/adgaudio/pyspark_pandas, github.com/adgaudio/simplepytorch, +github.com/adgcz/project-activity, github.com/adgear/helm-chart-resource,num_dependents_deps.dev:0 github.com/adgear/mini-rs,num_dependents_deps.dev:0 github.com/adgelbfish/appdaemon-js,num_dependents_deps.dev:0 @@ -215642,6 +220731,7 @@ github.com/adhywiranata/react-code-split-component,num_dependents_deps.dev:0 github.com/adhywiranata/react-native-wistia-player,num_dependents_deps.dev:0 github.com/adi-L/split-html,num_dependents_deps.dev:0 github.com/adi-bhardwaj/velero-modified,num_dependents_deps.dev:0 +github.com/adi-itgg/action-release-debug-release-apk, github.com/adi-mb/veriToken,num_dependents_deps.dev:0 github.com/adi/dynhttpsrv,num_dependents_deps.dev:0 github.com/adi/earlect,num_dependents_deps.dev:0 @@ -215666,6 +220756,7 @@ github.com/adiRandom/ObservableJs,num_dependents_deps.dev:0 github.com/adiRandom/data-paging-manager, github.com/adiRandom/discovery-swarm,num_dependents_deps.dev:0 github.com/adiRandom/get-port,num_dependents_deps.dev:0 +github.com/adiRandom/pr-size-tagging, github.com/adia-technology/international-ssn-validator,num_dependents_deps.dev:0 github.com/adia-technology/policies-consent-widget,num_dependents_deps.dev:0 github.com/adiabuk/pdfgrep, @@ -215718,6 +220809,7 @@ github.com/adidas/safe-publish,num_dependents_deps.dev:0 github.com/adidier17/AuthorRank, github.com/adie/tu,num_dependents_deps.dev:0 github.com/adiechahk/adonis-queue-provider,num_dependents_deps.dev:0 +github.com/adiegoweb/lftp-mirror-action-no-output, github.com/adielsh/Vue-Component-Bootstrap-Modal,num_dependents_deps.dev:0 github.com/adierkens/auto-test,num_dependents_deps.dev:0 github.com/adierkens/babel-plugin-dynamic-import-promise,num_dependents_deps.dev:0 @@ -215783,6 +220875,8 @@ github.com/adilku/vote_server,num_dependents_deps.dev:0 github.com/adilmalik393/PyEocean, github.com/adilmas13/angular-script-loader,num_dependents_deps.dev:0 github.com/adilmas13/ng-scripter, +github.com/adilnaimi/github-action, +github.com/adilnaimi/pr-labeler, github.com/adilosa/dynamo-json, github.com/adilpratama71/h8-restriction,num_dependents_deps.dev:0 github.com/adilsonchacon/go-algorithms-data-structures,num_dependents_deps.dev:0 @@ -215899,6 +220993,7 @@ github.com/adisreyaj/raspador, github.com/adit/oaxis,num_dependents_deps.dev:0 github.com/aditaman/go-say-hello,num_dependents_deps.dev:0 github.com/aditbharadwaj/angular-gradient-progressbar,num_dependents_deps.dev:0 +github.com/aditdiqdpratama/lift-off, github.com/aditeyapandey/Genorec-Engine,num_dependents_deps.dev:0 github.com/adithep/alpha-mixins,num_dependents_deps.dev:0 github.com/adithya-daine/learning-git,num_dependents_deps.dev:0 @@ -215960,6 +221055,7 @@ github.com/aditya43/node-microservices-common,num_dependents_deps.dev:0 github.com/aditya612/dope, github.com/aditya81070/github-actions-learn,num_dependents_deps.dev:0 github.com/aditya87/adispec,num_dependents_deps.dev:0 +github.com/adityaa30/check-commit, github.com/adityaarakeri/krypter,num_dependents_deps.dev:0 github.com/adityab/node-slideshare,num_dependents_deps.dev:0 github.com/adityabaheti/palindrome.go,num_dependents_deps.dev:0 @@ -215987,12 +221083,15 @@ github.com/adityai/quickprime,num_dependents_deps.dev:0 github.com/adityak368/ego,num_dependents_deps.dev:0 github.com/adityak368/swissknife,num_dependents_deps.dev:1 github.com/adityak74/android-bundletool,num_dependents_deps.dev:0 +github.com/adityak74/google-drive-upload-git-action, github.com/adityak74/lerna-babel7-webpack-exec,num_dependents_deps.dev:0 github.com/adityakahb/amegmen,num_dependents_deps.dev:0 github.com/adityakale3/binod,num_dependents_deps.dev:0 github.com/adityakalra581/pyproba, github.com/adityakamble49/office-timer,num_dependents_deps.dev:0 +github.com/adityakar/workflow-dispatcher, github.com/adityakaushal5nov/algorithm.js,num_dependents_deps.dev:0 +github.com/adityakavalur/github-gitlab-ci, github.com/adityakesarwani/Network-Scanner, github.com/adityakmr7/dummy-names,num_dependents_deps.dev:0 github.com/adityakmr7/reactjs-tooltip,num_dependents_deps.dev:0 @@ -216228,6 +221327,7 @@ github.com/adlenafane/react-i13n-segment,num_dependents_deps.dev:0 github.com/adleong/fauxmetheus,num_dependents_deps.dev:0 github.com/adler-j/huest, github.com/adler187/tvrenamer,num_dependents_deps.dev:0 +github.com/adlerhsieh/prepare-release, github.com/adlerliu/go,num_dependents_deps.dev:0 github.com/adlerluiz/sifer,num_dependents_deps.dev:0 github.com/adlerluiz/ytmdesktop,num_dependents_deps.dev:0 @@ -216609,6 +221709,7 @@ github.com/adobe/aem-upload,num_dependents_deps.dev:0 github.com/adobe/aemanalyser-maven-plugin,num_dependents_deps.dev:0 github.com/adobe/aepsdk-react-native,num_dependents_deps.dev:0 github.com/adobe/aio-app-scripts,num_dependents_deps.dev:10 +github.com/adobe/aio-apps-action, github.com/adobe/aio-cli,num_dependents_deps.dev:0 github.com/adobe/aio-cli-config, github.com/adobe/aio-cli-lib-app-config,num_dependents_deps.dev:2 @@ -216629,6 +221730,7 @@ github.com/adobe/aio-cli-plugin-jwt-auth,num_dependents_deps.dev:2 github.com/adobe/aio-cli-plugin-pgb,num_dependents_deps.dev:0 github.com/adobe/aio-cli-plugin-runtime,num_dependents_deps.dev:2 github.com/adobe/aio-cli-plugin-target,num_dependents_deps.dev:0 +github.com/adobe/aio-cli-setup-action, github.com/adobe/aio-cna-core-config,num_dependents_deps.dev:0 github.com/adobe/aio-lib-audience-manager-cd, github.com/adobe/aio-lib-campaign-standard,num_dependents_deps.dev:0 @@ -216833,6 +221935,7 @@ github.com/adobe/twist,num_dependents_deps.dev:0 github.com/adobe/twist-configuration,num_dependents_deps.dev:0 github.com/adobe/twist-router,num_dependents_deps.dev:0 github.com/adobe/twist-virtual-scroller,num_dependents_deps.dev:0 +github.com/adobe/update-prerelease-npm-version, github.com/adobe/uxp-optimized,num_dependents_deps.dev:0 github.com/adobe/vcsinfo, github.com/adobe/vent,num_dependents_deps.dev:0 @@ -216890,6 +221993,8 @@ github.com/adolfojunior/signal-profiler,num_dependents_deps.dev:0 github.com/adolfos94/Bareiss-Algorithm, github.com/adolfos94/Gauss-Jacques, github.com/adolfos94/Montante-Jacques, +github.com/adolfosilva/arangodb-action, +github.com/adolfosilva/gh-large-pr-check, github.com/adolfosilva/libgen.py, github.com/adolfosrs/blitz-node-server,num_dependents_deps.dev:0 github.com/adolgarev/domwrapper,num_dependents_deps.dev:0 @@ -217045,6 +222150,7 @@ github.com/adopted-ember-addons/ember-pikaday, github.com/adopted-ember-addons/ember-sortable,criticality_score:0.450380 github.com/adopted-ember-addons/ember-stripe-elements,num_dependents_deps.dev:0 github.com/adopted-ember-addons/ember-theme-changerr, +github.com/adoptium/run-aqa, github.com/adoptopenjdk/jlink.online,num_dependents_deps.dev:0 github.com/adopy/adopy, github.com/adorableio/adorable-avatars,num_dependents_deps.dev:0 @@ -217119,6 +222225,7 @@ github.com/adqwzsz/chat,num_dependents_deps.dev:0 github.com/adr/adr-log,num_dependents_deps.dev:0 github.com/adr/e-adr,num_dependents_deps.dev:0 github.com/adr/madr,"criticality_score:0.333890,num_dependents_deps.dev:0" +github.com/adracea/gha-sbomb-merge, github.com/adraf82/hp_procurvearuba, github.com/adraghav/MFPerfQuery, github.com/adragomir/hubot-logger,num_dependents_deps.dev:0 @@ -217162,6 +222269,7 @@ github.com/adrenallen/replit-db-orm,num_dependents_deps.dev:0 github.com/adrenalyse/big,num_dependents_deps.dev:0 github.com/adrennhoff/recommendx, github.com/adrespi-dev/ngx-daterangepicker-material,num_dependents_deps.dev:0 +github.com/adrey/slack-file-upload-action, github.com/adrfoong/censorify,num_dependents_deps.dev:0 github.com/adrfoong/cypress-benchmark, github.com/adrg/exrates,num_dependents_deps.dev:0 @@ -217323,6 +222431,7 @@ github.com/adriancmiranda/rx4d,num_dependents_deps.dev:0 github.com/adriancmiranda/sprite.js,num_dependents_deps.dev:0 github.com/adriancmiranda/unkn,num_dependents_deps.dev:0 github.com/adriancmiranda/webpack-cfg,num_dependents_deps.dev:0 +github.com/adriancoman/link-checks-action, github.com/adriancooney/await-service,num_dependents_deps.dev:0 github.com/adriancooney/boh,num_dependents_deps.dev:0 github.com/adriancooney/fn.map,num_dependents_deps.dev:0 @@ -217358,6 +222467,8 @@ github.com/adriangarzas/angular-4-data-table,num_dependents_deps.dev:0 github.com/adriangb/di, github.com/adriangb/scikeras, github.com/adriangb/xpresso, +github.com/adriangl/check-new-commits-action, +github.com/adriangodong/actions-todo-bot, github.com/adriangodong/webpack-namespace-plugin,num_dependents_deps.dev:0 github.com/adriangoransson/renamer,num_dependents_deps.dev:0 github.com/adriangzz/dj-taggit-serializer, @@ -217419,8 +222530,10 @@ github.com/adrianjiang/react-native-east-fs,num_dependents_deps.dev:0 github.com/adrianjonmiller/engineux,num_dependents_deps.dev:0 github.com/adrianjonmiller/runeux,num_dependents_deps.dev:2 github.com/adrianjonmiller/ux-state-machine, +github.com/adrianjost/actions-surge.sh-teardown, github.com/adrianjost/dedent-tabs,num_dependents_deps.dev:18 github.com/adrianjost/feathersjs-filter-ui,num_dependents_deps.dev:0 +github.com/adrianjost/files-sync-action, github.com/adrianjost/license-ci-checker, github.com/adrianjost/oauth2-firebase,num_dependents_deps.dev:0 github.com/adrianjost/report-viewer,num_dependents_deps.dev:0 @@ -217575,6 +222688,7 @@ github.com/adrianp/silog, github.com/adrianpacala/hyper-bimbo,num_dependents_deps.dev:0 github.com/adrianpaesani/platzom,num_dependents_deps.dev:0 github.com/adrianpanatra/adrian-bank,num_dependents_deps.dev:0 +github.com/adrianpaniagualeon/telegram-birthday-reminder-bot, github.com/adrianparker/EatDailyJam,num_dependents_deps.dev:0 github.com/adrianparker/ixwsg,num_dependents_deps.dev:0 github.com/adrianpdm/svg-to-vue-component,num_dependents_deps.dev:0 @@ -217661,6 +222775,7 @@ github.com/adrice727/hanuman,num_dependents_deps.dev:0 github.com/adrice727/typescript-react-storybook,num_dependents_deps.dev:0 github.com/adrielcafe/lyricist,num_dependents_deps.dev:0 github.com/adrielcafe/responsive-headings.css,num_dependents_deps.dev:0 +github.com/adrielcodeco/docker-compose-run-action, github.com/adrielcodeco/onhand,num_dependents_deps.dev:56 github.com/adrielcodeco/onhand-common, github.com/adrielcodeco/onhand-iac, @@ -217786,6 +222901,7 @@ github.com/adrise/precommit-hook,num_dependents_deps.dev:0 github.com/adrish96/parking-lot-lld,num_dependents_deps.dev:0 github.com/adriss/cli,num_dependents_deps.dev:0 github.com/adritasharma/uppy-angular-library,num_dependents_deps.dev:0 +github.com/adriweb/xcode-notarize-please, github.com/adriwicked/meeting-availability, github.com/adrixp/aframe-charts-component,num_dependents_deps.dev:0 github.com/adrk/pyspy_so,num_dependents_deps.dev:0 @@ -217860,6 +222976,7 @@ github.com/adsdkgit/cordova-plugin-adsdk,num_dependents_deps.dev:0 github.com/adsegura/crypto-busboy,num_dependents_deps.dev:0 github.com/adsegura/crypto-parser-express,num_dependents_deps.dev:0 github.com/adsegura/dotenv-plus-options,num_dependents_deps.dev:0 +github.com/adshao/chatgpt-code-review-action, github.com/adshao/go-binance,"criticality_score:0.464730,num_dependents_deps.dev:2" github.com/adsharma/flattools, github.com/adsharma/py2many,num_dependents_deps.dev:0 @@ -217954,6 +223071,7 @@ github.com/adurc/driver-mssql,num_dependents_deps.dev:0 github.com/adurc/exposure-hasura,num_dependents_deps.dev:0 github.com/adurc/exposure-react-admin,num_dependents_deps.dev:0 github.com/adurc/introspector-graphql,num_dependents_deps.dev:0 +github.com/aduriseti/ovpn3-connect-action, github.com/adurivault/FBMessage, github.com/aduros/check-tmpmail, github.com/aduros/flambe,"criticality_score:0.309160,num_dependents_deps.dev:0" @@ -217968,6 +223086,7 @@ github.com/adusca/pulse_actions, github.com/adust09/tsudachain,num_dependents_deps.dev:0 github.com/adustyoldmuffin/apa-manager-api,num_dependents_deps.dev:0 github.com/adustyoldmuffin/argus,num_dependents_deps.dev:0 +github.com/adusumillipraveen/chart-bump, github.com/aduth/LibroIpsum,num_dependents_deps.dev:0 github.com/aduth/core-js-url-browser,num_dependents_deps.dev:0 github.com/aduth/correctingInterval,num_dependents_deps.dev:0 @@ -218259,6 +223378,20 @@ github.com/advanced-rest-client/websocket-panel,num_dependents_deps.dev:0 github.com/advanced-rest-client/websocket-request,num_dependents_deps.dev:2 github.com/advanced-rest-client/xhr-simple-request,num_dependents_deps.dev:0 github.com/advanced-rest-client/xml-viewer,num_dependents_deps.dev:2 +github.com/advanced-security/codeql-bundle-action, +github.com/advanced-security/component-detection-dependency-submission-action, +github.com/advanced-security/dart-analyzer-sarif, +github.com/advanced-security/dependabot-kev-action, +github.com/advanced-security/filter-sarif, +github.com/advanced-security/maven-dependency-submission-action, +github.com/advanced-security/policy-as-code, +github.com/advanced-security/python-lint-code-scanning-action, +github.com/advanced-security/remap-sarif, +github.com/advanced-security/sbom-generator-action, +github.com/advanced-security/set-codeql-language-matrix, +github.com/advanced-security/spdx-dependency-submission-action, +github.com/advanced-security/spotbugs-findsecbugs-action, +github.com/advanced-security/tag-sarif, github.com/advanced-server-architecture/config-agent,num_dependents_deps.dev:0 github.com/advanced/beacon,num_dependents_deps.dev:0 github.com/advanced/express-ie-cors,num_dependents_deps.dev:1 @@ -218268,6 +223401,11 @@ github.com/advancedKnx/ets_proj_parser,num_dependents_deps.dev:0 github.com/advancedcomputinglabs/dataservedb,num_dependents_deps.dev:0 github.com/advancedcontrol/a2-composer,num_dependents_deps.dev:0 github.com/advancedcontrol/a2-widgets,num_dependents_deps.dev:0 +github.com/advancedcsg-open/action-jfrog-cli, +github.com/advancedcsg-open/actions-rush, +github.com/advancedcsg-open/actions-rush-changed-projects, +github.com/advancedcsg-open/actions-rush-cmd-to-version-policy, +github.com/advancedcsg/mosaic-data-schema-deployment, github.com/advanceddb/AdvancedDB,num_dependents_deps.dev:0 github.com/advanceddev/react-advanced-banner, github.com/advancedhosting/advancedhosting-api-go,num_dependents_deps.dev:0 @@ -218663,6 +223801,7 @@ github.com/aeickhoff/kay,num_dependents_deps.dev:0 github.com/aeickhoff/kay_codegen,num_dependents_deps.dev:0 github.com/aeickhoff/michelangelo,num_dependents_deps.dev:0 github.com/aeickhoff/simple_allocator_trait,num_dependents_deps.dev:5 +github.com/aeiea/autoupdateonfolder-workflow, github.com/aeihr/harvester,num_dependents_deps.dev:0 github.com/aeilers/js-auto-test,num_dependents_deps.dev:0 github.com/aeilers/js-auto-test-cli,num_dependents_deps.dev:0 @@ -218890,6 +224029,7 @@ github.com/aeoncomputing/lustre_exporter,num_dependents_deps.dev:0 github.com/aeone1/go,num_dependents_deps.dev:0 github.com/aeonfr/ink-ascii-image,num_dependents_deps.dev:0 github.com/aeonfr/vanilla-extract-plugin-nextjs,num_dependents_deps.dev:0 +github.com/aeong98/Pull-Request-Labeler, github.com/aeonincode/firstappgolang,num_dependents_deps.dev:0 github.com/aeonixlegit/Node.JS-VK-Coin-API,num_dependents_deps.dev:0 github.com/aeonixlegit/node-qiwi-promise-api,num_dependents_deps.dev:0 @@ -219439,6 +224579,7 @@ github.com/aeunderhill/lotide, github.com/aevalo/hello-wasm,num_dependents_deps.dev:0 github.com/aevans1910/date_lib,num_dependents_deps.dev:0 github.com/aevans1910/string-lib,num_dependents_deps.dev:0 +github.com/aevea/action-kaniko, github.com/aevea/commitsar,num_dependents_deps.dev:0 github.com/aevea/git,num_dependents_deps.dev:2 github.com/aevea/integrations,num_dependents_deps.dev:0 @@ -219573,6 +224714,7 @@ github.com/afaucogney/heroku-alive,num_dependents_deps.dev:0 github.com/afaulconbridge/PyAChemKit, github.com/afaulconbridge/jixin, github.com/afaulconbridge/pyumpf, +github.com/afaundez/chef-supermarket-action, github.com/afaundez/powerade,num_dependents_deps.dev:0 github.com/afaundez/vagrant-templated,num_dependents_deps.dev:0 github.com/afavendanor/twittor,num_dependents_deps.dev:0 @@ -219610,6 +224752,7 @@ github.com/afc163/homebrew,num_dependents_deps.dev:0 github.com/afc163/mocha-browser,num_dependents_deps.dev:4 github.com/afc163/multiple,num_dependents_deps.dev:9 github.com/afc163/npm-clean,num_dependents_deps.dev:0 +github.com/afc163/surge-preview, github.com/afc163/svn-sync,num_dependents_deps.dev:0 github.com/afc163/wa,num_dependents_deps.dev:0 github.com/afc163/word-color,num_dependents_deps.dev:0 @@ -220002,6 +225145,7 @@ github.com/affrae/fib-tools,num_dependents_deps.dev:0 github.com/afg984/django-fsu, github.com/afg984/pyardrone, github.com/afg984/torinja, +github.com/afgallo/deploy-firebase-functions, github.com/afgallo/dynosched,num_dependents_deps.dev:0 github.com/afgallo/dynowrap,num_dependents_deps.dev:0 github.com/afgalvan/marco, @@ -220052,6 +225196,8 @@ github.com/afilnet/api-python, github.com/afimb/gtfslib-python, github.com/afineedge/vue-json-query-builder, github.com/afinkndreas/synology-image-sort,num_dependents_deps.dev:0 +github.com/afinkorea/aws-codecommit-sync, +github.com/afiore/action-allure-report, github.com/afiore/rmqfwd,num_dependents_deps.dev:0 github.com/afiore/sqweeze,num_dependents_deps.dev:0 github.com/afiorenza/react-eth,num_dependents_deps.dev:0 @@ -220297,6 +225443,7 @@ github.com/afritz1/OpenTESArena,criticality_score:0.388420 github.com/afritzler/awesaml,num_dependents_deps.dev:0 github.com/afritzler/garden-universe,num_dependents_deps.dev:0 github.com/afritzler/kube-universe,num_dependents_deps.dev:0 +github.com/afritzler/mkdocs-gh-pages-action, github.com/afritzler/oopsie,num_dependents_deps.dev:0 github.com/afritzler/search-conversion,num_dependents_deps.dev:0 github.com/afrivera/cytoscape.js,num_dependents_deps.dev:0 @@ -220402,6 +225549,9 @@ github.com/aftership/node-phone,num_dependents_deps.dev:20 github.com/aftership/node-xmlrpc,num_dependents_deps.dev:0 github.com/aftersim/pako,num_dependents_deps.dev:0 github.com/aftertheflood/londonsquared,num_dependents_deps.dev:0 +github.com/afterthought/action-aws-cf-to-dotenv, +github.com/afterthought/action-coalesce-dispatch-args, +github.com/afterthought/aws-secrets-manager-action, github.com/afterwind-io/comcat,num_dependents_deps.dev:0 github.com/afterwind-io/preprocessor-loader,num_dependents_deps.dev:0 github.com/afterworkdevelopments/gulp-marionettist-project,num_dependents_deps.dev:0 @@ -220564,6 +225714,7 @@ github.com/agarciamiravet/go-azuredevopsapi,num_dependents_deps.dev:0 github.com/agarciamiravet/terraform-provider-azuredevops,num_dependents_deps.dev:0 github.com/agarcian/passwordhash,num_dependents_deps.dev:0 github.com/agardelein/textoter, +github.com/agardnerIT/dynatrace-endpoint-evaluator, github.com/agargiulo/tcelfer,num_dependents_deps.dev:0 github.com/agarichan/exmachina, github.com/agarichan/redis-push, @@ -220575,6 +225726,9 @@ github.com/agaridata/test_wiretap,num_dependents_deps.dev:0 github.com/agarmu/hlg,num_dependents_deps.dev:0 github.com/agarmu/iterationsJS,num_dependents_deps.dev:0 github.com/agaro1121/scala-slack-client,num_dependents_deps.dev:0 +github.com/agaroot-technologies/action-restrict-base-branch, +github.com/agaroot-technologies/action-restrict-head-branch, +github.com/agaroot-technologies/action-restrict-pr-label, github.com/agarrharr/awesome-cli-apps,criticality_score:0.451430 github.com/agarrharr/awesome-macos-screensavers,criticality_score:0.321170 github.com/agarrharr/awesome-static-website-services,criticality_score:0.358000 @@ -220638,6 +225792,7 @@ github.com/agateblue/django-dynamic-preferences, github.com/agatedeveloping/quick.calculator,num_dependents_deps.dev:0 github.com/agates/feed,num_dependents_deps.dev:0 github.com/agates/peertube-plugin-auth-oauth2-mastodon,num_dependents_deps.dev:0 +github.com/agates/python-wheels-manylinux-build, github.com/agatetx/pyscout, github.com/agathangelidis/hotspell, github.com/agathauy/gsm-arduino,num_dependents_deps.dev:0 @@ -220780,6 +225935,7 @@ github.com/agenciaezoom/ionic,num_dependents_deps.dev:0 github.com/agencianacionaldocinema/bootstrap,num_dependents_deps.dev:0 github.com/agency-undone/nuxt-module-ipfs,num_dependents_deps.dev:0 github.com/agencyenterprise/aeboilerplate,num_dependents_deps.dev:0 +github.com/agencyenterprise/docstring-auditor, github.com/agencyenterprise/ndx-nirs, github.com/agencyenterprise/react-native-healthkit,num_dependents_deps.dev:0 github.com/agencyenterprise/woodpecker,num_dependents_deps.dev:0 @@ -220796,6 +225952,7 @@ github.com/agendize/nodejs-module,num_dependents_deps.dev:0 github.com/agendor/omie-ruby,num_dependents_deps.dev:0 github.com/agendor/rdstation-node-client,num_dependents_deps.dev:0 github.com/agendrix/rails-action-view-loader,num_dependents_deps.dev:0 +github.com/agendry-pub/gha-ssc-create-application-version, github.com/ageneau/scid,num_dependents_deps.dev:0 github.com/ageneau/scid_node_addon, github.com/agenjs/agen-dsv,num_dependents_deps.dev:0 @@ -220830,6 +225987,7 @@ github.com/agentcooper/react-native-hypertext, github.com/agentcooper/react-pdf-annotator,num_dependents_deps.dev:0 github.com/agentcooper/react-pdf-highlighter,"criticality_score:0.389700,num_dependents_deps.dev:0" github.com/agentcosmic/xnotify,num_dependents_deps.dev:0 +github.com/agentd00nut/jekyll-build-optional-deploy-gh-pages, github.com/agentejo/cockpit,criticality_score:0.539740 github.com/agentender/npm-ccoppola,num_dependents_deps.dev:0 github.com/agentender/odata-data-source,num_dependents_deps.dev:0 @@ -220838,6 +225996,7 @@ github.com/agentfivecn/scrapy-agentfive-middleware, github.com/agentframework/agentframework,num_dependents_deps.dev:46 github.com/agentframework/domain,num_dependents_deps.dev:0 github.com/agentframework/tsmon,num_dependents_deps.dev:0 +github.com/agenthunt/conventional-commit-checker-action, github.com/agenthunt/react-native-mailcore,num_dependents_deps.dev:0 github.com/agenthunt/redux-nakshatra,num_dependents_deps.dev:0 github.com/agenthunt/waterline-to-graphql,num_dependents_deps.dev:0 @@ -220950,6 +226109,7 @@ github.com/aghaffar570/node-cli-app,num_dependents_deps.dev:0 github.com/aghahuseynov/elchi-code-input,num_dependents_deps.dev:0 github.com/aghamir/py-sr25519-bindings, github.com/aghassemi/tap-xunit,num_dependents_deps.dev:2 +github.com/agherzan/git-mirror-me-action, github.com/agherzan/meta-raspberrypi,criticality_score:0.600510 github.com/agherzan/yubikey-full-disk-encryption,criticality_score:0.309660 github.com/aghiad-alzein-78/golang,num_dependents_deps.dev:0 @@ -221187,6 +226347,7 @@ github.com/aglemann/instant-styleguide,num_dependents_deps.dev:0 github.com/aglide100/dak-blog,num_dependents_deps.dev:0 github.com/aglie/meerkat, github.com/aglingael/dl8.5, +github.com/aglipanci/laravel-pint-action, github.com/agliznetsov/swagger-tools,num_dependents_deps.dev:0 github.com/aglobof/sass,num_dependents_deps.dev:0 github.com/aglobof/sass.animations,num_dependents_deps.dev:0 @@ -221289,6 +226450,7 @@ github.com/agneta/imap,num_dependents_deps.dev:0 github.com/agneta/payments,num_dependents_deps.dev:0 github.com/agneta/platform,num_dependents_deps.dev:0 github.com/agneta/portal,num_dependents_deps.dev:0 +github.com/agneum/migration-action, github.com/agnewee/go-scp,num_dependents_deps.dev:0 github.com/agneybhople98/channel-response-assignmetn,num_dependents_deps.dev:0 github.com/agneym/babel-plugin-goober-css-prop,num_dependents_deps.dev:0 @@ -221303,6 +226465,7 @@ github.com/agneym/electrojet-scripts, github.com/agneym/framer-motion-visible,num_dependents_deps.dev:0 github.com/agneym/gatsby-theme-advent,num_dependents_deps.dev:0 github.com/agneym/gatsby-wedding-theme,num_dependents_deps.dev:0 +github.com/agneym/generate-og-image, github.com/agneym/ir-toast,num_dependents_deps.dev:0 github.com/agneym/jc-transform-json,num_dependents_deps.dev:0 github.com/agneym/jc-viewer,num_dependents_deps.dev:0 @@ -221361,6 +226524,7 @@ github.com/agoda-com/samsahai,num_dependents_deps.dev:0 github.com/agodbehere/gitrn, github.com/agodbehere/with-venv, github.com/agodin3z/twilio-video-ios-capacitor,num_dependents_deps.dev:0 +github.com/agogear/chatgpt-pr-review, github.com/agogs/securekey-maven-plugin,num_dependents_deps.dev:0 github.com/agois-inc/sass-vary,num_dependents_deps.dev:0 github.com/agoitdev/learning-git,num_dependents_deps.dev:0 @@ -221404,6 +226568,7 @@ github.com/agonsant/brief-me-gdpr,num_dependents_deps.dev:0 github.com/agonsant/web-nexus-deployer, github.com/agonza1/cli,num_dependents_deps.dev:0 github.com/agonza40/bucket-duck,num_dependents_deps.dev:0 +github.com/agonzalezl/readme-to-notion-action, github.com/agonzalezro/logrus_honeybadger,num_dependents_deps.dev:0 github.com/agoodid/django-s3-collectstatic, github.com/agoodm/binconvert, @@ -221467,6 +226632,7 @@ github.com/agorapulse/micronaut-rethrow,num_dependents_deps.dev:0 github.com/agorapulse/micronaut-segment,num_dependents_deps.dev:0 github.com/agorapulse/micronaut-snitch,num_dependents_deps.dev:0 github.com/agorapulse/micronaut-worker,num_dependents_deps.dev:0 +github.com/agorapulse/pierrot-setup, github.com/agorapulse/remember,num_dependents_deps.dev:0 github.com/agorapulse/terraform-newrelic-monitoring-action,num_dependents_deps.dev:0 github.com/agorapulse/testing-libraries,num_dependents_deps.dev:5 @@ -221514,6 +226680,8 @@ github.com/agostone/lodash-deeps,num_dependents_deps.dev:0 github.com/agouil/segment-config-go,num_dependents_deps.dev:0 github.com/agourlay/cornichon,num_dependents_deps.dev:2 github.com/agourlay/json-2-csv,num_dependents_deps.dev:0 +github.com/agpenton/hello-world-composite-action, +github.com/agpenton/hello-world-docker-action, github.com/agpenton/k8scicd-go,num_dependents_deps.dev:0 github.com/agperson/hygroscope,num_dependents_deps.dev:0 github.com/agporto/pycpd, @@ -221652,6 +226820,7 @@ github.com/agrc-widgets/mouse-trap,num_dependents_deps.dev:0 github.com/agrc-widgets/sherlock,num_dependents_deps.dev:0 github.com/agrc/agrc.widgets,num_dependents_deps.dev:0 github.com/agrc/atom-amdbutler,num_dependents_deps.dev:0 +github.com/agrc/create-reminder-action, github.com/agrc/dojo-layer-treemap,num_dependents_deps.dev:0 github.com/agrc/eslint-config,num_dependents_deps.dev:0 github.com/agrc/eslint-config-agrc,num_dependents_deps.dev:0 @@ -221659,6 +226828,7 @@ github.com/agrc/grunt-arcgis-press,num_dependents_deps.dev:0 github.com/agrc/grunt-server-replay,num_dependents_deps.dev:0 github.com/agrc/kitchen-sink, github.com/agrc/palletjack, +github.com/agrc/reminder-action, github.com/agrc/supervisor, github.com/agrc/sweeper, github.com/agrc/usaddress, @@ -221853,6 +227023,7 @@ github.com/agtorre/gocolorize,num_dependents_deps.dev:25 github.com/agtract/node-burstsms,num_dependents_deps.dev:0 github.com/agtravis/npm-algorithms-package,num_dependents_deps.dev:0 github.com/agtumulak/dabbiew, +github.com/agu-z/gql-diff-action, github.com/agu-z/npm-publish-if-not-exists,num_dependents_deps.dev:0 github.com/agu-z/sass3js, github.com/agu3rra/oauth-pyzure, @@ -221974,6 +227145,7 @@ github.com/agusmakmun/putlocker, github.com/agusmakmun/setor, github.com/agusmakmun/welut, github.com/agusnavce/SwaggerToHtml,num_dependents_deps.dev:0 +github.com/agusprayogi02/auto-upload-gdrive, github.com/agusrichard/go-workbook,num_dependents_deps.dev:0 github.com/agussaputran/basic-crud-http,num_dependents_deps.dev:0 github.com/agussaputran/golang-extraclass,num_dependents_deps.dev:0 @@ -221983,12 +227155,14 @@ github.com/agustadewa/go-httpclient,num_dependents_deps.dev:0 github.com/agustadewa/hospital-backend,num_dependents_deps.dev:0 github.com/agustif/nuxt-boring-avatars,num_dependents_deps.dev:0 github.com/agustik/exifjs,num_dependents_deps.dev:0 +github.com/agustim/action-hidden-directory, github.com/agustim/iban-generator,num_dependents_deps.dev:0 github.com/agustin107/react-database-diagram,num_dependents_deps.dev:0 github.com/agustinaliagac/youtube-live-react,num_dependents_deps.dev:0 github.com/agustine/grunt-imageresize,num_dependents_deps.dev:0 github.com/agustine/grunt-jst,num_dependents_deps.dev:0 github.com/agustine/mod-jst,num_dependents_deps.dev:0 +github.com/agustinferrari/CodeSummaryReportTemp, github.com/agustinhaller/c-coffee-icon,num_dependents_deps.dev:0 github.com/agustinkassis/citytax-gps-log-parser,num_dependents_deps.dev:0 github.com/agustinkassis/ionic-api,num_dependents_deps.dev:0 @@ -222133,9 +227307,11 @@ github.com/ahampriyanshu/me-learning-something-new,num_dependents_deps.dev:0 github.com/ahamtat/thumbnailer,num_dependents_deps.dev:0 github.com/ahana-pediatrics/react-volume-meter, github.com/ahanafy/oidcgo,num_dependents_deps.dev:0 +github.com/ahanoff/movine-action, github.com/ahansson/hgrid-css, github.com/ahant-pabi/field-validator,num_dependents_deps.dev:0 github.com/ahaoaha/go-http-digest-auth-client,num_dependents_deps.dev:0 +github.com/ahaoboy/download-youtube-video, github.com/ahaoboy/gl-model, github.com/ahaoboy/lena-ts, github.com/ahaoboy/lottie-minify, @@ -222151,6 +227327,8 @@ github.com/aharen/thaana-keyboard,num_dependents_deps.dev:0 github.com/ahari884/biz2credit-coding-challange,num_dependents_deps.dev:0 github.com/aharikrishnan/what-domains,num_dependents_deps.dev:0 github.com/aharita/dsjs,num_dependents_deps.dev:0 +github.com/aharooms/jira-automate-transition, +github.com/aharooms/jira-commenter, github.com/aharris/browserify-inline-svg,num_dependents_deps.dev:2 github.com/aharris/flex-grid-sass,num_dependents_deps.dev:0 github.com/aharris/jayda,num_dependents_deps.dev:0 @@ -222206,6 +227384,7 @@ github.com/ahcub/jenkinsc, github.com/ahcub/os_utils, github.com/ahcub/pyftpclient, github.com/ahd99/urlshortner,num_dependents_deps.dev:0 +github.com/ahdcreative/tag-npm-version, github.com/ahdesigns/js-gen,num_dependents_deps.dev:0 github.com/ahdiaz/handlebars-helper-bundles,num_dependents_deps.dev:0 github.com/ahdiaz/handlebars-helper-formatdate,num_dependents_deps.dev:0 @@ -222385,6 +227564,7 @@ github.com/aheckmann/observed,num_dependents_deps.dev:12 github.com/aheckmann/regexp-clone,num_dependents_deps.dev:16296 github.com/aheckmann/sliced,num_dependents_deps.dev:27230 github.com/aheeva/app-framework,num_dependents_deps.dev:0 +github.com/ahege/openscenario.ci.test, github.com/aheinze/ngine,num_dependents_deps.dev:0 github.com/aheissenberger/esbuild-plugin-noflo,num_dependents_deps.dev:0 github.com/aheissenberger/esbuild-plugin-text-replace,num_dependents_deps.dev:0 @@ -222460,6 +227640,7 @@ github.com/ahianzhang/go-pracitce,num_dependents_deps.dev:0 github.com/ahiba/ahiba-antd,num_dependents_deps.dev:0 github.com/ahidalgob/pycher, github.com/ahihi/volcasample-sys,num_dependents_deps.dev:0 +github.com/ahiho/action-dotenv-to-setenv, github.com/ahiho/react-native-attributed-text,num_dependents_deps.dev:0 github.com/ahiho/react-native-livechat,num_dependents_deps.dev:0 github.com/ahiho/react-native-owl-slider,num_dependents_deps.dev:0 @@ -222551,6 +227732,7 @@ github.com/ahmadHuss/react-placenode,num_dependents_deps.dev:0 github.com/ahmadHuss/react-stickynode-update,num_dependents_deps.dev:0 github.com/ahmadHuss/styled-default,num_dependents_deps.dev:0 github.com/ahmadXtn/npm_workshop,num_dependents_deps.dev:0 +github.com/ahmadafrasiyab/s4-security-scan, github.com/ahmadaghazadeh/sevensky-cordova-plugin-intent,num_dependents_deps.dev:0 github.com/ahmadaidil/qr-reader,num_dependents_deps.dev:0 github.com/ahmadaidil/use-console-prefix,num_dependents_deps.dev:0 @@ -222678,6 +227860,20 @@ github.com/ahmadmo/math-time-series,num_dependents_deps.dev:0 github.com/ahmadmoawad/nodstarter, github.com/ahmadms1/react-native-brptouchprinter,num_dependents_deps.dev:0 github.com/ahmadmuzakki/rexec,num_dependents_deps.dev:0 +github.com/ahmadnassri/action-changed-files, +github.com/ahmadnassri/action-commit-lint, +github.com/ahmadnassri/action-dependabot-auto-merge, +github.com/ahmadnassri/action-dotenv, +github.com/ahmadnassri/action-github-registry-npm-proxy, +github.com/ahmadnassri/action-google-cloud-sql-proxy, +github.com/ahmadnassri/action-metadata, +github.com/ahmadnassri/action-npm-global-path, +github.com/ahmadnassri/action-slack-workflow-notifications, +github.com/ahmadnassri/action-template-repository-sync, +github.com/ahmadnassri/action-terraform-cloud-api, +github.com/ahmadnassri/action-terraform-report, +github.com/ahmadnassri/action-workflow-queue, +github.com/ahmadnassri/action-workflow-run-wait, github.com/ahmadnassri/alf-validator,num_dependents_deps.dev:0 github.com/ahmadnassri/api-problem,num_dependents_deps.dev:0 github.com/ahmadnassri/april-fools,num_dependents_deps.dev:0 @@ -222881,6 +228077,7 @@ github.com/ahmedhamedaly/Adverts-API, github.com/ahmedhemaz/head-first-go,num_dependents_deps.dev:0 github.com/ahmedhindi/dukto, github.com/ahmedibrahim404/amusing, +github.com/ahmedig/terraform-azurerm-backend, github.com/ahmedisam99/dfa-machine,num_dependents_deps.dev:0 github.com/ahmedjehanzaib/generate-npm-typescript-package-starter-kit, github.com/ahmedkamals/colorize,num_dependents_deps.dev:0 @@ -222932,6 +228129,7 @@ github.com/ahmedrb/capsulecrm,num_dependents_deps.dev:0 github.com/ahmedrhuma/ant-design-huemix-pro-layout,num_dependents_deps.dev:0 github.com/ahmedrhuma/react-reportbro-designer,num_dependents_deps.dev:0 github.com/ahmedrshdy/multi-logger, +github.com/ahmedsaheed/Library-box, github.com/ahmedsakr/wstrade-api,num_dependents_deps.dev:0 github.com/ahmedsalah94/ha-http, github.com/ahmedsalhin/handy_ml, @@ -222961,6 +228159,7 @@ github.com/ahmedwaleedmalik/image-mirror-controller,num_dependents_deps.dev:0 github.com/ahmedwaleedmalik/pwatcher,num_dependents_deps.dev:0 github.com/ahmedwalid05/instagram-private-api,num_dependents_deps.dev:0 github.com/ahmedwalid05/node-zendesk,num_dependents_deps.dev:0 +github.com/ahmedyarub/setup-ninja, github.com/ahmedyha/LightCouch,num_dependents_deps.dev:2 github.com/ahmedyounis/eosDapp,num_dependents_deps.dev:0 github.com/ahmedyoussef70/butterfly-template,num_dependents_deps.dev:0 @@ -223009,6 +228208,7 @@ github.com/ahmetemrekilinc/ember-world-map,num_dependents_deps.dev:0 github.com/ahmetemrekilinc/react-power-select, github.com/ahmeterenodaci/easygoogletranslate, github.com/ahmetfarukkaraca/ahmet-faruk-karaca,num_dependents_deps.dev:0 +github.com/ahmetgeymen/spectral-lint-action, github.com/ahmethalac/react-color-picker-wheel,num_dependents_deps.dev:0 github.com/ahmeti/ahmeti-core-js,num_dependents_deps.dev:0 github.com/ahmeticat/smart-datatable, @@ -223069,6 +228269,7 @@ github.com/ahnaf-zamil/async-covid, github.com/ahnaf-zamil/fastapi-server-session, github.com/ahnaf-zamil/heater, github.com/ahnaf-zamil/zenora, +github.com/ahnafnafee/action-upload-gofile, github.com/ahnbj2000/react-rolling-item,num_dependents_deps.dev:0 github.com/ahnitz/gbm, github.com/ahnjungho/naive, @@ -223150,6 +228351,7 @@ github.com/ahomu/react-carousel-ninja,num_dependents_deps.dev:0 github.com/ahomu/rx.observable.combinetemplate,num_dependents_deps.dev:0 github.com/ahonculada/proglog,num_dependents_deps.dev:0 github.com/ahonn/Nada, +github.com/ahonn/add-dida365-task-action, github.com/ahonn/gatsby-plugin-cusdis,num_dependents_deps.dev:0 github.com/ahonn/gatsby-remark-aliyun-images, github.com/ahonn/gatsby-source-github-issue,num_dependents_deps.dev:0 @@ -223242,6 +228444,7 @@ github.com/ahsan-r-kazmi/segmed-demo-back-end,num_dependents_deps.dev:0 github.com/ahsan-sys/golangpractiseproject,num_dependents_deps.dev:0 github.com/ahsanayaz/npm-ahsanayaz,num_dependents_deps.dev:0 github.com/ahsanbarkati/crankdb,num_dependents_deps.dev:0 +github.com/ahsand97/upload-assets-to-release-with-go, github.com/ahsanhabibleon/npm-package-one,num_dependents_deps.dev:0 github.com/ahsankhan1911/create-mern-app,num_dependents_deps.dev:0 github.com/ahsankhan1911/mern-boilerplate, @@ -223462,6 +228665,7 @@ github.com/ai-ot/react-ja-date-picker,num_dependents_deps.dev:0 github.com/ai-republic/http-common,num_dependents_deps.dev:3 github.com/ai-republic/http-sse,num_dependents_deps.dev:4 github.com/ai-republic/reflections,num_dependents_deps.dev:1 +github.com/ai-revise/codeql-ml, github.com/ai-se/h_anomaly, github.com/ai-se/magician_package, github.com/ai-software/testcafe-result-export,num_dependents_deps.dev:0 @@ -223473,6 +228677,7 @@ github.com/ai-zen/event-bus, github.com/ai-zubair/gql-tg, github.com/ai-zubair/gql-type-gen,num_dependents_deps.dev:0 github.com/ai-zubair/todo-app,num_dependents_deps.dev:0 +github.com/ai/asdf-cache-action, github.com/ai/audio-recorder-polyfill,"criticality_score:0.409680,num_dependents_deps.dev:4" github.com/ai/autoprefixer,num_dependents_deps.dev:304 github.com/ai/autoprefixer-cli,num_dependents_deps.dev:0 @@ -223508,6 +228713,7 @@ github.com/ai/webp-in-css,"criticality_score:0.311890,num_dependents_deps.dev:0" github.com/ai/yaspeller-ci,num_dependents_deps.dev:0 github.com/ai0by/commongo,num_dependents_deps.dev:0 github.com/ai1411/vue-typescript-go-gin-todo,num_dependents_deps.dev:0 +github.com/ai18n-xyz/github-action, github.com/ai297/create-rss-app,num_dependents_deps.dev:0 github.com/ai2cm/pace, github.com/ai2cru/vue-dadata-textarea, @@ -223520,6 +228726,7 @@ github.com/ai4reason/enigmatic, github.com/ai4reason/grackle, github.com/ai4reason/pyprove, github.com/ai5le/website-template-system,num_dependents_deps.dev:0 +github.com/aiFdn/gitwz, github.com/aia-uclouvain/pydl8.5, github.com/aiachris2k1/gorestful,num_dependents_deps.dev:0 github.com/aiae/apache-vhosts,num_dependents_deps.dev:0 @@ -223670,6 +228877,7 @@ github.com/aidalee/react-component-test,num_dependents_deps.dev:0 github.com/aidan-/httpie-aws-authv4, github.com/aidan-kwon/klaytn,num_dependents_deps.dev:0 github.com/aidan-melen/confluent_kafka_connect_cli, +github.com/aidan-mundy/react-to-issue, github.com/aidan-plenert-macdonald/pgandroid,num_dependents_deps.dev:0 github.com/aidan200/rn-ai-baidu-map,num_dependents_deps.dev:0 github.com/aidan200/webTest01,num_dependents_deps.dev:0 @@ -223689,6 +228897,7 @@ github.com/aidanmelen/awscli_bastion, github.com/aidanmelen/bobcat-miner-python, github.com/aidanmelen/cookiecutter-tf-module,num_dependents_deps.dev:0 github.com/aidanmelen/cookiecutter-tf-workspace,num_dependents_deps.dev:0 +github.com/aidanmelen/no-deploy-on-friday-action, github.com/aidanmelen/terraform-eks-cfk,num_dependents_deps.dev:0 github.com/aidanmelen/terraform-provider-snowsql,num_dependents_deps.dev:0 github.com/aidanmelen/website-checker, @@ -223765,6 +228974,7 @@ github.com/aidigidreamers/netixswap-sdk,num_dependents_deps.dev:0 github.com/aidigidreamers/netixswap-v1-core,num_dependents_deps.dev:0 github.com/aidin36/octopus-sensing-monitoring, github.com/aidistan/ruby-biotcm,num_dependents_deps.dev:0 +github.com/aidmax/structurizr-cli-action, github.com/aido179/apb-auth-client,num_dependents_deps.dev:0 github.com/aido179/apb-auth-server,num_dependents_deps.dev:0 github.com/aido179/apb-mocha-reporter,num_dependents_deps.dev:0 @@ -223793,6 +229003,8 @@ github.com/aidv/websockets-callback,num_dependents_deps.dev:0 github.com/aidvp/avpclient, github.com/aidy-jenkins/AidyAuth,num_dependents_deps.dev:0 github.com/aidy-jenkins/linq-fast, +github.com/aidy/github-action-lab, +github.com/aidy/tfsec-pr-commenter-action, github.com/aidynturarov/golevel_1-1,num_dependents_deps.dev:0 github.com/aidynturarov/golevel_1-2,num_dependents_deps.dev:0 github.com/aidynturarov/golevel_1-3,num_dependents_deps.dev:0 @@ -223816,6 +229028,7 @@ github.com/aiell0/prospectbot,num_dependents_deps.dev:0 github.com/aiellochan/oxipng,num_dependents_deps.dev:0 github.com/aielo/serverless-core-hooks,num_dependents_deps.dev:0 github.com/aielo/serverless-enhanced-config,num_dependents_deps.dev:0 +github.com/aiera-inc/action-deploy, github.com/aierui/go-training,num_dependents_deps.dev:0 github.com/aierui/tidb,num_dependents_deps.dev:0 github.com/aierwiki/keras-ex, @@ -223834,6 +229047,7 @@ github.com/aifengyi/date.js,num_dependents_deps.dev:0 github.com/aifreedom/wechat_mp,num_dependents_deps.dev:0 github.com/aifrruislabs/aifrruflowmeter, github.com/aig-upf/tarski, +github.com/aig787/cargo-udeps-action, github.com/aig787/dockyard,num_dependents_deps.dev:0 github.com/aigamedev/scikit-neuralnetwork, github.com/aigan/mv-sorter,num_dependents_deps.dev:0 @@ -223988,6 +229202,7 @@ github.com/aikei/nw-flash-trust,num_dependents_deps.dev:0 github.com/aikei/publish-all,num_dependents_deps.dev:0 github.com/aikei/redis-json,num_dependents_deps.dev:0 github.com/aikei/simple-preprocessor,num_dependents_deps.dev:0 +github.com/aiken-lang/setup-aiken, github.com/aikeru/ReactKendo,num_dependents_deps.dev:0 github.com/aikeru/react-tippy-tweak,num_dependents_deps.dev:0 github.com/aikesliu/utils,num_dependents_deps.dev:0 @@ -223996,6 +229211,7 @@ github.com/aikidoaikido115/SaRaischool, github.com/aikidos/memory-cache-rs,num_dependents_deps.dev:0 github.com/aikin-vip/egg-aikin-auth,num_dependents_deps.dev:0 github.com/aikin-vip/egg-aikin-orm,num_dependents_deps.dev:0 +github.com/aikin-vip/setup-aliyun-cli, github.com/aikin/gcli_,num_dependents_deps.dev:0 github.com/aikindergarten/fasthugs, github.com/aikizoku/go-gae-template,num_dependents_deps.dev:0 @@ -224142,6 +229358,7 @@ github.com/aimeos/aimeos-laravel,criticality_score:0.478240 github.com/aimerandern/golangwork,num_dependents_deps.dev:0 github.com/aimerandern/gowork,num_dependents_deps.dev:0 github.com/aimergenge/create-react-app,num_dependents_deps.dev:0 +github.com/aimerib/ansible-playwright, github.com/aimerneige/ddlc-plus-asset-decrypter,num_dependents_deps.dev:0 github.com/aimerneige/go-goroutine-test,num_dependents_deps.dev:0 github.com/aimerneige/restful-api-with-go,num_dependents_deps.dev:0 @@ -224168,12 +229385,14 @@ github.com/aimingoo/redpoll,num_dependents_deps.dev:0 github.com/aimingoo/sandpiper,num_dependents_deps.dev:0 github.com/aimir/irt, github.com/aimlabs/aimlabs-js-starter,num_dependents_deps.dev:0 +github.com/aimlabs/deploy-s3-action, github.com/aimlabs/dragonbones,num_dependents_deps.dev:0 github.com/aimlabs/unicorn,num_dependents_deps.dev:0 github.com/aimmanager/attaches,num_dependents_deps.dev:0 github.com/aimmlegate/project-lvl1-s232,num_dependents_deps.dev:0 github.com/aimmlegate/project-lvl2-s233,num_dependents_deps.dev:0 github.com/aimms/sphinx-aimms-theme, +github.com/aimoda/git-mcqueen, github.com/aimrie/safely-nested,num_dependents_deps.dev:0 github.com/aimsc/unret,num_dependents_deps.dev:0 github.com/aimuz/codec,num_dependents_deps.dev:0 @@ -224183,6 +229402,7 @@ github.com/aimybox/aimybox-android-sdk,num_dependents_deps.dev:0 github.com/ain-soph/alpsplot, github.com/ain-soph/trojanzoo, github.com/ain-soph/trojanzoo_sphinx_theme, +github.com/ain/falco-github-action, github.com/ain/grunt-pngcheck,num_dependents_deps.dev:0 github.com/ain/handlebars-helper-rawinclude,num_dependents_deps.dev:0 github.com/ain/smartbanner.js,"criticality_score:0.439140,num_dependents_deps.dev:2" @@ -224363,8 +229583,10 @@ github.com/aionnetwork/aion,criticality_score:0.481740 github.com/aionnetwork/aion_rlp.js,num_dependents_deps.dev:20 github.com/aionnetwork/aion_web3,num_dependents_deps.dev:1037 github.com/aioobe/cloudconvert,num_dependents_deps.dev:0 +github.com/aiops/check-log-quality-action, github.com/aiops/logsight-cli-py, github.com/aiops/logsight-sdk-py, +github.com/aiops/logsight-verification-action, github.com/aiorb/aiorb, github.com/aiorequest/aiorequest, github.com/aiorhiroki/farmer.pytorch, @@ -224551,6 +229773,8 @@ github.com/airbnb/synapse,criticality_score:0.391100 github.com/airbnb/ts-migrate,"criticality_score:0.390970,num_dependents_deps.dev:4" github.com/airbnb/visx,criticality_score:0.556900 github.com/airbnb/zonify,num_dependents_deps.dev:0 +github.com/airbone95/dockerhub-retag, +github.com/airbone95/ghcr-retag, github.com/airborne007/v2sub, github.com/airbornemint/gitbook-plugin-plasma,num_dependents_deps.dev:0 github.com/airbornos/grunt-airbornos,num_dependents_deps.dev:0 @@ -224801,6 +230025,8 @@ github.com/airplake/mdc-sms-alidayu,num_dependents_deps.dev:0 github.com/airplake/mdc-sms-aliyun,num_dependents_deps.dev:0 github.com/airplake/mdc-weixin,num_dependents_deps.dev:0 github.com/airplake/np-q-producer,num_dependents_deps.dev:0 +github.com/airplanedev/action-build-and-deploy, +github.com/airplanedev/airplane-deploy, github.com/airplanedev/archiver,num_dependents_deps.dev:0 github.com/airplanedev/cli,num_dependents_deps.dev:1 github.com/airplanedev/dlog,num_dependents_deps.dev:0 @@ -224881,6 +230107,7 @@ github.com/airshipteam/node-red-contrib-airship-soap,num_dependents_deps.dev:0 github.com/airsim/airinv, github.com/airsim/rmol, github.com/airslate-oss/python-airslate, +github.com/airslate-oss/setup-specmatic, github.com/airsonic/airsonic,criticality_score:0.401220 github.com/airsonic/checkstyle,num_dependents_deps.dev:0 github.com/airsounds/airsounds.github.io,num_dependents_deps.dev:0 @@ -224957,12 +230184,14 @@ github.com/airtonazevedo/react-navigation-modal,num_dependents_deps.dev:0 github.com/airtonespindola/estados-cidades,num_dependents_deps.dev:0 github.com/airtongit/basemysql,num_dependents_deps.dev:0 github.com/airtonix/angular-named-routes,num_dependents_deps.dev:0 +github.com/airtonix/checkbox-action, github.com/airtonix/cmsplugin-configurableproduct, github.com/airtonix/cmsplugin-embedded-menu, github.com/airtonix/cmsplugin-embedded-pages, github.com/airtonix/django-guardianpie, github.com/airtonix/django-piehunter, github.com/airtonix/gastropod-task-sass,num_dependents_deps.dev:0 +github.com/airtonix/merge-release-hotfix-action, github.com/airtonix/template-nunjucks,num_dependents_deps.dev:0 github.com/airtonix/wintersmith-mounter,num_dependents_deps.dev:0 github.com/airtoxin/BanditAPI,num_dependents_deps.dev:0 @@ -224997,9 +230226,12 @@ github.com/airtrik/airtrik-react,num_dependents_deps.dev:0 github.com/airtrik/node,num_dependents_deps.dev:0 github.com/airtrik/python, github.com/airtucha/stage,num_dependents_deps.dev:0 +github.com/airuleguy/s3-cp-action, github.com/airvantage/vleet,num_dependents_deps.dev:0 github.com/airve/airve.github.io,num_dependents_deps.dev:0 github.com/airvert/mysqldump,num_dependents_deps.dev:0 +github.com/airvzxf/cache-anything-new-action, +github.com/airvzxf/ftp-deployment-action, github.com/airvzxf/sniparinject, github.com/airwa/airwater, github.com/airwallex/airwallex-payment-android,num_dependents_deps.dev:0 @@ -225060,7 +230292,9 @@ github.com/aiselis/apyum, github.com/aiselis/tispost, github.com/aiseno/access,num_dependents_deps.dev:0 github.com/aisensiy/raml2test,num_dependents_deps.dev:0 +github.com/aisensiy/update-postman-schema-action, github.com/aiserg/react-native-snackbar,num_dependents_deps.dev:0 +github.com/aisevim/commit-harmonizer-action, github.com/aisforaaron/cursepurse,num_dependents_deps.dev:0 github.com/aish2809/gomath_pkg,num_dependents_deps.dev:0 github.com/aishahasmoh/RDF2SRL, @@ -225178,9 +230412,12 @@ github.com/aitoroses/freshman,num_dependents_deps.dev:0 github.com/aitoroses/lsbridge,num_dependents_deps.dev:0 github.com/aitoroses/transitionable-js,num_dependents_deps.dev:0 github.com/aitoroses/vulcanize-loader,num_dependents_deps.dev:0 +github.com/aitorres/aws-s3-create-bucket, +github.com/aitorres/aws-s3-delete-bucket, github.com/aitorres/gutenberg2kindle, github.com/aitorres/ludovico, github.com/aitorres/oneup, +github.com/aitorvs/github-asana-action, github.com/aitournament/rps-client-nodejs,num_dependents_deps.dev:0 github.com/aitrek/deepsight, github.com/aitrek/intent_classifier, @@ -225247,6 +230484,7 @@ github.com/aivizionz/golang-projects,num_dependents_deps.dev:0 github.com/aivodji/fairules, github.com/aivodji/pyfaircorelsdemo, github.com/aivuk/formcreator, +github.com/aivus/homey-validate-action, github.com/aiwebb/bimodal,num_dependents_deps.dev:0 github.com/aiwebb/errdrop,num_dependents_deps.dev:0 github.com/aiwebb/modules-in,num_dependents_deps.dev:0 @@ -225395,6 +230633,7 @@ github.com/ajagekarakshay/foam, github.com/ajagnanan/serverless-global-templates,num_dependents_deps.dev:0 github.com/ajagnic/structures,num_dependents_deps.dev:0 github.com/ajahiri/jpeg-exif,num_dependents_deps.dev:0 +github.com/ajai-sandy/pr-sentry-id-lint, github.com/ajaijohn/ajai-hello,num_dependents_deps.dev:0 github.com/ajain10003/golang_fiftyfive,num_dependents_deps.dev:0 github.com/ajainarayanan/react-dag,num_dependents_deps.dev:0 @@ -225411,8 +230650,10 @@ github.com/ajainvivek/react-aztec,num_dependents_deps.dev:0 github.com/ajainvivek/react-memory,num_dependents_deps.dev:0 github.com/ajainvivek/react-stickies,num_dependents_deps.dev:0 github.com/ajainvivek/react-typescript-boilerplate,num_dependents_deps.dev:0 +github.com/ajainvivek/slack-notify-release, github.com/ajainy/snapcx-tracking-sdk,num_dependents_deps.dev:0 github.com/ajakef/gemlog, +github.com/ajakov/twig-dump-checker, github.com/ajakubek/python-llist, github.com/ajakubo1/CanvasMenu,num_dependents_deps.dev:0 github.com/ajakubo1/game-prototyper,num_dependents_deps.dev:0 @@ -225445,6 +230686,8 @@ github.com/ajanieniolasolomon/ngnews,num_dependents_deps.dev:0 github.com/ajanin/uni2ascii, github.com/ajansari95/blockchain-project,num_dependents_deps.dev:0 github.com/ajansen-tub/pyomac, +github.com/ajanth-thangavelu-rillion/signtool-code-sign, +github.com/ajanth-thangavelu-rillion/upload-release-asset, github.com/ajantonov/dataservice,num_dependents_deps.dev:0 github.com/ajarv/kafgo,num_dependents_deps.dev:0 github.com/ajaska/creativity, @@ -225536,9 +230779,12 @@ github.com/ajaybhatt17/DbCDN,num_dependents_deps.dev:0 github.com/ajaybhatt17/SheetAPI,num_dependents_deps.dev:0 github.com/ajaybhatt17/wordnet-hi,num_dependents_deps.dev:0 github.com/ajaychatterjee/IntentMining, +github.com/ajaychinthapalli/custom-github-action-archive, github.com/ajaydeta/go-nik-parser,num_dependents_deps.dev:0 github.com/ajayesivan/react-native-remix-icon,num_dependents_deps.dev:0 github.com/ajayimade/Gauthify-Node,num_dependents_deps.dev:0 +github.com/ajayk/setup-kind, +github.com/ajaykn-test-rename-org-new/test-repo, github.com/ajaykr089/react-native-ete-rich-editor, github.com/ajaykumar97/react-native-simple-logger,num_dependents_deps.dev:0 github.com/ajaykumar97/react-native-template,num_dependents_deps.dev:0 @@ -225618,6 +230864,7 @@ github.com/ajb32x/hero,num_dependents_deps.dev:0 github.com/ajb413/pubnub-functions-mock,num_dependents_deps.dev:0 github.com/ajbalogh/ixnetwork_client_python, github.com/ajbansal/protobuf-tools, +github.com/ajbarga/deploy-gh-pages, github.com/ajbarry3/createjs-module,num_dependents_deps.dev:4 github.com/ajbarry3/easel-gl,num_dependents_deps.dev:0 github.com/ajbeach2/drf-elasticsearch-dsl, @@ -225646,6 +230893,7 @@ github.com/ajchambeaud/make-action-creator,num_dependents_deps.dev:0 github.com/ajcky/go-everyday,num_dependents_deps.dev:0 github.com/ajclopez/mongo-spring-search,num_dependents_deps.dev:0 github.com/ajcm/tugalife,num_dependents_deps.dev:0 +github.com/ajcpwnz/action-slack-notify, github.com/ajcpwnz/apporter,num_dependents_deps.dev:0 github.com/ajcr/ccc, github.com/ajcr/rolling, @@ -225783,6 +231031,8 @@ github.com/ajijohn/dfaas, github.com/ajikurniawan22/mra-test-golang,num_dependents_deps.dev:0 github.com/ajilantang/Numeric,num_dependents_deps.dev:0 github.com/ajile/ember-cli-geolocation, +github.com/ajilraju/actions-date, +github.com/ajilraju/helloworld-actions, github.com/ajilraju/pypa-helloworld, github.com/ajimae/base64-2-img,num_dependents_deps.dev:0 github.com/ajimae/ncrypt-js,num_dependents_deps.dev:0 @@ -225792,6 +231042,7 @@ github.com/ajimix/sendpass,num_dependents_deps.dev:0 github.com/ajin/n8n-nodes-deconz,num_dependents_deps.dev:0 github.com/ajinabraham/libsast, github.com/ajinabraham/njsscan, +github.com/ajinabraham/njsscan-action, github.com/ajinabraham/nodejsscan,criticality_score:0.409040 github.com/ajinasokan/goinit,num_dependents_deps.dev:0 github.com/ajinasokan/xvm,num_dependents_deps.dev:0 @@ -225800,8 +231051,11 @@ github.com/ajinkabeer/react-lite-toast,num_dependents_deps.dev:0 github.com/ajinkay/repo1,num_dependents_deps.dev:0 github.com/ajinkya-bhandare/grpc-server,num_dependents_deps.dev:0 github.com/ajinkya1221/npm-learn,num_dependents_deps.dev:0 +github.com/ajinkya599/container-scan, github.com/ajinkyawarkad/gotraining,num_dependents_deps.dev:0 github.com/ajinkyawarkad/session,num_dependents_deps.dev:0 +github.com/ajinx/selenoid, +github.com/ajinx/zalenium, github.com/ajipandean/todo_api,num_dependents_deps.dev:0 github.com/ajiprio01/golang-solution,num_dependents_deps.dev:0 github.com/ajiraj2411/leetcode,num_dependents_deps.dev:0 @@ -226131,6 +231385,7 @@ github.com/ajmunton/http_request_aggregator, github.com/ajmwagar/bdd,num_dependents_deps.dev:0 github.com/ajmwagar/bliss,num_dependents_deps.dev:0 github.com/ajmwagar/cronic,num_dependents_deps.dev:0 +github.com/ajmwagar/laat, github.com/ajmwagar/lor-axe,num_dependents_deps.dev:0 github.com/ajmwagar/merino,num_dependents_deps.dev:0 github.com/ajmwagar/primeval-rs,num_dependents_deps.dev:0 @@ -226690,6 +231945,7 @@ github.com/akalittle/leetcode-go,num_dependents_deps.dev:0 github.com/akallabet/gulp-rev-all,num_dependents_deps.dev:0 github.com/akalongman/sublimetext-codeformatter,criticality_score:0.352640 github.com/akalsey/textchunk,num_dependents_deps.dev:2 +github.com/akamai-contrib/akamai-deploy-dns-zone-github-action, github.com/akamai-contrib/byztimed,num_dependents_deps.dev:1 github.com/akamai-open/AkamaiOPEN-edgegrid-node,num_dependents_deps.dev:10 github.com/akamai-open/AkamaiOPEN-edgegrid-ruby,num_dependents_deps.dev:1 @@ -226869,6 +232125,7 @@ github.com/akanass/rx-http-request, github.com/akanass/rx-otp, github.com/akanass/rx-socket-client, github.com/akanatr/thead,num_dependents_deps.dev:0 +github.com/akandeBolaji/change-dependency-package, github.com/akane10/akane,num_dependents_deps.dev:0 github.com/akane10/git-status-watcher, github.com/akane10/hewhew,num_dependents_deps.dev:0 @@ -226878,6 +232135,7 @@ github.com/akangakang/cloud-computing-lab,num_dependents_deps.dev:0 github.com/akanibekuly/go_mail_coursera,num_dependents_deps.dev:0 github.com/akanieski/file-stream-reader,num_dependents_deps.dev:0 github.com/akanieski/http-proxy-table,num_dependents_deps.dev:0 +github.com/akanieski/setup-postgres-cli, github.com/akanimax/attn_gan_pytorch, github.com/akanimax/pro_gan_pytorch,criticality_score:0.302250 github.com/akanksha-devp/Googlesheets, @@ -226951,8 +232209,11 @@ github.com/akaruilabs-india/nacl-encrypt,num_dependents_deps.dev:0 github.com/akarys42/aegir, github.com/akarzim/hexo-tag-fontawesome,num_dependents_deps.dev:0 github.com/akarzim/image-sitemaps, +github.com/akasaka-tr/sam-deploy-action, github.com/akasalah/saudiarabia-to-bahrain-time,num_dependents_deps.dev:0 github.com/akasata/rmake-notation,num_dependents_deps.dev:0 +github.com/akasati02/Topaz_Workbench_CLI_Test, +github.com/akasati02/getting-started-github-action, github.com/akash-basavaraju/create-react-package-env,num_dependents_deps.dev:0 github.com/akash-basavaraju/react-icon-popup,num_dependents_deps.dev:0 github.com/akash-basavaraju/react-toaster-minimal,num_dependents_deps.dev:0 @@ -226972,6 +232233,7 @@ github.com/akash-joshi/neural-color-picker,num_dependents_deps.dev:0 github.com/akash-joshi/react-s3-file-uploader,num_dependents_deps.dev:0 github.com/akash-mitra/vue-image-browser,num_dependents_deps.dev:0 github.com/akash-nayak/gopacheconfig,num_dependents_deps.dev:0 +github.com/akash-network/action-wip, github.com/akash0824/fbpageplc, github.com/akash0824/mytry, github.com/akash0824/tweetsold, @@ -227092,6 +232354,8 @@ github.com/akashjeez/azurestapi, github.com/akashjindal347/Python-Packages, github.com/akashjindal347/Topsis, github.com/akashkaushik33/node-wp-authenticator,num_dependents_deps.dev:0 +github.com/akashkaveti/argocd-sync, +github.com/akashkaveti/helm-chart-replicate, github.com/akashkrishnan/node-deepmerge,num_dependents_deps.dev:0 github.com/akashkrishnan/node-package-dependency-tester,num_dependents_deps.dev:0 github.com/akashkrishnan/node-zagat,num_dependents_deps.dev:0 @@ -227264,6 +232528,7 @@ github.com/akc8012/clignore,num_dependents_deps.dev:0 github.com/akcarsten/bitfinex_api, github.com/akcarsten/duplicates, github.com/akccakcctw/darkli,num_dependents_deps.dev:0 +github.com/akccakcctw/docker-pnpm, github.com/akccakcctw/generator-pugass,num_dependents_deps.dev:0 github.com/akccakcctw/json-parse-cli,num_dependents_deps.dev:0 github.com/akccakcctw/vuepress-plugin-last-updated-by, @@ -227282,6 +232547,7 @@ github.com/akdarrah/onepost-gem,num_dependents_deps.dev:0 github.com/akdarrah/onepost-ui,num_dependents_deps.dev:0 github.com/akdel/local-sensitivity-hashing, github.com/akdetrick/postcss-seldon,num_dependents_deps.dev:0 +github.com/akdev1l/copr-build, github.com/akdiaz/LPD, github.com/akdombrowski/jot,num_dependents_deps.dev:0 github.com/akdombrowski/jwt-authn, @@ -227389,6 +232655,7 @@ github.com/akexorcist/Android-ScreenshotDetection,num_dependents_deps.dev:0 github.com/akexorcist/Localization,criticality_score:0.338760 github.com/akexorcist/ScreenOrientationHelper,num_dependents_deps.dev:0 github.com/akexorcist/TextureViewVideoScaler,num_dependents_deps.dev:0 +github.com/akeyless-community/akeyless-github-action, github.com/akeylesslabs/akeyless-go,num_dependents_deps.dev:0 github.com/akeylesslabs/akeyless-go-cloud-id,num_dependents_deps.dev:0 github.com/akeylesslabs/custom-producer,num_dependents_deps.dev:0 @@ -227459,6 +232726,7 @@ github.com/akhenakh/sataas,num_dependents_deps.dev:0 github.com/akhenaten-sama/go-fintech,num_dependents_deps.dev:0 github.com/akhenaten-sama/go-gres,num_dependents_deps.dev:0 github.com/akheron/cubejs,num_dependents_deps.dev:0 +github.com/akheron/dependabot-cron-action, github.com/akheron/jansson,criticality_score:0.520140 github.com/akheron/optics-ts,num_dependents_deps.dev:2 github.com/akheron/sqltyper,num_dependents_deps.dev:0 @@ -227483,7 +232751,9 @@ github.com/akhilarjun/easy-node-snippets,num_dependents_deps.dev:0 github.com/akhilarjun/zen-components,num_dependents_deps.dev:0 github.com/akhilbidhuri/shophere,num_dependents_deps.dev:0 github.com/akhilchandrangit/react-skeleton-loader, +github.com/akhildaphara/quote-readme, github.com/akhildhanuka/slush-ppp-generator,num_dependents_deps.dev:0 +github.com/akhilerm/tag-push-action, github.com/akhilesh-mourya/react-native-amazon-authentication,num_dependents_deps.dev:0 github.com/akhilesh-sirohi/freshers-bootcamp,num_dependents_deps.dev:0 github.com/akhilesh18992/glog,num_dependents_deps.dev:0 @@ -227503,6 +232773,7 @@ github.com/akhilkumarpilli/cosmos-sdk,num_dependents_deps.dev:0 github.com/akhilles/crc-catalog,num_dependents_deps.dev:87 github.com/akhilmaskeri/mangamon, github.com/akhilmern/javascripttest,num_dependents_deps.dev:0 +github.com/akhilmhdh/contributors-readme-action, github.com/akhilmohanan/angular-otpVerification,num_dependents_deps.dev:0 github.com/akhilmohanan/ng-otp,num_dependents_deps.dev:0 github.com/akhilmukkamala/socialsignals,num_dependents_deps.dev:0 @@ -227609,12 +232880,16 @@ github.com/aki77/actions-replace-comment,num_dependents_deps.dev:0 github.com/aki77/atom-input-dialog,num_dependents_deps.dev:0 github.com/aki77/atom-select-action,num_dependents_deps.dev:0 github.com/aki77/blank-guard,num_dependents_deps.dev:0 +github.com/aki77/changed-lines-number-action, github.com/aki77/decoru,num_dependents_deps.dev:0 +github.com/aki77/delete-pr-comments-action, github.com/aki77/html-pipeline-highlight,num_dependents_deps.dev:0 github.com/aki77/html-pipeline-image_link,num_dependents_deps.dev:0 github.com/aki77/json-storage-factory,num_dependents_deps.dev:0 +github.com/aki77/new-gems-action, github.com/aki77/oembed-element,num_dependents_deps.dev:0 github.com/aki77/safer_initialize,num_dependents_deps.dev:0 +github.com/aki77/simplecov-report-action, github.com/aki77/undercover-checkstyle,num_dependents_deps.dev:0 github.com/aki77/vue-textcomplete,num_dependents_deps.dev:0 github.com/akiFQC/AlignUnformEval, @@ -227643,6 +232918,7 @@ github.com/akif999/super_relay_machine,num_dependents_deps.dev:0 github.com/akif999/tinygo,num_dependents_deps.dev:0 github.com/akiflow/electron-panel-window,num_dependents_deps.dev:0 github.com/akiflow/tlds-list,num_dependents_deps.dev:0 +github.com/akifmt/github-update-recent-commits, github.com/akifo/now-builder,num_dependents_deps.dev:0 github.com/akifo/nuxt-jsonld,num_dependents_deps.dev:0 github.com/akifo/simple-auth-client,num_dependents_deps.dev:0 @@ -227742,6 +233018,7 @@ github.com/akilli/ckeditor5-build-classic,num_dependents_deps.dev:0 github.com/akilli/ckeditor5-build-inline,num_dependents_deps.dev:0 github.com/akilli/ckeditor5-media,num_dependents_deps.dev:0 github.com/akilli/editor,num_dependents_deps.dev:0 +github.com/akillisatici/s3-upload-action, github.com/akillmer/shopify-theme-sync-plugin,num_dependents_deps.dev:0 github.com/akim-mcmath/chai-iterator,num_dependents_deps.dev:0 github.com/akim-mcmath/deep-map,num_dependents_deps.dev:0 @@ -227816,6 +233093,24 @@ github.com/akio532/golang_course,num_dependents_deps.dev:0 github.com/akiocloud/ng5-breadcrumb,num_dependents_deps.dev:0 github.com/akiocloud/ng5-time-picker,num_dependents_deps.dev:0 github.com/akioguru/cryptowallethash, +github.com/akiojin/appcenter-distribute-github-action, +github.com/akiojin/auto-review-github-action, +github.com/akiojin/azure-publish-profile-github-action, +github.com/akiojin/clean-workspace-github-action, +github.com/akiojin/decode-base64-github-action, +github.com/akiojin/generate-mac-installer-github-action, +github.com/akiojin/install-provisioning-profile-github-action, +github.com/akiojin/p4-get-latest-github-action, +github.com/akiojin/setup-p4-github-action, +github.com/akiojin/setup-store-connect-api-json-github-action, +github.com/akiojin/setup-unity-cache-github-action, +github.com/akiojin/setup-xcode-environment-github-action, +github.com/akiojin/store-git-credential-github-action, +github.com/akiojin/ue-build-github-action, +github.com/akiojin/unity-build-github-action, +github.com/akiojin/unity-command-github-action, +github.com/akiojin/unity-get-version-github-action, +github.com/akiojin/xcode-build-github-action, github.com/akiokio/ReactSignupLoginComponent,num_dependents_deps.dev:0 github.com/akiokio/ak-starwars-names, github.com/akiokio/django-geoposition, @@ -228015,6 +233310,7 @@ github.com/akki-jat/one-for-all,num_dependents_deps.dev:0 github.com/akki-jat/one-for-all-ui,num_dependents_deps.dev:0 github.com/akki-ng/loopback-connector-mgage,num_dependents_deps.dev:0 github.com/akki-ng/react-native-essentials,num_dependents_deps.dev:0 +github.com/akki192/aws-sns-publish-notifications, github.com/akki2825/aeneas, github.com/akkiei/indexed-DB,num_dependents_deps.dev:0 github.com/akkinoc/yaml-resource-bundle,num_dependents_deps.dev:0 @@ -228036,6 +233332,7 @@ github.com/akkoro/assemblylift-iomod-stdlib,num_dependents_deps.dev:1 github.com/akkoro/rotary, github.com/akkovachev/akidentity,num_dependents_deps.dev:0 github.com/akku2558/sayhello,num_dependents_deps.dev:0 +github.com/akkuman/gitea-release-action, github.com/akkuman/logrus-loki-hook,num_dependents_deps.dev:0 github.com/akkuman/notiontomd, github.com/akkuman/zaploki,num_dependents_deps.dev:0 @@ -228043,6 +233340,7 @@ github.com/akkumar/maven-hadoop,num_dependents_deps.dev:0 github.com/akkumar/ngx-easypiechart,num_dependents_deps.dev:0 github.com/akkumar/tetracss,num_dependents_deps.dev:0 github.com/akkunchoi/log4js-appenders-message-filter,num_dependents_deps.dev:0 +github.com/aklagoo/replace-env, github.com/aklaiber/json_factory,num_dependents_deps.dev:0 github.com/aklajnert/changelogd, github.com/aklajnert/graphanno, @@ -228259,6 +233557,7 @@ github.com/akonwi/eventuality,num_dependents_deps.dev:0 github.com/akonwi/ezlinkedin,num_dependents_deps.dev:0 github.com/akonwi/git-plus,criticality_score:0.353620 github.com/akonwi/qubits,num_dependents_deps.dev:0 +github.com/akopachov/git-clang-format-diff-action, github.com/akopachov/lodash-decorators,num_dependents_deps.dev:0 github.com/akopachov/mini-linq-js,num_dependents_deps.dev:0 github.com/akopchinskiy/knockout-classBindingProvider,num_dependents_deps.dev:0 @@ -228306,6 +233605,7 @@ github.com/akos/create-akos,num_dependents_deps.dev:0 github.com/akos/egg-nos, github.com/akos/router,num_dependents_deps.dev:0 github.com/akos0215/couchmigrate,num_dependents_deps.dev:0 +github.com/akosbalasko/coffee-readme, github.com/akosbalasko/text-tokenizer,num_dependents_deps.dev:0 github.com/akosbalasko/yarle,num_dependents_deps.dev:0 github.com/akosbalasko/zoottelkeeper,num_dependents_deps.dev:0 @@ -228365,6 +233665,7 @@ github.com/akraino-edge-stack/icn-sdwan,num_dependents_deps.dev:0 github.com/akraino-edge-stack/iec,num_dependents_deps.dev:0 github.com/akraino-edge-stack/kni-installer,num_dependents_deps.dev:0 github.com/akramabdelrahman/create-react-app,num_dependents_deps.dev:0 +github.com/akramfares/tailscale-github-action, github.com/akramk22/react-happytext,num_dependents_deps.dev:0 github.com/akrammustafa/go,num_dependents_deps.dev:0 github.com/akramsaouri/explore.js,num_dependents_deps.dev:0 @@ -228408,11 +233709,14 @@ github.com/akrog/nos_brick, github.com/akrog/pysmee, github.com/akrog/sqlexceller, github.com/akroma-project/typesafe-web3,num_dependents_deps.dev:0 +github.com/akromio/setup-carboni, +github.com/akromio/setup-gattuso, github.com/akronimblack/stock,num_dependents_deps.dev:0 github.com/akronpow/palindrome,num_dependents_deps.dev:0 github.com/akropolis7/angular-json-modifer,num_dependents_deps.dev:0 github.com/akropolisio/akropolis-web,num_dependents_deps.dev:0 github.com/akropolisio/polkahub-cli,num_dependents_deps.dev:0 +github.com/akropolisio/subgraph-status-action, github.com/akropolisio/typechain-target-web3-rxjs,num_dependents_deps.dev:0 github.com/akropolisio/web3-wallets-kit,num_dependents_deps.dev:76 github.com/akropp/homebridge-savantaudio, @@ -228470,6 +233774,7 @@ github.com/akserg/ng2-slim-loading-bar,num_dependents_deps.dev:14 github.com/akserg/ng2-toasty,num_dependents_deps.dev:36 github.com/akseyh/shopping-product-info,num_dependents_deps.dev:0 github.com/aksgithub/kube_remediator,num_dependents_deps.dev:0 +github.com/aksh1618/update-aur-package, github.com/aksh45/climailsystem, github.com/aksh93/greetr,num_dependents_deps.dev:0 github.com/akshansh05/crud_go_sql,num_dependents_deps.dev:0 @@ -228536,6 +233841,8 @@ github.com/akshay1malta/countries,num_dependents_deps.dev:0 github.com/akshay2000/Pychkari, github.com/akshay2211/PixImagePicker,criticality_score:0.360110 github.com/akshay2218/login-sdk,num_dependents_deps.dev:0 +github.com/akshay5995/cambios, +github.com/akshay5995/pnpm-changed-packages-action, github.com/akshay5995/powerbi-report-component,num_dependents_deps.dev:0 github.com/akshay5995/simple-snackbar, github.com/akshay9/react-3d-cube-transition,num_dependents_deps.dev:0 @@ -228610,6 +233917,7 @@ github.com/akshayraichur/random-names,num_dependents_deps.dev:0 github.com/akshayrawat/dj_mon,num_dependents_deps.dev:0 github.com/akshayreddykotha/peopleanalyticsdata, github.com/akshayrsenal/gofilereader,num_dependents_deps.dev:0 +github.com/akshaysasidrn/stale-label-fetch, github.com/akshaysethi2272005/rootoi, github.com/akshaysoni8707/MaterialDrawn,num_dependents_deps.dev:0 github.com/akshayupadhya/json-view,num_dependents_deps.dev:0 @@ -228627,6 +233935,7 @@ github.com/akshendra/mapenv,num_dependents_deps.dev:0 github.com/akshendra/mapofenv, github.com/akshendra/require-easy,num_dependents_deps.dev:0 github.com/akshendra/safely-parse-json,num_dependents_deps.dev:0 +github.com/akshens/semver-tag, github.com/akshetpandey/react-native-cronet,num_dependents_deps.dev:0 github.com/akshetpandey/react-native-gles,num_dependents_deps.dev:0 github.com/akshit5230/React-Native-Bubble-Chart,num_dependents_deps.dev:0 @@ -228659,6 +233968,7 @@ github.com/akshut/pop3,num_dependents_deps.dev:0 github.com/aksieb/100561,num_dependents_deps.dev:0 github.com/aksiksi/everexport,num_dependents_deps.dev:0 github.com/aksildoescode/studio-player,num_dependents_deps.dev:0 +github.com/aksiome/minecraft-package, github.com/aksl337/torrent_scraper, github.com/aksnzhy/xlearn,criticality_score:0.364260 github.com/aksoeo/client-js,num_dependents_deps.dev:0 @@ -228696,10 +234006,12 @@ github.com/akthrms/bntmk,num_dependents_deps.dev:0 github.com/aktin/broker,num_dependents_deps.dev:63 github.com/aktindo/some-random-cat,num_dependents_deps.dev:0 github.com/aktionariat/contracts,num_dependents_deps.dev:0 +github.com/aktions/codeclimate-test-reporter, github.com/aktionskarten/AktionskartenMarker,num_dependents_deps.dev:0 github.com/aktitarov/countries-js,num_dependents_deps.dev:0 github.com/aktitarov/wait_for,num_dependents_deps.dev:0 github.com/aktiur/data-france, +github.com/akto-api-security/run-scan, github.com/aktoluna/SeleniumArchitecture,num_dependents_deps.dev:401 github.com/aktriver/chatwork-api-client,num_dependents_deps.dev:0 github.com/aktriver/tailwind-type-generator,num_dependents_deps.dev:0 @@ -228717,6 +234029,7 @@ github.com/akualii/ak-devcamp-js-footer,num_dependents_deps.dev:0 github.com/akubera/aberdeen, github.com/akubera/bigdecimal-rs,num_dependents_deps.dev:176 github.com/akucchi/bakkesmod-cli,num_dependents_deps.dev:0 +github.com/akuchin/sam-beta-cdk-action, github.com/akucukelbir/stanhelper, github.com/akud/aws-s3-sync-by-hash,num_dependents_deps.dev:0 github.com/akud/logging,num_dependents_deps.dev:0 @@ -228738,6 +234051,8 @@ github.com/akuhtz/pi4j,num_dependents_deps.dev:15 github.com/akuhtz/proxy-vole,num_dependents_deps.dev:2 github.com/akuhtz/vfsjfilechooser2,num_dependents_deps.dev:0 github.com/akuimov/project-lvl2-s341,num_dependents_deps.dev:0 +github.com/akuity/bookkeeper, +github.com/akuity/kargo-render-action, github.com/akukowski/test-data-provider,num_dependents_deps.dev:0 github.com/akukulanski/kybonet, github.com/akula410/helper,num_dependents_deps.dev:0 @@ -228866,6 +234181,7 @@ github.com/akwanmaroso/saber,num_dependents_deps.dev:0 github.com/akwebmedia/test,num_dependents_deps.dev:0 github.com/akwebmedia2/launchnataiveapp,num_dependents_deps.dev:0 github.com/akwesinketia/akwesipackage, +github.com/akwodkiewicz/simple-pr-stats, github.com/akx/django-managerie, github.com/akx/ghpg,num_dependents_deps.dev:0 github.com/akx/lepo, @@ -228913,6 +234229,7 @@ github.com/al-chaudhari/ig,num_dependents_deps.dev:0 github.com/al-chaudhari/nnpm,num_dependents_deps.dev:0 github.com/al-chaudhari/sleep,num_dependents_deps.dev:0 github.com/al-chaudhari/todo,num_dependents_deps.dev:0 +github.com/al-cheb/configure-pagefile-action, github.com/al-gas/golang,num_dependents_deps.dev:0 github.com/al-ib/project,num_dependents_deps.dev:0 github.com/al-jshen/alea,num_dependents_deps.dev:0 @@ -229053,6 +234370,7 @@ github.com/aladhims/react-avatar-uploader,num_dependents_deps.dev:0 github.com/aladhims/shortener,num_dependents_deps.dev:0 github.com/aladmit/pulumi-yandex,num_dependents_deps.dev:0 github.com/aladyn172/get-twitter-followings,num_dependents_deps.dev:0 +github.com/alaegin/Detekt-Action, github.com/alafanechere/harmonizer, github.com/alafr/SVG-to-PDFKit,num_dependents_deps.dev:838 github.com/alagafonov/subscribe-js-sdk,num_dependents_deps.dev:0 @@ -229060,6 +234378,7 @@ github.com/alagarajaR/censorify-0.1.1,num_dependents_deps.dev:0 github.com/alageek/django-tumblr-auth, github.com/alago1/React-DrawSVG, github.com/alagoa/libpcapy, +github.com/alagos/regex-merge, github.com/alagunto/robbit,num_dependents_deps.dev:0 github.com/alai-arpas/alai-ora-unicorn,num_dependents_deps.dev:0 github.com/alai-arpas/do-not-use-me,num_dependents_deps.dev:0 @@ -229079,6 +234398,7 @@ github.com/alain-andre/bootstrap3_mootools,num_dependents_deps.dev:0 github.com/alain-andre/random_coordinates,num_dependents_deps.dev:0 github.com/alain21218/angular-x-alerts,num_dependents_deps.dev:0 github.com/alain21218/angular-x-tabs, +github.com/alainQtec/deploy-react-to-ghpages, github.com/alainburindi/graphene_generator, github.com/alaincao/bosun,num_dependents_deps.dev:0 github.com/alaindeseine/astrophysics-library, @@ -229182,6 +234502,7 @@ github.com/alaminmishu/vscode-tutorial,num_dependents_deps.dev:0 github.com/alaminmishu/vsgitbash,num_dependents_deps.dev:0 github.com/alaminopu/drf-spirit, github.com/alaminopu/ng-blueimp-gallery,num_dependents_deps.dev:0 +github.com/alamirault/composer-audit-action, github.com/alamkanak/Android-Week-View,"criticality_score:0.339450,num_dependents_deps.dev:0" github.com/alamminsalo/chords,num_dependents_deps.dev:0 github.com/alammm/lemon-py,num_dependents_deps.dev:0 @@ -229419,6 +234740,7 @@ github.com/alanherediag/test-casbin,num_dependents_deps.dev:0 github.com/alanherediag/test-jwt,num_dependents_deps.dev:0 github.com/alanhg/alfred-utils,num_dependents_deps.dev:0 github.com/alanhg/react-eslint-recommend-rule,num_dependents_deps.dev:0 +github.com/alanhg/repo-star-count-action, github.com/alanhg/stacker-eslint-config-react, github.com/alanhg/tslint-recommend-rule,num_dependents_deps.dev:0 github.com/alanhhwong/challonge-node,num_dependents_deps.dev:0 @@ -229461,6 +234783,7 @@ github.com/alanjds/wsgi-seo-js, github.com/alanjhonnes/angular-moment-picker,num_dependents_deps.dev:0 github.com/alanjoshua/gogo_scraper, github.com/alank64/json-schema-filter,num_dependents_deps.dev:16 +github.com/alank976/wrangler-action-for-rust, github.com/alankarartist/alguiloop, github.com/alankarartist/alwakeupword, github.com/alankbi/basic-ml, @@ -229513,6 +234836,7 @@ github.com/alanpich/beanstalker,num_dependents_deps.dev:0 github.com/alanpich/node-rackspace-ews-auth,num_dependents_deps.dev:0 github.com/alanpinhel/alimentometro-wrapper,num_dependents_deps.dev:0 github.com/alanpinhel/regulus-material,num_dependents_deps.dev:0 +github.com/alanpjohn/esbmc-solidity-action, github.com/alanpog/feathers-authentication,num_dependents_deps.dev:0 github.com/alanpoulain/gatsby-remark-code-selector,num_dependents_deps.dev:0 github.com/alanpoulain/universal-geocoder,num_dependents_deps.dev:0 @@ -229844,7 +235168,9 @@ github.com/alavers/body-schema,num_dependents_deps.dev:0 github.com/alavertu/redmed, github.com/alavieille/jaspp,num_dependents_deps.dev:0 github.com/alavir-ua/obj3ext,num_dependents_deps.dev:0 +github.com/alaviss/setup-nim, github.com/alawatthe/MathLib,num_dependents_deps.dev:0 +github.com/alawiii521/current-pr-comment, github.com/alawong/react-native-braintree,num_dependents_deps.dev:0 github.com/alawson421/espn-node,num_dependents_deps.dev:0 github.com/alax/jsrp,num_dependents_deps.dev:4 @@ -230080,6 +235406,7 @@ github.com/albertocastronovo/pyexpsolver, github.com/albertocastronovo/pyrandorg, github.com/albertocastronovo/randorgdice, github.com/albertocc/coronavirus,num_dependents_deps.dev:0 +github.com/albertocc/feed-box, github.com/albertoconnor/channels-sendmail, github.com/albertocuestacanada/Delegable,num_dependents_deps.dev:0 github.com/albertocuestacanada/ERC20,num_dependents_deps.dev:0 @@ -230165,6 +235492,7 @@ github.com/albertosaurus/pg_comment,num_dependents_deps.dev:0 github.com/albertosaurus/power_enum_2,num_dependents_deps.dev:0 github.com/albertosaurus/us_bank_holidays,num_dependents_deps.dev:0 github.com/albertosilv/deathFriends, +github.com/albertosml/setup-rust, github.com/albertosottile/darkdetect, github.com/albertosouza/email-templates-i18n,num_dependents_deps.dev:0 github.com/albertosouza/print-tag,num_dependents_deps.dev:0 @@ -230249,6 +235577,10 @@ github.com/albfernandez/seam-jdocbook-style,num_dependents_deps.dev:0 github.com/albfernandez/struts1,num_dependents_deps.dev:0 github.com/albi-c/mlog++, github.com/albi34/node-dandelion,num_dependents_deps.dev:0 +github.com/albin-johansson/download-sdl2, +github.com/albin-johansson/download-sdl2-image, +github.com/albin-johansson/download-sdl2-mixer, +github.com/albin-johansson/download-sdl2-ttf, github.com/albin-willman/auth-hub-module,num_dependents_deps.dev:0 github.com/albin3/Node_Express_Redis_Session,num_dependents_deps.dev:0 github.com/albin3/editor-json-parser,num_dependents_deps.dev:0 @@ -230329,6 +235661,7 @@ github.com/albseb511/dyno-img-react,num_dependents_deps.dev:0 github.com/albseb511/example_package,num_dependents_deps.dev:0 github.com/albseb511/lotus-ui,num_dependents_deps.dev:0 github.com/albsen/chainstore,num_dependents_deps.dev:0 +github.com/albuch/sbt-dependency-check-action, github.com/albukhary/book_keeper,num_dependents_deps.dev:0 github.com/albukhary/grpc-go-course,num_dependents_deps.dev:0 github.com/albukhary/grpc-go-course-mine,num_dependents_deps.dev:0 @@ -230442,6 +235775,7 @@ github.com/alchmy/youtube2ipfs,num_dependents_deps.dev:0 github.com/alchrabas/pulumi-s3-lambda-webstack,num_dependents_deps.dev:0 github.com/alchristleo/go-chat,num_dependents_deps.dev:0 github.com/alcibiades13/middleearth-names,num_dependents_deps.dev:20 +github.com/alcideio/advisor-action, github.com/alcideio/iskan,num_dependents_deps.dev:0 github.com/alcideio/rbac-minimize,num_dependents_deps.dev:0 github.com/alcideio/rbac-tool,num_dependents_deps.dev:0 @@ -230601,6 +235935,8 @@ github.com/aldo235/mongoose-datatables,num_dependents_deps.dev:0 github.com/aldo774/register-call-wrapper, github.com/aldoKelvianto/AutoFormatEditText,num_dependents_deps.dev:0 github.com/aldob/mProfile, +github.com/aldoborrero/direnv-nix-action, +github.com/aldoborrero/use-nix-action, github.com/aldofunes/message_db,num_dependents_deps.dev:0 github.com/aldofusterturpin/coding-challenges,num_dependents_deps.dev:0 github.com/aldogatica123/code-problems,num_dependents_deps.dev:0 @@ -230715,6 +236051,7 @@ github.com/ale316/express-pjax-redirect,num_dependents_deps.dev:0 github.com/ale316/versioning-webpack-plugin,num_dependents_deps.dev:0 github.com/ale5000-git/pycompatlayer, github.com/ale8193/doc-node-api,num_dependents_deps.dev:0 +github.com/ale94lko/php-cs-fixer-action, github.com/aleGpereira/flake8-mock, github.com/alea12/benchmark_email,num_dependents_deps.dev:0 github.com/aleacevedo/pi-nas-docker,num_dependents_deps.dev:0 @@ -230803,6 +236140,7 @@ github.com/alecalve/python-bitcoin-blockchain-parser,criticality_score:0.391870 github.com/alecap7/lerna-semantic-versioning-example,num_dependents_deps.dev:0 github.com/alecarneiro1993/simple-mui-grid,num_dependents_deps.dev:0 github.com/alecat88/post-commit-auto-versioning,num_dependents_deps.dev:0 +github.com/alecbcs/caffeinate-workflows, github.com/alecbcs/lookout,num_dependents_deps.dev:6 github.com/alecbenson/rdb,num_dependents_deps.dev:0 github.com/alecbenzer/easyredis,num_dependents_deps.dev:0 @@ -230810,6 +236148,7 @@ github.com/alecchendev/go-spotify-social,num_dependents_deps.dev:0 github.com/alecchendev/markdown-site-generator,num_dependents_deps.dev:0 github.com/alecchendev/marvon,num_dependents_deps.dev:0 github.com/aleccool213/gatsby-theme-novela,num_dependents_deps.dev:0 +github.com/aleccool213/merge-coverage, github.com/aleccrowell/LIMBR, github.com/aleccrowell/PIRS, github.com/aleccrowell/luctools, @@ -231040,6 +236379,7 @@ github.com/aledista/drf-chaos, github.com/aledista/drf-dark-theme, github.com/aledista/openfin-custom-titlebar,num_dependents_deps.dev:0 github.com/aledovsky/national_ids,num_dependents_deps.dev:0 +github.com/alee792/go-action, github.com/aleechou/Anchor9,num_dependents_deps.dev:0 github.com/aleechou/XiaoI,num_dependents_deps.dev:0 github.com/aleechou/YouDontKnowMyEmail,num_dependents_deps.dev:0 @@ -231130,6 +236470,7 @@ github.com/alehander42/pseudo,num_dependents_deps.dev:0 github.com/alehander42/pseudo-python,num_dependents_deps.dev:0 github.com/alehander42/py-matchete, github.com/alehander42/python-surgeon, +github.com/alehechka/download-tartifact, github.com/alehechka/gha-find-replace,num_dependents_deps.dev:0 github.com/alehechka/gha-gcr-test-harbor,num_dependents_deps.dev:0 github.com/alehechka/prettier-config,num_dependents_deps.dev:0 @@ -231137,6 +236478,7 @@ github.com/alehechka/react-ntc,num_dependents_deps.dev:0 github.com/alehechka/react-ts-config,num_dependents_deps.dev:0 github.com/alehechka/react-us-states,num_dependents_deps.dev:0 github.com/alehechka/streamr,num_dependents_deps.dev:0 +github.com/alehechka/upload-tartifact, github.com/alehed/aslutils, github.com/alehkot/job-funnel-js,num_dependents_deps.dev:0 github.com/alehkot/job-funnel-ts, @@ -231251,6 +236593,8 @@ github.com/alejandrohdezma/sensitive-strings,num_dependents_deps.dev:0 github.com/alejandrojnm/pymagisto, github.com/alejandroklever/PyJapt, github.com/alejandroledesma/react-hook-storage,num_dependents_deps.dev:0 +github.com/alejandromav/tinybird-action-cli, +github.com/alejandromav/tinybird-action-push, github.com/alejandromolinaml/SPFlow, github.com/alejandromoralesjr/region-market,num_dependents_deps.dev:0 github.com/alejandromume/ip-info3,num_dependents_deps.dev:0 @@ -231276,6 +236620,7 @@ github.com/alejandrowaiz/singleton-pattern,num_dependents_deps.dev:0 github.com/alejandrowaiz/testtable,num_dependents_deps.dev:0 github.com/alejandrowaiz/type-switch,num_dependents_deps.dev:0 github.com/alejdev/css-utilities,num_dependents_deps.dev:0 +github.com/alejio/mlflow-tracking-action, github.com/alejka/otus-go-2021-02-hw,num_dependents_deps.dev:0 github.com/alejo8591/wheel-menu,num_dependents_deps.dev:0 github.com/alejoar/Flask-Azure-Storage, @@ -231345,6 +236690,7 @@ github.com/alekangelov/epitaphjs,num_dependents_deps.dev:0 github.com/alekangelov/postFetch,num_dependents_deps.dev:0 github.com/alekangelov/react-alert-async,num_dependents_deps.dev:0 github.com/alekangelov/react-reconditioned,num_dependents_deps.dev:0 +github.com/alekangelov/secret-envfile, github.com/alekart/ajsf,num_dependents_deps.dev:0 github.com/alekart/angular-json-schema-form,num_dependents_deps.dev:0 github.com/alekbarszczewski/backend-helpers,num_dependents_deps.dev:0 @@ -231366,6 +236712,7 @@ github.com/aleki/botfather,num_dependents_deps.dev:0 github.com/alekitopi/hoststresser,num_dependents_deps.dev:0 github.com/alekitopi/randomcode, github.com/alekitopi/tcppinger,num_dependents_deps.dev:0 +github.com/alekitto/grcov, github.com/alekitto/nee,num_dependents_deps.dev:0 github.com/alekitto/ocular.js,num_dependents_deps.dev:0 github.com/alekmarinov/ObservableStore,num_dependents_deps.dev:0 @@ -231396,6 +236743,7 @@ github.com/aleksandar-b/Enhancify,num_dependents_deps.dev:0 github.com/aleksandar-b/react-brush-text,num_dependents_deps.dev:0 github.com/aleksandar-b/studious-doodle,num_dependents_deps.dev:0 github.com/aleksandar-dobrasinovic/edss,num_dependents_deps.dev:0 +github.com/aleksandar-ivic/build-rpm, github.com/aleksandar-micic/athz,num_dependents_deps.dev:0 github.com/aleksandar-micic/vue-router-guard-trigger,num_dependents_deps.dev:0 github.com/aleksandar-veljkovic/libpgm3, @@ -231750,6 +237098,7 @@ github.com/aleph-research/diff-priv-laplace-python, github.com/aleph09400/alefficient,num_dependents_deps.dev:0 github.com/aleph2c/miros, github.com/aleph2c/miros-rabbitmq, +github.com/alephao/Reginald, github.com/alephao/bitrise-step-s3-cache-pull,num_dependents_deps.dev:0 github.com/alephao/bitrise-step-s3-cache-push,num_dependents_deps.dev:0 github.com/alephao/cacheutil,num_dependents_deps.dev:0 @@ -231931,9 +237280,11 @@ github.com/alesgenova/stenciljs-in-react,num_dependents_deps.dev:0 github.com/alesgenova/stenciljs-in-vue,num_dependents_deps.dev:0 github.com/alesh/setuptools-vcs-version, github.com/alesharik/archlinux-repo-rs,num_dependents_deps.dev:0 +github.com/alesharik/delete-old-docker-tags, github.com/aleshere/bookstore_crudrestapi_golang,num_dependents_deps.dev:0 github.com/aleshh/ddc-browser,num_dependents_deps.dev:0 github.com/alesiahlushakova/nodejs,num_dependents_deps.dev:0 +github.com/alesil/actions-curl, github.com/alesiong/codec,num_dependents_deps.dev:0 github.com/alesium/node-openam,num_dependents_deps.dev:0 github.com/alesium/passport-openam,num_dependents_deps.dev:0 @@ -231953,9 +237304,11 @@ github.com/alesmenzel/number-format,num_dependents_deps.dev:0 github.com/alesmenzel/preload-webpack-plugin,num_dependents_deps.dev:0 github.com/alesmenzel/react-forms,num_dependents_deps.dev:0 github.com/alesmenzel/reactivex,num_dependents_deps.dev:0 +github.com/alesmenzel/simple-ftp-deploy-action, github.com/alesmit/mp.css,num_dependents_deps.dev:0 github.com/alesmit/ngx-basic-modal,num_dependents_deps.dev:0 github.com/alesrosina/azure-activedirectory-library-for-cordova,num_dependents_deps.dev:0 +github.com/aless10/addChecks-action, github.com/aless10/convert-py-2-databricks, github.com/alessage/nodejs-authService,num_dependents_deps.dev:0 github.com/alessaloisio/country-cli,num_dependents_deps.dev:0 @@ -231970,6 +237323,8 @@ github.com/alessandro-caldonazzi/session-jwt,num_dependents_deps.dev:0 github.com/alessandro-caldonazzi/ws-redis,num_dependents_deps.dev:0 github.com/alessandro-holanda/node-red-contrib-mail-parse,num_dependents_deps.dev:0 github.com/alessandro-holanda/node-red-contrib-xml-validate,num_dependents_deps.dev:0 +github.com/alessandro-marcantoni/puml-markdown, +github.com/alessandro-marcantoni/secret-injector-action, github.com/alessandro-pezzato/grunt-batch,num_dependents_deps.dev:0 github.com/alessandro-pezzato/mp3renamer,num_dependents_deps.dev:0 github.com/alessandro-pezzato/omxdirector,num_dependents_deps.dev:0 @@ -231977,6 +237332,7 @@ github.com/alessandro-zomparelli/tissue,criticality_score:0.338990 github.com/alessandroBombelli/pyHoops, github.com/alessandroaime/homebridge-ueboom,num_dependents_deps.dev:0 github.com/alessandroargentieri/ReactiveJ,num_dependents_deps.dev:0 +github.com/alessandrobelli/NotionHook, github.com/alessandrobessi/algorithms,num_dependents_deps.dev:0 github.com/alessandrobessi/piecetable,num_dependents_deps.dev:0 github.com/alessandrocaprarelli/strapi-provider-email-mailtrap,num_dependents_deps.dev:0 @@ -232018,6 +237374,7 @@ github.com/alessh/node-red-contrib-xml-validate, github.com/alessh/react-ui5,num_dependents_deps.dev:0 github.com/alessiaAmitrano/hashtag-mention-colorizer,num_dependents_deps.dev:0 github.com/alessio-santacroce/serverless-logs-plugin,num_dependents_deps.dev:0 +github.com/alessio-signorini/copy-gem-to-github-packages, github.com/alessio-signorini/oss_audit,num_dependents_deps.dev:0 github.com/alessioalex/Cls,num_dependents_deps.dev:0 github.com/alessioalex/LogIt,num_dependents_deps.dev:0 @@ -232098,6 +237455,7 @@ github.com/alessiodf/universal-delegate-monitor,num_dependents_deps.dev:0 github.com/alessiodionisi/airplay-sonos,num_dependents_deps.dev:0 github.com/alessiodionisi/homebridge-lgtv2,num_dependents_deps.dev:0 github.com/alessiodionisi/node-otp,num_dependents_deps.dev:0 +github.com/alessiodionisi/setup-age-action, github.com/alessiodm/redux-ddd,num_dependents_deps.dev:0 github.com/alessiodp/kpmenu,num_dependents_deps.dev:0 github.com/alessioforte/reactoon, @@ -232393,6 +237751,7 @@ github.com/alex-ac2/pick-an-artist,num_dependents_deps.dev:0 github.com/alex-airbnb/account_api,num_dependents_deps.dev:0 github.com/alex-ald/fork-transporter,num_dependents_deps.dev:0 github.com/alex-ant/melapoly-tracker,num_dependents_deps.dev:0 +github.com/alex-astronomer/transfer-issue-action, github.com/alex-bcs/bcscore-lib,num_dependents_deps.dev:0 github.com/alex-bcs/bcscore-node,num_dependents_deps.dev:0 github.com/alex-bechanko/advent-of-code-2020,num_dependents_deps.dev:0 @@ -232471,6 +237830,7 @@ github.com/alex-held/daimler-merge,num_dependents_deps.dev:0 github.com/alex-held/dev-env,num_dependents_deps.dev:0 github.com/alex-held/devctl,num_dependents_deps.dev:0 github.com/alex-held/devctl-plugins,num_dependents_deps.dev:0 +github.com/alex-held/devctl-release-bot, github.com/alex-held/devctl-sdkplugin-go,num_dependents_deps.dev:0 github.com/alex-held/devctl-toolkit,num_dependents_deps.dev:0 github.com/alex-held/gitkeeper,num_dependents_deps.dev:0 @@ -232581,8 +237941,10 @@ github.com/alex-ozdemir/scan,num_dependents_deps.dev:0 github.com/alex-page/a11ycolor,num_dependents_deps.dev:0 github.com/alex-page/add-new-issue-project,num_dependents_deps.dev:0 github.com/alex-page/add-new-pulls-project,num_dependents_deps.dev:0 +github.com/alex-page/blazing-fast-gh-pages-deploy, github.com/alex-page/fe-color,num_dependents_deps.dev:0 github.com/alex-page/get-site-urls,num_dependents_deps.dev:0 +github.com/alex-page/github-project-automation-plus, github.com/alex-page/harmonograph,num_dependents_deps.dev:0 github.com/alex-page/harmonograph-svg,num_dependents_deps.dev:0 github.com/alex-page/harmonograph-xy,num_dependents_deps.dev:0 @@ -232639,6 +238001,7 @@ github.com/alex-rokabilis/node-greek-subs,num_dependents_deps.dev:0 github.com/alex-rokabilis/node-greek-subs-cli,num_dependents_deps.dev:0 github.com/alex-rokabilis/nwjs-webpack-plugin,num_dependents_deps.dev:0 github.com/alex-rom77/go_repository_groupcache,num_dependents_deps.dev:0 +github.com/alex-sandri/nothing-action, github.com/alex-saunders/glicky,num_dependents_deps.dev:0 github.com/alex-saunders/sliding-pages,num_dependents_deps.dev:0 github.com/alex-schuster/regionalizer,num_dependents_deps.dev:0 @@ -232948,6 +238311,7 @@ github.com/alexal1/Insomniac,criticality_score:0.459540 github.com/alexaleluia12/geradorstr, github.com/alexalexandrescu/different-ng-env,num_dependents_deps.dev:0 github.com/alexalligator/sveve, +github.com/alexalmadav/gcp-pubsub-action, github.com/alexaltair/lambda-calculus,num_dependents_deps.dev:0 github.com/alexamici/smithery, github.com/alexamies/chinesedict-js,num_dependents_deps.dev:0 @@ -233026,6 +238390,7 @@ github.com/alexander-kucheryavenko/number-formatter,num_dependents_deps.dev:0 github.com/alexander-lee/markdown-github-bear-toc, github.com/alexander-lindner/cish,num_dependents_deps.dev:0 github.com/alexander-lindner/java-common-tools,num_dependents_deps.dev:0 +github.com/alexander-lindner/latex-action, github.com/alexander-mai/ngx-strongly-typed-forms,num_dependents_deps.dev:0 github.com/alexander-merz/cz-ci-cd,num_dependents_deps.dev:0 github.com/alexander-mihaylov/go_site,num_dependents_deps.dev:0 @@ -233168,6 +238533,7 @@ github.com/alexanderhuybrichs/circleci-pipeline,num_dependents_deps.dev:0 github.com/alexanderile/react-switcher,num_dependents_deps.dev:0 github.com/alexanderile/to-the-moon,num_dependents_deps.dev:0 github.com/alexanderippatiev/vuechatboxwidget,num_dependents_deps.dev:0 +github.com/alexanderj1988/dependabot-notify, github.com/alexanderjamesking/alpaca,num_dependents_deps.dev:0 github.com/alexanderjanke/v-cookie-consent,num_dependents_deps.dev:0 github.com/alexanderjarl91/invert,num_dependents_deps.dev:0 @@ -233262,6 +238628,7 @@ github.com/alexanderrobertson/emoji-extractor, github.com/alexanderross/render_variant,num_dependents_deps.dev:0 github.com/alexandersandberg/html5-elements-tester,num_dependents_deps.dev:0 github.com/alexandersandberg/react-native-begin-background-task,num_dependents_deps.dev:0 +github.com/alexanderschau/ipfs-pinning-action, github.com/alexanderschau/ipfs-pinning-service,num_dependents_deps.dev:0 github.com/alexanderschau/react-bootstrap-icons,num_dependents_deps.dev:0 github.com/alexanderschau/react-ionicons,num_dependents_deps.dev:0 @@ -233393,6 +238760,7 @@ github.com/alexandre-roulin/derive-knet,num_dependents_deps.dev:0 github.com/alexandre-roulin/knet,num_dependents_deps.dev:0 github.com/alexandre-slp/learning-go,num_dependents_deps.dev:0 github.com/alexandre-steinberg/multer-cloud-storage,num_dependents_deps.dev:0 +github.com/alexandre-touret/lilypond-github-action, github.com/alexandre01/UltimateLabeling, github.com/alexandre033/exportSvgAsImage, github.com/alexandre79eme/imageunifier,num_dependents_deps.dev:0 @@ -233431,6 +238799,7 @@ github.com/alexandrefreiref/Af.WhatsappManager, github.com/alexandregiordanelli/rehype2qmd,num_dependents_deps.dev:0 github.com/alexandregme/financial-react-components,num_dependents_deps.dev:0 github.com/alexandreguertin/adonis-firebase,num_dependents_deps.dev:0 +github.com/alexandregv/norminette-action, github.com/alexandreh92/nuvemshop-ruby,num_dependents_deps.dev:0 github.com/alexandreh92/semantic-ui-calendar-react,num_dependents_deps.dev:0 github.com/alexandrehpiva/exec-latest,num_dependents_deps.dev:0 @@ -233560,6 +238929,7 @@ github.com/alexarchambault/ammonite-shell,num_dependents_deps.dev:1046 github.com/alexarchambault/ammonite-spark,num_dependents_deps.dev:1 github.com/alexarchambault/ammonium,num_dependents_deps.dev:488 github.com/alexarchambault/argonaut-shapeless,num_dependents_deps.dev:758 +github.com/alexarchambault/cache-action-test, github.com/alexarchambault/case-app,"criticality_score:0.430940,num_dependents_deps.dev:2332" github.com/alexarchambault/concurrent-reference-hash-map,num_dependents_deps.dev:108 github.com/alexarchambault/coursier,num_dependents_deps.dev:169 @@ -233593,6 +238963,7 @@ github.com/alexashley/cel-repl,num_dependents_deps.dev:0 github.com/alexashley/terraform-provider-rode,num_dependents_deps.dev:0 github.com/alexashooo/zidanje,num_dependents_deps.dev:0 github.com/alexattt/learning-git,num_dependents_deps.dev:0 +github.com/alexavil/folder-scanner, github.com/alexayan/beauty.js, github.com/alexayan/express-dva-ssr,num_dependents_deps.dev:0 github.com/alexayan/folder-diff,num_dependents_deps.dev:0 @@ -233859,6 +239230,7 @@ github.com/alexcastillo/openbci-rx, github.com/alexcastillo/redux-airbrake,num_dependents_deps.dev:0 github.com/alexcastillo/redux-hotjar-trigger,num_dependents_deps.dev:0 github.com/alexcaza/export-to-csv,num_dependents_deps.dev:20 +github.com/alexcb/actions-secretshare, github.com/alexcb/buildkit,num_dependents_deps.dev:0 github.com/alexcb/cli,num_dependents_deps.dev:0 github.com/alexcb/go-flags,num_dependents_deps.dev:0 @@ -233902,6 +239274,7 @@ github.com/alexclark-nz/modalz,num_dependents_deps.dev:0 github.com/alexclownfish/k8s-monitor,num_dependents_deps.dev:0 github.com/alexcoach/react-native-sensitive-info,num_dependents_deps.dev:0 github.com/alexcode/vue2vis,num_dependents_deps.dev:0 +github.com/alexcoder04/setup-nspire-tools, github.com/alexcoliveira1/go-exercises,num_dependents_deps.dev:0 github.com/alexcom/intelite-mqtt,num_dependents_deps.dev:0 github.com/alexcom/pageturner,num_dependents_deps.dev:0 @@ -234093,6 +239466,7 @@ github.com/alexdevero/react-postcss-parcel-boilerplate,num_dependents_deps.dev:0 github.com/alexdevero/react-typescript-styled-components-boilerplate,num_dependents_deps.dev:0 github.com/alexdevero/udacity-desktop-app,num_dependents_deps.dev:0 github.com/alexdevteam/dmc,num_dependents_deps.dev:0 +github.com/alexdglover/jsonnet-render, github.com/alexdibattista/kimono-worldcup-api,num_dependents_deps.dev:0 github.com/alexdiliberto/ember-cli-transformicons,num_dependents_deps.dev:0 github.com/alexdiliberto/ember-cowsay,num_dependents_deps.dev:0 @@ -234215,6 +239589,7 @@ github.com/alexellis/hmac,num_dependents_deps.dev:39 github.com/alexellis/k3sup,"criticality_score:0.489610,num_dependents_deps.dev:0" github.com/alexellis/minio-db-client,num_dependents_deps.dev:0 github.com/alexellis/release-purger,num_dependents_deps.dev:0 +github.com/alexellis/upload-assets, github.com/alexemrie/find-emails-in-string,num_dependents_deps.dev:0 github.com/alexenge/hu-neuro-pipeline, github.com/alexengrig/codecov-maven-plugin,num_dependents_deps.dev:0 @@ -234492,6 +239867,9 @@ github.com/alexgenovese/magento2-rest-client, github.com/alexgenovese/prestashop-api-nodejs,num_dependents_deps.dev:0 github.com/alexgerv/generator-node-es6-toolbox,num_dependents_deps.dev:0 github.com/alexgev/tlsClientServer,num_dependents_deps.dev:0 +github.com/alexgg/balena-s3-deploy, +github.com/alexgg/jenkins-job-action, +github.com/alexgg/versionist, github.com/alexghenderson/eslint-config-truestrict,num_dependents_deps.dev:0 github.com/alexghenderson/formik-field,num_dependents_deps.dev:0 github.com/alexghenderson/react-redux-modal,num_dependents_deps.dev:0 @@ -234693,6 +240071,7 @@ github.com/alexhsamuel/supdoc, github.com/alexhumphreys/dc2dr, github.com/alexhunsley/tray-racer,num_dependents_deps.dev:0 github.com/alexia-b-chang/yag.js, +github.com/alexiabalionis/branchlog, github.com/alexichepura/story, github.com/alexile/add-app,num_dependents_deps.dev:0 github.com/alexile/check-npm-name,num_dependents_deps.dev:0 @@ -234773,6 +240152,7 @@ github.com/alexisab/send-logs,num_dependents_deps.dev:0 github.com/alexisab/winston-slack,num_dependents_deps.dev:0 github.com/alexisabril/grunt-funcunit,num_dependents_deps.dev:0 github.com/alexisabril/grunt-steal,num_dependents_deps.dev:0 +github.com/alexisabril/hello-actions, github.com/alexisabril/walkthrough,num_dependents_deps.dev:0 github.com/alexisakers/BulletinBoard,criticality_score:0.336770 github.com/alexisbarros/autentikigo-package,num_dependents_deps.dev:0 @@ -234946,6 +240326,10 @@ github.com/alexjurev/rabbitmq_docker,num_dependents_deps.dev:0 github.com/alexjurev/redis_test,num_dependents_deps.dev:0 github.com/alexjurev/tree_coursera,num_dependents_deps.dev:0 github.com/alexjurev/urlshortener,num_dependents_deps.dev:0 +github.com/alexjurkiewicz/ecr-scan-image, +github.com/alexjurkiewicz/elastic-beanstalk-read-environment, +github.com/alexjurkiewicz/pr-comment-github-deployment, +github.com/alexjurkiewicz/setup-ccache, github.com/alexjv89/markdown-it-obsidian,num_dependents_deps.dev:0 github.com/alexjv89/sails-hook-kue-admin,num_dependents_deps.dev:0 github.com/alexjx/pem2secret,num_dependents_deps.dev:0 @@ -234959,6 +240343,7 @@ github.com/alexkalderimis/imjs,num_dependents_deps.dev:0 github.com/alexkalderimis/jschannel,num_dependents_deps.dev:0 github.com/alexkalderimis/node-buffered-response,num_dependents_deps.dev:0 github.com/alexkaplun/books-test,num_dependents_deps.dev:0 +github.com/alexkappa/block-fixup-merge-action, github.com/alexkappa/service-template-grpc,num_dependents_deps.dev:0 github.com/alexkappa/terraform-provider-auth0,"criticality_score:0.575410,num_dependents_deps.dev:0" github.com/alexkar598/NodeHost,num_dependents_deps.dev:0 @@ -235005,6 +240390,7 @@ github.com/alexkhismatulin/react-use-count-down,num_dependents_deps.dev:0 github.com/alexkhotian/openshist_test_go_app,num_dependents_deps.dev:0 github.com/alexkinch/fsock,num_dependents_deps.dev:0 github.com/alexking/burr,num_dependents_deps.dev:0 +github.com/alexkiro/i18n-coverage, github.com/alexkirsz/dispatch,num_dependents_deps.dev:0 github.com/alexkirsz/socksv5,num_dependents_deps.dev:0 github.com/alexklibisz/elastiknn,num_dependents_deps.dev:0 @@ -235114,6 +240500,7 @@ github.com/alexkyllo/feature-grouper, github.com/alexkyllo/kqlalchemy, github.com/alexkyllo/kusto-tool, github.com/alexladerman/dataJS,num_dependents_deps.dev:0 +github.com/alexlafroscia/actions-ember-testing, github.com/alexlafroscia/broccoli-flow,num_dependents_deps.dev:0 github.com/alexlafroscia/ember-cli-polyfill-io, github.com/alexlafroscia/ember-cli-testdouble-chai, @@ -235137,6 +240524,7 @@ github.com/alexlafroscia/testdouble-qunit,num_dependents_deps.dev:0 github.com/alexlafroscia/vite-plugin-handlebars,num_dependents_deps.dev:0 github.com/alexlai97/tictactoe-rust,num_dependents_deps.dev:0 github.com/alexlambson/python-dict-dots, +github.com/alexlancaster/zenodraft-action, github.com/alexlande/react-style-guide,num_dependents_deps.dev:0 github.com/alexlande/react-to-jsx,num_dependents_deps.dev:4 github.com/alexlandg/pure-native,num_dependents_deps.dev:0 @@ -235211,6 +240599,7 @@ github.com/alexlees/vue-tabbar,num_dependents_deps.dev:0 github.com/alexlees/vue2-lazy,num_dependents_deps.dev:0 github.com/alexlemaire/git-assist,num_dependents_deps.dev:0 github.com/alexleventer/gatsby-source-astra,num_dependents_deps.dev:0 +github.com/alexleventer/github-issue-due-dates-action, github.com/alexleventer/node-postmates,num_dependents_deps.dev:0 github.com/alexlewzey/guitar_scale_generator, github.com/alexlibby/postcss-color-cc-palette,num_dependents_deps.dev:0 @@ -235456,6 +240845,8 @@ github.com/alexnix/react-modal-pirate,num_dependents_deps.dev:0 github.com/alexnix/voyager-react, github.com/alexnj/social-browser,num_dependents_deps.dev:0 github.com/alexnm/json-style-converter,num_dependents_deps.dev:0 +github.com/alexnorell/install-gh-cli-action, +github.com/alexnorell/terraform-lint, github.com/alexnortung/mjml-pardot, github.com/alexnoz/minify-bundled-webpack-plugin,num_dependents_deps.dev:0 github.com/alexnoz/wasm-worker-api,num_dependents_deps.dev:0 @@ -235673,7 +241064,9 @@ github.com/alexroel/curso-go,num_dependents_deps.dev:0 github.com/alexroel/curso-golang,num_dependents_deps.dev:0 github.com/alexroel/figuras,num_dependents_deps.dev:0 github.com/alexromer0/onesignal-api, +github.com/alexromer0/pull-request-labeler, github.com/alexrothenberg/ammeter,num_dependents_deps.dev:1 +github.com/alexrothenberg/digraph-to-svg-action, github.com/alexrothenberg/legacy_data,num_dependents_deps.dev:0 github.com/alexrothenberg/motion-addressbook,num_dependents_deps.dev:0 github.com/alexrqs/style-by-convention-loader,num_dependents_deps.dev:0 @@ -235788,6 +241181,7 @@ github.com/alexschw/ArrayViewer, github.com/alexschwantes/node-red-contrib-htu21d-2,num_dependents_deps.dev:0 github.com/alexschwantes/testcafe-browser-provider-selenium, github.com/alexschwantes/testcafe-reporter-junit,num_dependents_deps.dev:0 +github.com/alexschwartz/pr-title-checker-global, github.com/alexsds/ng-business-hours, github.com/alexsdutton/django-camera-imagefield, github.com/alexsdutton/python-lego-wireless-protocol, @@ -236011,6 +241405,7 @@ github.com/alextewpin/use-promise,num_dependents_deps.dev:0 github.com/alexthedev/node-springboard,num_dependents_deps.dev:0 github.com/alexthelion/NgxRSTimePicker,num_dependents_deps.dev:0 github.com/alexthemac/lotide,num_dependents_deps.dev:0 +github.com/alexthemaster/action-build-typescript, github.com/alexthemaster/discord-fbi,num_dependents_deps.dev:0 github.com/alexthemaster/filelist.js,num_dependents_deps.dev:0 github.com/alexthemaster/moonlight,num_dependents_deps.dev:0 @@ -236022,6 +241417,7 @@ github.com/alextiley/wdio-cucumber-json-reporter,num_dependents_deps.dev:0 github.com/alextiley/wdio-cucumber-missing-steps-reporter,num_dependents_deps.dev:0 github.com/alextodea/leetcode-algorithms,num_dependents_deps.dev:0 github.com/alextomas80/svelte-instagram, +github.com/alextompkins/download-prior-artifact, github.com/alextoudic/animated-components,num_dependents_deps.dev:0 github.com/alextoudic/evanesco,num_dependents_deps.dev:0 github.com/alextownleymakes/golang-1,num_dependents_deps.dev:0 @@ -236102,8 +241498,10 @@ github.com/alexvictoor/netty-livereload,num_dependents_deps.dev:0 github.com/alexvictoor/pitest-cucumber-plugin,num_dependents_deps.dev:0 github.com/alexvictoor/pretty-commit,num_dependents_deps.dev:0 github.com/alexvictoor/web-logback,num_dependents_deps.dev:0 +github.com/alexvingg/next-release-tag, github.com/alexvlasov/blockchain-monitoring,num_dependents_deps.dev:0 github.com/alexvnilsson/swish-sdk,num_dependents_deps.dev:0 +github.com/alexvoedi/VuePagesAction, github.com/alexvoedi/hexhex-chart,num_dependents_deps.dev:0 github.com/alexvoedi/xy-lib,num_dependents_deps.dev:0 github.com/alexvoksa/logging-handlers, @@ -236123,6 +241521,7 @@ github.com/alexwebb2/node-pdf-builder,num_dependents_deps.dev:0 github.com/alexweber/es6-jspm-gulp-boilerplate,num_dependents_deps.dev:0 github.com/alexweber/firenze-adapter-sqlite,num_dependents_deps.dev:0 github.com/alexweber/karma-sinon-stub-promise,num_dependents_deps.dev:0 +github.com/alexweininger/bump-prerelease-version, github.com/alexwennerberg/boxnotes2html, github.com/alexwennerberg/drive-adv,num_dependents_deps.dev:0 github.com/alexwennerberg/gmi2html,num_dependents_deps.dev:0 @@ -236136,6 +241535,7 @@ github.com/alexwiedermann/node-red-storage-multiproject,num_dependents_deps.dev: github.com/alexwight/homebridge-flirfx,num_dependents_deps.dev:0 github.com/alexwileyy/ojet-comp,num_dependents_deps.dev:0 github.com/alexwillcode/rick-roll-detector, +github.com/alexwilson/enable-github-automerge-action, github.com/alexwilson/fastly-search, github.com/alexwilson/frontend,num_dependents_deps.dev:0 github.com/alexwine36/hygen-typescript-react-redux, @@ -236220,6 +241620,7 @@ github.com/alexzaitsev/freepager,num_dependents_deps.dev:0 github.com/alexzaitsev/maven-test,num_dependents_deps.dev:0 github.com/alexzaitsev/meter-number-picker,num_dependents_deps.dev:0 github.com/alexzanderr/_core-dev, +github.com/alexzautke/fhir-package-registry-pipeline, github.com/alexzaworski/unit-golf,num_dependents_deps.dev:0 github.com/alexzelenuyk/toggl-report-to-gulp, github.com/alexzero0/showdir,num_dependents_deps.dev:0 @@ -236249,6 +241650,7 @@ github.com/alezanatta/fastanalizer, github.com/alezen9/lightbox-alex-react,num_dependents_deps.dev:0 github.com/alezi06/frontend-project-lvl1,num_dependents_deps.dev:0 github.com/alf-tool/alf,num_dependents_deps.dev:0 +github.com/alf1e/caprover-action, github.com/alfa-bank-dev/bem-loader,num_dependents_deps.dev:0 github.com/alfa-bank-dev/build-front-container,num_dependents_deps.dev:0 github.com/alfa-code/alfa-code-scripts,num_dependents_deps.dev:0 @@ -236510,7 +241912,9 @@ github.com/alfredoperez/ngx-datacontext,num_dependents_deps.dev:0 github.com/alfredoqt/change-stream-to-async-iterator,num_dependents_deps.dev:0 github.com/alfredoreduarte/damnGdpr,num_dependents_deps.dev:0 github.com/alfredormz/not_my_job,num_dependents_deps.dev:0 +github.com/alfredosalzillo/actions-gift-blob-to-pull-request, github.com/alfredosalzillo/babel-plugin-preserve-arrow-function-to-string,num_dependents_deps.dev:0 +github.com/alfredosalzillo/ifttt-webhook-action, github.com/alfredosalzillo/masquerade,num_dependents_deps.dev:0 github.com/alfredosalzillo/ng-changes-listener,num_dependents_deps.dev:0 github.com/alfredosalzillo/react-fire-flags,num_dependents_deps.dev:0 @@ -236640,6 +242044,7 @@ github.com/algolia/algoliasearch-client-php,criticality_score:0.517350 github.com/algolia/algoliasearch-client-python, github.com/algolia/algoliasearch-client-python-async, github.com/algolia/algoliasearch-client-ruby,num_dependents_deps.dev:502 +github.com/algolia/algoliasearch-crawler-github-actions, github.com/algolia/algoliasearch-django, github.com/algolia/algoliasearch-extensions-bundle,num_dependents_deps.dev:0 github.com/algolia/algoliasearch-helper-js,num_dependents_deps.dev:464 @@ -236690,6 +242095,7 @@ github.com/algolia/redux-updeep,num_dependents_deps.dev:0 github.com/algolia/rollup-jest-boilerplate,num_dependents_deps.dev:0 github.com/algolia/scout-extended,criticality_score:0.459180 github.com/algolia/search-insights.js,num_dependents_deps.dev:4 +github.com/algolia/setup-algolia-cli, github.com/algolia/shipjs,"criticality_score:0.446150,num_dependents_deps.dev:4" github.com/algolia/sup3rS3cretMes5age,"criticality_score:0.370920,num_dependents_deps.dev:0" github.com/algolia/talksearch.js,num_dependents_deps.dev:0 @@ -236756,13 +242162,18 @@ github.com/algorithmia/mlflow-algorithmia, github.com/algorithmiaio/algorithm-handler-java,num_dependents_deps.dev:0 github.com/algorithmiaio/algorithmia-adk-python, github.com/algorithmiaio/algorithmia-android,num_dependents_deps.dev:0 +github.com/algorithmiaio/algorithmia-ci-action, github.com/algorithmiaio/algorithmia-java,num_dependents_deps.dev:0 github.com/algorithmiaio/algorithmia-java-extras,num_dependents_deps.dev:0 +github.com/algorithmiaio/algorithmia-modeldeployment-action, github.com/algorithmiaio/algorithmia-nodejs,num_dependents_deps.dev:0 github.com/algorithmiaio/algorithmia-python, github.com/algorithmiaio/algorithmia-ruby,num_dependents_deps.dev:0 github.com/algorithmiaio/algorithmia-rust,num_dependents_deps.dev:0 github.com/algorithmiaio/algorithmia-scala,num_dependents_deps.dev:0 +github.com/algorithmiaio/build-wait-action, +github.com/algorithmiaio/publish-algo-action, +github.com/algorithmiaio/test-algo-action, github.com/algorithmic-music-exploration/amen, github.com/algorithmlover2016/self_learning_go,num_dependents_deps.dev:0 github.com/algorithmsjs/blum-blum-shub,num_dependents_deps.dev:0 @@ -236787,6 +242198,8 @@ github.com/algosdev/almoment,num_dependents_deps.dev:0 github.com/algosdev/comp-test1, github.com/algosdev/mui-masked, github.com/algosec/algosec-python, +github.com/algosec/connectivity-risk-analysis-action, +github.com/algosec/prevasio-cicd-container-security-action, github.com/algosup/game,num_dependents_deps.dev:0 github.com/algosup/gamev2,num_dependents_deps.dev:0 github.com/algotech/snowbox, @@ -236858,6 +242271,7 @@ github.com/ali-ieu/ieu-js-sdk, github.com/ali-javed/somtime, github.com/ali-javed/somtimes, github.com/ali-kamalizade/better-protractor,num_dependents_deps.dev:0 +github.com/ali-kamalizade/es-check-action, github.com/ali-kamalizade/text-select,num_dependents_deps.dev:0 github.com/ali-kazmi85/teams-reply-injector,num_dependents_deps.dev:0 github.com/ali-khalse/next1api, @@ -237012,12 +242426,15 @@ github.com/aliaksandr-yermalayeu/clusterfck,num_dependents_deps.dev:0 github.com/aliakseiherman/feasible-ui,num_dependents_deps.dev:0 github.com/aliakseiyanchuk/mashery-v3-go-client,num_dependents_deps.dev:0 github.com/alialaa/instascan-es5,num_dependents_deps.dev:0 +github.com/alialaa/issue-action, +github.com/alialaa/open-issue, github.com/alialavia/gulp-static-template-resolver,num_dependents_deps.dev:0 github.com/alialfredji/jwtin,num_dependents_deps.dev:0 github.com/alializade/react-native-credit-card-type,num_dependents_deps.dev:0 github.com/aliallomani/terraform-provider-hue,num_dependents_deps.dev:0 github.com/alialparslan/alpeventemitter,num_dependents_deps.dev:0 github.com/alialparslan/quranJS,num_dependents_deps.dev:0 +github.com/alialrubaye/aws-s3-create-bucket, github.com/alianca-hospitalar/feature-branch-deployer,num_dependents_deps.dev:0 github.com/aliandri092017/go-say-hello,num_dependents_deps.dev:0 github.com/aliang/google_contacts_api,num_dependents_deps.dev:0 @@ -237073,6 +242490,7 @@ github.com/aliasgherbadshah/variables-type-validator,num_dependents_deps.dev:0 github.com/aliashahi/milieux-workspace,num_dependents_deps.dev:0 github.com/aliasif1/pypi_simple_calculator, github.com/aliask/clapper-csound,num_dependents_deps.dev:0 +github.com/aliasmee/compress-pic, github.com/aliasmrchips/sprockets,num_dependents_deps.dev:0 github.com/aliaspayments/vlt-client,num_dependents_deps.dev:0 github.com/aliasproject/imgdefer,num_dependents_deps.dev:0 @@ -237424,6 +242842,7 @@ github.com/alice-biometrics/meiga, github.com/alice-biometrics/onboarding-python, github.com/alice-biometrics/onboarding-react-native,num_dependents_deps.dev:0 github.com/alice-biometrics/petisco, +github.com/alice-biometrics/release-creator, github.com/alice-em/copy-data,num_dependents_deps.dev:0 github.com/alice-em/dice,num_dependents_deps.dev:0 github.com/alice-em/encodePathToUri,num_dependents_deps.dev:0 @@ -237458,6 +242877,7 @@ github.com/alicebob/miniredis,"criticality_score:0.516700,num_dependents_deps.de github.com/alicebob/sqlit,num_dependents_deps.dev:0 github.com/alicebob/sqlittle,num_dependents_deps.dev:3 github.com/alicebob/verssion,num_dependents_deps.dev:0 +github.com/alicechuaqh/secret-parser, github.com/alicedinunno/go-image-database,num_dependents_deps.dev:0 github.com/alicedinunno/go-logger,num_dependents_deps.dev:0 github.com/alicedinunno/go-logger-client,num_dependents_deps.dev:0 @@ -237624,6 +243044,11 @@ github.com/aliencreations/alien-node-redis-utils,num_dependents_deps.dev:0 github.com/aliencreations/alien-node-winston-utils,num_dependents_deps.dev:0 github.com/aliencreations/redistub,num_dependents_deps.dev:0 github.com/aliencreations/responsiveless,num_dependents_deps.dev:0 +github.com/aliencube/arm-ttk-actions, +github.com/aliencube/bicep-build-actions, +github.com/aliencube/frontmatter-to-json-actions, +github.com/aliencube/microsoft-teams-actions, +github.com/aliencube/publish-profile-actions, github.com/alieneclectic/generator-dss-email,num_dependents_deps.dev:0 github.com/alienegze/bot-do-dc,num_dependents_deps.dev:0 github.com/alieneme/react-native-unsafe-web-socket,num_dependents_deps.dev:0 @@ -237676,6 +243101,7 @@ github.com/alifanov/django-url-fullpath-redirect, github.com/alifarahani1998/bookings,num_dependents_deps.dev:0 github.com/alifarrokh/socks5-async,num_dependents_deps.dev:0 github.com/alifd-group/materials, +github.com/aliffaizar/action-ssh, github.com/alifgiant/hackathon_may2018_bukakoneksi,num_dependents_deps.dev:0 github.com/alifiratari/beautify-scrollbar,num_dependents_deps.dev:0 github.com/alifiratari/v2-table,num_dependents_deps.dev:0 @@ -237695,6 +243121,7 @@ github.com/alifw03/mini-calculator-native,num_dependents_deps.dev:0 github.com/alifya53/factorial_no,num_dependents_deps.dev:0 github.com/alifya53/rust_crate,num_dependents_deps.dev:0 github.com/alifzl/goje_scrapper, +github.com/alig789git/dockerSwarmOnWSL, github.com/aligator/checkpoint,num_dependents_deps.dev:0 github.com/aligator/gcode-viewer, github.com/aligator/goplug,num_dependents_deps.dev:0 @@ -237790,6 +243217,7 @@ github.com/alik0211/is-blocked,num_dependents_deps.dev:0 github.com/alik0211/mtproto-core,num_dependents_deps.dev:0 github.com/alik0211/tiny-storage,num_dependents_deps.dev:0 github.com/alik0211/tl-to-json,num_dependents_deps.dev:0 +github.com/alikamal1/Form_Data_HTTP_POST_Action, github.com/alikarimii/bookingvila-common,num_dependents_deps.dev:0 github.com/alikarimii/telegraf-calendar-telegram, github.com/alikazemkhanloo/epub.js,num_dependents_deps.dev:0 @@ -237797,6 +243225,7 @@ github.com/alikazemkhanloo/react-native-reanimated-slider,num_dependents_deps.de github.com/alikazemkhanloo/react-native-video-controller,num_dependents_deps.dev:0 github.com/alikazemkhanloo/react-reader,num_dependents_deps.dev:0 github.com/alikazemkhanloo/rn-sortable-grid,num_dependents_deps.dev:0 +github.com/alikbo/gce-cloudsql-proxy-github-actions, github.com/alikelleci/easysourcing,num_dependents_deps.dev:0 github.com/alikelleci/easysourcing-spring-boot-starter,num_dependents_deps.dev:0 github.com/alikh31/batchup,num_dependents_deps.dev:0 @@ -238005,7 +243434,9 @@ github.com/alinz/react-native-tabbar,num_dependents_deps.dev:0 github.com/alinz/react-native-through2, github.com/alinz/react-native-webview-bridge,"criticality_score:0.326330,num_dependents_deps.dev:0" github.com/alinz/scopejs,num_dependents_deps.dev:0 +github.com/alinz/script.go, github.com/alinz/simple-json-validator,num_dependents_deps.dev:0 +github.com/alinz/ssh-scp-action, github.com/alinz/storage.go,num_dependents_deps.dev:0 github.com/alinz/store-repository,num_dependents_deps.dev:0 github.com/aliogaili/meronex-icons,num_dependents_deps.dev:0 @@ -238108,6 +243539,7 @@ github.com/alirezamirian/react-use-controlled-state, github.com/alirezamirian/sass-bidi,num_dependents_deps.dev:0 github.com/alirezamirian/use-dropbox-chooser,num_dependents_deps.dev:0 github.com/alirezamirsepassi/react-native-epub-parser,num_dependents_deps.dev:0 +github.com/alirezanet/publish-nuget, github.com/alirezarahmani/go-mars,num_dependents_deps.dev:0 github.com/alirezarahmani/short-url,num_dependents_deps.dev:0 github.com/alirezarezaeikalat/jupyterlab-theme,num_dependents_deps.dev:0 @@ -238131,6 +243563,7 @@ github.com/alirn76/panther, github.com/alirn76/rubika-bot, github.com/alirn76/shaparak, github.com/alirun/fakturoid-js,num_dependents_deps.dev:0 +github.com/alis-is/setup-eli, github.com/alisaab/l0bnb, github.com/alisabrigok/tcmb-exchange-rates,num_dependents_deps.dev:0 github.com/alisabzevari/reastore,num_dependents_deps.dev:0 @@ -238159,6 +243592,7 @@ github.com/alisaitteke/node-red-contrib-vsts,num_dependents_deps.dev:0 github.com/alisakova/project-lvl1-s316,num_dependents_deps.dev:0 github.com/alisalahio/gatsby-plugin-metomic,num_dependents_deps.dev:0 github.com/alisalahio/help-widget,num_dependents_deps.dev:0 +github.com/alisalemmi/auto-link-issue, github.com/alisamfp/passport-rightsignature,num_dependents_deps.dev:0 github.com/alisamfp/passport-thingiverse,num_dependents_deps.dev:0 github.com/alisavch/equivalent-binary-trees,num_dependents_deps.dev:0 @@ -238293,6 +243727,7 @@ github.com/alisterlf/br-helpers,num_dependents_deps.dev:0 github.com/alisternorris/react-context-summoner,num_dependents_deps.dev:0 github.com/alisternorris/react-outside-call,num_dependents_deps.dev:0 github.com/alistratov/puretable, +github.com/alisuleymantopuz/list-of-files-by-extension-github-action, github.com/alisw/py-manga, github.com/alisyed/sequenceid,num_dependents_deps.dev:0 github.com/alitaheri/isomorphic-vm,num_dependents_deps.dev:118 @@ -238452,6 +243887,9 @@ github.com/aliyun-node/v8-gc-log-parser,num_dependents_deps.dev:0 github.com/aliyun-sls/zipkin-ingester,num_dependents_deps.dev:0 github.com/aliyun/HiTSDB-Client,num_dependents_deps.dev:0 github.com/aliyun/Resource-Orchestration-Service-Cloud-Development-Kit,num_dependents_deps.dev:272 +github.com/aliyun/ack-set-context, +github.com/aliyun/acr-login, +github.com/aliyun/acr-scan, github.com/aliyun/alibaba-cloud-sdk-go,"criticality_score:0.539950,num_dependents_deps.dev:1440" github.com/aliyun/alibabacloud-alfa,criticality_score:0.336420 github.com/aliyun/alibabacloud-apigateway-core-sdk, @@ -238523,6 +243961,7 @@ github.com/aliyun/aliyun-tablestore-go-sdk,num_dependents_deps.dev:70 github.com/aliyun/aliyun-tablestore-nodejs-sdk,num_dependents_deps.dev:38 github.com/aliyun/aliyun_assist_client,num_dependents_deps.dev:0 github.com/aliyun/cloud-design,num_dependents_deps.dev:20 +github.com/aliyun/configure-aliyun-credentials-action, github.com/aliyun/credentials-go,num_dependents_deps.dev:387 github.com/aliyun/credentials-java,num_dependents_deps.dev:268 github.com/aliyun/credentials-python, @@ -238570,6 +244009,7 @@ github.com/aliyun/oss-browser,criticality_score:0.347270 github.com/aliyun/oss-nodejs-sdk,num_dependents_deps.dev:298 github.com/aliyun/ossutil,"criticality_score:0.336880,num_dependents_deps.dev:0" github.com/aliyun/rpc-client-java,num_dependents_deps.dev:28 +github.com/aliyun/setup-aliyun-cli-action, github.com/aliyun/surftrace, github.com/aliyun/tea-console, github.com/aliyun/tea-fileform,num_dependents_deps.dev:8 @@ -238620,6 +244060,7 @@ github.com/alizbazar/redux-infuse,num_dependents_deps.dev:0 github.com/alizbazar/secure-serve,num_dependents_deps.dev:0 github.com/alizeait/flatto,num_dependents_deps.dev:0 github.com/alizeait/nested-equal,num_dependents_deps.dev:0 +github.com/alizeait/ts-copyright-action, github.com/alizeait/unflatto,num_dependents_deps.dev:0 github.com/alizeait/uuid,num_dependents_deps.dev:0 github.com/alizeegod/npmtest,num_dependents_deps.dev:0 @@ -238895,6 +244336,7 @@ github.com/allan2coder/water-mask,num_dependents_deps.dev:0 github.com/allanagross/lodown,num_dependents_deps.dev:0 github.com/allanalexandre/generator-frontlabs,num_dependents_deps.dev:0 github.com/allanalexandre/generator-webstarterkit,num_dependents_deps.dev:0 +github.com/allanalves23/ftp-action-studies, github.com/allanalves23/jsvalidators,num_dependents_deps.dev:0 github.com/allanbarcelos/o5-brvlog-icons,num_dependents_deps.dev:0 github.com/allanbian1017/lambda-http-utils,num_dependents_deps.dev:0 @@ -239001,6 +244443,7 @@ github.com/allantl/value-entry,num_dependents_deps.dev:0 github.com/allanvobraun/SnesGameManager, github.com/allanvobraun/dontpad-CLI,num_dependents_deps.dev:0 github.com/allanweir/aframe-touch-rotation-controls,num_dependents_deps.dev:0 +github.com/allanwsilva/check-pending-tasks, github.com/allardvanderouw/connect-ensure-authenticated,num_dependents_deps.dev:0 github.com/allardvanderouw/connect-ensure-authorization,num_dependents_deps.dev:0 github.com/allardvanhelbergen/vanhelbergen-tokens,num_dependents_deps.dev:0 @@ -239010,6 +244453,7 @@ github.com/allaux/traefik-image-optimize,num_dependents_deps.dev:0 github.com/allbarbos/dh-meu-primeiro-modulo,num_dependents_deps.dev:0 github.com/allbarbos/jwt-token-parse,num_dependents_deps.dev:0 github.com/allbarbos/pratica-aovivo,num_dependents_deps.dev:0 +github.com/allbarbos/serverless-deploy-action, github.com/allbin/google-maps-wrapper, github.com/allbin/sirius-sms, github.com/allbin/sso-helper,num_dependents_deps.dev:0 @@ -239053,6 +244497,7 @@ github.com/allcount/allcountjs-mailgun,num_dependents_deps.dev:4 github.com/allcount/allcountjs-twitter,num_dependents_deps.dev:0 github.com/allcpu/websocket,num_dependents_deps.dev:0 github.com/allddarrass/tc-encoder,num_dependents_deps.dev:0 +github.com/alldevic/arduino-sketchjson-parser, github.com/alldone/ngx-image-compress,num_dependents_deps.dev:0 github.com/allebacco/listthedocs, github.com/alleetw101/brainseg, @@ -239104,6 +244549,11 @@ github.com/allegro/turnilo,"criticality_score:0.466500,num_dependents_deps.dev:0 github.com/allegro/typescript-strict-plugin,num_dependents_deps.dev:0 github.com/allegro/votakvot, github.com/allegroai/clearml,criticality_score:0.434820 +github.com/allegroai/clearml-actions-detect-model-degradation, +github.com/allegroai/clearml-actions-display-model-performance, +github.com/allegroai/clearml-actions-get-stats-old, +github.com/allegroai/clearml-actions-train-model, +github.com/allegroai/clearml-actions-verify-code-execution, github.com/allegroai/clearml-agent, github.com/allegroai/clearml-serving, github.com/allegroai/clearml-session, @@ -239118,7 +244568,9 @@ github.com/allejo/bzflag-networking.py, github.com/allejo/eyeglass-sassy-data,num_dependents_deps.dev:0 github.com/allejo/jekyll-toc,criticality_score:0.385460 github.com/allejo/react-a11y-dialog,num_dependents_deps.dev:0 +github.com/allejo/setup-dasel, github.com/allejo/simple-livereload-server,num_dependents_deps.dev:0 +github.com/allejo/supybot-notification-action, github.com/allejok96/whackerhero, github.com/allekmott/aamras, github.com/allelos/vectors, @@ -239146,6 +244598,7 @@ github.com/allen13/hello-openshift,num_dependents_deps.dev:0 github.com/allen198411/dutool,num_dependents_deps.dev:0 github.com/allen405/cfeng_hello,num_dependents_deps.dev:0 github.com/allen546/serverhttp, +github.com/allen6131/ios-build-action, github.com/allen9009/eureka-client,num_dependents_deps.dev:0 github.com/allen9009/zookeeper-config-client,num_dependents_deps.dev:0 github.com/allenRoyston/VJS-Slider,num_dependents_deps.dev:0 @@ -239171,8 +244624,10 @@ github.com/allenai/allennlp-models, github.com/allenai/allennlp-semparse, github.com/allenai/allennlp-server, github.com/allenai/beaker,num_dependents_deps.dev:0 +github.com/allenai/beaker-action, github.com/allenai/beaker-cli,num_dependents_deps.dev:0 github.com/allenai/beaker-py, +github.com/allenai/beaker-run-action, github.com/allenai/bi-att-flow,Google github.com/allenai/bilm-tf, github.com/allenai/bytefmt,num_dependents_deps.dev:0 @@ -239192,6 +244647,7 @@ github.com/allenai/openregex-scala,num_dependents_deps.dev:0 github.com/allenai/pybart, github.com/allenai/science-parse,"criticality_score:0.298580,num_dependents_deps.dev:0" github.com/allenai/scispacy,criticality_score:0.367850 +github.com/allenai/setup-beaker, github.com/allenai/signal,num_dependents_deps.dev:0 github.com/allenai/spaCy-trained-UD-model, github.com/allenai/syrup,num_dependents_deps.dev:0 @@ -239223,10 +244679,13 @@ github.com/allenevans/Jarr.js,num_dependents_deps.dev:0 github.com/allenevans/essencejs,num_dependents_deps.dev:0 github.com/allenevans/json-clean,num_dependents_deps.dev:0 github.com/allenevans/nectar.js,num_dependents_deps.dev:0 +github.com/allenevans/set-env, github.com/allenfantasy/colorhex,num_dependents_deps.dev:0 github.com/allengeorge/libraft,num_dependents_deps.dev:2 github.com/allengeorge/prometheus-query,num_dependents_deps.dev:0 github.com/allengzh/juf,num_dependents_deps.dev:0 +github.com/allenheltondev/api-spec-to-api-destinations, +github.com/allenheltondev/detect-breaking-changes-action, github.com/allenheltondev/newman-pro,num_dependents_deps.dev:0 github.com/allenhwkim/angular-jsdoc,num_dependents_deps.dev:0 github.com/allenhwkim/angular-template,num_dependents_deps.dev:2 @@ -239616,6 +245075,8 @@ github.com/allextools/singletonprogramstart,num_dependents_deps.dev:0 github.com/allexxis/react-native-chip,num_dependents_deps.dev:0 github.com/allexy/fishes,num_dependents_deps.dev:0 github.com/alleycat-at-git/http_router,num_dependents_deps.dev:0 +github.com/alleyinteractive/action-deploy-to-pantheon, +github.com/alleyinteractive/action-update-wordpress-plugin, github.com/alleyinteractive/aria-menu,num_dependents_deps.dev:0 github.com/alleyinteractive/critical-style-loader,num_dependents_deps.dev:8 github.com/alleyinteractive/css-modules-helpers,num_dependents_deps.dev:0 @@ -239783,6 +245244,8 @@ github.com/allnamesrtaken/goodcache,num_dependents_deps.dev:0 github.com/allnamesrtaken/goodcore,num_dependents_deps.dev:0 github.com/allnamesrtaken/goodstore, github.com/allnamesrtaken/goodtap,num_dependents_deps.dev:0 +github.com/allnnde/semver-action, +github.com/allnodes-bot/xtra-hook-shot, github.com/allnodes/fireblocks,num_dependents_deps.dev:0 github.com/allnulled/angular-simple-nav-menu,num_dependents_deps.dev:0 github.com/allnulled/assertivity,num_dependents_deps.dev:0 @@ -239888,6 +245351,7 @@ github.com/alloc/wana-debug,num_dependents_deps.dev:0 github.com/alloc/wana-test-utils,num_dependents_deps.dev:0 github.com/alloc/wants-mobile,num_dependents_deps.dev:0 github.com/allocamelus/allocamelus,num_dependents_deps.dev:0 +github.com/allocine/action-git-metadata, github.com/allocloud/allocloud-js-sdk,num_dependents_deps.dev:0 github.com/allocloud/trob,num_dependents_deps.dev:0 github.com/allofshop/aos-sdk,num_dependents_deps.dev:0 @@ -239968,6 +245432,7 @@ github.com/allspiritseve/sampler,num_dependents_deps.dev:0 github.com/allsquare/react-apple-signin-auth,num_dependents_deps.dev:0 github.com/allsquare/react-native-image-gallery,num_dependents_deps.dev:0 github.com/allsquare/react-native-svg-uri, +github.com/allthatjazzleo/actions-pull-request-add-comment, github.com/allthecodes/gsites-maven-plugin,num_dependents_deps.dev:0 github.com/allthedocs/allthedocs,num_dependents_deps.dev:0 github.com/allthemusic/ipfs-api,num_dependents_deps.dev:0 @@ -240019,6 +245484,7 @@ github.com/allure-framework/allure2,"criticality_score:0.451640,num_dependents_d github.com/allure-framework/allure2-model,num_dependents_deps.dev:1662 github.com/allure-framework/cucumberjs-allure-reporter, github.com/allure-framework/mocha-allure-reporter, +github.com/allure-framework/setup-allurectl, github.com/allurefw/allure-report,num_dependents_deps.dev:14 github.com/allurefw/allure1-model,num_dependents_deps.dev:14 github.com/allurefw/allure2-model,num_dependents_deps.dev:0 @@ -240144,6 +245610,7 @@ github.com/almenjonatan/tfm_api_client, github.com/almenon/arepl-vscode,num_dependents_deps.dev:0 github.com/almenscorner/IntuneCD, github.com/almereyda/mdbook-emoji,num_dependents_deps.dev:0 +github.com/almerindo/action-env-from-aws-ssm, github.com/almerindo/semantic-sentry-error,num_dependents_deps.dev:0 github.com/almerindo/traceability,num_dependents_deps.dev:0 github.com/almerlucke/go-elb-deploy,num_dependents_deps.dev:0 @@ -240235,6 +245702,7 @@ github.com/almond-bongbong/react-interaction,num_dependents_deps.dev:0 github.com/almond-bongbong/react-simple-toasts,num_dependents_deps.dev:0 github.com/almond-hydroponics/almond-tr,num_dependents_deps.dev:0 github.com/almond-hydroponics/mqtt-hooks,num_dependents_deps.dev:0 +github.com/almond-org/hello-world, github.com/almond-sh/almond,"criticality_score:0.466930,num_dependents_deps.dev:3281" github.com/almond-sh/almond-scalafmt,num_dependents_deps.dev:0 github.com/almond-sh/jupyterlab-variableInspector, @@ -240479,6 +245947,7 @@ github.com/alonkashtan/k-unit-converter, github.com/alonkiller/wiki_search,num_dependents_deps.dev:0 github.com/alonkipnis/TwoSampleHC, github.com/alonkipnis/higher-criticism-test, +github.com/alonnalgo/typescript-container-action, github.com/alonoslav/bright-local-api,num_dependents_deps.dev:0 github.com/alonp99/angular-foundation-0.8.0-IB,num_dependents_deps.dev:0 github.com/alonp99/graphql-rest-wrapper,num_dependents_deps.dev:0 @@ -240511,6 +245980,8 @@ github.com/alonsodomin/enumeraum-mongodb,num_dependents_deps.dev:0 github.com/alonsodomin/kamon-cloudwatch,num_dependents_deps.dev:0 github.com/alonsodomin/scala-colog,num_dependents_deps.dev:4 github.com/alonsohki/google-drive-migrator,num_dependents_deps.dev:0 +github.com/alonsohki/slack-quotes-bot, +github.com/alonsohki/slack-webhook-payload, github.com/alonsojr1980/mongoose-generator,num_dependents_deps.dev:0 github.com/alonsomaniaco/Pillars-generator,num_dependents_deps.dev:0 github.com/alonsovzqz/generator-simple-js,num_dependents_deps.dev:0 @@ -240547,6 +246018,7 @@ github.com/alordash/date-parser,num_dependents_deps.dev:0 github.com/alordash/levenshtein,num_dependents_deps.dev:0 github.com/alordash/node-js-trello,num_dependents_deps.dev:0 github.com/alordash/parse-word-to-number,num_dependents_deps.dev:0 +github.com/alorel-actions/git-ident, github.com/alorence/django-modern-rpc, github.com/alorence/pysvg-py3, github.com/alorian/bitrix24-disk,num_dependents_deps.dev:0 @@ -240596,6 +246068,7 @@ github.com/aloysius-pgast/bittrex-signalr-client,num_dependents_deps.dev:0 github.com/aloysius-pgast/crypto-exchanges-rest-client-nodejs,num_dependents_deps.dev:0 github.com/aloysius-pgast/crypto-exchanges-ws-client-nodejs,num_dependents_deps.dev:0 github.com/alp-productions/Sporks,num_dependents_deps.dev:0 +github.com/alpa-team/manage-package, github.com/alpa9-ui/alpa9-ui,num_dependents_deps.dev:0 github.com/alpaalpa/color, github.com/alpaalpa/slack-webhook, @@ -240875,8 +246348,10 @@ github.com/alphamu/AnimatedEditText,num_dependents_deps.dev:0 github.com/alphamu/PinEntryEditText,"Google,num_dependents_deps.dev:0" github.com/alphamu/node-api-path,num_dependents_deps.dev:0 github.com/alphamu/yo-android-app,num_dependents_deps.dev:0 +github.com/alphamusic/VK-Notifications, github.com/alphanota/htm-js,num_dependents_deps.dev:0 github.com/alphanota/word-concat-js,num_dependents_deps.dev:0 +github.com/alphaolomi/actions-africastalking, github.com/alphaolomi/swahili,num_dependents_deps.dev:0 github.com/alphaomega-technology/Equation, github.com/alphapapa/magit-todos,criticality_score:0.398630 @@ -240934,6 +246409,7 @@ github.com/alphaweblab/tailwind-flexbox-grid,num_dependents_deps.dev:0 github.com/alphawq/hexo-theme-cli,num_dependents_deps.dev:0 github.com/alphawq/test,num_dependents_deps.dev:0 github.com/alphawq/webpack-4-react-16-antd-3,num_dependents_deps.dev:0 +github.com/alphayax/appscan-sast-action, github.com/alphayax/go-binance,num_dependents_deps.dev:0 github.com/alphazhangyz/q-desgin-pro,num_dependents_deps.dev:0 github.com/alpheios-project/alpheios-core,num_dependents_deps.dev:0 @@ -240964,6 +246440,7 @@ github.com/alphillips/select-field,num_dependents_deps.dev:0 github.com/alphillips/task,num_dependents_deps.dev:0 github.com/alphio/grunt-mswebdeploy-package,num_dependents_deps.dev:0 github.com/alphio/gulp-mswebdeploy-package, +github.com/alphpaca/monoplus-split-action, github.com/alphvino/mytests,num_dependents_deps.dev:0 github.com/alpianon/pandoc-inline-headers, github.com/alpiepho/coursera_go_classes,num_dependents_deps.dev:0 @@ -241052,6 +246529,7 @@ github.com/alpr777/homekit,num_dependents_deps.dev:0 github.com/alpr777/modbus,num_dependents_deps.dev:0 github.com/alpr777/modbus-nats,num_dependents_deps.dev:0 github.com/alpr777/modbus-rtu-nats,num_dependents_deps.dev:0 +github.com/alps-asd/asd-action, github.com/alpsmonaco/middleware,num_dependents_deps.dev:0 github.com/alpsmonaco/portforward,num_dependents_deps.dev:0 github.com/alptahta/credit-card-validator,num_dependents_deps.dev:0 @@ -241264,8 +246742,11 @@ github.com/alsotang/urlencode,num_dependents_deps.dev:0 github.com/alsotang/workerrouter,num_dependents_deps.dev:0 github.com/alsotang/yantl.js,num_dependents_deps.dev:0 github.com/alsprogrammer/PythonFuzzyLogic, +github.com/alsrb968/action-release-apk, github.com/alssndro/WorthWatching,num_dependents_deps.dev:0 github.com/alstephan/twit,num_dependents_deps.dev:0 +github.com/alstn2468/jira-publish-notification, +github.com/alstr/todo-to-issue-action, github.com/alstradocs/service-objects,num_dependents_deps.dev:0 github.com/alsuehrckwl/react-indexed-db-hooks,num_dependents_deps.dev:0 github.com/alsuehrckwl/react-make-dom-image,num_dependents_deps.dev:0 @@ -241298,6 +246779,7 @@ github.com/alt3/ember-tabler,num_dependents_deps.dev:0 github.com/alt3/sequelize-to-json-schemas,num_dependents_deps.dev:2 github.com/alt4dev/protobuff,num_dependents_deps.dev:0 github.com/alt70155/isucon8,num_dependents_deps.dev:0 +github.com/altMindInc/verify-user-membership, github.com/altProf/jirabas,num_dependents_deps.dev:0 github.com/alta-vr/alta-jsapi,num_dependents_deps.dev:0 github.com/alta-vr/att-websockets, @@ -241420,6 +246902,7 @@ github.com/alter-eco/choropleth,num_dependents_deps.dev:0 github.com/alter-eco/geo,num_dependents_deps.dev:2 github.com/alter-eco/select,num_dependents_deps.dev:0 github.com/alter-eggo/instascan,num_dependents_deps.dev:0 +github.com/alterNERDtive/setup-voiceattack-action, github.com/alterakey/trueseeing, github.com/altercation/solarized,criticality_score:0.377660 github.com/altereagle/arc,num_dependents_deps.dev:0 @@ -241453,6 +246936,7 @@ github.com/alterfan/phaser3-authoritative-server,num_dependents_deps.dev:0 github.com/altergo-tech/eslint-config, github.com/altergo-tech/prettier-config,num_dependents_deps.dev:0 github.com/alterhu2020/better-snowflake,num_dependents_deps.dev:0 +github.com/alterhu2020/hexo-gulp-action, github.com/alterhu2020/vue-cli-plugin-alterhu2020,num_dependents_deps.dev:0 github.com/alterhu2020/vue-videojs7,num_dependents_deps.dev:2 github.com/alteringres/JsChainTaskDelayed,num_dependents_deps.dev:0 @@ -241482,11 +246966,14 @@ github.com/alterx/gundb-react-auth,num_dependents_deps.dev:0 github.com/alterx/gundb-react-hooks,num_dependents_deps.dev:0 github.com/alterx/hoodie-plugin-react-native-server,num_dependents_deps.dev:0 github.com/alteryx/alteryxsparkutils,num_dependents_deps.dev:0 +github.com/alteryx/auto-approve-pr, github.com/alteryx/autonormalize, github.com/alteryx/cmdstan_ext, +github.com/alteryx/create-feedstock-meta-yaml, github.com/alteryx/evalml, github.com/alteryx/featuretools,criticality_score:0.450510 github.com/alteryx/featuretools-tsfresh-primitives, +github.com/alteryx/minimum-dependency-generator, github.com/alteryx/nlp_primitives, github.com/alteryx/promote-python, github.com/alteryx/snakeplane, @@ -241569,6 +247056,8 @@ github.com/altinokdarici/just-ioc,num_dependents_deps.dev:0 github.com/altinokdarici/modern-stack, github.com/altinselimi/flatelect,num_dependents_deps.dev:0 github.com/altinselimi/vueli,num_dependents_deps.dev:0 +github.com/altinukshini/deployment-action, +github.com/altinukshini/deployment-status, github.com/altio/foundation, github.com/altiore/react-base,num_dependents_deps.dev:0 github.com/altiore/react-components,num_dependents_deps.dev:0 @@ -241617,6 +247106,7 @@ github.com/altiusofficial/altiusjs,num_dependents_deps.dev:0 github.com/altiusofficial/altiusjs-lib,num_dependents_deps.dev:0 github.com/altiva/altiva,num_dependents_deps.dev:0 github.com/altiva/backend,num_dependents_deps.dev:0 +github.com/altive/pubspec-metadata, github.com/altizure/icons,num_dependents_deps.dev:0 github.com/altjs/container,num_dependents_deps.dev:0 github.com/altjs/form,num_dependents_deps.dev:0 @@ -241665,6 +247155,8 @@ github.com/altosaar/nomen, github.com/altoscode/ngx-easypiechart, github.com/altoscode/sass-magic-importer,num_dependents_deps.dev:0 github.com/altostra/altostra-cli-login-auth0,num_dependents_deps.dev:0 +github.com/altostra/login-action, +github.com/altostra/push-deploy-action, github.com/altostra/type-validations,num_dependents_deps.dev:0 github.com/altosz/rpisensors, github.com/altoviso/backdraft,num_dependents_deps.dev:0 @@ -241741,6 +247233,7 @@ github.com/altvod/classical, github.com/altvod/pymander, github.com/altvod/thestorygraph-client, github.com/altvrd/cli, +github.com/altwalker/setup-graphwalker, github.com/altworx/elm-chartjs,num_dependents_deps.dev:0 github.com/altynbek07/python-qazaq-transliterator, github.com/altyorunge/code-editor,num_dependents_deps.dev:0 @@ -241759,6 +247252,7 @@ github.com/alu0100888447/Auth-Npm-Module,num_dependents_deps.dev:0 github.com/alu0100888447/parse-ini-npm,num_dependents_deps.dev:0 github.com/alu0100904932/science,num_dependents_deps.dev:0 github.com/alu0100945850/Spotify-Node,num_dependents_deps.dev:0 +github.com/alu0101017396/use-hello-world-alu0101017396, github.com/alu0101042305/parseINI,num_dependents_deps.dev:0 github.com/alu0101133201/evaluateegg,num_dependents_deps.dev:0 github.com/aluanhaddad/aurelia-types-installer,num_dependents_deps.dev:0 @@ -242011,6 +247505,7 @@ github.com/alvarofe/frida-stalker-thread,num_dependents_deps.dev:0 github.com/alvarofpp/mre, github.com/alvarofpp/python-adt-extension, github.com/alvarofpp/validate-docbr, +github.com/alvarogabrielgomez/action-get-pubspec-key-flutter, github.com/alvarogf97/pyautodoc, github.com/alvarogrgz/easyELM, github.com/alvarogzp/python-sqlite-framework, @@ -242145,6 +247640,7 @@ github.com/alvesdiego18/react-native-slider-smile,num_dependents_deps.dev:0 github.com/alvesgabriel/feira_flores, github.com/alvesgabriel/pycutter, github.com/alveshelio/helio-resume, +github.com/alveshelio/mjml-to-html-github-action, github.com/alvesjtiago/cb,num_dependents_deps.dev:0 github.com/alvesjtiago/file-chunker,num_dependents_deps.dev:0 github.com/alvesjtiago/raw-system,num_dependents_deps.dev:0 @@ -242162,6 +247658,7 @@ github.com/alvimm/vtex-cms-sauce,num_dependents_deps.dev:0 github.com/alvin-777/flash-player-loader-for-electron,num_dependents_deps.dev:0 github.com/alvin-777/poi-plugin-poi-stats,num_dependents_deps.dev:0 github.com/alvin-fu/practice,num_dependents_deps.dev:0 +github.com/alvin-huang/consul-kv-github-action, github.com/alvin/foxbase,num_dependents_deps.dev:0 github.com/alvin0319/bdsx-economyapi,num_dependents_deps.dev:0 github.com/alvin1007/baekjoon,num_dependents_deps.dev:0 @@ -242169,6 +247666,7 @@ github.com/alvin1007/go-bf,num_dependents_deps.dev:0 github.com/alvin883/alvin-setup-cli, github.com/alvin883/automate-setup-react-cra,num_dependents_deps.dev:0 github.com/alvin883/babel-plugin-i18next-extract-to-wordpress-translation, +github.com/alvin883/github-action-wpe-site-deploy, github.com/alvin883/react-frankenstein,num_dependents_deps.dev:0 github.com/alvin883/react-hooks,num_dependents_deps.dev:0 github.com/alvinapca/testone,num_dependents_deps.dev:0 @@ -242188,6 +247686,7 @@ github.com/alvincrespo/mui-dark-elevation,num_dependents_deps.dev:0 github.com/alvincrespo/pto,num_dependents_deps.dev:0 github.com/alvincrespo/turbo-form,num_dependents_deps.dev:0 github.com/alvindotai/alvin, +github.com/alvindotai/check-sql-impact, github.com/alviner/async_lock, github.com/alvingalangcitaka/robotframework-imagetotextlibrary, github.com/alvinhochun/conrod_floatwin,num_dependents_deps.dev:0 @@ -242247,11 +247746,13 @@ github.com/alvinzhengq2/pty,num_dependents_deps.dev:0 github.com/alvis/gatsby-source-notion,num_dependents_deps.dev:0 github.com/alvis/presetter,num_dependents_deps.dev:0 github.com/alvis/xception,num_dependents_deps.dev:0 +github.com/alvisetrevisan/jira-details-action, github.com/alvisisme/cordova-plugin-logger,num_dependents_deps.dev:0 github.com/alvisisme/cordova-plugin-zipper,num_dependents_deps.dev:0 github.com/alvisisme/vue-component-button,num_dependents_deps.dev:0 github.com/alvitoraidhy/pluggers,num_dependents_deps.dev:0 github.com/alvivi/grunt-type,num_dependents_deps.dev:0 +github.com/alvivi/shield-badge, github.com/alvivi/snabbdom-tsx,num_dependents_deps.dev:0 github.com/alvjtc/gcp-pricing-info,num_dependents_deps.dev:0 github.com/alvon-X/alvonCV, @@ -242381,6 +247882,10 @@ github.com/alxarch/phantomtask-node,num_dependents_deps.dev:0 github.com/alxarch/phonenumber-for-kids,num_dependents_deps.dev:0 github.com/alxarch/potato-avatars,num_dependents_deps.dev:0 github.com/alxarch:loopify, +github.com/alxarno/issue-action, +github.com/alxarno/move-labeled-or-milestoned-issue, +github.com/alxarno/reps-stats, +github.com/alxarno/stale, github.com/alxaux/alxaux-pager,num_dependents_deps.dev:0 github.com/alxbauer/neeo-driver-kodi,num_dependents_deps.dev:0 github.com/alxblog/esp3d-mocking-server,num_dependents_deps.dev:0 @@ -242658,6 +248163,7 @@ github.com/amaabca/lexcmdcli,num_dependents_deps.dev:0 github.com/amaabca/sensitive-param-filter,num_dependents_deps.dev:0 github.com/amaan-ahmad/hashnode-easy,num_dependents_deps.dev:0 github.com/amaan75/fullscreen-material-ui-dialog-box,num_dependents_deps.dev:0 +github.com/amaaniqbal/sms-spam-detection, github.com/amaanm/ng2-checklist,num_dependents_deps.dev:0 github.com/amaanq/discordgocommands,num_dependents_deps.dev:0 github.com/amaanq/sc-compression.py, @@ -242715,6 +248221,7 @@ github.com/amadormf/pagination-template,num_dependents_deps.dev:0 github.com/amadormf/react-breadcrumb,num_dependents_deps.dev:0 github.com/amadormf/react-pag, github.com/amadormf/react-swipe-gallery,num_dependents_deps.dev:0 +github.com/amadornes/parse-properties-action, github.com/amadsen/autocluster,num_dependents_deps.dev:0 github.com/amadsen/calling-file,num_dependents_deps.dev:0 github.com/amadsen/configr8,num_dependents_deps.dev:0 @@ -242779,6 +248286,7 @@ github.com/amalbose/axa-reminder,num_dependents_deps.dev:0 github.com/amalc/rubyzoho,num_dependents_deps.dev:0 github.com/amaldare93/geofire-js,num_dependents_deps.dev:0 github.com/amaldevm19/echo-jwt,num_dependents_deps.dev:0 +github.com/amalej/npm-package-publisher, github.com/amaleksei/generator-nextjs-typescript-boilerplate,num_dependents_deps.dev:0 github.com/amalfra/angularjs-tree,num_dependents_deps.dev:0 github.com/amalfra/docker-hub, @@ -242883,6 +248391,7 @@ github.com/amanattou44/research,num_dependents_deps.dev:0 github.com/amanbolat/limiters,num_dependents_deps.dev:0 github.com/amanbolat/zo,num_dependents_deps.dev:0 github.com/amanboss9/naviboard,num_dependents_deps.dev:0 +github.com/amancevice/aws-sts-assume-role, github.com/amancevice/dip, github.com/amancevice/docker-superset,criticality_score:0.427240 github.com/amancevice/fest, @@ -242894,6 +248403,7 @@ github.com/amancevice/knackhq, github.com/amancevice/redpanda, github.com/amancevice/requests-iamauth, github.com/amancevice/secret-garden,num_dependents_deps.dev:0 +github.com/amancevice/setup-code-climate, github.com/amancevice/slackend,num_dependents_deps.dev:0 github.com/amanchik3007/currencyapi,num_dependents_deps.dev:0 github.com/amanchokshi/radio-dreams, @@ -242982,9 +248492,12 @@ github.com/amankapur007/trakt-tv-v2,num_dependents_deps.dev:0 github.com/amankhandelwal-ideaspark/data2db, github.com/amanlai/some_games, github.com/amanlatkar/timezone-conversions,num_dependents_deps.dev:0 +github.com/amanmagar/infisical-run-action, github.com/amanmalali/pipui, github.com/amanmoar277/clean-object-js, github.com/amanmoar277/object-js, +github.com/amannm/terraform-s3-backend-action, +github.com/amannn/action-semantic-pull-request, github.com/amannn/atom-format-javascript-comment,num_dependents_deps.dev:0 github.com/amannn/babel-preset-react-hot,num_dependents_deps.dev:0 github.com/amannn/diakonie-onlineBeratung-frontend, @@ -243055,6 +248568,7 @@ github.com/amapili/weak-value-map,num_dependents_deps.dev:0 github.com/amaqkkg/glng014-assignment3,num_dependents_deps.dev:0 github.com/amar-laksh/ros2soc,num_dependents_deps.dev:0 github.com/amar-shalgar/odim,num_dependents_deps.dev:0 +github.com/amar-sharma/deploy-firebase-github-ci, github.com/amarajs/core,num_dependents_deps.dev:0 github.com/amarajs/decorators,num_dependents_deps.dev:0 github.com/amarajs/plugin-bundle,num_dependents_deps.dev:0 @@ -243092,6 +248606,7 @@ github.com/amardaxini/opml-reader,num_dependents_deps.dev:0 github.com/amardaxini/rchart,num_dependents_deps.dev:0 github.com/amardaxini/ups_pickup,num_dependents_deps.dev:0 github.com/amardeep-programmer/network-prober, +github.com/amardeep2006/camunda-deploy-bpmn-action, github.com/amardeep24/PySet,num_dependents_deps.dev:0 github.com/amardrylab/gmsfile3, github.com/amareshk8/api-generator,num_dependents_deps.dev:0 @@ -243101,6 +248616,7 @@ github.com/amaret/pollenc, github.com/amaretto/punos,num_dependents_deps.dev:0 github.com/amaretto/waveform,num_dependents_deps.dev:0 github.com/amargon/nodebb-plugin-discord-notification,num_dependents_deps.dev:0 +github.com/amarhod/pdf-bibliography-action, github.com/amariampolskiy/touch-api,num_dependents_deps.dev:0 github.com/amarildobitri/ab-interval-timer,num_dependents_deps.dev:0 github.com/amarildolucas/fcm_pusher,num_dependents_deps.dev:0 @@ -243144,6 +248660,7 @@ github.com/amarpotghan/scala-fold,num_dependents_deps.dev:0 github.com/amarquand/PCNtoolkit, github.com/amarrella/fs2-elastic,num_dependents_deps.dev:0 github.com/amarrero/guessmac,num_dependents_deps.dev:0 +github.com/amarrerod/build_cmake_mpi, github.com/amarsahinovic/furozun, github.com/amarseelam/nativescript-photo-editor,num_dependents_deps.dev:0 github.com/amarshall/block_chain,num_dependents_deps.dev:0 @@ -243179,6 +248696,7 @@ github.com/amartinr1977/gitbook-plugin-notificaciones,num_dependents_deps.dev:0 github.com/amartya00/thesoup, github.com/amartyaa/sastainshorts,num_dependents_deps.dev:0 github.com/amarvin/fantasy-football-bot, +github.com/amary21/google-chat-notification, github.com/amarzavery/sway,num_dependents_deps.dev:0 github.com/amas0/octanegg, github.com/amasad/babel-plugin-dunderscore-dev-inline,num_dependents_deps.dev:0 @@ -243265,6 +248783,7 @@ github.com/amaurymartiny/polka.js,num_dependents_deps.dev:0 github.com/amaurymartiny/react-mapbox-gl-draw,num_dependents_deps.dev:2 github.com/amaurymartiny/react-web3-hoc,num_dependents_deps.dev:0 github.com/amaurymartiny/shoot-i-smoke,criticality_score:0.419120 +github.com/amauryval/publish_conda_package_action, github.com/amavect/go-openal,num_dependents_deps.dev:0 github.com/amaxalov/compose,num_dependents_deps.dev:0 github.com/amaxwell/tlutility,criticality_score:0.372020 @@ -243305,6 +248824,7 @@ github.com/amazeui/tagsinput,num_dependents_deps.dev:0 github.com/amazeui/tree,num_dependents_deps.dev:0 github.com/amazeui/videojs,num_dependents_deps.dev:0 github.com/amazg/file-size-check-plugin,num_dependents_deps.dev:0 +github.com/amazing-actions/selected-collaborators, github.com/amazing-gao/applet,num_dependents_deps.dev:0 github.com/amazing-gao/koa-oai-router, github.com/amazing-hash/luka,num_dependents_deps.dev:0 @@ -243359,6 +248879,7 @@ github.com/amazingandyyy/etherbrite,num_dependents_deps.dev:0 github.com/amazingandyyy/eventbrite-api,num_dependents_deps.dev:0 github.com/amazingandyyy/git-hooks,num_dependents_deps.dev:0 github.com/amazingandyyy/greeting-cli,num_dependents_deps.dev:0 +github.com/amazingandyyy/kustomize-diff, github.com/amazingandyyy/markdeck,num_dependents_deps.dev:0 github.com/amazingandyyy/node-runner,num_dependents_deps.dev:0 github.com/amazingandyyy/node-server,num_dependents_deps.dev:0 @@ -243389,6 +248910,7 @@ github.com/amazingvince/smart_alpha, github.com/amazinigmech2418/ServerLight,num_dependents_deps.dev:0 github.com/amazinsellers/amazon-sp-api-sdk-go,num_dependents_deps.dev:0 github.com/amazinsellers/ecommerce-models,num_dependents_deps.dev:0 +github.com/amazon-archives/amazon-chime-github-webhook, github.com/amazon-connect/amazon-connect-chatjs,num_dependents_deps.dev:0 github.com/amazon-connect/amazon-connect-streams,num_dependents_deps.dev:0 github.com/amazon-connect/amazon-connect-taskjs,num_dependents_deps.dev:0 @@ -243483,6 +249005,7 @@ github.com/amberkhan1028/lodown,num_dependents_deps.dev:0 github.com/ambermore/stackify,num_dependents_deps.dev:0 github.com/ambershogun/asciinator,num_dependents_deps.dev:0 github.com/ambersive/ngx-virtual-scroller,num_dependents_deps.dev:0 +github.com/ambersun1234/hardhat-test-action, github.com/ambertide/PyTCID, github.com/ambertide/datalite, github.com/ambertunnell/hybondnews,num_dependents_deps.dev:0 @@ -243505,6 +249028,7 @@ github.com/ambient-innovation/ai-django-core, github.com/ambient-innovation/graphene-django-ai, github.com/ambientBOX/node-sensordrone-bt,num_dependents_deps.dev:0 github.com/ambientis-org/hefesto,num_dependents_deps.dev:0 +github.com/ambientlight/amplify-cli-action, github.com/ambientlight/bs-pixi,num_dependents_deps.dev:0 github.com/ambientlight/bs-rx,num_dependents_deps.dev:0 github.com/ambientlight/react-azure-maps,num_dependents_deps.dev:0 @@ -243515,6 +249039,12 @@ github.com/ambientsound/pms,num_dependents_deps.dev:0 github.com/ambientsound/visp,num_dependents_deps.dev:0 github.com/ambientum/ambientum,criticality_score:0.328930 github.com/ambientum/cli, +github.com/ambilykk/actions-custom-oidc-claim, +github.com/ambilykk/copilot-usage-report, +github.com/ambilykk/dependabot-alert-export, +github.com/ambilykk/deployment-auto-approve, +github.com/ambilykk/deployment-review-comment, +github.com/ambilykk/job-run-attempt, github.com/ambimax/semantic-release-composer,num_dependents_deps.dev:0 github.com/ambionics/phpggc,criticality_score:0.420370 github.com/ambirex/afterwhile,num_dependents_deps.dev:0 @@ -243608,6 +249138,8 @@ github.com/ambitioninc/react-ui,num_dependents_deps.dev:0 github.com/ambitus-it/single-spa-iframes,num_dependents_deps.dev:0 github.com/ambiverse-nlu/ambiverse-nlu,num_dependents_deps.dev:0 github.com/ambiverse-nlu/knowner-models,num_dependents_deps.dev:0 +github.com/amblerhq/gh-actions-clubhouse-labeler, +github.com/amblerhq/gh-actions-pr-reviewstatus-labeler, github.com/amblerhq/withCSV,num_dependents_deps.dev:0 github.com/ambo-dalle/npm-convert-number-to-roman,num_dependents_deps.dev:0 github.com/amborle/featmap,num_dependents_deps.dev:0 @@ -243776,6 +249308,7 @@ github.com/amdurgin/cs558-submission-grader,num_dependents_deps.dev:2 github.com/amdurgin/cs558-submission-handler,num_dependents_deps.dev:0 github.com/amduttaa/amduttaa,num_dependents_deps.dev:0 github.com/amdwit/replace-xml-text, +github.com/ame-yu/action-delete-latest-release, github.com/amead24/gotraders,num_dependents_deps.dev:0 github.com/ameba-proteus/node-triton,num_dependents_deps.dev:0 github.com/ameba-proteus/proteus-cluster,num_dependents_deps.dev:0 @@ -243832,6 +249365,7 @@ github.com/ameetgohil/fixed2float,num_dependents_deps.dev:0 github.com/ameetgohil/signalflip-js,num_dependents_deps.dev:0 github.com/ameeuw/homebridge-mqttlightbulb,num_dependents_deps.dev:0 github.com/ameeyakumardas007/ngx-library-ameeya,num_dependents_deps.dev:0 +github.com/amegias/pr-notifications, github.com/amehime/hexo-renderer-multi-markdown-it,num_dependents_deps.dev:0 github.com/ameidance/paster_core,num_dependents_deps.dev:0 github.com/ameidance/paster_facade,num_dependents_deps.dev:0 @@ -243934,6 +249468,8 @@ github.com/amendable/state-styles,num_dependents_deps.dev:0 github.com/amendable/style-shorthands,num_dependents_deps.dev:0 github.com/amendmentai/forecast_models, github.com/amendmentai/synthetic_sample, +github.com/amendoa/action-setup-consul-template, +github.com/amendx/slackbot-release, github.com/amendx/smooth-dndrop,num_dependents_deps.dev:0 github.com/amendx/vue-dnd,num_dependents_deps.dev:0 github.com/amenema/smart-middleware,num_dependents_deps.dev:0 @@ -244132,6 +249668,8 @@ github.com/ameyakarnad/ameya-sample-package, github.com/ameyallibg/CDMX007-fe-md-links,num_dependents_deps.dev:0 github.com/ameyanaik11/ActiveInfo-UI,num_dependents_deps.dev:0 github.com/ameyasalagre/go-rest,num_dependents_deps.dev:0 +github.com/ameydev/gke-kubectl-action, +github.com/ameydev/hello-world-github-action, github.com/ameyer8/go-omega2gpio,num_dependents_deps.dev:0 github.com/ameyms/diffract,num_dependents_deps.dev:0 github.com/ameyms/grunt-ng-sass-colors, @@ -244199,6 +249737,7 @@ github.com/amiceli/shareon,num_dependents_deps.dev:0 github.com/amiceli/vue-socket.io-extended,num_dependents_deps.dev:0 github.com/amichaelgrant/logcast,num_dependents_deps.dev:0 github.com/amichaelparker/palindrome_gem,num_dependents_deps.dev:0 +github.com/amichel/pulumi-github-action, github.com/amichot/lodown,num_dependents_deps.dev:0 github.com/amichuda/jupyter-doexport, github.com/amickael/create-flask-service, @@ -244288,6 +249827,7 @@ github.com/amiiit/pigeon-cluster, github.com/amikhailau/medieval-game-server,num_dependents_deps.dev:0 github.com/amikhailau/users-service,num_dependents_deps.dev:0 github.com/amikitevich/ngx-clickout, +github.com/amikos-tech/py-vulnerability-scanner, github.com/amikrop/aiomixcloud, github.com/amikrop/django-blawg, github.com/amikrop/django-paste, @@ -244340,6 +249880,7 @@ github.com/amilajack/powerset,num_dependents_deps.dev:2 github.com/amilajack/react-wavesurfer,num_dependents_deps.dev:0 github.com/amilajack/renovate-config-bliss,num_dependents_deps.dev:0 github.com/amilajack/safe-access-check,num_dependents_deps.dev:0 +github.com/amilajack/size-limit-action, github.com/amilajack/themoviedb,num_dependents_deps.dev:0 github.com/amilajack/threejs-window-resize,num_dependents_deps.dev:0 github.com/amilajack/voyager-worker-test,num_dependents_deps.dev:0 @@ -244451,6 +249992,7 @@ github.com/amindunited/to-title-case,num_dependents_deps.dev:2 github.com/amindunited/utils,num_dependents_deps.dev:0 github.com/amindunited/write-file,num_dependents_deps.dev:2 github.com/amine-khemissi/lets,num_dependents_deps.dev:0 +github.com/amine-y/magento-actions, github.com/amine1107/Hexa,num_dependents_deps.dev:0 github.com/amine1107/Stylizer,num_dependents_deps.dev:0 github.com/amine1107/lighter,num_dependents_deps.dev:0 @@ -244458,6 +250000,8 @@ github.com/amine7536/clockwall,num_dependents_deps.dev:0 github.com/amine7536/csv2ical.js,num_dependents_deps.dev:0 github.com/amine7536/goqonto,num_dependents_deps.dev:0 github.com/amine7536/react-native-pixfactory-accordion,num_dependents_deps.dev:0 +github.com/amine7777/hardhat-action, +github.com/amine7777/molecule-action, github.com/aminebenkeroum/toggle-switch-react-native,num_dependents_deps.dev:0 github.com/aminebizid/nativescript-adal, github.com/aminebizid/simple_oauth2, @@ -244488,6 +250032,7 @@ github.com/amines713/language-poweron,num_dependents_deps.dev:0 github.com/aminetchitooss/angular-datetime-picker, github.com/aminetiyal/auth-capacitor, github.com/aminghani/NobitexAPI, +github.com/amingilani/push-to-balenacloud, github.com/amingilani/qrme,num_dependents_deps.dev:0 github.com/amingilani/string2emoji, github.com/aminhp93/amin-package,num_dependents_deps.dev:0 @@ -244564,6 +250109,7 @@ github.com/aminsaedi/payir-v2,num_dependents_deps.dev:0 github.com/aminsource/wian-utils,num_dependents_deps.dev:0 github.com/amintado/js-adler32,num_dependents_deps.dev:0 github.com/amintado/yii2-apricot-asset,num_dependents_deps.dev:0 +github.com/aminubakori/node-tfe-run, github.com/aminueza/terraform-minio-provider,num_dependents_deps.dev:0 github.com/aminueza/terraform-provider-minio,num_dependents_deps.dev:0 github.com/aminukano585/aminukano-palindrome,num_dependents_deps.dev:0 @@ -244577,6 +250123,7 @@ github.com/aminya/jsdoc2flow,num_dependents_deps.dev:0 github.com/aminya/mixto,num_dependents_deps.dev:0 github.com/aminya/node-XMLHttpRequest, github.com/aminya/node-minidump,num_dependents_deps.dev:0 +github.com/aminya/setup-cpp, github.com/aminya/solid-simple-table,num_dependents_deps.dev:0 github.com/aminya/space-pen,num_dependents_deps.dev:0 github.com/aminya/underscore-plus,num_dependents_deps.dev:0 @@ -244764,6 +250311,7 @@ github.com/amireh/zerohub,num_dependents_deps.dev:0 github.com/amireldor/markb, github.com/amiremohamadi/Soundify, github.com/amiremperor/bookstore-api,num_dependents_deps.dev:0 +github.com/amireshoon/minifyAction, github.com/amirfefer/react-ellipsis-with-tooltip,num_dependents_deps.dev:34 github.com/amirfl/react-native-num-textinput,num_dependents_deps.dev:0 github.com/amirfru/eparams, @@ -244796,6 +250344,19 @@ github.com/amirhossein693/extract-css-chunks-webpack-plugin-with-page-direction, github.com/amirhossein693/grunt-filerev-simple-replace,num_dependents_deps.dev:0 github.com/amirhossein92/layout-generator,num_dependents_deps.dev:0 github.com/amirhosseinab/inin,num_dependents_deps.dev:0 +github.com/amirisback/android-app-call-submodule-as-library, +github.com/amirisback/automated-build-android-app-with-github-action, +github.com/amirisback/consumable-code-movie-tmdb-api, +github.com/amirisback/consumable-code-news-api, +github.com/amirisback/desktop-news-app, +github.com/amirisback/doolan-website, +github.com/amirisback/easy-kotlin-lib-jar, +github.com/amirisback/frogo-admob, +github.com/amirisback/frogo-log, +github.com/amirisback/frogo-notification, +github.com/amirisback/frogo-recycler-view, +github.com/amirisback/keyboard, +github.com/amirisback/nutrition-framework, github.com/amirito/react-native-password-eye,num_dependents_deps.dev:0 github.com/amirjani/go-data-structure,num_dependents_deps.dev:0 github.com/amirjani/go-data-structure-design-pattern,num_dependents_deps.dev:0 @@ -244805,6 +250366,7 @@ github.com/amirjanyanIT/react-form-designer,num_dependents_deps.dev:0 github.com/amirjr1378/ant-design-pro-layout,num_dependents_deps.dev:0 github.com/amirk333/transfer.sh,num_dependents_deps.dev:0 github.com/amirkabiri/suggest.js, +github.com/amirkdv/pydantic-pr-checks, github.com/amirkdv/sphinxcontrib-wiki, github.com/amirkenarang/typeorm-mongo-health,num_dependents_deps.dev:0 github.com/amirklick/serverless-print-dots,num_dependents_deps.dev:0 @@ -244815,6 +250377,8 @@ github.com/amirlix/nuxt-moment-jalaali, github.com/amirlogic/nestedlogic-htree,num_dependents_deps.dev:0 github.com/amirmahdimajedi/nuxt-hcaptcha,num_dependents_deps.dev:0 github.com/amirmahdimajedi/vue-elm-components,num_dependents_deps.dev:0 +github.com/amirmarmul/docker-context-ssh-action, +github.com/amirmarmul/mrsk-deploy-action, github.com/amirmasoud/asphyxia,num_dependents_deps.dev:0 github.com/amirmd76/box, github.com/amirmd76/cdm, @@ -244837,6 +250401,7 @@ github.com/amirmsoltani/object-tool,num_dependents_deps.dev:0 github.com/amirnajafi/quantperf, github.com/amiroff157/reactjs-use-form,num_dependents_deps.dev:0 github.com/amironov73/PythonIrbis, +github.com/amiros17/stam, github.com/amirouche/lbst, github.com/amirouche/zettlekasten, github.com/amirparvez/file-custodian,num_dependents_deps.dev:0 @@ -244873,6 +250438,7 @@ github.com/amirydev/go-pipe-test,num_dependents_deps.dev:0 github.com/amirylm/go-libp2p-pnet-node,num_dependents_deps.dev:0 github.com/amirylm/libp2p-facade,num_dependents_deps.dev:0 github.com/amirylm/priv-libp2p-node,num_dependents_deps.dev:0 +github.com/amirza-clear/aws-ecr-action, github.com/amirzahavi/graphql-anonymous-plugin,num_dependents_deps.dev:0 github.com/amirzaidi/Launcher3,criticality_score:0.428460 github.com/amirzandi13/golang-first,num_dependents_deps.dev:0 @@ -245009,6 +250575,7 @@ github.com/amitmerchant1990/pomolectron,num_dependents_deps.dev:0 github.com/amitmerchant1990/pretty-email-validator,num_dependents_deps.dev:0 github.com/amitmerchant1990/reverie,criticality_score:0.325090 github.com/amitmerchant1990/urlcolorup,num_dependents_deps.dev:0 +github.com/amitmiran137/doc-validator-action, github.com/amitmiran137/scaling-robot-plugins,num_dependents_deps.dev:0 github.com/amitmishrg/mnet-design-system,num_dependents_deps.dev:0 github.com/amitmishrg/storybook-design-system,num_dependents_deps.dev:0 @@ -245057,6 +250624,7 @@ github.com/amitrei/testprettier,num_dependents_deps.dev:0 github.com/amitripshtos/starlette-jwt, github.com/amitruls1/Iconripple,num_dependents_deps.dev:0 github.com/amits1995/logrus-windbg-hook,num_dependents_deps.dev:0 +github.com/amitsadafule/jenkins-build-github-action, github.com/amitsaha/gitbackup,num_dependents_deps.dev:0 github.com/amitsaha/go-parse-demos,num_dependents_deps.dev:0 github.com/amitsaha/golang-parsing-demo,num_dependents_deps.dev:0 @@ -245067,6 +250635,8 @@ github.com/amitshah2007/mticket,num_dependents_deps.dev:0 github.com/amitsharma77/star-amit,num_dependents_deps.dev:0 github.com/amitshekhariitbhu/Android-Debug-Database,criticality_score:0.362210 github.com/amitshekhariitbhu/Fast-Android-Networking,criticality_score:0.339230 +github.com/amitsingh-007/deploy-to-github-pages, +github.com/amitsingh-007/next-release-tag, github.com/amitsingh-007/webpack-watch-external-files-plugin,num_dependents_deps.dev:0 github.com/amitsinha559/cordova-plugin-back-as-home,num_dependents_deps.dev:0 github.com/amitt001/moodb,num_dependents_deps.dev:0 @@ -245124,6 +250694,7 @@ github.com/amjadjibon/pbkdf2_sha256,num_dependents_deps.dev:0 github.com/amjadraza/retail_sales_prediction, github.com/amjarino/loremarabic,num_dependents_deps.dev:0 github.com/amje/eslint-config,num_dependents_deps.dev:0 +github.com/amjed-ali-k/deploy-stack, github.com/amjedomar/atco,num_dependents_deps.dev:0 github.com/amjerm/go-tutorial,num_dependents_deps.dev:0 github.com/amjha/jsqm,num_dependents_deps.dev:0 @@ -245203,6 +250774,7 @@ github.com/ammanvedi/BorisBikeStationFinder,num_dependents_deps.dev:0 github.com/ammanvedi/Documental,num_dependents_deps.dev:0 github.com/ammanvedi/MendeleyJS,num_dependents_deps.dev:0 github.com/ammanvedi/teller,num_dependents_deps.dev:0 +github.com/ammar-ahmed22/SendSMSNotification, github.com/ammar-oker/spotifymoods, github.com/ammar/regexp_parser, github.com/ammar08429/mobily-sms,num_dependents_deps.dev:0 @@ -245226,9 +250798,14 @@ github.com/ammarahm-ed/react-native-reanimated-material-menu,num_dependents_deps github.com/ammarahm-ed/react-native-scoped-storage,num_dependents_deps.dev:0 github.com/ammarahm-ed/rn-floating-video-widget,num_dependents_deps.dev:0 github.com/ammaraskar/eslint-injected-proptypes,num_dependents_deps.dev:0 +github.com/ammaraskar/gcc-problem-matcher, +github.com/ammaraskar/msvc-problem-matcher, github.com/ammaraskar/pyCraft,criticality_score:0.404190 github.com/ammaraskar/reddit-title-has-verbatim-quote,num_dependents_deps.dev:0 github.com/ammaraskar/rust-dwarf-x86,num_dependents_deps.dev:0 +github.com/ammaraskar/sphinx-action, +github.com/ammaraskar/sphinx-problem-matcher, +github.com/ammaratef45/pr-url-action, github.com/ammarbinfaisal/prettinit,num_dependents_deps.dev:0 github.com/ammarbinfaisal/taskss,num_dependents_deps.dev:0 github.com/ammardodin/gfind,num_dependents_deps.dev:0 @@ -245324,6 +250901,9 @@ github.com/amobiz/regexgen.js,num_dependents_deps.dev:0 github.com/amoblin/Obsidian, github.com/amocer-idf/constructio-sdk-python, github.com/amochin/robotframework-eggplant, +github.com/amochkin/action-javascript, +github.com/amochkin/action-json, +github.com/amochkin/gha-json-value, github.com/amock/Python-LRU-cache, github.com/amodelaweb/discordgo,num_dependents_deps.dev:0 github.com/amodelbello/docker-hush-hush,num_dependents_deps.dev:0 @@ -245343,6 +250923,8 @@ github.com/amoe/nxquickplot, github.com/amoe/occubrow-graph-view,num_dependents_deps.dev:0 github.com/amoe/omeka-s-gateway, github.com/amoeba-inc/easyjson,num_dependents_deps.dev:0 +github.com/amoeba/combine-pdf-action, +github.com/amoeba/standardrb-action, github.com/amoebageek/react-cli,num_dependents_deps.dev:0 github.com/amoebaio/amoeba.io,num_dependents_deps.dev:0 github.com/amoebaio/amoeba.io-local-client,num_dependents_deps.dev:0 @@ -245444,12 +251026,17 @@ github.com/amonak/pine, github.com/amonak/radicale-kalabash-auth-token, github.com/amonak/radicale-kalabash-token-auth, github.com/amonapp/amon,criticality_score:0.339420 +github.com/amoncaldas/github-action-webapp-front-end-test, github.com/amoncaldas/vue-rest-client, github.com/amondal2/issue-print,num_dependents_deps.dev:0 github.com/amondit/node-ht1632,num_dependents_deps.dev:0 +github.com/amondnet/bard-codereview, github.com/amondnet/mongoose-uuid,num_dependents_deps.dev:0 +github.com/amondnet/now-deployment, github.com/amondnet/strapi,num_dependents_deps.dev:0 github.com/amondnet/strapi-provider-upload-uploadcare,num_dependents_deps.dev:0 +github.com/amondnet/test-action-1, +github.com/amondnet/vercel-action, github.com/amonfla/go-serial,num_dependents_deps.dev:0 github.com/amongiants/bwave,num_dependents_deps.dev:0 github.com/amongiants/etrig,num_dependents_deps.dev:2 @@ -245460,6 +251047,7 @@ github.com/amongiants/mbl,num_dependents_deps.dev:0 github.com/amongiants/mextend,num_dependents_deps.dev:0 github.com/amongiants/routebeer,num_dependents_deps.dev:0 github.com/amongiants/sanitize-elements,num_dependents_deps.dev:0 +github.com/amongil/gh-action-push-workflow-last-job-status-to-azure-queue, github.com/amoniacou/go-sidekiq,num_dependents_deps.dev:0 github.com/amonith/mattermost-file-list,num_dependents_deps.dev:0 github.com/amonks/conformant,num_dependents_deps.dev:0 @@ -245512,6 +251100,7 @@ github.com/amorphid/is_ok_ruby,num_dependents_deps.dev:0 github.com/amorphousxd/redux-promise-loading,num_dependents_deps.dev:0 github.com/amorri40/GameboyDisassembler,num_dependents_deps.dev:0 github.com/amorri40/gcmIsoParser,num_dependents_deps.dev:0 +github.com/amorriscode/book-box, github.com/amorriscode/stx-me,num_dependents_deps.dev:0 github.com/amorriscode/use-overflow,num_dependents_deps.dev:0 github.com/amortaza/acewallet,num_dependents_deps.dev:0 @@ -245561,6 +251150,7 @@ github.com/amouillard/mangovap,num_dependents_deps.dev:0 github.com/amourfrei/mini-code,num_dependents_deps.dev:0 github.com/amourlucy/git_gocode,num_dependents_deps.dev:0 github.com/amousa11/libss,num_dependents_deps.dev:0 +github.com/amousavigourabi/push-action, github.com/amoussard/grunt-dir2strings,num_dependents_deps.dev:0 github.com/amoussawi/recoder, github.com/amousset/rust-smtp,num_dependents_deps.dev:0 @@ -245625,6 +251215,7 @@ github.com/amoyjs/query, github.com/amoyjs/query-components,num_dependents_deps.dev:0 github.com/amoyjs/query-event,num_dependents_deps.dev:4 github.com/amoyjs/scene, +github.com/amozone-labs/fly-pr-review-apps, github.com/amp89/django-app-permissions, github.com/amp89/django-app-permissions-access-request, github.com/amp89/drf_advanced_token, @@ -245813,6 +251404,8 @@ github.com/amplitude/skylab-js-client, github.com/amplitude/skylab-js-server, github.com/amplitude/skylab-reactnative-client,num_dependents_deps.dev:0 github.com/amplitude/ua-parser-js, +github.com/amplium/git-crypt-action, +github.com/amplium/salt-ssh-action, github.com/amplogik/cordova-plugin-anypay,num_dependents_deps.dev:0 github.com/ampproject/amp-by-example,num_dependents_deps.dev:0 github.com/ampproject/amp-publisher-sample,num_dependents_deps.dev:0 @@ -245963,6 +251556,7 @@ github.com/ams-pro/apollo-plugin-transaction,num_dependents_deps.dev:0 github.com/ams-pro/filter-parser,num_dependents_deps.dev:0 github.com/ams-pro/service-utils,num_dependents_deps.dev:0 github.com/ams-pro/simple-graphql-client, +github.com/ams0/acr-task-github-action, github.com/amsa-code/fgb-decoder,num_dependents_deps.dev:0 github.com/amsa-code/sgb-decoder,num_dependents_deps.dev:0 github.com/amsakanna/jam-auth,num_dependents_deps.dev:0 @@ -245983,6 +251577,7 @@ github.com/amsehili/auditok,criticality_score:0.305520 github.com/amsemy/grunt-gumup,num_dependents_deps.dev:0 github.com/amsemy/gumup,num_dependents_deps.dev:0 github.com/amsemy/warby-js,num_dependents_deps.dev:0 +github.com/amshamah419/NoTouchy, github.com/amshamah419/whopy, github.com/amsher225inc/learn-git,num_dependents_deps.dev:0 github.com/amshinski/to-ico, @@ -246189,6 +251784,9 @@ github.com/amyth/django-liked, github.com/amytych/node-heatmaps,num_dependents_deps.dev:0 github.com/amytych/react-escape-outside, github.com/amytych/react-magic-grid, +github.com/amyu/get-next-kiri-ban, +github.com/amyu/setup-android, +github.com/amyu/setup-bundletool, github.com/amywinder900/celeb_births, github.com/amz-tools/amazon-sp-api,num_dependents_deps.dev:0 github.com/amzacatalin/my-tiny-package, @@ -246366,6 +251964,7 @@ github.com/anaestheticsapp/timely,num_dependents_deps.dev:0 github.com/anaetrezve/eslint-config-ts-anaet,num_dependents_deps.dev:0 github.com/anag004/ml-runlog, github.com/anaganisk/browser-image-compression,num_dependents_deps.dev:0 +github.com/anaganisk/caprover-action, github.com/anaganisk/digitalocean-dynamic-dns-ip,num_dependents_deps.dev:0 github.com/anaganisk/ngx-plyr,num_dependents_deps.dev:0 github.com/anagha-infoblox/infoblox-go-client,num_dependents_deps.dev:0 @@ -246487,6 +252086,7 @@ github.com/anaminus/rbxmk,num_dependents_deps.dev:0 github.com/anamolsoman/vuejs-image-gallery,num_dependents_deps.dev:0 github.com/ananagame/rich-go,num_dependents_deps.dev:4 github.com/ananas-dev/scoreman-overlay-melee-dark,num_dependents_deps.dev:4 +github.com/ananasGit/check-ecr, github.com/ananay-nag/object-split,num_dependents_deps.dev:0 github.com/ananay-nag/react-image-resolver,num_dependents_deps.dev:0 github.com/ananay-nag/text-formatter,num_dependents_deps.dev:0 @@ -246556,11 +252156,14 @@ github.com/anandpathak/email-analyser,num_dependents_deps.dev:0 github.com/anandprajapati1/autoCompleteTextbox,num_dependents_deps.dev:0 github.com/anandraj-coder/userapi,num_dependents_deps.dev:0 github.com/anandrajneesh/decision-engine,num_dependents_deps.dev:0 +github.com/anandrikka/github-app-token-action, github.com/anandrikka/http-promise-api,num_dependents_deps.dev:0 +github.com/anandrikka/issue-labels-action, github.com/anandsainath/react-codemirror2,num_dependents_deps.dev:0 github.com/anandsh123/bssdatepicker,num_dependents_deps.dev:0 github.com/anandsingh1011/algorithm-coding-golang,num_dependents_deps.dev:0 github.com/anandsingh1011/gceme,num_dependents_deps.dev:0 +github.com/anandsit/eks-helm-deploy-v2, github.com/anandsuresh/as-audio, github.com/anandsuresh/as-sox,num_dependents_deps.dev:0 github.com/anandsuresh/node-assert,num_dependents_deps.dev:0 @@ -246626,6 +252229,7 @@ github.com/ananseio/bunyan-nokafka, github.com/ananseio/bunyan-streams-parser,num_dependents_deps.dev:0 github.com/ananseio/cached-rethinkdb, github.com/anansi-framework/anansi, +github.com/anansi-js/anansi-github-action, github.com/anant-sharma/go-boilerplate,num_dependents_deps.dev:0 github.com/anant-sharma/go-boilerplate-utils,num_dependents_deps.dev:0 github.com/anant-sharma/go-utils,num_dependents_deps.dev:0 @@ -246675,6 +252279,7 @@ github.com/anaptfox/cacheman-file, github.com/anapupa/PyCVTLowpoly, github.com/anarcher/hubot-simple-logger,num_dependents_deps.dev:0 github.com/anarcher/kroller,num_dependents_deps.dev:0 +github.com/anarcher/kustomize-check-action, github.com/anarchicknight/nativescript-texttospeech,num_dependents_deps.dev:0 github.com/anarchicknight/nativescript-vibrate,num_dependents_deps.dev:0 github.com/anarchicknight/react-native-carrier-info,num_dependents_deps.dev:0 @@ -246716,6 +252321,7 @@ github.com/anas-ambri/GServiceMiner,num_dependents_deps.dev:0 github.com/anas-ambri/node-hammerhead-design,num_dependents_deps.dev:0 github.com/anas-argui/repo-devops,num_dependents_deps.dev:0 github.com/anas-domesticus/terrarun,num_dependents_deps.dev:0 +github.com/anas-elgarhy/aur-release-action, github.com/anas2479/bash-mirror,num_dependents_deps.dev:0 github.com/anasAsh/ng2-scroll-event,num_dependents_deps.dev:0 github.com/anasamo92/babel-preset-sagess,num_dependents_deps.dev:0 @@ -246738,6 +252344,7 @@ github.com/anasamo92/sagess-notifications,num_dependents_deps.dev:0 github.com/anasamo92/sagess-service-generator,num_dependents_deps.dev:0 github.com/anasamo92/webpack-sagess,num_dependents_deps.dev:0 github.com/anasamo92/webpack-updated,num_dependents_deps.dev:0 +github.com/anasbelmokhtar/custom-composite-action, github.com/anasbihi/generator-ionic-app,num_dependents_deps.dev:0 github.com/anasbousselham/react-easy-paginate,num_dependents_deps.dev:0 github.com/anascacais/epibox, @@ -246809,6 +252416,7 @@ github.com/anatawa12/auto-tostring,num_dependents_deps.dev:0 github.com/anatawa12/auto-visitor,num_dependents_deps.dev:0 github.com/anatawa12/compile-time-constant,num_dependents_deps.dev:0 github.com/anatawa12/discord-rcon,num_dependents_deps.dev:0 +github.com/anatawa12/fork-sync-all-branches, github.com/anatawa12/jar-in-jar-mod,num_dependents_deps.dev:0 github.com/anatawa12/jasm,num_dependents_deps.dev:0 github.com/anatawa12/java-stab-of-class-file,num_dependents_deps.dev:0 @@ -246880,6 +252488,7 @@ github.com/anatraxia/anatraxia,num_dependents_deps.dev:0 github.com/anaue/qitech,num_dependents_deps.dev:0 github.com/anault/projection,num_dependents_deps.dev:0 github.com/anaumovich/changevars,num_dependents_deps.dev:0 +github.com/anauskadutta/sample2, github.com/anaxilaus/coindata, github.com/anaxita/logit,num_dependents_deps.dev:0 github.com/anaxita/redis-ip-ban,num_dependents_deps.dev:0 @@ -246889,6 +252498,7 @@ github.com/anayarojo/platzom,num_dependents_deps.dev:0 github.com/anayjoshi/platypus, github.com/anaynayak/aws-cloudwatch-annotations,num_dependents_deps.dev:0 github.com/anaynayak/aws-security-viz,criticality_score:0.317110 +github.com/anaynayak/python-vulture-action, github.com/anazalea/pySankey, github.com/anazawa/sgfgrove,num_dependents_deps.dev:0 github.com/anb0s/plantuml-encoder,num_dependents_deps.dev:0 @@ -246903,6 +252513,9 @@ github.com/anbang/json-rpc-client,num_dependents_deps.dev:0 github.com/anbang/snowflake,num_dependents_deps.dev:0 github.com/anbarasu129/say_hellow,num_dependents_deps.dev:0 github.com/anbarief/actuarydesk, +github.com/anbazhagan45/copy-update-file, +github.com/anbazhagan45/update-property-value, +github.com/anbazhagan45/write-properties-file, github.com/anber/linaria-interop,num_dependents_deps.dev:0 github.com/anber/recoil-context,num_dependents_deps.dev:0 github.com/anbergem/cvhelper, @@ -246928,6 +252541,7 @@ github.com/anbuksv/mongoseed,num_dependents_deps.dev:0 github.com/anbuksv/swagger-ux, github.com/anbuselvan/apidoc-plugin-public,num_dependents_deps.dev:0 github.com/anbuselvan/meteor-up-lite,num_dependents_deps.dev:0 +github.com/anc95/ChatGPT-CodeReview, github.com/anc95/an-node-proxy,num_dependents_deps.dev:0 github.com/anc95/inquirer-file-tree-selection,num_dependents_deps.dev:6 github.com/anc95/jest-chain-transform,num_dependents_deps.dev:0 @@ -247012,6 +252626,8 @@ github.com/anchore/grype,"criticality_score:0.357020,num_dependents_deps.dev:0" github.com/anchore/grype-db,num_dependents_deps.dev:0 github.com/anchore/kai,num_dependents_deps.dev:0 github.com/anchore/kubernetes-admission-controller,num_dependents_deps.dev:0 +github.com/anchore/sbom-action, +github.com/anchore/scan-action, github.com/anchore/stereoscope,num_dependents_deps.dev:2 github.com/anchore/syft,num_dependents_deps.dev:0 github.com/anchore/test-infra,num_dependents_deps.dev:0 @@ -247059,6 +252675,7 @@ github.com/ancoron/pg-inet-maven,num_dependents_deps.dev:45 github.com/ancs21/use-next-middleware, github.com/ancwrd1/ipp.rs,num_dependents_deps.dev:0 github.com/ancyker/passwdqc-js,num_dependents_deps.dev:0 +github.com/and-cru/actions-s3-static-upload, github.com/and-cru/eslint-config,num_dependents_deps.dev:0 github.com/and-cru/use-foreground, github.com/and-end/linkedin-auth-client,num_dependents_deps.dev:0 @@ -247070,6 +252687,7 @@ github.com/and-semakin/flake8-pytestrail, github.com/and-semakin/marshmallow-toplevel, github.com/and-sm/nose2rt, github.com/and-sm/pytest-rt, +github.com/and-that/private-composer-registry-action, github.com/and-valentini/ng-dynamic-form,num_dependents_deps.dev:0 github.com/and-viceversa/landsat_L1_qa_tool, github.com/and-viceversa/mtl_to_xml, @@ -247105,6 +252723,7 @@ github.com/and80506/choc-server, github.com/and80506/report-url,num_dependents_deps.dev:0 github.com/and80506/tiny-static-server,num_dependents_deps.dev:0 github.com/andOTP/andOTP,criticality_score:0.542130 +github.com/andac-ozcan/actions-find-and-replace-string, github.com/andaica/custom-background-video,num_dependents_deps.dev:0 github.com/andaleebroomy/react-pdf-js,num_dependents_deps.dev:0 github.com/andalibi/gami,num_dependents_deps.dev:0 @@ -247207,6 +252826,7 @@ github.com/andelf/bl702-pac,num_dependents_deps.dev:0 github.com/andelf/embedded-drivers,num_dependents_deps.dev:0 github.com/andelf/epd,num_dependents_deps.dev:0 github.com/andelf/go-curl,"criticality_score:0.316040,num_dependents_deps.dev:0" +github.com/andelf/nightly-release, github.com/andelf/pico-rust-playground,num_dependents_deps.dev:0 github.com/andelf/picopb,num_dependents_deps.dev:0 github.com/andelf/pyqqweibo, @@ -247227,6 +252847,7 @@ github.com/andeling/fcs,num_dependents_deps.dev:0 github.com/andeman/opnsense_cli, github.com/andenq/web-resource-compiler,num_dependents_deps.dev:0 github.com/andeplane/cognite-tesla,num_dependents_deps.dev:0 +github.com/andeplane/deploy-function-action, github.com/andeplane/omovi,num_dependents_deps.dev:0 github.com/ander-nz/gulp-git-ls,num_dependents_deps.dev:0 github.com/ander-nz/webpack-babel-external-helpers,num_dependents_deps.dev:0 @@ -247234,6 +252855,8 @@ github.com/ander7agar/altcoin-rpc,num_dependents_deps.dev:0 github.com/ander7agar/mailnuggets-js, github.com/anderMatt/wmata-api-node,num_dependents_deps.dev:0 github.com/anderberserk/rest-api-go-exercise,num_dependents_deps.dev:0 +github.com/andercore-labs/action-license-compliance, +github.com/andercore-labs/action-license-compliance-slack, github.com/anderejd/cargo-walk,num_dependents_deps.dev:0 github.com/anderejd/extern_attrib,num_dependents_deps.dev:0 github.com/anderejd/jsonfmt,num_dependents_deps.dev:0 @@ -247501,6 +253124,7 @@ github.com/andersthomson/govcr,num_dependents_deps.dev:0 github.com/anderstornkvist/angular-calendar,num_dependents_deps.dev:0 github.com/anderswb/PykkeLabels, github.com/anderswestberg/mermaid-filter,num_dependents_deps.dev:0 +github.com/andersy005/gh-action-py-liccheck, github.com/andersy005/jupyterhub-singularityspawner, github.com/andersy005/repo2singularity, github.com/anderwansam/gocoding,num_dependents_deps.dev:0 @@ -247679,6 +253303,7 @@ github.com/andlabs/libui,criticality_score:0.475390 github.com/andlabs/ui,criticality_score:0.341270 github.com/andlaz/marathon-srv,num_dependents_deps.dev:0 github.com/andli/micromenu, +github.com/andloh/actions-k8s-manifests-validate-kubeval, github.com/andlrc/json_merger,num_dependents_deps.dev:0 github.com/andlrc/rpgledoc,num_dependents_deps.dev:0 github.com/andmagom/gitea-operator,num_dependents_deps.dev:0 @@ -247753,6 +253378,7 @@ github.com/andoshin11/squelette,num_dependents_deps.dev:0 github.com/andoshin11/storybook-vue3,num_dependents_deps.dev:0 github.com/andoshin11/swag-jv,num_dependents_deps.dev:0 github.com/andoshin11/typed-oax,num_dependents_deps.dev:0 +github.com/andoshin11/typescript-error-reporter-action, github.com/andoshin11/vue-cli-plugin-nuxt-starter-template,num_dependents_deps.dev:0 github.com/andoshin11/vue-ts-plugin,num_dependents_deps.dev:0 github.com/andoshin11/vue-type-audit,num_dependents_deps.dev:0 @@ -247807,6 +253433,7 @@ github.com/andrade0/cacheable-methods-dynamodb,num_dependents_deps.dev:0 github.com/andrade0/dynamodb-repository,num_dependents_deps.dev:0 github.com/andrade0/ts-aws-entities,num_dependents_deps.dev:0 github.com/andrade0/ts-to-bin,num_dependents_deps.dev:0 +github.com/andraderaul/compare-env-files, github.com/andram/nonlindyn, github.com/andranikarakelyan/crow-lib,num_dependents_deps.dev:0 github.com/andrao/andrao-https,num_dependents_deps.dev:0 @@ -247910,6 +253537,7 @@ github.com/andrazpolak/pythonPackage_Pip, github.com/andrba/aba,num_dependents_deps.dev:0 github.com/andrba/hungryform,num_dependents_deps.dev:0 github.com/andrcuns/addon-storyshots-wdio,num_dependents_deps.dev:0 +github.com/andrcuns/allure-publish-action, github.com/andrcuns/allure-report-uploader,num_dependents_deps.dev:0 github.com/andrdru/daloader,num_dependents_deps.dev:0 github.com/andrdru/echomsg,num_dependents_deps.dev:0 @@ -247961,6 +253589,7 @@ github.com/andre487/html-stats,num_dependents_deps.dev:0 github.com/andre487/kv-keeper.js,num_dependents_deps.dev:0 github.com/andre487/linkify-lite,num_dependents_deps.dev:0 github.com/andre487/node-link-cleaner,num_dependents_deps.dev:0 +github.com/andre487/publish-to-orphan-gh-pages, github.com/andre711/libraryapi,num_dependents_deps.dev:0 github.com/andreArtelt/ceml, github.com/andreGarvin/allpaths-js,num_dependents_deps.dev:0 @@ -247970,6 +253599,7 @@ github.com/andreGarvin/my-clib, github.com/andreGarvin/spark,num_dependents_deps.dev:0 github.com/andreGarvin/split-after, github.com/andrea-allen/epintervene, +github.com/andrea-armstrong/github-list-pull-requests, github.com/andrea-ci/markets, github.com/andrea-cuttone/geoplotlib, github.com/andrea-dagostino/simple_keyword_clusterer, @@ -248009,6 +253639,7 @@ github.com/andreacioni/pycommon, github.com/andreacioni/weekly-menu, github.com/andreacivita/noty,num_dependents_deps.dev:0 github.com/andreacomo/keytool-helper,num_dependents_deps.dev:0 +github.com/andreacomo/maven-gav-extractor, github.com/andreacomo/tomcat-bcrypt,num_dependents_deps.dev:0 github.com/andreacoradi/minicel,num_dependents_deps.dev:0 github.com/andreacorbellini/funkybob, @@ -248112,6 +253743,7 @@ github.com/andreas19/pypackproxy, github.com/andreas19/salmagundi, github.com/andreas19/typeconvs, github.com/andreas471234/web_scraper,num_dependents_deps.dev:0 +github.com/andreasabel/fix-whitespace-action, github.com/andreasabilio/contexto,num_dependents_deps.dev:0 github.com/andreasafent/learning-git,num_dependents_deps.dev:0 github.com/andreasanta/iot-meter,num_dependents_deps.dev:0 @@ -248210,6 +253842,7 @@ github.com/andreasmwenzel/ts-cards,num_dependents_deps.dev:0 github.com/andreasnicolaou/locale-translator,num_dependents_deps.dev:0 github.com/andreasnicolaou/ngx-copy-to-clipboard,num_dependents_deps.dev:0 github.com/andreasnicolaou/ngx-facebook,num_dependents_deps.dev:0 +github.com/andreasofthings/doc-build, github.com/andreasonny83/angular-starter-kit,num_dependents_deps.dev:0 github.com/andreasonny83/angular2-cookie-law,num_dependents_deps.dev:0 github.com/andreasonny83/angular2-expandable-list,num_dependents_deps.dev:0 @@ -248369,6 +254002,7 @@ github.com/andrefarzat/ng-error,num_dependents_deps.dev:0 github.com/andrefarzat/ng-jcrop,num_dependents_deps.dev:0 github.com/andrefarzat/ng-load,num_dependents_deps.dev:0 github.com/andrefbsantos/libpricealarm,num_dependents_deps.dev:0 +github.com/andrefcdias/add-to-milestone, github.com/andrefebrianto/url-shortener-service,num_dependents_deps.dev:0 github.com/andrefelizardo/card,num_dependents_deps.dev:0 github.com/andrefelizardo/ng-structure,num_dependents_deps.dev:0 @@ -248410,6 +254044,7 @@ github.com/andregoncalves/stencil-countrylist,num_dependents_deps.dev:0 github.com/andregoncalves/stencil-ios-toggle,num_dependents_deps.dev:0 github.com/andregoncalves/stencil-skycons, github.com/andregoncalves/stencil-timepicker,num_dependents_deps.dev:0 +github.com/andregri/BlogOps, github.com/andregri/pymediumapi, github.com/andregsilv/ng2-openmodal,num_dependents_deps.dev:0 github.com/andregt/dia-parser,num_dependents_deps.dev:0 @@ -248546,12 +254181,14 @@ github.com/andreifecioru/sails-adapter-boilerplate,num_dependents_deps.dev:0 github.com/andreiflaviusivan/mindgaze-doublescroll,num_dependents_deps.dev:0 github.com/andreifyodorov/tabkit, github.com/andreigabor21/golang-learning,num_dependents_deps.dev:0 +github.com/andreigiura/action-nodejs-package-info, github.com/andreigiura/apify,num_dependents_deps.dev:0 github.com/andreigiura/auth-simple-client,num_dependents_deps.dev:0 github.com/andreigiura/ngx-themes,num_dependents_deps.dev:0 github.com/andreihaiducu/request-promise-native-retry,num_dependents_deps.dev:0 github.com/andreiiene/angular-loading-circle,num_dependents_deps.dev:0 github.com/andreiio/laravel-mix-valet,num_dependents_deps.dev:0 +github.com/andreiio/rclone-action, github.com/andreikhanau/frontend-project-lvl1,num_dependents_deps.dev:0 github.com/andreikop/python-ws-discovery, github.com/andreikop/qutepart, @@ -248620,6 +254257,7 @@ github.com/andreisergiu98/react-swipeable,num_dependents_deps.dev:0 github.com/andreiskandar/lotide,num_dependents_deps.dev:0 github.com/andreisuciu96/ckeditor5-build-custom-playbac,num_dependents_deps.dev:0 github.com/andreitognolo/raidenjpa,num_dependents_deps.dev:0 +github.com/andreivcodes/jest-coverage-comment, github.com/andreivictor/bootstrap-tooltip-custom-class,num_dependents_deps.dev:0 github.com/andreivictor/ngx-mat-step-lazy-load,num_dependents_deps.dev:0 github.com/andreivinaga/imdb-dataset,num_dependents_deps.dev:0 @@ -248785,6 +254423,7 @@ github.com/andreluisos/archpy, github.com/andreluisos/podarr, github.com/andreluispy/py2html, github.com/andreluiz365/argo-proj,num_dependents_deps.dev:0 +github.com/andreluizmarcelino1/api-call-action, github.com/andremaha/md2html,num_dependents_deps.dev:0 github.com/andremaha/microlibrary,num_dependents_deps.dev:0 github.com/andremahendra/alena,num_dependents_deps.dev:0 @@ -248804,6 +254443,7 @@ github.com/andremouche/pd,num_dependents_deps.dev:0 github.com/andremsouza/docx2json, github.com/andremueller/md-publisher,num_dependents_deps.dev:0 github.com/andremw/gumbajs,num_dependents_deps.dev:0 +github.com/andremw/helm-eks-action, github.com/andremw/hubot-jira-logger,num_dependents_deps.dev:0 github.com/andremw/hubot-waiter,num_dependents_deps.dev:0 github.com/andrenagusch/ZoomAndMove,num_dependents_deps.dev:0 @@ -248814,6 +254454,7 @@ github.com/andrenasturas/hausse, github.com/andrenerd/coinalist, github.com/andrenerd/django-multifactor-authentication, github.com/andrenerd/react-native-bootstrap-styles, +github.com/andreneto97/action-publish, github.com/andrenpaes/cloudsponge-lib-java,num_dependents_deps.dev:0 github.com/andreoav/click-outside-hook,num_dependents_deps.dev:0 github.com/andreobouzas/basesgolang,num_dependents_deps.dev:0 @@ -249122,6 +254763,7 @@ github.com/andresmichel/react-native-segment-ui,num_dependents_deps.dev:0 github.com/andresmichel/react-native-split-view,num_dependents_deps.dev:0 github.com/andresmijares/react-calendar-multiday,num_dependents_deps.dev:0 github.com/andresmntr/andrius-redux-template,num_dependents_deps.dev:0 +github.com/andresogando/nomad-cli-action, github.com/andreson/logrus-gce,num_dependents_deps.dev:0 github.com/andresoro/rlog,num_dependents_deps.dev:0 github.com/andresousa/react-native-text-to-image,num_dependents_deps.dev:0 @@ -249167,6 +254809,7 @@ github.com/andresz1/express-route-controller2,num_dependents_deps.dev:0 github.com/andresz1/generator-phaser-template,num_dependents_deps.dev:0 github.com/andresz1/grunt-depsconcat,num_dependents_deps.dev:0 github.com/andresz1/grunt-shdrsconcat,num_dependents_deps.dev:0 +github.com/andresz1/size-limit-action, github.com/andresz1/tesfy,num_dependents_deps.dev:0 github.com/andreszs/cordova-plugin-sms-receive,num_dependents_deps.dev:0 github.com/andreszs/cordova-plugin-sms-retriever,num_dependents_deps.dev:0 @@ -249193,10 +254836,12 @@ github.com/andretimm/ping-observer,num_dependents_deps.dev:0 github.com/andretw/react-facebook-login-light,num_dependents_deps.dev:0 github.com/andreujuanc/CherryDb,num_dependents_deps.dev:0 github.com/andreujuanc/durable-monitor,num_dependents_deps.dev:0 +github.com/andreujuanc/flutter-android-sdk, github.com/andreujuanc/personalcard,num_dependents_deps.dev:0 github.com/andreupifarre/nodx,num_dependents_deps.dev:0 github.com/andreupifarre/preload-it,num_dependents_deps.dev:0 github.com/andreuva/HyDES, +github.com/andrevalentin/get-branch-name-by-pr, github.com/andrevargas/eslint-config-andrevargas,num_dependents_deps.dev:0 github.com/andrevargas/eslint-config-react,num_dependents_deps.dev:0 github.com/andrevargas/tslint-config-react,num_dependents_deps.dev:0 @@ -249424,6 +255069,8 @@ github.com/andrewa813/inputfilter,num_dependents_deps.dev:0 github.com/andrewa813/quasar-app-extension-dialogs, github.com/andrewaarestad/factory-girl-parse, github.com/andrewaguiar/correios-ws,num_dependents_deps.dev:0 +github.com/andrewandante/pr-monitor-slack-action, +github.com/andrewandante/silverstripe-cloud-dash-action, github.com/andrewandante/silverstripe-dash-client,num_dependents_deps.dev:0 github.com/andrewangelle/react-glide, github.com/andrewangelle/react-paypal-button,num_dependents_deps.dev:0 @@ -249450,7 +255097,9 @@ github.com/andrewarrow/wolfservers,num_dependents_deps.dev:0 github.com/andrewatwood/ngx-route-history,num_dependents_deps.dev:0 github.com/andrewaylett/atunit,num_dependents_deps.dev:0 github.com/andrewaylett/dabl,num_dependents_deps.dev:4 +github.com/andrewaylett/pre-commit-action, github.com/andrewaylett/self-throttle,num_dependents_deps.dev:0 +github.com/andrewazores/gh-oci-logs, github.com/andrewb3000/mso-go-client,num_dependents_deps.dev:0 github.com/andrewb3000/terraform-provider-mso,num_dependents_deps.dev:0 github.com/andrewbailey/difference,num_dependents_deps.dev:0 @@ -249549,6 +255198,7 @@ github.com/andrewchubatiuk/nomad-hcloud-autoscaler,num_dependents_deps.dev:0 github.com/andrewclark-unity3d/newman-reporter-json-timing,num_dependents_deps.dev:0 github.com/andrewcoelho/reload-html-webpack-plugin,num_dependents_deps.dev:0 github.com/andrewcoelho/server-cssmodules-loader,num_dependents_deps.dev:0 +github.com/andrewconnell/azure-search-index, github.com/andrewconnell/generator-nodehttps,num_dependents_deps.dev:0 github.com/andrewconnell/generator-sharepoint, github.com/andrewconnell/generator-spfx,num_dependents_deps.dev:0 @@ -249599,8 +255249,10 @@ github.com/andrewdear/react-table-maker,num_dependents_deps.dev:0 github.com/andrewdelmar87/lotide,num_dependents_deps.dev:0 github.com/andrewdelprete/babel-plugin-tailwind-css-in-js,num_dependents_deps.dev:0 github.com/andrewdelprete/neckbeard,num_dependents_deps.dev:0 +github.com/andrewdemerjian/action-branch-to-another-repo, github.com/andrewdetorres/d8b3, github.com/andrewdex/firestore-cache,num_dependents_deps.dev:0 +github.com/andrewdex/s3-deploy-action, github.com/andrewdieken/evm-fm-python, github.com/andrewdieken/pert_estimator, github.com/andrewdircks/dash-utils, @@ -249622,6 +255274,7 @@ github.com/andreweduffy/consist,num_dependents_deps.dev:0 github.com/andreweitel/django-simple-sso, github.com/andrewekhalel/edafa, github.com/andrewekhalel/sewar, +github.com/andrewemeryanz/sysl-github-action, github.com/andrewerf/tf_livepatch_lr, github.com/andrewerogers/concurrency-patterns,num_dependents_deps.dev:0 github.com/andrewerogers/naive-bayes-classifier,num_dependents_deps.dev:0 @@ -249762,6 +255415,8 @@ github.com/andrewiankidd/go-media-splitter,num_dependents_deps.dev:0 github.com/andrewiggins/afterframe,num_dependents_deps.dev:0 github.com/andrewiggins/brotli-size-cli,num_dependents_deps.dev:0 github.com/andrewiggins/collect-react-stats,num_dependents_deps.dev:0 +github.com/andrewiggins/download-base-artifact, +github.com/andrewiggins/tachometer-reporter-action, github.com/andrewiggins/v8-deopt-viewer,num_dependents_deps.dev:0 github.com/andrewimm/babel-plugin-inline-package-json,num_dependents_deps.dev:0 github.com/andrewimm/babel-plugin-remove-proptypes,num_dependents_deps.dev:0 @@ -249939,17 +255594,23 @@ github.com/andrewmccall/hubot-hipchat,num_dependents_deps.dev:0 github.com/andrewmccall/scala-faker,num_dependents_deps.dev:0 github.com/andrewmccormack/grunt-i18n,num_dependents_deps.dev:0 github.com/andrewmcgivery/angular-soap,num_dependents_deps.dev:0 +github.com/andrewmcodes-archive/rubocop-linter-action, github.com/andrewmcodes/arsenic,num_dependents_deps.dev:0 github.com/andrewmcodes/awesome_list_generator,num_dependents_deps.dev:0 +github.com/andrewmcodes/bridgetown-gh-pages-action, github.com/andrewmcodes/bridgetown-inline-svg,num_dependents_deps.dev:0 github.com/andrewmcodes/bridgetown-plausible-tag,num_dependents_deps.dev:0 +github.com/andrewmcodes/bundler-audit-action, +github.com/andrewmcodes/bundler-leak-action, github.com/andrewmcodes/codefund-react-api-hook,num_dependents_deps.dev:0 github.com/andrewmcodes/dishwasher,num_dependents_deps.dev:0 github.com/andrewmcodes/forem_lite,num_dependents_deps.dev:0 github.com/andrewmcodes/gem_actions,num_dependents_deps.dev:0 +github.com/andrewmcodes/haml-lint-action, github.com/andrewmcodes/prettier-config,num_dependents_deps.dev:0 github.com/andrewmcodes/pruner,num_dependents_deps.dev:0 github.com/andrewmcodes/refactored_invention,num_dependents_deps.dev:0 +github.com/andrewmcodes/standardrb-action, github.com/andrewmcoupe/andy-coupe,num_dependents_deps.dev:0 github.com/andrewmcoupe/react-animenu,num_dependents_deps.dev:0 github.com/andrewmeissner/react-gin-binary,num_dependents_deps.dev:0 @@ -249990,6 +255651,7 @@ github.com/andrewn/emoji-describe, github.com/andrewn/raspi-cap,num_dependents_deps.dev:0 github.com/andrewn/raspi-rotary-encoder,num_dependents_deps.dev:0 github.com/andrewneox/cordova-plugin-snapkit,num_dependents_deps.dev:0 +github.com/andrewnester/autoreview, github.com/andrewnester/rust-jsonm,num_dependents_deps.dev:0 github.com/andrewnester/sqslisten,num_dependents_deps.dev:0 github.com/andrewnester/ts-heapq,num_dependents_deps.dev:0 @@ -249997,6 +255659,7 @@ github.com/andrewneudegg/delta,num_dependents_deps.dev:0 github.com/andrewngu/sound-redux,criticality_score:0.311890 github.com/andrewnick/util,num_dependents_deps.dev:0 github.com/andrewnicols/mdl,num_dependents_deps.dev:0 +github.com/andrewnicols/wait-for-netlify-preview, github.com/andrewning/sortphotos,criticality_score:0.335190 github.com/andrewnoyes/array-utils,num_dependents_deps.dev:0 github.com/andrewo0/monq,num_dependents_deps.dev:0 @@ -250091,6 +255754,7 @@ github.com/andrewparmet/mysql2h2-converter,num_dependents_deps.dev:0 github.com/andrewpbrett/jawbone-up-api,num_dependents_deps.dev:0 github.com/andrewpe/InsteonPacketParser,num_dependents_deps.dev:0 github.com/andrewpeterprifer/hexo-helper-obfuscate,num_dependents_deps.dev:0 +github.com/andrewpeterson99/fullstack-template-creation-action, github.com/andrewpillar/mgrt,num_dependents_deps.dev:0 github.com/andrewpillar/query,num_dependents_deps.dev:0 github.com/andrewpillar/stripeutil,num_dependents_deps.dev:0 @@ -250296,6 +255960,7 @@ github.com/andrewsjg/goutil,num_dependents_deps.dev:0 github.com/andrewslince/generator-teste-do-andrews,num_dependents_deps.dev:0 github.com/andrewslotin/arel-ltree,num_dependents_deps.dev:0 github.com/andrewslotin/doppelganger,num_dependents_deps.dev:0 +github.com/andrewslotin/go-proxy-pull-action, github.com/andrewslotin/michael,num_dependents_deps.dev:1 github.com/andrewslotin/rummelsnuff,num_dependents_deps.dev:0 github.com/andrewslotin/selenium-phantomjs,num_dependents_deps.dev:0 @@ -250396,6 +256061,9 @@ github.com/andrewthehan/peripheral-view,num_dependents_deps.dev:0 github.com/andrewthehan/react-etude-piano,num_dependents_deps.dev:0 github.com/andrewthemeow/DBDPD,num_dependents_deps.dev:0 github.com/andrewthetechie/geekbot-api-py, +github.com/andrewthetechie/gha-clone-releases, +github.com/andrewthetechie/gha-cookiecutter, +github.com/andrewthetechie/gha-repo-manager, github.com/andrewthetechie/py-healthchecks.io, github.com/andrewthetechie/pydantic-aioredis, github.com/andrewthetechie/pydantic-pynamodb, @@ -250409,6 +256077,7 @@ github.com/andrewtomai/serverless-apikey-output,num_dependents_deps.dev:0 github.com/andrewtomai/serverless-cdk-plugin,num_dependents_deps.dev:0 github.com/andrewtpoe/local-dns,num_dependents_deps.dev:0 github.com/andrewtrotman/JASSv2, +github.com/andrewtruong/wandb_create_report_action, github.com/andrewvasilchuk/singletonify.js,num_dependents_deps.dev:0 github.com/andrewvasilchuk/v-aspect-ratio, github.com/andrewvasilchuk/v-ripple-directive,num_dependents_deps.dev:0 @@ -250572,6 +256241,7 @@ github.com/andreyoshev/Apple-Homebridge-Door-Lock,num_dependents_deps.dev:0 github.com/andreyoshev/homebridge-mi-gateway,num_dependents_deps.dev:0 github.com/andreypanin/loyalbe,num_dependents_deps.dev:0 github.com/andreypelykh/angular-bounce, +github.com/andreypolyak/zigbee2mqtt-multi-addon-action, github.com/andreypopov/node-red-contrib-deconz,num_dependents_deps.dev:0 github.com/andreypopov/node-red-contrib-miio-roborock,num_dependents_deps.dev:0 github.com/andreypopov/node-red-contrib-spruthub,num_dependents_deps.dev:0 @@ -250794,6 +256464,8 @@ github.com/andriepu/funcaches,num_dependents_deps.dev:0 github.com/andriepu/funcaches-persist-interface,num_dependents_deps.dev:0 github.com/andriepu/liburnasional,num_dependents_deps.dev:0 github.com/andriepu/strict-field,num_dependents_deps.dev:0 +github.com/andrii-bodnar/action-crowdin-contributors, +github.com/andrii-bodnar/crowdin-request-action, github.com/andrii-holovko-dev/redux-rest-hooks,num_dependents_deps.dev:0 github.com/andrii-maglovanyi/pipe-js,num_dependents_deps.dev:0 github.com/andrii-maglovanyi/react-scrollable-accordion,num_dependents_deps.dev:0 @@ -250834,6 +256506,8 @@ github.com/andrinurarief/echarts-ssr,num_dependents_deps.dev:0 github.com/andrioid/gatsby-plugin-social-cards,num_dependents_deps.dev:0 github.com/andrioid/gatsby-theme-links,num_dependents_deps.dev:0 github.com/andrioid/react-native-regrid,num_dependents_deps.dev:0 +github.com/andrioid/release-defaults-bot, +github.com/andrioid/setup-pack, github.com/andrioli/asm-defuse,num_dependents_deps.dev:0 github.com/andrioli/bytecode-analysis,num_dependents_deps.dev:0 github.com/andris9/addressparser,num_dependents_deps.dev:8358 @@ -250984,6 +256658,7 @@ github.com/andrody/guilda-ui,num_dependents_deps.dev:0 github.com/andrody/nanui,num_dependents_deps.dev:0 github.com/androettop/odoo-backup, github.com/androguard/androguard,criticality_score:0.481790 +github.com/android-actions/setup-android, github.com/android-async-http/android-async-http,criticality_score:0.367680 github.com/android-cn/android-jobs,criticality_score:0.334840 github.com/android-cn/android-open-project-analysis,criticality_score:0.353080 @@ -251203,6 +256878,12 @@ github.com/andrwkng/go-project-layout,num_dependents_deps.dev:0 github.com/andrwkng/proglog,num_dependents_deps.dev:0 github.com/andry-tino/flowable,num_dependents_deps.dev:0 github.com/andry1/ain-tcp,num_dependents_deps.dev:0 +github.com/andry81-devops/gh-action--accum-board-stats, +github.com/andry81-devops/gh-action--accum-content, +github.com/andry81-devops/gh-action--accum-gh-rate-limits, +github.com/andry81-devops/gh-action--accum-gh-stats, +github.com/andry81-devops/gh-action--check-os-version, +github.com/andry81-devops/gh-action--git-checkout, github.com/andrylavr/seslog,num_dependents_deps.dev:0 github.com/andrysds/codes,num_dependents_deps.dev:0 github.com/andryuha49/node-api-router,num_dependents_deps.dev:0 @@ -251231,6 +256912,11 @@ github.com/andsmedeiros/hw-fingerprint,num_dependents_deps.dev:0 github.com/andsnpl/auto-test-package, github.com/andstor/binvox,num_dependents_deps.dev:0 github.com/andstor/clover2lcov,num_dependents_deps.dev:0 +github.com/andstor/clover2lcov-action, +github.com/andstor/copycat-action, +github.com/andstor/file-existence-action, +github.com/andstor/file-reader-action, +github.com/andstor/jsdoc-action, github.com/andstor/mouse-controller,num_dependents_deps.dev:0 github.com/andstor/three-voxel-loader,num_dependents_deps.dev:0 github.com/andstor/voxelizer,num_dependents_deps.dev:0 @@ -251324,6 +257010,7 @@ github.com/andy-shea/windowed.js,num_dependents_deps.dev:0 github.com/andy-smoker/clerk,num_dependents_deps.dev:0 github.com/andy-smoker/gongfarmer,num_dependents_deps.dev:0 github.com/andy-trimble/ipcalc,num_dependents_deps.dev:0 +github.com/andy-v-h/get-release-asset-action, github.com/andy-yang-1/dht,num_dependents_deps.dev:0 github.com/andy-yang-1/dht-2021-master,num_dependents_deps.dev:0 github.com/andy-yx-chen/gasync,num_dependents_deps.dev:0 @@ -251409,6 +257096,7 @@ github.com/andyaaz/gatsby-plugin-remote-images,num_dependents_deps.dev:0 github.com/andyaaz/gcp-study-jam,num_dependents_deps.dev:0 github.com/andyalky/funkyserver, github.com/andyantrim/crypto,num_dependents_deps.dev:0 +github.com/andyantrim/label_checker_actions, github.com/andyarvanitis/purescript-native,criticality_score:0.471910 github.com/andyb129/BeerProgressView,num_dependents_deps.dev:0 github.com/andyb129/ChompProgressView,num_dependents_deps.dev:0 @@ -251492,6 +257180,7 @@ github.com/andycao/prettier-config,num_dependents_deps.dev:0 github.com/andycarrell/hyper-switch-shell,num_dependents_deps.dev:0 github.com/andycasey/ads, github.com/andycasey/gaia-on-tap, +github.com/andycasey/paper-maker, github.com/andycasey/ptv, github.com/andycasey/sick, github.com/andycasey/smh, @@ -251740,6 +257429,7 @@ github.com/andykswong/munum,num_dependents_deps.dev:0 github.com/andyku25/lotide,num_dependents_deps.dev:0 github.com/andykuo1/html-webpack-inline-source-only-plugin,num_dependents_deps.dev:0 github.com/andykuszyk/cronical,num_dependents_deps.dev:0 +github.com/andykuszyk/markasten, github.com/andykuszyk/thobl,num_dependents_deps.dev:0 github.com/andyl-astardigital/bloc_ts,num_dependents_deps.dev:0 github.com/andylarquy/firebasedb-nest-formatter,num_dependents_deps.dev:0 @@ -251788,7 +257478,9 @@ github.com/andymatuschak/react-native-leveldown,num_dependents_deps.dev:0 github.com/andymccurdy/redis-py,criticality_score:0.639990 github.com/andymcdgeo/PyPetrophysics, github.com/andymckay/actions-ips, +github.com/andymckay/append-gist-action, github.com/andymckay/baked, +github.com/andymckay/cancel-action, github.com/andymckay/django-aesfield, github.com/andymckay/django-cache-nuggets, github.com/andymckay/django-lawnchair, @@ -251796,12 +257488,16 @@ github.com/andymckay/django-mysql-aesfield, github.com/andymckay/django-paranoia, github.com/andymckay/django-receipts, github.com/andymckay/docker-utils, +github.com/andymckay/get-gist-action, +github.com/andymckay/labeler, github.com/andymckay/marketplace-constants,num_dependents_deps.dev:0 github.com/andymckay/mobile-codes, github.com/andymckay/mozilla-logger, github.com/andymckay/nose-blockage, github.com/andymckay/nose-timing, github.com/andymckay/payments-config, +github.com/andymckay/project-slack-notification, +github.com/andymckay/pycodestyle-action, github.com/andymckay/receipts, github.com/andymckay/shellng, github.com/andymckay/tastypie-services, @@ -252004,6 +257700,8 @@ github.com/andzdroid/mongo-express,num_dependents_deps.dev:0 github.com/aneacevedo/SCL014-md-links,num_dependents_deps.dev:0 github.com/aneatingcat/bip173, github.com/anebula/flex_go,num_dependents_deps.dev:0 +github.com/anecdotes-ai/remote-workflow-control, +github.com/anecdotes-ai/snowflake-query, github.com/anecrow/eagle-im,num_dependents_deps.dev:0 github.com/anediaz/react-ikusi,num_dependents_deps.dev:0 github.com/anedies0007/toml,num_dependents_deps.dev:0 @@ -252135,6 +257833,8 @@ github.com/anelendata/target_couchbase, github.com/anelson/tracers,num_dependents_deps.dev:5 github.com/anematode/grapheme,num_dependents_deps.dev:0 github.com/anencore94/SlidingWindowGenerator, +github.com/anencore94/clubhouse-github-action, +github.com/anencore94/labeler, github.com/anenglishgoat/balaban, github.com/anenth/get-me-form-data,num_dependents_deps.dev:0 github.com/anentropic/django-cas-cache, @@ -252147,6 +257847,7 @@ github.com/anentropic/megaparsy, github.com/anentropic/pyglslify, github.com/anentropic/python-glsl-shaderinfo, github.com/anentropic/python-waterloo, +github.com/aneoconsulting/generate-next-semver, github.com/aneopsy/plasma.js,num_dependents_deps.dev:0 github.com/anephenix/riot-hub,num_dependents_deps.dev:0 github.com/anephenix/sarus,num_dependents_deps.dev:0 @@ -252327,6 +258028,8 @@ github.com/angela-1/jszip-files,num_dependents_deps.dev:0 github.com/angela-1/primer-vue,num_dependents_deps.dev:0 github.com/angela-1/search-params,num_dependents_deps.dev:0 github.com/angela-1/xlsx2json-rs,num_dependents_deps.dev:0 +github.com/angela-mylo/eks-kubectl, +github.com/angela-mylo/wait-for-response, github.com/angela0/xpd,num_dependents_deps.dev:0 github.com/angelabriel/saptune,num_dependents_deps.dev:0 github.com/angelaguilar22/libraryAngular,num_dependents_deps.dev:0 @@ -252335,6 +258038,7 @@ github.com/angelaigreja/react-bootstrap-datetimerangepicker,num_dependents_deps. github.com/angelajt/sibyl-cli,num_dependents_deps.dev:0 github.com/angelal21/godb,num_dependents_deps.dev:0 github.com/angelal21/gotesting,num_dependents_deps.dev:0 +github.com/angelalbertomv/act_elastic_job_log_collector, github.com/angelalonso/pctl, github.com/angelamelinda/csvautofilljs,num_dependents_deps.dev:0 github.com/angelamelinda/expert-octo-happiness,num_dependents_deps.dev:0 @@ -252366,6 +258070,7 @@ github.com/angeldelacruzs/slugify,num_dependents_deps.dev:0 github.com/angeldesweb/networking-helper,num_dependents_deps.dev:0 github.com/angeldhakal/tv-tracker,num_dependents_deps.dev:0 github.com/angeldionisio/udemy,num_dependents_deps.dev:0 +github.com/angeldollface/mandy-github-action, github.com/angelfluffyookami/cinnamon,num_dependents_deps.dev:0 github.com/angelgaspar/randomsearch, github.com/angelgm/django-crispy-dynamic-relationships, @@ -252417,6 +258122,7 @@ github.com/angelnikolov/ts-cacheable,criticality_score:0.323740 github.com/angelnu/castv2-player,num_dependents_deps.dev:0 github.com/angelnu/ioBroker.chromecast, github.com/angelo59930/pytubeloader, +github.com/angeloanan/activity-box-rs, github.com/angeloashmore/cleanroom,num_dependents_deps.dev:0 github.com/angeloashmore/gatsby-node-helpers,num_dependents_deps.dev:58 github.com/angeloashmore/gatsby-plugin-local-search,num_dependents_deps.dev:0 @@ -252660,6 +258366,7 @@ github.com/angliafarmers/ember-material-design-datepicker, github.com/anglibs/angular-location-update,"Google,num_dependents_deps.dev:0" github.com/anglicangeek/willful.js,num_dependents_deps.dev:0 github.com/anglinb/foam-capture,num_dependents_deps.dev:0 +github.com/anglinb/foam-capture-action, github.com/anglinb/middy-extractor,num_dependents_deps.dev:0 github.com/anglinb/middy-redis,num_dependents_deps.dev:0 github.com/anglinb/python-crunchbase, @@ -252667,6 +258374,7 @@ github.com/anglinb/useful-middy,num_dependents_deps.dev:0 github.com/anglli/policy.js,num_dependents_deps.dev:0 github.com/anglo-korean/ak-crd,num_dependents_deps.dev:0 github.com/anglo-korean/anko-python-sdk, +github.com/angloeastern/private-action-loader, github.com/angludi/go-treasure-hunt,num_dependents_deps.dev:0 github.com/anglyan/gris, github.com/angmar2722/go-paynowqr-string-generator,num_dependents_deps.dev:0 @@ -253680,6 +259388,7 @@ github.com/animade/frontend-md,num_dependents_deps.dev:0 github.com/animadio/animadio,num_dependents_deps.dev:0 github.com/animadio/animadio-portfolio,num_dependents_deps.dev:0 github.com/animadio/animadio.js,num_dependents_deps.dev:0 +github.com/animafps/ghost-markdown-backup, github.com/animafps/glicko2.ts,num_dependents_deps.dev:0 github.com/animajs/amb,num_dependents_deps.dev:0 github.com/animajs/base,num_dependents_deps.dev:0 @@ -253752,6 +259461,7 @@ github.com/anime-girl/flp,num_dependents_deps.dev:0 github.com/anime-sh/SE_Lab_Python_DS_Assignment, github.com/anime-song/DLChord2, github.com/anime-song/wfdload, +github.com/anime-vsub/android-build-action, github.com/animeapis/api-go-client,num_dependents_deps.dev:0 github.com/animeapis/go-genproto,num_dependents_deps.dev:0 github.com/animeboy/ani-cli,num_dependents_deps.dev:0 @@ -253788,6 +259498,7 @@ github.com/animet-gang/jikan-node, github.com/animetosho/node-yencode,num_dependents_deps.dev:0 github.com/animetosho/nyuu,num_dependents_deps.dev:0 github.com/animetosho/parpar,num_dependents_deps.dev:0 +github.com/animeworldid/membership-readme, github.com/animify/Minicons,num_dependents_deps.dev:0 github.com/animify/Silicon, github.com/animify/dribbblejs,num_dependents_deps.dev:0 @@ -253917,6 +259628,7 @@ github.com/anishacharya/LexSub, github.com/anishacharya/OptExp, github.com/anishacharya/decentralized-opt, github.com/anishalunawat/go-cards,num_dependents_deps.dev:0 +github.com/anishanne/greeter, github.com/anishathalye/bin2coe, github.com/anishathalye/dotbot,criticality_score:0.542950 github.com/anishathalye/gavel,criticality_score:0.303940 @@ -253928,6 +259640,7 @@ github.com/anishathalye/lumen,criticality_score:0.316740 github.com/anishathalye/neural-style,criticality_score:0.377240 github.com/anishathalye/periscope,num_dependents_deps.dev:0 github.com/anishathalye/porcupine,num_dependents_deps.dev:2 +github.com/anishathalye/proof-html, github.com/anishathalye/seashells, github.com/anishathalye/synox,num_dependents_deps.dev:0 github.com/anishazaveri/austen_plots, @@ -253994,6 +259707,7 @@ github.com/anitejb/pip, github.com/anitha1243/golang,num_dependents_deps.dev:0 github.com/anitin/mono,num_dependents_deps.dev:0 github.com/anitnilay20/apirequestjs,num_dependents_deps.dev:0 +github.com/anitvam/conventionalcommit-semantic-releasing, github.com/aniversarioperu/django-manolo, github.com/aniversarioperu/salvitobot, github.com/aniversarioperu/twitterbot, @@ -254067,6 +259781,8 @@ github.com/anjulapaulus/random-location-generator,num_dependents_deps.dev:0 github.com/anjulgarg/sharewatch, github.com/anjulgarg/stocker,num_dependents_deps.dev:0 github.com/anjuram300/create-react-app,num_dependents_deps.dev:0 +github.com/ank1traj/Backstop-Action, +github.com/ank1traj/Playwright-Action, github.com/anka-abdullah/go-course,num_dependents_deps.dev:0 github.com/anka-sirota/localflavor, github.com/anka1928/project-lvl1-s284,num_dependents_deps.dev:0 @@ -254114,6 +259830,8 @@ github.com/ankcorp/ing, github.com/ankcorp/kalam, github.com/ankeesler/pinniped-setup,num_dependents_deps.dev:0 github.com/ankeesler/sample-exec-plugin,num_dependents_deps.dev:0 +github.com/ankeetmaini/calver, +github.com/ankeetmaini/mandatory-reviews, github.com/ankeetmaini/react-components,num_dependents_deps.dev:0 github.com/ankeetmaini/react-infinite-scroll-component,"criticality_score:0.467370,num_dependents_deps.dev:50" github.com/ankeetmaini/simple-forms-react,num_dependents_deps.dev:0 @@ -254179,6 +259897,7 @@ github.com/ankitagnihotri/reacttooltipcomponent,num_dependents_deps.dev:0 github.com/ankitaliya/csv_db_package, github.com/ankitanwar/food-doge,num_dependents_deps.dev:0 github.com/ankitapuri/Topsis-Ankita-101903766, +github.com/ankitasen-ubmainz/build-npm-action, github.com/ankitb7/test,num_dependents_deps.dev:0 github.com/ankitbko/xrm-generate,num_dependents_deps.dev:0 github.com/ankitbrahmbhatt1997/toFormData, @@ -254198,6 +259917,7 @@ github.com/ankitesh97/unzipbomb, github.com/ankitfa/fabcoinjs-lib,num_dependents_deps.dev:0 github.com/ankitfa/fabsc-opcodes-js,num_dependents_deps.dev:0 github.com/ankitforcode/realize,num_dependents_deps.dev:0 +github.com/ankitguptag18/github-action-sbt, github.com/ankitgyawali/eflk,num_dependents_deps.dev:0 github.com/ankith26/psdl, github.com/ankithans/cobra-linter,num_dependents_deps.dev:0 @@ -254207,6 +259927,7 @@ github.com/ankitjaggi/log-it,num_dependents_deps.dev:0 github.com/ankitjain28may/ScrapeAmazon, github.com/ankitjain28may/autoscroll.js,num_dependents_deps.dev:0 github.com/ankitjain28may/getit, +github.com/ankitjain28may/list-files-in-pr, github.com/ankitjain28may/place-holder.js,num_dependents_deps.dev:0 github.com/ankitjain28may/placeholder.js,num_dependents_deps.dev:0 github.com/ankitjain28may/registration-module,num_dependents_deps.dev:0 @@ -254277,6 +259998,7 @@ github.com/anko/whatxml,num_dependents_deps.dev:0 github.com/ankon/body-parser-jose,num_dependents_deps.dev:0 github.com/ankon/node-remote-pprof,num_dependents_deps.dev:0 github.com/ankorGH/fos-date,num_dependents_deps.dev:0 +github.com/ankosoftware/anko-public-scripts, github.com/ankosoftware/ng2-bootstrap-modal,num_dependents_deps.dev:0 github.com/ankr-network/dccn-comm,num_dependents_deps.dev:0 github.com/ankr-network/dccn-common,num_dependents_deps.dev:1 @@ -254301,7 +260023,10 @@ github.com/ankur-gupta/flicker, github.com/ankur-gupta/simpledf, github.com/ankur-kushwaha/Cucumber-UI,num_dependents_deps.dev:0 github.com/ankur-kushwaha/microfrontend,num_dependents_deps.dev:0 +github.com/ankur-lt/get-previous-stable-releases, +github.com/ankur-lt/send-releases-to-slack, github.com/ankur-vishwakarma/employeeservice,num_dependents_deps.dev:0 +github.com/ankur12-1610/pull-request-action, github.com/ankur1233/golangdemo,num_dependents_deps.dev:0 github.com/ankur22/medium-picker,num_dependents_deps.dev:0 github.com/ankur2723/msg91-api,num_dependents_deps.dev:0 @@ -254382,6 +260107,7 @@ github.com/anlawande/promise-pc,num_dependents_deps.dev:0 github.com/anlcan/Lembas-core,num_dependents_deps.dev:0 github.com/anlcan/Lembas-gae-datastore,num_dependents_deps.dev:0 github.com/anlcnydn/clayface,num_dependents_deps.dev:0 +github.com/anlcnydn/olivia, github.com/anlebcoder/fib-ethereum-wallet,num_dependents_deps.dev:0 github.com/anlebcoder/js4dapp,num_dependents_deps.dev:0 github.com/anlek/draper-cancan,num_dependents_deps.dev:0 @@ -254411,6 +260137,7 @@ github.com/anlutro/systemd-multi-process-manager, github.com/anly95/geekbang-job,num_dependents_deps.dev:0 github.com/anmarcek/jpictura,num_dependents_deps.dev:0 github.com/anmarcek/jpictura-core,num_dependents_deps.dev:0 +github.com/anmarkoulis/commitizen-changelog-reader, github.com/anmary/react-native-speech-to-text,num_dependents_deps.dev:0 github.com/anmasi/grunt-multi-lang-site-generator,num_dependents_deps.dev:0 github.com/anmatika/aes192-node,num_dependents_deps.dev:0 @@ -254463,8 +260190,12 @@ github.com/anmuel/tslint-noif,num_dependents_deps.dev:0 github.com/ann0nip/react-whatsapp-widget,num_dependents_deps.dev:0 github.com/anna-b96/serverless-plugin-cloudwatch,num_dependents_deps.dev:0 github.com/anna-bondarieva/write-docker-actions,num_dependents_deps.dev:0 +github.com/anna-geller/prefect-gcp, github.com/anna-lamoureux/jax-cs-eslint,num_dependents_deps.dev:0 +github.com/anna-money/action-cve, +github.com/anna-money/github-actions-npm, github.com/anna-money/pytest-pg, +github.com/anna-money/update-changelog, github.com/anna-money/workflow-tools, github.com/anna130993/id-generator,num_dependents_deps.dev:0 github.com/annaa-ka/project,num_dependents_deps.dev:0 @@ -254527,6 +260258,7 @@ github.com/annelorayne/node-xmpp-client-virtus,num_dependents_deps.dev:0 github.com/annerajb/xk6-tlstcp,num_dependents_deps.dev:0 github.com/annervisser/angular2-jsonapi,num_dependents_deps.dev:0 github.com/annervisser/gnome-appindicator-dns-switcher, +github.com/annervisser/psalm-baseline-progress-action, github.com/annes-github/bar-chart-bar-react,num_dependents_deps.dev:0 github.com/annettemccullough/shares-scraper,num_dependents_deps.dev:0 github.com/annettemccullough/tracing-logger,num_dependents_deps.dev:0 @@ -254542,6 +260274,7 @@ github.com/annexrpc/annex-ws-node,num_dependents_deps.dev:0 github.com/annezhong/eruit-ui,num_dependents_deps.dev:0 github.com/annguyen-asnet/react-redux-skeleton, github.com/annguyen-asnet/react-search-component,num_dependents_deps.dev:0 +github.com/annguyen281/action-download-artifact, github.com/annguyenwasd/react-input-autosize,num_dependents_deps.dev:0 github.com/anni-platform/anni-player,num_dependents_deps.dev:0 github.com/annict/annict,criticality_score:0.509960 @@ -254852,6 +260585,7 @@ github.com/anookinov/go-margarita,num_dependents_deps.dev:0 github.com/anookinov/go-martini,num_dependents_deps.dev:0 github.com/anookinov/go-mojito,num_dependents_deps.dev:0 github.com/anoop-b/go-ses-mailer,num_dependents_deps.dev:0 +github.com/anoop-b/setup-ndk, github.com/anoop-dhiman/lbry.go,num_dependents_deps.dev:0 github.com/anoop142/cowin-cli,num_dependents_deps.dev:0 github.com/anoop142/go-mtpfs,num_dependents_deps.dev:0 @@ -254874,6 +260608,10 @@ github.com/anooprav7/stormbreaker-cl, github.com/anooprav7/stormbreaker-icons,num_dependents_deps.dev:0 github.com/anooprav7/themed-cli,num_dependents_deps.dev:0 github.com/anoopsivarajan/reruncuke-plugin,num_dependents_deps.dev:0 +github.com/anoopt/action-pnp-powershell-with-oidc, +github.com/anoopt/ms-graph-create-event, +github.com/anoopt/ms-graph-create-event-msal, +github.com/anoopt/ms-graph-create-task, github.com/anoopvasudevan/web-dev-kit,num_dependents_deps.dev:0 github.com/anoopvm/taskorganizer,num_dependents_deps.dev:0 github.com/anooshcnayak/butterfly-go,num_dependents_deps.dev:0 @@ -254884,6 +260622,7 @@ github.com/anopperl/ajbajikaguda,num_dependents_deps.dev:0 github.com/anoque/vuego,num_dependents_deps.dev:0 github.com/anoram/leaflet-svelte,num_dependents_deps.dev:0 github.com/anoram/taucharts-svelte,num_dependents_deps.dev:0 +github.com/anorcle/next-pages, github.com/anordal/shellharden,num_dependents_deps.dev:0 github.com/anoriqq/remove-tweets,num_dependents_deps.dev:0 github.com/anoriqq/try-youtube-go,num_dependents_deps.dev:0 @@ -254905,6 +260644,7 @@ github.com/another-guy/react-faster,num_dependents_deps.dev:0 github.com/another-guy/tspck,num_dependents_deps.dev:0 github.com/another-guy/win-local-tasklist,num_dependents_deps.dev:0 github.com/another-it-team/custom-python-docx, +github.com/another-rex/workflow-tester, github.com/another-s347/rusty-p4,num_dependents_deps.dev:0 github.com/another-s347/rusty-p4-proto,num_dependents_deps.dev:0 github.com/anotherLee/ViewUI,num_dependents_deps.dev:0 @@ -255275,6 +261015,7 @@ github.com/anshulm/no_nonsense_currency_converter,num_dependents_deps.dev:0 github.com/anshulmittal7/nearest_customer,num_dependents_deps.dev:0 github.com/anshulp2912/automeans, github.com/anshulsahni/TryReact,num_dependents_deps.dev:0 +github.com/anshulsahni/codeowners-plus-plus, github.com/anshulsahni/ppf-calculator,num_dependents_deps.dev:0 github.com/anshulsahni/simple-redux,num_dependents_deps.dev:0 github.com/anshulsahni/zero-underscore,num_dependents_deps.dev:0 @@ -255324,6 +261065,11 @@ github.com/anshumanv/web2desktop,num_dependents_deps.dev:0 github.com/anshunwsl/react-stu,num_dependents_deps.dev:0 github.com/ansi2/go-iap,num_dependents_deps.dev:0 github.com/ansi2/test-nakukop,num_dependents_deps.dev:0 +github.com/ansible-actions/ansible-galaxy-action, +github.com/ansible-actions/ansible-lint-action, +github.com/ansible-actions/j2lint-action, +github.com/ansible-actions/yamllint-action, +github.com/ansible-cloud/aap_controller_action, github.com/ansible-collections/community.general,criticality_score:0.651720 github.com/ansible-collections/google.cloud,Google github.com/ansible-community/ansible-bender,criticality_score:0.369030 @@ -255331,6 +261077,7 @@ github.com/ansible-community/ansible-compat, github.com/ansible-community/ansible-consul,criticality_score:0.419260 github.com/ansible-community/ansible-lint,criticality_score:0.556770 github.com/ansible-community/ansible-pygments, +github.com/ansible-community/ansible-test-gh-action, github.com/ansible-community/antsibull, github.com/ansible-community/antsibull-changelog, github.com/ansible-community/ara,criticality_score:0.562570 @@ -255361,7 +261108,9 @@ github.com/ansible/ansible-container, github.com/ansible/ansible-examples,criticality_score:0.446440 github.com/ansible/ansible-language-server,num_dependents_deps.dev:0 github.com/ansible/ansible-lint,Google +github.com/ansible/ansible-lint-action, github.com/ansible/ansible-navigator, +github.com/ansible/ansible-publish-action, github.com/ansible/ansible-runner,criticality_score:0.575940 github.com/ansible/ansible-runner-http, github.com/ansible/awx,criticality_score:0.776620 @@ -255707,7 +261456,9 @@ github.com/antage/redis-cache,num_dependents_deps.dev:0 github.com/antage/ut181a,num_dependents_deps.dev:0 github.com/antage/ut181a-cli,num_dependents_deps.dev:0 github.com/antalaron/drop-upload,num_dependents_deps.dev:0 +github.com/antaljanosbenjamin/compile-latex, github.com/antaljanosbenjamin/rust-hr-stopwatch,num_dependents_deps.dev:0 +github.com/antaljanosbenjamin/single-commit-publish, github.com/antany/antlib,num_dependents_deps.dev:0 github.com/antany/antutils,num_dependents_deps.dev:0 github.com/antapani/sandiloka-hello-2,num_dependents_deps.dev:0 @@ -255903,8 +261654,10 @@ github.com/antfu/codemirror-theme-vars,num_dependents_deps.dev:12 github.com/antfu/esbuild-node-loader,num_dependents_deps.dev:2 github.com/antfu/esno,num_dependents_deps.dev:0 github.com/antfu/export-size,num_dependents_deps.dev:0 +github.com/antfu/export-size-action, github.com/antfu/fsxx, github.com/antfu/git-ensure,num_dependents_deps.dev:0 +github.com/antfu/github-script, github.com/antfu/hjdict,num_dependents_deps.dev:0 github.com/antfu/i18n-ally,criticality_score:0.525020 github.com/antfu/iroiro,num_dependents_deps.dev:0 @@ -255989,6 +261742,8 @@ github.com/antheiz/belajar-golang,num_dependents_deps.dev:0 github.com/anthem-ai/vcert,num_dependents_deps.dev:0 github.com/anthemengineering/infer-maven-plugin,num_dependents_deps.dev:0 github.com/anthemengineering/sox-jna,num_dependents_deps.dev:0 +github.com/anthepro/install-qt-static, +github.com/anthepro/install-taglib, github.com/anthhub/cupboard,num_dependents_deps.dev:0 github.com/anthhub/forwarder,num_dependents_deps.dev:0 github.com/anthhub/gin-train-ticket,num_dependents_deps.dev:0 @@ -256092,6 +261847,7 @@ github.com/anthony-butcher/node-media-controller,num_dependents_deps.dev:0 github.com/anthony-c-martin/arm-templator,num_dependents_deps.dev:0 github.com/anthony-c-martin/arm-templator-types,num_dependents_deps.dev:0 github.com/anthony-c-martin/seqdiag,num_dependents_deps.dev:0 +github.com/anthony-c-martin/setup-bicep, github.com/anthony-dallagnola/mocha-param,num_dependents_deps.dev:0 github.com/anthony-dallagnola/react-grid,num_dependents_deps.dev:0 github.com/anthony-dong/go-tool,num_dependents_deps.dev:0 @@ -256101,6 +261857,8 @@ github.com/anthony-halim/booking-webapp,num_dependents_deps.dev:0 github.com/anthony-hoo/reversecdgencryption,num_dependents_deps.dev:0 github.com/anthony-kenikh/call-parallel,num_dependents_deps.dev:0 github.com/anthony-langford/address-lookup,num_dependents_deps.dev:0 +github.com/anthony-moreno-cisnero/CheckoutRepoGit, +github.com/anthony-moreno-cisnero/CheckoutRepoGitLab, github.com/anthony-o/jhod,num_dependents_deps.dev:0 github.com/anthony-poon/js.website-toolkit,num_dependents_deps.dev:0 github.com/anthony-redFox/xmldom, @@ -256142,6 +261900,7 @@ github.com/anthonybm/orion,num_dependents_deps.dev:0 github.com/anthonybobsin/protoc-gen-activemodel,num_dependents_deps.dev:0 github.com/anthonybouton/aws-dfc-constructs,num_dependents_deps.dev:0 github.com/anthonybudd/scape-js,num_dependents_deps.dev:0 +github.com/anthonychu/azure-webapps-deno-deploy, github.com/anthonychu/event-grid-local,num_dependents_deps.dev:0 github.com/anthonychu/func-ascii,num_dependents_deps.dev:0 github.com/anthonycorletti/cbpa, @@ -256161,6 +261920,7 @@ github.com/anthonydugois/react-tonejs,num_dependents_deps.dev:0 github.com/anthonyebiner/Python-Udemy, github.com/anthonyegwu/ng-gotax,num_dependents_deps.dev:0 github.com/anthonyfaubert/ball-sort-puzzle-solver,num_dependents_deps.dev:0 +github.com/anthonyftwang/minify-action, github.com/anthonygedeon/algorithms,num_dependents_deps.dev:0 github.com/anthonygedeon/bmo,num_dependents_deps.dev:0 github.com/anthonygedeon/brainfuck,num_dependents_deps.dev:0 @@ -256224,6 +261984,7 @@ github.com/anthonyjsmith/pIDLy, github.com/anthonyjuan/npm-package,num_dependents_deps.dev:0 github.com/anthonykao10/lotide,num_dependents_deps.dev:0 github.com/anthonykelley/react_flash,num_dependents_deps.dev:0 +github.com/anthonykgross/ansible-vault-cli-github-action, github.com/anthonykgross/celery-worker, github.com/anthonykgross/ffmpeg-streams-manager, github.com/anthonykirby/lora-packet,num_dependents_deps.dev:2 @@ -256319,6 +262080,7 @@ github.com/anthonytranDev/sparkplug-js,num_dependents_deps.dev:0 github.com/anthonytranDev/training.js,num_dependents_deps.dev:0 github.com/anthonyvallee/riot-api-wrapper,num_dependents_deps.dev:0 github.com/anthonyvitale/gonhl,num_dependents_deps.dev:0 +github.com/anthonyvscode/newman-action, github.com/anthonywebb/DBFFile,num_dependents_deps.dev:0 github.com/anthonywebb/homebridge-cbus,num_dependents_deps.dev:0 github.com/anthonywittig/jit-ssh,num_dependents_deps.dev:0 @@ -256429,6 +262191,7 @@ github.com/antics/node-flattr,num_dependents_deps.dev:0 github.com/antidasoftware/cloudpayments-python-client, github.com/antidot/Java_API,num_dependents_deps.dev:0 github.com/antidot/Pyckson, +github.com/antifree/json-to-variables, github.com/antifuchs/arsert,num_dependents_deps.dev:0 github.com/antifuchs/cargo-template-ci,num_dependents_deps.dev:0 github.com/antifuchs/chars,num_dependents_deps.dev:0 @@ -256578,6 +262341,7 @@ github.com/antitim/starbot-story-bot,num_dependents_deps.dev:0 github.com/antitim/starbot-telegram-adapter,num_dependents_deps.dev:0 github.com/antitim/starbot-vk-adapter,num_dependents_deps.dev:0 github.com/antitoxic/mobx-redux-devtools,num_dependents_deps.dev:0 +github.com/antitoxic/prerender-spa-ultra, github.com/antitree/keyctl-unmask,num_dependents_deps.dev:0 github.com/antitree/meatinject, github.com/antitypical/Result,criticality_score:0.384500 @@ -256663,6 +262427,8 @@ github.com/antman261/tiny-fixtures, github.com/antmanler/go-ole,num_dependents_deps.dev:0 github.com/antmanler/go-wind,num_dependents_deps.dev:0 github.com/antmanler/natsboard,num_dependents_deps.dev:0 +github.com/antmicro/renode-linux-runner-action, +github.com/antmicro/renode-test-action, github.com/antn/hubot-seinfeld,num_dependents_deps.dev:0 github.com/antnex/form-validation,num_dependents_deps.dev:0 github.com/anto-caroca/scl-2018-01-FE-markdown,num_dependents_deps.dev:0 @@ -256697,6 +262463,7 @@ github.com/antoine-pous/npmlogger,num_dependents_deps.dev:0 github.com/antoine-richard/grunt-nexus,num_dependents_deps.dev:0 github.com/antoine29/geoJson2GTFS,num_dependents_deps.dev:0 github.com/antoine92190/vue-advanced-chat,"criticality_score:0.418410,num_dependents_deps.dev:0" +github.com/antoineVIVIES/copy_file_to_another_repo_action, github.com/antoineandrieu/insomnia-plugin-hmac-auth,num_dependents_deps.dev:0 github.com/antoineandrieu/meteor-deb,num_dependents_deps.dev:0 github.com/antoineaudrain/react-editorjs-renderer,num_dependents_deps.dev:0 @@ -256819,9 +262586,12 @@ github.com/anton-rudeshko/teamcity-properties,num_dependents_deps.dev:0 github.com/anton-shchyrov/chartjs-plugin-gantt,num_dependents_deps.dev:0 github.com/anton-shumanski/atos,num_dependents_deps.dev:0 github.com/anton-stefanovich/pycoinbase, +github.com/anton-yurchenko/changelog-version, github.com/anton-yurchenko/dns-exporter,num_dependents_deps.dev:0 github.com/anton-yurchenko/git-release,num_dependents_deps.dev:0 github.com/anton-yurchenko/go-changelog,num_dependents_deps.dev:0 +github.com/anton-yurchenko/s3-pre-signed-url, +github.com/anton-yurchenko/unreleased-changelog-release, github.com/anton164/grunt-fixindent, github.com/anton19840712/base_golang_notes,num_dependents_deps.dev:0 github.com/anton44eg/fixturegen, @@ -256868,6 +262638,7 @@ github.com/antonbaumann/codeowners,num_dependents_deps.dev:0 github.com/antonbaumann/pysilence, github.com/antonblanchard/microwatt,criticality_score:0.379260 github.com/antonblik/directory-tree,num_dependents_deps.dev:0 +github.com/antonblr/check-atlantis-action, github.com/antonbobrov/easing-progress,num_dependents_deps.dev:0 github.com/antonbobrov/get-image-pos,num_dependents_deps.dev:0 github.com/antonbobrov/node-background-size,num_dependents_deps.dev:0 @@ -256882,6 +262653,7 @@ github.com/antonchernyshov/appinsights-aws-ec2-integration,num_dependents_deps.d github.com/antonchubarov/filesystemtree,num_dependents_deps.dev:0 github.com/antoncoding/crypto-hex-decoder,num_dependents_deps.dev:2 github.com/antoncoding/eth-cws-keyring,num_dependents_deps.dev:0 +github.com/antoncoding/gas-diff-action, github.com/antoncoding/raw-transaction-hex-decoder,num_dependents_deps.dev:0 github.com/antoncoding/transaction-hex-decoder,num_dependents_deps.dev:0 github.com/antondb/netlify-cms-widget-uuid,num_dependents_deps.dev:0 @@ -256906,6 +262678,7 @@ github.com/antonfisher/node-mocha-extjs, github.com/antonfisher/react-simple-timefield,num_dependents_deps.dev:2 github.com/antonfisher/rpi-jenkins-light,num_dependents_deps.dev:0 github.com/antonfisher/utop,num_dependents_deps.dev:0 +github.com/antongolub/action-setup-bun, github.com/antongolub/dts-bundle,num_dependents_deps.dev:0 github.com/antongolub/git-dir,num_dependents_deps.dev:0 github.com/antongolub/git-root,num_dependents_deps.dev:12 @@ -256938,6 +262711,7 @@ github.com/antoniandre/vue-cal,"criticality_score:0.512390,num_dependents_deps.d github.com/antoniandre/vueper-slides,"criticality_score:0.379070,num_dependents_deps.dev:0" github.com/antoniandre/wave-ui,num_dependents_deps.dev:0 github.com/antonielbordin/slick-svero,num_dependents_deps.dev:0 +github.com/antonin-alves/Readme-Pytest-Report, github.com/antonin-lebrard/console-2fa-encrypted-wallet-golang,num_dependents_deps.dev:0 github.com/antoninastefanowska/expo-music-info,num_dependents_deps.dev:0 github.com/antoninbas/gotemp,num_dependents_deps.dev:0 @@ -256945,6 +262719,7 @@ github.com/antoninbas/libopenflow,num_dependents_deps.dev:0 github.com/antoninbas/ofnet,num_dependents_deps.dev:0 github.com/antoninbas/p4runtime-go-client,num_dependents_deps.dev:0 github.com/antoninbas/spdystream-test,num_dependents_deps.dev:0 +github.com/antoninklopp/cs-to-ts-action, github.com/antoninlanglade/cursor-helper,num_dependents_deps.dev:0 github.com/antoninlanglade/promise-all-obj,num_dependents_deps.dev:0 github.com/antonino-tocco/electronic-invoice,num_dependents_deps.dev:0 @@ -257142,6 +262917,7 @@ github.com/antoniotorres/homebridge-garage-door-gpio,num_dependents_deps.dev:0 github.com/antoniott15/problemsolving,num_dependents_deps.dev:0 github.com/antoniou/opsgenie-go-sdk-v2,num_dependents_deps.dev:0 github.com/antoniouaa/better-tree, +github.com/antoniovazquezblanco/setup-ghidra, github.com/antoniovizuete/pojo-spreadsheet,num_dependents_deps.dev:0 github.com/antoniowd/react-jotform,num_dependents_deps.dev:0 github.com/antonioyee/clean-text-js,num_dependents_deps.dev:0 @@ -257378,10 +263154,12 @@ github.com/antonybudianto/react-kits,num_dependents_deps.dev:0 github.com/antonybudianto/react-lib-scripts,num_dependents_deps.dev:0 github.com/antonybudianto/react-save-localstorage,num_dependents_deps.dev:0 github.com/antonybudianto/react-ua,num_dependents_deps.dev:0 +github.com/antonychiu2/asoc-dast-action, github.com/antonycourtney/oneref,num_dependents_deps.dev:0 github.com/antonycourtney/tabli,num_dependents_deps.dev:0 github.com/antonycourtney/tabli-core,num_dependents_deps.dev:0 github.com/antonydellavecchia/one_relator_curvature, +github.com/antonydevanchi/octodns-sync, github.com/antonygunawan94/textrank,num_dependents_deps.dev:0 github.com/antonyho/crhk-recorder,num_dependents_deps.dev:0 github.com/antonyis/go_docker_web_app,num_dependents_deps.dev:0 @@ -257397,6 +263175,7 @@ github.com/antonzolotukhin/tomsk-energosbyt-python, github.com/antonzyuzin/round-robingo-,num_dependents_deps.dev:0 github.com/antoon91/go,num_dependents_deps.dev:0 github.com/antopen/alipay-sdk-java,num_dependents_deps.dev:51 +github.com/antoprince001/code-zen-track-action, github.com/antoriche/FunctionObject,num_dependents_deps.dev:0 github.com/antorkhan/dynamic-placeholder,num_dependents_deps.dev:0 github.com/antosarho/textAngularJs,num_dependents_deps.dev:0 @@ -257737,6 +263516,8 @@ github.com/anupam-git/simplyrest,num_dependents_deps.dev:0 github.com/anupama.bmmutt/eshop-generator, github.com/anupamch/ng4x-fileupload,num_dependents_deps.dev:0 github.com/anupamhore/PythonDataPreprocessor, +github.com/anupammajhi/githubaction-latest-hashnode-posts, +github.com/anupammajhi/githubaction-update-repo-file, github.com/anupavanm/angularx-flash-message,num_dependents_deps.dev:0 github.com/anupbishnoi/apper,num_dependents_deps.dev:0 github.com/anupbishnoi/crood,num_dependents_deps.dev:0 @@ -257760,6 +263541,9 @@ github.com/anuptamang/P2H_NPM,num_dependents_deps.dev:0 github.com/anupvarghese/redux-loader-middleware,num_dependents_deps.dev:0 github.com/anupvarghese/redux-notifications-middleware,num_dependents_deps.dev:0 github.com/anura-engine/anura,criticality_score:0.423020 +github.com/anuraag-k/ServerAction, +github.com/anuraag016/Jest-Coverage-Diff, +github.com/anuraagkb/Test1, github.com/anuraagvaidya/Trool,num_dependents_deps.dev:0 github.com/anuraagvaidya/node-pdf-printer,num_dependents_deps.dev:0 github.com/anuraagvaidya/stunning,num_dependents_deps.dev:0 @@ -257788,9 +263572,11 @@ github.com/anuragb26/hello-world,num_dependents_deps.dev:0 github.com/anuragdadheech/react-native-audio-streaming,num_dependents_deps.dev:0 github.com/anuragdhingra/go-design-patterns,num_dependents_deps.dev:0 github.com/anuraghazra/ToyLang, +github.com/anuraghazra/code-runner-action, github.com/anuraghazra/create-react-app,num_dependents_deps.dev:0 github.com/anuraghazra/gatsby-plugin-social-banners,num_dependents_deps.dev:0 github.com/anuraghazra/github-readme-stats,criticality_score:0.558120 +github.com/anuraghazra/peerlist-profile-action, github.com/anuraghkp1/cryptoreactjs,num_dependents_deps.dev:0 github.com/anuraghkp1/rectangle_highlight,num_dependents_deps.dev:0 github.com/anuraghkp1/tesseractnative,num_dependents_deps.dev:0 @@ -257860,6 +263646,7 @@ github.com/anushkamittal20/link,num_dependents_deps.dev:0 github.com/anushkamittal20/quiz,num_dependents_deps.dev:0 github.com/anushkamittal20/secret,num_dependents_deps.dev:0 github.com/anushkamittal20/urlshort,num_dependents_deps.dev:0 +github.com/anushkrishnav/PR-Line-Labeler, github.com/anushreebera/gopher,num_dependents_deps.dev:0 github.com/anushshukla/base64,num_dependents_deps.dev:0 github.com/anusikh/VSColab, @@ -258024,6 +263811,7 @@ github.com/anvie/dotext,num_dependents_deps.dev:0 github.com/anvie/kafi,num_dependents_deps.dev:0 github.com/anvie/litcrypt.rs,num_dependents_deps.dev:0 github.com/anvie/rsnowflake,num_dependents_deps.dev:0 +github.com/anvil-solutions/Fast-FTP-Action, github.com/anvil-ui/anvil,criticality_score:0.311020 github.com/anvil-works/anvil-runtime, github.com/anvil777/free-algebra,num_dependents_deps.dev:0 @@ -258324,6 +264112,7 @@ github.com/anynines/a9sharvest,num_dependents_deps.dev:0 github.com/anynines/mobile-design-system,num_dependents_deps.dev:0 github.com/anynines/pr-config,num_dependents_deps.dev:0 github.com/anyobject/homebridge-photon-garagedoor,num_dependents_deps.dev:0 +github.com/anyone-developer/anyone-push-back-repo, github.com/anyone-developer/anyone-validate-fs,num_dependents_deps.dev:0 github.com/anyone-developer/anyone-validate-json,num_dependents_deps.dev:0 github.com/anyone-developer/anyone-validate-xml,num_dependents_deps.dev:0 @@ -258616,6 +264405,7 @@ github.com/aoberoi/passport-slack,num_dependents_deps.dev:0 github.com/aobgod/aob-google-distance-matrix,num_dependents_deps.dev:0 github.com/aocenas/layoutize,num_dependents_deps.dev:0 github.com/aocenas/probe-agent-agent-py, +github.com/aochmann/actions-download-artifact, github.com/aochoae/checkdigit-algorithms,num_dependents_deps.dev:0 github.com/aocks/oxtest, github.com/aocks/tbotg, @@ -259023,6 +264813,7 @@ github.com/aolsenjazz/port-manager,num_dependents_deps.dev:0 github.com/aolsenjazz/react-osx-tabs,num_dependents_deps.dev:0 github.com/aolsenjazz/silence-listener-node,num_dependents_deps.dev:0 github.com/aolsux/iex-data, +github.com/aomartinezg/actions.serverless-with-python-requirements-and-wsgi, github.com/aomati/react-adaptive-size,num_dependents_deps.dev:0 github.com/aome510/spotify-player,num_dependents_deps.dev:0 github.com/aomega08/terracop,num_dependents_deps.dev:0 @@ -259095,6 +264886,7 @@ github.com/aoran997/ao-vue-virtual-list,num_dependents_deps.dev:0 github.com/aoran997/dispatch-event,num_dependents_deps.dev:0 github.com/aorcsik/ghost-s3-storage-adapter,num_dependents_deps.dev:0 github.com/aoreshin/google-timeline-stats,num_dependents_deps.dev:0 +github.com/aorfanos/cloudflare-purge-action, github.com/aorfanos/gochecker,num_dependents_deps.dev:0 github.com/aorinevo/devly-example,num_dependents_deps.dev:0 github.com/aorinevo/js-meters,num_dependents_deps.dev:0 @@ -259102,6 +264894,8 @@ github.com/aorinevo/react-gradebook,num_dependents_deps.dev:0 github.com/aorinevo/semantic-release-gem-demo,num_dependents_deps.dev:0 github.com/aorinevo/weepub,num_dependents_deps.dev:0 github.com/aorinevo/yargs,num_dependents_deps.dev:0 +github.com/aormsby/Fork-Sync-With-Upstream-action, +github.com/aormsby/hugo-deploy-to-pages, github.com/aorps/pandacademia,num_dependents_deps.dev:0 github.com/aortbals/bitly_exporter,num_dependents_deps.dev:0 github.com/aortiz32/pyBreezeChMS, @@ -259295,6 +265089,7 @@ github.com/aotuzuche/eslint-config-atzuche,num_dependents_deps.dev:0 github.com/aotuzuche/stylelint-config-atzuche,num_dependents_deps.dev:0 github.com/aoudiamoncef/apollo-client-maven-plugin,num_dependents_deps.dev:0 github.com/aoudiamoncef/graphql-java-filter,num_dependents_deps.dev:0 +github.com/aoudiamoncef/hugo-algolia-uploader, github.com/aouerfelli/hain-plugin-material-colors,num_dependents_deps.dev:0 github.com/aouhabi/primeng,num_dependents_deps.dev:0 github.com/aouyang1/go-lsh,num_dependents_deps.dev:0 @@ -259334,6 +265129,7 @@ github.com/aozora0000/hubot-meshi,num_dependents_deps.dev:0 github.com/aozora0000/hubot-totsuzen,num_dependents_deps.dev:0 github.com/aozora0000/idea,num_dependents_deps.dev:0 github.com/aozora0000/ips,num_dependents_deps.dev:0 +github.com/aozora0000/local-php-security-checker-action, github.com/aozorahack/aozora-cli, github.com/ap--/PyStepRocker,Google github.com/ap--/python-seabreeze,Google @@ -259344,6 +265140,7 @@ github.com/ap-com/spring-oauth2-serializable,num_dependents_deps.dev:0 github.com/ap-mitch/nfc-pcsc, github.com/ap-mitch/node-pcsclite, github.com/ap-pauloafonso/ratio-spoof,num_dependents_deps.dev:0 +github.com/ap-vishal/helm, github.com/ap/vim-buftabline,criticality_score:0.301600 github.com/ap/vim-css-color,criticality_score:0.433700 github.com/ap311036/cpstrap,num_dependents_deps.dev:0 @@ -259550,6 +265347,7 @@ github.com/apache/helix,criticality_score:0.539640 github.com/apache/hive,criticality_score:0.721490 github.com/apache/httpcomponents-client,criticality_score:0.603650 github.com/apache/httpcomponents-core, +github.com/apache/httpcomponents-parent, github.com/apache/httpd,criticality_score:0.651310 github.com/apache/hudi,criticality_score:0.534330 github.com/apache/iceberg,"criticality_score:0.597050,num_dependents_deps.dev:164" @@ -259603,6 +265401,7 @@ github.com/apache/incubator-pagespeed-ngx,criticality_score:0.434980 github.com/apache/incubator-parquet-format, github.com/apache/incubator-parquet-mr, github.com/apache/incubator-pegasus,criticality_score:0.388100 +github.com/apache/incubator-pekko, github.com/apache/incubator-pinot,criticality_score:0.593990 github.com/apache/incubator-plc4x,num_dependents_deps.dev:248 github.com/apache/incubator-predictionio-sdk-ruby,num_dependents_deps.dev:0 @@ -259664,8 +265463,14 @@ github.com/apache/kudu,criticality_score:0.506750 github.com/apache/kylin,"criticality_score:0.656930,num_dependents_deps.dev:3528" github.com/apache/libcloud,criticality_score:0.717210 github.com/apache/log4j,criticality_score:0.364510 +github.com/apache/logging-log4j-audit, +github.com/apache/logging-log4j-kotlin, +github.com/apache/logging-log4j-scala, +github.com/apache/logging-log4j-tools, +github.com/apache/logging-log4j-transform, github.com/apache/logging-log4j2,criticality_score:0.623100 github.com/apache/logging-log4net,criticality_score:0.438360 +github.com/apache/logging-parent, github.com/apache/lucene-solr,criticality_score:0.710610 github.com/apache/lucene-solr-operator,num_dependents_deps.dev:0 github.com/apache/lucenenet,criticality_score:0.554730 @@ -259770,6 +265575,7 @@ github.com/apache/skywalking-banyandb,num_dependents_deps.dev:0 github.com/apache/skywalking-cli,num_dependents_deps.dev:0 github.com/apache/skywalking-client-js,num_dependents_deps.dev:0 github.com/apache/skywalking-data-collect-protocol,"project=envoy,dependency=true" +github.com/apache/skywalking-eyes, github.com/apache/skywalking-goapi,num_dependents_deps.dev:8 github.com/apache/skywalking-infra-e2e,num_dependents_deps.dev:0 github.com/apache/skywalking-kubernetes-event-exporter,num_dependents_deps.dev:0 @@ -259804,6 +265610,7 @@ github.com/apache/uima-parent-pom,num_dependents_deps.dev:9 github.com/apache/usergrid,criticality_score:0.529600 github.com/apache/wicket,criticality_score:0.676350 github.com/apache/yetus,num_dependents_deps.dev:496 +github.com/apache/yetus-test-patch-action, github.com/apache/zeppelin,"criticality_score:0.719740,num_dependents_deps.dev:0" github.com/apache/zest-java,num_dependents_deps.dev:515 github.com/apache/zookeeper,"criticality_score:0.673720,num_dependents_deps.dev:0" @@ -260105,6 +265912,7 @@ github.com/aparande/json-mapping-transform,num_dependents_deps.dev:0 github.com/aparcar/ucentral-cli, github.com/apardellass/react-native-audio-stream,num_dependents_deps.dev:0 github.com/apardellass/react-native-save-wav,num_dependents_deps.dev:0 +github.com/apardo04/locust-github-action, github.com/apare/png-sprite,num_dependents_deps.dev:0 github.com/apareek85/jcj-ap,num_dependents_deps.dev:0 github.com/aparis/grunt-ftp-push-fullpath,num_dependents_deps.dev:0 @@ -260515,6 +266323,11 @@ github.com/apenab/react-dymo-hooks,num_dependents_deps.dev:0 github.com/apenab/react-hooks-toolbox,num_dependents_deps.dev:0 github.com/apenasigordev/nicemeet.js, github.com/apendleton/static-bushes,num_dependents_deps.dev:0 +github.com/apendo-c8/deploy-bpmn-models, +github.com/apendo-c8/download-bpmn-models, +github.com/apendo-c8/linting-bpmn-models, +github.com/apendo-c8/tag-bpmn-models, +github.com/apendo-c8/validate-bpmn-model, github.com/apendua/altimeter,num_dependents_deps.dev:0 github.com/apendua/ddp,num_dependents_deps.dev:0 github.com/apendua/gagarin,num_dependents_deps.dev:0 @@ -260681,6 +266494,8 @@ github.com/apexearth/user-input-touch,num_dependents_deps.dev:0 github.com/apexfarm/sfdx-i18n,num_dependents_deps.dev:0 github.com/apexo/pyxmldiff, github.com/apexskier/AM2302, +github.com/apexskier/github-release-commenter, +github.com/apexskier/github-semver-parse, github.com/apexskier/husl-sass,num_dependents_deps.dev:0 github.com/apexskier/ledDriver, github.com/apexskier/nova-extension-utils, @@ -260718,6 +266533,7 @@ github.com/aphi/pyflip, github.com/aphiratnimanussonkul/cpeproject,num_dependents_deps.dev:0 github.com/aphiratnimanussonkul/go-websocket,num_dependents_deps.dev:0 github.com/aphisitworachorch/bangsue, +github.com/aphistic/screeps-deployer, github.com/aphistic/softcopy,num_dependents_deps.dev:0 github.com/aphistic/sweet, github.com/aphix-dev/sukoshi_text,num_dependents_deps.dev:0 @@ -260941,6 +266757,7 @@ github.com/apidcloud/glslify-loader,num_dependents_deps.dev:0 github.com/apideck-io/components, github.com/apideck-libraries/apideck-node,num_dependents_deps.dev:0 github.com/apideck-libraries/better-ajv-errors,num_dependents_deps.dev:578 +github.com/apideck-libraries/ecs-restart-service, github.com/apideck-libraries/portman,num_dependents_deps.dev:0 github.com/apideck-libraries/postman-to-k6,num_dependents_deps.dev:0 github.com/apidev234/CaptchaCord,num_dependents_deps.dev:0 @@ -261289,7 +267106,9 @@ github.com/apim-haufe-io/wicked.cli,num_dependents_deps.dev:0 github.com/apim-io/auth0-lock-redux,num_dependents_deps.dev:0 github.com/apim-io/eventsourced,num_dependents_deps.dev:0 github.com/apiman/apiman,"criticality_score:0.536200,num_dependents_deps.dev:0" +github.com/apimap/github-actions-apimap-publish, github.com/apimatic/apimatic-kubernetes-operator,num_dependents_deps.dev:0 +github.com/apimatic/apimatic-transformer-action, github.com/apimediaru/gulp-twig,num_dependents_deps.dev:0 github.com/apimediaru/laravel-echo,num_dependents_deps.dev:0 github.com/apimediaru/postcss-px-to-viewport,num_dependents_deps.dev:0 @@ -261325,6 +267144,8 @@ github.com/apiology/pronto-punchlist,num_dependents_deps.dev:0 github.com/apiology/with_op, github.com/apioo/psx-api,num_dependents_deps.dev:0 github.com/apioo/psx-schema,num_dependents_deps.dev:0 +github.com/apioo/sdkgen-generator-action, +github.com/apioo/typeschema-generator-action, github.com/apiotrowski312/imageLoader,num_dependents_deps.dev:0 github.com/apiou/vagrant-debian, github.com/apipemc/jspdf-react,num_dependents_deps.dev:2 @@ -261346,6 +267167,8 @@ github.com/apisearch-io/javascript-client, github.com/apisearch-io/javascript-ui,num_dependents_deps.dev:0 github.com/apisearch-io/search-ui, github.com/apisearch/apisearch,num_dependents_deps.dev:0 +github.com/apisec-inc/apisec-run-scan, +github.com/apisec-inc/ethicalcheck-action, github.com/apishka/country-icons,num_dependents_deps.dev:0 github.com/apishka/framework-js,num_dependents_deps.dev:0 github.com/apisite/apisite,num_dependents_deps.dev:0 @@ -261367,12 +267190,14 @@ github.com/apitlekays/MySchoolList,num_dependents_deps.dev:0 github.com/apitorch/apitorch.py, github.com/apitrace/apitrace,criticality_score:0.572370 github.com/apitracker/apitracker-agent-python, +github.com/apitree/github-actions, github.com/apiumhub/adh,num_dependents_deps.dev:0 github.com/apiv/fuego,num_dependents_deps.dev:0 github.com/apivideo/android-kotlin-sdk,num_dependents_deps.dev:0 github.com/apivideo/android-live-stream,num_dependents_deps.dev:0 github.com/apivideo/android-video-uploader,num_dependents_deps.dev:0 github.com/apivideo/api.video-python-client, +github.com/apivideo/api.video-readmeio-document-sync-action, github.com/apivideo/go-api-client,num_dependents_deps.dev:0 github.com/apivideo/hlsjs-player-analytics,num_dependents_deps.dev:0 github.com/apivideo/java-api-client,num_dependents_deps.dev:0 @@ -261485,6 +267310,7 @@ github.com/aplowman/lammps-parse, github.com/aplowman/spatial-sites, github.com/aplowman/test-lightform-demo-package, github.com/aplowman/vec-maths, +github.com/aplr/action-gcloud-compute-instance, github.com/aplr/vue-dvd-saver,num_dependents_deps.dev:0 github.com/aplr/vue-pinput,num_dependents_deps.dev:0 github.com/apls777/cloud-training, @@ -261598,6 +267424,7 @@ github.com/apogeenetworking/rgnets,num_dependents_deps.dev:0 github.com/apogeenetworking/ruckus,num_dependents_deps.dev:0 github.com/apogeeoak/dircmp,num_dependents_deps.dev:0 github.com/apogiatzis/colabohash, +github.com/apogiatzis/ngrok-tunneling-action, github.com/apogiatzis/powsolver, github.com/apognu/candia,num_dependents_deps.dev:0 github.com/apognu/gocal,num_dependents_deps.dev:0 @@ -261689,6 +267516,7 @@ github.com/apollographql/create-react-apollo,num_dependents_deps.dev:0 github.com/apollographql/eslint-plugin-graphql,criticality_score:0.426180 github.com/apollographql/federation,num_dependents_deps.dev:1543 github.com/apollographql/federation-jvm,num_dependents_deps.dev:83 +github.com/apollographql/federation-subgraph-compatibility, github.com/apollographql/fullstack-tutorial,criticality_score:0.423730 github.com/apollographql/gatsby-theme-apollo,"criticality_score:0.338390,num_dependents_deps.dev:0" github.com/apollographql/graphql-anywhere,num_dependents_deps.dev:434 @@ -261760,6 +267588,7 @@ github.com/apolubotko/home_work,num_dependents_deps.dev:0 github.com/apolytos/word_med_feedScraper,num_dependents_deps.dev:0 github.com/apolzon/ember-cli-refills-components, github.com/apolzon/gem_unused,num_dependents_deps.dev:0 +github.com/apomalyn/bump-version-using-labels, github.com/aponiatowski/gossh,num_dependents_deps.dev:0 github.com/aponica/jsdoc-plugin-linecomments,num_dependents_deps.dev:0 github.com/aponica/mysqlgoose-js,num_dependents_deps.dev:0 @@ -261986,6 +267815,7 @@ github.com/apowers313/passport-webauthn,num_dependents_deps.dev:0 github.com/apowers313/testing,num_dependents_deps.dev:0 github.com/apowers313/webauthn-polyfill,num_dependents_deps.dev:0 github.com/apowers313/webauthn-simple-app,num_dependents_deps.dev:0 +github.com/apowis/pyproject-bump-version, github.com/apoyet/MDToolbox, github.com/apozyniuk/wasm-fib,num_dependents_deps.dev:0 github.com/app-bootstrap/awesome-practice-projects,num_dependents_deps.dev:0 @@ -262086,6 +267916,7 @@ github.com/appannie/ab-testing, github.com/appannie/eslint-plugin-gettext,num_dependents_deps.dev:0 github.com/appannie/react-i18n-jed,num_dependents_deps.dev:0 github.com/appannie/react-infinite-calendar,num_dependents_deps.dev:0 +github.com/appany/helm-oci-chart-releaser, github.com/appapp/cawcaw,num_dependents_deps.dev:0 github.com/appaquet/exocore,num_dependents_deps.dev:22 github.com/appaquet/exomind,num_dependents_deps.dev:0 @@ -262158,6 +267989,7 @@ github.com/appbaseio/dejavu-monorepo,num_dependents_deps.dev:0 github.com/appbaseio/designkit,num_dependents_deps.dev:0 github.com/appbaseio/generator-docbase, github.com/appbaseio/grunt-docbase, +github.com/appbaseio/pipelines-action, github.com/appbaseio/react-searchbox,num_dependents_deps.dev:0 github.com/appbaseio/reactive-manual,num_dependents_deps.dev:0 github.com/appbaseio/reactivecore,num_dependents_deps.dev:22 @@ -262395,6 +268227,7 @@ github.com/appendto/amplify,num_dependents_deps.dev:0 github.com/appendto/jquery-mockjax,num_dependents_deps.dev:0 github.com/appening/tangos-notif, github.com/appening/tangos-render, +github.com/apperry/action-cached-lfs-checkout, github.com/appersonlabs/ChameleonJS,num_dependents_deps.dev:0 github.com/appersonlabs/activecollab-node-api,num_dependents_deps.dev:0 github.com/appersonlabs/docker.io,num_dependents_deps.dev:0 @@ -262671,6 +268504,7 @@ github.com/appjumpstart/vue-styletron,num_dependents_deps.dev:0 github.com/appjusto/types,num_dependents_deps.dev:0 github.com/appknobs/appknobs, github.com/appknox/aklogger, +github.com/appknox/appknox-github-action, github.com/appknox/appknox-python, github.com/appknox/attackapi, github.com/appknox/bakerstreet,num_dependents_deps.dev:0 @@ -262711,6 +268545,8 @@ github.com/applauncher-team/mqtt_bundle, github.com/applauncher-team/redis_bundle, github.com/applauncher-team/slack_bundle, github.com/apple-phi/granita, +github.com/apple-x-co/setup-libharu, +github.com/apple-x-co/setup-libiconv, github.com/apple/HomeKitADK,criticality_score:0.311710 github.com/apple/ccs-pykerberos, github.com/apple/coremltools,"criticality_score:0.488970,num_dependents_deps.dev:0" @@ -262757,7 +268593,9 @@ github.com/applean/react-native-barcode-scanner-universal,num_dependents_deps.de github.com/applebappu/golang,num_dependents_deps.dev:0 github.com/appleboy/cacheman-promise,num_dependents_deps.dev:0 github.com/appleboy/com,num_dependents_deps.dev:1 +github.com/appleboy/discord-action, github.com/appleboy/docker-backup-database,num_dependents_deps.dev:0 +github.com/appleboy/docker-ecr-action, github.com/appleboy/drone-discord,num_dependents_deps.dev:0 github.com/appleboy/drone-facebook,num_dependents_deps.dev:0 github.com/appleboy/drone-lambda,num_dependents_deps.dev:0 @@ -262767,15 +268605,22 @@ github.com/appleboy/drone-scp,num_dependents_deps.dev:0 github.com/appleboy/drone-ssh,num_dependents_deps.dev:0 github.com/appleboy/drone-telegram,num_dependents_deps.dev:0 github.com/appleboy/drone-template-lib,num_dependents_deps.dev:0 +github.com/appleboy/facebook-action, +github.com/appleboy/gh-pages-action, github.com/appleboy/gin-jwt,"criticality_score:0.397290,num_dependents_deps.dev:18" +github.com/appleboy/gitlab-ci-action, github.com/appleboy/go-fcm,num_dependents_deps.dev:41 github.com/appleboy/go-myallocator,num_dependents_deps.dev:0 github.com/appleboy/go-storage,num_dependents_deps.dev:0 github.com/appleboy/gofight,"criticality_score:0.339340,num_dependents_deps.dev:0" github.com/appleboy/gopush,num_dependents_deps.dev:0 github.com/appleboy/gorush,"criticality_score:0.435250,num_dependents_deps.dev:0" +github.com/appleboy/gtalk-action, github.com/appleboy/gulp-compass,num_dependents_deps.dev:8 +github.com/appleboy/jenkins-action, +github.com/appleboy/lambda-action, github.com/appleboy/laravel-elixir-cssfmt,num_dependents_deps.dev:0 +github.com/appleboy/line-action, github.com/appleboy/livescript-gulp,num_dependents_deps.dev:0 github.com/appleboy/normalize.scss,num_dependents_deps.dev:0 github.com/appleboy/queue,num_dependents_deps.dev:0 @@ -262785,6 +268630,8 @@ github.com/appleboy/scp-action,criticality_score:0.302310 github.com/appleboy/slush-backbone-template,num_dependents_deps.dev:0 github.com/appleboy/slush-html5-template,num_dependents_deps.dev:0 github.com/appleboy/ssh-action,criticality_score:0.385240 +github.com/appleboy/telegram-action, +github.com/appleboy/whisper-action, github.com/applecakejs/make-applecake-app-npm,num_dependents_deps.dev:0 github.com/applecat/django-simple-poll, github.com/applefreak/airtable2lowdb,num_dependents_deps.dev:0 @@ -262859,6 +268706,7 @@ github.com/appletxm/rf-vue-app-pc,num_dependents_deps.dev:0 github.com/appletxm/rf-vue-cli,num_dependents_deps.dev:0 github.com/appletxm/rf-vue-ui,num_dependents_deps.dev:0 github.com/applexiaohao/virtual-parse,num_dependents_deps.dev:0 +github.com/applibgroup/HarmonyOsSdk, github.com/applicake-tools/applicake, github.com/applicaster-plugins/react-native-broadcast-manager,num_dependents_deps.dev:0 github.com/applicaster/AppleApplicasterFrameworks,num_dependents_deps.dev:0 @@ -262880,6 +268728,7 @@ github.com/applicius/bootstrap-combobox,num_dependents_deps.dev:0 github.com/applicius/jquery.applidok,num_dependents_deps.dev:0 github.com/applicius/jquery.signfield,num_dependents_deps.dev:0 github.com/appliconcept/react,num_dependents_deps.dev:0 +github.com/applicreation/versions-action, github.com/applidget/flowqueues,num_dependents_deps.dev:0 github.com/applidget/ps-dock,num_dependents_deps.dev:0 github.com/applidget/react-bootstrap-daterangepicker,num_dependents_deps.dev:0 @@ -263093,6 +268942,11 @@ github.com/appoxy/aws,"criticality_score:0.361490,num_dependents_deps.dev:7" github.com/appoxy/mini_fb,num_dependents_deps.dev:1 github.com/appoxy/simple_record,num_dependents_deps.dev:1 github.com/apppackio/apppack,num_dependents_deps.dev:0 +github.com/apppackio/build-action, +github.com/apppackio/deploy-action, +github.com/apppackio/metadata-action, +github.com/apppackio/setup-apppack-cli, +github.com/apppackio/upload-artifacts-action, github.com/appprova/action_tracker,num_dependents_deps.dev:0 github.com/apprat/mtu,num_dependents_deps.dev:0 github.com/appraveen/module-orchestrator,num_dependents_deps.dev:0 @@ -263311,6 +269165,7 @@ github.com/apptik/multiselectspinner,num_dependents_deps.dev:0 github.com/apptik/multiview,num_dependents_deps.dev:6 github.com/apptik/rhub,num_dependents_deps.dev:49 github.com/apptik/rxhub,num_dependents_deps.dev:0 +github.com/apptim/apptim-cli-action, github.com/apptio/kr8,num_dependents_deps.dev:0 github.com/apptjs/appt-mongoose,num_dependents_deps.dev:0 github.com/apptjs/appt-sequelize,num_dependents_deps.dev:0 @@ -263371,6 +269226,7 @@ github.com/appverse/grunt-appverse-jsonserver,num_dependents_deps.dev:0 github.com/appveyor/ci,criticality_score:0.534420 github.com/appvia/eks-operator,num_dependents_deps.dev:0 github.com/appvia/gcp-operator,num_dependents_deps.dev:0 +github.com/appvia/githubUserManager, github.com/appvia/kev,num_dependents_deps.dev:0 github.com/appvia/komando,num_dependents_deps.dev:0 github.com/appvia/kube-devx,num_dependents_deps.dev:0 @@ -263387,6 +269243,7 @@ github.com/appwrite/sdk-for-js,num_dependents_deps.dev:0 github.com/appwrite/sdk-for-kotlin,num_dependents_deps.dev:0 github.com/appwrite/sdk-for-node,num_dependents_deps.dev:0 github.com/appwrite/sdk-for-web,num_dependents_deps.dev:0 +github.com/appwrite/setup-for-actions, github.com/appwrx/mongoose-anchor-pagination,num_dependents_deps.dev:0 github.com/appxplore-tech/useragent, github.com/appy-one/acebase, @@ -263438,6 +269295,7 @@ github.com/apresfiux/artenc,num_dependents_deps.dev:0 github.com/apresfiux/artlogger,num_dependents_deps.dev:1 github.com/apresfiux/artloghandler,num_dependents_deps.dev:0 github.com/apress/web-dev-w-go,num_dependents_deps.dev:0 +github.com/aprets/action-conventional-commits, github.com/aprezcuba24/zunzun, github.com/apriady/digiflazz,num_dependents_deps.dev:0 github.com/apriady/nodejs-bca-scraper,num_dependents_deps.dev:0 @@ -263592,6 +269450,7 @@ github.com/apteryxxyz/jswhat,num_dependents_deps.dev:0 github.com/apteryxxyz/root-66,num_dependents_deps.dev:0 github.com/apthagowda97/storeweights, github.com/apthskyi/censorify,num_dependents_deps.dev:0 +github.com/aptible/aptible-deploy-action, github.com/aptible/ember-cli-aptible-shared,num_dependents_deps.dev:0 github.com/aptible/ember-json-schema,num_dependents_deps.dev:0 github.com/aptible/ember-json-schema-document,num_dependents_deps.dev:0 @@ -263801,11 +269660,18 @@ github.com/aqrojo/class-names,num_dependents_deps.dev:0 github.com/aqrojo/when,num_dependents_deps.dev:0 github.com/aqsous/beyonic-node, github.com/aqua-feather/ufo-framework,num_dependents_deps.dev:0 +github.com/aqua-github-actions/ga-aqua-comment, +github.com/aqua-github-actions/ga-aqua-find-defect-key, +github.com/aqua-github-actions/ga-aqua-login, +github.com/aqua-github-actions/ga-aqua-logout, +github.com/aqua-github-actions/ga-aqua-transition, github.com/aqua-regia/apiloadtests, +github.com/aquacash5/npm-gpr-auth, github.com/aquachain/aquachain-kv, github.com/aquachain/aquachain-tk, github.com/aquachain/aquachain.py, github.com/aquachain/open-aquachain-pool,num_dependents_deps.dev:0 +github.com/aquacloud-dev/helm-action, github.com/aquacropos/aquacrop-eto, github.com/aquadevelopments/cyrillic-slug,num_dependents_deps.dev:0 github.com/aquadzn/deploy-transformers, @@ -263854,6 +269720,7 @@ github.com/aquariuslt/lbs-tencent-typings,num_dependents_deps.dev:0 github.com/aquariuslt/lighthouse-plugin-md5, github.com/aquariuslt/log4js-api,num_dependents_deps.dev:0 github.com/aquariuslt/nest-rabbitmq-appender,num_dependents_deps.dev:0 +github.com/aquariuslt/node-browsers-github-actions, github.com/aquariuslt/properties-json-loader,num_dependents_deps.dev:0 github.com/aquariuslt/react-disqus-components,num_dependents_deps.dev:0 github.com/aquariuslt/semantic-release,num_dependents_deps.dev:0 @@ -263867,6 +269734,9 @@ github.com/aquasecurity/alm-integration,num_dependents_deps.dev:0 github.com/aquasecurity/aqua-helm, github.com/aquasecurity/aqua-operator,num_dependents_deps.dev:0 github.com/aquasecurity/bench-common,num_dependents_deps.dev:0 +github.com/aquasecurity/build-security-action, +github.com/aquasecurity/cfsec-sarif-action, +github.com/aquasecurity/chain-bench-action, github.com/aquasecurity/cloudformation-aqua-helm-providers,num_dependents_deps.dev:0 github.com/aquasecurity/cloudsploit,criticality_score:0.414100 github.com/aquasecurity/docker-bench,num_dependents_deps.dev:0 @@ -263887,8 +269757,13 @@ github.com/aquasecurity/starboard-octant-plugin,num_dependents_deps.dev:0 github.com/aquasecurity/terraform-provider-aquasec,num_dependents_deps.dev:0 github.com/aquasecurity/testdocker,num_dependents_deps.dev:0 github.com/aquasecurity/tfsec,num_dependents_deps.dev:1 +github.com/aquasecurity/tfsec-action, +github.com/aquasecurity/tfsec-pr-commenter-action, +github.com/aquasecurity/tfsec-sarif-action, github.com/aquasecurity/tracee,"criticality_score:0.392400,num_dependents_deps.dev:1" +github.com/aquasecurity/tracee-action, github.com/aquasecurity/trivy,"criticality_score:0.569110,num_dependents_deps.dev:20" +github.com/aquasecurity/trivy-action, github.com/aquasecurity/trivy-db,num_dependents_deps.dev:25 github.com/aquasecurity/vuln-list-update,num_dependents_deps.dev:5 github.com/aquasecurity/webhook-server,num_dependents_deps.dev:0 @@ -263902,7 +269777,10 @@ github.com/aquavitae/mongokit-py3, github.com/aquavitae/mongokit-py3-updated, github.com/aquaya/monger, github.com/aqueduct-system/types,num_dependents_deps.dev:0 +github.com/aqueducthq/aqueduct-workflow-script-runner, +github.com/aqueducthq/update-aqueduct-workflow, github.com/aquelatecnologia/rn-device-credentials, +github.com/aquelegustavo/forksync, github.com/aquib1011/general-distribution, github.com/aquibjaved/Twilight, github.com/aquibm/angular-beanie,num_dependents_deps.dev:0 @@ -263920,6 +269798,9 @@ github.com/aquifer/aquifer-drush,num_dependents_deps.dev:0 github.com/aquifer/aquifer-git,num_dependents_deps.dev:0 github.com/aquifer/aquifer-run,num_dependents_deps.dev:0 github.com/aquilacms/storefront-data-hooks,num_dependents_deps.dev:0 +github.com/aquiladev/ddns-action, +github.com/aquiladev/ipfs-action, +github.com/aquiladev/swarm-action, github.com/aquiladev/truffle-wallet-connect-provider,num_dependents_deps.dev:0 github.com/aquiladev/wallet-connect-provider, github.com/aquilae/interpolated-object,num_dependents_deps.dev:0 @@ -263983,6 +269864,7 @@ github.com/ar-nowaczynski/spaceopt, github.com/ar-shestopal/jquery-circliful-npm,num_dependents_deps.dev:0 github.com/ar-tama/cosmosdb-query-builder,num_dependents_deps.dev:0 github.com/ar-to/shufflejs-react,num_dependents_deps.dev:0 +github.com/ar-ushi/append-jira-details-action, github.com/ar124official2019/selecta,num_dependents_deps.dev:0 github.com/ar13pit/caret, github.com/ar1hur/gitkeep,num_dependents_deps.dev:0 @@ -264129,6 +270011,7 @@ github.com/aradzie/fsx,num_dependents_deps.dev:0 github.com/arael82/golang-practice-1,num_dependents_deps.dev:0 github.com/arafat-hasan/bangladatetime, github.com/arafat-hasan/hello-go,num_dependents_deps.dev:0 +github.com/arafat-shopify/review-check, github.com/arafatamim/mpris2client,num_dependents_deps.dev:0 github.com/arafatamim/suspend-pc,num_dependents_deps.dev:0 github.com/arafatamim/waybar-mpris,num_dependents_deps.dev:0 @@ -264356,6 +270239,7 @@ github.com/arangodb/arangodb-spark-connector,num_dependents_deps.dev:15 github.com/arangodb/arangojs,"criticality_score:0.527030,num_dependents_deps.dev:32" github.com/arangodb/arangosync-client,num_dependents_deps.dev:1 github.com/arangodb/blueprints-arangodb-graph,num_dependents_deps.dev:0 +github.com/arangodb/clang-format-action, github.com/arangodb/foxx-cli,num_dependents_deps.dev:0 github.com/arangodb/go-driver,"criticality_score:0.385630,num_dependents_deps.dev:11" github.com/arangodb/gobench,num_dependents_deps.dev:0 @@ -264546,6 +270430,7 @@ github.com/aravinth2094/nio,num_dependents_deps.dev:0 github.com/aravinthlr/nodejs,num_dependents_deps.dev:0 github.com/aravinthraja/karma-luxon,num_dependents_deps.dev:0 github.com/aravinu19/EnquodeLogWindow,num_dependents_deps.dev:0 +github.com/arawathappymoney/setup-sfdx-action, github.com/araxeus/custom-electron-prompt, github.com/aray12/env-joi,num_dependents_deps.dev:0 github.com/arayaryoma/primereact,num_dependents_deps.dev:0 @@ -264558,6 +270443,8 @@ github.com/araynimax/ragemp-cli,num_dependents_deps.dev:0 github.com/arazaki/custom-button,num_dependents_deps.dev:0 github.com/arazmj/rolling,num_dependents_deps.dev:0 github.com/arazum/hzpp,num_dependents_deps.dev:0 +github.com/arazutech/action-license-compliance, +github.com/arazutech/action-slack-notification, github.com/arb/as-god-intended, github.com/arb/big-time,num_dependents_deps.dev:734 github.com/arb/bracketing,num_dependents_deps.dev:0 @@ -264679,6 +270566,7 @@ github.com/arcadiogarcia/ClockworkTools,num_dependents_deps.dev:0 github.com/arcadium-dev/core,num_dependents_deps.dev:0 github.com/arcaela/aurora,num_dependents_deps.dev:0 github.com/arcaglar/auto-lorem,num_dependents_deps.dev:0 +github.com/arcalot/arcaflow-container-toolkit-action, github.com/arcana-rs/synthez,num_dependents_deps.dev:0 github.com/arcanae/arcanae-fetch,num_dependents_deps.dev:0 github.com/arcane86/niafron-factory,num_dependents_deps.dev:0 @@ -264889,6 +270777,7 @@ github.com/archeryue/golang1.6,num_dependents_deps.dev:0 github.com/archerz26/joker,num_dependents_deps.dev:0 github.com/arches/table_print,"criticality_score:0.371140,num_dependents_deps.dev:52" github.com/archetect/archetect,num_dependents_deps.dev:0 +github.com/archethic-foundation/aeweb-github-action, github.com/archethic-foundation/libjs,num_dependents_deps.dev:0 github.com/archethic/node-kakaolink,num_dependents_deps.dev:0 github.com/archeti-org/awdb, @@ -265024,6 +270913,7 @@ github.com/architv/soccer-cli,criticality_score:0.301310 github.com/archival-IIIF/image-server-core,num_dependents_deps.dev:0 github.com/archival-IIIF/presentation-builder,num_dependents_deps.dev:0 github.com/archival-IIIF/viewer,num_dependents_deps.dev:0 +github.com/archive/github-actions-slack, github.com/archive/gulp-custom-lint, github.com/archiverjs/archiver-cli,num_dependents_deps.dev:0 github.com/archiverjs/archiver-json,num_dependents_deps.dev:0 @@ -265212,6 +271102,7 @@ github.com/arcthur/onecharts,num_dependents_deps.dev:0 github.com/arctic-fox-2016/npm-package,num_dependents_deps.dev:0 github.com/arctic-hen7/diana,num_dependents_deps.dev:0 github.com/arctic-hen7/ipems.js,num_dependents_deps.dev:0 +github.com/arctic-hen7/tribble-bot, github.com/arcticdata/tonggong, github.com/arcticfoxnv/pushybullet-gem,num_dependents_deps.dev:0 github.com/arcticfoxnv/slackminion-mysql, @@ -265281,6 +271172,8 @@ github.com/arcward/echokit, github.com/arcward/fbparser, github.com/arcward/picketer, github.com/arcward/ticketpy, +github.com/arcxp/datadog-service-catalog-metadata-provider, +github.com/arcxp/deploy-action, github.com/ard92/vm-topology-builder,num_dependents_deps.dev:0 github.com/arda-guler/pyTuneGen, github.com/ardabeyazoglu/cordova-plugin-crosswalk-webview-v3,num_dependents_deps.dev:0 @@ -265337,6 +271230,7 @@ github.com/ardcore/datafill,num_dependents_deps.dev:0 github.com/ardcore/fit_transform,num_dependents_deps.dev:0 github.com/ardcore/funf,num_dependents_deps.dev:0 github.com/ardcore/new.js,num_dependents_deps.dev:0 +github.com/arddluma/cloudflare-pages-slack-notification, github.com/ardeaf/redelete,num_dependents_deps.dev:0 github.com/ardean/dtyp,num_dependents_deps.dev:0 github.com/ardean/jsCast,num_dependents_deps.dev:0 @@ -265371,6 +271265,7 @@ github.com/ardentic/eslint-config-flair,num_dependents_deps.dev:0 github.com/ardentic/stylus-jiggers,num_dependents_deps.dev:0 github.com/ardentic/stylus-mq,num_dependents_deps.dev:0 github.com/ardentlabs/react-native-emoji, +github.com/ardeois/better-crowdin-action, github.com/ardeois/graphql-codegen-typescript-mock-data,num_dependents_deps.dev:0 github.com/ardera/flutter-pi,criticality_score:0.338940 github.com/ardeshireshghi/ardi-promise,num_dependents_deps.dev:0 @@ -265452,9 +271347,11 @@ github.com/arduino/arduino-fwuploader,num_dependents_deps.dev:0 github.com/arduino/arduino-iot-js,num_dependents_deps.dev:0 github.com/arduino/arduino-language-server,num_dependents_deps.dev:0 github.com/arduino/arduino-lint,num_dependents_deps.dev:0 +github.com/arduino/arduino-lint-action, github.com/arduino/arduino-pro-ide,criticality_score:0.353660 github.com/arduino/arduinoota,num_dependents_deps.dev:0 github.com/arduino/board-discovery,num_dependents_deps.dev:5 +github.com/arduino/compile-sketches, github.com/arduino/go-paths-helper,num_dependents_deps.dev:22 github.com/arduino/go-properties-map,num_dependents_deps.dev:0 github.com/arduino/go-properties-orderedmap,num_dependents_deps.dev:18 @@ -265464,7 +271361,11 @@ github.com/arduino/libraries-repository-engine,num_dependents_deps.dev:0 github.com/arduino/mdns-discovery,num_dependents_deps.dev:0 github.com/arduino/node-red-contrib-arduino-iot-cloud,num_dependents_deps.dev:0 github.com/arduino/pluggable-discovery-protocol-handler,num_dependents_deps.dev:0 +github.com/arduino/report-size-deltas, github.com/arduino/serial-discovery,num_dependents_deps.dev:0 +github.com/arduino/setup-arduino-cli, +github.com/arduino/setup-protoc, +github.com/arduino/setup-task, github.com/ardustri/Externatus, github.com/ardustri/babern, github.com/ardustri/klivi, @@ -265736,6 +271637,7 @@ github.com/arenoir/ember-cli-deploy-ssh2,num_dependents_deps.dev:0 github.com/arenoir/ember-collection-select,num_dependents_deps.dev:0 github.com/arenoir/ember-credit-cards,num_dependents_deps.dev:0 github.com/arenoir/ember-tabella,num_dependents_deps.dev:0 +github.com/arensis/node-ci-action, github.com/arenstar/sembump,num_dependents_deps.dev:0 github.com/arenuzzz/alias-config,num_dependents_deps.dev:0 github.com/arenuzzz/react-clear-browser-cache,num_dependents_deps.dev:0 @@ -265985,6 +271887,7 @@ github.com/argonlaser/hangman-game,num_dependents_deps.dev:0 github.com/argonlaser/microplan,num_dependents_deps.dev:0 github.com/argonlaser/node-stalker,num_dependents_deps.dev:0 github.com/argonne-lcf/balsam, +github.com/argonsecurity/scanner-action, github.com/argoproj-labs/amalgamated-kubernetes-api,num_dependents_deps.dev:0 github.com/argoproj-labs/applicationset,num_dependents_deps.dev:0 github.com/argoproj-labs/argo-client-python, @@ -266066,6 +271969,7 @@ github.com/argv-minus-one/dmg-license, github.com/argv-minus-one/iconv-corefoundation,num_dependents_deps.dev:102 github.com/argvk/jesque,num_dependents_deps.dev:0 github.com/argvsc47/hellcode,num_dependents_deps.dev:0 +github.com/argyle-software/kyber, github.com/argyle-systems/argyle-plugin-react-native,num_dependents_deps.dev:0 github.com/argyle-systems/sdk-react-native,num_dependents_deps.dev:0 github.com/argyleink/Bolt-cli,num_dependents_deps.dev:0 @@ -266158,6 +272062,7 @@ github.com/ariadnahctec/regularexpressions,num_dependents_deps.dev:0 github.com/ariadnext/nodejs-IDCHECKIO,num_dependents_deps.dev:0 github.com/ariadnext/papermill_report, github.com/ariaghora/monoplt, +github.com/ariaieboy/caprover-deploy, github.com/arian/CSSMatrix,num_dependents_deps.dev:0 github.com/arian/Complex,num_dependents_deps.dev:0 github.com/arian/CoverJS, @@ -266192,6 +272097,7 @@ github.com/arianbahreman/appear,num_dependents_deps.dev:0 github.com/arianbahreman/pagination,num_dependents_deps.dev:0 github.com/ariandi/go-lib,num_dependents_deps.dev:0 github.com/arianegraphql/ariane-server,num_dependents_deps.dev:2 +github.com/ariangilesgarcia/run-permifrost, github.com/arianics/js-performance-test,num_dependents_deps.dev:0 github.com/ariankordi/light-pjax,num_dependents_deps.dev:0 github.com/arianofaoms/create-react-app,num_dependents_deps.dev:0 @@ -266241,6 +272147,7 @@ github.com/aric-pypi/jsw-nx, github.com/aricaldeira/PySPED, github.com/aricallen/har-parser, github.com/aricart/authdemo,num_dependents_deps.dev:0 +github.com/ariccio/check_validates_timeliness, github.com/aricearice/youtube-page-token,num_dependents_deps.dev:0 github.com/arichiardi/ava-backport,num_dependents_deps.dev:0 github.com/arichiardi/humane-test-output,num_dependents_deps.dev:0 @@ -266349,6 +272256,7 @@ github.com/arieljannai/fs-extra-q-promise,num_dependents_deps.dev:0 github.com/arieljannai/webstore-upload,num_dependents_deps.dev:0 github.com/arielleon24/lotide,num_dependents_deps.dev:0 github.com/arielleon24/lotide2,num_dependents_deps.dev:0 +github.com/arielly-parussulo/ec2-github-runner, github.com/ariellyparussulo/infra,num_dependents_deps.dev:0 github.com/ariellyrycs/nodejs-server,num_dependents_deps.dev:0 github.com/ariellyrycs/pets-manager,num_dependents_deps.dev:0 @@ -266377,6 +272285,7 @@ github.com/arielshaqed/share,num_dependents_deps.dev:0 github.com/arielshaqed/typescript-json-schema,num_dependents_deps.dev:0 github.com/arielspear/compliments,num_dependents_deps.dev:0 github.com/arieltlm/h-resize,num_dependents_deps.dev:0 +github.com/arielvinas/helm, github.com/ariemeth/gearforce,num_dependents_deps.dev:0 github.com/ariemtech/js-cast,num_dependents_deps.dev:0 github.com/arienmalec/alexa_rust,num_dependents_deps.dev:0 @@ -266446,6 +272355,8 @@ github.com/arifsetiawan/camunda-app,num_dependents_deps.dev:0 github.com/arifsetiawan/flatten,num_dependents_deps.dev:26 github.com/arifsetiawan/pagekite-api,num_dependents_deps.dev:0 github.com/arifsetyawan/keysto,num_dependents_deps.dev:0 +github.com/arifsetyawan/kubernetes-action, +github.com/arifsetyawan/ms-teams-deploy-card, github.com/arifshariati/react-materialui-charts,num_dependents_deps.dev:0 github.com/arifshariati/react-materialui-testimonials-transition,num_dependents_deps.dev:0 github.com/arifszn/article-api,num_dependents_deps.dev:0 @@ -266458,6 +272369,9 @@ github.com/arifusr/greeter,num_dependents_deps.dev:0 github.com/arifusr/mbkm-cli,num_dependents_deps.dev:0 github.com/arifusr/online_store,num_dependents_deps.dev:0 github.com/arifwidianto08/use-lazy-fetch,num_dependents_deps.dev:0 +github.com/ariga/atlas-deploy-action, +github.com/ariga/atlas-sync-action, +github.com/ariga/setup-atlas, github.com/arigatosimarmata/go-say-hello,num_dependents_deps.dev:0 github.com/arigo-software/arigo-vscode-app,num_dependents_deps.dev:0 github.com/arihantagarwal/doo,num_dependents_deps.dev:0 @@ -266509,8 +272423,12 @@ github.com/arikast/springsandwich,num_dependents_deps.dev:0 github.com/arikastarvo/ptail,num_dependents_deps.dev:0 github.com/arikastarvo/ptail-redis,num_dependents_deps.dev:0 github.com/arikchakma/Gia-Callista,num_dependents_deps.dev:0 +github.com/arikg10/conditional-matrix, github.com/arikkfir/cloudflare-operator,num_dependents_deps.dev:0 +github.com/arikkfir/delivery-env-name, +github.com/arikkfir/setup-kude, github.com/arikkfir/syncer,num_dependents_deps.dev:0 +github.com/arikmaor/commits-range-action, github.com/arikon/borschik-tech-istanbul,num_dependents_deps.dev:0 github.com/arikon/bower-npm-install,num_dependents_deps.dev:0 github.com/arikon/mocha-istanbul,num_dependents_deps.dev:2 @@ -266535,12 +272453,16 @@ github.com/arildwtv/yacg,num_dependents_deps.dev:0 github.com/arilfrankel/multemojis,num_dependents_deps.dev:0 github.com/arilitan/react-native-blurview,num_dependents_deps.dev:0 github.com/arillo/Backbone.Facetr,num_dependents_deps.dev:0 +github.com/arillso/action.ansible.collection, +github.com/arillso/action.molecule, +github.com/arillso/action.playbook, github.com/arilotter/anime, github.com/arilotter/clmutils,num_dependents_deps.dev:0 github.com/arilotter/icon-convert,num_dependents_deps.dev:0 github.com/ariloulaleelay/yaost, github.com/arima-ryunosuke/js-asset-server,num_dependents_deps.dev:0 github.com/arimah/plural-rules,num_dependents_deps.dev:0 +github.com/arimal199-org/install-gh-cli-action, github.com/arimateia98/CLI-CRUD,num_dependents_deps.dev:0 github.com/arimateia98/cli-op,num_dependents_deps.dev:0 github.com/arimeka/anifag-com,num_dependents_deps.dev:0 @@ -266596,6 +272518,10 @@ github.com/ariran5/page-draw,num_dependents_deps.dev:0 github.com/arirawr/pokedex-rs,num_dependents_deps.dev:0 github.com/ariroffe/logics, github.com/arisaachen/deepin-network-proxy,num_dependents_deps.dev:0 +github.com/arisacoba/playground-actions, +github.com/arisacoba/playground-actions-II, +github.com/arisacoba/test-actions, +github.com/arisacoba/test-actions-02, github.com/arisal2/go-abhinav,num_dependents_deps.dev:0 github.com/arisaninc/clup,num_dependents_deps.dev:0 github.com/arisantos/halojs,num_dependents_deps.dev:0 @@ -266705,6 +272631,7 @@ github.com/aristovn/stylebox,num_dependents_deps.dev:0 github.com/arisu1000/kubernetes-book-sample,num_dependents_deps.dev:0 github.com/arisu1000/npmtest_wcjung,num_dependents_deps.dev:0 github.com/arisunarya/vue-visible-element, +github.com/arit-ucsb/AppDev.EvolveVersion.Action, github.com/arita37/autoscale_aws, github.com/arita37/cli_code, github.com/arita37/mlmodels, @@ -266883,6 +272810,7 @@ github.com/arjundandagi/hiarjun, github.com/arjundandagi/mvn-upper,num_dependents_deps.dev:0 github.com/arjundandagi/prints-yourname,num_dependents_deps.dev:0 github.com/arjundandagi/sayhi, +github.com/arjundashrath/setup-hlf, github.com/arjundhar/scribbles,num_dependents_deps.dev:0 github.com/arjundixit2991/next_in_sequence,num_dependents_deps.dev:0 github.com/arjunepr/standard-dimmer,num_dependents_deps.dev:0 @@ -267034,6 +272962,7 @@ github.com/arkajkesav/node.js,num_dependents_deps.dev:0 github.com/arkalon76/salmiak, github.com/arkancrow/node-red-contrib-postgres-listen,num_dependents_deps.dev:0 github.com/arkandas/pythonparser, +github.com/arkane-systems/apt-repo-update, github.com/arkane-systems/genie,criticality_score:0.471410 github.com/arkangels/ctf-source-codes,num_dependents_deps.dev:0 github.com/arkanjoms/nexus-npm,num_dependents_deps.dev:0 @@ -267060,6 +272989,7 @@ github.com/arkcore/arklogger,num_dependents_deps.dev:2 github.com/arkcore/modern-random-ua,num_dependents_deps.dev:2 github.com/arkcore/phonelookup,num_dependents_deps.dev:0 github.com/arkcore/short,num_dependents_deps.dev:0 +github.com/arkdbp/git-action, github.com/arkdevuk/InstaPost,num_dependents_deps.dev:0 github.com/arkdevuk/vue2-sortable,num_dependents_deps.dev:0 github.com/arkecosystem/crypto-json-rpc,num_dependents_deps.dev:0 @@ -267069,6 +272999,7 @@ github.com/arkecosystem/ledger-transport, github.com/arkecosystem/nucleid,num_dependents_deps.dev:0 github.com/arkecosystem/peers,num_dependents_deps.dev:0 github.com/arkeidolon/pretty-lists,num_dependents_deps.dev:0 +github.com/arkemishub/publish-to-hex, github.com/arken/ait,num_dependents_deps.dev:0 github.com/arken/arken,num_dependents_deps.dev:0 github.com/arken/arkstat,num_dependents_deps.dev:0 @@ -267120,6 +273051,7 @@ github.com/arkhn/dbtonfhir, github.com/arkhn/monitoring, github.com/arkhn/pyarxaas, github.com/arkhn/pyfhirstore, +github.com/arkhn/testy-action, github.com/arkhotech/aws-lambda-tools,num_dependents_deps.dev:0 github.com/arkhotech/json_query, github.com/arki1/colabutils, @@ -267157,6 +273089,7 @@ github.com/arkoes07/croissant,num_dependents_deps.dev:0 github.com/arkokoley/actively,num_dependents_deps.dev:0 github.com/arkokoley/pdfvuer,"criticality_score:0.394100,num_dependents_deps.dev:0" github.com/arkon/arkon-schema, +github.com/arkon/issue-closer-action, github.com/arkon/native-is-elevated,num_dependents_deps.dev:0 github.com/arkon/ng-click-outside,num_dependents_deps.dev:12 github.com/arkon/ng-inline-svg,num_dependents_deps.dev:30 @@ -267344,6 +273277,9 @@ github.com/arm4design/arm4log,num_dependents_deps.dev:0 github.com/arm4design/quick-static-server,num_dependents_deps.dev:0 github.com/arm5077/generator-mcgill,num_dependents_deps.dev:0 github.com/arm5077/silverpop-node,num_dependents_deps.dev:0 +github.com/arma-actions/bom-check, +github.com/arma-actions/sqflint, +github.com/arma-actions/workshop-upload, github.com/arma3modorganizer/delta_patch,num_dependents_deps.dev:0 github.com/armaaar/sortable-tables,num_dependents_deps.dev:0 github.com/armaan115/blit7s, @@ -267372,6 +273308,7 @@ github.com/armadillo-dev/eslint-config-armadillo,num_dependents_deps.dev:0 github.com/armadsen/ORSSerialPort,criticality_score:0.411220 github.com/armaget/sc0ur,num_dependents_deps.dev:0 github.com/armahillo/emoji_sub,num_dependents_deps.dev:0 +github.com/armakuni/carbon-guard, github.com/armakuni/circleci-context-secret-manager,num_dependents_deps.dev:0 github.com/armaldio/c2addon-utility,num_dependents_deps.dev:0 github.com/armaldio/electron-bottom-most,num_dependents_deps.dev:0 @@ -267457,6 +273394,7 @@ github.com/armanokka/telegram-bot-api,num_dependents_deps.dev:0 github.com/armanozak/callbag-catch-error,num_dependents_deps.dev:0 github.com/armanozak/should-quote, github.com/armanozak/snq, +github.com/armanrahman22/azblob-download-action, github.com/armanrahman22/facenet, github.com/armanrozika/gatsby-source-fireimage,num_dependents_deps.dev:0 github.com/armanso/app-reviews,num_dependents_deps.dev:0 @@ -267516,6 +273454,7 @@ github.com/armetiz/node-printer-lp,num_dependents_deps.dev:0 github.com/armetiz/node-simple-daemon,num_dependents_deps.dev:0 github.com/armfazh/h2c-go-ref,num_dependents_deps.dev:5 github.com/armgabrielyan/intro-go,num_dependents_deps.dev:0 +github.com/armhil/azure-blobs-content-uploader, github.com/armhil/easy-code-formatter-styles,num_dependents_deps.dev:0 github.com/armhzjz/DenseNet, github.com/armiiller/ember-cli-adminlte,num_dependents_deps.dev:0 @@ -267539,6 +273478,7 @@ github.com/arminc/terraform-ecs,criticality_score:0.353160 github.com/armindoantunes/javastravav3api,num_dependents_deps.dev:0 github.com/armindojr/pure-gen, github.com/armindojr/qase-uploader, +github.com/armingli/readme-update-actions, github.com/armingodiz/gitlab-api,num_dependents_deps.dev:0 github.com/armingodiz/golang-code-challenge,num_dependents_deps.dev:0 github.com/arminha/covet,num_dependents_deps.dev:0 @@ -267583,6 +273523,7 @@ github.com/armmbed/mbed-connector-api-python, github.com/armmbed/mbed-edge-js,num_dependents_deps.dev:0 github.com/armnerd/go-skeleton,num_dependents_deps.dev:0 github.com/armnerd/zorm,num_dependents_deps.dev:0 +github.com/armneto/fast-r-action, github.com/armnetwork/js-arm-sdk,num_dependents_deps.dev:0 github.com/armollica/chainparse,num_dependents_deps.dev:0 github.com/armon/circbuf,num_dependents_deps.dev:569 @@ -267593,6 +273534,7 @@ github.com/armon/go-radix,num_dependents_deps.dev:4294 github.com/armon/gomdb,num_dependents_deps.dev:3 github.com/armon/pyhlld, github.com/armon/pypred, +github.com/armona/jira-release-actions, github.com/armonge/raven-aws-lambda,num_dependents_deps.dev:0 github.com/armooo/cloudprint, github.com/armooo/rtsptogo, @@ -267608,6 +273550,7 @@ github.com/armorjs/key-store,num_dependents_deps.dev:0 github.com/armors/armors-solidity,num_dependents_deps.dev:0 github.com/armory-io/arm,num_dependents_deps.dev:0 github.com/armory-io/kayentactl,num_dependents_deps.dev:0 +github.com/armory-io/spin-trigger-pipeline-action, github.com/armory-plugins/armory-crdcheck-plugin-releases,num_dependents_deps.dev:0 github.com/armory-plugins/armory-deployment-plugin-releases,num_dependents_deps.dev:0 github.com/armory-plugins/armory-observability-plugin-releases,num_dependents_deps.dev:0 @@ -267615,6 +273558,7 @@ github.com/armory-plugins/instance-registration-releases,num_dependents_deps.dev github.com/armory-plugins/pluginrepository,num_dependents_deps.dev:0 github.com/armory-plugins/policy-engine-releases,num_dependents_deps.dev:0 github.com/armory/armory-cli,num_dependents_deps.dev:0 +github.com/armory/cli-deploy-action, github.com/armory/dinghy,num_dependents_deps.dev:0 github.com/armory/docs,num_dependents_deps.dev:0 github.com/armory/go-yaml-tools,num_dependents_deps.dev:1 @@ -267622,6 +273566,7 @@ github.com/armory/plank,num_dependents_deps.dev:1 github.com/armory/spinnaker-operator,num_dependents_deps.dev:0 github.com/armory3d/armorpaint,criticality_score:0.480730 github.com/armory3d/armory,criticality_score:0.564810 +github.com/armory3d/armory_gh_actions, github.com/armory3d/zui,criticality_score:0.432770 github.com/armoucar/generator-bmklet,num_dependents_deps.dev:0 github.com/armpelionedge/devicedb,num_dependents_deps.dev:3 @@ -267680,6 +273625,7 @@ github.com/armycyberinstitute/cmgr,num_dependents_deps.dev:0 github.com/armyoftanks/lewk,num_dependents_deps.dev:0 github.com/armyoftanks/pinger,num_dependents_deps.dev:0 github.com/armyoftanks/weather,num_dependents_deps.dev:0 +github.com/arn-ob/do-kubectl-action, github.com/arn-the-long-beard/jwt-socket.io,num_dependents_deps.dev:0 github.com/arn4/LabTools, github.com/arn4v/feed-finder,num_dependents_deps.dev:0 @@ -267720,6 +273666,7 @@ github.com/arnarp/itils, github.com/arnars/tailwindcss-vw-flexbox-grid,num_dependents_deps.dev:0 github.com/arnarthor/bs-node-fetch,num_dependents_deps.dev:0 github.com/arnasjuskevicius/leetcode,num_dependents_deps.dev:0 +github.com/arnaskro/aws-cdk-v2-github-actions, github.com/arnaskro/external-dynamic-import,num_dependents_deps.dev:0 github.com/arnat-technologies/cenui,num_dependents_deps.dev:0 github.com/arnat-technologies/cz, @@ -267755,6 +273702,7 @@ github.com/arnaud-lb/imagesize.js,num_dependents_deps.dev:5 github.com/arnaud-lb/mock,num_dependents_deps.dev:0 github.com/arnaud-lb/php-memory-profiler,criticality_score:0.303070 github.com/arnaud-lb/php-rdkafka,criticality_score:0.526150 +github.com/arnaud-ritti/nr-monit, github.com/arnaud-xp/mirror-js,num_dependents_deps.dev:0 github.com/arnaud-zg/http-response-status,num_dependents_deps.dev:0 github.com/arnaud-zg/js-foursquare,num_dependents_deps.dev:0 @@ -267846,6 +273794,8 @@ github.com/arncet/react-viewmore,num_dependents_deps.dev:0 github.com/arncet/timestamp-utils,num_dependents_deps.dev:0 github.com/arndissler/deps-flatlist-webpack,num_dependents_deps.dev:0 github.com/arndissler/hoist-packages,num_dependents_deps.dev:0 +github.com/arndom/issue-stats-card, +github.com/arndom/octo-my-readme-workflow, github.com/arne-cl/abspath, github.com/arne-cl/grepurl, github.com/arne-cl/pypolibox, @@ -267922,11 +273872,13 @@ github.com/arnemart/stdioify,num_dependents_deps.dev:0 github.com/arnemolland/logomotive,num_dependents_deps.dev:0 github.com/arneronald/go-go-gopher,num_dependents_deps.dev:0 github.com/arneson/react-native-zss-rich-text-editor,num_dependents_deps.dev:0 +github.com/arnesor/gha-path-checker, github.com/arnesson/achromatic,num_dependents_deps.dev:0 github.com/arnesson/angular-cordova,num_dependents_deps.dev:0 github.com/arnesson/cordova-plugin-firebase,"criticality_score:0.451540,num_dependents_deps.dev:0" github.com/arnested/aula-assistant,num_dependents_deps.dev:0 github.com/arnested/dsupdate,num_dependents_deps.dev:0 +github.com/arnested/go-version-action, github.com/arnested/healthy,num_dependents_deps.dev:0 github.com/arnested/ldddns,num_dependents_deps.dev:0 github.com/arnested/ssh2iterm2,num_dependents_deps.dev:0 @@ -268162,6 +274114,7 @@ github.com/arodic/io-object,num_dependents_deps.dev:0 github.com/arodik/makestuff.js,num_dependents_deps.dev:0 github.com/arodik/mindful-timer,num_dependents_deps.dev:0 github.com/arodroz/arc_lib, +github.com/aroelo/sync_to_gcs, github.com/aroemen/njs-watch,num_dependents_deps.dev:0 github.com/arogg/generator-webpack-config,num_dependents_deps.dev:0 github.com/arogg/webpack-events,num_dependents_deps.dev:0 @@ -268234,6 +274187,7 @@ github.com/arondn2/loopback-disable-all-remote-methods-mixin,num_dependents_deps github.com/arondn2/loopback-socket,num_dependents_deps.dev:0 github.com/arondn2/loopback-visible-properties-mixin,num_dependents_deps.dev:0 github.com/aroneous/stream-consume,num_dependents_deps.dev:21122 +github.com/aronep6/action-functions-deploy, github.com/aronfelipe/yinyang-gen,num_dependents_deps.dev:0 github.com/aronhailu/ad-link-js,num_dependents_deps.dev:0 github.com/aronhoyer/minimux,num_dependents_deps.dev:0 @@ -268263,6 +274217,7 @@ github.com/aronwc/sclust, github.com/aronwc/twclassify, github.com/arood/vodkakit,num_dependents_deps.dev:0 github.com/arook/iws,num_dependents_deps.dev:0 +github.com/arook/netsuite-github-actions, github.com/aropixel/gdpr-password,num_dependents_deps.dev:0 github.com/arora-r/npm-consider,num_dependents_deps.dev:0 github.com/arorayash/rc-trigger-plus,num_dependents_deps.dev:0 @@ -268428,6 +274383,7 @@ github.com/arpit9295/vue-modal-promise,num_dependents_deps.dev:0 github.com/arpit9295/vue-resource-timeline,num_dependents_deps.dev:0 github.com/arpit9mittal/common-application-framework,num_dependents_deps.dev:0 github.com/arpitBhalla/api-to-readme,num_dependents_deps.dev:0 +github.com/arpitBhalla/monorepo-changelog, github.com/arpitBhalla/react-mui-auth-page,num_dependents_deps.dev:0 github.com/arpitansu/functiontime,num_dependents_deps.dev:0 github.com/arpitansu/reactjs-eventemitter,num_dependents_deps.dev:0 @@ -268458,6 +274414,7 @@ github.com/arpitjain-in/StackBarComponent,num_dependents_deps.dev:0 github.com/arpitmittaldev/react-images-carousel,num_dependents_deps.dev:0 github.com/arpitnarechania/d3-molecule,num_dependents_deps.dev:0 github.com/arpitnarechania/regexpy, +github.com/arpitremarkable/prod-env-variables, github.com/arpitsingla96/hopy, github.com/arpnetworking/arpnetworking-parent-pom,num_dependents_deps.dev:0 github.com/arpnetworking/build-resources,num_dependents_deps.dev:0 @@ -268946,6 +274903,7 @@ github.com/arslandogar/nextjs-boilerplate, github.com/arslanismail/golang---rest-api-dummy-setup,num_dependents_deps.dev:0 github.com/arslanismail/golang-sample-webapp,num_dependents_deps.dev:0 github.com/arslanismail/golang-test-versioning,num_dependents_deps.dev:0 +github.com/arslanjavaid1/aws-eb-deployment, github.com/arslanmughal99/angular-typeorm,num_dependents_deps.dev:0 github.com/arslanmughal99/erb-icons-gen,num_dependents_deps.dev:0 github.com/arslansajid/react-native-google-map-carousel,num_dependents_deps.dev:0 @@ -269052,6 +275010,7 @@ github.com/art-vasilyev/pkcs11tls,num_dependents_deps.dev:0 github.com/art-ws/db-evo,num_dependents_deps.dev:0 github.com/art-ws/ng-imports-checker,num_dependents_deps.dev:0 github.com/art-ws/pm2-gelf-json,num_dependents_deps.dev:0 +github.com/art049/mongodb-cluster-action, github.com/art049/odmantic, github.com/art07/stsv,num_dependents_deps.dev:0 github.com/art07/ys,num_dependents_deps.dev:0 @@ -269072,6 +275031,7 @@ github.com/artaic/galil,num_dependents_deps.dev:0 github.com/artakhak/web-file-system-client,num_dependents_deps.dev:0 github.com/artalar/coach-stm,num_dependents_deps.dev:0 github.com/artalar/flaxom,num_dependents_deps.dev:0 +github.com/artalar/gha-hashnode-publish, github.com/artalar/gitbook-plugin-accordion,num_dependents_deps.dev:0 github.com/artalar/pathon,num_dependents_deps.dev:0 github.com/artalar/react-router-deferred-route,num_dependents_deps.dev:0 @@ -269356,6 +275316,7 @@ github.com/artemeff/mincer-erl,num_dependents_deps.dev:0 github.com/artemeknyazev/cache,num_dependents_deps.dev:0 github.com/artemgafarov66/hoc-with-props,num_dependents_deps.dev:0 github.com/artemgurzhii/ember-cli-router-history,num_dependents_deps.dev:0 +github.com/artemharashchenia/simplecov-coverage-diff, github.com/artemhp/rocketweb,num_dependents_deps.dev:0 github.com/artemidas/hexagonal-http-api,num_dependents_deps.dev:0 github.com/artemides/cursogo,num_dependents_deps.dev:0 @@ -269373,6 +275334,7 @@ github.com/artemirq/react-localization-experiment, github.com/artemirq/zero-scripts,num_dependents_deps.dev:54 github.com/artemis-ag/i18n-js-plus,num_dependents_deps.dev:0 github.com/artemis-ag/mobx-async-store,num_dependents_deps.dev:0 +github.com/artemis-beta/setup-openmodelica, github.com/artemis-nerds/node-asbs-server, github.com/artemis-prime/axios-helper,num_dependents_deps.dev:2 github.com/artemis-prime/error-helper,num_dependents_deps.dev:0 @@ -269443,6 +275405,8 @@ github.com/artemnakhapetyan/acdc-loading,num_dependents_deps.dev:0 github.com/artemnakhapetyan/acdc-notifications,num_dependents_deps.dev:0 github.com/artemnih/immutable-rxjs,num_dependents_deps.dev:0 github.com/artemnih/ngx-event-service, +github.com/artemnovichkov/action-homebrew, +github.com/artemnovichkov/action-zem, github.com/artemnovichkov/zepcode,num_dependents_deps.dev:0 github.com/artemon87/toBase, github.com/artemoon20/npm-test-package,num_dependents_deps.dev:0 @@ -269683,6 +275647,7 @@ github.com/arthur-feral/reactplease,num_dependents_deps.dev:0 github.com/arthur-feral/statuspage-node,num_dependents_deps.dev:0 github.com/arthur-hav/GGUI, github.com/arthur-hav/levmatch, +github.com/arthur-jaouen/html2pdf-action, github.com/arthur-kv/sails-routes-swagger,num_dependents_deps.dev:0 github.com/arthur-rl/dcord-oauth,num_dependents_deps.dev:0 github.com/arthur-snake/snake-lib,num_dependents_deps.dev:0 @@ -269853,6 +275818,7 @@ github.com/arthuro555/pokemonlib, github.com/arthuroliveira/generator-now,num_dependents_deps.dev:0 github.com/arthuroliveira/grunt-servicenow,num_dependents_deps.dev:0 github.com/arthurpaivat/mergi,num_dependents_deps.dev:0 +github.com/arthurpalves/coherent-swift, github.com/arthurpaulino/miraiml, github.com/arthurpaulino/temprint, github.com/arthurpessa/ordpy, @@ -269877,6 +275843,7 @@ github.com/arthurtyukayev/use-keyboard-shortcut,num_dependents_deps.dev:0 github.com/arthurv89/captainhook,num_dependents_deps.dev:0 github.com/arthurvandijk/azure-web-event,num_dependents_deps.dev:0 github.com/arthurvandijk/azure-web-events, +github.com/arthurvanl/action-exec-ssh, github.com/arthurvasconcelos/vue-cbsc,num_dependents_deps.dev:0 github.com/arthurvasconcelos/vue-izitoast,num_dependents_deps.dev:0 github.com/arthurvaverko/ngx-fill-height,num_dependents_deps.dev:0 @@ -269950,6 +275917,7 @@ github.com/artichoke/artichoke,criticality_score:0.499360 github.com/artichoke/boba,num_dependents_deps.dev:0 github.com/artichoke/cactusref,num_dependents_deps.dev:0 github.com/artichoke/focaccia,num_dependents_deps.dev:0 +github.com/artichoke/generate_third_party, github.com/artichoke/intaglio,num_dependents_deps.dev:0 github.com/artichoke/logo,num_dependents_deps.dev:0 github.com/artichoke/rand_mt,num_dependents_deps.dev:0 @@ -269963,10 +275931,12 @@ github.com/articode/kolaz-bundle-winston,num_dependents_deps.dev:0 github.com/articodeltd/angular-cesium, github.com/articstudio/ASGrid,num_dependents_deps.dev:0 github.com/articstudio/js-bin,num_dependents_deps.dev:0 +github.com/articulate/actions-markdownlint, github.com/articulate/asyncios, github.com/articulate/authentic,num_dependents_deps.dev:0 github.com/articulate/authentic-rb,num_dependents_deps.dev:0 github.com/articulate/authoritah-js,num_dependents_deps.dev:0 +github.com/articulate/aws-eventbridge-action, github.com/articulate/capistrano-fastly,num_dependents_deps.dev:0 github.com/articulate/chromeless,num_dependents_deps.dev:0 github.com/articulate/consul-sync,num_dependents_deps.dev:0 @@ -270059,6 +276029,7 @@ github.com/artificial-page/io-type,num_dependents_deps.dev:0 github.com/artificial-page/util-types,num_dependents_deps.dev:0 github.com/artificial-vulnerability-tools/env,num_dependents_deps.dev:0 github.com/artificiala/java-bean-to-swagger-definition,num_dependents_deps.dev:0 +github.com/artificialbutter/gp-docker-action-shorter, github.com/artificialio/broccoli-more-css,num_dependents_deps.dev:0 github.com/artificialio/ember-cli-foundation-sass,num_dependents_deps.dev:0 github.com/artificialio/sails-hook-6to5,num_dependents_deps.dev:0 @@ -270093,6 +276064,7 @@ github.com/artiliusjoker/go-algorand-sdk,num_dependents_deps.dev:0 github.com/artillery/node-artillery-async,num_dependents_deps.dev:0 github.com/artillery/node-http-disk-cache,num_dependents_deps.dev:0 github.com/artillery/node-regtester,num_dependents_deps.dev:0 +github.com/artilleryio/action-cli, github.com/artilleryio/arrivals,num_dependents_deps.dev:66 github.com/artilleryio/artillery,"criticality_score:0.453530,num_dependents_deps.dev:12" github.com/artilleryio/minigun-core,num_dependents_deps.dev:0 @@ -270117,13 +276089,18 @@ github.com/artipie/nuget-adapter,num_dependents_deps.dev:0 github.com/artipie/ppom,num_dependents_deps.dev:0 github.com/artipie/pypi-adapter,num_dependents_deps.dev:0 github.com/artipie/rpm-adapter,num_dependents_deps.dev:0 +github.com/artipie/upload-action, github.com/artipie/vertx-server,num_dependents_deps.dev:0 github.com/artirigo/react-native-modalview,num_dependents_deps.dev:0 github.com/artirix/artirix_data_models-ams,num_dependents_deps.dev:0 github.com/artirix/logcabin, github.com/artis-auxilium/realm-orm,num_dependents_deps.dev:0 github.com/artis-mcrt/artistools, +github.com/artis3n/ansible_galaxy_collection, +github.com/artis3n/markdown-to-confluence, +github.com/artis3n/soc2-commit-signoff, github.com/artisan-roaster-scope/artisan,criticality_score:0.493650 +github.com/artisanal-actions/poetry-install, github.com/artisancloud/go-framework,num_dependents_deps.dev:0 github.com/artisancloud/go-libs,num_dependents_deps.dev:1 github.com/artisancloud/go-socialite,num_dependents_deps.dev:0 @@ -270196,6 +276173,7 @@ github.com/artivilla/progressive-punctuation-open,num_dependents_deps.dev:0 github.com/artivis/manif,criticality_score:0.387040 github.com/artiya4u/3xplus1,num_dependents_deps.dev:0 github.com/artiya4u/huntertray, +github.com/artiz/poll-endpoint, github.com/artizirk/python-axp209, github.com/artjHom00/insta-grabber,num_dependents_deps.dev:0 github.com/artjock/chow,num_dependents_deps.dev:0 @@ -270227,6 +276205,7 @@ github.com/artkravchenko/redux-persist-transform-filter-immutable,num_dependents github.com/artkravchenko/redux-persist-transform-immutable,num_dependents_deps.dev:0 github.com/artkravchenko/remotedev-serialize,num_dependents_deps.dev:0 github.com/artkravchenko/rudy-history,num_dependents_deps.dev:0 +github.com/artlaman/conventional-changelog-reader-action, github.com/artlife-solutions/log,num_dependents_deps.dev:0 github.com/artlife-solutions/micro,num_dependents_deps.dev:0 github.com/artlife-solutions/micro-job,num_dependents_deps.dev:0 @@ -270304,6 +276283,7 @@ github.com/artpi/Niedziele,num_dependents_deps.dev:0 github.com/artpi/Reactive-Compass,num_dependents_deps.dev:0 github.com/artpi/SmartPi,num_dependents_deps.dev:0 github.com/artpi/roam-research-private-api,num_dependents_deps.dev:0 +github.com/artplan1/brakeman-action, github.com/artpolikarpov/fotorama,"criticality_score:0.351190,num_dependents_deps.dev:0" github.com/artpolikarpov/fotorama-bower,num_dependents_deps.dev:0 github.com/artpolikarpov/grunt-gh-release,num_dependents_deps.dev:0 @@ -270412,6 +276392,7 @@ github.com/arttor/helmify,num_dependents_deps.dev:0 github.com/arttrak1/jsPDF,num_dependents_deps.dev:0 github.com/arttttt/ReflectAdapter,num_dependents_deps.dev:0 github.com/arttupii/SmartHome,num_dependents_deps.dev:0 +github.com/artturik/action-connect-ovpn, github.com/artu-hnrq/argcompile, github.com/artudi54/programs-integrator, github.com/artudi54/video_streamer, @@ -270505,6 +276486,7 @@ github.com/arturmuller/simple-test-server,num_dependents_deps.dev:0 github.com/arturmuller/stringcaster,num_dependents_deps.dev:0 github.com/arturo-ai/arturo-stac-api, github.com/arturo-enriquez/raspa, +github.com/arturo-ojeda/action-regex-match, github.com/arturo0911/golearningdatasets,num_dependents_deps.dev:0 github.com/arturo0911/gotraining,num_dependents_deps.dev:0 github.com/arturo0911/microserviceneuron,num_dependents_deps.dev:0 @@ -270675,6 +276657,7 @@ github.com/artzenevich/alpha-theme-jekyll,num_dependents_deps.dev:0 github.com/artzhookov/super-duck,num_dependents_deps.dev:0 github.com/artzstudio/meanify,num_dependents_deps.dev:0 github.com/aru-jo/pyleapy, +github.com/aru31/blog-publish-action, github.com/aruaru0/golang_myatcoder,num_dependents_deps.dev:0 github.com/aruba/clearpass-csv2api,num_dependents_deps.dev:0 github.com/aruba/pyaoscx, @@ -270732,6 +276715,7 @@ github.com/arun1729/cog, github.com/arun1801/new-relic-synthetics-go,num_dependents_deps.dev:0 github.com/arun2pratap/continuousLoading,num_dependents_deps.dev:0 github.com/arun2pratap/contniousLoading,num_dependents_deps.dev:0 +github.com/arun51191/custom-actions, github.com/arun6582/django-manage-reset-migrations, github.com/arun6582/reinit-migrations, github.com/arun9483/learnstorybook-design-system,num_dependents_deps.dev:0 @@ -270745,6 +276729,7 @@ github.com/arunahk/license-key-gen,num_dependents_deps.dev:0 github.com/arunahuja94/react-native-credit-card-input-view,num_dependents_deps.dev:0 github.com/arunahuja94/react-native-flip-card-plus,num_dependents_deps.dev:0 github.com/arunahuja94/react-native-swipe-gestures-plus,num_dependents_deps.dev:2 +github.com/arunalakmal/gitops-helm-value-update, github.com/arunanil03/frescotest,num_dependents_deps.dev:0 github.com/arunanshub/git-credential-netconf, github.com/arunanshub/pyflocker, @@ -270837,6 +276822,7 @@ github.com/arunpandian7/skywatch-ai, github.com/arunpariyar/golanglearning,num_dependents_deps.dev:0 github.com/arunpersaud/lektor-bibtex-support, github.com/arunponnusamy/cvlib, +github.com/arunpunaroor/jmeter-runner-action, github.com/arunraj1994/input-deep-search,num_dependents_deps.dev:0 github.com/arunrajkumar235/-jaya,num_dependents_deps.dev:0 github.com/arunrajkumar235/jaya-app,num_dependents_deps.dev:0 @@ -270870,6 +276856,7 @@ github.com/arunx2/golang-samples,num_dependents_deps.dev:0 github.com/aruokhai/c-org,num_dependents_deps.dev:0 github.com/arup-banerjee/ngx-draggable-grid,num_dependents_deps.dev:0 github.com/arup-banerjee/ngx-draggable-widget,num_dependents_deps.dev:0 +github.com/arup-group/action-notify-unused-branches, github.com/arupex/TreeIterate,num_dependents_deps.dev:0 github.com/arupex/arrrgs,num_dependents_deps.dev:0 github.com/arupex/arupex,num_dependents_deps.dev:0 @@ -271251,6 +277238,7 @@ github.com/arwidt/timereport,num_dependents_deps.dev:0 github.com/arwidt/to_rule_them_all.js,num_dependents_deps.dev:0 github.com/arwineap/concoursepy, github.com/arwn/jl,num_dependents_deps.dev:0 +github.com/arwwwind/kubectl-aws-eks, github.com/arwysyah/react-native-customize-selected-date-v2,num_dependents_deps.dev:0 github.com/arwysyah/react-native-image-carousel-slider,num_dependents_deps.dev:0 github.com/arwysyah/rn-inifinitScroll-load,num_dependents_deps.dev:0 @@ -271506,6 +277494,8 @@ github.com/asaarinen/nox-app-template,num_dependents_deps.dev:0 github.com/asaarinen/nox.js,num_dependents_deps.dev:0 github.com/asaarinen/qtree,num_dependents_deps.dev:0 github.com/asaarinen/s3-cache,num_dependents_deps.dev:0 +github.com/asaasdev/checkstyle-action, +github.com/asaasdev/codenarc-action, github.com/asab-se/yaml-reader,num_dependents_deps.dev:0 github.com/asabaylus/react-command-palette,num_dependents_deps.dev:0 github.com/asabaylus/react-pony,num_dependents_deps.dev:0 @@ -271536,6 +277526,8 @@ github.com/asadhazara/use-dom-event,num_dependents_deps.dev:0 github.com/asadhshujau/axios-model,num_dependents_deps.dev:0 github.com/asadhshujau/npm-package-practice,num_dependents_deps.dev:0 github.com/asadlive84/golangtutorial,num_dependents_deps.dev:0 +github.com/asadmansr/Firebase-Test-Lab-Action, +github.com/asadmansr/android-test-report-action, github.com/asadmoosvi/course-manager, github.com/asadmoosvi/pypi-search, github.com/asadnq/react-calendar-custom,num_dependents_deps.dev:0 @@ -271554,6 +277546,10 @@ github.com/asaf050/js-scanner-detection,num_dependents_deps.dev:0 github.com/asaf050/node-inkscape-promise,num_dependents_deps.dev:0 github.com/asaf050/node-pandoc-promise,num_dependents_deps.dev:0 github.com/asaf050/sequelize-metaable,num_dependents_deps.dev:0 +github.com/asafHalely/action-checkout, +github.com/asafHalely/copy-build-artifact, +github.com/asafHalely/enforce-pr-title-style-action, +github.com/asafHalely/immutable-file-action, github.com/asafamr/nd-grunt,num_dependents_deps.dev:0 github.com/asafamr/nd-node, github.com/asafari72/css-material-icons, @@ -271568,6 +277564,7 @@ github.com/asafdav/ng-flags,num_dependents_deps.dev:0 github.com/asafdav/ng-s3upload,num_dependents_deps.dev:0 github.com/asafdav/ng-scrollbar,num_dependents_deps.dev:0 github.com/asafg6/exif-reader,num_dependents_deps.dev:0 +github.com/asafmaoz1234/aws-lambda-update-jar-action, github.com/asafmor/tview,num_dependents_deps.dev:0 github.com/asafn-jfrog/jf-test-asafn,num_dependents_deps.dev:0 github.com/asafpr/RILseq, @@ -271685,6 +277682,7 @@ github.com/asanghi/fiscali,num_dependents_deps.dev:0 github.com/asangin/go-site,num_dependents_deps.dev:0 github.com/asanka-x/aws-lex-helpers,num_dependents_deps.dev:0 github.com/asannikov/jumper,num_dependents_deps.dev:0 +github.com/asannou/tfmermaid-action, github.com/asanoop24/ml, github.com/asanoryu/function_profile, github.com/asanrivas/vue-select, @@ -271704,6 +277702,7 @@ github.com/asapach/babel-plugin-transform-system-register,num_dependents_deps.de github.com/asapach/peerflix-server,num_dependents_deps.dev:0 github.com/asapach/stylelint-max-selectors,num_dependents_deps.dev:0 github.com/asapalexle/lodown,num_dependents_deps.dev:0 +github.com/asaplog/drop-old-releases, github.com/asappresearch/sru,criticality_score:0.396580 github.com/asapzacy/test_npm_package,num_dependents_deps.dev:0 github.com/asapzacy/uxscoreboard,num_dependents_deps.dev:0 @@ -271716,6 +277715,7 @@ github.com/asaritech/react-device-storage,num_dependents_deps.dev:0 github.com/asaritech/ukey1-jquery-sdk,num_dependents_deps.dev:0 github.com/asaritech/ukey1-nodejs-sdk,num_dependents_deps.dev:0 github.com/asaritech/ukey1-react-sdk,num_dependents_deps.dev:0 +github.com/asarium/clang-tidy-action, github.com/asarium/keepassxc-browser-cli,num_dependents_deps.dev:0 github.com/asarium/native-messaging-connector,num_dependents_deps.dev:0 github.com/asarkar/cassandra-unit-spring,num_dependents_deps.dev:0 @@ -271903,6 +277903,7 @@ github.com/aschampion/schemer,num_dependents_deps.dev:0 github.com/aschanMarcus/laravel-mix-webapp,num_dependents_deps.dev:0 github.com/aschaper/homebridge-airmega,num_dependents_deps.dev:0 github.com/aschaper/homebridge-sesame,num_dependents_deps.dev:0 +github.com/aschbacd/gitlint-action, github.com/asche910/superscanner,num_dependents_deps.dev:0 github.com/aschekatihin/mysql_schema_comparator,num_dependents_deps.dev:0 github.com/aschekatihin/mysql_schema_compare,num_dependents_deps.dev:0 @@ -271910,6 +277911,7 @@ github.com/ascheman/tomcat-lifecyclelistener,num_dependents_deps.dev:0 github.com/aschenmaker/fiber-health-check,num_dependents_deps.dev:0 github.com/aschenmaker/fiber-opentracing,num_dependents_deps.dev:0 github.com/aschenmaker/leetcode,num_dependents_deps.dev:0 +github.com/aschenmaker/mkdocs-deploy-tencentcos, github.com/aschenoni/angular-master-detail,num_dependents_deps.dev:0 github.com/aschenoni/angularjs-date-picker,num_dependents_deps.dev:0 github.com/aschenoni/flexy-react,num_dependents_deps.dev:0 @@ -272215,6 +278217,7 @@ github.com/aseem-hegshetye/signpdf, github.com/aseem2625/goalup-minify,num_dependents_deps.dev:0 github.com/aseemc/flipper-plugin-react-native-redux-debugger,num_dependents_deps.dev:0 github.com/aseemc/redux-middleware-flipper,num_dependents_deps.dev:0 +github.com/aseemchopra25/clojure-autodoc, github.com/aseemk/bases.js,num_dependents_deps.dev:12 github.com/aseemk/coffee-streamline,num_dependents_deps.dev:0 github.com/aseemk/express-alias,num_dependents_deps.dev:0 @@ -272279,6 +278282,7 @@ github.com/asergiychuk/koa-mongoose,num_dependents_deps.dev:0 github.com/aserhiychuk/pyreinforce, github.com/aserour/node-json-transform,num_dependents_deps.dev:0 github.com/aserto-demo/aserto-seed-auth0,num_dependents_deps.dev:0 +github.com/aserto-dev/aserto-build-action, github.com/aserto-dev/aserto-idp-seed,num_dependents_deps.dev:0 github.com/aserto-dev/aserto-python, github.com/aserto-dev/aserto-react, @@ -272290,7 +278294,9 @@ github.com/aserto-dev/clui,num_dependents_deps.dev:3 github.com/aserto-dev/express-jwt-aserto,num_dependents_deps.dev:0 github.com/aserto-dev/go-utils,num_dependents_deps.dev:0 github.com/aserto-dev/mage-loot,num_dependents_deps.dev:0 +github.com/aserto-dev/opa-build-action, github.com/aserto-dev/sver,num_dependents_deps.dev:0 +github.com/aserto-dev/sver-action, github.com/aserto-dev/ts-linting-configs,num_dependents_deps.dev:0 github.com/aservet1/fireoracle,num_dependents_deps.dev:0 github.com/aservet1/forestfireoracle,num_dependents_deps.dev:0 @@ -272306,6 +278312,7 @@ github.com/aseto2016/go-pkg,num_dependents_deps.dev:0 github.com/asetriza/golang-web-app,num_dependents_deps.dev:0 github.com/aseure/test,num_dependents_deps.dev:0 github.com/asevans48/JavaCelerySDK,num_dependents_deps.dev:0 +github.com/asexsela/shadowsocks-action, github.com/aseyboldt/fastq-rs,num_dependents_deps.dev:0 github.com/asfadmin/Discovery-PytestAutomation, github.com/asfadmin/Discovery-WKTUtils, @@ -272351,6 +278358,7 @@ github.com/asgardio/asgardio-js-oidc-sdk,num_dependents_deps.dev:0 github.com/asgardxf/RctDebugger,num_dependents_deps.dev:0 github.com/asgarli/angular-social-elements,num_dependents_deps.dev:0 github.com/asgaut/dumpils,num_dependents_deps.dev:0 +github.com/asgeirn/increment-semantic-version, github.com/asgeirrr/pgantomizer, github.com/asger-weirsoee/sway-smart-workspaces, github.com/asgerf/jsnap,num_dependents_deps.dev:0 @@ -272362,6 +278370,7 @@ github.com/asggo/random,num_dependents_deps.dev:0 github.com/asggo/structures,num_dependents_deps.dev:0 github.com/asghar07/jira-client,num_dependents_deps.dev:0 github.com/asgmax/dom-watcher,num_dependents_deps.dev:0 +github.com/asgoodasnu/agan-docker-compose-workflow, github.com/asgupta9/react-native-switch-button,num_dependents_deps.dev:0 github.com/ash-1999/fill_missing_values_ashwin, github.com/ash-1999/outliers_ashwin, @@ -272397,6 +278406,7 @@ github.com/ash0080/needle,num_dependents_deps.dev:0 github.com/ash0411-maker/a_tour_of_go,num_dependents_deps.dev:0 github.com/ash11tw/jsxlsx,num_dependents_deps.dev:0 github.com/ash11tw/jsxlsx_async, +github.com/ash2fast380/setup-pmd, github.com/ash2k/bazel-tools,num_dependents_deps.dev:0 github.com/ash2k/cobra,num_dependents_deps.dev:0 github.com/ash2k/eventemitter-ex,num_dependents_deps.dev:0 @@ -272693,6 +278703,7 @@ github.com/ashish-koshy/ng2-lean-pdf-viewer,num_dependents_deps.dev:0 github.com/ashish-ottosero/JSMatrix,num_dependents_deps.dev:0 github.com/ashish-pandey/HistoryExploiter, github.com/ashish-r/create-global-state-selector,num_dependents_deps.dev:0 +github.com/ashish-solankar/first-composite-action, github.com/ashish-thakur111/handle-my-pr,num_dependents_deps.dev:0 github.com/ashish041/find-cheap-hotel,num_dependents_deps.dev:0 github.com/ashish173/ng2-autosave-form,num_dependents_deps.dev:0 @@ -272704,6 +278715,7 @@ github.com/ashish979/string_permutation,num_dependents_deps.dev:0 github.com/ashisha/boat, github.com/ashisha7i/censorify,num_dependents_deps.dev:0 github.com/ashishb/adb-enhanced,criticality_score:0.398560 +github.com/ashishb/android-auto-translate, github.com/ashishb/android-security-awesome,criticality_score:0.420700 github.com/ashishb/androidtool, github.com/ashishb/similar-ethereum-address-finder,num_dependents_deps.dev:0 @@ -272733,6 +278745,7 @@ github.com/ashishkankal/discourse-embed,num_dependents_deps.dev:0 github.com/ashishkhuraishy/memstat,num_dependents_deps.dev:0 github.com/ashishkujoy/greetings,num_dependents_deps.dev:0 github.com/ashishkujoy/micronaut-kotest-wrapper,num_dependents_deps.dev:0 +github.com/ashishkujoy/render-deploy, github.com/ashishkumar-angularminds/custom-ng-editor,num_dependents_deps.dev:0 github.com/ashishkumar-angularminds/react-rbac,num_dependents_deps.dev:0 github.com/ashishkumar-xx/react360imgthree,num_dependents_deps.dev:0 @@ -272790,6 +278803,7 @@ github.com/ashkan18/journal, github.com/ashkanRmk/awesome-persian-podcasts,criticality_score:0.331210 github.com/ashkang/jarssistant,num_dependents_deps.dev:0 github.com/ashkanjj/go-websitechangenotifier,num_dependents_deps.dev:0 +github.com/ashkantaravati/NuxtToGithubPages, github.com/ashkarin/ndpatch, github.com/ashkarin/pyellipsoid, github.com/ashkarin/rawimage, @@ -272800,6 +278814,7 @@ github.com/ashkiani/create-file-manager-app,num_dependents_deps.dev:0 github.com/ashkiani/mysql-sync-query,num_dependents_deps.dev:0 github.com/ashkue/aws-default-cleaner, github.com/ashkulz/NppFTP,criticality_score:0.396440 +github.com/ashkumar-wtc/setup-pmd, github.com/ashkyd/amp-iframe-resize,num_dependents_deps.dev:0 github.com/ashkyd/msrand,num_dependents_deps.dev:0 github.com/ashkyd/proofer,num_dependents_deps.dev:0 @@ -272814,6 +278829,10 @@ github.com/ashler2/AJ-Utils,num_dependents_deps.dev:0 github.com/ashleslaughs/lujan-js-footer,num_dependents_deps.dev:0 github.com/ashley-hunter/module-search,num_dependents_deps.dev:0 github.com/ashley-hunter/ng-heroicons,num_dependents_deps.dev:0 +github.com/ashley-taylor/json-to-cloudformation-options-action, +github.com/ashley-taylor/junit-report-annotations-action, +github.com/ashley-taylor/read-json-property-action, +github.com/ashley-taylor/regex-property-action, github.com/ashleyIPC/hibc, github.com/ashleybaldock/entropy-ui,num_dependents_deps.dev:0 github.com/ashleyblackmore/rot13-cipher, @@ -273004,6 +279023,7 @@ github.com/ashramwen/kii-gateway-agent, github.com/ashramwen/utility-helper,num_dependents_deps.dev:0 github.com/ashrfhassan/configuration,num_dependents_deps.dev:0 github.com/ashrfhassan/configuration-env, +github.com/ashrielbrian/wandb-action, github.com/ashrithks/featurecli, github.com/ashrithks/react-native-dynamic-font,num_dependents_deps.dev:0 github.com/ashrithks/react-native-local-mongo-db,num_dependents_deps.dev:0 @@ -273120,24 +279140,30 @@ github.com/ashutoshbw314/headless-calendar, github.com/ashutoshc8101/helloworld, github.com/ashutoshdtu/eazyserver, github.com/ashutoshdtu/network-analyzer, +github.com/ashutoshgngwr/android-translations, github.com/ashutoshgngwr/noice,criticality_score:0.455370 github.com/ashutoshgngwr/validate-fastlane-supply-metadata,num_dependents_deps.dev:0 github.com/ashutoshgt/leetcode,num_dependents_deps.dev:0 +github.com/ashutoshkrris/fetch-hashnode-posts, +github.com/ashutoshkrris/random-advice-workflow, github.com/ashutoshkumarjha/usgsm2m, github.com/ashutoshkumr/python-hashver, github.com/ashutoshpith/sias, github.com/ashutoshshubam/CanvasToImage,num_dependents_deps.dev:0 github.com/ashutoshshubam/reactjs-pdf-reader-custom,num_dependents_deps.dev:0 github.com/ashutoshsr/matdatetime,num_dependents_deps.dev:0 +github.com/ashutoshvarma/action-cmake-build, github.com/ashutoshvarma/as-bignum,num_dependents_deps.dev:0 github.com/ashutoshvarma/constuneval,num_dependents_deps.dev:0 github.com/ashutoshvarma/ggsipu_result, github.com/ashutoshvarma/pyxpdf, github.com/ashutoshvarma/pyxpdf_data, +github.com/ashutoshvarma/setup-ninja, github.com/ashutoshvarma/tslogs, github.com/ashutoshyadav/LogoCreator, github.com/ashutshkumr/openapigen,num_dependents_deps.dev:0 github.com/ashutshkumr/pytgen, +github.com/ashuvssut/generatePdf-GHA, github.com/ashvin-godbole/colon-lang,num_dependents_deps.dev:0 github.com/ashvin-godbole/sitefl,num_dependents_deps.dev:0 github.com/ashvin27/react-datatable,num_dependents_deps.dev:2 @@ -273626,6 +279652,8 @@ github.com/askyourkode/deploy-to-heroku, github.com/askyourkode/print-hello-world, github.com/askz/lp_monitor, github.com/asl-sl/instVirt, +github.com/aslafy-z/conventional-pr-title-action, +github.com/aslafy-z/freemobile-sms-action, github.com/aslafy-z/gulp-feed,num_dependents_deps.dev:0 github.com/aslafy-z/insertion-index,num_dependents_deps.dev:0 github.com/aslafy-z/json-schema-editor,num_dependents_deps.dev:0 @@ -273646,6 +279674,7 @@ github.com/aslakoffi/chatappgo,num_dependents_deps.dev:0 github.com/aslam2368/angular-6-datatable,num_dependents_deps.dev:0 github.com/aslam7/graphqlcache,num_dependents_deps.dev:0 github.com/aslamanver/io-session-handler,num_dependents_deps.dev:0 +github.com/aslamanver/react-native-docker, github.com/aslamanver/zssh, github.com/aslamcode/mux-router,num_dependents_deps.dev:0 github.com/aslamcode/super-session,num_dependents_deps.dev:0 @@ -273753,6 +279782,7 @@ github.com/aslinwang/swagger-stats-ext,num_dependents_deps.dev:0 github.com/aslinwang/treedir,num_dependents_deps.dev:0 github.com/aslinwang/xdeploy,num_dependents_deps.dev:0 github.com/asliphsu/iotwebserrver,num_dependents_deps.dev:0 +github.com/aslisabanci/algorithmia_github_issue_hook, github.com/asllop/tref,num_dependents_deps.dev:0 github.com/aslogd/ts-bouncer,num_dependents_deps.dev:0 github.com/aslong/generator-node-cafe,num_dependents_deps.dev:0 @@ -273843,6 +279873,7 @@ github.com/asmeurer/prefsync, github.com/asmeurer/pytest-flakes, github.com/asmexcaliburwoods/pylibsampleproject, github.com/asmexcaliburwoods/pywebflowerlib, +github.com/asmfnk/my-github-project-automation, github.com/asmirnou/watsor, github.com/asmith-ivedix/npm-security,num_dependents_deps.dev:0 github.com/asmith26/Vose-Alias-Method, @@ -273856,6 +279887,7 @@ github.com/asml-lang/rsm-node, github.com/asmmiguel/libythonpro, github.com/asmoaesl/maid,num_dependents_deps.dev:0 github.com/asmoaesl/rsc,num_dependents_deps.dev:0 +github.com/asmodat/rummelsnuff, github.com/asmodehn/filefinder2, github.com/asmodehn/pyros, github.com/asmodehn/pyros-common, @@ -273991,6 +280023,7 @@ github.com/asonnenschein/technical-assessment-golang,num_dependents_deps.dev:0 github.com/asonnino/amac, github.com/asonnino/bls, github.com/asonnino/coconut, +github.com/asonnleitner/kubectl, github.com/asoorm/proxy-wasm,num_dependents_deps.dev:0 github.com/asoosaialexander/insurance-react-components, github.com/asopinka/bolt-oauth,num_dependents_deps.dev:0 @@ -274102,12 +280135,15 @@ github.com/aspect-apps/redux-persist-machine-async-storage,num_dependents_deps.d github.com/aspect-apps/redux-persist-machine-local-storage,num_dependents_deps.dev:0 github.com/aspect-apps/url-with-query-params,num_dependents_deps.dev:0 github.com/aspect-apps/use-redux-effect,num_dependents_deps.dev:0 +github.com/aspect-build/workflows-action, github.com/aspectiscool/discord-oauth,num_dependents_deps.dev:0 github.com/aspecto-io/aspecto-cli, +github.com/aspecto-io/enable-pr-automerge-action, github.com/aspecto-io/genson-js, github.com/aspecto-io/malabi,num_dependents_deps.dev:0 github.com/aspecto-io/opentelemetry-ext-js,num_dependents_deps.dev:102 github.com/aspecto-io/sns-sqs-big-payload,num_dependents_deps.dev:0 +github.com/aspecto-io/yarn-github-package, github.com/aspectran/aspectran,num_dependents_deps.dev:2182 github.com/aspectron/datapoints-nodejs,num_dependents_deps.dev:0 github.com/aspectron/emanator,num_dependents_deps.dev:0 @@ -274197,6 +280233,7 @@ github.com/aspenmesh/istio-vet,num_dependents_deps.dev:1 github.com/aspera-non-spernit/cyrconv,num_dependents_deps.dev:0 github.com/aspera-non-spernit/orbclient_window_shortcuts,num_dependents_deps.dev:0 github.com/aspera-project/aspera-isa, +github.com/asperan/setup-gitbox, github.com/asperous/require-python-3, github.com/asphalt-framework/asphalt, github.com/asphalt-framework/asphalt-exceptions, @@ -274252,6 +280289,7 @@ github.com/aspirationpartners/jwt-middleware-go,num_dependents_deps.dev:0 github.com/aspire-software/aspire-datatable,num_dependents_deps.dev:0 github.com/aspirewit/hexo-tag-easy-charts,num_dependents_deps.dev:0 github.com/aspirin798/golang_learning,num_dependents_deps.dev:0 +github.com/aspiringastro/nbaction, github.com/aspirisen/lens-flow,num_dependents_deps.dev:0 github.com/aspirity-ru/generate-data-swagger,num_dependents_deps.dev:0 github.com/aspirity-ru/grapes,num_dependents_deps.dev:0 @@ -274401,6 +280439,7 @@ github.com/assafushy/docx-openxml,num_dependents_deps.dev:0 github.com/assalh121/TestingRepo,num_dependents_deps.dev:0 github.com/assapir/ablog, github.com/assapir/yahf, +github.com/assassin128/notify-microsoft-teams, github.com/assassinor/wxacode,num_dependents_deps.dev:0 github.com/assaultcube/AC,criticality_score:0.390250 github.com/assay-it/blueprint-continuous-quality,num_dependents_deps.dev:0 @@ -274763,6 +280802,7 @@ github.com/assurrussa/largridview,num_dependents_deps.dev:0 github.com/asswclw/finds-api-proxy,num_dependents_deps.dev:0 github.com/asswclw/finds-signature,num_dependents_deps.dev:0 github.com/assyme/bundleit, +github.com/ast-grep/action, github.com/ast-ral/libkrypton,num_dependents_deps.dev:0 github.com/ast-ral/libxenon,num_dependents_deps.dev:0 github.com/ast/gst-make, @@ -274801,12 +280841,14 @@ github.com/astanecki/cordova-plugin-google-ads,num_dependents_deps.dev:0 github.com/astanin/python-tabulate,criticality_score:0.393360 github.com/astanishevskyi/http-server,num_dependents_deps.dev:0 github.com/astanishevskyi/tcp-client-server,num_dependents_deps.dev:0 +github.com/astappiev/docker-compose-remote-action, github.com/astappiev/rollup-plugin-scss,num_dependents_deps.dev:0 github.com/astar-club/astar-devopstool-python, github.com/astares-ojo/astares-ojo,num_dependents_deps.dev:0 github.com/astariul/docution, github.com/astariul/pytere, github.com/astariul/swole, +github.com/astarte-platform/astarte-cluster-action, github.com/astarte-platform/astarte-device-sdk-go,num_dependents_deps.dev:0 github.com/astarte-platform/astarte-device-sdk-java,num_dependents_deps.dev:0 github.com/astarte-platform/astarte-device-sdk-python, @@ -275128,6 +281170,7 @@ github.com/astro-pi/astro-pi-hat, github.com/astro/bittorrent-tracker,num_dependents_deps.dev:0 github.com/astro/dat-elasticsearch-upload,num_dependents_deps.dev:0 github.com/astro/dat-osm-import,num_dependents_deps.dev:0 +github.com/astro/deadnix-action, github.com/astro/em-http-request,num_dependents_deps.dev:0 github.com/astro/embedded-nrf24l01,num_dependents_deps.dev:0 github.com/astro/lazy_bencoding,num_dependents_deps.dev:0 @@ -275279,6 +281322,7 @@ github.com/astronomer/airflow-provider-kafka, github.com/astronomer/astro-cli,num_dependents_deps.dev:0 github.com/astronomer/astronomer,criticality_score:0.547420 github.com/astronomer/astronomer-providers, +github.com/astronomer/deploy-action, github.com/astronomer/eslint-config-astro,num_dependents_deps.dev:0 github.com/astronomer/spectra,num_dependents_deps.dev:0 github.com/astronomerio/analytics-android,num_dependents_deps.dev:0 @@ -275303,6 +281347,7 @@ github.com/astronomizedev/regexpkg,num_dependents_deps.dev:0 github.com/astronomizedev/vortexgl,num_dependents_deps.dev:0 github.com/astronomy-commons/adc-streaming, github.com/astronomy-commons/genesis-client, +github.com/astronomyf/expo-apple-2fa, github.com/astronomyk/Pyckles, github.com/astronomyk/ScopeSim, github.com/astronomyk/ScopeSim_Templates, @@ -275311,6 +281356,7 @@ github.com/astronouth7303/gpotato, github.com/astronouth7303/xontrib-avox, github.com/astronouth7303/xontrib-schedule, github.com/astronouth7303/xontrib-z, +github.com/astronuts-app/astronuts-code-quality-action, github.com/astronz/mailru-api-node,num_dependents_deps.dev:0 github.com/astronz/ok.ru,num_dependents_deps.dev:0 github.com/astroparam/ceres,num_dependents_deps.dev:0 @@ -275470,6 +281516,7 @@ github.com/asura-pro/indigo-api,num_dependents_deps.dev:0 github.com/asura-pro/pea,num_dependents_deps.dev:0 github.com/asurabhi/namespace-css-webpack-loader,num_dependents_deps.dev:0 github.com/asurance/dragonbones-dom, +github.com/asurcodes/amp-optimizer-action, github.com/asurinov/resumable,num_dependents_deps.dev:0 github.com/asurraa/pm2-status-tele-bot,num_dependents_deps.dev:0 github.com/asurraa/sura-ui,num_dependents_deps.dev:0 @@ -275480,6 +281527,7 @@ github.com/asushugo/go-wxext,num_dependents_deps.dev:0 github.com/asusikov/yabeda-statsd,num_dependents_deps.dev:0 github.com/asuslennikov/mvvm,num_dependents_deps.dev:0 github.com/asustinstudios/gogger,num_dependents_deps.dev:0 +github.com/asustor-contrib/ga-package-asustor-app, github.com/asutherland/ni-controllers-lib, github.com/asutherland/node-traktor-f1,num_dependents_deps.dev:0 github.com/asutorufa/yuhaiin,num_dependents_deps.dev:0 @@ -275493,6 +281541,8 @@ github.com/asvae/executors,num_dependents_deps.dev:0 github.com/asvae/utility-classes,num_dependents_deps.dev:0 github.com/asvae/vue-component-tree,num_dependents_deps.dev:0 github.com/asvae/vue-epic-bus,num_dependents_deps.dev:0 +github.com/asvataa/issue-approvals, +github.com/asvataa/telegram-notifier, github.com/asvbpreaubv/orthanc-drop,num_dependents_deps.dev:0 github.com/asvcode/fast_gui, github.com/asvd/dragscroll,num_dependents_deps.dev:0 @@ -275699,6 +281749,7 @@ github.com/asyncapi/generator-filters,num_dependents_deps.dev:2 github.com/asyncapi/generator-hooks,num_dependents_deps.dev:0 github.com/asyncapi/generator-model-sdk,num_dependents_deps.dev:0 github.com/asyncapi/generator-react-sdk,num_dependents_deps.dev:4 +github.com/asyncapi/github-action-for-generator, github.com/asyncapi/glee,num_dependents_deps.dev:0 github.com/asyncapi/html-template,num_dependents_deps.dev:0 github.com/asyncapi/jasyncapi,num_dependents_deps.dev:0 @@ -275805,11 +281856,16 @@ github.com/at-point/net-http-ntlm,num_dependents_deps.dev:0 github.com/at-scale/mock-react-components,num_dependents_deps.dev:0 github.com/at-scale/mock-react-redux-connected-components,num_dependents_deps.dev:0 github.com/at-ui/at-ui,num_dependents_deps.dev:0 +github.com/at-wat/assets-sync-action, +github.com/at-wat/bloom-release-action, +github.com/at-wat/catkin-release-action, github.com/at-wat/eagle2svg, github.com/at-wat/ebml-go,num_dependents_deps.dev:6 github.com/at-wat/gh-pr-comment,num_dependents_deps.dev:0 +github.com/at-wat/go-sum-fix-action, github.com/at-wat/gobpf,num_dependents_deps.dev:0 github.com/at-wat/mqtt-go,num_dependents_deps.dev:0 +github.com/at-wat/setup-gh-pr-comment, github.com/at-wat/terraform-provider-ucodecov,num_dependents_deps.dev:0 github.com/at0g/backbone-nested-model,num_dependents_deps.dev:0 github.com/at0g/gulp-render-nunjucks,num_dependents_deps.dev:0 @@ -275837,6 +281893,7 @@ github.com/atJiangBei/jscli,num_dependents_deps.dev:0 github.com/atJiangBei/small-swiper,num_dependents_deps.dev:0 github.com/atJiangBei/solar-vue,num_dependents_deps.dev:0 github.com/atJiangBei/ui,num_dependents_deps.dev:0 +github.com/atRobertoFlores/gae_deploy_action, github.com/atSCM/atscm,num_dependents_deps.dev:0 github.com/atSCM/atscm-cli,num_dependents_deps.dev:0 github.com/atSCM/esdoc-sucrase-plugin,num_dependents_deps.dev:0 @@ -275911,6 +281968,7 @@ github.com/atalaya-io/vesper,num_dependents_deps.dev:0 github.com/atalaydenknalbant/Guess_Number, github.com/atalaydev/sshb, github.com/ataleek/ataleek-cli, +github.com/atalent-labs/star-engagement-action, github.com/atalia/6.824,num_dependents_deps.dev:0 github.com/atalw/passport-youtube-v3-playlists,num_dependents_deps.dev:0 github.com/atam84/dockerinterfaces, @@ -276024,6 +282082,7 @@ github.com/atayahmet/sec-to-format,num_dependents_deps.dev:0 github.com/ataylor284/groovy-crypto-extensions,num_dependents_deps.dev:0 github.com/ataylor284/javastream-extras,num_dependents_deps.dev:0 github.com/ataylor32/django-adminlogentries, +github.com/ataylorme/eslint-annotate-action, github.com/atazitinov/webfonts-generator,num_dependents_deps.dev:0 github.com/atb-as/cleos,num_dependents_deps.dev:0 github.com/atb-as/kindly,num_dependents_deps.dev:0 @@ -276150,6 +282209,7 @@ github.com/ateev/csv-to-firebase,num_dependents_deps.dev:0 github.com/ateev/maeve,num_dependents_deps.dev:11 github.com/ateev/react-code-prettify,num_dependents_deps.dev:0 github.com/ateev/react-native-receive-sharing-intent,num_dependents_deps.dev:0 +github.com/atefahmed/Perfai-Atefahmed-Action, github.com/ateffal/pop_projection, github.com/atefth/generator-angular-laravel-app,num_dependents_deps.dev:0 github.com/atefth/ng-simple,num_dependents_deps.dev:0 @@ -276281,6 +282341,7 @@ github.com/atgu/ukbb_pan_ancestry, github.com/atguigu01/Shopping,num_dependents_deps.dev:0 github.com/ath88/smacker,num_dependents_deps.dev:0 github.com/athackst/mkdocs-simple-plugin, +github.com/athackst/publish-release-draft, github.com/athaeryn/evented-google-map,num_dependents_deps.dev:0 github.com/athaeryn/farfetched,num_dependents_deps.dev:0 github.com/athaeryn/otolith,num_dependents_deps.dev:0 @@ -276330,6 +282391,7 @@ github.com/athenaturek/lodown,num_dependents_deps.dev:0 github.com/athenian/names-matcher, github.com/athenianco/cloud-common,num_dependents_deps.dev:0 github.com/athenianco/morcilla, +github.com/athenianco/no-confusion-action, github.com/athensholloway/firstdata-global-gateway,num_dependents_deps.dev:0 github.com/athensresearch/athens,criticality_score:0.373280 github.com/athento/mastertables, @@ -276421,6 +282483,8 @@ github.com/athul/jiofi-cli, github.com/athul/kanakkapilla,num_dependents_deps.dev:0 github.com/athul/pwcli,num_dependents_deps.dev:0 github.com/athul/shelby,num_dependents_deps.dev:0 +github.com/athul/statusoli, +github.com/athul/telewire, github.com/athul/waka-readme,criticality_score:0.396520 github.com/athulmurali/react-native-pin-view,num_dependents_deps.dev:0 github.com/athulpg007/AMAT, @@ -276465,6 +282529,7 @@ github.com/atif-hassan/Regression_ReSampling, github.com/atif-hassan/manual_spellchecker, github.com/atif-konasl/eth-research,num_dependents_deps.dev:0 github.com/atif-konasl/pragmatic-knowledge,num_dependents_deps.dev:0 +github.com/atifazeez77/Whatsapp_Push_Notify, github.com/atifaziz/NCrontab,criticality_score:0.351240 github.com/atifceylan/main-iframe,num_dependents_deps.dev:0 github.com/atifcppprogrammer/yts-commander,num_dependents_deps.dev:0 @@ -276480,6 +282545,7 @@ github.com/atikking/folder,num_dependents_deps.dev:0 github.com/atiksoftware/react-native-cached-image-viewer,num_dependents_deps.dev:0 github.com/atiksoftware/vue-amiral-imagelist,num_dependents_deps.dev:0 github.com/atikul99/minibot, +github.com/atikur-rabbi/salesforce-ci-action, github.com/atiladalan/libpythonpro, github.com/atilafassina/blogium,num_dependents_deps.dev:0 github.com/atilafassina/netlify-lambda-ts,num_dependents_deps.dev:0 @@ -276523,6 +282589,7 @@ github.com/atirip/ptemplayed,num_dependents_deps.dev:0 github.com/atirip/rectangle,num_dependents_deps.dev:0 github.com/atirip/virtual-layout,num_dependents_deps.dev:0 github.com/atiris/gomshal,num_dependents_deps.dev:0 +github.com/atirnayab/test-ci-cd, github.com/atiro/ipyiiif, github.com/atis--/imsi-grok,num_dependents_deps.dev:0 github.com/atis--/mccmnc.json,num_dependents_deps.dev:0 @@ -276559,6 +282626,7 @@ github.com/atk14/UnobfuscateJs,num_dependents_deps.dev:0 github.com/atk4/data,criticality_score:0.532750 github.com/atk4/ui,criticality_score:0.569570 github.com/atkachyshyn/streamer-event-viewer,num_dependents_deps.dev:0 +github.com/atkaper/yamllint-action, github.com/atkawa7/httpsnippet,num_dependents_deps.dev:0 github.com/atkawa7/react-bootstrap-date-picker,num_dependents_deps.dev:0 github.com/atkinchris/modular-adal-angular, @@ -276592,6 +282660,7 @@ github.com/atlanteem/xlsx_importer,num_dependents_deps.dev:0 github.com/atlanteh/israeli-id-validator,num_dependents_deps.dev:0 github.com/atlanteh/react-native-slot-machine,num_dependents_deps.dev:0 github.com/atlantis-atis/atlantis,num_dependents_deps.dev:0 +github.com/atlantis-devs/dependabump, github.com/atlantis26/myittechnology,num_dependents_deps.dev:0 github.com/atlantishealthcare/aws-serverless-retry,num_dependents_deps.dev:0 github.com/atlantishealthcare/swagger-model-validator,num_dependents_deps.dev:14 @@ -276686,6 +282755,13 @@ github.com/atlassian/commonmark-java,"Google,num_dependents_deps.dev:983" github.com/atlassian/cz-lerna-changelog,num_dependents_deps.dev:6 github.com/atlassian/escalator,"criticality_score:0.334200,num_dependents_deps.dev:0" github.com/atlassian/extract-react-types,num_dependents_deps.dev:250 +github.com/atlassian/gajira-cli, +github.com/atlassian/gajira-comment, +github.com/atlassian/gajira-create, +github.com/atlassian/gajira-find-issue-key, +github.com/atlassian/gajira-login, +github.com/atlassian/gajira-todo, +github.com/atlassian/gajira-transition, github.com/atlassian/go-sentry-api,num_dependents_deps.dev:0 github.com/atlassian/gostatsd,"criticality_score:0.400780,num_dependents_deps.dev:0" github.com/atlassian/gremlins.js,num_dependents_deps.dev:0 @@ -276767,7 +282843,10 @@ github.com/atlewee/node-red-contrib-knx-easy,num_dependents_deps.dev:0 github.com/atlewee/node-red-contrib-sacn,num_dependents_deps.dev:0 github.com/atliq/react-native-starter,num_dependents_deps.dev:0 github.com/atlj/react-native-lightning-modal,num_dependents_deps.dev:0 +github.com/atlowChemi/testim-junit-reporter, github.com/atls/uikit, +github.com/atluu315/Katalon_Studio_Github_Action, +github.com/atlwendy/retrieve-commit-messages-from-pr, github.com/atm-bankomat/git-branch-to-npm-tag,num_dependents_deps.dev:16 github.com/atm-code/tailwindcss-border-sketch,num_dependents_deps.dev:0 github.com/atma-inc/cordova-plugin-localization-strings, @@ -276960,6 +283039,7 @@ github.com/atom-moyer/stapler, github.com/atom-ocaml/tree-sitter-dune,num_dependents_deps.dev:0 github.com/atom-ocaml/tree-sitter-ocamllex, github.com/atom-platform/ngx-charts-web,num_dependents_deps.dev:0 +github.com/atom-tr/apps-script-sync, github.com/atom-xiaogoubi/atom-vue-test,num_dependents_deps.dev:0 github.com/atom/apm,"criticality_score:0.589010,num_dependents_deps.dev:0" github.com/atom/asar,num_dependents_deps.dev:128 @@ -277437,6 +283517,7 @@ github.com/atomita/xatto-route,num_dependents_deps.dev:0 github.com/atomita/xatto-some,num_dependents_deps.dev:0 github.com/atomiteam/json-inline-mapper,num_dependents_deps.dev:0 github.com/atomix-team/actix-web-prometheus,num_dependents_deps.dev:0 +github.com/atomix-team/linear-action, github.com/atomix/api,num_dependents_deps.dev:32 github.com/atomix/atomix,"criticality_score:0.451920,num_dependents_deps.dev:3000" github.com/atomix/atomix-api,num_dependents_deps.dev:8 @@ -277554,6 +283635,8 @@ github.com/atorstling/intellij-annotations-instrumenter-maven-plugin,num_depende github.com/atos-digital-id/paprika,num_dependents_deps.dev:0 github.com/atos-ebs/http-proxy-noCrash,num_dependents_deps.dev:0 github.com/atos-ebs/node-windows, +github.com/atosinu/gitartwork, +github.com/atosinu/push-action, github.com/atostudios/sample-population,num_dependents_deps.dev:0 github.com/atosystem/midi2Tiles, github.com/atoti/atoti,num_dependents_deps.dev:0 @@ -277604,6 +283687,7 @@ github.com/atrackt/atrackt,num_dependents_deps.dev:0 github.com/atraders/fit-tracker, github.com/atraders/temp-later, github.com/atraides/paho-mqtt-stubs, +github.com/atrakic/helm-multi-deploy, github.com/atranitell/TQ, github.com/atranitell/TensorKit, github.com/atranitell/TensorWrapper, @@ -277741,6 +283825,7 @@ github.com/atsid/mongoose-organizer,num_dependents_deps.dev:0 github.com/atsid/react-calendar-render,num_dependents_deps.dev:0 github.com/atsid/schematic-js,num_dependents_deps.dev:0 github.com/atsid/smithy-js,num_dependents_deps.dev:0 +github.com/atsign-company/certinfo-action, github.com/atsikov/console-to-terminal,num_dependents_deps.dev:0 github.com/atsikov/jest-fake-timers,num_dependents_deps.dev:0 github.com/atsikov/shrink-yarn-lock,num_dependents_deps.dev:0 @@ -277799,6 +283884,7 @@ github.com/atsushieno/ktmidi,num_dependents_deps.dev:0 github.com/atsushieno/ktmidi-jvm-desktop,num_dependents_deps.dev:0 github.com/atsushieno/mugene-ng,num_dependents_deps.dev:0 github.com/atsushieno/rtmidi-jna,num_dependents_deps.dev:0 +github.com/atsushii/github-issue-to-jira, github.com/atsutopia/vue-swipeable-bottom-sheet,num_dependents_deps.dev:0 github.com/atsuya/done-criteria,num_dependents_deps.dev:0 github.com/atsuya/parallel-mocha,num_dependents_deps.dev:0 @@ -277900,6 +283986,8 @@ github.com/attester/virtualbox-soap,num_dependents_deps.dev:2 github.com/attevaltonen/drf-crud-proxy, github.com/attfarhan/libfarhan, github.com/attfarhan/testfarhan, +github.com/atthaboon/github-openvpn-connect-action, +github.com/atthaboon/ovpn3-connect-action, github.com/atthavit/myblog,num_dependents_deps.dev:0 github.com/attheapplab/connector-go,num_dependents_deps.dev:0 github.com/attheapplab/stdouter-go,num_dependents_deps.dev:0 @@ -278065,7 +284153,9 @@ github.com/attzonko/mmpy_bot, github.com/atu4403/adash, github.com/atu4403/env-paths, github.com/atu4403/moncoll2, +github.com/atu4403/poetry-setup-multi-platform, github.com/atu4403/remind_task, +github.com/atu4403/setup-rye-multiOS, github.com/atu4403/timeit2, github.com/atuchak/django-cspreport, github.com/atuchak/pytest-django-cache-xdist, @@ -278145,7 +284235,9 @@ github.com/atvilelas/fetcher.js,num_dependents_deps.dev:0 github.com/atvise/create-atvise-app, github.com/atw1020/sente, github.com/atwalsh/kac, +github.com/atwalsh/pipfile-diff, github.com/atwayne/easy-mock,num_dependents_deps.dev:0 +github.com/atwayne/msxml4-github-action, github.com/atwayne/rc-dropdown-ext,num_dependents_deps.dev:0 github.com/atwayne/sneezy,num_dependents_deps.dev:0 github.com/atweel/diagnostics,num_dependents_deps.dev:0 @@ -278175,7 +284267,9 @@ github.com/atyenoria/janus-webrtc-gateway-docker,criticality_score:0.351330 github.com/atyenoria/react-native-action-cable-add-cookie,num_dependents_deps.dev:0 github.com/atykhonov/google-translate,criticality_score:0.397230 github.com/atymchuk/prettier-config,num_dependents_deps.dev:0 +github.com/atymic/deployer-php-action, github.com/atymic/puppeteer-request-spy,num_dependents_deps.dev:0 +github.com/atymic/sitemap-ping-action, github.com/atymic/twitter,criticality_score:0.403130 github.com/atyrian/commensal-common,num_dependents_deps.dev:0 github.com/atz3n/ardorjs,num_dependents_deps.dev:4 @@ -278537,6 +284631,8 @@ github.com/auerswal/section,num_dependents_deps.dev:0 github.com/aufarg/gitsub, github.com/aufbaubank/gitme, github.com/aufbaubank/piexin, +github.com/aufdenpunkt/python-license-check-action, +github.com/aufdenpunkt/python-safety-check, github.com/aufheben/mutuals-server,num_dependents_deps.dev:0 github.com/aufi/must-gather-rest-wrapper,num_dependents_deps.dev:0 github.com/aufi/photo_geoloader,num_dependents_deps.dev:0 @@ -278638,6 +284734,7 @@ github.com/augustoclaro/nice-xor,num_dependents_deps.dev:0 github.com/augustoeliezer/eloader,num_dependents_deps.dev:0 github.com/augustogunsch/fsub, github.com/augustohp/Priority-Queue-NodeJS,num_dependents_deps.dev:0 +github.com/augustohp/action-pr-assignee, github.com/augustoliks/cdn-test, github.com/augustoliks/cliks, github.com/augustoliks/gommit,num_dependents_deps.dev:0 @@ -278648,6 +284745,11 @@ github.com/augustolzd/object-model-validator,num_dependents_deps.dev:0 github.com/augustolzd/task-manager,num_dependents_deps.dev:0 github.com/augustomegres/components,num_dependents_deps.dev:0 github.com/augustomentz/spotify-api-wrapper,num_dependents_deps.dev:0 +github.com/augustonascimentos/commit_and_push_to_protected_branch, +github.com/augustoproiete/emptylicenseslicx, +github.com/augustoproiete/exceldna-diagnostics-serilog, +github.com/augustoproiete/hangfire-dashboard-customize, +github.com/augustoproiete/prism-logging-serilog, github.com/augustorey/lk,num_dependents_deps.dev:0 github.com/augustoroman/crc,num_dependents_deps.dev:0 github.com/augustoroman/sandwich,num_dependents_deps.dev:0 @@ -278670,19 +284772,23 @@ github.com/auguwu/Lillith,num_dependents_deps.dev:0 github.com/auguwu/Maru,num_dependents_deps.dev:0 github.com/auguwu/Wumpcord,num_dependents_deps.dev:0 github.com/auguwu/benchmarks,num_dependents_deps.dev:0 +github.com/auguwu/clippy-action, github.com/auguwu/collections,num_dependents_deps.dev:4 github.com/auguwu/dotenv,num_dependents_deps.dev:0 github.com/auguwu/eris,num_dependents_deps.dev:0 github.com/auguwu/eslint-config,num_dependents_deps.dev:0 +github.com/auguwu/git-tag-action, github.com/auguwu/http-core,num_dependents_deps.dev:0 github.com/auguwu/ichigo,num_dependents_deps.dev:0 github.com/auguwu/immutable,num_dependents_deps.dev:0 github.com/auguwu/laffey,num_dependents_deps.dev:0 github.com/auguwu/larg, github.com/auguwu/logging,num_dependents_deps.dev:0 +github.com/auguwu/node-pm-action, github.com/auguwu/orchid,num_dependents_deps.dev:0 github.com/auguwu/prettier-config,num_dependents_deps.dev:0 github.com/auguwu/qtradio.js,num_dependents_deps.dev:0 +github.com/auguwu/setup-bazel, github.com/auguwu/sysinfo,num_dependents_deps.dev:0 github.com/auguwu/tsconfig,num_dependents_deps.dev:0 github.com/auguwu/utils,num_dependents_deps.dev:4 @@ -278741,6 +284847,7 @@ github.com/aulasoftwarelibre/nestjs-eventstore,num_dependents_deps.dev:0 github.com/aulemasa/gatehouse, github.com/aulemasa/gatehouse3, github.com/aulianov/youtube-subs-json,num_dependents_deps.dev:0 +github.com/auliosGmbH/ec2-github-runner, github.com/aulisius/http-with-fetch, github.com/aulisius/ipify-rs,num_dependents_deps.dev:0 github.com/aulisius/pandora,num_dependents_deps.dev:0 @@ -278769,6 +284876,7 @@ github.com/aumayr/beancount-pygments-lexer, github.com/aumbadgah/dynamodb-mini,num_dependents_deps.dev:0 github.com/aumberg/morsetick,num_dependents_deps.dev:0 github.com/aumerhadi/basic-i18n,num_dependents_deps.dev:0 +github.com/aummo/pierre-review, github.com/aumyf/gatsby-source-scrapbox, github.com/auncel/diff-dom-core,num_dependents_deps.dev:0 github.com/aunetx/mnist-extractor,num_dependents_deps.dev:0 @@ -278961,8 +285069,10 @@ github.com/aurelia/web-components,num_dependents_deps.dev:0 github.com/aurelia/webpack-plugin,num_dependents_deps.dev:0 github.com/aurelian/grapi,num_dependents_deps.dev:0 github.com/aurelian/ruby-stemmer,"criticality_score:0.389690,num_dependents_deps.dev:210" +github.com/aureliancnx/epigraphical-action, github.com/aureliano/theotokos,num_dependents_deps.dev:0 github.com/aureliar8/website,num_dependents_deps.dev:0 +github.com/aurelien-baudet/workflow-dispatch, github.com/aurelien-rainone/udpnet,num_dependents_deps.dev:0 github.com/aurelienbottazini/hyperterm-crosshair,num_dependents_deps.dev:0 github.com/aurelieuno/lodown, @@ -279150,6 +285260,7 @@ github.com/aureooms/set-alarm,num_dependents_deps.dev:0 github.com/aureooms/texshake,num_dependents_deps.dev:0 github.com/aureplop/django-allauth-cas, github.com/aureplop/notion-tree, +github.com/aurestic/incremental-tag, github.com/aureuneun/bitcoin,num_dependents_deps.dev:0 github.com/aurghya-0/covid19cli,num_dependents_deps.dev:0 github.com/aurghya-0/ladyredhood-chat, @@ -279165,6 +285276,7 @@ github.com/aurieh/goodshit,num_dependents_deps.dev:0 github.com/aurieh/sanic,num_dependents_deps.dev:0 github.com/aurimasniekis/array-intersperse,num_dependents_deps.dev:0 github.com/aurimasniekis/eolia-client,num_dependents_deps.dev:0 +github.com/aurity/nextjs-get-routes-action, github.com/aurmeneta/Covid19,num_dependents_deps.dev:0 github.com/aurmeneta/covid19-stats, github.com/aurokk/sm2-x,num_dependents_deps.dev:0 @@ -279201,6 +285313,8 @@ github.com/aurorafe/ol-control-bZoomSlider,num_dependents_deps.dev:0 github.com/aurorafe/ol-control-loading,num_dependents_deps.dev:0 github.com/aurorafe/ol-interaction-LayerMagnify,num_dependents_deps.dev:0 github.com/aurorafe/ol-interaction-LayerSpyglass,num_dependents_deps.dev:0 +github.com/auroraisluna/qa-labels-for-prs, +github.com/auroraisluna/zxvczVcvasfdadsf, github.com/auroral-ui/hexo-theme-aurora,num_dependents_deps.dev:0 github.com/auroraresearchlab/netbox-dns, github.com/aurorasoftware/python-social, @@ -279286,6 +285400,24 @@ github.com/austen0/biztime, github.com/austenito/html2markdown-cli,num_dependents_deps.dev:0 github.com/austenito/ruby-resty,num_dependents_deps.dev:0 github.com/austenpayan/skippr,num_dependents_deps.dev:0 +github.com/austenstone/chatgpt-bot, +github.com/austenstone/codeowners-coverage, +github.com/austenstone/copilot-license-cleanup, +github.com/austenstone/crypto-box, +github.com/austenstone/get-org-repos, +github.com/austenstone/ghas-seat-count-action, +github.com/austenstone/label-stats, +github.com/austenstone/list-prs-associated-with-a-commit, +github.com/austenstone/list-repository-languages, +github.com/austenstone/markdown-interpolation-action, +github.com/austenstone/openai-completion-action, +github.com/austenstone/openai-image-generation, +github.com/austenstone/openai-issue-labeler, +github.com/austenstone/project-update, +github.com/austenstone/seat-count-action, +github.com/austenstone/spellchecker-cli-action-summary, +github.com/austenstone/venmo-pay, +github.com/austenstone/workflow-lint, github.com/austentalbot/generator-lunaui,num_dependents_deps.dev:0 github.com/austenyte/tsconfig-bases,num_dependents_deps.dev:0 github.com/austin-garrard/ag.funutils, @@ -279296,6 +285428,7 @@ github.com/austin-rausch/branch-name-commit-modifier,num_dependents_deps.dev:0 github.com/austin-rausch/minimap-js,num_dependents_deps.dev:0 github.com/austin-rausch/url-resolve-browser,num_dependents_deps.dev:20 github.com/austin-salameh/golang,num_dependents_deps.dev:0 +github.com/austin-stytch/dbt-docs-to-notion, github.com/austin1howard/mpxl, github.com/austin362667/MonyCraft, github.com/austin43/serverless-athena-plugin,num_dependents_deps.dev:0 @@ -279425,6 +285558,7 @@ github.com/austinleroy/webm-encrypt,num_dependents_deps.dev:0 github.com/austinleroy/webm-iterable,num_dependents_deps.dev:0 github.com/austinlparker/microcalc,num_dependents_deps.dev:0 github.com/austinluong/fit-extract, +github.com/austinmccalley/deploy-firebase-functions, github.com/austinmcconnell/jsonresume-theme-austinmcconnell,num_dependents_deps.dev:0 github.com/austinmcconnell/mortgage, github.com/austinmcdowell/wasson-scss,num_dependents_deps.dev:0 @@ -279524,6 +285658,7 @@ github.com/autamus/chef-wasm,num_dependents_deps.dev:0 github.com/autamus/cuppa,num_dependents_deps.dev:0 github.com/autamus/go-parspack,num_dependents_deps.dev:20 github.com/autamus/librarian,num_dependents_deps.dev:0 +github.com/autamus/merge-commits, github.com/autamus/smuggler,num_dependents_deps.dev:0 github.com/autarch/Brocket,num_dependents_deps.dev:0 github.com/autaut03/node-steam-status,num_dependents_deps.dev:0 @@ -279536,6 +285671,9 @@ github.com/autermann/java-utils,num_dependents_deps.dev:0 github.com/autermann/jersey-cache-control,num_dependents_deps.dev:0 github.com/autermann/wps-commons,num_dependents_deps.dev:0 github.com/autermann/yaml,num_dependents_deps.dev:0 +github.com/autero1/action-gotestsum, +github.com/autero1/action-terraform, +github.com/autero1/action-terragrunt, github.com/auth-os/core,num_dependents_deps.dev:0 github.com/auth0-blog/nextjs-passport,num_dependents_deps.dev:0 github.com/auth0-community/auth0-react-scripts,num_dependents_deps.dev:0 @@ -279771,6 +285909,8 @@ github.com/author-elements/selected-options,num_dependents_deps.dev:0 github.com/author-elements/slider,num_dependents_deps.dev:0 github.com/author-elements/slider-handle,num_dependents_deps.dev:0 github.com/author-elements/tooltip,num_dependents_deps.dev:0 +github.com/author/action-publish, +github.com/author/action-rollback, github.com/author/arg,num_dependents_deps.dev:8 github.com/author/bwc,num_dependents_deps.dev:0 github.com/author/cicd-drone-config,num_dependents_deps.dev:0 @@ -279796,6 +285936,9 @@ github.com/authsider/passport-authsider,num_dependents_deps.dev:0 github.com/authumn/authumn-angular,num_dependents_deps.dev:0 github.com/authurlan/demo,num_dependents_deps.dev:0 github.com/authy/authy-python, +github.com/authzed/action-spicedb, +github.com/authzed/action-spicedb-validate, +github.com/authzed/action-testserver, github.com/authzed/animated-code-example-component, github.com/authzed/authzed-go,num_dependents_deps.dev:0 github.com/authzed/authzed-node,num_dependents_deps.dev:0 @@ -279805,8 +285948,15 @@ github.com/authzed/zed,num_dependents_deps.dev:0 github.com/authzee/kotlin-guice,num_dependents_deps.dev:0 github.com/authzforce/rest-api-model,num_dependents_deps.dev:12 github.com/authzforce/server,num_dependents_deps.dev:0 +github.com/autifyhq/actions-mobile-build-upload, +github.com/autifyhq/actions-mobile-test-run, +github.com/autifyhq/actions-setup-cli, +github.com/autifyhq/actions-web-test-run, github.com/autifyhq/html-table-parser,num_dependents_deps.dev:0 +github.com/autifyhq/merge-queue-action, +github.com/autifyhq/mobile-run-test-plan-action, github.com/autifyhq/parcel-reporter-bundle-manifest,num_dependents_deps.dev:0 +github.com/autifyhq/web-run-test-plan-action, github.com/autinerd/python-devoloDHC, github.com/autinerd/python-zenggewifi, github.com/autinerd/sslpsk2, @@ -279838,6 +285988,7 @@ github.com/auto-flow/tabular_nn, github.com/auto-flow/ultraopt, github.com/auto-flutter/auto_util, github.com/auto-impl-rs/auto_impl,num_dependents_deps.dev:55 +github.com/auto-it/setup-auto, github.com/auto-mat/django-import-export-celery, github.com/auto-mat/leaflet-zoom-show-hide,num_dependents_deps.dev:0 github.com/auto-mat/smmapdfs, @@ -279850,6 +286001,7 @@ github.com/autoNumeric/autoNumeric,"criticality_score:0.429920,num_dependents_de github.com/autoNumeric/vue-autoNumeric,num_dependents_deps.dev:2 github.com/autoai-incubator/powermeter, github.com/autoai-org/aid,num_dependents_deps.dev:0 +github.com/autoai-org/aid-testing-actions, github.com/autoai-org/aiflow,num_dependents_deps.dev:0 github.com/autoai-org/cvpm,num_dependents_deps.dev:0 github.com/autoai-org/tinyml, @@ -279924,6 +286076,7 @@ github.com/autoinvent/conveyor-redux,num_dependents_deps.dev:0 github.com/autoinvent/conveyor-schema,num_dependents_deps.dev:0 github.com/autoinvent/magql, github.com/autoinvent/magql-query,num_dependents_deps.dev:0 +github.com/autoissue/autoissuebot, github.com/autoit-gui-skeleton/ags-component-check-for-updates,num_dependents_deps.dev:0 github.com/autoit-gui-skeleton/ags-component-google-analytics,num_dependents_deps.dev:0 github.com/autoit-gui-skeleton/ags-component-http-request, @@ -279994,10 +286147,12 @@ github.com/automate-website/shell,num_dependents_deps.dev:0 github.com/automate-website/teamcity-plugin,num_dependents_deps.dev:0 github.com/automate-website/waml-io,num_dependents_deps.dev:0 github.com/automate-website/waml-report-io,num_dependents_deps.dev:0 +github.com/automate6500/keyword-release-action, github.com/automated-tools/automated,num_dependents_deps.dev:0 github.com/automated-tools/plugin-jest,num_dependents_deps.dev:0 github.com/automatedelectricalsolutions/go-msgraph,num_dependents_deps.dev:0 github.com/automatedhome/scheduler,num_dependents_deps.dev:0 +github.com/automatedops/amtool-github-action, github.com/automatedtester/node-pomodoro,num_dependents_deps.dev:0 github.com/automatedtester/taskng,num_dependents_deps.dev:0 github.com/automatedtf/catalog, @@ -280055,12 +286210,15 @@ github.com/automattic/vip-go-mu-plugins-built,num_dependents_deps.dev:0 github.com/automattic/xgettext-js, github.com/automazers/react-automazers,num_dependents_deps.dev:0 github.com/automazers/react-automazers-charts,num_dependents_deps.dev:0 +github.com/automediaAI/get-rounded-time, github.com/automenta/npn,num_dependents_deps.dev:0 github.com/automenta/telepathine,num_dependents_deps.dev:0 github.com/automerge/automerge,criticality_score:0.565560 github.com/automerge/automerge-rs, github.com/automerge/pixelpusherd,num_dependents_deps.dev:0 github.com/automerge/pushpin,criticality_score:0.405330 +github.com/autometrics-dev/diff-metrics, +github.com/autometrics-dev/instrument-pipeline, github.com/automicus/PyISY, github.com/automium/automium-cli,num_dependents_deps.dev:0 github.com/automium/automium-sdk,num_dependents_deps.dev:0 @@ -280109,6 +286267,9 @@ github.com/autonome/twitter-inline-oembed,num_dependents_deps.dev:0 github.com/autonomic-cooperative/godotenv,num_dependents_deps.dev:0 github.com/autonomio/talos,criticality_score:0.417120 github.com/autonomousapps/dependency-analysis-android-gradle-plugin,"criticality_score:0.420980,num_dependents_deps.dev:0" +github.com/autonomouslogic/commons-java, +github.com/autonomouslogic/custom-spec-filter, +github.com/autonomouslogic/dynamo-mapper, github.com/autonomoussoftware/check-tag-matches,num_dependents_deps.dev:0 github.com/autonomoussoftware/fast-password-entropy,num_dependents_deps.dev:0 github.com/autonomoussoftware/metronome-contracts-js, @@ -280183,6 +286344,7 @@ github.com/autoric/super-router,num_dependents_deps.dev:0 github.com/autoricardo/carforyou-api-client-pkg, github.com/autoricardo/carforyou-phraseapp-pkg,num_dependents_deps.dev:0 github.com/autorope/donkeycar,criticality_score:0.531900 +github.com/autoscatto/action-coverage-summary-markdown, github.com/autoscatto/mastojeppetto, github.com/autoscout24/showcar-storage,num_dependents_deps.dev:0 github.com/autoscriber-app/autoscriber-lib, @@ -280202,6 +286364,7 @@ github.com/autosummarization/summarization, github.com/autotable/react-trello, github.com/autotable/smooth-dnd, github.com/autotel/on,num_dependents_deps.dev:0 +github.com/autotelic/action-wait-for-status-check, github.com/autotelic/apollo-server-fastify,num_dependents_deps.dev:0 github.com/autotelic/fastify-hmac,num_dependents_deps.dev:0 github.com/autotelic/fastify-injector,num_dependents_deps.dev:0 @@ -280319,6 +286482,7 @@ github.com/auxten/go-sqldb,num_dependents_deps.dev:0 github.com/auxten/postgresql-parser,num_dependents_deps.dev:0 github.com/auxtern/bookings,num_dependents_deps.dev:0 github.com/auyanik/ShapKa, +github.com/auycro/netframework-action-template, github.com/auyer/lagoinha-rs,num_dependents_deps.dev:0 github.com/auyer/steganography,num_dependents_deps.dev:0 github.com/auz34/grunt-sencha-cmd,num_dependents_deps.dev:0 @@ -280458,10 +286622,14 @@ github.com/avajs/require-precompiled,num_dependents_deps.dev:48 github.com/avajs/typescript,num_dependents_deps.dev:0 github.com/avajs/write-file-atomic,num_dependents_deps.dev:354 github.com/avakar/crater, +github.com/avakar/create-deployment, +github.com/avakar/derive-version, github.com/avakar/grope, github.com/avakar/pycson, github.com/avakar/pytoml,num_dependents_deps.dev:0 +github.com/avakar/set-deployment-status, github.com/avakar/speg, +github.com/avakar/tag-and-release, github.com/avakar/typedobject, github.com/avakarev/go-logutil,num_dependents_deps.dev:0 github.com/avakarev/go-testutil,num_dependents_deps.dev:0 @@ -280674,6 +286842,7 @@ github.com/avatsaev/ngx-raven,num_dependents_deps.dev:0 github.com/avatsaev/three-orbitcontrols-ts,num_dependents_deps.dev:0 github.com/avattathil/pyclifactory, github.com/avature/confight, +github.com/avatxus/eks-kubectl-github-action, github.com/avaware/exchange-contracts,num_dependents_deps.dev:0 github.com/avaware/sdk,num_dependents_deps.dev:0 github.com/avayayu/micro,num_dependents_deps.dev:0 @@ -280829,6 +286998,7 @@ github.com/aventurella/promptly, github.com/aventus-network-services/tendermint-exp,num_dependents_deps.dev:0 github.com/avenuecode/design-system, github.com/avenuecode/react-components, +github.com/avenuesec/golangci-lint-action, github.com/avenuesec/tilt-demo,num_dependents_deps.dev:0 github.com/avenwu/support,num_dependents_deps.dev:0 github.com/aveplen/go-post-regex,num_dependents_deps.dev:0 @@ -280837,6 +287007,7 @@ github.com/aveq-research/localforage-asyncstorage-driver,num_dependents_deps.dev github.com/aver-d/mpd-fzf,num_dependents_deps.dev:0 github.com/aver007/obj-tree-to-xml, github.com/aver007/proc-conveyor, +github.com/averagebit/action-galaxy, github.com/averageflow/gohooks,num_dependents_deps.dev:0 github.com/averageflow/goscope,num_dependents_deps.dev:0 github.com/averageflow/nederlands-lidwoord-spelletje,num_dependents_deps.dev:0 @@ -281067,6 +287238,7 @@ github.com/aviate-labs/candid-go,num_dependents_deps.dev:0 github.com/aviate-labs/leb128,num_dependents_deps.dev:0 github.com/aviate-labs/notion-go,num_dependents_deps.dev:0 github.com/aviate-labs/principal-go,num_dependents_deps.dev:0 +github.com/aviate-labs/setup-dfx, github.com/aviator/aviator,num_dependents_deps.dev:0 github.com/aviator/session_pool,num_dependents_deps.dev:0 github.com/aviatrixsystems/terraform-provider-aviatrix,num_dependents_deps.dev:0 @@ -281108,6 +287280,8 @@ github.com/avidbase/go-auth,num_dependents_deps.dev:0 github.com/avidcoder123/needle, github.com/aviddiviner/Socket.IO-sessions,num_dependents_deps.dev:0 github.com/aviddiviner/node-minify-watch,num_dependents_deps.dev:0 +github.com/avides/actions-action-configuration-autoupdate, +github.com/avides/actions-project-version-check, github.com/avides/gitlab-release-maven-plugin,num_dependents_deps.dev:0 github.com/avides/sax-xom-parser,num_dependents_deps.dev:0 github.com/avides/spring-amqp-utils,num_dependents_deps.dev:0 @@ -281244,6 +287418,8 @@ github.com/avin/repeat,num_dependents_deps.dev:0 github.com/avin/static-hash-version,num_dependents_deps.dev:0 github.com/avin/timer-tools, github.com/avin45h/memcached,num_dependents_deps.dev:0 +github.com/avinal/Profile-Readme-WakaTime, +github.com/avinal/github-pages-deploy-action, github.com/avinandi/url-parser,num_dependents_deps.dev:0 github.com/avinash-ganiga/react-snackbar-toast,num_dependents_deps.dev:0 github.com/avinash-ghadshi/important-go-scripts,num_dependents_deps.dev:0 @@ -281296,6 +287472,7 @@ github.com/avinashvarna/sanskrit_tts, github.com/avinashvarna/sanskrit_util, github.com/avinassh/goodreadsapi, github.com/avinassh/haxor, +github.com/avinassh/hugo-publish, github.com/avinassh/prawoauth2, github.com/avinassh/rockstar, github.com/avinassh/sign-flip,num_dependents_deps.dev:0 @@ -281404,6 +287581,7 @@ github.com/avitex/rust-dangerous,num_dependents_deps.dev:0 github.com/avitex/rust-dnscat,num_dependents_deps.dev:0 github.com/avitex/rust-public-ip,num_dependents_deps.dev:0 github.com/avitex/rust-zc,num_dependents_deps.dev:3 +github.com/avito-tech/Emcee.cloud.action, github.com/avito-tech/abito, github.com/avito-tech/aqueduct, github.com/avito-tech/avito-android,"criticality_score:0.404220,num_dependents_deps.dev:18767" @@ -281468,6 +287646,7 @@ github.com/avkonst/react-use-state-x,num_dependents_deps.dev:0 github.com/avkosme/golang-api-boilerplate,num_dependents_deps.dev:0 github.com/avkozlov4/react-rte,num_dependents_deps.dev:0 github.com/avkpy/factor-analysis, +github.com/avkviring/telegram-github-action, github.com/avkvirtru/virtuoso-design-system,num_dependents_deps.dev:0 github.com/avl-harshitha/fb_queryexcel,num_dependents_deps.dev:0 github.com/avladev/pypro, @@ -281476,6 +287655,7 @@ github.com/avlcjw/checkbox-select-all,num_dependents_deps.dev:0 github.com/avleen/go-pause,num_dependents_deps.dev:0 github.com/avlek/inhabrbot,num_dependents_deps.dev:0 github.com/avleo/go-libav,num_dependents_deps.dev:0 +github.com/avlima/aws-ssm-to-env, github.com/avlisodraude/Hyral, github.com/avlm/pre-commit-poetry-export, github.com/avlm/zotion, @@ -281513,6 +287693,7 @@ github.com/avniproject/avni-health-modules, github.com/avnsh/create-react-app,num_dependents_deps.dev:0 github.com/avo-hq/avo-js,num_dependents_deps.dev:0 github.com/avo-hq/manifester,num_dependents_deps.dev:0 +github.com/avocaddo/AppCenter-Github-Action, github.com/avocadee/ascii-name,num_dependents_deps.dev:0 github.com/avocadianmage/file-icon-info,num_dependents_deps.dev:0 github.com/avocado-framework/avocado,criticality_score:0.654010 @@ -281764,6 +287945,7 @@ github.com/avtara/fullstack-bootcamp,num_dependents_deps.dev:0 github.com/avtion/fan,num_dependents_deps.dev:0 github.com/avtion/nuclear,num_dependents_deps.dev:0 github.com/avto-dev/bank-card-vue-component,num_dependents_deps.dev:0 +github.com/avto-dev/markdown-lint, github.com/avto-dev/vehicle-logotypes,num_dependents_deps.dev:0 github.com/avtolstoy/addr2line,num_dependents_deps.dev:0 github.com/avtolstoy/particle-diagnostic-parser,num_dependents_deps.dev:0 @@ -281817,6 +287999,7 @@ github.com/aw-studio/vue-lit-image,num_dependents_deps.dev:0 github.com/aw-tests/sdk-for-node, github.com/aw-web-design/styled-system,num_dependents_deps.dev:0 github.com/aw/log2sock,num_dependents_deps.dev:0 +github.com/aw/picolisp-action, github.com/aw/sram23x,num_dependents_deps.dev:0 github.com/aw1875/puppeteer-hcaptcha,num_dependents_deps.dev:0 github.com/aw2basc/css-pcw,num_dependents_deps.dev:0 @@ -281856,6 +288039,10 @@ github.com/awachat/zunzuna,num_dependents_deps.dev:0 github.com/awachtendorf/vivoinvacuo,num_dependents_deps.dev:0 github.com/awachtler/devpi-json-info, github.com/awacker/http-requests-aggregator,num_dependents_deps.dev:0 +github.com/awact/cloudfront-action, +github.com/awact/label-action, +github.com/awact/s3-action, +github.com/awact/wiki-action, github.com/awadYehya/Genev.js,num_dependents_deps.dev:0 github.com/awadhn/robotframework-run-keyword-async, github.com/awaescher/RepoZ,criticality_score:0.426740 @@ -281905,6 +288092,7 @@ github.com/awalias/gotrue-js,num_dependents_deps.dev:0 github.com/awalker125/forumsentry-sdk-for-python, github.com/awalker88/auto-bots, github.com/awaloszek/gitlab-release-notes,num_dependents_deps.dev:0 +github.com/awalsh128/cache-apt-pkgs-action, github.com/awalter-bnl/rixs, github.com/awalter-bnl/sixtools, github.com/awalterschulze/git-anchor,num_dependents_deps.dev:0 @@ -281933,6 +288121,7 @@ github.com/awantika12594/golearnings,num_dependents_deps.dev:0 github.com/awapps/mongration,num_dependents_deps.dev:0 github.com/awaragi/mocha-testrail-reporter,num_dependents_deps.dev:0 github.com/awaragi/prometheus-mssql-exporter,num_dependents_deps.dev:0 +github.com/award28/action-pagerduty-alert, github.com/awardit/crustate, github.com/awardit/eslint-config-xo,num_dependents_deps.dev:0 github.com/awardit/formaggio,num_dependents_deps.dev:0 @@ -282155,6 +288344,7 @@ github.com/awentzonline/keras-rtst, github.com/awentzonline/keras-vgg-buddy, github.com/awentzonline/pytorch-cns, github.com/aweolumidedavid/helper-functions,num_dependents_deps.dev:0 +github.com/aweris/gcr-docker-action, github.com/awerlang/angular-easy-masks,num_dependents_deps.dev:0 github.com/awerlang/angular-responsive-tables,num_dependents_deps.dev:0 github.com/awerlang/ascii-category,num_dependents_deps.dev:0 @@ -282192,6 +288382,7 @@ github.com/awesome-cli/where-is-my-node, github.com/awesome-css-group/awesome-css,criticality_score:0.344980 github.com/awesome-faas/DynamicallyTyped, github.com/awesome-fc/fc-custom-demo,num_dependents_deps.dev:0 +github.com/awesome-global-contributions/action-yq, github.com/awesome-gocui/gocui,num_dependents_deps.dev:18 github.com/awesome-gocui/keybinding,num_dependents_deps.dev:14 github.com/awesome-golang/vpp,num_dependents_deps.dev:0 @@ -282310,6 +288501,7 @@ github.com/awhitford/lombok.maven,num_dependents_deps.dev:9 github.com/awhy94/utils-test,num_dependents_deps.dev:0 github.com/awhy94/webpack-react,num_dependents_deps.dev:0 github.com/awibox/combo-storage,num_dependents_deps.dev:0 +github.com/awibox/deploy-to-github-pages-action, github.com/awibox/react-cookie-consent-notification,num_dependents_deps.dev:0 github.com/awibox/react-cookie-disclaimer,num_dependents_deps.dev:0 github.com/awibox/react-events-timeline,num_dependents_deps.dev:0 @@ -282484,11 +288676,22 @@ github.com/awran5/react-simple-offcanvas,num_dependents_deps.dev:0 github.com/awran5/react-simple-star-rating,num_dependents_deps.dev:0 github.com/awran5/react-simple-tabs-component,num_dependents_deps.dev:0 github.com/awran5/react-simple-typewriter,num_dependents_deps.dev:0 +github.com/awreck/proofread-action, github.com/awrichar/firefly-cli,num_dependents_deps.dev:0 github.com/awrns/awareness, github.com/awronka/Angular2Piwik,num_dependents_deps.dev:0 github.com/aws-actions/amazon-ecr-login,criticality_score:0.398520 +github.com/aws-actions/amazon-ecs-deploy-task-definition, +github.com/aws-actions/amazon-ecs-render-task-definition, +github.com/aws-actions/amazon-eks-fargate, +github.com/aws-actions/aws-cloudformation-github-deploy, +github.com/aws-actions/aws-codebuild-run-build, +github.com/aws-actions/aws-secretsmanager-get-secrets, +github.com/aws-actions/codeguru-reviewer, +github.com/aws-actions/codeguru-security, github.com/aws-actions/configure-aws-credentials,criticality_score:0.478020 +github.com/aws-actions/setup-sam, +github.com/aws-actions/sustainability-scanner, github.com/aws-amplify-jp/vocabulary-ja,num_dependents_deps.dev:0 github.com/aws-amplify/amplify-android,num_dependents_deps.dev:0 github.com/aws-amplify/amplify-cli,"criticality_score:0.647950,num_dependents_deps.dev:49582" @@ -282793,6 +288996,9 @@ github.com/awsgroup/aws-master,num_dependents_deps.dev:0 github.com/awshanks/leaflet-measure,num_dependents_deps.dev:0 github.com/awshanks/react-leaflet-measure,num_dependents_deps.dev:0 github.com/awshawka/react-native-double-click,num_dependents_deps.dev:0 +github.com/awshole/codeql-report, +github.com/awshole/snyk-node, +github.com/awshole/snyk-python, github.com/awsjs/dynamodb,num_dependents_deps.dev:0 github.com/awslabs/amazon-chime-webhooks-nodejs,num_dependents_deps.dev:0 github.com/awslabs/amazon-denseclus, @@ -283081,6 +289287,7 @@ github.com/awused/screenshotter,num_dependents_deps.dev:0 github.com/awv-informatik/awv3-icons,num_dependents_deps.dev:0 github.com/awv-informatik/awv3-react,num_dependents_deps.dev:0 github.com/awv-informatik/icons,num_dependents_deps.dev:0 +github.com/awvwgk/setup-fortran, github.com/awwabtahir/learning-golang,num_dependents_deps.dev:0 github.com/awwaiid/vuepress-plugin-graphviz,num_dependents_deps.dev:0 github.com/awwbees/BespokeSynth,criticality_score:0.359030 @@ -283208,6 +289415,7 @@ github.com/axaq/traviso.js,num_dependents_deps.dev:0 github.com/axaq/webvr-helper,num_dependents_deps.dev:0 github.com/axaygadekar/pulse,num_dependents_deps.dev:0 github.com/axayjain/test_module,num_dependents_deps.dev:0 +github.com/axazara/easy-s3-upload-github-action, github.com/axblueblader/funlog,num_dependents_deps.dev:0 github.com/axboe/fio,criticality_score:0.733450 github.com/axboe/liburing,criticality_score:0.573330 @@ -283262,6 +289470,12 @@ github.com/axehomeyg/dowkerize,num_dependents_deps.dev:0 github.com/axehomeyg/jest-marmot,num_dependents_deps.dev:0 github.com/axel-download-accelerator/axel,criticality_score:0.487250 github.com/axel-events/axel, +github.com/axel-op/dart-package-analyzer, +github.com/axel-op/googlejavaformat-action, +github.com/axel-op/package-java-agnostic-serverless-function, +github.com/axel-op/package-java-aws-lambda, +github.com/axel-op/package-java-azure-function, +github.com/axel-op/package-java-google-cloud-function, github.com/axel-recolet/pouchdb-svelte,num_dependents_deps.dev:0 github.com/axel-sirota/ci-cd-with-travis, github.com/axel-springer-kugawana/iwb_serenity,num_dependents_deps.dev:0 @@ -283292,6 +289506,7 @@ github.com/axel669/range,num_dependents_deps.dev:0 github.com/axel669/redux-batching,num_dependents_deps.dev:0 github.com/axel669/sanic-xml,num_dependents_deps.dev:0 github.com/axel669/scsv,num_dependents_deps.dev:0 +github.com/axel7083/grpc-gateway-generator, github.com/axelBrei/react-native-material-dropdown-axel, github.com/axelav/choo-scroll-to-top,num_dependents_deps.dev:0 github.com/axelav/grid,num_dependents_deps.dev:0 @@ -283317,6 +289532,7 @@ github.com/axeldouglas/cra-template-blip-plugin,num_dependents_deps.dev:0 github.com/axelduch/simplecs,num_dependents_deps.dev:0 github.com/axelerant/axl-template, github.com/axelerant/eslint-config-axelerant,num_dependents_deps.dev:0 +github.com/axelerant/platformsh-deploy-action, github.com/axelerant/stylelint-config-axelerant,num_dependents_deps.dev:0 github.com/axelf4/BitSetModule,num_dependents_deps.dev:0 github.com/axelf4/lis,num_dependents_deps.dev:0 @@ -283485,6 +289701,7 @@ github.com/axetroy/equeue,num_dependents_deps.dev:0 github.com/axetroy/event-emitter.js,num_dependents_deps.dev:90 github.com/axetroy/flex-grid,num_dependents_deps.dev:0 github.com/axetroy/fslint,num_dependents_deps.dev:0 +github.com/axetroy/gh-pages-action, github.com/axetroy/github-size-badge,num_dependents_deps.dev:0 github.com/axetroy/gm-http,num_dependents_deps.dev:0 github.com/axetroy/gmock,num_dependents_deps.dev:0 @@ -283644,6 +289861,7 @@ github.com/axing42/siginin,num_dependents_deps.dev:0 github.com/axinger/godemo,num_dependents_deps.dev:0 github.com/axinvd/react-native-scrollview-maintain,num_dependents_deps.dev:0 github.com/axio-gilles/ng2-dnd,num_dependents_deps.dev:0 +github.com/axiologic-pla/organizationAudit, github.com/axiom-data-science/assetid, github.com/axiom-data-science/bufrtools, github.com/axiom-data-science/codar2netcdf, @@ -283801,6 +290019,7 @@ github.com/axmand/kiwi.glsl,num_dependents_deps.dev:0 github.com/axmand/kiwi.matrix,num_dependents_deps.dev:0 github.com/axmine/axios,num_dependents_deps.dev:0 github.com/axmine/helper, +github.com/axmolengine/setup-xcode, github.com/axmpda/django-rest-framework-bulk, github.com/axmz/react-searchbox-awesome,num_dependents_deps.dev:0 github.com/axnfex/gulp-nui,num_dependents_deps.dev:0 @@ -283979,6 +290198,7 @@ github.com/ayaanhossain/oligopool, github.com/ayaanhossain/weldor, github.com/ayaar25/golang-game-of-life,num_dependents_deps.dev:0 github.com/ayacai115/gqlgen-file-upload,num_dependents_deps.dev:0 +github.com/ayachensiyuan/get-action-job-id, github.com/ayadav/django-db-defaults, github.com/ayadavtw/rails_5,num_dependents_deps.dev:0 github.com/ayadibaha/klaviyo-node,num_dependents_deps.dev:0 @@ -283991,6 +290211,7 @@ github.com/ayahito-saji/edition.js,num_dependents_deps.dev:0 github.com/ayahua/babel-plugin-scenes,num_dependents_deps.dev:0 github.com/ayahua/eslint-config-react,num_dependents_deps.dev:0 github.com/ayaka-ramens/nekomaru,num_dependents_deps.dev:0 +github.com/ayaka-tajiri/slack-notify-when-approved, github.com/ayaka14732/cantoseg, github.com/ayakashi-io/ayakashi,num_dependents_deps.dev:0 github.com/ayakashi-io/get-node-selector,num_dependents_deps.dev:0 @@ -284030,6 +290251,7 @@ github.com/ayamflow/windowsill,num_dependents_deps.dev:0 github.com/ayamir/goblocks,num_dependents_deps.dev:0 github.com/ayamomiji/behave_fun,num_dependents_deps.dev:0 github.com/ayan-b/Desktop-Wallpaper-Changer, +github.com/ayan-b/gist-todo-list-action, github.com/ayan-biswas0412/digital-logic-gate,num_dependents_deps.dev:0 github.com/ayan-furkan/golangadv,num_dependents_deps.dev:0 github.com/ayanamiblhx/nonebot_plugin_youthstudy, @@ -284049,6 +290271,7 @@ github.com/ayang64/gopass,num_dependents_deps.dev:0 github.com/ayannw/minesweeper,num_dependents_deps.dev:0 github.com/ayans101/go-basic-web-app,num_dependents_deps.dev:0 github.com/ayans101/go-bookings-app,num_dependents_deps.dev:0 +github.com/ayansome1/jest-coverage-report-action, github.com/ayanworks/ARNIMA,num_dependents_deps.dev:0 github.com/ayanworkstech/react-native-svg-wheel-menu,num_dependents_deps.dev:0 github.com/ayapi/antlr4-vb6-js,num_dependents_deps.dev:0 @@ -284180,6 +290403,7 @@ github.com/ayenzky/webriq-roots-markdown-to-json,num_dependents_deps.dev:0 github.com/ayenzky/webriq-roots-sitemap-v2,num_dependents_deps.dev:0 github.com/ayeo-flex/pulsar-flex,num_dependents_deps.dev:0 github.com/ayeowch/bitnodes-hardware, +github.com/ayeressian/bunnycdn-storage-deploy, github.com/ayeressian/db-viewer-component,num_dependents_deps.dev:0 github.com/ayeressian/dbgrapher_gem,num_dependents_deps.dev:0 github.com/ayerss/fishbook,num_dependents_deps.dev:0 @@ -284284,6 +290508,7 @@ github.com/aylei/kubectl-debug,"criticality_score:0.398480,num_dependents_deps.d github.com/aylien/aylien_newsapi_go,num_dependents_deps.dev:0 github.com/aylien/emulator-tools, github.com/ayltai/react-weather,num_dependents_deps.dev:0 +github.com/ayltai/setup-graalvm, github.com/ayltai/use-interval-hook,num_dependents_deps.dev:0 github.com/ayltai/use-online-status-hook,num_dependents_deps.dev:0 github.com/ayltai/use-script-hook,num_dependents_deps.dev:0 @@ -284308,6 +290533,7 @@ github.com/aymen-mouelhi/grunt-reactify,num_dependents_deps.dev:0 github.com/aymen-mouelhi/ocpp-js,num_dependents_deps.dev:0 github.com/aymen-mouelhi/workable-node,num_dependents_deps.dev:0 github.com/aymen-mouelhi/yobot,num_dependents_deps.dev:0 +github.com/aymen3009/slugifyAction, github.com/aymenbs2/asorm,num_dependents_deps.dev:0 github.com/aymendhaya/aor-language-arabic,num_dependents_deps.dev:0 github.com/aymendhaya/ra-auth-firebase-client,num_dependents_deps.dev:0 @@ -284347,6 +290573,7 @@ github.com/aynik/remark-encrypted-block,num_dependents_deps.dev:0 github.com/aynik/sx,num_dependents_deps.dev:0 github.com/aynik/tasmania,num_dependents_deps.dev:0 github.com/aynode/xpdf,num_dependents_deps.dev:0 +github.com/aynp/node-automatic-release, github.com/aynul/react-native-circle-loader,num_dependents_deps.dev:0 github.com/aynurin/nickel-search,num_dependents_deps.dev:0 github.com/ayo-1/payscribe-sdk,num_dependents_deps.dev:0 @@ -284414,6 +290641,7 @@ github.com/ayqy/imer,num_dependents_deps.dev:2 github.com/ayqy/string-to-file-stream,num_dependents_deps.dev:0 github.com/ayqy/vscode-vsce,num_dependents_deps.dev:0 github.com/ayr-ton/awesome-geek-podcasts,criticality_score:0.382950 +github.com/ayr-ton/git-deploy-action, github.com/ayrat555/cronenberg,num_dependents_deps.dev:0 github.com/ayrat555/fang,num_dependents_deps.dev:0 github.com/ayrat555/frankenstein,num_dependents_deps.dev:0 @@ -284489,6 +290717,7 @@ github.com/ayudo/stimulus-mapbox-gl, github.com/ayufan-rock64/linux-build,criticality_score:0.475140 github.com/ayufan/debian-repository,num_dependents_deps.dev:0 github.com/ayulockin/kagglerecipes, +github.com/ayulockin/wandb2kaggle, github.com/ayumunagae/gofluttertwitterapp,num_dependents_deps.dev:0 github.com/ayunita/gophercises,num_dependents_deps.dev:0 github.com/ayush-bhandari/mdCountrySelect,num_dependents_deps.dev:0 @@ -284522,6 +290751,7 @@ github.com/ayusharma/diseasetargetviz,num_dependents_deps.dev:0 github.com/ayusharma/jest-css-module-transformer,num_dependents_deps.dev:0 github.com/ayushbpl10/protoc-gen-events,num_dependents_deps.dev:0 github.com/ayushbpl10/protoc-gen-pehredaar,num_dependents_deps.dev:0 +github.com/ayushgaud/lcov-reporter-action, github.com/ayushgoel/hubot-delay-ack,num_dependents_deps.dev:0 github.com/ayushgoel/mstranslator, github.com/ayushgp/deep-object,num_dependents_deps.dev:0 @@ -284552,6 +290782,7 @@ github.com/ayushpriya10/ShopKeepr, github.com/ayushpriya10/pychk, github.com/ayushsenapati/reactive-micro,num_dependents_deps.dev:0 github.com/ayushsharma82/ESP-DASH,criticality_score:0.310060 +github.com/ayushsharma82/influxdb-action, github.com/ayushshukla09/learning-golang,num_dependents_deps.dev:0 github.com/ayushsingla991/DBLib-Android,num_dependents_deps.dev:0 github.com/ayushsubedi/choto, @@ -284578,6 +290809,7 @@ github.com/ayyoubmarroun/pykemen, github.com/ayyouboulidi/react-bootstrap-counter,num_dependents_deps.dev:0 github.com/ayyouboulidi/react-circular-progressbar,num_dependents_deps.dev:0 github.com/ayyouboulidi/react-native-slider,num_dependents_deps.dev:0 +github.com/ayys/deploy-wasmer-app, github.com/ayys/siya, github.com/ayyshim/cryptnp,num_dependents_deps.dev:0 github.com/ayyslz/layout_antd,num_dependents_deps.dev:0 @@ -284585,6 +290817,7 @@ github.com/ayyu/amq-encoding, github.com/ayyubiid/go-salam,num_dependents_deps.dev:0 github.com/ayyybe/node-apktool-jar,num_dependents_deps.dev:0 github.com/ayzu/devto,num_dependents_deps.dev:0 +github.com/az-acme/setup-cli-action, github.com/az-esm/server,num_dependents_deps.dev:0 github.com/az-iar/vue-components,num_dependents_deps.dev:0 github.com/az-x/pique,num_dependents_deps.dev:0 @@ -284818,6 +291051,7 @@ github.com/azeeson/vavilon-eslint-config,num_dependents_deps.dev:0 github.com/azeez-72/gorest,num_dependents_deps.dev:0 github.com/azeezkhan2197/fullstack,num_dependents_deps.dev:0 github.com/azefiel/lazy-time,num_dependents_deps.dev:0 +github.com/azeight/azion-edge-functions, github.com/azellsworth/mkal,num_dependents_deps.dev:0 github.com/azeltov/adb_workshop, github.com/azemetre/azemetre,num_dependents_deps.dev:0 @@ -285012,6 +291246,7 @@ github.com/azizulhoq953/golang,num_dependents_deps.dev:0 github.com/azizvahe/learning-git,num_dependents_deps.dev:0 github.com/azizxon9909/roadmap-go,num_dependents_deps.dev:0 github.com/azizyurtlak/paket_olusturma,num_dependents_deps.dev:0 +github.com/azjezz/setup-hhvm, github.com/azjgard/mindbody-node-client,num_dependents_deps.dev:0 github.com/azjgard/react-library-testing,num_dependents_deps.dev:0 github.com/azjgard/react-redux-chloroform,num_dependents_deps.dev:0 @@ -285020,6 +291255,8 @@ github.com/azjkjensen/serialwriter, github.com/azkaban/azkaban,"criticality_score:0.584650,num_dependents_deps.dev:6" github.com/azkadev/bmkg-scrape,num_dependents_deps.dev:0 github.com/azkadev/googleapis-node,num_dependents_deps.dev:0 +github.com/azkadev/readme_update, +github.com/azkadev/telegram, github.com/azl397985856/CRUD,num_dependents_deps.dev:0 github.com/azl397985856/Kid, github.com/azl397985856/QY,num_dependents_deps.dev:0 @@ -285078,6 +291315,7 @@ github.com/azogue/pyoutlet, github.com/azohra/allure-jest-circus,num_dependents_deps.dev:0 github.com/azohra/cruller,num_dependents_deps.dev:0 github.com/azohra/klens, +github.com/azohra/shell-linter, github.com/azonenberg/openfpga,num_dependents_deps.dev:4 github.com/azoner/pyx12, github.com/azonti/cpctf2019-scoreserver,num_dependents_deps.dev:0 @@ -285552,6 +291790,9 @@ github.com/azuqua/token-sockjs-client,num_dependents_deps.dev:0 github.com/azuqua/tokio-timer,num_dependents_deps.dev:0 github.com/azuqua/wombo.rs,num_dependents_deps.dev:0 github.com/azur-scd/dash_dvx, +github.com/azure-ad-b2c/deploy-trustframework-keyset-certificate, +github.com/azure-ad-b2c/deploy-trustframework-keyset-secret, +github.com/azure-ad-b2c/deploy-trustframework-policy, github.com/azure-contrib/node-azure-search,num_dependents_deps.dev:8 github.com/azure-functions-contrib/lets-encrypt,num_dependents_deps.dev:0 github.com/azure-infinity/beyond-infinity,num_dependents_deps.dev:0 @@ -286049,6 +292290,9 @@ github.com/b37t1td/keyson,num_dependents_deps.dev:0 github.com/b3b/herethere, github.com/b3b/ipython-pythonhere, github.com/b3b/ipython-restmagic, +github.com/b3b00/coverlet-action, +github.com/b3b00/publish-nuget, +github.com/b3b00/refreshBadgesAction, github.com/b3bakyt/switchify,num_dependents_deps.dev:0 github.com/b3coded/eslint-config-b3coded,num_dependents_deps.dev:0 github.com/b3coded/react-native-secure-screen,num_dependents_deps.dev:0 @@ -286228,6 +292472,7 @@ github.com/b4oshany/kotti_bstable, github.com/b4rtaz/svg-workflow-designer,num_dependents_deps.dev:0 github.com/b4rtaz/t3mpl-core,num_dependents_deps.dev:0 github.com/b4ruio/shosubgo,num_dependents_deps.dev:0 +github.com/b4s36t4/Android-Action, github.com/b4tman/sync_ics2gcal, github.com/b4winckler/macvim,criticality_score:0.344370 github.com/b5/mozaik-ext-airtable,num_dependents_deps.dev:0 @@ -286530,6 +292775,7 @@ github.com/babl-sh/node-babl,num_dependents_deps.dev:0 github.com/babl-ws/babl,num_dependents_deps.dev:0 github.com/babluboy/bookworm,criticality_score:0.472860 github.com/bablukid/hxleaflet,num_dependents_deps.dev:0 +github.com/bablulawrence/azuresqlcmd-adauth, github.com/bablzz/algowithgo,num_dependents_deps.dev:0 github.com/babofitos/node-steamid-converter, github.com/babofitos/ugc-roster-scraper, @@ -286671,6 +292917,7 @@ github.com/bachew/inkbot, github.com/bachew/mollusc, github.com/bachirLadj/rn-viewpager-lb,num_dependents_deps.dev:0 github.com/bachlongkocanh/react-native-screenshot-detector,num_dependents_deps.dev:0 +github.com/bachmacintosh/need-npm-package-version-bump, github.com/bachmanity-hq/couplf, github.com/bachmann-m200/baem200, github.com/bachmann1234/price_watcher, @@ -286803,6 +293050,7 @@ github.com/backend-code/api-request-firebase,num_dependents_deps.dev:0 github.com/backend-code/api-request-json,num_dependents_deps.dev:0 github.com/backend-code/api-response,num_dependents_deps.dev:0 github.com/backendbox/JavaScriptSDK,num_dependents_deps.dev:0 +github.com/backendcloud/hugging-push, github.com/backendsuraj/stringto-object,num_dependents_deps.dev:0 github.com/backentrancehacker/clean.css,num_dependents_deps.dev:0 github.com/backentrancehacker/svg-like-canvas,num_dependents_deps.dev:0 @@ -286889,6 +293137,7 @@ github.com/backslash47/xml-core,num_dependents_deps.dev:0 github.com/backslash47/xmldom,num_dependents_deps.dev:4 github.com/backslash47/xpath, github.com/backslash47/xslt,num_dependents_deps.dev:2 +github.com/backspace/ember-test-audit-comparison-action, github.com/backspace/sass-cubic-bezier-bounding-box,num_dependents_deps.dev:0 github.com/backspacerhino/adonis-soft-deletes, github.com/backspaces/agentscript,num_dependents_deps.dev:0 @@ -286948,6 +293197,7 @@ github.com/bacndcmc/go-micro,num_dependents_deps.dev:0 github.com/bacnv1/react-native-interaction-keyboard,num_dependents_deps.dev:0 github.com/baco16g/wheel-dragging,num_dependents_deps.dev:0 github.com/bacondropped/termdraw, +github.com/bacongobbler/azure-blob-storage-upload, github.com/bacongobbler/docker-registry-driver-swift, github.com/bacongobbler/echo-server,num_dependents_deps.dev:0 github.com/bacongobbler/python-stackato, @@ -287079,6 +293329,7 @@ github.com/badboy/zeitstempel,num_dependents_deps.dev:2 github.com/badboy86/3RC-Multilabel-approach, github.com/badboybeyer/sti-LabJackPython, github.com/badboyd/avro-schema-gen,num_dependents_deps.dev:0 +github.com/badboyd/buf-lint-action, github.com/badboyd/go-uof-sdk,num_dependents_deps.dev:0 github.com/badbye/docxpy, github.com/badbye/tornadoist, @@ -287148,6 +293399,8 @@ github.com/badhouseplants/envspotting-go-proto,num_dependents_deps.dev:0 github.com/badhrudeen/generator-radboard,num_dependents_deps.dev:0 github.com/badhrudeen/generator-radiationboard,num_dependents_deps.dev:0 github.com/badico-cloud-hub/battery-go,num_dependents_deps.dev:0 +github.com/badico-cloud-hub/create-release-with-tag, +github.com/badico-cloud-hub/pr-is-rebased, github.com/badihi/code-push-server,num_dependents_deps.dev:0 github.com/badihi/vue-error-page,num_dependents_deps.dev:0 github.com/badihi/vuex-module-accessor,num_dependents_deps.dev:0 @@ -287224,6 +293477,7 @@ github.com/badre429/file-icons,num_dependents_deps.dev:0 github.com/badri/generator-drupalentities,num_dependents_deps.dev:0 github.com/badrinathvm/StepperView,criticality_score:0.324880 github.com/badrisugavanam/protractor-angulardatePicker,num_dependents_deps.dev:0 +github.com/badrlarhdir/ec2-github-runner, github.com/badrpc/detach,num_dependents_deps.dev:0 github.com/badrun-bandi/react-native-scroll-card,num_dependents_deps.dev:0 github.com/badrusalsyihab/kumpulan-ionic4-component,num_dependents_deps.dev:0 @@ -287231,6 +293485,12 @@ github.com/badryan/node-files-pitft-touch,num_dependents_deps.dev:0 github.com/badryoubiidrissi/ometrics, github.com/badsmuggler/locomotive-scroll,num_dependents_deps.dev:0 github.com/badsyntax/generator-react-seed,num_dependents_deps.dev:0 +github.com/badsyntax/github-action-aws-cloudformation, +github.com/badsyntax/github-action-aws-cloudfront, +github.com/badsyntax/github-action-aws-s3, +github.com/badsyntax/github-action-aws-static-stack, +github.com/badsyntax/github-action-issue-comment, +github.com/badsyntax/github-action-render-template, github.com/badsyntax/handlebars-form-helpers,num_dependents_deps.dev:0 github.com/badsyntax/lamernews-api-client,num_dependents_deps.dev:0 github.com/badsyntax/mailinabox-api,num_dependents_deps.dev:0 @@ -287364,6 +293624,7 @@ github.com/bagaskarawg/tabvuelar,num_dependents_deps.dev:0 github.com/bagaswh/coronavirus-tracker,num_dependents_deps.dev:0 github.com/bagby/ember-share-buttons, github.com/bagbyte/angular2-bootstrap-form,num_dependents_deps.dev:0 +github.com/bagbyte/use-private-action, github.com/bagd1k/leroque, github.com/bagdeabhishek/telegram_bot, github.com/bagdemir/rhino,num_dependents_deps.dev:0 @@ -288296,6 +294557,7 @@ github.com/baijunjie/mainloop, github.com/baijunjie/module-factory,num_dependents_deps.dev:8 github.com/baijunjie/progress.js,num_dependents_deps.dev:0 github.com/baijunjie/react-native-input-scroll-view,num_dependents_deps.dev:0 +github.com/baijunyao/action-slack-notify, github.com/baijunyao/laravel-bjyblog,criticality_score:0.398670 github.com/baikalai/baikalai-apis, github.com/baikalai/baikalnlpy, @@ -288455,6 +294717,7 @@ github.com/bajaniyarohit/vue-split-panel,num_dependents_deps.dev:6 github.com/bajankristof/dot-values,num_dependents_deps.dev:0 github.com/bajankristof/nedb-models,num_dependents_deps.dev:0 github.com/bajankristof/nedb-promises,num_dependents_deps.dev:22 +github.com/bajankristof/setup-erlang, github.com/bajansen/experia-v10-exporter,num_dependents_deps.dev:0 github.com/bajatin/ctft, github.com/bajax/ez-cli,num_dependents_deps.dev:0 @@ -288535,6 +294798,7 @@ github.com/bakdata/streams-explorer, github.com/bake/qual-o-mat,num_dependents_deps.dev:0 github.com/baked-dev/go_snowflakes,num_dependents_deps.dev:0 github.com/baked-libs/dough,num_dependents_deps.dev:0 +github.com/baked-libs/maven-discord-integration, github.com/bakedbean/proximity-search,num_dependents_deps.dev:0 github.com/bakenezumi/domala,num_dependents_deps.dev:1 github.com/bakenezumi/grpc-cli-sbt,num_dependents_deps.dev:0 @@ -288581,6 +294845,7 @@ github.com/bakerface/wireless-tools,num_dependents_deps.dev:12 github.com/bakerface/ziploc,num_dependents_deps.dev:0 github.com/bakerface/ziploc-request-parser,num_dependents_deps.dev:0 github.com/bakerj417/compare-object-path,num_dependents_deps.dev:0 +github.com/bakerkretzmar/cd-public-test-action, github.com/bakerkretzmar/tailwindcss-empty,num_dependents_deps.dev:0 github.com/bakermat/karoosync, github.com/bakermat/suffersync, @@ -288709,6 +294974,7 @@ github.com/bakumenko/wbtech-level-2,num_dependents_deps.dev:0 github.com/bakunin95/relex,num_dependents_deps.dev:0 github.com/bakunin95/wavi,num_dependents_deps.dev:0 github.com/bakunyo/bugsnag-sourcemap-webpack-plugin,num_dependents_deps.dev:0 +github.com/bakunyo/git-pr-release-action, github.com/bakurin/payyo-sdk-go-client,num_dependents_deps.dev:0 github.com/bakurits/mattermost-plugin-anonymous,num_dependents_deps.dev:0 github.com/bakurits/mattermost-plugin-splunk,num_dependents_deps.dev:0 @@ -288730,6 +294996,7 @@ github.com/bal3000/go-products,num_dependents_deps.dev:0 github.com/bal3000/pokecentreapi,num_dependents_deps.dev:0 github.com/bala-webd/bankdenoms,num_dependents_deps.dev:0 github.com/bala-webd/quiz_go,num_dependents_deps.dev:0 +github.com/bala2it4u/dmh, github.com/bala83/node-red-contrib-soap, github.com/bala92x/budavolgyi-balint-cv,num_dependents_deps.dev:0 github.com/bala94/redux-breakpoint,num_dependents_deps.dev:0 @@ -288851,6 +295118,7 @@ github.com/balazshorvath/go-srv,num_dependents_deps.dev:0 github.com/balazsiisti/node-auth-app,num_dependents_deps.dev:0 github.com/balazskoti/ngx-oauth-client,num_dependents_deps.dev:0 github.com/balazsorban44/get-all-static-data,num_dependents_deps.dev:0 +github.com/balazsorban44/nissuer, github.com/balazsorban44/prop-comb,num_dependents_deps.dev:0 github.com/balazsorban44/use-form,num_dependents_deps.dev:0 github.com/balazsprehoda/blockchain-analyzer-intermediary,num_dependents_deps.dev:0 @@ -288867,6 +295135,7 @@ github.com/balboeng/sergeitter,num_dependents_deps.dev:0 github.com/balbuf/css-selector-inspector,num_dependents_deps.dev:0 github.com/balchua/demo,num_dependents_deps.dev:0 github.com/balchua/gireMock,num_dependents_deps.dev:0 +github.com/balchua/microk8s-actions, github.com/bald2b/codegen-example,num_dependents_deps.dev:0 github.com/bald2b/version-example,num_dependents_deps.dev:0 github.com/baldand/py-metal-compute, @@ -289097,6 +295366,7 @@ github.com/balena-io/balena-sdk,num_dependents_deps.dev:12 github.com/balena-io/balena-sdk-python, github.com/balena-io/balena-typescript-lib-skeleton,num_dependents_deps.dev:0 github.com/balena-io/balena-typescript-skeleton,num_dependents_deps.dev:0 +github.com/balena-io/deploy-to-balena-action, github.com/balena-io/doxx,num_dependents_deps.dev:0 github.com/balena-io/etcher,criticality_score:0.538480 github.com/balena-io/fleetops-os-update,num_dependents_deps.dev:0 @@ -289113,6 +295383,7 @@ github.com/balena-io/rfq,num_dependents_deps.dev:0 github.com/balena-io/sshproxy,num_dependents_deps.dev:0 github.com/balena-io/versionist, github.com/balena-io/wifi-connect,criticality_score:0.407310 +github.com/balena-labs-research/community-cli-action, github.com/balena-os/balena-cli,num_dependents_deps.dev:0 github.com/balena-os/balena-containerd,num_dependents_deps.dev:0 github.com/balena-os/balena-engine,criticality_score:0.633010 @@ -289135,6 +295406,7 @@ github.com/balerter/balerter,num_dependents_deps.dev:0 github.com/baleshwar55/ngrok,num_dependents_deps.dev:0 github.com/balesz/go,num_dependents_deps.dev:0 github.com/balesz/protoc-gen-tmpl,num_dependents_deps.dev:0 +github.com/balevine/mark-as-spam, github.com/balexand/sanity-previewable,num_dependents_deps.dev:0 github.com/balexliu/css-analyzer,num_dependents_deps.dev:0 github.com/baleyko/expatr,num_dependents_deps.dev:0 @@ -289263,8 +295535,10 @@ github.com/ballercat/momo-loader,num_dependents_deps.dev:0 github.com/ballercat/walt,num_dependents_deps.dev:30 github.com/ballercat/wasm-loader,num_dependents_deps.dev:6 github.com/ballercat/wasm-types,num_dependents_deps.dev:4 +github.com/ballerina-platform/ballerina-action, github.com/ballerina-platform/ballerina-lang,"criticality_score:0.810710,num_dependents_deps.dev:0" github.com/ballerina-platform/ballerina-release,num_dependents_deps.dev:0 +github.com/ballerina-platform/setup-ballerina, github.com/ballerinalang/connectors,num_dependents_deps.dev:0 github.com/balles/diagrams-ts,num_dependents_deps.dev:0 github.com/ballet/ballet, @@ -289273,6 +295547,7 @@ github.com/balliegojr/simple-dns,num_dependents_deps.dev:0 github.com/ballista-compute/ballista,"criticality_score:0.466650,num_dependents_deps.dev:15" github.com/ballista-compute/ballista-proto,num_dependents_deps.dev:0 github.com/ballista-compute/sqlparser-rs,criticality_score:0.435950 +github.com/ballistax/ansible-vault-action, github.com/balloob/deep-clone-simple,num_dependents_deps.dev:26 github.com/balloob/pychromecast,Google github.com/balloob/react-sidebar,num_dependents_deps.dev:18 @@ -289400,15 +295675,19 @@ github.com/balupton/bal-util, github.com/balupton/buildr,num_dependents_deps.dev:0 github.com/balupton/buildr.npm,num_dependents_deps.dev:18 github.com/balupton/cloudflare-stout-npm,num_dependents_deps.dev:0 +github.com/balupton/coffee4clients.npm, github.com/balupton/facebook-export-notes,num_dependents_deps.dev:0 github.com/balupton/filepad,num_dependents_deps.dev:0 github.com/balupton/history.js,num_dependents_deps.dev:2 github.com/balupton/html5edit,num_dependents_deps.dev:0 github.com/balupton/jquery-scrollto,num_dependents_deps.dev:0 +github.com/balupton/kitchensink.docpad, +github.com/balupton/less4clients.npm, github.com/balupton/nowpad,num_dependents_deps.dev:0 github.com/balupton/power-translate,num_dependents_deps.dev:0 github.com/balupton/pulverizr,num_dependents_deps.dev:0 github.com/balupton/simple-server, +github.com/balupton/watchersto.npm, github.com/baluworks/GeoFenceService,num_dependents_deps.dev:0 github.com/balvarezbuylla/node-gearman-status,num_dependents_deps.dev:0 github.com/balvig/chili,num_dependents_deps.dev:0 @@ -289436,10 +295715,12 @@ github.com/bam4d/NTBEA, github.com/bam4d/RollingHorizonEvolutionaryAlgorithm, github.com/bam4d/python-microRTS, github.com/bam5/boxed-serial,num_dependents_deps.dev:0 +github.com/bamachoub/react-native-build-action, github.com/bamarni/composer-bin-plugin,criticality_score:0.320890 github.com/bamarni/symfony-console-autocomplete,criticality_score:0.387680 github.com/bambam2174/cordova-plugin-uwpbackbutton,num_dependents_deps.dev:0 github.com/bambam82/afvalwijzer, +github.com/bambamboole/gha-upmerge, github.com/bambamx/node-openid-request,num_dependents_deps.dev:0 github.com/bambattajb/node-server-check,num_dependents_deps.dev:0 github.com/bambeano/jwt-btoken,num_dependents_deps.dev:0 @@ -289625,6 +295906,7 @@ github.com/banada/aframe-food-component,num_dependents_deps.dev:0 github.com/banada/aframe-spawnpoint-component,num_dependents_deps.dev:0 github.com/banada/node-red-contrib-bluetooth,num_dependents_deps.dev:0 github.com/banada/node-red-contrib-bluetooth-serial,num_dependents_deps.dev:0 +github.com/banagale/bossbot-action, github.com/banago/PHPloy,criticality_score:0.515280 github.com/banago/Stickr.js,num_dependents_deps.dev:0 github.com/banaio/golang,num_dependents_deps.dev:0 @@ -289727,6 +296009,9 @@ github.com/bancoinplatform/bignumber,num_dependents_deps.dev:2 github.com/bancoinplatform/event-sender,num_dependents_deps.dev:0 github.com/bancoinplatform/marshall,num_dependents_deps.dev:2 github.com/bancoinplatform/oracle-data,num_dependents_deps.dev:0 +github.com/bancolombia/checkout-azure-repo, +github.com/bancolombia/opensource-innersource-toolkit, +github.com/bancolombia/submodule-network, github.com/bancorprotocol/bancor-sdk,num_dependents_deps.dev:0 github.com/bancorprotocol/contracts,num_dependents_deps.dev:0 github.com/bancorprotocol/contracts-solidity,"criticality_score:0.531100,num_dependents_deps.dev:0" @@ -289862,6 +296147,7 @@ github.com/bang88/rjs-it,num_dependents_deps.dev:0 github.com/bang88/swagger,num_dependents_deps.dev:2 github.com/bang88/typescript-react-intl,num_dependents_deps.dev:0 github.com/bang88/webpack-modular-typescript-import,num_dependents_deps.dev:0 +github.com/bang9/issue-to-readme, github.com/bang9/react-native-kakao-logo,num_dependents_deps.dev:0 github.com/bang9211/ossicones,num_dependents_deps.dev:0 github.com/banga/git-split-diffs, @@ -289985,6 +296271,7 @@ github.com/bankair/gegene,num_dependents_deps.dev:0 github.com/bankdefi/bdswap-sdk,num_dependents_deps.dev:0 github.com/banked/banked-node,num_dependents_deps.dev:0 github.com/banked/banked-react-native-sdk,num_dependents_deps.dev:0 +github.com/bankfliptech/deploy-to-render, github.com/bankifyio/redux-persist-realm,num_dependents_deps.dev:0 github.com/bankiru/grunt-stylus-base-files,num_dependents_deps.dev:0 github.com/banknovo/pool,num_dependents_deps.dev:0 @@ -290073,6 +296360,7 @@ github.com/bannsec/volatility_profile_builder, github.com/bannsec/wscat, github.com/banomaster/react-sidemenu,num_dependents_deps.dev:0 github.com/banool/circular_vec,num_dependents_deps.dev:0 +github.com/banool/gp-docker-action, github.com/banool/trapwords,num_dependents_deps.dev:0 github.com/banou26/steins-gate,num_dependents_deps.dev:0 github.com/banphlet/HubtelMobilePayment,num_dependents_deps.dev:0 @@ -290172,6 +296460,7 @@ github.com/banxi1988/vscode-go-snippets,num_dependents_deps.dev:0 github.com/banxi1988/vue-ex-types,num_dependents_deps.dev:0 github.com/banxi1988/vue-geventbus,num_dependents_deps.dev:0 github.com/banxi1988/wechat-mp-types,num_dependents_deps.dev:0 +github.com/banyan/auto-label, github.com/banyan/emoji-annotation-to-unicode,num_dependents_deps.dev:18 github.com/banyan/emoji-emoticon-to-unicode,num_dependents_deps.dev:16 github.com/banyan/gzip-brunch,num_dependents_deps.dev:0 @@ -290353,6 +296642,7 @@ github.com/baotao2006/censorify,num_dependents_deps.dev:0 github.com/baotingfang/skyfree-lib, github.com/baotingfang/travis-ci-example,num_dependents_deps.dev:0 github.com/baotoan1905/rn-resumablejs,num_dependents_deps.dev:0 +github.com/baotran2207/aws-chalice-cdk-action, github.com/baowenbo/DAIN,criticality_score:0.350110 github.com/baoxd/depsSerch,num_dependents_deps.dev:0 github.com/baoxd/imageMerge,num_dependents_deps.dev:0 @@ -290403,6 +296693,7 @@ github.com/bapti/dumper-truck,num_dependents_deps.dev:0 github.com/bapti/haar,num_dependents_deps.dev:0 github.com/bapti/hexo-generator-cname,num_dependents_deps.dev:0 github.com/baptiste-bellot/loopback-connector-nedb,num_dependents_deps.dev:0 +github.com/baptiste0928/cargo-install, github.com/baptiste333/BSserver,num_dependents_deps.dev:0 github.com/baptiste333/simpleusermanager, github.com/baptisteArnaud/webflow-to-gatsby,num_dependents_deps.dev:0 @@ -290539,6 +296830,7 @@ github.com/baranskistad/nift,num_dependents_deps.dev:0 github.com/baransu/carbon-cli,num_dependents_deps.dev:0 github.com/baransu/elm-docs,num_dependents_deps.dev:0 github.com/baransu/graphql_ppx_re,num_dependents_deps.dev:0 +github.com/baranwang/dlercloud-checkin-action, github.com/baranwang/kbone-typings,num_dependents_deps.dev:0 github.com/baranwang/kuaidi100-api,num_dependents_deps.dev:0 github.com/baranwang/strapi-provider-upload-cos,num_dependents_deps.dev:0 @@ -290736,7 +297028,10 @@ github.com/bardzusny/ember-data-non-restful-actions,num_dependents_deps.dev:0 github.com/bardzusny/swaggerize-restify,num_dependents_deps.dev:0 github.com/bare-bones/scalp,num_dependents_deps.dev:0 github.com/barecheck/barecheck-cli,num_dependents_deps.dev:0 +github.com/barecheck/code-coverage-action, github.com/barecheck/eslint-config-barecheck-base,num_dependents_deps.dev:0 +github.com/barecheck/google-chat-message-action, +github.com/barecheck/newrelic-metric-action, github.com/barecool/vue-cli-plugin-gas-ab,num_dependents_deps.dev:0 github.com/barefootnetworks/Open-Tofino, github.com/barefootnetworks/SAI, @@ -290766,6 +297061,7 @@ github.com/barelyhuman/statico,num_dependents_deps.dev:0 github.com/barelyhuman/taco-datepicker,num_dependents_deps.dev:0 github.com/barelyhuman/themer,num_dependents_deps.dev:0 github.com/barelyhuman/wrap,num_dependents_deps.dev:0 +github.com/barelylabs/planetscale-action, github.com/baremetalcloud/common-codeblock,num_dependents_deps.dev:0 github.com/baremetalcloud/multiplatform-file,num_dependents_deps.dev:0 github.com/baremetalcloud/multiplatform-runblocking,num_dependents_deps.dev:0 @@ -290851,6 +297147,8 @@ github.com/barisates/react-valid-form,num_dependents_deps.dev:0 github.com/barisaydinoglu/Detectizr,num_dependents_deps.dev:0 github.com/barisbalic/genoset-alcohol-flush-reaction,num_dependents_deps.dev:0 github.com/barisbora/bootstrap-editable,num_dependents_deps.dev:0 +github.com/barisbored/kekw, +github.com/bariscanyilmaz/paste-secret, github.com/bariscanyilmaz/text-reverse,num_dependents_deps.dev:0 github.com/bariscicek/gulp-loopback-typescript,num_dependents_deps.dev:0 github.com/barisesen/h3ll00,num_dependents_deps.dev:0 @@ -291021,6 +297319,7 @@ github.com/barnjamin/algorand-session-wallet,num_dependents_deps.dev:0 github.com/barnjamin/bigfloat,num_dependents_deps.dev:0 github.com/barno1994/amazon_search_scraper_bc, github.com/barnpros/eslint-config-barnpros,num_dependents_deps.dev:0 +github.com/barnumbirr/action-forge-publish, github.com/barnumbirr/ares, github.com/barnumbirr/certifier, github.com/barnumbirr/coinmarketcap, @@ -291067,6 +297366,7 @@ github.com/baroquehq/baroque, github.com/baroquon/ember-daily-drip-feed, github.com/baroquon/ember-keyboard-navigable-list, github.com/barosl/homu, +github.com/barpilot/captain-actions, github.com/barqshasbite/django-admin-model-filters, github.com/barqshasbite/filebeat-scrubber, github.com/barrabinfc/upnp-map, @@ -291381,6 +297681,7 @@ github.com/bartholomews/scala-iso,num_dependents_deps.dev:0 github.com/bartholomews/scalatestudo,num_dependents_deps.dev:0 github.com/barthy-koeln/scroll-snap-slider, github.com/barthy-koeln/vue-smooth-reveal,num_dependents_deps.dev:0 +github.com/bartick/custom-interactions, github.com/bartick/pyrpc-discord, github.com/bartimaeus/aws-deploy-scripts,num_dependents_deps.dev:0 github.com/bartimaeus/components,num_dependents_deps.dev:0 @@ -291409,6 +297710,7 @@ github.com/bartlomiejzuber/useOpenInWindow,num_dependents_deps.dev:0 github.com/bartlomn/react-viewstack,num_dependents_deps.dev:0 github.com/bartlss/mui-virtualized-grid,num_dependents_deps.dev:0 github.com/bartmachielsen/SupermarktConnector, +github.com/bartmachielsen/dependabot-private-release-notify, github.com/bartmachielsen/django-translate-po-files, github.com/bartmachielsen/pip-staticify, github.com/bartmachielsen/tmxt, @@ -291532,6 +297834,7 @@ github.com/baruchel/continuation, github.com/baruchel/karatsuba, github.com/baruchel/lambdascript, github.com/baruchel/tco, +github.com/baruchiro/github-actions, github.com/baruchiro/pursuit-rotor-task,num_dependents_deps.dev:0 github.com/baruchiro/use-route-as-state,num_dependents_deps.dev:0 github.com/baruchlogic/textbook,num_dependents_deps.dev:0 @@ -291598,6 +297901,7 @@ github.com/bas080/knest,num_dependents_deps.dev:0 github.com/bas080/lucene-query-string-builder,num_dependents_deps.dev:0 github.com/bas080/spyn,num_dependents_deps.dev:0 github.com/bas2k/jquery.appear,num_dependents_deps.dev:0 +github.com/basaldev/yarn-npm-audit-action, github.com/basalovyurij/nlp-text-search, github.com/basalt/python-basalt, github.com/basaltinc/bedrock,num_dependents_deps.dev:0 @@ -291667,6 +297971,8 @@ github.com/basbase/is-defined-type,num_dependents_deps.dev:0 github.com/bascan/jedis-pojo,num_dependents_deps.dev:0 github.com/bascan/sqs-dropwizard,num_dependents_deps.dev:0 github.com/baschno/pyvdr, +github.com/baschny/append-buildx-action, +github.com/baschny/php-composer-action, github.com/baschoj/sendgrid-rs,num_dependents_deps.dev:0 github.com/bascht/stickler-mirror,num_dependents_deps.dev:0 github.com/basd1995/biz-Pine,num_dependents_deps.dev:0 @@ -291674,6 +297980,7 @@ github.com/basd4g/gimonfu,num_dependents_deps.dev:0 github.com/basd4g/mopm,num_dependents_deps.dev:0 github.com/basdelfos/homebridge-esphome,num_dependents_deps.dev:0 github.com/basdelfos/homebridge-tuya-web,num_dependents_deps.dev:0 +github.com/basdp/sonarqube-action, github.com/base-angewandte/base-ui-components,num_dependents_deps.dev:0 github.com/base-angewandte/ui-components,num_dependents_deps.dev:0 github.com/base-api-io/base-node,num_dependents_deps.dev:0 @@ -291713,6 +298020,7 @@ github.com/base698/Informant,num_dependents_deps.dev:0 github.com/base698/Sider,num_dependents_deps.dev:0 github.com/base7/expressjs-generator,num_dependents_deps.dev:0 github.com/base86inc/base86-apollo-client,num_dependents_deps.dev:0 +github.com/baseballyama/ai-review-flex, github.com/basebandit/godatastructures,num_dependents_deps.dev:0 github.com/basebit/typeorm,num_dependents_deps.dev:0 github.com/basebytes/workerpool,num_dependents_deps.dev:0 @@ -291734,6 +298042,7 @@ github.com/basecue/cue, github.com/based-ghost/react-functional-select,num_dependents_deps.dev:4 github.com/based-ghost/vue-date-picker-lite,num_dependents_deps.dev:0 github.com/basedrhys/github-scraper, +github.com/basefas/upload-release-asset-action, github.com/basejs/tmp,num_dependents_deps.dev:0 github.com/basekit/google-webfonts-json-encoder,num_dependents_deps.dev:0 github.com/basekit/migrate,num_dependents_deps.dev:0 @@ -291752,6 +298061,7 @@ github.com/basekits/kit-validator,num_dependents_deps.dev:0 github.com/baselabujamous/clust, github.com/baselakasha/touchweb,num_dependents_deps.dev:0 github.com/baselbj/react-native-lock-orientation,num_dependents_deps.dev:0 +github.com/baselime/action-setup-baselime, github.com/baseline-dev/fireplace,num_dependents_deps.dev:0 github.com/baseline-dev/gaffertape,num_dependents_deps.dev:0 github.com/baseline-dev/koa-session-dynamodb-store,num_dependents_deps.dev:0 @@ -291982,6 +298292,7 @@ github.com/basic-components/loggerhelper,num_dependents_deps.dev:0 github.com/basic-components/thompsonsampling-orderrpc,num_dependents_deps.dev:0 github.com/basic-web-components/basic-web-components,num_dependents_deps.dev:15 github.com/basicBrogrammer/cra-template-basic-game,num_dependents_deps.dev:0 +github.com/basicBrogrammer/crosspost-markdown, github.com/basicallydan/eventedloop,num_dependents_deps.dev:0 github.com/basicallydan/forkability,num_dependents_deps.dev:0 github.com/basicallydan/interfake,"criticality_score:0.356080,num_dependents_deps.dev:4" @@ -292012,6 +298323,7 @@ github.com/basicv8vc/miniautodiff, github.com/basicwolf/concrete-settings, github.com/basicwolf/kaylee, github.com/basicwolf/pyregs, +github.com/basigabri/helm-github-actions, github.com/basil-conto/pifra,num_dependents_deps.dev:0 github.com/basil1112/console-logger,num_dependents_deps.dev:0 github.com/basilapi/basil,num_dependents_deps.dev:14 @@ -292107,6 +298419,7 @@ github.com/baskoopmans/django-aloha-editor, github.com/baskoopmans/django-filters, github.com/baskoopmans/djcommon, github.com/baskoopmans/python-zanox-api, +github.com/baskrahmer/appwrite-cd, github.com/baskt/baskt-python, github.com/basktballer/eden-very-cool-component,num_dependents_deps.dev:0 github.com/basler/pylon-ros-camera,Google @@ -292339,6 +298652,7 @@ github.com/bastienterrier/test-webhook,num_dependents_deps.dev:0 github.com/bastienvinh/easy-emitter,num_dependents_deps.dev:0 github.com/bastienvinh/express-ipfilter,num_dependents_deps.dev:0 github.com/bastienwirtz/homer,criticality_score:0.481350 +github.com/bastihav/scalatest-multiproject-html-action, github.com/bastiion/paper-chip,num_dependents_deps.dev:0 github.com/bastikr/boolean.py, github.com/bastikr/sphinx-julia, @@ -292448,6 +298762,7 @@ github.com/bateast2/gulp-svg-inject, github.com/batect/abacus,num_dependents_deps.dev:0 github.com/batect/batect,criticality_score:0.536580 github.com/batect/batect-cache-init-image,num_dependents_deps.dev:0 +github.com/batect/batect-wrapper-validation-action, github.com/batect/service-observability,num_dependents_deps.dev:0 github.com/batect/updates.batect.dev,num_dependents_deps.dev:0 github.com/batemir/project-lvl1-s220,num_dependents_deps.dev:0 @@ -292478,6 +298793,7 @@ github.com/batilc1/fs-list,num_dependents_deps.dev:0 github.com/batilc1/remzi-bot,num_dependents_deps.dev:0 github.com/batimentb/parchemin,num_dependents_deps.dev:0 github.com/batiscuff/tg_booster,num_dependents_deps.dev:0 +github.com/batista/lint-filenames, github.com/batistajb/formato-data-brasileiro,num_dependents_deps.dev:0 github.com/batistajb/valida,num_dependents_deps.dev:0 github.com/batiste/CokeScript,num_dependents_deps.dev:0 @@ -292515,6 +298831,7 @@ github.com/batoulapps/adhan-java,num_dependents_deps.dev:0 github.com/batoulapps/adhan-js, github.com/batoure/angular-base64,num_dependents_deps.dev:0 github.com/batpad/clip-and-run,num_dependents_deps.dev:0 +github.com/batpool/digitalocean-github-runner, github.com/batra-mlp-lab/pcloudcv, github.com/batraabhishek/datetime-converter-nodejs,num_dependents_deps.dev:0 github.com/batrashubham/react-duration-widget,num_dependents_deps.dev:0 @@ -292544,6 +298861,8 @@ github.com/battila7/burette,num_dependents_deps.dev:0 github.com/battila7/downson-js,num_dependents_deps.dev:0 github.com/battila7/downson-js-cli,num_dependents_deps.dev:0 github.com/battila7/exist-query,num_dependents_deps.dev:0 +github.com/battila7/get-version-action, +github.com/battila7/jdk-via-jabba, github.com/battila7/konvenient,num_dependents_deps.dev:0 github.com/battila7/signun,num_dependents_deps.dev:0 github.com/battila7/spid,num_dependents_deps.dev:0 @@ -292637,6 +298956,7 @@ github.com/baudev/motion-project-api,num_dependents_deps.dev:0 github.com/baudicj/graphql-playground,num_dependents_deps.dev:0 github.com/baudisgroup/mecan4cna, github.com/baudisgroup/segment-liftover, +github.com/baudlord/kaniko-action, github.com/baudm/mplayer.py, github.com/baudneo/pyzm, github.com/baudo2048/ux-cli, @@ -292867,6 +299187,7 @@ github.com/bayguh/go-sample,num_dependents_deps.dev:0 github.com/bayinf/bayinf, github.com/baykovaes/project,num_dependents_deps.dev:0 github.com/baymac/material-ui-cron,num_dependents_deps.dev:0 +github.com/baymac/upload-pdf-to-drive, github.com/baymax1402/cli-create,num_dependents_deps.dev:0 github.com/baymax1402/components,num_dependents_deps.dev:0 github.com/baymax1402/npm,num_dependents_deps.dev:0 @@ -292895,6 +299216,9 @@ github.com/bayrell/bayrell-io, github.com/bayrell/parcel-plugin-bayrell,num_dependents_deps.dev:0 github.com/bayrock/pokego-scan, github.com/bayrock/pokego-scanner,num_dependents_deps.dev:0 +github.com/bayssmekanique/action-md-concat, +github.com/bayssmekanique/action-simple-file-upload, +github.com/bayssmekanique/action-simple-slack-notifier, github.com/bayssmekanique/vue-click,num_dependents_deps.dev:0 github.com/baytechc/peertube-plugin-waasabi,num_dependents_deps.dev:0 github.com/baytechc/waasabi-matrix,num_dependents_deps.dev:0 @@ -293038,6 +299362,7 @@ github.com/bazelbuild/vim-ft-bzl,Google github.com/bazelbuild/vscode-bazel,Google github.com/bazerk/uk-modulus-checking, github.com/bazh/subtitles-parser,num_dependents_deps.dev:2 +github.com/bazhenov/action-avr-make, github.com/bazi/gsb4j,num_dependents_deps.dev:0 github.com/bazidibavaria/ioBroker.pegelalarm,num_dependents_deps.dev:0 github.com/bazidibavaria/ioBroker.powerfox,num_dependents_deps.dev:0 @@ -293106,11 +299431,14 @@ github.com/bb-frc-workshops/drivethru,num_dependents_deps.dev:0 github.com/bb-frc-workshops/wpilib-ws-robot,num_dependents_deps.dev:0 github.com/bb-frc-workshops/wpilib-ws-robot-romi,num_dependents_deps.dev:0 github.com/bb-frc-workshops/wpilib-ws-server,num_dependents_deps.dev:16 +github.com/bb-labs/awyes, github.com/bb-labs/monet,num_dependents_deps.dev:0 +github.com/bb-labs/pypiinthesky, github.com/bb-tb-abhishek/module,num_dependents_deps.dev:0 github.com/bb/subj3ct,num_dependents_deps.dev:0 github.com/bb010g/baimax,num_dependents_deps.dev:0 github.com/bb010g/penny,num_dependents_deps.dev:0 +github.com/bb010g/reviewdog-action-vimlint, github.com/bb010g/rust-hsluv,num_dependents_deps.dev:0 github.com/bb30/adbackup,num_dependents_deps.dev:0 github.com/bb4242/sdnotify, @@ -293126,6 +299454,7 @@ github.com/bb595700239/vue-pull-infinite-scroller,num_dependents_deps.dev:0 github.com/bb7133/parser,num_dependents_deps.dev:0 github.com/bb7133/tidb,num_dependents_deps.dev:0 github.com/bb7bb/v-music,num_dependents_deps.dev:0 +github.com/bb7hn/notion_committer, github.com/bbBobbyEarl/grunt-nugetter,num_dependents_deps.dev:2 github.com/bbNPM/cra-template-bb-typescript-temp,num_dependents_deps.dev:0 github.com/bbaattaahh/okiti_cnt_to_cnt2, @@ -293149,6 +299478,7 @@ github.com/bbangert/openid-redis, github.com/bbangert/routes,Google github.com/bbangert/typesafe-node-firestore,num_dependents_deps.dev:0 github.com/bbangert/zilch, +github.com/bbangjooo/ecs-events-lambda, github.com/bbangssil/07_Lab_skku-stat, github.com/bbarakaci/fixto,num_dependents_deps.dev:0 github.com/bbarcesaj125/imgdb, @@ -293162,6 +299492,7 @@ github.com/bbarr/medium,num_dependents_deps.dev:30 github.com/bbarr/ulmus,num_dependents_deps.dev:0 github.com/bbarreto/sinesp-nodejs,num_dependents_deps.dev:0 github.com/bbarrows/koa-throttle,num_dependents_deps.dev:0 +github.com/bbasinski/setup-cordova, github.com/bbatalo/block, github.com/bbathe/golog,num_dependents_deps.dev:0 github.com/bbatliner/electron-wrapper,num_dependents_deps.dev:0 @@ -293291,6 +299622,7 @@ github.com/bbc/webpack-s3-uploader,num_dependents_deps.dev:0 github.com/bbc/wraith,criticality_score:0.359930 github.com/bbc/zeroconf_monkey, github.com/bbc2/shuffled, +github.com/bbcCorp/kafka-actions, github.com/bbcclolo/coco,num_dependents_deps.dev:0 github.com/bbcho/finoptions-dev, github.com/bbcho/quilter-dev, @@ -293332,6 +299664,10 @@ github.com/bbecquet/updatable-priority-queue,num_dependents_deps.dev:10 github.com/bbeesley/async-fs, github.com/bbeesley/aws-blue-green-toolkit,num_dependents_deps.dev:0 github.com/bbeesley/aws-xray-koa-middleware,num_dependents_deps.dev:0 +github.com/bbeesley/build-test-merge-publish, +github.com/bbeesley/gha-auto-dependabot-rebase, +github.com/bbeesley/gha-check-for-running-deployments, +github.com/bbeesley/gha-notify-teams-on-release, github.com/bbeesley/middy-koa-wrapper,num_dependents_deps.dev:0 github.com/bbeesley/node-bullet,num_dependents_deps.dev:0 github.com/bbeesley/p-queue-compat,num_dependents_deps.dev:0 @@ -293434,6 +299770,7 @@ github.com/bbitmaster/ale_python_interface, github.com/bbits/apns-worker, github.com/bbiw/correct-horse, github.com/bbjiqqai/com.chinamobile.gdwy.signalLevel,num_dependents_deps.dev:0 +github.com/bbjoern/upload-google-play, github.com/bbjxl/minui,num_dependents_deps.dev:2 github.com/bbk47/toolbox,num_dependents_deps.dev:0 github.com/bbkane/grabbit,num_dependents_deps.dev:0 @@ -293504,6 +299841,10 @@ github.com/bbonislawski/rails-skipper,num_dependents_deps.dev:0 github.com/bbonkr/bbon-filedownload,num_dependents_deps.dev:0 github.com/bbonkr/bbon-formatter,num_dependents_deps.dev:0 github.com/bbonkr/css-to-jss,num_dependents_deps.dev:0 +github.com/bbonkr/get-overview-of-pull-requests-action, +github.com/bbonkr/get-version-action, +github.com/bbonkr/git-tag-check-action, +github.com/bbonkr/next-version-proposal-action, github.com/bbonnin/h,num_dependents_deps.dev:0 github.com/bbonnin/pulsar-express,num_dependents_deps.dev:0 github.com/bbonnin/saagie-cli,num_dependents_deps.dev:0 @@ -293695,6 +300036,7 @@ github.com/bbuecherl/esdoc-node-plugin,num_dependents_deps.dev:2 github.com/bbuecherl/esdoc-var-plugin,num_dependents_deps.dev:0 github.com/bbuecherl/initialsemitter,num_dependents_deps.dev:0 github.com/bbuecherl/node-is,num_dependents_deps.dev:0 +github.com/bbugh/action-fixme-check, github.com/bbugyi200/basher, github.com/bbugyi200/clap, github.com/bbugyi200/cldr, @@ -293794,6 +300136,7 @@ github.com/bcabanes/node-wp-to-json,num_dependents_deps.dev:0 github.com/bcabanes/simpsons-names,num_dependents_deps.dev:0 github.com/bcaccinolo/routes,num_dependents_deps.dev:0 github.com/bcafuk/canvas-gif-encoder, +github.com/bcaglaraydin/s3_test_report_repo_maker, github.com/bcajes/makosg, github.com/bcakmakoglu/nuxt-muuri,num_dependents_deps.dev:0 github.com/bcakmakoglu/nuxt-xstate,num_dependents_deps.dev:0 @@ -293818,6 +300161,7 @@ github.com/bcampbell/scrapeomat,num_dependents_deps.dev:0 github.com/bcampbell/steno,num_dependents_deps.dev:0 github.com/bcandullo/muxley,num_dependents_deps.dev:0 github.com/bcanfield/gantt,num_dependents_deps.dev:0 +github.com/bcanseco/github-contribution-graph-action, github.com/bcantera/pyute, github.com/bcap/elasticsearch-concurrent-update,num_dependents_deps.dev:0 github.com/bcard/iterative-permutation,num_dependents_deps.dev:0 @@ -293870,8 +300214,10 @@ github.com/bcdbuddy/node-paps,num_dependents_deps.dev:0 github.com/bcdbuddy/processor,num_dependents_deps.dev:0 github.com/bcdbuddy/validator,num_dependents_deps.dev:0 github.com/bcdev/jpy, +github.com/bcdevices/pltcloud-action, github.com/bcdevops/nrdk,num_dependents_deps.dev:0 github.com/bcdice/bcdice-js,num_dependents_deps.dev:0 +github.com/bcdonadio/bcd-super-linter, github.com/bcdtriptech/terraform-provider-gitcrypt,num_dependents_deps.dev:0 github.com/bcebigdata/kafka-sample-golang,num_dependents_deps.dev:0 github.com/bcecchinato/spring-postinitialize,num_dependents_deps.dev:3 @@ -293895,6 +300241,14 @@ github.com/bcgalvin/metaflow-cdk,num_dependents_deps.dev:0 github.com/bcgit/bc-csharp,criticality_score:0.430260 github.com/bcgit/bc-java,"criticality_score:0.571760,num_dependents_deps.dev:131321" github.com/bcgodev/logrus-formatter-gke,num_dependents_deps.dev:0 +github.com/bcgov-nr/action-conditional-container-builder, +github.com/bcgov-nr/action-deployer-openshift, +github.com/bcgov-nr/action-get-pr, +github.com/bcgov-nr/action-gwa-publish, +github.com/bcgov-nr/action-pr-description-add, +github.com/bcgov-nr/action-test-and-analyse, +github.com/bcgov-nr/action-test-and-analyse-java, +github.com/bcgov-nr/action-vault-broker-approle, github.com/bcgov/MyGovBC-CAPTCHA-Widget,num_dependents_deps.dev:0 github.com/bcgov/bc-sans,num_dependents_deps.dev:2 github.com/bcgov/bcdc-test, @@ -294151,6 +300505,7 @@ github.com/bcoe/code-to-signal,num_dependents_deps.dev:0 github.com/bcoe/codecovorg,num_dependents_deps.dev:0 github.com/bcoe/conventional-changelog-standard,num_dependents_deps.dev:0 github.com/bcoe/conventional-recommended-workflow,num_dependents_deps.dev:0 +github.com/bcoe/conventional-release-labels, github.com/bcoe/dotgitignore,num_dependents_deps.dev:1162 github.com/bcoe/endtable,num_dependents_deps.dev:0 github.com/bcoe/gce-ips,num_dependents_deps.dev:0 @@ -294289,10 +300644,12 @@ github.com/bcomnes/changelog-init,num_dependents_deps.dev:0 github.com/bcomnes/chicago.css, github.com/bcomnes/choo-location-electron,num_dependents_deps.dev:0 github.com/bcomnes/class-cache,num_dependents_deps.dev:0 +github.com/bcomnes/cleanup-xvfb, github.com/bcomnes/cpx2,num_dependents_deps.dev:6 github.com/bcomnes/csjs2,num_dependents_deps.dev:2 github.com/bcomnes/csjs2-inject,num_dependents_deps.dev:2 github.com/bcomnes/csjs2-injectify,num_dependents_deps.dev:0 +github.com/bcomnes/deploy-to-neocities, github.com/bcomnes/dom-event-handler,num_dependents_deps.dev:0 github.com/bcomnes/existy,num_dependents_deps.dev:20 github.com/bcomnes/expand-jsonfeed,num_dependents_deps.dev:0 @@ -294300,6 +300657,7 @@ github.com/bcomnes/fetch-errors,num_dependents_deps.dev:0 github.com/bcomnes/folderify2,num_dependents_deps.dev:0 github.com/bcomnes/fraktur.css,num_dependents_deps.dev:0 github.com/bcomnes/generate-feed,num_dependents_deps.dev:0 +github.com/bcomnes/get-git-tag, github.com/bcomnes/get-sign,num_dependents_deps.dev:0 github.com/bcomnes/getusermedia-to-text,num_dependents_deps.dev:0 github.com/bcomnes/gitpub,num_dependents_deps.dev:0 @@ -294321,10 +300679,12 @@ github.com/bcomnes/nacl-blob,num_dependents_deps.dev:0 github.com/bcomnes/nanoassert,num_dependents_deps.dev:0 github.com/bcomnes/nanocomponent-cache,num_dependents_deps.dev:0 github.com/bcomnes/nanomap,num_dependents_deps.dev:0 +github.com/bcomnes/netrc-creds, github.com/bcomnes/node-bearer-token,num_dependents_deps.dev:0 github.com/bcomnes/node-event-handler,num_dependents_deps.dev:0 github.com/bcomnes/node-tmpr,num_dependents_deps.dev:0 github.com/bcomnes/node-toolbox, +github.com/bcomnes/npm-bump, github.com/bcomnes/npm-run-all2,num_dependents_deps.dev:0 github.com/bcomnes/p-connect,num_dependents_deps.dev:0 github.com/bcomnes/p-temporary-directory,num_dependents_deps.dev:0 @@ -294566,6 +300926,7 @@ github.com/bdaenen/uWebSockets.js,num_dependents_deps.dev:0 github.com/bdager/pftracker, github.com/bdallen84088/tdoc-module-test-one,num_dependents_deps.dev:0 github.com/bdallen84088/testNgModule,num_dependents_deps.dev:0 +github.com/bdaloukas/moodle-mod_game, github.com/bdalpe/django-vouch-proxy-auth, github.com/bdangit/scm-gitlab,num_dependents_deps.dev:0 github.com/bdanzer/unoffical-mario-maker-api,num_dependents_deps.dev:0 @@ -294578,6 +300939,7 @@ github.com/bdarnell/torndb, github.com/bdash-app/bdash,criticality_score:0.333660 github.com/bdash/termion-input-tokio,num_dependents_deps.dev:0 github.com/bdashore3/typemap_rev,num_dependents_deps.dev:52 +github.com/bdashrad/git-chglog-action, github.com/bdashrad/hubot-bang-bang,num_dependents_deps.dev:0 github.com/bdashrad/hubot-futurama,num_dependents_deps.dev:0 github.com/bdashrad/hubot-istheinternetonfire, @@ -294722,6 +301084,7 @@ github.com/bdharris08/scorekeeper,num_dependents_deps.dev:0 github.com/bdhl/gremlin-js-driver,num_dependents_deps.dev:0 github.com/bdhobare/mpesa-android-sdk,num_dependents_deps.dev:0 github.com/bdhoine/dispatcher-config-generator,num_dependents_deps.dev:0 +github.com/bdhsu/upload-s3-action, github.com/bdhwan/kakao-sdk,num_dependents_deps.dev:0 github.com/bdhwan/kintone-node-vx,num_dependents_deps.dev:0 github.com/bdhwan/raccoon-azure-connect,num_dependents_deps.dev:0 @@ -294805,9 +301168,15 @@ github.com/bdougherty/jumper-message,num_dependents_deps.dev:0 github.com/bdougherty/jumper-message-cli,num_dependents_deps.dev:0 github.com/bdougherty/mrm-task-ava,num_dependents_deps.dev:0 github.com/bdougherty/mrm-task-xo,num_dependents_deps.dev:0 +github.com/bdougie/close-issues-based-on-label, +github.com/bdougie/gipht-action, +github.com/bdougie/invite-based-on-comment, +github.com/bdougie/issue-pin-by-label, github.com/bdougie/octoherd-script-copy-labels,num_dependents_deps.dev:0 github.com/bdougie/octoherd-script-valid-pr,num_dependents_deps.dev:0 +github.com/bdougie/take-action, github.com/bdougie/theWeekNum,num_dependents_deps.dev:0 +github.com/bdougie/variables-in-markdown, github.com/bdowdell/cuffnote, github.com/bdowning/liter,num_dependents_deps.dev:0 github.com/bdowning/opentracing-compose, @@ -294858,6 +301227,8 @@ github.com/bdryanovski/securitytxt,num_dependents_deps.dev:0 github.com/bdryanovski/space-forest,num_dependents_deps.dev:0 github.com/bdryanovski/tweetit,num_dependents_deps.dev:0 github.com/bds/iraq_unrest,num_dependents_deps.dev:0 +github.com/bds1959/my-dockerbuild, +github.com/bds1959/test-github-action, github.com/bdscharf/flake8_loopy, github.com/bdsm-spuddy/chastikey-alexa,num_dependents_deps.dev:0 github.com/bdsoftpro/app,num_dependents_deps.dev:0 @@ -294882,6 +301253,7 @@ github.com/bdthinh/react-redux-application,num_dependents_deps.dev:0 github.com/bdthinh/simple-json-api-normalize,num_dependents_deps.dev:0 github.com/bdube/stilt, github.com/bduff9/bulma_scss,num_dependents_deps.dev:0 +github.com/bduff9/use-npmrc, github.com/bduffany/cssbuild,num_dependents_deps.dev:0 github.com/bduisenov/cca,num_dependents_deps.dev:0 github.com/bduisenov/fn,num_dependents_deps.dev:0 @@ -294989,6 +301361,7 @@ github.com/beaelf/github-actions,num_dependents_deps.dev:0 github.com/beaespi/countrystatecitylist,num_dependents_deps.dev:0 github.com/beagleboard/linux,criticality_score:0.683960 github.com/beaglecli/beagle, +github.com/beaglesecurity/beagle-github-action, github.com/beagleswap/beagle-uikit, github.com/beagulsmile/myModule,num_dependents_deps.dev:0 github.com/beaharvie/number-formatter,num_dependents_deps.dev:0 @@ -294997,6 +301370,7 @@ github.com/beak-lab/jquery-taphold,num_dependents_deps.dev:0 github.com/beakbeak/aurelius,num_dependents_deps.dev:0 github.com/beaker/client,num_dependents_deps.dev:0 github.com/beaker/fileheap,num_dependents_deps.dev:0 +github.com/beaker/image-builder, github.com/beaker/runtime,num_dependents_deps.dev:0 github.com/beaker/unique,num_dependents_deps.dev:1 github.com/beakerbrowser/beaker,criticality_score:0.587310 @@ -295322,6 +301696,7 @@ github.com/beardon/server-error-pages,num_dependents_deps.dev:0 github.com/beardon/terravion-api,num_dependents_deps.dev:0 github.com/beardon/winston-sequelize,num_dependents_deps.dev:0 github.com/beardon/with-process-env,num_dependents_deps.dev:0 +github.com/beards-and-binary/json-replace, github.com/beardsleyn/go-twitch,num_dependents_deps.dev:0 github.com/beardtree/node-googlecustomsearch,num_dependents_deps.dev:0 github.com/beardtree/present,num_dependents_deps.dev:282 @@ -295403,6 +301778,8 @@ github.com/beast/react-native-isDeviceRooted,num_dependents_deps.dev:0 github.com/beast911/vue-infinite-scroll,num_dependents_deps.dev:0 github.com/beastaugh/stylish,num_dependents_deps.dev:0 github.com/beastaugh/udon,num_dependents_deps.dev:0 +github.com/beastawakens/action-convox-multi-slim, +github.com/beastawakens/gigalixir-action, github.com/beastbikes/django-adminlte, github.com/beasteers/VGGish, github.com/beasteers/confuse_jinja, @@ -295425,6 +301802,7 @@ github.com/beastmode/miranda,num_dependents_deps.dev:0 github.com/beastwilson/intrepid-api,num_dependents_deps.dev:0 github.com/beastwilson/nodeyourmeme,num_dependents_deps.dev:0 github.com/beat-boards/beatmap-parser,num_dependents_deps.dev:0 +github.com/beat-forge/init-beatsaber, github.com/beat-no/roper, github.com/beat-no/sykel, github.com/beat-no/timestamper, @@ -295651,6 +302029,7 @@ github.com/beautywe/plugin-status,num_dependents_deps.dev:0 github.com/beautywe/plugin-storage, github.com/beauvilerobed/py-matrix-123, github.com/beauwest/business-date-parser,num_dependents_deps.dev:0 +github.com/beauwilliams/run-node-formatter, github.com/beave/sagan,criticality_score:0.394060 github.com/beaver91/mysql-eloquent,num_dependents_deps.dev:0 github.com/beaver91/slimphp,num_dependents_deps.dev:0 @@ -295662,6 +302041,7 @@ github.com/beaverteeth/pop-and-drop,num_dependents_deps.dev:0 github.com/beaverteeth/scrollomatic,num_dependents_deps.dev:0 github.com/beavis07/serverless-slack-plugin,num_dependents_deps.dev:0 github.com/beavyHQ/flask-icu, +github.com/beb0ng115/helloworld-marketplace, github.com/beb7/gflare-tk, github.com/bebanjo/almodovar,num_dependents_deps.dev:0 github.com/bebanjo/delorean,num_dependents_deps.dev:6 @@ -295779,6 +302159,8 @@ github.com/bebusinessfocus/aws-lambda-helpers,num_dependents_deps.dev:0 github.com/bebusinessfocus/logger,num_dependents_deps.dev:0 github.com/bebusinessfocus/mongo-db,num_dependents_deps.dev:0 github.com/bebz229/xlsx-keys-to-json, +github.com/bec-galaxy/setup-lint, +github.com/bec-galaxy/setup-molecule, github.com/becarchal/native-f2charts, github.com/becarchal/react-f2charts, github.com/becarchal/react-zoom-children,num_dependents_deps.dev:0 @@ -295827,6 +302209,7 @@ github.com/beckedorf/ng2-pdf-viewer,num_dependents_deps.dev:0 github.com/beckend/cmd-spawn,num_dependents_deps.dev:0 github.com/beckend/go-config,num_dependents_deps.dev:0 github.com/beckend/react-themeable-ts,num_dependents_deps.dev:0 +github.com/beckermr/turnstyle-python, github.com/beckerrh/simfempy, github.com/becketta/ctip, github.com/beckettjohnson/collaborative-filtering-algorithms-for-movie-recommendation,num_dependents_deps.dev:0 @@ -296009,6 +302392,7 @@ github.com/beeblebrox3/sbee,num_dependents_deps.dev:0 github.com/beeblebrox3/super-trim,num_dependents_deps.dev:0 github.com/beebotte/bbt_node,num_dependents_deps.dev:0 github.com/beeceej/beeceej.com,num_dependents_deps.dev:0 +github.com/beeceej/lgtm, github.com/beecode-rs/bc-msh,num_dependents_deps.dev:0 github.com/beecode-rs/msh-base-frame,num_dependents_deps.dev:0 github.com/beecode-rs/msh-cli,num_dependents_deps.dev:0 @@ -296072,6 +302456,7 @@ github.com/beehive-lab/TornadoVM,criticality_score:0.511160 github.com/beehivejs/beehive-core, github.com/beehivesIO/beehives,num_dependents_deps.dev:0 github.com/beehivesIO/beehives-boilerplate-nodejs,num_dependents_deps.dev:0 +github.com/beehivewarrior/bump_helm, github.com/beehyv/pdf-extractor,num_dependents_deps.dev:0 github.com/beeinger/create-lib-react,num_dependents_deps.dev:0 github.com/beeinger/next-progress, @@ -296138,10 +302523,12 @@ github.com/beemdevelopment/Aegis,criticality_score:0.516070 github.com/beemensameh/swissknife-tools,num_dependents_deps.dev:0 github.com/beemhq/aws-cron-parser,num_dependents_deps.dev:0 github.com/beemi/cypress-get-by-data-set-id, +github.com/beemi/puppeteer-headful, github.com/beemo-js/beemo,num_dependents_deps.dev:0 github.com/beemo-js/integration-web,num_dependents_deps.dev:0 github.com/beemojs/beemo,num_dependents_deps.dev:115 github.com/beemojs/conventional-changelog-beemo,num_dependents_deps.dev:6 +github.com/beemojs/conventional-pr-action, github.com/beemojs/dev,num_dependents_deps.dev:54 github.com/been-there-done-that/django_markdown, github.com/beenhere4hours/filter-validate,num_dependents_deps.dev:0 @@ -296291,7 +302678,10 @@ github.com/beerlington/herd,num_dependents_deps.dev:0 github.com/beerose/animated-emojis,num_dependents_deps.dev:0 github.com/beerose/commont,num_dependents_deps.dev:0 github.com/beerose/theme-ui-sketchy,num_dependents_deps.dev:0 +github.com/beerose/tsc-diff-action, github.com/beerose/use-comments,num_dependents_deps.dev:0 +github.com/beerpiss/procursus-action, +github.com/beerpiss/theos-action, github.com/beerproto/beerproto.go,num_dependents_deps.dev:0 github.com/beerproto/beerproto_go,num_dependents_deps.dev:0 github.com/beerproto/tools,num_dependents_deps.dev:0 @@ -296405,6 +302795,7 @@ github.com/befovy/ijkplayer,num_dependents_deps.dev:0 github.com/befunkyinc/esbuild-plugin-glslify-minify,num_dependents_deps.dev:0 github.com/begarland/create-react-app-typescript,num_dependents_deps.dev:0 github.com/begedin/ember-select-list,num_dependents_deps.dev:0 +github.com/begedin/variable-regex-extractor-action, github.com/begeeben/gaia-develop,num_dependents_deps.dev:0 github.com/begeekmyfriend/yasea,criticality_score:0.461520 github.com/begeh/lotide,num_dependents_deps.dev:0 @@ -296414,6 +302805,8 @@ github.com/begin0dev/api-validate-doc,num_dependents_deps.dev:0 github.com/begin0dev/express-swagger-validator, github.com/beginner-corp/generators,num_dependents_deps.dev:0 github.com/beginnerSC/pyminimax, +github.com/beginning-devops-lab/actions-cli-aws, +github.com/beginning-devops-lab/ci_tools, github.com/beginor/dx-locale-zh-cn,num_dependents_deps.dev:0 github.com/beginor/esri-service,num_dependents_deps.dev:0 github.com/beginor/ng-esri-service,num_dependents_deps.dev:0 @@ -296431,6 +302824,7 @@ github.com/begoniajs/begonia,num_dependents_deps.dev:0 github.com/begoniajs/begonia-bark,num_dependents_deps.dev:0 github.com/begoniajs/begonia-fn,num_dependents_deps.dev:0 github.com/begoniajs/begonia-leaf,num_dependents_deps.dev:0 +github.com/begoon/diskspace-action, github.com/begot/sails-hook-typescript,num_dependents_deps.dev:0 github.com/begriffs/angular-paginate-anything,num_dependents_deps.dev:0 github.com/begriffs/decaying-accumulator, @@ -296443,6 +302837,8 @@ github.com/begyy/PaycomUz, github.com/begyy/Yandexmaps, github.com/begyy/getsms, github.com/begyy/obhavo, +github.com/begyyal/act_await_workflow_runs, +github.com/begyyal/act_revise_comments, github.com/beha777/github-upload,num_dependents_deps.dev:0 github.com/beha777/monitorserver,num_dependents_deps.dev:0 github.com/behaack/FormManager,num_dependents_deps.dev:0 @@ -296514,6 +302910,7 @@ github.com/behboud/generator-alexa-ts,num_dependents_deps.dev:0 github.com/behboud/serverless-bespoken,num_dependents_deps.dev:0 github.com/behdad/icu-le-hb,Google github.com/behdadahmadi/jscrypt,num_dependents_deps.dev:0 +github.com/behe/heroku-build, github.com/behemehal/DialogEngine-JS,num_dependents_deps.dev:0 github.com/behera116/async-fetch-url,num_dependents_deps.dev:0 github.com/behera116/page-dweller,num_dependents_deps.dev:0 @@ -296556,6 +302953,7 @@ github.com/behnammodi/tlence, github.com/behnammodi/xwiper, github.com/behnamrhp/all_drag,num_dependents_deps.dev:0 github.com/behnamzah/hello-world-golang-api,num_dependents_deps.dev:0 +github.com/beholdenkey/black-action, github.com/beholdr/maska,num_dependents_deps.dev:0 github.com/behos/diesel-derive-more,num_dependents_deps.dev:0 github.com/behos/korat,num_dependents_deps.dev:0 @@ -296603,6 +303001,7 @@ github.com/behzadi/persianDatepicker, github.com/behzadkhalili/angular-filesystem,num_dependents_deps.dev:0 github.com/behzadkhalili/socket-io-sample,num_dependents_deps.dev:0 github.com/behzadrohizadeh/react-native-event-flatlist,num_dependents_deps.dev:0 +github.com/bei-re/git-sync-sha1, github.com/beiciye/countdown,num_dependents_deps.dev:0 github.com/beidan/nsp,num_dependents_deps.dev:0 github.com/beidongjiedeguang/SyncNote, @@ -296615,6 +303014,7 @@ github.com/beidongjiedeguang/sparrow, github.com/beidongjiedeguang/yuanian, github.com/beidongjiedeguang/yuanni, github.com/beiduo/rx-store,num_dependents_deps.dev:0 +github.com/beiertu-mms/yamllint-composite-action, github.com/beierweiwei/gulp-tagcontents,num_dependents_deps.dev:0 github.com/beigebrucewayne/apgp, github.com/beigetech/cdk-alarms,num_dependents_deps.dev:0 @@ -296659,6 +303059,7 @@ github.com/beingkk/graphico, github.com/beingmohit/libp2p-rpc, github.com/beingmohit/node-background-functions,num_dependents_deps.dev:0 github.com/beingmohit/tranium,num_dependents_deps.dev:0 +github.com/beingrational/sprint-action, github.com/beingtmk/create-react-app,num_dependents_deps.dev:0 github.com/beinlife/create-react-app,num_dependents_deps.dev:0 github.com/beir-cellar/beir, @@ -296677,6 +303078,7 @@ github.com/beiyehou/daily-date-file-appender,num_dependents_deps.dev:0 github.com/beiyehou/gulp-juicer-template-minify,num_dependents_deps.dev:0 github.com/beiyelin/leaf,num_dependents_deps.dev:0 github.com/beiyuouo/fedhf, +github.com/beiyuouo/readme-action, github.com/beizhedenglong/hooks-to-others,num_dependents_deps.dev:0 github.com/beizhedenglong/js-lens,num_dependents_deps.dev:0 github.com/beizhedenglong/leetcode-site-generator,num_dependents_deps.dev:0 @@ -296701,6 +303103,7 @@ github.com/bejens/snowflake,num_dependents_deps.dev:0 github.com/bejobioinformatics/tabixpy, github.com/bejonwe/rfc2bibtex,num_dependents_deps.dev:0 github.com/bekadan/docMailer,num_dependents_deps.dev:0 +github.com/bekahwhittle/hello-world-action-js, github.com/bekapod/colour-fun,num_dependents_deps.dev:0 github.com/bekbolsky/stepik-golang,num_dependents_deps.dev:0 github.com/bekee/vue-auth-plugin,num_dependents_deps.dev:0 @@ -296724,6 +303127,7 @@ github.com/bekker/hanja-rs,num_dependents_deps.dev:0 github.com/bekker/msgbox-rs,num_dependents_deps.dev:0 github.com/bekmuroda/algos,num_dependents_deps.dev:0 github.com/bekos/easy-http-proxy,num_dependents_deps.dev:0 +github.com/bekriebel/balena-cli-action, github.com/bekriebel/scrypted-prometheus,num_dependents_deps.dev:0 github.com/bektosh03/monolith,num_dependents_deps.dev:0 github.com/bektosh03/pkg,num_dependents_deps.dev:0 @@ -296953,6 +303357,7 @@ github.com/bellockk/alphashape, github.com/bellockk/amtool, github.com/bellockk/amtui, github.com/bellomusodiq/dj-fine-search, +github.com/bellondr/action-cached-lfs-checkout, github.com/bellondr/go-improve-demo,num_dependents_deps.dev:0 github.com/bellondr/image,num_dependents_deps.dev:0 github.com/bellotapps/the-messenger,num_dependents_deps.dev:0 @@ -296994,6 +303399,7 @@ github.com/belomx/paper-input-place,num_dependents_deps.dev:0 github.com/belomx/paper-range-slider,num_dependents_deps.dev:0 github.com/belomx/paper-tags-input,num_dependents_deps.dev:0 github.com/belomx/timeu-wizard,num_dependents_deps.dev:0 +github.com/belon/docker-build-push, github.com/belonesox/terrarium_assembler, github.com/belonesox/terrarium_assembler_win, github.com/belong571/ripple,num_dependents_deps.dev:0 @@ -297164,6 +303570,7 @@ github.com/bemakonate/strapi-plugin-restaurant-settings,num_dependents_deps.dev: github.com/bemasc/freedom-social-quiver,num_dependents_deps.dev:0 github.com/bemasher/rtlamr,num_dependents_deps.dev:0 github.com/bemaxima/contentful-migrate, +github.com/bemble/sync-readme, github.com/bemclaugh/calendar-heatmap,num_dependents_deps.dev:0 github.com/bemdesign/bem-animations,num_dependents_deps.dev:0 github.com/bemdesign/bem-components,num_dependents_deps.dev:0 @@ -297576,12 +303983,15 @@ github.com/ben-yip/grunt-buddha-bless,num_dependents_deps.dev:0 github.com/ben-yip/grunt-html-imports,num_dependents_deps.dev:0 github.com/ben-yip/grunt-test-publish,num_dependents_deps.dev:0 github.com/ben-yip/ie7js,num_dependents_deps.dev:0 +github.com/ben-z/actions-comment-on-issue, +github.com/ben-z/gh-action-mutex, github.com/ben-z/ignoreme,num_dependents_deps.dev:0 github.com/ben-z/node-semaphoreci,num_dependents_deps.dev:0 github.com/ben/botkit-shell,num_dependents_deps.dev:0 github.com/ben/hubot-semaphoreapp,num_dependents_deps.dev:0 github.com/ben/hubot-tangocard-highfive,num_dependents_deps.dev:0 github.com/ben00262/gosymbolstable,num_dependents_deps.dev:0 +github.com/ben031/gajira-find-issues-key-as-array, github.com/ben0x539/totally-safe-transmute,num_dependents_deps.dev:0 github.com/ben1009/truss,num_dependents_deps.dev:0 github.com/ben174/profanity, @@ -297648,6 +304058,7 @@ github.com/benalucorp/library-template-go,num_dependents_deps.dev:0 github.com/benamar/spcmd,num_dependents_deps.dev:0 github.com/benamar/ts-utils,num_dependents_deps.dev:0 github.com/benamar/vuex-class-crud,num_dependents_deps.dev:0 +github.com/benammann/git-secrets-get-secret-action, github.com/benammann/m3u8-to-traktor,num_dependents_deps.dev:0 github.com/benamto/sails-hook-pagify,num_dependents_deps.dev:0 github.com/benanderton/node-eventstore,num_dependents_deps.dev:0 @@ -297894,11 +304305,14 @@ github.com/benbusby/whoogle-search,criticality_score:0.397180 github.com/benc-uk/gofract,num_dependents_deps.dev:0 github.com/benc-uk/hcl2-parser,num_dependents_deps.dev:0 github.com/benc-uk/kubeview,"criticality_score:0.342560,num_dependents_deps.dev:0" +github.com/benc-uk/workflow-dispatch, github.com/bencalder/urbit-constitution-client,num_dependents_deps.dev:0 github.com/bencao/acts_as_method_cacheable,num_dependents_deps.dev:0 github.com/bencao/netlify-plugin-inline-functions-env,num_dependents_deps.dev:0 github.com/bencao/terminal-block-fonts,num_dependents_deps.dev:0 github.com/bencardoen/smlmvis, +github.com/bencat-sixense/bump-everywhere, +github.com/bencatlab/autobashed-semver, github.com/bencbartlett/Creep-Tasks,num_dependents_deps.dev:0 github.com/bencbradshaw/ng-rxjs-swiper,num_dependents_deps.dev:0 github.com/bence-toth/cra-template,num_dependents_deps.dev:0 @@ -297985,6 +304399,7 @@ github.com/bencevans/sum-time,num_dependents_deps.dev:0 github.com/bencevans/sum-time-cli,num_dependents_deps.dev:0 github.com/bencevans/tracksix,num_dependents_deps.dev:0 github.com/bencevans/ve.direct,num_dependents_deps.dev:0 +github.com/bencevans/wandb-action, github.com/bencevans/wifi-utils,num_dependents_deps.dev:0 github.com/bencevans/xyz-intersect,num_dependents_deps.dev:0 github.com/bencevegh92/shadowizardbybencethetruemage,num_dependents_deps.dev:0 @@ -298004,6 +304419,8 @@ github.com/benchdoos/JColorful,num_dependents_deps.dev:0 github.com/benchdoos/LinkSupport,num_dependents_deps.dev:0 github.com/bencheeorg/benchee,criticality_score:0.383230 github.com/benchenas/BenchENA, +github.com/bencherdev/bencher, +github.com/benchkram/bob-setup-action, github.com/benchkram/errz,num_dependents_deps.dev:9 github.com/benchlab/bench-menu,num_dependents_deps.dev:0 github.com/benchling/clustalo-python, @@ -298013,6 +304430,7 @@ github.com/benchling/sqlalchemy_batch_inserts, github.com/benchling/ts-expose-status-plugin,num_dependents_deps.dev:0 github.com/benchling/unicode-chars,num_dependents_deps.dev:0 github.com/benchlord/amulet,num_dependents_deps.dev:0 +github.com/benchmark-action/github-action-benchmark, github.com/benchmark-urbanism/cityseer-api, github.com/benchmark-urbanism/remark-bibtex,num_dependents_deps.dev:0 github.com/benchmark-urbanism/vue-mapbox-feature,num_dependents_deps.dev:0 @@ -298115,6 +304533,11 @@ github.com/bendavis78/moment-element,"Google,num_dependents_deps.dev:0" github.com/bendavis78/paper-chip,num_dependents_deps.dev:0 github.com/bendavis78/paper-date-picker,"Google,num_dependents_deps.dev:0" github.com/bendavis78/paper-time-picker,num_dependents_deps.dev:0 +github.com/benday-inc/deploy-ef-core-migration, +github.com/benday-inc/download-artifact, +github.com/benday-inc/download-latest-artifact, +github.com/benday-inc/edit-dbconnstr-in-appsettings, +github.com/benday-inc/set-property-value-in-appsettings, github.com/bendbennett/go-api-demo,num_dependents_deps.dev:0 github.com/bendc/animateplus,num_dependents_deps.dev:0 github.com/bendc/sprint,num_dependents_deps.dev:0 @@ -298361,6 +304784,7 @@ github.com/bendrucker/filter-pipe,num_dependents_deps.dev:6 github.com/bendrucker/find-audio-player,num_dependents_deps.dev:0 github.com/bendrucker/find-main,num_dependents_deps.dev:4 github.com/bendrucker/find-module-deps,num_dependents_deps.dev:0 +github.com/bendrucker/find-terraform-modules, github.com/bendrucker/firebase-auto-ids,num_dependents_deps.dev:12 github.com/bendrucker/firebase-export-value,num_dependents_deps.dev:0 github.com/bendrucker/firebase-server-value,num_dependents_deps.dev:2 @@ -298591,6 +305015,7 @@ github.com/bendrucker/tel-link,num_dependents_deps.dev:0 github.com/bendrucker/ternary,num_dependents_deps.dev:658 github.com/bendrucker/terraform-aws-arn,num_dependents_deps.dev:0 github.com/bendrucker/terraform-cloud-cli,num_dependents_deps.dev:0 +github.com/bendrucker/terraform-configuration-aliases-action, github.com/bendrucker/terraform-credential-helper-sdk,num_dependents_deps.dev:0 github.com/bendrucker/terraform-credentials-keychain,num_dependents_deps.dev:0 github.com/bendrucker/terraform-kubernetes-docker-secret,num_dependents_deps.dev:0 @@ -298723,6 +305148,8 @@ github.com/benehiko/x,num_dependents_deps.dev:0 github.com/beneills/quantum,num_dependents_deps.dev:0 github.com/benekastah/templito,num_dependents_deps.dev:0 github.com/benekastah/text-to-js-identifier, +github.com/benelan/milestone-action, +github.com/benelan/need-info-action, github.com/benelliott/SlimClamp,num_dependents_deps.dev:0 github.com/benelliott/moment-mini-es6,num_dependents_deps.dev:0 github.com/benelliott/numeral-es6,num_dependents_deps.dev:2 @@ -298745,6 +305172,7 @@ github.com/benesch/backport,num_dependents_deps.dev:0 github.com/benesch/cargo-manifmt,num_dependents_deps.dev:0 github.com/benesch/cargo-out-dir,num_dependents_deps.dev:0 github.com/benesch/cryptography-347-stubs, +github.com/benesch/dbt-action, github.com/benesch/drf-rw-serializers-stubs, github.com/benesch/honeycomb-stubs, github.com/benesch/jquery-cycle,num_dependents_deps.dev:0 @@ -298841,6 +305269,7 @@ github.com/benfred/read-process-memory,num_dependents_deps.dev:3 github.com/benfred/remoteprocess,num_dependents_deps.dev:0 github.com/benfred/simplex-flowers,num_dependents_deps.dev:0 github.com/benfred/venn.js,"criticality_score:0.305140,num_dependents_deps.dev:1780" +github.com/benfrisbie/docker-tag-build-push-action, github.com/benfromchina/druid-admin-spring-boot-starter,num_dependents_deps.dev:0 github.com/benfulcher/hctsa,criticality_score:0.425160 github.com/benfurfie/tailwindcss-line-length,num_dependents_deps.dev:0 @@ -298979,6 +305408,7 @@ github.com/bengry/ts-gen-types,num_dependents_deps.dev:0 github.com/bengsfort/rollup-plugin-copy-assets,num_dependents_deps.dev:10 github.com/bengsfort/rollup-plugin-generate-html-template,num_dependents_deps.dev:0 github.com/bengsoon/jupyterpy, +github.com/bengsparks/todocheck-bot, github.com/bengsquared/osx-fileicon,num_dependents_deps.dev:0 github.com/bengt/microbar, github.com/bengtan/websqlview,num_dependents_deps.dev:0 @@ -299108,6 +305538,7 @@ github.com/benhutchison/prickle,num_dependents_deps.dev:184 github.com/benhutchison/scala-js-paper,num_dependents_deps.dev:0 github.com/benhutton/facebooker,num_dependents_deps.dev:0 github.com/benhutton/yaml2csv,num_dependents_deps.dev:0 +github.com/beni69/artifact-link, github.com/beni69/create-discord-bot,num_dependents_deps.dev:0 github.com/beni69/discord-cmd,num_dependents_deps.dev:0 github.com/beniamin-rychter-coderslab/homebridge-airly,num_dependents_deps.dev:0 @@ -299138,6 +305569,7 @@ github.com/benignware/varss,num_dependents_deps.dev:0 github.com/beniiinemszam/extended-validations,num_dependents_deps.dev:0 github.com/beniju/node-cli-generator,num_dependents_deps.dev:0 github.com/benincasantonio/disable-pull-refresh,num_dependents_deps.dev:0 +github.com/beniscaitliin/gopheraction, github.com/benishak/parse-server-dynamodb-adapter,num_dependents_deps.dev:0 github.com/benishouga/tiny-context,num_dependents_deps.dev:0 github.com/benisson/ng-builder,num_dependents_deps.dev:0 @@ -299317,6 +305749,8 @@ github.com/benjaminhxh/printname,num_dependents_deps.dev:0 github.com/benjaminj6/css-literal,num_dependents_deps.dev:0 github.com/benjaminj6/twirl-js, github.com/benjaminjkraft/junk,num_dependents_deps.dev:0 +github.com/benjaminjonard/crowdin-languages-progress-action, +github.com/benjaminjonard/crowdin-translations-progress-action, github.com/benjaminjs/redux-nsync,num_dependents_deps.dev:0 github.com/benjaminjt/micro-nervous,num_dependents_deps.dev:0 github.com/benjaminkent/english-springer,num_dependents_deps.dev:0 @@ -299383,6 +305817,7 @@ github.com/benjaminu/react-holder-component, github.com/benjaminvadant/leaflet-ugeojson,num_dependents_deps.dev:0 github.com/benjaminviart/PickPocket, github.com/benjaminvinicky/isit-code-vinicky,num_dependents_deps.dev:0 +github.com/benjaminwestern/changed-files, github.com/benjaminwhite/Gtasks, github.com/benjaminwolkchen/lighthouse-test,num_dependents_deps.dev:0 github.com/benjaminwoods/bitclout, @@ -299428,6 +305863,7 @@ github.com/benjaoming/wagtailosm, github.com/benjarison/eval-metrics,num_dependents_deps.dev:0 github.com/benjarwar/hubot-madlibs, github.com/benjasHu/storer,num_dependents_deps.dev:0 +github.com/benjavicente/setup-poetry, github.com/benjazor/protobuf-test,num_dependents_deps.dev:0 github.com/benjcabalona1029/itaewon, github.com/benjclark/testcafe-reporter-slack,num_dependents_deps.dev:0 @@ -299436,12 +305872,17 @@ github.com/benjd90/p-iteration-with-concurrency,num_dependents_deps.dev:0 github.com/benjdewantara/coursera-shortest-paths-revisited-np-complete-problems-and-what-to-do-about-them,num_dependents_deps.dev:0 github.com/benjdewantara/coursera-stanford-greedy-algorithms-minimum-spanning-trees-and-dynamic-programming,num_dependents_deps.dev:0 github.com/benjdlambert/bits-bowling-calendar,num_dependents_deps.dev:0 +github.com/benjefferies/branch-protection-bot, +github.com/benjefferies/create-bintray-package, +github.com/benjefferies/download-encrypted-artifact, github.com/benjefferies/gogo-garage-opener,num_dependents_deps.dev:0 +github.com/benjefferies/upload-encrypted-artifact, github.com/benjeffery/react-phylocanvas,num_dependents_deps.dev:0 github.com/benjeffery/react-plotlyjs,num_dependents_deps.dev:0 github.com/benjeh32/emojiscribe,num_dependents_deps.dev:0 github.com/benjervis/eslint-plugin-scoobie,num_dependents_deps.dev:0 github.com/benjetson/gopher-snake,num_dependents_deps.dev:0 +github.com/benjfield/s3-sync-action-bidirectional, github.com/benjfield/signalr,num_dependents_deps.dev:0 github.com/benjfriedrich/rowriter,num_dependents_deps.dev:0 github.com/benjhardy/learninggo,num_dependents_deps.dev:0 @@ -299509,13 +305950,16 @@ github.com/benjirewis/mongo-go-driver,num_dependents_deps.dev:0 github.com/benjisg/redmark,num_dependents_deps.dev:0 github.com/benjisidi/tachymeter, github.com/benjitos/Angular-QueryBuilder,num_dependents_deps.dev:0 +github.com/benjitusk/setup-ruby, github.com/benjivesterby/alog,num_dependents_deps.dev:0 github.com/benjivesterby/graph,num_dependents_deps.dev:0 github.com/benjivesterby/hammer,num_dependents_deps.dev:0 +github.com/benjivesterby/update-sync-for-templates, github.com/benjivesterby/validator,num_dependents_deps.dev:0 github.com/benjiyamin/djangocms-googlecalendar, github.com/benjjneb/dada2,criticality_score:0.483370 github.com/benjlevesque/cloudfunc-gh-hook, +github.com/benjlevesque/short-sha, github.com/benjmac/redux-action-combiner,num_dependents_deps.dev:0 github.com/benjmac/redux-iterator,num_dependents_deps.dev:0 github.com/benjmarshall/hlsclt, @@ -299576,6 +306020,7 @@ github.com/benka-me/users,num_dependents_deps.dev:2 github.com/benkaiser/how_long_until,num_dependents_deps.dev:0 github.com/benkaiser/js-azlyrics,num_dependents_deps.dev:0 github.com/benkaiser/linktree-scraper,num_dependents_deps.dev:0 +github.com/benkaiser/rebase-commit-push, github.com/benkaiser/similar-songs,num_dependents_deps.dev:0 github.com/benkaiser/song-search,num_dependents_deps.dev:0 github.com/benkaiser/soundcloud-resolver,num_dependents_deps.dev:0 @@ -299794,6 +306239,7 @@ github.com/benmatselby/frost,num_dependents_deps.dev:0 github.com/benmatselby/go-azuredevops,num_dependents_deps.dev:0 github.com/benmatselby/gollum-page-watcher-action,num_dependents_deps.dev:0 github.com/benmatselby/hagen,num_dependents_deps.dev:0 +github.com/benmatselby/hugo-deploy-gh-pages, github.com/benmatselby/sublime-phpcs,criticality_score:0.381480 github.com/benmatselby/walter,num_dependents_deps.dev:0 github.com/benmccallum/vue-bootstrap-breakpoint-indicator,num_dependents_deps.dev:0 @@ -299821,6 +306267,7 @@ github.com/benmonro/chill, github.com/benmonro/eslint-plugin-jest,num_dependents_deps.dev:0 github.com/benmonro/generator-delete-example,num_dependents_deps.dev:0 github.com/benmonro/pkg-upgrader,num_dependents_deps.dev:0 +github.com/benmonro/testcafe-action, github.com/benmonro/testcafe-testing-library,num_dependents_deps.dev:0 github.com/benmontet/f3, github.com/benmontet/newts, @@ -299838,6 +306285,7 @@ github.com/benmosher/eslint-plugin-import,"criticality_score:0.698860,num_depend github.com/benmosher/homebridge-roomba690,num_dependents_deps.dev:0 github.com/benmosheron/ben-loves-vectors,num_dependents_deps.dev:0 github.com/benmoss/actions-rerun-workflow,num_dependents_deps.dev:0 +github.com/benmoss/buildkite-gh-actions, github.com/benmoss/cluster-api-provider-kubemark,num_dependents_deps.dev:0 github.com/benmoss/knative-tracing,num_dependents_deps.dev:0 github.com/benmoss/weekend_warrior,num_dependents_deps.dev:0 @@ -299906,6 +306354,7 @@ github.com/bennettrong/flask_asshole, github.com/bennettwarner/chadtunnel,num_dependents_deps.dev:0 github.com/bennettyong/generator-supermern,num_dependents_deps.dev:0 github.com/bennewton999/bennewton,num_dependents_deps.dev:0 +github.com/bennibbelink/cyclus-ci-action, github.com/bennicholls/dazzlerbot,num_dependents_deps.dev:0 github.com/bennidi/anylog,num_dependents_deps.dev:0 github.com/bennidi/coffee-latte,num_dependents_deps.dev:0 @@ -299957,6 +306406,7 @@ github.com/bennycio/bundle,num_dependents_deps.dev:0 github.com/bennycode/coinbase-pro-node,num_dependents_deps.dev:0 github.com/bennycode/hexo-insert-markdown,num_dependents_deps.dev:0 github.com/bennycode/ig-trading-api,num_dependents_deps.dev:0 +github.com/bennycode/stop-merging, github.com/bennycode/trading-signals, github.com/bennycwong/ember-bootstrap-4,num_dependents_deps.dev:0 github.com/bennycwong/omniauth-nikeplus,num_dependents_deps.dev:0 @@ -300018,6 +306468,7 @@ github.com/bennyn/trading-signals,num_dependents_deps.dev:0 github.com/bennyn/wizardy, github.com/bennypowers/card,num_dependents_deps.dev:0 github.com/bennypowers/cem-plugins,num_dependents_deps.dev:0 +github.com/bennypowers/commitlint-gh-actions, github.com/bennypowers/crocks-esm,num_dependents_deps.dev:0 github.com/bennypowers/dev-feed,num_dependents_deps.dev:0 github.com/bennypowers/emoji-checkbox,num_dependents_deps.dev:0 @@ -300100,6 +306551,7 @@ github.com/benoitc/restkit,criticality_score:0.304860 github.com/benoitc/socketpool, github.com/benoitc/tproxy, github.com/benoitc/uzmq, +github.com/benoitchantre/setup-ssh-authentication-action, github.com/benoitdepaire/python-ml-dali, github.com/benoitdion/ln,num_dependents_deps.dev:1 github.com/benoitemile/apollo-redis-cache,num_dependents_deps.dev:0 @@ -300182,6 +306634,7 @@ github.com/benpate/htmlconv,num_dependents_deps.dev:0 github.com/benpate/path,num_dependents_deps.dev:2 github.com/benpate/sseplaceholder,num_dependents_deps.dev:0 github.com/benpate/steranko,num_dependents_deps.dev:0 +github.com/benpdavison/php-cs-fixer-php-7.3, github.com/benpetsch/feedback-dialog,num_dependents_deps.dev:0 github.com/benpetsch/react-feedback-dialog, github.com/benpickles/fewer,num_dependents_deps.dev:0 @@ -300264,6 +306717,7 @@ github.com/benrosen/aws-lambda-utility-layer,num_dependents_deps.dev:0 github.com/benrosen/phaser-react-tools,num_dependents_deps.dev:0 github.com/benrosen/random-color-pair,num_dependents_deps.dev:0 github.com/benrosen/storytoy-cli,num_dependents_deps.dev:0 +github.com/benrowe/mysql-to-sqlite3, github.com/benrr101/node-taglib-sharp,num_dependents_deps.dev:0 github.com/benrrutter/hop, github.com/benruehl/adonis-ui,criticality_score:0.354330 @@ -300346,10 +306800,12 @@ github.com/benspotatoes/badcards,num_dependents_deps.dev:0 github.com/benspotatoes/calamitous-knife,num_dependents_deps.dev:0 github.com/benspotatoes/effulgent-water,num_dependents_deps.dev:0 github.com/benspotatoes/histrionic-superhero,num_dependents_deps.dev:0 +github.com/benstear/biopypir-python-action, github.com/benstepp/rrf,num_dependents_deps.dev:0 github.com/benstepp/tays,num_dependents_deps.dev:0 github.com/bensternthal/bespoke-theme-mozilla-sandstone,num_dependents_deps.dev:0 github.com/benstyle1024/utility-lib,num_dependents_deps.dev:0 +github.com/bensuperpc/code-inspector, github.com/bensurman/angular-screenmatch,num_dependents_deps.dev:0 github.com/bensventures/darkmatter.scss,num_dependents_deps.dev:0 github.com/benswinburne/closest-aws-region,num_dependents_deps.dev:0 @@ -300416,6 +306872,7 @@ github.com/benthepoet/fast-inject,num_dependents_deps.dev:0 github.com/benthepoet/fast-sexpr,num_dependents_deps.dev:0 github.com/benthepoet/grunt-elm-make,num_dependents_deps.dev:0 github.com/benthepoet/mithril-graphql,num_dependents_deps.dev:0 +github.com/benthillerkus/processing-problem-matcher, github.com/benthomasknight/sn-encoded-query,num_dependents_deps.dev:0 github.com/benthomasknight/sn-jsonv2,num_dependents_deps.dev:0 github.com/benthomasson/ansible-events, @@ -300444,6 +306901,9 @@ github.com/bentobots/bentobots,num_dependents_deps.dev:0 github.com/bentoboxes/nova-utils,num_dependents_deps.dev:0 github.com/bentomas/node-async-testing,num_dependents_deps.dev:30 github.com/bentoml/BentoML,criticality_score:0.545660 +github.com/bentoml/build-bento-action, +github.com/bentoml/containerize-push-action, +github.com/bentoml/setup-bentoml-action, github.com/bentoml/simple_di, github.com/benton/fog_tracker,num_dependents_deps.dev:1 github.com/bentonam/fakeit,num_dependents_deps.dev:0 @@ -300579,7 +307039,11 @@ github.com/benwiz/boba.js,num_dependents_deps.dev:0 github.com/benwiz/boba.wasm,num_dependents_deps.dev:0 github.com/benwiz/learn,num_dependents_deps.dev:0 github.com/benwk/wechat-js-sdk,num_dependents_deps.dev:0 +github.com/benwoo1110/dbo-upload-action, +github.com/benwoo1110/hangar-upload-action, +github.com/benwoo1110/modrinth-upload-action, github.com/benwoo1110/purposefully-malicious, +github.com/benwoo1110/semantic-release-action, github.com/benwoo1110/testcase-maker, github.com/benwoodward/svelte-plyr, github.com/benwoodward/svelte-vimeo-player,num_dependents_deps.dev:0 @@ -300968,6 +307432,7 @@ github.com/berhalak/vue-layout,num_dependents_deps.dev:0 github.com/berhalak/vue-object, github.com/berhalak/vue-strict,num_dependents_deps.dev:0 github.com/berhanecole/lodown,num_dependents_deps.dev:0 +github.com/berhram/action-ktlint-android, github.com/berialjs/berial,"criticality_score:0.385000,num_dependents_deps.dev:0" github.com/berichge/golang,num_dependents_deps.dev:0 github.com/bericp1/brph-mean-auth,num_dependents_deps.dev:0 @@ -301041,6 +307506,7 @@ github.com/berkeleybross/restclient.js,num_dependents_deps.dev:0 github.com/berkeleycdms/TEScal, github.com/berkeleyopenarms/blue_interface, github.com/berkeleytrue/thundercats-react,num_dependents_deps.dev:2 +github.com/berkelmas/action-hosting-deploy, github.com/berkerbugur/performance-analytic-lib,num_dependents_deps.dev:0 github.com/berkerdemoglu/static_view, github.com/berkererol/lotide,num_dependents_deps.dev:0 @@ -301202,6 +307668,7 @@ github.com/bernardop/unspray,num_dependents_deps.dev:0 github.com/bernardopacheco/angular2-file-uploader,num_dependents_deps.dev:0 github.com/bernardopericacho/htsqs,num_dependents_deps.dev:0 github.com/bernardopires/django-tenant-schemas,criticality_score:0.382610 +github.com/bernardopolivoct/oct-github-actions, github.com/bernardosecades/sos-dep-checker,num_dependents_deps.dev:0 github.com/bernardosilva/simplyhosting-api-client-python, github.com/bernardotorres/eh-pg,num_dependents_deps.dev:0 @@ -301273,6 +307740,7 @@ github.com/bernhardpg/distributed-realtime-elevator-control,num_dependents_deps. github.com/bernhardschaefer/yamlu, github.com/bernhardw/object-extend,num_dependents_deps.dev:40 github.com/bernhardw/status-errors,num_dependents_deps.dev:0 +github.com/bernhardwebstudio/placeholderbundle, github.com/bernie-skipole/indi, github.com/bernie-skipole/indi-mr, github.com/berniegp/mock-xmlhttprequest,num_dependents_deps.dev:14 @@ -301402,6 +307870,7 @@ github.com/bertdeterd/sap-cds-ddic,num_dependents_deps.dev:0 github.com/bertdeterd/saprfc, github.com/bertdeterd/scc-connector,num_dependents_deps.dev:0 github.com/bertdeterd/vue-cli-plugin-scp-app-repo,num_dependents_deps.dev:0 +github.com/bertek41/action-pipenv, github.com/bertez/gl-syllabler,num_dependents_deps.dev:0 github.com/bertez/quenda,num_dependents_deps.dev:0 github.com/bertez/rima,num_dependents_deps.dev:0 @@ -301598,6 +308067,9 @@ github.com/berv-uni-project/agglomerative-py, github.com/berv-uni-project/fancy-DES-algorithm, github.com/bervProject/Kata-Baku-Checker-for-PO-File, github.com/bervProject/feathers-advance-hook,num_dependents_deps.dev:0 +github.com/bervProject/prepare-apprunner-action, +github.com/bervProject/railway-deploy, +github.com/berviantoleo/accredible-actions, github.com/berviantoleo/react-multi-crop,num_dependents_deps.dev:0 github.com/berwin/aliyun-oss-upload-stream,num_dependents_deps.dev:0 github.com/berwin/koa-bind-context,num_dependents_deps.dev:0 @@ -301758,6 +308230,7 @@ github.com/best-of-acrv/acrv-datasets, github.com/best-of-acrv/fcos, github.com/best-of-acrv/refinenet, github.com/best-of-lists/best-of-generator, +github.com/best-of-lists/best-of-update-action, github.com/best-practice-src/py-deployer, github.com/best-referenced/strapi-provider-upload-cos,num_dependents_deps.dev:0 github.com/best-serverless-nodejs-framework-xjs/nosql-aliyun-tablestore,num_dependents_deps.dev:0 @@ -301796,6 +308269,9 @@ github.com/bestcharlemagne/storenavigator,num_dependents_deps.dev:0 github.com/bestchenwu/gostudy,num_dependents_deps.dev:0 github.com/bestchu/installment-calculator,num_dependents_deps.dev:0 github.com/bestchu/installment-loan,num_dependents_deps.dev:0 +github.com/beste/clock, +github.com/beste/json, +github.com/beste/latlon-geohash-php, github.com/besteadfast/stallion-webpack,num_dependents_deps.dev:0 github.com/bestecomert/primenumbersgo,num_dependents_deps.dev:0 github.com/bestfancc/algorithm-pattern,num_dependents_deps.dev:0 @@ -302074,6 +308550,7 @@ github.com/betajs/mock-file-server,num_dependents_deps.dev:0 github.com/betajs/react-betajs-media-component, github.com/betalane/betalane,num_dependents_deps.dev:0 github.com/betalb/react-grid-layout,num_dependents_deps.dev:0 +github.com/betalgo/DotNuget, github.com/betalo-sweden/await,num_dependents_deps.dev:0 github.com/betamaxpy/betamax,criticality_score:0.332390 github.com/betamaxteam/betamax,num_dependents_deps.dev:4 @@ -302084,6 +308561,8 @@ github.com/betandr/goverlook,num_dependents_deps.dev:0 github.com/betanets/lynx-vuetify-extensions, github.com/betanyeli/BB-MdLinks,num_dependents_deps.dev:0 github.com/betanyeli/SCL009-md-links,num_dependents_deps.dev:0 +github.com/betanzos/check-commit-exist, +github.com/betanzos/scp-upload, github.com/betao-dev/portail-design-system,num_dependents_deps.dev:0 github.com/betaorbust/babel-plugin-groundskeeper-willie,num_dependents_deps.dev:2 github.com/betaorbust/babel-preset-minify-es2015,num_dependents_deps.dev:0 @@ -302200,6 +308679,7 @@ github.com/betorvs/sensubot,num_dependents_deps.dev:0 github.com/betprotocol/bepro-js, github.com/betrok/shadowed,num_dependents_deps.dev:0 github.com/betrusted-io/betrusted-rt,num_dependents_deps.dev:0 +github.com/betrybe/store-evaluation-action, github.com/betseyliu/vacuate,num_dependents_deps.dev:0 github.com/betsig/borf, github.com/betsig/how_are_we_stranded_here, @@ -302235,6 +308715,7 @@ github.com/better-go/pkg,num_dependents_deps.dev:0 github.com/better-js-logging/angular-logger,num_dependents_deps.dev:0 github.com/better-js-logging/angular-logger2,num_dependents_deps.dev:0 github.com/better-js-logging/better-logging-base,num_dependents_deps.dev:2 +github.com/better-php-actions/publish-composer-package, github.com/better-requests/better-requests, github.com/better-than-better/babel-plugin-component-source-path, github.com/better-than-better/opps,num_dependents_deps.dev:0 @@ -302262,6 +308743,7 @@ github.com/bettercart/res-react-script-loader,num_dependents_deps.dev:0 github.com/bettercart/rescript-dinero,num_dependents_deps.dev:0 github.com/bettercart/rescript-headless-ui-react,num_dependents_deps.dev:0 github.com/bettercart/rescript-react-script-loader,num_dependents_deps.dev:0 +github.com/betterchalk/ebs-deploy, github.com/betterco/bluefin-notifier,num_dependents_deps.dev:0 github.com/betterco/react-vanishingcabinet,num_dependents_deps.dev:0 github.com/betterconfig/betterconfigclient-java,num_dependents_deps.dev:0 @@ -302279,6 +308761,7 @@ github.com/betterengineering/tidbyt,num_dependents_deps.dev:0 github.com/betterenvi/gSpan, github.com/betterexaminations/react-chat-ui,num_dependents_deps.dev:0 github.com/betterez/btrz-support-agent,num_dependents_deps.dev:0 +github.com/betterfor/action-send-mail, github.com/betterfor/gopic,num_dependents_deps.dev:0 github.com/betterfor/leetcode-go,num_dependents_deps.dev:0 github.com/betteridiot/bamnostic, @@ -302289,6 +308772,8 @@ github.com/betterigo/respack,num_dependents_deps.dev:0 github.com/betterlife/goal,num_dependents_deps.dev:0 github.com/betterlife/psi, github.com/betterliyu/timespinner,num_dependents_deps.dev:0 +github.com/bettermarks/action-artifact-download, +github.com/betterme-dev/Detekt-Action, github.com/betterme-dev/go-server-core,num_dependents_deps.dev:0 github.com/betterobjects/activeql,num_dependents_deps.dev:0 github.com/betterplace/betterplace-react-components,num_dependents_deps.dev:0 @@ -302339,6 +308824,7 @@ github.com/betulkaraduman/betulkaraduman,num_dependents_deps.dev:0 github.com/between0n1/kg_between0n1_2022,num_dependents_deps.dev:0 github.com/betweenlines/zdaemon,num_dependents_deps.dev:0 github.com/betweenlines/zfilexfer,num_dependents_deps.dev:0 +github.com/betwo/github-setup-catkin, github.com/betwo/vscode-catkin-tools-api,num_dependents_deps.dev:0 github.com/beuaaa/overlay_arrows_and_more, github.com/beuaaa/pywinauto_recorder, @@ -302515,12 +309001,15 @@ github.com/bevisy/kata-code-analysis,num_dependents_deps.dev:0 github.com/bevisy/webssh,num_dependents_deps.dev:0 github.com/bevitch/bevitch,num_dependents_deps.dev:0 github.com/bevrist/workout-site,num_dependents_deps.dev:0 +github.com/bevry-actions/npm, +github.com/bevry-actions/surge, github.com/bevry-trading/cartera,num_dependents_deps.dev:0 github.com/bevry-trading/crypto-ml-alerts,num_dependents_deps.dev:0 github.com/bevry/ambi,num_dependents_deps.dev:3226 github.com/bevry/ansi,num_dependents_deps.dev:104 github.com/bevry/api-cache-proxy,num_dependents_deps.dev:0 github.com/bevry/argsbytype,num_dependents_deps.dev:0 +github.com/bevry/argument, github.com/bevry/arrange-package-json,num_dependents_deps.dev:0 github.com/bevry/arrangekeys,num_dependents_deps.dev:0 github.com/bevry/assert-helpers,num_dependents_deps.dev:0 @@ -302550,6 +309039,7 @@ github.com/bevry/dominject,num_dependents_deps.dev:0 github.com/bevry/duration-timestamp,num_dependents_deps.dev:0 github.com/bevry/eachr,num_dependents_deps.dev:3288 github.com/bevry/echo,num_dependents_deps.dev:0 +github.com/bevry/ecmascript-versions, github.com/bevry/editions,num_dependents_deps.dev:39195 github.com/bevry/emailtowallet,num_dependents_deps.dev:0 github.com/bevry/envfile,num_dependents_deps.dev:682 @@ -302564,9 +309054,22 @@ github.com/bevry/extract-opts,num_dependents_deps.dev:2410 github.com/bevry/extract-timestamp,num_dependents_deps.dev:0 github.com/bevry/feedr,num_dependents_deps.dev:24 github.com/bevry/fellow,num_dependents_deps.dev:108 +github.com/bevry/figures, github.com/bevry/file,num_dependents_deps.dev:92 +github.com/bevry/file-url-to-path, github.com/bevry/filedirname,num_dependents_deps.dev:2 github.com/bevry/foreach-elegant,num_dependents_deps.dev:0 +github.com/bevry/fs-accessible, +github.com/bevry/fs-executable, +github.com/bevry/fs-list, +github.com/bevry/fs-mkdirp, +github.com/bevry/fs-read, +github.com/bevry/fs-readable, +github.com/bevry/fs-remove, +github.com/bevry/fs-rmdir, +github.com/bevry/fs-unlink, +github.com/bevry/fs-writable, +github.com/bevry/fs-write, github.com/bevry/get-cli-arg,num_dependents_deps.dev:180 github.com/bevry/get-current-line,num_dependents_deps.dev:130 github.com/bevry/getcontributors,num_dependents_deps.dev:94 @@ -302577,7 +309080,10 @@ github.com/bevry/getrepos,num_dependents_deps.dev:102 github.com/bevry/getsetdeep,num_dependents_deps.dev:150 github.com/bevry/github-api,num_dependents_deps.dev:92 github.com/bevry/github-commit,num_dependents_deps.dev:0 +github.com/bevry/github-contributors, +github.com/bevry/github-members, github.com/bevry/github-orgs,num_dependents_deps.dev:0 +github.com/bevry/github-repos, github.com/bevry/githubauthquerystring,num_dependents_deps.dev:34 github.com/bevry/githubauthreq,num_dependents_deps.dev:4 github.com/bevry/hooks,num_dependents_deps.dev:0 @@ -302607,6 +309113,8 @@ github.com/bevry/node-versions,num_dependents_deps.dev:0 github.com/bevry/nodejs-ecmascript-compatibility,num_dependents_deps.dev:0 github.com/bevry/nodejs-releases,num_dependents_deps.dev:2 github.com/bevry/nodejs-schedule,num_dependents_deps.dev:2 +github.com/bevry/nodejs-versions, +github.com/bevry/non-unicode-symbols, github.com/bevry/normalify,num_dependents_deps.dev:192 github.com/bevry/oneday,num_dependents_deps.dev:10 github.com/bevry/outpatient,num_dependents_deps.dev:0 @@ -302616,9 +309124,11 @@ github.com/bevry/pointers,num_dependents_deps.dev:0 github.com/bevry/progress-title,num_dependents_deps.dev:4 github.com/bevry/progressbar, github.com/bevry/projectz,num_dependents_deps.dev:16 +github.com/bevry/promise-errback, github.com/bevry/query-engine, github.com/bevry/readdir-cluster,num_dependents_deps.dev:210 github.com/bevry/remove-indentation,num_dependents_deps.dev:0 +github.com/bevry/render, github.com/bevry/requirefresh,num_dependents_deps.dev:920 github.com/bevry/rfc-log-levels, github.com/bevry/ropo,num_dependents_deps.dev:0 @@ -302636,12 +309146,16 @@ github.com/bevry/taskgroup,num_dependents_deps.dev:1934 github.com/bevry/testen,num_dependents_deps.dev:0 github.com/bevry/textextensions,num_dependents_deps.dev:45352 github.com/bevry/tiered-map,num_dependents_deps.dev:0 +github.com/bevry/trim-empty-keys, github.com/bevry/trim-indentation,num_dependents_deps.dev:0 github.com/bevry/typechecker,num_dependents_deps.dev:6576 github.com/bevry/unbounded,num_dependents_deps.dev:580 +github.com/bevry/unicode-symbols, github.com/bevry/update-contributors,num_dependents_deps.dev:0 github.com/bevry/valid-directory,num_dependents_deps.dev:0 +github.com/bevry/valid-filename, github.com/bevry/valid-module,num_dependents_deps.dev:0 +github.com/bevry/version-clean, github.com/bevry/version-compare, github.com/bevry/version-range,num_dependents_deps.dev:118 github.com/bevry/wait,num_dependents_deps.dev:100 @@ -302656,6 +309170,7 @@ github.com/bewakes/bs-form,num_dependents_deps.dev:0 github.com/bewakes/html-js-stuffs,num_dependents_deps.dev:0 github.com/bewakes/nepali-unicode-converter, github.com/bewee/node-red-contrib-webthingsio,num_dependents_deps.dev:0 +github.com/bewee/rustdoc-coverage-action, github.com/bewest/bootevent,num_dependents_deps.dev:2 github.com/bewest/npm-vendorize-brunch,num_dependents_deps.dev:0 github.com/bewest/nurlize,num_dependents_deps.dev:0 @@ -302674,6 +309189,11 @@ github.com/beworker/pinned-section-listview,num_dependents_deps.dev:0 github.com/beworker/tinybus,num_dependents_deps.dev:0 github.com/beworker/tinymachine,num_dependents_deps.dev:0 github.com/bews/lounge-light,num_dependents_deps.dev:0 +github.com/bewuethr/mdl-action, +github.com/bewuethr/release-tracker-action, +github.com/bewuethr/shellcheck-action, +github.com/bewuethr/slack-analyzer, +github.com/bewuethr/yamllint-action, github.com/bex-cake/assignment_2,num_dependents_deps.dev:0 github.com/bex-cake/endtermgolang,num_dependents_deps.dev:0 github.com/bex1111/mongo-script-versioning,num_dependents_deps.dev:0 @@ -302729,6 +309249,7 @@ github.com/beyond/array-frequency,num_dependents_deps.dev:0 github.com/beyond181/ReactNativeIFImage,num_dependents_deps.dev:0 github.com/beyond181/react-native-ifnetwork,num_dependents_deps.dev:0 github.com/beyond181/react-native-ifvideo,num_dependents_deps.dev:0 +github.com/beyond5959/create-release-github, github.com/beyond5959/log4js-logstash-kafka,num_dependents_deps.dev:0 github.com/beyond5959/log4js-logstash-redis,num_dependents_deps.dev:0 github.com/beyondcode/dusk-dashboard,criticality_score:0.395470 @@ -302836,6 +309357,7 @@ github.com/beyondstorage/go-storage,num_dependents_deps.dev:0 github.com/beyondstorage/go-storage-example,num_dependents_deps.dev:0 github.com/beyondstorage/go-stream,num_dependents_deps.dev:0 github.com/beyondstorage/go-toolbox,num_dependents_deps.dev:0 +github.com/beyondstorage/setup-hdfs, github.com/beyondstorage/specs,num_dependents_deps.dev:23 github.com/beyondthebox/JSS-Resource-Tools, github.com/beyondthesketch/ScriptuccinoJS,num_dependents_deps.dev:0 @@ -303018,6 +309540,8 @@ github.com/bfix/gospel,num_dependents_deps.dev:0 github.com/bfjelds/go-library,num_dependents_deps.dev:0 github.com/bfkeinberg/google-maps-react, github.com/bfkeinberg/gpx-parse,num_dependents_deps.dev:0 +github.com/bflad/action-migrate-issue, +github.com/bflad/action-milestone-comment, github.com/bflad/go-module-one,num_dependents_deps.dev:0 github.com/bflad/go-module-three,num_dependents_deps.dev:0 github.com/bflad/go-module-two,num_dependents_deps.dev:0 @@ -303152,6 +309676,8 @@ github.com/bfred-it/webext-options-sync,num_dependents_deps.dev:0 github.com/bfred-it/webext-permissions-events-polyfill,num_dependents_deps.dev:0 github.com/bfred-it/zip-text-nodes,num_dependents_deps.dev:0 github.com/bfreiber/build-a-pip-package, +github.com/bfren/create-release, +github.com/bfren/read-file, github.com/bfrengley/relay,num_dependents_deps.dev:0 github.com/bfricka/node-git-tags, github.com/bfrisque/ofxstatement-be-bnp, @@ -303209,6 +309735,7 @@ github.com/bfylu/univyz-framework,num_dependents_deps.dev:0 github.com/bfylu/univyz-plugin-rest,num_dependents_deps.dev:0 github.com/bfylu/univyz-plugin-security,num_dependents_deps.dev:0 github.com/bfylu/univyz-plugin-soap,num_dependents_deps.dev:0 +github.com/bg-ryanvalentine/heroku-deploy-action, github.com/bg-wilkesreid/vue-lunata,num_dependents_deps.dev:0 github.com/bgag/any-db-jdbc, github.com/bgag/bootstrap-slider-text-input,num_dependents_deps.dev:0 @@ -303290,6 +309817,7 @@ github.com/bgeschka/netip,num_dependents_deps.dev:0 github.com/bgever/i14e, github.com/bgf-s/bfg-commander,num_dependents_deps.dev:0 github.com/bgf-s/bfg-js,num_dependents_deps.dev:2 +github.com/bgfernandes/changesets-action, github.com/bgfisher/ActiveIntentv1,num_dependents_deps.dev:0 github.com/bgfist/weact,num_dependents_deps.dev:0 github.com/bgfist/weact-redux, @@ -303691,6 +310219,7 @@ github.com/bharatagarwal/gobook,num_dependents_deps.dev:0 github.com/bharatagarwal/introducing-go,num_dependents_deps.dev:0 github.com/bharatdangar/advanced-js-import, github.com/bharatdangar/gulp-js-import,num_dependents_deps.dev:0 +github.com/bharath-r17/podcast-generator, github.com/bharath-sadhu/mca-company-registry, github.com/bharath1998/proof-of-elapsed-time-consensus-,num_dependents_deps.dev:0 github.com/bharath23/leetcode,num_dependents_deps.dev:0 @@ -303717,6 +310246,7 @@ github.com/bharathselva28/react-native-incoming-call-android,num_dependents_deps github.com/bharathshetty4/programming-sites-solved,num_dependents_deps.dev:0 github.com/bharathstark/lourde,num_dependents_deps.dev:0 github.com/bharathstark/serve,num_dependents_deps.dev:0 +github.com/bharathvaj-ganesan/clockwork-sms-action, github.com/bharathvaj-ganesan/fullstory-integrations,num_dependents_deps.dev:0 github.com/bharathvaj-ganesan/netlify-plugin-airbrake, github.com/bharathvaj1995/array-random-shuffle,num_dependents_deps.dev:0 @@ -303765,6 +310295,7 @@ github.com/bhargava/fcgi-props-parser,num_dependents_deps.dev:0 github.com/bhargavag78/masks-js,num_dependents_deps.dev:0 github.com/bhargavchippada/forceatlas2,Google github.com/bhargavgandhi/react-native-simple-markdown,num_dependents_deps.dev:0 +github.com/bhargavms/action-clean-runner-workspace, github.com/bhargavmungara/Bahubali-Characters,num_dependents_deps.dev:0 github.com/bhargavrpatel/gulp-prettier,num_dependents_deps.dev:38 github.com/bhargavshah/spacify,num_dependents_deps.dev:0 @@ -303790,6 +310321,7 @@ github.com/bhaskar20/pragmatic-deprecate,num_dependents_deps.dev:0 github.com/bhaskarGyan/use-multi-key-debugger,num_dependents_deps.dev:0 github.com/bhaskarGyan/use-throttle,num_dependents_deps.dev:0 github.com/bhaskargr/beyondprosps-jsclient,num_dependents_deps.dev:0 +github.com/bhaskarkc/docker-global-protect, github.com/bhaskarkh/movefiletoextensionfolder, github.com/bhaskarmac/flower-names,num_dependents_deps.dev:0 github.com/bhaskarmelkani/coko,num_dependents_deps.dev:0 @@ -303827,10 +310359,12 @@ github.com/bhauman/figwheel-main,criticality_score:0.424430 github.com/bhauman/lein-figwheel,criticality_score:0.386630 github.com/bhauman/react-native-figwheel-bridge,num_dependents_deps.dev:0 github.com/bhaumik-choksi/learncrypy, +github.com/bhaumikmistry/Version-update-action, github.com/bhautikdobariya/simple-data1,num_dependents_deps.dev:0 github.com/bhautikpip/aws-xray-sdk-go,num_dependents_deps.dev:0 github.com/bhautikpip/release-workflow-test,num_dependents_deps.dev:0 github.com/bhavana-shetty/tiny,num_dependents_deps.dev:0 +github.com/bhavaniravi/python-uml-generator, github.com/bhavanki/stats,num_dependents_deps.dev:0 github.com/bhavayAnand9/bhavayAnand9_npx_card,num_dependents_deps.dev:0 github.com/bhavayAnand9/file-chopper,num_dependents_deps.dev:0 @@ -303945,6 +310479,7 @@ github.com/bherbruck/plend, github.com/bherbruck/simple_tracker, github.com/bherbruck/yf-api,num_dependents_deps.dev:0 github.com/bherbst/OpenSSL-Checker,num_dependents_deps.dev:0 +github.com/bhermann/issue-volunteer, github.com/bhesmans/random,num_dependents_deps.dev:0 github.com/bheuvel/transip_dns, github.com/bhexopen/BHEX-OpenApi, @@ -303962,6 +310497,7 @@ github.com/bhimsen92/awklib,num_dependents_deps.dev:0 github.com/bhinneka/bersamabilling-go,num_dependents_deps.dev:0 github.com/bhirmbani/countdown-generator,num_dependents_deps.dev:0 github.com/bhirmbani/npm-package,num_dependents_deps.dev:0 +github.com/bhirsz/actions-robocop, github.com/bhirsz/robotframework-templateddata, github.com/bhishp/avro-typescript,num_dependents_deps.dev:0 github.com/bhishp/storybook-formik,num_dependents_deps.dev:0 @@ -304129,6 +310665,7 @@ github.com/bhovhannes/use-force-update-hook, github.com/bhowell2/debouncer,num_dependents_deps.dev:0 github.com/bhowell2/debouncer-js,num_dependents_deps.dev:0 github.com/bhowell2/dirwatcher,num_dependents_deps.dev:0 +github.com/bhowell2/github-substring-action, github.com/bhowell2/smart-scheduler,num_dependents_deps.dev:0 github.com/bhowmist/funny, github.com/bhpnet/bhp-js-sdk,num_dependents_deps.dev:0 @@ -304219,6 +310756,7 @@ github.com/bhuvana-guna/javascript-markdown-formatter,num_dependents_deps.dev:0 github.com/bhuvana-guna/js-markdown-formatter, github.com/bhuvana084/simple-angular2-datepicker,num_dependents_deps.dev:0 github.com/bhuvansingla/iitk-coin,num_dependents_deps.dev:0 +github.com/bhuvi11/Test_action, github.com/bhuvi99/mongo_to_cassandra,num_dependents_deps.dev:0 github.com/bhuvi99/mongodbs,num_dependents_deps.dev:0 github.com/bhuvi99/object_encryptor,num_dependents_deps.dev:0 @@ -304390,6 +310928,7 @@ github.com/bibig/passion,num_dependents_deps.dev:0 github.com/bibig/rander, github.com/bibig/shine,num_dependents_deps.dev:6 github.com/bibineko/hain-plugin-weblio,num_dependents_deps.dev:0 +github.com/bibipkins/dotnet-test-reporter, github.com/bibiru/starwars-names,num_dependents_deps.dev:0 github.com/bibitoo/cordova-plugin-wechat,num_dependents_deps.dev:0 github.com/bibiuc/apicloud-server,num_dependents_deps.dev:0 @@ -304473,6 +311012,7 @@ github.com/bici-fed/bici-transformers,num_dependents_deps.dev:0 github.com/bici-fed/eslint-config-bici,num_dependents_deps.dev:0 github.com/bici-fed/react-native-g6,num_dependents_deps.dev:0 github.com/bicidata/bicidata, +github.com/bickoSiTiEff/setup-supabase-action, github.com/bickyeric/todo,num_dependents_deps.dev:0 github.com/bicobus/pyMarkovNameGenerator, github.com/bicomedia/chiqq, @@ -304480,6 +311020,7 @@ github.com/bicomedia/txho, github.com/biconou/AudioPlayer,num_dependents_deps.dev:0 github.com/bicossampalis/com.bxl.service.phonegap,num_dependents_deps.dev:0 github.com/bicsi/testutil, +github.com/bicstone/backlog-notify, github.com/bicstone/ra-language-japanese,num_dependents_deps.dev:0 github.com/bicv/LogGabor, github.com/bicv/SLIP, @@ -304932,6 +311473,7 @@ github.com/bigdong89/xgboostExtension, github.com/bigdongzai/service-mesh-extension,num_dependents_deps.dev:0 github.com/bigdots/js-arithmetic,num_dependents_deps.dev:0 github.com/bigdragon-D/lgyun,num_dependents_deps.dev:0 +github.com/bigdroid/action-build, github.com/bigearth/memopress,num_dependents_deps.dev:0 github.com/bigeasy/abend,num_dependents_deps.dev:118 github.com/bigeasy/addendum,num_dependents_deps.dev:0 @@ -305242,10 +311784,12 @@ github.com/biglocalnews/civic-scraper, github.com/biglocalnews/court-scraper, github.com/biglocalnews/sdk, github.com/biglocalnews/tools, +github.com/biglocalnews/upload-files, github.com/biglocalnews/warn-scraper, github.com/biglocalnews/warn-transformer, github.com/biglogic/go-sortings,num_dependents_deps.dev:0 github.com/biglotteryfund/dictionary-cy-gb,num_dependents_deps.dev:0 +github.com/bigloupe/buildpacks-action, github.com/bigluck/jqueryify-all,num_dependents_deps.dev:0 github.com/bigluck/neoogm,num_dependents_deps.dev:0 github.com/bigluck/sqs-queue-parallel,num_dependents_deps.dev:0 @@ -305259,6 +311803,7 @@ github.com/bigman73/jay-gee-eff,num_dependents_deps.dev:0 github.com/bigmassa/skeleton,num_dependents_deps.dev:0 github.com/bigmate/leetcode,num_dependents_deps.dev:0 github.com/bigmeech/exroute,num_dependents_deps.dev:0 +github.com/bigmeech/gha-simple-coverage, github.com/bigmeech/jsonhide,num_dependents_deps.dev:0 github.com/bigmeech/mangaka, github.com/bigmeech/node-office,num_dependents_deps.dev:0 @@ -305487,6 +312032,8 @@ github.com/bigwheel-framework/bw-analytics,num_dependents_deps.dev:0 github.com/bigwheel-framework/bw-vm, github.com/bigwheel/aws2-wrap, github.com/bigwheel/case-class-expand-and-apply,num_dependents_deps.dev:0 +github.com/bigwheel/get-terraform-version-action, +github.com/bigwheel/kustomize-validate-action, github.com/bigwheel/scalatest-structured-before,num_dependents_deps.dev:0 github.com/bigwhite/csv2xls,num_dependents_deps.dev:0 github.com/bigwhite/experiments,num_dependents_deps.dev:0 @@ -305677,6 +312224,8 @@ github.com/bilal-fazlani/swiftbar4s,num_dependents_deps.dev:0 github.com/bilal-uslu/crypto-helper-js, github.com/bilal114/react-autocomplete-select, github.com/bilal114/react-date-range-calendar,num_dependents_deps.dev:0 +github.com/bilalahmad99/gha-trigger-awx, +github.com/bilalahmad99/github-action-trigger-awx, github.com/bilalameer89/cordova-plugin-file-transfer,num_dependents_deps.dev:0 github.com/bilalamjad1991/bilal-amjad,num_dependents_deps.dev:0 github.com/bilalasd/phonegap-plugin-ringer-mode,num_dependents_deps.dev:0 @@ -305699,6 +312248,8 @@ github.com/bilalq/iex-api,num_dependents_deps.dev:0 github.com/bilalq/inkwell,num_dependents_deps.dev:0 github.com/bilalq/lambda-promise-interop,num_dependents_deps.dev:0 github.com/bilalq/xterm-256color-palette,num_dependents_deps.dev:0 +github.com/bilalshaikh42/action-conventional-commits, +github.com/bilalshaikh42/todo, github.com/bilalshareef/animate-display-property,num_dependents_deps.dev:0 github.com/bilaltirmizi123/react-native-google-maps-directions,num_dependents_deps.dev:0 github.com/bilaltirmizi123/react-native-in-app-notification,num_dependents_deps.dev:0 @@ -305725,8 +312276,10 @@ github.com/bilashcse/covid-summary,num_dependents_deps.dev:0 github.com/bilashcse/nodeplate,num_dependents_deps.dev:0 github.com/bilashsaha/translation_handler,num_dependents_deps.dev:0 github.com/bilaxy-exchange/arweave-go,num_dependents_deps.dev:0 +github.com/bilberrry-infra/docker-build-args-action, github.com/bilbeyt/django-fast-pagination, github.com/bilboblockins/go-practice,num_dependents_deps.dev:0 +github.com/bilbu/audit-check, github.com/bilby91/jest-change-matchers,num_dependents_deps.dev:0 github.com/bilby91/sdev.sh,num_dependents_deps.dev:0 github.com/bilby91/serverless-aws-kinesis-firehose,num_dependents_deps.dev:0 @@ -305755,6 +312308,7 @@ github.com/bildvitta/django-hub-sdk, github.com/bildvitta/quasar-app-extension-hub,num_dependents_deps.dev:0 github.com/bildvitta/quasar-app-extension-responsive,num_dependents_deps.dev:0 github.com/bildvitta/quasar-app-extension-steroids,num_dependents_deps.dev:0 +github.com/bildvitta/serverless-with-python-requirements, github.com/bildvitta/tokens,num_dependents_deps.dev:0 github.com/bildvitta/vuex-offline,num_dependents_deps.dev:0 github.com/bildvitta/vuex-store-module,num_dependents_deps.dev:0 @@ -305893,6 +312447,7 @@ github.com/billforward/bf-ruby,num_dependents_deps.dev:0 github.com/billforward/billforward-js,num_dependents_deps.dev:0 github.com/billgao0807/dwelo-thermostat,num_dependents_deps.dev:0 github.com/billge1205/WeJs,num_dependents_deps.dev:0 +github.com/billglover/action-envvars, github.com/billglover/passport-moves,num_dependents_deps.dev:0 github.com/billgo/babel-preset-common,num_dependents_deps.dev:0 github.com/billgo/babel-preset-habitual,num_dependents_deps.dev:0 @@ -306049,6 +312604,8 @@ github.com/billy4479/file-sender,num_dependents_deps.dev:0 github.com/billyadelphia/coinone-address-validator,num_dependents_deps.dev:0 github.com/billyadelphia/pancakeswap-sdk,num_dependents_deps.dev:0 github.com/billyadelphia/sequelize-state-machine,num_dependents_deps.dev:0 +github.com/billyan2018/codeclimate-changed, +github.com/billyan2018/setup-pmd, github.com/billyb2/bet365-scraper, github.com/billyb2/lz4util,num_dependents_deps.dev:0 github.com/billyb2/magnet-url-rs,num_dependents_deps.dev:0 @@ -306077,6 +312634,7 @@ github.com/billyham/satellite-stream,num_dependents_deps.dev:0 github.com/billyjanitsch/bundled-size,num_dependents_deps.dev:0 github.com/billyjanitsch/mew,num_dependents_deps.dev:0 github.com/billyjanitsch/mews,num_dependents_deps.dev:0 +github.com/billyjbryant/create-status-check, github.com/billyjs/up-bank-typescript,num_dependents_deps.dev:0 github.com/billyjulius/serenity-cucumber-testlink,num_dependents_deps.dev:0 github.com/billyjulius/serenity-jbehave-testlink,num_dependents_deps.dev:0 @@ -306235,6 +312793,7 @@ github.com/bimbar/pykwb, github.com/bimbashrestha/sha256sumf, github.com/bimbenders/use2137,num_dependents_deps.dev:0 github.com/bimbeonguyen/react-chat-widget,num_dependents_deps.dev:0 +github.com/bimbimprasetyoafif/pelican-simple, github.com/bimdata/areas,num_dependents_deps.dev:0 github.com/bimdata/compile-minifier, github.com/bimdata/python-api-client, @@ -306285,6 +312844,7 @@ github.com/bin0801/launch,num_dependents_deps.dev:0 github.com/bin1357/chunked-singly-linked-list,num_dependents_deps.dev:0 github.com/bin1357/promise-requester,num_dependents_deps.dev:0 github.com/bin1996/hb_upload,num_dependents_deps.dev:0 +github.com/bin3xish477/ghast, github.com/binRick/newDaemon,num_dependents_deps.dev:0 github.com/binachachko/project,num_dependents_deps.dev:0 github.com/binacoin-official/go-binacoin,num_dependents_deps.dev:0 @@ -306336,6 +312896,7 @@ github.com/binarly-io/uefi_r2, github.com/binarta/generator-binarta,num_dependents_deps.dev:0 github.com/binarta/gulp-binarta-template,num_dependents_deps.dev:0 github.com/binarta/web.storage.js,num_dependents_deps.dev:0 +github.com/binary-0/Automatic-Tistory-Uploader, github.com/binary-0/OSSP_Lab07, github.com/binary-butterfly/binaryBookingCalendar,num_dependents_deps.dev:0 github.com/binary-butterfly/react-charging-station-connector-icons, @@ -306395,6 +312956,7 @@ github.com/binarydud/django-redshift, github.com/binarydud/mongoobject, github.com/binarydud/pyres, github.com/binarydud/redshift_sqlalchemy, +github.com/binaryedge/be-ghaction-slack-notif, github.com/binaryfeed/node-mtgox-client-streaming,num_dependents_deps.dev:0 github.com/binaryfigments/abuseipdb,num_dependents_deps.dev:0 github.com/binaryfigments/ipreport,num_dependents_deps.dev:0 @@ -306572,6 +313134,7 @@ github.com/bing-ads-sdk/BingAds-Java-SDK,num_dependents_deps.dev:0 github.com/bing-shi/HGM, github.com/bing3188/server-utils,num_dependents_deps.dev:0 github.com/bing6/sails-sqlserver,num_dependents_deps.dev:0 +github.com/bingblue/send-nodemailer, github.com/bingco-zhan/vue-form-dragger, github.com/bingdian/grunt-cmd-hbs,num_dependents_deps.dev:0 github.com/bingdian/gulp-html-map,num_dependents_deps.dev:0 @@ -307067,6 +313630,7 @@ github.com/binout/daiquiri,num_dependents_deps.dev:0 github.com/binout/jaxrs-csv,num_dependents_deps.dev:0 github.com/binout/jaxrs-unit,num_dependents_deps.dev:0 github.com/binout/jiphoto,num_dependents_deps.dev:0 +github.com/binowork/match-labels, github.com/binoy14/create-react-app,num_dependents_deps.dev:0 github.com/binoysinha/starwars-names-demo,num_dependents_deps.dev:0 github.com/binp-automation/mdrv,num_dependents_deps.dev:0 @@ -307129,6 +313693,7 @@ github.com/binxio/gcp-get-secret,num_dependents_deps.dev:0 github.com/binxio/oauth-cli, github.com/binxio/pipy-cli-template, github.com/binxio/python-gcloud-config-helper, +github.com/binxio/tfe-run-wait-action, github.com/binxio/xk6-privatebin,num_dependents_deps.dev:0 github.com/binxor/go-bowling,num_dependents_deps.dev:0 github.com/binyamin/lincoln,num_dependents_deps.dev:0 @@ -307293,6 +313858,7 @@ github.com/biogo/biogo,"criticality_score:0.368580,num_dependents_deps.dev:4" github.com/biogo/hts,num_dependents_deps.dev:203 github.com/biogo/ncbi,num_dependents_deps.dev:6 github.com/biohuns/min2phase.js,num_dependents_deps.dev:0 +github.com/biohuns/rpmbuild-centos8-action, github.com/bioid/janus-mysql-popular,num_dependents_deps.dev:0 github.com/bioidiap/antispoofing.clientspec, github.com/bioidiap/antispoofing.evaluation, @@ -307432,6 +313998,7 @@ github.com/biomedbigdata/BiCoN, github.com/biomedbigdata/BiGAnts-PyPI-package, github.com/biomedbigdata/spongeWebPy, github.com/biomedical-cybernetics/pypsis, +github.com/biomejs/setup-biome, github.com/biometria-se/grizzly, github.com/biometrics/openbr,criticality_score:0.461270 github.com/bionade24/dockerctl, @@ -307809,6 +314376,7 @@ github.com/birchb1024/quandong,num_dependents_deps.dev:0 github.com/birchb1024/terraform-provider-multiverse,num_dependents_deps.dev:0 github.com/birchb1024/terraform-provider-universe,num_dependents_deps.dev:0 github.com/birchill/bugsnag-zero,num_dependents_deps.dev:0 +github.com/birchill/edge-addon-upload, github.com/birchill/hikibiki-data,num_dependents_deps.dev:0 github.com/birchill/hikibiki-sync,num_dependents_deps.dev:0 github.com/birchill/json-equalish,num_dependents_deps.dev:0 @@ -307905,6 +314473,7 @@ github.com/biril/backbone-proxy,num_dependents_deps.dev:0 github.com/biril/http-util,num_dependents_deps.dev:0 github.com/biril/mp3-parser,num_dependents_deps.dev:0 github.com/biril/tillthen,num_dependents_deps.dev:0 +github.com/birjj/tectonic-biber-action, github.com/birjolaxew/flippy.js,num_dependents_deps.dev:0 github.com/birjolaxew/simple-smtp-listener,num_dependents_deps.dev:0 github.com/birjolaxew/vmf-tools,num_dependents_deps.dev:0 @@ -307989,8 +314558,10 @@ github.com/biscuit-auth/biscuit-go,num_dependents_deps.dev:0 github.com/biscuit-js/biscuit-store, github.com/bisegni/simple-db-exporter,num_dependents_deps.dev:0 github.com/bisgardo/dupe-nukem,num_dependents_deps.dev:0 +github.com/bisgardo/github-action-regex-parse, github.com/bisguzar/social-watcher, github.com/bisguzar/twitter-scraper,criticality_score:0.352940 +github.com/bishalrai96/Project_Card_Automation, github.com/bishalsensand/gin-rest-api,num_dependents_deps.dev:0 github.com/bishen/koa-swagger-view, github.com/bishenes/pandoc-bin,num_dependents_deps.dev:0 @@ -307999,6 +314570,7 @@ github.com/bishil06/directory-crawler,num_dependents_deps.dev:0 github.com/bishkou/password-checker,num_dependents_deps.dev:0 github.com/bishkou/tube-api,num_dependents_deps.dev:0 github.com/bishless/colors-bfco,num_dependents_deps.dev:0 +github.com/bishnoimahendra22/legendary-computing-machine, github.com/bisho1995/asymmetric-encryption,num_dependents_deps.dev:0 github.com/bisho1995/react-read-more,num_dependents_deps.dev:0 github.com/bisho1995/waituntil,num_dependents_deps.dev:0 @@ -308036,6 +314608,7 @@ github.com/bismuthfoundation/polysign, github.com/bisna/ksuid,num_dependents_deps.dev:0 github.com/bisnode/kubectl-login,num_dependents_deps.dev:0 github.com/bisol/ngDraggable,num_dependents_deps.dev:0 +github.com/bison-packages/install-bison, github.com/bisonai/edgebenchmark, github.com/bisoncorps/gophie,num_dependents_deps.dev:0 github.com/bisoncorps/pipelining-pycon-talk, @@ -308060,12 +314633,14 @@ github.com/bisratyalew/mysql-paginator,num_dependents_deps.dev:0 github.com/bissaum/petz,num_dependents_deps.dev:0 github.com/bissim/FLY-graph,num_dependents_deps.dev:0 github.com/bissli/smart-webdriver-manager, +github.com/bissolli/gh-action-persist-workspace, github.com/bissolli/jquery-counter, github.com/bissolli/jquery-counter-up,num_dependents_deps.dev:0 github.com/bissolli/jquery-revealer,num_dependents_deps.dev:0 github.com/bissu/first-npm-package,num_dependents_deps.dev:0 github.com/bistcuite/eitaapykit, github.com/bistcuite/plainml, +github.com/bistecglobal/hack-flash-action, github.com/bistmaster/http_response,num_dependents_deps.dev:0 github.com/bistole/crypt-in-repo,num_dependents_deps.dev:0 github.com/bisu1200/dalgona.js,num_dependents_deps.dev:0 @@ -308122,6 +314697,14 @@ github.com/bit-ranger/bean,num_dependents_deps.dev:0 github.com/bit-ranger/rust-commons,num_dependents_deps.dev:0 github.com/bit-shashank/tinn, github.com/bit-shift/tigger, +github.com/bit-tasks/branch-lane, +github.com/bit-tasks/commit-bitmap, +github.com/bit-tasks/dependency-update, +github.com/bit-tasks/init, +github.com/bit-tasks/lane-cleanup, +github.com/bit-tasks/pull-request, +github.com/bit-tasks/tag-export, +github.com/bit-tasks/verify, github.com/bit-team/backintime,criticality_score:0.379000 github.com/bit-warrior/mongoose-user-management,num_dependents_deps.dev:0 github.com/bit-wrangler/dom-nav,num_dependents_deps.dev:0 @@ -308226,9 +314809,11 @@ github.com/bitboxjs/bitbox-component,num_dependents_deps.dev:0 github.com/bitboxjs/bitbox-transpiler,num_dependents_deps.dev:0 github.com/bitbrain-za/nodered-rfid-album-picker,num_dependents_deps.dev:0 github.com/bitbrain/braingdx,num_dependents_deps.dev:0 +github.com/bitbrain/gemspec-fetch, github.com/bitbreakr/hapi-api-auth,num_dependents_deps.dev:0 github.com/bitbreakr/roaming,num_dependents_deps.dev:0 github.com/bitbucket-rest-api/bitbucket,num_dependents_deps.dev:0 +github.com/bitbucketphp/client, github.com/bitbull-team/vue-storefront-pagination,num_dependents_deps.dev:0 github.com/bitbus/mars-rs,num_dependents_deps.dev:0 github.com/bitbutcher/accurized,num_dependents_deps.dev:0 @@ -308285,6 +314870,7 @@ github.com/bitclout/go-merkle-tree,num_dependents_deps.dev:0 github.com/bitclout/mongodb-dumper,num_dependents_deps.dev:0 github.com/bitclout/rosetta-bitclout,num_dependents_deps.dev:0 github.com/bitcoder/cucumber-json-merge,num_dependents_deps.dev:0 +github.com/bitcoder/dummy-action, github.com/bitcodr/avn-grpc-promotion-proto,num_dependents_deps.dev:0 github.com/bitcodr/gods,num_dependents_deps.dev:0 github.com/bitcog/recursive-readdir,num_dependents_deps.dev:0 @@ -308438,6 +315024,7 @@ github.com/bitdayone/bytom-ruby-sdk,num_dependents_deps.dev:0 github.com/bitdefender/bddisasm,criticality_score:0.317470 github.com/bitdefender/bitdefender, github.com/bitdefender/dicom3d, +github.com/bitdeps/helm-oci-charts-releaser, github.com/bitdewy/anthart,num_dependents_deps.dev:0 github.com/bitdisaster/electron-windows-secondary-tiles,num_dependents_deps.dev:0 github.com/bitdisaster/windows-focus-assist, @@ -308483,6 +315070,7 @@ github.com/biter777/countries,num_dependents_deps.dev:10 github.com/biter777/telegram-bot-api,num_dependents_deps.dev:0 github.com/bitergia/prosoul, github.com/bitesite/career,num_dependents_deps.dev:0 +github.com/bitestream/ai, github.com/bitex-la/bitex-js,num_dependents_deps.dev:0 github.com/bitex-la/rust-bitex,num_dependents_deps.dev:0 github.com/bitex-la/rust-curs,num_dependents_deps.dev:0 @@ -308577,6 +315165,7 @@ github.com/bitfinexcom/ufx-ui,num_dependents_deps.dev:0 github.com/bitfinexcom/ulisse,num_dependents_deps.dev:0 github.com/bitflags/bitflags,"criticality_score:0.491690,num_dependents_deps.dev:32929" github.com/bitflex-llc/bitflex-typescript,num_dependents_deps.dev:0 +github.com/bitflight-devops/github-action-jira-find-issue-keys, github.com/bitflight-devops/github-action-readme-generator,num_dependents_deps.dev:0 github.com/bitflingr/hubot-pungoblin,num_dependents_deps.dev:0 github.com/bitflingr/netscaler,num_dependents_deps.dev:0 @@ -308708,6 +315297,7 @@ github.com/bitjson/slimerjs-edge,num_dependents_deps.dev:0 github.com/bitjson/typescript-starter,"criticality_score:0.437920,num_dependents_deps.dev:0" github.com/bitjson/webshotgun,num_dependents_deps.dev:0 github.com/bitjson/wip,num_dependents_deps.dev:0 +github.com/bitjuice-net/actions-semver, github.com/bitjutsu/Cartier,num_dependents_deps.dev:0 github.com/bitjutsu/markdownify,num_dependents_deps.dev:0 github.com/bitjutsu/ziptie,num_dependents_deps.dev:0 @@ -308896,6 +315486,9 @@ github.com/bitofsky/jquery.imagecursorzoom,num_dependents_deps.dev:0 github.com/bitofsky/nhn-toast-api,num_dependents_deps.dev:0 github.com/bitofsky/promise.chain,num_dependents_deps.dev:0 github.com/bitoiu/listal,num_dependents_deps.dev:0 +github.com/bitoiu/node-js-action-template, +github.com/bitoiu/release-notify-action, +github.com/bitoiu/repo-visibility-alert-action, github.com/bitoiu/venn,num_dependents_deps.dev:0 github.com/bitokenja3/gmright2-coll,num_dependents_deps.dev:0 github.com/bitomic/mwjs,num_dependents_deps.dev:0 @@ -308948,6 +315541,25 @@ github.com/bitovi/documentjs,"criticality_score:0.348810,num_dependents_deps.dev github.com/bitovi/engine-dependencies,num_dependents_deps.dev:2 github.com/bitovi/eslint-config-bitovi,num_dependents_deps.dev:0 github.com/bitovi/funcunit,"criticality_score:0.322930,num_dependents_deps.dev:2" +github.com/bitovi/github-actions-aws-secrets-manager, +github.com/bitovi/github-actions-deploy-aurora, +github.com/bitovi/github-actions-deploy-aws-ecr-registry, +github.com/bitovi/github-actions-deploy-docker-to-ec2, +github.com/bitovi/github-actions-deploy-ecs, +github.com/bitovi/github-actions-deploy-eks-helm, +github.com/bitovi/github-actions-deploy-github-runner-to-ec2, +github.com/bitovi/github-actions-deploy-prometheus, +github.com/bitovi/github-actions-deploy-rds, +github.com/bitovi/github-actions-deploy-redis-db, +github.com/bitovi/github-actions-deploy-stackstorm, +github.com/bitovi/github-actions-deploy-static-site-to-aws, +github.com/bitovi/github-actions-docker-ecr-publish, +github.com/bitovi/github-actions-docker-publish, +github.com/bitovi/github-actions-docker-to-azure-vm, +github.com/bitovi/github-actions-ecr-publish, +github.com/bitovi/github-actions-gcp-bucket, +github.com/bitovi/github-actions-react-to-github-pages, +github.com/bitovi/github-actions-storybook-to-github-pages, github.com/bitovi/grunt-testee,num_dependents_deps.dev:0 github.com/bitovi/incremental,num_dependents_deps.dev:0 github.com/bitovi/jquerypp,num_dependents_deps.dev:0 @@ -309043,6 +315655,7 @@ github.com/bitpodio/Rocket.Chat.Livechat,num_dependents_deps.dev:0 github.com/bitpodio/auth-module,num_dependents_deps.dev:0 github.com/bitpoke/mysql-operator,num_dependents_deps.dev:0 github.com/bitpoke/stack,num_dependents_deps.dev:0 +github.com/bitpoke/stack-deploy-github-action, github.com/bitpoke/wordpress-operator,num_dependents_deps.dev:0 github.com/bitpole-org/python-bitcoinrpc-client, github.com/bitpostAPI/interface-npm,num_dependents_deps.dev:0 @@ -309056,6 +315669,8 @@ github.com/bitprim/bitprim-py, github.com/bitprim/grunt-cache-busting,num_dependents_deps.dev:0 github.com/bitprim/keoken-wallet-client,num_dependents_deps.dev:0 github.com/bitprim/keoken-wallet-service,num_dependents_deps.dev:0 +github.com/bitprj/kubernetes-action, +github.com/bitprj/push-subdir, github.com/bitprophet/alabaster,criticality_score:0.345330 github.com/bitprophet/lexicon, github.com/bitprophet/pytest-relaxed,Google @@ -309343,6 +315958,7 @@ github.com/bitshiftza/goczmq,num_dependents_deps.dev:0 github.com/bitshiftza/goexif,num_dependents_deps.dev:0 github.com/bitshiftza/rollup-plugin-ts-paths,num_dependents_deps.dev:0 github.com/bitshiftza/system,num_dependents_deps.dev:0 +github.com/bitshopp/check-input, github.com/bitsick/redux-coreapi,num_dependents_deps.dev:0 github.com/bitsiecom/bitsie-pay-sign,num_dependents_deps.dev:0 github.com/bitslab/cargo-compiler-interrupts,num_dependents_deps.dev:0 @@ -309422,6 +316038,7 @@ github.com/bitstrings/portallocator-maven-plugin,num_dependents_deps.dev:0 github.com/bitstrings/splasher-maven-plugin,num_dependents_deps.dev:0 github.com/bitstrings/xmllocation-replacer-maven-plugin,num_dependents_deps.dev:0 github.com/bitstwinkle/jelly,num_dependents_deps.dev:1 +github.com/bitsvilas/hello-world-javascript-action, github.com/bitswipe-stack/bitswipe-admin,num_dependents_deps.dev:0 github.com/bitsy-ai/django-coturn, github.com/bitsy-ai/octoprint-nanny-plugin, @@ -309489,6 +316106,7 @@ github.com/bitwarden/desktop,criticality_score:0.502640 github.com/bitwarden/jslib,num_dependents_deps.dev:0 github.com/bitwarden/mobile,criticality_score:0.537220 github.com/bitwarden/server,criticality_score:0.529190 +github.com/bitwarden/sm-action, github.com/bitwarden/web,criticality_score:0.525200 github.com/bitwave-tv/chat-bot,num_dependents_deps.dev:0 github.com/bitwave-tv/chat-bot-sdk,num_dependents_deps.dev:0 @@ -309563,6 +316181,7 @@ github.com/bivanov/swiftvipergenerator, github.com/bivas/protobuf-java-format, github.com/biveeco/overcast,num_dependents_deps.dev:0 github.com/bivek/hackerrank,num_dependents_deps.dev:0 +github.com/biw/aws-s3-github-action, github.com/biw/gatsby-plugin-aphrodite,num_dependents_deps.dev:0 github.com/biw/tiny-throttle, github.com/biw/typetac, @@ -309610,6 +316229,7 @@ github.com/bizarrochris/simple-sitemap,num_dependents_deps.dev:0 github.com/bizdevfe/biz-icon,num_dependents_deps.dev:0 github.com/bizdevfe/biz-ui,num_dependents_deps.dev:0 github.com/bizen241/remark-inline-math,num_dependents_deps.dev:0 +github.com/bizflycloud/action-bizflyctl, github.com/bizflycloud/autoscaler,num_dependents_deps.dev:0 github.com/bizflycloud/bizfly-backup,num_dependents_deps.dev:0 github.com/bizflycloud/bizfly-cloud-controller-manager,num_dependents_deps.dev:0 @@ -309774,6 +316394,7 @@ github.com/bjascob/PythonDataServe, github.com/bjascob/amrlib, github.com/bjascob/pySimpleNLG, github.com/bjascob/pyinflect, +github.com/bjaspire/discord-notify, github.com/bjatkin/minesweeper,num_dependents_deps.dev:0 github.com/bjbigler/database,num_dependents_deps.dev:0 github.com/bjbigler/gocas,num_dependents_deps.dev:0 @@ -309804,13 +316425,16 @@ github.com/bjeld/material-ui-mst-table,num_dependents_deps.dev:0 github.com/bjerkio/crayon-api-js,num_dependents_deps.dev:0 github.com/bjerkio/fiken-js,num_dependents_deps.dev:0 github.com/bjerkio/gcl-slack,num_dependents_deps.dev:0 +github.com/bjerkio/kopier, github.com/bjerkio/nestjs-oso,num_dependents_deps.dev:0 github.com/bjerkio/nestjs-slack,num_dependents_deps.dev:0 github.com/bjerkio/oidc-react,num_dependents_deps.dev:0 github.com/bjerkio/pulumi-sendgrid,num_dependents_deps.dev:0 github.com/bjerkio/stackie,num_dependents_deps.dev:0 +github.com/bjerkio/swagger-codegen-action, github.com/bjerkio/swedbank-pay-js,num_dependents_deps.dev:0 github.com/bjerkio/tripletex-go,num_dependents_deps.dev:0 +github.com/bjerkio/vault-action, github.com/bjesuiter/capacitor-sync-version-cli,num_dependents_deps.dev:0 github.com/bjesuiter/deploy-to-git,num_dependents_deps.dev:0 github.com/bjesuiter/filter-async-rxjs-pipe,num_dependents_deps.dev:0 @@ -309948,6 +316572,8 @@ github.com/bjoluc/next-redux-cookie-wrapper,num_dependents_deps.dev:0 github.com/bjoluc/pytest-reraise, github.com/bjoluc/semantic-release-config-npm,num_dependents_deps.dev:0 github.com/bjoluc/semantic-release-config-poetry,num_dependents_deps.dev:0 +github.com/bjompen/PSSecretScanner, +github.com/bjompen/UpdatePWSHAction, github.com/bjonamu/firebase-services,num_dependents_deps.dev:0 github.com/bjonamu/ignite-react-app,num_dependents_deps.dev:0 github.com/bjonamu/ir-app-boilerplate-adam,num_dependents_deps.dev:0 @@ -309962,6 +316588,7 @@ github.com/bjonesy/ngx-list,num_dependents_deps.dev:0 github.com/bjonica/co-twit,num_dependents_deps.dev:0 github.com/bjonnh/konnector,num_dependents_deps.dev:0 github.com/bjorand/nombda,num_dependents_deps.dev:0 +github.com/bjorand/nombda-github-action, github.com/bjorg/jDoc,num_dependents_deps.dev:0 github.com/bjork24/bs-eslint-message,num_dependents_deps.dev:0 github.com/bjork24/grunt-media-query-extractor,num_dependents_deps.dev:0 @@ -310163,7 +316790,9 @@ github.com/bkach/truco,num_dependents_deps.dev:0 github.com/bkad/git-json-merge,num_dependents_deps.dev:0 github.com/bkad/misaka, github.com/bkad/python-stylus, +github.com/bkahlert/bats-wrapper, github.com/bkahlert/koodies,num_dependents_deps.dev:0 +github.com/bkahlert/recordr, github.com/bkahn-github/pytorch_zoo, github.com/bkalaldeh/in-app-purchase,num_dependents_deps.dev:0 github.com/bkalaldeh/node-recurly,num_dependents_deps.dev:0 @@ -310453,6 +317082,7 @@ github.com/bkw/node-streambrake, github.com/bkw1212/hyperledger-fabric-used-car,num_dependents_deps.dev:0 github.com/bkway/gochimp,num_dependents_deps.dev:0 github.com/bkwilcox100/Skelli,num_dependents_deps.dev:0 +github.com/bkwld/laravel-pug, github.com/bkwld/tram,num_dependents_deps.dev:0 github.com/bkyryliuk/s3werkzeugcache, github.com/bkzl/hocus-pocus,num_dependents_deps.dev:0 @@ -310501,11 +317131,18 @@ github.com/blabaere/scaproust,num_dependents_deps.dev:0 github.com/blabassi/local-storage,num_dependents_deps.dev:0 github.com/blabberofficial/ya-react-native-video-player,num_dependents_deps.dev:0 github.com/blabla1337/skf-flask,criticality_score:0.523930 +github.com/blablacar/action-c-3po-droid, +github.com/blablacar/action-config-blanks, +github.com/blablacar/action-config-levels, +github.com/blablacar/action-consul-kv, +github.com/blablacar/action-download-last-artifact, +github.com/blablacar/action-sticky-description, github.com/blablacar/data-causaltest, github.com/blablacar/data-dslib, github.com/blablacar/ui-library,num_dependents_deps.dev:0 github.com/blablameh/Mochawesome-,num_dependents_deps.dev:0 github.com/blablamukul/yt-playlist-updater, +github.com/blablatdinov/anki-action, github.com/blablatdinov/notifications-demo,num_dependents_deps.dev:0 github.com/blabno/eslint-config-labnoratory,num_dependents_deps.dev:0 github.com/blabot/blabot-api,num_dependents_deps.dev:0 @@ -310540,6 +317177,7 @@ github.com/black-desk/dbus-edge-cases-test-demo,num_dependents_deps.dev:0 github.com/black-hill/goanda,num_dependents_deps.dev:0 github.com/black-kro/create-kro-app,num_dependents_deps.dev:0 github.com/black-lotus/go-design-pattern,num_dependents_deps.dev:0 +github.com/black-magius/kube-helm, github.com/black-nijar/npm-example,num_dependents_deps.dev:0 github.com/black-ox/simple,num_dependents_deps.dev:0 github.com/black-perl/mailman-cli, @@ -311107,6 +317745,7 @@ github.com/blacknikboard/arduino-watcher,num_dependents_deps.dev:0 github.com/blacknikboard/go-examples,num_dependents_deps.dev:0 github.com/blacknon/pydork, github.com/blackntt/go-jsend,num_dependents_deps.dev:0 +github.com/blackone-sudo/build-rpm, github.com/blackopsnyc/hyperterm-blackops,num_dependents_deps.dev:0 github.com/blackpaper9973/bpfeeder, github.com/blackpaper9973/bpsymbol, @@ -311143,6 +317782,7 @@ github.com/blackshadev/Roadie,num_dependents_deps.dev:0 github.com/blackshadev/xmljs,num_dependents_deps.dev:0 github.com/blackshadowwalker/spring-distributelock,num_dependents_deps.dev:0 github.com/blackshadowwalker/spring-retrofit2,num_dependents_deps.dev:0 +github.com/blackshot/ntfy-action, github.com/blacksmith-capital/likhtar,num_dependents_deps.dev:0 github.com/blacksmith-community/blacksmith,num_dependents_deps.dev:0 github.com/blacksmith-community/boss,num_dependents_deps.dev:0 @@ -311170,6 +317810,7 @@ github.com/blacksonic/ngx-webpack,num_dependents_deps.dev:0 github.com/blacksphere/blackmagic,criticality_score:0.540370 github.com/blacksquaresa/raww,num_dependents_deps.dev:0 github.com/blackst0ne/mermaid,num_dependents_deps.dev:0 +github.com/blackstar257/docker-csvlint, github.com/blackstarzes/homebridge-sonoff-basicr3,num_dependents_deps.dev:0 github.com/blacksterhack/go-programming,num_dependents_deps.dev:0 github.com/blackstone86/gulp_inline_src,num_dependents_deps.dev:0 @@ -311186,6 +317827,7 @@ github.com/blacksun1/grunt-teamcity-status,num_dependents_deps.dev:0 github.com/blacksun1/intravenous-code-adaptor,num_dependents_deps.dev:0 github.com/blacksun1/teamcity-package-reporter,num_dependents_deps.dev:0 github.com/blackswanny/performance-polyfill,num_dependents_deps.dev:12 +github.com/blacktag/helm, github.com/blacktail/taobao, github.com/blacktail/ztree,num_dependents_deps.dev:0 github.com/blacktangent/dep_upgrade,num_dependents_deps.dev:0 @@ -311201,6 +317843,7 @@ github.com/blacktear23/tidb,num_dependents_deps.dev:0 github.com/blacktemplar/augur-fee-windows-info,num_dependents_deps.dev:0 github.com/blacktop/arm64-cgo,num_dependents_deps.dev:0 github.com/blacktop/bit9-api, +github.com/blacktop/get-latest-version-action, github.com/blacktop/go-lzfse,num_dependents_deps.dev:0 github.com/blacktop/go-macho,num_dependents_deps.dev:0 github.com/blacktop/graboid,num_dependents_deps.dev:0 @@ -311269,6 +317912,7 @@ github.com/blackwinter/wadl,num_dependents_deps.dev:0 github.com/blackwinter/wirble,num_dependents_deps.dev:0 github.com/blackwithwhite666/thriftpool, github.com/blackwithwhite666/thriftworker, +github.com/blackwolf12333/phpunit-action, github.com/blackwoodseven/claudia,num_dependents_deps.dev:0 github.com/blackwoodseven/download-url-from-browser,num_dependents_deps.dev:0 github.com/blackwoodseven/yaarh,num_dependents_deps.dev:0 @@ -311745,6 +318389,7 @@ github.com/blakewilliams/viewproxy,num_dependents_deps.dev:0 github.com/blakewilson/canvas-text-block,num_dependents_deps.dev:0 github.com/blakewilson/markdown-posts,num_dependents_deps.dev:0 github.com/blakewilson/vidbg, +github.com/blakeworsley/gh-actions-clubhouse-pr-updater, github.com/blakeyc/conversions,num_dependents_deps.dev:0 github.com/blakeyoder/map2json, github.com/blakezim/CAMP, @@ -311765,11 +318410,13 @@ github.com/blakgeek/generator-bg-starter-cordova,num_dependents_deps.dev:0 github.com/blakgeek/prongodb,num_dependents_deps.dev:0 github.com/blakgeek/rest-api-errors,num_dependents_deps.dev:0 github.com/blakgeek/spreadit,num_dependents_deps.dev:0 +github.com/blakjak44/s3-upload-artifact, github.com/blakmatrix/colored, github.com/blakmatrix/fizzbuzz, github.com/blakmatrix/node-zendesk,"criticality_score:0.445970,num_dependents_deps.dev:14" github.com/blakmatrix/olive, github.com/blakmatrix/rpi-tool,num_dependents_deps.dev:0 +github.com/blakmatrix/vitepress-jsdoc, github.com/blaknite/blush,num_dependents_deps.dev:0 github.com/blallo/xkcd-386,num_dependents_deps.dev:0 github.com/blalop/bbva2pandas, @@ -311858,6 +318505,7 @@ github.com/blankg/rn-files-view-ios,num_dependents_deps.dev:0 github.com/blankhang/iptool,num_dependents_deps.dev:0 github.com/blankon/irgsh-go,num_dependents_deps.dev:0 github.com/blankstar85/sequelize-central-log,num_dependents_deps.dev:0 +github.com/blanpa/test-git-actions, github.com/blantik/dukujs,num_dependents_deps.dev:0 github.com/blanxii/generator-webserver,num_dependents_deps.dev:0 github.com/blanzh/gulp-check-include,num_dependents_deps.dev:0 @@ -311948,6 +318596,7 @@ github.com/blaumeise20/create-array,num_dependents_deps.dev:0 github.com/blaumeise20/date-timeout-interval,num_dependents_deps.dev:0 github.com/blaumeise20/global-azure-2021-battleship,num_dependents_deps.dev:0 github.com/blaumeise20/template-jsx,num_dependents_deps.dev:0 +github.com/blauqs/actions-download-asset, github.com/blaur/nativescript-mobilepay,num_dependents_deps.dev:0 github.com/blauret/pyG5, github.com/blauwiggle/building-microservices,num_dependents_deps.dev:0 @@ -311958,6 +318607,7 @@ github.com/blavka/solarDeltaSolMQTT, github.com/blavka/xComfortMQTT, github.com/blaw2422/slackbot-dispatch,num_dependents_deps.dev:0 github.com/blawar/nut,criticality_score:0.403280 +github.com/blawrenceSE/nowsecure-actions-integration, github.com/blaxk/aws-lambda-middleware,num_dependents_deps.dev:0 github.com/blaxk/ixband,num_dependents_deps.dev:0 github.com/blaxk/ixsnack,num_dependents_deps.dev:0 @@ -312041,6 +318691,8 @@ github.com/blazvi/osdb-hash,num_dependents_deps.dev:0 github.com/blazzy/strip-newlines,num_dependents_deps.dev:4 github.com/blb-ventures/strawberry-django-plus, github.com/blbcava/Agendador-Python, +github.com/blbecker/hugo-build, +github.com/blbecker/rsync-deploy, github.com/blbradley/create-react-app,num_dependents_deps.dev:0 github.com/blbuford/ModernRelay, github.com/blcarlson01/simplelanscan, @@ -312265,6 +318917,7 @@ github.com/blencorp/react-lighthouse-viewer,num_dependents_deps.dev:0 github.com/blend/go-sdk,num_dependents_deps.dev:3 github.com/blend/k8s.io-client-go,num_dependents_deps.dev:0 github.com/blend/promise-utils,num_dependents_deps.dev:0 +github.com/blend/require-conditional-status-checks, github.com/blend/sentry-go,num_dependents_deps.dev:1 github.com/blend/ts-selector, github.com/blend2d/b2d-node,num_dependents_deps.dev:0 @@ -312310,6 +318963,8 @@ github.com/blendsdk/stdlib,num_dependents_deps.dev:0 github.com/blendtale/images-map,num_dependents_deps.dev:0 github.com/blendtale/react-native-keyboard-view-space, github.com/blendtale/react-native-next-input, +github.com/blendthink/elixir, +github.com/blennster/setup-docker-remote-tls, github.com/blenq/psycaio, github.com/blented/npm-vimeo-froogaloop,num_dependents_deps.dev:0 github.com/blented/velocity,num_dependents_deps.dev:0 @@ -312597,6 +319252,7 @@ github.com/bline/jade-html-loader,num_dependents_deps.dev:2 github.com/bline/remix,num_dependents_deps.dev:0 github.com/blinfo/BLAuthjs,num_dependents_deps.dev:0 github.com/blinfo/bl-tailwind,num_dependents_deps.dev:0 +github.com/bling-yshs/hyzl-changelog-generator, github.com/blingblingredstar/gulu-vue,num_dependents_deps.dev:0 github.com/blingenf/copydetect, github.com/blingerson/angular-froala-wysiwyg, @@ -312726,6 +319382,7 @@ github.com/blinkspark/blink-util,num_dependents_deps.dev:0 github.com/blinkspark/go-blink-storage,num_dependents_deps.dev:0 github.com/blinkspark/go-util,num_dependents_deps.dev:0 github.com/blinkspark/prototypes,num_dependents_deps.dev:1 +github.com/blinktag/nfpm, github.com/blinktaginc/gtfs-to-chart,num_dependents_deps.dev:0 github.com/blinktaginc/gtfs-to-geojson, github.com/blinktaginc/gtfs-to-html,num_dependents_deps.dev:0 @@ -312734,6 +319391,8 @@ github.com/blinkylights23/cronmatch,num_dependents_deps.dev:0 github.com/blinkylights23/grunt-swigtemplates,num_dependents_deps.dev:0 github.com/blinkylights23/node-trivial,num_dependents_deps.dev:0 github.com/blinkylights23/vue-clock,num_dependents_deps.dev:0 +github.com/blinqas/git-diff-sort, +github.com/blinqas/tf-plan-pr-comment, github.com/blinry/nom,num_dependents_deps.dev:0 github.com/blintsoft/blintsoft-ui,num_dependents_deps.dev:0 github.com/blinxjs/blinx-extensions,num_dependents_deps.dev:0 @@ -312943,6 +319602,8 @@ github.com/block-hczhai/pyblock3-preview, github.com/block-sexy/taro-qr-bar-code,num_dependents_deps.dev:0 github.com/block-soft/litecore-explorers,num_dependents_deps.dev:0 github.com/block27/core,num_dependents_deps.dev:0 +github.com/block42-blockchain-company/ktlint-action, +github.com/block42-blockchain-company/yapf-action, github.com/block65/dynamodb-data-mapper-js,num_dependents_deps.dev:3 github.com/block65/imgproxy-node,num_dependents_deps.dev:0 github.com/block65/pommel,num_dependents_deps.dev:0 @@ -313170,6 +319831,8 @@ github.com/blocklang/page-designer,num_dependents_deps.dev:0 github.com/blocklang/std-ide-widget,num_dependents_deps.dev:0 github.com/blocklang/std-widget-web,num_dependents_deps.dev:6 github.com/blocklang/widgets-bootstrap,num_dependents_deps.dev:0 +github.com/blocklessnetwork/github-action-blockless-deploy, +github.com/blocklessnetwork/github-action-blockless-setup, github.com/blocklet/create-blocklet,num_dependents_deps.dev:0 github.com/blocklet/install-on-abtnode,num_dependents_deps.dev:0 github.com/blocklet/kitchen-sink-demo, @@ -313362,6 +320025,7 @@ github.com/bloemetjesgordijn/selenium-essentials, github.com/bloep/kas-api,num_dependents_deps.dev:0 github.com/blog-lyn/cz-conventional-changelog,num_dependents_deps.dev:0 github.com/blog-lyn/react-squire-editor,num_dependents_deps.dev:0 +github.com/blogc/setup-blogc, github.com/blogdomarcio/alphav_client_python, github.com/blogfoster/eslint-config-blogfoster,num_dependents_deps.dev:0 github.com/blogfoster/hapi-demo,num_dependents_deps.dev:0 @@ -313423,6 +320087,9 @@ github.com/blokwise/blok,num_dependents_deps.dev:0 github.com/blokwise/dynamic,num_dependents_deps.dev:1 github.com/blokwise/icons,num_dependents_deps.dev:0 github.com/blokwise/utils,num_dependents_deps.dev:0 +github.com/blombard/lambda-monorepo, +github.com/blombard/move-to-next-iteration, +github.com/blombard/review-reminder, github.com/blond-admin/BLonD, github.com/blond/detemplate,num_dependents_deps.dev:0 github.com/blond/eslint-config-pedant,num_dependents_deps.dev:0 @@ -313441,6 +320108,7 @@ github.com/blongden/hologram-webpack-plugin,num_dependents_deps.dev:0 github.com/blongg/react-native-bottom-sheet,num_dependents_deps.dev:0 github.com/blontic/ajv-cli,num_dependents_deps.dev:0 github.com/blooak/RegEz, +github.com/bloobirds-it/action-transition-multiple-jira-issues, github.com/blood-sand/blood-sand-game,num_dependents_deps.dev:0 github.com/blood72/videojs-size-toggle,num_dependents_deps.dev:0 github.com/bloodbare/aioarangodb, @@ -313460,6 +320128,8 @@ github.com/bloodf/cordova-plugin-background-mode,num_dependents_deps.dev:0 github.com/bloodf/cordova-plugin-qrscanner-fixed-focus,num_dependents_deps.dev:0 github.com/bloodf/dale-dale-pqp,num_dependents_deps.dev:0 github.com/bloodf/faustao-ta-pegando-fogo,num_dependents_deps.dev:0 +github.com/bloodf/github-deploy-action, +github.com/bloodf/github-deploy-status, github.com/bloodf/hoje-nao-hoje-sim,num_dependents_deps.dev:0 github.com/bloodf/jetRoute,num_dependents_deps.dev:0 github.com/bloodf/pagarme-bifrost-js,num_dependents_deps.dev:0 @@ -313472,6 +320142,7 @@ github.com/bloodhound/context-access,num_dependents_deps.dev:0 github.com/bloodhound/syslog-stream,num_dependents_deps.dev:0 github.com/bloodorangeio/distribution-spec,num_dependents_deps.dev:0 github.com/bloodorangeio/helm,num_dependents_deps.dev:0 +github.com/bloodorangeio/oci-test-action, github.com/bloodorangeio/octant-helm,num_dependents_deps.dev:0 github.com/bloodpet/epg_downloader, github.com/bloodpet/partial_s3_to_es, @@ -313520,6 +320191,7 @@ github.com/bloodyKnuckles/xhr-rx-bare,num_dependents_deps.dev:0 github.com/bloodyhistory/proxy_manager,num_dependents_deps.dev:0 github.com/bloodynumen/gulp-handlebars-robot,num_dependents_deps.dev:0 github.com/bloodyowl/Scroll, +github.com/bloodyowl/actions-aws-eb, github.com/bloodyowl/animationframe,num_dependents_deps.dev:2 github.com/bloodyowl/attempt,num_dependents_deps.dev:0 github.com/bloodyowl/chocolatine,num_dependents_deps.dev:0 @@ -313576,6 +320248,8 @@ github.com/bloodyowl/rescript-future, github.com/bloodyowl/rescript-react-update,num_dependents_deps.dev:0 github.com/bloodyowl/router,num_dependents_deps.dev:0 github.com/bloodyowl/scroll-direction,num_dependents_deps.dev:0 +github.com/bloodyowl/slack-message-deploy-action, +github.com/bloodyowl/slack-message-release-action, github.com/bloodyowl/store,num_dependents_deps.dev:0 github.com/bloodyowl/stream,num_dependents_deps.dev:0 github.com/bloodyowl/streamtimer,num_dependents_deps.dev:0 @@ -313657,6 +320331,7 @@ github.com/bloomen/featureimpact, github.com/bloomen/rsgrep,num_dependents_deps.dev:0 github.com/bloomenio/json-warehouse,num_dependents_deps.dev:0 github.com/bloominlabs/nomad-openapi-typescript,num_dependents_deps.dev:0 +github.com/bloominlabs/setup-hashicorp-releases, github.com/bloomkd46/RPi-controler,num_dependents_deps.dev:0 github.com/bloomkd46/homebridge-XfinityHome,num_dependents_deps.dev:0 github.com/bloomonkey/ead-toolbox, @@ -313670,6 +320345,7 @@ github.com/bloomtime/bloom-sql-js, github.com/bloomtime/require-env,num_dependents_deps.dev:14 github.com/bloomyminded/chicrime,num_dependents_deps.dev:0 github.com/blooopa/drae,num_dependents_deps.dev:0 +github.com/blooper05/action-rails_best_practices, github.com/blooperz/nutcracker, github.com/bloopletech/deba.js,num_dependents_deps.dev:2 github.com/bloopletech/endothermic-blaster,num_dependents_deps.dev:0 @@ -313679,6 +320355,7 @@ github.com/bloops-games/bloops,num_dependents_deps.dev:0 github.com/blooser/youtube-downloader, github.com/bloovery/floriclient,num_dependents_deps.dev:0 github.com/blopa/gatsby-remark-local-videos,num_dependents_deps.dev:0 +github.com/blopezpi/action-kli, github.com/blopker/gohxn,num_dependents_deps.dev:0 github.com/bloplet/eslint-config-bloplet,num_dependents_deps.dev:0 github.com/bloq/awdns,num_dependents_deps.dev:0 @@ -313936,6 +320613,7 @@ github.com/blue68/mock-http-request,num_dependents_deps.dev:0 github.com/bluePlatinum/pybacked, github.com/blueShard-dev/aionlib, github.com/blueStragglr/react-chevron,num_dependents_deps.dev:0 +github.com/blueagle-so/chat, github.com/bluealba/gics,num_dependents_deps.dev:0 github.com/bluealba/json-recon, github.com/bluealba/object-transform, @@ -314050,6 +320728,7 @@ github.com/bluecap-se/yarr, github.com/bluecap-se/yarr.client, github.com/bluecard7/crafting_interpreters,num_dependents_deps.dev:0 github.com/bluecard7/dbdb,num_dependents_deps.dev:0 +github.com/bluecargo/npm-publish, github.com/bluecast-technologies/create-react-redux-bcast,num_dependents_deps.dev:0 github.com/bluecast-technologies/react-querybuilder-uxd,num_dependents_deps.dev:0 github.com/bluecat-japac/dns-traffic-statistics-agent,num_dependents_deps.dev:0 @@ -314134,6 +320813,9 @@ github.com/bluefidelity/node-webshot,num_dependents_deps.dev:0 github.com/bluefireoly/fabrikmc,num_dependents_deps.dev:0 github.com/bluefireoly/kotlin-smtp,num_dependents_deps.dev:0 github.com/bluefireoly/spigot-language-kotlin,num_dependents_deps.dev:0 +github.com/bluefireteam/melos-action, +github.com/bluefireteam/spec-action, +github.com/bluefirex/pushnotifier-send-action, github.com/blueflag/babel-plugin-extract-flow-types,num_dependents_deps.dev:0 github.com/blueflag/blueflag-nodejs,num_dependents_deps.dev:0 github.com/blueflag/blueflag-record, @@ -314199,6 +320881,7 @@ github.com/bluehipy/blue-forms, github.com/bluehipy/simple-data-model,num_dependents_deps.dev:0 github.com/bluehive-health/zipcodes,num_dependents_deps.dev:0 github.com/bluehole333/eth,num_dependents_deps.dev:0 +github.com/bluehorndigital/setup-drupal, github.com/bluehosts/go_math,num_dependents_deps.dev:0 github.com/bluehosts/qstools,num_dependents_deps.dev:0 github.com/blueimp/Bootstrap-Image-Gallery,num_dependents_deps.dev:0 @@ -314220,6 +320903,7 @@ github.com/blueimp/node-ffmpeg-image-diff,num_dependents_deps.dev:0 github.com/blueimp/record-screen,num_dependents_deps.dev:0 github.com/blueimp/wdio-screen-commands,num_dependents_deps.dev:0 github.com/blueinkhq/blueink-embed-js,num_dependents_deps.dev:0 +github.com/blueish9/check-app-version, github.com/blueish9/cliplister-client,num_dependents_deps.dev:0 github.com/blueish9/redux-dispatcher,num_dependents_deps.dev:0 github.com/blueish9/redux-facade,num_dependents_deps.dev:0 @@ -314274,6 +320958,7 @@ github.com/bluekeyes/patch2pr,num_dependents_deps.dev:0 github.com/bluekeyes/sphinx-javalink, github.com/bluekeyes/templatetree,num_dependents_deps.dev:0 github.com/bluekitchen/btstack,criticality_score:0.544920 +github.com/bluekrow/hexo-auto-deploy, github.com/bluekvirus/Stage-devtools,num_dependents_deps.dev:0 github.com/bluekvirus/django-express, github.com/bluelabs-eu/eh-pg,num_dependents_deps.dev:0 @@ -314295,6 +320980,8 @@ github.com/bluelight598/yy-demo,num_dependents_deps.dev:0 github.com/bluelinelabs/Conductor,"criticality_score:0.463970,num_dependents_deps.dev:6" github.com/bluelinelabs/LoganSquare,Google github.com/bluelink8888/translate-token,num_dependents_deps.dev:0 +github.com/bluelion2/github-action-puppeteer-screenshot, +github.com/bluelion2/jira-add-comment-action, github.com/bluella/stbt, github.com/bluelotussoftware/tomcat-security-valves,num_dependents_deps.dev:0 github.com/blueloveTH/imltk, @@ -314889,6 +321576,7 @@ github.com/blukai/storybook-addon-themes,num_dependents_deps.dev:0 github.com/blukis/cordova-plugin-tts-gu1,num_dependents_deps.dev:0 github.com/blumamir/github-actions-playground,num_dependents_deps.dev:0 github.com/blumamir/lerna-playground,num_dependents_deps.dev:0 +github.com/blumilksoftware/action-pr-title, github.com/blumoon/discord-webhook,num_dependents_deps.dev:0 github.com/blumoon/eslint-config-blumoon,num_dependents_deps.dev:0 github.com/blunatic/internet-archive,num_dependents_deps.dev:0 @@ -314993,6 +321681,8 @@ github.com/bluwireless/blade, github.com/bluwireless/blade-templating, github.com/bluwireless/designformat, github.com/bluwy/colorblind, +github.com/bluwy/release-for-reddit-action, +github.com/bluwy/substitute-string-action, github.com/bluwy/svelte-preprocess-import-assets,num_dependents_deps.dev:0 github.com/bluwy/svelte-router,num_dependents_deps.dev:0 github.com/bluwy/vite-plugin-iso-import,num_dependents_deps.dev:0 @@ -315067,6 +321757,7 @@ github.com/bm2-lab/scMDML, github.com/bm20894/Image-Tools, github.com/bm20894/ryf, github.com/bm296672810/go-bmcat,num_dependents_deps.dev:0 +github.com/bm2ilabs/s3-backblaze-github-action, github.com/bm371613/gest, github.com/bm371613/refren,num_dependents_deps.dev:0 github.com/bm371613/slice-aggregator, @@ -315271,6 +321962,14 @@ github.com/bmbstack/ripple,num_dependents_deps.dev:0 github.com/bmby-co/contract,num_dependents_deps.dev:0 github.com/bmby/bmby-api-node-client,num_dependents_deps.dev:0 github.com/bmby/bmby-api-typescript,num_dependents_deps.dev:0 +github.com/bmc-compuware/TTT-CLI-Local, +github.com/bmc-compuware/code-pipeline-deployment-list, +github.com/bmc-compuware/devX-data-studio-github-actions, +github.com/bmc-compuware/ispw-build, +github.com/bmc-compuware/ispw-deploy, +github.com/bmc-compuware/ispw-generate, +github.com/bmc-compuware/ispw-sync, +github.com/bmc-compuware/ispw-sync-local, github.com/bmc-toolbox/actor,num_dependents_deps.dev:0 github.com/bmc-toolbox/bmcbutler,num_dependents_deps.dev:0 github.com/bmc-toolbox/bmcldap,num_dependents_deps.dev:0 @@ -315280,6 +321979,7 @@ github.com/bmc-toolbox/gin-go-metrics,num_dependents_deps.dev:3 github.com/bmc/munkres,Google github.com/bmc/retain, github.com/bmc/sqlcmd, +github.com/bmc08gt/action-install-approov-cli, github.com/bmcage/odes, github.com/bmccann36/remarkable-times-local, github.com/bmcclure/deploytool,num_dependents_deps.dev:6 @@ -315568,6 +322268,7 @@ github.com/bmob/bmob-node-module,num_dependents_deps.dev:0 github.com/bmob/bmob-nodejs-module,num_dependents_deps.dev:0 github.com/bmob/bmobup,num_dependents_deps.dev:0 github.com/bmob/hydrogen-js-sdk,num_dependents_deps.dev:0 +github.com/bmoeller-md/act_exp, github.com/bmoers/nedb,num_dependents_deps.dev:2 github.com/bmoers/node-binary-search-tree,num_dependents_deps.dev:4 github.com/bmoers/sn-cicd,num_dependents_deps.dev:0 @@ -315602,6 +322303,7 @@ github.com/bmorrise/pylc, github.com/bmorrisondev/azure-app-service-keepalive,num_dependents_deps.dev:0 github.com/bmorrisondev/discordlogger, github.com/bmorrisondev/faunaservice,num_dependents_deps.dev:0 +github.com/bmorrisondev/hello-world-action, github.com/bmorrisondev/mwbot-poc-helloworld,num_dependents_deps.dev:0 github.com/bmorrisondev/mwbot-poc-logger,num_dependents_deps.dev:0 github.com/bmorrisondev/script-scheduler,num_dependents_deps.dev:0 @@ -315615,6 +322317,7 @@ github.com/bmosigisi/generator-redux-saga-material,num_dependents_deps.dev:0 github.com/bmoussaud/buildpack-labels-operator,num_dependents_deps.dev:0 github.com/bmoussaud/micropets-app,num_dependents_deps.dev:0 github.com/bmoussaud/placeholders-mustachifier-maven-plugin,num_dependents_deps.dev:0 +github.com/bmoussaud/tmc-gitops-demo, github.com/bmoyer240/sassy-font-awesome,num_dependents_deps.dev:0 github.com/bmozaffa/dbaas-backing-operator,num_dependents_deps.dev:0 github.com/bmpang/PythonCredentialHolderClass, @@ -315732,6 +322435,7 @@ github.com/bmuschko/gradle-java2html-plugin,num_dependents_deps.dev:0 github.com/bmuschko/gradle-nexus-plugin,"criticality_score:0.349560,num_dependents_deps.dev:112" github.com/bmuschko/gradle-tomcat-plugin,"criticality_score:0.333790,num_dependents_deps.dev:0" github.com/bmuschko/gradle-vagrant-plugin,num_dependents_deps.dev:0 +github.com/bmuschko/setup-kubeconform, github.com/bmuskalla/scoped-system-properties,num_dependents_deps.dev:0 github.com/bmustiata/core-lang,num_dependents_deps.dev:0 github.com/bmustiata/core-promise,num_dependents_deps.dev:0 @@ -315785,6 +322489,7 @@ github.com/bmxitalia/LTNtorch, github.com/bmyers-csu/pulsar,num_dependents_deps.dev:0 github.com/bmyers-csu/vertica-sql-go,num_dependents_deps.dev:0 github.com/bmyers/slush-sitecore-helix,num_dependents_deps.dev:0 +github.com/bn-digital/vault, github.com/bn0901/tablip, github.com/bn0x/pyFetch, github.com/bn3t/generator-angular-2-firebase-bootstrap,num_dependents_deps.dev:0 @@ -315798,6 +322503,8 @@ github.com/bnadav/to_roman,num_dependents_deps.dev:0 github.com/bnadlerjr/tavi, github.com/bnagy/crabstone,num_dependents_deps.dev:0 github.com/bnagy/mqdq-parser, +github.com/bnaing/android-sdk-test-report-action, +github.com/bnaing/sdk-test-report-action, github.com/bnankiewicz/org-mode-connection,num_dependents_deps.dev:0 github.com/bnannier/ionize-ui,num_dependents_deps.dev:0 github.com/bnaohaore/morepagecli,num_dependents_deps.dev:0 @@ -315867,6 +322574,8 @@ github.com/bndynet/clr.js,num_dependents_deps.dev:0 github.com/bndynet/dialog,num_dependents_deps.dev:0 github.com/bndynet/dialog-themes,num_dependents_deps.dev:0 github.com/bndynet/ftsi,num_dependents_deps.dev:0 +github.com/bndynet/github-action-inject-copyright, +github.com/bndynet/github-action-notion, github.com/bndynet/header-injection-webpack-plugin,num_dependents_deps.dev:0 github.com/bndynet/icharts,num_dependents_deps.dev:0 github.com/bndynet/jslib,num_dependents_deps.dev:0 @@ -316001,6 +322710,7 @@ github.com/bnmnetp/pythonds, github.com/bnmnetp/reframe, github.com/bnn-tk/clacking-code-interview-practice,num_dependents_deps.dev:0 github.com/bnnadi/news,num_dependents_deps.dev:0 +github.com/bnnanet/github-actions-rsync, github.com/bnnk/marshmallow-extras, github.com/bnnrymndy/golangxmlparse,num_dependents_deps.dev:0 github.com/bnnvara/eslint-config-bnnvara,num_dependents_deps.dev:0 @@ -316080,6 +322790,7 @@ github.com/bntzio/notion-api,num_dependents_deps.dev:0 github.com/bntzio/now-detox,num_dependents_deps.dev:0 github.com/bntzio/supercomputer,num_dependents_deps.dev:0 github.com/bntzio/treminal,num_dependents_deps.dev:0 +github.com/bntzio/warm-welcome-action, github.com/bntzio/wip-cli,num_dependents_deps.dev:0 github.com/bntzio/wipe-modules,num_dependents_deps.dev:0 github.com/bnulwh/go-utils,num_dependents_deps.dev:0 @@ -316126,6 +322837,7 @@ github.com/bo2kshelf/eslint-plugin,num_dependents_deps.dev:0 github.com/bo2kshelf/prettier-config,num_dependents_deps.dev:0 github.com/bo712/project-lvl1-s248,num_dependents_deps.dev:0 github.com/boa-dev/boa,"criticality_score:0.520300,num_dependents_deps.dev:4" +github.com/boa-dev/criterion-compare-action, github.com/boa-dev/ryu-js,num_dependents_deps.dev:20 github.com/boa9448/PyAutoMaker, github.com/boa9448/PyAutoMakerHuman, @@ -316147,6 +322859,7 @@ github.com/boardeaser/vue-password-strength-meter,num_dependents_deps.dev:0 github.com/boarder-portal/components,num_dependents_deps.dev:0 github.com/boardfish/clonk,num_dependents_deps.dev:0 github.com/boardfish/view_component-no_component,num_dependents_deps.dev:0 +github.com/boardfish/waxseal, github.com/boardgameio/bgio-redis-pubsub,num_dependents_deps.dev:0 github.com/boardgameio/boardgame.io,"criticality_score:0.510440,num_dependents_deps.dev:2" github.com/boardgamesai/games,num_dependents_deps.dev:0 @@ -316222,6 +322935,7 @@ github.com/bob-lee/vue-text-slide,num_dependents_deps.dev:0 github.com/bob-mallzee/gulp-aws-codedeploy,num_dependents_deps.dev:0 github.com/bob-obringer/eslint-config,num_dependents_deps.dev:0 github.com/bob007abc/fun,num_dependents_deps.dev:0 +github.com/bob1113/gitbook-publish, github.com/bob1118/fm,num_dependents_deps.dev:0 github.com/bob1edition/gobrain,num_dependents_deps.dev:0 github.com/bob1edition/gotutorialllvm,num_dependents_deps.dev:0 @@ -316308,6 +323022,7 @@ github.com/bobbyg603/bugsplat-ng4,num_dependents_deps.dev:0 github.com/bobbygebert/verified,num_dependents_deps.dev:1 github.com/bobbyhalljr/react-styled-navbar,num_dependents_deps.dev:0 github.com/bobbyhaze/DynaTMT-py, +github.com/bobbyiliev/ibis-build-action, github.com/bobbyirawan/bobbygo,num_dependents_deps.dev:0 github.com/bobbyjim/acs-builder,num_dependents_deps.dev:0 github.com/bobbylee-dev/bobbylee, @@ -316400,7 +323115,9 @@ github.com/bobgautier/rjgtoys-xc, github.com/bobgy/argo-workflows,num_dependents_deps.dev:0 github.com/bobhageman/pinlogin,num_dependents_deps.dev:0 github.com/bobheadxi/alertmanager,num_dependents_deps.dev:0 +github.com/bobheadxi/deployments, github.com/bobheadxi/gobenchdata,num_dependents_deps.dev:0 +github.com/bobheadxi/readable, github.com/bobheadxi/res,num_dependents_deps.dev:0 github.com/bobheadxi/seer,num_dependents_deps.dev:0 github.com/bobheadxi/twist,num_dependents_deps.dev:0 @@ -316525,6 +323242,7 @@ github.com/bobrossrtx/deepshadows,num_dependents_deps.dev:0 github.com/bobrovde/gomemcache,num_dependents_deps.dev:0 github.com/bobrovde/mtproto,num_dependents_deps.dev:0 github.com/bobrovde/radius,num_dependents_deps.dev:0 +github.com/bobrown101/deploy-branch, github.com/bobscott45/load-js-css,num_dependents_deps.dev:0 github.com/bobsharon/mfk-element, github.com/bobsilverberg/hubot-welcome,num_dependents_deps.dev:0 @@ -316583,6 +323301,7 @@ github.com/boburda/dauntless-js,num_dependents_deps.dev:0 github.com/boburjonraximov/githubn1,num_dependents_deps.dev:0 github.com/boburjonraximov/tasks_for_syntax,num_dependents_deps.dev:0 github.com/bobvandenberge/logback-slack-appender,num_dependents_deps.dev:0 +github.com/bobvanderlinden/combine-pull-requests, github.com/bobvanderlinden/node-machinetalk,num_dependents_deps.dev:0 github.com/bobvanderlinden/probot-auto-merge,num_dependents_deps.dev:0 github.com/bobvanderlinden/swagger-scrubber,num_dependents_deps.dev:0 @@ -316767,6 +323486,7 @@ github.com/bodinaren/maplestory-skills,num_dependents_deps.dev:0 github.com/bodinaren/stencil-constructible-style,num_dependents_deps.dev:0 github.com/bodinsamuel/altheia,num_dependents_deps.dev:0 github.com/bodinsamuel/konveyor,num_dependents_deps.dev:0 +github.com/bodinsamuel/renovate-automatic-branch, github.com/bodiroga/boringproxy-python-api, github.com/bodja/django-gcs, github.com/bodji/plik,num_dependents_deps.dev:0 @@ -316824,6 +323544,7 @@ github.com/body-builder/jsass,num_dependents_deps.dev:0 github.com/body-builder/typescript-cp,num_dependents_deps.dev:0 github.com/body-link/body-link,num_dependents_deps.dev:0 github.com/body-link/tachka,num_dependents_deps.dev:0 +github.com/bodyazinchenko/auto-assign-author-to-pr, github.com/bodybank-sdk/BodyBank-SDK-Android,num_dependents_deps.dev:0 github.com/bodybank-sdk/BodyBank-SDK-Android-UI,num_dependents_deps.dev:0 github.com/bodyflex/react-native-simple-modal,num_dependents_deps.dev:0 @@ -316879,6 +323600,7 @@ github.com/bodyno/tencent_vedio,num_dependents_deps.dev:0 github.com/bodyshopbidsdotcom/activejob_arguments,num_dependents_deps.dev:0 github.com/bodyshopbidsdotcom/ajax-utils, github.com/bodyshopbidsdotcom/eslint-config-snapsheet,num_dependents_deps.dev:0 +github.com/bodyshopbidsdotcom/gh-action-publish-gem-on-tag, github.com/bodyshopbidsdotcom/piexifjs,num_dependents_deps.dev:0 github.com/bodyshopbidsdotcom/react-dd-menu,num_dependents_deps.dev:0 github.com/bodyshopbidsdotcom/react-redux-notifications,num_dependents_deps.dev:0 @@ -317077,6 +323799,7 @@ github.com/bogus34/bookshelf-schema,num_dependents_deps.dev:0 github.com/bogus34/bookshelf-signals,num_dependents_deps.dev:0 github.com/bogusfilter/bogusfilter,num_dependents_deps.dev:0 github.com/boguslawwitek/lvlup-js,num_dependents_deps.dev:0 +github.com/boguszpawlowski/PR-Task-Checker, github.com/boguz/ackbar-snackbar,num_dependents_deps.dev:0 github.com/boguz/burgton-button, github.com/bogwro/cesium,num_dependents_deps.dev:0 @@ -317121,6 +323844,7 @@ github.com/bohr-cloud/bohr-cli,num_dependents_deps.dev:0 github.com/bohr-cloud/lambda-sql,num_dependents_deps.dev:0 github.com/bohr-cloud/worker-api,num_dependents_deps.dev:0 github.com/bohr-cloud/worker-sql,num_dependents_deps.dev:0 +github.com/bohr-io/action, github.com/bohrasd/aliyun-cr-exporter,num_dependents_deps.dev:0 github.com/bohrqiu/dubbo-cache,num_dependents_deps.dev:0 github.com/bohulenkov14/create-react-app,num_dependents_deps.dev:0 @@ -317198,6 +323922,7 @@ github.com/boisgera/eul-style, github.com/boisgera/logfile, github.com/boisgera/numtest, github.com/boisgera/pioupiou, +github.com/boite-nl/query-release-action, github.com/boitewitte/s3-contenttype-fixer,num_dependents_deps.dev:0 github.com/boivinalex/permittivitycalc, github.com/boiyaa/datastore-tools,num_dependents_deps.dev:0 @@ -317540,6 +324265,7 @@ github.com/boltsource/fartify,num_dependents_deps.dev:0 github.com/boltss/react-native-hooks,num_dependents_deps.dev:0 github.com/boltss/react-native-pulsating-view,num_dependents_deps.dev:0 github.com/boltss/react-native-safe-area-helper,num_dependents_deps.dev:0 +github.com/boltthreads/activerecord-tablefree, github.com/boltwall-org/now-boltwall,num_dependents_deps.dev:0 github.com/boltzexchange/boltz-lnd,num_dependents_deps.dev:0 github.com/boluabraham/fhir-active-status,num_dependents_deps.dev:14 @@ -317548,6 +324274,10 @@ github.com/boluabraham/fhir-login,num_dependents_deps.dev:0 github.com/boluabraham/fhir-period,num_dependents_deps.dev:10 github.com/boluge/bespoke-theme-boluge,num_dependents_deps.dev:0 github.com/bolunthompson/return-result, +github.com/bolvarak/dotnet-nuget-publish, +github.com/bolvarak/nuget-publish, +github.com/boly38/action-mongo-tools, +github.com/boly38/action-umami-report, github.com/boly38/jardiLib, github.com/boly38/node-mongotools,num_dependents_deps.dev:0 github.com/bolza/generator-bolzaplate,num_dependents_deps.dev:0 @@ -317562,6 +324292,7 @@ github.com/bom4v/ti-spark-data-generation,num_dependents_deps.dev:0 github.com/bom4v/ti-spark-examples,num_dependents_deps.dev:0 github.com/bomaidea/gutil,num_dependents_deps.dev:0 github.com/bomanimc/gitrocket,num_dependents_deps.dev:0 +github.com/bomb-on/aws-ssm-to-env, github.com/bomb-on/react-trump, github.com/bombadillo/angular2-asset-versioner,num_dependents_deps.dev:0 github.com/bombadillo/primeng,num_dependents_deps.dev:0 @@ -317666,6 +324397,7 @@ github.com/bonastreyair/node-red-contrib-teachable-machine,num_dependents_deps.d github.com/bonaval/sequelize-temporal,num_dependents_deps.dev:0 github.com/bonavida/react-a-gate,num_dependents_deps.dev:0 github.com/bonaxcrimo/tiny,num_dependents_deps.dev:0 +github.com/bonaysoft/notion-md-gen, github.com/bonboarding/collapsing-page,num_dependents_deps.dev:0 github.com/bonbon-et-chocolat/c929-music-data,num_dependents_deps.dev:0 github.com/bonbonez/react-scroll-snap,num_dependents_deps.dev:0 @@ -317708,6 +324440,8 @@ github.com/bondden/gulp-puml,num_dependents_deps.dev:0 github.com/bondden/node-7z-esf,num_dependents_deps.dev:0 github.com/bondden/u2j,num_dependents_deps.dev:0 github.com/bondden/uto,num_dependents_deps.dev:0 +github.com/bonddim/action-lxd-init, +github.com/bonddim/action-workflow-matrix, github.com/bondgeek/bgqsp, github.com/bondli/generator-admix,num_dependents_deps.dev:0 github.com/bondli/generator-admix-react,num_dependents_deps.dev:0 @@ -317776,6 +324510,7 @@ github.com/boneskull/ketch, github.com/boneskull/ldr-stepper,num_dependents_deps.dev:0 github.com/boneskull/lego-color-swatches,num_dependents_deps.dev:0 github.com/boneskull/markdown-toc-index,num_dependents_deps.dev:0 +github.com/boneskull/more-linked-issues-action, github.com/boneskull/mqttletoad, github.com/boneskull/mrca,num_dependents_deps.dev:0 github.com/boneskull/never-gonna-give-you-up,num_dependents_deps.dev:0 @@ -317790,6 +324525,7 @@ github.com/boneskull/node-open-readme,num_dependents_deps.dev:0 github.com/boneskull/node-red-contrib-homekit,num_dependents_deps.dev:0 github.com/boneskull/node-red-contrib-ibm-fintech,num_dependents_deps.dev:0 github.com/boneskull/node-red-contrib-key-value-store,num_dependents_deps.dev:0 +github.com/boneskull/nodejs-production-test-action, github.com/boneskull/nvmermind,num_dependents_deps.dev:0 github.com/boneskull/packtester,num_dependents_deps.dev:0 github.com/boneskull/promwrap, @@ -317920,6 +324656,7 @@ github.com/bonitoo-io/influxdb-client-js,num_dependents_deps.dev:0 github.com/bonitoo-io/influxdb-client-ruby,num_dependents_deps.dev:0 github.com/bonitoo-io/influxdb-plugin-fluent,num_dependents_deps.dev:0 github.com/bonitoo-io/telegraf,num_dependents_deps.dev:0 +github.com/bonitour/commit-and-push-to-protected-branch-action, github.com/bonjour-foundation/smiley,num_dependents_deps.dev:0 github.com/bonjour/circleci-graph,num_dependents_deps.dev:0 github.com/bonjourmalware/melody,num_dependents_deps.dev:0 @@ -318090,6 +324827,7 @@ github.com/booink/nors,num_dependents_deps.dev:0 github.com/boojack/simple-react-impl,num_dependents_deps.dev:0 github.com/boojies/blindsign,num_dependents_deps.dev:0 github.com/book000/get-manaba, +github.com/book000/pomxml-dep-update, github.com/book12085/easy-server-cli,num_dependents_deps.dev:0 github.com/book987/partial_readonly, github.com/bookRa/fractalgebra, @@ -318220,6 +324958,7 @@ github.com/booleangate/gulp-task-library,num_dependents_deps.dev:0 github.com/booleangate/node-db-migrations,num_dependents_deps.dev:0 github.com/booleanhunter/ReactJS-AdminLTE,num_dependents_deps.dev:0 github.com/booleans-oss/DiscGit,num_dependents_deps.dev:0 +github.com/booleans-oss/pa11y-actions, github.com/booleansky/application-structure-manager,num_dependents_deps.dev:0 github.com/boolector/boolector,Google github.com/booljs/booljs,num_dependents_deps.dev:0 @@ -318248,6 +324987,7 @@ github.com/boombang/iso-date-formatter,num_dependents_deps.dev:0 github.com/boomboy26/go-practice,num_dependents_deps.dev:0 github.com/boomcamp/boom-scripts,num_dependents_deps.dev:0 github.com/boomerang-io/carbon-addons-boomerang-react, +github.com/boomerang-io/flow.action, github.com/boomerang-io/webapp-packages,num_dependents_deps.dev:0 github.com/boomersoficial/boomers-iconized-menu,num_dependents_deps.dev:0 github.com/boomersoficial/react-boomers-iconized-menu, @@ -318289,6 +325029,7 @@ github.com/boonmathew/gocql,num_dependents_deps.dev:0 github.com/boonproject/boon,num_dependents_deps.dev:136 github.com/boonray-web/CMethod,num_dependents_deps.dev:0 github.com/boonshift/gstats,num_dependents_deps.dev:0 +github.com/boonya/gh-action-name-generator, github.com/boonya/react-hook-form-validation,num_dependents_deps.dev:0 github.com/boonya/rtsp-video-recorder,num_dependents_deps.dev:0 github.com/boonzaai/node-red-contrib-ais,num_dependents_deps.dev:0 @@ -318325,6 +325066,7 @@ github.com/boostcamp-2020/Project11-A-Web-FE-Performance-Monitoring-SDK,num_depe github.com/boostcamp-2020/Project11-B-Web-FE-Performance-Monitoring-SDK,num_dependents_deps.dev:0 github.com/boostcamp-2020/Project11-C-Web-FE-Performance-Monitoring-SDK,num_dependents_deps.dev:0 github.com/boostcamp-2020/Project18-D-WEB-BoostAct,num_dependents_deps.dev:0 +github.com/boostchicken-dev/actions-docker-extract, github.com/boostchicken/aws-ecs-eds,num_dependents_deps.dev:0 github.com/boostchicken/spring-data-dynamodb,num_dependents_deps.dev:0 github.com/boostchicken/udm-utilities,criticality_score:0.414850 @@ -318505,6 +325247,7 @@ github.com/bootstrapstudio/bstudio-sass,num_dependents_deps.dev:0 github.com/bootstrapworld/wescheme-js,num_dependents_deps.dev:0 github.com/boourns/burns-audio-wam,num_dependents_deps.dev:0 github.com/boourns/wam-extensions,num_dependents_deps.dev:0 +github.com/booxmedialtd/ws-action-parse-semver, github.com/booxood/bower-main-files,num_dependents_deps.dev:0 github.com/booxood/china-address,num_dependents_deps.dev:0 github.com/booxood/co-aws-sdk,num_dependents_deps.dev:0 @@ -318536,6 +325279,7 @@ github.com/booyaa/wordsworth,num_dependents_deps.dev:1 github.com/booyaa/wrongname,num_dependents_deps.dev:0 github.com/booz-allen-hamilton/geterdun,num_dependents_deps.dev:0 github.com/booz-allen-hamilton/lucene-hdfs-directory,num_dependents_deps.dev:0 +github.com/boozallen/dependency-update-action, github.com/booze-app/geo,num_dependents_deps.dev:0 github.com/boozingeorge/earth,num_dependents_deps.dev:0 github.com/boozingeorge/parallel-cypress,num_dependents_deps.dev:0 @@ -318601,6 +325345,7 @@ github.com/bor3ham/react-config-forms-android,num_dependents_deps.dev:0 github.com/bor3ham/react-config-forms-base,num_dependents_deps.dev:0 github.com/bor3ham/react-qbo-widgets,num_dependents_deps.dev:0 github.com/bor3ham/redux-jarm,num_dependents_deps.dev:0 +github.com/bora-fsd/azure-static-website-deploy, github.com/borab96/price_process, github.com/borabaloglu/load-env-var,num_dependents_deps.dev:0 github.com/borache/developing-test,num_dependents_deps.dev:0 @@ -318666,7 +325411,9 @@ github.com/borderless/json-rpc,num_dependents_deps.dev:0 github.com/borderless/router,num_dependents_deps.dev:0 github.com/borderless/site,num_dependents_deps.dev:0 github.com/borderless/ts-scripts,num_dependents_deps.dev:0 +github.com/borderless/web-jwt, github.com/borderless/worker-graphql,num_dependents_deps.dev:0 +github.com/borderlesslabs/worker-aws-xray, github.com/borderlineargs/mannou, github.com/borderradius/first-package,num_dependents_deps.dev:0 github.com/borderstech/requiem,num_dependents_deps.dev:0 @@ -318681,6 +325428,7 @@ github.com/bordertech/mrz-java,num_dependents_deps.dev:0 github.com/bordertech/restfriends,num_dependents_deps.dev:32 github.com/bordertech/wcomponents-addons,num_dependents_deps.dev:0 github.com/bordertech/webfriends,num_dependents_deps.dev:16 +github.com/borderzero/gh-action, github.com/bordeux/sqsmv,num_dependents_deps.dev:0 github.com/bordjoski/zkp-fish,num_dependents_deps.dev:0 github.com/bordjoski/zkp-fsh,num_dependents_deps.dev:0 @@ -318699,6 +325447,10 @@ github.com/borecjeborec1/bfk-Brain_Fuck_Compiler,num_dependents_deps.dev:0 github.com/borecjeborec1/npm-isPrime,num_dependents_deps.dev:0 github.com/boredStats/boredStats, github.com/boredbird/woe, +github.com/boredland/action-commit-store, +github.com/boredland/action-purge-workflow-runs, +github.com/boredland/action-runner-switch, +github.com/boredland/action-vercel-deployment-info, github.com/boredmathematician/datastructures,num_dependents_deps.dev:0 github.com/borekDigital/create-client-app,num_dependents_deps.dev:0 github.com/borela/naomi,criticality_score:0.323540 @@ -318746,6 +325498,8 @@ github.com/borgbackup/borg,criticality_score:0.641340 github.com/borgbase/vorta,criticality_score:0.492100 github.com/borgel/bitinfo,num_dependents_deps.dev:0 github.com/borgespires/flatbars,num_dependents_deps.dev:0 +github.com/borgespro/approved-event-checker, +github.com/borgespro/create-squad-release-branches, github.com/borgespro/node-decouple,num_dependents_deps.dev:0 github.com/borgespro/react-redux-await-control,num_dependents_deps.dev:0 github.com/borgespro/vanilla-thumbor-url-builder,num_dependents_deps.dev:0 @@ -318802,8 +325556,10 @@ github.com/boringmary/gomem,num_dependents_deps.dev:0 github.com/boringplace/rs-borsh,num_dependents_deps.dev:0 github.com/boringproxy/boringproxy,num_dependents_deps.dev:0 github.com/boringproxy/boringproxy.io,num_dependents_deps.dev:0 +github.com/boringresearch/find-comments, github.com/boringuy/git-super,num_dependents_deps.dev:0 github.com/boringwong/poppers,num_dependents_deps.dev:0 +github.com/boris-amenitiz/lcov-pull-request-report, github.com/boris-graeff/vue-smart-carousel,num_dependents_deps.dev:0 github.com/boris-lapouga/django-cursor-pagination, github.com/boris-marinov/cli-stopwatch,num_dependents_deps.dev:0 @@ -318831,6 +325587,7 @@ github.com/borisaka/rewizard,num_dependents_deps.dev:0 github.com/borisaltanov/TravelTogether, github.com/borisbolliet/pi_spec, github.com/borisbolliet/specdist, +github.com/borisbreuer/scp-deploy-it, github.com/borisbrodski/jmockit-xtend,num_dependents_deps.dev:0 github.com/borisbrodski/xfactory,num_dependents_deps.dev:0 github.com/borisbrue/wagtail-tenants, @@ -319040,6 +325797,7 @@ github.com/borntyping/spotter, github.com/borntyping/ssh-run, github.com/borntyping/supermann, github.com/borntyping/watch-fs, +github.com/boro2g/http-request-action, github.com/boroborome/CopyDB,num_dependents_deps.dev:0 github.com/boroborome/persistence-core,num_dependents_deps.dev:0 github.com/boroborome/persistence-excel,num_dependents_deps.dev:0 @@ -319323,13 +326081,18 @@ github.com/bostrt/squel-top-start-at,num_dependents_deps.dev:0 github.com/bostrt/yes.js,num_dependents_deps.dev:0 github.com/bosun-monitor/bosun,"criticality_score:0.506320,num_dependents_deps.dev:0" github.com/boswelja/android-migration,num_dependents_deps.dev:0 +github.com/boswelja/kotlinx-benchmark-table-action, +github.com/boswelja/promote-play-beta-action, +github.com/boswelja/promote-prerelease-action, github.com/boswelja/tts-ktx,num_dependents_deps.dev:0 +github.com/boswelja/update-priority-action, github.com/bot-ai/bot-lang,num_dependents_deps.dev:16 github.com/bot-compiler/botc,num_dependents_deps.dev:0 github.com/bot-designer/directlinejs-socketio,num_dependents_deps.dev:0 github.com/bot-dome/cdk-parameter-store,num_dependents_deps.dev:0 github.com/bot-jonas/youtube-community-tab, github.com/bot-lab/allbot,num_dependents_deps.dev:0 +github.com/bot-pf/test-action-4, github.com/bot-w/bModuleForTesting,num_dependents_deps.dev:0 github.com/bot101/capacitor-paystack,num_dependents_deps.dev:0 github.com/bot44/bot44,num_dependents_deps.dev:0 @@ -319376,6 +326139,7 @@ github.com/botblox/botblox-manager-software, github.com/botbox-org/bbsh,num_dependents_deps.dev:0 github.com/botbuilder-contrib/botbuilder-storage-mongodb,num_dependents_deps.dev:0 github.com/botchris/go-pubsub,num_dependents_deps.dev:0 +github.com/botcity-dev/botcity-action-bots, github.com/botcity-dev/botcity-framework-base-python, github.com/botcity-dev/botcity-framework-core-python, github.com/botcity-dev/botcity-framework-web-python, @@ -319507,6 +326271,7 @@ github.com/boto/botoflow, github.com/boto/s3transfer,Google github.com/botocore/bcdoc, github.com/botolmehedi/botol, +github.com/botonomi/RSS, github.com/botoos/botooskool, github.com/botorange/puppet-padchat-patch,num_dependents_deps.dev:0 github.com/botorange/wechaty-puppet-iosbird,num_dependents_deps.dev:0 @@ -319534,7 +326299,9 @@ github.com/botproxy/scrapy-botproxy, github.com/botre/go-playground,num_dependents_deps.dev:0 github.com/bots-edi/bots, github.com/bots-gg/markup,num_dependents_deps.dev:0 +github.com/bots-house/ghcr-delete-image-action, github.com/bots-house/go-tg,num_dependents_deps.dev:0 +github.com/bots-house/portainer-deploy-stack-action, github.com/bots-house/share-file-bot,num_dependents_deps.dev:0 github.com/bots-house/tg-me,num_dependents_deps.dev:0 github.com/bots-house/webshot,num_dependents_deps.dev:0 @@ -319992,6 +326759,7 @@ github.com/bowenpay/wechat-python-sdk, github.com/bowenpay/zeroui,num_dependents_deps.dev:0 github.com/bowens-h/tinymce-imageupload,num_dependents_deps.dev:0 github.com/bowens-zn/cypress-testrail-accumulative-milestone-reporter,num_dependents_deps.dev:0 +github.com/bowentan/glob-linters, github.com/bower-registry/react-collapse,num_dependents_deps.dev:0 github.com/bower-registry/react-height,num_dependents_deps.dev:0 github.com/bower/bower,"criticality_score:0.586750,num_dependents_deps.dev:1040" @@ -320042,6 +326810,7 @@ github.com/bowtie-co/node-utils,num_dependents_deps.dev:14 github.com/bowtie-co/prettier,num_dependents_deps.dev:0 github.com/bowtie-co/ts-github,num_dependents_deps.dev:0 github.com/bowtie-js/bowtie,num_dependents_deps.dev:0 +github.com/bowtie-json-schema/bowtie, github.com/bowwowxx/keycloak-oidc,num_dependents_deps.dev:0 github.com/bowww/bowww,Google github.com/bowww/webapp,Google @@ -320092,6 +326861,7 @@ github.com/boxart/boxart,num_dependents_deps.dev:0 github.com/boxbase/boxbase, github.com/boxbilling/boxbilling,criticality_score:0.440970 github.com/boxblox/gdxtools, +github.com/boxboat/Validate-Merge, github.com/boxboat/dockcmd,num_dependents_deps.dev:0 github.com/boxboat/dockhand-lite,num_dependents_deps.dev:0 github.com/boxboat/dockhand-lru-registry,num_dependents_deps.dev:0 @@ -320158,6 +326928,7 @@ github.com/boxmein/inmake,num_dependents_deps.dev:0 github.com/boxnwhiskr/gbboxcli, github.com/boxnwhiskr/gbscli, github.com/boxnwhiskr/gbsdk-js,num_dependents_deps.dev:0 +github.com/boxofyellow/do-while-not-queued, github.com/boxplay/watermarker-js,num_dependents_deps.dev:0 github.com/boxpositron/chromium-finder,num_dependents_deps.dev:0 github.com/boxpositron/moment-logger,num_dependents_deps.dev:0 @@ -320165,6 +326936,8 @@ github.com/boxpositron/xserver-node-client,num_dependents_deps.dev:0 github.com/boxslider/angular,num_dependents_deps.dev:0 github.com/boxslider/slider,num_dependents_deps.dev:0 github.com/boxsnake-nodejs/sequelize-autoload,num_dependents_deps.dev:0 +github.com/boxt/conventional-changelog-npm-publish, +github.com/boxt/github-tag-action, github.com/boxton90/awesome-product-library,num_dependents_deps.dev:0 github.com/boxtown/statrs,num_dependents_deps.dev:140 github.com/boxtsecond/gosgip,num_dependents_deps.dev:0 @@ -320196,6 +326969,7 @@ github.com/boy-zyj/dtree-python, github.com/boy-zyj/joiner-python, github.com/boy51/timeframe,num_dependents_deps.dev:0 github.com/boyan-ikonomov/eks-workshop-sample-api-service-go,num_dependents_deps.dev:0 +github.com/boyan-soubachov/soaker, github.com/boyander/flogg,num_dependents_deps.dev:0 github.com/boyander/redsys-polite,num_dependents_deps.dev:0 github.com/boyandim/starwars-names,num_dependents_deps.dev:0 @@ -320256,6 +327030,7 @@ github.com/boydy12/timemachine,num_dependents_deps.dev:0 github.com/boydzweers/ductron,num_dependents_deps.dev:0 github.com/boyeborg/carve,num_dependents_deps.dev:0 github.com/boyeborg/crown,num_dependents_deps.dev:0 +github.com/boyeborg/fetch-url-action, github.com/boyeborg/fizzbuzz,num_dependents_deps.dev:0 github.com/boyerdamien/api,num_dependents_deps.dev:0 github.com/boyerdamien/gapi,num_dependents_deps.dev:0 @@ -320330,6 +327105,7 @@ github.com/boynton/sadl2javagql,num_dependents_deps.dev:0 github.com/boynton/smithy,num_dependents_deps.dev:0 github.com/boynux/squid-exporter,num_dependents_deps.dev:0 github.com/boyone/hello-automate,num_dependents_deps.dev:0 +github.com/boyphongsakorn/minecraft-beta-version-style, github.com/boypig24/tamarai, github.com/boypt/notiferhub,num_dependents_deps.dev:0 github.com/boypt/simple-torrent,num_dependents_deps.dev:0 @@ -320352,7 +327128,13 @@ github.com/boyuan12/git-clone-dj, github.com/boyuan459/ant-design,num_dependents_deps.dev:0 github.com/boyuan459/safake-bootstrap,num_dependents_deps.dev:0 github.com/boyum/angular-jsonld,num_dependents_deps.dev:0 +github.com/boyum/bump-and-commit-h5p-library, +github.com/boyum/bump-h5p-version, +github.com/boyum/comment-h5p-library-version-action, +github.com/boyum/h5p-version-action, +github.com/boyum/is-h5p-library-updated-action, github.com/boyum/markdown-it-image-size,num_dependents_deps.dev:0 +github.com/boyum/pack-h5p-action, github.com/boyum/shrink-text,num_dependents_deps.dev:0 github.com/boyux/ciris,num_dependents_deps.dev:0 github.com/boyv-liu/wl-gantt,num_dependents_deps.dev:0 @@ -320362,6 +327144,9 @@ github.com/boyw165/react-ui-layers-panel,num_dependents_deps.dev:0 github.com/boywild/antd-adm-sider,num_dependents_deps.dev:0 github.com/boywild/react-adm-router,num_dependents_deps.dev:0 github.com/boywild/react-i18n-text,num_dependents_deps.dev:0 +github.com/boywithkeyboard/labeler, +github.com/boywithkeyboard/log, +github.com/boywithkeyboard/publisher, github.com/boz/kail,"criticality_score:0.317830,num_dependents_deps.dev:3" github.com/boza/interaction,num_dependents_deps.dev:0 github.com/boza/simple_interactions-rails,num_dependents_deps.dev:0 @@ -320555,7 +327340,11 @@ github.com/bpeterso2000/tomlconf, github.com/bpetetot/cuicui,num_dependents_deps.dev:0 github.com/bpetetot/react-pell,num_dependents_deps.dev:0 github.com/bpetetot/react-unlimited,num_dependents_deps.dev:0 +github.com/bpetit/action-cargo, +github.com/bpetit/action-toolchain, +github.com/bpetit/rpmbuild, github.com/bpetit/rs-docker-sync,num_dependents_deps.dev:0 +github.com/bpetit/s3-put-action, github.com/bpetrified/react-native-render-html,num_dependents_deps.dev:0 github.com/bpetterborg/swear_taser_go,num_dependents_deps.dev:0 github.com/bpetty-infosec/wordlists,num_dependents_deps.dev:0 @@ -320578,6 +327367,8 @@ github.com/bpholt/java-time-literals,num_dependents_deps.dev:0 github.com/bphun/kubernetesautoscaling,num_dependents_deps.dev:0 github.com/bpicio/aws-sqs-ra,num_dependents_deps.dev:0 github.com/bpicio/cielo-javaee,num_dependents_deps.dev:0 +github.com/bpicode/github-action-fpm, +github.com/bpicode/github-action-upload-bintray, github.com/bpicolo/loggraph, github.com/bpicori/winston-amqp-graylog,num_dependents_deps.dev:0 github.com/bpiec/bz-json.js,num_dependents_deps.dev:0 @@ -320609,6 +327400,7 @@ github.com/bpizzi/govaluate,num_dependents_deps.dev:0 github.com/bpk68/g-sheets-api,num_dependents_deps.dev:0 github.com/bpk68/react-visual-query-builder,num_dependents_deps.dev:0 github.com/bpkg/bpkg,criticality_score:0.434080 +github.com/bpkg/setup-bpkg-action, github.com/bplabombarda/statsapiclient, github.com/bplancher/odooit, github.com/bplevin36/syncbuf,num_dependents_deps.dev:0 @@ -320762,6 +327554,7 @@ github.com/bponomarenko/stash-web-api,num_dependents_deps.dev:0 github.com/bpoole6/quirk-csv,num_dependents_deps.dev:0 github.com/bpoorman/uid,num_dependents_deps.dev:0 github.com/bpop1/range-slider-vertical-element,num_dependents_deps.dev:0 +github.com/bporcelli/hello-action, github.com/bportaluri/WiFiEsp,criticality_score:0.299310 github.com/bportnoy/tadpole,num_dependents_deps.dev:0 github.com/bpost/AddressValidation-QuickAddressSearchBar,num_dependents_deps.dev:0 @@ -320936,6 +327729,7 @@ github.com/br0p0p/env-helper,num_dependents_deps.dev:0 github.com/br0uQ/cbook, github.com/br0xen/boltbrowser,num_dependents_deps.dev:0 github.com/br0xen/boltease,num_dependents_deps.dev:0 +github.com/br1anchen/dart-code-metrics-action, github.com/br3nda/validations,num_dependents_deps.dev:0 github.com/br3ndonland/fastenv, github.com/br3ndonland/inboard, @@ -321133,6 +327927,7 @@ github.com/bradenmacdonald/ofx-js,num_dependents_deps.dev:0 github.com/bradenmacdonald/prophecy,num_dependents_deps.dev:0 github.com/bradenn/monoverse,num_dependents_deps.dev:0 github.com/bradennapier/eslint-plugin-ts-import,num_dependents_deps.dev:0 +github.com/bradennapier/eslint-plus-action, github.com/bradennapier/intercomly,num_dependents_deps.dev:0 github.com/bradennapier/react-style-vars,num_dependents_deps.dev:0 github.com/bradenrayhorn/ledger-auth,num_dependents_deps.dev:0 @@ -321492,8 +328287,11 @@ github.com/bradyjoestar/burrow,num_dependents_deps.dev:0 github.com/bradyjoestar/life,num_dependents_deps.dev:0 github.com/bradyjoestar/merklebtree,num_dependents_deps.dev:0 github.com/bradyjoslin/encrypt-workers-kv,num_dependents_deps.dev:0 +github.com/bradyjoslin/ios-resign-action, github.com/bradyjoslin/rsieve,num_dependents_deps.dev:0 github.com/bradyjoslin/sharewifi, +github.com/bradyjoslin/xamarinandroid-signedbuild-action, +github.com/bradyjoslin/xamarinios-signedbuild-action, github.com/bradyliles/smoothscroll,num_dependents_deps.dev:0 github.com/bradymat/bradymat-utils,num_dependents_deps.dev:0 github.com/bradymat/generator-yo-yo,num_dependents_deps.dev:0 @@ -321504,6 +328302,7 @@ github.com/bradymcd/rs-baseurl,num_dependents_deps.dev:0 github.com/bradymholt/ampify,num_dependents_deps.dev:0 github.com/bradymholt/cRonstrue,"criticality_score:0.482830,num_dependents_deps.dev:20" github.com/bradymholt/cron-expression-descriptor,criticality_score:0.411160 +github.com/bradymholt/labeler-action, github.com/bradymholt/pgformatter,num_dependents_deps.dev:0 github.com/bradymholt/psqlformat, github.com/bradynparmesan/lotide,num_dependents_deps.dev:0 @@ -321512,6 +328311,7 @@ github.com/bradynpoulsen/waterline-params,num_dependents_deps.dev:0 github.com/bradyrx/esmtools, github.com/bradysheridan/spotify-activity-listener,num_dependents_deps.dev:0 github.com/bradystjohn/ngx-translate-http-loader-with-country,num_dependents_deps.dev:0 +github.com/bradystroud/Flinter, github.com/bradyt/dart-mode,Google github.com/bradywatkinson/react-constellation,num_dependents_deps.dev:0 github.com/bradywatkinson/redux-event-listener,num_dependents_deps.dev:0 @@ -321520,6 +328320,7 @@ github.com/bradzacher/eslint-config-brad, github.com/braedon/prometheus-es-exporter, github.com/braedon/prometheus-mysql-exporter, github.com/braedongeorge/postcss-modify-numbers,num_dependents_deps.dev:0 +github.com/braedongough/update-notion-block, github.com/braekstuv/censorify,num_dependents_deps.dev:0 github.com/brafdlog/israeli-bank-scrapers,num_dependents_deps.dev:0 github.com/bragagia/mongo-restful,num_dependents_deps.dev:0 @@ -321674,6 +328475,7 @@ github.com/braindrifters/readme-generator,num_dependents_deps.dev:0 github.com/braindump/dlog,num_dependents_deps.dev:0 github.com/brainedia/jquery-hashments,num_dependents_deps.dev:0 github.com/braineet/saml,num_dependents_deps.dev:0 +github.com/brainelectronics/changelog-based-release, github.com/braineo/zeplin-qml-extension,num_dependents_deps.dev:0 github.com/brainets/frites, github.com/brainexe/git-log-exec,num_dependents_deps.dev:0 @@ -321744,6 +328546,8 @@ github.com/brainlid/wbs_markdown,num_dependents_deps.dev:0 github.com/brainling/cpuid-node,num_dependents_deps.dev:22 github.com/brainlulz/auditci,num_dependents_deps.dev:0 github.com/brainlulz/auditmyci, +github.com/brainly/action-autoupdate-branch, +github.com/brainly/action-slack-notificator, github.com/brainly/frontend-tools-configs,num_dependents_deps.dev:0 github.com/brainly/html-sketchapp,num_dependents_deps.dev:16 github.com/brainly/nodejs-onesky-utils,num_dependents_deps.dev:0 @@ -321930,6 +328734,7 @@ github.com/braksator/minson,num_dependents_deps.dev:0 github.com/braksator/shortcurly, github.com/braksator/webarchiver,num_dependents_deps.dev:0 github.com/bralabee/awesomeproject-ageonmars,num_dependents_deps.dev:0 +github.com/bralax/gecko-action, github.com/bram-codes/firebase-winston,num_dependents_deps.dev:0 github.com/bram-codes/friendly-time,num_dependents_deps.dev:0 github.com/bram-codes/winston-discord,num_dependents_deps.dev:0 @@ -322051,6 +328856,7 @@ github.com/branch8/lazada-open-platform-sdk, github.com/branchard/fast-speedtest,num_dependents_deps.dev:0 github.com/branchard/fast-speedtest-api, github.com/branchard/react-clone-element,num_dependents_deps.dev:0 +github.com/branchard/semver-check, github.com/branchard/snowpack-plugin-webpack,num_dependents_deps.dev:0 github.com/branchvincent/pdm-publish, github.com/branchvincent/tutorials,num_dependents_deps.dev:0 @@ -322073,6 +328879,7 @@ github.com/brandchamp/template-parser,num_dependents_deps.dev:0 github.com/branddcast/rfc,num_dependents_deps.dev:0 github.com/brandebs/avocado-backend,num_dependents_deps.dev:0 github.com/brandedholdings/gatsby-plugin-remove-css-comments,num_dependents_deps.dev:0 +github.com/brandedoutcast/publish-nuget, github.com/brandeis-llc/acoustic-classification-segmentation, github.com/branden-devries/go-bigip,num_dependents_deps.dev:0 github.com/brandenc40/flask_mysql_connector, @@ -322163,6 +328970,8 @@ github.com/brandon-rhodes/uncommitted, github.com/brandon-rozek/tail-recurse, github.com/brandon-schabel/damascus-react,num_dependents_deps.dev:0 github.com/brandon-schabel/responsive-lite, +github.com/brandon-vargas/goodbye-universe-action, +github.com/brandon-vargas/hello-universe-action, github.com/brandon10x15/simple-git-sync,num_dependents_deps.dev:0 github.com/brandon133/duckparser,num_dependents_deps.dev:0 github.com/brandon15811/Minecraft-PE-Proxy,num_dependents_deps.dev:0 @@ -322236,6 +329045,7 @@ github.com/brandonchartier/unsafe,num_dependents_deps.dev:0 github.com/brandonchinn178/pg-fusion,num_dependents_deps.dev:0 github.com/brandonchinn178/servconn, github.com/brandonchinn178/vue-ctxmenu,num_dependents_deps.dev:0 +github.com/brandoncollins7/openai-image-generator, github.com/brandoncopeland/Leaflet.boundsAwareLayerGroup,num_dependents_deps.dev:0 github.com/brandoncopeland/node-arcgisserver,num_dependents_deps.dev:0 github.com/brandoncorbin/string-store,num_dependents_deps.dev:0 @@ -322529,6 +329339,7 @@ github.com/brandonweiss/discharge,"criticality_score:0.332850,num_dependents_dep github.com/brandonweiss/font-raider,num_dependents_deps.dev:0 github.com/brandonweiss/promptconfig,num_dependents_deps.dev:0 github.com/brandonweiss/sonar-js,num_dependents_deps.dev:0 +github.com/brandonxiang/actions-docup, github.com/brandonxiang/interpolator,num_dependents_deps.dev:0 github.com/brandonxiang/leaflet.geoJsonFilter,num_dependents_deps.dev:0 github.com/brandonxiang/leaflet.marker.hightlight,num_dependents_deps.dev:0 @@ -322632,6 +329443,7 @@ github.com/brantai/python-rightscale, github.com/brantb/hubot-loudbot,num_dependents_deps.dev:0 github.com/brantburnett/couchbase-index-manager, github.com/brantburnett/couchbase-index-operator,num_dependents_deps.dev:0 +github.com/brantburnett/run-couchbasefakeit, github.com/brantem/intro.js, github.com/brantstuns/cache-out,num_dependents_deps.dev:0 github.com/brantstuns/create-nice-app,num_dependents_deps.dev:0 @@ -322641,6 +329453,8 @@ github.com/branu-ws/v-drag,num_dependents_deps.dev:0 github.com/branu-ws/vue_colorpicker, github.com/brap/brap-compiler-proxy, github.com/brapifra/with-filter,num_dependents_deps.dev:0 +github.com/brapoprod/get-jira-tickets-from-github-release-action, +github.com/brapoprod/jira-release-from-ticketumbers-action, github.com/braposo/checkif,num_dependents_deps.dev:0 github.com/braposo/figma-graphql,num_dependents_deps.dev:0 github.com/braposo/figma-transformer,num_dependents_deps.dev:3 @@ -322812,6 +329626,8 @@ github.com/braver/programmingfonts,criticality_score:0.420850 github.com/braverhealth/postmark-rust,num_dependents_deps.dev:0 github.com/bravesoft-sinh/leetgo,num_dependents_deps.dev:0 github.com/bravetheskies/moonbase-cli,num_dependents_deps.dev:0 +github.com/bravetheskies/shopify-rapid-deploy-action, +github.com/bravetheskies/themekit-download-action, github.com/bravetools/bravetools,num_dependents_deps.dev:0 github.com/braveulysses/scim2-js,num_dependents_deps.dev:0 github.com/bravf/fast-blink,num_dependents_deps.dev:0 @@ -322867,9 +329683,11 @@ github.com/brayanio/ni0,num_dependents_deps.dev:0 github.com/brayanjeshua/Puppertino, github.com/brayanlee/goapp,num_dependents_deps.dev:0 github.com/brayanlp/react-component-input-lp,num_dependents_deps.dev:0 +github.com/brayanperera/docke_build_and_push_action, github.com/braycarlson/asol,num_dependents_deps.dev:0 github.com/braycarlson/senna,num_dependents_deps.dev:0 github.com/brayden-jo/yuvtools, +github.com/braydend/clean-commits, github.com/braydend/gophercises,num_dependents_deps.dev:0 github.com/braydenhouston/hain-plugin-join,num_dependents_deps.dev:0 github.com/braydenk/bk-http-lib, @@ -322956,6 +329774,7 @@ github.com/brcontainer/pjax.js,num_dependents_deps.dev:0 github.com/brcontainer/responsive-youtube.js,num_dependents_deps.dev:0 github.com/brcontainer/simple-copy.js,num_dependents_deps.dev:0 github.com/brcrista/Anticipython, +github.com/brcrista/summarize-issues, github.com/brct-james/guild-golems,num_dependents_deps.dev:0 github.com/brct-james/venusian-industries,num_dependents_deps.dev:0 github.com/brdalert/hpcparse, @@ -323615,6 +330434,7 @@ github.com/brendenpalmer/weakmap,num_dependents_deps.dev:0 github.com/brendon/acts_as_list,"criticality_score:0.550020,num_dependents_deps.dev:780" github.com/brendon1555/extra-prop-types,num_dependents_deps.dev:0 github.com/brendon1555/react-analogue-clock,num_dependents_deps.dev:0 +github.com/brendon1555/setup-linode-cli, github.com/brendonbarreto/robot-eyes,num_dependents_deps.dev:0 github.com/brendonbarreto/robot-eyes-report,num_dependents_deps.dev:0 github.com/brendonbarreto/tempojs,num_dependents_deps.dev:0 @@ -323671,6 +330491,7 @@ github.com/brennanngo1292000/react-native-bre-table,num_dependents_deps.dev:0 github.com/brennanngo1292000/react-native-bre-ui,num_dependents_deps.dev:0 github.com/brennanngo1292000/react-native-bre-ui-kit,num_dependents_deps.dev:0 github.com/brennanthomaswalsh/component_library,num_dependents_deps.dev:0 +github.com/brennanwilkes/deploy-to-balena-action, github.com/brennanwilkes/react-bootstrap-floating-label,num_dependents_deps.dev:0 github.com/brennaveen/angular-helpers,num_dependents_deps.dev:0 github.com/brennercampos/text-file-word-counter,num_dependents_deps.dev:0 @@ -323988,6 +330809,7 @@ github.com/brett-hosking/gavia, github.com/brett-hosking/nosypy, github.com/brett-hosking/planktonator, github.com/brett-hosking/tsplot, +github.com/brett-james-rocketlab/maestro-test-results-to-slack, github.com/brett-patterson/coupon_codes, github.com/brett-patterson/tutorialize,num_dependents_deps.dev:0 github.com/brett19/jsdoc-stability-tag,num_dependents_deps.dev:0 @@ -324003,11 +330825,13 @@ github.com/brettbuddin/grift,num_dependents_deps.dev:0 github.com/brettbuddin/musictheory,num_dependents_deps.dev:3 github.com/brettbuddin/shaden,num_dependents_deps.dev:0 github.com/brettcannon/caniusepython3, +github.com/brettcannon/check-for-changed-files, github.com/brettcannon/desugar, github.com/brettcannon/gidgethub, github.com/brettcannon/importlib, github.com/brettcannon/modutil, github.com/brettcannon/mousebender, +github.com/brettcannon/pip-secure-install, github.com/brettcannon/python-launcher,num_dependents_deps.dev:0 github.com/brettcate/s3-react-player,num_dependents_deps.dev:0 github.com/brettchien/PyBLEWrapper, @@ -324022,6 +330846,7 @@ github.com/brettdh/standard-version-expo,num_dependents_deps.dev:0 github.com/brettdonohoo/angular-parallax,num_dependents_deps.dev:0 github.com/brettdorrans/contentfulexplorer,num_dependents_deps.dev:0 github.com/brettdorrans/safestart,num_dependents_deps.dev:0 +github.com/brettdorrans/write-version-to-file, github.com/brettelliot/ecal, github.com/brettelliot/jinx, github.com/brettg2/meteor-build-client,num_dependents_deps.dev:0 @@ -324119,6 +330944,7 @@ github.com/brettshollenberger/ActiveSupport.js,num_dependents_deps.dev:0 github.com/brettshollenberger/FacultyAPI,num_dependents_deps.dev:0 github.com/brettshollenberger/generator-jasmine-node,num_dependents_deps.dev:0 github.com/brettshollenberger/grunt-protractor-runner, +github.com/brettski/gce-cloudsql-proxy-action, github.com/brettski/go-gcptesting,num_dependents_deps.dev:0 github.com/brettsmason/tailwindcss-wordpress,num_dependents_deps.dev:0 github.com/brettstack/recrud,num_dependents_deps.dev:0 @@ -324321,6 +331147,7 @@ github.com/brew20k/orangejs, github.com/brewaa/stellar-checkout,num_dependents_deps.dev:0 github.com/brewchetta/brews-toolboxjs,num_dependents_deps.dev:0 github.com/brewcomputer/brewcalc,num_dependents_deps.dev:0 +github.com/brewcoua/artifact-exists, github.com/brewerwall/beercalc_js,num_dependents_deps.dev:0 github.com/brewerwall/beercalc_ruby,num_dependents_deps.dev:0 github.com/brewerwall/brewerwall-logo-component,num_dependents_deps.dev:0 @@ -324458,6 +331285,7 @@ github.com/brian-gonzalez/born-utilities, github.com/brian-gonzalez/grunt-fswatch-webdav-extended,num_dependents_deps.dev:0 github.com/brian-gonzalez/revolver-webpack-plugin,num_dependents_deps.dev:0 github.com/brian-goo/goroutine-like-promise,num_dependents_deps.dev:0 +github.com/brian-hayward/update-issue-status, github.com/brian-jarvis/thelounge-theme-zenburn,num_dependents_deps.dev:0 github.com/brian-mann/cypress-release-test, github.com/brian-mann/generator-inspectall,num_dependents_deps.dev:0 @@ -324465,6 +331293,7 @@ github.com/brian-marchand/go,num_dependents_deps.dev:0 github.com/brian-mcm/felix,num_dependents_deps.dev:0 github.com/brian-mcm/libcalico-go,num_dependents_deps.dev:0 github.com/brian-mcm/typha,num_dependents_deps.dev:0 +github.com/brian-pickens/go-test-report, github.com/brian-rose/climlab, github.com/brian-rose/pyCESM, github.com/brian-stripe/zendesk_app_framework_sdk,num_dependents_deps.dev:0 @@ -325043,6 +331872,7 @@ github.com/brianpr/nxancore,num_dependents_deps.dev:0 github.com/brianpunzalan/gatsby-source-espocrm,num_dependents_deps.dev:0 github.com/brianr/django_ratchet, github.com/brianr747/SFC_models, +github.com/brianrandell/expaction, github.com/brianreavis/grunt-bower-cli,num_dependents_deps.dev:0 github.com/brianreavis/microplugin.js,"Google,num_dependents_deps.dev:91" github.com/brianreavis/selectize.js,num_dependents_deps.dev:2 @@ -325158,7 +331988,9 @@ github.com/briantanner/eris-lavalink,num_dependents_deps.dev:0 github.com/briantanner/lavalink.js,num_dependents_deps.dev:0 github.com/briantbutton/md5-wasm,num_dependents_deps.dev:0 github.com/briantbutton/meshwriter,num_dependents_deps.dev:0 +github.com/briantist/ezenv, github.com/briantran98/lotide,num_dependents_deps.dev:0 +github.com/brianunlam/upload-release-asset, github.com/brianveltman/react-app-rewire-import,num_dependents_deps.dev:0 github.com/brianvh/ssh-allow,num_dependents_deps.dev:0 github.com/brianvoe/gofakeit,"criticality_score:0.534310,num_dependents_deps.dev:9" @@ -325207,6 +332039,8 @@ github.com/briblanch/lightman,num_dependents_deps.dev:0 github.com/briboles/gd-api-wrapper,num_dependents_deps.dev:0 github.com/bricaud/graphexp,criticality_score:0.345900 github.com/brice1382/sp-manager,num_dependents_deps.dev:0 +github.com/briceburg/github-action-keybase-repo, +github.com/briceburg/github-action-keybase-repo-contents, github.com/briceburg/jqModal,num_dependents_deps.dev:14 github.com/briceduke/golangbank,num_dependents_deps.dev:0 github.com/bricef/ray-tracer,num_dependents_deps.dev:0 @@ -325242,6 +332076,7 @@ github.com/brickchain/go-document.v2,num_dependents_deps.dev:1 github.com/brickchain/go-httphandler.v2,num_dependents_deps.dev:0 github.com/brickclick/ember-bc-number-input,num_dependents_deps.dev:0 github.com/brickclick/ember-data-sails,num_dependents_deps.dev:0 +github.com/brickendon/cloudfoundry, github.com/bricker/iate,num_dependents_deps.dev:0 github.com/bricker/logal,num_dependents_deps.dev:0 github.com/brickfrog/kedro-pandas-profiling, @@ -325290,6 +332125,7 @@ github.com/bricss/dopant,num_dependents_deps.dev:0 github.com/bricss/eslint-config-ultra-refined,num_dependents_deps.dev:0 github.com/bricss/rekwest,num_dependents_deps.dev:0 github.com/bricss/thaw,num_dependents_deps.dev:0 +github.com/brictoworks/github-sourcecommit-sync-action, github.com/bridennis/go-tour,num_dependents_deps.dev:0 github.com/bridge-core/data,num_dependents_deps.dev:0 github.com/bridge-protocol/bridge-protocol-js,num_dependents_deps.dev:0 @@ -325299,13 +332135,16 @@ github.com/bridge5/babel-preset-env, github.com/bridge5/eslint-config-bridge5,num_dependents_deps.dev:0 github.com/bridge5/prettier-config-bridge5, github.com/bridgecrewio/AirIAM, +github.com/bridgecrewio/bridgecrew-action, github.com/bridgecrewio/checkov,criticality_score:0.590080 +github.com/bridgecrewio/checkov-action, github.com/bridgecrewio/go-terraform,num_dependents_deps.dev:0 github.com/bridgecrewio/goformation,num_dependents_deps.dev:0 github.com/bridgecrewio/onelogin-python-aws-assume-role, github.com/bridgecrewio/react-diff-viewer,num_dependents_deps.dev:0 github.com/bridgecrewio/terragoat,criticality_score:0.315550 github.com/bridgecrewio/yor,num_dependents_deps.dev:0 +github.com/bridgecrewio/yor-action, github.com/bridgedb/BridgeDb,num_dependents_deps.dev:568 github.com/bridgedb/bridgedbjs,num_dependents_deps.dev:0 github.com/bridgedotnet/Bridge,criticality_score:0.451770 @@ -325328,6 +332167,7 @@ github.com/bridgeit/bridgeit-common,num_dependents_deps.dev:0 github.com/bridgeland/minnetonka, github.com/bridgeli/master-slave-db-selector,num_dependents_deps.dev:0 github.com/bridgeli/mybatis-generator-plugin,num_dependents_deps.dev:0 +github.com/bridgelightcloud/github-mirror-action, github.com/bridges-framework/active-job,num_dependents_deps.dev:0 github.com/bridgetownrb/bridgetown,"criticality_score:0.470340,num_dependents_deps.dev:44" github.com/bridgetownrb/bridgetown-quick-search,num_dependents_deps.dev:0 @@ -325338,6 +332178,7 @@ github.com/bridje/bridje-framework,num_dependents_deps.dev:1370 github.com/bridzius/blankpage,num_dependents_deps.dev:0 github.com/bridzius/jfrog-test,num_dependents_deps.dev:0 github.com/bridzius/node-protractor,num_dependents_deps.dev:0 +github.com/bridzius/socialism, github.com/brieb/babel-plugin-transform-typescript-strip-type-exports,num_dependents_deps.dev:0 github.com/brieb/ts-add-module-exports,num_dependents_deps.dev:0 github.com/brieb/ts-codefix,num_dependents_deps.dev:0 @@ -325912,6 +332753,7 @@ github.com/briskml/xcpretty,num_dependents_deps.dev:0 github.com/briskpy/brisk, github.com/brisksale/brisk-control,num_dependents_deps.dev:0 github.com/brisksale/fantasyAlgebraicTypes,num_dependents_deps.dev:0 +github.com/brisktest/setup-brisk, github.com/bristi/blasy, github.com/bristol-su/control-js-api-client,num_dependents_deps.dev:0 github.com/bristol-su/control-management,num_dependents_deps.dev:0 @@ -325938,6 +332780,7 @@ github.com/britannica/cra-template,num_dependents_deps.dev:0 github.com/britannica/eslint-config,num_dependents_deps.dev:0 github.com/britannica/pablito,num_dependents_deps.dev:0 github.com/britannica/react-hooks,num_dependents_deps.dev:0 +github.com/britannio/action-install-flutter, github.com/britco/gulp-dss-annotation,num_dependents_deps.dev:0 github.com/britco/maximus,num_dependents_deps.dev:0 github.com/britco/node-sass-globbing,num_dependents_deps.dev:0 @@ -325995,6 +332838,7 @@ github.com/brittonhayes/learn-go-with-tests,num_dependents_deps.dev:0 github.com/brittonhayes/pillager,num_dependents_deps.dev:0 github.com/brittonhayes/pkg,num_dependents_deps.dev:0 github.com/brittonhayes/rpg,num_dependents_deps.dev:0 +github.com/brittonhayes/validate-yaml, github.com/britzl/defold-metrics,num_dependents_deps.dev:0 github.com/britzl/lowrezjam-template,num_dependents_deps.dev:0 github.com/britzl/oneroom,num_dependents_deps.dev:0 @@ -326096,6 +332940,9 @@ github.com/brndnmtthws/gitlab-gce-autoscaler, github.com/brndnmtthws/labhub,num_dependents_deps.dev:0 github.com/brndnmtthws/mother-of-dragons, github.com/brndnmtthws/optimal-buy-cbpro, +github.com/brndnmtthws/rust-action, +github.com/brndnmtthws/rust-action-cargo-binstall, +github.com/brndnmtthws/rust-action-rustup, github.com/brndnmtthws/seed-otp, github.com/brndnmtthws/thetagang, github.com/brndnmtthws/tweet-delete, @@ -326197,6 +333044,7 @@ github.com/broadwayinc/colormangle,num_dependents_deps.dev:0 github.com/broadwayinc/dexbee,num_dependents_deps.dev:0 github.com/broamski/aws-fedcred, github.com/broamski/aws-mfa,Google +github.com/brob/algolia-issue-search, github.com/brob/eleventy-plugin-svg-contents,num_dependents_deps.dev:0 github.com/brobbins2001/finitelight, github.com/brobert83/cucumber_base_http_java8,num_dependents_deps.dev:0 @@ -326304,6 +333152,8 @@ github.com/brockk/clintrials, github.com/brocklab/pycashier, github.com/brockmanmatt/OpenAISurveyWrapper, github.com/brockmanmatt/newstrends, +github.com/brockneedscoffee/deploy-docusaurus-to-azure, +github.com/brockneedscoffee/s3-docusaurus-sync-action, github.com/brockpetrie/vue-moment,"criticality_score:0.329570,num_dependents_deps.dev:96" github.com/brocksam/pycollo, github.com/brocksam/pyproprop, @@ -326381,6 +333231,7 @@ github.com/brohamgoham/blockchainfromscracth,num_dependents_deps.dev:0 github.com/brohamgoham/darkmatterdex,num_dependents_deps.dev:0 github.com/brohamgoham/privatepublicx509,num_dependents_deps.dev:0 github.com/broholens/pyfunctions, +github.com/brohon/magento-actions, github.com/brohrer/becca, github.com/brohrer/becca_toolbox, github.com/brohrer/becca_viz, @@ -326411,7 +333262,9 @@ github.com/brokenmass/cob-commitizen,num_dependents_deps.dev:0 github.com/brokenmass/cob-commitlint,num_dependents_deps.dev:0 github.com/brokenmass/conventional-changelog-cob,num_dependents_deps.dev:0 github.com/brokenmass/eslint-explainer,num_dependents_deps.dev:0 +github.com/brokenpip3/action-pre-commit-update, github.com/brokenpip3/jcli, +github.com/brokenpip3/setup-bats-libs, github.com/brokensandals/blunt-instrument,num_dependents_deps.dev:0 github.com/brokensandals/export_manager, github.com/brokensandals/exporteer_evernote_osx, @@ -326427,8 +333280,12 @@ github.com/brokenseal/eunomia,num_dependents_deps.dev:0 github.com/brokenseal/olorin,num_dependents_deps.dev:0 github.com/brokerageengine/design-system,num_dependents_deps.dev:0 github.com/brokercap/Bifrost,"criticality_score:0.373920,num_dependents_deps.dev:2" +github.com/brokeyourbike/codeclimate-action, +github.com/brokeyourbike/go-mockery-action, +github.com/brokeyourbike/ocvalidate-action, github.com/brokeyourbike/opay-nodejs-sdk,num_dependents_deps.dev:0 github.com/brokeyourbike/php-parser,num_dependents_deps.dev:0 +github.com/brokeyourbike/prepare-opencart-module-action, github.com/brokiem/gophertunnel,num_dependents_deps.dev:0 github.com/brokkr/poca, github.com/brokolosov/html-webpack-plugin,num_dependents_deps.dev:0 @@ -326714,6 +333571,7 @@ github.com/broven/getCloudMusicImage,num_dependents_deps.dev:0 github.com/broven/issue2essay,num_dependents_deps.dev:0 github.com/browar777/create-react-app,num_dependents_deps.dev:0 github.com/browduesman85/out-of-process,num_dependents_deps.dev:0 +github.com/brown-ccv/alex-recommends, github.com/brown-ccv/behavioral-task-trials,num_dependents_deps.dev:0 github.com/brown-uk/dict_uk,"criticality_score:0.309970,num_dependents_deps.dev:95" github.com/brown-university-library/fugue, @@ -326756,8 +333614,12 @@ github.com/browniebroke/django-codemod, github.com/browniebroke/django-tinymce4-widget, github.com/browniebroke/flake8-django-migrations, github.com/browniebroke/gatsby-image-gallery,num_dependents_deps.dev:0 +github.com/browniebroke/hacktoberfest-labeler-action, github.com/browniebroke/netlify-builds, +github.com/browniebroke/pre-commit-autoupdate-action, github.com/browniebroke/react-ui-components,num_dependents_deps.dev:0 +github.com/browniebroke/read-nvmrc-action, +github.com/browniebroke/yarn-upgrade-action, github.com/browniebrown/learning_git,num_dependents_deps.dev:0 github.com/browniefed/JamaNode,num_dependents_deps.dev:0 github.com/browniefed/babel-plugin-markdown-react,num_dependents_deps.dev:0 @@ -326765,6 +333627,7 @@ github.com/browniefed/compass-loader,num_dependents_deps.dev:0 github.com/browniefed/dumpfile-loader,num_dependents_deps.dev:0 github.com/browniefed/emotion-autofill-input,num_dependents_deps.dev:0 github.com/browniefed/emotion-layout,num_dependents_deps.dev:0 +github.com/browniefed/hasura-runner, github.com/browniefed/htlmparser2-react,num_dependents_deps.dev:0 github.com/browniefed/htmlparser2-react,num_dependents_deps.dev:0 github.com/browniefed/jamapassthrough,num_dependents_deps.dev:0 @@ -326798,6 +333661,12 @@ github.com/browscap/browscap-php,criticality_score:0.500130 github.com/browsee/browsee-web-sdk,num_dependents_deps.dev:0 github.com/browsehandsfree/facepointer,num_dependents_deps.dev:0 github.com/browsepedia/ngrx-soft-cache,num_dependents_deps.dev:0 +github.com/browser-actions/release-chrome-extension, +github.com/browser-actions/release-firefox-addon, +github.com/browser-actions/setup-chrome, +github.com/browser-actions/setup-edge, +github.com/browser-actions/setup-firefox, +github.com/browser-actions/setup-geckodriver, github.com/browser-dev/ui,num_dependents_deps.dev:0 github.com/browser-history/browser-history, github.com/browser-packages/array-sort,num_dependents_deps.dev:18 @@ -326867,6 +333736,7 @@ github.com/browserstack/browserstack-local-python, github.com/browserstack/browserstack-local-ruby,num_dependents_deps.dev:0 github.com/browserstack/browserstack-runner,num_dependents_deps.dev:2 github.com/browserstack/fast-selenium-scripts,num_dependents_deps.dev:0 +github.com/browserstack/github-actions, github.com/browserstack/protractor-browserstack,num_dependents_deps.dev:0 github.com/browserstack/protractor-browserstack-reporter, github.com/browserstack/selenium-webdriver-nodejs, @@ -326907,6 +333777,7 @@ github.com/brozeph/simple-socks,num_dependents_deps.dev:0 github.com/brozot/Laravel-FCM,criticality_score:0.364450 github.com/brozzor/skipper-disk, github.com/brozzor/skipper-s3, +github.com/brpaz/action-semantic-release, github.com/brpaz/cerebro-bitly,num_dependents_deps.dev:0 github.com/brpaz/cerebro-cdnjs,num_dependents_deps.dev:0 github.com/brpaz/cerebro-cheats,num_dependents_deps.dev:0 @@ -326933,6 +333804,8 @@ github.com/brpaz/eslint-config-brpaz,num_dependents_deps.dev:0 github.com/brpaz/generator-cerebro-plugin,num_dependents_deps.dev:0 github.com/brpaz/generator-click,num_dependents_deps.dev:0 github.com/brpaz/generator-gitlabci,num_dependents_deps.dev:0 +github.com/brpaz/gh-action-kubeval, +github.com/brpaz/godacov-action, github.com/brpaz/godog-api-context,num_dependents_deps.dev:0 github.com/brpaz/pindown-cli,num_dependents_deps.dev:0 github.com/brpaz/pulumi-k8s-resources,num_dependents_deps.dev:0 @@ -326951,6 +333824,7 @@ github.com/brpaz/sao-php-library,num_dependents_deps.dev:0 github.com/brpaz/sao-procfile,num_dependents_deps.dev:0 github.com/brpaz/sao-static-site,num_dependents_deps.dev:0 github.com/brpaz/sao-travis,num_dependents_deps.dev:0 +github.com/brpaz/structure-tests-action, github.com/brpaz/vite-manifest-parser,num_dependents_deps.dev:0 github.com/brpaz/vscode-devhints,num_dependents_deps.dev:0 github.com/brpaz/vscode-file-templates-ext,num_dependents_deps.dev:0 @@ -327069,6 +333943,7 @@ github.com/bruceSong/silu,num_dependents_deps.dev:0 github.com/bruceSong/slue,num_dependents_deps.dev:0 github.com/bruceabeitman/driver-poc,num_dependents_deps.dev:0 github.com/bruceabeitman/interviews,num_dependents_deps.dev:0 +github.com/bruceadams/get-release, github.com/bruceadams/hubot-asset,num_dependents_deps.dev:0 github.com/bruceadams/pmap,num_dependents_deps.dev:13 github.com/bruceadams/query-rds-data,num_dependents_deps.dev:0 @@ -327102,6 +333977,7 @@ github.com/bruceharris/grunt-amd-require-tests, github.com/bruceharris/grunt-create-test-files, github.com/bruceharrison1984/fake-salesforce-remote-objects,num_dependents_deps.dev:0 github.com/bruceharrison1984/terraform-artillery,num_dependents_deps.dev:0 +github.com/bruceharrison1984/terraform-io-github-action, github.com/brucehe3/ebaipy, github.com/brucehsu/mopdocjs,num_dependents_deps.dev:0 github.com/bruceiv/pegll,num_dependents_deps.dev:0 @@ -327471,6 +334347,7 @@ github.com/brunobord/skyfield-data, github.com/brunobord/static-markdown, github.com/brunobord/tdaemon, github.com/brunobord/typographeur, +github.com/brunoborges/justextract, github.com/brunobra/react-vimeo-embed,num_dependents_deps.dev:0 github.com/brunobrsampaio/react-router-authenticator,num_dependents_deps.dev:0 github.com/brunobrsampaio/react-router-mapping,num_dependents_deps.dev:0 @@ -327500,6 +334377,8 @@ github.com/brunocasado/correios-sigep, github.com/brunocasado/kenoby-node, github.com/brunocasanova/auto-advanced-search,num_dependents_deps.dev:0 github.com/brunocasanova/e-learning-test,num_dependents_deps.dev:0 +github.com/brunocascio/amazon-ecs-render-task-definition, +github.com/brunocascio/ecs-deploy, github.com/brunoccalmeida/libpythonbruno, github.com/brunoccc/sudokujs,num_dependents_deps.dev:0 github.com/brunocodutra/flow-loader,num_dependents_deps.dev:0 @@ -327539,6 +334418,7 @@ github.com/brunofrank/moip-transparente,num_dependents_deps.dev:0 github.com/brunofullstack/vue-multiple-image-upload,num_dependents_deps.dev:0 github.com/brunofutema/fc2-math,num_dependents_deps.dev:0 github.com/brunogasparetto/fluig-declaration-type,num_dependents_deps.dev:0 +github.com/brunogeronimo/hugo-s3-action, github.com/brunogfranca/bitbucket2github, github.com/brunogoncalooliveira/brexcel, github.com/brunogrande/cancer_api, @@ -327583,6 +334463,7 @@ github.com/brunokindt/create-react-app,num_dependents_deps.dev:0 github.com/brunokino/golang-firestore,num_dependents_deps.dev:0 github.com/brunokino/golang-firestore-gcp-functions,num_dependents_deps.dev:0 github.com/brunokino/golang-keycloak,num_dependents_deps.dev:0 +github.com/brunokrauss/jsdoc-action, github.com/brunokrauss/klicktipp-api,num_dependents_deps.dev:0 github.com/brunokrebs/auth0-web,num_dependents_deps.dev:0 github.com/brunokrebs/buggy,num_dependents_deps.dev:0 @@ -327620,6 +334501,8 @@ github.com/brunolm/object-casing,num_dependents_deps.dev:0 github.com/brunolm/tslint-config-codingwise,num_dependents_deps.dev:0 github.com/brunolm/uri-sharp,num_dependents_deps.dev:0 github.com/brunoluiz/extended-obj, +github.com/brunoluiz/urlzap-github-action, +github.com/brunoluizkatz/kubernetes-action, github.com/brunoluno/ChamadorPlugin,num_dependents_deps.dev:0 github.com/brunomacabeusbr/pyslibtesseract, github.com/brunomacedo/eslint-config-eiskaffee,num_dependents_deps.dev:0 @@ -327636,6 +334519,7 @@ github.com/brunomon/odata-fetch-factory,num_dependents_deps.dev:0 github.com/brunomon/sacaedad,num_dependents_deps.dev:0 github.com/brunomorency/sampic-client,num_dependents_deps.dev:0 github.com/brunomorency/simple-lambda-router,num_dependents_deps.dev:0 +github.com/brunomoutinho/cfn_nag_action, github.com/brunomsantiago/viajen, github.com/brunomurozaki/openapi2kt-dataclass, github.com/brunomveri/lotide,num_dependents_deps.dev:0 @@ -327653,6 +334537,7 @@ github.com/brunonunes/middy-middleware-mongodb,num_dependents_deps.dev:0 github.com/brunonunes/moleculer-grpc-api,num_dependents_deps.dev:0 github.com/brunonunes/nestjs-cqrs-nats-jetstream,num_dependents_deps.dev:0 github.com/brunoocasali/gulp-minio,num_dependents_deps.dev:0 +github.com/brunoofarias-dev/redis-cluster-github-action, github.com/brunooomelo/aboutme-cli,num_dependents_deps.dev:0 github.com/brunooomelo/lottery,num_dependents_deps.dev:0 github.com/brunooomelo/picpay-js,num_dependents_deps.dev:0 @@ -327662,6 +334547,8 @@ github.com/brunoosilva/moip-sdk-js,num_dependents_deps.dev:0 github.com/brunoosilva/webpack-import-glob,num_dependents_deps.dev:1 github.com/brunopacheco1/coboldoc,num_dependents_deps.dev:0 github.com/brunopadz/amictl,num_dependents_deps.dev:0 +github.com/brunopadz/eks-action, +github.com/brunopadz/semver-release-action, github.com/brunoparga/react-combine-reducers,num_dependents_deps.dev:0 github.com/brunopenso/multi-integration-library,num_dependents_deps.dev:0 github.com/brunopenso/python-nfce-get, @@ -327869,6 +334756,7 @@ github.com/brutusin/json-forms,"criticality_score:0.320920,num_dependents_deps.d github.com/brutusin/json-provider,num_dependents_deps.dev:6 github.com/brutusin/wava,num_dependents_deps.dev:0 github.com/bruunofco/jsSession,num_dependents_deps.dev:0 +github.com/bruxisma/setup-cargo-hack, github.com/bruxo00/autocrawler,num_dependents_deps.dev:0 github.com/bruxy70/ComAp, github.com/bruxy70/CzPubTran, @@ -327895,6 +334783,7 @@ github.com/brworkit/python-package-easelog, github.com/brworkit/python-package-easy-json2json, github.com/brworkit/python-package-easy-validator, github.com/brwr/Commonwealth, +github.com/brxxn/autolabel, github.com/brxyxn/blogapi_v1,num_dependents_deps.dev:0 github.com/brxyxn/codingame,num_dependents_deps.dev:0 github.com/brxyxn/inventariosapi,num_dependents_deps.dev:0 @@ -328052,6 +334941,9 @@ github.com/bryanmytko/d3-leaderboard-node,num_dependents_deps.dev:0 github.com/bryanmytko/overwatch-api,num_dependents_deps.dev:0 github.com/bryanneva-erg/react-epa-scc,num_dependents_deps.dev:0 github.com/bryanneva/react-rxjs-connector,num_dependents_deps.dev:0 +github.com/bryannice/gitactions-git-issue-creation, +github.com/bryannice/gitactions-jira-issue-creation, +github.com/bryannice/gitactions-slack-notification, github.com/bryanoliveira/gym-recorder, github.com/bryanoliveira/soccer-twos-env, github.com/bryanpaluch/create-upstart-monit,num_dependents_deps.dev:0 @@ -328103,6 +334995,10 @@ github.com/bryantit/golang-tutorial-seven,num_dependents_deps.dev:0 github.com/bryantit/golang-tutorial-three,num_dependents_deps.dev:0 github.com/bryantit/golang-tutorial-two,num_dependents_deps.dev:0 github.com/bryantran3562/review-2020-go,num_dependents_deps.dev:0 +github.com/bryantson/check-member-exists-in-team-actions, +github.com/bryantson/github-app-token-generator, +github.com/bryantson/sample-github-action-test, +github.com/bryantson/universities-list-actions, github.com/bryanturley/m3jumjum,num_dependents_deps.dev:0 github.com/bryantwells/ovovo,num_dependents_deps.dev:0 github.com/bryanurizar/quote-of-the-day,num_dependents_deps.dev:0 @@ -328237,6 +335133,7 @@ github.com/brycedorn/qunit-theme-burce,num_dependents_deps.dev:0 github.com/brycedorn/qunit-theme-gabe,num_dependents_deps.dev:0 github.com/brycedorn/react-intense,num_dependents_deps.dev:0 github.com/brycedorn/react-legos,num_dependents_deps.dev:0 +github.com/brycedorn/react-snap-action, github.com/brycedrennan/eulerian-magnification, github.com/brycedrennan/pwdgen, github.com/brycedrennan/random-line-access, @@ -328315,9 +335212,12 @@ github.com/bryik/aframe-layers-component,num_dependents_deps.dev:0 github.com/bryik/aframe-terrain-model-component,num_dependents_deps.dev:0 github.com/bryik/geojson-to-kml,num_dependents_deps.dev:0 github.com/bryjshed/generator-microcore, +github.com/bryk-io/chart-deploy-action, github.com/bryk-io/did-method,num_dependents_deps.dev:0 github.com/bryk-io/dlt4eu,num_dependents_deps.dev:0 github.com/bryk-io/go-vanity,num_dependents_deps.dev:0 +github.com/bryk-io/gokart-scan-action, +github.com/bryk-io/govuln-scan-action, github.com/bryk-io/miracl,num_dependents_deps.dev:0 github.com/bryk-io/tred-cli,num_dependents_deps.dev:0 github.com/brymck/ace-components,num_dependents_deps.dev:0 @@ -328442,11 +335342,13 @@ github.com/bsalex/typed-path,num_dependents_deps.dev:2 github.com/bsalgautam16/generator-spring-magic,num_dependents_deps.dev:0 github.com/bsaliba1/crypto-price-getter,num_dependents_deps.dev:0 github.com/bsaltz/greex,num_dependents_deps.dev:2 +github.com/bsalunke/test-cs-action, github.com/bsamseth/cpp-project,criticality_score:0.348430 github.com/bsamseth/jsonschema-typed, github.com/bsamseth/python-chess-engine-tester, github.com/bsamseth/qflow, github.com/bsamseth/which-key, +github.com/bsanchezmir/kubesec-action, github.com/bsander/dJSON,num_dependents_deps.dev:0 github.com/bsander/git-kit,num_dependents_deps.dev:0 github.com/bsander/jsonmerger,num_dependents_deps.dev:0 @@ -328496,6 +335398,7 @@ github.com/bsc-dom/javaclay,num_dependents_deps.dev:0 github.com/bsc-dom/npp2nvm, github.com/bsc-dom/pyclay, github.com/bsc-life/csm4cobra, +github.com/bsc-quantic/julia-register, github.com/bsc-s2/pykit, github.com/bsc-wdc/dislib, github.com/bsc-wdc/thread_affinity, @@ -328615,6 +335518,9 @@ github.com/bsharper/windows-shortcut-vbs,num_dependents_deps.dev:0 github.com/bshaw89/lotide,num_dependents_deps.dev:0 github.com/bshef/newt,num_dependents_deps.dev:0 github.com/bshelling/responsive-nav,num_dependents_deps.dev:0 +github.com/bshelling/s3-jekyll-upload-action, +github.com/bshelling/s3upload-action, +github.com/bshelling/sshrsync-action, github.com/bshelton229/rmybackup,num_dependents_deps.dev:0 github.com/bshelton229/varnish-admin-socket-python, github.com/bshevlin/bunyan-format,num_dependents_deps.dev:0 @@ -328676,6 +335582,7 @@ github.com/bskapital/piapy, github.com/bskari/go-glider,num_dependents_deps.dev:0 github.com/bskbala/github.com,num_dependents_deps.dev:0 github.com/bskbala/golang,num_dependents_deps.dev:0 +github.com/bskiefer/docker_buildx, github.com/bskimball/gatsby-plugin-antd,num_dependents_deps.dev:2 github.com/bskinn/flake8-absolute-import, github.com/bskinn/h5cube, @@ -328721,6 +335628,7 @@ github.com/bsm/zetasketch,num_dependents_deps.dev:0 github.com/bsmaldon/rolldice-binding, github.com/bsmayer/cluer,num_dependents_deps.dev:0 github.com/bsmayer/httpclient.js,num_dependents_deps.dev:0 +github.com/bsmg/action-beat-saber-dlls, github.com/bsmhep/bsm, github.com/bsmithb2/testcafe-browser-provider-android,num_dependents_deps.dev:0 github.com/bsmithyman/galoshes, @@ -328755,6 +335663,7 @@ github.com/bsolomon1124/pyfinance, github.com/bsolomon1124/re101, github.com/bson/imgimporter,num_dependents_deps.dev:0 github.com/bsonmez/abbreviated-numbers,num_dependents_deps.dev:0 +github.com/bsonmez/actions-aws-eb, github.com/bsonntag/authorize-role,num_dependents_deps.dev:0 github.com/bsonntag/badge-up-cli,num_dependents_deps.dev:0 github.com/bsonntag/change-branch-cli, @@ -328783,6 +335692,8 @@ github.com/bsonntag/time-wizard,num_dependents_deps.dev:0 github.com/bsoptei/photonix,num_dependents_deps.dev:0 github.com/bsoptei/photonix_derive,num_dependents_deps.dev:0 github.com/bsoptei/purpurea,num_dependents_deps.dev:0 +github.com/bsord/conventional-changelog-action, +github.com/bsord/helm-push, github.com/bsord/hubot-healthz,num_dependents_deps.dev:0 github.com/bsord/hubot-restart,num_dependents_deps.dev:0 github.com/bsord/hubot-sonny,num_dependents_deps.dev:0 @@ -328953,6 +335864,10 @@ github.com/bswank/design-system,num_dependents_deps.dev:0 github.com/bswank/format-currency-input,num_dependents_deps.dev:0 github.com/bswank/super-error-handler,num_dependents_deps.dev:0 github.com/bswartz/spec,num_dependents_deps.dev:0 +github.com/bswck/autorefine, +github.com/bswck/configzen, +github.com/bswck/proxyvars, +github.com/bswck/runtime_generics, github.com/bswinnerton/liebert,num_dependents_deps.dev:0 github.com/bsy/react-native-fyber, github.com/bsycorp/keymaster,num_dependents_deps.dev:0 @@ -329254,6 +336169,7 @@ github.com/btm6084/godb,num_dependents_deps.dev:0 github.com/btm6084/gojson,num_dependents_deps.dev:0 github.com/btm6084/utilities,num_dependents_deps.dev:0 github.com/btmadison/go-vehicle,num_dependents_deps.dev:0 +github.com/btmc/github-action-docker-build, github.com/btmdave/node-fluent-ffmpeg, github.com/btmdave/react-tippy2,num_dependents_deps.dev:0 github.com/btmdave/transmission-cluster,num_dependents_deps.dev:0 @@ -329277,6 +336193,7 @@ github.com/btmorr/leifdb,num_dependents_deps.dev:0 github.com/btmpl/feature-toggle,num_dependents_deps.dev:0 github.com/btmpl/styled-theming,num_dependents_deps.dev:0 github.com/btmura/ponzi,num_dependents_deps.dev:0 +github.com/btnguyen2k/action-semrelease, github.com/btnguyen2k/gocosmos,num_dependents_deps.dev:8 github.com/btnguyen2k/godal,num_dependents_deps.dev:0 github.com/btnguyen2k/henge,num_dependents_deps.dev:0 @@ -329511,6 +336428,8 @@ github.com/bubenshchykov/mongo-driver-benchmarks,num_dependents_deps.dev:0 github.com/bubenshchykov/mongocopy,num_dependents_deps.dev:0 github.com/bubenshchykov/ngrok,"criticality_score:0.473020,num_dependents_deps.dev:382" github.com/buberdds/angular-bootstrap-colorpicker,num_dependents_deps.dev:0 +github.com/buberdds/extract-changelog-action, +github.com/buberdds/wrangler-action, github.com/bubicn/bubichain-v4-sdk-go,num_dependents_deps.dev:0 github.com/bubinyang/common-component,num_dependents_deps.dev:0 github.com/bubizm/project,num_dependents_deps.dev:0 @@ -329649,6 +336568,8 @@ github.com/bubobox/track-js,num_dependents_deps.dev:0 github.com/bubonik69/bangla,num_dependents_deps.dev:0 github.com/bubonik69/chatbox,num_dependents_deps.dev:0 github.com/bubonik69/go,num_dependents_deps.dev:0 +github.com/bubriks/file-content-checker, +github.com/bubriks/string-verifier, github.com/bubu11e/openstick, github.com/bubu11e/wdlcm, github.com/bububa/baidu-marketing,num_dependents_deps.dev:0 @@ -329824,6 +336745,7 @@ github.com/budacode/ng2-scrollspy,num_dependents_deps.dev:0 github.com/budacom/design-system-config,num_dependents_deps.dev:0 github.com/budacom/lndbackup,num_dependents_deps.dev:0 github.com/budacom/shear,num_dependents_deps.dev:0 +github.com/budactw/aws-cli, github.com/budajeff/killer-game-logic,num_dependents_deps.dev:0 github.com/budang/text-tailor,num_dependents_deps.dev:0 github.com/budanm/angularuicomponentlibrary,num_dependents_deps.dev:0 @@ -329843,6 +336765,7 @@ github.com/buddhhu/localdb.json, github.com/buddhi1980/mandelbulber2,criticality_score:0.528830 github.com/buddhike/easy-fetch,num_dependents_deps.dev:0 github.com/buddhike/gulp-jspm-build, +github.com/buddhist-uni/normalized-unicode-action, github.com/buddiman/score-scraper, github.com/buddisattva/musian-18,num_dependents_deps.dev:0 github.com/buddly27/stylish, @@ -329898,6 +336821,8 @@ github.com/budjb/spring-distributed-locks,num_dependents_deps.dev:1 github.com/budjb/spring-distributed-scheduler,num_dependents_deps.dev:0 github.com/budjb/spring-rabbitmq-multi-publish,num_dependents_deps.dev:0 github.com/budliter/HomeBridge-NeoSmartShades,num_dependents_deps.dev:0 +github.com/budougumi0617/action-newrelic-segment-lint, +github.com/budougumi0617/action-pr-size-checker, github.com/budougumi0617/gigi,num_dependents_deps.dev:0 github.com/budougumi0617/go-sql-sample,num_dependents_deps.dev:0 github.com/budougumi0617/isucon-cheatsheet,num_dependents_deps.dev:0 @@ -329947,6 +336872,10 @@ github.com/buexplain/go-flog,num_dependents_deps.dev:0 github.com/bufanpeng/react-ts-cli, github.com/bufanpeng/reactTsCli,num_dependents_deps.dev:0 github.com/bufbuild/buf,"criticality_score:0.481250,num_dependents_deps.dev:3" +github.com/bufbuild/buf-breaking-action, +github.com/bufbuild/buf-lint-action, +github.com/bufbuild/buf-push-action, +github.com/bufbuild/buf-setup-action, github.com/bufbuild/makego,num_dependents_deps.dev:0 github.com/bufbuild/protoc-gen-validate, github.com/bufbuild/wellknowntypes,num_dependents_deps.dev:0 @@ -330053,6 +336982,7 @@ github.com/bugaevc/wl-clipboard,criticality_score:0.378860 github.com/bugagashenkj/fs-crypto,num_dependents_deps.dev:0 github.com/bugagashenkj/salsa20,num_dependents_deps.dev:0 github.com/bugale/bugalint, +github.com/bugale/bugroup-checks, github.com/bugall/docker-swarm,num_dependents_deps.dev:0 github.com/bugall/egg-apollojs-ng, github.com/bugall/egg-submail, @@ -330066,6 +336996,8 @@ github.com/bugbearr/ie11support,num_dependents_deps.dev:0 github.com/bugbearr/parseurisimple-js, github.com/bugbirdco/VueHarmony,num_dependents_deps.dev:0 github.com/bugbit-io/flipflop,num_dependents_deps.dev:0 +github.com/bugbounty-site/GitSecure, +github.com/bugbundle/commits, github.com/bugcrowd/aws-iam-proxy,num_dependents_deps.dev:0 github.com/bugcrowd/bmt-ruby,num_dependents_deps.dev:0 github.com/bugcrowd/ecs-service-image-updater,num_dependents_deps.dev:0 @@ -330154,6 +337086,7 @@ github.com/bugout-dev/buzz, github.com/bugout-dev/flypaper, github.com/bugout-dev/humbug,num_dependents_deps.dev:0 github.com/bugout-dev/infestor, +github.com/bugout-dev/locust-action, github.com/bugout-dev/md2json, github.com/bugout-dev/moonstream, github.com/bugout-dev/moonworm, @@ -330236,6 +337169,7 @@ github.com/bugstop/python-timework, github.com/bugsworld85/neocomponents,num_dependents_deps.dev:0 github.com/bugsworld85/neotable,num_dependents_deps.dev:0 github.com/bugsyb/openvpn-web-ui,num_dependents_deps.dev:0 +github.com/bugsyhq/skim-s3-bucket, github.com/bugszhou/applets-request-all,num_dependents_deps.dev:0 github.com/bugszhou/applets-request-mode-list,num_dependents_deps.dev:0 github.com/bugszhou/applets-request-weapp,num_dependents_deps.dev:0 @@ -330338,6 +337272,7 @@ github.com/bui/taiko-web,criticality_score:0.362900 github.com/buianhthang/joi-array-extensions,num_dependents_deps.dev:0 github.com/buianhthang/pino-redis,num_dependents_deps.dev:0 github.com/buianhthang/soap-converter,num_dependents_deps.dev:0 +github.com/buiawpkgew1/minecraft-plugin-runtime-test-Guizhan, github.com/buidl-bitcoin/buidl-python, github.com/buidl-labs/celo-indexer,num_dependents_deps.dev:0 github.com/buidl-labs/celo-voting-validator-backend,num_dependents_deps.dev:0 @@ -330370,6 +337305,7 @@ github.com/build-server-protocol/build-server-protocol,num_dependents_deps.dev:6 github.com/build-tanker/shipper,num_dependents_deps.dev:0 github.com/build-tanker/tanker,num_dependents_deps.dev:0 github.com/build2/build2,criticality_score:0.419660 +github.com/build2/setup-build2-github-action, github.com/buildAll/injoy-cli,num_dependents_deps.dev:0 github.com/buildBetterCTAs/cta.css,num_dependents_deps.dev:0 github.com/buildBetterCTAs/responsive-cta-builder-css,num_dependents_deps.dev:0 @@ -330432,6 +337368,7 @@ github.com/builderbook/builderbook,criticality_score:0.533420 github.com/builderdev212/package_tutorial, github.com/builderpepc/zoomwrap, github.com/builderpod/react-native-google-places-autocomplete,num_dependents_deps.dev:0 +github.com/builders-club/bitly-url-shortener, github.com/buildertrend/eslint-plugin-enterprise-extras,num_dependents_deps.dev:0 github.com/buildfire/ical-parser,num_dependents_deps.dev:0 github.com/buildgroupai/vue-infinite-scroller,num_dependents_deps.dev:0 @@ -330459,6 +337396,7 @@ github.com/buildingblocks/grunt-combine-media-queries,num_dependents_deps.dev:0 github.com/buildingblocks/grunt-combine-mq,num_dependents_deps.dev:0 github.com/buildingblocks/gulp-combine-mq, github.com/buildingblocks/node-combine-mq,num_dependents_deps.dev:0 +github.com/buildingcash/json-to-markdown-table-action, github.com/buildings-for-people/coding_scheme,num_dependents_deps.dev:0 github.com/buildingwatsize/cipherpayload,num_dependents_deps.dev:0 github.com/buildingwatsize/create-react-app,num_dependents_deps.dev:0 @@ -330516,6 +337454,8 @@ github.com/buildkite/sockguard,num_dependents_deps.dev:0 github.com/buildkite/terminal,num_dependents_deps.dev:1 github.com/buildkite/terminal-to-html,"criticality_score:0.406680,num_dependents_deps.dev:1" github.com/buildkite/terraform-provider-buildkite,num_dependents_deps.dev:0 +github.com/buildkite/trigger-pipeline-action, +github.com/buildless/setup, github.com/buildlyio/freyja-react,num_dependents_deps.dev:0 github.com/buildmind-tech/BuildMind-Cli,num_dependents_deps.dev:0 github.com/buildmotion/angular-actions,num_dependents_deps.dev:0 @@ -330577,6 +337517,7 @@ github.com/buildo/web-framework,num_dependents_deps.dev:0 github.com/buildo/wiro,num_dependents_deps.dev:1 github.com/buildog/node-ble,num_dependents_deps.dev:0 github.com/buildout/buildout,criticality_score:0.557130 +github.com/buildpack-ci/run-tests, github.com/buildpack/lifecycle,num_dependents_deps.dev:11 github.com/buildpack/pack,num_dependents_deps.dev:1 github.com/buildpacks/docs,num_dependents_deps.dev:0 @@ -330599,15 +337540,24 @@ github.com/buildsi/spliced, github.com/buildsi/symbolator, github.com/buildsomethingawesome/awesome-lib-android,num_dependents_deps.dev:0 github.com/buildsomethingawesome/awesome-lib-java-swing,num_dependents_deps.dev:0 +github.com/buildsville/add-remove-label, +github.com/buildsville/list-pull-requests, +github.com/buildsville/review-summary, +github.com/buildsville/simple-merge, github.com/buildtesters/lmodule, github.com/buildthedocs/sphinx.autoprogram, github.com/buildthedocs/sphinx.graphviz, github.com/buildthedocs/sphinx.inheritance_diagram, github.com/buildtip/create-web-app,num_dependents_deps.dev:0 github.com/buildtip/web-project-starter,num_dependents_deps.dev:0 +github.com/buildtool/build-action, github.com/buildtool/build-tools,num_dependents_deps.dev:0 +github.com/buildtool/deploy-action, +github.com/buildtool/push-action, +github.com/buildtool/setup-buildtools-action, github.com/buildtrust/token-tracer,num_dependents_deps.dev:0 github.com/buildup-capital/buildup-node,num_dependents_deps.dev:0 +github.com/buildwithjuno/juno-action, github.com/buildxyz-git/nrfsec, github.com/buildxyz-git/stloader, github.com/built/swisstime, @@ -330846,6 +337796,7 @@ github.com/bulatb/tacks, github.com/bulatb/wtf-backhoe, github.com/bulatei/clappr-bitrate-selector-plugin,num_dependents_deps.dev:0 github.com/bulatei/node-selectel-storage,num_dependents_deps.dev:0 +github.com/bulathacl/rabbitmq-publish-message, github.com/bulathgelakmal/go,num_dependents_deps.dev:0 github.com/bulatie/vue-jump-coin,num_dependents_deps.dev:0 github.com/bulatsir/healthchecker,num_dependents_deps.dev:0 @@ -331026,6 +337977,22 @@ github.com/bultas/spinner-loader,num_dependents_deps.dev:0 github.com/bultas/typed-select,num_dependents_deps.dev:0 github.com/bulters/nerdkit,num_dependents_deps.dev:0 github.com/buluba89/Yatcobot, +github.com/buluma/ansible_galaxy_collection, +github.com/buluma/create-an-issue, +github.com/buluma/create-issue-action, +github.com/buluma/galaxy-action, +github.com/buluma/gh-action-auto-merge-dependabot-updates, +github.com/buluma/gitlab-mirror-ci-action, +github.com/buluma/graphviz-action, +github.com/buluma/issue-action, +github.com/buluma/molecule-action, +github.com/buluma/repo-monitor-action, +github.com/buluma/rpmbuild-action, +github.com/buluma/setup-buildx-action, +github.com/buluma/setup-cordova, +github.com/buluma/terraform-github-action, +github.com/buluma/todo-to-issue-action, +github.com/buluma/upload-to-release, github.com/buluslidlink/myPromise,num_dependents_deps.dev:0 github.com/bulutfon/python-sdk, github.com/bulutfon/ruby-bfon-builder,num_dependents_deps.dev:0 @@ -331069,9 +338036,12 @@ github.com/bumbu/website-screenshot,num_dependents_deps.dev:0 github.com/bumbu/website-spec,num_dependents_deps.dev:0 github.com/bumbu/website-visual-diff,num_dependents_deps.dev:0 github.com/bumbummen99/Leaflet.draw,num_dependents_deps.dev:0 +github.com/bumbummen99/dotnet-outdated-action, github.com/bumbummen99/kothic-js,num_dependents_deps.dev:0 github.com/bumbummen99/leaflet.bouncemarker,num_dependents_deps.dev:0 github.com/bumbummen99/leaflet.color-arrow,num_dependents_deps.dev:0 +github.com/bumengi94/action-coverage-score, +github.com/bumfo/action-deploy, github.com/bumi/awesome_bot_factory,num_dependents_deps.dev:0 github.com/bumi/blockstream_satellite,num_dependents_deps.dev:0 github.com/bumi/find_by_param,num_dependents_deps.dev:0 @@ -331089,6 +338059,7 @@ github.com/bummmble/Hive,num_dependents_deps.dev:0 github.com/bumoproject/bumo-sdk-nodejs,num_dependents_deps.dev:0 github.com/bump-sh/bump-cli,num_dependents_deps.dev:0 github.com/bump-sh/bump-node-cli,num_dependents_deps.dev:0 +github.com/bump-sh/github-action, github.com/bumpah/docli,num_dependents_deps.dev:0 github.com/bumpah/react-context-i18,num_dependents_deps.dev:0 github.com/bumpah/react-context-i18n, @@ -331225,6 +338196,9 @@ github.com/bung87/sind, github.com/bung87/ts2nim,num_dependents_deps.dev:0 github.com/bung87/vue-otto-validate,num_dependents_deps.dev:0 github.com/bung87/whatlangid, +github.com/bungabear/flutter_version_read, +github.com/bungabear/get-aar-info-action, +github.com/bungabear/synology_upload_action, github.com/bungandy/mineral-frontend,num_dependents_deps.dev:0 github.com/bunge12/lotide,num_dependents_deps.dev:0 github.com/bungendang/ongkir,num_dependents_deps.dev:0 @@ -331364,6 +338338,7 @@ github.com/bunnypro/vue-routes-builder,num_dependents_deps.dev:0 github.com/bunnyrock/pgmusql,num_dependents_deps.dev:0 github.com/bunnyswe/PythonAnsiColor, github.com/bunnyxt/pybiliapi, +github.com/bunopnu/use-efmt, github.com/bunq/sdk_python, github.com/bunqCommunity/bunq-cli,num_dependents_deps.dev:0 github.com/bunqCommunity/bunqDesktop,criticality_score:0.319180 @@ -331493,6 +338468,7 @@ github.com/buraktamturk/extendscript-rpc-server,num_dependents_deps.dev:0 github.com/buraktamturk/file-upload-component,num_dependents_deps.dev:0 github.com/buraktamturk/image-picker-component,num_dependents_deps.dev:0 github.com/buraktamturk/modal-cropper,num_dependents_deps.dev:2 +github.com/buraktamturk/sync-translations-localise-biz, github.com/buraktamturk/upload-controller-factory,num_dependents_deps.dev:4 github.com/buraktt/sails-hook-blueprint-filters,num_dependents_deps.dev:0 github.com/burakunlu26/jupyLabExt,num_dependents_deps.dev:0 @@ -331585,6 +338561,8 @@ github.com/bureaucratic-labs/revizor, github.com/bureauweb/where-is-waldo,num_dependents_deps.dev:0 github.com/bureauworks/bwx, github.com/bureauworks/cli,num_dependents_deps.dev:0 +github.com/buremba/changed-files-with-regex, +github.com/buremba/get-changed-files-with-regex, github.com/buremba/optimal-select,num_dependents_deps.dev:0 github.com/buremba/rakam-android,num_dependents_deps.dev:0 github.com/buremba/rakam-javascript,num_dependents_deps.dev:0 @@ -331617,6 +338595,7 @@ github.com/burgwyn/generator-react-redux-webpack-uswds,num_dependents_deps.dev:0 github.com/burhan/pyipay, github.com/burhanahmeed/vue-daily-schedule, github.com/burhanh/go-playground,num_dependents_deps.dev:0 +github.com/burhankhanzada/firebase_app_distribution_github_action, github.com/burhanloey/gitbook-plugin-pageload-analytics,num_dependents_deps.dev:0 github.com/burhanrashid52/PhotoEditor,criticality_score:0.382450 github.com/burhanshaikh/lighthouse,num_dependents_deps.dev:0 @@ -331702,6 +338681,7 @@ github.com/burly-bulls/ger-neo4j,num_dependents_deps.dev:0 github.com/burmanm/compression-int,num_dependents_deps.dev:0 github.com/burmanm/gorilla-tsc,num_dependents_deps.dev:28 github.com/burmanm/k8ssandra-client,num_dependents_deps.dev:0 +github.com/burmis/rio-github-action, github.com/burmisov/arcgis-proxy-middleware,num_dependents_deps.dev:0 github.com/burmisov/arcgis-rest-client,num_dependents_deps.dev:0 github.com/burmisov/express-static-zip,num_dependents_deps.dev:0 @@ -331728,6 +338708,7 @@ github.com/burning-duck/rehace,num_dependents_deps.dev:0 github.com/burning-duck/rehace-github-magnolia,num_dependents_deps.dev:0 github.com/burning0xb/deep-lu-trans,num_dependents_deps.dev:0 github.com/burning0xb/remaps-cn, +github.com/burningalchemist/action-gh-nfpm, github.com/burningalchemist/sql_exporter,num_dependents_deps.dev:0 github.com/burninggarden/botanist,num_dependents_deps.dev:0 github.com/burninggarden/config,num_dependents_deps.dev:12 @@ -331794,6 +338775,7 @@ github.com/burnsco/react-sticky-shrinking-navbar,num_dependents_deps.dev:0 github.com/burnsred/burnsred-entity-library,num_dependents_deps.dev:34 github.com/burnsred/protractor-screenshots,num_dependents_deps.dev:0 github.com/burnsy/gatsby-plugin-ackee,num_dependents_deps.dev:0 +github.com/burnt-labs/heighliner-action, github.com/burnt43/ami_socket,num_dependents_deps.dev:0 github.com/burnt43/sip_socket,num_dependents_deps.dev:0 github.com/burntblark/ngx-sails-socketio,num_dependents_deps.dev:0 @@ -331831,6 +338813,7 @@ github.com/burrowers/garble,"criticality_score:0.323760,num_dependents_deps.dev: github.com/burrows/statechart.js,num_dependents_deps.dev:0 github.com/burrowsa/initdotpy, github.com/burrscurr/linesman, +github.com/burrunan/gradle-cache-action, github.com/burrunan/gradle-multi-cache,num_dependents_deps.dev:0 github.com/burrunan/gradle-s3-build-cache,num_dependents_deps.dev:0 github.com/bursauxa/dragop,num_dependents_deps.dev:0 @@ -331873,6 +338856,8 @@ github.com/burtonator/polar-app-public,num_dependents_deps.dev:0 github.com/burtonator/polar-backend-shared,num_dependents_deps.dev:0 github.com/burtonator/polar-bookshelf,criticality_score:0.466020 github.com/burtonator/polar-shared,num_dependents_deps.dev:4 +github.com/burtonr/octopus-cli-action, +github.com/burtonr/octopus-release-action, github.com/burtonsamograd/autograph,num_dependents_deps.dev:0 github.com/burtonsamograd/px,num_dependents_deps.dev:0 github.com/burtonsamograd/px2, @@ -332362,6 +339347,7 @@ github.com/butsuri43/hepdata_maker, github.com/butt4cak3/highlight.js,num_dependents_deps.dev:0 github.com/butt4cak3/plugin-highlight,num_dependents_deps.dev:0 github.com/butt4cak3/solvethis-js,num_dependents_deps.dev:0 +github.com/buttahtoast/helm-testing-action, github.com/buttcloud/gyne,num_dependents_deps.dev:0 github.com/butterandfly/create-component,num_dependents_deps.dev:0 github.com/butterandfly/generator-create-test,num_dependents_deps.dev:0 @@ -332427,6 +339413,7 @@ github.com/butterfly-project/nodejs-bases,num_dependents_deps.dev:0 github.com/butterfly-project/nodejs-fixture-generator,num_dependents_deps.dev:0 github.com/butterfly-project/nodejs-form,num_dependents_deps.dev:0 github.com/butterfly-project/text-generator,num_dependents_deps.dev:2 +github.com/butterfly1924/argocd-actions, github.com/butterflyhug/rickshaw,num_dependents_deps.dev:0 github.com/butterize/ensu,num_dependents_deps.dev:0 github.com/butterkekstorte/OpenJSLog,num_dependents_deps.dev:0 @@ -332478,6 +339465,7 @@ github.com/button/eslint-config-button-platform,num_dependents_deps.dev:0 github.com/button/minquery,num_dependents_deps.dev:0 github.com/button/react-simple-scroll,num_dependents_deps.dev:0 github.com/buttonize/serverless-plugin-buttonize,num_dependents_deps.dev:0 +github.com/buttonizer/freemius-deploy, github.com/buttonwild/go,num_dependents_deps.dev:0 github.com/buttonwoodcx/bcx-aurelia-dnd,num_dependents_deps.dev:0 github.com/buttonwoodcx/bcx-aurelia-reorderable-repeat,num_dependents_deps.dev:0 @@ -332551,6 +339539,7 @@ github.com/buwantaiji/DominantSparseEigenAD, github.com/bux23/GDPRX,num_dependents_deps.dev:0 github.com/bux23/bulma-validator,num_dependents_deps.dev:0 github.com/bux578/ACE3Doc,num_dependents_deps.dev:0 +github.com/buxianshan/fine-sftp-deployer, github.com/buxlabs/abstract-syntax-tree, github.com/buxlabs/amd-to-es6,num_dependents_deps.dev:18 github.com/buxlabs/ast,num_dependents_deps.dev:46 @@ -332623,6 +339612,7 @@ github.com/buz-zard/redux-cached-api-middleware,num_dependents_deps.dev:0 github.com/buz-zard/tailwind-bootstrap-grid,num_dependents_deps.dev:0 github.com/buza-me/msgee,num_dependents_deps.dev:0 github.com/buzai/egg-loger, +github.com/buzato/add-reviewer-gh-action, github.com/buzhanguo/react-app-rewire-sass-modules,num_dependents_deps.dev:0 github.com/buzhiyun/go-mysql-replication,num_dependents_deps.dev:0 github.com/buzhoumountain/ethers-wan-5.js,num_dependents_deps.dev:734 @@ -332640,6 +339630,7 @@ github.com/buzz/mediainfo.js,num_dependents_deps.dev:0 github.com/buzz2d0/mysqlmonitor,num_dependents_deps.dev:0 github.com/buzzamus/baseball-gem,num_dependents_deps.dev:0 github.com/buzzamus/jalapeno,num_dependents_deps.dev:0 +github.com/buzzcode/veracode-flaws-to-issues, github.com/buzzdecafe/flapjax,num_dependents_deps.dev:0 github.com/buzzdecafe/ramda-logic,num_dependents_deps.dev:0 github.com/buzzdecafe/rdom,num_dependents_deps.dev:0 @@ -332801,6 +339792,7 @@ github.com/bvdaakster/act, github.com/bveeramani/hibachi, github.com/bvego/nope-validator,num_dependents_deps.dev:0 github.com/bvejs/bve,num_dependents_deps.dev:0 +github.com/bvelastegui/phalcon-composer-action, github.com/bvellacott/AsyncYield,num_dependents_deps.dev:0 github.com/bvellacott/bdom,num_dependents_deps.dev:0 github.com/bvellacott/bdom-keep-order,num_dependents_deps.dev:0 @@ -332856,6 +339848,8 @@ github.com/bvkgo/kodb,num_dependents_deps.dev:0 github.com/bvkgo/kv,num_dependents_deps.dev:0 github.com/bvkgo/kvmemdb,num_dependents_deps.dev:0 github.com/bvkgo/kvtests,num_dependents_deps.dev:0 +github.com/bvkimball/branch-vars, +github.com/bvkimball/bump-and-release, github.com/bvkimball/crypsis,num_dependents_deps.dev:0 github.com/bvkimball/express-compile,num_dependents_deps.dev:0 github.com/bvkimball/haunted-styles,num_dependents_deps.dev:0 @@ -332870,7 +339864,9 @@ github.com/bvlad05/nicy,num_dependents_deps.dev:0 github.com/bvlaicu/coned, github.com/bvlaicu/oru, github.com/bvlaicu/pseg, +github.com/bvlj/super-duper-tuna, github.com/bvm-org/bvm, +github.com/bvm/gh-action, github.com/bvmcode/react-my-items,num_dependents_deps.dev:0 github.com/bvmensvoort/node-red-contrib-crownstone,num_dependents_deps.dev:0 github.com/bvmensvoort/node-red-contrib-philips-air,num_dependents_deps.dev:0 @@ -332952,6 +339948,7 @@ github.com/bwbjustin/gd-level-to-json,num_dependents_deps.dev:0 github.com/bwbjustin/gd-level-to-json-cli,num_dependents_deps.dev:0 github.com/bwbjustin/github-licenses,num_dependents_deps.dev:0 github.com/bwcgn/npm-es6-boilerplate, +github.com/bwcxyk/upyun-upx-action, github.com/bwdayley/nodebook,num_dependents_deps.dev:0 github.com/bwees/pymarketwatch, github.com/bwees/ystreamer, @@ -333000,6 +339997,7 @@ github.com/bwhaley/hackerrank,num_dependents_deps.dev:0 github.com/bwhetherington/lazy-iters,num_dependents_deps.dev:0 github.com/bwhicks/django-giftbox, github.com/bwhite/hadoopy, +github.com/bwhitehead0/action-shellcheck, github.com/bwhitty/opensecrets-client,num_dependents_deps.dev:0 github.com/bwhmather/bdc-js,num_dependents_deps.dev:0 github.com/bwhmather/chipmunk-ts,num_dependents_deps.dev:0 @@ -333112,6 +340110,7 @@ github.com/bwoodsend/cslug, github.com/bwoodsend/hirola, github.com/bwoodsend/motmot, github.com/bwoodsend/rockhopper, +github.com/bwoodsend/setup-winlibs-action, github.com/bwowk/adacat,num_dependents_deps.dev:0 github.com/bwp91/homebridge-deebot, github.com/bwp91/homebridge-ewelink,num_dependents_deps.dev:0 @@ -333159,6 +340158,8 @@ github.com/bx-design/react-grid,num_dependents_deps.dev:0 github.com/bx-design/react-icons,num_dependents_deps.dev:0 github.com/bx-design/react-ui,num_dependents_deps.dev:0 github.com/bx-design/validate-rut,num_dependents_deps.dev:0 +github.com/bxb100/action-upload-webdav, +github.com/bxb100/issueblog, github.com/bxbrenden/t9text, github.com/bxcodec/faker,"criticality_score:0.373050,num_dependents_deps.dev:21" github.com/bxforce/commons-vfs2-spring-boot,num_dependents_deps.dev:0 @@ -333386,6 +340387,7 @@ github.com/byllyfish/exacl,num_dependents_deps.dev:0 github.com/byllyfish/precis_i18n, github.com/byllyfish/shellous, github.com/byllyfish/zof, +github.com/bym0/helm, github.com/bymathias/normalize.styl,num_dependents_deps.dev:2 github.com/bymayo/jquery-attract-hover,num_dependents_deps.dev:0 github.com/bymayo/socialise,num_dependents_deps.dev:0 @@ -333470,6 +340472,7 @@ github.com/byrekt/react-google-maps-api,num_dependents_deps.dev:0 github.com/byrnedo/ember-google-adwords-remarketing,num_dependents_deps.dev:0 github.com/byrnedo/ember-hotjar,num_dependents_deps.dev:0 github.com/byrner75/RTPIClient,num_dependents_deps.dev:0 +github.com/byrnereese/github-action-mkdocs-link-check, github.com/byrnereese/mkdocs-bootstrap-tables-plugin, github.com/byrnereese/mkdocs-bootstrap4, github.com/byrnereese/mkdocs-codechecker, @@ -333616,6 +340619,7 @@ github.com/byteball/obyte-gui-wallet,criticality_score:0.405720 github.com/byteball/ocore,num_dependents_deps.dev:0 github.com/byteball/oscript-vscode-plugin,num_dependents_deps.dev:0 github.com/bytebase/bytebase,num_dependents_deps.dev:0 +github.com/bytebase/sql-review-action, github.com/bytebeamio/rumqtt,"criticality_score:0.470550,num_dependents_deps.dev:1" github.com/bytebodger/allow,num_dependents_deps.dev:4 github.com/bytebodger/allow-react,num_dependents_deps.dev:0 @@ -333766,6 +340770,7 @@ github.com/bytedream/crunchyroll-go,num_dependents_deps.dev:0 github.com/bytedream/vivo,num_dependents_deps.dev:0 github.com/bytee-net/quiz,num_dependents_deps.dev:0 github.com/bytee-net/quiz-server,num_dependents_deps.dev:0 +github.com/byteever/action-build-zip, github.com/byteever/eslint-plugin, github.com/byteface/adom, github.com/byteface/domonic, @@ -333862,6 +340867,7 @@ github.com/bytesalt/qweb3,num_dependents_deps.dev:0 github.com/bytesandbrains/journeyplanner-python, github.com/bytesandbrains/statbank-python, github.com/bytesbay/express-file-tmp-module,num_dependents_deps.dev:0 +github.com/bytesbay/oci-cli-action, github.com/bytesbay/parallax-carousel,num_dependents_deps.dev:0 github.com/bytesfield/sabi-customer,num_dependents_deps.dev:0 github.com/bytesfield/sweet-pipeline,num_dependents_deps.dev:0 @@ -333958,6 +340964,8 @@ github.com/bythepixel/component-loader,num_dependents_deps.dev:0 github.com/bythepixel/in-view-src,num_dependents_deps.dev:0 github.com/bythepixel/in-view-srcset,num_dependents_deps.dev:0 github.com/bythepixel/run-in-view,num_dependents_deps.dev:0 +github.com/bythepixel/urlchecker, +github.com/bythope/discord-webhook-messages, github.com/bytic/bootstrap-materialize,num_dependents_deps.dev:0 github.com/bytinbit/nobubo, github.com/bytom-community/bytomide,num_dependents_deps.dev:0 @@ -333970,6 +340978,8 @@ github.com/bytorsten/rollup-plugin-named-exports,num_dependents_deps.dev:0 github.com/bytpher/tslint-ns-angular,num_dependents_deps.dev:0 github.com/bytpher/tslint-ns-core,num_dependents_deps.dev:0 github.com/bytrangle/gdrive-search,num_dependents_deps.dev:0 +github.com/bytrangle/most-reacted-comments, +github.com/bytro/rclone-action, github.com/bytronaviation/CordovaClipboard,num_dependents_deps.dev:0 github.com/bytronaviation/ftp-reader,num_dependents_deps.dev:0 github.com/byu-cpe/ygrader, @@ -334050,6 +341060,8 @@ github.com/byung82/semantic-pretty,num_dependents_deps.dev:0 github.com/byungguan-yoon/pylsprotocol, github.com/byungjin0826/ai-hems-new, github.com/byungsujeong/bs_jooks,num_dependents_deps.dev:0 +github.com/byunguk/jira-issue-details, +github.com/byunguk/jira-issue-type, github.com/byunjuneseok/pr-scouter,num_dependents_deps.dev:0 github.com/byuno/lotide,num_dependents_deps.dev:0 github.com/byuoitav/atlona,num_dependents_deps.dev:0 @@ -334086,6 +341098,8 @@ github.com/byverdu/react-byverdu,num_dependents_deps.dev:0 github.com/bywachira/html-serve,num_dependents_deps.dev:0 github.com/bywachira/kuun,num_dependents_deps.dev:0 github.com/bywachira/simp-cli,num_dependents_deps.dev:0 +github.com/bywatersolutions/github-action-koha-get-version-by-label, +github.com/bywatersolutions/github-action-koha-plugin-create-kpz, github.com/bywires/chara, github.com/bywulf/brickpi3-nodejs,num_dependents_deps.dev:0 github.com/bywwcnll/babel-plugin-k12import,num_dependents_deps.dev:0 @@ -334167,6 +341181,7 @@ github.com/bzhangzju/frogeye,num_dependents_deps.dev:0 github.com/bzhangzju/kipo,num_dependents_deps.dev:0 github.com/bzhangzju/taie,num_dependents_deps.dev:0 github.com/bzhaoopenstack/protobuf,num_dependents_deps.dev:0 +github.com/bzhaoopenstack/setup-java, github.com/bzhmaddog/node-amc,num_dependents_deps.dev:0 github.com/bzhxf/vue-router-ext, github.com/bzikarsky/gelf-php,criticality_score:0.392290 @@ -334233,6 +341248,7 @@ github.com/c-bata/django-httpbench, github.com/c-bata/django-label-tag-attr, github.com/c-bata/django-pygments-renderer, github.com/c-bata/feedy, +github.com/c-bata/github-actions-kurobako, github.com/c-bata/go-onnx,num_dependents_deps.dev:0 github.com/c-bata/go-prompt,criticality_score:0.370860 github.com/c-bata/goptuna,num_dependents_deps.dev:0 @@ -334291,6 +341307,10 @@ github.com/c-h-/node-run-cmd,num_dependents_deps.dev:10 github.com/c-harlake/AdvancedTree,num_dependents_deps.dev:0 github.com/c-hartmann/mongoexec,num_dependents_deps.dev:0 github.com/c-hartmann/mongoexec.js,num_dependents_deps.dev:0 +github.com/c-hive/fresh-bot, +github.com/c-hive/gha-npm-cache, +github.com/c-hive/gha-remove-artifacts, +github.com/c-hive/gha-yarn-cache, github.com/c-hive/team-contribution-calendar,num_dependents_deps.dev:0 github.com/c-jo/bbcgfx, github.com/c-jo/riscos-toolbox, @@ -334333,6 +341353,7 @@ github.com/c-pher/pyosinfo, github.com/c-pher/tcclient, github.com/c-pro/backdoor,num_dependents_deps.dev:0 github.com/c-pro/clickhouse,num_dependents_deps.dev:0 +github.com/c-py/action-dotenv-to-setenv, github.com/c-rack/cbor-java,"Google,num_dependents_deps.dev:1" github.com/c-rainbow/magictranslator, github.com/c-rainbow/twitch-chat-analyzer-py, @@ -334344,6 +341365,8 @@ github.com/c-robinson/ipfool,num_dependents_deps.dev:0 github.com/c-robinson/iplib,num_dependents_deps.dev:0 github.com/c-sanders/SetColourProfile, github.com/c-sanders/testpackage, +github.com/c-schicho/DockerRun-Action, +github.com/c-schicho/SSH-Action, github.com/c-seeger/csv2json,num_dependents_deps.dev:0 github.com/c-seeger/mac-gen-go,num_dependents_deps.dev:0 github.com/c-seeger/markdown2confluence,num_dependents_deps.dev:0 @@ -334468,6 +341491,7 @@ github.com/c0bra/smeans.js, github.com/c0bra/stock-ticker-cli,num_dependents_deps.dev:0 github.com/c0bra/svelma,num_dependents_deps.dev:0 github.com/c0bra/text2num.js,num_dependents_deps.dev:0 +github.com/c0c1/scp-action, github.com/c0caina/inawarp,num_dependents_deps.dev:0 github.com/c0d0g3n/mongoose-async,num_dependents_deps.dev:0 github.com/c0d3blooded/go-msgraph,num_dependents_deps.dev:0 @@ -334539,6 +341563,8 @@ github.com/c0h1b4/boletoUtil,num_dependents_deps.dev:0 github.com/c0ldra1n/abstract-js,num_dependents_deps.dev:0 github.com/c0ldra1n/cover-art-archive-node,num_dependents_deps.dev:0 github.com/c0ldra1n/node-quizlet,num_dependents_deps.dev:0 +github.com/c0lima/cicd-node, +github.com/c0lima/open-issue, github.com/c0llinn/crypto-exchange,num_dependents_deps.dev:0 github.com/c0m1t/relay-enum-generator,num_dependents_deps.dev:0 github.com/c0mm4nd/bitcoin-rpc-client, @@ -334649,6 +341675,7 @@ github.com/c272/rokkit,num_dependents_deps.dev:0 github.com/c2b-software/generator-nbl,num_dependents_deps.dev:0 github.com/c2c3/wakeboard-ui,num_dependents_deps.dev:0 github.com/c2corg/CampBot, +github.com/c2corg/browserslist-update-action, github.com/c2cs/c2cs-jsdoc,num_dependents_deps.dev:0 github.com/c2cs/generator-puppet,num_dependents_deps.dev:0 github.com/c2d7fa/immutable-extras,num_dependents_deps.dev:0 @@ -334915,6 +341942,7 @@ github.com/c9s/kup,num_dependents_deps.dev:0 github.com/c9s/pecl-cssmin,num_dependents_deps.dev:0 github.com/c9s/py-bitbucket, github.com/c9s/typeloy, +github.com/cAPRIcaT3/apprentice_stable, github.com/cAttte/captionbot.js, github.com/cAttte/discord.js-typing-stop,num_dependents_deps.dev:0 github.com/cAttte/fanum,num_dependents_deps.dev:0 @@ -334947,6 +341975,7 @@ github.com/cGuille/periodic-task,num_dependents_deps.dev:0 github.com/cHolzberger/hyperterm-material-vibracy,num_dependents_deps.dev:0 github.com/cHolzberger/jquery-router-plugin,num_dependents_deps.dev:0 github.com/cHullaert/unity-loader,num_dependents_deps.dev:0 +github.com/cKarud/github-action, github.com/cKurultayKalkan/vakifbank-python, github.com/cMadan/ElGateau, github.com/cMing404/lefit-moment,num_dependents_deps.dev:0 @@ -334961,6 +341990,7 @@ github.com/cScarlson/motorman,num_dependents_deps.dev:0 github.com/cScarlson/motorman-conductor,num_dependents_deps.dev:0 github.com/cScarlson/sawkit-node,num_dependents_deps.dev:0 github.com/cStor-cDeep/cstor-live-player,num_dependents_deps.dev:0 +github.com/cTux/simple-pull-request-gh-action, github.com/cWatermelon/hello-react-cascade,num_dependents_deps.dev:0 github.com/cXiaof/create-cxiaof-react-cli,num_dependents_deps.dev:0 github.com/cXiaof/geojson-linestring-concat,num_dependents_deps.dev:0 @@ -334982,6 +342012,7 @@ github.com/ca-cwds/woodduck,num_dependents_deps.dev:0 github.com/ca-dp/bucketeer-android-sdk,num_dependents_deps.dev:0 github.com/ca-dp/bucketeer-go-sdk,num_dependents_deps.dev:0 github.com/ca-dp/bucketeer-go-server-sdk,num_dependents_deps.dev:0 +github.com/ca-dp/code-butler, github.com/ca-gip/dploy,num_dependents_deps.dev:0 github.com/ca-gip/kotaplan,num_dependents_deps.dev:0 github.com/ca-gip/kotary,num_dependents_deps.dev:0 @@ -335236,6 +342267,9 @@ github.com/cachito-testing/gomod-vendor-check-fail,num_dependents_deps.dev:0 github.com/cachito-testing/gomod-vendor-check-pass,num_dependents_deps.dev:0 github.com/cachito-testing/gomod-with-subpackage,num_dependents_deps.dev:0 github.com/cachix/cachix,criticality_score:0.505790 +github.com/cachix/cachix-action, +github.com/cachix/haskell-release-action, +github.com/cachix/install-nix-action, github.com/cacilhas/daemonit,num_dependents_deps.dev:0 github.com/cacilhas/dockermon,num_dependents_deps.dev:0 github.com/cacilhas/env-o-loader,num_dependents_deps.dev:0 @@ -335266,6 +342300,7 @@ github.com/cactoo/service-worker-updater,num_dependents_deps.dev:0 github.com/cactool/cactool, github.com/cactorium/node-cint64,num_dependents_deps.dev:32 github.com/cactorium/rust-ast-debug,num_dependents_deps.dev:0 +github.com/cactus-blossom-it-services-limited/setup-drupal, github.com/cactus-denver/Nod-create-react-app,num_dependents_deps.dev:0 github.com/cactus/go-camo,num_dependents_deps.dev:0 github.com/cactus/go-misc,num_dependents_deps.dev:0 @@ -335279,6 +342314,7 @@ github.com/cactuscommunications/public-packages,num_dependents_deps.dev:0 github.com/cactusdev/cactus-stl,num_dependents_deps.dev:0 github.com/cactusdev/glimesh-chat,num_dependents_deps.dev:0 github.com/cactusdev/ws-error,num_dependents_deps.dev:0 +github.com/cactuslab/maven-toolchains-xml-action, github.com/cactuslab/nicetype,num_dependents_deps.dev:0 github.com/cactuslab/usepubsub,num_dependents_deps.dev:0 github.com/cactusmq/node-client,num_dependents_deps.dev:0 @@ -335401,6 +342437,8 @@ github.com/cadmean-ru/gorpckit,num_dependents_deps.dev:0 github.com/cadmean-ru/pythonRPCKit, github.com/cadmiumcat/books-api,num_dependents_deps.dev:0 github.com/cadmiumkitty/rdfpandas, +github.com/cadmus-labs/check-website-certificate-action, +github.com/cadmus-labs/check-website-dependencies-action, github.com/cadojo/hygiene, github.com/cadon/ARKStatsExtractor,criticality_score:0.532030 github.com/cadop/pycgm, @@ -335422,6 +342460,7 @@ github.com/cadu-leite/networkdays, github.com/cadulis/ion-datetime-picker, github.com/cadulis/ng2-toasty,num_dependents_deps.dev:0 github.com/cadulis/ngx-toasty,num_dependents_deps.dev:0 +github.com/cadwallion/publish-rubygems-action, github.com/cadyrov/gopslq,num_dependents_deps.dev:0 github.com/cadyrov/gopsql,num_dependents_deps.dev:0 github.com/cadyyan/technic-solder-client, @@ -335508,6 +342547,7 @@ github.com/caesar0301/treelib,criticality_score:0.333060 github.com/caesarb/xjc-lombok,num_dependents_deps.dev:0 github.com/caesarbell/contentful-smart-migration,num_dependents_deps.dev:0 github.com/caesarhu/filename-cc,num_dependents_deps.dev:0 +github.com/caesariab/simple-slack-message-action, github.com/caesarlib/caesarlib.rs,num_dependents_deps.dev:0 github.com/caesarnine/zen_python, github.com/caesarsalad/goauthz,num_dependents_deps.dev:0 @@ -335555,10 +342595,14 @@ github.com/cafepress/cafepress-search,num_dependents_deps.dev:0 github.com/caferrari/react-use-observable,num_dependents_deps.dev:2 github.com/cafexcomms/liveassist-botsdk-js,num_dependents_deps.dev:0 github.com/caffalaughrey/nlpeezy,num_dependents_deps.dev:0 +github.com/caffco/changed-packages-github-action, +github.com/caffco/code-climate-github-action, github.com/caffco/get-audio-duration,num_dependents_deps.dev:0 github.com/caffco/get-video-duration,num_dependents_deps.dev:5 github.com/caffco/koa-socket.io, +github.com/caffco/s3-glob-sync-github-action, github.com/caffco/socket.io,num_dependents_deps.dev:0 +github.com/caffco/yarn-workspace-packages-github-action, github.com/caffed/condemned,num_dependents_deps.dev:0 github.com/caffeinalab/siriwavejs,num_dependents_deps.dev:0 github.com/caffeinalab/tiapp-composer,num_dependents_deps.dev:0 @@ -335611,6 +342655,7 @@ github.com/caffix/queue,num_dependents_deps.dev:3 github.com/caffix/resolve,num_dependents_deps.dev:1 github.com/caffix/service,num_dependents_deps.dev:2 github.com/caffix/stringset,num_dependents_deps.dev:3 +github.com/caffo/interests-chart, github.com/caffoaaron/trabajo-final-programacion-concurrente,num_dependents_deps.dev:0 github.com/caffodian/mezzanine-buffer, github.com/cafienne/bounded-framework,num_dependents_deps.dev:0 @@ -335790,6 +342835,7 @@ github.com/cagosto/active-scroll-navigation,num_dependents_deps.dev:0 github.com/cagosto/ellipse,num_dependents_deps.dev:0 github.com/cagosto/filter-search,num_dependents_deps.dev:0 github.com/cagosto/resize-image-map,num_dependents_deps.dev:0 +github.com/cagov/actions-eleventy, github.com/cagov/covid19,num_dependents_deps.dev:0 github.com/cagov/design-system,num_dependents_deps.dev:0 github.com/cagov/storybook-ca-gov,num_dependents_deps.dev:0 @@ -335812,6 +342858,8 @@ github.com/cahamilton/stylelint-config-cotd,num_dependents_deps.dev:0 github.com/cahamilton/stylelint-config-property-sort-order-smacss,num_dependents_deps.dev:22 github.com/cahangon/aksara-unicode,num_dependents_deps.dev:0 github.com/cahangon/is-aksara,num_dependents_deps.dev:0 +github.com/cahaseler/azure-fileshare-upload, +github.com/cahaseler/openai-api, github.com/caheredia/sanic-to-json, github.com/cahian/base.styles.css,num_dependents_deps.dev:0 github.com/cahilfoley/react-snowfall, @@ -335843,6 +342891,7 @@ github.com/caian-org/tpsp, github.com/caiangums/react-native-template-eryn,num_dependents_deps.dev:0 github.com/caianrais/dora, github.com/caibingcheng/buffercache, +github.com/caibingcheng/hugo-algolia2, github.com/caibingcheng/orlike, github.com/caibirdme/json2pb,num_dependents_deps.dev:0 github.com/caicaicai21/clash,num_dependents_deps.dev:0 @@ -335970,6 +343019,9 @@ github.com/cailw/vue2-editor-with-imageresize,num_dependents_deps.dev:0 github.com/caimaoy/flask-realtime-import, github.com/caimaoy/gitbook-plugin-busuanzi,num_dependents_deps.dev:0 github.com/caimaoy/plugin-xmr,num_dependents_deps.dev:0 +github.com/caimeo/aws-secrets-manager-advanced, +github.com/caimeo/aws-yaml-to-ssm, +github.com/caimeo/heroku-deploy, github.com/caimmy/karuo, github.com/caimmy/karuoflow, github.com/cain19811028/go-notebook,num_dependents_deps.dev:0 @@ -336137,6 +343189,7 @@ github.com/caiohsramos/tsearch,num_dependents_deps.dev:0 github.com/caiokawasaki/stab,num_dependents_deps.dev:0 github.com/caiokf/react-router-auth0,num_dependents_deps.dev:0 github.com/caiokf/sqs-queue-parallel,num_dependents_deps.dev:0 +github.com/caiomarruda/redisearch-action, github.com/caiomelzer/AngUI5,num_dependents_deps.dev:0 github.com/caiomts/timerdo, github.com/caionakai/react-line-chart,num_dependents_deps.dev:0 @@ -336189,6 +343242,7 @@ github.com/caisong25216/zgyytest, github.com/caitan-app/ciac,num_dependents_deps.dev:0 github.com/caitiem20/gobase,num_dependents_deps.dev:0 github.com/caitinchen/parser,num_dependents_deps.dev:0 +github.com/caitlinelfring/action-limit-interactions, github.com/caitlinelfring/go-env-default,num_dependents_deps.dev:0 github.com/caitlinelfring/go-strings-benchmark,num_dependents_deps.dev:0 github.com/caitlingao/leetcode_rust,num_dependents_deps.dev:0 @@ -336310,7 +343364,9 @@ github.com/cajun/smile,num_dependents_deps.dev:0 github.com/cajusber/htauthentication,num_dependents_deps.dev:0 github.com/cakab/ekscli, github.com/cakarci/angular-sc,num_dependents_deps.dev:0 +github.com/cakarci/pull-request-workflow, github.com/cake-build/cake,criticality_score:0.602870 +github.com/cake-build/cake-action, github.com/cake-build/cake-yeoman, github.com/cake-fuka/steam-buddy-go,num_dependents_deps.dev:0 github.com/cake-hub/lidl-web-bootstrap_theme,num_dependents_deps.dev:0 @@ -336330,6 +343386,8 @@ github.com/cakecatz/tweet-player,num_dependents_deps.dev:0 github.com/cakecatz/vagrant.js, github.com/cakedan/cf-worker-router,num_dependents_deps.dev:0 github.com/cakedan/detritus,num_dependents_deps.dev:0 +github.com/cakedefi/split-tests, +github.com/cakeinpanic/jira-description-action, github.com/cakeinpanic/polite-linter,num_dependents_deps.dev:0 github.com/cakeisalie5/MastodonInstances, github.com/cakeisalie5/visyerres_sgdf_woob, @@ -336436,6 +343494,7 @@ github.com/calamus0427/meowui,num_dependents_deps.dev:0 github.com/calamus0427/vue-element-admin-calamus,num_dependents_deps.dev:0 github.com/calamus0427/vue-svg-tree,num_dependents_deps.dev:0 github.com/calantha1/rss-feed,num_dependents_deps.dev:0 +github.com/calaos/action-bump-version, github.com/calaos/calaos_ddns,num_dependents_deps.dev:0 github.com/calaos/calaos_dns,num_dependents_deps.dev:0 github.com/calarconpieriz/stubby4node,num_dependents_deps.dev:0 @@ -336734,6 +343793,8 @@ github.com/caleres/caleres-wl-virtual-cart-styles,num_dependents_deps.dev:0 github.com/calesce/react-hot-loader,num_dependents_deps.dev:0 github.com/calesce/redux-slider-monitor,num_dependents_deps.dev:4 github.com/calestar/cloudformation_helper, +github.com/caleteeter/ct-ccf-deploy, +github.com/caleteeter/ct-ccf-vote, github.com/caleteeter/trufflecover,num_dependents_deps.dev:0 github.com/calevipoeg/zeus,num_dependents_deps.dev:0 github.com/calexandru2018/offstack-app, @@ -336892,6 +343953,7 @@ github.com/calistyle/trailpack-proxy-passport,num_dependents_deps.dev:4 github.com/calistyle/trailpack-proxy-sequelize,num_dependents_deps.dev:0 github.com/calistyle/trailpack-treefrog,num_dependents_deps.dev:0 github.com/calivan0423/go,num_dependents_deps.dev:0 +github.com/caljess599/dependadoc, github.com/caljim/node-spy,num_dependents_deps.dev:0 github.com/caljrimmer/1liner,num_dependents_deps.dev:0 github.com/caljrimmer/require-backbone-view-mock,num_dependents_deps.dev:0 @@ -336960,6 +344022,7 @@ github.com/calleboketoft/ng2-selectable-items,num_dependents_deps.dev:0 github.com/calleboketoft/ng2-table,num_dependents_deps.dev:0 github.com/calleboketoft/ng2-tabs,num_dependents_deps.dev:0 github.com/callebstrom/express-java-monetary-amount-deserializer, +github.com/callebstrom/inno-setup-cli-action, github.com/calledT/easy-classlist,num_dependents_deps.dev:0 github.com/calledT/found.scss,num_dependents_deps.dev:0 github.com/calledT/generator-feweb,num_dependents_deps.dev:0 @@ -337062,6 +344125,7 @@ github.com/callmehiphop/video-screen,num_dependents_deps.dev:0 github.com/callmehiphop/workhorse,num_dependents_deps.dev:0 github.com/callmejustcallmejustcallmethenchooseme/h5-1614,num_dependents_deps.dev:0 github.com/callmejustcallmejustcallmethenchooseme/h5-1614/branches, +github.com/callmekatootie/carbonate, github.com/callmekatootie/max-pain,num_dependents_deps.dev:0 github.com/callmekory/node-logger,num_dependents_deps.dev:0 github.com/callmekory/node-utils,num_dependents_deps.dev:0 @@ -337383,6 +344447,7 @@ github.com/caltechlibrary/ames, github.com/caltechlibrary/bun, github.com/caltechlibrary/caltechdata_api, github.com/caltechlibrary/cli,num_dependents_deps.dev:0 +github.com/caltechlibrary/codemeta2cff, github.com/caltechlibrary/coif, github.com/caltechlibrary/commonpy, github.com/caltechlibrary/convert_codemeta, @@ -337411,6 +344476,7 @@ github.com/caltechlibrary/tmplfn,num_dependents_deps.dev:0 github.com/caltechlibrary/topi, github.com/caltechlibrary/trinomial, github.com/caltechlibrary/urlup, +github.com/caltechlibrary/waystation, github.com/caltechlibrary/ws,num_dependents_deps.dev:0 github.com/caltechlibrary/wsfn,num_dependents_deps.dev:0 github.com/calthoff/flask-orientdb, @@ -337470,6 +344536,8 @@ github.com/calvinbui/slack-csgo,num_dependents_deps.dev:0 github.com/calvinchan87/lotide, github.com/calvinchan87/lotide-new, github.com/calvinchankf/ReactRefreshinFiniteTableView,num_dependents_deps.dev:0 +github.com/calvincheng919/actionCalvin, +github.com/calvincheng919/calvin-js-action-template, github.com/calvinchengx/generator-yoreact,num_dependents_deps.dev:0 github.com/calvinchengx/hedera-sdk-js,num_dependents_deps.dev:0 github.com/calvinchengx/jsdoc2md-webpack,num_dependents_deps.dev:0 @@ -337526,6 +344594,7 @@ github.com/calvinlauyh/cosmosutils,num_dependents_deps.dev:0 github.com/calvinlfer/fill-in-the-blanks,num_dependents_deps.dev:0 github.com/calvinlfer/skull-island,num_dependents_deps.dev:0 github.com/calvinlough/ember-tag-input,num_dependents_deps.dev:4 +github.com/calvinmclean/article-sync, github.com/calvinmclean/automated-garden,num_dependents_deps.dev:0 github.com/calvinmetcalf/JSONStream,num_dependents_deps.dev:8 github.com/calvinmetcalf/Linked-List,num_dependents_deps.dev:0 @@ -337717,6 +344786,10 @@ github.com/calweb/genoset-211,num_dependents_deps.dev:0 github.com/calweb/genoset-221,num_dependents_deps.dev:0 github.com/calweb/genoset-228,num_dependents_deps.dev:0 github.com/calweb/genoset-291,num_dependents_deps.dev:0 +github.com/calxus/go-build-action, +github.com/calxus/kubernetes-deploy-action, +github.com/calxus/mysql-deploy-action, +github.com/calxus/prepare-kubernetes-deployment-action, github.com/calyhre/ot-json1-immutable,num_dependents_deps.dev:0 github.com/calypso-demo/filesharing,num_dependents_deps.dev:0 github.com/calypso-lang/calypso,num_dependents_deps.dev:0 @@ -337730,6 +344803,7 @@ github.com/calyptia/cmetrics-go,num_dependents_deps.dev:0 github.com/calyptia/fluent-bit-ci,num_dependents_deps.dev:0 github.com/calyptia/fluent-bit-cli,num_dependents_deps.dev:0 github.com/calyptia/fluent-bit-cloud-forwarder,num_dependents_deps.dev:0 +github.com/calyptia/fluent-linter-action, github.com/calyptia/fluentbit-go,num_dependents_deps.dev:0 github.com/calyptia/go-fluent-bit-metrics,num_dependents_deps.dev:0 github.com/calyptus/link.js,num_dependents_deps.dev:6 @@ -337748,6 +344822,8 @@ github.com/cam-m/antlr-odata,num_dependents_deps.dev:0 github.com/cam-parra/python-ursa, github.com/cam-stitt/arnold, github.com/cam2proj/CAM2ImageArchiver, +github.com/cam3ron2/build-action, +github.com/cam3ron2/pr-auto-assign, github.com/cam8001/nzism-passgen,num_dependents_deps.dev:0 github.com/cam861/convertapi-node,num_dependents_deps.dev:0 github.com/camacho/cli-banner,num_dependents_deps.dev:6 @@ -337784,6 +344860,7 @@ github.com/camallo/dkregistry-rs,num_dependents_deps.dev:0 github.com/camaoag/cert-manager-webhook-project-pinto,num_dependents_deps.dev:0 github.com/camaoag/project-pinto-sdk-go,num_dependents_deps.dev:0 github.com/camargo/camargo,num_dependents_deps.dev:0 +github.com/camargo/delete-untagged-action, github.com/camargo/ng-elm,num_dependents_deps.dev:0 github.com/camarojs/redis, github.com/camas/clicolor, @@ -337867,6 +344944,9 @@ github.com/camelot-framework/camelot,num_dependents_deps.dev:1050 github.com/camelot-framework/camelot-utils,num_dependents_deps.dev:2 github.com/camelot-framework/clay,num_dependents_deps.dev:172 github.com/camelot-framework/yatomata-camel,num_dependents_deps.dev:0 +github.com/camelotls/actions-jira-integration, +github.com/camelotls/actions-nowsecure, +github.com/camelotls/actions-thycotic-ss-integration, github.com/camelva/soundcloader,num_dependents_deps.dev:0 github.com/camelware/camel-ipsum, github.com/camen6ert/fastXmlParser,num_dependents_deps.dev:0 @@ -337988,6 +345068,7 @@ github.com/cameronwp/endpoint,num_dependents_deps.dev:0 github.com/cameronwp/pouchq,num_dependents_deps.dev:0 github.com/cameronwp/pubsub,num_dependents_deps.dev:8 github.com/cameronwp/server-endpoint,num_dependents_deps.dev:0 +github.com/cameronzipp/keyword-releaser, github.com/camertron/arel-helpers,criticality_score:0.472850 github.com/camertron/cldr-plurals-runtime-js,num_dependents_deps.dev:0 github.com/camertron/cldr-segmentation.js,num_dependents_deps.dev:0 @@ -338015,6 +345096,7 @@ github.com/camilaibs/changesets,num_dependents_deps.dev:0 github.com/camilaleniss/api-rest-go,num_dependents_deps.dev:0 github.com/camilamacedo86/kubebuilder,num_dependents_deps.dev:0 github.com/camilamacedo86/operator-sdk,num_dependents_deps.dev:0 +github.com/camilamaia/birinha, github.com/camilamaia/crawl4us, github.com/camilatigre/listamaravilhosaopensource,criticality_score:0.334350 github.com/camiler/init-hooks-src,num_dependents_deps.dev:0 @@ -338078,6 +345160,7 @@ github.com/caminio/caminio-cli,num_dependents_deps.dev:0 github.com/caminio/carver,num_dependents_deps.dev:0 github.com/camirmas/paxos,num_dependents_deps.dev:0 github.com/camisetags/objex,num_dependents_deps.dev:0 +github.com/camisinc/action-slack-user, github.com/camitz/aws-cloudwatch-statsd-backend,num_dependents_deps.dev:0 github.com/camjackson/jsx-rs,num_dependents_deps.dev:0 github.com/camjackson/keepbreak, @@ -338087,6 +345170,8 @@ github.com/camjackson/react-app-rewire-micro-frontends,num_dependents_deps.dev:0 github.com/camjackson/react-rs,num_dependents_deps.dev:0 github.com/camjackson/redux-eventstore,num_dependents_deps.dev:0 github.com/camjc/atom-linter-retext,num_dependents_deps.dev:0 +github.com/camjc/migration-progress-action, +github.com/camjc/ts-migration-action-test, github.com/camjw/Pretzl,num_dependents_deps.dev:0 github.com/camjw/gunpowder,num_dependents_deps.dev:0 github.com/camlab-bioml/astir, @@ -338114,6 +345199,7 @@ github.com/camme/tellstickjs,num_dependents_deps.dev:0 github.com/camme/zonar, github.com/cammm/deargui, github.com/cammsaul/django-rest-params, +github.com/cammylabs/github-terraw-deployment, github.com/camnasci/estudo-golang,num_dependents_deps.dev:0 github.com/camo-f/node-docker-secrets,num_dependents_deps.dev:0 github.com/camoconnell/lazy-line-painter,num_dependents_deps.dev:0 @@ -338210,6 +345296,9 @@ github.com/camplight/packageme,num_dependents_deps.dev:0 github.com/campoe/lldbvis, github.com/campoe/pystrin, github.com/campos-ddc/yaml-patch, +github.com/campos-pay/sonarqube-pr-comment, +github.com/camposdelima/package-helm-ghcr-action, +github.com/camposdelima/translate-markdown, github.com/camprevail/pet-pet-gif, github.com/campsi/api,num_dependents_deps.dev:0 github.com/campsi/array-diff,num_dependents_deps.dev:0 @@ -338232,6 +345321,7 @@ github.com/campsy1980/test-node-package,num_dependents_deps.dev:0 github.com/camptocamp/GeoFormAlchemy, github.com/camptocamp/anthem, github.com/camptocamp/aws-iam-authenticator-proxy,num_dependents_deps.dev:0 +github.com/camptocamp/backport-action, github.com/camptocamp/bivac,criticality_score:0.370880 github.com/camptocamp/c2c.cssmin, github.com/camptocamp/c2c.recipe.closurecompile, @@ -338354,6 +345444,7 @@ github.com/camunda-cloud/common-ui-react,num_dependents_deps.dev:0 github.com/camunda-cloud/zeebe,num_dependents_deps.dev:116 github.com/camunda-community-hub/bpmn-driven-testing,num_dependents_deps.dev:0 github.com/camunda-community-hub/camunda-cloud-go-client,num_dependents_deps.dev:0 +github.com/camunda-community-hub/camunda-platform-8-github-action, github.com/camunda-community-hub/pyzeebe, github.com/camunda-community-hub/zeebe-client-node-js, github.com/camunda-community-hub/zeebe-kafka-exporter,num_dependents_deps.dev:0 @@ -338458,6 +345549,7 @@ github.com/canardaaydin/groupmessage,num_dependents_deps.dev:0 github.com/canarinho-js/canarinho,num_dependents_deps.dev:0 github.com/canartuc/wordpress_posts_json,num_dependents_deps.dev:0 github.com/canary-swap/sdk,num_dependents_deps.dev:0 +github.com/canary-technologies-corp/periodic-changelog-action, github.com/canaryGrapher/multipass-control,num_dependents_deps.dev:0 github.com/canarydex/exchange-contracts,num_dependents_deps.dev:0 github.com/canarydex/sdk,num_dependents_deps.dev:0 @@ -338478,6 +345570,7 @@ github.com/canastajs/canasta-firebase-utils,num_dependents_deps.dev:10 github.com/canastajs/vuex-firebase-sync,num_dependents_deps.dev:0 github.com/canastic/ulidx,num_dependents_deps.dev:0 github.com/canastro/bulk-run-nsp,num_dependents_deps.dev:0 +github.com/canastro/copy-action, github.com/canastro/eslint-config,num_dependents_deps.dev:0 github.com/canastro/flow-interfaces-angular,num_dependents_deps.dev:0 github.com/canastro/image-brightness,num_dependents_deps.dev:0 @@ -338567,6 +345660,7 @@ github.com/cancervariants/variation-normalization, github.com/cancmrt/filterbucks,num_dependents_deps.dev:0 github.com/cancmrt/pasteparser,num_dependents_deps.dev:0 github.com/cancom/python-hostingde, +github.com/cancue/eks-action, github.com/cancue/react-native-webview-cleaner,num_dependents_deps.dev:0 github.com/candacerogue/reactopt,num_dependents_deps.dev:0 github.com/candalik/our-connect,num_dependents_deps.dev:0 @@ -338615,6 +345709,7 @@ github.com/candig/candig-schemas, github.com/candiolli/golang-course,num_dependents_deps.dev:0 github.com/candland/jekyll-clean-descriptions,num_dependents_deps.dev:0 github.com/candland/trello-email-summary,num_dependents_deps.dev:0 +github.com/candlecorp/wick-push-action, github.com/candledragle/apk_parse, github.com/candlefw/cached_factory, github.com/candlefw/conflagrate,num_dependents_deps.dev:10 @@ -338753,6 +345848,9 @@ github.com/cangshudada/lineOffset, github.com/cangshudada/react-keyBoard, github.com/cangshudada/vue-keyBoard,num_dependents_deps.dev:0 github.com/cangshudada/vue-keyBoard-next,num_dependents_deps.dev:0 +github.com/cangulo-actions/cangulo.nuke.prcommitsvalidations, +github.com/cangulo-actions/cangulo.nuke.releasecreator, +github.com/cangulo/cangulo.cicd-gh-action, github.com/canguruhh/bitident,num_dependents_deps.dev:0 github.com/canguruhh/metaverse-ops,num_dependents_deps.dev:8 github.com/canguruhh/metaversejs,num_dependents_deps.dev:0 @@ -338778,6 +345876,7 @@ github.com/cangzhang/om-dropdown,num_dependents_deps.dev:0 github.com/cangzhang/qcloud-cos-webpack-plugin,num_dependents_deps.dev:0 github.com/cangzhen/mongo-delta,num_dependents_deps.dev:0 github.com/cangzhen/timeseries-stat,num_dependents_deps.dev:0 +github.com/canh-nv/branch-parser-action, github.com/canha/another-telnet-client,num_dependents_deps.dev:0 github.com/canha/golang-tools-install-script,criticality_score:0.334280 github.com/canhazdb/client,num_dependents_deps.dev:0 @@ -338785,6 +345884,7 @@ github.com/canhazdb/driver-ejdb,num_dependents_deps.dev:0 github.com/canhazdb/driver-nedb,num_dependents_deps.dev:0 github.com/canhazdb/driver-sqlite,num_dependents_deps.dev:0 github.com/canhazdb/server,num_dependents_deps.dev:0 +github.com/canhetingsky/hexo-deploy-action, github.com/canhkieu/vue-cli-plugin-vuetify-cordova,num_dependents_deps.dev:0 github.com/canhkieu/vue-cli-plugin-vuetify-electron,num_dependents_deps.dev:0 github.com/canhkieu/vuetify-date-range-picker,num_dependents_deps.dev:0 @@ -339054,6 +346154,7 @@ github.com/cannon-liu/leetcode-daily,num_dependents_deps.dev:0 github.com/cannoneer/mongoose-mgo-auto-increment,num_dependents_deps.dev:0 github.com/cannoneyed/relastic,num_dependents_deps.dev:0 github.com/cannonstar/maas-api,num_dependents_deps.dev:0 +github.com/cannorin/retry, github.com/cano-koa/cano-cube-error,num_dependents_deps.dev:0 github.com/cano-koa/cano-cube-mongoose,num_dependents_deps.dev:0 github.com/cano-koa/cano-koa,num_dependents_deps.dev:0 @@ -339071,6 +346172,7 @@ github.com/canonical-web-and-design/canonicalwebteam.image-template, github.com/canonical-web-and-design/canonicalwebteam.launchpad, github.com/canonical-web-and-design/canonicalwebteam.search, github.com/canonical-web-and-design/cookie-policy,num_dependents_deps.dev:2 +github.com/canonical-web-and-design/csv-to-google-spreadsheet, github.com/canonical-web-and-design/global-nav, github.com/canonical-web-and-design/latest-news,num_dependents_deps.dev:2 github.com/canonical-web-and-design/maas-ui,num_dependents_deps.dev:0 @@ -339107,6 +346209,7 @@ github.com/canonical/go-dqlite,num_dependents_deps.dev:37 github.com/canonical/go-efilib,num_dependents_deps.dev:0 github.com/canonical/go-service,num_dependents_deps.dev:0 github.com/canonical/go-tpm2,num_dependents_deps.dev:24 +github.com/canonical/has-signed-canonical-cla, github.com/canonical/k8s-dqlite,num_dependents_deps.dev:0 github.com/canonical/kvsql-dqlite,num_dependents_deps.dev:0 github.com/canonical/lightdm,criticality_score:0.484940 @@ -339119,12 +346222,14 @@ github.com/canonical/pgconnstr, github.com/canonical/raft,criticality_score:0.389700 github.com/canonical/sborl, github.com/canonical/serialized-data-interface, +github.com/canonical/setup-maas, github.com/canonical/ssoauth,num_dependents_deps.dev:0 github.com/canonical/subiquity, github.com/canonical/swiftmock, github.com/canonical/swiftpath, github.com/canonical/tcglog-parser,num_dependents_deps.dev:0 github.com/canonical/ubuntu-image,num_dependents_deps.dev:0 +github.com/canonical/upload-charm-docs, github.com/canonical/ust-download-cache, github.com/canonicalltd/dqlite,num_dependents_deps.dev:0 github.com/canonicalltd/go-dqlite,num_dependents_deps.dev:0 @@ -339162,6 +346267,7 @@ github.com/canovie/smtp-send, github.com/canoypa/dexlily, github.com/canoypa/eslint-config-custrino,num_dependents_deps.dev:0 github.com/canoypa/stylelint-config-custrino,num_dependents_deps.dev:0 +github.com/canoypa/upload-release-asset, github.com/canozgen9/react-native-janus,num_dependents_deps.dev:0 github.com/canoziia/checkserver,num_dependents_deps.dev:0 github.com/canpacis/datapack-generator,num_dependents_deps.dev:0 @@ -339348,6 +346454,7 @@ github.com/canxiajiuwu/rambo,num_dependents_deps.dev:0 github.com/canxing/dockerfile,num_dependents_deps.dev:0 github.com/canyanio/rating-agent-hep,num_dependents_deps.dev:0 github.com/canygt27/generator-markakod,num_dependents_deps.dev:0 +github.com/canyonfrs/kingmojang-app-action, github.com/canyuegongzi/decorator-http-template,num_dependents_deps.dev:0 github.com/canyuegongzi/t-cli,num_dependents_deps.dev:0 github.com/canyuegongzi/t-cli-template,num_dependents_deps.dev:0 @@ -339707,6 +346814,7 @@ github.com/capatten/IntSol,num_dependents_deps.dev:0 github.com/capchriscap/tekton-pipeline-listener,num_dependents_deps.dev:0 github.com/capcrunchIO/nhl-player-image-grabber,num_dependents_deps.dev:0 github.com/capdiem/antd-components,num_dependents_deps.dev:0 +github.com/capdiem/needs-triage, github.com/capdilla/koa2-controller,num_dependents_deps.dev:0 github.com/capdilla/react-native-galery-carousel,num_dependents_deps.dev:0 github.com/cape-/auto-interval,num_dependents_deps.dev:0 @@ -339892,12 +347000,14 @@ github.com/capnproto/capnproto-java,criticality_score:0.303220 github.com/capnproto/capnproto-rust,"criticality_score:0.538260,num_dependents_deps.dev:81" github.com/capnproto/go-capnproto2,"criticality_score:0.337760,num_dependents_deps.dev:60" github.com/capnproto/pycapnp,criticality_score:0.380930 +github.com/capnspacehook/cache-go, github.com/capnspacehook/pandorasbox,num_dependents_deps.dev:0 github.com/capnspacehook/taskmaster,num_dependents_deps.dev:3 github.com/capoe/benchml, github.com/capoe/gylmxx, github.com/capoe/nphil, github.com/capoio/capo-gem,num_dependents_deps.dev:0 +github.com/caponetto/less-is-more, github.com/caponline26/simple-react-native-router,num_dependents_deps.dev:0 github.com/caporl/cli,num_dependents_deps.dev:0 github.com/caporl/core,num_dependents_deps.dev:0 @@ -340021,6 +347131,7 @@ github.com/caproner/demogame_backend,num_dependents_deps.dev:0 github.com/caproven/musicstats,num_dependents_deps.dev:0 github.com/caprover/caprover,criticality_score:0.553560 github.com/caprover/caprover-cli,num_dependents_deps.dev:0 +github.com/caprover/deploy-from-github, github.com/capruce/debug_calls, github.com/capsid/capsid, github.com/capsidjs/capsid,num_dependents_deps.dev:0 @@ -340104,6 +347215,7 @@ github.com/captaingeech42/geechbot,num_dependents_deps.dev:0 github.com/captaingeech42/keysteal,num_dependents_deps.dev:0 github.com/captainh00k/useCheat,num_dependents_deps.dev:0 github.com/captainh00k/useCombo,num_dependents_deps.dev:0 +github.com/captainhammy/install-houdini-apprentice-license-action, github.com/captainhookphp/captainhook,criticality_score:0.461790 github.com/captainjackrana/hapi-gate,num_dependents_deps.dev:0 github.com/captainlee1024/go-gateway,num_dependents_deps.dev:0 @@ -340200,6 +347312,7 @@ github.com/capventis/dgman,num_dependents_deps.dev:0 github.com/capy-pl/init-ts-app,num_dependents_deps.dev:0 github.com/capybaraInSpace/ivanSlider,num_dependents_deps.dev:0 github.com/capyvara/fastlane-plugin-store_sizer,num_dependents_deps.dev:0 +github.com/car-on-sale/action-pull-request-another-repo, github.com/car-tetris/simple-bp3d-node,num_dependents_deps.dev:0 github.com/car-throttle/aws-cloudwatch-logger,num_dependents_deps.dev:0 github.com/car-throttle/awsops,num_dependents_deps.dev:0 @@ -340248,12 +347361,17 @@ github.com/caravan/queries,num_dependents_deps.dev:0 github.com/caravan/streaming,num_dependents_deps.dev:0 github.com/caravanacloud/bino,num_dependents_deps.dev:0 github.com/caravanacloud/palestra-golang,num_dependents_deps.dev:0 +github.com/caravancodes/consumable-code-pixabay-api, +github.com/caravancodes/consumable-code-the-meal-db-api, +github.com/caravancodes/consumable-code-the-sport-db-api, +github.com/caravancodes/frogo-ui-kit-deprecated, github.com/caravancoop/angulargrid-autoload,num_dependents_deps.dev:0 github.com/caravancoop/configstore, github.com/caravancoop/djangocms-column, github.com/caravancoop/rest-framework-auth-toolkit, github.com/carawarner/calculator, github.com/carawarner/pantheon, +github.com/caraway-health/github-action-slack-notify-build, github.com/caraya/generator-webpublish,num_dependents_deps.dev:0 github.com/carbenson/tiny,num_dependents_deps.dev:0 github.com/carbidegames/clockwork,num_dependents_deps.dev:0 @@ -340329,10 +347447,13 @@ github.com/carbonblack/cbfeeds, github.com/carboncalculated/calculated,num_dependents_deps.dev:0 github.com/carboncalculated/node-pachube-stream,num_dependents_deps.dev:0 github.com/carboncalculated/pachube-stream,num_dependents_deps.dev:0 +github.com/carbonchain/action-container-registry, github.com/carboneio/carbone-sdk-go,num_dependents_deps.dev:0 github.com/carboneio/carbone-sdk-js,num_dependents_deps.dev:0 github.com/carboneio/carbone-sdk-python, github.com/carbonetes/carbonetes-lens-extension,num_dependents_deps.dev:0 +github.com/carbonetes/diggity-action, +github.com/carbonetes/jacked-action, github.com/carbonfive/hi-mixin-node, github.com/carbonfive/mocha-server,num_dependents_deps.dev:0 github.com/carbonfive/nock-vcr,num_dependents_deps.dev:0 @@ -340432,19 +347553,37 @@ github.com/cardimajs/icons-react,num_dependents_deps.dev:0 github.com/cardin/throttle-sema,num_dependents_deps.dev:0 github.com/cardinal-cryptography/liminal,num_dependents_deps.dev:0 github.com/cardinal-health/typycal, +github.com/cardinal-labs/solana-buffer-deploy-action, +github.com/cardinal-labs/squads-program-upgrade, github.com/cardinal-platform/binding,num_dependents_deps.dev:0 github.com/cardinalblue/cbjs,num_dependents_deps.dev:0 github.com/cardinalblue/profanity-filter,num_dependents_deps.dev:0 +github.com/cardinalby/download-release-asset-action, +github.com/cardinalby/export-env-action, +github.com/cardinalby/git-get-release-action, +github.com/cardinalby/git-tag-action, github.com/cardinalby/github-actions-utils,num_dependents_deps.dev:0 +github.com/cardinalby/google-api-fetch-token-action, +github.com/cardinalby/js-eval-action, +github.com/cardinalby/schedule-job-action, +github.com/cardinalby/schema-validator-action, github.com/cardinalby/ts-raii-scope,num_dependents_deps.dev:0 github.com/cardinalby/typed-chrome-webstore-api,num_dependents_deps.dev:2 +github.com/cardinalby/unschedule-job-action, github.com/cardinalby/webext-buildtools-builder-types,num_dependents_deps.dev:0 +github.com/cardinalby/webext-buildtools-chrome-crx-action, github.com/cardinalby/webext-buildtools-chrome-crx-builder,num_dependents_deps.dev:0 github.com/cardinalby/webext-buildtools-chrome-webstore-builder,num_dependents_deps.dev:0 +github.com/cardinalby/webext-buildtools-chrome-webstore-download-crx-action, +github.com/cardinalby/webext-buildtools-chrome-webstore-publish-action, +github.com/cardinalby/webext-buildtools-chrome-webstore-upload-action, github.com/cardinalby/webext-buildtools-dir-reader-mw,num_dependents_deps.dev:0 +github.com/cardinalby/webext-buildtools-firefox-addons-action, github.com/cardinalby/webext-buildtools-firefox-addons-builder,num_dependents_deps.dev:0 +github.com/cardinalby/webext-buildtools-firefox-sign-xpi-action, github.com/cardinalby/webext-buildtools-integrated-builder,num_dependents_deps.dev:0 github.com/cardinalby/webext-buildtools-opera-addons-builder,num_dependents_deps.dev:0 +github.com/cardinalby/webext-buildtools-pack-extension-dir-action, github.com/cardinalby/webext-buildtools-utils,num_dependents_deps.dev:0 github.com/cardinalcat/cppbuild,num_dependents_deps.dev:0 github.com/cardinity/cardinity-nodejs, @@ -340452,6 +347591,7 @@ github.com/cardlove/gocode,num_dependents_deps.dev:0 github.com/cardmagic/contacts,criticality_score:0.333790 github.com/cardoe/cargo-bitbake,num_dependents_deps.dev:0 github.com/cardoe/cargo-ebuild,num_dependents_deps.dev:0 +github.com/cardoe/ssh-agent-deploy-key, github.com/cardoe/stderrlog-rs,num_dependents_deps.dev:29 github.com/cardona7daniel/securityBox,num_dependents_deps.dev:0 github.com/cardoni/checkmate,num_dependents_deps.dev:0 @@ -340580,8 +347720,12 @@ github.com/cargill/cylinder,num_dependents_deps.dev:3 github.com/cargill/splinter,num_dependents_deps.dev:0 github.com/cargillb/cockroachdb,num_dependents_deps.dev:0 github.com/cargix1/JQuery-Session-Plugin,num_dependents_deps.dev:0 +github.com/cargo-bins/cargo-binstall, +github.com/cargo-bins/release-meta, +github.com/cargo-bins/release-pr, github.com/cargo-eth/cargo-js,num_dependents_deps.dev:0 github.com/cargo-generate/cargo-generate,"criticality_score:0.449550,num_dependents_deps.dev:0" +github.com/cargo-generate/cargo-generate-action, github.com/cargod-bj/b2c-authority-api,num_dependents_deps.dev:0 github.com/cargod-bj/b2c-car-api,num_dependents_deps.dev:0 github.com/cargod-bj/b2c-common,num_dependents_deps.dev:0 @@ -340611,6 +347755,7 @@ github.com/cargonauts-rs/cargonauts,num_dependents_deps.dev:0 github.com/cargurus/javascript,num_dependents_deps.dev:0 github.com/cargurus/webpack-hash-cache,num_dependents_deps.dev:0 github.com/carhartl/jquery-cookie,"Google,num_dependents_deps.dev:50" +github.com/carhartl/talisman-secrets-scan-action, github.com/cariad/ansiscape, github.com/cariad/asking, github.com/cariad/boringmd, @@ -340695,6 +347840,7 @@ github.com/carla-vila/tutorial,num_dependents_deps.dev:0 github.com/carlaam/credit-card-validator,num_dependents_deps.dev:0 github.com/carlaam/roman-to-arabic-numerals,num_dependents_deps.dev:0 github.com/carlakc/lnd,num_dependents_deps.dev:0 +github.com/carlalbrecht/atollic-truestudio-action, github.com/carlalbrecht/sdl2-unifont,num_dependents_deps.dev:0 github.com/carlambroselli/homebridge-hue-labs,num_dependents_deps.dev:0 github.com/carlambroselli/homebridge-vorwerk,num_dependents_deps.dev:0 @@ -340755,6 +347901,7 @@ github.com/carlescufi/treble, github.com/carlesjove/aina,num_dependents_deps.dev:0 github.com/carleslc/readteractive-generator,num_dependents_deps.dev:0 github.com/carlesm/pyOnvotar, +github.com/carlesnunez/check-my-bundlephobia, github.com/carlesnunez/factory-girl-redux-orm,num_dependents_deps.dev:0 github.com/carlesnunez/redux-orm-kerad,num_dependents_deps.dev:0 github.com/carlesperez94/frag_pele, @@ -341090,6 +348237,7 @@ github.com/carlosabalde/pgp-tomb,num_dependents_deps.dev:0 github.com/carlosabalde/varnishsentry, github.com/carlosabalde/vcc, github.com/carlosabalde/wurfl-python, +github.com/carlosabcs/lumen-phpunit-action, github.com/carlosalbertolopes/sonarcloud,num_dependents_deps.dev:0 github.com/carlosalexandre1985/event-dispatcher,num_dependents_deps.dev:0 github.com/carlosaml/grunt-redact,num_dependents_deps.dev:0 @@ -341125,6 +348273,7 @@ github.com/carloscarmona/decompress-gz,num_dependents_deps.dev:0 github.com/carloscarvallo/massive-asn-blocks,num_dependents_deps.dev:0 github.com/carloscasalar/configurations,num_dependents_deps.dev:0 github.com/carloscasciano/dnd-dice-complete-set,num_dependents_deps.dev:0 +github.com/carloscastrojumo/github-cherry-pick-action, github.com/carloscba/appolodoro-cropimage,num_dependents_deps.dev:0 github.com/carloscba/appolodoro-fb,num_dependents_deps.dev:0 github.com/carloscba/appolodoro-locale,num_dependents_deps.dev:0 @@ -341155,6 +348304,7 @@ github.com/carlosdavidepto/node-frontwall,num_dependents_deps.dev:0 github.com/carlosdavidepto/pot,num_dependents_deps.dev:0 github.com/carlosdavidepto/sprocket-cli,num_dependents_deps.dev:0 github.com/carlosdelgado841/random-messages-cdelgado,num_dependents_deps.dev:0 +github.com/carlosdevpereira/test-publish-to-cloudflare, github.com/carlosdnba/serverless-slack,num_dependents_deps.dev:0 github.com/carlosdp/plaster,num_dependents_deps.dev:0 github.com/carlosdsv/react-component-collaborators,num_dependents_deps.dev:0 @@ -341177,6 +348327,7 @@ github.com/carlosfdezb/cuevana3, github.com/carlosfdezb/tioanime,num_dependents_deps.dev:0 github.com/carlosfdezb/use-rut, github.com/carlosfiori/v-money,num_dependents_deps.dev:0 +github.com/carlosflorencio/hetzner_deployer, github.com/carlosflorencio/laracasts-downloader,criticality_score:0.310240 github.com/carlosfrodrigues/react-basic-json, github.com/carlosfrutos/homebridge-http-scaled-temperature-sensor,num_dependents_deps.dev:0 @@ -341269,6 +348420,10 @@ github.com/carlosmoran97/ps-author-helper,num_dependents_deps.dev:0 github.com/carlosmtx/sails-goose,num_dependents_deps.dev:0 github.com/carlosmuvi/SegmentedProgressBar,num_dependents_deps.dev:0 github.com/carlosniquini/Wtp, +github.com/carlosnizolli/RoboCop, +github.com/carlosnizolli/RobotLint, +github.com/carlosnizolli/percy-upload, +github.com/carlosnizolli/soda-core-actions, github.com/carlososiel/hapi-plivo-integration,num_dependents_deps.dev:0 github.com/carlososiel/hapi-twilio-integration,num_dependents_deps.dev:0 github.com/carlosouro/stalker-pattern,num_dependents_deps.dev:0 @@ -341289,8 +348444,12 @@ github.com/carlospaulino/node-whoisclient,num_dependents_deps.dev:0 github.com/carlospavanetti/fullcycle,num_dependents_deps.dev:0 github.com/carlospavanetti/humanized-time,num_dependents_deps.dev:0 github.com/carlospence/react-multi-select-component,num_dependents_deps.dev:0 +github.com/carlospeon/buildrpm, github.com/carlosperate/ardublockly,criticality_score:0.378540 +github.com/carlosperate/arm-none-eabi-gcc-action, github.com/carlosperate/awesome-microbit,criticality_score:0.426200 +github.com/carlosperate/bloaty-action, +github.com/carlosperate/download-file-action, github.com/carlosperate/ubittool, github.com/carlospereira1607/tcb,num_dependents_deps.dev:0 github.com/carlosplanchon/ansistrip, @@ -341394,9 +348553,11 @@ github.com/carlosteixeiraa/carte-cli,num_dependents_deps.dev:0 github.com/carlosterberg/d7024e,num_dependents_deps.dev:0 github.com/carlosthe19916/controls-keycloak-theme,num_dependents_deps.dev:0 github.com/carlosthe19916/jasper-utils,num_dependents_deps.dev:0 +github.com/carlosthe19916/keycloak-action, github.com/carlosthe19916/sunat-jaxb,num_dependents_deps.dev:0 github.com/carlosthe19916/sunat-web-services,num_dependents_deps.dev:0 github.com/carlosthe19916/w4-forms,num_dependents_deps.dev:0 +github.com/carlosthe19916/windup-action, github.com/carlosthe19916/windup-ui,num_dependents_deps.dev:0 github.com/carlostojal/chainify,num_dependents_deps.dev:0 github.com/carlostorreswav/react-modal-hover, @@ -341446,11 +348607,13 @@ github.com/carlpulley/docker-compose-testkit,num_dependents_deps.dev:0 github.com/carlpulley/validated-config,num_dependents_deps.dev:0 github.com/carlrabbit/electron-compilers,num_dependents_deps.dev:0 github.com/carlrondoni/freecodecampback,num_dependents_deps.dev:0 +github.com/carlrygart/portainer-stack-deploy, github.com/carlsachs/cra-template-zipstyles,num_dependents_deps.dev:0 github.com/carlsachs/speed-components,num_dependents_deps.dev:0 github.com/carlsachs/speed-components1,num_dependents_deps.dev:0 github.com/carlsagan21/ejs-simple-loader,num_dependents_deps.dev:0 github.com/carlsagan21/jquery-simple-query-string-plugin,num_dependents_deps.dev:0 +github.com/carlsberg/temporary-branch-action, github.com/carlsborg/dust, github.com/carlschader/firstgomodule,num_dependents_deps.dev:0 github.com/carlschader/gowiki,num_dependents_deps.dev:0 @@ -341526,6 +348689,7 @@ github.com/carmilso/tracer-debug,num_dependents_deps.dev:0 github.com/carminesunset/cache,num_dependents_deps.dev:0 github.com/carml/carml,num_dependents_deps.dev:123 github.com/carmo-evan/proxy-checker,num_dependents_deps.dev:0 +github.com/carmocca/probot, github.com/carmonw/bs-awesomize-express,num_dependents_deps.dev:0 github.com/carmor014/golang,num_dependents_deps.dev:0 github.com/carnadso/aristeides,num_dependents_deps.dev:0 @@ -341876,6 +349040,7 @@ github.com/carrotsrc/nl80211rs,num_dependents_deps.dev:0 github.com/carrotsrc/rsnl,num_dependents_deps.dev:0 github.com/carrotzrule123/ecs,num_dependents_deps.dev:0 github.com/carrutstick/cuml_map,num_dependents_deps.dev:0 +github.com/carry0987/gitbook-publish-action, github.com/carry1111/carryjs,num_dependents_deps.dev:0 github.com/carry1111/popup-component,num_dependents_deps.dev:0 github.com/carry1111/zujian,num_dependents_deps.dev:0 @@ -342038,6 +349203,7 @@ github.com/carter-thaxton/node-diff-stream,num_dependents_deps.dev:0 github.com/carter-thaxton/node-stdout,num_dependents_deps.dev:30 github.com/carter-yagemann/python-fuzzy-extractor, github.com/carterbourette/vue-frappe-chart,num_dependents_deps.dev:0 +github.com/carterbox/release-archive-with-hash, github.com/cartercodes/mc-devcamp-js-footer,num_dependents_deps.dev:0 github.com/carterdanko/hubot-github-bot,num_dependents_deps.dev:0 github.com/carterjfulcher/inspireapi, @@ -342080,6 +349246,7 @@ github.com/cartodb/tangram-cartocss,num_dependents_deps.dev:2 github.com/cartodb/tangram-reference, github.com/cartodb/tangram.cartodb,num_dependents_deps.dev:0 github.com/cartodb/torque-reference,num_dependents_deps.dev:0 +github.com/cartogram/deepl-action, github.com/cartogram/dialog,num_dependents_deps.dev:4 github.com/cartogram/next-plugin-mini-graphql,num_dependents_deps.dev:0 github.com/cartograph/koa-dispatch,num_dependents_deps.dev:0 @@ -342143,6 +349310,7 @@ github.com/carvalhoviniciusluiz/restify-render-middleware,num_dependents_deps.de github.com/carvalhoviniciusluiz/winston-restify,num_dependents_deps.dev:0 github.com/carvarr/nativescript-google-signin,num_dependents_deps.dev:0 github.com/carvefx/arnia-timesheet-helper,num_dependents_deps.dev:0 +github.com/carvel-dev/setup-action, github.com/carver/ens.py, github.com/carver/ensauction.py, github.com/carver/ethtoken.py, @@ -342225,6 +349393,7 @@ github.com/casangi/sirius, github.com/casaone/supersamples,num_dependents_deps.dev:0 github.com/casaper/icon-font-generator,num_dependents_deps.dev:0 github.com/casaper/webfonts-generator,num_dependents_deps.dev:0 +github.com/casassg/auto-merge-bot, github.com/casastorta/axigen-pyton-api, github.com/casastorta/python-sar, github.com/casaub0n/header-inserter, @@ -342281,6 +349450,8 @@ github.com/cascer1/diabot,num_dependents_deps.dev:0 github.com/cascer1/lita-discord_oauth,num_dependents_deps.dev:0 github.com/caschbre/Svelte-Indicative,num_dependents_deps.dev:0 github.com/cascobie/lotide, +github.com/cascode-labs/build-conda-action, +github.com/cascode-labs/build-sphinx-action, github.com/cascornelissen/event-hooks-webpack-plugin,num_dependents_deps.dev:92 github.com/cascornelissen/lint-formatter, github.com/cascornelissen/stylelint-bare-webpack-plugin, @@ -342511,13 +349682,16 @@ github.com/caseyyee/aframe-ui-widgets,num_dependents_deps.dev:0 github.com/casfia/vflow,num_dependents_deps.dev:0 github.com/cash/django-monitor-consent, github.com/cash/tweetvac, +github.com/cashapp/activate-hermit, github.com/cashapp/awsu,num_dependents_deps.dev:0 github.com/cashapp/backfila,num_dependents_deps.dev:12 github.com/cashapp/barber,num_dependents_deps.dev:0 github.com/cashapp/certifikit,num_dependents_deps.dev:0 +github.com/cashapp/check-signature-action, github.com/cashapp/contour,"criticality_score:0.341300,num_dependents_deps.dev:0" github.com/cashapp/copper,num_dependents_deps.dev:0 github.com/cashapp/hermit,num_dependents_deps.dev:0 +github.com/cashapp/hermit-package-version, github.com/cashapp/licensee,num_dependents_deps.dev:0 github.com/cashapp/misk,criticality_score:0.507920 github.com/cashapp/misk-web,num_dependents_deps.dev:30 @@ -342614,6 +349788,7 @@ github.com/cask-solutions/mmds,num_dependents_deps.dev:0 github.com/cask-solutions/yare,num_dependents_deps.dev:4 github.com/cask/cask,criticality_score:0.524030 github.com/cask/epl,Google +github.com/cask/setup-cask, github.com/cask/shut-up,Google github.com/caskdata/cask-tracker,num_dependents_deps.dev:0 github.com/caskdata/cdap,num_dependents_deps.dev:55766 @@ -342669,7 +349844,12 @@ github.com/casperbh96/Nested-Cross-Validation, github.com/casperdcl/argopt, github.com/casperdcl/brainweb, github.com/casperdcl/caspyr, +github.com/casperdcl/covid-19-box, +github.com/casperdcl/deploy-pypi, +github.com/casperdcl/ghstat, github.com/casperdcl/git-fame,criticality_score:0.360020 +github.com/casperdcl/hl-weather-box, +github.com/casperdcl/push-dir, github.com/casperdcl/test, github.com/casperel/react-terminal-snippet,num_dependents_deps.dev:0 github.com/casperin/babel-plugin-replace-import-source-with-env,num_dependents_deps.dev:0 @@ -342959,6 +350139,7 @@ github.com/castrofernandez/whatsme, github.com/castrolol/json-cr,num_dependents_deps.dev:0 github.com/castrolol/ng2-mask-money,num_dependents_deps.dev:0 github.com/castrolol/node-placa-mercosul,num_dependents_deps.dev:0 +github.com/castroneto/deploy-to-google-artifactory, github.com/castronova/hstools, github.com/castualwang/aimap, github.com/castwide/opal-webpack-bundler,num_dependents_deps.dev:0 @@ -343218,6 +350399,11 @@ github.com/catch22/xournal-converters, github.com/catch6/springboot-base,num_dependents_deps.dev:0 github.com/catchad/is-ie,num_dependents_deps.dev:0 github.com/catchad/react-window-event,num_dependents_deps.dev:0 +github.com/catchco/azure-appservice-settings-env, +github.com/catchco/dbt-cloud-get-run-id, +github.com/catchco/dbt-cloud-wait-for-run, +github.com/catchco/doppler-environment-loader, +github.com/catchco/sslmate-certificate-installer, github.com/catchdigital/catchify,num_dependents_deps.dev:0 github.com/catcher-in-the-try/aes-256-gcm,num_dependents_deps.dev:0 github.com/catcher-in-the-try/async-csv,num_dependents_deps.dev:24 @@ -343502,6 +350688,7 @@ github.com/catroll/python-alipay, github.com/catroll/python-wechat, github.com/cats-oss/android-gpuimage,"criticality_score:0.380870,num_dependents_deps.dev:0" github.com/cats-oss/android-tab-animation,num_dependents_deps.dev:0 +github.com/cats-oss/github-action-auto-assign, github.com/cats-oss/github-action-detect-unmergeable,num_dependents_deps.dev:0 github.com/cats-oss/intly,num_dependents_deps.dev:0 github.com/cats-oss/scaffdog,num_dependents_deps.dev:28 @@ -343955,6 +351142,8 @@ github.com/cazualich/imya,num_dependents_deps.dev:0 github.com/cazwacki/personaldiscordbot,num_dependents_deps.dev:0 github.com/cazzer/make-postgres-markdown,num_dependents_deps.dev:0 github.com/cazzer/make-shins,num_dependents_deps.dev:0 +github.com/cazziwork/asciidoc-to-html, +github.com/cazziwork/create-release-note, github.com/cb-hackers/cbNetwork-node, github.com/cb-hackers/node-NetMatch, github.com/cb-haripriyan/chargebee-react-native,num_dependents_deps.dev:0 @@ -343988,6 +351177,9 @@ github.com/cb372/coc-github-users,num_dependents_deps.dev:0 github.com/cb372/morocco,num_dependents_deps.dev:0 github.com/cb372/scala-typed-holes,num_dependents_deps.dev:0 github.com/cb372/scalacache,"criticality_score:0.433570,num_dependents_deps.dev:230" +github.com/cb80/add2project, +github.com/cb80/delrel, +github.com/cb80/pubrel, github.com/cbaclig/facebooker,num_dependents_deps.dev:0 github.com/cbaddeley/Synesthesia, github.com/cbadger85/react-use-ripple,num_dependents_deps.dev:0 @@ -344031,6 +351223,7 @@ github.com/cbas/spa-history-api,num_dependents_deps.dev:0 github.com/cbascom/devise-radius-authenticatable,num_dependents_deps.dev:0 github.com/cbasix/s3200, github.com/cbass2404/cory-js-footer,num_dependents_deps.dev:0 +github.com/cbastn/cypher-shell-docker, github.com/cbastos/createModuleBarrel,num_dependents_deps.dev:0 github.com/cbat01/cbat01,num_dependents_deps.dev:0 github.com/cbattle12/grampyx, @@ -344099,6 +351292,7 @@ github.com/cbellee/todo-api-func,num_dependents_deps.dev:0 github.com/cbelsole/dat,num_dependents_deps.dev:0 github.com/cbelsole/testify,num_dependents_deps.dev:0 github.com/cbeneke/hcloud-fip-controller,num_dependents_deps.dev:0 +github.com/cbensimon/helm, github.com/cbenz/i3-layout-viewer,num_dependents_deps.dev:0 github.com/cberes/john-hancock,num_dependents_deps.dev:0 github.com/cberganton/terminator,num_dependents_deps.dev:0 @@ -344349,9 +351543,13 @@ github.com/cbrews/ignition, github.com/cbrews/titan2, github.com/cbrewster/brewblog,num_dependents_deps.dev:0 github.com/cbrgm/awsacc,num_dependents_deps.dev:0 +github.com/cbrgm/cbrgm-pr-size-labeler-action, github.com/cbrgm/clickbaiter,num_dependents_deps.dev:0 github.com/cbrgm/cloudburst,num_dependents_deps.dev:0 +github.com/cbrgm/mastodon-github-action, github.com/cbrgm/pxl,num_dependents_deps.dev:0 +github.com/cbrgm/semver-bump-action, +github.com/cbrgm/structuresmith, github.com/cbrgm/td,num_dependents_deps.dev:0 github.com/cbrianball/ts-odata-client,num_dependents_deps.dev:0 github.com/cbrichford/docker-ipsec, @@ -344389,7 +351587,12 @@ github.com/cbsd/cbsd,criticality_score:0.603180 github.com/cbsd/cbsd-mq-api,num_dependents_deps.dev:0 github.com/cbsinteractive/azurermfutures-go,num_dependents_deps.dev:0 github.com/cbsinteractive/bakery,num_dependents_deps.dev:0 +github.com/cbsinteractive/check-tfc-workspace-existence-action, +github.com/cbsinteractive/create-tfc-workspace-action, +github.com/cbsinteractive/create-tfc-workspace-variable-action, +github.com/cbsinteractive/delete-tfc-workspace-action, github.com/cbsinteractive/elemental, +github.com/cbsinteractive/get-tfc-workspace-currentstate-output-action, github.com/cbsinteractive/go-dash,num_dependents_deps.dev:0 github.com/cbsinteractive/m3u8,num_dependents_deps.dev:0 github.com/cbsinteractive/manage-tfc-workspace,num_dependents_deps.dev:0 @@ -344398,6 +351601,8 @@ github.com/cbsinteractive/propeller-client,num_dependents_deps.dev:0 github.com/cbsinteractive/setup-tfc-workspace,num_dependents_deps.dev:0 github.com/cbsinteractive/terraform-provider-azurermfutures,num_dependents_deps.dev:0 github.com/cbsinteractive/transcode-orchestrator,num_dependents_deps.dev:0 +github.com/cbsinteractive/update-tfc-workspace-action, +github.com/cbsinteractive/update-tfc-workspace-variable-value-action, github.com/cbsteh/PySawit, github.com/cbtak/nothing,num_dependents_deps.dev:0 github.com/cbtak/vuex-helper,num_dependents_deps.dev:0 @@ -344451,6 +351656,7 @@ github.com/cbuschka/maven-webpack-plugin,num_dependents_deps.dev:0 github.com/cbuschka/myhello,num_dependents_deps.dev:0 github.com/cbuschka/optional-backport,num_dependents_deps.dev:0 github.com/cbuschka/python-bytesbufio, +github.com/cbuschka/setup-tfvm, github.com/cbuschka/tfvm,num_dependents_deps.dev:0 github.com/cbuschka/zipdiff,num_dependents_deps.dev:0 github.com/cbush/bluehawk-git,num_dependents_deps.dev:0 @@ -344495,6 +351701,7 @@ github.com/cc189/vuebook,num_dependents_deps.dev:0 github.com/cc2-build-automation-cgcg/textract, github.com/cc20002002/kde_gpu, github.com/cc3213252/go-examples,num_dependents_deps.dev:0 +github.com/cc332030/hugo-asciidoctor-action, github.com/cc360428/helppackage,num_dependents_deps.dev:0 github.com/cc4414/cc-spring,num_dependents_deps.dev:112 github.com/cc4dogman/cordova-plugin-x5-tbs,num_dependents_deps.dev:0 @@ -344577,6 +351784,8 @@ github.com/ccanow/mongoose-audit-log,num_dependents_deps.dev:2 github.com/ccantill/ssdp-client,num_dependents_deps.dev:0 github.com/ccantill/upnp-client,num_dependents_deps.dev:0 github.com/ccantill/wifiled,num_dependents_deps.dev:0 +github.com/ccapell/action-deploy-eks-helm, +github.com/ccapell/aws-secrets-manager-action, github.com/ccapndave/elm-translator,num_dependents_deps.dev:0 github.com/ccapndave/fernet-monorepo,num_dependents_deps.dev:0 github.com/ccapndave/fuse-box-elm-plugin,num_dependents_deps.dev:0 @@ -344671,6 +351880,8 @@ github.com/ccccccccjl/hyperledger,num_dependents_deps.dev:0 github.com/ccccccccjl2/hyperledger,num_dependents_deps.dev:0 github.com/ccccccp/cp-util-lib,num_dependents_deps.dev:0 github.com/ccccchar/egg-sequelize-pro,num_dependents_deps.dev:0 +github.com/ccccmagicboy/FW_esp32_get_IDF_hash_action, +github.com/ccccmagicboy/get_datetime, github.com/ccccrrrr/crorm,num_dependents_deps.dev:0 github.com/cccdenhart/fmp-wrapper, github.com/cccfs/registry-credential-helper,num_dependents_deps.dev:0 @@ -344739,6 +351950,7 @@ github.com/ccdale/drt, github.com/ccdale/manjaro-torrent-find, github.com/ccdale/playingcards, github.com/ccdale/s3tar, +github.com/ccdc-opensource/commit-hooks, github.com/ccding/go-stun,criticality_score:0.347290 github.com/ccdle12/python-bitcoin-tools, github.com/ccdmb/BioDendro, @@ -344877,6 +352089,8 @@ github.com/cchantep/bootstrap-combobox,num_dependents_deps.dev:2 github.com/cchantep/jquery.fudok,num_dependents_deps.dev:0 github.com/cchantep/jquery.signfield, github.com/cchantep/nuggan,num_dependents_deps.dev:0 +github.com/cchantep/probot-jira, +github.com/cchantep/probot-pr-status-label, github.com/cchanxzy/React-Currency-Input-Field,"num_dependents_deps.dev:0,num_dependents_deps.dev:4" github.com/cchardeau/neptunus,num_dependents_deps.dev:0 github.com/cchayden/xframes, @@ -344923,6 +352137,8 @@ github.com/cchimbooo/genumber,num_dependents_deps.dev:0 github.com/cchinm/RepackHttp, github.com/cchinm/python-spider, github.com/cchirag/reactez,num_dependents_deps.dev:0 +github.com/cchitsiang/helm-action, +github.com/cchitsiang/netlify-deploy-action, github.com/cchoi96/lotide,num_dependents_deps.dev:0 github.com/cchostak/k8s,num_dependents_deps.dev:0 github.com/cchrispy/dtst,num_dependents_deps.dev:0 @@ -344955,6 +352171,11 @@ github.com/ccksfh/CSSJSON,num_dependents_deps.dev:0 github.com/cckwes/fiber-graphql-go,num_dependents_deps.dev:0 github.com/cckwes/shoplist,num_dependents_deps.dev:0 github.com/ccl-consulting/export-resume,num_dependents_deps.dev:0 +github.com/cclauss/Find-Python-syntax-errors-action, +github.com/cclauss/GitHub-Action-for-Flake8, +github.com/cclauss/GitHub-Action-for-pylint, +github.com/cclauss/GitHub-Action-for-pytest, +github.com/cclauss/Upgrade-to-Python3, github.com/cclavero/scrdesk,num_dependents_deps.dev:0 github.com/cclc/bokeh-vue, github.com/cclerget/grpc-proxy,num_dependents_deps.dev:0 @@ -345090,6 +352311,7 @@ github.com/ccorkery97/npm-resume,num_dependents_deps.dev:0 github.com/ccorrea14/learning-git,num_dependents_deps.dev:0 github.com/ccorsi/contract, github.com/ccorsi/menucli, +github.com/ccorsi/setup-sqlite, github.com/ccortezia/clockrange, github.com/ccortezia/fsm-flow,num_dependents_deps.dev:0 github.com/ccortezia/voxsql, @@ -345180,6 +352402,7 @@ github.com/ccrabb/hubot-soundcloud,num_dependents_deps.dev:0 github.com/ccrama/Slide,criticality_score:0.532150 github.com/ccrama/Slide-iOS,criticality_score:0.449470 github.com/ccravens/microcity,num_dependents_deps.dev:0 +github.com/ccrayz/my-action, github.com/ccrazy88/eslint-config-ccrazy88,num_dependents_deps.dev:0 github.com/ccreater222/go-cli,num_dependents_deps.dev:0 github.com/ccremer/charts,num_dependents_deps.dev:0 @@ -345213,10 +352436,12 @@ github.com/cctamit2006/fizzbuzz,num_dependents_deps.dev:0 github.com/cctbx/dxtbx, github.com/cctechwiz/go-core-language-path,num_dependents_deps.dev:0 github.com/cctester/pydtc, +github.com/cctipsy/gh-dump-context, github.com/cctoken/cctoken,num_dependents_deps.dev:0 github.com/cctuan/gulp-css-merger,num_dependents_deps.dev:0 github.com/cctuan/html-webpack-plugin,num_dependents_deps.dev:0 github.com/cctv1005s/gitbook-pdf,num_dependents_deps.dev:0 +github.com/cctv1005s/github-asana-action, github.com/cctv1005s/hc-boilerplate-dva,num_dependents_deps.dev:0 github.com/cctv1005s/yuque-api,num_dependents_deps.dev:0 github.com/cctv1005s/yuque2book,num_dependents_deps.dev:0 @@ -345299,11 +352524,13 @@ github.com/cda-tum/ddsim, github.com/cda-tum/qcec, github.com/cda-tum/qfr, github.com/cda-tum/qmap, +github.com/cda-tum/setup-z3, github.com/cda0/terrajs,num_dependents_deps.dev:0 github.com/cdag22/BitBoards,num_dependents_deps.dev:0 github.com/cdahlqvist/rankin,num_dependents_deps.dev:0 github.com/cdakin1/lodown,num_dependents_deps.dev:0 github.com/cdaksha/parametrization_clean, +github.com/cdalar/onctl-action, github.com/cdalesampang/angular-modal,num_dependents_deps.dev:0 github.com/cdambo/reporting,num_dependents_deps.dev:0 github.com/cdancette/multimodal, @@ -345518,6 +352745,7 @@ github.com/cdecker/lnet, github.com/cdecode/org.cdecode.firebase,num_dependents_deps.dev:0 github.com/cdecompilador/argue,num_dependents_deps.dev:0 github.com/cdecompilador/rlcount,num_dependents_deps.dev:0 +github.com/cdefense/actions, github.com/cdefgah/bencoder4j,num_dependents_deps.dev:0 github.com/cdefgah/whatsapp-jpeg-repair,num_dependents_deps.dev:0 github.com/cdegalitt/libxmljs2-xsd,num_dependents_deps.dev:0 @@ -345699,6 +352927,7 @@ github.com/cdk-constructs/ecr-scan-monitor, github.com/cdk-constructs/queue-with-dlq,num_dependents_deps.dev:0 github.com/cdk-constructs/scheduled-lambda,num_dependents_deps.dev:0 github.com/cdk-cosmos/cosmos,num_dependents_deps.dev:4 +github.com/cdk-dev/bump-cdk-action, github.com/cdk-patterns/cli, github.com/cdk-patterns/serverless,"criticality_score:0.404910,num_dependents_deps.dev:0" github.com/cdk-team/cdk,num_dependents_deps.dev:0 @@ -345773,6 +353002,7 @@ github.com/cdmoro/bootstrap-vue-3,num_dependents_deps.dev:0 github.com/cdmoro/lazy-badges,num_dependents_deps.dev:0 github.com/cdmoro/vue-spark-chart, github.com/cdmoyer/RubyKnight,num_dependents_deps.dev:0 +github.com/cdmvision/action-upm-publish, github.com/cdn77/node-socket-daemon,num_dependents_deps.dev:0 github.com/cdn77/pgconn,num_dependents_deps.dev:0 github.com/cdn77/pgtype,num_dependents_deps.dev:0 @@ -346066,6 +353296,7 @@ github.com/ceccopierangiolieugenio/pyTermTk, github.com/ceccopierangiolieugenio/tlogg, github.com/cecedille1/pdf_generator, github.com/cecep31/learnfiber,num_dependents_deps.dev:0 +github.com/ceceppa/godot-gut-ci, github.com/cecewall/httpproxy,num_dependents_deps.dev:0 github.com/ceci21062/GDL003-md-links,num_dependents_deps.dev:0 github.com/cecil-su/learn-create-cli,num_dependents_deps.dev:0 @@ -346245,12 +353476,14 @@ github.com/cedric-h/elm-google-sign-in,num_dependents_deps.dev:0 github.com/cedric-h/l8r,num_dependents_deps.dev:0 github.com/cedric-legallo/sonar-web-frontend-duplication,num_dependents_deps.dev:0 github.com/cedric05/cli,num_dependents_deps.dev:0 +github.com/cedric05/upload-to-azure-blob-storage, github.com/cedricDevWP/accordion-search,num_dependents_deps.dev:0 github.com/cedricblondeau/world-cup-2018-cli-dashboard,num_dependents_deps.dev:0 github.com/cedricbou/simple-xml,num_dependents_deps.dev:0 github.com/cedricbou/webservice-client-api,num_dependents_deps.dev:0 github.com/cedricboudinet/python-cinergia, github.com/cedricbousmanne/refinerycms-announcements,num_dependents_deps.dev:0 +github.com/cedricbuild/gh-publish-branch, github.com/cedricdelpoux/gatsby-plugin-slug, github.com/cedricdelpoux/gatsby-plugin-translate-urls,num_dependents_deps.dev:0 github.com/cedricdelpoux/gatsby-remark-gifs,num_dependents_deps.dev:0 @@ -346336,6 +353569,9 @@ github.com/cedx/david.gulp,num_dependents_deps.dev:4 github.com/cedx/enum.js,num_dependents_deps.dev:0 github.com/cedx/gulp-david,num_dependents_deps.dev:2 github.com/cedx/reverse-proxy.js, +github.com/cedx/setup-ant, +github.com/cedx/setup-dart, +github.com/cedx/setup-hashlink, github.com/cedx/which.js,num_dependents_deps.dev:2 github.com/ceecko/le-challenge-etcd,num_dependents_deps.dev:0 github.com/ceedubs/ficus,num_dependents_deps.dev:14 @@ -346458,8 +353694,12 @@ github.com/ceilfors/laconia,num_dependents_deps.dev:22 github.com/ceineke/cloud-runner,num_dependents_deps.dev:0 github.com/cejako/fastwebview,num_dependents_deps.dev:0 github.com/cejako/fastwebview-cli,num_dependents_deps.dev:0 +github.com/cejaramillof/add-changelog-to-release, +github.com/cejaramillof/set-pre-release, github.com/cejixo3/ckeditor5-build-decoupled-document,num_dependents_deps.dev:0 github.com/cejixo3/ckeditor5-image,num_dependents_deps.dev:0 +github.com/cejjenkins/pycaret_automl, +github.com/cekit/actions-setup-cekit, github.com/cekit/cekit,num_dependents_deps.dev:0 github.com/cekkr/make.js,num_dependents_deps.dev:0 github.com/cekrem/create-elm-live-app,num_dependents_deps.dev:0 @@ -346579,8 +353819,10 @@ github.com/celikfatih/jwt-common,num_dependents_deps.dev:0 github.com/celikmus/ng-rx-websocket,num_dependents_deps.dev:0 github.com/celikmus/redux-xhr-middleware,num_dependents_deps.dev:0 github.com/celilileri/colorname,num_dependents_deps.dev:0 +github.com/celinekurpershoek/link-checker, github.com/celiolatorraca/autoprefixer-tv, github.com/celiolatorraca/swifft,num_dependents_deps.dev:0 +github.com/cell-5/c5-deploy-action, github.com/cell0/firebase-rules-describe,num_dependents_deps.dev:0 github.com/cell303/flurx,num_dependents_deps.dev:0 github.com/cell4rom/rs-pagination,num_dependents_deps.dev:0 @@ -346711,6 +353953,8 @@ github.com/celsasser/pig-dam-core, github.com/celsasser/pig-dam-web,num_dependents_deps.dev:0 github.com/celsasser/pig-quality,num_dependents_deps.dev:0 github.com/celsinga/lotide,num_dependents_deps.dev:0 +github.com/celsiusnarhwal/poetry-publish, +github.com/celsiusnarhwal/typesense-scraper, github.com/celsiustx/scannotate, github.com/celsiustx/zeitgeist, github.com/celskeggs/hailburst,num_dependents_deps.dev:0 @@ -346801,6 +354045,7 @@ github.com/cemiltokatli/JURL,num_dependents_deps.dev:0 github.com/cemiltokatli/PasswordGenerator,num_dependents_deps.dev:0 github.com/cemiltokatli/URIComponent,num_dependents_deps.dev:0 github.com/cemizm/smartmirror.shared,num_dependents_deps.dev:0 +github.com/cemkiy/action-slacker, github.com/cemkiy/mongonitor,num_dependents_deps.dev:0 github.com/cemkod/aframe-fps-look-component,num_dependents_deps.dev:0 github.com/cemo/jdbi-codegen,num_dependents_deps.dev:0 @@ -346810,6 +354055,7 @@ github.com/cemoody/flexi_hash_embedding, github.com/cemoody/torch_trainer, github.com/cemoss17/go-chess,num_dependents_deps.dev:0 github.com/cemrajc/gulp-mathjax-node,num_dependents_deps.dev:0 +github.com/cemreefe/AutoSitemap, github.com/cemremengu/egg-neo4j,num_dependents_deps.dev:0 github.com/cemremengu/escql,num_dependents_deps.dev:0 github.com/cemremengu/fastify-oracle, @@ -347055,6 +354301,7 @@ github.com/centerdevice/centerdevice-rs,num_dependents_deps.dev:0 github.com/centerdevice/hubot-centerdevice,num_dependents_deps.dev:0 github.com/centeredge/shawarma,num_dependents_deps.dev:0 github.com/centeredge/shawarma-webhook,num_dependents_deps.dev:0 +github.com/centergame/vault-secrets-to-files, github.com/centeridentity/centeridentityjs,num_dependents_deps.dev:0 github.com/centerorbit/kube-secrets,num_dependents_deps.dev:0 github.com/centerprime/Node-Binance-SDK,num_dependents_deps.dev:0 @@ -347156,6 +354403,7 @@ github.com/centrual/steam-open-id-auth,num_dependents_deps.dev:0 github.com/centrual/steam-web-api-library,num_dependents_deps.dev:0 github.com/centrual/strapi-provider-email-nodemailer,num_dependents_deps.dev:0 github.com/centrual/waxpeer-api,num_dependents_deps.dev:0 +github.com/centrumek/duolingo-readme-stats, github.com/centsent/hydeo,num_dependents_deps.dev:0 github.com/centure/csv-i18n,num_dependents_deps.dev:0 github.com/centurylink-sdf/cl-speakeasy-sdk,num_dependents_deps.dev:0 @@ -347288,8 +354536,11 @@ github.com/cerberus-api/node,num_dependents_deps.dev:0 github.com/cerberuser/batch_run,num_dependents_deps.dev:0 github.com/cerberuser/gantt-for-react,num_dependents_deps.dev:0 github.com/cerberuser/typescript-gantt,num_dependents_deps.dev:0 +github.com/cerberustesting/cerberus-cicd-github-action, github.com/cerbos/cerbos,num_dependents_deps.dev:0 +github.com/cerbos/cerbos-compile-action, github.com/cerbos/cerbos-sdk-node,num_dependents_deps.dev:0 +github.com/cerbos/cerbos-setup-action, github.com/cerbos/demo-rest,num_dependents_deps.dev:0 github.com/cerchie/go-cipher,num_dependents_deps.dev:0 github.com/cerdisoft/cs-random-string,num_dependents_deps.dev:0 @@ -347357,6 +354608,7 @@ github.com/cerebrate/node-red-contrib-noop,num_dependents_deps.dev:0 github.com/cerebris/jsonapi-resources,criticality_score:0.576310 github.com/cerebris/klassy.js,num_dependents_deps.dev:24 github.com/cerebrotech/dmm-data-ingest-client, +github.com/cerebruminc/github-action-repo-settings-sync, github.com/cerebruxcode/go,num_dependents_deps.dev:0 github.com/cerebunit/cerebstats, github.com/cerebunit/cerebtests, @@ -347514,6 +354766,7 @@ github.com/cernoch/matrixprint,num_dependents_deps.dev:0 github.com/cernopendata/cernopendata-pages, github.com/cernopendata/cernopendata-theme, github.com/cernopendata/opendata.cern.ch,criticality_score:0.469500 +github.com/cero-pirani/Pirani-deploy-eks-aws, github.com/cero-t/sqltemplate,num_dependents_deps.dev:0 github.com/cerodriguez/gibberish, github.com/ceroloy/sample-express-app,num_dependents_deps.dev:0 @@ -347772,6 +355025,7 @@ github.com/cescoferraro/react-redux-toastr, github.com/cescoferraro/spotify,num_dependents_deps.dev:0 github.com/cescoffier/fluid,num_dependents_deps.dev:0 github.com/cescoffier/maven-play2-plugin,num_dependents_deps.dev:0 +github.com/cescoffier/setup-jdk, github.com/cescoffier/vertx-completable-future,num_dependents_deps.dev:150 github.com/cesconix/bump-prerelease-version,num_dependents_deps.dev:0 github.com/cesconix/salesforce-deploy,num_dependents_deps.dev:0 @@ -347963,6 +355217,7 @@ github.com/cevio/wait-until-queue, github.com/cevio/webservice,num_dependents_deps.dev:0 github.com/cevio/websql.js,num_dependents_deps.dev:0 github.com/cevio/ymer,num_dependents_deps.dev:0 +github.com/cevixe/actions, github.com/cevixe/aws-sdk-go,num_dependents_deps.dev:0 github.com/cevixe/core-sdk-go,num_dependents_deps.dev:0 github.com/cevlad/fillory, @@ -348074,6 +355329,9 @@ github.com/cezary/react-webcam,num_dependents_deps.dev:0 github.com/cezary/resolve-redirect,num_dependents_deps.dev:0 github.com/cezarykluczynski/stapi,num_dependents_deps.dev:0 github.com/cezarypiatek/MappingGenerator,criticality_score:0.347160 +github.com/cezarypiatek/NextVersionGeneratorAction, +github.com/cezarypiatek/VsixPublisherAction, +github.com/cezarypiatek/VsixVersionAction, github.com/cezarystefanski/search-to-obj,num_dependents_deps.dev:0 github.com/cezemb-re/fronts,num_dependents_deps.dev:0 github.com/cezemb-re/react-native-epson-epos,num_dependents_deps.dev:0 @@ -348198,6 +355456,7 @@ github.com/cfe84/rlay,num_dependents_deps.dev:0 github.com/cfe84/wallpapr,num_dependents_deps.dev:0 github.com/cfe84/yaclip,num_dependents_deps.dev:0 github.com/cfebs/md-multi-toc,num_dependents_deps.dev:0 +github.com/cfedersp/maven-artifact-version-bumper, github.com/cfedersp/samsamples,num_dependents_deps.dev:0 github.com/cfedk/cdk-pipeline,num_dependents_deps.dev:0 github.com/cfeeling/lal,num_dependents_deps.dev:0 @@ -348309,6 +355568,7 @@ github.com/cflurin/node-red-contrib-ramp-thermostat,num_dependents_deps.dev:0 github.com/cflurin/xiaomi-mqtt,num_dependents_deps.dev:0 github.com/cflynn07/array-interweave,num_dependents_deps.dev:0 github.com/cflynn07/array-subtract-functional-compare,num_dependents_deps.dev:0 +github.com/cflynn07/github-action-til-autoformat-readme, github.com/cflynn07/power-radix,num_dependents_deps.dev:0 github.com/cflynn07/power-radix-encodings,num_dependents_deps.dev:0 github.com/cflynn07/runnable-cli,num_dependents_deps.dev:0 @@ -348672,6 +355932,7 @@ github.com/cgallag/swabbie, github.com/cgallagher/contango,num_dependents_deps.dev:0 github.com/cgallemore/djvasa, github.com/cgallemore/nose-twilio, +github.com/cgalliva/markdown-embed-code, github.com/cgalvarez/atom-coverage,num_dependents_deps.dev:0 github.com/cgalvisleon/gettools,num_dependents_deps.dev:0 github.com/cgalvisleon/josefinadb,num_dependents_deps.dev:0 @@ -348797,6 +356058,9 @@ github.com/cgeorg/mvp,num_dependents_deps.dev:0 github.com/cgeorg/sinject,num_dependents_deps.dev:0 github.com/cgeorg/smaify,num_dependents_deps.dev:0 github.com/cges30901/pdfhandoutcrop, +github.com/cgetc/automatically-set-milestone-to-issue, +github.com/cgetc/copy-milestone-from-issue-to-pr, +github.com/cgetc/create-github-release-simply, github.com/cgetc/generator-backbone-multipage,num_dependents_deps.dev:0 github.com/cgetc/hubot-starbucks-egift,num_dependents_deps.dev:0 github.com/cgetc/kss-brunch,num_dependents_deps.dev:0 @@ -348976,6 +356240,7 @@ github.com/cgoulding/bindingz-parent,num_dependents_deps.dev:0 github.com/cgousley/parcel-plugin-handlebars-json,num_dependents_deps.dev:0 github.com/cgowdy-apttus/apttusvisualizations, github.com/cgpotts/cs224u,criticality_score:0.397690 +github.com/cgpu/action-custom-action, github.com/cgq-qgc/HydroSensorReader, github.com/cgq-qgc/pyhelp, github.com/cgq-qgc/solarcalc, @@ -349022,6 +356287,10 @@ github.com/cgrossde/nw-notify,num_dependents_deps.dev:0 github.com/cgrossde/stryker-mutation-badge, github.com/cgrs/mufasa,num_dependents_deps.dev:0 github.com/cgrushko/tools_jvm_autodeps,Google +github.com/cgs-earth/hydrodump-action, +github.com/cgs-earth/sensorthings-action, +github.com/cgs-earth/sitemap-generator, +github.com/cgs-earth/yourls-action, github.com/cgsawtell/hyperterm-adventurous, github.com/cgsecurity/testdisk,criticality_score:0.444140 github.com/cgsmeets/sfdxplugin,num_dependents_deps.dev:0 @@ -349080,6 +356349,7 @@ github.com/cgxqd/utilscore,num_dependents_deps.dev:0 github.com/cgygd/vue-ui-swipe,num_dependents_deps.dev:0 github.com/cgygd/vue1-countdown,num_dependents_deps.dev:0 github.com/cgygd/vue2-countdown,num_dependents_deps.dev:0 +github.com/cgyinthehouse/dev-memes-for-README, github.com/cgyy/echo,num_dependents_deps.dev:0 github.com/ch-4ml/hyperledger-fabric-performance-evaluation,num_dependents_deps.dev:0 github.com/ch-apptitude/goomi,num_dependents_deps.dev:0 @@ -349103,6 +356373,7 @@ github.com/ch1c0t/wrapjsx,num_dependents_deps.dev:0 github.com/ch1f/otel,num_dependents_deps.dev:0 github.com/ch1f/redis,num_dependents_deps.dev:0 github.com/ch1f/xxhash,num_dependents_deps.dev:0 +github.com/ch1ller0/fridgefm-monologue, github.com/ch1ller0/fridgefm-radio-core, github.com/ch1nhcp/ocg_golang,num_dependents_deps.dev:0 github.com/ch345073110/cfx.antd-wrapper,num_dependents_deps.dev:0 @@ -349154,6 +356425,9 @@ github.com/chaaz/versio-actions,num_dependents_deps.dev:0 github.com/chabErch/Linum, github.com/chabErch/sorm_location_asn1, github.com/chabad360/go-osc,num_dependents_deps.dev:0 +github.com/chabad360/htmlproofer, +github.com/chabad360/hugo-actions, +github.com/chabad360/hugo-gh-pages, github.com/chabad360/resolume-timecode,num_dependents_deps.dev:0 github.com/chabibnr/react-native-ui-text-column,num_dependents_deps.dev:0 github.com/chabok-io/chabok-client-rn, @@ -349169,6 +356443,7 @@ github.com/chabou/hyper-broadcast,num_dependents_deps.dev:0 github.com/chabou/hyper-noop,num_dependents_deps.dev:0 github.com/chabou/hyper-pane,num_dependents_deps.dev:0 github.com/chabou/pure-now,num_dependents_deps.dev:0 +github.com/chabroA/action-append-pr-description, github.com/chacaa/unSASS,num_dependents_deps.dev:0 github.com/chacal/canvas-render-utils,num_dependents_deps.dev:0 github.com/chacal/js-utils,num_dependents_deps.dev:0 @@ -349178,6 +356453,10 @@ github.com/chacbumbum/qs-react-core,num_dependents_deps.dev:0 github.com/chacehoo/IFEEL, github.com/chacent/shm,num_dependents_deps.dev:0 github.com/chacestew/react-router-tabs,num_dependents_deps.dev:0 +github.com/chacha1024/pyci-scp, +github.com/chacha1024/pyci-ssh, +github.com/chachako/checkout-tags, +github.com/chachako/tags-sync, github.com/chacham/sangja,num_dependents_deps.dev:0 github.com/chachanidze29/golang,num_dependents_deps.dev:0 github.com/chachora/react-big-calendar,num_dependents_deps.dev:0 @@ -349318,6 +356597,7 @@ github.com/chadly/gatsby-source-disqus-xml,num_dependents_deps.dev:0 github.com/chadly/humanize-react, github.com/chadly/lottie-to-svg,num_dependents_deps.dev:0 github.com/chadly/metalsmith-flatten,num_dependents_deps.dev:0 +github.com/chadly/prod-env-variables, github.com/chadly/react-bs-notifier,num_dependents_deps.dev:36 github.com/chadly/react-fetch-hooks, github.com/chadmckenna/doneski,num_dependents_deps.dev:0 @@ -349373,6 +356653,7 @@ github.com/chadweimer/paper-tags-input,num_dependents_deps.dev:0 github.com/chadwilcomb/nysp2WebMerc,num_dependents_deps.dev:0 github.com/chadxz/awry,num_dependents_deps.dev:0 github.com/chadxz/imap-simple,num_dependents_deps.dev:288 +github.com/chadxz/s3-delete-objects-action, github.com/chadxz/tragic,num_dependents_deps.dev:0 github.com/chadxz/waterline-custom-validations,num_dependents_deps.dev:0 github.com/chadxz/waterline-fakes,num_dependents_deps.dev:0 @@ -349507,6 +356788,7 @@ github.com/chainflag/ctf-eth-env,num_dependents_deps.dev:0 github.com/chainflag/eth-faucet,num_dependents_deps.dev:0 github.com/chainflow/oasis-mission-control,num_dependents_deps.dev:0 github.com/chainflow/solana-mission-control,num_dependents_deps.dev:0 +github.com/chainguard-dev/digestabot, github.com/chainhelen/dtnsq,num_dependents_deps.dev:0 github.com/chainhelen/openbff,num_dependents_deps.dev:0 github.com/chainhubdev/zilliqa-laya-sdk,num_dependents_deps.dev:0 @@ -349551,6 +356833,7 @@ github.com/chainrand/chainrand-py, github.com/chainreactionmfg/cara, github.com/chainreactionmfg/mutablerecords, github.com/chainreaktive/mocanexion, +github.com/chains-project/maven-lockfile, github.com/chainsafe/abort-controller,num_dependents_deps.dev:20 github.com/chainsafe/as-sha256, github.com/chainsafe/babel-plugin-inline-binary-import,num_dependents_deps.dev:0 @@ -349648,6 +356931,7 @@ github.com/chaitanyapotti/Action,num_dependents_deps.dev:0 github.com/chaitanyapotti/ElectusProtocol,num_dependents_deps.dev:2 github.com/chaitanyapotti/MembershipVerificationToken,num_dependents_deps.dev:2 github.com/chaitanyapotti/Voting,num_dependents_deps.dev:0 +github.com/chaitanyapotti/cloudfront-update-distribution, github.com/chaitanyapotti/react-frontend_library,num_dependents_deps.dev:0 github.com/chaitanyapotti/register-service-worker,num_dependents_deps.dev:46 github.com/chaitanyareddyk/simple-password-strength,num_dependents_deps.dev:0 @@ -349663,6 +356947,7 @@ github.com/chaitin/django-pg-partitioning, github.com/chaitin/libveinmind, github.com/chaitin/passionfruit,num_dependents_deps.dev:0 github.com/chaitin/querystring,num_dependents_deps.dev:0 +github.com/chaitin/veinmind-action, github.com/chaitin/xray,criticality_score:0.451340 github.com/chaitsgithub/hfpackages,num_dependents_deps.dev:0 github.com/chaitu-any/gulp-angular-embed-templates,num_dependents_deps.dev:0 @@ -349718,6 +357003,7 @@ github.com/chakra-xui/chakra-xui,num_dependents_deps.dev:172 github.com/chakradarraju/ysed,num_dependents_deps.dev:0 github.com/chakrahq/react-structured-filter, github.com/chakravala/Grassmann.jl,criticality_score:0.416150 +github.com/chakravarthik27/setup-hdfs, github.com/chakray/charts,num_dependents_deps.dev:0 github.com/chakray/hero,num_dependents_deps.dev:0 github.com/chakray/maps,num_dependents_deps.dev:0 @@ -349792,6 +357078,7 @@ github.com/chalk/ansi-regex,num_dependents_deps.dev:1298363 github.com/chalk/ansi-styles,"criticality_score:0.472550,num_dependents_deps.dev:1154942" github.com/chalk/chalk,"criticality_score:0.590630,num_dependents_deps.dev:979493" github.com/chalk/chalk-cli,num_dependents_deps.dev:4 +github.com/chalk/chalk-template, github.com/chalk/has-ansi,num_dependents_deps.dev:404 github.com/chalk/has-ansi-cli, github.com/chalk/slice-ansi,num_dependents_deps.dev:110216 @@ -350061,6 +357348,7 @@ github.com/chanconrad/homebridge-dummy-contact,num_dependents_deps.dev:0 github.com/chancovsky/avocado-toast,num_dependents_deps.dev:0 github.com/chancovsky/hex-to,num_dependents_deps.dev:0 github.com/chancyk/fuzzyjoin, +github.com/chand1012/action-css-minify, github.com/chand1012/discord-quick-meme,num_dependents_deps.dev:0 github.com/chand1012/google-map-react, github.com/chand1012/random_methods_ruby,num_dependents_deps.dev:0 @@ -350415,6 +357703,7 @@ github.com/channl/create-lambda-app,num_dependents_deps.dev:0 github.com/channl/lambda-middleware,num_dependents_deps.dev:0 github.com/channrith/golang-microservice,num_dependents_deps.dev:0 github.com/channyein1337/sonarbyte,num_dependents_deps.dev:0 +github.com/channyein87/workflow-duration-action, github.com/chanoch/amazon-mws-client,num_dependents_deps.dev:0 github.com/chanoch/chanoch-com-components,num_dependents_deps.dev:4 github.com/chanoch/clearblog,num_dependents_deps.dev:0 @@ -350644,6 +357933,7 @@ github.com/chaos-core/chaos-plugin-user-roles,num_dependents_deps.dev:0 github.com/chaos-genius/chaos_genius, github.com/chaos-lang/highlightjs-chaos,num_dependents_deps.dev:0 github.com/chaos-mesh/chaos-mesh,"criticality_score:0.513040,num_dependents_deps.dev:19" +github.com/chaos-mesh/chaos-mesh-action, github.com/chaos-mesh/chaos-mesh-actions,num_dependents_deps.dev:0 github.com/chaos-mesh/chaosd,num_dependents_deps.dev:0 github.com/chaos-mesh/go-sqlsmith,num_dependents_deps.dev:0 @@ -350657,12 +357947,14 @@ github.com/chaos511/node-red-contrib-insteon-lan,num_dependents_deps.dev:0 github.com/chaosBreaking/keccak-js,num_dependents_deps.dev:0 github.com/chaosZeroFive/server-boilerplate,num_dependents_deps.dev:0 github.com/chaosaffe/pgpwordlist,num_dependents_deps.dev:0 +github.com/chaosaffe/split-tests, github.com/chaosannals/gulp-direct,num_dependents_deps.dev:0 github.com/chaosannals/lai, github.com/chaosannals/nws,num_dependents_deps.dev:0 github.com/chaosannals/wnapi,num_dependents_deps.dev:0 github.com/chaosay/supervisor-discord, github.com/chaosblade-io/chaosblade,"criticality_score:0.378680,num_dependents_deps.dev:1" +github.com/chaosblade-io/chaosblade-action, github.com/chaosblade-io/chaosblade-exec-docker,num_dependents_deps.dev:4 github.com/chaosblade-io/chaosblade-exec-nodejs,num_dependents_deps.dev:0 github.com/chaosblade-io/chaosblade-exec-os,num_dependents_deps.dev:4 @@ -350795,6 +358087,7 @@ github.com/chapkovski/otree_export_utils, github.com/chapkovski/otree_tools, github.com/chaplinjs/chaplin,criticality_score:0.385900 github.com/chaplinjs/downloads,num_dependents_deps.dev:0 +github.com/chaplyk/docker-compose-remote-action, github.com/chapmanb/bcbb,criticality_score:0.365420 github.com/chapmanb/cloudbiolinux,criticality_score:0.482800 github.com/chapmanbe/RadNLP, @@ -350803,6 +358096,7 @@ github.com/chapmanbe/dminteract, github.com/chapmanbe/pyConTextNLP, github.com/chapmanbe/wrapPydas, github.com/chapmanc/socketio-jwt-auth, +github.com/chapmanjacobd/create-release-node16, github.com/chapmankyle/emoji-set,num_dependents_deps.dev:0 github.com/chapmanu/hb,num_dependents_deps.dev:0 github.com/chapmanu/hummingbird,num_dependents_deps.dev:0 @@ -350846,6 +358140,7 @@ github.com/chapzin/devbook,num_dependents_deps.dev:0 github.com/chaquliao/anywhere,num_dependents_deps.dev:0 github.com/char-cole/aca-dash,num_dependents_deps.dev:0 github.com/char-cole/acapm,num_dependents_deps.dev:0 +github.com/char0n/apidom-validate, github.com/char0n/businesscard, github.com/char0n/ffmpeg-php,criticality_score:0.404980 github.com/char0n/http-request-in-editor-impl,num_dependents_deps.dev:0 @@ -350853,6 +358148,7 @@ github.com/char0n/json-api-merge,num_dependents_deps.dev:0 github.com/char0n/monad-t,num_dependents_deps.dev:0 github.com/char0n/ramda-adjunct,"criticality_score:0.513900,num_dependents_deps.dev:554" github.com/char0n/swagger-adjust,num_dependents_deps.dev:0 +github.com/char0n/swagger-editor-validate, github.com/char16t/wa, github.com/char1e5/driver-wrapper,num_dependents_deps.dev:0 github.com/char1e5/ot-driverwrapper,num_dependents_deps.dev:0 @@ -350955,6 +358251,7 @@ github.com/charger88/orange-ip, github.com/charger88/orange-svg,num_dependents_deps.dev:0 github.com/chargetrip/clusterbuster,num_dependents_deps.dev:0 github.com/chargetrip/types, +github.com/chargify/pronto-ruby, github.com/chargoyao/login-webpack-plugin,num_dependents_deps.dev:0 github.com/chargoyao/ts-library,num_dependents_deps.dev:0 github.com/chargrizzle/diffly,num_dependents_deps.dev:0 @@ -351346,6 +358643,7 @@ github.com/charlieduong94/reveal-gen,num_dependents_deps.dev:0 github.com/charlieduong94/util-promisifyall, github.com/charlieegan3/activities-rss,num_dependents_deps.dev:0 github.com/charlieegan3/airtable-contacts,num_dependents_deps.dev:0 +github.com/charlieegan3/fetch-gh-release-binary, github.com/charlieegan3/graph_match,num_dependents_deps.dev:0 github.com/charlieegan3/json-charlieegan3,num_dependents_deps.dev:0 github.com/charlieegan3/music,num_dependents_deps.dev:0 @@ -351478,6 +358776,7 @@ github.com/charliewilco/toolkit,num_dependents_deps.dev:0 github.com/charliewolf/node-cache-manager-memcached,num_dependents_deps.dev:0 github.com/charliewolf/prerender-plugin-memcached,num_dependents_deps.dev:0 github.com/charliewolf/pynder, +github.com/charliex2/laravel-deploy-x, github.com/charliexujk/mycloud,num_dependents_deps.dev:0 github.com/charlires/LearningNpm,num_dependents_deps.dev:0 github.com/charlires/react-native-segment-analytics,num_dependents_deps.dev:0 @@ -351571,7 +358870,9 @@ github.com/charmbracelet/glamour,"criticality_score:0.339510,num_dependents_deps github.com/charmbracelet/glow,"criticality_score:0.475270,num_dependents_deps.dev:1" github.com/charmbracelet/harmonica,num_dependents_deps.dev:1 github.com/charmbracelet/lipgloss,num_dependents_deps.dev:22 +github.com/charmbracelet/soft-serve-action, github.com/charmbracelet/tea,num_dependents_deps.dev:0 +github.com/charmbracelet/vhs-action, github.com/charmedlabs/pixycamev3, github.com/charmer/goinsta,num_dependents_deps.dev:0 github.com/charmer1989/easy-url-loader,num_dependents_deps.dev:0 @@ -351592,6 +358893,7 @@ github.com/charmink/tsentrobankapi,num_dependents_deps.dev:0 github.com/charmitro/kubesecret,num_dependents_deps.dev:0 github.com/charmitro/msteams-webhook-message-action,num_dependents_deps.dev:0 github.com/charmitro/timestamps,num_dependents_deps.dev:0 +github.com/charmixer/auto-changelog-action, github.com/charmixer/envconfig,num_dependents_deps.dev:0 github.com/charmixer/go-flags,num_dependents_deps.dev:0 github.com/charmixer/golang-api-template,num_dependents_deps.dev:0 @@ -351624,6 +358926,7 @@ github.com/charpeni/react-native-url-polyfill,num_dependents_deps.dev:230 github.com/charpeni/sync-external-contributions,num_dependents_deps.dev:0 github.com/charpeni/whatwg-url,num_dependents_deps.dev:274 github.com/charperbonaroo/bonaroo-export,num_dependents_deps.dev:0 +github.com/charpi/jira-release-actions, github.com/charredgrass/emoJiS,num_dependents_deps.dev:0 github.com/charri/nodejs-vultr-api,num_dependents_deps.dev:0 github.com/charrismatic/atom-advanced-search,num_dependents_deps.dev:0 @@ -351663,6 +358966,7 @@ github.com/chartisan/chartisan,num_dependents_deps.dev:0 github.com/chartisan/chartjs,num_dependents_deps.dev:0 github.com/chartisan/echarts,num_dependents_deps.dev:0 github.com/chartisan/node,num_dependents_deps.dev:0 +github.com/chartit/django-chartit, github.com/chartjes/djaml, github.com/chartjs/Chart.Annotation.js,num_dependents_deps.dev:0 github.com/chartjs/Chart.Zoom.js,num_dependents_deps.dev:4 @@ -351902,9 +359206,11 @@ github.com/chaspy/circleci-insights-prometheus-exporter,num_dependents_deps.dev: github.com/chaspy/datadog-github-pr,num_dependents_deps.dev:0 github.com/chaspy/datadog-monitor-prometheus-exporter,num_dependents_deps.dev:0 github.com/chaspy/gh-contrib-rb,num_dependents_deps.dev:0 +github.com/chaspy/github-action-promote-member-to-team-maintainer, github.com/chaspy/github-issue-prometheus-exporter,num_dependents_deps.dev:0 github.com/chaspy/github-pr-prometheus-exporter,num_dependents_deps.dev:0 github.com/chaspy/go-atlas,num_dependents_deps.dev:0 +github.com/chaspy/magicpod-datadog-action, github.com/chasset/build-graph-from-json,num_dependents_deps.dev:0 github.com/chasset/captweet,num_dependents_deps.dev:0 github.com/chasset/split-tweet,num_dependents_deps.dev:0 @@ -352320,6 +359626,7 @@ github.com/chbrun/testlinkconsole, github.com/chbrun/wireframe2htm, github.com/chbug/canalweb, github.com/chc273/mep, +github.com/chcdc/xkcd-profile, github.com/chcepe/react-simple-bottom-sheet,num_dependents_deps.dev:0 github.com/chchleung/gitbook-summary,num_dependents_deps.dev:0 github.com/chck/AugLy-jp, @@ -352475,6 +359782,9 @@ github.com/chechu/botella,num_dependents_deps.dev:0 github.com/chechu/serverless-dynamodb-fixtures,num_dependents_deps.dev:0 github.com/check-check/element, github.com/check-osaurus/check-osaurus,num_dependents_deps.dev:0 +github.com/check-run-reporter/action, +github.com/check-spelling/check-spelling, +github.com/check-spelling/checkout-merge, github.com/checkblue/ethereum-simplify-server,num_dependents_deps.dev:0 github.com/checkcheckzz/system-design-interview,criticality_score:0.392980 github.com/checkdigit/asyncerator, @@ -352500,6 +359810,8 @@ github.com/checkly/theheadless.dev,criticality_score:0.344870 github.com/checkmarx-ltd/CLI, github.com/checkmarx-ltd/cx-common-js-client,num_dependents_deps.dev:0 github.com/checkmarx-ltd/cx-config-provider,num_dependents_deps.dev:0 +github.com/checkmarx-ts/checkmarx-cxflow-github-action, +github.com/checkmarx-ts/checkmarx-cxflow-plusplus-github-action, github.com/checkmarx-ts/checkmarx-python-sdk, github.com/checkmarx-ts/checkmarx-spring-boot-java-sdk,num_dependents_deps.dev:0 github.com/checkmarx-ts/cx-java-util,num_dependents_deps.dev:0 @@ -352597,6 +359909,9 @@ github.com/cheekujha/react-table-filter,num_dependents_deps.dev:0 github.com/cheeky-monkey-media/torsion,num_dependents_deps.dev:0 github.com/cheekybits/genny,criticality_score:0.345780 github.com/cheekycms/cheeky-angular,num_dependents_deps.dev:0 +github.com/cheelim1/argo-appset-gitgen, +github.com/cheelim1/argocd-actions, +github.com/cheelim1/image-updater, github.com/cheemcheem/spring-boot-react-parent,num_dependents_deps.dev:0 github.com/cheeplusplus/fa.js, github.com/cheere/udesk-js-link,num_dependents_deps.dev:0 @@ -352635,6 +359950,9 @@ github.com/cheerylin/testdemo,num_dependents_deps.dev:0 github.com/cheeryworks/soupe-ui-components-skeleton,num_dependents_deps.dev:0 github.com/cheeryworks/soupe-ui-components-styles,num_dependents_deps.dev:0 github.com/cheeryworks/soupe-ui-components-vuejs,num_dependents_deps.dev:0 +github.com/cheerz/composite-helm-private-manager, +github.com/cheerz/kubernetes-deploy-pilot, +github.com/cheerz/poll_status, github.com/cheese-git/format-date,num_dependents_deps.dev:0 github.com/cheese-git/postcss-compatible-mp,num_dependents_deps.dev:0 github.com/cheese-git/ra-data-leancloud,num_dependents_deps.dev:0 @@ -352677,6 +359995,7 @@ github.com/cheeweep/postgraphile-apollo-link-persisted-queries,num_dependents_de github.com/cheeweep/show_and_tell,num_dependents_deps.dev:0 github.com/cheeyeo/Amazon-SNS-Ruby,num_dependents_deps.dev:0 github.com/cheeze2000/cheesebox, +github.com/cheeze2000/setup-sbcl, github.com/cheezekurl/react-d3-eert,num_dependents_deps.dev:0 github.com/cheezetata/fiwz13, github.com/cheezgi/asteroid,num_dependents_deps.dev:0 @@ -352807,6 +360126,7 @@ github.com/chejen/eslint-plugin-i18n,num_dependents_deps.dev:2 github.com/chejen/keys-translations-manager,num_dependents_deps.dev:0 github.com/chejingchi/learn-npm,num_dependents_deps.dev:0 github.com/chejv/homework,num_dependents_deps.dev:0 +github.com/chekalsky/phpcs-action, github.com/cheketo/nojs-validator,num_dependents_deps.dev:0 github.com/chekit/xlf2xlf,num_dependents_deps.dev:0 github.com/chekoduadarsh/YOPO-You-Only-Plot-Once, @@ -352854,6 +360174,7 @@ github.com/chelnak/chkdns, github.com/chelnak/godf,num_dependents_deps.dev:0 github.com/chelnak/jenkins-tui, github.com/chelnak/onetimesecret-go,num_dependents_deps.dev:0 +github.com/chelnak/setup-v, github.com/chelout/laravel-relationship-events,criticality_score:0.339260 github.com/chelout/utils,num_dependents_deps.dev:0 github.com/chelovekgenek/ciclismurban-api,num_dependents_deps.dev:0 @@ -352939,6 +360260,7 @@ github.com/chemicstry/eacs-token-gen,num_dependents_deps.dev:0 github.com/chemicstry/modular-json-rpc,num_dependents_deps.dev:0 github.com/chemicstry/wasm_thread,num_dependents_deps.dev:0 github.com/chemidy/smallest-secured-golang-docker-image,num_dependents_deps.dev:0 +github.com/chemie2472/chrome-extension-upload, github.com/chemikadze/pyaerobia, github.com/chemikpil/grid-styled-component,num_dependents_deps.dev:0 github.com/cheminfo-js/array-xy,num_dependents_deps.dev:0 @@ -353864,6 +361186,7 @@ github.com/chenjunbiao/aftership-sdk-java,num_dependents_deps.dev:0 github.com/chenjuneking/gulp-json-replace,num_dependents_deps.dev:0 github.com/chenjuneking/jacket-captcha,num_dependents_deps.dev:0 github.com/chenjuneking/quill-image-drop-and-paste,num_dependents_deps.dev:2 +github.com/chenjuneking/redis-setup-action, github.com/chenjuneking/rollup-plugin-bundle-inject,num_dependents_deps.dev:0 github.com/chenjunhui/RNAport, github.com/chenjunlong/java-prometheus-starter,num_dependents_deps.dev:0 @@ -354028,6 +361351,8 @@ github.com/chenruibin618/nodejs,num_dependents_deps.dev:0 github.com/chenruilong/fis-deploy-ali-oss,num_dependents_deps.dev:0 github.com/chenruitian/cninfowebapi, github.com/chenrulongmaster/pyjieba, +github.com/chenryhabana205/dotnetgetversion, +github.com/chenryhabana205/publish-nuget, github.com/chenryhabana205/qvacall-cli,num_dependents_deps.dev:0 github.com/chenrz925/geyser, github.com/chenrz925/waterch-tasker, @@ -354240,6 +361565,7 @@ github.com/chenxuan0000/vue-progress-bar,num_dependents_deps.dev:0 github.com/chenxuan0000/vue-seamless-scroll,"criticality_score:0.350040,num_dependents_deps.dev:10" github.com/chenxuan0000/vue-tableau-slider,num_dependents_deps.dev:0 github.com/chenxucd/aws-maven,num_dependents_deps.dev:0 +github.com/chenxudong2020/sync-gitee-action, github.com/chenxuefei-pp/hexo-asset-oss,num_dependents_deps.dev:0 github.com/chenxuefei-pp/hexo-tag-ossimg,num_dependents_deps.dev:0 github.com/chenxull/hpc_harbor,num_dependents_deps.dev:0 @@ -354527,6 +361853,7 @@ github.com/cherrypulp/vue-core,num_dependents_deps.dev:0 github.com/cherrypy/MagicBus, github.com/cherrypy/cheroot,Google github.com/cherrypy/cherrypy,criticality_score:0.595990 +github.com/cherrypy/cherrypy-cors, github.com/cherryred5959/slackmojis-register,num_dependents_deps.dev:0 github.com/cherryservers/cherry-python-api, github.com/cherryservers/cherryctl,num_dependents_deps.dev:0 @@ -354613,6 +361940,7 @@ github.com/chessbr/shuup-cli,num_dependents_deps.dev:0 github.com/chesscoders/next-chessground,num_dependents_deps.dev:0 github.com/chessify/library,num_dependents_deps.dev:0 github.com/chessire-cat/pieces,num_dependents_deps.dev:0 +github.com/chessmango/action-resumed-render, github.com/chessmaster04/django-cache-page-per-user, github.com/chesstrian/JSCryptor,num_dependents_deps.dev:0 github.com/chesstrian/mimetype-description, @@ -354690,6 +362018,8 @@ github.com/chetan-rns/triggers,num_dependents_deps.dev:0 github.com/chetan-tuteja/easy-binding,num_dependents_deps.dev:0 github.com/chetan/UASparser,num_dependents_deps.dev:0 github.com/chetan/bidi-hello,num_dependents_deps.dev:0 +github.com/chetan/git-restore-mtime-action, +github.com/chetan/invalidate-cloudfront-action, github.com/chetan/vue-dumper,num_dependents_deps.dev:0 github.com/chetan0402/crypto-sim, github.com/chetan177/leetcode_solutions,num_dependents_deps.dev:0 @@ -354884,6 +362214,7 @@ github.com/chezou/Mykytea-python, github.com/chezou/prelims-cli, github.com/chezou/tabula-py,criticality_score:0.389360 github.com/chezou/tdworkflow, +github.com/chf007/action-wechat-work, github.com/chf007/egg-qywx,num_dependents_deps.dev:0 github.com/chf007/egg-qywx-login,num_dependents_deps.dev:0 github.com/chf007/nestjs-ctrip-apollo-client,num_dependents_deps.dev:0 @@ -354983,6 +362314,7 @@ github.com/chhh/sonatype-ossrh-parent,num_dependents_deps.dev:18 github.com/chhibber/pgme,num_dependents_deps.dev:0 github.com/chhorz/javadoc-parser,num_dependents_deps.dev:4 github.com/chhorz/oas-generator,num_dependents_deps.dev:0 +github.com/chhpt/wechat-work-messenger, github.com/chhschou/cz-jira-commit,num_dependents_deps.dev:0 github.com/chhsiao1981/react-reducer-utils, github.com/chhsiao90/cheat-ext, @@ -354990,6 +362322,7 @@ github.com/chhsiao90/gviewer, github.com/chhsiao90/modelmapper-module-java8,num_dependents_deps.dev:0 github.com/chhsiao90/nitmproxy,num_dependents_deps.dev:0 github.com/chi-feng/mcmc-demo,criticality_score:0.321720 +github.com/chi-rei-den/ModLoaderTools, github.com/chi0307/transform-chatbot-message,num_dependents_deps.dev:0 github.com/chia-ju-lin/learning-git,num_dependents_deps.dev:0 github.com/chiachun0920/efficient-timeout,num_dependents_deps.dev:0 @@ -355041,6 +362374,8 @@ github.com/chiaraani/primos,num_dependents_deps.dev:0 github.com/chiarapaskulin/masteringgoprogramming,num_dependents_deps.dev:0 github.com/chiarasabaini/learning_go,num_dependents_deps.dev:0 github.com/chiarasabaini/learning_golang,num_dependents_deps.dev:0 +github.com/chiaretto/github-action-concat-pr-body, +github.com/chiaretto/github-action-list-artifacts-pr, github.com/chiasm-project/chiasm, github.com/chiasm-project/chiasm-charts,num_dependents_deps.dev:0 github.com/chiasm-project/chiasm-component,num_dependents_deps.dev:0 @@ -355162,6 +362497,8 @@ github.com/chickenfresh/telegram-bot-api,num_dependents_deps.dev:0 github.com/chickenlj/dubbo-go,num_dependents_deps.dev:0 github.com/chickenservice/fluidgrid,num_dependents_deps.dev:0 github.com/chickensmitten/lanky_mate,num_dependents_deps.dev:0 +github.com/chickensoft-games/next-godot-csproj-version, +github.com/chickensoft-games/setup-godot, github.com/chickensoups/badwords,num_dependents_deps.dev:0 github.com/chickenzord/btcid-py, github.com/chickenzord/dotenvy, @@ -355189,6 +362526,7 @@ github.com/chicoxyzzy/node-releases,num_dependents_deps.dev:128918 github.com/chicoxyzzy/rx-mobservable,num_dependents_deps.dev:0 github.com/chicoxyzzy/rx-mobx,num_dependents_deps.dev:0 github.com/chicoxyzzy/sass-bulk-import-loader, +github.com/chicus12/github-action-get-jira-task, github.com/chidang/ccavenue_payment,num_dependents_deps.dev:0 github.com/chidc/code-challenge-,num_dependents_deps.dev:0 github.com/chidea/FBpyGIF, @@ -355266,6 +362604,7 @@ github.com/chiefbiiko/readable-valve,num_dependents_deps.dev:0 github.com/chiefbiiko/real-fetch-stream,num_dependents_deps.dev:0 github.com/chiefbiiko/scuttleup-blacklist,num_dependents_deps.dev:0 github.com/chiefbiiko/seed-bytes,num_dependents_deps.dev:4 +github.com/chiefbiiko/setup-substrate, github.com/chiefbiiko/siphash24-stream,num_dependents_deps.dev:0 github.com/chiefbiiko/tape-puppet,num_dependents_deps.dev:0 github.com/chiefbiiko/wasm-peep,num_dependents_deps.dev:0 @@ -355280,6 +362619,7 @@ github.com/chiefnoah/goalpost,num_dependents_deps.dev:0 github.com/chiefpansancolt/simplecov-material,num_dependents_deps.dev:0 github.com/chiefpansancolt/simplecov-tailwindcss,num_dependents_deps.dev:0 github.com/chiefsend/api,num_dependents_deps.dev:0 +github.com/chiefus/secret_serfer, github.com/chiefy/datajs,num_dependents_deps.dev:0 github.com/chiefy/generator-sails-angular,num_dependents_deps.dev:0 github.com/chiefy/go-linode,num_dependents_deps.dev:0 @@ -355509,6 +362849,9 @@ github.com/chill-patel/javascript-helper-fn,num_dependents_deps.dev:0 github.com/chill-pills/leaflet-headless,num_dependents_deps.dev:0 github.com/chill-pills/leaflet-image,num_dependents_deps.dev:0 github.com/chill-rs/chill,num_dependents_deps.dev:0 +github.com/chill-viking/dotnet-sonar-scanner, +github.com/chill-viking/is-nx-affected, +github.com/chill-viking/npm-ci, github.com/chill117/data-sourcer,num_dependents_deps.dev:30 github.com/chill117/express-mysql-session,"criticality_score:0.343100,num_dependents_deps.dev:38" github.com/chill117/geoip-native-lite,num_dependents_deps.dev:8 @@ -355622,6 +362965,7 @@ github.com/chiltscher/actuar,num_dependents_deps.dev:0 github.com/chiltscher/helpBy,num_dependents_deps.dev:0 github.com/chiltscher/morelog,num_dependents_deps.dev:0 github.com/chilupa/create-component-utility,num_dependents_deps.dev:0 +github.com/chilupa/linter, github.com/chilupa/npm-array-utils,num_dependents_deps.dev:0 github.com/chimaera-node/cli,num_dependents_deps.dev:0 github.com/chimaera-node/connector-dynamo,num_dependents_deps.dev:0 @@ -355647,6 +362991,7 @@ github.com/chimera-rpg/go-editor,num_dependents_deps.dev:0 github.com/chimera-rpg/go-server,num_dependents_deps.dev:0 github.com/chimera-suite/PySPARQL, github.com/chimera0/accel-brain-code, +github.com/chimeraant/dev, github.com/chimeralevia/react-curtain-reveal-box,num_dependents_deps.dev:0 github.com/chimeraprime/eslint-config-chimera-prime,num_dependents_deps.dev:0 github.com/chimeraprime/react-dev-cli,num_dependents_deps.dev:0 @@ -355657,12 +363002,14 @@ github.com/chimericdream/eslintrc,num_dependents_deps.dev:0 github.com/chimericdream/node-red-contrib-habitica-link,num_dependents_deps.dev:0 github.com/chimericdream/node-toodledo,num_dependents_deps.dev:0 github.com/chimericdream/proxy-mate,num_dependents_deps.dev:0 +github.com/chimiketsu/auto-back-merge, github.com/chimixiong/gin-swagger,num_dependents_deps.dev:0 github.com/chimo/grunt-fontello-svg,num_dependents_deps.dev:0 github.com/chimon2000/nativescript-safetynet-helper,num_dependents_deps.dev:0 github.com/chimon2000/releasify,num_dependents_deps.dev:0 github.com/chimon2000/ryanedge,num_dependents_deps.dev:0 github.com/chimon2000/useref-cli,num_dependents_deps.dev:0 +github.com/chimpanstache/ror-migration-rollback-verifier, github.com/chimpcocktail/couchlike,num_dependents_deps.dev:0 github.com/chimph/palindrome,num_dependents_deps.dev:0 github.com/chimpler/catdb, @@ -355678,6 +363025,8 @@ github.com/chimpwizard-wand/spell-init,num_dependents_deps.dev:0 github.com/chimpwizard-wand/spell-loop,num_dependents_deps.dev:0 github.com/chimpwizard-wand/spell-template,num_dependents_deps.dev:0 github.com/chimpwizard-wand/wand,num_dependents_deps.dev:0 +github.com/chimpwizards-pipeline/npm-build, +github.com/chimpwizards-pipeline/npm-publish, github.com/chimpyswap/chimpyswap-uikit,num_dependents_deps.dev:0 github.com/chimu-moe/node-chimu-api,num_dependents_deps.dev:0 github.com/chimung/core,num_dependents_deps.dev:0 @@ -355816,6 +363165,10 @@ github.com/chincoe/chayns-helper,num_dependents_deps.dev:0 github.com/chindeo/filemd5,num_dependents_deps.dev:0 github.com/chindeo/pkg,num_dependents_deps.dev:0 github.com/chindimaga/lazystats, +github.com/chindit/actions-phpcs, +github.com/chindit/actions-phpstan, +github.com/chindit/actions-phpunit, +github.com/chindit/actions-phpunit-symfony, github.com/chindnguyen/cssgrid, github.com/chinds185a/react-amp-shadow,num_dependents_deps.dev:0 github.com/chinedufn/angular-video-time,num_dependents_deps.dev:0 @@ -355970,6 +363323,7 @@ github.com/chintal/tendril-utils-files, github.com/chintan/battdeg, github.com/chintan13/testpackage,num_dependents_deps.dev:0 github.com/chintan9/plyr-react,num_dependents_deps.dev:0 +github.com/chinthakagodawita/autoupdate, github.com/chinthakagodawita/docker-hat,num_dependents_deps.dev:0 github.com/chinthakagodawita/docker-unisync,num_dependents_deps.dev:0 github.com/chintown/codeplay,num_dependents_deps.dev:0 @@ -356018,7 +363372,9 @@ github.com/chipgo/datastructures,num_dependents_deps.dev:0 github.com/chipgo/mycurr,num_dependents_deps.dev:0 github.com/chipgo/observer,num_dependents_deps.dev:0 github.com/chipincode/sinful-math,num_dependents_deps.dev:4 +github.com/chipinside/aws-request-sigv4, github.com/chipit24/fade-props,num_dependents_deps.dev:0 +github.com/chipkent/action-cleanup-package, github.com/chipmuenk/pyFDA,criticality_score:0.497970 github.com/chipmunk25/chip-video-player,num_dependents_deps.dev:0 github.com/chipoglesby/testSign,num_dependents_deps.dev:0 @@ -356103,6 +363459,7 @@ github.com/chiraag/crew_game, github.com/chiradeep/go-nitro,num_dependents_deps.dev:0 github.com/chirag-b/test, github.com/chirag-droid/anime-cli, +github.com/chirag-droid/setup-ccache, github.com/chirag-jn/notipyer, github.com/chirag-jog/em-winrs,num_dependents_deps.dev:0 github.com/chirag-r/arkera-component-lib,num_dependents_deps.dev:0 @@ -356227,6 +363584,8 @@ github.com/chitacan/shft,num_dependents_deps.dev:0 github.com/chitacan/vspn,num_dependents_deps.dev:0 github.com/chitacan/wttw,num_dependents_deps.dev:0 github.com/chitamoor/rester, +github.com/chitang233/actions-build-from-pkgbuild, +github.com/chitang233/aur-pkgbuild-builder, github.com/chitchatjs/chitchatjs,num_dependents_deps.dev:2 github.com/chitchu/react-mosaic,num_dependents_deps.dev:0 github.com/chitenavi/cadena-romano-a-decimal,num_dependents_deps.dev:0 @@ -356361,6 +363720,7 @@ github.com/chkap/mplog, github.com/chkch/Spring-Project-Tree,num_dependents_deps.dev:0 github.com/chkda/golang-tutorials,num_dependents_deps.dev:0 github.com/chkelly/amphibian,num_dependents_deps.dev:0 +github.com/chkfung/android-version-actions, github.com/chkgk/hiwi, github.com/chkgk/slider_task, github.com/chkhikvadze/http-status-code,num_dependents_deps.dev:0 @@ -356393,6 +363753,7 @@ github.com/chkware/cli, github.com/chlab/vuex-action-reload,num_dependents_deps.dev:0 github.com/chlam4/turbo-api,num_dependents_deps.dev:0 github.com/chlastyml/modular-logger,num_dependents_deps.dev:0 +github.com/chlbri/publish-npm-command-action, github.com/chlebjs/chlebjs-cli,num_dependents_deps.dev:0 github.com/chleck/Rama.js,num_dependents_deps.dev:0 github.com/chleck/locale-js, @@ -356518,6 +363879,7 @@ github.com/chmontgomery/gulp-shrinkwrap,num_dependents_deps.dev:0 github.com/chmontgomery/load-common-grunt-tasks,num_dependents_deps.dev:0 github.com/chmontgomery/load-common-gulp-tasks,num_dependents_deps.dev:0 github.com/chmontgomery/vinyl-require,num_dependents_deps.dev:0 +github.com/chmorgan/cppcheck-action, github.com/chmorgan/markdown-it-hierarchy, github.com/chmorgan/sharppcap,criticality_score:0.433010 github.com/chmouel/go-simple-uploader,num_dependents_deps.dev:0 @@ -356577,6 +363939,7 @@ github.com/chnzhangrui/quhep, github.com/chnzrb/gutils,num_dependents_deps.dev:0 github.com/cho0h5/d-day,num_dependents_deps.dev:0 github.com/cho0h5/life-log,num_dependents_deps.dev:0 +github.com/cho0o0/calver-release-action, github.com/cho4036/algorithmstudy,num_dependents_deps.dev:0 github.com/cho4036/virtualrouter,num_dependents_deps.dev:0 github.com/cho4036/virtualrouter-controller,num_dependents_deps.dev:0 @@ -356621,6 +363984,7 @@ github.com/chockaaa/programming-with-google-go,num_dependents_deps.dev:0 github.com/chocksaway/learngo,num_dependents_deps.dev:0 github.com/chocnut/RNAdyenCse, github.com/chocnut/react-native-country-picker-modal,num_dependents_deps.dev:0 +github.com/choco14t/ga-todoist-task, github.com/chocobn69/sergent, github.com/chocobo1/ksops,num_dependents_deps.dev:0 github.com/chocoboxxf/opentsdb-sdk-java,num_dependents_deps.dev:0 @@ -356826,6 +364190,7 @@ github.com/chongma/pointcloud-3d,num_dependents_deps.dev:0 github.com/chongqiangchen/slate-ng,num_dependents_deps.dev:0 github.com/chongqiangchen/stylelint-vars-check,num_dependents_deps.dev:0 github.com/chongqiangchen/taro-hook-form,num_dependents_deps.dev:0 +github.com/chongqiangchen/tauri-action-custom-repo, github.com/chongwen/android_tab,num_dependents_deps.dev:0 github.com/chongyangshi/kube-ingress,num_dependents_deps.dev:0 github.com/chongyangshi/oxcross,num_dependents_deps.dev:0 @@ -356849,6 +364214,7 @@ github.com/chonlatit-igeargeek/iggmatch,num_dependents_deps.dev:0 github.com/chonpin/NodeChallenge,num_dependents_deps.dev:0 github.com/chonpin/SeoDetector, github.com/chonsser/font-picker-vue,num_dependents_deps.dev:0 +github.com/chontawee/gj-find-transition-issues, github.com/chontawee/mock-service-api,num_dependents_deps.dev:0 github.com/chonthu/mkcert,num_dependents_deps.dev:0 github.com/chonton/apm-client,num_dependents_deps.dev:0 @@ -356980,6 +364346,13 @@ github.com/chorally/share_counter,num_dependents_deps.dev:0 github.com/chordpy/chord.py, github.com/chordpy/waterlink.py, github.com/chore1110/isucon-practice-20210724,num_dependents_deps.dev:0 +github.com/choreo-templates/build-deploy-action, +github.com/choreo-templates/choreo-byog-branch-create, +github.com/choreo-templates/choreo-byog-pr-create, +github.com/choreo-templates/choreo-configurable-check, +github.com/choreo-templates/choreo-configurable-check-status-update, +github.com/choreo-templates/run-status-save, +github.com/choreo-templates/webhook-configs-commit, github.com/chorerewards/api,num_dependents_deps.dev:0 github.com/chorerewards/backend,num_dependents_deps.dev:0 github.com/chorerewards/db,num_dependents_deps.dev:0 @@ -357129,6 +364502,7 @@ github.com/chpio/tar-vinyl,num_dependents_deps.dev:0 github.com/chpio/tar-vinyl-stream,num_dependents_deps.dev:0 github.com/chpmnrssll/transformer-netlify,num_dependents_deps.dev:0 github.com/chpmrc/graphene-validator, +github.com/chpoit/js-copy-github-action, github.com/chpolste/barotropic, github.com/chponte/libreeye, github.com/chpwssn/bookshelf-engine,num_dependents_deps.dev:0 @@ -357168,6 +364542,7 @@ github.com/chr15m/motionless,num_dependents_deps.dev:0 github.com/chr15m/ntpl, github.com/chr15m/randombytes-shim,num_dependents_deps.dev:0 github.com/chr15m/scrypt-hashcash,num_dependents_deps.dev:0 +github.com/chr1gu/deploy-firebase, github.com/chr1sl/go-programming,num_dependents_deps.dev:0 github.com/chr1st1ank/dataframe-io, github.com/chr1st1ank/dike, @@ -357216,12 +364591,14 @@ github.com/chrbala/single-schema,num_dependents_deps.dev:0 github.com/chrboe/dnfjson, github.com/chrchang/plink-ng,criticality_score:0.471640 github.com/chrchr/onliest,num_dependents_deps.dev:0 +github.com/chrdek/nuget-api-dataget, github.com/chreeio/fastify-status,num_dependents_deps.dev:0 github.com/chreeio/quicklid,num_dependents_deps.dev:0 github.com/chremoas/auth-web,num_dependents_deps.dev:0 github.com/chremoas/discordgo,num_dependents_deps.dev:0 github.com/chremoas/migration-tool,num_dependents_deps.dev:0 github.com/chremoas/role-srv,num_dependents_deps.dev:1 +github.com/chrey-gh/dck-act-hw, github.com/chrgriffin/pixely,num_dependents_deps.dev:0 github.com/chrhauris/tagtomarkdown, github.com/chrhck/TimeBoss, @@ -357253,6 +364630,7 @@ github.com/chrillux/brottsplatskartan, github.com/chrilves/raffiot.py, github.com/chrimaeon/CMG-Android-Utilities,num_dependents_deps.dev:0 github.com/chrimaeon/app-rater,num_dependents_deps.dev:0 +github.com/chrimaeon/github-slack-action, github.com/chrimaeon/gradle-licenses-plugin,num_dependents_deps.dev:0 github.com/chrimaeon/lint-logdebug,num_dependents_deps.dev:0 github.com/chrimaeon/lint-nullify,num_dependents_deps.dev:0 @@ -357297,6 +364675,7 @@ github.com/chris-griffin/flask-wkhtmltopdf, github.com/chris-hamper/git-webhook-workflows,num_dependents_deps.dev:0 github.com/chris-hamper/go-dns-proxy,num_dependents_deps.dev:0 github.com/chris-held/sails-generate-request-log,num_dependents_deps.dev:0 +github.com/chris-hinds/header-check-action, github.com/chris-hld/spaudiopy, github.com/chris-hly/hly-webpack-builder,num_dependents_deps.dev:0 github.com/chris-horner/RhythmSticks,num_dependents_deps.dev:0 @@ -357318,6 +364697,7 @@ github.com/chris-l/php-unparser,num_dependents_deps.dev:4 github.com/chris-l/pyx.js,num_dependents_deps.dev:0 github.com/chris-langfield/pyfsf, github.com/chris-maclean/PyWormbase, +github.com/chris-madsen/variable-mapper, github.com/chris-mcdo/obscraper, github.com/chris-miaskowski/github-to-slack-qa-reporter,num_dependents_deps.dev:0 github.com/chris-mlvz/curso_serverweb_go_platzi,num_dependents_deps.dev:0 @@ -357346,6 +364726,7 @@ github.com/chris-pearce/backpack,num_dependents_deps.dev:0 github.com/chris-pearce/backpack.css, github.com/chris-pearce/scally,num_dependents_deps.dev:0 github.com/chris-pearce/scally-website,num_dependents_deps.dev:0 +github.com/chris-peterson/virgo, github.com/chris-pilcher/nz-bank-account-info-international-money-transfer,num_dependents_deps.dev:0 github.com/chris-ramon/dataloader,num_dependents_deps.dev:0 github.com/chris-ramon/graphql-go,num_dependents_deps.dev:0 @@ -357370,6 +364751,7 @@ github.com/chris-shaw-2011/mp3-to-aac,num_dependents_deps.dev:0 github.com/chris-shaw-2011/react-native-android-open-settings,num_dependents_deps.dev:0 github.com/chris-shaw-2011/react-native-android-open-settings-async, github.com/chris-shaw-2011/write-aac-metadata,num_dependents_deps.dev:0 +github.com/chris-short/github-action-git-submodules, github.com/chris-siedell/PeekPoke, github.com/chris-siedell/PyCrow, github.com/chris-simpkins/testcafe-reporter-testrail-integration,num_dependents_deps.dev:0 @@ -357422,6 +364804,7 @@ github.com/chris48s/datapackage-to-datasette, github.com/chris48s/datasette-mailto-links, github.com/chris48s/django-apiblueprint-view, github.com/chris48s/flipboard, +github.com/chris48s/geojson-lint-action, github.com/chris48s/geojson-rewind, github.com/chris48s/geometry-to-spatialite, github.com/chris48s/json-paginator, @@ -357430,6 +364813,7 @@ github.com/chris48s/requests-paginator, github.com/chris48s/v8r,num_dependents_deps.dev:0 github.com/chris491638/leetcode,num_dependents_deps.dev:0 github.com/chris530/gostuff,num_dependents_deps.dev:0 +github.com/chris5451/aws-ecr-run-image, github.com/chris5marsh/makedocs,num_dependents_deps.dev:0 github.com/chris7/celery-aide, github.com/chris7/django-djangui, @@ -357476,6 +364860,7 @@ github.com/chrisJohn404/ljswitchboard-simple_logger,num_dependents_deps.dev:0 github.com/chrisJohn404/ljswitchboard-version_manager,num_dependents_deps.dev:0 github.com/chrisJohn404/ljswitchboard-window_manager,num_dependents_deps.dev:0 github.com/chrisPfaff/coinPriceCLI,num_dependents_deps.dev:0 +github.com/chrisRol2/NewRelic-lambda-config-logs, github.com/chrisUsick/linkedin-dataParser,num_dependents_deps.dev:0 github.com/chrisWhyTea/cooar-cli, github.com/chrisWhyTea/ovh-dns-client,num_dependents_deps.dev:0 @@ -357511,6 +364896,7 @@ github.com/chrisabrams/ts-paths-to-alias-core,num_dependents_deps.dev:0 github.com/chrisabrams/ts-paths-to-babel-alias,num_dependents_deps.dev:0 github.com/chrisabrams/ts-paths-to-webpack-alias,num_dependents_deps.dev:0 github.com/chrisabruce/revolutiontt,num_dependents_deps.dev:0 +github.com/chrisaddy/list-open-prs, github.com/chrisaddy/textrs,num_dependents_deps.dev:0 github.com/chrisadie/node-red-contrib-ais-decoder,num_dependents_deps.dev:0 github.com/chrisaguilar/babelrc,num_dependents_deps.dev:0 @@ -357766,6 +365152,7 @@ github.com/chriscn/mihome, github.com/chriscoal/lodown,num_dependents_deps.dev:0 github.com/chriscoe/azure-linux-extensions,num_dependents_deps.dev:0 github.com/chriscoffee/cryptopals,num_dependents_deps.dev:0 +github.com/chriscohoat/deploy-to-elb-action, github.com/chriscohoat/django-backup, github.com/chriscohoat/rai-wallet,num_dependents_deps.dev:0 github.com/chriscool/gx,num_dependents_deps.dev:0 @@ -358003,6 +365390,7 @@ github.com/chrisdickinson/reverse.js,num_dependents_deps.dev:0 github.com/chrisdickinson/rewrite-js,num_dependents_deps.dev:0 github.com/chrisdickinson/scoped,num_dependents_deps.dev:4 github.com/chrisdickinson/seasons, +github.com/chrisdickinson/setup-yq, github.com/chrisdickinson/shader.js,num_dependents_deps.dev:0 github.com/chrisdickinson/shortest,num_dependents_deps.dev:63 github.com/chrisdickinson/sparser,num_dependents_deps.dev:0 @@ -358034,6 +365422,7 @@ github.com/chrisdivina/create-amplefuture-project,num_dependents_deps.dev:0 github.com/chrisdivina/webpack-amplefuture-scripts,num_dependents_deps.dev:0 github.com/chrisdl/glancejs,num_dependents_deps.dev:0 github.com/chrisdlangton/sockstream,num_dependents_deps.dev:0 +github.com/chrisdleech-pol/github-action-notify-teams, github.com/chrisdmacrae/atomic-algolia,num_dependents_deps.dev:0 github.com/chrisdobby/react-webxr,num_dependents_deps.dev:0 github.com/chrisdoble/django-celery-transactions, @@ -358150,6 +365539,7 @@ github.com/chriseppstein/css-select,num_dependents_deps.dev:0 github.com/chriseth/browser-solidity,num_dependents_deps.dev:40 github.com/chriseyre2000/lie.js,num_dependents_deps.dev:0 github.com/chrisf17/pihat-widgets, +github.com/chrisfactory/GithubActions, github.com/chrisfactory/react-meta-state,num_dependents_deps.dev:0 github.com/chrisfarber/ember-breadcrumbs,num_dependents_deps.dev:0 github.com/chrisfarber/ember-flexure, @@ -358530,6 +365920,8 @@ github.com/chrisjsherm/region,num_dependents_deps.dev:0 github.com/chrisjshull/active-keys,num_dependents_deps.dev:0 github.com/chrisjshull/homebridge-nest,"criticality_score:0.428010,num_dependents_deps.dev:0" github.com/chrisjshull/wrap-words,num_dependents_deps.dev:0 +github.com/chrisjsimpson/algo-vpn-github-action, +github.com/chrisjsimpson/droplet-rebuild-action, github.com/chrisjsimpson/env-validate, github.com/chrisjsimpson/fx2obp, github.com/chrisjsimpson/open-bank-project-python, @@ -358539,6 +365931,7 @@ github.com/chrisk/protopuffs,num_dependents_deps.dev:0 github.com/chrisk/samuel,num_dependents_deps.dev:0 github.com/chrisk1ng/TransportApiSdk.Java,num_dependents_deps.dev:0 github.com/chriskacerguis/codeigniter-restserver,criticality_score:0.503810 +github.com/chriskacerguis/tailscale-acl, github.com/chriskalix/hids-linux,num_dependents_deps.dev:0 github.com/chriskalix/mvnparser,num_dependents_deps.dev:0 github.com/chriskalmar/json-shaper,num_dependents_deps.dev:0 @@ -358639,6 +366032,8 @@ github.com/chrislee35/yaratool, github.com/chrisleeshanok/batched-markdown,num_dependents_deps.dev:0 github.com/chrisleishman/express-negotiate,num_dependents_deps.dev:0 github.com/chrisleishman/jsmockito,num_dependents_deps.dev:0 +github.com/chrislennon/action-aws-cli, +github.com/chrislennon/action-drone, github.com/chrislewis/monad.js,num_dependents_deps.dev:0 github.com/chrislewispac/typescript-trie,num_dependents_deps.dev:0 github.com/chrislgardner/go-discord-bot,num_dependents_deps.dev:0 @@ -358688,6 +366083,7 @@ github.com/chrismagnacca/newegg-api,num_dependents_deps.dev:0 github.com/chrismaille/dashing, github.com/chrismaille/django-google-sso, github.com/chrismaille/fastapi-toolbar, +github.com/chrismaille/junito, github.com/chrismaille/marshmallow-pynamodb, github.com/chrismaille/stela, github.com/chrismaille/subdivisions, @@ -358897,6 +366293,7 @@ github.com/chrisquinnr/getFx,num_dependents_deps.dev:0 github.com/chrisquinnr/yeetr, github.com/chrisrabe/asciimoticon-core,num_dependents_deps.dev:0 github.com/chrisreams91/react-native-native-logger,num_dependents_deps.dev:0 +github.com/chrisreddington/rss-parser, github.com/chrisrenga/vue-hldv-picker,num_dependents_deps.dev:0 github.com/chrisrhymes/bulma-block-list,num_dependents_deps.dev:0 github.com/chrisrhymes/bulma-clean-theme,num_dependents_deps.dev:0 @@ -358926,6 +366323,7 @@ github.com/chrisrzhou/unified-doc,num_dependents_deps.dev:2 github.com/chriss-de/starlette-authx, github.com/chriss-de/sycfgr, github.com/chrissalvante/i21watch,num_dependents_deps.dev:0 +github.com/chrissank/deploy-firebase-functions, github.com/chrissantamaria/gatsby-plugin-fresnel, github.com/chrissantamaria/react-colorful, github.com/chrissav/consul-template-plugin-secretsmanager,num_dependents_deps.dev:0 @@ -359047,6 +366445,7 @@ github.com/christgau/wsdd,criticality_score:0.346860 github.com/christgf/donut,num_dependents_deps.dev:0 github.com/christgf/humerr,num_dependents_deps.dev:0 github.com/christherama/cluster-scheduler,num_dependents_deps.dev:0 +github.com/christherama/render-json-template, github.com/christheshark/golang-mongo-api,num_dependents_deps.dev:0 github.com/christhirst/json-to-graphql,num_dependents_deps.dev:0 github.com/christhomas/react-bootstrap-typescript,num_dependents_deps.dev:0 @@ -359070,8 +366469,12 @@ github.com/christian-bromann/devtools-backend,num_dependents_deps.dev:0 github.com/christian-bromann/lernapkg1,num_dependents_deps.dev:0 github.com/christian-bromann/rgb2hex,num_dependents_deps.dev:1842 github.com/christian-bull/take-home-questions,num_dependents_deps.dev:0 +github.com/christian-ci/action-yaml-github-output, +github.com/christian-draeger/increment-semantic-version, github.com/christian-draeger/mobilitybox-kt,num_dependents_deps.dev:0 github.com/christian-draeger/page-content-tester,num_dependents_deps.dev:0 +github.com/christian-draeger/read-properties, +github.com/christian-draeger/write-properties, github.com/christian-fei/Simple-Jekyll-Search,"criticality_score:0.503090,num_dependents_deps.dev:0" github.com/christian-fei/angular-err-src,num_dependents_deps.dev:0 github.com/christian-fei/angular-http-attach-promise,num_dependents_deps.dev:0 @@ -359110,8 +366513,10 @@ github.com/christian-hawk/ldaphelper, github.com/christian-hawk/pydoautomator, github.com/christian-herber/yanggui, github.com/christian-heusel/explorer-app,num_dependents_deps.dev:0 +github.com/christian-korneck/delete-run-artifacts-action, github.com/christian-korneck/docker-pushrm,num_dependents_deps.dev:0 github.com/christian-korneck/jetis,num_dependents_deps.dev:0 +github.com/christian-korneck/update-container-description-action, github.com/christian-lorenz/react-smartpicture,num_dependents_deps.dev:0 github.com/christian-marie/ns_connector,num_dependents_deps.dev:0 github.com/christian-monch/metadata-model, @@ -359266,6 +366671,7 @@ github.com/christianheine/prosemirror-svelte,num_dependents_deps.dev:0 github.com/christianheine/rex-matcher, github.com/christianhelle/autofaker, github.com/christianhelle/pyautodata, +github.com/christianhelle/refitter-action, github.com/christianhering/thermostat,num_dependents_deps.dev:0 github.com/christianhering/website,num_dependents_deps.dev:0 github.com/christianherweg0807/beats,num_dependents_deps.dev:0 @@ -359320,6 +366726,7 @@ github.com/christianmccormick/cordova-plugin-zsdk,num_dependents_deps.dev:0 github.com/christianmccormick/vert,num_dependents_deps.dev:0 github.com/christianmeichtry/texthelpers,num_dependents_deps.dev:0 github.com/christianmellor/ratlogparser,num_dependents_deps.dev:0 +github.com/christianmtr/dokku-deploy, github.com/christianmtr/react-simple-range-slider,num_dependents_deps.dev:0 github.com/christiannaths/dev-cli,num_dependents_deps.dev:0 github.com/christiannaths/eslint-config,num_dependents_deps.dev:0 @@ -359415,6 +366822,7 @@ github.com/christianvoigt/argdown-parser,num_dependents_deps.dev:0 github.com/christianvoigt/argdown-png-export, github.com/christianvozar/billing,num_dependents_deps.dev:0 github.com/christianvozar/itunes-hipchat-status,num_dependents_deps.dev:0 +github.com/christianvuerings/add-labels, github.com/christianvuerings/css-fast-loader,num_dependents_deps.dev:0 github.com/christianvuerings/gestalt-usage-visualizer,num_dependents_deps.dev:0 github.com/christianvuerings/ghost-axe,num_dependents_deps.dev:0 @@ -359566,6 +366974,7 @@ github.com/christophebe/serp,num_dependents_deps.dev:4 github.com/christophebe/simple-proxies,num_dependents_deps.dev:0 github.com/christophebe/uri.ninja,num_dependents_deps.dev:0 github.com/christophebedard/dco-check, +github.com/christophebedard/tag-version-commit, github.com/christophebiocca/skipping-search,num_dependents_deps.dev:0 github.com/christopheclc/polymer-date-picker,num_dependents_deps.dev:0 github.com/christophed/git-log-utils,num_dependents_deps.dev:0 @@ -359682,6 +367091,7 @@ github.com/christopher-chandler/SiNLP, github.com/christopher-chandler/ngrams, github.com/christopher-christofi/propertylistings, github.com/christopher-dG/gpymusic, +github.com/christopher-dG/verify-docker-action, github.com/christopher-dg/go-obs-websocket,num_dependents_deps.dev:1 github.com/christopher-drifter/Snap.svg-cjs,num_dependents_deps.dev:0 github.com/christopher-gibson/get-docker-secret,num_dependents_deps.dev:0 @@ -359819,6 +367229,7 @@ github.com/christopherpark88/image-steganography-go,num_dependents_deps.dev:0 github.com/christopherpeters-git/das-krasseste-webprojekt-der-welt,num_dependents_deps.dev:0 github.com/christopherpeters-git/teamprojektsose20,num_dependents_deps.dev:0 github.com/christopherpeters-git/web-bomberman,num_dependents_deps.dev:0 +github.com/christopherpickering/no-azure-action, github.com/christopherpickering/pre-commit-poetry-to-requirements, github.com/christopherpole/gravnic-game,num_dependents_deps.dev:0 github.com/christopherpryer/pyords, @@ -359851,6 +367262,7 @@ github.com/christopherwk210/import-tag,num_dependents_deps.dev:0 github.com/christopherwk210/quoia,num_dependents_deps.dev:0 github.com/christopherwk210/site-scan,num_dependents_deps.dev:0 github.com/christopherwk210/yyp-typings,num_dependents_deps.dev:0 +github.com/christopherwxyz/sdfsync, github.com/christophery/pushy,num_dependents_deps.dev:0 github.com/christopherzimmerman/flouter, github.com/christopherzimmerman/trimport, @@ -359907,13 +367319,17 @@ github.com/christophwitzko/tripple-semicolon,num_dependents_deps.dev:0 github.com/christophwitzko/udps,num_dependents_deps.dev:0 github.com/christor/rest-contract,num_dependents_deps.dev:0 github.com/christos-giallouros/koa-joi-controllers,num_dependents_deps.dev:0 +github.com/christosgalano/bruh, +github.com/christosgalano/delete-workflows-runs, github.com/christoshrousis/dr-robotnik-tabletop-madness,num_dependents_deps.dev:0 github.com/christoshrousis/vue-select,num_dependents_deps.dev:0 github.com/christosmito/express-jwt-auth-flow,num_dependents_deps.dev:0 +github.com/christothes/IssueOutputAction, github.com/christowolf/fimage,num_dependents_deps.dev:0 github.com/christowolf/go-noir,num_dependents_deps.dev:0 github.com/christowolf/go-progress,num_dependents_deps.dev:0 github.com/christrenkamp/xsel,num_dependents_deps.dev:0 +github.com/christrewin/openapi-to-json-schema, github.com/christriddle/grunt-ccb,num_dependents_deps.dev:0 github.com/christriddle/grunt-github-manifest,num_dependents_deps.dev:0 github.com/christriddle/grunt-package-github,num_dependents_deps.dev:0 @@ -360083,6 +367499,7 @@ github.com/chriswinch/cw-component-library,num_dependents_deps.dev:0 github.com/chriswininger/cli-worm,num_dependents_deps.dev:0 github.com/chriswininger/lib-cli-worm,num_dependents_deps.dev:0 github.com/chriswins2much/random-utils,num_dependents_deps.dev:0 +github.com/chriswk/dbcritic-action, github.com/chriswk/fastify-session-knex-store,num_dependents_deps.dev:0 github.com/chriswk/unleash-proxy-go,num_dependents_deps.dev:0 github.com/chriswong/karma-stylus-preprocessor,num_dependents_deps.dev:0 @@ -360139,6 +367556,8 @@ github.com/chritchens/elgamal-curve25519,num_dependents_deps.dev:0 github.com/chriteixeira/nuuuvem,num_dependents_deps.dev:0 github.com/chriteixeira/react-native-add-qrcode,num_dependents_deps.dev:0 github.com/chriteixeira/twitch-toolkit,num_dependents_deps.dev:0 +github.com/chrivand/action-kenna-cve-exploits-js, +github.com/chrivand/action-webex-js, github.com/chriweis/plugin-base,num_dependents_deps.dev:0 github.com/chrix75/password-hashing,num_dependents_deps.dev:0 github.com/chrix75/unified-log,num_dependents_deps.dev:0 @@ -360153,6 +367572,7 @@ github.com/chrj/placetaytay,num_dependents_deps.dev:0 github.com/chrjxj/ibclient, github.com/chrka/d3-chessboard-count,num_dependents_deps.dev:0 github.com/chrkaatz/GeoCoordinate, +github.com/chrkaatz/helm, github.com/chrkaatz/sensable-reporter,num_dependents_deps.dev:0 github.com/chrkhl/sphero-connector-core,num_dependents_deps.dev:0 github.com/chrkhl/sphero-connector-http,num_dependents_deps.dev:0 @@ -360175,6 +367595,8 @@ github.com/chrneumann/yfind, github.com/chrnie233/event-livedata,num_dependents_deps.dev:0 github.com/chrnie233/various,num_dependents_deps.dev:0 github.com/chrnin/arpbdge,num_dependents_deps.dev:0 +github.com/chrnorm/deployment-action, +github.com/chrnorm/deployment-status, github.com/chro0611/kakao-maps-sdk,num_dependents_deps.dev:0 github.com/chro0611/react-native-fan,num_dependents_deps.dev:0 github.com/chro0611/react-native-pincrux,num_dependents_deps.dev:0 @@ -360182,6 +367604,7 @@ github.com/chro0611/react-native-unity-ads,num_dependents_deps.dev:0 github.com/chroblert/jgoutils,num_dependents_deps.dev:0 github.com/chroblert/z0sect00ls,num_dependents_deps.dev:0 github.com/chroju/alfrednize,num_dependents_deps.dev:0 +github.com/chroju/terraform-cloud-updater, github.com/chroju/tfdoc,num_dependents_deps.dev:0 github.com/chroju/tfh,num_dependents_deps.dev:0 github.com/chrokh/lit,num_dependents_deps.dev:0 @@ -360204,6 +367627,7 @@ github.com/chromale/styled-material-inputs,num_dependents_deps.dev:0 github.com/chromano/wi, github.com/chromatic/modern_perl_book,criticality_score:0.341270 github.com/chromatone/theory,num_dependents_deps.dev:0 +github.com/chromaui/action, github.com/chromaui/chromatic-cli,num_dependents_deps.dev:36 github.com/chromaui/intro-storybook-react-template,num_dependents_deps.dev:0 github.com/chromaui/learnstorybook-design-system,num_dependents_deps.dev:0 @@ -360226,6 +367650,7 @@ github.com/chromedp/cdproto-gen,num_dependents_deps.dev:0 github.com/chromedp/chromedp,"criticality_score:0.483580,num_dependents_deps.dev:109" github.com/chromedp/examples,num_dependents_deps.dev:0 github.com/chromedp/omahaproxy,num_dependents_deps.dev:4 +github.com/chromee/dot-json-edit-action, github.com/chromehtmltopdf/chromehtmltopdf,num_dependents_deps.dev:0 github.com/chromelyapps/Chromely,criticality_score:0.487230 github.com/chromeos/android-google-drive-backup-sample,Google @@ -360357,6 +367782,7 @@ github.com/chronotruck/vue-ctk-date-time-picker,"criticality_score:0.321320,num_ github.com/chronotruck/vue-ctk-input-text,num_dependents_deps.dev:0 github.com/chronotruck/vue-ctk-tooltip,num_dependents_deps.dev:0 github.com/chronotruck/vue-gorgias,num_dependents_deps.dev:0 +github.com/chronotruck/webpack-stats-diff-action, github.com/chronoxor/CppLogging, github.com/chronoxor/FastBinaryEncoding,criticality_score:0.315690 github.com/chronoxor/NetCoreServer,criticality_score:0.341270 @@ -360462,6 +367888,7 @@ github.com/chryb/vueup,num_dependents_deps.dev:0 github.com/chrylarson/labview,num_dependents_deps.dev:0 github.com/chrylis/blitline-java-client,num_dependents_deps.dev:18 github.com/chrylis/groovybeans-toolkit,num_dependents_deps.dev:0 +github.com/chrysanthos/simple-asset-size-reporter, github.com/chryscloud/chrys-cloud-sdk-python, github.com/chrysls/django-dbpool, github.com/chrysn/aiocoap, @@ -360729,6 +368156,7 @@ github.com/chuckjaz/yap,num_dependents_deps.dev:0 github.com/chuckjaz/yaut,num_dependents_deps.dev:0 github.com/chucklai92/cssExchangeLoader,num_dependents_deps.dev:0 github.com/chucklefish/hlist-macro,num_dependents_deps.dev:0 +github.com/chuckmeyer/add-algolia-record, github.com/chuckmo/helperpress-cli,num_dependents_deps.dev:0 github.com/chuckmo/smartload-grunt-tasks,num_dependents_deps.dev:0 github.com/chucknorris-io/chuck-client-nodejs,num_dependents_deps.dev:0 @@ -360752,6 +368180,8 @@ github.com/chucksmash/multitude, github.com/chucksmash/nearby, github.com/chuckus/chromewhip, github.com/chuckvely89/git-projectgo,num_dependents_deps.dev:0 +github.com/chuckwagoncomputing/ibom-action, +github.com/chuckwagoncomputing/interactive-pinout, github.com/chuckwhealton/pps_emu, github.com/chuckwhealton/pps_gui, github.com/chuckyblack/gulp-i18n-po-translate, @@ -360796,10 +368226,12 @@ github.com/chuhangyu/react-custom-switch, github.com/chuhangyu/react-loading-list,num_dependents_deps.dev:0 github.com/chuhlomin/busnj-console,num_dependents_deps.dev:0 github.com/chuhlomin/gbfs-tools,num_dependents_deps.dev:0 +github.com/chuhlomin/genblog, github.com/chuhlomin/k8sstat,num_dependents_deps.dev:0 github.com/chuhlomin/mta,num_dependents_deps.dev:0 github.com/chuhlomin/protoc-gen-bq-schema,num_dependents_deps.dev:0 github.com/chuhlomin/radio-t-stickers,num_dependents_deps.dev:0 +github.com/chuhlomin/render-template, github.com/chuhongliang/CCP_REST_SDK_Node,num_dependents_deps.dev:0 github.com/chuhongliang/com-extend,num_dependents_deps.dev:0 github.com/chuhongliang/delayed-task-queue,num_dependents_deps.dev:0 @@ -360872,6 +368304,7 @@ github.com/chumaltd/luca,num_dependents_deps.dev:4 github.com/chumaltd/luca-jp,num_dependents_deps.dev:0 github.com/chumaltd/luca-salary-jp,num_dependents_deps.dev:0 github.com/chumbie/statbasket, +github.com/chumchumagency/deploy-s3, github.com/chummer5a/chummer5a,criticality_score:0.570120 github.com/chummersone/pywavfile, github.com/chumper/golactor,num_dependents_deps.dev:0 @@ -361106,6 +368539,7 @@ github.com/chuson1996/append-file,num_dependents_deps.dev:0 github.com/chuson1996/cson-serializer, github.com/chuson1996/serializer,num_dependents_deps.dev:0 github.com/chuson1996/template-producer,num_dependents_deps.dev:0 +github.com/chussum/action-slack-notification, github.com/chusteven/birdpedia,num_dependents_deps.dev:0 github.com/chusto2/lodown,num_dependents_deps.dev:0 github.com/chute/Chute-SDK-V2-Android,num_dependents_deps.dev:0 @@ -361155,10 +368589,12 @@ github.com/chuwy/grunt-pelican,num_dependents_deps.dev:0 github.com/chux0519/batch-retry,num_dependents_deps.dev:0 github.com/chux0519/buffered-kueue,num_dependents_deps.dev:0 github.com/chux0519/evernote-sdk-js-ex,num_dependents_deps.dev:0 +github.com/chux0519/go-release-action, github.com/chux0519/hpts,num_dependents_deps.dev:0 github.com/chux0519/koa2wechat,num_dependents_deps.dev:0 github.com/chux0519/purr,num_dependents_deps.dev:1 github.com/chux0519/task-execution-limiter,num_dependents_deps.dev:0 +github.com/chux0519/zola-scp-action, github.com/chuxiangqaz/package,num_dependents_deps.dev:0 github.com/chuxiaoguo/dataV-vite, github.com/chuxiaoguo/wrapper-stompjs,num_dependents_deps.dev:0 @@ -361206,6 +368642,7 @@ github.com/chvin/formatter-json,num_dependents_deps.dev:0 github.com/chvin/react-tetris,num_dependents_deps.dev:0 github.com/chvin/rmNodeDep,num_dependents_deps.dev:0 github.com/chvinit/django-docusign-insta-connect, +github.com/chvmvd/build-deploy-and-preview-action, github.com/chvolkmann/win_gpg_agent, github.com/chw0216/gomoduletest,num_dependents_deps.dev:0 github.com/chwagnLUCID/JuzzyV2,num_dependents_deps.dev:0 @@ -361224,11 +368661,15 @@ github.com/chxfantasy/go_bootstrap,num_dependents_deps.dev:0 github.com/chxing/wrzsz,num_dependents_deps.dev:0 github.com/chxj1992/kline,num_dependents_deps.dev:0 github.com/chxj1992/rtmp-streamer,num_dependents_deps.dev:4 +github.com/chxseh/action-lock-unlock, github.com/chxuan/vimplus,criticality_score:0.444420 github.com/chy9002/hexo-tag-owlplus,num_dependents_deps.dev:0 github.com/chybatronik/develexe-sortable,num_dependents_deps.dev:0 github.com/chybatronik/react_sortable,num_dependents_deps.dev:0 github.com/chybie/prerender-xs,num_dependents_deps.dev:0 +github.com/chyccs/empty-pr-actions, +github.com/chyccs/pull-request-title-generator, +github.com/chyccs/pull-request-typography, github.com/chyh1990/yaml-rust,"criticality_score:0.376710,num_dependents_deps.dev:2231" github.com/chyi341152/ccpy, github.com/chyidl/begin-go-micro,num_dependents_deps.dev:0 @@ -361263,6 +368704,7 @@ github.com/chynkm/ratesdb,num_dependents_deps.dev:0 github.com/chyrain/npm-chyrain,num_dependents_deps.dev:0 github.com/chyroc/action.sh,num_dependents_deps.dev:0 github.com/chyroc/dropbox-save-url,num_dependents_deps.dev:0 +github.com/chyroc/github2dropbox, github.com/chyroc/go-mosaic,num_dependents_deps.dev:0 github.com/chyroc/go-ptr,num_dependents_deps.dev:0 github.com/chyroc/go-redis,num_dependents_deps.dev:0 @@ -361277,6 +368719,7 @@ github.com/chyroc/phpmyadmin-cli,num_dependents_deps.dev:0 github.com/chyroc/pics-to-gif,num_dependents_deps.dev:0 github.com/chyroc/reflectx,num_dependents_deps.dev:0 github.com/chyroc/render,num_dependents_deps.dev:0 +github.com/chyroc/upgrade-brew-tap, github.com/chyron/csv-file-reader,num_dependents_deps.dev:0 github.com/chyrta/AndroidOnboarder,num_dependents_deps.dev:0 github.com/chython/chytorch, @@ -361360,6 +368803,7 @@ github.com/cianmscannell/cardisort, github.com/cianru/huawei-publish-gradle-plugin,num_dependents_deps.dev:0 github.com/cianru/sqlep, github.com/ciantic/trayicon-rs,num_dependents_deps.dev:0 +github.com/cianyyz/firebase_fetch, github.com/ciao-chung/ciao-deploy,num_dependents_deps.dev:0 github.com/ciao-chung/ciao-ssr,num_dependents_deps.dev:0 github.com/ciao-chung/ciao-vue-dialog,num_dependents_deps.dev:0 @@ -361458,6 +368902,7 @@ github.com/cicada1992/react-csv-uploader,num_dependents_deps.dev:0 github.com/cicada1992/react-page-exit-confirmation,num_dependents_deps.dev:0 github.com/cicada1993/cmake-loader,num_dependents_deps.dev:0 github.com/cicada1993/ellipsis-textarea,num_dependents_deps.dev:0 +github.com/cicadahq/setup-cicada, github.com/cicadapurp/palindrome,num_dependents_deps.dev:0 github.com/cicadatesting/cicada-distributed, github.com/cicadoidea/actor,num_dependents_deps.dev:0 @@ -361508,8 +368953,13 @@ github.com/cicirello/InteractiveBinPacking,num_dependents_deps.dev:0 github.com/cicirello/JavaPermutationTools,num_dependents_deps.dev:10 github.com/cicirello/ZigguratGaussian,num_dependents_deps.dev:0 github.com/cicirello/chips-n-salsa-examples,num_dependents_deps.dev:0 +github.com/cicirello/count-action-users, +github.com/cicirello/generate-sitemap, +github.com/cicirello/jacoco-badge-generator, +github.com/cicirello/javadoc-cleanup, github.com/cicirello/jpt-examples,num_dependents_deps.dev:0 github.com/cicirello/modified-lam-experiments,num_dependents_deps.dev:0 +github.com/cicirello/user-statistician, github.com/cicistream/react-native-http-bridge,num_dependents_deps.dev:0 github.com/cicistream/react-native-local-barcode-recognizer,num_dependents_deps.dev:0 github.com/cicistream/react-native-secharts,num_dependents_deps.dev:0 @@ -361612,6 +369062,14 @@ github.com/cielavenir/python-dclimplode, github.com/cielavenir/python-slz, github.com/cielavenir/python-zipfile-ppmd, github.com/cielavenir/zipfile39, +github.com/ciellos-dev/d365fo-create-deployable-package, +github.com/ciellos-dev/d365fo-lcs-asset-deployment, +github.com/ciellos-dev/d365fo-lcs-asset-upload, +github.com/ciellos-dev/d365fo-lcs-environment-start, +github.com/ciellos-dev/d365fo-lcs-environment-stop, +github.com/ciellos-dev/d365fo-update-model-version, +github.com/ciellos-dev/getazurevmstate, +github.com/ciellosinc/d365fo-update-model-version, github.com/cieloazul310/gatsby-theme-aoi,num_dependents_deps.dev:0 github.com/cieloazul310/gatsby-theme-aoi-top-layout,num_dependents_deps.dev:0 github.com/cielong/pyfx, @@ -361789,6 +369247,7 @@ github.com/ciiiii/go2sheep_bot,num_dependents_deps.dev:0 github.com/ciiiii/go2sheep_notification,num_dependents_deps.dev:0 github.com/ciiiii/sshw,num_dependents_deps.dev:0 github.com/ciiiii/sync-image,num_dependents_deps.dev:0 +github.com/ciiiii/toml-editor, github.com/cijliu/pydopi, github.com/cijo7/Halo, github.com/cikaldev/cobain, @@ -361957,6 +369416,10 @@ github.com/cinderblock/python-rencode,num_dependents_deps.dev:0 github.com/cinderblock/react-smoothie,num_dependents_deps.dev:0 github.com/cinderblock/server-starter,num_dependents_deps.dev:0 github.com/cinderblock/smallest-power-of-two,num_dependents_deps.dev:0 +github.com/cinderblockgames/ftp-action, +github.com/cinderblockgames/letsencrypt-dns-cpanel-action, +github.com/cinderblockgames/letsencrypt-dns-namecheap-action, +github.com/cinderblockgames/letsencrypt-revoke-action, github.com/cindoralla/gopdf,num_dependents_deps.dev:0 github.com/cindr-io/Blossom, github.com/cindy0113/geekbang20210801,num_dependents_deps.dev:0 @@ -361965,6 +369428,7 @@ github.com/cindydove/cindy-md-loader,num_dependents_deps.dev:0 github.com/cindyflorez/messaging,num_dependents_deps.dev:0 github.com/cindyhalim/lotide,num_dependents_deps.dev:0 github.com/cindylopez1814/scl-2018-01-FE-markdown,num_dependents_deps.dev:0 +github.com/cindylovescoding/githubactions-sample, github.com/cindyrise/dtux,num_dependents_deps.dev:0 github.com/cindyrise/generator-dtcli,num_dependents_deps.dev:0 github.com/cindyrise/react-dtui,num_dependents_deps.dev:0 @@ -362057,6 +369521,7 @@ github.com/cinob/vue-reactive-clipboard,num_dependents_deps.dev:0 github.com/cinode/go,num_dependents_deps.dev:0 github.com/cinos1/vue-previewer,num_dependents_deps.dev:0 github.com/cinoss/cupl,num_dependents_deps.dev:0 +github.com/cinotify/github-action, github.com/cinovo/cloudconductor-agent-redhat,num_dependents_deps.dev:0 github.com/cinovo/cloudconductor-api,num_dependents_deps.dev:0 github.com/cinovo/cloudconductor-server,num_dependents_deps.dev:0 @@ -362190,6 +369655,7 @@ github.com/cirahnitex/hltc-webapi-master,num_dependents_deps.dev:0 github.com/cirahnitex/inline-webworker-functional,num_dependents_deps.dev:0 github.com/cirahnitex/ts-json-key-map,num_dependents_deps.dev:2 github.com/cirahnitex/tsqm,num_dependents_deps.dev:0 +github.com/cirano-eusebi/wait-for-commit-status-action, github.com/cirbuk/featuregates,num_dependents_deps.dev:0 github.com/cirbuk/kublog, github.com/cirbuk/litedash,num_dependents_deps.dev:2 @@ -362259,6 +369725,7 @@ github.com/circlelychen/rukip, github.com/circleshavecorners/Geometry2D, github.com/circleshift/tnsl-parse,num_dependents_deps.dev:0 github.com/circlesio/node-circlesio-sdk,num_dependents_deps.dev:0 +github.com/circlesland/CheckI18NKeys, github.com/circletron/circletron,num_dependents_deps.dev:0 github.com/circleup/aresponses, github.com/circleup/exception-reports, @@ -362287,7 +369754,10 @@ github.com/circonus-labs/python-circonusapi, github.com/circonus-labs/reconnoiter,"criticality_score:0.475280,num_dependents_deps.dev:0" github.com/circonus-labs/terraform-provider-circonus,num_dependents_deps.dev:0 github.com/circonus/grafana-ds-convert,num_dependents_deps.dev:0 +github.com/circt/install-circt, github.com/circt/node,num_dependents_deps.dev:0 +github.com/circt/update-circt, +github.com/circt/update-staging-branch, github.com/circuit/circuit-call-button,num_dependents_deps.dev:0 github.com/circuit/circuit-sdk,num_dependents_deps.dev:0 github.com/circuit/circuit-web-components,num_dependents_deps.dev:0 @@ -362351,6 +369821,8 @@ github.com/cirello-io/svc,num_dependents_deps.dev:0 github.com/ciresnave/stock_trader, github.com/cirg-up/benchmarks,num_dependents_deps.dev:0 github.com/cirg-up/cilib,num_dependents_deps.dev:0 +github.com/ciriarte/get-credhub-secrets, +github.com/ciriarte/terraform-action, github.com/ciribob/DCS-SimpleRadioStandalone,criticality_score:0.447390 github.com/ciricc/easyvk,num_dependents_deps.dev:2 github.com/ciricc/minecraft-codes,num_dependents_deps.dev:0 @@ -362404,6 +369876,8 @@ github.com/cirocosta/utea,num_dependents_deps.dev:0 github.com/cirocosta/yaspm,num_dependents_deps.dev:0 github.com/cirocosta/yt-utils,num_dependents_deps.dev:0 github.com/cirola2000/idol-metadata,num_dependents_deps.dev:0 +github.com/cirolini/chatgpt-github-actions, +github.com/cirolini/pushgateway-github-actions, github.com/ciromacedo/nf_nwdaf,num_dependents_deps.dev:0 github.com/ciromattia/jquery.counterup,num_dependents_deps.dev:0 github.com/ciromattia/kcc,criticality_score:0.346270 @@ -362449,6 +369923,7 @@ github.com/cirplan/de-tool,num_dependents_deps.dev:0 github.com/cirpo/hubot-save-links,num_dependents_deps.dev:0 github.com/cirquity/cirquity-daemon-ha,num_dependents_deps.dev:0 github.com/cirquity/cirquity-rpc-js,num_dependents_deps.dev:0 +github.com/cirrus-actions/branch-guard, github.com/cirrus-actions/rebase,criticality_score:0.428710 github.com/cirrus-geo/cirrus, github.com/cirrus-geo/cirrus-lib, @@ -362464,6 +369939,7 @@ github.com/cirruslabs/cirrus-ci-annotations,num_dependents_deps.dev:0 github.com/cirruslabs/cirrus-cli,num_dependents_deps.dev:0 github.com/cirruslabs/echelon,num_dependents_deps.dev:0 github.com/cirruslabs/google-storage-proxy,num_dependents_deps.dev:0 +github.com/cirruslabs/http-cache-action, github.com/cirruslabs/terminal,num_dependents_deps.dev:0 github.com/cirruspath/grunt-angular-translate-compare,num_dependents_deps.dev:0 github.com/cirss/blaze,num_dependents_deps.dev:0 @@ -362590,6 +370066,7 @@ github.com/cismet/react-cismap,num_dependents_deps.dev:0 github.com/cisnlp/simalign, github.com/cisocrgroup/ocrd_cis, github.com/cisocrgroup/segregs,num_dependents_deps.dev:0 +github.com/cisox/read-more-action, github.com/cisror/currency_converter_cis,num_dependents_deps.dev:0 github.com/cisror/google-translator-cis,num_dependents_deps.dev:0 github.com/cisror/jquery-nested-rails-cis,num_dependents_deps.dev:0 @@ -362614,6 +370091,7 @@ github.com/citahub/cita-sdk-java,num_dependents_deps.dev:114 github.com/citahub/cita-sdk-js,num_dependents_deps.dev:0 github.com/citation-file-format/cff-converter-python, github.com/citation-file-format/cff-reader-java,num_dependents_deps.dev:0 +github.com/citation-file-format/cffconvert-github-action, github.com/citation-file-format/ruby-cff,num_dependents_deps.dev:0 github.com/citation-js/citation-js,num_dependents_deps.dev:360 github.com/citation-js/citation.js-plugin-software-formats, @@ -362663,6 +370141,7 @@ github.com/citius/phanos,num_dependents_deps.dev:0 github.com/citiususc/hipster,"criticality_score:0.302510,num_dependents_deps.dev:18" github.com/citiususc/pyplexity, github.com/citixensas/drf-friendly-errors, +github.com/citizen-of-planet-earth/cf-cli-action, github.com/citizen233/gin,num_dependents_deps.dev:0 github.com/citizen428/MethodFinder,"num_dependents_deps.dev:0,num_dependents_deps.dev:6" github.com/citizen428/revolver,num_dependents_deps.dev:0 @@ -362743,6 +370222,7 @@ github.com/citruseeds/prettier-config-citruseed,num_dependents_deps.dev:0 github.com/citrusframework/citrus,"criticality_score:0.546710,num_dependents_deps.dev:777" github.com/citrusframework/citrus-simulator,num_dependents_deps.dev:0 github.com/citrusframework/yaks,num_dependents_deps.dev:0 +github.com/citrusframework/yaks-install-action, github.com/citrusjunoss/qzd-utils,num_dependents_deps.dev:0 github.com/citrusleaf/aerospike-management-lib,num_dependents_deps.dev:0 github.com/citrusleaf/amc,num_dependents_deps.dev:0 @@ -363150,6 +370630,7 @@ github.com/civicteam/penv,num_dependents_deps.dev:0 github.com/civicteam/simple-cache,num_dependents_deps.dev:0 github.com/civictechro/what,num_dependents_deps.dev:0 github.com/civicwar/vscode-vem,num_dependents_deps.dev:0 +github.com/cividi/dfour-sync, github.com/cividi/frictionless-dfour, github.com/cividi/frictionless-geojson, github.com/civilco/gulp-gumshoe,num_dependents_deps.dev:0 @@ -363183,6 +370664,7 @@ github.com/civitaslearning/passport-lti,num_dependents_deps.dev:0 github.com/civitaslearning/swigql,num_dependents_deps.dev:0 github.com/civitaspo/airflow-plugin-glue_presto_apas, github.com/civitz/viper,num_dependents_deps.dev:0 +github.com/civo/action-civo, github.com/civo/activetracker,num_dependents_deps.dev:0 github.com/civo/bizaar-operator,num_dependents_deps.dev:0 github.com/civo/civogo,num_dependents_deps.dev:1 @@ -363285,6 +370767,7 @@ github.com/cjardim/react-native-voice,num_dependents_deps.dev:0 github.com/cjatcq/interview,num_dependents_deps.dev:0 github.com/cjavad/hashit, github.com/cjavad/passport-anilist,num_dependents_deps.dev:0 +github.com/cjayanth95/setup-wiremock-action, github.com/cjayaschandran/MyGenerator,num_dependents_deps.dev:0 github.com/cjaymarshall/dmarsci-js-footer,num_dependents_deps.dev:0 github.com/cjaymes/expatriate, @@ -363380,16 +370863,19 @@ github.com/cjdelisle/xwiki-tools,num_dependents_deps.dev:0 github.com/cjdell/ts-valid,num_dependents_deps.dev:0 github.com/cjdell/type-safe-validator,num_dependents_deps.dev:0 github.com/cjdell/webpage-preview,num_dependents_deps.dev:0 +github.com/cjdenio/contributor_list, github.com/cjdenio/dockerenv,num_dependents_deps.dev:0 github.com/cjdenio/dockerenv-cli,num_dependents_deps.dev:0 github.com/cjdenio/hackclub-ship,num_dependents_deps.dev:0 github.com/cjdenio/replier,num_dependents_deps.dev:0 +github.com/cjdenio/setup-emojicode, github.com/cjdev/aws-cdk-cjdev,num_dependents_deps.dev:0 github.com/cjdev/nataddr-js,num_dependents_deps.dev:0 github.com/cjdev/node-oauth,num_dependents_deps.dev:0 github.com/cjdev/rest-specs,num_dependents_deps.dev:3 github.com/cjdjczym/tempbackend,num_dependents_deps.dev:0 github.com/cjdoris/PythonCall.jl, +github.com/cjdoris/julia-downgrade-compat-action, github.com/cjdoris/pyjuliapkg, github.com/cjdoris/pyjuliaup, github.com/cjdowner/cryptocurrency-icons,num_dependents_deps.dev:0 @@ -363439,12 +370925,14 @@ github.com/cjg125/vir,num_dependents_deps.dev:0 github.com/cjg125/vir-ui-loadmore,num_dependents_deps.dev:0 github.com/cjg125/wannado,num_dependents_deps.dev:0 github.com/cjg125/yep-cli,num_dependents_deps.dev:0 +github.com/cjgibbons/render-latest-plantuml-to-wiki-action, github.com/cjgiridhar/gin-geo,num_dependents_deps.dev:0 github.com/cjglo/go_and_rust_mix,num_dependents_deps.dev:0 github.com/cjglo/go_messaround,num_dependents_deps.dev:0 github.com/cjgorricho/curso-golang,num_dependents_deps.dev:0 github.com/cjgriscom/RECE-232,num_dependents_deps.dev:0 github.com/cjgriscom/protobuf-teavm,num_dependents_deps.dev:0 +github.com/cjh-cloud/Test-Webhook, github.com/cjh0613/hexo-submit-urls-to-search-engine,num_dependents_deps.dev:0 github.com/cjh1/girder_jupyterhub, github.com/cjh42694/miniprogram-canvas-to-image,num_dependents_deps.dev:0 @@ -363692,6 +371180,7 @@ github.com/cjr--/qp-utility,num_dependents_deps.dev:2 github.com/cjr--/qp-view,num_dependents_deps.dev:0 github.com/cjr--/qp-vue,num_dependents_deps.dev:0 github.com/cjrd/jsonlint,num_dependents_deps.dev:2 +github.com/cjreysayago/google-chat-notification, github.com/cjrh/aiodec, github.com/cjrh/aiohealthcheck, github.com/cjrh/aiologfields, @@ -363730,6 +371219,7 @@ github.com/cjrutherford/lineus-mongoose-wrapper,num_dependents_deps.dev:0 github.com/cjs-error/extend,num_dependents_deps.dev:0 github.com/cjs-error/utils,num_dependents_deps.dev:0 github.com/cjs-smith1993/static_server, +github.com/cjs226/effx-event-action, github.com/cjs77/grpc-dynamic-gateway,num_dependents_deps.dev:0 github.com/cjsauer/dmd-kramdown-plugin,num_dependents_deps.dev:0 github.com/cjsaylor/chessbot,num_dependents_deps.dev:0 @@ -363790,6 +371280,7 @@ github.com/cjuega/jest-s3,num_dependents_deps.dev:0 github.com/cjuega/serverless-translate-templateurls, github.com/cjulian/debug-react,num_dependents_deps.dev:0 github.com/cjulian/hello-world,num_dependents_deps.dev:0 +github.com/cjulianrivera/file-accent-validator-action, github.com/cjulianrivera/platzom,num_dependents_deps.dev:0 github.com/cjun714/2webp,num_dependents_deps.dev:0 github.com/cjun714/go-image,num_dependents_deps.dev:0 @@ -364016,6 +371507,9 @@ github.com/ckelsey/e1js,num_dependents_deps.dev:0 github.com/ckelsey/e1js-components,num_dependents_deps.dev:0 github.com/cker321/vue3-draggable-resizable,num_dependents_deps.dev:0 github.com/ckesanapalli/plower, +github.com/cketant/fetch-rc-milestone, +github.com/cketant/next-release-date, +github.com/cketant/reassign-deleted-milestone, github.com/cketti/EmailIntentBuilder,num_dependents_deps.dev:0 github.com/cketti/MailToCompat,num_dependents_deps.dev:0 github.com/cketti/PublicFileProvider,num_dependents_deps.dev:0 @@ -364045,6 +371539,7 @@ github.com/cking/xivcord,num_dependents_deps.dev:0 github.com/ckingdev/sortedcounter, github.com/ckiplab/ckiptagger, github.com/ckipp01/coc-metals,num_dependents_deps.dev:0 +github.com/ckipp01/mill-dependency-submission, github.com/ckipp01/webring-cli,num_dependents_deps.dev:0 github.com/ckir/node-bunyan-gcalendar,num_dependents_deps.dev:0 github.com/ckirby/django-model-ident, @@ -364091,6 +371586,7 @@ github.com/ckm2k1/node_logger,num_dependents_deps.dev:0 github.com/ckm3/Deep-Transit, github.com/ckmanalytix/modularity-density, github.com/ckmilse/js-image-Orientation,num_dependents_deps.dev:0 +github.com/ckmuun/gp-docker-action, github.com/cknave/volcorner, github.com/cknd/stackprinter, github.com/cknightdevelopment/ng-form-rules,num_dependents_deps.dev:0 @@ -364140,6 +371636,8 @@ github.com/ckotzbauer/cache-bust-loader, github.com/ckotzbauer/changelog-generator, github.com/ckotzbauer/chekr,num_dependents_deps.dev:0 github.com/ckotzbauer/extended-listbox, +github.com/ckotzbauer/kyverno-test-action, +github.com/ckotzbauer/label-command-action, github.com/ckotzbauer/lodash-loader,num_dependents_deps.dev:0 github.com/ckotzbauer/n26-api, github.com/ckotzbauer/node-task-runner, @@ -364171,6 +371669,8 @@ github.com/ckross01/eho,num_dependents_deps.dev:0 github.com/ckross01/key-casing,num_dependents_deps.dev:0 github.com/ckross01/sanitize-header-log,num_dependents_deps.dev:0 github.com/ckrowiorsch/mediaaccount-py, +github.com/ckrusemd/jupyterbook-action, +github.com/ckrusemd/rmarkdown-action, github.com/ckruszynsky/turnercentral.core,num_dependents_deps.dev:0 github.com/cksac/dataloader-rs,num_dependents_deps.dev:0 github.com/cksac/fake-rs,num_dependents_deps.dev:7 @@ -364239,6 +371739,7 @@ github.com/cl1ckname/tcp_chat, github.com/cl253/chuanglan253-java,num_dependents_deps.dev:0 github.com/cl3dson/mercury,num_dependents_deps.dev:0 github.com/cl4pper/smart-axios,num_dependents_deps.dev:0 +github.com/cl8dep/action-discord, github.com/cl8dep/components-validatorjs,num_dependents_deps.dev:0 github.com/cl8dep/react-components-utils, github.com/cl8n/node-osu-common,num_dependents_deps.dev:0 @@ -364277,6 +371778,7 @@ github.com/clabroche/mysterypackage,num_dependents_deps.dev:0 github.com/clabroche/nms-js,num_dependents_deps.dev:0 github.com/clabroche/stack-monitor,num_dependents_deps.dev:0 github.com/claby2/make-tui,num_dependents_deps.dev:0 +github.com/clach04/github_action_pebble_build, github.com/clach04/python-tuya, github.com/claclacla/Postcard.js,num_dependents_deps.dev:0 github.com/claclacla/PureSrc-A-functional-programming-approach-to-the-repository-pattern,num_dependents_deps.dev:0 @@ -364294,6 +371796,7 @@ github.com/cladikzone/cladik-redux-axios, github.com/cladikzone/redux-axios,num_dependents_deps.dev:0 github.com/cladjidane/react-native-sketch-canvas,num_dependents_deps.dev:0 github.com/cladjules/react-native-geolocation-helper,num_dependents_deps.dev:0 +github.com/cladular/generate-eth-address, github.com/claes-npm/serverless-plugin-typescript,num_dependents_deps.dev:0 github.com/claes-npm/typeorm,num_dependents_deps.dev:0 github.com/claesp/corrode,num_dependents_deps.dev:0 @@ -364524,6 +372027,9 @@ github.com/clariteia/minos_auth, github.com/clariteia/minos_auth_credential, github.com/clariteia/minos_auth_token, github.com/clarity-cc/cobalt-node,num_dependents_deps.dev:0 +github.com/clarity-contrib/size-label-action, +github.com/clarity-st/publish, +github.com/clarity-st/setup, github.com/claritychallenge/clarity_CEC1,Google github.com/claritycodeweb/inhibit,num_dependents_deps.dev:0 github.com/claritycodeweb/tiny,num_dependents_deps.dev:0 @@ -364634,6 +372140,7 @@ github.com/clarkie/pipe-to-slack,num_dependents_deps.dev:0 github.com/clarkie/ronnie-pickering,num_dependents_deps.dev:0 github.com/clarkie/sharx,num_dependents_deps.dev:0 github.com/clarkio/npx-card,num_dependents_deps.dev:0 +github.com/clarkio/snyk-cli-action, github.com/clarkkev/attention-analysis,Google github.com/clarklab/chowdown,criticality_score:0.337520 github.com/clarklindeveloper/sass-flexbox-grid, @@ -364691,6 +372198,7 @@ github.com/clarus/redux-ship,num_dependents_deps.dev:0 github.com/clarus/redux-ship-devtools,num_dependents_deps.dev:0 github.com/clarus/redux-ship-logger,num_dependents_deps.dev:0 github.com/claryaldringen/karma-graphql-preprocessor, +github.com/claserre9/wakatime-stats, github.com/clash-lang/clash-compiler,criticality_score:0.589090 github.com/clash-mini/clash.mini,num_dependents_deps.dev:0 github.com/clashcityrocka/tnkinv,num_dependents_deps.dev:0 @@ -364713,6 +372221,7 @@ github.com/class100/storage,num_dependents_deps.dev:0 github.com/class100/yunke-core,num_dependents_deps.dev:0 github.com/class4cxy/grunt-jdoc,num_dependents_deps.dev:0 github.com/classLfz/my-elements,num_dependents_deps.dev:0 +github.com/classabbyamp/treeless-checkout-action, github.com/classall/ngx-video-scrolling,num_dependents_deps.dev:0 github.com/classam/arglebargle,num_dependents_deps.dev:0 github.com/classam/parse-server-email-stub-adapter,num_dependents_deps.dev:0 @@ -364821,7 +372330,10 @@ github.com/classmethod/lifft-up,num_dependents_deps.dev:0 github.com/classmethod/tupl-titan-storage-backend,num_dependents_deps.dev:0 github.com/classner/pymp, github.com/classpass/flink-kotlin,num_dependents_deps.dev:0 +github.com/classpass/label-android-version-gradle-properties-action, +github.com/classpass/label-ios-version-info-plist-action, github.com/classpert/svg-globaldefs-webpack-plugin, +github.com/classpreloader/console, github.com/classpythonaddike/croissant,num_dependents_deps.dev:0 github.com/classpythonaddike/gowandbox,num_dependents_deps.dev:0 github.com/classroomtechtools/Endpoints,num_dependents_deps.dev:0 @@ -364953,6 +372465,7 @@ github.com/claudiajs/pandoc-aws-lambda-binary,num_dependents_deps.dev:0 github.com/claudiajs/rsvg-convert-aws-lambda-binary,num_dependents_deps.dev:0 github.com/claudialorenzon/python3_dojo, github.com/claudiamalasquezaq/LIM008-fe-md-links,num_dependents_deps.dev:0 +github.com/claudiamatosa/github-action-replace-pr-body, github.com/claudiamatosa/merry-ember, github.com/claudiaramirez/CDMX007-fe-md-links,num_dependents_deps.dev:0 github.com/claudiasg/EjemploNuevoNPM, @@ -365012,6 +372525,8 @@ github.com/claudiocro/vue-i18n-yummy,num_dependents_deps.dev:0 github.com/claudiodangelis/banco,num_dependents_deps.dev:0 github.com/claudiodangelis/microk,num_dependents_deps.dev:0 github.com/claudiodangelis/qrcp,"criticality_score:0.339190,num_dependents_deps.dev:0" +github.com/claudiodekker/changelog-updater, +github.com/claudiodekker/splitsh-action, github.com/claudiodema93/fut-21-web-app-injector,num_dependents_deps.dev:0 github.com/claudiodsf/nllgrid, github.com/claudiodsf/stockwell, @@ -365090,6 +372605,7 @@ github.com/claudiuconstantin/cron-editor,num_dependents_deps.dev:0 github.com/claudiumocanu/memcached-operator,num_dependents_deps.dev:0 github.com/claudiumocanu/tag-operator,num_dependents_deps.dev:0 github.com/claudiunicolaa/envsync,num_dependents_deps.dev:0 +github.com/claudiuri/deploy-gae-action, github.com/claudius108/kuberam,num_dependents_deps.dev:4 github.com/claudiutopriceanu/django-lightpdf, github.com/claudiuvintila/flask-rabbitmq, @@ -365119,6 +372635,7 @@ github.com/clausehound/phpass,num_dependents_deps.dev:0 github.com/clausejs/clausejs,num_dependents_deps.dev:0 github.com/clausjensen/grunt-umblocalize,num_dependents_deps.dev:0 github.com/clausjoergensen/jsIRC,num_dependents_deps.dev:0 +github.com/clausnz/github-action-download-maven-artifact, github.com/clausreinke/typescript-tools,num_dependents_deps.dev:2 github.com/clauswilke/PeptideBuilder, github.com/clauswilke/flupan, @@ -365422,6 +372939,7 @@ github.com/clcrum/mongod-run2,num_dependents_deps.dev:0 github.com/cld-santos/semantic-ui-range,num_dependents_deps.dev:0 github.com/cld11/go-katas,num_dependents_deps.dev:0 github.com/cld11/go-whispers,num_dependents_deps.dev:0 +github.com/cld4h/hugo-deploy, github.com/cldcvr/vuex, github.com/cldellow/csv2parquet, github.com/cldellow/gzip,num_dependents_deps.dev:0 @@ -365454,6 +372972,8 @@ github.com/clean-code-studio/prototypes,num_dependents_deps.dev:0 github.com/clean-code-studio/vue-as-services,num_dependents_deps.dev:0 github.com/clean-code-studio/vue-services-container,num_dependents_deps.dev:0 github.com/cleanRank/sool-template,num_dependents_deps.dev:0 +github.com/cleanchoice/cce-aws-secrets-manager-read-action, +github.com/cleanchoice/cce-branch-name-sanitizer, github.com/cleancodedojo/numerology-core,num_dependents_deps.dev:0 github.com/cleancoders9229/poc-microservices,num_dependents_deps.dev:0 github.com/cleancut/pipeviewer,num_dependents_deps.dev:0 @@ -365468,6 +372988,8 @@ github.com/cleanflight/cleanflight-configurator,criticality_score:0.461960 github.com/cleango/gallop,num_dependents_deps.dev:0 github.com/cleangram/cleangram, github.com/cleanlab/cleanlab, +github.com/cleanlab/deploy-bot, +github.com/cleanlab/merge-bot, github.com/cleanlang/clean,num_dependents_deps.dev:0 github.com/cleanmachine1/go-code,num_dependents_deps.dev:0 github.com/cleanoffer/javascript,num_dependents_deps.dev:0 @@ -370748,6 +378270,7 @@ github.com/clearlydefined/noticeme,num_dependents_deps.dev:0 github.com/clearlydefined/spdx,num_dependents_deps.dev:0 github.com/clearlydefined/website,num_dependents_deps.dev:0 github.com/clearlyhope/vuelidate,num_dependents_deps.dev:0 +github.com/clearlyip/code-coverage-report-action, github.com/clearlymine/pushbullet-go-cli,num_dependents_deps.dev:0 github.com/clearmatics/asset-token,num_dependents_deps.dev:0 github.com/clearmatics/ion,num_dependents_deps.dev:0 @@ -370783,6 +378306,9 @@ github.com/cleartime/npm-cli,num_dependents_deps.dev:0 github.com/clearvox/clearvox-state-machine,num_dependents_deps.dev:0 github.com/clearwater-rb/clearwater,num_dependents_deps.dev:0 github.com/clearwater/stdiogrpc,num_dependents_deps.dev:0 +github.com/clearwind-ca/create-event, +github.com/clearwind-ca/get-payload, +github.com/clearwind-ca/send-result, github.com/clearwsd/clearwsd,num_dependents_deps.dev:38 github.com/cleave3/owi_validator,num_dependents_deps.dev:0 github.com/cleavelandprice/ngx-lib,num_dependents_deps.dev:0 @@ -370840,6 +378366,10 @@ github.com/clebio/fake,num_dependents_deps.dev:0 github.com/clebsonpy/AnaHidroPythonApi, github.com/clebsonpy/HidroComp, github.com/clebsonpy/HydroComp, +github.com/clechasseur/rs-cargo, +github.com/clechasseur/rs-clippy-check, +github.com/clechasseur/rs-fmt-check, +github.com/clechasseur/waitaminute, github.com/cledar/ng-flexy,num_dependents_deps.dev:0 github.com/cleder/collective.lcstartp, github.com/cleder/czml, @@ -370882,6 +378412,7 @@ github.com/clef/jql-query-active-users,num_dependents_deps.dev:0 github.com/clef/jql-query-retention,num_dependents_deps.dev:0 github.com/clef/jql-tools,num_dependents_deps.dev:0 github.com/clef/passport-instant2fa,num_dependents_deps.dev:0 +github.com/clef10/aws-named-profile-action, github.com/clegaspi/saml_reader, github.com/clegendre/neeo_driver_squeezebox, github.com/cleggacus/simpstyle,num_dependents_deps.dev:0 @@ -370953,6 +378484,7 @@ github.com/clementallen/react-leaflet-textpath,num_dependents_deps.dev:0 github.com/clementallen/smithers,num_dependents_deps.dev:0 github.com/clementbalestrat/snx-balance,num_dependents_deps.dev:0 github.com/clementbat/treemap,num_dependents_deps.dev:0 +github.com/clementbernardd/workflow_python_tests, github.com/clementbrizard/shg-exercice-backend,num_dependents_deps.dev:0 github.com/clementchadebec/pyraug, github.com/clementdemily/jscolor,num_dependents_deps.dev:0 @@ -371223,6 +378755,8 @@ github.com/clevyr/create-clevyr,num_dependents_deps.dev:0 github.com/clevyr/kubedb,num_dependents_deps.dev:0 github.com/clevyr/mailhog,num_dependents_deps.dev:0 github.com/clevyr/scaffold,num_dependents_deps.dev:0 +github.com/clevyr/setup-kubedb-action, +github.com/clevyr/setup-yampl-action, github.com/clewiston/coinmetrics,num_dependents_deps.dev:0 github.com/clexit/data-checker,num_dependents_deps.dev:0 github.com/clexit/faker-all-extentions,num_dependents_deps.dev:0 @@ -371273,6 +378807,7 @@ github.com/cli-utilities/ncmd,num_dependents_deps.dev:0 github.com/cli-utils/cli-utils,num_dependents_deps.dev:0 github.com/cli/browser,num_dependents_deps.dev:5 github.com/cli/cli,"criticality_score:0.764270,num_dependents_deps.dev:3" +github.com/cli/gh-extension-precompile, github.com/cli/oauth,num_dependents_deps.dev:2 github.com/cli/shurcool-graphql,num_dependents_deps.dev:0 github.com/cli99/hypermodern-python-cli99, @@ -371303,6 +378838,7 @@ github.com/click33/sqlfly,num_dependents_deps.dev:0 github.com/clickagy/eslint-config,num_dependents_deps.dev:0 github.com/clickagy/nuxt-jsorm, github.com/clickalicious/ci-github-bot,num_dependents_deps.dev:0 +github.com/clickarmor/jira-smart-pr, github.com/clickatell/clickatell-node, github.com/clickatell/clickatell-python, github.com/clickbar/eslint-config, @@ -371311,6 +378847,7 @@ github.com/clickbar/prettier-config,num_dependents_deps.dev:0 github.com/clickblipclick/generator-simple-webpack,num_dependents_deps.dev:0 github.com/clickblipclick/react-winnebago,num_dependents_deps.dev:0 github.com/clickbox/generator-backdroptheme,num_dependents_deps.dev:0 +github.com/clickcaramel/PolyglotRocks, github.com/clickcash/clickcash-promo-api,num_dependents_deps.dev:0 github.com/clickholddrag/yhandlebars,num_dependents_deps.dev:0 github.com/clickhouse-extras/flatbuffers,num_dependents_deps.dev:0 @@ -371333,7 +378870,10 @@ github.com/clickpick/clickui,num_dependents_deps.dev:0 github.com/clickroad/clickroad-server,num_dependents_deps.dev:0 github.com/clicksco/Google-Analytics-Client-ID,num_dependents_deps.dev:0 github.com/clicksend/clicksend-go,num_dependents_deps.dev:0 +github.com/clicksign/branch-name-action, github.com/clicksign/clicksign-ruby,num_dependents_deps.dev:0 +github.com/clicksign/lagged-branches-action, +github.com/clicksign/slack-action, github.com/clickwithclark/eslint-config-clickwithclark,num_dependents_deps.dev:0 github.com/clickyab/vmap,num_dependents_deps.dev:0 github.com/clickyotomy/ext-ip,num_dependents_deps.dev:0 @@ -371504,6 +379044,7 @@ github.com/clinet/clinet,num_dependents_deps.dev:0 github.com/clinet/clinet-rewrite,num_dependents_deps.dev:0 github.com/clinfc/image-history,num_dependents_deps.dev:0 github.com/clinfc/m-observer,num_dependents_deps.dev:0 +github.com/clingclangclick/terraform-config-inspect-action, github.com/clingergab/kg_clingergab_2021,num_dependents_deps.dev:0 github.com/clingfei/opp,num_dependents_deps.dev:0 github.com/clinia/clinia-client-javascript,num_dependents_deps.dev:16 @@ -371706,6 +379247,7 @@ github.com/clipperhouse/jargon-typescript,num_dependents_deps.dev:0 github.com/clipperhouse/uax29,num_dependents_deps.dev:2 github.com/clipperz/password-manager,criticality_score:0.306590 github.com/clippings/align-blocks,num_dependents_deps.dev:0 +github.com/clippings/c4builder-action, github.com/clippings/date-ago,num_dependents_deps.dev:0 github.com/clippings/html5-sortable,num_dependents_deps.dev:0 github.com/clippings/hubot-remind,num_dependents_deps.dev:0 @@ -371716,6 +379258,7 @@ github.com/clippit/fis-parser-dot,num_dependents_deps.dev:0 github.com/clippit/gulp-bos,num_dependents_deps.dev:0 github.com/clips/pattern,criticality_score:0.404930 github.com/clips/wordkit, +github.com/clipsalsolar/custom-changeset-action, github.com/clipteam/clipcc-block,num_dependents_deps.dev:0 github.com/clipteam/clipcc-gui, github.com/clipteam/clipcc-l10n, @@ -371802,11 +379345,14 @@ github.com/clj-commons/potemkin,criticality_score:0.333340 github.com/clj-commons/rewrite-clj,criticality_score:0.395990 github.com/clj-commons/secretary,criticality_score:0.318290 github.com/clj-commons/useful,criticality_score:0.302580 +github.com/clj-holmes/clj-holmes-action, +github.com/clj-holmes/clj-watson-action, github.com/clj-kondo/clj-kondo,criticality_score:0.542620 github.com/clj-pdf/clj-pdf,criticality_score:0.371380 github.com/clj-python/libpython-clj,criticality_score:0.399460 github.com/clj/filtercoffee, github.com/cljdoc/cljdoc,criticality_score:0.436480 +github.com/cljdoc/cljdoc-check-action, github.com/cljfx/cljfx,criticality_score:0.456120 github.com/cljoly/into-ledger,num_dependents_deps.dev:0 github.com/cljoly/ledger-lint-duplicate,num_dependents_deps.dev:0 @@ -371963,6 +379509,7 @@ github.com/clocklimited/save-mongodb,num_dependents_deps.dev:0 github.com/clocklimited/stretch-checksummer,num_dependents_deps.dev:0 github.com/clockwork-dog/cogs-client-lib,num_dependents_deps.dev:0 github.com/clockwork-dog/cogs-client-react-lib,num_dependents_deps.dev:0 +github.com/clockwork-xyz/update-solana, github.com/clockworkjava/clockwork-engine,num_dependents_deps.dev:0 github.com/clockworkpi/launchergodev,num_dependents_deps.dev:0 github.com/clockworksoul/cog2,num_dependents_deps.dev:0 @@ -371976,6 +379523,7 @@ github.com/clockzhong/EmailBridgeForIPReport, github.com/clodio/express-lynx,num_dependents_deps.dev:0 github.com/clodop/golang,num_dependents_deps.dev:0 github.com/clodop/golang-udemy,num_dependents_deps.dev:0 +github.com/clodui/actions-cli, github.com/cloewen8/Plan-Loader,num_dependents_deps.dev:0 github.com/cloewen8/dolphin-fact,num_dependents_deps.dev:0 github.com/cloewen8/noblox.js,num_dependents_deps.dev:0 @@ -371994,6 +379542,7 @@ github.com/clojure-emacs/clojure-mode,criticality_score:0.502620 github.com/clojure-emacs/sayid,criticality_score:0.339840 github.com/clojure-liberator/liberator,criticality_score:0.376980 github.com/clojure-lsp/clojure-lsp,criticality_score:0.594700 +github.com/clojure-lsp/setup-clojure-lsp, github.com/clojure/algo.monads,criticality_score:0.351600 github.com/clojure/clojure,criticality_score:0.571000 github.com/clojure/clojure-clr,criticality_score:0.381350 @@ -372188,6 +379737,7 @@ github.com/cloud-archiver/feeds,num_dependents_deps.dev:0 github.com/cloud-archiver/tasks,num_dependents_deps.dev:0 github.com/cloud-ark/kubediscovery,num_dependents_deps.dev:0 github.com/cloud-ark/kubeplus,criticality_score:0.409210 +github.com/cloud-army/kaniko-action, github.com/cloud-automation/gulp-depend,num_dependents_deps.dev:0 github.com/cloud-automation/js-range-list,num_dependents_deps.dev:0 github.com/cloud-automation/node-modbus-tools,num_dependents_deps.dev:0 @@ -372264,6 +379814,7 @@ github.com/cloud-launcher/launch-cloud,num_dependents_deps.dev:0 github.com/cloud-launcher/launch-cloud-browser,num_dependents_deps.dev:0 github.com/cloud-launcher/launch-cloud-providers,num_dependents_deps.dev:4 github.com/cloud-launcher/provider-digitalocean,num_dependents_deps.dev:0 +github.com/cloud-maker-ai/github-action-deploy, github.com/cloud-mes/cloud-mes,num_dependents_deps.dev:0 github.com/cloud-mes/mes-data-semi,num_dependents_deps.dev:0 github.com/cloud-mist/golang_learning,num_dependents_deps.dev:0 @@ -372300,6 +379851,7 @@ github.com/cloud-walker/react-depree,num_dependents_deps.dev:0 github.com/cloud-walker/react-inspect,num_dependents_deps.dev:0 github.com/cloud-walker/react-tabs-handler,num_dependents_deps.dev:0 github.com/cloud-walker/react-web-scrolllock,num_dependents_deps.dev:0 +github.com/cloud-webide/group-github-activity-readme, github.com/cloud11665/fastbooru, github.com/cloud3000/makerootcss,num_dependents_deps.dev:0 github.com/cloud3000/tasktick,num_dependents_deps.dev:0 @@ -372359,6 +379911,7 @@ github.com/cloudant/nodejs-cloudant,"criticality_score:0.515680,num_dependents_d github.com/cloudant/python-cloudant, github.com/cloudant/sabisu,num_dependents_deps.dev:0 github.com/cloudant/sync-android,num_dependents_deps.dev:23 +github.com/cloudaper/epics-action, github.com/cloudapp/cloudapp,num_dependents_deps.dev:0 github.com/cloudb2/processus,num_dependents_deps.dev:4 github.com/cloudb2/processus-api,num_dependents_deps.dev:0 @@ -372373,6 +379926,12 @@ github.com/cloudbeer/common-tools,num_dependents_deps.dev:0 github.com/cloudbeer/egg-router,num_dependents_deps.dev:0 github.com/cloudbeer/ezway2mongo,num_dependents_deps.dev:2 github.com/cloudbeer/koa-pg-naive-orm,num_dependents_deps.dev:0 +github.com/cloudbees-github-actions/create-release-from-template, +github.com/cloudbees-github-actions/eval-dsl, +github.com/cloudbees-github-actions/run-pipeline, +github.com/cloudbees-github-actions/run-procedure, +github.com/cloudbees-github-actions/run-process, +github.com/cloudbees-github-actions/start-release, github.com/cloudbees-oss/juxr,num_dependents_deps.dev:0 github.com/cloudbees/autochangelog-maven-plugin,num_dependents_deps.dev:0 github.com/cloudbees/bees-maven-components,num_dependents_deps.dev:18 @@ -372384,6 +379943,7 @@ github.com/cloudbees/jenkins-scripts,criticality_score:0.338950 github.com/cloudbees/jetty-redis-sessions,num_dependents_deps.dev:0 github.com/cloudbees/jnr-unixsocket-nodep,num_dependents_deps.dev:0 github.com/cloudbees/openid4java-shaded,num_dependents_deps.dev:0 +github.com/cloudbees/plantuml-github-action, github.com/cloudbees/react-material-icons,num_dependents_deps.dev:4 github.com/cloudbees/shipyard,num_dependents_deps.dev:0 github.com/cloudbees/vietnam4j,num_dependents_deps.dev:0 @@ -372625,6 +380185,7 @@ github.com/cloudflare/odoh-go,num_dependents_deps.dev:1 github.com/cloudflare/odoh-rs,num_dependents_deps.dev:2 github.com/cloudflare/odoh-server-go,num_dependents_deps.dev:0 github.com/cloudflare/origin-ca-issuer,num_dependents_deps.dev:0 +github.com/cloudflare/pages-action, github.com/cloudflare/pint,num_dependents_deps.dev:0 github.com/cloudflare/py-mmdb-encoder, github.com/cloudflare/python-cloudflare, @@ -373096,18 +380657,36 @@ github.com/cloudical-io/ancientt,num_dependents_deps.dev:0 github.com/cloudidc/docker-images,num_dependents_deps.dev:0 github.com/cloudier/passport-local-optional-password,num_dependents_deps.dev:0 github.com/cloudiercom/cloudiersite-cli,num_dependents_deps.dev:0 +github.com/cloudify-cosmo/arm-action, +github.com/cloudify-cosmo/cli-action, +github.com/cloudify-cosmo/cloudformation-action, github.com/cloudify-cosmo/cloudify-agent-packager, +github.com/cloudify-cosmo/cloudify-comment-action, github.com/cloudify-cosmo/cloudify-java-rest-client,num_dependents_deps.dev:0 github.com/cloudify-cosmo/cloudify-ui-common,num_dependents_deps.dev:0 github.com/cloudify-cosmo/cloudify-ui-components,num_dependents_deps.dev:0 +github.com/cloudify-cosmo/create-environment-action, +github.com/cloudify-cosmo/delete-environment-action, +github.com/cloudify-cosmo/environment-data-action, +github.com/cloudify-cosmo/environment-data-using-labels-action, +github.com/cloudify-cosmo/execute-workflow-action, github.com/cloudify-cosmo/hubot-flowdock-irc-relay,num_dependents_deps.dev:0 +github.com/cloudify-cosmo/init-action, +github.com/cloudify-cosmo/install-or-update-action, +github.com/cloudify-cosmo/kubernetes-action, github.com/cloudify-cosmo/packman, github.com/cloudify-cosmo/repex, github.com/cloudify-cosmo/surch, github.com/cloudify-cosmo/tattle, +github.com/cloudify-cosmo/terraform-action, +github.com/cloudify-cosmo/terraform-apply-action, +github.com/cloudify-cosmo/terraform-cost-action, +github.com/cloudify-cosmo/terraform-destroy-action, +github.com/cloudify-cosmo/terraform-plan-action, github.com/cloudify-cosmo/wagon, github.com/cloudify-cosmo/wheelr, github.com/cloudify-incubator/cloudify-utilities-plugins-sdk, +github.com/cloudify-ro/cloudify-deploy, github.com/cloudify/node-authhmac,num_dependents_deps.dev:0 github.com/cloudify/sPDF,num_dependents_deps.dev:0 github.com/cloudifyjs/restful,num_dependents_deps.dev:0 @@ -373190,6 +380769,7 @@ github.com/cloudmailin/cloudmailin-js,num_dependents_deps.dev:0 github.com/cloudmanic/cache-warmer,num_dependents_deps.dev:0 github.com/cloudmarker/cloudmarker, github.com/cloudmation-llc/cdk-cross-account-plugin,num_dependents_deps.dev:0 +github.com/cloudmatos/matos-iac-github-actions, github.com/cloudmatrix/esky, github.com/cloudmatrix/myppy, github.com/cloudmatrix/pysidekick, @@ -373316,7 +380896,44 @@ github.com/cloudpbx/kit,num_dependents_deps.dev:0 github.com/cloudpipe/cloudpickle,criticality_score:0.516090 github.com/cloudpipe/multyvac-fork, github.com/cloudposse/geodesic,criticality_score:0.438780 +github.com/cloudposse/github-action-atmos-affected-stacks, +github.com/cloudposse/github-action-atmos-affected-trigger-spacelift, +github.com/cloudposse/github-action-atmos-get-setting, +github.com/cloudposse/github-action-atmos-matrix-unlimited, +github.com/cloudposse/github-action-atmos-terraform-drift-detection, +github.com/cloudposse/github-action-auto-format, +github.com/cloudposse/github-action-aws-region-reduction-map, +github.com/cloudposse/github-action-deploy-argocd, +github.com/cloudposse/github-action-deploy-ecspresso, +github.com/cloudposse/github-action-deploy-helmfile, +github.com/cloudposse/github-action-docker-build-push, +github.com/cloudposse/github-action-docker-compose-test-run, +github.com/cloudposse/github-action-docker-image-exists, +github.com/cloudposse/github-action-docker-promote, +github.com/cloudposse/github-action-interface-environment, +github.com/cloudposse/github-action-jq, +github.com/cloudposse/github-action-kubernetes-environment, +github.com/cloudposse/github-action-matrix-extended, +github.com/cloudposse/github-action-matrix-outputs-read, +github.com/cloudposse/github-action-matrix-outputs-write, +github.com/cloudposse/github-action-monorepo-random-controller, +github.com/cloudposse/github-action-pre-commit, +github.com/cloudposse/github-action-preview-environment-controller, +github.com/cloudposse/github-action-preview-labels-cleanup, +github.com/cloudposse/github-action-run-ecspresso, +github.com/cloudposse/github-action-secret-outputs, +github.com/cloudposse/github-action-seek-deployment, +github.com/cloudposse/github-action-setup-atmos, +github.com/cloudposse/github-action-spacelift-deploy, +github.com/cloudposse/github-action-spacelift-stack-deploy, +github.com/cloudposse/github-action-string-transformer, +github.com/cloudposse/github-action-sync-docker-repos, +github.com/cloudposse/github-action-terraform-plan-storage, +github.com/cloudposse/github-action-terratest, +github.com/cloudposse/github-action-wait-commit-status, +github.com/cloudposse/github-action-yaml-config-query, github.com/cloudposse/github-status-updater,num_dependents_deps.dev:0 +github.com/cloudposse/kubernetes-namespace-builder-composite-action, github.com/cloudposse/slack-notifier,num_dependents_deps.dev:0 github.com/cloudposse/terraform-null-label,criticality_score:0.441190 github.com/cloudposse/terraform-provider-awsutils,num_dependents_deps.dev:0 @@ -373340,6 +380957,7 @@ github.com/cloudquery/cq-provider-okta,num_dependents_deps.dev:0 github.com/cloudquery/cq-provider-sdk,num_dependents_deps.dev:0 github.com/cloudquery/cq-provider-template,num_dependents_deps.dev:0 github.com/cloudquery/go-funk,num_dependents_deps.dev:2 +github.com/cloudquery/setup-cloudquery, github.com/cloudqwest/migrate,num_dependents_deps.dev:0 github.com/cloudr-app/opensoundcloud,num_dependents_deps.dev:0 github.com/cloudradar-monitoring/cagent,num_dependents_deps.dev:0 @@ -373377,6 +380995,7 @@ github.com/cloudsadhu/dojo_rules, github.com/cloudsafe/react-native-qiniu-sf,num_dependents_deps.dev:0 github.com/cloudsafe/react-native-transformable-video,num_dependents_deps.dev:0 github.com/cloudsbird/blog,num_dependents_deps.dev:0 +github.com/cloudsbird/storybook-s3, github.com/cloudsbit/virtual-disks,num_dependents_deps.dev:0 github.com/cloudscale-ch/cloudscale-cli, github.com/cloudscale-ch/cloudscale-go-sdk,num_dependents_deps.dev:1 @@ -373388,6 +381007,7 @@ github.com/cloudscale-ch/python-cloudscale, github.com/cloudscale-ch/terraform-provider-cloudscale,num_dependents_deps.dev:0 github.com/cloudscheduler/cloudscheduler,num_dependents_deps.dev:0 github.com/cloudscribe/cloudscribe,criticality_score:0.414360 +github.com/cloudscroll/caas-github-action, github.com/cloudseagen/gorpc,num_dependents_deps.dev:0 github.com/cloudseam/validator,num_dependents_deps.dev:0 github.com/cloudsen12/easystac, @@ -373406,6 +381026,7 @@ github.com/cloudsigma/pycloudsigma, github.com/cloudsigma/terraform-provider-cloudsigma,num_dependents_deps.dev:0 github.com/cloudskiff/driftctl,"criticality_score:0.354640,num_dependents_deps.dev:0" github.com/cloudskiff/lambda-env-updater,num_dependents_deps.dev:0 +github.com/cloudsmith-io/action, github.com/cloudsmith-io/cloudsmith-api,num_dependents_deps.dev:0 github.com/cloudsmith-io/cloudsmith-cli, github.com/cloudsmith-io/terraform-provider-cloudsmith,num_dependents_deps.dev:0 @@ -373469,6 +381090,7 @@ github.com/cloudstoneme/wp-auto-index-php,num_dependents_deps.dev:0 github.com/cloudstrife9494/fastRecorder_project,num_dependents_deps.dev:0 github.com/cloudstrife9494/immutable-objects,num_dependents_deps.dev:0 github.com/cloudstufftech/go-utils,num_dependents_deps.dev:0 +github.com/cloudswave/issue2csdn, github.com/cloudsynth/core-share,num_dependents_deps.dev:0 github.com/cloudtamer-io/terraform-provider-cloudtamerio,num_dependents_deps.dev:0 github.com/cloudtechy/laravel-project,num_dependents_deps.dev:0 @@ -373495,12 +381117,17 @@ github.com/cloudtrust/gg,num_dependents_deps.dev:0 github.com/cloudtrust/httpclient,num_dependents_deps.dev:0 github.com/cloudtrust/keycloak-bridge,num_dependents_deps.dev:0 github.com/cloudtrust/keycloak-client,num_dependents_deps.dev:0 +github.com/cloudtruth/cli-action, +github.com/cloudtruth/configure-action, github.com/cloudtruth/interposer, +github.com/cloudtype-github-actions/connect, +github.com/cloudtype-github-actions/deploy, github.com/cloudup/add-component-symlinks,num_dependents_deps.dev:0 github.com/cloudup/mongo-diff,num_dependents_deps.dev:0 github.com/cloudup/mongo-eql,num_dependents_deps.dev:22 github.com/cloudup/mongo-query,num_dependents_deps.dev:8 github.com/cloudup/mydb-client,num_dependents_deps.dev:0 +github.com/cloudvaio/workflow-forge-trigger, github.com/cloudve/djcloudbridge, github.com/cloudve/galaxycloudrunner, github.com/cloudve/pyeventsystem, @@ -373553,6 +381180,9 @@ github.com/cloudyrock/dimmer-core,num_dependents_deps.dev:0 github.com/cloudyrock/mongock,num_dependents_deps.dev:58 github.com/cloudyrock/mongock-core,num_dependents_deps.dev:312 github.com/cloudyrock/reactive-http,num_dependents_deps.dev:0 +github.com/cloudyspells/PSCO2Signal, +github.com/cloudyspells/PSElectricityMaps, +github.com/cloudyspells/PSWattTime, github.com/cloudziq/squished,num_dependents_deps.dev:0 github.com/clouedoc/puppeteer-extra-plugin-session, github.com/clouedoc/puppeteer-extra-plugin-timezone,num_dependents_deps.dev:0 @@ -373586,6 +381216,7 @@ github.com/clout-stack/clout-cli,num_dependents_deps.dev:0 github.com/clout-stack/clout-js,num_dependents_deps.dev:0 github.com/clout-stack/nginx-o,num_dependents_deps.dev:0 github.com/clout-stack/openstack-auth-sdk,num_dependents_deps.dev:0 +github.com/cloutojp/heroku-deploy, github.com/cloutsta/backend,num_dependents_deps.dev:0 github.com/cloutsta/core,num_dependents_deps.dev:0 github.com/clouudsoftware/environment,num_dependents_deps.dev:0 @@ -373671,6 +381302,9 @@ github.com/clovity/utils,num_dependents_deps.dev:0 github.com/clovityinc/node-red-contrib-azure-event-hub-send-message,num_dependents_deps.dev:0 github.com/clowboy-com/antiflood,num_dependents_deps.dev:0 github.com/clowder-framework/pyclowder, +github.com/clowdhaus/argo-cd-action, +github.com/clowdhaus/aws-lambda-code-signing-action, +github.com/clowdhaus/compress, github.com/clowdhaus/serverless-python-requirements,num_dependents_deps.dev:0 github.com/clowdhaus/terraform-min-max,num_dependents_deps.dev:0 github.com/clowdr-app/srt-webvtt,num_dependents_deps.dev:0 @@ -373741,6 +381375,7 @@ github.com/clstoulouse/motu-client-python, github.com/clsung/gdapi, github.com/clsung/gorequest,num_dependents_deps.dev:0 github.com/clsung/plurk-oauth, +github.com/clszzyh/elixir_bot, github.com/clthck/github-contrib-stats,num_dependents_deps.dev:0 github.com/clthck/gitlab-api-wrapper,num_dependents_deps.dev:0 github.com/clthck/grunt-contrib-jade-php,num_dependents_deps.dev:0 @@ -373927,6 +381562,7 @@ github.com/clundberg1/reactive-forms,num_dependents_deps.dev:0 github.com/cluny85/bcbp-parser,num_dependents_deps.dev:0 github.com/cluny85/bitfinex-hero,num_dependents_deps.dev:0 github.com/cluny85/node-fcm-hero,num_dependents_deps.dev:0 +github.com/clupprich/ruby-build-action, github.com/clupt/lodown,num_dependents_deps.dev:0 github.com/cluracan/create-web3-provider,num_dependents_deps.dev:0 github.com/cluracan/ez-ens,num_dependents_deps.dev:0 @@ -374003,6 +381639,8 @@ github.com/clutch-creator/node-libs,num_dependents_deps.dev:4 github.com/clutch-creator/react-extension,num_dependents_deps.dev:184 github.com/clutch-creator/react-jsonschema-form,num_dependents_deps.dev:0 github.com/clutchcanada/helpers, +github.com/clutchd/turbostart-npm, +github.com/clutchd/turbostart-pnpm, github.com/clutchd/ui,num_dependents_deps.dev:0 github.com/clutchmodules/MobileSDKAndroid,num_dependents_deps.dev:0 github.com/clutchski/caribou, @@ -374190,6 +381828,7 @@ github.com/cmaddux/pipemongo,num_dependents_deps.dev:0 github.com/cmaer/cmaer348-packaging-test, github.com/cmagness/spectrAOD, github.com/cmagnuso/DroneConnect, +github.com/cmaguranis/reviewer-lottery, github.com/cmaher/backbone.hoard,num_dependents_deps.dev:0 github.com/cmajid/ng2-momentjs-helper,num_dependents_deps.dev:0 github.com/cmajid/ng2-string-helper,num_dependents_deps.dev:0 @@ -374322,6 +381961,8 @@ github.com/cmbrad/ausfin-scrape, github.com/cmbrad/studentit-bookit-client, github.com/cmbrad/ventraip-vip-client, github.com/cmbrandenburg/sparkle-dns,num_dependents_deps.dev:0 +github.com/cmbrose/add-issue-to-project-vnext, +github.com/cmbrose/github-docs-to-wiki, github.com/cmbruns/pyopenvr, github.com/cmbruns/pyopenxr, github.com/cmbruns/pyovr, @@ -374336,6 +381977,7 @@ github.com/cmcaine/csp-serdes,num_dependents_deps.dev:0 github.com/cmcampione/thingshub.org,num_dependents_deps.dev:0 github.com/cmcarey/smart-router,num_dependents_deps.dev:0 github.com/cmcavoy/fancy-groupme-bot,num_dependents_deps.dev:0 +github.com/cmcc-ict/onemessage-notify-action, github.com/cmccandless/argutil, github.com/cmccandless/homectl, github.com/cmccandless/markdown-generator, @@ -374455,6 +382097,7 @@ github.com/cmdominguez/react-native-wix-tab-template, github.com/cmdoret/hicreppy, github.com/cmdoret/pareidolia, github.com/cmdoret/tinycov, +github.com/cmdotcom/text-actions, github.com/cmdotcom/text-sdk-javascript,num_dependents_deps.dev:0 github.com/cmdotcom/text-sdk-python, github.com/cmdowney88/chonker, @@ -374546,6 +382189,7 @@ github.com/cmgriffing/create-streamdeck-plugin,num_dependents_deps.dev:0 github.com/cmgriffing/dependabotbot,num_dependents_deps.dev:0 github.com/cmgriffing/gatsby-plugin-pagenv,num_dependents_deps.dev:0 github.com/cmgriffing/react-streamdeck,num_dependents_deps.dev:0 +github.com/cmgriffing/scully-gh-pages-action, github.com/cmgrote/ibm-ia-rest,num_dependents_deps.dev:0 github.com/cmgrote/ibm-igc-lineage,num_dependents_deps.dev:0 github.com/cmgrote/ibm-igc-rest,num_dependents_deps.dev:0 @@ -374708,6 +382352,7 @@ github.com/cmorten/cypress-web-vitals,num_dependents_deps.dev:0 github.com/cmorterud/flask-eztest, github.com/cmoscofian/meliponto,num_dependents_deps.dev:0 github.com/cmosetick/go-http2-demo,num_dependents_deps.dev:0 +github.com/cmosh/action-tmate, github.com/cmosh/gitflow-windows,num_dependents_deps.dev:0 github.com/cmosh/pg-aggregates,num_dependents_deps.dev:0 github.com/cmosher01/gedcom-tools,num_dependents_deps.dev:0 @@ -374740,6 +382385,7 @@ github.com/cmproductions/go-check-certs,num_dependents_deps.dev:0 github.com/cmpsc-481-s22-m1/CASTanet, github.com/cmpsc-481-s22-m1/GatorConfig, github.com/cmpsc-481-s22-m1/PyPiCounter, +github.com/cmpsoares/label-based-pr-policy-action, github.com/cmpsoares91/NMAE,num_dependents_deps.dev:0 github.com/cmpsr/composer,num_dependents_deps.dev:0 github.com/cmptech/nodenodenode,num_dependents_deps.dev:0 @@ -374826,6 +382472,7 @@ github.com/cmsgov/dpc-app,num_dependents_deps.dev:0 github.com/cmsgov/easi-app,num_dependents_deps.dev:0 github.com/cmsgov/security-hub-collector,num_dependents_deps.dev:0 github.com/cmsgov/terraform-aws-cms-ars-saf-rds-mysql-ecr,num_dependents_deps.dev:0 +github.com/cmsj/annotations-action, github.com/cmsj/homebridge-linux-temperature,num_dependents_deps.dev:0 github.com/cmsj/prombzex, github.com/cmsonfire/cli,num_dependents_deps.dev:0 @@ -375011,6 +382658,10 @@ github.com/cn-troy/fishfx,num_dependents_deps.dev:0 github.com/cn-uofbasel/SurfCity, github.com/cn-ws/rfactor, github.com/cn-wx/vue-hotspot,num_dependents_deps.dev:0 +github.com/cn-xyz/docker-sync, +github.com/cn-xyz/git-push, +github.com/cn-xyz/huawei-sync, +github.com/cn-xyz/skopeo-ctl, github.com/cn/GB2260,num_dependents_deps.dev:0 github.com/cn/GB2260.js,num_dependents_deps.dev:0 github.com/cn/GB2260.py, @@ -375021,6 +382672,7 @@ github.com/cn007b/api-gateway,num_dependents_deps.dev:0 github.com/cn007b/getthemall,num_dependents_deps.dev:0 github.com/cn007b/is-it-object, github.com/cn007b/isobject,num_dependents_deps.dev:0 +github.com/cn007b/log-action, github.com/cn007b/pylog, github.com/cn007b/short-string-number,num_dependents_deps.dev:0 github.com/cn0xroot/gnbsim,num_dependents_deps.dev:0 @@ -375159,6 +382811,7 @@ github.com/cnheider/draugr, github.com/cnheider/munin, github.com/cnheider/nisse, github.com/cnheider/notus, +github.com/cnheider/postdoc, github.com/cnheider/trolls, github.com/cnheider/yeet, github.com/cnhnkj/java-sdk,num_dependents_deps.dev:0 @@ -375367,6 +383020,7 @@ github.com/cnsqqmapan/go,num_dependents_deps.dev:0 github.com/cnstark/easytorch, github.com/cnstr/canister.py, github.com/cnswoolley10/Polymer-Plotting, +github.com/cnsync/image-sync, github.com/cnt-dev/cnt.rulebase, github.com/cnt-dev/cnt.sam, github.com/cnt-dev/pytorch-fast-elmo, @@ -375412,6 +383066,7 @@ github.com/cnvogelg/bare68k, github.com/cnvogelg/tentacle, github.com/cnwangjie/config.js,num_dependents_deps.dev:0 github.com/cnwangjie/ioredis,num_dependents_deps.dev:0 +github.com/cnwangjie/run-rs-action, github.com/cnwangjie/unsplashs,num_dependents_deps.dev:0 github.com/cnwangjie/url2io-js,num_dependents_deps.dev:0 github.com/cnwangjie/yag,num_dependents_deps.dev:0 @@ -375524,6 +383179,9 @@ github.com/coachme/config-me,num_dependents_deps.dev:0 github.com/coachme/console-me,num_dependents_deps.dev:0 github.com/coachshea/browserify-livescript,num_dependents_deps.dev:0 github.com/coachshea/pugify-html,num_dependents_deps.dev:0 +github.com/coactions/dynamic-matrix, +github.com/coactions/setup-xvfb, +github.com/coadaflorin/source-action, github.com/coadler/discordgo,num_dependents_deps.dev:0 github.com/coadler/discordrus,num_dependents_deps.dev:0 github.com/coadler/go-licenses,num_dependents_deps.dev:0 @@ -375600,6 +383258,7 @@ github.com/coalescecreate/rekaf,num_dependents_deps.dev:0 github.com/coalescecreate/remooz,num_dependents_deps.dev:0 github.com/coalescecreate/reppam,num_dependents_deps.dev:0 github.com/coalfire/carvajal, +github.com/coalfire/github-threadfix-scan-upload, github.com/coalfire/nexpose-py, github.com/coalfire/test-aws, github.com/coalman/test-dt,num_dependents_deps.dev:0 @@ -375646,6 +383305,8 @@ github.com/coatesap/day-rate-expense-generator,num_dependents_deps.dev:0 github.com/coatilabs/keystone-fs-image-storage-adapter,num_dependents_deps.dev:0 github.com/coatilabs/keystone-storage-adapter-s3,num_dependents_deps.dev:0 github.com/coatk1/playground, +github.com/coatl-dev/action-pre-commit-autoupdate, +github.com/coatl-dev/action-pypi-upload, github.com/coatofbits/vuex-web3,num_dependents_deps.dev:0 github.com/coatue-oss/angular2react, github.com/coatue-oss/browser-activity-monitor, @@ -375772,8 +383433,10 @@ github.com/cobish/jquery.scrolltop,num_dependents_deps.dev:0 github.com/cobish/jquery.slide,num_dependents_deps.dev:0 github.com/coblo/mcrpc, github.com/coblox/bitcoinrpc_rust_client,num_dependents_deps.dev:0 +github.com/coblox/label-slow-prs, github.com/coblox/rust-siren-types,num_dependents_deps.dev:0 github.com/coblox/testcontainers-rs,num_dependents_deps.dev:14 +github.com/coblox/zenhub-link-pr-to-issue, github.com/cobocustody/cobo-go-api,num_dependents_deps.dev:0 github.com/cobolab/clihp,num_dependents_deps.dev:0 github.com/cobolab/deport,num_dependents_deps.dev:0 @@ -375784,6 +383447,8 @@ github.com/cobomi/less-plugin-no-comment,num_dependents_deps.dev:0 github.com/cobomi/less-plugin-theme,num_dependents_deps.dev:0 github.com/cobonla/DilationPlayer,num_dependents_deps.dev:0 github.com/cobookman/express-sql-session,num_dependents_deps.dev:0 +github.com/cobot/couchdb-action, +github.com/cobot/deploy-window-action, github.com/coboxcoop/cobox-config,num_dependents_deps.dev:4 github.com/coboxcoop/cobox-group,num_dependents_deps.dev:2 github.com/coboxcoop/kappa-private,num_dependents_deps.dev:0 @@ -375862,6 +383527,7 @@ github.com/cocaine/cocaine-framework-python, github.com/cocaine/cocaine-pipeline, github.com/cocaine/cocaine-tools, github.com/cocalc/markdown-it-katex,num_dependents_deps.dev:0 +github.com/cocallaw/upstream-container, github.com/cocapai/account,num_dependents_deps.dev:0 github.com/cocaux/summernote-accordion,num_dependents_deps.dev:0 github.com/coccinelle/coccinelle,criticality_score:0.637110 @@ -375931,6 +383597,7 @@ github.com/cockswapdev/clocktest-uikit,num_dependents_deps.dev:0 github.com/cockswapdev/clockworkfinance-uikit, github.com/cocktail-insights/react-multi-select,num_dependents_deps.dev:0 github.com/cocktailcss/cocktail, +github.com/coco-hkk/compress-action, github.com/coco-platform/babel-plugin-import-css-module,num_dependents_deps.dev:0 github.com/coco-platform/handlebars-extension,num_dependents_deps.dev:0 github.com/coco-platform/init-cli, @@ -375955,6 +383622,7 @@ github.com/cocoabox/node-felica,num_dependents_deps.dev:0 github.com/cocoahero/android-geojson,num_dependents_deps.dev:6 github.com/cocoakekeyu/cancan, github.com/cocoakekeyu/delay-rq, +github.com/cocoalibs/xcode-notarization-action, github.com/cocoapods/cocoapods-podfile_info,num_dependents_deps.dev:0 github.com/cocoatomo/pygments-dmdl, github.com/cocobao/comm-go,num_dependents_deps.dev:0 @@ -375965,6 +383633,7 @@ github.com/cocodinTech/barcode-scan, github.com/cocodinTech/situm-cordova-plugin,num_dependents_deps.dev:0 github.com/cocodrips/doc-cov, github.com/cocodrips/negima, +github.com/cocogitto/cocogitto-action, github.com/cocohd/video_server,num_dependents_deps.dev:0 github.com/cocoismywife/tr-core, github.com/cocojambo320/quadratic-sieve, @@ -376086,9 +383755,11 @@ github.com/codacy-acme/go-math,num_dependents_deps.dev:0 github.com/codacy/bitbucket-scala-client,num_dependents_deps.dev:0 github.com/codacy/chronicle-queue-stream,num_dependents_deps.dev:0 github.com/codacy/codacy-analysis-cli,num_dependents_deps.dev:0 +github.com/codacy/codacy-analysis-cli-action, github.com/codacy/codacy-api-java,num_dependents_deps.dev:0 github.com/codacy/codacy-api-typescript,num_dependents_deps.dev:0 github.com/codacy/codacy-coverage-reporter,num_dependents_deps.dev:0 +github.com/codacy/codacy-coverage-reporter-action, github.com/codacy/codacy-duplication-scala-seed,num_dependents_deps.dev:0 github.com/codacy/codacy-engine-golang-seed,num_dependents_deps.dev:0 github.com/codacy/codacy-engine-scala-seed,num_dependents_deps.dev:0 @@ -376101,6 +383772,7 @@ github.com/codacy/codacy-scalameta,num_dependents_deps.dev:0 github.com/codacy/codacy-usage-report,num_dependents_deps.dev:0 github.com/codacy/coverage-parser,num_dependents_deps.dev:0 github.com/codacy/env4config,num_dependents_deps.dev:0 +github.com/codacy/git-version, github.com/codacy/helm-poll,num_dependents_deps.dev:0 github.com/codacy/helm-ssm,num_dependents_deps.dev:0 github.com/codacy/node-codacy-coverage,num_dependents_deps.dev:24 @@ -376141,7 +383813,9 @@ github.com/codalab/codalab-competitions,criticality_score:0.462500 github.com/codalab/codalab-worksheets, github.com/codaline-io/angular-stl-model-viewer, github.com/codaline-io/apollo-graphql-ws-link,num_dependents_deps.dev:0 +github.com/codaline-io/dev-version-action, github.com/codaline-io/ionic-datepicker,num_dependents_deps.dev:0 +github.com/codaline-io/node-versionless-cache-key, github.com/codaline-io/parcel-optimizer-replace-envs,num_dependents_deps.dev:0 github.com/codalyzedev/common-utils,num_dependents_deps.dev:0 github.com/codalyzedev/node-commons, @@ -376393,6 +384067,7 @@ github.com/code-lever/eagletree-log,num_dependents_deps.dev:0 github.com/code-lever/mavlink-log,num_dependents_deps.dev:0 github.com/code-lever/spektrum-log,num_dependents_deps.dev:0 github.com/code-like-a-carpenter/components,num_dependents_deps.dev:0 +github.com/code-lts/doctum, github.com/code-lts/locutus.sprintf,num_dependents_deps.dev:0 github.com/code-lucidal58/go_lang_basics,num_dependents_deps.dev:0 github.com/code-machina/DeFastestImgExpress,num_dependents_deps.dev:0 @@ -376415,6 +384090,7 @@ github.com/code-mcx/mcx-dialog,num_dependents_deps.dev:0 github.com/code-mcx/mcx-dialog-mobile,num_dependents_deps.dev:0 github.com/code-mm/urban-farming-backend,num_dependents_deps.dev:0 github.com/code-museum/bytes, +github.com/code-name-barcelona/barcelona-action, github.com/code-newbee/geeker,num_dependents_deps.dev:0 github.com/code-newbee/geeker-client,num_dependents_deps.dev:0 github.com/code-newbee/grpc-gateway,num_dependents_deps.dev:0 @@ -376452,6 +384128,8 @@ github.com/code-scan/wpgo,num_dependents_deps.dev:0 github.com/code-shambles/experi-mental,num_dependents_deps.dev:0 github.com/code-shambles/x-berry-mental,num_dependents_deps.dev:0 github.com/code-sleuth/vending-machine,num_dependents_deps.dev:0 +github.com/code-soup/repo-action, +github.com/code-specialist/pypi-poetry-publish, github.com/code-star/andromeda,num_dependents_deps.dev:0 github.com/code-star/nope,num_dependents_deps.dev:0 github.com/code-star/phoenix,num_dependents_deps.dev:0 @@ -376483,6 +384161,7 @@ github.com/code0100fun/calculus,num_dependents_deps.dev:0 github.com/code0100fun/ember-cli-hbars,num_dependents_deps.dev:0 github.com/code0100fun/hbars,num_dependents_deps.dev:0 github.com/code0100fun/quadrotor,num_dependents_deps.dev:0 +github.com/code041/angular-lib-workflow, github.com/code0716/clean_architecture,num_dependents_deps.dev:0 github.com/code0wl/anagram-checker,num_dependents_deps.dev:0 github.com/code0wl/basin.js,num_dependents_deps.dev:0 @@ -376495,6 +384174,7 @@ github.com/code0wl/typescript-rxjs-webpack,num_dependents_deps.dev:0 github.com/code0x58/fsnotify,num_dependents_deps.dev:0 github.com/code11/engine,num_dependents_deps.dev:0 github.com/code1305/go,num_dependents_deps.dev:0 +github.com/code16/detect-laravel-ray-action, github.com/code16/formoj,num_dependents_deps.dev:0 github.com/code16/sharp,"criticality_score:0.493870,num_dependents_deps.dev:0" github.com/code1986/rxw,num_dependents_deps.dev:0 @@ -376676,6 +384356,7 @@ github.com/codeactual/weir,num_dependents_deps.dev:0 github.com/codeaddslife/koara-ant-plugin,num_dependents_deps.dev:0 github.com/codeaddslife/koara-maven-plugin,num_dependents_deps.dev:0 github.com/codeadict/guajiro, +github.com/codeaffen/phpipam-action, github.com/codeafix/orgnetsim,num_dependents_deps.dev:0 github.com/codeages-design/cd-element,num_dependents_deps.dev:0 github.com/codeages-design/cd-vue,num_dependents_deps.dev:0 @@ -376773,6 +384454,7 @@ github.com/codeat3/a-to-z-emoticons-db,num_dependents_deps.dev:0 github.com/codeation/impress,num_dependents_deps.dev:0 github.com/codeation/lru,num_dependents_deps.dev:0 github.com/codeatlas3/atlas,num_dependents_deps.dev:0 +github.com/codeatlasHQ/codebase-visualizer-action, github.com/codeattic/codegen,num_dependents_deps.dev:0 github.com/codeaudit/jdatapath,num_dependents_deps.dev:0 github.com/codeaway-io/create-react-app,num_dependents_deps.dev:0 @@ -376813,6 +384495,8 @@ github.com/codeboost/Skull.io,num_dependents_deps.dev:0 github.com/codeboost/binaryparser,num_dependents_deps.dev:0 github.com/codeborne/ghostdriver,num_dependents_deps.dev:676 github.com/codeboten/climate_neutral, +github.com/codeboten/collector-builder-action, +github.com/codeboten/github-action-to-otlp, github.com/codeboten/o11y,num_dependents_deps.dev:0 github.com/codeboten/opencensus-python-honeycomb-exporter, github.com/codeboten/otlpserver,num_dependents_deps.dev:0 @@ -376989,6 +384673,7 @@ github.com/codeclimate/codeclimate,criticality_score:0.542090 github.com/codeclimate/javascript-test-reporter,num_dependents_deps.dev:256 github.com/codeclimate/python-test-reporter, github.com/codeclimate/test-reporter,num_dependents_deps.dev:0 +github.com/codeclimate/velocity-deploy-action, github.com/codeclinic/TuyaPower2MQTT, github.com/codeclou/bilderrahmen,num_dependents_deps.dev:0 github.com/codeclou/cc-image-lightbox,num_dependents_deps.dev:0 @@ -377030,6 +384715,7 @@ github.com/codeconsole/webapp-analyics,num_dependents_deps.dev:0 github.com/codecoolture/next-joi,num_dependents_deps.dev:0 github.com/codecorsair/redux-typed-modules,num_dependents_deps.dev:0 github.com/codecov/codecov-action,criticality_score:0.561240 +github.com/codecov/codecov-ats, github.com/codecov/codecov-bash, github.com/codecov/codecov-node,"criticality_score:0.604460,num_dependents_deps.dev:380" github.com/codecov/codecov-python, @@ -377083,6 +384769,8 @@ github.com/codedealer/pimatic-livolo,num_dependents_deps.dev:0 github.com/codedearta/http-ok,num_dependents_deps.dev:0 github.com/codedellemc/govmax,num_dependents_deps.dev:0 github.com/codedellemc/python-scaleioclient, +github.com/codedesignplus/CodeDesignPlus.Actions.GitVersion, +github.com/codedesignplus/semver-git-version, github.com/codedevbrad/custom_date_methods,num_dependents_deps.dev:0 github.com/codedevote/pulumix,num_dependents_deps.dev:0 github.com/codedevstem/api2go,num_dependents_deps.dev:0 @@ -377197,12 +384885,14 @@ github.com/codedrinker/angular-mini-preview,num_dependents_deps.dev:0 github.com/codedrinker/facebook-messenger,num_dependents_deps.dev:0 github.com/codedropau/cloudfront-cloudwatchlogs,num_dependents_deps.dev:0 github.com/codedropau/rig,num_dependents_deps.dev:0 +github.com/codedsolar/slack-action, github.com/codedsphere/canvasImage,num_dependents_deps.dev:0 github.com/codedsphere/redux-saga-wrapo,num_dependents_deps.dev:0 github.com/codedstructure/pylibftdi,Google github.com/codedumps/async-chrome-dev-tools, github.com/codedust/syncthing,num_dependents_deps.dev:0 github.com/codedx/codedx-api-client-java,num_dependents_deps.dev:0 +github.com/codedx/codedx-github-action, github.com/codedx/mapk,num_dependents_deps.dev:1 github.com/codeecho/humphrey,num_dependents_deps.dev:0 github.com/codeecke/generic-player,num_dependents_deps.dev:0 @@ -377220,6 +384910,7 @@ github.com/codeep/react-recaptcha,num_dependents_deps.dev:0 github.com/codeep/react-recaptcha-google,num_dependents_deps.dev:2 github.com/codeep/react-recaptcha-v3,num_dependents_deps.dev:4 github.com/codeepic/bootstrap-daterangepicker-v2,num_dependents_deps.dev:0 +github.com/codeeshop-oc/php-cs-fix-merge, github.com/codeeshop-oc/vue-full-autocomplete,num_dependents_deps.dev:0 github.com/codeexpress/subdomainrecon,num_dependents_deps.dev:0 github.com/codeexpress/webpluck,num_dependents_deps.dev:0 @@ -377396,6 +385087,8 @@ github.com/codefresh-io/cf-gitops-controller,num_dependents_deps.dev:0 github.com/codefresh-io/cf-yaml-validator,num_dependents_deps.dev:0 github.com/codefresh-io/cli,num_dependents_deps.dev:0 github.com/codefresh-io/cli-v2,num_dependents_deps.dev:0 +github.com/codefresh-io/codefresh-pipeline-runner, +github.com/codefresh-io/codefresh-report-image, github.com/codefresh-io/gitops-agent,num_dependents_deps.dev:0 github.com/codefresh-io/go-infra,num_dependents_deps.dev:0 github.com/codefresh-io/go-sdk,num_dependents_deps.dev:0 @@ -377472,6 +385165,7 @@ github.com/codegram/spinach,criticality_score:0.380040 github.com/codegrue/card_settings,criticality_score:0.420720 github.com/codeguy/php-the-right-way,criticality_score:0.464490 github.com/codeh2o/awaitButton,num_dependents_deps.dev:0 +github.com/codehabits/conventional-commits, github.com/codehack/go-relax,num_dependents_deps.dev:0 github.com/codehag/DAMP-git-runner,num_dependents_deps.dev:0 github.com/codehakase/grab,num_dependents_deps.dev:0 @@ -377510,6 +385204,7 @@ github.com/codehunterofhustvn/homework-tfs03,num_dependents_deps.dev:0 github.com/codehutlabs/randomjoke, github.com/codehutlabs/slugifile, github.com/codehyouka/compt,num_dependents_deps.dev:0 +github.com/codehz/arch-cmake-builder, github.com/codehz/hterm-packager,num_dependents_deps.dev:0 github.com/codehz/odbc-helper,num_dependents_deps.dev:0 github.com/codehz/pixivbot,num_dependents_deps.dev:0 @@ -377825,6 +385520,7 @@ github.com/codelef-sdk/core,num_dependents_deps.dev:0 github.com/codelens-io/thorntail-json-schema-generator,num_dependents_deps.dev:0 github.com/codeless-js/codeless-cli, github.com/codeless-js/vue-materials-iview,num_dependents_deps.dev:0 +github.com/codelessrun/serverchan-action, github.com/codelessrun/tcpscanner,num_dependents_deps.dev:0 github.com/codelessrun/web-tutorial,num_dependents_deps.dev:0 github.com/codelibs/elasticsearch-analysis-vietnamese,num_dependents_deps.dev:0 @@ -377902,7 +385598,10 @@ github.com/codema-dev/rc-building-model, github.com/codemac/gcalorg,num_dependents_deps.dev:0 github.com/codemachin/cowin-slot-finder,num_dependents_deps.dev:0 github.com/codemachiner/generator-lorem,num_dependents_deps.dev:0 +github.com/codemagic-ci-cd/trigger-codemagic-workflow-action, github.com/codemak2r/autool,num_dependents_deps.dev:0 +github.com/codemakerai/codemaker-action, +github.com/codemakerai/codemaker-pull-request-action, github.com/codemakerss/Alpha_Vantage_API_Project, github.com/codeman-wind/test,num_dependents_deps.dev:0 github.com/codeman99/opener, @@ -377910,6 +385609,7 @@ github.com/codemaniac/graphgit, github.com/codemaniac/sopex, github.com/codemanki/cloudscraper,num_dependents_deps.dev:178 github.com/codemansw/ast-scout,num_dependents_deps.dev:0 +github.com/codemanufacture/magento-coding-standard-action, github.com/codemanufaktur/web-cli,num_dependents_deps.dev:0 github.com/codemarc/hellott4world,num_dependents_deps.dev:0 github.com/codemartial/circuitbreaker,num_dependents_deps.dev:0 @@ -377979,6 +385679,7 @@ github.com/codemeow5/PyPack, github.com/codemeow5/box.js,num_dependents_deps.dev:0 github.com/codemeow5/mindmap.js,num_dependents_deps.dev:0 github.com/codemercenary/jmatio,num_dependents_deps.dev:452 +github.com/codemerx/assembly-differ-action, github.com/codemetrics/core,num_dependents_deps.dev:0 github.com/codemicro/alib-py, github.com/codemicro/brainfuck,num_dependents_deps.dev:0 @@ -378178,6 +385879,7 @@ github.com/codemumbler/mdb-oracle,num_dependents_deps.dev:0 github.com/codemumbler/mdboracle-maven-plugin,num_dependents_deps.dev:0 github.com/codemybrainsout/ahoy-onboarding,num_dependents_deps.dev:0 github.com/codemybrainsout/smart-app-rate,num_dependents_deps.dev:0 +github.com/codemzy/schedule-build-action, github.com/codename-/division,num_dependents_deps.dev:0 github.com/codename-co/botml, github.com/codename-co/spec,num_dependents_deps.dev:0 @@ -378319,13 +386021,44 @@ github.com/codenoid/gin-recaptcha,num_dependents_deps.dev:0 github.com/codenoid/go-web-boilerplate,num_dependents_deps.dev:0 github.com/codenoid/portable-http-server,num_dependents_deps.dev:0 github.com/codenoid/telelog,num_dependents_deps.dev:0 +github.com/codenotary/cas-authenticate-asset-github-action, +github.com/codenotary/cas-authenticate-docker-bom-github-action, +github.com/codenotary/cas-authenticate-docker-image-github-action, +github.com/codenotary/cas-notarize-asset-github-action, +github.com/codenotary/cas-notarize-docker-image-bom-github-action, +github.com/codenotary/cas-notarize-docker-image-github-action, +github.com/codenotary/cas-unsupport-asset-github-action, +github.com/codenotary/cas-untrust-asset-github-action, github.com/codenotary/immu-py, github.com/codenotary/immudb,"criticality_score:0.509450,num_dependents_deps.dev:4" github.com/codenotary/immudb-client-examples,num_dependents_deps.dev:0 github.com/codenotary/immudb-node,num_dependents_deps.dev:0 github.com/codenotary/immudb4j,num_dependents_deps.dev:0 github.com/codenotary/immugw,num_dependents_deps.dev:0 +github.com/codenotary/notarize-and-verify-pr-action, github.com/codenotary/notarize-release-assets-action,num_dependents_deps.dev:0 +github.com/codenotary/sbom.sh-create, +github.com/codenotary/vcn-authenticate-bom-dotNET-github-action, +github.com/codenotary/vcn-authenticate-bom-go-github-action, +github.com/codenotary/vcn-authenticate-bom-java-github-action, +github.com/codenotary/vcn-authenticate-bom-nodejs-github-action, +github.com/codenotary/vcn-authenticate-bom-python-github-action, +github.com/codenotary/vcn-github-action, +github.com/codenotary/vcn-notarize-bom-dotNET-github-action, +github.com/codenotary/vcn-notarize-bom-go-github-action, +github.com/codenotary/vcn-notarize-bom-java-github-action, +github.com/codenotary/vcn-notarize-bom-nodejs-github-action, +github.com/codenotary/vcn-notarize-bom-python-github-action, +github.com/codenotary/vcn-unsupport-bom-dotNET-github-action, +github.com/codenotary/vcn-unsupport-bom-go-github-action, +github.com/codenotary/vcn-unsupport-bom-java-github-action, +github.com/codenotary/vcn-unsupport-bom-nodejs-github-action, +github.com/codenotary/vcn-unsupport-bom-python-github-action, +github.com/codenotary/vcn-untrust-bom-dotNET-github-action, +github.com/codenotary/vcn-untrust-bom-go-github-action, +github.com/codenotary/vcn-untrust-bom-java-github-action, +github.com/codenotary/vcn-untrust-bom-nodejs-github-action, +github.com/codenotary/vcn-untrust-bom-python-github-action, github.com/codenothing/CSSTree,num_dependents_deps.dev:2 github.com/codenothing/Nlint, github.com/codenothing/Nodelint,num_dependents_deps.dev:0 @@ -378535,6 +386268,7 @@ github.com/codepunkt/eslint-config-codepunkt,num_dependents_deps.dev:0 github.com/codepunkt/eslint-config-react,num_dependents_deps.dev:0 github.com/codepunkt/fela-react-prop,num_dependents_deps.dev:0 github.com/codepunkt/gatsby-remark-opengraph,num_dependents_deps.dev:0 +github.com/codepunkt/npm-lockfile-changes, github.com/codepunkt/redux-active,num_dependents_deps.dev:0 github.com/codepunkt/should-not-update,num_dependents_deps.dev:0 github.com/codepunkt/styled-property,num_dependents_deps.dev:0 @@ -378589,6 +386323,7 @@ github.com/coder543/zapper,num_dependents_deps.dev:0 github.com/coder966/react-rich-ui, github.com/coderReview/nativescript-tus-upload,num_dependents_deps.dev:0 github.com/coderZsq/coderZsq.practice.web,num_dependents_deps.dev:0 +github.com/coderabbitai/ai-pr-reviewer, github.com/coderabin01/ng-datatable,num_dependents_deps.dev:0 github.com/coderade/node-kong-admin-ts,num_dependents_deps.dev:0 github.com/coderadu/fast-app,num_dependents_deps.dev:0 @@ -379102,6 +386837,7 @@ github.com/coderssquad/dc-final,num_dependents_deps.dev:0 github.com/coderssquad/dc-labs,num_dependents_deps.dev:0 github.com/coderssquad/hello-gophers,num_dependents_deps.dev:0 github.com/coderstage/redux-stored,num_dependents_deps.dev:0 +github.com/coderstats/github-action-merged-pull-requests, github.com/codersupriyo/nasa-api.js, github.com/codersvn/angular-menu-manager,num_dependents_deps.dev:0 github.com/codersvn/kit_nodejs,num_dependents_deps.dev:2 @@ -379124,6 +386860,7 @@ github.com/coderua/mask-data,num_dependents_deps.dev:0 github.com/codervince/get-eth-price,num_dependents_deps.dev:0 github.com/codervince/passport-proz,num_dependents_deps.dev:0 github.com/coderwangke/oncepleg,num_dependents_deps.dev:0 +github.com/coderwangke/tencent-serverless-action, github.com/coderwhy/coderwhy,num_dependents_deps.dev:0 github.com/coderwin/ES5Shim4Webpack,num_dependents_deps.dev:0 github.com/coderwin/Fluder,num_dependents_deps.dev:0 @@ -379162,6 +386899,7 @@ github.com/codesandcoffees/react-pkg,num_dependents_deps.dev:0 github.com/codesanook/codesanook-bumblebee-ts,num_dependents_deps.dev:0 github.com/codesardine/Jadesktop,criticality_score:0.384720 github.com/codesaurus97/fruit, +github.com/codescan-io/codescan-scanner-action, github.com/codescan-io/sast-java,num_dependents_deps.dev:0 github.com/codescape/bitvunit,num_dependents_deps.dev:0 github.com/codeschneider/skipper-s3-alt,num_dependents_deps.dev:0 @@ -379240,8 +386978,12 @@ github.com/codespaces-contrib/gistpad,criticality_score:0.321840 github.com/codespaces-io/akurath,num_dependents_deps.dev:0 github.com/codespeaks/modulr,num_dependents_deps.dev:0 github.com/codespec/react-toolset,num_dependents_deps.dev:0 +github.com/codespell-project/actions-codespell, github.com/codespell-project/codespell,criticality_score:0.587660 +github.com/codespell-project/codespell-problem-matcher, +github.com/codespell-project/sort-problem-matcher, github.com/codespent/twitchy, +github.com/codesphere-cloud/gh-action-deploy, github.com/codesphinxx/lognetic-browser,num_dependents_deps.dev:0 github.com/codesphinxx/playnix-browser,num_dependents_deps.dev:0 github.com/codesphinxx/playnix-core,num_dependents_deps.dev:0 @@ -379264,6 +387006,7 @@ github.com/codesterLalit/akish-connection, github.com/codesthq/vuelendar,num_dependents_deps.dev:0 github.com/codestickers/codestickers-java,num_dependents_deps.dev:0 github.com/codestudiohq/laravel-totem,criticality_score:0.431460 +github.com/codesuki/check-master-action, github.com/codesuki/go-time-series,num_dependents_deps.dev:0 github.com/codesuki/go-trending,num_dependents_deps.dev:0 github.com/codesuki/react-d3-components,"criticality_score:0.316590,num_dependents_deps.dev:0" @@ -379340,6 +387083,7 @@ github.com/codetakeo/smb2-client,num_dependents_deps.dev:0 github.com/codetakt/eslint-config,num_dependents_deps.dev:0 github.com/codetakt/eslint-config-codetakt,num_dependents_deps.dev:0 github.com/codetakt/eslint-config-codetakt-ts,num_dependents_deps.dev:0 +github.com/codetalkio/expose-tunnel, github.com/codetalkrs/pywkher, github.com/codetaming/indy-ingest,num_dependents_deps.dev:0 github.com/codetaming/skillsmapper,num_dependents_deps.dev:0 @@ -379369,6 +387113,7 @@ github.com/codetheorist/three-gpu-particle-system,num_dependents_deps.dev:0 github.com/codetheorist/vue-dynamic-form,num_dependents_deps.dev:0 github.com/codethestars/typicaljs,num_dependents_deps.dev:0 github.com/codetheweb/anylist,num_dependents_deps.dev:0 +github.com/codetheweb/gh-action-issue-parser, github.com/codetheweb/homebridge-tuya,num_dependents_deps.dev:0 github.com/codetheweb/homebridge-tuya-outlet,num_dependents_deps.dev:0 github.com/codetheweb/homebridge-yamaha-scene,num_dependents_deps.dev:0 @@ -379381,6 +387126,7 @@ github.com/codetheweb/stepfunctions-localhost,num_dependents_deps.dev:0 github.com/codetheweb/substr-occurrence,num_dependents_deps.dev:0 github.com/codetheweb/tuya-device,num_dependents_deps.dev:0 github.com/codetheweb/tuyapi,criticality_score:0.510650 +github.com/codetheweb/upload-to-drive, github.com/codethinklabs/package-typospotter,num_dependents_deps.dev:0 github.com/codetilldrop/8005-Programming-Language,num_dependents_deps.dev:0 github.com/codetilldrop/npm-perfect-trie, @@ -379468,6 +387214,7 @@ github.com/codevey/gitlog-busfactor,num_dependents_deps.dev:0 github.com/codevey/parse-git-numstat,num_dependents_deps.dev:0 github.com/codevibess/loki-local-passport,num_dependents_deps.dev:0 github.com/codevibess/openssl-nodejs,num_dependents_deps.dev:4 +github.com/codeviewbr/kube-devops-ci, github.com/codeviking/depalyzer,num_dependents_deps.dev:0 github.com/codevineyard/hello-world,num_dependents_deps.dev:0 github.com/codevinsky/generator-phaser-official,num_dependents_deps.dev:0 @@ -379498,6 +387245,7 @@ github.com/codewaseem/antd-scss-theme-plugin,num_dependents_deps.dev:0 github.com/codewaseem/capacitor-filepicker-plugin,num_dependents_deps.dev:0 github.com/codewaseem/electron-auth0-login,num_dependents_deps.dev:0 github.com/codewaseem/shopify-node-oauth,num_dependents_deps.dev:0 +github.com/codewdhruv/kubeval-validation, github.com/codeweaver-pl/svn-release,num_dependents_deps.dev:0 github.com/codeweft/cachewarp,num_dependents_deps.dev:0 github.com/codewell/action-type-utils,num_dependents_deps.dev:4 @@ -379555,6 +387303,8 @@ github.com/codewithkyle/state-manager,num_dependents_deps.dev:2 github.com/codewithmichael/babel-browser-harness,num_dependents_deps.dev:0 github.com/codewithmichael/dependency-sorter,num_dependents_deps.dev:12 github.com/codewithpassion/node-openrov-pluginloader,num_dependents_deps.dev:0 +github.com/codewithpom/dev-api, +github.com/codewithpom/ipfs-backup-github-action, github.com/codewithsam/precepticon, github.com/codewithutkarsh/image-scan-poc,num_dependents_deps.dev:0 github.com/codewithzichao/DeepClassifier, @@ -379593,6 +387343,9 @@ github.com/codex-protocol/npm.eslint-config-base,num_dependents_deps.dev:0 github.com/codex-protocol/npm.eslint-config-truffle,num_dependents_deps.dev:0 github.com/codex-protocol/npm.eslint-config-vue,num_dependents_deps.dev:0 github.com/codex-protocol/npm.ethereum-service, +github.com/codex-team/action-check-domain, +github.com/codex-team/action-codexbot-notify, +github.com/codex-team/action-nodejs-package-info, github.com/codex-team/ajax,num_dependents_deps.dev:0 github.com/codex-team/capella.nodejs,num_dependents_deps.dev:0 github.com/codex-team/codex.dispatcher,num_dependents_deps.dev:0 @@ -379611,6 +387364,7 @@ github.com/codex-team/hawk.collector,num_dependents_deps.dev:0 github.com/codex-team/hawk.go,num_dependents_deps.dev:0 github.com/codex-team/hawk.javascript,num_dependents_deps.dev:0 github.com/codex-team/hawk.nodejs,num_dependents_deps.dev:0 +github.com/codex-team/hawk.releases, github.com/codex-team/hawk.types,num_dependents_deps.dev:0 github.com/codex-team/hawk.webpack.plugin,num_dependents_deps.dev:0 github.com/codex-team/html-slacker, @@ -379667,6 +387421,7 @@ github.com/codfish/generator-codfish,num_dependents_deps.dev:0 github.com/codfish/generator-vercel-shortener,num_dependents_deps.dev:0 github.com/codfish/jquery-data-remote, github.com/codfish/jquery-track,num_dependents_deps.dev:0 +github.com/codfish/semantic-release-action, github.com/codfish/vercel-redirects,num_dependents_deps.dev:0 github.com/codfrm/iotqq-plugins,num_dependents_deps.dev:0 github.com/codi-sh/codi.sh,num_dependents_deps.dev:0 @@ -379725,6 +387480,7 @@ github.com/codifyglobal/peertube-plugin-auth-oauth2,num_dependents_deps.dev:0 github.com/codifynw/codifyComponents,num_dependents_deps.dev:0 github.com/codifytools/react-npm-package-boilerplate,num_dependents_deps.dev:0 github.com/codifytools/react-text-editor,num_dependents_deps.dev:0 +github.com/codiga/github-action, github.com/codigi/digest-auth-utils,num_dependents_deps.dev:0 github.com/codigi/feathers-nedb-service-creator,num_dependents_deps.dev:0 github.com/codigi/md-messagebox,num_dependents_deps.dev:0 @@ -379738,6 +387494,7 @@ github.com/codigorama/git-webby,num_dependents_deps.dev:0 github.com/codigorama/prigner,num_dependents_deps.dev:0 github.com/codigorefinado/angular-br,num_dependents_deps.dev:0 github.com/codigourbano/cep-scraper,num_dependents_deps.dev:0 +github.com/codigube/github-actions-notify-slack, github.com/codiini/vuetify-country-region-select,num_dependents_deps.dev:0 github.com/codimd/markdown-it-better-task-lists,num_dependents_deps.dev:0 github.com/codimite/gostep, @@ -379850,6 +387607,7 @@ github.com/codingfishman/anyproxy-package-inspect, github.com/codingfishman/chinese-currency-formatter,num_dependents_deps.dev:0 github.com/codingfishman/react-scroll-pagination,num_dependents_deps.dev:0 github.com/codingforce/poolr,num_dependents_deps.dev:0 +github.com/codingforentrepreneurs/action-branch-to-branch, github.com/codingforfunandprofit/appname,num_dependents_deps.dev:0 github.com/codingforme/bingolink-cli,num_dependents_deps.dev:0 github.com/codingforsolon/yl.express.oi,num_dependents_deps.dev:0 @@ -379888,6 +387646,7 @@ github.com/codingjester/pycitibike, github.com/codingjester/tumblr_client,num_dependents_deps.dev:2 github.com/codingjoe/django-dynamic-filenames, github.com/codingjoe/django-mail-auth, +github.com/codingjoe/django-pictures, github.com/codingjoe/django-s3file, github.com/codingjoe/django-select2, github.com/codingjoe/django-sofort, @@ -379942,6 +387701,7 @@ github.com/codingpeasant/blocace,num_dependents_deps.dev:0 github.com/codingpeasant/blocace-js,num_dependents_deps.dev:0 github.com/codingpoeta/action_demo,num_dependents_deps.dev:0 github.com/codingpoeta/termui,num_dependents_deps.dev:0 +github.com/codingpot/github-org-member-manage-action, github.com/codingpot/paperswithcode-go,num_dependents_deps.dev:0 github.com/codingpot/pr12er,num_dependents_deps.dev:0 github.com/codingpot/server-client-template-go,num_dependents_deps.dev:0 @@ -379979,6 +387739,7 @@ github.com/codinlikewilly/py-certgenerator, github.com/codinlikewilly/x509generator, github.com/codinn/applaud, github.com/codio/codio-api-js,num_dependents_deps.dev:0 +github.com/codions/git-sync, github.com/codiophile/fibers-wrapper,num_dependents_deps.dev:0 github.com/codipodi/hyper-breeze-theme,num_dependents_deps.dev:0 github.com/codistic/comprende,num_dependents_deps.dev:0 @@ -380001,6 +387762,7 @@ github.com/coditorium/nodejs-favico,num_dependents_deps.dev:0 github.com/coditorium/nodejs-fluent-validator, github.com/coditorium/nodejs-read-config,num_dependents_deps.dev:14 github.com/coditorium/nodejs-swig-loader,num_dependents_deps.dev:2 +github.com/coditory/changelog-parser, github.com/coditory/eslint-config-coditory,num_dependents_deps.dev:0 github.com/coditory/jsdeep,num_dependents_deps.dev:0 github.com/coditory/logback-filters,num_dependents_deps.dev:0 @@ -380036,6 +387798,7 @@ github.com/codlab/amiitool_android,num_dependents_deps.dev:0 github.com/codlab/android_multicolumn_recyclerview,num_dependents_deps.dev:0 github.com/codlab/android_process_mutex,num_dependents_deps.dev:0 github.com/codlab/bypass_gradle,num_dependents_deps.dev:0 +github.com/codlab/jacoco-report, github.com/codlab/libseedchecker,num_dependents_deps.dev:0 github.com/codler/NativeBase,num_dependents_deps.dev:0 github.com/codler/avanza-api,num_dependents_deps.dev:0 @@ -380154,6 +387917,7 @@ github.com/codydaig/meanjs-cli,num_dependents_deps.dev:0 github.com/codydaig/mvcp,num_dependents_deps.dev:0 github.com/codydaig/mvcp-cli,num_dependents_deps.dev:0 github.com/codydaig/promisefs,num_dependents_deps.dev:0 +github.com/codyde/branch-mirroring-action, github.com/codydwjones/retry,num_dependents_deps.dev:0 github.com/codyebberson/wglt,num_dependents_deps.dev:0 github.com/codygibbs/yeoman-generator-mix-tailwindcss,num_dependents_deps.dev:0 @@ -380346,6 +388110,7 @@ github.com/coffeeandcloud/douglasie-server,num_dependents_deps.dev:0 github.com/coffeeandscripts/curseXcel, github.com/coffeeandscripts/pystock, github.com/coffeeandscripts/sqlcrush, +github.com/coffeebe4code/setup-mingw, github.com/coffeeboo/carwash,num_dependents_deps.dev:0 github.com/coffeeboo/now-hls,num_dependents_deps.dev:0 github.com/coffeeboo/polka-compat,num_dependents_deps.dev:0 @@ -380374,6 +388139,7 @@ github.com/coffeedevs/SquareCordovaIntegration,num_dependents_deps.dev:0 github.com/coffeedjimmy/tf_serving_client, github.com/coffeedoc/codo,num_dependents_deps.dev:22 github.com/coffeedoughnuts/auth0-management-tool,num_dependents_deps.dev:0 +github.com/coffeedoughnuts/clog, github.com/coffeedoughnuts/hoc-chocolate,num_dependents_deps.dev:0 github.com/coffeedoughnuts/portproc,num_dependents_deps.dev:0 github.com/coffeedoughnuts/portproc-core,num_dependents_deps.dev:0 @@ -380757,11 +388523,14 @@ github.com/cogor/vue-formulate-calendar,num_dependents_deps.dev:0 github.com/cogor/vue-formulate-datepicker,num_dependents_deps.dev:0 github.com/cogpunk/math,num_dependents_deps.dev:0 github.com/cogroo/cogroo4,num_dependents_deps.dev:81 +github.com/cogsmith/devking-cleanup, +github.com/cogsmith/devking-release, github.com/cogstyle/cogstyle,num_dependents_deps.dev:0 github.com/cogswell-io/cogs-chat,num_dependents_deps.dev:0 github.com/cogswell-io/cogs-pubsub-dialect,num_dependents_deps.dev:2 github.com/cogswell-io/node-cogs-javascript-sdk, github.com/cogu/cfile, +github.com/coguardio/coguard-scan-action, github.com/cohacks/fxjs,num_dependents_deps.dev:0 github.com/cohacks/fxparser,num_dependents_deps.dev:0 github.com/cohaereo/egui_glfw_gl,num_dependents_deps.dev:0 @@ -380847,6 +388616,7 @@ github.com/coin-or/qpOASES,Google github.com/coin-or/rbfopt, github.com/coin-quant/deribit-api,num_dependents_deps.dev:0 github.com/coin-quant/go-binance,num_dependents_deps.dev:0 +github.com/coin-tracker/get-merged-pull-request, github.com/coinalarm/coinalarm-api,num_dependents_deps.dev:0 github.com/coinapi/coinapi-sdk,num_dependents_deps.dev:0 github.com/coinapult/lamassu-coinapult,num_dependents_deps.dev:0 @@ -381079,6 +388849,7 @@ github.com/colabobio/sciviewer, github.com/colaboy/seedsui,num_dependents_deps.dev:0 github.com/colaboy/seedsui-react, github.com/colaboy/seedsui-vue,num_dependents_deps.dev:0 +github.com/colac/trivy-action, github.com/colacadstink/youtube-live-chat-ts,num_dependents_deps.dev:0 github.com/colacao/loadjs,num_dependents_deps.dev:0 github.com/colacao/react-native-umeng,num_dependents_deps.dev:0 @@ -381103,7 +388874,9 @@ github.com/colask8/portal-pushify, github.com/colask8/rest2cmd_stream, github.com/colask8/web-notify-client,num_dependents_deps.dev:0 github.com/colaso96/HALdata, +github.com/colathro/crate-version, github.com/colathro/linedit, +github.com/colathro/toml-editor, github.com/colatkinson/bitname-cli,num_dependents_deps.dev:0 github.com/colauttilorenzo/viewport.js,num_dependents_deps.dev:0 github.com/colav/Chibchas, @@ -381143,6 +388916,8 @@ github.com/colbyfayock/use-placecage,num_dependents_deps.dev:0 github.com/colbyfayock/use-snipcart,num_dependents_deps.dev:0 github.com/colbygk/certificate-monitor,num_dependents_deps.dev:0 github.com/colbyhall/newport,num_dependents_deps.dev:37 +github.com/colbyhill21/Rancher-Action, +github.com/colbyhill21/angular-full-ci, github.com/colbyhub/memento-mori,num_dependents_deps.dev:0 github.com/colbyktang/toodle,num_dependents_deps.dev:0 github.com/colbymillerdev/heroku-keep-awake,num_dependents_deps.dev:0 @@ -381246,8 +389021,10 @@ github.com/coldfrontlabs/eslint-plugin-drupal-contrib,num_dependents_deps.dev:0 github.com/coldfrontlabs/gulp-templates,num_dependents_deps.dev:0 github.com/coldfrontlabs/standard-version-updater-yaml,num_dependents_deps.dev:0 github.com/coldfrontlabs/stylelint-config-coldfront,num_dependents_deps.dev:0 +github.com/coldfumonkeh/cfml-testbox-action, github.com/coldfumonkeh/foaas,num_dependents_deps.dev:0 github.com/coldfusioncocoa/karma-string-replace-preprocessor,num_dependents_deps.dev:0 +github.com/coldfusionjp/ghaction-checkout-plus, github.com/coldhamix/http-loader,num_dependents_deps.dev:0 github.com/coldhamix/protractor-mock-backend,num_dependents_deps.dev:0 github.com/coldhurt/goblog,num_dependents_deps.dev:0 @@ -381335,6 +389112,7 @@ github.com/cole14/rust-readelf,num_dependents_deps.dev:0 github.com/coleGillespie/ncode,num_dependents_deps.dev:0 github.com/coleHafner/ez-cache,num_dependents_deps.dev:0 github.com/coleHafner/github-release-util,num_dependents_deps.dev:0 +github.com/coleaeason/actions-uncrustify, github.com/colealanroberts/hackfetch,num_dependents_deps.dev:0 github.com/colealbon/lib-client-elrn-js,num_dependents_deps.dev:0 github.com/colealbon/lib-react-component-elrn-wallet,num_dependents_deps.dev:0 @@ -381571,6 +389349,8 @@ github.com/colin3dmax/react-native-talkingdata,num_dependents_deps.dev:0 github.com/colin6618/generate-image-preivew,num_dependents_deps.dev:0 github.com/colin6618/searchthe,num_dependents_deps.dev:0 github.com/colinaaa/UniqueMono,num_dependents_deps.dev:0 +github.com/colinaaa/chktex-action, +github.com/colinaaa/setup-riscv-gnu-toolchain, github.com/colinaaa/type-get,num_dependents_deps.dev:0 github.com/colinafl87/lodown,num_dependents_deps.dev:0 github.com/colinahill/terrapyn, @@ -381615,6 +389395,10 @@ github.com/colinclement/varibayes, github.com/colindean/fillertext,num_dependents_deps.dev:0 github.com/colindean/keepachangelog-parser-java,num_dependents_deps.dev:0 github.com/colindecarlo/useful-enum,num_dependents_deps.dev:0 +github.com/colindembovsky/az-create-work-item, +github.com/colindembovsky/azure-webapp-route-traffic, +github.com/colindembovsky/ea-repo-list, +github.com/colindembovsky/generate-sbom-action, github.com/colindev/errors,num_dependents_deps.dev:0 github.com/colindev/gostdio,num_dependents_deps.dev:0 github.com/colindresj/generator-ractive,num_dependents_deps.dev:0 @@ -381743,9 +389527,14 @@ github.com/colinnewell/jenkins-job-mint,num_dependents_deps.dev:0 github.com/colinnewell/pcap2har-go,num_dependents_deps.dev:0 github.com/colinnewell/pcap2mysql-log,num_dependents_deps.dev:0 github.com/colinodell/gulp-eol-enforce,num_dependents_deps.dev:0 +github.com/colinodell/json5, github.com/colinodell/python-qnapstats, github.com/colinoflynn/pico-python, github.com/colinp85/log_factory, +github.com/colinparsonsme/publish-node-package, +github.com/colinparsonsme/run-deployment-step, +github.com/colinparsonsme/upload-status-badge, +github.com/colinparsonsme/verify-and-update-version, github.com/colinpetruno/portunus,num_dependents_deps.dev:0 github.com/colinrcasto/splits,num_dependents_deps.dev:0 github.com/colinrcummings/eslint-config-colinrcummings,num_dependents_deps.dev:0 @@ -382378,6 +390167,8 @@ github.com/collierconsulting/hydros-api-go,num_dependents_deps.dev:0 github.com/collierrgbsitisfise/gitum-cli,num_dependents_deps.dev:0 github.com/colligant/shopty, github.com/colligii/vdom-request,num_dependents_deps.dev:0 +github.com/collin-miller/git-changesets, +github.com/collin-miller/shfmt-action, github.com/collin/alpha_simprini,num_dependents_deps.dev:0 github.com/collin/html_package,num_dependents_deps.dev:0 github.com/collin/module_loader,num_dependents_deps.dev:0 @@ -382413,6 +390204,9 @@ github.com/collingreen/riot-redux-router-immutable,num_dependents_deps.dev:0 github.com/collings22/armadillo-chart,num_dependents_deps.dev:0 github.com/collings22/create-react-app,num_dependents_deps.dev:0 github.com/collink/draggit,num_dependents_deps.dev:0 +github.com/collinmcneese/actions-rate-limit-reporter, +github.com/collinmcneese/chef-habitat-install, +github.com/collinmcneese/github-actions-forwarder, github.com/collinmesser/create-unique-id,num_dependents_deps.dev:0 github.com/collinmesser/simple-vue-export,num_dependents_deps.dev:0 github.com/collinped/vue-facebook-login-button-directive,num_dependents_deps.dev:0 @@ -382422,6 +390216,7 @@ github.com/collinprather/pull_the_pitcher, github.com/collinprather/tap-sleeper, github.com/collinprice/gps-babel,num_dependents_deps.dev:0 github.com/collinpu/CollinImports, +github.com/collins-w/packer-github-actions, github.com/collins401/vm-select,num_dependents_deps.dev:0 github.com/collinshoop/gogosudoku,num_dependents_deps.dev:0 github.com/collinskesuibai/eng-dynamics,num_dependents_deps.dev:0 @@ -382461,6 +390256,7 @@ github.com/colmharte/patrun-java,num_dependents_deps.dev:0 github.com/colmharte/seneca-cockroach-store,num_dependents_deps.dev:0 github.com/colmharte/seneca-geteventstore-store,num_dependents_deps.dev:0 github.com/colmmcbarron/grunt-svn-copy,num_dependents_deps.dev:0 +github.com/colmose/push-bot, github.com/colmsjo/github-issues-export,num_dependents_deps.dev:0 github.com/colmsjo/helpersjs,num_dependents_deps.dev:0 github.com/colmsjo/invest,num_dependents_deps.dev:0 @@ -382719,6 +390515,7 @@ github.com/colthreepv/pingscan,num_dependents_deps.dev:0 github.com/colthreepv/promesso,num_dependents_deps.dev:0 github.com/coltonTB/ice-js,num_dependents_deps.dev:0 github.com/coltonbh/terachem-cloud-pyclient, +github.com/coltonfischer/deploy-to-ps-action, github.com/coltonprovias/sqlalchemy-jsonapi, github.com/coltonw/losdos,num_dependents_deps.dev:0 github.com/coltor-apps/r3shaper,num_dependents_deps.dev:0 @@ -382744,10 +390541,12 @@ github.com/columbus-internet/xmlquery,num_dependents_deps.dev:0 github.com/columbus-internet/xpath,num_dependents_deps.dev:0 github.com/columbustech/cdrive-sdk, github.com/columbustech/py-cdrive-api, +github.com/column-st/fastapi-openapi-specs-action, github.com/column-street/selfauth, github.com/column/zerolog,num_dependents_deps.dev:0 github.com/columncolab/EMC2, github.com/colus001/numberjack,num_dependents_deps.dev:0 +github.com/colutius/Telegram-Msg, github.com/colvin/defuse,num_dependents_deps.dev:0 github.com/colvin/herbert,num_dependents_deps.dev:0 github.com/colvin/retry,num_dependents_deps.dev:0 @@ -382817,6 +390616,7 @@ github.com/com-lihaoyi/sourcecode, github.com/com-plus/complus-v2-core-bsc,num_dependents_deps.dev:0 github.com/com-posers-pit/smw_music, github.com/com1killer/hackmud-chat-api,num_dependents_deps.dev:0 +github.com/com30n/build-alfred-workflow, github.com/com314159/leecodego,num_dependents_deps.dev:0 github.com/com4/amazons3, github.com/com:silviopaganini/game-of-life, @@ -382943,6 +390743,8 @@ github.com/comcast/trickster,num_dependents_deps.dev:0 github.com/comcast/webpa-common,num_dependents_deps.dev:1 github.com/comcast/wrp-go,num_dependents_deps.dev:0 github.com/comcast/xmidt,num_dependents_deps.dev:0 +github.com/comchangs/action-maven, +github.com/comchangs/action-yarn, github.com/comchangs/jsend,num_dependents_deps.dev:0 github.com/comchangs/ktor-easy-spa,num_dependents_deps.dev:0 github.com/comcy/DWNCRWLR,num_dependents_deps.dev:0 @@ -382962,6 +390764,7 @@ github.com/come/csg2d.js,num_dependents_deps.dev:0 github.com/come25136/ctyping,num_dependents_deps.dev:0 github.com/come25136/gtfs,num_dependents_deps.dev:0 github.com/come25136/multer-s3,num_dependents_deps.dev:0 +github.com/come25136/workflow-notification-for-slack, github.com/comeacrossyun/skyun, github.com/comect/django-simple-buefy, github.com/comedicchimera/olive,num_dependents_deps.dev:0 @@ -383015,6 +390818,7 @@ github.com/cometd/dojo-maven,num_dependents_deps.dev:76 github.com/cometh-game/default-token-list,num_dependents_deps.dev:0 github.com/cometh-game/uniswap-v2-sdk,num_dependents_deps.dev:0 github.com/cometkim/bs-ink,num_dependents_deps.dev:0 +github.com/cometkim/cleankeeper, github.com/cometkim/cometjs,num_dependents_deps.dev:5 github.com/cometkim/gatsby-plugin-concurrent-mode,num_dependents_deps.dev:0 github.com/cometkim/gatsby-plugin-linaria, @@ -383033,6 +390837,7 @@ github.com/cometkim/react-popmotion,num_dependents_deps.dev:0 github.com/cometkim/reason-ink,num_dependents_deps.dev:0 github.com/cometkim/rescript-ink,num_dependents_deps.dev:0 github.com/cometkim/use-pulled-grid,num_dependents_deps.dev:0 +github.com/cometkim/yarn-plugin-bump, github.com/cometlj/hexo-translate-title,num_dependents_deps.dev:0 github.com/cometwei/golang_code_exericise,num_dependents_deps.dev:0 github.com/cometwei/r.o.c-id-bruteforce,num_dependents_deps.dev:0 @@ -383044,6 +390849,7 @@ github.com/comex/rust-autollvm,num_dependents_deps.dev:0 github.com/comex/rust-shlex,num_dependents_deps.dev:3073 github.com/comfirm/alphamail-nodejs-client,num_dependents_deps.dev:0 github.com/comfortablynick/pyimgtool, +github.com/comfuture/atproto-action, github.com/comfuture/v-lazy-src, github.com/comfy/comfortable-mexican-sofa,criticality_score:0.496390 github.com/comfycode/gobble-jade,num_dependents_deps.dev:0 @@ -383279,8 +391085,11 @@ github.com/commercionetwork/fe-commercio-common-utils,num_dependents_deps.dev:0 github.com/commesan/dep,num_dependents_deps.dev:0 github.com/commisol/mnotify-node,num_dependents_deps.dev:0 github.com/commissure/redbox-react,num_dependents_deps.dev:3014 +github.com/commit-check/commit-check, +github.com/commit-check/commit-check-action, github.com/commit-intl/micro-down, github.com/commit-intl/omen,num_dependents_deps.dev:0 +github.com/commit-message-collective/beams-commit-message-checker, github.com/commit-software/dev,num_dependents_deps.dev:0 github.com/commit42/graphql-fragment-to-json,num_dependents_deps.dev:0 github.com/commit42/jake-synchronousTasks,num_dependents_deps.dev:0 @@ -383307,6 +391116,7 @@ github.com/commitground/merklux,num_dependents_deps.dev:0 github.com/commitground/solidity-partial-tree,num_dependents_deps.dev:0 github.com/commitground/solidity-patricia-tree,num_dependents_deps.dev:0 github.com/commitizen-tools/commitizen,criticality_score:0.554060 +github.com/commitizen-tools/commitizen-action, github.com/commitizen/conventional-commit-types,num_dependents_deps.dev:2100 github.com/commitizen/create-commit,num_dependents_deps.dev:0 github.com/commitizen/cz-cli,"criticality_score:0.563640,num_dependents_deps.dev:860" @@ -383319,12 +391129,15 @@ github.com/commits-generation/netlify-publish, github.com/commitsar-app/commitsar,num_dependents_deps.dev:0 github.com/commitsar-app/git,num_dependents_deps.dev:0 github.com/commitsar-app/release-notary,num_dependents_deps.dev:0 +github.com/committed-consulting/epsilon-ci-action, github.com/commixproject/commix,criticality_score:0.471440 +github.com/commiyou/web_to_pdf_action, github.com/commodityvectors/d3-timeline,num_dependents_deps.dev:0 github.com/commodityvectors/react-mapbox-gl,num_dependents_deps.dev:0 github.com/commodityvectors/rich-js,num_dependents_deps.dev:0 github.com/commom-commons/file,num_dependents_deps.dev:0 github.com/common-dependency/common,num_dependents_deps.dev:0 +github.com/common-fate/branch-name, github.com/common-fate/iamzero,num_dependents_deps.dev:0 github.com/common-go/auth,num_dependents_deps.dev:0 github.com/common-go/code,num_dependents_deps.dev:0 @@ -383380,6 +391193,9 @@ github.com/common-ts/unique-value-builder, github.com/common-ts/validation-util, github.com/common-ts/validator, github.com/common-ts/vue-onex, +github.com/common-workflow-lab/run-conformance-tests, +github.com/common-workflow-lab/run-tests, +github.com/common-workflow-lab/upload-conformance-badges, github.com/common-workflow-language/common-workflow-language,criticality_score:0.492790 github.com/common-workflow-language/cwl-ex,num_dependents_deps.dev:0 github.com/common-workflow-language/cwl-tes, @@ -383589,6 +391405,9 @@ github.com/comnetunb/dispatcher-protocol,num_dependents_deps.dev:0 github.com/comnetunb/dispatcher-vue-ui,num_dependents_deps.dev:0 github.com/comnik/declarative-dataflow,num_dependents_deps.dev:0 github.com/comnoco/bbolt,num_dependents_deps.dev:0 +github.com/comnoco/create-release-action, +github.com/comnoco/merge-bot, +github.com/comnoco/pr-status-labeller, github.com/comnori/cra-template-study,num_dependents_deps.dev:0 github.com/comnori/create-react-app,num_dependents_deps.dev:0 github.com/como-capital/package-eslint-config,num_dependents_deps.dev:0 @@ -383664,6 +391483,7 @@ github.com/comparaonline/stylelint-config-css,num_dependents_deps.dev:0 github.com/comparaonline/transfer-to-s3,num_dependents_deps.dev:0 github.com/comparaonline/ui-grid,num_dependents_deps.dev:4 github.com/compareasiagroup/node-citi,num_dependents_deps.dev:0 +github.com/comparis/github-action-yarn-forbid-portals, github.com/comparison-sorting/insertion-sort,num_dependents_deps.dev:0 github.com/comparison-sorting/is-sorted,num_dependents_deps.dev:0 github.com/comparnion/mysqldbhelper, @@ -383673,6 +391493,7 @@ github.com/comparto/eslint-config,num_dependents_deps.dev:0 github.com/comparto/git-c,num_dependents_deps.dev:0 github.com/comparto/prettier-config,num_dependents_deps.dev:0 github.com/compas-dev/compas, +github.com/compas-dev/compas-actions.ghpython_components, github.com/compas-dev/compas_ags, github.com/compas-dev/compas_fab, github.com/compas-dev/compas_fea, @@ -383739,6 +391560,16 @@ github.com/competition-index/opportini_html2pdf, github.com/competitionlabs/javascript-sdk,num_dependents_deps.dev:0 github.com/competitionlabs/widgets,num_dependents_deps.dev:0 github.com/competitive-programming-helper/atcoder-api, +github.com/competitive-verifier/check-action, +github.com/competitive-verifier/docs-action, +github.com/competitive-verifier/download-problems, +github.com/competitive-verifier/download-verify-artifact, +github.com/competitive-verifier/oj-resolve-action, +github.com/competitive-verifier/setup-competitive-verifier, +github.com/competitive-verifier/upload-verify-artifact, +github.com/competitive-verifier/verifier-object-equality-action, +github.com/competitive-verifier/verify-action, +github.com/compf/DocEvaluator, github.com/compgeomTU/frechetForCurves, github.com/comphonia/tictactoe4js,num_dependents_deps.dev:0 github.com/compico/aoresys,num_dependents_deps.dev:0 @@ -384101,11 +391932,14 @@ github.com/composedb/faissdb, github.com/composer-unused/composer-unused,criticality_score:0.454690 github.com/composer-version-manager/cvm, github.com/composer/ca-bundle,criticality_score:0.466430 +github.com/composer/class-map-generator, github.com/composer/composer,criticality_score:0.840410 github.com/composer/getcomposer.org,criticality_score:0.536300 github.com/composer/installers,criticality_score:0.691360 +github.com/composer/metadata-minifier, github.com/composer/package-versions-deprecated, github.com/composer/packagist,criticality_score:0.569520 +github.com/composer/pcre, github.com/composer/satis,criticality_score:0.524420 github.com/composer/semver,criticality_score:0.564160 github.com/composer/spdx-licenses,criticality_score:0.473760 @@ -384183,6 +392017,7 @@ github.com/compretend/compretend-img, github.com/comprna/SUPPA, github.com/compropago/sdk-python, github.com/comps/pexen, +github.com/compsci-commons/qc-benchmark-action, github.com/compscidr/awm-lib,num_dependents_deps.dev:0 github.com/compscidr/go-scholar,num_dependents_deps.dev:0 github.com/compscidr/scholar,num_dependents_deps.dev:0 @@ -384482,6 +392317,7 @@ github.com/computestdev/Openrunner,num_dependents_deps.dev:0 github.com/computmaxer/karma-jasmine-html-reporter-livereload,num_dependents_deps.dev:0 github.com/computology/io.packagecloud.client,num_dependents_deps.dev:0 github.com/computology/maven-packagecloud-wagon,num_dependents_deps.dev:0 +github.com/computology/packagecloud-github-action, github.com/computology/packagecloud.js,num_dependents_deps.dev:0 github.com/computoms/clock, github.com/computools/di,num_dependents_deps.dev:0 @@ -384554,6 +392390,7 @@ github.com/comtjz/consul_test_go,num_dependents_deps.dev:0 github.com/comtravo/ctparse, github.com/comtruedev/go-onnxwrapper,num_dependents_deps.dev:0 github.com/comtura-ai/fastapi-redis, +github.com/comu2e/tfnotify-composite-action, github.com/comunes/map-common-utils,num_dependents_deps.dev:0 github.com/comunica/actor-http-solid-auth-fetch,num_dependents_deps.dev:34 github.com/comunica/comunica,num_dependents_deps.dev:27045 @@ -384630,6 +392467,7 @@ github.com/conanyu/involutionking,num_dependents_deps.dev:0 github.com/conao3/cay, github.com/conao3/go-to,num_dependents_deps.dev:0 github.com/conao3/nullutil, +github.com/conao3/setup-keg, github.com/conapps/conatel-create-react-app, github.com/conapps/conatel-react-app,num_dependents_deps.dev:0 github.com/conapps/dynamodb-cri,num_dependents_deps.dev:0 @@ -384656,6 +392494,7 @@ github.com/conbojs/conbo-objectproxy, github.com/conbojs/conbo-simpleobjectproxy,num_dependents_deps.dev:0 github.com/conc-at/twitterwall-cli,num_dependents_deps.dev:0 github.com/conc-at/twitterwall.js,num_dependents_deps.dev:0 +github.com/concaf/paction, github.com/concancode/aesthetic_art, github.com/concave-org/concave,num_dependents_deps.dev:0 github.com/concavegit/kfda, @@ -384880,6 +392719,7 @@ github.com/conda-incubator/conda-lock, github.com/conda-incubator/conda-suggest, github.com/conda-incubator/ensureconda, github.com/conda-incubator/grayskull, +github.com/conda-incubator/setup-miniconda, github.com/conda/conda,criticality_score:0.709570 github.com/conda/conda-build,"criticality_score:0.669970,num_dependents_deps.dev:0" github.com/conda/conda-content-trust, @@ -385007,6 +392847,7 @@ github.com/configcat/js-sdk,num_dependents_deps.dev:0 github.com/configcat/node-sdk,num_dependents_deps.dev:0 github.com/configcat/nuxt-sdk,num_dependents_deps.dev:0 github.com/configcat/python-sdk, +github.com/configcat/scan-repository, github.com/configcat/terraform-provider-configcat,num_dependents_deps.dev:0 github.com/confighq/backend,num_dependents_deps.dev:0 github.com/configin/configin-nodejs,num_dependents_deps.dev:0 @@ -385019,6 +392860,7 @@ github.com/configrd/configrd-service,num_dependents_deps.dev:0 github.com/configscloud/client_java,num_dependents_deps.dev:0 github.com/configstr/python-client, github.com/configu/public-cli,num_dependents_deps.dev:0 +github.com/configu/setup-cli-action, github.com/configurator/ampm,num_dependents_deps.dev:0 github.com/configurator/closure-loader,num_dependents_deps.dev:0 github.com/configurator/file-copy-plugin,num_dependents_deps.dev:0 @@ -385078,6 +392920,7 @@ github.com/confluentinc/mox,num_dependents_deps.dev:0 github.com/confluentinc/parallel-consumer,num_dependents_deps.dev:0 github.com/confluentinc/resolver-maven-plugin,num_dependents_deps.dev:0 github.com/confluentinc/schema-registry,criticality_score:0.582850 +github.com/confluenza/confluenza-action, github.com/conflux-chain/conflux-toolkit,num_dependents_deps.dev:0 github.com/conflux-chain/go-conflux-sdk,num_dependents_deps.dev:0 github.com/conflux-chain/java-conflux-sdk,num_dependents_deps.dev:0 @@ -385213,6 +393056,7 @@ github.com/congnghia0609/scv-configuration,num_dependents_deps.dev:0 github.com/congnghia0609/uts-rabbit,num_dependents_deps.dev:0 github.com/congnghia0609/uts-tm-match,num_dependents_deps.dev:0 github.com/congnghiakhiem/ripple-account-listener,num_dependents_deps.dev:0 +github.com/congnguyendinh0/node-yarn-telegram-action, github.com/congnguyenthanhdhbk/honganh,num_dependents_deps.dev:0 github.com/congnt24/AddressConverter,num_dependents_deps.dev:0 github.com/congnt24/AwesomeNodeUtil,num_dependents_deps.dev:0 @@ -385278,6 +393122,7 @@ github.com/conjurinc/secretless,num_dependents_deps.dev:0 github.com/conjurinc/summon,num_dependents_deps.dev:0 github.com/conjurinc/summon-chefapi,num_dependents_deps.dev:0 github.com/conjurinc/summon-s3,num_dependents_deps.dev:0 +github.com/conker84/github-action-cherry-pick, github.com/conku/action_bar,num_dependents_deps.dev:0 github.com/conku/admin,num_dependents_deps.dev:2 github.com/conku/auth,num_dependents_deps.dev:1 @@ -385451,6 +393296,7 @@ github.com/connollyst/zksortable,num_dependents_deps.dev:0 github.com/connollyst/zkspectrum,num_dependents_deps.dev:0 github.com/connollyst/zktypeahead,num_dependents_deps.dev:0 github.com/connollyst/zkunit,num_dependents_deps.dev:0 +github.com/connor-baer/action-sync-branch, github.com/connor-baer/bamboo-ui,num_dependents_deps.dev:0 github.com/connor-baer/rich-text-from-notion,num_dependents_deps.dev:0 github.com/connor-baer/rich-text-to-jsx,num_dependents_deps.dev:0 @@ -385545,6 +393391,7 @@ github.com/connormullett/auto-activenv, github.com/connormullett/redis_rs,num_dependents_deps.dev:0 github.com/connornumberone/Times-js,num_dependents_deps.dev:0 github.com/connorourke/crystal_torture, +github.com/connorricotta/cache, github.com/connorrt/mozaik-ext-darksky,num_dependents_deps.dev:0 github.com/connorrt/mozaik-ext-harvest,num_dependents_deps.dev:0 github.com/connors/photon,num_dependents_deps.dev:0 @@ -385552,6 +393399,7 @@ github.com/connorshea/vue-select,num_dependents_deps.dev:0 github.com/connorskees/coffea,num_dependents_deps.dev:0 github.com/connorskees/grass,num_dependents_deps.dev:1 github.com/connorskees/pdf,num_dependents_deps.dev:0 +github.com/connorsmallman/github-jira-changelog-action, github.com/connorsmallman/merge-gettext,num_dependents_deps.dev:0 github.com/connorspeers/glowup,num_dependents_deps.dev:0 github.com/connortorrell/connortorrell_palindrome,num_dependents_deps.dev:0 @@ -385693,6 +393541,7 @@ github.com/conradev/plist-rs,num_dependents_deps.dev:0 github.com/conradhodge/next-tram,num_dependents_deps.dev:0 github.com/conradhodge/travel-api-client,num_dependents_deps.dev:0 github.com/conradj/gatsby-source-pocket,num_dependents_deps.dev:0 +github.com/conradj3/semver-validate-action, github.com/conradkleinespel/ram,num_dependents_deps.dev:0 github.com/conradkleinespel/rooster,num_dependents_deps.dev:0 github.com/conradkleinespel/rpassword,num_dependents_deps.dev:118 @@ -385763,6 +393612,7 @@ github.com/conradz/wd-tap-test,num_dependents_deps.dev:0 github.com/conradz/wispify,num_dependents_deps.dev:0 github.com/conreality/conreality.py, github.com/conreality/conreality.rb,num_dependents_deps.dev:0 +github.com/conroy-cheers/action-ros-lint, github.com/conrs/mash,num_dependents_deps.dev:0 github.com/cons3rt/pycons3rt, github.com/cons3rt/pycons3rt3, @@ -386063,6 +393913,7 @@ github.com/constretto/constretto-scala,num_dependents_deps.dev:0 github.com/constretto/constretto-spring,num_dependents_deps.dev:0 github.com/constrom/nw-auto-updater,num_dependents_deps.dev:0 github.com/constructioncloud/cc-react-native-easy-listview-gridview,num_dependents_deps.dev:0 +github.com/constructorfleet/action-jsonresume-export, github.com/constructorfleet/pyprika, github.com/constructorvirgil/gohomework,num_dependents_deps.dev:0 github.com/constructpm/pysyncgateway, @@ -386161,6 +394012,9 @@ github.com/container-labs/shared-nodejs-web, github.com/container-mgmt/apache_exporter,num_dependents_deps.dev:0 github.com/container-orchestrated-devices/container-device-interface,num_dependents_deps.dev:36 github.com/container-storage-interface/spec,"criticality_score:0.425920,num_dependents_deps.dev:695" +github.com/container-tools/camel-k-action, +github.com/container-tools/kind-action, +github.com/container-tools/microshift-action, github.com/containerbuildsystem/dockerfile-parse, github.com/containerbuildsystem/operator-manifest, github.com/containerbuildsystem/pyarn, @@ -386291,6 +394145,7 @@ github.com/containous/whoamiudp,num_dependents_deps.dev:0 github.com/containous/yaegi,num_dependents_deps.dev:1 github.com/containrrr/flagargs,num_dependents_deps.dev:0 github.com/containrrr/shoutrrr,num_dependents_deps.dev:0 +github.com/containrrr/shoutrrr-action, github.com/containrrr/watchtower,"criticality_score:0.582340,num_dependents_deps.dev:0" github.com/containrz/containrz,num_dependents_deps.dev:0 github.com/contains-io/rcli, @@ -386312,6 +394167,8 @@ github.com/contbank/grok,num_dependents_deps.dev:0 github.com/contbank/unipdf,num_dependents_deps.dev:0 github.com/contegix/node-ubersmith,num_dependents_deps.dev:0 github.com/contensis/api-delivery-js,num_dependents_deps.dev:0 +github.com/contensis/block-push, +github.com/contensis/cli-action, github.com/contensis/contensis-core-api,num_dependents_deps.dev:8 github.com/contensis/contensis-delivery-api,num_dependents_deps.dev:0 github.com/contensis/contensis-management-api,num_dependents_deps.dev:0 @@ -386353,6 +394210,7 @@ github.com/contentful-labs/gitify-dependencies,num_dependents_deps.dev:0 github.com/contentful-labs/keepachangelog,num_dependents_deps.dev:0 github.com/contentful-labs/kube-secret-syncer,num_dependents_deps.dev:0 github.com/contentful-labs/travis-notify-geckoboard,num_dependents_deps.dev:0 +github.com/contentful-userland/contentful-action, github.com/contentful-userland/gatsby-contentful-starter,"criticality_score:0.349360,num_dependents_deps.dev:0" github.com/contentful/apps,num_dependents_deps.dev:0 github.com/contentful/axios,num_dependents_deps.dev:57 @@ -386391,6 +394249,7 @@ github.com/contentful/ui-extensions-sdk,num_dependents_deps.dev:80 github.com/contentful/vault,num_dependents_deps.dev:0 github.com/contentful/widget-sdk,num_dependents_deps.dev:0 github.com/contential/contential-js,num_dependents_deps.dev:0 +github.com/contention/rsync-deployments, github.com/contentjet/contentjet-s3,num_dependents_deps.dev:0 github.com/contentjet/contentjet.js,num_dependents_deps.dev:0 github.com/contently/videojs-annotation-comments,num_dependents_deps.dev:0 @@ -386475,6 +394334,7 @@ github.com/contiamo/operational-visualizations,num_dependents_deps.dev:0 github.com/contiamo/pantheon-jdbc,num_dependents_deps.dev:0 github.com/contiamo/react-runtime-config,num_dependents_deps.dev:0 github.com/contiamo/restful-react,"criticality_score:0.430520,num_dependents_deps.dev:8" +github.com/contiamo/retag-push, github.com/contiki-ng/contiki-ng,criticality_score:0.652170 github.com/contiki-os/contiki,criticality_score:0.511780 github.com/contiki9/dlex,num_dependents_deps.dev:0 @@ -386663,6 +394523,9 @@ github.com/contra/vandelay,num_dependents_deps.dev:0 github.com/contra/vandelay-es6,num_dependents_deps.dev:0 github.com/contra/vandelay-util,num_dependents_deps.dev:0 github.com/contra/windows_98.css,num_dependents_deps.dev:0 +github.com/contractify/add-jira-info, +github.com/contractify/add-jira-ticket-number, +github.com/contractify/label-and-assign, github.com/contractshark/inject-solhint-ci, github.com/contractshark/solhint-ci,num_dependents_deps.dev:0 github.com/contractshark/solidity-coverage, @@ -386695,6 +394558,8 @@ github.com/contribution-jhipster-uga/generator-jhipster-quota,num_dependents_dep github.com/contribution-jhipster-uga/generator-jhipster-stripe-payment,num_dependents_deps.dev:0 github.com/contribution-jhipster-uga/generator-jhipster-translation,num_dependents_deps.dev:0 github.com/contributionls/utils,num_dependents_deps.dev:0 +github.com/contributor-assistant/github-action, +github.com/contributorcoin/contribute-action, github.com/contributorpw/google-apps-script-awesome-list,criticality_score:0.348340 github.com/contributte/live-form-validation,num_dependents_deps.dev:4 github.com/control-center/serviced,num_dependents_deps.dev:0 @@ -386731,6 +394596,7 @@ github.com/controlly/amqp-message-bus,num_dependents_deps.dev:0 github.com/controlly/umzug-mysql-storage,num_dependents_deps.dev:0 github.com/controlplaneio/kubectl-kubesec,num_dependents_deps.dev:0 github.com/controlplaneio/kubesec,"criticality_score:0.385390,num_dependents_deps.dev:0" +github.com/controlplaneio/kubesec-action, github.com/controlplaneio/simulator-standalone,num_dependents_deps.dev:0 github.com/controlsfx/controlsfx,criticality_score:0.607990 github.com/controversial/livejson, @@ -386748,6 +394614,8 @@ github.com/convcomm/telegram-logger,num_dependents_deps.dev:0 github.com/convect-ml/convect, github.com/convenia/removalist, github.com/convenience-org/age-verification-context,num_dependents_deps.dev:0 +github.com/convention-change/action-standard-version, +github.com/convention-change/conventional-version-check, github.com/conventional-changelog/commitlint,"criticality_score:0.645420,num_dependents_deps.dev:31664" github.com/conventional-changelog/conventional-changelog,"criticality_score:0.611500,num_dependents_deps.dev:70366" github.com/conventional-changelog/conventional-changelog-angular,num_dependents_deps.dev:12 @@ -386900,6 +394768,9 @@ github.com/conveyal/web-worker-promise-interface,num_dependents_deps.dev:8 github.com/conveyal/woonerf,num_dependents_deps.dev:0 github.com/conveyor-mq/conveyor-mq, github.com/convictional/convictional-node, +github.com/convictional/gcp-github-action, +github.com/convictional/gcp-storage-action, +github.com/convictional/trigger-workflow-and-wait, github.com/convinai/meeting-overview,num_dependents_deps.dev:0 github.com/convio/watirmark,num_dependents_deps.dev:0 github.com/convivo-gmbh/svg-live-drawing,num_dependents_deps.dev:0 @@ -386916,6 +394787,10 @@ github.com/convolvr/ecs,num_dependents_deps.dev:0 github.com/convolvr/rasterizer,num_dependents_deps.dev:0 github.com/convoo/login-fire,num_dependents_deps.dev:0 github.com/convoo/reverse-element,num_dependents_deps.dev:0 +github.com/convox/action-deploy, +github.com/convox/action-exec, +github.com/convox/action-export, +github.com/convox/action-run, github.com/convox/console-app,num_dependents_deps.dev:0 github.com/convox/convox,num_dependents_deps.dev:0 github.com/convox/docs,num_dependents_deps.dev:0 @@ -387008,8 +394883,10 @@ github.com/cook-code-jazor/encoding,num_dependents_deps.dev:2 github.com/cook-code-jazor/qrcode,num_dependents_deps.dev:0 github.com/cook-code-jazor/vue-permission-loader,num_dependents_deps.dev:0 github.com/cookRiceYu/cookie-ui,num_dependents_deps.dev:0 +github.com/cookbenjamin/update-version, github.com/cookbrite/flyingcloud, github.com/cookch10/node-fs-filesysteminfo,num_dependents_deps.dev:0 +github.com/cooked/actions-kicad-addon, github.com/cookedporkchop/embed-pages,num_dependents_deps.dev:0 github.com/cookejames/uibbq, github.com/cookeylang/cookeylang-ts,num_dependents_deps.dev:0 @@ -387280,6 +395157,7 @@ github.com/coolchip/node-red-contrib-enocean-esp2,num_dependents_deps.dev:0 github.com/coolchip/node-red-contrib-luxtronik2,num_dependents_deps.dev:0 github.com/coolchip/node-red-contrib-smartmeter,num_dependents_deps.dev:0 github.com/coolchip/node-red-contrib-viera,num_dependents_deps.dev:0 +github.com/coolcode/VuePagesAction, github.com/coolcode/tomato-clock, github.com/coolcode/tomo,num_dependents_deps.dev:0 github.com/coolcode/truffle-abi,num_dependents_deps.dev:0 @@ -387422,6 +395300,7 @@ github.com/coolsystem/mongo-multi,num_dependents_deps.dev:0 github.com/cooltoast/CannyCam, github.com/cooltowi/lovue-datepicker,num_dependents_deps.dev:0 github.com/cooltux008/go-100-days,num_dependents_deps.dev:0 +github.com/coolusaHD/json-from-env, github.com/coolux/pbauto-nodejs-http,num_dependents_deps.dev:0 github.com/coolwine/vue-group-table,num_dependents_deps.dev:0 github.com/cooly-me/coolytool-js,num_dependents_deps.dev:0 @@ -387555,6 +395434,7 @@ github.com/coopersystem-fsd/gitcooper,num_dependents_deps.dev:0 github.com/coopertrousers/palindrome,num_dependents_deps.dev:0 github.com/cooperwalbrun/aws-cidr-finder, github.com/cooperwalbrun/terraform-manager, +github.com/cooperwu/action-dingtalk, github.com/cooperxiong/pino-tcp,num_dependents_deps.dev:0 github.com/coopflow/fastify-mailer,num_dependents_deps.dev:0 github.com/coopflow/fastify-stripe,num_dependents_deps.dev:0 @@ -387616,12 +395496,15 @@ github.com/coox/styled-jsx-css-loader,num_dependents_deps.dev:0 github.com/copack/copack,num_dependents_deps.dev:0 github.com/copack/copack-typescript,num_dependents_deps.dev:0 github.com/copam/vue-snotify,num_dependents_deps.dev:0 +github.com/copapow/version-bump-package, +github.com/coparse-inc/action-electron-builder, github.com/copartit/mui-react-phone-input,num_dependents_deps.dev:0 github.com/copasi/basico, github.com/copasi/python-petab-importer, github.com/copaste/angular-form-builder,num_dependents_deps.dev:0 github.com/copaste/ng2-ynslider,num_dependents_deps.dev:0 github.com/copaste/ngformbuilder, +github.com/copdips/get-azure-keyvault-secrets-action, github.com/cope-systems/bottle-openapi-3, github.com/cope-systems/bottle-swagger, github.com/cope-systems/rsyslog-postgres-viewer, @@ -387644,7 +395527,9 @@ github.com/copenhas/funs,num_dependents_deps.dev:0 github.com/copepod/tonion,num_dependents_deps.dev:0 github.com/copernicrypt/eth2-wallet-js,num_dependents_deps.dev:0 github.com/copernicusmarine/cmemsapi, +github.com/copernik-eu/log4j-plugins, github.com/cophi-wue/cophi-toolbox, +github.com/copilotmoney/linear-pr-check, github.com/copilotstudio/flightdeck-eleventy-react-icons,num_dependents_deps.dev:0 github.com/copiner/Chello,num_dependents_deps.dev:0 github.com/copiner/easytap,num_dependents_deps.dev:0 @@ -387754,8 +395639,11 @@ github.com/copyrighthero/Redistr, github.com/copyrighthero/SeCo, github.com/copyrighthero/Utilize, github.com/copysh/copysh-random-messages,num_dependents_deps.dev:0 +github.com/copytext/textcopy, +github.com/coq-community/docker-coq-action, github.com/coq/coq,criticality_score:0.775580 github.com/coqsenpate/node-mdns-native,num_dependents_deps.dev:0 +github.com/coquer/couchbase-action, github.com/coqui-ai/STT,num_dependents_deps.dev:0 github.com/coqui-ai/TTS, github.com/coqui-ai/Trainer, @@ -387854,6 +395742,7 @@ github.com/corbt/react-native-keep-awake,"criticality_score:0.318160,num_depende github.com/corburn/biogo,num_dependents_deps.dev:0 github.com/corburn/helm,num_dependents_deps.dev:0 github.com/corbym/gogiven,num_dependents_deps.dev:0 +github.com/corca-ai/local-cache, github.com/corcalla7/lodown,num_dependents_deps.dev:0 github.com/corcd/eos-uploader,num_dependents_deps.dev:0 github.com/corcd/gdy-arms,num_dependents_deps.dev:0 @@ -387899,6 +395788,7 @@ github.com/cordjs/zone.js,num_dependents_deps.dev:0 github.com/cordlesswool/node-red-node-webdav,num_dependents_deps.dev:0 github.com/cordmata/mediaampy, github.com/cordmaur/WaterDetect, +github.com/cordobeces/amplify-cli-action, github.com/cordobo/cordova-plugin-ios-camera-permissions,num_dependents_deps.dev:0 github.com/cordova-bridge/cordova-splash-gm,num_dependents_deps.dev:0 github.com/cordova-bridge/icon,num_dependents_deps.dev:0 @@ -387994,6 +395884,7 @@ github.com/corecoding/Vitals,criticality_score:0.431840 github.com/corecoding/radiothermostat, github.com/coreconsult/node-log4js-qradar-syslog-appender,num_dependents_deps.dev:0 github.com/coreconsult/node-log4js-syslog-tls-appender, +github.com/cored/standard-action, github.com/cored0wn/deliciousToasts,num_dependents_deps.dev:0 github.com/cored0wn/react-delicious_toasts, github.com/coredefend/rpc-todos,num_dependents_deps.dev:0 @@ -388083,6 +395974,7 @@ github.com/corentind59/sqloud,num_dependents_deps.dev:0 github.com/corentindeboisset/styledconsole,num_dependents_deps.dev:0 github.com/corentinfardeau/horizontal-scroll,num_dependents_deps.dev:0 github.com/corenting/immutabledict,Google +github.com/corentinguilloteau/kth-devops-teammate, github.com/corentingurtner/node-canvas,num_dependents_deps.dev:0 github.com/corentinlg/quantorxs, github.com/corentinmag/geoip,num_dependents_deps.dev:0 @@ -388352,6 +396244,8 @@ github.com/coreyward/sanity-image,num_dependents_deps.dev:0 github.com/coreyward/sanity-pills, github.com/coreyward/typekit,num_dependents_deps.dev:0 github.com/coreyward/validated-form,num_dependents_deps.dev:0 +github.com/coreywebber/setup-sqlpackage, +github.com/coreywebber/setup-ssms, github.com/corezoid/gitcall-examples,num_dependents_deps.dev:0 github.com/corezoid/gitcall-java-runner,num_dependents_deps.dev:0 github.com/corfe83/ebiten,num_dependents_deps.dev:0 @@ -388459,6 +396353,7 @@ github.com/corllete/apos-ds, github.com/corllete/material-styled,num_dependents_deps.dev:0 github.com/corllete/react-avatar,num_dependents_deps.dev:0 github.com/corluk/react-starter,num_dependents_deps.dev:0 +github.com/cormac-yobota/action-taskcat, github.com/cormachogan/go-snippets,num_dependents_deps.dev:0 github.com/cormachogan/govmomi-examples,num_dependents_deps.dev:0 github.com/cormachogan/govmomi-snippets,num_dependents_deps.dev:0 @@ -388631,16 +396526,21 @@ github.com/coronajs/corona-client,num_dependents_deps.dev:0 github.com/coronalabs/corona,criticality_score:0.446310 github.com/coronary-atlas/cadtoolkit, github.com/coronasafe/prescription-builder,num_dependents_deps.dev:0 +github.com/coronasafe/zoomdrive, github.com/coronio/map,num_dependents_deps.dev:0 github.com/coroo/docsify-share,num_dependents_deps.dev:0 github.com/coroo/go-lemonilo,num_dependents_deps.dev:0 github.com/coroo/go-pawoon,num_dependents_deps.dev:0 github.com/coroo/go-pawoon-user,num_dependents_deps.dev:0 github.com/coroo/go-starter,num_dependents_deps.dev:0 +github.com/coroo/pytest-coverage-commentator, github.com/coroot/tcptracer,num_dependents_deps.dev:0 github.com/corosync/corosync,criticality_score:0.554110 github.com/coroutine/mini_graph,num_dependents_deps.dev:0 github.com/corp-0/jtac, +github.com/corp-0/pr2changelog, +github.com/corp-0/testResultsToMarkdown, +github.com/corp-0/update-docs-pls, github.com/corp0ra1/showdocdemo,num_dependents_deps.dev:0 github.com/corp186/fake_sns,num_dependents_deps.dev:0 github.com/corp2world/c2w-java-client,num_dependents_deps.dev:0 @@ -388723,6 +396623,7 @@ github.com/corrscope/corrscope, github.com/corrupt/looper,num_dependents_deps.dev:0 github.com/corrupt/rsstweetbot,num_dependents_deps.dev:0 github.com/corrupt952/Pyxenter, +github.com/corrupt952/actions-retry-command, github.com/corruptmem/node-srv,num_dependents_deps.dev:0 github.com/corsair-sdk/node,num_dependents_deps.dev:0 github.com/corsc/beyond-effective-go,num_dependents_deps.dev:0 @@ -388831,6 +396732,7 @@ github.com/corticometrics/batchtools, github.com/corticometrics/fs2dicom, github.com/corticph/goffmpeg,num_dependents_deps.dev:0 github.com/cortinico/slidetoact,"criticality_score:0.341420,num_dependents_deps.dev:0" +github.com/cortip/magento2-actions, github.com/cortiz/prawn-rails,num_dependents_deps.dev:2 github.com/cortl/cooking,num_dependents_deps.dev:0 github.com/cortl/insomnia-plugin-githubjwt,num_dependents_deps.dev:0 @@ -388883,6 +396785,7 @@ github.com/corvis/strome, github.com/corvis/tapen, github.com/corvis/ws-sizzle, github.com/corvofeng/Vsnips,num_dependents_deps.dev:0 +github.com/corvofeng/action-upterm, github.com/corvostore/corvo-node-client,num_dependents_deps.dev:0 github.com/corvostore/corvoserver,num_dependents_deps.dev:0 github.com/corvusoft/openssl-dependency,num_dependents_deps.dev:0 @@ -388957,6 +396860,7 @@ github.com/corymartin/viewbridge,num_dependents_deps.dev:0 github.com/corymayer/homebridge-rpi-garagedoor-liftmaster,num_dependents_deps.dev:0 github.com/corymbia/eucalyptus-awscli-plugin, github.com/corymbia/logs-tail-awscli-plugin, +github.com/corymhall/cdk-diff-action, github.com/corymickelson/CommonPdf,num_dependents_deps.dev:0 github.com/corymickelson/CommonPdf_Pdftk,num_dependents_deps.dev:0 github.com/corymickelson/CommonPdf_PoDoFo,num_dependents_deps.dev:0 @@ -388975,6 +396879,7 @@ github.com/coryrylan/ngx-libraries,num_dependents_deps.dev:0 github.com/coryrylan/ngx-lite,num_dependents_deps.dev:0 github.com/corysabol/k2,num_dependents_deps.dev:0 github.com/corysabol/ktwo, +github.com/coryschwartz/testground-github-action, github.com/coryshain/dtsr, github.com/corysimmons/bootstrap-margin-grid,num_dependents_deps.dev:0 github.com/corysimmons/boy,num_dependents_deps.dev:0 @@ -389019,6 +396924,14 @@ github.com/cosasdepuma/XPLOITV, github.com/cosasdepuma/masterchef,num_dependents_deps.dev:0 github.com/cosasdepuma/mrrobot, github.com/cosasdepuma/polyglot-code,num_dependents_deps.dev:0 +github.com/coscene-io/api-linter-setup-action, +github.com/coscene-io/setup-alicloud-workspace, +github.com/coscene-io/setup-artifact-version, +github.com/coscene-io/setup-azure-workspace, +github.com/coscene-io/setup-cd-tools, +github.com/coscene-io/setup-cd-workspace-all-in-one, +github.com/coscene-io/setup-ossutil, +github.com/coscene-io/skopeo-copy-action, github.com/coschain/contentos-go,num_dependents_deps.dev:0 github.com/coschain/cosjs,num_dependents_deps.dev:0 github.com/coschain/smartcontract_template_js,num_dependents_deps.dev:0 @@ -389136,6 +397049,7 @@ github.com/cosmin/maven-dependency-plugin,num_dependents_deps.dev:0 github.com/cosmin/stashy, github.com/cosmin/ulid-java,num_dependents_deps.dev:0 github.com/cosminbasca/cleanmymac, +github.com/cosmincatalin/sbt-to-maven-central, github.com/cosminilie/gofish,num_dependents_deps.dev:0 github.com/cosminlupu/homebridge-samsung-multiroom,num_dependents_deps.dev:0 github.com/cosminlupu/npmfiles,num_dependents_deps.dev:0 @@ -389159,6 +397073,7 @@ github.com/cosmoarunn/shhwallet,num_dependents_deps.dev:0 github.com/cosmojs/loopback-satellizer,num_dependents_deps.dev:0 github.com/cosmolin/markdown-it-plantuml,num_dependents_deps.dev:0 github.com/cosmologicon/maff, +github.com/cosmology-tech/starship-action, github.com/cosmonaut/pycmpfit, github.com/cosmoneto1/-lib-mask,num_dependents_deps.dev:0 github.com/cosmopolit/flagstrap,num_dependents_deps.dev:0 @@ -389186,6 +397101,7 @@ github.com/cosmos/cosmos-sdk,"criticality_score:0.742940,num_dependents_deps.dev github.com/cosmos/ethermint,num_dependents_deps.dev:5 github.com/cosmos/gaia,num_dependents_deps.dev:1 github.com/cosmos/gex,num_dependents_deps.dev:0 +github.com/cosmos/gosec, github.com/cosmos/gravity-bridge,num_dependents_deps.dev:0 github.com/cosmos/iavl,num_dependents_deps.dev:675 github.com/cosmos/ibc,num_dependents_deps.dev:0 @@ -389273,6 +397189,8 @@ github.com/cospie/sketch.js,num_dependents_deps.dev:0 github.com/cospired/hapi-plugin-mysql-promise,num_dependents_deps.dev:0 github.com/cospired/i18n-iso-languages,num_dependents_deps.dev:28 github.com/cospired/javascript,num_dependents_deps.dev:0 +github.com/cosq-network/dotenv-loader, +github.com/cosq-network/zip-upload-to-s3, github.com/cossacklabs/acra,"criticality_score:0.415440,num_dependents_deps.dev:0" github.com/cossacklabs/themis,"criticality_score:0.453090,num_dependents_deps.dev:2" github.com/cossackpyra/pyradebug,num_dependents_deps.dev:0 @@ -389302,6 +397220,7 @@ github.com/costajpb/suggest-dimensions,num_dependents_deps.dev:0 github.com/costanic/maestrospecs,num_dependents_deps.dev:0 github.com/costanilo/ubyranator,num_dependents_deps.dev:0 github.com/costanzopa/i-root-common,num_dependents_deps.dev:0 +github.com/costap/action-spicedb-version, github.com/costap/windstats,num_dependents_deps.dev:0 github.com/costargc/ytgetcaption, github.com/costas-basdekis/aox, @@ -389366,6 +397285,7 @@ github.com/cosven/feeluown-cli, github.com/cosven/feeluown-core, github.com/cosven/go2pod, github.com/cosven/tidb-testing,num_dependents_deps.dev:0 +github.com/coswarm/coswarm-action, github.com/coswind/gulp-file-to-js,num_dependents_deps.dev:0 github.com/cosycode/bit-data-map,num_dependents_deps.dev:0 github.com/cosycode/code-dict,num_dependents_deps.dev:0 @@ -389453,6 +397373,7 @@ github.com/cotttpan/sq,num_dependents_deps.dev:0 github.com/cotttpan/tslint-config-cotttpan,num_dependents_deps.dev:0 github.com/coturiv/angular-kits,num_dependents_deps.dev:0 github.com/coturiv/ionic4-kits,num_dependents_deps.dev:0 +github.com/coturiv/setup-ionic, github.com/coturiv/typeorm,num_dependents_deps.dev:0 github.com/coturn/coturn,criticality_score:0.541420 github.com/cotwo0139/slyrics,num_dependents_deps.dev:0 @@ -389600,6 +397521,7 @@ github.com/coufran/coufran-spring-boot-starter-api,num_dependents_deps.dev:0 github.com/coufran/door-god,num_dependents_deps.dev:0 github.com/coufran/hello-maven,num_dependents_deps.dev:0 github.com/cougarJS/cougar,num_dependents_deps.dev:0 +github.com/cougargrades/action-send-mail, github.com/cougargrades/importer,num_dependents_deps.dev:0 github.com/cougargrades/peoplesoft,num_dependents_deps.dev:0 github.com/cougargrades/publicdata,num_dependents_deps.dev:0 @@ -389724,6 +397646,7 @@ github.com/coursereviews/directory, github.com/coursesquare/vue-multi-draggable,num_dependents_deps.dev:0 github.com/courseswe/nestjs-authentication, github.com/coursier/apps,num_dependents_deps.dev:0 +github.com/coursier/cache-action, github.com/coursier/cache-migration,num_dependents_deps.dev:0 github.com/coursier/coursier,"criticality_score:0.615140,num_dependents_deps.dev:9173" github.com/coursier/dependency,num_dependents_deps.dev:0 @@ -389780,9 +397703,11 @@ github.com/couzic/sparix, github.com/cov-ert/gofasta,num_dependents_deps.dev:0 github.com/covalent-hq/secret-sharing-ng, github.com/covalentcareers/wagtail-polls, +github.com/covalentteam/action, github.com/covalentteam/template,num_dependents_deps.dev:0 github.com/covall/r-script,num_dependents_deps.dev:0 github.com/covard/cbaoth,num_dependents_deps.dev:0 +github.com/covbot/pnpm-install-with-cache, github.com/cove-dev/cove-python, github.com/cove9988/PasswordGenerator, github.com/cove9988/github_pr_label, @@ -389843,10 +397768,13 @@ github.com/coveooss/tgf,num_dependents_deps.dev:0 github.com/coveooss/uabot,num_dependents_deps.dev:0 github.com/cover/jquery-timepicker-rails,num_dependents_deps.dev:0 github.com/coverage-report/clover-json, +github.com/coverage-robot/action, github.com/coverahealth/dataspec, github.com/coveraje/coveraje,num_dependents_deps.dev:0 +github.com/coverallsapp/github-action, github.com/coverband-service/coverband-service-client,num_dependents_deps.dev:0 github.com/coverbeck/ambient-weather-scala,num_dependents_deps.dev:0 +github.com/coverbot-io/coverbot-action, github.com/covergates/covergates-node,num_dependents_deps.dev:0 github.com/coverity/pie,num_dependents_deps.dev:0 github.com/coverlet-coverage/coverlet,criticality_score:0.583670 @@ -389856,6 +397784,7 @@ github.com/coverosu/borgor, github.com/coverosu/coover, github.com/coverosu/eaves, github.com/coverosu/lamp, +github.com/coverpulse/github-actions, github.com/coverslide/broxy, github.com/coverslide/defer,num_dependents_deps.dev:0 github.com/coverslide/files-api,num_dependents_deps.dev:0 @@ -389876,6 +397805,7 @@ github.com/coversocks/gocs,num_dependents_deps.dev:0 github.com/coverstory/speak,num_dependents_deps.dev:0 github.com/covert-encryption/covert, github.com/covert-encryption/zxcvbn-python, +github.com/covertbert/storybook-action, github.com/covertbert/vue-image-compare,num_dependents_deps.dev:0 github.com/covertcj/es-config,num_dependents_deps.dev:0 github.com/covertcj/prettier-config,num_dependents_deps.dev:0 @@ -389883,6 +397813,7 @@ github.com/covertcj/ts-config,num_dependents_deps.dev:0 github.com/covertness/ally,num_dependents_deps.dev:0 github.com/covertness/coap-rs,num_dependents_deps.dev:0 github.com/coverwallet/cw-components,num_dependents_deps.dev:0 +github.com/coverwallet/pr-labeler, github.com/coverwallet/tracking-wallet,num_dependents_deps.dev:0 github.com/covex-nn/joos-behavior,num_dependents_deps.dev:0 github.com/covex-nn/joos-inheritance,num_dependents_deps.dev:0 @@ -390064,6 +397995,7 @@ github.com/cowtowncoder/java-classmate,num_dependents_deps.dev:12330 github.com/cowtowncoder/java-merge-sort,num_dependents_deps.dev:14 github.com/cowtowncoder/java-uuid-generator,"criticality_score:0.301820,num_dependents_deps.dev:2725" github.com/cowtowncoder/low-gc-membuffers,num_dependents_deps.dev:15 +github.com/cowtrix/github-pages-blog-action, github.com/cowwoc/pouch,num_dependents_deps.dev:2 github.com/cowwoc/requirements.java,num_dependents_deps.dev:10 github.com/cox-auto-kc/react-entypo, @@ -390287,12 +398219,16 @@ github.com/cpamp21/ng-bcomponents,num_dependents_deps.dev:0 github.com/cpamp21/node-cli-args,num_dependents_deps.dev:0 github.com/cpanato/circleci-exporter,num_dependents_deps.dev:0 github.com/cpanato/cloudnative-bot,num_dependents_deps.dev:0 +github.com/cpanato/faas-cli-installer, github.com/cpanato/github-sync,num_dependents_deps.dev:0 github.com/cpanato/go-circleci,num_dependents_deps.dev:0 github.com/cpanato/helix,num_dependents_deps.dev:0 +github.com/cpanato/kubepug-installer, github.com/cpanato/mattermost-plugin-alertmanager,num_dependents_deps.dev:0 github.com/cpanato/mattermost-plugin-aws-sns,num_dependents_deps.dev:0 +github.com/cpanato/setup-zeitgeist, github.com/cpanato/testing-ci-providers,num_dependents_deps.dev:0 +github.com/cpanato/vault-installer, github.com/cpancake/botsworth,num_dependents_deps.dev:0 github.com/cpancake/mimicry,num_dependents_deps.dev:0 github.com/cpancake/special_latex,num_dependents_deps.dev:0 @@ -390303,6 +398239,7 @@ github.com/cpanelricky/statuspage-go,num_dependents_deps.dev:0 github.com/cpankaj/gmean,num_dependents_deps.dev:0 github.com/cpankaj/keltnerchannel,num_dependents_deps.dev:6 github.com/cpankow/pyburst, +github.com/cpanyjs/setup-cpany, github.com/cpapazaf/karma-android-device-browser-launcher,num_dependents_deps.dev:0 github.com/cpapazaf/karma-prettybrowser-reporter,num_dependents_deps.dev:0 github.com/cpapazaf/soners, @@ -390372,6 +398309,8 @@ github.com/cpdavila/taller-de-js-basico, github.com/cpdean/cargo-danger,num_dependents_deps.dev:0 github.com/cpdean/fnny, github.com/cpdean/ts-left-pad,num_dependents_deps.dev:0 +github.com/cpdeethree/publish-unit-test-result-action, +github.com/cpdeethree/test-reporter, github.com/cpdevws/dcos_marathon, github.com/cpdevws/extensible-json-layout,num_dependents_deps.dev:0 github.com/cpdevws/semver,num_dependents_deps.dev:0 @@ -390385,6 +398324,7 @@ github.com/cpeddecord/restify-webpack-middleware,num_dependents_deps.dev:0 github.com/cpeditor/cpeditor,criticality_score:0.509860 github.com/cpeele00/bigbrother,num_dependents_deps.dev:0 github.com/cpeele00/shizzle,num_dependents_deps.dev:0 +github.com/cpenv/github-actions-publish, github.com/cpepin/generator-nglight,num_dependents_deps.dev:0 github.com/cpepin/haunted-forms,num_dependents_deps.dev:0 github.com/cpepin/hookbook,num_dependents_deps.dev:0 @@ -390392,6 +398332,7 @@ github.com/cperales/foucluster, github.com/cperezabo/gulp-yuml,num_dependents_deps.dev:0 github.com/cperezabo/html2pdf,num_dependents_deps.dev:0 github.com/cperezabo/html2pdf-cli, +github.com/cperezabo/setup-git-mkver, github.com/cperezcapote/vuepress-theme-gocommons,num_dependents_deps.dev:0 github.com/cperinet/generator-tartiflette, github.com/cperriard/compile-tex,num_dependents_deps.dev:0 @@ -390428,6 +398369,7 @@ github.com/cpfair/tapiriik,criticality_score:0.412130 github.com/cpfair/yaqut,num_dependents_deps.dev:0 github.com/cpfarher/react-highlightjs, github.com/cpfarher/vue-tooltipster,num_dependents_deps.dev:0 +github.com/cpfarherFinitestate/finite-state-quickscan, github.com/cpflat/amulog, github.com/cpflat/log2seq, github.com/cpflat/logdag, @@ -390475,6 +398417,7 @@ github.com/cpilab/group-bayesian-model-comparison, github.com/cpilatre/emsi-lib,num_dependents_deps.dev:0 github.com/cpilsworth/aws-s3-signurl,num_dependents_deps.dev:0 github.com/cpilsworth/httpie-adobeio, +github.com/cpina/github-action-push-to-another-repository, github.com/cpina/pepephone-data, github.com/cpingjs/slush-cping-mini,num_dependents_deps.dev:0 github.com/cpinitiative/usaco-guide,criticality_score:0.533270 @@ -390572,10 +398515,12 @@ github.com/cpow-89/discogspy, github.com/cpowell/fuzzy-associative-memory,num_dependents_deps.dev:0 github.com/cpowell/steering-behaviors,num_dependents_deps.dev:0 github.com/cpp-for-yourself/homework_checker, +github.com/cpp-linter/cpp-linter-action, github.com/cpp2go/gonet_example,num_dependents_deps.dev:0 github.com/cpp4ever/content-workshop,num_dependents_deps.dev:0 github.com/cpp4ever/content-workshop-express,num_dependents_deps.dev:0 github.com/cpp4ever/content-workshop-ui,num_dependents_deps.dev:0 +github.com/cpp977/GenCMakeDoc, github.com/cppaymurat/petproject_monolithic,num_dependents_deps.dev:0 github.com/cppccn/pnttn, github.com/cppccn/rstrtt, @@ -390653,6 +398598,7 @@ github.com/cprogrammer1994/objloader, github.com/cprogrammer1994/pyprojector, github.com/cprov/marketo-monkey, github.com/cprov/surl, +github.com/cprudhom/jacoco-merge, github.com/cprussin/ember-cli-tooltipster,num_dependents_deps.dev:0 github.com/cprussin/gulp-prettier,num_dependents_deps.dev:0 github.com/cps0919/cron-component,num_dependents_deps.dev:0 @@ -390701,6 +398647,7 @@ github.com/cpt-John/lodash_sample,num_dependents_deps.dev:0 github.com/cpt-chewieeee/z-ui-kit,num_dependents_deps.dev:0 github.com/cpt-chewieeee/zap-kit,num_dependents_deps.dev:0 github.com/cptbobossa/simple_xml_serialize,num_dependents_deps.dev:0 +github.com/cptchloroplast/upload-s3-action, github.com/cptechie/homebridge-lutron-homeworks,num_dependents_deps.dev:0 github.com/cptidea/jobtask,num_dependents_deps.dev:0 github.com/cptidea/multibot,num_dependents_deps.dev:0 @@ -390875,6 +398822,7 @@ github.com/cqse/teamscale-cli, github.com/cqse/teamscale-client-python, github.com/cqse/teamscale-custom-check-sample,num_dependents_deps.dev:988 github.com/cqse/teamscale-jacoco-agent,num_dependents_deps.dev:0 +github.com/cqse/teamscale-upload-action, github.com/cqtangsong/anydoor,num_dependents_deps.dev:0 github.com/cqtrade/infobot,num_dependents_deps.dev:0 github.com/cquanu/github-dark,criticality_score:0.365200 @@ -391001,6 +398949,7 @@ github.com/crabhi/karma-ubuntu-reporter,num_dependents_deps.dev:0 github.com/crabi/cfg,num_dependents_deps.dev:0 github.com/crabicode/knx-listener,num_dependents_deps.dev:0 github.com/crabicode/pg-events,num_dependents_deps.dev:0 +github.com/crabisoft/publish-conda, github.com/crabitrabbit/hop,num_dependents_deps.dev:0 github.com/crabitrabbit/hutch,num_dependents_deps.dev:0 github.com/crabl/ng-percent,num_dependents_deps.dev:0 @@ -391079,6 +399028,11 @@ github.com/craftcms/feed-me,criticality_score:0.548490 github.com/craftcms/gatsby-source-craft,num_dependents_deps.dev:0 github.com/craftcms/nitro,num_dependents_deps.dev:0 github.com/craftcms/sass,num_dependents_deps.dev:0 +github.com/craftech-io/eks-helm-deploy-action, +github.com/craftech-io/eks-helmfile-deploy-action, +github.com/craftech-io/helm-push-action, +github.com/craftech-io/publish-terraform-module-action, +github.com/craftech-io/slack-action, github.com/craftedbygc/e,num_dependents_deps.dev:2 github.com/craftedbygc/highway-kit,num_dependents_deps.dev:0 github.com/craftedsystems/fetch-json-resource,num_dependents_deps.dev:0 @@ -391102,6 +399056,7 @@ github.com/craftgear/camel-snake,num_dependents_deps.dev:0 github.com/craftgear/reduce-plus,num_dependents_deps.dev:0 github.com/craftgear/rehook,num_dependents_deps.dev:0 github.com/craftgear/snake-camel, +github.com/crafting-dev/sandbox-launch-action, github.com/craftingmod/ncube-thyme-typescript,num_dependents_deps.dev:0 github.com/craftkit/craft-bootloader,num_dependents_deps.dev:0 github.com/craftkit/craft-uikit,num_dependents_deps.dev:0 @@ -391186,10 +399141,14 @@ github.com/crahles/syslogd-nodejs,num_dependents_deps.dev:0 github.com/craic/simple_tooltip,num_dependents_deps.dev:0 github.com/craicoverflow/app-services-openapi-validator,num_dependents_deps.dev:0 github.com/craicoverflow/echo-prisma-api,num_dependents_deps.dev:0 +github.com/craicoverflow/install-git-chglog, +github.com/craicoverflow/openapi-generator-generate-action, github.com/craicoverflow/socket,num_dependents_deps.dev:0 github.com/craicoverflow/tyk,num_dependents_deps.dev:0 github.com/craig-coles/GCP_cloud_vision_lines,num_dependents_deps.dev:0 github.com/craig-corcoran/node-request-errors,num_dependents_deps.dev:0 +github.com/craig-day/compute-tag, +github.com/craig-day/fetch-build-from-gcb, github.com/craig-landry/go-bindata,num_dependents_deps.dev:0 github.com/craig-miller/fsspace,num_dependents_deps.dev:0 github.com/craig-mulligan/p-q,num_dependents_deps.dev:0 @@ -391537,6 +399496,7 @@ github.com/crashbash-kun/shankmods-bot,num_dependents_deps.dev:0 github.com/crashbell/fake-stock-server,num_dependents_deps.dev:0 github.com/crashbell/node-bb,num_dependents_deps.dev:0 github.com/crashbreak/crashbreak,num_dependents_deps.dev:0 +github.com/crashcloud/yak-publish, github.com/crashdeck/crashdeck,num_dependents_deps.dev:0 github.com/crashdump/birdview,num_dependents_deps.dev:0 github.com/crashdump/covert,num_dependents_deps.dev:0 @@ -391563,6 +399523,7 @@ github.com/crashspringfield/fantasy-vue,num_dependents_deps.dev:0 github.com/crashspringfield/react-google-calendar,num_dependents_deps.dev:0 github.com/crashsystems/jparse,num_dependents_deps.dev:0 github.com/crashsystems/promise-queue,num_dependents_deps.dev:0 +github.com/crashtest-security/github-action, github.com/crashtestoz/homebridge-http-lux,num_dependents_deps.dev:0 github.com/crashtestoz/homebridge-http-window-blinds,num_dependents_deps.dev:0 github.com/crashtheuniverse/mathware,num_dependents_deps.dev:0 @@ -391758,6 +399719,7 @@ github.com/crazy-hope/vue-crazy-calendar,num_dependents_deps.dev:0 github.com/crazy-hope/vue-crazy-confirm,num_dependents_deps.dev:0 github.com/crazy-hope/vue-crazy-deliverytime,num_dependents_deps.dev:0 github.com/crazy-hope/vue-crazy-toast,num_dependents_deps.dev:0 +github.com/crazy-matt/manage-stale-branches, github.com/crazy-max/WindowsSpyBlocker,"criticality_score:0.393210,num_dependents_deps.dev:0" github.com/crazy-max/artifactory-cleanup,num_dependents_deps.dev:0 github.com/crazy-max/buildkit,num_dependents_deps.dev:0 @@ -391768,6 +399730,23 @@ github.com/crazy-max/echo-ipfilter,num_dependents_deps.dev:0 github.com/crazy-max/firefox-history-merger,num_dependents_deps.dev:0 github.com/crazy-max/ftpgrab,"criticality_score:0.305040,num_dependents_deps.dev:0" github.com/crazy-max/geoip-updater,num_dependents_deps.dev:0 +github.com/crazy-max/ghaction-container-scan, +github.com/crazy-max/ghaction-docker-buildx, +github.com/crazy-max/ghaction-docker-status, +github.com/crazy-max/ghaction-dockerhub-mirror, +github.com/crazy-max/ghaction-dump-context, +github.com/crazy-max/ghaction-github-labeler, +github.com/crazy-max/ghaction-github-pages, +github.com/crazy-max/ghaction-github-release, +github.com/crazy-max/ghaction-github-runtime, +github.com/crazy-max/ghaction-github-status, +github.com/crazy-max/ghaction-hugo, +github.com/crazy-max/ghaction-import-gpg, +github.com/crazy-max/ghaction-setup-containerd, +github.com/crazy-max/ghaction-setup-docker, +github.com/crazy-max/ghaction-upx, +github.com/crazy-max/ghaction-virustotal, +github.com/crazy-max/ghaction-xgo, github.com/crazy-max/git-rewrite-author,num_dependents_deps.dev:0 github.com/crazy-max/gohealthchecks,num_dependents_deps.dev:0 github.com/crazy-max/gonfig,num_dependents_deps.dev:0 @@ -391852,6 +399831,7 @@ github.com/crazyfactory/webp-converter-cli,num_dependents_deps.dev:0 github.com/crazyfdf/uct-cli,num_dependents_deps.dev:0 github.com/crazyfdf/uctui,num_dependents_deps.dev:0 github.com/crazyfermions/python-mercury_driver, +github.com/crazyfree/helm-deploy-githhub-action, github.com/crazyfree/vutimoji,num_dependents_deps.dev:0 github.com/crazygmr101/button-utils, github.com/crazygreenpenguin/counters,num_dependents_deps.dev:0 @@ -391874,6 +399854,7 @@ github.com/crazylxr/react-demo,num_dependents_deps.dev:0 github.com/crazymad-tools/crazymad-cli,num_dependents_deps.dev:0 github.com/crazymagi/immutability-helper-extension,num_dependents_deps.dev:0 github.com/crazyman1979/jquery-date-range-picker,num_dependents_deps.dev:0 +github.com/crazymanish/pullrequest-attention-label-action, github.com/crazymerlyn/uci-rs,num_dependents_deps.dev:0 github.com/crazymonkey/PactVerify_demo, github.com/crazymousethief/jquery-markview,num_dependents_deps.dev:0 @@ -391915,11 +399896,14 @@ github.com/crazytruth/iniesta, github.com/crazytruth/insanic, github.com/crazytyper/gocb,num_dependents_deps.dev:0 github.com/crazytyper/govaluate,num_dependents_deps.dev:0 +github.com/crazyurus/miniprogram-action, github.com/crazyvalse/founder-cli,num_dependents_deps.dev:0 github.com/crazywiden/fmlpy, github.com/crazywolf132/Jungla,num_dependents_deps.dev:0 github.com/crazywook/process-validation,num_dependents_deps.dev:0 github.com/crazyxu/react-native-mixpanel,num_dependents_deps.dev:0 +github.com/crbaker/aci-deploy, +github.com/crbaker/twist-action, github.com/crblab/imgproc, github.com/crbosse/cb-pi-therm,num_dependents_deps.dev:0 github.com/crbosse/homebridge-cb-therm,num_dependents_deps.dev:0 @@ -392541,6 +400525,14 @@ github.com/credding/homebridge-sonos,num_dependents_deps.dev:0 github.com/credentials/irmago,num_dependents_deps.dev:0 github.com/credeo/react-big-calendar,num_dependents_deps.dev:0 github.com/credera/opentracingdemo,num_dependents_deps.dev:0 +github.com/crederauk/slack-workflow-summary, +github.com/credfeto/action-case-checker, +github.com/credfeto/action-dotnet-version-detect, +github.com/credfeto/action-no-ignored-files, +github.com/credfeto/action-repo-visibility, +github.com/credfeto/action-sql-format, +github.com/credfeto/action-yaml-format, +github.com/credible-team/action-version-cleaner, github.com/crediblecreative/ezrender,num_dependents_deps.dev:0 github.com/credibledoc/credible-doc,num_dependents_deps.dev:6 github.com/credify-pte-ltd/credify-android-sample,num_dependents_deps.dev:0 @@ -392594,11 +400586,14 @@ github.com/creedasaurus/kalkulator,num_dependents_deps.dev:0 github.com/creedencewright/gulp-base64ify,num_dependents_deps.dev:0 github.com/creedencewright/gulp-filter-size,num_dependents_deps.dev:0 github.com/creedencewright/shakal,num_dependents_deps.dev:0 +github.com/creeeples/renpy-autobuilder-action, +github.com/creeeples/renpy-docker-builder, github.com/creek-shi/luago,num_dependents_deps.dev:0 github.com/creekorful/autosnap,num_dependents_deps.dev:0 github.com/creekorful/emphasize,num_dependents_deps.dev:0 github.com/creekorful/go-gallery,num_dependents_deps.dev:0 github.com/creekorful/go-news,num_dependents_deps.dev:0 +github.com/creekorful/goreportcard-action, github.com/creekorful/osync,num_dependents_deps.dev:0 github.com/creekorful/parakeet,num_dependents_deps.dev:0 github.com/creekorful/polonium,num_dependents_deps.dev:0 @@ -392639,6 +400634,7 @@ github.com/creepy-teepee/generator-creepy-webapp,num_dependents_deps.dev:0 github.com/creepyao/mybatis-generator,num_dependents_deps.dev:0 github.com/creepycheese/omniauth-faceit,num_dependents_deps.dev:0 github.com/creesch/discordIRCd,num_dependents_deps.dev:0 +github.com/creesch/github-latest-release-zip, github.com/creese/functions, github.com/creese/schemas, github.com/creese/sqlzen, @@ -392697,6 +400693,11 @@ github.com/crescware/schoen,num_dependents_deps.dev:0 github.com/crescware/toccata,num_dependents_deps.dev:0 github.com/crescware/walts,num_dependents_deps.dev:0 github.com/crescware/wekl,num_dependents_deps.dev:0 +github.com/creshpay/action-cached-git-lfs-pull, +github.com/creshpay/action-conventional-release, +github.com/creshpay/action-docker-image-build-tag-push, +github.com/creshpay/action-ghcr-batch-delete-versions, +github.com/creshpay/action-gpg, github.com/cresjean/angular-dazhaohu,num_dependents_deps.dev:0 github.com/cresjie/Applozic-Cordova-Ionic-PhoneGap-Chat-Plugin, github.com/cresjie/better-excerpt-html,num_dependents_deps.dev:0 @@ -392716,6 +400717,7 @@ github.com/cresta/eventbridge-to-slack,num_dependents_deps.dev:0 github.com/cresta/gitops-autobot,num_dependents_deps.dev:0 github.com/cresta/gitops-autobot-reference,num_dependents_deps.dev:0 github.com/cresta/gotracing,num_dependents_deps.dev:0 +github.com/cresta/helm-autoupdate, github.com/cresta/httpsimple,num_dependents_deps.dev:0 github.com/cresta/magehelper,num_dependents_deps.dev:0 github.com/cresta/pagerduty-to-prometheus,num_dependents_deps.dev:0 @@ -392770,6 +400772,10 @@ github.com/crewstyle/yohoho.tabloyd, github.com/crewstyle/yohoho.yofinity, github.com/crexi-dev/angular-google-maps,num_dependents_deps.dev:0 github.com/crexi-dev/ui-carousel,num_dependents_deps.dev:0 +github.com/creyD/autoflake_action, +github.com/creyD/autopep8_action, +github.com/creyD/crush_action, +github.com/creyD/prettier_action, github.com/creydr/go-k8s-utils,num_dependents_deps.dev:0 github.com/creydr/go-utils,num_dependents_deps.dev:0 github.com/creyes17/boolean-string-parser,num_dependents_deps.dev:0 @@ -392878,6 +400884,7 @@ github.com/criblio/docker-names,num_dependents_deps.dev:0 github.com/criblio/js2bin,num_dependents_deps.dev:0 github.com/criblio/speedtest-go,num_dependents_deps.dev:0 github.com/cribspot/emoji-utils,num_dependents_deps.dev:0 +github.com/cric96/inline-mermaid, github.com/criccomini/ezdb,num_dependents_deps.dev:2 github.com/crichey/ActiveDocument,num_dependents_deps.dev:0 github.com/crichmond1989/gravatar-wc,num_dependents_deps.dev:0 @@ -392941,6 +400948,7 @@ github.com/crimx/webextension-store-meta,num_dependents_deps.dev:0 github.com/crimx/webextensions-emulator,num_dependents_deps.dev:0 github.com/crimx/webpack-target-webextension,num_dependents_deps.dev:0 github.com/crimx/wrapper-webpack-plugin,num_dependents_deps.dev:0 +github.com/crinabucur/PR-Title-Checker-Jira-Ticket, github.com/crinela/pyrecipepuppy, github.com/cringiest/grumpy,num_dependents_deps.dev:0 github.com/cringiest/hastebin,num_dependents_deps.dev:0 @@ -393007,6 +401015,7 @@ github.com/crisbeto/angular-ui-sortable-loader,num_dependents_deps.dev:0 github.com/crisbeto/subreddit-downloader,num_dependents_deps.dev:0 github.com/crisboarna/aws-lex-proxy,num_dependents_deps.dev:0 github.com/crisboarna/botbuilder-wechat-connector-ts,num_dependents_deps.dev:0 +github.com/crisboarna/cfn-diagram-action, github.com/crisboarna/fb-messenger-bot-api,num_dependents_deps.dev:0 github.com/crisboarna/national-geographic-api,num_dependents_deps.dev:0 github.com/crisboarna/react-scroll-element,num_dependents_deps.dev:0 @@ -393033,6 +401042,7 @@ github.com/crishpeen/stylelint-config-crishpeen-order,num_dependents_deps.dev:0 github.com/crisidev/indexed-pool,num_dependents_deps.dev:0 github.com/crisidev/lnx,num_dependents_deps.dev:0 github.com/crisidev/qrsync,num_dependents_deps.dev:0 +github.com/crisis24/meteor-dockerfile-action, github.com/crisisinaptica/gulp-webpack-yawp,num_dependents_deps.dev:0 github.com/crisjohn/readdir,num_dependents_deps.dev:0 github.com/crislerwin/go-api,num_dependents_deps.dev:0 @@ -393159,7 +401169,11 @@ github.com/cristhiandavid96/servergolang,num_dependents_deps.dev:0 github.com/cristhianescobar/generator-android-starter,num_dependents_deps.dev:0 github.com/cristhianmurcia182/sisense-automation, github.com/cristi-d/wee-lib,num_dependents_deps.dev:0 +github.com/cristi-mb/build-be, +github.com/cristi-mb/build-fe, +github.com/cristi-mb/slack-notify, github.com/cristi-salcescu/redux-points,num_dependents_deps.dev:0 +github.com/cristiammercado/cm-backport-pr, github.com/cristiammercado/ng-event-bus,num_dependents_deps.dev:0 github.com/cristiammercado/ngx-materialize-css,num_dependents_deps.dev:0 github.com/cristiammercado/node-disk-info,num_dependents_deps.dev:6 @@ -393173,6 +401187,8 @@ github.com/cristian-eriomenco/react-media-helper,num_dependents_deps.dev:0 github.com/cristian-gabbanini/moment-scope-injector,num_dependents_deps.dev:0 github.com/cristian-mattarei/CoSA, github.com/cristian-radu/cloud-run-grpc,num_dependents_deps.dev:0 +github.com/cristian-rincon/action-composer-sync, +github.com/cristian-rincon/action-dataflow-template, github.com/cristian-rincon/go-mod-hello,num_dependents_deps.dev:0 github.com/cristian-rincon/golang-exercises,num_dependents_deps.dev:0 github.com/cristian-rincon/js-random-message,num_dependents_deps.dev:0 @@ -393548,6 +401564,9 @@ github.com/crnk-project/crnk-framework,num_dependents_deps.dev:180 github.com/crnkjck/tableauEditor,num_dependents_deps.dev:0 github.com/crnorthc/react-line-chart,num_dependents_deps.dev:0 github.com/crnorthc/react-scramble-text,num_dependents_deps.dev:0 +github.com/crnvl96/gh-gpt-integration-node, +github.com/crnvl96/openai-ci-golang, +github.com/crnvl96/openai-golang-github-integration, github.com/cro-ai-league/dolphins-recognition-challenge, github.com/cro-ki/xdice, github.com/croach/Flask-Fixtures, @@ -393609,6 +401628,8 @@ github.com/crocodilejs/font-awesome-assets,num_dependents_deps.dev:0 github.com/crocodilejs/nodemailer-base64-to-s3,num_dependents_deps.dev:0 github.com/crocodilered/vue-bootstrap-button,num_dependents_deps.dev:0 github.com/crocone/vuejs-uploader,num_dependents_deps.dev:0 +github.com/croconut/godot-multi-builder, +github.com/croconut/godot-tester, github.com/crocoswap/croco-swap-core,num_dependents_deps.dev:0 github.com/crocoswap/croco-swap-lib, github.com/crocoswap/croco-uikit,num_dependents_deps.dev:0 @@ -393697,6 +401718,7 @@ github.com/cromwellian/granite-qrcode-generator,num_dependents_deps.dev:0 github.com/cromwellian/granite-qrcode-scanner,num_dependents_deps.dev:0 github.com/cromwellian/redux-promise-middleware-actions,num_dependents_deps.dev:0 github.com/cronberry/scripts,num_dependents_deps.dev:0 +github.com/crondaemon/close-pr, github.com/cronelab/bci2k.js,num_dependents_deps.dev:0 github.com/cronelab/bci2kconfig.js,num_dependents_deps.dev:0 github.com/crong-k/pyqsar_tutorial, @@ -393711,6 +401733,7 @@ github.com/cronitorio/cronitor-java,num_dependents_deps.dev:0 github.com/cronitorio/cronitor-js,num_dependents_deps.dev:0 github.com/cronitorio/cronitor-python, github.com/cronitorio/django_auto_healthchecks, +github.com/cronitorio/monitor-github-actions, github.com/cronn-de/JsxTransformer,num_dependents_deps.dev:0 github.com/cronn-de/diff-to-html,num_dependents_deps.dev:0 github.com/cronn-de/reflection-util,num_dependents_deps.dev:0 @@ -393948,10 +401971,14 @@ github.com/cross-browser-tests-runner/cross-browser-tests-runner, github.com/cross-check/cross-check,num_dependents_deps.dev:0 github.com/cross-language-cpp/djinni-support-lib, github.com/cross-loop/cross-loop-js,num_dependents_deps.dev:0 +github.com/cross-platform-actions/action, github.com/cross-rates/cross-rates-browser,num_dependents_deps.dev:0 github.com/cross-rates/cross-rates-java,num_dependents_deps.dev:0 github.com/cross-rates/cross-rates-js,num_dependents_deps.dev:0 github.com/cross-team/thor, +github.com/cross-the-world/scp-pipeline, +github.com/cross-the-world/ssh-pipeline, +github.com/cross-the-world/ssh-scp-ssh-pipelines, github.com/cross-ts/qiita-go,num_dependents_deps.dev:0 github.com/cross-ts/qiita-trend,num_dependents_deps.dev:0 github.com/cross-ts/qiita-trend-go,num_dependents_deps.dev:0 @@ -394011,6 +402038,7 @@ github.com/crosschx/cx-redux-utils,num_dependents_deps.dev:0 github.com/crosschx/cx-utils,num_dependents_deps.dev:0 github.com/crosscite/citeproc-doi-server,num_dependents_deps.dev:0 github.com/crosscompile/babel-plugin-undefined-is-always-a-function,num_dependents_deps.dev:0 +github.com/crosscompile/chronicler-action, github.com/crosscompile/env-proxy-agent,num_dependents_deps.dev:6 github.com/crosscompute/crosscompute, github.com/crosscompute/crosscompute-printers-pdf, @@ -394141,6 +402169,7 @@ github.com/crossplaneio/crossplane-runtime,num_dependents_deps.dev:2 github.com/crossplaneio/stack-aws,num_dependents_deps.dev:0 github.com/crossplaneio/stack-azure,num_dependents_deps.dev:0 github.com/crossplaneio/stack-gcp,num_dependents_deps.dev:0 +github.com/crossplatformsweden/flutter-mama-bot, github.com/crossplatformsweden/react-native-components, github.com/crossplatformsweden/react-native-core,num_dependents_deps.dev:0 github.com/crossplatformsweden/react-native-cross-cognito,num_dependents_deps.dev:0 @@ -394223,6 +402252,7 @@ github.com/croutonn/og-image-element, github.com/croutonn/renovate-config,num_dependents_deps.dev:0 github.com/croutonn/tailwindcss-pseudo-elements, github.com/croutonn/textlint-rule-preset-ja-tech-loose, +github.com/crouxjs/jest-coverage-workflow, github.com/crow-misia/go-libsoundio,num_dependents_deps.dev:0 github.com/crow-misia/go-push-receiver,num_dependents_deps.dev:0 github.com/crow-misia/http-ece,num_dependents_deps.dev:0 @@ -394231,9 +402261,11 @@ github.com/crow-misia/libwebrtc-ktx,num_dependents_deps.dev:0 github.com/crow-misia/libyuv-android,num_dependents_deps.dev:0 github.com/crow-misia/location-coroutines,num_dependents_deps.dev:0 github.com/crow-misia/sdp,num_dependents_deps.dev:0 +github.com/crow-rest/cargo-prebuilt-action, github.com/crow-translate/crow-translate,criticality_score:0.431000 github.com/crowbar/crowbar,criticality_score:0.529580 github.com/crowbar/crowbar-client,num_dependents_deps.dev:0 +github.com/crowbarmaster/GH-Automatic-Releases, github.com/crowbarz/aiopioneer, github.com/crowbarz/horimotemce, github.com/crowbarz/lirc2hass, @@ -394280,8 +402312,10 @@ github.com/crowdin-node/crowdin-node,num_dependents_deps.dev:0 github.com/crowdin/crowdin-api-client-js,num_dependents_deps.dev:2 github.com/crowdin/crowdin-api-client-python, github.com/crowdin/crowdin-cli,num_dependents_deps.dev:0 +github.com/crowdin/github-action, github.com/crowdin/ota-client-js,num_dependents_deps.dev:0 github.com/crowdin/react-native-sdk,num_dependents_deps.dev:0 +github.com/crowdin/translate-readme, github.com/crowdint/associate_by,num_dependents_deps.dev:0 github.com/crowdint/cached_belongs_to,num_dependents_deps.dev:0 github.com/crowdint/crudspec,num_dependents_deps.dev:0 @@ -394301,6 +402335,8 @@ github.com/crowdland/react-scratch-me,num_dependents_deps.dev:0 github.com/crowdmap-io/cm-widget,num_dependents_deps.dev:0 github.com/crowdresearch/daemo-api-client, github.com/crowdriff/crowdriff-story-network-gallery-react,num_dependents_deps.dev:0 +github.com/crowdriff/go-coverage-gha, +github.com/crowdriff/jest-coverage-gha, github.com/crowdriff/react-crowdriff-gallery,num_dependents_deps.dev:0 github.com/crowdriff/react-emojiboard,num_dependents_deps.dev:0 github.com/crowdrz/crowdrz-js,num_dependents_deps.dev:0 @@ -394365,6 +402401,7 @@ github.com/crownt252/d3-test,num_dependents_deps.dev:0 github.com/crownt252/test-package,num_dependents_deps.dev:0 github.com/crownwangguan/maven_test,num_dependents_deps.dev:0 github.com/crowsad/another-statistic-distributions, +github.com/crowselectromusic/zola-build, github.com/crowsnest-io/bosun-foscam-plugins, github.com/crowsonkb/aiohttp_index, github.com/crowsonkb/average, @@ -394409,6 +402446,8 @@ github.com/crrobinson14/lambda-meta,num_dependents_deps.dev:0 github.com/crrobinson14/stors,num_dependents_deps.dev:0 github.com/crrobinson14/vue-rethinkdb,num_dependents_deps.dev:0 github.com/crrobinson14/vue-smooth-form,num_dependents_deps.dev:0 +github.com/crs-k/release-draft, +github.com/crs-k/stale-branches, github.com/crs4/SimpleSparqlClient,num_dependents_deps.dev:0 github.com/crs4/virtuoso-sparql-client, github.com/crs4/virtuoso-uid,num_dependents_deps.dev:0 @@ -394461,6 +402500,7 @@ github.com/crtsh/root_programs,num_dependents_deps.dev:0 github.com/crtv-io/jsonrpc2,num_dependents_deps.dev:0 github.com/crtved/kakutasu.js,num_dependents_deps.dev:0 github.com/crtved/otomtejs, +github.com/crubalcaba/kcov-action, github.com/crubier/code-to-graph,num_dependents_deps.dev:0 github.com/crubier/crubier.github.io,num_dependents_deps.dev:0 github.com/crubier/hexastore,num_dependents_deps.dev:0 @@ -394492,6 +402532,7 @@ github.com/crudo/git-in,num_dependents_deps.dev:0 github.com/crudo/grunt-contributors,num_dependents_deps.dev:0 github.com/crudo/grunt-scaffold,num_dependents_deps.dev:0 github.com/crudo/grunt-testcafe,num_dependents_deps.dev:0 +github.com/crudo/spectral-action, github.com/crudo/webpack-analyzer,num_dependents_deps.dev:0 github.com/crudr-tools/cli, github.com/crudr-tools/node,num_dependents_deps.dev:0 @@ -394562,6 +402603,7 @@ github.com/crunchie84/appengine-in-memory-taskqueue-nodejs,num_dependents_deps.d github.com/crunchmail/munch-mailsend, github.com/crunchmail/munch-storageswift, github.com/crunchtime-ali/gatsby-plugin-webpack-speed-measure,num_dependents_deps.dev:0 +github.com/crunchy234/ec2-github-runner, github.com/crunchydata/crunchy-bridge-operator,num_dependents_deps.dev:0 github.com/crunchydata/pg_featureserv,num_dependents_deps.dev:0 github.com/crunchydata/pgo-osb,num_dependents_deps.dev:0 @@ -394594,6 +402636,7 @@ github.com/crusaider/telldus-watchdog,num_dependents_deps.dev:0 github.com/crusat/python-zodiac-sign, github.com/crusat/tempus-js,num_dependents_deps.dev:0 github.com/crusepartnership/mariadbdiff,num_dependents_deps.dev:0 +github.com/crush-pics/crush-pics-github-action, github.com/crush-pics/crush-pics-node,num_dependents_deps.dev:0 github.com/crusher95/indian-customs-iec, github.com/crusherdev/CLI, @@ -394617,9 +402660,13 @@ github.com/crustio/chainbridge-substrate-events,num_dependents_deps.dev:0 github.com/crustio/chainbridge-utils,num_dependents_deps.dev:0 github.com/crustio/crust,num_dependents_deps.dev:0 github.com/crustio/crust-cli,num_dependents_deps.dev:0 +github.com/crustio/crust-replicas-action, github.com/crustio/go-ds-badger,num_dependents_deps.dev:0 github.com/crustio/go-ipfs-encryptor,num_dependents_deps.dev:0 github.com/crustio/go-substrate-rpc-client,num_dependents_deps.dev:0 +github.com/crustio/ipfs-crust-action, +github.com/crustio/ipfs-upload-action, +github.com/crusty-pie/toolchain, github.com/crustymonkey/r53-dyndns, github.com/crutch12/async-oauth-popup, github.com/crutch12/oauth-popup,num_dependents_deps.dev:0 @@ -394796,6 +402843,8 @@ github.com/crypti/prime,num_dependents_deps.dev:0 github.com/cryptic-game/python3-lib, github.com/cryptic-less/cr,num_dependents_deps.dev:0 github.com/cryptic-resolver/cr,num_dependents_deps.dev:0 +github.com/cryptic-wizard/run-behave-tests, +github.com/cryptic-wizard/run-specflow-tests, github.com/cryptice/Passgen,num_dependents_deps.dev:0 github.com/cryptico-org/aes,num_dependents_deps.dev:0 github.com/cryptid-org/cryptid-js,num_dependents_deps.dev:0 @@ -394973,6 +403022,8 @@ github.com/cryptodavchen/bifrost-go,num_dependents_deps.dev:0 github.com/cryptodeal/Coss-API-Node,num_dependents_deps.dev:0 github.com/cryptodeal/custom-keystonev4-rss,num_dependents_deps.dev:0 github.com/cryptodeal/quill-tweet-embed,num_dependents_deps.dev:0 +github.com/cryptodeal/wails-build-action, +github.com/cryptodeal/wails-bun-build-action, github.com/cryptodev222/go-constants,num_dependents_deps.dev:0 github.com/cryptodev222/go-errors,num_dependents_deps.dev:0 github.com/cryptodev222/go-start,num_dependents_deps.dev:0 @@ -394984,6 +403035,7 @@ github.com/cryptoeconomicslab/gazelle, github.com/cryptoeconomicslab/indexeddb-kvs,num_dependents_deps.dev:6 github.com/cryptoeconomicslab/texhub,num_dependents_deps.dev:0 github.com/cryptoeconomicslab/wakkanay,num_dependents_deps.dev:16 +github.com/cryptoexpert2000/base64Secret-toFile-action, github.com/cryptoexplained/big-numbers,num_dependents_deps.dev:0 github.com/cryptofc/truffle-test-generator,num_dependents_deps.dev:0 github.com/cryptofinance-ai/cryptofinance-api, @@ -395076,6 +403128,7 @@ github.com/cryptoriums/contraget,num_dependents_deps.dev:0 github.com/cryptoriums/etherscan-api,num_dependents_deps.dev:0 github.com/cryptoriums/flashbot,num_dependents_deps.dev:0 github.com/cryptoriums/telliot,num_dependents_deps.dev:0 +github.com/cryptosalomao/create-terraform-workspace, github.com/cryptosan/babelian, github.com/cryptosan/flask-register, github.com/cryptosat/jsconsole,num_dependents_deps.dev:0 @@ -395158,6 +403211,7 @@ github.com/crystaalroo/actividadesgo,num_dependents_deps.dev:0 github.com/crystal-16250207/leetcode--twosum,num_dependents_deps.dev:0 github.com/crystal-16250207/two-number-add,num_dependents_deps.dev:0 github.com/crystal-ameba/ameba,criticality_score:0.416540 +github.com/crystal-ameba/github-action, github.com/crystal-ball/babel-base,num_dependents_deps.dev:0 github.com/crystal-ball/babel-plugin-transform-import-aliases,num_dependents_deps.dev:0 github.com/crystal-ball/commit-semantics,num_dependents_deps.dev:0 @@ -395179,6 +403233,7 @@ github.com/crystal-construct/jwt-go,num_dependents_deps.dev:0 github.com/crystal-lang-tools/scry,criticality_score:0.350060 github.com/crystal-lang/crystal,criticality_score:0.720190 github.com/crystal-lang/crystal-book,criticality_score:0.478860 +github.com/crystal-lang/install-crystal, github.com/crystal-lang/shards,criticality_score:0.477270 github.com/crystal-project-inc/js_sdk,num_dependents_deps.dev:0 github.com/crystal/autocode,num_dependents_deps.dev:0 @@ -395237,13 +403292,17 @@ github.com/crystol-network/crystolnetwork-log,num_dependents_deps.dev:0 github.com/crysxd/simple-firestore-backup,num_dependents_deps.dev:0 github.com/crytic/crytic-compile, github.com/crytic/echidna,criticality_score:0.426870 +github.com/crytic/echidna-action, github.com/crytic/echidna-parade, github.com/crytic/embark-contract-info,num_dependents_deps.dev:0 github.com/crytic/slither,criticality_score:0.470830 +github.com/crytic/slither-action, +github.com/crytic/slither-docs-action, github.com/crytic/solc-select, github.com/crytome1995/budgetreporter,num_dependents_deps.dev:0 github.com/crywolf/lerna-semantic-release,num_dependents_deps.dev:0 github.com/cryx3001/big-scientific-notation,num_dependents_deps.dev:0 +github.com/cryy/action-electron-builder, github.com/cryzed/TrafficToll, github.com/crzidea/cycle-statistics,num_dependents_deps.dev:0 github.com/crzidea/node-readbuf,num_dependents_deps.dev:0 @@ -395603,11 +403662,15 @@ github.com/cschen1205/js-string-compression,num_dependents_deps.dev:0 github.com/cschensai/soldier-ui,num_dependents_deps.dev:0 github.com/cschiewek/devise_ldap_authenticatable,"criticality_score:0.380720,num_dependents_deps.dev:0" github.com/cschilli/fqf-alpha-scroll,num_dependents_deps.dev:0 +github.com/cschleiden/actions-linter, +github.com/cschleiden/chess-action, github.com/cschleiden/create-react-app,num_dependents_deps.dev:0 github.com/cschleiden/github-actions-hero,num_dependents_deps.dev:0 github.com/cschleiden/github-actions-parser,num_dependents_deps.dev:0 github.com/cschleiden/immuts,num_dependents_deps.dev:0 github.com/cschleiden/jest-github-actions-reporter,num_dependents_deps.dev:0 +github.com/cschleiden/replace-tokens, +github.com/cschleiden/webdeploy-action, github.com/cschlosser/glog-rs,num_dependents_deps.dev:0 github.com/cschmidt/tic-tac-toe-api,num_dependents_deps.dev:0 github.com/cschneid/digress,num_dependents_deps.dev:0 @@ -395775,6 +403838,7 @@ github.com/csharathreddy/recursive-mkdir,num_dependents_deps.dev:0 github.com/csharon/generator-ngfs,num_dependents_deps.dev:0 github.com/csharon/generator-xd-angular,num_dependents_deps.dev:0 github.com/csharon/xd-name-helper,num_dependents_deps.dev:0 +github.com/csharp-opensource/publish-nuget, github.com/csharpfritz/CoreWiki,criticality_score:0.336900 github.com/cshaver/css-ast-diff,num_dependents_deps.dev:0 github.com/cshaver/pretty-delaunay,num_dependents_deps.dev:0 @@ -395843,6 +403907,7 @@ github.com/csi-addons/volume-replication-operator,num_dependents_deps.dev:0 github.com/csi-dcsc/Pycrafter6500,Google github.com/csi-driver/azuredisk-csi-driver,num_dependents_deps.dev:0 github.com/csi-driver/blobfuse-csi-driver,num_dependents_deps.dev:0 +github.com/csi-lk/package-labeler, github.com/csi0n/AnimeRank, github.com/csi970/prototype,num_dependents_deps.dev:0 github.com/csicar/clblast-rs,num_dependents_deps.dev:0 @@ -395944,6 +404009,7 @@ github.com/csknk/write-read-badger-db,num_dependents_deps.dev:0 github.com/csko/gdax-python-api, github.com/cskoglun/ciscodnacbackupctl, github.com/cskr/xirr,num_dependents_deps.dev:0 +github.com/cskwrd/quick-send-action, github.com/cslab-hub/multiSyncPy, github.com/cslarsen/arv, github.com/cslarsen/crianza, @@ -396070,6 +404136,7 @@ github.com/csothen/kognit,num_dependents_deps.dev:0 github.com/csotiriou/spark-navigator,num_dependents_deps.dev:0 github.com/csound-plugins/risset, github.com/csound/csound,"criticality_score:0.590410,num_dependents_deps.dev:0" +github.com/csourabhbanka/snyk-sca-cb-plugin, github.com/csouth3/sorted-collections-rs,num_dependents_deps.dev:0 github.com/csowada/ebus,num_dependents_deps.dev:0 github.com/csowada/ebus-configuration,num_dependents_deps.dev:0 @@ -396106,6 +404173,7 @@ github.com/csparpa/pyowm,criticality_score:0.417510 github.com/csparpa/robograph, github.com/csparpa/timehaze,num_dependents_deps.dev:0 github.com/cspeezy/palindrome_js,num_dependents_deps.dev:0 +github.com/csperando/cflint-action, github.com/csperkins/ietfdata-rs,num_dependents_deps.dev:0 github.com/csperkins/post-sockets,num_dependents_deps.dev:0 github.com/cspilgrimzww/web3.js,num_dependents_deps.dev:0 @@ -396513,6 +404581,7 @@ github.com/cstuartroe/teko,num_dependents_deps.dev:0 github.com/cstuartroe/teko-atom-grammar,num_dependents_deps.dev:0 github.com/cstuartroe/tree-sitter-azor, github.com/cstuartroe/tree-sitter-teko, +github.com/cstuder/apprise-ga, github.com/cstumph/react-modal,num_dependents_deps.dev:0 github.com/cstuncsik/browser-game-loop,num_dependents_deps.dev:0 github.com/cstuncsik/es6-node-module-boilerplate,num_dependents_deps.dev:0 @@ -396547,6 +404616,7 @@ github.com/csukuangfj/kaldifst, github.com/csukuangfj/kaldilm, github.com/csukuangfj/optimized_transducer, github.com/csumissu/skydisk,num_dependents_deps.dev:0 +github.com/csunibo/filenames-linter, github.com/csuos/rabums,num_dependents_deps.dev:0 github.com/csupnig/ta-lib,num_dependents_deps.dev:0 github.com/csupnig/tjangular,num_dependents_deps.dev:0 @@ -396705,6 +404775,8 @@ github.com/ctabin/jotlmsg,num_dependents_deps.dev:0 github.com/ctabin/smtp4j,num_dependents_deps.dev:0 github.com/ctacorp/simple-cas-client,num_dependents_deps.dev:0 github.com/ctaepper/flowfact,num_dependents_deps.dev:0 +github.com/ctag-fh-kiel/esp-idf-action, +github.com/ctag-fh-kiel/tapp-mingw64-action, github.com/ctaggart/mex-sys,num_dependents_deps.dev:0 github.com/ctaintor/chamber,num_dependents_deps.dev:0 github.com/ctala/InstitucionesFinancierasChile,num_dependents_deps.dev:0 @@ -396774,6 +404846,7 @@ github.com/ctd1500/videojs-hotkeys,num_dependents_deps.dev:288 github.com/ctdk/goiardi,criticality_score:0.372990 github.com/ctdk/gox,num_dependents_deps.dev:0 github.com/ctdlspace/ctdlui,num_dependents_deps.dev:0 +github.com/cteamdev/vk-actions-notify, github.com/ctechhindi/chrome-extension-builder, github.com/ctejadan/json-2-react,num_dependents_deps.dev:0 github.com/ctengel/stbingo,num_dependents_deps.dev:0 @@ -396937,6 +405010,7 @@ github.com/ctmakro/canton, github.com/ctmithun/go-lang-apis,num_dependents_deps.dev:0 github.com/ctnitchie/lwrpc,num_dependents_deps.dev:0 github.com/ctnkyrd/esri-mxd2png, +github.com/cto-ai/action, github.com/cto-ai/clif-dev,num_dependents_deps.dev:0 github.com/cto-ai/ops-cmd,num_dependents_deps.dev:0 github.com/cto-ai/ops-ctrl-account,num_dependents_deps.dev:0 @@ -396988,6 +405062,8 @@ github.com/ctrezevant/reporter,num_dependents_deps.dev:0 github.com/ctrimble/combinatorics,num_dependents_deps.dev:0 github.com/ctrine/auth,num_dependents_deps.dev:0 github.com/ctrine/webpack-settings,num_dependents_deps.dev:2 +github.com/ctriolo/action-find-or-create-linear-issue, +github.com/ctriolo/action-update-linear-issues, github.com/ctrip-moles/moles-packer,num_dependents_deps.dev:0 github.com/ctripcloud/starter,num_dependents_deps.dev:0 github.com/ctripcorp/CRN,num_dependents_deps.dev:0 @@ -397006,6 +405082,7 @@ github.com/ctrl-alt-deseat/ctrlpanel-pbkdf2,num_dependents_deps.dev:0 github.com/ctrl-alt-deseat/ctrlpanel-random-account-password,num_dependents_deps.dev:0 github.com/ctrl-alt-deseat/ctrlpanel-strip-common-prefixes,num_dependents_deps.dev:0 github.com/ctrl-alt-deseat/react-native-ctrlpanel-core,num_dependents_deps.dev:0 +github.com/ctrl-alt-it/get-tag-or-sha, github.com/ctrl-alt-meh/testover.js,num_dependents_deps.dev:0 github.com/ctrl-alt-null/ctrlcv,num_dependents_deps.dev:0 github.com/ctrl-alt-null/gibstr,num_dependents_deps.dev:0 @@ -397032,8 +405109,10 @@ github.com/ctrlaltdev/WYD,num_dependents_deps.dev:0 github.com/ctrlaltdev/ccc,num_dependents_deps.dev:0 github.com/ctrlaltdev/commentintothevoid,num_dependents_deps.dev:0 github.com/ctrlaltdev/diyddns,num_dependents_deps.dev:0 +github.com/ctrlaltdev/get-releases-action, github.com/ctrlaltdev/imgen,num_dependents_deps.dev:0 github.com/ctrlaltdev/justamin,num_dependents_deps.dev:0 +github.com/ctrlaltdev/latest-release-json-action, github.com/ctrlaltdev/matchgame,num_dependents_deps.dev:0 github.com/ctrlaltdev/pug-server, github.com/ctrlaltdev/react-comments-void, @@ -397118,6 +405197,7 @@ github.com/ctron/osgi-dp,num_dependents_deps.dev:0 github.com/ctron/patternfly-yew,num_dependents_deps.dev:0 github.com/ctron/pem-keystore,num_dependents_deps.dev:2 github.com/ctron/release-version,num_dependents_deps.dev:0 +github.com/ctron/rodbot-action, github.com/ctron/rpm-builder,num_dependents_deps.dev:0 github.com/ctron/varlink-java,num_dependents_deps.dev:0 github.com/ctrsploit/ctrsploit,num_dependents_deps.dev:0 @@ -397501,6 +405581,7 @@ github.com/cube-js/cube.js,"criticality_score:0.592430,num_dependents_deps.dev:6 github.com/cube-js/cubejs-playground-templates,num_dependents_deps.dev:0 github.com/cube-js/dotenv,num_dependents_deps.dev:10 github.com/cube-modules/ace2,num_dependents_deps.dev:0 +github.com/cube-root/kubectl, github.com/cube-ui/create-api,num_dependents_deps.dev:78 github.com/cube2222/octosql,num_dependents_deps.dev:4 github.com/cube2222/octosql-rs,num_dependents_deps.dev:0 @@ -397643,6 +405724,7 @@ github.com/cucasf/iol-api, github.com/cuchac/directnet, github.com/cuchac/thepay, github.com/cuchaz/kludge,num_dependents_deps.dev:0 +github.com/cuchi/jinja2-action, github.com/cucinestudios/simpledot,num_dependents_deps.dev:0 github.com/cuckflong/urlcode,num_dependents_deps.dev:0 github.com/cuckooemm/clog,num_dependents_deps.dev:0 @@ -397719,6 +405801,7 @@ github.com/cuddeford/api-poller,num_dependents_deps.dev:0 github.com/cuddlecheek/progressive-img,num_dependents_deps.dev:0 github.com/cuddlemeister/blinkcard-cordova,num_dependents_deps.dev:0 github.com/cuddlemeister/blinkcard-ionic-native,num_dependents_deps.dev:0 +github.com/cuddletech/graphite-action, github.com/cudmore/PyMapManager, github.com/cudoventures/migrate-mysql,num_dependents_deps.dev:0 github.com/cudr/project-lvl1-s232,num_dependents_deps.dev:0 @@ -397739,6 +405822,7 @@ github.com/cuducos/webassets-elm, github.com/cuduy197/kd-editor, github.com/cuduy197/ppgen,num_dependents_deps.dev:0 github.com/cuduy197/vue-flashcard,num_dependents_deps.dev:0 +github.com/cue-lang/setup-cue, github.com/cue-sh/cfn-cue,num_dependents_deps.dev:0 github.com/cue-sh/playground,num_dependents_deps.dev:0 github.com/cue-sh/stax,num_dependents_deps.dev:0 @@ -397812,6 +405896,7 @@ github.com/cuibonobo/cuibonobo,num_dependents_deps.dev:0 github.com/cuibonobo/npm_card, github.com/cuicaihao/py-downloader-app, github.com/cuicaihao/split_raster, +github.com/cuichenli/enforce-codeowner, github.com/cuichenli/yacld,num_dependents_deps.dev:0 github.com/cuichenxi/weextool,num_dependents_deps.dev:0 github.com/cuichuanteng/NickEvents,num_dependents_deps.dev:0 @@ -397968,6 +406053,7 @@ github.com/cujojs/rest,num_dependents_deps.dev:196 github.com/cujojs/test-support,num_dependents_deps.dev:0 github.com/cujojs/when,"criticality_score:0.407780,num_dependents_deps.dev:19180" github.com/cujojs/wire,num_dependents_deps.dev:4 +github.com/cujomalainey/cherry-pick-check, github.com/cuke-ui/cuke-ui,num_dependents_deps.dev:0 github.com/cuker/django-directupload, github.com/cuker/django-fbapps, @@ -398044,6 +406130,7 @@ github.com/culqi/culqi, github.com/culqi/culqi-python, github.com/culqi/culqi-ruby,num_dependents_deps.dev:0 github.com/culqi/vue-culqi-checkout,num_dependents_deps.dev:0 +github.com/culshaw/read-package-node-version-actions, github.com/culshaw/yeoman-ians-generator,num_dependents_deps.dev:0 github.com/cult-of-coders/apollo-client-transformers,num_dependents_deps.dev:0 github.com/cult-of-coders/apollo-live-client,num_dependents_deps.dev:0 @@ -398143,6 +406230,7 @@ github.com/cunigarro/e-learning-js,num_dependents_deps.dev:0 github.com/cunit/cunit,num_dependents_deps.dev:0 github.com/cunjieliu/easyServer,num_dependents_deps.dev:0 github.com/cunla/django-rqscheduler, +github.com/cunla/fakeredis-py, github.com/cunneen/flatpickr,num_dependents_deps.dev:0 github.com/cunnie/sslip.io,num_dependents_deps.dev:0 github.com/cunnie/u2date,num_dependents_deps.dev:0 @@ -398220,6 +406308,7 @@ github.com/cuotos/outstanding-prs,num_dependents_deps.dev:0 github.com/cuozisun/go.uuid,num_dependents_deps.dev:0 github.com/cupcake/react-modal,num_dependents_deps.dev:0 github.com/cupcakearmy/autorestic,num_dependents_deps.dev:0 +github.com/cupcakearmy/confluence-markdown-sync, github.com/cupcakearmy/npm-security-walkthrough,num_dependents_deps.dev:0 github.com/cupcakearmy/tumbo, github.com/cupceavictor/ng-outside-focus,num_dependents_deps.dev:0 @@ -398272,8 +406361,10 @@ github.com/cuppilekkia/event-tracker,num_dependents_deps.dev:0 github.com/cuppilekkia/vue-cli-locale-it,num_dependents_deps.dev:0 github.com/cuprumpi/cupi,num_dependents_deps.dev:0 github.com/cupsadarius/moleculer-cls,num_dependents_deps.dev:0 +github.com/cuptop/cuptopbot, github.com/cupy/cupy,criticality_score:0.740300 github.com/curadiabetes/testrepo,num_dependents_deps.dev:0 +github.com/curai/github-asana-action, github.com/curalate/curalate-android-sdk,num_dependents_deps.dev:0 github.com/curasystems/node-bsdiff,num_dependents_deps.dev:0 github.com/curasystems/node-xor64,num_dependents_deps.dev:0 @@ -398303,6 +406394,7 @@ github.com/curefatih/vizfold,num_dependents_deps.dev:0 github.com/curefit/react-crux,num_dependents_deps.dev:0 github.com/cureous/input-moment,num_dependents_deps.dev:0 github.com/cureous/redux-elm-middleware,num_dependents_deps.dev:0 +github.com/curi1119/spanner-hammer-github-actions, github.com/curio184/magictrader, github.com/curio184/reslackbot, github.com/curio184/zaifer, @@ -398396,6 +406488,7 @@ github.com/curlydesigner/cd-shared, github.com/curlydj/cordova-plugin-webserver,num_dependents_deps.dev:0 github.com/curlydj/cordova-sqlite-plugin,num_dependents_deps.dev:0 github.com/curlywurlycraig/nmf,num_dependents_deps.dev:0 +github.com/curoky/cleanup-disk-action, github.com/curology/eslint-config-curology, github.com/curoverse/cgf,num_dependents_deps.dev:0 github.com/curoverse/glfd,num_dependents_deps.dev:0 @@ -398608,6 +406701,8 @@ github.com/curvegrid/parse-uw-coop-package,num_dependents_deps.dev:0 github.com/curvegrid/sqlboiler,num_dependents_deps.dev:0 github.com/curvegrid/testcafe-browser-provider-puppeteer-core,num_dependents_deps.dev:0 github.com/curvegrid/truffle-multibaas-plugin,num_dependents_deps.dev:0 +github.com/curvenote/action-deploy, +github.com/curvenote/action-myst-publish, github.com/curvenote/article,num_dependents_deps.dev:0 github.com/curvenote/components,num_dependents_deps.dev:0 github.com/curvenote/editor,num_dependents_deps.dev:0 @@ -398660,6 +406755,8 @@ github.com/custom-errors/database,num_dependents_deps.dev:0 github.com/custom-select/custom-select,num_dependents_deps.dev:0 github.com/custom-site/custom-site,num_dependents_deps.dev:0 github.com/custom-start-page/custom-start-page-tool,num_dependents_deps.dev:0 +github.com/custom-workflows/days-since-last-commit, +github.com/custom-workflows/reactivate, github.com/customElementUI/rate,num_dependents_deps.dev:0 github.com/customchannels/lisalive,num_dependents_deps.dev:0 github.com/customcommander/functionaut,num_dependents_deps.dev:0 @@ -398690,6 +406787,7 @@ github.com/customerio/mailgun-go,num_dependents_deps.dev:0 github.com/customermatrix/frontify-sync,num_dependents_deps.dev:0 github.com/customersuccessbox/csb-node,num_dependents_deps.dev:0 github.com/customersure/welcome_cycle,num_dependents_deps.dev:0 +github.com/customgento/mage-marketplace-package-converter-action, github.com/customink/aws-embedded-metrics-customink,num_dependents_deps.dev:0 github.com/customink/lambda_punch,num_dependents_deps.dev:0 github.com/customink/lambdipy, @@ -398735,6 +406833,7 @@ github.com/cutecare/cutecare-py, github.com/cutechan/cutechan,num_dependents_deps.dev:0 github.com/cutechess/cutechess,criticality_score:0.374360 github.com/cutecr/miraiapi,num_dependents_deps.dev:0 +github.com/cutecutecat/go-cover-merge, github.com/cutedeer/swagger-x,num_dependents_deps.dev:0 github.com/cutefluffyfox/pyalice, github.com/cutegurl96/nice,num_dependents_deps.dev:0 @@ -398754,6 +406853,7 @@ github.com/cutelabnyc/wavetable-generator, github.com/cutelog/cutelog,num_dependents_deps.dev:0 github.com/cutelyst/cutelyst,criticality_score:0.512690 github.com/cutenode/1x.engineer,criticality_score:0.327770 +github.com/cutenode/action-always-fail, github.com/cutenode/anxiety,num_dependents_deps.dev:0 github.com/cutenode/bateman,num_dependents_deps.dev:0 github.com/cutenode/conformance,num_dependents_deps.dev:6 @@ -398782,6 +406882,7 @@ github.com/cuthbertLab/jsonpickleJS,num_dependents_deps.dev:0 github.com/cuthbertLab/music21,criticality_score:0.587880 github.com/cuthbertLab/music21j,num_dependents_deps.dev:0 github.com/cutii/firebase-js-sdk,num_dependents_deps.dev:0 +github.com/cutlerydrawer/action-git-try-push, github.com/cutls/apidoc-plugin-ts,num_dependents_deps.dev:0 github.com/cutomsols/pdf-table-builder, github.com/cutonbuminband/counting_stats, @@ -399052,6 +407153,8 @@ github.com/cvlahakis/basemodel,num_dependents_deps.dev:0 github.com/cvle/graphql-anywhere,num_dependents_deps.dev:0 github.com/cvley/bolt,num_dependents_deps.dev:0 github.com/cvlmtg/monarc,num_dependents_deps.dev:0 +github.com/cvmaker-bv/amazon-ecs-task-environment, +github.com/cvmfs-contrib/github-action-cvmfs, github.com/cvmfs/cvmfs,num_dependents_deps.dev:0 github.com/cvn/angular-shims-placeholder,num_dependents_deps.dev:0 github.com/cvng/django-administration, @@ -399064,6 +407167,7 @@ github.com/cvnine/cv-preset,num_dependents_deps.dev:0 github.com/cvnine/vitepress-rc,num_dependents_deps.dev:0 github.com/cvockrodt/put.io-aria2c-downloader, github.com/cvockrodt/sgipupdate, +github.com/cvoegele/action-check-tags-in-another-repo, github.com/cvoelcker/PyConfigMaker, github.com/cvogrinetz/lotide, github.com/cvolny/npm-webauthn-client,num_dependents_deps.dev:0 @@ -399382,6 +407486,7 @@ github.com/cwouyang/ptt-crawler,num_dependents_deps.dev:0 github.com/cwowhappy/study-golang,num_dependents_deps.dev:0 github.com/cwp/bluefin-jot,num_dependents_deps.dev:0 github.com/cwp/bluefin-link,num_dependents_deps.dev:0 +github.com/cwqt/needs-result-lookup, github.com/cwramsey/QueryParamUtil,num_dependents_deps.dev:0 github.com/cwramsey/fp_prototypes,num_dependents_deps.dev:0 github.com/cwramsey/gulp-wait,num_dependents_deps.dev:0 @@ -399404,6 +407509,7 @@ github.com/cwspear/hyperterm-visor,num_dependents_deps.dev:0 github.com/cwsteinbach/iceberg-slack-email-bot,num_dependents_deps.dev:0 github.com/cwstryker/freefall, github.com/cwstryker/visadore, +github.com/cwtools/cwtools-action, github.com/cww0614/http-pipe,num_dependents_deps.dev:0 github.com/cww0614/make.py, github.com/cww978/export-table,num_dependents_deps.dev:0 @@ -399653,6 +407759,7 @@ github.com/cybae0804/independent-xy-react-d3-graph,num_dependents_deps.dev:0 github.com/cybavo/sofa_mock_server,num_dependents_deps.dev:0 github.com/cybbyc/cyb-mysql,num_dependents_deps.dev:0 github.com/cybcon/chn256234,num_dependents_deps.dev:0 +github.com/cybeats/sbom-studio-action, github.com/cybelangel/wireguard-ui,num_dependents_deps.dev:0 github.com/cybemachine/advance-functions,num_dependents_deps.dev:0 github.com/cybemachine/minifyer-obfulsicator,num_dependents_deps.dev:0 @@ -399673,6 +407780,7 @@ github.com/cyber-plugins/dev-panel,num_dependents_deps.dev:0 github.com/cyber-republic/python-grpc-adenine, github.com/cyber-republic/react-native-elastos-carrier,num_dependents_deps.dev:0 github.com/cyber-republic/react-native-elastos-wallet-core,num_dependents_deps.dev:0 +github.com/cyber-sierra/cybersierra-scanning-workflow, github.com/cyber-tools/component-build-tools,num_dependents_deps.dev:0 github.com/cyber-tools/cyber-cdn,num_dependents_deps.dev:0 github.com/cyber-tools/cyber-tinify,num_dependents_deps.dev:0 @@ -399691,6 +407799,7 @@ github.com/cyberalien/line-md,num_dependents_deps.dev:0 github.com/cyberalien/redundancy,num_dependents_deps.dev:4 github.com/cyberark/cloudfoundry-conjur-buildpack,num_dependents_deps.dev:0 github.com/cyberark/conjur,criticality_score:0.598910 +github.com/cyberark/conjur-action, github.com/cyberark/conjur-api-go,num_dependents_deps.dev:2 github.com/cyberark/conjur-api-java,num_dependents_deps.dev:0 github.com/cyberark/conjur-authn-k8s-client,num_dependents_deps.dev:0 @@ -399710,6 +407819,7 @@ github.com/cyberark/terraform-provider-conjur,num_dependents_deps.dev:0 github.com/cyberarm/gosu_more_drawables,num_dependents_deps.dev:0 github.com/cyberarm/jared,num_dependents_deps.dev:0 github.com/cyberarm/rewrite-gameoverseer,num_dependents_deps.dev:0 +github.com/cyberbartels/random-pet, github.com/cyberbiont/deep-merge-test,num_dependents_deps.dev:0 github.com/cyberbiont/overflow-detector,num_dependents_deps.dev:0 github.com/cyberblack28/code,num_dependents_deps.dev:0 @@ -399723,6 +407833,7 @@ github.com/cyberbobs/phantomgif,num_dependents_deps.dev:0 github.com/cyberborean/rdfbeans,num_dependents_deps.dev:8 github.com/cyberbotics/urdf2webots, github.com/cyberbotics/webots,criticality_score:0.591820 +github.com/cyberbotics/webots-animation-action, github.com/cybercase/netmd-js,num_dependents_deps.dev:0 github.com/cybercase/showdown-target-blank,num_dependents_deps.dev:0 github.com/cybercat-workspace/twitter-pack,num_dependents_deps.dev:0 @@ -399741,6 +407852,8 @@ github.com/cybercongress/cybernode,num_dependents_deps.dev:0 github.com/cybercongress/go-cyber,"criticality_score:0.344160,num_dependents_deps.dev:0" github.com/cybercongress/gravity,num_dependents_deps.dev:0 github.com/cybercongress/js-amino,num_dependents_deps.dev:0 +github.com/cyberdantes/auto-pull-request-merge, +github.com/cyberdantes/filter-branches, github.com/cyberdeck/django-allauth-webauthn, github.com/cyberdelia/astrolabe, github.com/cyberdelia/atomic, @@ -399795,6 +407908,7 @@ github.com/cyberinvalid/proxyfy,num_dependents_deps.dev:0 github.com/cyberitas/svg-spritemap-webpack-plugin,num_dependents_deps.dev:0 github.com/cyberjacob/fullksuid, github.com/cyberjeevi/node-tts-ml, +github.com/cyberjunk/gha-ubuntu-cross, github.com/cyberjunky/bitvavo-aio, github.com/cyberjunky/python-fireservicerota, github.com/cyberjunky/python-garminconnect, @@ -399826,6 +407940,7 @@ github.com/cybermaggedon/pygaffer, github.com/cybermaggedon/pyglowmarkt, github.com/cybermaggedon/pyvera, github.com/cyberman54/ESP32-Paxcounter,criticality_score:0.552430 +github.com/cyberman54/curl, github.com/cybermatt/fast-luhn, github.com/cybermatt/russian-names, github.com/cybermiles/travis,num_dependents_deps.dev:0 @@ -399840,8 +407955,11 @@ github.com/cybernetlab/bootstrap_it,num_dependents_deps.dev:0 github.com/cybernetlab/ensure_it,num_dependents_deps.dev:0 github.com/cybernetlab/karma-polymer,num_dependents_deps.dev:0 github.com/cybernetlab/wrap_it,num_dependents_deps.dev:0 +github.com/cybernop/fill-fhir-cache, github.com/cyberockvalley/frontbacked,num_dependents_deps.dev:0 github.com/cyberockvalley/parse-server-dedicated-email-adapter,num_dependents_deps.dev:0 +github.com/cyberonin/awscli-action, +github.com/cyberoslab/metrics, github.com/cyberp/simple-evdev-java,num_dependents_deps.dev:0 github.com/cyberphone/json-canonicalization,num_dependents_deps.dev:44 github.com/cyberphysical/deis-superstatic,num_dependents_deps.dev:0 @@ -399951,6 +408069,9 @@ github.com/cybertschunk/fuzzix, github.com/cyberu/create-react-app,num_dependents_deps.dev:0 github.com/cyberu/react-player, github.com/cyberua/cropperJS,num_dependents_deps.dev:0 +github.com/cybervoid/action-send-email-nodemailer, +github.com/cybervoid/ga-twilio-check-sms, +github.com/cybervoid/gajira-get-issue, github.com/cyberwombat/freshload,num_dependents_deps.dev:0 github.com/cyberwombat/mongo-primer,num_dependents_deps.dev:0 github.com/cyberwombat/mongoprime,num_dependents_deps.dev:0 @@ -400074,9 +408195,14 @@ github.com/cycjimmy/swiper-animation,num_dependents_deps.dev:0 github.com/cycjimmy/vue-h5-audio-controls,num_dependents_deps.dev:0 github.com/cycjimmy/weixin-jssdk,num_dependents_deps.dev:0 github.com/cycjimmy/weixin-share,num_dependents_deps.dev:0 +github.com/cycle-five/action-setup-postgres, github.com/cycle-path/nzira-css,num_dependents_deps.dev:0 github.com/cycle/orm,criticality_score:0.441980 github.com/cycle263/create-kry-umi,num_dependents_deps.dev:0 +github.com/cycleapple/PR-Update, +github.com/cycleapple/Simple-Unity-Test-Action, +github.com/cycleapple/SteamDeploy_Windows, +github.com/cycleapple/Unity_Build_Action, github.com/cyclecycle/primal-grakn, github.com/cyclecycle/pyid, github.com/cyclecycle/role-pattern-nlp, @@ -400157,6 +408283,11 @@ github.com/cyclone/formvalidation.io,num_dependents_deps.dev:0 github.com/cycloneapp/tracegl,num_dependents_deps.dev:0 github.com/cyclonedx/cyclonedx-go,num_dependents_deps.dev:0 github.com/cyclonedx/cyclonedx-gomod,num_dependents_deps.dev:0 +github.com/cyclonedx/cyclonedx-javascript-library, +github.com/cyclonedx/cyclonedx-node-npm, +github.com/cyclonedx/cyclonedx-php-composer, +github.com/cyclonedx/cyclonedx-php-library, +github.com/cyclonedx/cyclonedx-webpack-plugin, github.com/cyclonevox/strbyte,num_dependents_deps.dev:0 github.com/cyclonevox/validatorx,num_dependents_deps.dev:0 github.com/cyclonicgames/cyclonic-api,num_dependents_deps.dev:0 @@ -400249,12 +408380,14 @@ github.com/cyganfx/function-pipeline,num_dependents_deps.dev:0 github.com/cyganfx/hacking2,num_dependents_deps.dev:0 github.com/cyganfx/table-reservation,num_dependents_deps.dev:0 github.com/cygkichi/soundbrick, +github.com/cygnetdigital/wait_for_response, github.com/cygns/eslint-config,num_dependents_deps.dev:0 github.com/cygns/eslint-config-node,num_dependents_deps.dev:0 github.com/cygnu/morning_app,num_dependents_deps.dev:0 github.com/cygnu/tell-me-weather,num_dependents_deps.dev:0 github.com/cygnyx/mapline,num_dependents_deps.dev:0 github.com/cygnyx/markover.js,num_dependents_deps.dev:0 +github.com/cygwin/cygwin-install-action, github.com/cygy/gorush,num_dependents_deps.dev:0 github.com/cyh-93/textcliper,num_dependents_deps.dev:0 github.com/cyh24/multicpu, @@ -400323,6 +408456,7 @@ github.com/cyluxx/robula-plus,num_dependents_deps.dev:0 github.com/cyluxx/shmex-regex,num_dependents_deps.dev:0 github.com/cylwin/simple-gdata,num_dependents_deps.dev:0 github.com/cylynx/verifyml, +github.com/cylynx/verifyml-reports, github.com/cym13/bookmark, github.com/cym13/multiproc, github.com/cym13/quickshare, @@ -400357,6 +408491,8 @@ github.com/cympfh/randcli,num_dependents_deps.dev:0 github.com/cympfh/salmon,num_dependents_deps.dev:0 github.com/cymruu/wykop-es6,num_dependents_deps.dev:0 github.com/cynack/oml-engine,num_dependents_deps.dev:0 +github.com/cynalytica/container-scan, +github.com/cynalytica/doc-tools, github.com/cynance/alpaca-scala,num_dependents_deps.dev:0 github.com/cyncui/lotide,num_dependents_deps.dev:0 github.com/cyndicatelabs/gobypasser,num_dependents_deps.dev:0 @@ -400430,6 +408566,9 @@ github.com/cyphar/initrs,num_dependents_deps.dev:0 github.com/cyphar/runc,num_dependents_deps.dev:0 github.com/cyphar/umoci,num_dependents_deps.dev:0 github.com/cypher-uk/sassy-utils,num_dependents_deps.dev:0 +github.com/cypher7682/renovate-approve-and-merge, +github.com/cypher7682/semver_release_multi, +github.com/cypher7682/terraform-dependency-miner, github.com/cyphercodes/location-picker, github.com/cyphercove/gdx-cclibs,num_dependents_deps.dev:0 github.com/cyphereza/react-native-selectable-grid,num_dependents_deps.dev:0 @@ -400538,6 +408677,7 @@ github.com/cypridina/gloTK, github.com/cyprienpigeon/learning-git,num_dependents_deps.dev:0 github.com/cyprienruffino/CTCModel, github.com/cypriss/mutations,criticality_score:0.441440 +github.com/cyproxio/github-action, github.com/cyprx/pysonic, github.com/cypsela/sailplane-node,num_dependents_deps.dev:0 github.com/cypx/a2svm, @@ -400556,6 +408696,7 @@ github.com/cyradin/ealjs,num_dependents_deps.dev:0 github.com/cyrale/gulpfile.js,num_dependents_deps.dev:0 github.com/cyralinc/approzium,num_dependents_deps.dev:2 github.com/cyralinc/brewopa,num_dependents_deps.dev:0 +github.com/cyralinc/devops-changelog-generator-action, github.com/cyralinc/terraform-provider-cyral,num_dependents_deps.dev:0 github.com/cyras117/loger,num_dependents_deps.dev:0 github.com/cyraxjoe/awake, @@ -400697,6 +408838,7 @@ github.com/cyrus-and/chrome-remote-interface,"criticality_score:0.506450,num_dep github.com/cyrus-and/gdb-dashboard,criticality_score:0.385780 github.com/cyrus-and/ratty,num_dependents_deps.dev:0 github.com/cyrus-and/synchttp,num_dependents_deps.dev:0 +github.com/cyrus-za/jira-auto-assign, github.com/cyrus-zhang/gorm-adapter,num_dependents_deps.dev:0 github.com/cyrus-zhang/gormadapter,num_dependents_deps.dev:0 github.com/cyrus000/distributed-weighted-queue,num_dependents_deps.dev:0 @@ -400742,6 +408884,7 @@ github.com/cyssxt/db-import-export-util,num_dependents_deps.dev:0 github.com/cyssxt/event,num_dependents_deps.dev:0 github.com/cytb/node-phantom-fork,num_dependents_deps.dev:0 github.com/cytb/simple-autoreload-server,num_dependents_deps.dev:0 +github.com/cytechmobile/setup-cypress-deps, github.com/cytham/cytocad, github.com/cytham/nanovar, github.com/cytham/variantbreak, @@ -400792,12 +408935,18 @@ github.com/cytools/vue-query, github.com/cytopia/badchars, github.com/cytopia/coinwatch, github.com/cytopia/devilbox,criticality_score:0.550320 +github.com/cytopia/docker-black, +github.com/cytopia/docker-tag-action, github.com/cytopia/fuzza, +github.com/cytopia/git-ref-matrix-action, github.com/cytopia/kusanagi, github.com/cytopia/netcat, github.com/cytopia/prometheus-redbox_exporter, github.com/cytopia/pwncat, +github.com/cytopia/shell-command-retry-action, github.com/cytopia/smtp-user-enum, +github.com/cytopia/upload-artifact-retry-action, +github.com/cytopia/upload-artifact-verify-action, github.com/cytopia/urlbuster, github.com/cytopz/arknights-farmer, github.com/cytopz/gacha-elper, @@ -401286,6 +409435,7 @@ github.com/d-delaey/lang-files-translator,num_dependents_deps.dev:0 github.com/d-demirci/django-adminlte3, github.com/d-doelger/ddoelger-palindrome,num_dependents_deps.dev:0 github.com/d-doelger/ddoelger_palindrome,num_dependents_deps.dev:0 +github.com/d-dot-one/publish-to-aws-sns-action, github.com/d-e-s-o/apca,num_dependents_deps.dev:0 github.com/d-e-s-o/apcacli,num_dependents_deps.dev:0 github.com/d-e-s-o/apcaledge,num_dependents_deps.dev:0 @@ -401356,6 +409506,8 @@ github.com/d-fischer/twitch-chat-client,num_dependents_deps.dev:0 github.com/d-fischer/twitch-pubsub-client,num_dependents_deps.dev:0 github.com/d-fischer/typed-event-emitter,num_dependents_deps.dev:38 github.com/d-flood/criticus, +github.com/d-fournier/delete-workflow-artifacts, +github.com/d-fournier/pr-media-notifier-action, github.com/d-galoyan/validation, github.com/d-ganchar/flask_request_validator, github.com/d-hansen/validate_xml_xsi,num_dependents_deps.dev:0 @@ -401364,6 +409516,7 @@ github.com/d-haven/fact-totem-client,num_dependents_deps.dev:0 github.com/d-hayashi/k8s-slurm-injector,num_dependents_deps.dev:0 github.com/d-hirano1001/monitor-maintenance-from-phd,num_dependents_deps.dev:0 github.com/d-hussar/eslint-plugin,num_dependents_deps.dev:0 +github.com/d-i-bondarenko/project-labeler, github.com/d-i-t-a/R2D2BC,num_dependents_deps.dev:0 github.com/d-i/ember-devise-simple-auth,num_dependents_deps.dev:0 github.com/d-i/invitational,num_dependents_deps.dev:0 @@ -401371,6 +409524,7 @@ github.com/d-ivanov-solar/element,num_dependents_deps.dev:0 github.com/d-k-bo/python-gotify, github.com/d-k-bo/python-makemkv, github.com/d-k-ivanov/py-git-cleaner, +github.com/d-kanai/simple-lead-time-action, github.com/d-karlss/flowlog-pprint, github.com/d-kiss/fstring, github.com/d-knafo/ccxws,num_dependents_deps.dev:0 @@ -401395,6 +409549,7 @@ github.com/d-kuro/scheduled-pod-autoscaler,num_dependents_deps.dev:0 github.com/d-kuznetsov/blog,num_dependents_deps.dev:0 github.com/d-l-m/jsonserver,num_dependents_deps.dev:0 github.com/d-labs-dev/eslint-config-dlabs,num_dependents_deps.dev:0 +github.com/d-lebed/rubocop-run-action, github.com/d-led/go-gin-heroku,num_dependents_deps.dev:0 github.com/d-leme/tradew-inventory-read,num_dependents_deps.dev:0 github.com/d-leme/tradew-inventory-write,num_dependents_deps.dev:0 @@ -401645,6 +409800,8 @@ github.com/d1b1/node-braque,num_dependents_deps.dev:0 github.com/d1b1/node-ipwhere,num_dependents_deps.dev:0 github.com/d1b1/swaggerjs-braque,num_dependents_deps.dev:0 github.com/d1ced/gox,num_dependents_deps.dev:0 +github.com/d1ceward/draft-assets-release-action, +github.com/d1ceward/ruby-simplecov-action, github.com/d1evsuccess/jpush-api-go-client,num_dependents_deps.dev:0 github.com/d1ffuz0r/sqlalchemy-manager, github.com/d1g1tinc/fairlight,num_dependents_deps.dev:0 @@ -401703,6 +409860,7 @@ github.com/d2-projects/xbrz,num_dependents_deps.dev:0 github.com/d20services/arangodb_python_orm, github.com/d20services/python_arango_communications_module, github.com/d20services/security_layer_python_arangodb, +github.com/d22/cleanup-ghcr-containers-action, github.com/d2207197/carriage, github.com/d2207197/confect, github.com/d2207197/orz, @@ -401812,6 +409970,7 @@ github.com/d34dman/drupal-js-sdk, github.com/d34dman/drupal-jsonapi-params,num_dependents_deps.dev:14 github.com/d38u6/nestjs-mongoose-exclude,num_dependents_deps.dev:0 github.com/d38u6/sheets-mapper,num_dependents_deps.dev:0 +github.com/d3adb5/helm-unittest-action, github.com/d3an/finviz,num_dependents_deps.dev:0 github.com/d3b-center/s3-sbg-loader, github.com/d3byte/rxjs-http,num_dependents_deps.dev:0 @@ -401858,6 +410017,7 @@ github.com/d3n4/debugger,num_dependents_deps.dev:0 github.com/d3n4/koatuu,num_dependents_deps.dev:0 github.com/d3nn/podinfo,num_dependents_deps.dev:0 github.com/d3npa/pftables-rs,num_dependents_deps.dev:0 +github.com/d3p1/semantic-releasify, github.com/d3plus/d3plus-axis,num_dependents_deps.dev:110 github.com/d3plus/d3plus-color,num_dependents_deps.dev:106 github.com/d3plus/d3plus-common,num_dependents_deps.dev:54 @@ -401979,6 +410139,7 @@ github.com/d4n5h/validate-args,num_dependents_deps.dev:0 github.com/d4ncer/aws-cf-invalidate,num_dependents_deps.dev:0 github.com/d4ncer/colour,num_dependents_deps.dev:0 github.com/d4nd/angular5-google-recaptcha, +github.com/d4nicoder/kubectl-action, github.com/d4nicoder/myzip, github.com/d4nicoder/push-version,num_dependents_deps.dev:0 github.com/d4nicoder/rabbit-on-memory,num_dependents_deps.dev:0 @@ -402176,6 +410337,7 @@ github.com/d9pouces/hairgap-binaries, github.com/d9pouces/inventicode, github.com/d9w/prettyNEAT, github.com/d9x33/rmwrapper, +github.com/dAppServer/wails-build-action, github.com/dArignac/pelican-extended-sitemap, github.com/dArignac/pelican-minification, github.com/dArignac/shared, @@ -402355,6 +410517,7 @@ github.com/daaku/firebase-auth,num_dependents_deps.dev:0 github.com/daaku/firebase-blob-db,num_dependents_deps.dev:0 github.com/daaku/firebase-rest-api,num_dependents_deps.dev:0 github.com/daaku/firebase-storage,num_dependents_deps.dev:0 +github.com/daaku/gh-action-apt-install, github.com/daaku/hashnav,num_dependents_deps.dev:0 github.com/daaku/hmacsigner,num_dependents_deps.dev:0 github.com/daaku/kombat,num_dependents_deps.dev:0 @@ -402411,6 +410574,7 @@ github.com/daankets/tessel-reactive,num_dependents_deps.dev:0 github.com/daanklijn/aiohttp-swagger, github.com/daanklijn/col, github.com/daanknoope/jkl-serialization, +github.com/daankoning/recursive-readme, github.com/daankuijsten/simple-popup,num_dependents_deps.dev:0 github.com/daanleenders/eslint-formatter-github-checks, github.com/daanoz/font-booster-fixer,num_dependents_deps.dev:0 @@ -402485,6 +410649,7 @@ github.com/dabanlee/get-host,num_dependents_deps.dev:0 github.com/dabanlee/postcss-background-image-auto-size, github.com/dabanlee/tabs-component-vue,num_dependents_deps.dev:0 github.com/dabanlee/wegame-adapter,num_dependents_deps.dev:0 +github.com/dabao1955/kernel_build_action, github.com/dabao1989/golanglearn,num_dependents_deps.dev:0 github.com/dabapps/connect-hoc,num_dependents_deps.dev:0 github.com/dabapps/crab, @@ -402598,7 +410763,10 @@ github.com/dabos-GFI/pwd,num_dependents_deps.dev:0 github.com/daboth/pagan, github.com/daboth/pive, github.com/dabowheel/http-client-promise,num_dependents_deps.dev:0 +github.com/dabrady/syndicate, github.com/dabraham02124/tgz,num_dependents_deps.dev:0 +github.com/dabreadman/action-docker-layer-caching, +github.com/dabreadman/sync-upstream-repo, github.com/dabreegster/abstreet,criticality_score:0.532840 github.com/dabreegster/svg_face,num_dependents_deps.dev:0 github.com/dabrjs/dabr,num_dependents_deps.dev:0 @@ -402623,6 +410791,7 @@ github.com/dabump/cbee,num_dependents_deps.dev:0 github.com/dabump/gha,num_dependents_deps.dev:0 github.com/dabura667/utf82hex,num_dependents_deps.dev:0 github.com/dabutvin/Imgbot,criticality_score:0.489980 +github.com/dabutvin/chive-action, github.com/dabutvin/pgp-commit,num_dependents_deps.dev:0 github.com/dabz/ccloudexporter,num_dependents_deps.dev:0 github.com/dac-gmbh/galemu,num_dependents_deps.dev:0 @@ -402645,6 +410814,10 @@ github.com/dacarley/root-path, github.com/dacarley/simple-di,num_dependents_deps.dev:0 github.com/dacarlin/cribbage, github.com/dacast/api-nodejs,num_dependents_deps.dev:0 +github.com/dacbd/create-issue-action, +github.com/dacbd/gcpcc, +github.com/dacbd/gcr-build-push, +github.com/dacbd/gha-secrets, github.com/dacci/archiver,num_dependents_deps.dev:0 github.com/daceice/greetings,num_dependents_deps.dev:0 github.com/dacejs/babel-preset-dace,num_dependents_deps.dev:0 @@ -402779,6 +410952,7 @@ github.com/dacz/rxr,num_dependents_deps.dev:0 github.com/dacz/rxr-react,num_dependents_deps.dev:0 github.com/daczczcz1/leaflet-areaselect,num_dependents_deps.dev:0 github.com/dad-chain/dad-go,num_dependents_deps.dev:0 +github.com/dada-public/jupyter-to-pages, github.com/dada1134/discord-bans,num_dependents_deps.dev:0 github.com/dada1134/letter,num_dependents_deps.dev:0 github.com/dada513/PufferPanelJS,num_dependents_deps.dev:0 @@ -402835,6 +411009,7 @@ github.com/dadard29/go-api-utils,num_dependents_deps.dev:0 github.com/dadard29/podman-proxy,num_dependents_deps.dev:0 github.com/dadario/simple-rack-logger,num_dependents_deps.dev:0 github.com/dadastory/frp,num_dependents_deps.dev:0 +github.com/dadav/jsonnet-lint-action, github.com/daddeffe/wingo,num_dependents_deps.dev:0 github.com/daddehs1/mandarin-rhyme,num_dependents_deps.dev:0 github.com/daddou-ma/ArduinoSlaveJs,num_dependents_deps.dev:0 @@ -402850,6 +411025,7 @@ github.com/daddye/elastic,num_dependents_deps.dev:0 github.com/daddye/stitchme, github.com/daddygongon/tiny_ge,num_dependents_deps.dev:0 github.com/daddykotex/geojson-jackson-android,num_dependents_deps.dev:0 +github.com/daddykotex/pull-request-comment-trigger, github.com/daddyz/evercookie,num_dependents_deps.dev:0 github.com/daddyz/phonelib,"criticality_score:0.454330,num_dependents_deps.dev:2" github.com/daddz/gnome-workcycle-applet, @@ -403000,6 +411176,7 @@ github.com/daejong123/jstool,num_dependents_deps.dev:0 github.com/daeken/benjen, github.com/daelmaak/ngx-doe-gallery,num_dependents_deps.dev:0 github.com/daelmaak/ngx-imagery,num_dependents_deps.dev:0 +github.com/daelynum/vladimir-ivanov_github-action-markdown-templater, github.com/daemez/ext-i18next, github.com/daemon-demons043/lsm-tree,num_dependents_deps.dev:0 github.com/daemon1981/mongoose-rattle-plugin,num_dependents_deps.dev:0 @@ -403148,6 +411325,7 @@ github.com/daflockinger/unitstack,num_dependents_deps.dev:0 github.com/dafn/react-native-todo,num_dependents_deps.dev:0 github.com/dafnifacility/command-line-interface, github.com/dafny-lang/dafny,criticality_score:0.554990 +github.com/dafny-lang/setup-dafny-action, github.com/daforester/go-sky-streamer,num_dependents_deps.dev:0 github.com/dafortune/ar.afip.billing, github.com/dafortune/chai-jwt,num_dependents_deps.dev:0 @@ -403180,6 +411358,7 @@ github.com/dagcoin/dagcoin-core,num_dependents_deps.dev:0 github.com/dagcoin/dagcoin-fsm,num_dependents_deps.dev:0 github.com/dagda1/cuttingedge,num_dependents_deps.dev:68 github.com/dagda1/emberx-autosuggest,num_dependents_deps.dev:0 +github.com/dagda1/get-temporary-vercel-preview-url, github.com/dagda1/knex-csv-transformer,num_dependents_deps.dev:0 github.com/dagdun/is-object-helper,num_dependents_deps.dev:0 github.com/dagealuba/my-ui,num_dependents_deps.dev:0 @@ -403194,6 +411373,7 @@ github.com/daggaz/python-pyptables, github.com/dagger-team/js-dagger-client, github.com/dagger-team/js-dagger-shared, github.com/dagger-team/python-dagger, +github.com/dagger/dagger-for-github, github.com/dagger8224/dagger.js,num_dependents_deps.dev:0 github.com/daggerhartlab/patternlab-pattern-data,num_dependents_deps.dev:0 github.com/daggerok/daggerok-context,num_dependents_deps.dev:0 @@ -403222,6 +411402,7 @@ github.com/dagnelies/starpath, github.com/dagnelies/temser, github.com/dagobuh/dagobuh,num_dependents_deps.dev:0 github.com/dagof/grunt-jslocator,num_dependents_deps.dev:0 +github.com/dagonco/azure-create-new-container, github.com/dagonis/nicehr, github.com/dagonmetric/ng-log-applicationinsights,num_dependents_deps.dev:0 github.com/dagonmetric/ng-log-facebook-analytics,num_dependents_deps.dev:0 @@ -403325,6 +411506,7 @@ github.com/dahlia/last.fm-memories, github.com/dahlia/lazylist, github.com/dahlia/logging-spinner, github.com/dahlia/sqlalchemy-imageattach, +github.com/dahlia/submark, github.com/dahlia/wand,Google github.com/dahlia/wikidata, github.com/dahliaOS/pangolin-desktop,criticality_score:0.391710 @@ -403549,6 +411731,7 @@ github.com/daiki328/quiz-cli,num_dependents_deps.dev:0 github.com/daiki328/riddle-cli,num_dependents_deps.dev:0 github.com/daikihosomi/go-learning,num_dependents_deps.dev:0 github.com/daikikatsuragawa/autoarm, +github.com/daikikatsuragawa/clasp-action, github.com/daikikatsuragawa/df4loop, github.com/daikimare/go_study,num_dependents_deps.dev:0 github.com/daikimare/satoruchan-discord,num_dependents_deps.dev:0 @@ -403592,6 +411775,7 @@ github.com/dailybruin/gatsby-source-kerckhoff,num_dependents_deps.dev:0 github.com/dailybruin/lux,num_dependents_deps.dev:0 github.com/dailyciousdabba/uploadablef-components,num_dependents_deps.dev:0 github.com/dailycode365/mrm-preset, +github.com/dailydotdev/action-devcard, github.com/dailydotdev/daily,criticality_score:0.383620 github.com/dailydotdev/daily-monetization,num_dependents_deps.dev:0 github.com/dailydotdev/pulumi-common,num_dependents_deps.dev:0 @@ -403726,6 +411910,8 @@ github.com/dainst/pouchdb-server,num_dependents_deps.dev:0 github.com/daint2git/daint2-configs,num_dependents_deps.dev:0 github.com/daint2git/daint2-monorepo-typescript-demo,num_dependents_deps.dev:0 github.com/daint2git/open-source-JS-library-demo,num_dependents_deps.dev:0 +github.com/daint2git/pull-request-chatwork-notifier, +github.com/daint2git/pull-request-slack-notifier, github.com/daint2git/viblo.asia,num_dependents_deps.dev:0 github.com/daintree-henry/cims-userapi,num_dependents_deps.dev:0 github.com/daintree-henry/cims-utils,num_dependents_deps.dev:0 @@ -403790,6 +411976,8 @@ github.com/dairoot/school-api, github.com/dairycart/dairycart,num_dependents_deps.dev:0 github.com/dais0n/node-yconnect-v2,num_dependents_deps.dev:0 github.com/daisakuhazui/four-quadrants-go,num_dependents_deps.dev:0 +github.com/daisaru11/setup-cd-tools, +github.com/daisaru11/tfupdate-github-actions, github.com/daisatojp/PointMatcher, github.com/daiscog/ngx-http-request-state,num_dependents_deps.dev:0 github.com/daishe/kubeconfig,num_dependents_deps.dev:0 @@ -403818,6 +412006,7 @@ github.com/daisukelab/dl-cliche, github.com/daisukematsumoto0925/go_practice,num_dependents_deps.dev:0 github.com/daisukematsumoto0925/sample_pj,num_dependents_deps.dev:0 github.com/daisukenakahama/scrape-fb-ogcache,num_dependents_deps.dev:0 +github.com/daisukixci/publish-confluence, github.com/daisuzu/liveimg,num_dependents_deps.dev:0 github.com/daisy-consortium/epubcheck-invoker,num_dependents_deps.dev:0 github.com/daisy-consortium/maven-parents,num_dependents_deps.dev:7676 @@ -403834,6 +412023,7 @@ github.com/daisy/xproc-maven-plugin,num_dependents_deps.dev:59 github.com/daisy/xprocspec,num_dependents_deps.dev:296 github.com/daisy/xspec-maven-plugin,num_dependents_deps.dev:0 github.com/daisyjs/daisy.js, +github.com/daisylb/setup-nox, github.com/daisymanson/portscanning,num_dependents_deps.dev:0 github.com/daitangio/org-mode-parser,num_dependents_deps.dev:0 github.com/daitangio/runif, @@ -404015,6 +412205,7 @@ github.com/dakk/nmeatoolkit, github.com/dakk/node-chainso,num_dependents_deps.dev:0 github.com/dakk/shift-lobby,num_dependents_deps.dev:0 github.com/dakk/waterfall-ya,num_dependents_deps.dev:0 +github.com/dakkei/another, github.com/dakl/genomicassertions, github.com/dakmaz/extensions,num_dependents_deps.dev:0 github.com/daknob/eldim,num_dependents_deps.dev:0 @@ -404122,6 +412313,7 @@ github.com/dalance/softfloat-wrapper,num_dependents_deps.dev:0 github.com/dalance/structopt-toml,num_dependents_deps.dev:3 github.com/dalance/sv-parser,num_dependents_deps.dev:77 github.com/dalance/svlint,num_dependents_deps.dev:0 +github.com/dalance/svlint-action, github.com/dalance/svls,num_dependents_deps.dev:0 github.com/dalance/termbg,num_dependents_deps.dev:1 github.com/dalane/access-control,num_dependents_deps.dev:0 @@ -404270,6 +412462,7 @@ github.com/dalenguyen/stockai, github.com/dalenguyen/urls-checker,num_dependents_deps.dev:0 github.com/dalenys/mytsgraph, github.com/daleobrien/maze, +github.com/daleobrien/npm-with-chrome-browser-action, github.com/daleobrien/workbook, github.com/daleoooo/dq,num_dependents_deps.dev:0 github.com/daleoooo/giant,num_dependents_deps.dev:0 @@ -404296,6 +412489,7 @@ github.com/dalexj/simr,num_dependents_deps.dev:0 github.com/daleyjem/addcal,num_dependents_deps.dev:0 github.com/daleyjem/event-dispatcher,num_dependents_deps.dev:0 github.com/daleyshek/ding-sub,num_dependents_deps.dev:0 +github.com/dalezak/github-commit-to-trello-card, github.com/dalezhang/util,num_dependents_deps.dev:0 github.com/dalfageme/stringincludes,num_dependents_deps.dev:0 github.com/dalgos/eslint-config-nbl,num_dependents_deps.dev:0 @@ -404519,6 +412713,7 @@ github.com/daltonmatos/plugnplay, github.com/daltonmatos/wsgid, github.com/daltonmenezes/aura-theme,num_dependents_deps.dev:0 github.com/daltonmenezes/cra-template-good-start,num_dependents_deps.dev:0 +github.com/daltonmenezes/discord-guardian-action, github.com/daltonmenezes/hyper-init,num_dependents_deps.dev:0 github.com/daltonmenezes/what-type-is,num_dependents_deps.dev:0 github.com/daltonpearson/roboteq, @@ -404556,6 +412751,7 @@ github.com/dam4rus/msoffice-pptx-rs,num_dependents_deps.dev:0 github.com/dam4rus/msoffice-shared-rs,num_dependents_deps.dev:0 github.com/dam4rus/oox-rs,num_dependents_deps.dev:0 github.com/damack/datastore-geo,num_dependents_deps.dev:0 +github.com/damacus/check-chef-metadata-action, github.com/damaera/mongr,num_dependents_deps.dev:0 github.com/damaera/react-acrylic,num_dependents_deps.dev:0 github.com/damaera/react-conditioner,num_dependents_deps.dev:0 @@ -404603,6 +412799,7 @@ github.com/dambrisco/swiss-pairing,num_dependents_deps.dev:0 github.com/damc-dev/cdk-constructs,num_dependents_deps.dev:0 github.com/damcclean/gravatar-image-urls,num_dependents_deps.dev:0 github.com/damcclean/tailwindcss-bulma-modals,num_dependents_deps.dev:0 +github.com/damccorm/tag-ur-it, github.com/dameck/alfred-google-books,num_dependents_deps.dev:0 github.com/dameety/vue-image-preview,num_dependents_deps.dev:0 github.com/dameleon/grunt-flash4canvas-support-datauri,num_dependents_deps.dev:0 @@ -404633,6 +412830,8 @@ github.com/dameyerdave/react-native-hook-use-notification,num_dependents_deps.de github.com/dameyerdave/react-native-hook-use-persist,num_dependents_deps.dev:0 github.com/damfinkel/object-mapper,num_dependents_deps.dev:0 github.com/damfinkel/react-base-components,num_dependents_deps.dev:0 +github.com/damfle/github-action-kubelinter, +github.com/damfle/github-action-yamllint, github.com/damiafuentes/DJITelloPy,criticality_score:0.312410 github.com/damian-brainhub/chai-json-pattern,num_dependents_deps.dev:0 github.com/damian-burke/danger-plugin-ktlint-report,num_dependents_deps.dev:0 @@ -404751,7 +412950,9 @@ github.com/damianospark/eazyprofiler, github.com/damianperera/array-utils,num_dependents_deps.dev:0 github.com/damianperera/codesearch,num_dependents_deps.dev:0 github.com/damianperera/mobilefirst-angular,num_dependents_deps.dev:0 +github.com/damianperera/mount-image-action, github.com/damianperera/ts-arrays, +github.com/damianperera/unmount-image-action, github.com/damianpolak/dec-to-rom,num_dependents_deps.dev:0 github.com/damianpolak/hex-check,num_dependents_deps.dev:0 github.com/damianpolak/hex-rgb-conv,num_dependents_deps.dev:0 @@ -404781,6 +412982,13 @@ github.com/damiao-wang/code,num_dependents_deps.dev:0 github.com/damidevelopment/mobx-router,num_dependents_deps.dev:0 github.com/damien-monni/draft-read-time,num_dependents_deps.dev:0 github.com/damien-otis/node-console-colors,num_dependents_deps.dev:0 +github.com/damienaicheh/extract-version-from-tag-action, +github.com/damienaicheh/icon-badge-action, +github.com/damienaicheh/update-android-manifest-package-action, +github.com/damienaicheh/update-android-version-gradle-action, +github.com/damienaicheh/update-android-version-manifest-action, +github.com/damienaicheh/update-ios-bundle-identifier-action, +github.com/damienaicheh/update-ios-version-info-plist-action, github.com/damienbiggs/reflection-builder,num_dependents_deps.dev:0 github.com/damienbirtel/challengebot,num_dependents_deps.dev:0 github.com/damienbirtel/simplegomoku,num_dependents_deps.dev:0 @@ -405240,6 +413448,7 @@ github.com/danae/dynmap-png, github.com/danaele/CIVILITY,num_dependents_deps.dev:0 github.com/danag/boggled, github.com/danaildinev/ddcarousel,num_dependents_deps.dev:0 +github.com/danakim/gh-action-deploy-netlify, github.com/danakt/handlebars-to-jsx,num_dependents_deps.dev:0 github.com/danakt/multi-array-view,num_dependents_deps.dev:0 github.com/danakt/node-etherscan-api,num_dependents_deps.dev:0 @@ -405398,6 +413607,7 @@ github.com/danburkert/lmdb-rs,num_dependents_deps.dev:40 github.com/danburkert/memmap-rs,num_dependents_deps.dev:1298 github.com/danburkert/procinfo-rs,num_dependents_deps.dev:50 github.com/danburkert/prost,"criticality_score:0.508000,num_dependents_deps.dev:6" +github.com/danburtenshaw/s3-website-pr-action, github.com/danburzo/culori,num_dependents_deps.dev:0 github.com/danburzo/culori-scales, github.com/danburzo/d3-color-difference,num_dependents_deps.dev:0 @@ -405662,6 +413872,7 @@ github.com/daneden/animate,Google github.com/daneden/animate.css,num_dependents_deps.dev:346 github.com/daneden/basehold.it,criticality_score:0.369250 github.com/daneden/daneden.me,criticality_score:0.413560 +github.com/daneden/enable-automerge-action, github.com/daneden/gatsby-remark-smallcaps,num_dependents_deps.dev:0 github.com/danehans/contour,num_dependents_deps.dev:0 github.com/danehansen/EventDispatcher,num_dependents_deps.dev:0 @@ -405819,6 +414030,7 @@ github.com/dangcpham/pybody, github.com/dangcuuson/graphql-schema-typescript,num_dependents_deps.dev:18 github.com/dangdangdotcom/config-toolkit,num_dependents_deps.dev:1 github.com/dangdangdotcom/sharding-jdbc,num_dependents_deps.dev:4 +github.com/dangdennis/toml-action, github.com/dangdungcntt/number2written,num_dependents_deps.dev:0 github.com/dangdungcntt/youtube-stream-url,num_dependents_deps.dev:0 github.com/dangeloj/rust-collections,num_dependents_deps.dev:0 @@ -405894,6 +414106,7 @@ github.com/dangkaka/top-projects,num_dependents_deps.dev:0 github.com/danglephuc/jp-postalcode-lookup,num_dependents_deps.dev:0 github.com/danglevinhphuc/sso,num_dependents_deps.dev:0 github.com/dangmai/escape-latex,num_dependents_deps.dev:2902 +github.com/dangmai/get-apt-package-version, github.com/dangmai/python-ash, github.com/dangnelson/car-makes-icons,num_dependents_deps.dev:0 github.com/dangnguyendota/game-server-api,num_dependents_deps.dev:0 @@ -405921,6 +414134,9 @@ github.com/dangolbeeker/nerdeye,num_dependents_deps.dev:0 github.com/dangoldin/poor-mans-data-pipeline, github.com/dangoo/roving-ux-react,num_dependents_deps.dev:0 github.com/dangoscomb/pydynamics, +github.com/dangoslen/changelog-enforcer, +github.com/dangoslen/constable-github-action, +github.com/dangoslen/dependabot-changelog-helper, github.com/dangquangdon/Python-Book-Reader-CLI, github.com/dangquanglight/seo-defects,num_dependents_deps.dev:0 github.com/dangreco/edgy,num_dependents_deps.dev:0 @@ -406022,6 +414238,9 @@ github.com/danheberden/deferred-exec,num_dependents_deps.dev:2 github.com/danheberden/gith,num_dependents_deps.dev:0 github.com/danheberden/perform,num_dependents_deps.dev:0 github.com/danheberden/yeoman-generator-requirejs,num_dependents_deps.dev:0 +github.com/danhellem/github-actions-issue-to-work-item, +github.com/danhellem/github-actions-pr-is-linked-to-work-item, +github.com/danhellem/github-actions-pr-to-work-item, github.com/danhey/echelle, github.com/danhey/maelstrom, github.com/danhhan/go-basic,num_dependents_deps.dev:0 @@ -406057,6 +414276,8 @@ github.com/danhuang1202/react-timeago.js,num_dependents_deps.dev:0 github.com/danhuang1202/react2amp,num_dependents_deps.dev:0 github.com/danhunsaker/angular-dynamic-forms,num_dependents_deps.dev:0 github.com/danhunsaker/calends,num_dependents_deps.dev:0 +github.com/danhunsaker/clover-reporter-action, +github.com/danhunsaker/golang-github-actions, github.com/danhunsaker/hoarder,num_dependents_deps.dev:0 github.com/dani-Tb/js-git-hooks,num_dependents_deps.dev:0 github.com/dani-garcia/bitwarden_rs,"criticality_score:0.546880,num_dependents_deps.dev:0" @@ -406075,6 +414296,8 @@ github.com/dani8art/grunt-release-github, github.com/dani8art/hygeia-js,num_dependents_deps.dev:0 github.com/dani909/DaniHttp,num_dependents_deps.dev:0 github.com/daniELgrailDev/grailabs-data-cli, +github.com/daniL16/action-clean-old-files, +github.com/daniL16/action-notify-rocketChat, github.com/daniakash/react-native-pss,num_dependents_deps.dev:0 github.com/daniaki/keggstand, github.com/danial24/react-native-web-acute-swiper,num_dependents_deps.dev:0 @@ -406233,6 +414456,7 @@ github.com/daniel-garcia/coredns,num_dependents_deps.dev:0 github.com/daniel-garcia/go-etcd,num_dependents_deps.dev:0 github.com/daniel-gawron/coffee-db-migrate,num_dependents_deps.dev:0 github.com/daniel-gh/myai,num_dependents_deps.dev:0 +github.com/daniel-habib/tag-version-action, github.com/daniel-hallgren-cdab/create-react-app,num_dependents_deps.dev:0 github.com/daniel-hallgren-cdab/devops-semver-build-number,num_dependents_deps.dev:0 github.com/daniel-hauser/react-organizational-chart,num_dependents_deps.dev:0 @@ -406382,6 +414606,8 @@ github.com/danielalcalde/apalis, github.com/danielalvsaaker/staticmap,num_dependents_deps.dev:0 github.com/danielamram/email-creator, github.com/danielan87/swgoh-stat-calc,num_dependents_deps.dev:0 +github.com/danielandersson/govulncheck-action, +github.com/danielangelrs/open-issue, github.com/danielantelo/cypress-storybook-commands,num_dependents_deps.dev:0 github.com/danielantelo/language-detector,num_dependents_deps.dev:0 github.com/danielaparker/jsoncons,criticality_score:0.613370 @@ -406434,6 +414660,7 @@ github.com/danielbayerlein/middleman-google-analytics,num_dependents_deps.dev:0 github.com/danielbayerlein/vallox-api,num_dependents_deps.dev:0 github.com/danielbayley/alfred-finder-new-item,num_dependents_deps.dev:0 github.com/danielbayley/jest-preset-coffeescript,num_dependents_deps.dev:0 +github.com/danielbayley/mirror-action, github.com/danielbeardsley/gwhid,num_dependents_deps.dev:0 github.com/danielbeardsley/notify-queue,num_dependents_deps.dev:0 github.com/danielbeardsley/paraflow,num_dependents_deps.dev:0 @@ -406472,6 +414699,7 @@ github.com/danielbonifacio/simple-azure-blob-storage-js-upload, github.com/danielborowski/cb-code-runner,num_dependents_deps.dev:1 github.com/danielborowski/cb-code-runner-2,num_dependents_deps.dev:0 github.com/danielboven/ordered-uuid-v4,num_dependents_deps.dev:0 +github.com/danielbowden/action-slack-lookupByEmail, github.com/danielbprice/briefpg,num_dependents_deps.dev:0 github.com/danielbradham/bands, github.com/danielbraun-org/container, @@ -406508,6 +414736,7 @@ github.com/danielcbailey/mipsemulator,num_dependents_deps.dev:0 github.com/danielccunha/node-sitef,num_dependents_deps.dev:0 github.com/danielcdl/numero_por_extenso, github.com/danielcgold/scss-starter-kit,num_dependents_deps.dev:0 +github.com/danielchabr/pr-labels-checker, github.com/danielchatfield/atom-name,num_dependents_deps.dev:0 github.com/danielchatfield/fixgit,num_dependents_deps.dev:0 github.com/danielchatfield/flag, @@ -406567,6 +414796,7 @@ github.com/danielddias111/sf-standard-field,num_dependents_deps.dev:0 github.com/danieldeandradelopes/jacode-certificates,num_dependents_deps.dev:0 github.com/danieldeev/turing-crypt,num_dependents_deps.dev:0 github.com/danieldefreitasleite/videostreamer,num_dependents_deps.dev:0 +github.com/danieldeichfuss/get-status, github.com/danieldelcore/commitpal,num_dependents_deps.dev:0 github.com/danieldelcore/hyper-match, github.com/danieldelcore/object-deep-key,num_dependents_deps.dev:0 @@ -406676,6 +414906,7 @@ github.com/daniele77/cli,criticality_score:0.417290 github.com/daniele92vp/dev-ready-components, github.com/danieleades/longshoreman,num_dependents_deps.dev:0 github.com/danieleades/monzo-lib,num_dependents_deps.dev:0 +github.com/danielealbano/lcov-action, github.com/danielearwicker/ay,num_dependents_deps.dev:4 github.com/danielearwicker/bidi-mobx,num_dependents_deps.dev:0 github.com/danielearwicker/bitstupid,num_dependents_deps.dev:0 @@ -406838,6 +415069,7 @@ github.com/danielfsousa/opensubz, github.com/danielfsousa/prettier-config,num_dependents_deps.dev:0 github.com/danielfsousa/semantic-release-demo,num_dependents_deps.dev:0 github.com/danielfv/shopify_review_scraper, +github.com/danielgadea/change-metadata-github-action, github.com/danielgallagher0/bluenrg,num_dependents_deps.dev:0 github.com/danielgallagher0/bluetooth-hci,num_dependents_deps.dev:0 github.com/danielgallagher0/hts221,num_dependents_deps.dev:0 @@ -406942,6 +415174,7 @@ github.com/danielgtaylor/restish,num_dependents_deps.dev:0 github.com/danielgtaylor/tech-talk,num_dependents_deps.dev:0 github.com/danielgtaylor/userbadges-node, github.com/danielguaycha/sri-signer, +github.com/danielguedesb/gcp-certbot, github.com/danielguillan/bem-constructor,num_dependents_deps.dev:38 github.com/danielguillan/modernizr-mixin,num_dependents_deps.dev:0 github.com/danielguillan/quantity-queries,num_dependents_deps.dev:0 @@ -407021,6 +415254,7 @@ github.com/danielhq/connect-inject,num_dependents_deps.dev:126 github.com/danielhrisca/asammdf,criticality_score:0.586280 github.com/danielhrisca/asciifolder, github.com/danielhrisca/cmerg, +github.com/danielhs1/comment-on-pr, github.com/danielhstahl/cf_dist_utils_rust,num_dependents_deps.dev:0 github.com/danielhstahl/fang_oost_option_rust,num_dependents_deps.dev:0 github.com/danielhuang/eslint-config-lemon, @@ -407079,6 +415313,7 @@ github.com/danielinspring/go-tflite,num_dependents_deps.dev:0 github.com/danielisaacgeslin/react-helpful-hooks,num_dependents_deps.dev:0 github.com/danielisgr8/confidential-claus-lambda,num_dependents_deps.dev:0 github.com/danielislas3/verificacor-telefonos-mexico,num_dependents_deps.dev:0 +github.com/danieliu/ec2-github-runner, github.com/danieliu/nose-dehaze, github.com/danieliu/play-scraper, github.com/danielj3489/npm-demo,num_dependents_deps.dev:0 @@ -407095,6 +415330,7 @@ github.com/danieljdufour/utm-utils,num_dependents_deps.dev:6 github.com/danieljfarrell/pvtrace, github.com/danieljharvey/redux-atomic, github.com/danieljharvey/search-face,num_dependents_deps.dev:0 +github.com/danieljimeneznz/ensure-files-changed, github.com/danieljin/yelpv3,num_dependents_deps.dev:0 github.com/danieljoonkimm/joonGrids,num_dependents_deps.dev:0 github.com/danieljoos/aws-sign-web,num_dependents_deps.dev:0 @@ -407335,6 +415571,7 @@ github.com/danielmatthew/accessible-web-components,num_dependents_deps.dev:0 github.com/danielmatthew/inaccessible.css,num_dependents_deps.dev:0 github.com/danielmbaluka/palvac-geolocation-plugin,num_dependents_deps.dev:0 github.com/danielmccarville/Benfords, +github.com/danielmcconville/gist-sync-file-action, github.com/danielmcconville/sequelize-mock,num_dependents_deps.dev:0 github.com/danielmcgraw/snip,num_dependents_deps.dev:0 github.com/danielmconrad/rover,num_dependents_deps.dev:0 @@ -407363,6 +415600,8 @@ github.com/danielmichaels/fuelwatcher, github.com/danielmichaels/http-tracer, github.com/danielmiessler/SecLists,criticality_score:0.568120 github.com/danielmiester/executor,num_dependents_deps.dev:0 +github.com/danielmillan/pipelines-firebase-functions, +github.com/danielmillan/pipelines-firebase-hosting, github.com/danielmilner/wp-block-components,num_dependents_deps.dev:0 github.com/danielmittelman/expr-eval,num_dependents_deps.dev:0 github.com/danielmlc/Dawn-UI, @@ -407396,6 +415635,7 @@ github.com/danielmschmidt/objective-c-parser,num_dependents_deps.dev:0 github.com/danielmschmidt/performance-benchmarking,num_dependents_deps.dev:0 github.com/danielmsk/bamsnap, github.com/danielmsk/ukbsearch, +github.com/danielmundi/upload-packagecloud, github.com/danielmurphy/control-deck,num_dependents_deps.dev:0 github.com/danielmurphy/control-deck-media-controls,num_dependents_deps.dev:0 github.com/danielmurphy/control-deck-slack,num_dependents_deps.dev:0 @@ -407493,6 +415733,7 @@ github.com/danielpacak/opa-herculean,num_dependents_deps.dev:0 github.com/danielpacarvalho/beginnergo,num_dependents_deps.dev:0 github.com/danielpacarvalho/turma1go,num_dependents_deps.dev:0 github.com/danielpalme/ReportGenerator,criticality_score:0.607490 +github.com/danielpalme/ReportGenerator-GitHub-Action, github.com/danielpalstra/pystatping, github.com/danielparks/assertify,num_dependents_deps.dev:1 github.com/danielparks/htmlize,num_dependents_deps.dev:0 @@ -407542,6 +415783,7 @@ github.com/danielplohmann/picblocks, github.com/danielplohmann/smda, github.com/danielpoonwj/easyadwords, github.com/danielpoonwj/gwrappy, +github.com/danielporto/create-envfile, github.com/danielporto/ethereum-smartcontract-snippet,num_dependents_deps.dev:0 github.com/danielpost/gulp-purify-css,num_dependents_deps.dev:0 github.com/danielpox/swagger-client-codegen,num_dependents_deps.dev:0 @@ -407570,7 +415812,10 @@ github.com/danielr18/connected-next-router,num_dependents_deps.dev:0 github.com/danielr18/ghost-pagination,num_dependents_deps.dev:0 github.com/danielr18/react-native-ir-manager,num_dependents_deps.dev:0 github.com/danielr1996/bumpup,num_dependents_deps.dev:0 +github.com/danielr1996/envsubst-action, github.com/danielr1996/hdns-go,num_dependents_deps.dev:0 +github.com/danielr1996/kubectl-action, +github.com/danielr1996/setup-bumpup, github.com/danielr1996/terraform-provider-hdns,num_dependents_deps.dev:0 github.com/danielraban/cordova-diagnostic-plugin, github.com/danielrajaei/number-to-persian-text,num_dependents_deps.dev:0 @@ -407617,6 +415862,7 @@ github.com/danielrocha1/auth,num_dependents_deps.dev:0 github.com/danielrod99/csv-manager,num_dependents_deps.dev:0 github.com/danielrodcaball/jsonresume-theme-onepage-updated,num_dependents_deps.dev:0 github.com/danielroe/nuxt-composition-api,num_dependents_deps.dev:0 +github.com/danielroe/nuxt-nightly-action, github.com/danielroe/nuxt-timings-module,num_dependents_deps.dev:0 github.com/danielroe/nuxt-typed-vuex,num_dependents_deps.dev:4 github.com/danielroe/openflights-loader,num_dependents_deps.dev:0 @@ -407812,6 +416058,7 @@ github.com/danieltellez/career, github.com/danielterra/node-red-contrib-aws-ses-send,num_dependents_deps.dev:0 github.com/danielterwiel/prettier-eslint-webpack-plugin,num_dependents_deps.dev:0 github.com/danielthall/ember-cropperjs,num_dependents_deps.dev:0 +github.com/danielthedifficult/Action-AutoSync-Branches, github.com/danielthepope/express-simple-redirect,num_dependents_deps.dev:0 github.com/danielthepope/gemojify,num_dependents_deps.dev:0 github.com/danielthepope/imojify,num_dependents_deps.dev:0 @@ -407883,6 +416130,7 @@ github.com/danielweinmann/validate-model,num_dependents_deps.dev:0 github.com/danielwelch/coc-homeassistant,num_dependents_deps.dev:0 github.com/danielwelch/hassio-zigbee2mqtt,criticality_score:0.529480 github.com/danielwelch/nflgame, +github.com/danielweller-swp/workflow-run-diff-action, github.com/danielweper/lectio, github.com/danielwerg/r6api.js,num_dependents_deps.dev:0 github.com/danielwerg/tsconfig, @@ -408122,6 +416370,7 @@ github.com/danilaplee/pouchdb-multisync,num_dependents_deps.dev:0 github.com/danilaplee/swagger-koa-validator,num_dependents_deps.dev:0 github.com/danilarff86/gqlgen-todos,num_dependents_deps.dev:0 github.com/danilasimanok/ConsoleChat, +github.com/danilat/externalized-telegram-notifications-action, github.com/danile71/go-face,num_dependents_deps.dev:0 github.com/danile71/go-logger,num_dependents_deps.dev:0 github.com/danile71/go-rtsp,num_dependents_deps.dev:0 @@ -408143,6 +416392,7 @@ github.com/danillouz/product-hunt,num_dependents_deps.dev:0 github.com/danillouz/random-hex,num_dependents_deps.dev:2 github.com/danillouz/react-snowfetti,num_dependents_deps.dev:0 github.com/danillouz/socket-io-server,num_dependents_deps.dev:2 +github.com/danilo-delbusso/pr-review-labeller, github.com/danilo-drs/chunked-run,num_dependents_deps.dev:0 github.com/danilo-pimentel/flexorm,num_dependents_deps.dev:0 github.com/danilo-valente/Tron,num_dependents_deps.dev:0 @@ -408355,6 +416605,7 @@ github.com/danitseitlin/dmock-server, github.com/danitseitlin/google-authenticator-util, github.com/danitseitlin/mock-server,num_dependents_deps.dev:0 github.com/danitseitlin/npm-package-deployer,num_dependents_deps.dev:0 +github.com/danitseitlin/package-deployer, github.com/danitseitlin/redis-modules-sdk, github.com/danitseitlin/reportportal-testcafe-plugin, github.com/danitseitlin/rl-cloud-api-sdk, @@ -408374,6 +416625,9 @@ github.com/danixeee/textx-gen-coloring, github.com/danixeee/textx-gen-vscode, github.com/danixoon/astra-engine,num_dependents_deps.dev:0 github.com/daniyaalhadzami/zpl_shipping_ups,num_dependents_deps.dev:0 +github.com/daniyalj/action-issue-parser, +github.com/daniyalj/ga-hello-world, +github.com/daniyalj/terraform-destroy-actions, github.com/daniyall/pyPipelining, github.com/daniyall/pyPiper, github.com/daniyar1995/parking,num_dependents_deps.dev:0 @@ -408518,6 +416772,7 @@ github.com/dankohn/libpod,num_dependents_deps.dev:0 github.com/dankoknad/use-toggle-many,num_dependents_deps.dev:0 github.com/dankomiocevic/bolt,num_dependents_deps.dev:0 github.com/dankondr/octo-train, +github.com/dankore/github-to-caprover, github.com/dankox/gocui,num_dependents_deps.dev:0 github.com/dankrajnak/chris-monty,num_dependents_deps.dev:0 github.com/dankrajnak/danielkrajank,num_dependents_deps.dev:0 @@ -408796,6 +417051,7 @@ github.com/danneu/react-template-render,num_dependents_deps.dev:0 github.com/danneu/recaptcha-validator, github.com/danneu/sortedset,num_dependents_deps.dev:0 github.com/danneu2s1fa/react-native-yearpicker,num_dependents_deps.dev:0 +github.com/dannevesdantas/set-version-assemblyinfo, github.com/dannguyen/csvkitcat, github.com/dannguyen/csvmedkit, github.com/dannguyen/csvviz, @@ -408876,6 +417132,7 @@ github.com/dannybritto96/mrequests, github.com/dannybrown37/SeleniumEnhancer, github.com/dannybster/mocha-mongod-process-hooks,num_dependents_deps.dev:0 github.com/dannybster/mocha-process-hooks,num_dependents_deps.dev:0 +github.com/dannyburke1/configure-aws-credentials, github.com/dannycallaghan/npm-dannycallaghan,num_dependents_deps.dev:0 github.com/dannycalleri/react-light-select,num_dependents_deps.dev:0 github.com/dannycalleri/ture,num_dependents_deps.dev:0 @@ -408958,6 +417215,7 @@ github.com/dannyhinshaw/go-echo-sandbox,num_dependents_deps.dev:0 github.com/dannyhostetler/angular,num_dependents_deps.dev:0 github.com/dannyhpy/brawlstars-nodejs,num_dependents_deps.dev:0 github.com/dannyhw/react-native-keyboard-aware-scroll-view,num_dependents_deps.dev:0 +github.com/dannyhw/storybook-chromatic-link-comment, github.com/dannyifang/fastify-oas,num_dependents_deps.dev:0 github.com/dannykbsoul/godlikedesign,num_dependents_deps.dev:0 github.com/dannykopping/b3,num_dependents_deps.dev:0 @@ -408985,6 +417243,7 @@ github.com/dannyrdalton/tubedata,num_dependents_deps.dev:0 github.com/dannyroberts/jsonobject, github.com/dannyrusnok/customhandlerfunctionsapp,num_dependents_deps.dev:0 github.com/dannysalazar90/al-winston-mail,num_dependents_deps.dev:0 +github.com/dannysauer/actions-assigner, github.com/dannysepler/dupimports, github.com/dannysepler/pytestify, github.com/dannysepler/rainbowcsv, @@ -408994,6 +417253,7 @@ github.com/dannyshaw/hubot-inhumanity,num_dependents_deps.dev:0 github.com/dannyshaw/keystone-multilingual,num_dependents_deps.dev:0 github.com/dannysindra/next-movie-components,num_dependents_deps.dev:0 github.com/dannysiu392005/ruby-number-theory,num_dependents_deps.dev:0 +github.com/dannyskoog/pull-request-comment, github.com/dannysmc95/rewyre,num_dependents_deps.dev:0 github.com/dannysmc95/spectra-ui,num_dependents_deps.dev:0 github.com/dannyso16/pynasour, @@ -409032,6 +417292,7 @@ github.com/danobi/btrd,num_dependents_deps.dev:0 github.com/danobi/fbthrift,num_dependents_deps.dev:6 github.com/danobi/resctl,num_dependents_deps.dev:12 github.com/danobi/rust-shed,num_dependents_deps.dev:22 +github.com/danobi/vmtest-action, github.com/danoc/clickable-box,num_dependents_deps.dev:0 github.com/danoc/danoc.me,num_dependents_deps.dev:0 github.com/danoc/gatsby-source-pinboard, @@ -409130,6 +417391,8 @@ github.com/danper2213/Platzom,num_dependents_deps.dev:0 github.com/danpercic86/helpful-decorators,num_dependents_deps.dev:0 github.com/danpersa/ascii-diag,num_dependents_deps.dev:0 github.com/danpersa/edge-state-machine,num_dependents_deps.dev:0 +github.com/danpetitt/changelog-file-generator, +github.com/danpetitt/open-cover-badge-generator-action, github.com/danphe/sparrow-sms,num_dependents_deps.dev:0 github.com/danpilch/awls,num_dependents_deps.dev:0 github.com/danpilch/awslist,num_dependents_deps.dev:0 @@ -409195,6 +417458,7 @@ github.com/danrevah/property-exclusion,num_dependents_deps.dev:0 github.com/danrevah/segal-decorators,num_dependents_deps.dev:0 github.com/danrevah/typeserializer,num_dependents_deps.dev:0 github.com/danrfq/IPNC, +github.com/danrhjones/playingWithGithubActions, github.com/danrichman/marko-floating-label,num_dependents_deps.dev:0 github.com/danrien/lazy-j,num_dependents_deps.dev:0 github.com/danrigsby/cerebro-hackernews,num_dependents_deps.dev:0 @@ -409287,6 +417551,7 @@ github.com/danshannon/javastravav3api,num_dependents_deps.dev:0 github.com/danshapir/ember-bootstrap-components, github.com/danshapir/ember-export-config, github.com/danshapir/nestjs-zeebe,num_dependents_deps.dev:0 +github.com/danshaub/packer-github-actions, github.com/dansheps/netbox-plugin-extensions, github.com/dansheps/netbox-secretstore, github.com/danshort12/ds-py-version-demo, @@ -409295,6 +417560,7 @@ github.com/danshultz/stitch-asset-server,num_dependents_deps.dev:0 github.com/danshumaker/bitbucket-cmd,num_dependents_deps.dev:0 github.com/danshumaker/flowdock-cli,num_dependents_deps.dev:0 github.com/danshumaker/jira-cli, +github.com/dansiegel/publish-nuget, github.com/dansimau/huecfg,num_dependents_deps.dev:0 github.com/dansinclair25/duco-py, github.com/dansk-arch/project,num_dependents_deps.dev:0 @@ -409403,9 +417669,13 @@ github.com/dantay0803/eslint-config-dantay, github.com/dante-101/redux-persist-transform-compress-encrypt,num_dependents_deps.dev:0 github.com/dante-biase/exportal, github.com/dante-biase/python-tee, +github.com/dante-ev/latex-action, github.com/dante-signal31/cifra, github.com/dante-signal31/coko, github.com/dante-signal31/geolocate, +github.com/dante-signal31/markdown2man, +github.com/dante-signal31/rpmsign, +github.com/dante-signal31/rust-app-version, github.com/dante-signal31/test_common_python, github.com/dante-signal31/vdist, github.com/dante1977/dtjs,num_dependents_deps.dev:0 @@ -409466,6 +417736,7 @@ github.com/danthareja/mocha-js-reporter,num_dependents_deps.dev:0 github.com/danthareja/node-google-apps-script,num_dependents_deps.dev:0 github.com/danthareja/robin-egg-bluebird,num_dependents_deps.dev:0 github.com/danthe1st/compile-time-json-parser,num_dependents_deps.dev:0 +github.com/danthe1st/email-filechange-notif-action, github.com/danthedeckie/DictLiteStore, github.com/danthedeckie/django_jsonlistedit, github.com/danthedeckie/html5validate, @@ -409476,6 +417747,7 @@ github.com/danthegoodman/webstorm-xo-eslint-bridge,num_dependents_deps.dev:0 github.com/danthegoodman1/node-redis-streams, github.com/danthegoodman1/raincloud,num_dependents_deps.dev:0 github.com/danthegoodman1/rs,num_dependents_deps.dev:0 +github.com/danthelion/tc-feeder, github.com/danthelion/wasp, github.com/dantheman213/gameboy-shark-mx-email-keygen,num_dependents_deps.dev:0 github.com/dantheman213/hapi-modern-cors,num_dependents_deps.dev:0 @@ -409515,6 +417787,7 @@ github.com/dantulovsky/safemap,num_dependents_deps.dev:0 github.com/dantulovsky/turtle,num_dependents_deps.dev:0 github.com/dantulovsky/web-static,num_dependents_deps.dev:0 github.com/dantwining/whitespace-maven-plugin,num_dependents_deps.dev:0 +github.com/danubetech/github-action-log-build-context, github.com/danubiobwm/gosonarcloud,num_dependents_deps.dev:0 github.com/danucalovj/Webshrinker-API,num_dependents_deps.dev:0 github.com/danue1/korean-rs,num_dependents_deps.dev:0 @@ -409542,6 +417815,8 @@ github.com/danvick/ngx-translate-nativescript-loader,num_dependents_deps.dev:0 github.com/danvieira7/go-api-studying,num_dependents_deps.dev:0 github.com/danvim/vue-omniform,num_dependents_deps.dev:0 github.com/danvirsen/hyperterm-snappy,num_dependents_deps.dev:0 +github.com/danvixent/certgen-action, +github.com/danvixent/ngrok-tunneling-action, github.com/danvixent/query,num_dependents_deps.dev:0 github.com/danvk/RangeHTTPServer, github.com/danvk/crosswalk,num_dependents_deps.dev:0 @@ -409682,6 +417957,7 @@ github.com/danyocom/node-wii,num_dependents_deps.dev:0 github.com/danyollee/kargo,num_dependents_deps.dev:0 github.com/danyollee/kg_danyollee_2020,num_dependents_deps.dev:0 github.com/danyopp/hlf-propertyapp,num_dependents_deps.dev:0 +github.com/danyow/json-matrix-builder, github.com/danysantiago/kotlin-cursor,num_dependents_deps.dev:0 github.com/danysantiago/sendgrid-android,num_dependents_deps.dev:0 github.com/danyshaanan/cli-mandelbrot,num_dependents_deps.dev:0 @@ -409713,6 +417989,7 @@ github.com/danzjamz/danz-js-footer,num_dependents_deps.dev:0 github.com/dao-projects/card,num_dependents_deps.dev:0 github.com/dao-projects/ws,num_dependents_deps.dev:0 github.com/dao42/wechat-weapp-mobx, +github.com/daoAction/notify, github.com/daoan1412/react-native-webview,num_dependents_deps.dev:0 github.com/daoan1412/rtrie,num_dependents_deps.dev:0 github.com/daoan1412/sbd,num_dependents_deps.dev:0 @@ -409726,6 +418003,7 @@ github.com/daofirst/wechat,num_dependents_deps.dev:0 github.com/daogangtang/mustache-view,num_dependents_deps.dev:0 github.com/daogangtang/sapper,num_dependents_deps.dev:0 github.com/daogangtang/sapper_std,num_dependents_deps.dev:0 +github.com/daohoangson/comment-on-github, github.com/daohoangson/dvhcvn,num_dependents_deps.dev:0 github.com/daohoangson/js-tinhte-api,num_dependents_deps.dev:0 github.com/daohuy34/lucky-spin,num_dependents_deps.dev:0 @@ -409734,7 +418012,9 @@ github.com/daoket/parcel-plugin-mv,num_dependents_deps.dev:0 github.com/daoket/parcel-plugin-zip,num_dependents_deps.dev:0 github.com/daoket/template-cli,num_dependents_deps.dev:0 github.com/daoket/zepto2,num_dependents_deps.dev:0 +github.com/daolanfler/bark-action, github.com/daolf/grunt-gallery, +github.com/daolou/build-alfred-workflow2, github.com/daolou/unicd,num_dependents_deps.dev:0 github.com/daominah/filefollow,num_dependents_deps.dev:0 github.com/daominah/hello_go,num_dependents_deps.dev:0 @@ -409892,6 +418172,7 @@ github.com/daper/key-value-conf,num_dependents_deps.dev:0 github.com/dapetcu21/bluetooth-cross-pair,num_dependents_deps.dev:0 github.com/dapetcu21/generator-ayen,num_dependents_deps.dev:0 github.com/dapetcu21/roots-cache-manifest,num_dependents_deps.dev:0 +github.com/dapetcu21/setup-defold, github.com/dapetcu21/tree-sitter-fuior,num_dependents_deps.dev:0 github.com/dapetrov0/basedp-ui,num_dependents_deps.dev:0 github.com/daph/beats,num_dependents_deps.dev:0 @@ -410007,6 +418288,7 @@ github.com/dapr/mechanical-markdown, github.com/dapr/quickstarts,"criticality_score:0.395620,num_dependents_deps.dev:0" github.com/dapr/rust-sdk,num_dependents_deps.dev:0 github.com/dapr/samples,num_dependents_deps.dev:0 +github.com/dapr/setup-dapr, github.com/dapregi/pyroar, github.com/dapriett/nativescript-ampersand,num_dependents_deps.dev:0 github.com/dapriett/nativescript-google-maps-sdk,num_dependents_deps.dev:0 @@ -410146,6 +418428,7 @@ github.com/darchambault/pyalarmdotcomredux, github.com/darchanjo/http-commons,num_dependents_deps.dev:0 github.com/darchanjo/type-commons,num_dependents_deps.dev:0 github.com/darchr/gem5art, +github.com/darcien/cancel-expo-eas-builds-action, github.com/darcien/index-tasukaru,num_dependents_deps.dev:0 github.com/darcnite3000/poi-preset-prerender-spa,num_dependents_deps.dev:0 github.com/darcops/errors,num_dependents_deps.dev:0 @@ -410166,6 +418449,7 @@ github.com/darcyclarke/grunt-dss,num_dependents_deps.dev:0 github.com/darcyclarke/is-ship-stuck,num_dependents_deps.dev:0 github.com/darcyclarke/npm-package-playground,num_dependents_deps.dev:0 github.com/darcyclarke/octofiles,num_dependents_deps.dev:0 +github.com/darcyclarke/pet-a-day-action, github.com/darcyclarke/rawkit, github.com/darcyclarke/sleepover,num_dependents_deps.dev:0 github.com/darcydev/biz-days,num_dependents_deps.dev:0 @@ -410260,6 +418544,8 @@ github.com/darenju/reason-flip-page,num_dependents_deps.dev:0 github.com/darenju/replace-by-cli,num_dependents_deps.dev:0 github.com/darenliang/dscli,num_dependents_deps.dev:0 github.com/darenliang/mal-api, +github.com/darenm/Setup-VSTest, +github.com/darenm/unlist-nuget, github.com/daretodave/attask,num_dependents_deps.dev:0 github.com/daretodave/keep-on,num_dependents_deps.dev:0 github.com/daretodave/onfig,num_dependents_deps.dev:0 @@ -410318,6 +418604,9 @@ github.com/dario617/gokvsdns,num_dependents_deps.dev:0 github.com/darioajr/react-native-image-listitem,num_dependents_deps.dev:0 github.com/darioale/counter-api,num_dependents_deps.dev:0 github.com/dariobauer/graph-onedrive, +github.com/darioblanco/bump-semver, +github.com/darioblanco/jira-wizard, +github.com/darioblanco/release-wizard, github.com/dariobrozzi/readability,num_dependents_deps.dev:0 github.com/dariobrozzi/sass-gadgets,num_dependents_deps.dev:0 github.com/dariocravero/babel-browser-transform,num_dependents_deps.dev:0 @@ -410330,6 +418619,7 @@ github.com/dariocravero/readium-js-dist,num_dependents_deps.dev:0 github.com/dariocravero/redux-promise-test,num_dependents_deps.dev:0 github.com/dariocravero/redux-test,num_dependents_deps.dev:0 github.com/dariocravero/scroll-to-y,num_dependents_deps.dev:0 +github.com/dariocurr/pytest-summary, github.com/dariodaic/android_file_sorter,num_dependents_deps.dev:0 github.com/dariofacundodasilva/capacitorFirebase,num_dependents_deps.dev:0 github.com/darioflute/sospex, @@ -410391,6 +418681,7 @@ github.com/dariusrosendahl/homebridge-roomba690,num_dependents_deps.dev:0 github.com/dariusz-wozniak/List-of-Testing-Tools-and-Frameworks-for-.NET,criticality_score:0.324380 github.com/dariuszdusza/js-data-bigtable,num_dependents_deps.dev:0 github.com/dariuszdziuk/wordnet,num_dependents_deps.dev:2 +github.com/dariuszkaras/smart-action, github.com/dariuszp/app-cfg,num_dependents_deps.dev:0 github.com/dariuszp/colog,num_dependents_deps.dev:2 github.com/dariuszp/exdi,num_dependents_deps.dev:0 @@ -410418,6 +418709,7 @@ github.com/dark-matter-org/dark-matter-data,num_dependents_deps.dev:0 github.com/dark-matter-org/dark-matter-gxt,num_dependents_deps.dev:0 github.com/dark-matter-org/dark-matter-mvw,num_dependents_deps.dev:0 github.com/dark-matter-org/dark-matter-polymer,num_dependents_deps.dev:0 +github.com/dark-mechanicum/aws-codebuild, github.com/dark-panda/ffi-proj4,num_dependents_deps.dev:4 github.com/dark-prince/salesforce-rails,num_dependents_deps.dev:0 github.com/dark-s/bitcore-bip39,num_dependents_deps.dev:0 @@ -410431,6 +418723,7 @@ github.com/dark-triangle/webpack-plugin,num_dependents_deps.dev:0 github.com/dark022/sambol,num_dependents_deps.dev:0 github.com/dark0ghost/anonymouse_lib, github.com/dark0ghost/api_imgbb_aio_python, +github.com/dark0ghost/arduino_action, github.com/dark0ghost/jsonbox-python, github.com/dark10000/video-gateway-player,num_dependents_deps.dev:0 github.com/dark1ord007/crispy-guide,num_dependents_deps.dev:0 @@ -410606,6 +418899,7 @@ github.com/darkkowalski/mochizuki-bot,num_dependents_deps.dev:0 github.com/darkkowalski/ruar,num_dependents_deps.dev:0 github.com/darklang/dark,criticality_score:0.534020 github.com/darklang/tablecloth,"criticality_score:0.338940,num_dependents_deps.dev:0" +github.com/darkless456/docker-image-action, github.com/darklight721/generator-react-6,num_dependents_deps.dev:0 github.com/darklight721/philippines,num_dependents_deps.dev:0 github.com/darklight721/reactstrap,num_dependents_deps.dev:0 @@ -410764,8 +419058,10 @@ github.com/darkowlzz/msnger,num_dependents_deps.dev:0 github.com/darkowlzz/numberify, github.com/darkowlzz/octant,num_dependents_deps.dev:0 github.com/darkowlzz/octant-plugin-crd-example,num_dependents_deps.dev:0 +github.com/darkowlzz/olm-bundle, github.com/darkowlzz/operator-toolkit,num_dependents_deps.dev:1 github.com/darkowlzz/pokemonNames, +github.com/darkowlzz/related-image-update, github.com/darkowlzz/scheduler-extender,num_dependents_deps.dev:0 github.com/darkowlzz/simple-headers,num_dependents_deps.dev:0 github.com/darkowlzz/zest-cli,num_dependents_deps.dev:0 @@ -410781,6 +419077,7 @@ github.com/darkpixel/linedecide,num_dependents_deps.dev:0 github.com/darkpixel/toggl-interruptions,num_dependents_deps.dev:0 github.com/darkpos/now-clean,num_dependents_deps.dev:0 github.com/darkprinx/100-plus-Python-programming-exercises-extended,criticality_score:0.364850 +github.com/darkquasar/github-action-push-to-another-repository, github.com/darkraiden/aws-kms-encrypter,num_dependents_deps.dev:0 github.com/darkreactions/chemdescriptor, github.com/darkreactions/recommendation_engine, @@ -410808,6 +419105,7 @@ github.com/darksc/create-dear-app,num_dependents_deps.dev:0 github.com/darksc/s-msg,num_dependents_deps.dev:0 github.com/darksheepgod/ts-type-helper,num_dependents_deps.dev:0 github.com/darkshloser/code-secret, +github.com/darkshredder/web-to-app-action, github.com/darkside/capistrano-recipes,num_dependents_deps.dev:0 github.com/darkside1809/bookings,num_dependents_deps.dev:0 github.com/darkside1809/gosql,num_dependents_deps.dev:0 @@ -410844,6 +419142,7 @@ github.com/darksoul94/objectstorewithttl,num_dependents_deps.dev:0 github.com/darkstalker/with-macro,num_dependents_deps.dev:0 github.com/darkstoregh/typed-configuration,num_dependents_deps.dev:0 github.com/darksun2017/gogps,num_dependents_deps.dev:0 +github.com/darksworm/multi-semantic-release, github.com/darktable-org/darktable,criticality_score:0.743860 github.com/darktemplar/leetcode,num_dependents_deps.dev:0 github.com/darkterra/mongo-scheduler,num_dependents_deps.dev:0 @@ -410998,9 +419297,11 @@ github.com/darmagedon/pyrds-backup, github.com/darmawandoni6/adminstrasi-hotel,num_dependents_deps.dev:0 github.com/darmawandoni6/altera-test,num_dependents_deps.dev:0 github.com/darmbrust/HK2Utilities,num_dependents_deps.dev:0 +github.com/darmiel/changed-files, github.com/darmiel/discord-presence-bot,num_dependents_deps.dev:0 github.com/darmiel/jamulus-aws-deploy,num_dependents_deps.dev:0 github.com/darmiel/macd-api,num_dependents_deps.dev:0 +github.com/darmiel/yadwh-action, github.com/darmiel/yaxc,num_dependents_deps.dev:0 github.com/darmiel/yt-spam,num_dependents_deps.dev:0 github.com/darmiel/yt-spam-tui,num_dependents_deps.dev:0 @@ -411020,6 +419321,7 @@ github.com/darnfish/fishqueue,num_dependents_deps.dev:0 github.com/darnfish/mesa-js-client, github.com/darnfish/mesa-prom-client,num_dependents_deps.dev:0 github.com/darnfish/stegolo, +github.com/darnfish/watchtower-update, github.com/darnir/capped_multiset,num_dependents_deps.dev:0 github.com/darnir/pop3-rs,num_dependents_deps.dev:0 github.com/darnir/rust-fixedpoint,num_dependents_deps.dev:0 @@ -411334,12 +419636,23 @@ github.com/darshit-shah/numericjs,num_dependents_deps.dev:46 github.com/darshit-shah/range_lookup,num_dependents_deps.dev:0 github.com/darshit-shah/rolling_window,num_dependents_deps.dev:0 github.com/darshit-shah/template-management,num_dependents_deps.dev:0 +github.com/darshitsri/cmake-action, +github.com/darshitsri/composite-action, +github.com/darshitsri/composite-action-cmake, +github.com/darshitsri/docker-push-action, +github.com/darshitsri/github_actions_demo, +github.com/darshitsri/github_actions_test, +github.com/darshitsri/zip-release, github.com/darshitvvora/node-minio,num_dependents_deps.dev:0 github.com/darshkpatel/BuildScour, github.com/darshkpatel/MalwareProxyX, github.com/darshkpatel/remark-snackplayer,num_dependents_deps.dev:0 github.com/darshu8/ng-load,num_dependents_deps.dev:0 github.com/darsi-an/ts-npmrc,num_dependents_deps.dev:0 +github.com/darsvador/run-on-arch-action, +github.com/dart-actions/hello-world, +github.com/dart-actions/threaded-tweets, +github.com/dart-actions/tweet, github.com/dart-archive/angular.dart,Google github.com/dart-archive/angular.dart.tutorial,Google github.com/dart-archive/angular2_api_examples,Google @@ -411446,6 +419759,7 @@ github.com/dart-archive/web-components,Google github.com/dart-archive/www.dartino.org,Google github.com/dart-archive/www.dartlang.org,Google github.com/dart-bird/power-music, +github.com/dart-code-checker/dart-code-metrics-action, github.com/dart-lang/.github,Google github.com/dart-lang/api.dart.dev,Google github.com/dart-lang/appengine,Google @@ -411776,6 +420090,7 @@ github.com/daryafesenko/go_level1,num_dependents_deps.dev:0 github.com/daryafesenko/test_mts,num_dependents_deps.dev:0 github.com/daryalmurat/eksi-cli,num_dependents_deps.dev:0 github.com/daryawood/postcss-color-blender, +github.com/daryl-cecile/DeployBuildFTP, github.com/daryl-cecile/MLClean, github.com/daryl-cecile/express-multi-view,num_dependents_deps.dev:0 github.com/daryl-d/terraform-provider-cassandra,num_dependents_deps.dev:0 @@ -411811,6 +420126,9 @@ github.com/darylyu/static-api, github.com/daryushkari/decen_db,num_dependents_deps.dev:0 github.com/daryvsleeuwen/labsfilter,num_dependents_deps.dev:0 github.com/daryvsleeuwen/zoomer,num_dependents_deps.dev:0 +github.com/darzanebor/github-aws-cli, +github.com/darzanebor/github-terraform-wrapper, +github.com/darzanebor/github-terragrunt-wrapper, github.com/das-intensity/mutable-primitives, github.com/das-intensity/ultrajson, github.com/das-jishu/simplifying,num_dependents_deps.dev:0 @@ -411836,6 +420154,7 @@ github.com/dasch-swiss/dsp-ui-lib, github.com/dasch-swiss/knora-api-js-lib,num_dependents_deps.dev:0 github.com/dasch-swiss/knora-py, github.com/dasch-swiss/knora-ui, +github.com/daschaa/package-version, github.com/daschat-io/daschat_base, github.com/daschdev/languages-rs,num_dependents_deps.dev:0 github.com/daschl/grok,num_dependents_deps.dev:1 @@ -411898,6 +420217,7 @@ github.com/dasha-kinsely/leaveswears,num_dependents_deps.dev:0 github.com/dasha-klim/learning-git,num_dependents_deps.dev:0 github.com/dashaHsh/hd-toast-lib,num_dependents_deps.dev:0 github.com/dashanhust/study_zk,num_dependents_deps.dev:0 +github.com/dashanji/kubernetes-log-export-action, github.com/dashanji/webhookdemo,num_dependents_deps.dev:0 github.com/dashank363/project,num_dependents_deps.dev:0 github.com/dashapetrova/try_dop,num_dependents_deps.dev:0 @@ -412171,6 +420491,8 @@ github.com/daslaf/oc-ui,num_dependents_deps.dev:0 github.com/daslaf/rx-effects,num_dependents_deps.dev:0 github.com/dasld/py2048base, github.com/daslicht/pm2-dev-refresh,num_dependents_deps.dev:0 +github.com/dasmerlon/project-issue-state-sync, +github.com/dasmeta/reusable-actions-workflows, github.com/dasmikko/svelte-array-helper,num_dependents_deps.dev:0 github.com/dasmith/gitpass, github.com/dasmith2/djavedt, @@ -412184,6 +420506,7 @@ github.com/daspec/daspec-js-junit-xml-formatter,num_dependents_deps.dev:0 github.com/daspec/daspec-js-npm,num_dependents_deps.dev:0 github.com/daspec/daspec-js-quantity-matchers,num_dependents_deps.dev:0 github.com/daspete/mana,num_dependents_deps.dev:0 +github.com/daspn/private-actions-checkout, github.com/daspoet/gowinkey,num_dependents_deps.dev:0 github.com/daspoet/mongodialect,num_dependents_deps.dev:0 github.com/dasprid/localized-address-format,num_dependents_deps.dev:0 @@ -412197,13 +420520,16 @@ github.com/dasrick/npm-font-open-sans-condensed,num_dependents_deps.dev:0 github.com/dasrick/npm-font-source-sans-pro,num_dependents_deps.dev:0 github.com/dasrick/tox-bootstrap-electron,num_dependents_deps.dev:0 github.com/dasrick/tox-susy-kss-playground,num_dependents_deps.dev:0 +github.com/dassana-io/dassana-iac-action, github.com/dassana-io/dassana-python, github.com/dassana-io/rule-engine,num_dependents_deps.dev:0 github.com/dassaswat/perspectiveAnalyzer, github.com/dasshit/Python-Mango-Office-API, github.com/dasshit/async-icq, +github.com/dasshit/myteam-notify, github.com/dassiorleando/paykickstart-ipn-validator,num_dependents_deps.dev:0 github.com/dassunny/NativeAds,num_dependents_deps.dev:0 +github.com/dassusovan/automation-testing-action, github.com/dassym/PyDapi2, github.com/dassym/dsmcp, github.com/dassym/dsmscp, @@ -412215,7 +420541,9 @@ github.com/dastergon/awesome-sre,criticality_score:0.474080 github.com/dastiw1/gettour,num_dependents_deps.dev:0 github.com/dastoori/orientx,num_dependents_deps.dev:0 github.com/dastoori/uniqolor,num_dependents_deps.dev:0 +github.com/dastrobu/setup-swift-docc, github.com/dasuchin/grunt-ssh-deploy, +github.com/dasuken/actions-create-milestone, github.com/daswag/daswag-cli,num_dependents_deps.dev:0 github.com/daswahr/project-lvl1-s17,num_dependents_deps.dev:0 github.com/daswahr/project-lvl1-s69, @@ -412225,6 +420553,7 @@ github.com/dasx10/gulp-px-to-rem,num_dependents_deps.dev:0 github.com/dasx10/less-mixin,num_dependents_deps.dev:0 github.com/dasx10/lezy-css,num_dependents_deps.dev:0 github.com/dasx10/string-library-pr,num_dependents_deps.dev:0 +github.com/dat-archielite/action-build, github.com/dat-boris/py-playtest, github.com/dat-land/dat-encoding,num_dependents_deps.dev:4 github.com/dat/pyner, @@ -412310,6 +420639,7 @@ github.com/data-forge/data-forge-ts,"criticality_score:0.359850,num_dependents_d github.com/data-forge/export,num_dependents_deps.dev:6 github.com/data-giant/mine,num_dependents_deps.dev:0 github.com/data-henrik/twitterbot,num_dependents_deps.dev:0 +github.com/data-i-consulting/bq2slack-github-action, github.com/data-integrations/add-field,Google github.com/data-integrations/amazon-s3-plugins,Google github.com/data-integrations/amazon-s3client-action,Google @@ -412466,6 +420796,8 @@ github.com/data-integrations/xml-directives,Google github.com/data-integrations/xml-processor,Google github.com/data-integrations/zendesk,Google github.com/data-integrations/zuora,Google +github.com/data-intuitive/netlify-deploy-site, +github.com/data-intuitive/reclaim-the-bytes, github.com/data-journalism/echarts, github.com/data-learning-guild/algorithm-data-structure-practice,num_dependents_deps.dev:0 github.com/data-master-platform/go-gitstorage,num_dependents_deps.dev:0 @@ -412579,6 +420911,7 @@ github.com/databricks/click,num_dependents_deps.dev:0 github.com/databricks/databricks-cli, github.com/databricks/dbt-databricks, github.com/databricks/koalas,criticality_score:0.596520 +github.com/databricks/run-notebook, github.com/databricks/scala-style-guide,criticality_score:0.369090 github.com/databricks/sjsonnet,Google github.com/databricks/spark-csv,criticality_score:0.358850 @@ -412588,6 +420921,7 @@ github.com/databricks/spark-sklearn, github.com/databricks/spark-sql-perf,criticality_score:0.397340 github.com/databricks/spark-xml,criticality_score:0.535310 github.com/databricks/tensorframes, +github.com/databricks/upload-dbfs-temp, github.com/databrickslabs/Jupyterlab-Integration, github.com/databrickslabs/automl-toolkit,num_dependents_deps.dev:0 github.com/databrickslabs/databricks-terraform,num_dependents_deps.dev:0 @@ -412692,6 +421026,7 @@ github.com/datacoon/apibackuper, github.com/datacoon/metawarc, github.com/datacoon/russiannames, github.com/datacoon/undatum, +github.com/datacoves/ci-basic-action, github.com/datacoves/dbt-coves, github.com/datacraft-dsc/starfish-py, github.com/datacrafts-io/eslint-config-airbnb-base-typescript-prettier,num_dependents_deps.dev:0 @@ -412805,6 +421140,7 @@ github.com/datadrivencz/config-view,num_dependents_deps.dev:0 github.com/datadriventests/ddt,criticality_score:0.457900 github.com/datadrivers/go-nexus-client,num_dependents_deps.dev:0 github.com/datadrivers/terraform-provider-nexus,num_dependents_deps.dev:0 +github.com/datadrivers/terragrunt-action, github.com/datadudes/athena, github.com/datadudes/cornet, github.com/datadudes/json2hive, @@ -413044,6 +421380,7 @@ github.com/datalayer/jupyterpool, github.com/datalayer/sharebook, github.com/datalayer/tree, github.com/datalbry/connector-sdk,num_dependents_deps.dev:20 +github.com/datalbry/helm-push, github.com/datalbry/jetbrains-space-client,num_dependents_deps.dev:0 github.com/datalbry/precise,num_dependents_deps.dev:15 github.com/datalbry/testcontainer-alxndria,num_dependents_deps.dev:0 @@ -413075,6 +421412,7 @@ github.com/dataloop/slactorbot, github.com/dataloop/vent, github.com/datalorax/equatiomatic,criticality_score:0.405940 github.com/datalorax/populace,num_dependents_deps.dev:0 +github.com/dataloudercom/github-pr-contains-action, github.com/dataloudlabs/dloud-ads, github.com/datalove-app/yggy,num_dependents_deps.dev:0 github.com/datalust/pino-seq, @@ -413146,6 +421484,9 @@ github.com/datamllab/xdeep, github.com/datamode/datamode, github.com/datamol-org/datamol, github.com/datamole-ai/active-semi-supervised-clustering, +github.com/datamole-ai/google-chat-job-failed, +github.com/datamole-ai/simple-gitops, +github.com/datamonsters/replace-action, github.com/datamosh/bootstrap.table-editor,num_dependents_deps.dev:0 github.com/datamountaineer/kafka-connect-common,num_dependents_deps.dev:72 github.com/datamountaineer/kafka-connect-tools,num_dependents_deps.dev:0 @@ -413161,6 +421502,7 @@ github.com/datanews/tables,num_dependents_deps.dev:0 github.com/datanews/tik-tok,num_dependents_deps.dev:0 github.com/datanitro/voyager-python, github.com/datankai/datank-grid,num_dependents_deps.dev:0 +github.com/datanomi/SFTP-Push, github.com/datanooblol/ggwp, github.com/datanucleus/datanucleus-accessplatform,num_dependents_deps.dev:47 github.com/datanucleus/datanucleus-api-jdo,Google @@ -413172,6 +421514,7 @@ github.com/dataoneio/ImageGenerator, github.com/dataoperandz/cassper,num_dependents_deps.dev:0 github.com/datapain/cluster-lru-cache,num_dependents_deps.dev:0 github.com/datapain/matte,num_dependents_deps.dev:0 +github.com/datapane/build-action, github.com/datapartnership/covid19-migration-south-asia, github.com/datapartyjs/bouncer-db,num_dependents_deps.dev:0 github.com/datapartyjs/bouncer-model,num_dependents_deps.dev:4 @@ -413226,6 +421569,7 @@ github.com/datarevenue-berlin/py-MUVR, github.com/datarevenue-berlin/sparsity, github.com/datarhei/restreamer,criticality_score:0.409080 github.com/datarmada/minotor, +github.com/datarobot-oss/custom-models-action, github.com/datarobot/datarobot-ai-py, github.com/datarobot/docums-redirects, github.com/datarobot/dragonpandaclient-py, @@ -413238,6 +421582,7 @@ github.com/datarockets/react-native-template,num_dependents_deps.dev:0 github.com/datarocktech/datara, github.com/dataroot/dataroot-python, github.com/datarootsio/databooks, +github.com/datarootsio/github-stats-card, github.com/datarootsio/terraform-module-azure-datalake,num_dependents_deps.dev:0 github.com/datary/hologger,num_dependents_deps.dev:0 github.com/datary/noderr,num_dependents_deps.dev:0 @@ -413404,9 +421749,12 @@ github.com/datastructures-js/queue, github.com/datastructures-js/set,num_dependents_deps.dev:6 github.com/datastructures-js/stack, github.com/datastructures-js/trie,num_dependents_deps.dev:6 +github.com/dataswift/gha-trivy, github.com/datatart/freesixty, github.com/datatellittech/dtit_packages, github.com/datatheorem/TrustKit,criticality_score:0.380070 +github.com/datatheorem/datatheorem-api-secure-action, +github.com/datatheorem/datatheorem-mobile-secure-action, github.com/datatheorem/strongarm, github.com/datathings/greycat,num_dependents_deps.dev:22 github.com/datathings/java2typescript,num_dependents_deps.dev:12 @@ -413496,6 +421844,7 @@ github.com/datawire/mdk,num_dependents_deps.dev:0 github.com/datawire/quark,num_dependents_deps.dev:0 github.com/datawire/scout.py, github.com/datawire/telepresence,num_dependents_deps.dev:0 +github.com/datawire/telepresence-actions, github.com/datawookie/trundlerpy, github.com/dataworkbench/common,num_dependents_deps.dev:0 github.com/dataworkbench/filemanager,num_dependents_deps.dev:0 @@ -413648,6 +421997,8 @@ github.com/datnq/react-tw,num_dependents_deps.dev:0 github.com/datnq/react-use-model,num_dependents_deps.dev:0 github.com/datnq/unidata, github.com/datnq/usedialog, +github.com/datntdev0/action-deploy-to-portainer, +github.com/datntdev0/actions-deploy-to-portainer, github.com/datntdev0/reactjs-codebase,num_dependents_deps.dev:0 github.com/dato-code/Dato-Predictive-Service-Client-JS,num_dependents_deps.dev:0 github.com/dato-code/Dato-Predictive-Service-Client-Java,num_dependents_deps.dev:0 @@ -413740,9 +422091,11 @@ github.com/datproject/website,num_dependents_deps.dev:0 github.com/datprotocol/dat-dns,num_dependents_deps.dev:292 github.com/datprotocol/hypercloud-admin-cli,num_dependents_deps.dev:0 github.com/datprotocol/hypercloud-ui-vanilla,num_dependents_deps.dev:0 +github.com/datreeio/action-datree, github.com/datreeio/datree,num_dependents_deps.dev:0 github.com/datreeio/koa-requestid,num_dependents_deps.dev:0 github.com/datreeio/node-datreeio,num_dependents_deps.dev:0 +github.com/datreeio/validate-license-action, github.com/datreeio/version-compare,num_dependents_deps.dev:0 github.com/datrics-ai/datrics-cli, github.com/datrics-ai/datrics-json, @@ -413809,6 +422162,7 @@ github.com/datumbox/libsvm,num_dependents_deps.dev:8 github.com/datumbrain/py-redact, github.com/datumcenter/gallery,num_dependents_deps.dev:0 github.com/datumcorp/pm-plus,num_dependents_deps.dev:0 +github.com/datumforge/github-actions-slack-notifier, github.com/datumgeek/plotter-shell-model,num_dependents_deps.dev:0 github.com/daturkel/dinner.rb,num_dependents_deps.dev:0 github.com/datwheat/daruma,num_dependents_deps.dev:0 @@ -413851,6 +422205,7 @@ github.com/daun/laravel-mix-hash-length,num_dependents_deps.dev:0 github.com/daun/laravel-mix-transpile-node-modules,num_dependents_deps.dev:2 github.com/daun/mark-external-links,num_dependents_deps.dev:0 github.com/daun/mq-observer,num_dependents_deps.dev:0 +github.com/daun/playwright-report-summary, github.com/daun/resize-start-stop,num_dependents_deps.dev:0 github.com/daun/stimulants,num_dependents_deps.dev:0 github.com/daun/stimuli,num_dependents_deps.dev:0 @@ -413884,6 +422239,7 @@ github.com/dav697/v-for-validation,num_dependents_deps.dev:0 github.com/dav697/validation,num_dependents_deps.dev:0 github.com/davFaithid/pokemon-tv, github.com/davaddi/go_study,num_dependents_deps.dev:0 +github.com/davahome/ghcr-cleanup, github.com/davalapar/what-the-pack,num_dependents_deps.dev:70 github.com/davanstrien/flyswot, github.com/davarisg/nginx-parser, @@ -413940,12 +422296,14 @@ github.com/dave-irvine/packbits,num_dependents_deps.dev:0 github.com/dave-kennedy/clean-html,num_dependents_deps.dev:26 github.com/dave-lanigan/kyber-api-python, github.com/dave-malone/aws-iot-loadsimulator,num_dependents_deps.dev:0 +github.com/dave-mcconnell/helm-gh-pages-microservices, github.com/dave-msk/afb, github.com/dave-msk/merak, github.com/dave-msk/tinypipe, github.com/dave-newson/terminal-kit-plugins,num_dependents_deps.dev:0 github.com/dave-nicholas/peoplehr-api,num_dependents_deps.dev:0 github.com/dave-nicholas/react-form-validation-context,num_dependents_deps.dev:0 +github.com/dave-ohouse/action-latest-release-info, github.com/dave-pi/scikit-sdr, github.com/dave-qiao/water-mark-js,num_dependents_deps.dev:0 github.com/dave-shawley/cavy, @@ -414175,6 +422533,7 @@ github.com/davegordon34/dg-devcamp-js-footer,num_dependents_deps.dev:0 github.com/davegravy/python-gc100, github.com/davegri/libre-crawler, github.com/davegrix/Starling-Helper,num_dependents_deps.dev:0 +github.com/davegudge/minitest-report-action, github.com/davegurnell/anchorman,num_dependents_deps.dev:0 github.com/davegurnell/bridges,num_dependents_deps.dev:0 github.com/davegurnell/checklist,num_dependents_deps.dev:0 @@ -414281,6 +422640,8 @@ github.com/davellanedam/platzom,num_dependents_deps.dev:0 github.com/davellanedam/vue-skeleton-mvp, github.com/davelondon/testify,num_dependents_deps.dev:0 github.com/davelopez/galaxy-language-server, +github.com/davelosert/daves-youtube-demo-action, +github.com/davelosert/vitest-coverage-report-action, github.com/davelyon/dummy_image,num_dependents_deps.dev:0 github.com/davelyon/statefulton,num_dependents_deps.dev:0 github.com/davem2/dp2ppgen, @@ -414611,8 +422972,12 @@ github.com/davi-code7/sns-sqs,num_dependents_deps.dev:0 github.com/davi-mbatista/flexmix,num_dependents_deps.dev:0 github.com/davi-mbatista/sass-material-design-colors,num_dependents_deps.dev:0 github.com/davi-mbatista/sass-z-indexer,num_dependents_deps.dev:0 +github.com/davi020/kubectl-advanced, +github.com/davi020/kubernetes-action, github.com/davi0723/eventecRedis,num_dependents_deps.dev:0 +github.com/daviFrag/helm, github.com/davias1211990/web-miner,num_dependents_deps.dev:0 +github.com/daviaugustos/Nrwl-Nx-Android-Build-Action, github.com/davibaltar/snmp-fiberhome,num_dependents_deps.dev:0 github.com/davibaltar/swagger-autogen,num_dependents_deps.dev:0 github.com/davibe/caccuino,num_dependents_deps.dev:0 @@ -414630,6 +422995,7 @@ github.com/davicrystal/mongoose-error-handler,num_dependents_deps.dev:0 github.com/davicustodio/Leaflet.StyledLayerControl,num_dependents_deps.dev:0 github.com/david-0/citrus-common,num_dependents_deps.dev:0 github.com/david-a-parry/parse_vcf.py, +github.com/david-a-wheeler/flawfinder, github.com/david-abel/simple_rl, github.com/david-alexander/resource-search-lens-extension,num_dependents_deps.dev:0 github.com/david-ape/palindrome,num_dependents_deps.dev:0 @@ -414830,6 +423196,7 @@ github.com/davidB/git2_credentials,num_dependents_deps.dev:1 github.com/davidB/handlebars_misc_helpers,num_dependents_deps.dev:0 github.com/davidB/kubectl-view-allocations,num_dependents_deps.dev:0 github.com/davidB/metrics-influxdb,"criticality_score:0.342650,num_dependents_deps.dev:11" +github.com/davidB/rust-cargo-make, github.com/davidB/scala-maven-plugin,criticality_score:0.511290 github.com/davidB/yuicompressor-maven-plugin,num_dependents_deps.dev:0 github.com/davidDuymelinck/mengine,num_dependents_deps.dev:0 @@ -414856,6 +423223,7 @@ github.com/davidNHK/sql-format, github.com/davidNHK/tslint-config-david-recommended,num_dependents_deps.dev:2 github.com/davidRamalho/lotide,num_dependents_deps.dev:0 github.com/davidRoussov/angular-floating-labels,num_dependents_deps.dev:0 +github.com/davidSchuppa/base64Secret-toFile-action, github.com/davidSky/js-bits,num_dependents_deps.dev:0 github.com/davidSky/jsonbus,num_dependents_deps.dev:0 github.com/davidSky/node-net-socket-reconnect,num_dependents_deps.dev:2 @@ -415243,6 +423611,7 @@ github.com/davidcpage/ont-seqdist-cuda112, github.com/davidcpage/ont-seqdist-cuda113, github.com/davidcpage/ont-seqdist-cuda114, github.com/davidcpage/seqdist, +github.com/davidcraig/action-wow-lint, github.com/davidcraig/react-components,num_dependents_deps.dev:0 github.com/davidcrawford/chronic, github.com/davidcroda/aws_secrets, @@ -415263,6 +423632,7 @@ github.com/davidcsterratt/KappaNEURON, github.com/davidcsterratt/SpatialKappa, github.com/davidctj/react-plotlyjs-ts,num_dependents_deps.dev:0 github.com/davidcui-amzn/kibana-reports, +github.com/davidcui1225/test-github-action, github.com/davidcui2/cuizhi-gs-design-system,num_dependents_deps.dev:0 github.com/davidcunha/instafeed.es6,num_dependents_deps.dev:0 github.com/davidcunha/jschool-javascripter,num_dependents_deps.dev:0 @@ -415656,6 +424026,7 @@ github.com/davidgilbertson/react-recollect,num_dependents_deps.dev:0 github.com/davidgithub1980/page-preloader,num_dependents_deps.dev:0 github.com/davidgiven/wordgrinder,criticality_score:0.368580 github.com/davidglevy/spark-itcase,num_dependents_deps.dev:4 +github.com/davidglezz/action-conventional-commits-check, github.com/davidglivar/basic-node,num_dependents_deps.dev:0 github.com/davidglivar/brutal,num_dependents_deps.dev:0 github.com/davidglivar/dark,num_dependents_deps.dev:0 @@ -415687,6 +424058,7 @@ github.com/davidgovea/react-use-task,num_dependents_deps.dev:0 github.com/davidgovea/redux-saga-thunk-actions,num_dependents_deps.dev:0 github.com/davidgraeff/braintree-payment-graphql-rs,num_dependents_deps.dev:0 github.com/davidgraeff/firestore-db-and-auth-rs,num_dependents_deps.dev:0 +github.com/davidgraeff/rust-musl-action, github.com/davidgruebl/gcni,num_dependents_deps.dev:0 github.com/davidgs/telegraf,num_dependents_deps.dev:0 github.com/davidgtonge/backbone_query,num_dependents_deps.dev:0 @@ -415781,6 +424153,8 @@ github.com/davidhellmann/tailwindcss-modularscale,num_dependents_deps.dev:0 github.com/davidhemphill/hemp-utils,num_dependents_deps.dev:0 github.com/davidhemphill/postcss-copy-class,num_dependents_deps.dev:0 github.com/davidhemphill/postcss-verthorz,num_dependents_deps.dev:0 +github.com/davidhessler/execute-cfn-guard-registry, +github.com/davidhessler/publish-cfn-guard-registry, github.com/davidhewitt/mio-anonymous-pipes,num_dependents_deps.dev:2 github.com/davidhewitt/pythonize,num_dependents_deps.dev:0 github.com/davidhewitt/spsc-buffer,num_dependents_deps.dev:2 @@ -415984,6 +424358,7 @@ github.com/davidkhala/fabric-common-chaincode-golang,num_dependents_deps.dev:0 github.com/davidkhala/fabric-common-chaincode-node,num_dependents_deps.dev:0 github.com/davidkhala/goutils,num_dependents_deps.dev:0 github.com/davidkhala/node-utils,num_dependents_deps.dev:34 +github.com/davidkhala/setup-dockerode, github.com/davidkhierl/react-lottie-loader,num_dependents_deps.dev:0 github.com/davidkim97/golang_study,num_dependents_deps.dev:0 github.com/davidkingzyb/WebToolFunction,num_dependents_deps.dev:0 @@ -416067,6 +424442,7 @@ github.com/davidli2010/binary-heap-plus-rs,num_dependents_deps.dev:0 github.com/davidli2010/stack-buf,num_dependents_deps.dev:0 github.com/davidli2010/visible,num_dependents_deps.dev:0 github.com/davidlick/supermarket-api,num_dependents_deps.dev:0 +github.com/davidlienhard/php-simple-lint, github.com/davidlighty/mapper,num_dependents_deps.dev:0 github.com/davidlighty/module-template,num_dependents_deps.dev:0 github.com/davidlinc1/feedback.js,num_dependents_deps.dev:0 @@ -416720,6 +425096,7 @@ github.com/davidsilva2841/sec_project, github.com/davidsinclair/config-weaver,num_dependents_deps.dev:0 github.com/davidskaarup/react-native-mobilepay-appswitch,num_dependents_deps.dev:0 github.com/davidsluo/lenny, +github.com/davidslusser/actions_python_pypi, github.com/davidslusser/django-handyhelpers, github.com/davidslusser/django-s3filefield, github.com/davidslusser/django-signalcontrol, @@ -416781,6 +425158,7 @@ github.com/davidtai/midstream,num_dependents_deps.dev:0 github.com/davidtai/react-referential,num_dependents_deps.dev:0 github.com/davidtai/react-referential-forms,num_dependents_deps.dev:0 github.com/davidtai/seldom,num_dependents_deps.dev:0 +github.com/davidtaing/thank-contribution, github.com/davidtavarez/coincap,num_dependents_deps.dev:0 github.com/davidtaylorhq/qunit-puppeteer,num_dependents_deps.dev:0 github.com/davidtaylorjr/html5-boilerplate,num_dependents_deps.dev:0 @@ -416924,6 +425302,8 @@ github.com/davidwdw/physiognomy, github.com/davidwebca/tailwindcss-group-variants, github.com/davidwells/install-github-dep,num_dependents_deps.dev:0 github.com/davidwen/gotrue,num_dependents_deps.dev:0 +github.com/davidwengier/PostAdaptiveCard, +github.com/davidwessman/blinka_action, github.com/davidwickerhf/instacli, github.com/davidwickerhf/instaclient, github.com/davidwilemski/umdh, @@ -416967,6 +425347,7 @@ github.com/davidwu226/node-statemachine,num_dependents_deps.dev:0 github.com/davidwu226/node-xhr2-unsafe,num_dependents_deps.dev:0 github.com/davidwu226/node-zmqserver,num_dependents_deps.dev:0 github.com/davidwu226/relay-compiler-webpack-plugin,num_dependents_deps.dev:0 +github.com/davidxbors/github-action-markdown-cli, github.com/davidxcheng/ruin,num_dependents_deps.dev:0 github.com/davidxi/flux-factory,num_dependents_deps.dev:0 github.com/davidxi/katie,num_dependents_deps.dev:0 @@ -417250,6 +425631,7 @@ github.com/davvo/rabbit-rpc,num_dependents_deps.dev:0 github.com/davvo/three-times,num_dependents_deps.dev:0 github.com/davvo/worker-pool,num_dependents_deps.dev:0 github.com/davvyy00/uppy,num_dependents_deps.dev:0 +github.com/davwheat/action-build-flarum-ext-js-yarn, github.com/davwheat/micro-color,num_dependents_deps.dev:0 github.com/davwheat/react-gatsby-firebase-hooks,num_dependents_deps.dev:0 github.com/davwheat/react-images,num_dependents_deps.dev:0 @@ -417346,6 +425728,18 @@ github.com/dawid84/perfect-scrollbar-with-page-speed, github.com/dawidaksamski/node-red-contrib-socketio-agent,num_dependents_deps.dev:0 github.com/dawidaksamski/node-red-contrib-socketio-client-with-emitter,num_dependents_deps.dev:0 github.com/dawidczarnik/react-x-horizon,num_dependents_deps.dev:0 +github.com/dawidd6/action-ansible-playbook, +github.com/dawidd6/action-checkout-pr, +github.com/dawidd6/action-debian-package, +github.com/dawidd6/action-delete-branch, +github.com/dawidd6/action-docker-publish-changed, +github.com/dawidd6/action-download-artifact, +github.com/dawidd6/action-get-tag, +github.com/dawidd6/action-git-try-push, +github.com/dawidd6/action-git-user-config, +github.com/dawidd6/action-homebrew-bump-formula, +github.com/dawidd6/action-publish-gem, +github.com/dawidd6/action-send-mail, github.com/dawidd6/deber,num_dependents_deps.dev:0 github.com/dawidd6/lazygit,num_dependents_deps.dev:0 github.com/dawiddiwad/newman-async-runner, @@ -417376,6 +425770,7 @@ github.com/dawiidio/react-simple-proxy-store,num_dependents_deps.dev:0 github.com/dawiidio/rsync-watch, github.com/dawiidio/simple-proxy-store,num_dependents_deps.dev:0 github.com/dawikur/dragon,num_dependents_deps.dev:0 +github.com/dawitnida/packer-validate-action, github.com/dawiwt/react-component-echarts,num_dependents_deps.dev:0 github.com/dawizz/safe-fs-walk,num_dependents_deps.dev:0 github.com/dawn-top/write-docker-actions,num_dependents_deps.dev:0 @@ -417720,11 +426115,13 @@ github.com/daymosik/react-status-alert,num_dependents_deps.dev:0 github.com/dayne/node-red-contrib-rtl_433, github.com/daynekilheffer/basic-ioc.js,num_dependents_deps.dev:0 github.com/daynekilheffer/steam-web-api,num_dependents_deps.dev:0 +github.com/daynin/nodejs-license-checker, github.com/daynin/tiny-lisp, github.com/daynix/rebuild,num_dependents_deps.dev:0 github.com/dayoadeyemi/TRY,num_dependents_deps.dev:0 github.com/dayoadeyemi/git-hub-cli,num_dependents_deps.dev:0 github.com/dayoadeyemi/streams-as-promised,num_dependents_deps.dev:0 +github.com/dayone-jp/approvals, github.com/dayoneteams/nodetoolset,num_dependents_deps.dev:0 github.com/dayongbz/gatsby-starter-yong,num_dependents_deps.dev:0 github.com/dayonizeus/parsers, @@ -417755,6 +426152,8 @@ github.com/daysv/class-mixin,num_dependents_deps.dev:0 github.com/daysv/gulp-archive-generator,num_dependents_deps.dev:0 github.com/daysv/node-queuer,num_dependents_deps.dev:0 github.com/daysv/res-interceptor,num_dependents_deps.dev:0 +github.com/daytime-em/changelog-on-pr, +github.com/daytime-em/changelog-on-release-pr, github.com/daytona/backbone.asyncautocomplete,num_dependents_deps.dev:0 github.com/daytona/backbone.intactmodel,num_dependents_deps.dev:0 github.com/daytona/lds, @@ -418000,6 +426399,7 @@ github.com/dbankier/timodules,num_dependents_deps.dev:0 github.com/dbankier/tisdk,num_dependents_deps.dev:0 github.com/dbankier/tiversion,num_dependents_deps.dev:0 github.com/dbanksdesign/businesscard,num_dependents_deps.dev:0 +github.com/dbanty/graphql-check-action, github.com/dbaops-com/orzdba.go,num_dependents_deps.dev:0 github.com/dbaq/angular-emoji-filter-hd,num_dependents_deps.dev:0 github.com/dbaq/cordova-plugin-contacts-phone-numbers,num_dependents_deps.dev:0 @@ -418013,6 +426413,7 @@ github.com/dbarowy/paraformula,num_dependents_deps.dev:0 github.com/dbarowy/smtliblib,num_dependents_deps.dev:0 github.com/dbarrinha/vue-galery-dropdown, github.com/dbarrinha/vue-list-dropdown,num_dependents_deps.dev:0 +github.com/dbarrosop/nix-remote-builder-aws, github.com/dbarrosop/pySIR, github.com/dbarrosop/sir, github.com/dbarsam/python-vsgen, @@ -418236,6 +426637,7 @@ github.com/dbellavista/node-chartjs, github.com/dbellettini/is-the-answer,num_dependents_deps.dev:0 github.com/dbelling/bridge-keeper-js,num_dependents_deps.dev:0 github.com/dbellingroth/node-red-account-balance,num_dependents_deps.dev:0 +github.com/dbelyaev/action-checkstyle, github.com/dbemfica/MikaHgWeather,num_dependents_deps.dev:0 github.com/dbenavidesv/silk-paper,num_dependents_deps.dev:0 github.com/dbencic/deepclone,num_dependents_deps.dev:0 @@ -418387,8 +426789,11 @@ github.com/dblk/autopilot,num_dependents_deps.dev:0 github.com/dblk/yamp,num_dependents_deps.dev:0 github.com/dblmok156/rtsp-stream,num_dependents_deps.dev:0 github.com/dblmok156/streamer,num_dependents_deps.dev:0 +github.com/dblock/create-a-github-issue, +github.com/dblock/iex-ruby-client, github.com/dblock/log4jna,num_dependents_deps.dev:0 github.com/dblock/oshi,num_dependents_deps.dev:710 +github.com/dblock/strava-ruby-client, github.com/dblock/waffle,num_dependents_deps.dev:96 github.com/dblodorn/fetch-json-webpack-plugin,num_dependents_deps.dev:0 github.com/dblodorn/neverending-scroll,num_dependents_deps.dev:0 @@ -418578,6 +426983,7 @@ github.com/dbraley/gae-go-demo,num_dependents_deps.dev:0 github.com/dbraley/horizontal,num_dependents_deps.dev:0 github.com/dbrambilla13/dash-auth0-auth, github.com/dbramwell/react-animate-on-scroll,num_dependents_deps.dev:0 +github.com/dbramwell/testproject-job-runner, github.com/dbrand666/discovery-services-client,num_dependents_deps.dev:0 github.com/dbrandt/spambayes-lite, github.com/dbranquinho/amlr, @@ -418669,6 +427075,7 @@ github.com/dbridges/sermon, github.com/dbridges/tinygo-cpx,num_dependents_deps.dev:0 github.com/dbriemann/luis,num_dependents_deps.dev:0 github.com/dbritobcn/dom-styles,num_dependents_deps.dev:0 +github.com/dbritto-dev/openvpn3-action, github.com/dbrizov/NaughtyAttributes,criticality_score:0.461850 github.com/dbrnz/biosignalml-corelib, github.com/dbrnz/flatmap-mvt-viewer,num_dependents_deps.dev:0 @@ -418723,6 +427130,7 @@ github.com/dbrowser/parse-dweb-url,num_dependents_deps.dev:0 github.com/dbrudner/jest-time-logger,num_dependents_deps.dev:0 github.com/dbrudner/use-mutation-observer,num_dependents_deps.dev:0 github.com/dbruechler/aev,num_dependents_deps.dev:0 +github.com/dbryan0516/ssh-deploy, github.com/dbryzgalov/react-router-with-breadcrumbs,num_dependents_deps.dev:0 github.com/dbs-leipzig/gradoop,num_dependents_deps.dev:8 github.com/dbs-leipzig/gradoop-capf,num_dependents_deps.dev:0 @@ -418757,6 +427165,7 @@ github.com/dbswap-protocol/token-lists,num_dependents_deps.dev:0 github.com/dbswap/dbswap-core,num_dependents_deps.dev:0 github.com/dbsystel/excote,num_dependents_deps.dev:0 github.com/dbsystel/kewl,num_dependents_deps.dev:0 +github.com/dbt-checkpoint/dbt-checkpoint, github.com/dbt-labs/dbt-adapter-tests, github.com/dbt-labs/dbt-bigquery, github.com/dbt-labs/dbt-core, @@ -418879,6 +427288,9 @@ github.com/dbyr/rb_tree,num_dependents_deps.dev:2 github.com/dbyr/surface_ai,num_dependents_deps.dev:0 github.com/dbystruev/get-outfit-tools,num_dependents_deps.dev:0 github.com/dbzmelvin/go-apachetizer,num_dependents_deps.dev:0 +github.com/dc-ag/auto-assign-assignees-from-team, +github.com/dc-ag/auto-assign-reviewers-from-team, +github.com/dc-ag/azure-devops-pr-notification, github.com/dc-aichara/Price-Indices, github.com/dc-aichara/c0banAPI, github.com/dc-aichara/pyChatwork, @@ -418911,6 +427323,7 @@ github.com/dc4ts/changetower,num_dependents_deps.dev:0 github.com/dc7290/microcms-richedit-processer,num_dependents_deps.dev:0 github.com/dc7290/next-router-prefetch,num_dependents_deps.dev:0 github.com/dc7290/template-ejs-loader,num_dependents_deps.dev:0 +github.com/dc740/django-coveragepy-github-action, github.com/dca/async-functions-wrap,num_dependents_deps.dev:0 github.com/dca/jquery-msearch,num_dependents_deps.dev:0 github.com/dca/linebot-koa-middleware,num_dependents_deps.dev:0 @@ -418953,6 +427366,12 @@ github.com/dcarbone/csvclean,num_dependents_deps.dev:0 github.com/dcarbone/gerbst,num_dependents_deps.dev:0 github.com/dcarbone/go-confinator,num_dependents_deps.dev:0 github.com/dcarbone/gobot,num_dependents_deps.dev:0 +github.com/dcarbone/install-jq-action, +github.com/dcarbone/install-yq-action, +github.com/dcarbone/tfcloud-module-push-action, +github.com/dcarbone/tfcloud-module-register-action, +github.com/dcarbone/tfcloud-provider-push-action, +github.com/dcarbone/yaml-to-env-action, github.com/dcard/jscs-preset-dcard,num_dependents_deps.dev:0 github.com/dcard/jsondiff,num_dependents_deps.dev:0 github.com/dcarda/aba.route.validator,num_dependents_deps.dev:0 @@ -419163,6 +427582,9 @@ github.com/dchoruzy/hltv-data, github.com/dchote/go-rpio,num_dependents_deps.dev:0 github.com/dchote/gopicamera,num_dependents_deps.dev:0 github.com/dchourasia/httpCompare, +github.com/dchourasia/ms-teams-notification, +github.com/dchourasia/robotframework-github-action, +github.com/dchourasia/sync-upstream-repo, github.com/dchowitz/create-nodejs-project,num_dependents_deps.dev:0 github.com/dchowitz/webrtc-datachannel,num_dependents_deps.dev:0 github.com/dchrzanowski/mtml,num_dependents_deps.dev:0 @@ -419170,7 +427592,16 @@ github.com/dchukhin/django_optimized_image, github.com/dchukhin/django_tinypng, github.com/dchusovitin/node-smsaero,num_dependents_deps.dev:0 github.com/dchutchings/py_ofdm, +github.com/dci-labs/dci-component, +github.com/dciborow/action-bandit, +github.com/dciborow/action-github-releases, +github.com/dciborow/action-gpt, +github.com/dciborow/action-pylint, +github.com/dciborow/auto-build-bicep, +github.com/dciborow/commit, +github.com/dciborow/ml-workspace, github.com/dciborow/mmlspark, +github.com/dciborow/pyaction, github.com/dcic/dcic-styles,num_dependents_deps.dev:0 github.com/dcic/signature-commons-schema,num_dependents_deps.dev:0 github.com/dciccale/bada55,num_dependents_deps.dev:0 @@ -419299,6 +427730,7 @@ github.com/dcodeIO/node-harmonize,num_dependents_deps.dev:50 github.com/dcodeIO/node-memcpy,num_dependents_deps.dev:16 github.com/dcodeIO/node.js-closure-compiler-externs,"Google,num_dependents_deps.dev:56" github.com/dcodeIO/opt.js,num_dependents_deps.dev:10631 +github.com/dcodeIO/setup-node-nvm, github.com/dcodeIO/test.js,num_dependents_deps.dev:0 github.com/dcodeIO/utfx,num_dependents_deps.dev:40 github.com/dcodeIO/wabt.js,num_dependents_deps.dev:6 @@ -419549,6 +427981,7 @@ github.com/dcso/spyre,num_dependents_deps.dev:0 github.com/dcswap/dcswap-sdk,num_dependents_deps.dev:0 github.com/dcswap/dcswap-toolkit,num_dependents_deps.dev:0 github.com/dctalbot/react-native-spinjs,num_dependents_deps.dev:0 +github.com/dctalbot/umich-afs-action, github.com/dcthomson/django-webcache, github.com/dctid/bzapp,num_dependents_deps.dev:0 github.com/dctopspin/nodebb-plugin-sso-arc,num_dependents_deps.dev:0 @@ -419627,6 +428060,7 @@ github.com/dd/Meringue, github.com/dd1111/sequence-n-x,num_dependents_deps.dev:0 github.com/dd1337/go-dynamo-document-client,num_dependents_deps.dev:0 github.com/dd1337/gosmpp,num_dependents_deps.dev:0 +github.com/dd3tech/360-code-review, github.com/dd3v/snippets.ninja,num_dependents_deps.dev:0 github.com/dd4e/pyedid, github.com/dda-dev/ornitho-client-python, @@ -419780,6 +428214,7 @@ github.com/ddesilva/react-event-bus,num_dependents_deps.dev:0 github.com/ddesrosier/pooltogether-hooks,num_dependents_deps.dev:0 github.com/ddetommaso/TobiiGlassesPyController, github.com/ddetommaso/TobiiGlassesPySuite, +github.com/ddev/github-action-setup-ddev, github.com/ddev8/learn_golang,num_dependents_deps.dev:0 github.com/ddevcap/contentful-go,num_dependents_deps.dev:0 github.com/ddevitt/ghop,num_dependents_deps.dev:0 @@ -419825,6 +428260,8 @@ github.com/ddimtirov/nuggets,num_dependents_deps.dev:0 github.com/ddipankargogoi/web-app-projects,num_dependents_deps.dev:0 github.com/ddisisto/imgui-go,num_dependents_deps.dev:0 github.com/ddivanshu/go-test,num_dependents_deps.dev:0 +github.com/ddivanshu/golang-action, +github.com/ddivanshu/test12, github.com/ddj231/Handel,num_dependents_deps.dev:0 github.com/ddj231/react-native-code-editor,num_dependents_deps.dev:0 github.com/ddjain/ngDebounceClick,num_dependents_deps.dev:0 @@ -419906,6 +428343,7 @@ github.com/ddochea0314/shellcut,num_dependents_deps.dev:0 github.com/ddody/first-module,num_dependents_deps.dev:0 github.com/ddogechan/benchmarkweb,num_dependents_deps.dev:0 github.com/ddohler/gdal-js,num_dependents_deps.dev:0 +github.com/ddoice/sonarqube-simple, github.com/ddolheguy/pure-render-decorator,num_dependents_deps.dev:0 github.com/ddollar/connect-identity,num_dependents_deps.dev:0 github.com/ddollar/crossover,num_dependents_deps.dev:0 @@ -419969,6 +428407,7 @@ github.com/ddosakura/sblock4koa,num_dependents_deps.dev:0 github.com/ddosakura/starmap,num_dependents_deps.dev:0 github.com/ddosdor/vue-sh-cli,num_dependents_deps.dev:0 github.com/ddosdor/vue-sh-wysiwyg,num_dependents_deps.dev:0 +github.com/ddosify/ddosify-latency-action, github.com/ddossot/JBound,num_dependents_deps.dev:0 github.com/ddossot/RxMule,num_dependents_deps.dev:0 github.com/ddouglas/ruler,num_dependents_deps.dev:0 @@ -419980,6 +428419,8 @@ github.com/ddprrt/connect-php,num_dependents_deps.dev:0 github.com/ddprrt/generator-netural,num_dependents_deps.dev:0 github.com/ddprrt/rework-hwb,num_dependents_deps.dev:0 github.com/ddr-/dg,num_dependents_deps.dev:0 +github.com/ddradar/choose-random-action, +github.com/ddradar/lgtm-action, github.com/ddragosd/experimental-openwhisk-passport-auth,num_dependents_deps.dev:0 github.com/ddragosd/openwhisk-cache-redis, github.com/ddragosd/python-rclone, @@ -420146,6 +428587,7 @@ github.com/de-dale/cards-on-shelves,num_dependents_deps.dev:0 github.com/de-dale/trello-to-docs,num_dependents_deps.dev:0 github.com/de-don/sub-heap,num_dependents_deps.dev:0 github.com/de-eplearn/dlearn, +github.com/de-husk/cosm-orc-gas-diff-action, github.com/de-jaggl/sqlbuilder,num_dependents_deps.dev:0 github.com/de-jaggl/sqlbuilder-springjdbc,num_dependents_deps.dev:0 github.com/de-jcup/playground,num_dependents_deps.dev:0 @@ -420189,6 +428631,7 @@ github.com/de-vri-es/node-unix-socketpair,num_dependents_deps.dev:0 github.com/de-vri-es/palletizer-rs,num_dependents_deps.dev:0 github.com/de-vri-es/posix-socket-rs,num_dependents_deps.dev:0 github.com/de-vri-es/rust-compile-time-run,num_dependents_deps.dev:0 +github.com/de-vri-es/setup-git-credentials, github.com/de-vri-es/tokio-seqpacket-rs,num_dependents_deps.dev:0 github.com/de-vri-es/webhook-httpd,num_dependents_deps.dev:0 github.com/de-vri-es/zzp-rs,num_dependents_deps.dev:0 @@ -420412,6 +428855,7 @@ github.com/deadro22/css-plus,num_dependents_deps.dev:0 github.com/deadshot465/owoify-go,num_dependents_deps.dev:0 github.com/deadshot465/owoify-py, github.com/deadshot465/owoify_rs,num_dependents_deps.dev:0 +github.com/deadsnakes/action, github.com/deadsy/lorenz,num_dependents_deps.dev:0 github.com/deadsy/mlx,num_dependents_deps.dev:0 github.com/deadsy/rvdbg,num_dependents_deps.dev:0 @@ -420517,6 +428961,7 @@ github.com/deangilewicz/generator-ll-prototype,num_dependents_deps.dev:0 github.com/deanh/minitest.js,num_dependents_deps.dev:0 github.com/deanhet/react-native-text-ticker,num_dependents_deps.dev:2 github.com/deanhigh/alphavantage,num_dependents_deps.dev:0 +github.com/deanhigh/mr-tools-milestone-push-action, github.com/deanhiller/playorm,num_dependents_deps.dev:0 github.com/deanhiller/webpieces,num_dependents_deps.dev:19546 github.com/deanilvincent/age-by-birthdate,num_dependents_deps.dev:0 @@ -420859,6 +429304,7 @@ github.com/debaillie/goproxy,num_dependents_deps.dev:0 github.com/debakash/Tesseractyl,num_dependents_deps.dev:0 github.com/debakash/legacy-tesseractyl,num_dependents_deps.dev:0 github.com/debanganthakuria/freshers-bootcamp,num_dependents_deps.dev:0 +github.com/debanjan97/github-action-get-previous-tag, github.com/debanjan97/sns-message-validator, github.com/debarghyab/winston-rabbitmq-transport,num_dependents_deps.dev:0 github.com/debarshibasak/kubestrike,num_dependents_deps.dev:0 @@ -420944,9 +429390,13 @@ github.com/debian/pkg-go-tools,num_dependents_deps.dev:0 github.com/debian001/app-migrator,num_dependents_deps.dev:0 github.com/debian4tw/cuboid3,num_dependents_deps.dev:0 github.com/debian4tw/monotest, +github.com/debianmaster/action-helm-cli, +github.com/debianmaster/actions-k3s, github.com/debianmaster/haproxy-watch,num_dependents_deps.dev:0 +github.com/debianmaster/kubectl, github.com/debianmaster/openshift-client,num_dependents_deps.dev:0 github.com/debianmaster/openshift-examples,criticality_score:0.316190 +github.com/debianmaster/set-gitref-env, github.com/debianmaster/social-auth,num_dependents_deps.dev:0 github.com/debianw/is,num_dependents_deps.dev:0 github.com/debiki/talkyard,criticality_score:0.367630 @@ -420989,6 +429439,7 @@ github.com/deblanco/polybase-db,num_dependents_deps.dev:0 github.com/deblanco/timeout-planner,num_dependents_deps.dev:0 github.com/deblanco/tronix.js,num_dependents_deps.dev:0 github.com/deblanco/xlsExport,num_dependents_deps.dev:0 +github.com/deblockt/cucumber-report-annotations-action, github.com/deblockt/google-home-push, github.com/deblockt/hal-rest-client,num_dependents_deps.dev:2 github.com/deblockt/json-diff,num_dependents_deps.dev:0 @@ -421012,6 +429463,7 @@ github.com/debonet/es6tasks,num_dependents_deps.dev:0 github.com/debonet/remote-promises,num_dependents_deps.dev:0 github.com/debonet/remote-tasks, github.com/debonet/within,num_dependents_deps.dev:0 +github.com/debonte/check-for-changed-files, github.com/debonzi/celery_crossover, github.com/debonzi/gc-event-system, github.com/debonzi/logentries-envs, @@ -421042,6 +429494,7 @@ github.com/deboyblog/web-hook-deploy,num_dependents_deps.dev:0 github.com/debragail/eml_analyzer, github.com/debrajrakshit/jquery-sort-ascending-descending,num_dependents_deps.dev:0 github.com/debrice/aws-converter,num_dependents_deps.dev:0 +github.com/debricked/actions, github.com/debrief/pepys-import, github.com/debrinn/morpion,num_dependents_deps.dev:0 github.com/debris/base58,num_dependents_deps.dev:265 @@ -421077,6 +429530,9 @@ github.com/debug-tips/painty,num_dependents_deps.dev:0 github.com/debug-tips/react-paint-demo,num_dependents_deps.dev:0 github.com/debug-tips/timing2,num_dependents_deps.dev:0 github.com/debug/vfxClientToolkit, +github.com/debugci/setup-cloudflared, +github.com/debugci/setup-code-server, +github.com/debugerman/s3-static-release, github.com/debugerr/phonegap-plugin-barcodescanner,num_dependents_deps.dev:0 github.com/debuggap/vide-plugin-bucket-common,num_dependents_deps.dev:0 github.com/debuggap/vide-plugin-bucket-vue,num_dependents_deps.dev:0 @@ -421094,6 +429550,7 @@ github.com/debuggap/vide-plugin-prompt-text, github.com/debuggap/vide-plugin-prompt-vue,num_dependents_deps.dev:0 github.com/debuggap/vide-plugin-prompt-wxml,num_dependents_deps.dev:0 github.com/debuggap/vide-plugin-toolbar-sourcemap,num_dependents_deps.dev:0 +github.com/debugger24/action-aws-ssm-run-command, github.com/debugger24/pyspark-test, github.com/debuggercrafts/storybook-mock-api,num_dependents_deps.dev:0 github.com/debuggerpk/ghost-gcs-adapter,num_dependents_deps.dev:0 @@ -421483,6 +429940,8 @@ github.com/declspec/node-express-dpi,num_dependents_deps.dev:0 github.com/declspec/node-xml-lite,num_dependents_deps.dev:0 github.com/declspec/vue-inversify,num_dependents_deps.dev:0 github.com/declspec/yang-parser-coffee,num_dependents_deps.dev:0 +github.com/decnorton/phpunit-problem-matcher, +github.com/deco-cx/deploy, github.com/deco-finter/fableous,num_dependents_deps.dev:0 github.com/deco793/project,num_dependents_deps.dev:0 github.com/decode-org/javascript-sandbox,num_dependents_deps.dev:0 @@ -421516,8 +429975,11 @@ github.com/deconst/strider-deconst-common,num_dependents_deps.dev:0 github.com/deconst/strider-deconst-content,num_dependents_deps.dev:0 github.com/deconst/strider-deconst-control,num_dependents_deps.dev:0 github.com/deconstructionalism/generator-redux-logic,num_dependents_deps.dev:0 +github.com/deconz-community/ddf-validator-action, github.com/deconz-community/node-red-contrib-deconz,num_dependents_deps.dev:0 +github.com/decooio/cloudflare-dnslink-action, github.com/decooio/decoo-sdk,num_dependents_deps.dev:0 +github.com/decooio/ipfs-upload-dapp-action, github.com/decorate/alcjs,num_dependents_deps.dev:0 github.com/decorate/alcts,num_dependents_deps.dev:0 github.com/decorate/circle-image-list,num_dependents_deps.dev:0 @@ -421640,6 +430102,7 @@ github.com/deden/ignite-collapsible, github.com/deden/ignite-progress, github.com/deden/ignite-snap-carousel, github.com/deden/postgraphile-plugin-connection-multi-tenant,num_dependents_deps.dev:0 +github.com/dedene/curl, github.com/dedesite/blockly-web,num_dependents_deps.dev:0 github.com/dedeyuyandi/go-dkron,num_dependents_deps.dev:0 github.com/dedeyuyandi/go-grpc-upload-file,num_dependents_deps.dev:0 @@ -421756,6 +430219,7 @@ github.com/deeeed/cordova-plugin-fixioskeyboard,num_dependents_deps.dev:0 github.com/deees/sshkit-chunky-runner,num_dependents_deps.dev:0 github.com/deefeloper/sails-hook-oauth2,num_dependents_deps.dev:0 github.com/deefour/speed-dial, +github.com/deegitalbe/github-action-trustup-io-slack-users, github.com/deeidara/project,num_dependents_deps.dev:0 github.com/deej81/ng-modal, github.com/deej81/ngx-croppie,num_dependents_deps.dev:2 @@ -421807,17 +430271,22 @@ github.com/deep-compute/rocksdbserver, github.com/deep-compute/serverstats, github.com/deep-compute/tornadoql, github.com/deep-compute/wordvecspace, +github.com/deep-cover/deep-cover, github.com/deep-diver/conn,num_dependents_deps.dev:0 github.com/deep-diver/hello-world,num_dependents_deps.dev:0 github.com/deep-diver/ready,num_dependents_deps.dev:0 github.com/deep-diver/test1,num_dependents_deps.dev:0 +github.com/deep-entertainment/doc8-action, +github.com/deep-entertainment/godot-asset-lib-action, github.com/deep-han/create-nuxt-app,num_dependents_deps.dev:0 github.com/deep-han/element,num_dependents_deps.dev:0 github.com/deep-horizon/edge_ai, github.com/deep-horizon/horizon_py, +github.com/deep-mm/set-variables, github.com/deep-orca/Flask-MetaRoute, github.com/deep-river/learning-go,num_dependents_deps.dev:0 github.com/deep-security/serverless-certificate-creator,num_dependents_deps.dev:0 +github.com/deep-security/smartcheck-scan-action, github.com/deep-spin/entmax, github.com/deep-spin/lp-sparsemap, github.com/deep-storage/deep-storage,num_dependents_deps.dev:0 @@ -421831,11 +430300,19 @@ github.com/deep1224/react-chat-window,num_dependents_deps.dev:0 github.com/deep2essence/lotusops, github.com/deep3dkr/deep3d, github.com/deep500/deep500, +github.com/deep5050/MastJokeMara, github.com/deep5050/autobadge,num_dependents_deps.dev:0 +github.com/deep5050/autopy-lot, github.com/deep5050/code-conduct,num_dependents_deps.dev:0 +github.com/deep5050/comment-to-code-ratio-action, +github.com/deep5050/count-comments-action, +github.com/deep5050/cppcheck-action, github.com/deep5050/crazymoji,num_dependents_deps.dev:0 +github.com/deep5050/custom-thumbnail, +github.com/deep5050/flawfinder-action, github.com/deep5050/kickstart,num_dependents_deps.dev:0 github.com/deep5050/kopykat,num_dependents_deps.dev:0 +github.com/deep5050/memes-on-issues-action, github.com/deep5050/nonsense,num_dependents_deps.dev:0 github.com/deep5050/radio-active, github.com/deep5050/rainbow-villa,num_dependents_deps.dev:0 @@ -421843,8 +430320,10 @@ github.com/deepa493/automatic-potato,num_dependents_deps.dev:0 github.com/deepai-org/ai_integration, github.com/deepai-org/deepai-js-client,num_dependents_deps.dev:2 github.com/deepak-avadhya/pubsub,num_dependents_deps.dev:0 +github.com/deepak-bala/github-pr-contains-action, github.com/deepak-bala/konotor-android,num_dependents_deps.dev:0 github.com/deepak-devadiga/lostandfounddemo, +github.com/deepak-gc/custom-github-action, github.com/deepak-gl/DemoCordovaPlugin,num_dependents_deps.dev:0 github.com/deepak-kapoor/arr-util,num_dependents_deps.dev:0 github.com/deepak-kapoor/is-builtin,num_dependents_deps.dev:62 @@ -421915,6 +430394,8 @@ github.com/deepaknverma/staticErrs,num_dependents_deps.dev:0 github.com/deepakpm/dpm-framwork,num_dependents_deps.dev:0 github.com/deepakprabhakara/juggernaut,num_dependents_deps.dev:0 github.com/deepakpulikkan/learning_git,num_dependents_deps.dev:0 +github.com/deepakputhraya/action-branch-name, +github.com/deepakputhraya/action-pr-title, github.com/deepakputhraya/mailcheck,num_dependents_deps.dev:0 github.com/deepakputhraya/timesnare,num_dependents_deps.dev:0 github.com/deepakraj1997/kubetries,num_dependents_deps.dev:0 @@ -422013,6 +430494,7 @@ github.com/deepconduit/conduit-node,num_dependents_deps.dev:0 github.com/deepconsc/NightCrawler, github.com/deepcrawl/common-utils,num_dependents_deps.dev:0 github.com/deepcrawl/dc-platform-utils,num_dependents_deps.dev:0 +github.com/deepcrawl/deepcrawl-test-action, github.com/deepcrawl/eslint-config,num_dependents_deps.dev:0 github.com/deepcrawl/node-duckdb,num_dependents_deps.dev:0 github.com/deepcs233/jieba_fast, @@ -422122,6 +430604,7 @@ github.com/deephacks/tools4j-cli,num_dependents_deps.dev:0 github.com/deephacks/vals,num_dependents_deps.dev:1 github.com/deephacks/vertxrs,num_dependents_deps.dev:0 github.com/deephacks/westty,num_dependents_deps.dev:27 +github.com/deephaven/action-assert-dh-tables-present, github.com/deephaven/barrage,num_dependents_deps.dev:0 github.com/deephaven/deephaven-plugin, github.com/deephaven/deephaven-plugin-json, @@ -422422,6 +430905,7 @@ github.com/deepsourcelabs/demo-go,num_dependents_deps.dev:0 github.com/deepsourcelabs/good-first-issue,criticality_score:0.407610 github.com/deepsourcelabs/graphql,num_dependents_deps.dev:0 github.com/deepsourcelabs/import-x, +github.com/deepsourcelabs/test-coverage-action, github.com/deepsourcelabs/trash,num_dependents_deps.dev:0 github.com/deepstartup/INDICovid19, github.com/deepstartup/WHOAPIdata, @@ -422536,6 +431020,7 @@ github.com/deepzz0/appdemo,num_dependents_deps.dev:0 github.com/deepzz0/go-van,num_dependents_deps.dev:0 github.com/deer-inc/ng-attendance,num_dependents_deps.dev:0 github.com/deer-inc/ng-lp,num_dependents_deps.dev:0 +github.com/deer42/heroku-scale-dyno, github.com/deerW/vue-google-map-protocol,num_dependents_deps.dev:0 github.com/deerawan/fiscal-year,num_dependents_deps.dev:0 github.com/deerawan/kue-prom,num_dependents_deps.dev:0 @@ -422562,6 +431047,7 @@ github.com/deevanrajput/popup-modal,num_dependents_deps.dev:0 github.com/deevian/loadable-components,num_dependents_deps.dev:0 github.com/deevis/gempendencies,num_dependents_deps.dev:0 github.com/deevolabs/cordova-plugin-media,num_dependents_deps.dev:0 +github.com/deevroman/setup-mingw, github.com/deevus/analytics-plugin-activecampaign,num_dependents_deps.dev:0 github.com/deevus/analytics-plugin-profitwell,num_dependents_deps.dev:0 github.com/deevus/analytics-plugin-tapfiliate,num_dependents_deps.dev:0 @@ -422634,6 +431120,8 @@ github.com/defencedigital/spa-server,num_dependents_deps.dev:0 github.com/defencedriver/hyz-components,num_dependents_deps.dev:0 github.com/defend-project/covid-severity, github.com/defenestrant/react-bazaar,num_dependents_deps.dev:0 +github.com/defensecode/thunderscan-action, +github.com/defenseunicorns/setup-zarf, github.com/defensio/defensio-python, github.com/defensio/defensio-ruby,num_dependents_deps.dev:0 github.com/defensor7/homebridge-airmonitor,num_dependents_deps.dev:0 @@ -422647,8 +431135,11 @@ github.com/defgsus/django-clear-tables, github.com/defgsus/django-joblog, github.com/defi-org-code/defi-js,num_dependents_deps.dev:0 github.com/defi-org-code/web3-candies,num_dependents_deps.dev:0 +github.com/defi-wonderland/check-crypto-action, +github.com/defi-wonderland/interface-exporter-action, github.com/defi-wonderland/lopt,num_dependents_deps.dev:0 github.com/defi-wonderland/smock,num_dependents_deps.dev:0 +github.com/defi-wonderland/solidity-exporter-action, github.com/defiAnalysis/Sweetswap-sdk,num_dependents_deps.dev:0 github.com/defiAnalysis/anbswap-sdk,num_dependents_deps.dev:0 github.com/defiAnalysis/pancake-swap-sdk,num_dependents_deps.dev:0 @@ -422830,6 +431321,8 @@ github.com/defstryker/Hex-Omega, github.com/defsub/takeout,num_dependents_deps.dev:0 github.com/deft-plus/cover-ui,num_dependents_deps.dev:0 github.com/deftdiary/dfish, +github.com/deftdot/aws-csp-policy-update, +github.com/deftdot/aws-iam-policy-update, github.com/deftia/flashgen,num_dependents_deps.dev:0 github.com/deftinc/elastic-migrate,num_dependents_deps.dev:0 github.com/deftio/bitwrench,num_dependents_deps.dev:0 @@ -423014,6 +431507,7 @@ github.com/dehimer/customize-cra-add-stylus-loader,num_dependents_deps.dev:0 github.com/dehimer/npmpublish,num_dependents_deps.dev:0 github.com/dehimer/react-step-progress-component,num_dependents_deps.dev:0 github.com/dehli/browserr,num_dependents_deps.dev:0 +github.com/dehli/setup-clj-kitchen-sink, github.com/dehlic/completeIt,num_dependents_deps.dev:0 github.com/dehn-und-soehne/dehn-und-soehne.github.io,num_dependents_deps.dev:0 github.com/dehn-und-soehne/spring-boot-drupal-authentication,num_dependents_deps.dev:0 @@ -423151,6 +431645,7 @@ github.com/deitch/urlmaster,num_dependents_deps.dev:0 github.com/deitimicro/wheels, github.com/deitrix/go-monzo,num_dependents_deps.dev:0 github.com/deitrix/todos,num_dependents_deps.dev:0 +github.com/deitry/add-nuget-source-action, github.com/deity-io/falcon,num_dependents_deps.dev:0 github.com/deiucanta/npm-starter,num_dependents_deps.dev:0 github.com/deiucanta/random-position,num_dependents_deps.dev:0 @@ -423254,6 +431749,7 @@ github.com/dejw/vip, github.com/dejw/watson-ci, github.com/dejwid/pie-timer,num_dependents_deps.dev:0 github.com/dek577/homebridge-watchdog15,num_dependents_deps.dev:0 +github.com/deka0106/upload-to-dropbox, github.com/dekadans/repcal, github.com/dekadee/accshm,num_dependents_deps.dev:0 github.com/dekal/bookstore_items-api,num_dependents_deps.dev:0 @@ -423292,6 +431788,9 @@ github.com/dekimasoon/language-riot-tag,num_dependents_deps.dev:0 github.com/dekimasoon/pixi-simple-gesture,num_dependents_deps.dev:0 github.com/dekimasoon/riotjs-style-plus-loader,num_dependents_deps.dev:0 github.com/dekimasoon/vue-cli-plugin-cordova,num_dependents_deps.dev:0 +github.com/dekinderfiets/pr-description-enforcer, +github.com/dekinderfiets/pr-name-enforcer, +github.com/dekinderfiets/require-approved-pull-request-action, github.com/dekito278/ujian-golang,num_dependents_deps.dev:0 github.com/dekk-app/react-mops,num_dependents_deps.dev:0 github.com/dekkai-csv/event-emitter,num_dependents_deps.dev:0 @@ -423358,6 +431857,7 @@ github.com/dekujs/deku,num_dependents_deps.dev:46 github.com/dekujs/magic-virtual-element,num_dependents_deps.dev:38 github.com/dekujs/virtual-element,num_dependents_deps.dev:192 github.com/dekuxin/zionscript,num_dependents_deps.dev:0 +github.com/dekvall/softfix, github.com/dekyfin/RichFilemanager-NODE,num_dependents_deps.dev:0 github.com/dekyfin/elfinder-node,num_dependents_deps.dev:0 github.com/dekz/0x-relayer-cat,num_dependents_deps.dev:0 @@ -423366,6 +431866,7 @@ github.com/dekz/dcrypt,num_dependents_deps.dev:0 github.com/dekz/prettyp,num_dependents_deps.dev:0 github.com/dekz/serf-client,num_dependents_deps.dev:0 github.com/dekzitfz/generator-code-base-android,num_dependents_deps.dev:0 +github.com/del-systems/check-if-version-bumped, github.com/del-xiong/miniblink,num_dependents_deps.dev:0 github.com/del1214/gulp-excel2html,num_dependents_deps.dev:0 github.com/del1214/open-browser-webpack-plugin,num_dependents_deps.dev:0 @@ -423435,6 +431936,7 @@ github.com/deleomike/DronePy, github.com/deleplace/ants,num_dependents_deps.dev:0 github.com/deleplace/microbenchmarks,num_dependents_deps.dev:0 github.com/deleplace/programming-idioms,num_dependents_deps.dev:0 +github.com/deler-aziz/helm-deploy-action, github.com/delerme/bazel-sucrase,num_dependents_deps.dev:0 github.com/delesslin/coolors-io,num_dependents_deps.dev:0 github.com/delestro/outputformat, @@ -423576,6 +432078,8 @@ github.com/delivc/delivc-sdk-core,num_dependents_deps.dev:0 github.com/delivc/delivc.js,num_dependents_deps.dev:0 github.com/delivc/uikit,num_dependents_deps.dev:0 github.com/deliverance/Deliverance, +github.com/delivered/attach-to-trello-card-action, +github.com/delivered/trello-github-action, github.com/deliveredtechnologies/rulebook,criticality_score:0.335120 github.com/deliveredtechnologies/terraform-maven,num_dependents_deps.dev:0 github.com/deliveroo/analytics-go,num_dependents_deps.dev:0 @@ -423584,9 +432088,13 @@ github.com/deliveroo/react-creditCard,num_dependents_deps.dev:0 github.com/deliveroo/rutie-serde,num_dependents_deps.dev:0 github.com/deliveroo/tfmodule-checker,num_dependents_deps.dev:0 github.com/deliverr/knex-snowflake-dialect,num_dependents_deps.dev:0 +github.com/delivery-much/actions-assigner, +github.com/delivery-much/actions-chat, github.com/delivery-much/dm-go,num_dependents_deps.dev:0 github.com/deliverybot/deliverybot,num_dependents_deps.dev:6 github.com/deliverybot/deploybot,num_dependents_deps.dev:0 +github.com/deliverybot/deployment-status, +github.com/deliverybot/helm, github.com/deliverycenter/dc.libs.metrics.golang,num_dependents_deps.dev:0 github.com/deliverycenter/hey_doctor,num_dependents_deps.dev:0 github.com/deliveryhero/adhocboost, @@ -423596,6 +432104,7 @@ github.com/deliveryhero/hfc-pubsub, github.com/deliveryhero/lymph, github.com/deliveryhero/lymph-sqlalchemy, github.com/deliveryhero/pipeline,num_dependents_deps.dev:0 +github.com/deliveryhero/pr-base-auto-merger, github.com/deliveryhero/proteus,num_dependents_deps.dev:0 github.com/deliveryhero/serverless-aws-documentation,criticality_score:0.365290 github.com/deliveryhero/serverless-deploy-newrelic,num_dependents_deps.dev:0 @@ -423640,6 +432149,7 @@ github.com/delliot/maven-profiler,num_dependents_deps.dev:0 github.com/dellis23/ansible-toolkit, github.com/dellis23/django-wordpress-auth, github.com/dellisd/spatial-k,num_dependents_deps.dev:0 +github.com/dellnoantechnp/container-releaser-action, github.com/dellumdeus/donbeer, github.com/dellylucas/marketia,num_dependents_deps.dev:0 github.com/dellytools/delly,criticality_score:0.367260 @@ -424068,6 +432578,7 @@ github.com/demensky/nggm,num_dependents_deps.dev:0 github.com/demensky/platform,num_dependents_deps.dev:0 github.com/dementeddevil/next-auth,num_dependents_deps.dev:0 github.com/dementeddevil/node-fetch,num_dependents_deps.dev:0 +github.com/dementeddevil/standard-version-action, github.com/dementhius/battlenet-oauth2,num_dependents_deps.dev:0 github.com/demersdesigns/styleplate,num_dependents_deps.dev:0 github.com/demerzel3/karma-sourcemap-loader,num_dependents_deps.dev:438 @@ -424228,6 +432739,7 @@ github.com/demkada/olympus,num_dependents_deps.dev:0 github.com/demkada/tsc-conventions,num_dependents_deps.dev:0 github.com/demmer/bluebird-retry,num_dependents_deps.dev:334 github.com/demndevel/golang-chat,num_dependents_deps.dev:0 +github.com/demns/bundlewatch-gh-action, github.com/demns/nodentify,num_dependents_deps.dev:0 github.com/demo-igor/ng2-simple-select,num_dependents_deps.dev:0 github.com/demo-igor/ng2-simple-toggle,num_dependents_deps.dev:0 @@ -424347,6 +432859,8 @@ github.com/demonking99/ng-multiselect-dropdown-angular7, github.com/demonlms/gmsm,num_dependents_deps.dev:0 github.com/demonlord1997/gocui,num_dependents_deps.dev:0 github.com/demonly/SmartQQ-bot,num_dependents_deps.dev:0 +github.com/demonnic/build-with-muddler, +github.com/demonnic/test-in-mudlet, github.com/demonno/ynab-import, github.com/demonoid81/erp_crm,num_dependents_deps.dev:0 github.com/demonoid81/proxym,num_dependents_deps.dev:0 @@ -424375,12 +432889,16 @@ github.com/demosdemon/leblanc.codes, github.com/demosdemon/psh-environ, github.com/demosdemon/shop,num_dependents_deps.dev:0 github.com/demosdemon/termshare,num_dependents_deps.dev:0 +github.com/demosjarco/wrangler-action-node, github.com/demostanis-worlds/discord-commander,num_dependents_deps.dev:0 github.com/demostanis-worlds/discord.js-commander,num_dependents_deps.dev:0 github.com/demostanis/gimmeasearx,num_dependents_deps.dev:0 github.com/demostanis/nodejs-events,num_dependents_deps.dev:0 github.com/demostf/api-client,num_dependents_deps.dev:0 github.com/demostf/parser,num_dependents_deps.dev:0 +github.com/demotcsorg/demodockeraction, +github.com/demotcsorg/js-custom-action, +github.com/demotcsorg/jsactiondemo, github.com/demotu/detecta, github.com/demotu/optcutfreq, github.com/demotu/psd2, @@ -424428,6 +432946,7 @@ github.com/demur/mlnd-distributions, github.com/demurgos/appdata-path,num_dependents_deps.dev:78 github.com/demurgos/detect-desktop-environment,num_dependents_deps.dev:0 github.com/demurgos/furi,num_dependents_deps.dev:80 +github.com/demurgos/ga-deploy-git, github.com/demurgos/istanbulize, github.com/demurgos/kryo,num_dependents_deps.dev:128 github.com/demurgos/kryo-core,num_dependents_deps.dev:0 @@ -424454,6 +432973,7 @@ github.com/demvsystems/yup-ast,num_dependents_deps.dev:0 github.com/demx8as6/geo-calculator,num_dependents_deps.dev:0 github.com/demx8as6/network-generation,num_dependents_deps.dev:0 github.com/demx9/DemxReporter,num_dependents_deps.dev:0 +github.com/demyanets/angular-coverage-badges-action, github.com/demyanets/microfrontend,num_dependents_deps.dev:0 github.com/demyanets/stslib,num_dependents_deps.dev:0 github.com/demyxco/traefik,num_dependents_deps.dev:0 @@ -424513,11 +433033,14 @@ github.com/denar90/mobile-friendly,num_dependents_deps.dev:0 github.com/denar90/psi-ngrok,num_dependents_deps.dev:0 github.com/denar90/sw-precache-brunch,num_dependents_deps.dev:0 github.com/denar90/tv-uploader-cli,num_dependents_deps.dev:0 +github.com/denar90/wait-for-netlify-deploy-action, +github.com/denar90/webhook-action, github.com/denaschaeffer/secad-classwork,num_dependents_deps.dev:0 github.com/denaschaeffer/secad-personal,num_dependents_deps.dev:0 github.com/denautonomepirat/leihs,num_dependents_deps.dev:0 github.com/denautonomepirat/steppingstone,num_dependents_deps.dev:0 github.com/denbad/do-translate,num_dependents_deps.dev:0 +github.com/denbeigh2000/mark-build-red, github.com/denbeigh2000/slack-http-verifier,num_dependents_deps.dev:0 github.com/denbeke/ocrmymail,num_dependents_deps.dev:0 github.com/denbergvanthijs/plaguepy, @@ -424606,6 +433129,7 @@ github.com/dengdengdengpan/vue-wheel,num_dependents_deps.dev:0 github.com/dengdengdengpan/wheel,num_dependents_deps.dev:0 github.com/dengelbrack/preludium,num_dependents_deps.dev:0 github.com/dengelke/node-zoom2,num_dependents_deps.dev:0 +github.com/dengfuping/monorepo-release-helper, github.com/dengfuping/str-validator,num_dependents_deps.dev:0 github.com/denggangjaq/myweb323,num_dependents_deps.dev:0 github.com/dengguochao23/ts-storage,num_dependents_deps.dev:0 @@ -424793,6 +433317,9 @@ github.com/denis-sokolov/strict-standard-config,num_dependents_deps.dev:2 github.com/denis-sokolov/supergenpass-bin,num_dependents_deps.dev:0 github.com/denis-tektov/project,num_dependents_deps.dev:0 github.com/denis-tingaikin/actions-testing-repository-a,num_dependents_deps.dev:0 +github.com/denis-tingaikin/get-organization-repositories, +github.com/denis-tingaikin/sync-files, +github.com/denis-trofimov/slackify-markdown-action, github.com/denis-zavgorodny/cssclear,num_dependents_deps.dev:0 github.com/denis-zavgorodny/funnybike,num_dependents_deps.dev:0 github.com/denis-zavgorodny/grunt-list-page,num_dependents_deps.dev:0 @@ -424807,8 +433334,10 @@ github.com/denis/capone,num_dependents_deps.dev:0 github.com/denis/ipodcastly,num_dependents_deps.dev:0 github.com/denis/rspec-sharding,num_dependents_deps.dev:0 github.com/denis1stomin/publishstatus-bitbucket,num_dependents_deps.dev:0 +github.com/denis256/tg-gh-action, github.com/denis5417/home_work,num_dependents_deps.dev:0 github.com/denisa/clq,num_dependents_deps.dev:0 +github.com/denisa/semantic-tag-helper, github.com/denisa2341/example_code_go,num_dependents_deps.dev:0 github.com/denisacostaq/todolist-go,num_dependents_deps.dev:0 github.com/denisakov/gohomework,num_dependents_deps.dev:0 @@ -425056,6 +433585,7 @@ github.com/dennisXZX/easyUI, github.com/dennisafa/go-tc,num_dependents_deps.dev:0 github.com/dennisafa/netlink,num_dependents_deps.dev:0 github.com/dennisallard/nodejs,num_dependents_deps.dev:0 +github.com/dennisameling/ftp-upload-action, github.com/dennisameling/moneybird-javascript,num_dependents_deps.dev:0 github.com/dennisameling/muuri-angular,num_dependents_deps.dev:0 github.com/dennisameling/node-keytar,num_dependents_deps.dev:0 @@ -425142,6 +433672,7 @@ github.com/dennisschoepf/react-gen,num_dependents_deps.dev:0 github.com/dennisschroeder/fritzremote, github.com/dennissergeev/octant, github.com/dennissergeev/umtools, +github.com/dennissivia/plus9k.rs, github.com/dennisss/google-keychain,num_dependents_deps.dev:0 github.com/dennisss/react-scoped-hooks,num_dependents_deps.dev:0 github.com/dennisss/sstable.js,num_dependents_deps.dev:0 @@ -425233,10 +433764,13 @@ github.com/denoland/deno_website2,criticality_score:0.518580 github.com/denoland/flaky_test,num_dependents_deps.dev:0 github.com/denoland/rusty_v8,"criticality_score:0.512850,num_dependents_deps.dev:177" github.com/denoland/serde_v8,num_dependents_deps.dev:83 +github.com/denoland/setup-deno, github.com/denoland/vscode_deno,"criticality_score:0.480960,num_dependents_deps.dev:0" github.com/denolfe/jefit,num_dependents_deps.dev:0 github.com/denolfe/untappd,num_dependents_deps.dev:0 github.com/denolib/awesome-deno,criticality_score:0.413410 +github.com/denolib/deno-action, +github.com/denolib/setup-deno, github.com/denolife/hasdeno,num_dependents_deps.dev:0 github.com/denopress/lib,num_dependents_deps.dev:0 github.com/denorg/arch,num_dependents_deps.dev:0 @@ -425255,6 +433789,7 @@ github.com/denorg/up,num_dependents_deps.dev:0 github.com/denorg/x-name,num_dependents_deps.dev:0 github.com/denosaurs/deno_json_op,num_dependents_deps.dev:0 github.com/denosaurs/denon,criticality_score:0.427280 +github.com/denosaurs/depsbot, github.com/denosaurs/nessie,num_dependents_deps.dev:0 github.com/denouche/node-nest-cloud-api,num_dependents_deps.dev:0 github.com/denouche/virtual-assistant,num_dependents_deps.dev:0 @@ -425318,13 +433853,18 @@ github.com/densolo/readesm-js,num_dependents_deps.dev:0 github.com/densolo/transtur_card_atm,num_dependents_deps.dev:0 github.com/densonyuan/go-model-filter,num_dependents_deps.dev:0 github.com/densouadtech/react-mobilepay,num_dependents_deps.dev:0 +github.com/denstorti/git-hours-action, github.com/densudas/shadowroot-search,num_dependents_deps.dev:0 github.com/densuke-fitness/godojotechtrain,num_dependents_deps.dev:0 github.com/densuke-fitness/gowebsocket,num_dependents_deps.dev:0 github.com/densuke-st/as-cpueater,num_dependents_deps.dev:0 github.com/dentafrice/coffeescript-mixins,num_dependents_deps.dev:0 github.com/dentafrice/doc_to_dash,num_dependents_deps.dev:0 +github.com/dentarg/fly, +github.com/dentarg/gem-compare, +github.com/dentarg/heroku, github.com/dentarg/hubot-url-title,num_dependents_deps.dev:0 +github.com/dentarg/postgres, github.com/dented-kitchen/replicake,num_dependents_deps.dev:0 github.com/dentednerd/react-to-heroku,num_dependents_deps.dev:0 github.com/dentemple/jest-invert,num_dependents_deps.dev:0 @@ -425466,6 +434006,7 @@ github.com/denyu95/go-in-action-code,num_dependents_deps.dev:0 github.com/denyzhirkov/bid.js,num_dependents_deps.dev:0 github.com/denza/crowder,num_dependents_deps.dev:0 github.com/denza/redux-persist-buildfire-storage,num_dependents_deps.dev:0 +github.com/denzalman/lambda-python-action, github.com/denzcomtech/filesNdirectoriesLister,num_dependents_deps.dev:0 github.com/denzels/babel-plugin-insert-one-line-code,num_dependents_deps.dev:0 github.com/denzelwamburu/mongoose-os,num_dependents_deps.dev:0 @@ -425494,6 +434035,7 @@ github.com/deocoincore/deocoinjs-lib,num_dependents_deps.dev:0 github.com/deocoincore/deocoinjs-wallet,num_dependents_deps.dev:0 github.com/deodeveloper/ApplicationInsights-statsd,num_dependents_deps.dev:0 github.com/deogracia/jntpdn,num_dependents_deps.dev:0 +github.com/deogracia/my-debian-package, github.com/deomitrus/avocados,num_dependents_deps.dev:0 github.com/deomitrus/blosm,num_dependents_deps.dev:0 github.com/deomitrus/decurse,num_dependents_deps.dev:0 @@ -425757,15 +434299,19 @@ github.com/dependabot-fixtures/go-modules-private-sub-dependency,num_dependents_ github.com/dependabot-fixtures/go-modules-public,num_dependents_deps.dev:0 github.com/dependabot-fixtures/go-modules-retracted,num_dependents_deps.dev:0 github.com/dependabot/dependabot-core,"criticality_score:0.664240,num_dependents_deps.dev:0" +github.com/dependabot/fetch-metadata, github.com/dependabot/gomodules-extracted,num_dependents_deps.dev:0 github.com/dependency-check-team/dependency-check,"criticality_score:0.403820,num_dependents_deps.dev:42" +github.com/dependency-check/Dependency-Check_Action, github.com/dependency-check/dependency-check-sonar-plugin,criticality_score:0.408720 github.com/dependents/node-dependency-tree,criticality_score:0.409010 github.com/dependents/node-detective-scss,num_dependents_deps.dev:796 github.com/dependents/node-tree-pic,num_dependents_deps.dev:2 +github.com/depends-on/depends-on-action, github.com/dependument/dependument-cli,num_dependents_deps.dev:0 github.com/depersgroep/dfp-web-advertising,num_dependents_deps.dev:0 github.com/dephell/dephell, +github.com/dephell/dephell_action, github.com/dephell/dephell_archive, github.com/dephell/dephell_argparse, github.com/dephell/dephell_changelogs, @@ -425779,7 +434325,12 @@ github.com/dephell/dephell_shells, github.com/dephell/dephell_venvs, github.com/dephell/dephell_versioning, github.com/dephilia/poaurk, +github.com/dephraiim/groot, +github.com/dephraiim/license-action, github.com/dephraiim/termd,num_dependents_deps.dev:0 +github.com/dephraiim/translate-readme, +github.com/dephraiim/twitter-bot-action, +github.com/dephraiim/whatthecommit-action, github.com/dephraiim/zyer,num_dependents_deps.dev:0 github.com/dephub/dephub-core,num_dependents_deps.dev:0 github.com/depictiveai/hexenbresen,num_dependents_deps.dev:0 @@ -425803,6 +434354,7 @@ github.com/deplinenoise/tundra,criticality_score:0.393360 github.com/deplives/zhihu, github.com/deplives/zhlite, github.com/deploca/deploca-cli,num_dependents_deps.dev:0 +github.com/deploca/deploca-upload-action, github.com/deploifai/cli,num_dependents_deps.dev:0 github.com/deplorable/vue-ctk-date-time-picker,num_dependents_deps.dev:0 github.com/deploy-ml/deploy-ml, @@ -425844,10 +434396,12 @@ github.com/deployjs/deployjs-ember-build,num_dependents_deps.dev:0 github.com/deployjs/deployjs-grunt-build,num_dependents_deps.dev:0 github.com/deployjs/deployjs-react-build,num_dependents_deps.dev:0 github.com/deployment-helper/api-template-crawler,num_dependents_deps.dev:0 +github.com/deployphp/action, github.com/deployphp/deployer,criticality_score:0.648940 github.com/deployr/deployr-cli,num_dependents_deps.dev:0 github.com/deployr/js-rbroker-framework,num_dependents_deps.dev:0 github.com/deploys-app/deploys,num_dependents_deps.dev:0 +github.com/deploys-app/deploys-action, github.com/deplug/deplug,num_dependents_deps.dev:0 github.com/deplug/deplug-cli,num_dependents_deps.dev:0 github.com/deplug/deplug-helper,num_dependents_deps.dev:0 @@ -425873,6 +434427,11 @@ github.com/depop/python-automock, github.com/depop/python-flexisettings, github.com/depop/terraform-provider-logentries,num_dependents_deps.dev:0 github.com/depositphotos/dry,num_dependents_deps.dev:0 +github.com/depot/bake-action, +github.com/depot/build-push-action, +github.com/depot/pull-action, +github.com/depot/setup-action, +github.com/depot/use-action, github.com/depp/bytesize,num_dependents_deps.dev:0 github.com/depp/simpleargs,num_dependents_deps.dev:0 github.com/depp/skelly64,num_dependents_deps.dev:0 @@ -425881,6 +434440,7 @@ github.com/deppen8/gtpy, github.com/deppen8/pandas-vet, github.com/deppen8/prospect, github.com/depperm/webtotp,num_dependents_deps.dev:0 +github.com/deppsu/azure-pipeline-github-action-branch, github.com/depr-di-wu/bilbo,num_dependents_deps.dev:0 github.com/depr-di-wu/mtga,num_dependents_deps.dev:0 github.com/depra/cana, @@ -425917,6 +434477,7 @@ github.com/deptagency/octopus,num_dependents_deps.dev:0 github.com/deptagency/oppy,num_dependents_deps.dev:0 github.com/depthlabs-io/nestjs-state-machine,num_dependents_deps.dev:0 github.com/depthsecurity/armory, +github.com/deptno/action-aws-ssm-to-dotenv, github.com/deptno/awslib,num_dependents_deps.dev:0 github.com/deptno/cli-comics,num_dependents_deps.dev:0 github.com/deptno/color,num_dependents_deps.dev:0 @@ -425955,6 +434516,7 @@ github.com/deptofdefense/simplelogger,num_dependents_deps.dev:0 github.com/deptyped/aiogram-media-group, github.com/deptyped/telegraf-callback-data,num_dependents_deps.dev:0 github.com/deptyped/telegram-text-entities-filler,num_dependents_deps.dev:0 +github.com/depuits/MetalsmithPagesAction, github.com/depuits/jQuery.AutoSaveForm,num_dependents_deps.dev:0 github.com/depuits/mpd-server,num_dependents_deps.dev:0 github.com/depuits/pigpio-dht,num_dependents_deps.dev:0 @@ -425965,6 +434527,7 @@ github.com/deqitang/atomsciflow, github.com/deqlz/go-zabbix,num_dependents_deps.dev:0 github.com/deqode/dq-vault,num_dependents_deps.dev:0 github.com/deqode/goarcc,num_dependents_deps.dev:1 +github.com/deqode/krane-eks-action, github.com/dequbed/asnom,num_dependents_deps.dev:0 github.com/dequbed/rsasl,num_dependents_deps.dev:0 github.com/dequbed/rust-ldap,num_dependents_deps.dev:0 @@ -426061,6 +434624,10 @@ github.com/derbaeuerle/hapi-rest-routes,num_dependents_deps.dev:0 github.com/derbenoo/mailhog-awesome,num_dependents_deps.dev:0 github.com/derbenoo/ts-configurable,num_dependents_deps.dev:0 github.com/derberg/arghun,num_dependents_deps.dev:0 +github.com/derberg/code-of-conduct-sentiment-analysis-github-action, +github.com/derberg/copy-files-to-other-repositories, +github.com/derberg/manage-files-in-multiple-repositories, +github.com/derberg/npm-dependency-manager-for-your-github-org, github.com/derbronko/tilewall.ts,num_dependents_deps.dev:0 github.com/derbyjs/arraydiff,num_dependents_deps.dev:318 github.com/derbyjs/d-before-unload, @@ -426278,6 +434845,7 @@ github.com/derekmc/value-types-js,num_dependents_deps.dev:0 github.com/derekmorr/refined-anorm,num_dependents_deps.dev:0 github.com/derekmui/learning-git,num_dependents_deps.dev:0 github.com/derekn/matrixorbital-vfd, +github.com/derekn/s5cmd-action, github.com/dereknguyen269/custom_rails_settings_cached,num_dependents_deps.dev:0 github.com/dereknguyen269/format_phone_number,num_dependents_deps.dev:0 github.com/dereknguyen269/ragic_client,num_dependents_deps.dev:0 @@ -426293,6 +434861,7 @@ github.com/derekpeterson/generator-react-flask,num_dependents_deps.dev:0 github.com/derekpeterson/hubot-last-fm,num_dependents_deps.dev:0 github.com/derekpitt/enis,num_dependents_deps.dev:0 github.com/derekpovah/aeries-api,num_dependents_deps.dev:0 +github.com/derekprior/add-autoresponse, github.com/derekr/all-the-links,num_dependents_deps.dev:0 github.com/derekr/async-form, github.com/derekr/bubble-heads,num_dependents_deps.dev:0 @@ -426861,9 +435430,11 @@ github.com/dernasherbrezon/vue-openapi-bootstrap,num_dependents_deps.dev:0 github.com/dernasherbrezon/yacsv,num_dependents_deps.dev:0 github.com/derniercri/font4three,num_dependents_deps.dev:0 github.com/derniercri/fullsail-gem,num_dependents_deps.dev:0 +github.com/derniercri/lighthouse-ci-result-transformer, github.com/derniercri/react-components,num_dependents_deps.dev:0 github.com/derniercri/react-native-redux-i18n,num_dependents_deps.dev:0 github.com/derniercri/react-native-template-derniercri,num_dependents_deps.dev:0 +github.com/derniercri/scalingo-deploy, github.com/derniercri/snatch,num_dependents_deps.dev:0 github.com/derobertson/validation_decorators, github.com/derogab/people-finder, @@ -426879,7 +435450,9 @@ github.com/derozn/banterstudios,num_dependents_deps.dev:0 github.com/derp-io/derp-cli-nodejs,num_dependents_deps.dev:0 github.com/derpdead/vue-windowing,num_dependents_deps.dev:0 github.com/derphilipp/vagquery, +github.com/derpierre65/download-unity-build-action, github.com/derpierre65/laravel-debug-bar,num_dependents_deps.dev:0 +github.com/derpierre65/publish-changelog-action, github.com/derpierre65/vue-i18next,num_dependents_deps.dev:0 github.com/derpierre65/vue-router-middlewares,num_dependents_deps.dev:0 github.com/derpipy/derpipy, @@ -426918,6 +435491,7 @@ github.com/derrickpelletier/passport-strava,num_dependents_deps.dev:0 github.com/derrickpelletier/react-decision,num_dependents_deps.dev:0 github.com/derrickpelletier/react-download-svg,num_dependents_deps.dev:0 github.com/derrickpelletier/react-loading-overlay,num_dependents_deps.dev:34 +github.com/derrickpelletier/release-slack-notifier-action, github.com/derrickpelletier/res-async,num_dependents_deps.dev:0 github.com/derrickpelletier/soundex-encode,num_dependents_deps.dev:0 github.com/derricks/puzzle_helper,num_dependents_deps.dev:0 @@ -426978,12 +435552,14 @@ github.com/derveloper/trello-fast-card,num_dependents_deps.dev:0 github.com/dervisevic/diversity-push,num_dependents_deps.dev:0 github.com/dervos/create-react-app,num_dependents_deps.dev:0 github.com/dervus/assert-paranoid-equal,num_dependents_deps.dev:0 +github.com/derwehr/yarn-licenses-summary, github.com/derwentx/js-pixelblaze-expander,num_dependents_deps.dev:0 github.com/derwentx/wp-api-python, github.com/derwinsadiwa/react-components-collection,num_dependents_deps.dev:0 github.com/derwish-pro/colyseus-cli,num_dependents_deps.dev:0 github.com/derwish-pro/colyseus-monitor,num_dependents_deps.dev:0 github.com/derwu/teltonika-parser-ex,num_dependents_deps.dev:0 +github.com/deryck1228/publish-qb-code-page, github.com/derycktse/ejs-parser-loader, github.com/derycktse/treer, github.com/derzahal/cthulhu-cult-database, @@ -427005,9 +435581,11 @@ github.com/des-soft/des-gitstore,num_dependents_deps.dev:0 github.com/des-soft/md.daily,num_dependents_deps.dev:0 github.com/des2048/golang-learn,num_dependents_deps.dev:0 github.com/desa85/hubot-function,num_dependents_deps.dev:0 +github.com/desaialpesh/s3-upload-action, github.com/desaias/hubot-pingpong,num_dependents_deps.dev:0 github.com/desaias/hubot-rabbitmq,num_dependents_deps.dev:0 github.com/desaintflorent/tailwindcss-padding-safe,num_dependents_deps.dev:2 +github.com/desaintmartin/helm-kubeval-action, github.com/desaintvincent/bobecs,num_dependents_deps.dev:0 github.com/desaintvincent/gatsby-source-yuidoc,num_dependents_deps.dev:0 github.com/desaku/request-manager,num_dependents_deps.dev:0 @@ -427053,6 +435631,8 @@ github.com/desbma/canalplus, github.com/desbma/hddfancontrol, github.com/desbma/r128gain, github.com/desbma/sacad, +github.com/desbo/merge-pr-action, +github.com/desbravacloud/action-create-pull-requests, github.com/descarteslabs/descarteslabs-python, github.com/descco-group/admin-builder,num_dependents_deps.dev:0 github.com/descco-group/form-builder,num_dependents_deps.dev:0 @@ -427207,6 +435787,7 @@ github.com/deshima-dev/tiempo_deshima, github.com/deshmukh08/practice,num_dependents_deps.dev:0 github.com/desholmes/text-terminal,num_dependents_deps.dev:0 github.com/desicochrane/machine,num_dependents_deps.dev:0 +github.com/desiderati/github-action-pushover, github.com/desigmoid/gocrypto,num_dependents_deps.dev:0 github.com/design-automation/mobius-array, github.com/design-automation/mobius-csv,num_dependents_deps.dev:0 @@ -427370,6 +435951,7 @@ github.com/deskeen/web-builder-replace-constants,num_dependents_deps.dev:0 github.com/deskera/dwolla-go,num_dependents_deps.dev:0 github.com/deskfy/piexifjs,num_dependents_deps.dev:0 github.com/deskjet/chiptune2.js,num_dependents_deps.dev:0 +github.com/desklabs-creative/amplify-cli-action, github.com/desklabs/sfdx-plugin-scmt,num_dependents_deps.dev:0 github.com/desklamp-js/Desklamp.io,num_dependents_deps.dev:0 github.com/desklamp-js/desklamp, @@ -427591,6 +436173,7 @@ github.com/destrangis/davbackup, github.com/destrangis/httpuploader, github.com/destrangis/mkarchive, github.com/destrangis/urlmonitor, +github.com/destrex271/palm-log-analysis-action, github.com/destrianto/malas, github.com/destromas1/create-awesome-package,num_dependents_deps.dev:0 github.com/destromas1/csv-injection-protector,num_dependents_deps.dev:0 @@ -427645,6 +436228,7 @@ github.com/detectify/n5,num_dependents_deps.dev:0 github.com/detectify/nvdtools,num_dependents_deps.dev:0 github.com/detectify/page-fetch,num_dependents_deps.dev:0 github.com/detectify/ugly-duckling,num_dependents_deps.dev:0 +github.com/detectiveCrow/ai-review-action, github.com/detectiveHLH/koa2-response,num_dependents_deps.dev:0 github.com/detectiveHLH/venus,num_dependents_deps.dev:0 github.com/detectivecrow/study-go,num_dependents_deps.dev:0 @@ -427667,6 +436251,7 @@ github.com/determined-ai/devcluster, github.com/determined-ai/yogadl, github.com/deters/TidalPromise,num_dependents_deps.dev:0 github.com/dethcount/d5300-ptpip, +github.com/dethereum/github-actions-report-lcov, github.com/dethereum/react-loader-advanced,num_dependents_deps.dev:0 github.com/dethertech/dether.js,num_dependents_deps.dev:0 github.com/dethertech/dether.web3,num_dependents_deps.dev:0 @@ -427690,6 +436275,7 @@ github.com/detlus/stagen,num_dependents_deps.dev:0 github.com/detochko/my-own-tslint,num_dependents_deps.dev:0 github.com/detochko/ts-utils,num_dependents_deps.dev:0 github.com/detohm/koa-fcm,num_dependents_deps.dev:0 +github.com/detomarco/delete-comments, github.com/detomon/autocreate.js,num_dependents_deps.dev:0 github.com/detoner777/go-projects,num_dependents_deps.dev:0 github.com/detoner777/unique-random-docs, @@ -427768,6 +436354,7 @@ github.com/deusdat/arangomigo,num_dependents_deps.dev:0 github.com/deusdat/migrantverde,num_dependents_deps.dev:0 github.com/deusimardamiao/maxipago-sdk-nodejs,num_dependents_deps.dev:0 github.com/deusnefum/rasterm,num_dependents_deps.dev:0 +github.com/deusrobots/gh-action-flutter-pubspec-set-version, github.com/deusto-tech/django-orion-model, github.com/deut-erium/pyfractal, github.com/deuteronomy-works/pyffmpeg, @@ -427776,6 +436363,7 @@ github.com/deuteronomy-works/recursive_size, github.com/deuteronomy-works/soloman, github.com/deutschebank/symphony-java-client-parent,num_dependents_deps.dev:26 github.com/deutschmn/ndpretty, +github.com/deuzu/github-democrat-action, github.com/dev-124/dvm, github.com/dev-89/semantically, github.com/dev-Antish/deconsonant-anteneh,num_dependents_deps.dev:0 @@ -427802,6 +436390,8 @@ github.com/dev-blinov/vue-auth,num_dependents_deps.dev:0 github.com/dev-blog-directory/dev-blog-directory-readme-generator,num_dependents_deps.dev:0 github.com/dev-bridge-org/md-dynamic-forms, github.com/dev-bridge-org/ng-halfmoon, +github.com/dev-build-deploy/commit-me, +github.com/dev-build-deploy/reuse-me, github.com/dev-burbrink/pydslice, github.com/dev-by-gabriel/site-checker,num_dependents_deps.dev:0 github.com/dev-caf/ncmtig-stack,num_dependents_deps.dev:0 @@ -427831,6 +436421,8 @@ github.com/dev-cprice/parse-static-imports,num_dependents_deps.dev:1372 github.com/dev-cprice/storybook-addon-goto-iframe,num_dependents_deps.dev:0 github.com/dev-deepak-rawat/javascript-utils-lite, github.com/dev-devalore/eslint-config-devalore,num_dependents_deps.dev:0 +github.com/dev-drprasad/delete-older-releases, +github.com/dev-drprasad/delete-tag-and-release, github.com/dev-dylan/LogAssassin,num_dependents_deps.dev:0 github.com/dev-dylan/SAReactNativeHussar, github.com/dev-dylan/pyy-rn-lib,num_dependents_deps.dev:0 @@ -427859,6 +436451,8 @@ github.com/dev-gaur/mypluralize,num_dependents_deps.dev:0 github.com/dev-gm/vod-dl, github.com/dev-hana/gojobscrapper,num_dependents_deps.dev:0 github.com/dev-hana/hellogo,num_dependents_deps.dev:0 +github.com/dev-hanz-ops/install-gh-cli-action, +github.com/dev-hato/actions-diff-pr-management, github.com/dev-hato/hato-atama,num_dependents_deps.dev:0 github.com/dev-hunterco/polo-java,num_dependents_deps.dev:0 github.com/dev-hunterco/polo-nodejs, @@ -427970,6 +436564,7 @@ github.com/dev-tavern/vue2-validus,num_dependents_deps.dev:0 github.com/dev-techmoe/python-catconfig, github.com/dev-templates/go-cloud-run,num_dependents_deps.dev:0 github.com/dev-templates/googleauthenticator,num_dependents_deps.dev:0 +github.com/dev-this/satis-build, github.com/dev-thought/ng-deploy-it,num_dependents_deps.dev:0 github.com/dev-thought/ng-deploy-universal,num_dependents_deps.dev:0 github.com/dev-thought/nx-plugins,num_dependents_deps.dev:0 @@ -427990,6 +436585,8 @@ github.com/dev-two/watercress-react-native,num_dependents_deps.dev:0 github.com/dev-univers/devu-server, github.com/dev-usa/auth0,num_dependents_deps.dev:0 github.com/dev-vignesh/npm-card,num_dependents_deps.dev:0 +github.com/dev-vince/Javadoc-publisher.yml, +github.com/dev-vince/actions-publish-javadoc, github.com/dev-vortex/react-native-responsive-styles,num_dependents_deps.dev:0 github.com/dev-walletsafrica/wallets-africa-nodejs-sdk,num_dependents_deps.dev:0 github.com/dev-warner/fadin,num_dependents_deps.dev:0 @@ -428052,6 +436649,7 @@ github.com/dev9com/mvnwatcher,num_dependents_deps.dev:0 github.com/dev9com/test-webdrivers,num_dependents_deps.dev:0 github.com/devAbhijeet/sample,num_dependents_deps.dev:0 github.com/devAsterisk/mon-cache,num_dependents_deps.dev:0 +github.com/devAyushDubey/Ikaris-GPT, github.com/devBrian/react-native-dropdownalert,num_dependents_deps.dev:0 github.com/devBrian/react-native-simple-stepper,num_dependents_deps.dev:0 github.com/devCreater/censorify,num_dependents_deps.dev:0 @@ -428209,6 +436807,7 @@ github.com/devangpadhiyar/django-validators, github.com/devangpaliwal/echonews,num_dependents_deps.dev:0 github.com/devankestel/lowify, github.com/devanlooches/rustfetch,num_dependents_deps.dev:0 +github.com/devanoxLtd/revive-action, github.com/devanp92/aurelia-clipboard,num_dependents_deps.dev:0 github.com/devanp92/black-scholes-js,num_dependents_deps.dev:0 github.com/devanp92/cuckoo-filter-ts,num_dependents_deps.dev:0 @@ -428247,6 +436846,7 @@ github.com/devappd/emsdk-npm,num_dependents_deps.dev:2 github.com/devappd/libarchivejs,num_dependents_deps.dev:4 github.com/devappd/ninja-binaries,num_dependents_deps.dev:2 github.com/devaptas/ckeditor5-build-decoupled-document,num_dependents_deps.dev:0 +github.com/devaradhanm/sample-action, github.com/devarajchidambaram/get_package_version,num_dependents_deps.dev:0 github.com/devarajug/auto-update-dct, github.com/devarajug/check-techstack-vulnerabilities, @@ -428285,6 +436885,7 @@ github.com/devasx666/remotecmd,num_dependents_deps.dev:0 github.com/devat-youtuber/react-facebook-login-lite, github.com/devat-youtuber/react-google-login-lite, github.com/devatherock/jul-jsonformatter,num_dependents_deps.dev:2 +github.com/devatherock/minify-js, github.com/devatherock/simple-yaml,num_dependents_deps.dev:0 github.com/devatherock/vela-template-tester,num_dependents_deps.dev:0 github.com/devatwork/grunt-gluejs2,num_dependents_deps.dev:0 @@ -428307,6 +436908,7 @@ github.com/devbanhawy/golang,num_dependents_deps.dev:0 github.com/devbewill/typography-theme-otis,num_dependents_deps.dev:0 github.com/devbhuwan/generator-angular-npm-module-seed,num_dependents_deps.dev:0 github.com/devbhuwan/ng4,num_dependents_deps.dev:0 +github.com/devbijay/gh-deta-deploy, github.com/devbinesh/ishop,num_dependents_deps.dev:0 github.com/devbinesh/vendure,num_dependents_deps.dev:0 github.com/devbis/aioymaps, @@ -428322,6 +436924,8 @@ github.com/devbisme/pygmyhdl, github.com/devbisme/skidl, github.com/devbisme/zyc, github.com/devbk007/package, +github.com/devblackops/github-action-psscriptanalyzer, +github.com/devblackops/psake-github-action, github.com/devbliss/mongojack,num_dependents_deps.dev:8 github.com/devboard-io/dps422-rs,num_dependents_deps.dev:0 github.com/devboard-io/ssd1362,num_dependents_deps.dev:0 @@ -428354,7 +436958,16 @@ github.com/devboldly/react-use-window-global,num_dependents_deps.dev:0 github.com/devboldly/react-use-window-localstorage,num_dependents_deps.dev:0 github.com/devboldly/react-use-window-scroll,num_dependents_deps.dev:0 github.com/devboldly/react-use-window-sessionstorage,num_dependents_deps.dev:0 +github.com/devbotsxyz/carthage-bootstrap, +github.com/devbotsxyz/import-signing-certificate, github.com/devbotsxyz/toolkit,num_dependents_deps.dev:0 +github.com/devbotsxyz/xcode-archive, +github.com/devbotsxyz/xcode-build, +github.com/devbotsxyz/xcode-export-archive, +github.com/devbotsxyz/xcode-notarize, +github.com/devbotsxyz/xcode-select, +github.com/devbotsxyz/xcode-staple, +github.com/devbotsxyz/xcode-test, github.com/devboy/buildr_as3,num_dependents_deps.dev:0 github.com/devbranch-vadym/portainerssh,num_dependents_deps.dev:0 github.com/devbridge/BetterCMS,criticality_score:0.367970 @@ -428417,6 +437030,13 @@ github.com/devcon5io/common,num_dependents_deps.dev:0 github.com/devcon5io/parent,num_dependents_deps.dev:0 github.com/devconcept/multer-gridfs-storage,num_dependents_deps.dev:8 github.com/devconcept/ng-shopping-cart,num_dependents_deps.dev:0 +github.com/devcontainers-community/list-features, +github.com/devcontainers-community/publish-feature, +github.com/devcontainers-community/publish-template, +github.com/devcontainers-community/update-collection, +github.com/devcontainers-community/update-collection-readme, +github.com/devcontainers/action, +github.com/devcontainers/ci, github.com/devcontrol/vboxmanager,num_dependents_deps.dev:0 github.com/devcord/cordlr-cli, github.com/devcord/generator-cordlr-plugin,num_dependents_deps.dev:0 @@ -428568,6 +437188,7 @@ github.com/develhack/develhacked-lombok,num_dependents_deps.dev:0 github.com/develhopper/plogger, github.com/develiauk/shorturl,num_dependents_deps.dev:0 github.com/develjs/cimage,num_dependents_deps.dev:0 +github.com/devellany/send-mail, github.com/develmaycare/django-fixman, github.com/develmaycare/python-commonkit, github.com/develmaycare/python-scripttease, @@ -428664,6 +437285,7 @@ github.com/developeraccount2019/sass_server_mileclass_sdk_java_developer_open,nu github.com/developerdavi/insomnia-plugin-swagger-path-parameters,num_dependents_deps.dev:0 github.com/developerdavo/create-react-app,num_dependents_deps.dev:0 github.com/developerdayo/naked-form-select,num_dependents_deps.dev:0 +github.com/developerdenesh/pr_versioning, github.com/developerdizzle/hyperapp-mdc,num_dependents_deps.dev:0 github.com/developerdizzle/react-virtual-list,num_dependents_deps.dev:0 github.com/developerdizzle/stata, @@ -428703,8 +437325,10 @@ github.com/developerrajkumar4156/quote-generator,num_dependents_deps.dev:0 github.com/developers-against-repressions/case-212,criticality_score:0.337440 github.com/developers-cash/cashid-js,num_dependents_deps.dev:0 github.com/developers-cash/libcash-js,num_dependents_deps.dev:0 +github.com/developers-cosmos/Auto-ML-Classifier, github.com/developers-vitta/awsenv,num_dependents_deps.dev:0 github.com/developers-vitta/nodenab,num_dependents_deps.dev:0 +github.com/developersIndia/myosc, github.com/developersdo/sdq,num_dependents_deps.dev:0 github.com/developersociety/blanc-basic-assets, github.com/developersociety/blanc-contentfiles, @@ -428864,6 +437488,7 @@ github.com/developmatt/grace-menu-plugin,num_dependents_deps.dev:0 github.com/developmatt/hoverblock,num_dependents_deps.dev:0 github.com/developmatt/jsmask,num_dependents_deps.dev:0 github.com/developmatt/jsmask-plugin,num_dependents_deps.dev:0 +github.com/development-and-dinosaurs/github-actions-aws-cdk, github.com/development-hobbies/encrypt,num_dependents_deps.dev:0 github.com/developmentseed/backbone-couch,num_dependents_deps.dev:0 github.com/developmentseed/cogeo-mosaic, @@ -428974,6 +437599,7 @@ github.com/devery/deveryjs,num_dependents_deps.dev:0 github.com/devery/eveplate,num_dependents_deps.dev:0 github.com/devesh2108/calc,num_dependents_deps.dev:0 github.com/devesh2108/deveshcard,num_dependents_deps.dev:0 +github.com/devesharp/ds-action-notify, github.com/deveshgoyal/flash-express,num_dependents_deps.dev:0 github.com/deveshk0/cert-manager-webhook-dode,num_dependents_deps.dev:0 github.com/deveshmishra34/penpencil-app-update,num_dependents_deps.dev:0 @@ -429070,6 +437696,7 @@ github.com/devfile/integration-tests,num_dependents_deps.dev:0 github.com/devfile/library,num_dependents_deps.dev:10 github.com/devfile/registry-operator,num_dependents_deps.dev:0 github.com/devfile/registry-support,num_dependents_deps.dev:16 +github.com/devfle/readme-level-up, github.com/devfleet/awesome-eve,criticality_score:0.315440 github.com/devfloors/k8s,num_dependents_deps.dev:0 github.com/devfolioco/react-copy-mailto,num_dependents_deps.dev:0 @@ -429114,12 +437741,15 @@ github.com/devgeniem/react-native-jigsaw,num_dependents_deps.dev:0 github.com/devgianlu/Aria2App,criticality_score:0.333650 github.com/devgianlu/http-profiling-go,num_dependents_deps.dev:0 github.com/devgianlu/zeroconf-java,num_dependents_deps.dev:12 +github.com/devgioele/fabriko, +github.com/devgioele/terraform-state-artifact, github.com/devgit072/production-ready-rest-api-in-go,num_dependents_deps.dev:0 github.com/devgittry/grunt-file-rename,num_dependents_deps.dev:0 github.com/devgoeth/ethers.js,num_dependents_deps.dev:20 github.com/devgoeth/simple-uniswap-bsc-sdk,num_dependents_deps.dev:0 github.com/devgony/learngo,num_dependents_deps.dev:0 github.com/devgoodies/temp-id,num_dependents_deps.dev:0 +github.com/devgrid-inc/devgrid-cli-action, github.com/devgru/color-descriptor,num_dependents_deps.dev:0 github.com/devgru/errbacker,num_dependents_deps.dev:0 github.com/devgru/ffp,num_dependents_deps.dev:0 @@ -429142,6 +437772,7 @@ github.com/devguardio/thinfoil,num_dependents_deps.dev:0 github.com/devgum/leetcode_tester, github.com/devgum/poker, github.com/devgunho/to_be_a_gopher,num_dependents_deps.dev:0 +github.com/devguysfr/action-auto-deployment, github.com/devhacker520/harbors,num_dependents_deps.dev:0 github.com/devhammed/devhammed,num_dependents_deps.dev:0 github.com/devhammed/dp-generator,num_dependents_deps.dev:0 @@ -429171,6 +437802,7 @@ github.com/devhg/go-gin-demo,num_dependents_deps.dev:0 github.com/devhg/gocache,num_dependents_deps.dev:0 github.com/devhg/learngo,num_dependents_deps.dev:0 github.com/devhmac/lotideLibrary,num_dependents_deps.dev:0 +github.com/devholic/nix-quick-install-action, github.com/devhousellc/mongodb-migrate,num_dependents_deps.dev:0 github.com/devhousellc/poeditor-sync,num_dependents_deps.dev:0 github.com/devhqllc/token-manager,num_dependents_deps.dev:0 @@ -429235,10 +437867,12 @@ github.com/devicetree-org/devicetree-specification,criticality_score:0.399070 github.com/devicetree-org/dt-schema, github.com/devicexx/sdk-for-nodejs, github.com/devicons/devicon,criticality_score:0.529680 +github.com/devicons/public-upload-to-imgur, github.com/devict/hacktoberfest,num_dependents_deps.dev:0 github.com/devie2020/cvve,num_dependents_deps.dev:0 github.com/devigned/amqp,num_dependents_deps.dev:0 github.com/devigned/buffalo-service-bus-worker,num_dependents_deps.dev:0 +github.com/devigned/go-twitter-action, github.com/devigned/pub,num_dependents_deps.dev:0 github.com/devigned/tab,num_dependents_deps.dev:347 github.com/devignesh/go_todo_app,num_dependents_deps.dev:0 @@ -429334,6 +437968,8 @@ github.com/devindex/lucid-mongo, github.com/devindex/short-mongo-id,num_dependents_deps.dev:0 github.com/devindex/vue-mask,num_dependents_deps.dev:0 github.com/devindex/vue-spectre,num_dependents_deps.dev:0 +github.com/devindford/Append_PR_Comment, +github.com/devindi/action-detekt, github.com/devindia/TextWrapper,num_dependents_deps.dev:0 github.com/devindo/replaced, github.com/devindon/koa-backend-server,num_dependents_deps.dev:0 @@ -429505,8 +438141,11 @@ github.com/devjin0617/vue2-admin-lte,num_dependents_deps.dev:0 github.com/devjiro76/coolsole,num_dependents_deps.dev:0 github.com/devjmetivier/hookit,num_dependents_deps.dev:0 github.com/devjmetivier/hooky,num_dependents_deps.dev:0 +github.com/devjoca/standardjs-action, github.com/devjoe/gae-dev-helper, github.com/devjoes/github-runner-autoscaler,num_dependents_deps.dev:0 +github.com/devjoes/kustomize-action, +github.com/devjoes/pr-automation, github.com/devjohneniola/clean-request,num_dependents_deps.dev:0 github.com/devjohneniola/jrscripts, github.com/devjohneniola/peto,num_dependents_deps.dev:0 @@ -429518,9 +438157,11 @@ github.com/devjs/hmu-npm, github.com/devjs/hmu-slack,num_dependents_deps.dev:0 github.com/devjunkORG/num2word,num_dependents_deps.dev:0 github.com/devkafee/goarea,num_dependents_deps.dev:0 +github.com/devkanro/setup-statusfy, github.com/devkanro/sisyphus,num_dependents_deps.dev:44 github.com/devkeravi/chatapp,num_dependents_deps.dev:0 github.com/devkeravi/kakaoweb,num_dependents_deps.dev:0 +github.com/devkeydet/action-environment-queue, github.com/devkid-til/0-learngo,num_dependents_deps.dev:0 github.com/devkingsejong/ngspice-json-cli, github.com/devkingsejong/python-PowerNad, @@ -429552,6 +438193,7 @@ github.com/devktor/micropayments.js,num_dependents_deps.dev:0 github.com/devkudasov/electron-starter-kit,num_dependents_deps.dev:0 github.com/devkumarL/springBootUtility,num_dependents_deps.dev:0 github.com/devkumarL/testMaven,num_dependents_deps.dev:0 +github.com/devkyt/slack-send-msg, github.com/devl00p/tekover, github.com/devlab1826/DLServerCore,num_dependents_deps.dev:0 github.com/devlab1826/DLServerLogger,num_dependents_deps.dev:0 @@ -429608,6 +438250,7 @@ github.com/devlimelabs/ngx-state,num_dependents_deps.dev:0 github.com/devlina21/dbaner-kingdom,num_dependents_deps.dev:0 github.com/devlinb/react-native-selection-group,num_dependents_deps.dev:0 github.com/devlinb/react-native-simple-survey,num_dependents_deps.dev:0 +github.com/devlinjunker/action-remove-labels, github.com/devlint/gridlex,num_dependents_deps.dev:4 github.com/devlio-team/react-mailto.js,num_dependents_deps.dev:0 github.com/devlita/backend,num_dependents_deps.dev:0 @@ -429621,6 +438264,9 @@ github.com/devloco/react-scripts-wptheme-utils,num_dependents_deps.dev:0 github.com/devlog42/qtgrid, github.com/devloop01/soft-ripple-js,num_dependents_deps.dev:0 github.com/devlooped/GitInfo,criticality_score:0.356200 +github.com/devlooped/actions-bot, +github.com/devlooped/actions-includes, +github.com/devlooped/actions-sponsor, github.com/devlop-ab/komponent,num_dependents_deps.dev:0 github.com/devlop-ab/reset,num_dependents_deps.dev:0 github.com/devlop-ab/tap,num_dependents_deps.dev:0 @@ -429672,7 +438318,10 @@ github.com/devmark/angular-slick-carousel,num_dependents_deps.dev:0 github.com/devmark/input-check,num_dependents_deps.dev:0 github.com/devmark/ngx-jsoneditor,num_dependents_deps.dev:0 github.com/devmark/ngx-slick,num_dependents_deps.dev:0 +github.com/devmasx/brakeman-linter-action, github.com/devmasx/cached-docker-build-push,num_dependents_deps.dev:0 +github.com/devmasx/coverage-check-action, +github.com/devmasx/merge-branch, github.com/devmatic-it/debcvescan,num_dependents_deps.dev:0 github.com/devmatic-it/taralizer,num_dependents_deps.dev:0 github.com/devmatteini/forecastpy, @@ -429705,6 +438354,7 @@ github.com/devmetal/simple-graphql-assembler,num_dependents_deps.dev:0 github.com/devmetrics/devmetrics-nodejs,num_dependents_deps.dev:0 github.com/devmetrics/devmetrics-nodejs-core,num_dependents_deps.dev:0 github.com/devmigi/go-todo-app,num_dependents_deps.dev:0 +github.com/devmiguelangel/gh-actions-custom, github.com/devmiguelferrer/easymonitoring,num_dependents_deps.dev:0 github.com/devmiguelferrer/multithreading,num_dependents_deps.dev:0 github.com/devmikh/lotide,num_dependents_deps.dev:0 @@ -429851,6 +438501,7 @@ github.com/devoncrouse/node-itwatchdogs,num_dependents_deps.dev:0 github.com/devoncrouse/node-kafka-zookeeper,num_dependents_deps.dev:0 github.com/devoncrouse/node-zookeeper,num_dependents_deps.dev:0 github.com/devone-pl/dict-extend-fuzzy, +github.com/devonfw-actions/java-maven-setup, github.com/devonfw/cicdgen,num_dependents_deps.dev:0 github.com/devonfw/devon,num_dependents_deps.dev:0 github.com/devonfw/devon-docgen,num_dependents_deps.dev:0 @@ -429917,8 +438568,23 @@ github.com/devop/hrdns, github.com/devoperate/chronos, github.com/devopness/devopness-sdk-js,num_dependents_deps.dev:0 github.com/devopology/tools,num_dependents_deps.dev:0 +github.com/devops-actions/action-get-tag, +github.com/devops-actions/actionlint, +github.com/devops-actions/docker-action-demo2, +github.com/devops-actions/issue-comment-tag, +github.com/devops-actions/json-to-file, +github.com/devops-actions/load-available-actions, +github.com/devops-actions/load-runner-info, +github.com/devops-actions/load-used-actions, github.com/devops-at-home/cdk-iot-core-certificates,num_dependents_deps.dev:0 github.com/devops-genuine/opentelemetry-collector-contrib,num_dependents_deps.dev:0 +github.com/devops-hemant/variable-substitution, +github.com/devops-infra/action-commit-push, +github.com/devops-infra/action-format-hcl, +github.com/devops-infra/action-pull-request, +github.com/devops-infra/action-terraform-copy-vars, +github.com/devops-infra/action-terraform-validate, +github.com/devops-infra/action-tflint, github.com/devops-israel/gesund,num_dependents_deps.dev:0 github.com/devops-israel/gesund-http,num_dependents_deps.dev:0 github.com/devops-israel/gesund-mongo,num_dependents_deps.dev:0 @@ -429949,6 +438615,8 @@ github.com/devops-works/scan-exporter,num_dependents_deps.dev:0 github.com/devops-works/slowql,num_dependents_deps.dev:0 github.com/devops-x/egg-jenkins,num_dependents_deps.dev:0 github.com/devops-x/egg-kubernetes,num_dependents_deps.dev:0 +github.com/devopsapp84/chart-releaser, +github.com/devopsapp84/ghaK3D, github.com/devopsartfactory/act,num_dependents_deps.dev:0 github.com/devopsartfactory/escli,num_dependents_deps.dev:0 github.com/devopsartfactory/goployer,num_dependents_deps.dev:0 @@ -429965,6 +438633,8 @@ github.com/devopsconsulting/vdt.simpleaptrepo, github.com/devopsconsulting/vdt.version, github.com/devopsconsulting/vdt.versionplugin.hotfix, github.com/devopsday-dl/demo,num_dependents_deps.dev:0 +github.com/devopsenggineer/hello-world-docker-action, +github.com/devopsenggineer/test-action, github.com/devopsext/dd-trace-go,num_dependents_deps.dev:0 github.com/devopsext/events,num_dependents_deps.dev:0 github.com/devopsext/sre,num_dependents_deps.dev:0 @@ -430015,6 +438685,7 @@ github.com/devopsix/hamcrest-mail,num_dependents_deps.dev:0 github.com/devopsleto/simple-go-serverr,num_dependents_deps.dev:0 github.com/devopsmakers/gh-cards,num_dependents_deps.dev:0 github.com/devopsmakers/goss,num_dependents_deps.dev:0 +github.com/devopsmakers/pr-name-generator-action, github.com/devopsmakers/python-grafannotate, github.com/devopsmakers/xterrafile,num_dependents_deps.dev:0 github.com/devopsni/gtfsni, @@ -430031,12 +438702,14 @@ github.com/devopstoday11/sigrun,num_dependents_deps.dev:0 github.com/devopstoday11/tarian,num_dependents_deps.dev:0 github.com/devopstotest/learning-git,num_dependents_deps.dev:0 github.com/devopsventures/lambdatools,num_dependents_deps.dev:0 +github.com/devopsx/gha-jjb, github.com/devopsysadmin/ansible-bundle, github.com/devopszcom/django-scrapyd, github.com/devoptix/gelrpc-node,num_dependents_deps.dev:0 github.com/devoptix/gulp-nunjucks-api,num_dependents_deps.dev:0 github.com/devoptix/less.js-middleware,num_dependents_deps.dev:0 github.com/devoptix/wintersmith-nunjucka,num_dependents_deps.dev:0 +github.com/devopulence/content-javascript-actions-app, github.com/devopvoid/webrtc-java,num_dependents_deps.dev:12 github.com/devopyio/zabbix-alertmanager,num_dependents_deps.dev:0 github.com/devopyio/zabsnd,num_dependents_deps.dev:0 @@ -430044,7 +438717,9 @@ github.com/devor/covjs,num_dependents_deps.dev:0 github.com/devor/generator-babel-browserify,num_dependents_deps.dev:0 github.com/devor/jscookie,num_dependents_deps.dev:0 github.com/devorama-app/shell-ts,num_dependents_deps.dev:0 +github.com/devorbitus/renconstruct-build-action, github.com/devorbitus/vnproofer,num_dependents_deps.dev:0 +github.com/devorbitus/yq-action-output, github.com/devorein/go-by-examples,num_dependents_deps.dev:0 github.com/devorel/scaleway-s3,num_dependents_deps.dev:0 github.com/devork/grava,num_dependents_deps.dev:0 @@ -430243,6 +438918,7 @@ github.com/devsahu99/hybrid_recommender, github.com/devsahu99/mlh, github.com/devsaik/offers-generator,num_dependents_deps.dev:0 github.com/devsamuelv/discord-rich-presence, +github.com/devsamuelv/secret_existence, github.com/devsandboxportfolio/devsandbox-authenticate, github.com/devsangho/useCopy,num_dependents_deps.dev:0 github.com/devsarmico/react-playlist-player,num_dependents_deps.dev:0 @@ -430252,6 +438928,7 @@ github.com/devsdmf/cep-cli,num_dependents_deps.dev:0 github.com/devsdmf/correios-python-sdk, github.com/devsdmf/lucasfy,num_dependents_deps.dev:0 github.com/devsecdan/mousetraps, +github.com/devsectop/tf-via-pr-comments, github.com/devsenexx/gtxamqp, github.com/devsetgo/dev_com_lib, github.com/devsf/georssy, @@ -430335,6 +439012,7 @@ github.com/devsonket/devsonket.github.io,criticality_score:0.471390 github.com/devsonuyadav/react-native-cool-components.github.io,num_dependents_deps.dev:0 github.com/devsourceid/nuxt-cloudflare-analytics,num_dependents_deps.dev:0 github.com/devsourceid/nuxt-linkedin-insight-tag,num_dependents_deps.dev:0 +github.com/devsoutinho/flutter-composite-action, github.com/devspace-cloud/devspace,"criticality_score:0.564650,num_dependents_deps.dev:0" github.com/devspace-cloud/quickstart-golang,num_dependents_deps.dev:0 github.com/devspace19/induxion,num_dependents_deps.dev:0 @@ -430441,6 +439119,7 @@ github.com/devtin/rollup-plugin-ava-test-example,num_dependents_deps.dev:0 github.com/devtin/sass-vars-to-json,num_dependents_deps.dev:0 github.com/devtin/schema-validator,num_dependents_deps.dev:0 github.com/devtin/webhook-config-manager,num_dependents_deps.dev:0 +github.com/devtk0582/slack-post-action, github.com/devtobo/cordova-plugin-zip,num_dependents_deps.dev:0 github.com/devtodev-analytics/android-sdk,num_dependents_deps.dev:0 github.com/devtoni/ginit-node-cli,num_dependents_deps.dev:0 @@ -430504,12 +439183,15 @@ github.com/devuo/reload,num_dependents_deps.dev:0 github.com/devupx/vue-auth,num_dependents_deps.dev:0 github.com/devurandom/libdrm-rs,num_dependents_deps.dev:0 github.com/devurandom/libdrm-sys-rs,num_dependents_deps.dev:0 +github.com/devussy/AppCenter-Distribute-Github-Action, +github.com/devussy/upload-google-play, github.com/devuxd/SeeCodeRun,num_dependents_deps.dev:0 github.com/devvikash/vkc-ng-grid,num_dependents_deps.dev:0 github.com/devvmh/redux-crud-store, github.com/devvorld/react-native-img-placeholder,num_dependents_deps.dev:0 github.com/devvorld/react-native-text-thumbnail,num_dependents_deps.dev:0 github.com/devvpm/Spoon-Knife, +github.com/devvspaces/merge-branches, github.com/devwaheed/ngx-em,num_dependents_deps.dev:0 github.com/devwanda/iavl,num_dependents_deps.dev:0 github.com/devwax/react-instantsearch-meteor, @@ -430775,6 +439457,7 @@ github.com/dexpress-dev/de-streamdelay,num_dependents_deps.dev:0 github.com/dexpress-dev/deplayer,num_dependents_deps.dev:0 github.com/dexpress-dev/destreamcheck,num_dependents_deps.dev:0 github.com/dextar1/grunt-jsvalidate,num_dependents_deps.dev:0 +github.com/dexter-stpierre/diiggo-to-readwise, github.com/dexter0201/nodejs-framework,num_dependents_deps.dev:0 github.com/dexter0201/nodejs-linked-list,num_dependents_deps.dev:8 github.com/dexter0201/serverless-injection-plugin,num_dependents_deps.dev:0 @@ -430830,6 +439513,7 @@ github.com/dexturr/handlebars-dependency-builder,num_dependents_deps.dev:0 github.com/dexturr/noti-fire,num_dependents_deps.dev:0 github.com/dexus/node-sofort,num_dependents_deps.dev:0 github.com/dexviewlab/kdex-go-proto,num_dependents_deps.dev:0 +github.com/dexwritescode/release-on-merge-action, github.com/deyaeddin/cert-manager-webhook-hetzner,num_dependents_deps.dev:0 github.com/deybith/react-yii2-tools,num_dependents_deps.dev:0 github.com/deybvagm/activation, @@ -430915,6 +439599,8 @@ github.com/dfahlander/remotable,num_dependents_deps.dev:0 github.com/dfahlander/typeson,num_dependents_deps.dev:302 github.com/dfahlander/typeson-registry,num_dependents_deps.dev:242 github.com/dfajardodev/css-min-cmd,num_dependents_deps.dev:0 +github.com/dfalgout/fabric-project-data, +github.com/dfalgout/test-fabric-gh, github.com/dfang/qor-demo,num_dependents_deps.dev:0 github.com/dfang/static-server,num_dependents_deps.dev:0 github.com/dfaust/repeated-assert,num_dependents_deps.dev:0 @@ -431101,6 +439787,7 @@ github.com/dfellis/parallel-queue-flow,num_dependents_deps.dev:0 github.com/dfellis/queue-flow, github.com/dfeneyrou/palanteer, github.com/dfense/tslab,num_dependents_deps.dev:0 +github.com/dfenske/poll-for-deployment-action, github.com/dfenster/fnFlow,num_dependents_deps.dev:0 github.com/dfenstermaker/angular2-inline-template-style,num_dependents_deps.dev:0 github.com/dfenstermaker/flagkit-web,num_dependents_deps.dev:0 @@ -431258,7 +439945,19 @@ github.com/dflemstr/vcdiff-rs,num_dependents_deps.dev:0 github.com/dflemstr/wifi-nina,num_dependents_deps.dev:0 github.com/dflex-js/dflex, github.com/dflook/cloudformation-dns-certificate, +github.com/dflook/configure-oidc-aws-credentials, github.com/dflook/python-minifier, +github.com/dflook/terraform-apply, +github.com/dflook/terraform-check, +github.com/dflook/terraform-destroy-workspace, +github.com/dflook/terraform-fmt, +github.com/dflook/terraform-fmt-check, +github.com/dflook/terraform-new-workspace, +github.com/dflook/terraform-output, +github.com/dflook/terraform-plan, +github.com/dflook/terraform-remote-state, +github.com/dflook/terraform-validate, +github.com/dflook/terraform-version, github.com/dflor003/graphql-anywhere-mongodb,num_dependents_deps.dev:0 github.com/dflor003/graphql-anywhere-mongodb-express,num_dependents_deps.dev:0 github.com/dflor003/graphql-anywhere-mongodb-middleware-express,num_dependents_deps.dev:0 @@ -431280,6 +439979,7 @@ github.com/dflupu/cryptoyaml3, github.com/dflupu/inet_ipv4,num_dependents_deps.dev:4 github.com/dflupu/process-cursor-concurrently,num_dependents_deps.dev:0 github.com/dflupu/tomorrow3, +github.com/dflydev/check-runs-action, github.com/dflydev/dflydev-dot-access-data,criticality_score:0.350370 github.com/dflynn15/gulp-jasmine-phantom,num_dependents_deps.dev:0 github.com/dfm/acor, @@ -431295,6 +439995,7 @@ github.com/dfm/dominion, github.com/dfm/emcee,criticality_score:0.504140 github.com/dfm/exoarch, github.com/dfm/feedfinder2, +github.com/dfm/force-push-branch-action, github.com/dfm/ganymede-ext,num_dependents_deps.dev:0 github.com/dfm/genrp, github.com/dfm/george, @@ -431416,6 +440117,7 @@ github.com/dfreeman/semantic-release-playground,num_dependents_deps.dev:0 github.com/dfreeman/stagehand,num_dependents_deps.dev:467 github.com/dfreer/startbootstrap-sb-admin-2,num_dependents_deps.dev:0 github.com/dfreerksen/undercarriage,num_dependents_deps.dev:0 +github.com/dfreilich/pack-action, github.com/dfreire/decouplejs,num_dependents_deps.dev:0 github.com/dfreire/the-auth,num_dependents_deps.dev:0 github.com/dfreire/the-deltas,num_dependents_deps.dev:0 @@ -431612,6 +440314,7 @@ github.com/dgeibi/wikic,num_dependents_deps.dev:0 github.com/dgeibi/wtf-webpack-config,num_dependents_deps.dev:0 github.com/dgelessus/python-rezparser, github.com/dgelessus/python-rsrcfork, +github.com/dgellow/action-dscanner, github.com/dgellow/babel-plugin-test-internal,num_dependents_deps.dev:0 github.com/dgellow/bailer,num_dependents_deps.dev:0 github.com/dgellow/neocolor,num_dependents_deps.dev:0 @@ -431798,6 +440501,7 @@ github.com/dgnsrekt/nitter_scraper, github.com/dgnsrekt/requests-whaor, github.com/dgnsrekt/tradingview-options-reticle, github.com/dgnsrekt/yfs, +github.com/dgocoder/jira-notify, github.com/dgodd/cflocal,num_dependents_deps.dev:0 github.com/dgodd/cfwindowsstager,num_dependents_deps.dev:0 github.com/dgodd/concourse-summary-gl,num_dependents_deps.dev:0 @@ -431950,6 +440654,8 @@ github.com/dgreif/ring-alarm,num_dependents_deps.dev:0 github.com/dgrekov/jasmine_eventually,num_dependents_deps.dev:0 github.com/dgrekov/karma-jasmine-eventually,num_dependents_deps.dev:0 github.com/dgrethlein/RubixCube, +github.com/dgrezza/action-eks-helm-deploy, +github.com/dgrezza/action-gcp-helm-deploy, github.com/dgriffen/flif.rs,num_dependents_deps.dev:0 github.com/dgriffen/wearte,num_dependents_deps.dev:0 github.com/dgrigg/hugo-lunr,num_dependents_deps.dev:0 @@ -432019,6 +440725,7 @@ github.com/dgs3/json_fnl, github.com/dgsmith2/angularjs-template-loader,num_dependents_deps.dev:0 github.com/dgt41/bootstrap-components-as-custom-elements,num_dependents_deps.dev:0 github.com/dgt41/bs4-custom-elements, +github.com/dgteixeira/pr-status-giphy-action, github.com/dgtm/log360,num_dependents_deps.dev:0 github.com/dgtocc/auth,num_dependents_deps.dev:0 github.com/dgtocc/gag,num_dependents_deps.dev:0 @@ -432038,6 +440745,7 @@ github.com/dgunter/parsebrologs, github.com/dgunter/parsezeeklogs, github.com/dguo/awair-js,num_dependents_deps.dev:0 github.com/dguo/blood-moon,num_dependents_deps.dev:0 +github.com/dguo/check-author-and-committer-action, github.com/dguo/churn, github.com/dguo/sleep-ts,num_dependents_deps.dev:0 github.com/dguo/strsim-rs,"Google,num_dependents_deps.dev:12914" @@ -432069,6 +440777,7 @@ github.com/dgwight/nuxt-stripe, github.com/dgwyer/create-wp-block,num_dependents_deps.dev:0 github.com/dgwyer/create-wp-plugin,num_dependents_deps.dev:0 github.com/dgwynne/node-snmp,num_dependents_deps.dev:0 +github.com/dgzlopes/asciicast-to-gif-action, github.com/dgzlopes/cloud-detect, github.com/dgzlopes/python-liftbridge, github.com/dgzlopes/tcp-latency, @@ -432113,6 +440822,7 @@ github.com/dhaase-de/dito, github.com/dhab/react-snapchat-pixel,num_dependents_deps.dev:0 github.com/dhable/mini-auth,num_dependents_deps.dev:0 github.com/dhadka/actions-starter, +github.com/dhadka/ezcache, github.com/dhadka/stockpile,num_dependents_deps.dev:0 github.com/dhadka/stockpile-copy,num_dependents_deps.dev:0 github.com/dhaeb/Jegex-Validator,num_dependents_deps.dev:0 @@ -432148,6 +440858,8 @@ github.com/dhakiki/oapispec, github.com/dhall-lang/dhall-haskell,criticality_score:0.603890 github.com/dhall-lang/dhall-kubernetes,criticality_score:0.455560 github.com/dhall-lang/dhall-lang,criticality_score:0.579380 +github.com/dhall-lang/setup-dhall, +github.com/dhall-validator/action, github.com/dhallgb/node-red-contrib-seneye,num_dependents_deps.dev:0 github.com/dhalucario/kr-ba-slider,num_dependents_deps.dev:0 github.com/dham/classroom-tool, @@ -432212,6 +440924,7 @@ github.com/dhanusaputra/somewhat-server,num_dependents_deps.dev:0 github.com/dhanushkac/react-terminal-command,num_dependents_deps.dev:0 github.com/dhanushsr/clockin,num_dependents_deps.dev:0 github.com/dhanushuUzumaki/generator-uzumaki,num_dependents_deps.dev:0 +github.com/dhanvi/import-env-from-pr-comment, github.com/dhanyakr/dkr-test,num_dependents_deps.dev:0 github.com/dhanyalvian/go-say-hello,num_dependents_deps.dev:0 github.com/dhanyn10/bootsalert,num_dependents_deps.dev:0 @@ -432480,6 +441193,7 @@ github.com/dherman/samo,num_dependents_deps.dev:0 github.com/dherman/silent-updater,num_dependents_deps.dev:0 github.com/dherman/sm.js,num_dependents_deps.dev:2 github.com/dherman/suspicion,num_dependents_deps.dev:0 +github.com/dherman/target-matrix, github.com/dherman/tristate,num_dependents_deps.dev:0 github.com/dherman/ts-dict,num_dependents_deps.dev:0 github.com/dherman/ts-typed-json,num_dependents_deps.dev:628 @@ -432520,6 +441234,7 @@ github.com/dhess/lobbyists, github.com/dhesse/Git-Track, github.com/dhesse/py-uwerr, github.com/dhessler/crypto-secure-shuffle,num_dependents_deps.dev:0 +github.com/dhet/scan-docker-tags-action, github.com/dhetporn/devops-resource,num_dependents_deps.dev:0 github.com/dhetporn/gitops-resource,num_dependents_deps.dev:0 github.com/dhetporn/resource,num_dependents_deps.dev:0 @@ -432672,14 +441387,17 @@ github.com/dhis2/ui-core,num_dependents_deps.dev:228 github.com/dhis2/ui-forms,num_dependents_deps.dev:22 github.com/dhis2/ui-widgets,num_dependents_deps.dev:32 github.com/dhis2designlab/scp-component-test-library, +github.com/dhiwakarK/listartifactsaction, github.com/dhjack/golang,num_dependents_deps.dev:0 github.com/dhjohn0/check-yourself,num_dependents_deps.dev:0 github.com/dhk1349/League_of_Legend_4U, github.com/dhk1349/Volavola, github.com/dhkatz/cfl-converter,num_dependents_deps.dev:0 +github.com/dhkatz/get-version-action, github.com/dhkatz/gulp-ts-alias,num_dependents_deps.dev:0 github.com/dhkatz/json-ts, github.com/dhkatz/json-typescript-mapper,num_dependents_deps.dev:0 +github.com/dhkatz/steam-download, github.com/dhkim09a/pyutil, github.com/dhkim09a/yaplot, github.com/dhkim1211/passport-myminifactory,num_dependents_deps.dev:0 @@ -432756,6 +441474,8 @@ github.com/dholland/cra-template-vschool,num_dependents_deps.dev:0 github.com/dhollenbeck/codemirror-examples,num_dependents_deps.dev:0 github.com/dhollenbeck/handlebars-error-parser,num_dependents_deps.dev:0 github.com/dhollenbeck/pdftk-bin,num_dependents_deps.dev:0 +github.com/dhollerbach/actions.send-message-to-ms-teams, +github.com/dhollerbach/actions.serverless-with-python-requirements, github.com/dholm/FlowUI, github.com/dholm/simpleguitk, github.com/dholroyd/adts-reader,num_dependents_deps.dev:0 @@ -432868,6 +441588,7 @@ github.com/dhruvasagar/vim-table-mode,criticality_score:0.399860 github.com/dhruvbird/dns-srv,num_dependents_deps.dev:1 github.com/dhruvbird/fs-notifier, github.com/dhruvbird/http-sync,num_dependents_deps.dev:48 +github.com/dhruvdakoria/custom-github-action, github.com/dhruvdakoria/dhruv-npm-package,num_dependents_deps.dev:0 github.com/dhruvdcoder/wandb-allennlp, github.com/dhruvdcoder/wandb-utils, @@ -432882,8 +441603,10 @@ github.com/dhruvio/js_pyramid,num_dependents_deps.dev:0 github.com/dhruvio/js_unidirectional,num_dependents_deps.dev:0 github.com/dhruvit-r/node-pathwatcher,num_dependents_deps.dev:0 github.com/dhruvkar/tracktrace, +github.com/dhruvkb/issue-projector, github.com/dhruvkb/pls, github.com/dhruvkb/seeelaye,num_dependents_deps.dev:0 +github.com/dhruvkelawala/waka-readme-stats, github.com/dhruvkhanna38/shadowizard,num_dependents_deps.dev:0 github.com/dhruvmanila/remove-print-statements, github.com/dhruvmisra/vue-event-card,num_dependents_deps.dev:0 @@ -432904,6 +441627,7 @@ github.com/dhryn-public/ts-gcp-firestore,num_dependents_deps.dev:0 github.com/dhryn-public/ts-odm,num_dependents_deps.dev:0 github.com/dhs-gov/dqa, github.com/dhs-gov/sentop, +github.com/dhsathiya/gitleaks-action, github.com/dhsc/censorify_xyz,num_dependents_deps.dev:0 github.com/dhsdshdhk/tweetwatcher, github.com/dhso/hapi-wechat,num_dependents_deps.dev:0 @@ -432970,6 +441694,7 @@ github.com/dhyeythumar/mlagents-video-streamer, github.com/dhylands/dh-drone-stm32f4-utils,num_dependents_deps.dev:0 github.com/dhylands/rshell, github.com/dhylands/serial-monitor,num_dependents_deps.dev:0 +github.com/di-graph/release-info-action, github.com/di-ng/redux-combine-reducers-immutable,num_dependents_deps.dev:0 github.com/di-ng/redux-saga-debounced-channel,num_dependents_deps.dev:0 github.com/di-ninja/babel-plugin-compile-dependencies,num_dependents_deps.dev:0 @@ -432980,6 +441705,7 @@ github.com/di-ninja/interface-prototype, github.com/di-ninja/omniverse, github.com/di-sukharev/React95,num_dependents_deps.dev:0 github.com/di-sukharev/eslint-config,num_dependents_deps.dev:0 +github.com/di-sukharev/opencommit, github.com/di-unipi-socc/TosKer, github.com/di-unipi-socc/TosKeriser, github.com/di-wu/bilbo,num_dependents_deps.dev:0 @@ -433187,6 +441913,7 @@ github.com/diamond-cms/client-server,num_dependents_deps.dev:0 github.com/diamond-cms/cms-cli,num_dependents_deps.dev:0 github.com/diamond2010/nativescript-signingpad,num_dependents_deps.dev:0 github.com/diamondbc/blqs,num_dependents_deps.dev:0 +github.com/diamondburned/action-upload-release, github.com/diamondburned/aqours,num_dependents_deps.dev:0 github.com/diamondburned/arikawa,num_dependents_deps.dev:3 github.com/diamondburned/caddy-htmlauth,num_dependents_deps.dev:0 @@ -433441,6 +442168,7 @@ github.com/diasjorge/guard-fig,num_dependents_deps.dev:0 github.com/diasjorge/pylint-pmd, github.com/diasjorge/redmine-cli,num_dependents_deps.dev:0 github.com/diasjuniorr/code-commerce,num_dependents_deps.dev:0 +github.com/diasphpora/wp-to-diaspora, github.com/diaspora-orm/dev-tslint,num_dependents_deps.dev:0 github.com/diaspora-orm/dev-typings,num_dependents_deps.dev:0 github.com/diaspora-orm/diaspora,num_dependents_deps.dev:0 @@ -433497,6 +442225,7 @@ github.com/dibbsza/api-streetcred-agency,num_dependents_deps.dev:0 github.com/dibbsza/api-streetcred-custodian,num_dependents_deps.dev:0 github.com/dibeesh/mmm_custom,num_dependents_deps.dev:0 github.com/dibeneditto/cadcompare,num_dependents_deps.dev:0 +github.com/dibenlloch/google-sheets-secrets-action, github.com/dibenso/pagination-component,num_dependents_deps.dev:0 github.com/diberry/azure-storage-as-promised,num_dependents_deps.dev:0 github.com/diberry/azure-storage-upload-file-server,num_dependents_deps.dev:0 @@ -433686,8 +442415,11 @@ github.com/dictadata/storage-node,num_dependents_deps.dev:0 github.com/dictadata/webbrowser-filesystem,num_dependents_deps.dev:0 github.com/dictation-toolbox/Caster,criticality_score:0.469340 github.com/dictation-toolbox/dragonfly, +github.com/dictav/action-protoc, +github.com/dictav/action-reviewdog-golangci-lint, github.com/dictav/aerospike-client-go,num_dependents_deps.dev:0 github.com/dictav/gcli,num_dependents_deps.dev:0 +github.com/dictav/github-action-release, github.com/dictav/go-genproto-googleads,num_dependents_deps.dev:0 github.com/dictav/vim-remote,num_dependents_deps.dev:0 github.com/dictcp/awesome-git,criticality_score:0.308950 @@ -433760,6 +442492,7 @@ github.com/diddileija/text_formatter, github.com/diddledan/flippy-card,num_dependents_deps.dev:0 github.com/diddledan/gulp-inject-file,num_dependents_deps.dev:0 github.com/diddledan/proportional-height-box,num_dependents_deps.dev:0 +github.com/diddlesnaps/snapcraft-multiarch-action, github.com/dideex/socket-apollo-link,num_dependents_deps.dev:0 github.com/didengren/auto-complete-code-webpack-plugin,num_dependents_deps.dev:0 github.com/didengren/generate-tx-registration-file-plugin,num_dependents_deps.dev:0 @@ -433917,6 +442650,9 @@ github.com/dieffrei/chrome-force,num_dependents_deps.dev:0 github.com/dieg0code/golangbasics,num_dependents_deps.dev:0 github.com/dieg0moraes/prometeo-cli, github.com/dieggo111/shopapp,num_dependents_deps.dev:0 +github.com/dieghernan/algolia-jekyll-action, +github.com/dieghernan/cff-validator, +github.com/dieghernan/cran-status-check, github.com/diego-alves/terraform-aws-queue-consumer,num_dependents_deps.dev:0 github.com/diego-aquino/mediakit, github.com/diego-c/node-baka,num_dependents_deps.dev:0 @@ -433950,6 +442686,7 @@ github.com/diegoacuna/docker-app, github.com/diegoacuna/ecs-ctl, github.com/diegoadt/ng2-validation-manager,num_dependents_deps.dev:0 github.com/diegoagtz/first_steps_with_go,num_dependents_deps.dev:0 +github.com/diegoaichele/duolingo-to-markdown, github.com/diegoalejogm/gans,criticality_score:0.316100 github.com/diegoalessandro/leetcode,num_dependents_deps.dev:0 github.com/diegoalmesp/jquery.hideParagraph,num_dependents_deps.dev:0 @@ -434029,6 +442766,7 @@ github.com/diegoeck/px4tuning, github.com/diegoeduardok/SimFRET, github.com/diegoenrique92/randommsg123,num_dependents_deps.dev:0 github.com/diegoernesto899/diego_puentes_prueba_mercadolibre,num_dependents_deps.dev:0 +github.com/diegofcornejo/setup-sonar-scanner, github.com/diegofelipece/Mussum-Ipsum,num_dependents_deps.dev:0 github.com/diegofelipece/hourglass-scss,num_dependents_deps.dev:0 github.com/diegofer25/bootserver,num_dependents_deps.dev:0 @@ -434183,6 +442921,7 @@ github.com/diegopq/generator-inuitcss,num_dependents_deps.dev:0 github.com/diegoprestes/vue-airbnb-style-datepicker,num_dependents_deps.dev:0 github.com/diegoprestesgit/auto-rope,num_dependents_deps.dev:0 github.com/diegoprestesgit/my-first-cli,num_dependents_deps.dev:0 +github.com/diegoquintanav/pelican-to-github-pages, github.com/diegorafaellucio/ngx-cytograph, github.com/diegoraguiar/ngx-brazilian-helpers,num_dependents_deps.dev:0 github.com/diegormedia/coderamos-gulp-config,num_dependents_deps.dev:0 @@ -434199,6 +442938,7 @@ github.com/diegorufe/rfpyutils, github.com/diegosanchezp/theme-switcher-component,num_dependents_deps.dev:0 github.com/diegosanteri/neomongoose, github.com/diegosanteri/orion-dependency-injection,num_dependents_deps.dev:0 +github.com/diegosanteri/publish-open-api-spec-to-postman, github.com/diegosantosws/gocielo,num_dependents_deps.dev:0 github.com/diegosantosws/workshop,num_dependents_deps.dev:0 github.com/diegosep/spring-serial-port-connector,num_dependents_deps.dev:0 @@ -434217,6 +442957,7 @@ github.com/diegotsi/react-native-modal-action,num_dependents_deps.dev:0 github.com/diegoulloao/banana-cli,num_dependents_deps.dev:0 github.com/diegoulloao/yup-es,num_dependents_deps.dev:0 github.com/diegovalemoreno/diegomoreno,num_dependents_deps.dev:0 +github.com/diegovalenzuelaiturra/yapf-action, github.com/diegovallarta/appaloosa-client,num_dependents_deps.dev:0 github.com/diegovallarta/generator-booang,num_dependents_deps.dev:0 github.com/diegovallarta/generator-comang,num_dependents_deps.dev:0 @@ -434338,6 +443079,7 @@ github.com/dietrichherlan/learning-git,num_dependents_deps.dev:0 github.com/dietrichm/admirer,num_dependents_deps.dev:0 github.com/dietrichwestbrooks/emdi,num_dependents_deps.dev:0 github.com/dieuhd/angular2-active-record,num_dependents_deps.dev:0 +github.com/dieuhd/sonar-quality-gate, github.com/dieulot/idevice,num_dependents_deps.dev:0 github.com/dieulot/instantclick,num_dependents_deps.dev:0 github.com/dievardump/laralang,num_dependents_deps.dev:0 @@ -434501,6 +443243,10 @@ github.com/digantamisra98/Echo, github.com/digantamisra98/Mish,criticality_score:0.377710 github.com/digaodev/learnstorybook-design-system,num_dependents_deps.dev:0 github.com/digarok/appy,num_dependents_deps.dev:0 +github.com/digarok/cloudformation-guard-action, +github.com/digarok/install-appy-pack-action, +github.com/digarok/install-cadius-action, +github.com/digarok/install-merlin32-action, github.com/digaru19/NITT-SonicWall-Login, github.com/digaus/capacitor-background-fcm,num_dependents_deps.dev:0 github.com/digaus/capacitor-wifi,num_dependents_deps.dev:0 @@ -434514,7 +443260,9 @@ github.com/digencer/eslint-plugin-expires,num_dependents_deps.dev:0 github.com/digfish/rectree, github.com/diggabyte/node-screenshot-diff,num_dependents_deps.dev:0 github.com/diggerhq/cli-npm,num_dependents_deps.dev:0 +github.com/diggerhq/digger, github.com/diggerhq/infragenie, +github.com/diggerhq/tfrun, github.com/diggerio/digger-html-parser,num_dependents_deps.dev:0 github.com/diggerio/digger-http,num_dependents_deps.dev:0 github.com/diggerio/digger-level,num_dependents_deps.dev:0 @@ -434543,6 +443291,7 @@ github.com/diggzhang/httpsniffer,num_dependents_deps.dev:0 github.com/digi-chris/gcpserver,num_dependents_deps.dev:0 github.com/digi-trust/dt-cdn,num_dependents_deps.dev:0 github.com/digi-trust/identity-core-java,num_dependents_deps.dev:0 +github.com/digi-wolk/olaudit-action, github.com/digi1874/digi,num_dependents_deps.dev:0 github.com/digi1874/digi-classname,num_dependents_deps.dev:0 github.com/digi1874/digi-refs, @@ -434614,9 +443363,13 @@ github.com/digibyte/digibyte,criticality_score:0.513720 github.com/digibyte/digibyte-build,num_dependents_deps.dev:0 github.com/digicade/eslint-config-digicade,num_dependents_deps.dev:0 github.com/digicard/react-native-dropdownalert,num_dependents_deps.dev:0 +github.com/digicatapult/check-version, github.com/digicert/digicert_express, github.com/digicert/digilog,num_dependents_deps.dev:0 github.com/digicert/onionmaker, +github.com/digicert/prune_old_branches_action, +github.com/digicert/ssm-code-signing, +github.com/digicert/ssm-gpg-signing, github.com/digicoinofficial/digicoin-bitcore-node, github.com/digicol/dcx-sdk-js,num_dependents_deps.dev:0 github.com/digicontributer/digiassetcliexample,num_dependents_deps.dev:0 @@ -434631,6 +443384,7 @@ github.com/digicontributer/rust-digibyte-rpc,num_dependents_deps.dev:0 github.com/digicorp/Propeller-Angular-Bootstrap-with-Material-Design, github.com/digicorp/count-management-module, github.com/digicorp/propeller,num_dependents_deps.dev:2 +github.com/digidem/ai-translator-action, github.com/digidem/alianza-elements,num_dependents_deps.dev:0 github.com/digidem/blitline-resizer,num_dependents_deps.dev:0 github.com/digidem/crop-image-stream,num_dependents_deps.dev:0 @@ -434841,6 +443595,7 @@ github.com/digirati-co-uk/prezi2to3-js,num_dependents_deps.dev:6 github.com/digirati-co-uk/pyelucidate, github.com/digirati-co-uk/react-bem, github.com/digirati-co-uk/react-dlcs-panel,num_dependents_deps.dev:0 +github.com/digirati-labs/analysis-publisher, github.com/digirock/value-auth-js,num_dependents_deps.dev:0 github.com/digisan/data-block,num_dependents_deps.dev:0 github.com/digisan/data-drawing,num_dependents_deps.dev:0 @@ -434872,6 +443627,7 @@ github.com/digitake/bs-promise-monad,num_dependents_deps.dev:0 github.com/digitake/bs-rest-api,num_dependents_deps.dev:0 github.com/digital-ai/protect-hybrid-js, github.com/digital-ai/protect-web, +github.com/digital-ai/query-tag-action, github.com/digital-anvil/djangocms-masonry, github.com/digital-anvil/djangocms-owl, github.com/digital-asset/dabl-react,num_dependents_deps.dev:0 @@ -434885,6 +443641,7 @@ github.com/digital-asset/dazl-client,num_dependents_deps.dev:0 github.com/digital-asset/ghcide,Google github.com/digital-asset/lib-daml-jvm-test,num_dependents_deps.dev:0 github.com/digital-audits/sustainability,num_dependents_deps.dev:0 +github.com/digital-blueprint/gitlab-pipeline-trigger-action, github.com/digital-cinema-arts/Muse-Analysis-Tools, github.com/digital-comrades/proletariat,num_dependents_deps.dev:0 github.com/digital-cube/BASE, @@ -434993,6 +443750,7 @@ github.com/digitalLumberjack/nodebb-plugin-ns-awards,num_dependents_deps.dev:0 github.com/digitalLumberjack/nodebb-plugin-s3-uploads, github.com/digitalLumberjack/nodebb-plugin-topic-tags, github.com/digitalMLInc/SFTPPoller,num_dependents_deps.dev:0 +github.com/digitalNimbusLabs/discord_release_upload, github.com/digitalalchemist/lightweight-apt-cache,num_dependents_deps.dev:0 github.com/digitalapplebee/react-dyslexia,num_dependents_deps.dev:0 github.com/digitalarbeiter/probspellchecker, @@ -435460,6 +444218,8 @@ github.com/digitalinteraction/trello-client, github.com/digitalinteraction/vercel-netlify-cms-github,num_dependents_deps.dev:0 github.com/digitalinteraction/wiki-md,num_dependents_deps.dev:0 github.com/digitalis-io/golang-udp-chat,num_dependents_deps.dev:0 +github.com/digitalist-se/digi-semgrep, +github.com/digitalist-se/verja, github.com/digitaljanitors/vominator,num_dependents_deps.dev:0 github.com/digitaljohn/grunt-modulus-deploy,num_dependents_deps.dev:0 github.com/digitalkaoz/aws-log-shipper, @@ -435520,6 +444280,8 @@ github.com/digitalnsw/nsw-design-system,num_dependents_deps.dev:0 github.com/digitalnsw/nsw-design-system-react,num_dependents_deps.dev:0 github.com/digitalnsw/openfisca-nsw-people, github.com/digitaloak/node-red-contrib-digitaloak-mqtt,num_dependents_deps.dev:0 +github.com/digitalocean/action-doctl, +github.com/digitalocean/app_action, github.com/digitalocean/bind_exporter,num_dependents_deps.dev:0 github.com/digitalocean/ceph_exporter,"criticality_score:0.465690,num_dependents_deps.dev:0" github.com/digitalocean/clusterlint,"criticality_score:0.383540,num_dependents_deps.dev:0" @@ -435650,6 +444412,8 @@ github.com/digitalus-mx/platform,num_dependents_deps.dev:0 github.com/digitalvapor/vondrak, github.com/digitalvillainy/loremFill,num_dependents_deps.dev:0 github.com/digitalvirgo/justsend,num_dependents_deps.dev:0 +github.com/digitalvisioncz/meli-deploy-github-action, +github.com/digitalvisioncz/npmrc-github-action, github.com/digitalwaterfall/rn-multi-tenant-async-storage,num_dependents_deps.dev:0 github.com/digitalwave/msc_pyparser, github.com/digitalwm/cloudjs,num_dependents_deps.dev:0 @@ -435790,6 +444554,7 @@ github.com/digojs/tsdocparser,num_dependents_deps.dev:0 github.com/digolds/digwebs, github.com/digolds/dp, github.com/digorithm/af-scheduler,num_dependents_deps.dev:0 +github.com/digows/actions-kubectl-with-aws, github.com/digplan/ajax.js,num_dependents_deps.dev:0 github.com/digplan/enigmatic,num_dependents_deps.dev:0 github.com/digplan/enigmatic.js,num_dependents_deps.dev:0 @@ -435828,6 +444593,7 @@ github.com/digwanderlust/dwlver, github.com/digwanderlust/pathlt, github.com/digz6666/antd-img-crop,num_dependents_deps.dev:0 github.com/digz6666/react-easy-crop,num_dependents_deps.dev:0 +github.com/digza/automatic-python-version, github.com/dih5/comod, github.com/dih5/duat, github.com/dih5/physdata, @@ -435853,6 +444619,8 @@ github.com/diiiary/capacitor-plugin-permissions,num_dependents_deps.dev:0 github.com/diiiary/capacitor-plugin-photo-library,num_dependents_deps.dev:0 github.com/diiiefiend/js-sticky,num_dependents_deps.dev:0 github.com/diijam/cloud_functions,num_dependents_deps.dev:0 +github.com/diillson/auto-pull-request, +github.com/diillson/auto-release, github.com/diiogo91/pagination-input,num_dependents_deps.dev:0 github.com/diiogo91/wysiwyg-e,num_dependents_deps.dev:0 github.com/diiq/esdragon,num_dependents_deps.dev:0 @@ -435945,6 +444713,8 @@ github.com/diksown/gado, github.com/diku-dk/futhark,criticality_score:0.597590 github.com/diku-dk/futhark-data-python, github.com/diku-dk/futhark-docbot,num_dependents_deps.dev:0 +github.com/diku-dk/install-futhark, +github.com/diku-dk/install-mlkit, github.com/dikuchan/capek, github.com/dikuchan/uri-builder,num_dependents_deps.dev:0 github.com/dikujepsen/tslint-mobx,num_dependents_deps.dev:0 @@ -436000,6 +444770,7 @@ github.com/dilidili/macro-preprocessor-loader,num_dependents_deps.dev:0 github.com/dilidili/react-drawing-board,num_dependents_deps.dev:0 github.com/dilidili/use-saga,num_dependents_deps.dev:0 github.com/diligasi/correios_toolkit,num_dependents_deps.dev:0 +github.com/diligencia/semantic-branch-version, github.com/dilip2304/godemo,num_dependents_deps.dev:0 github.com/dilipabc/web-auth-token,num_dependents_deps.dev:0 github.com/dilipbobby/predickter, @@ -436073,6 +444844,7 @@ github.com/dillonjason/config-merger-v2,num_dependents_deps.dev:0 github.com/dillonkearns/elm-electron,num_dependents_deps.dev:0 github.com/dillonkearns/elm-graphql,"criticality_score:0.420780,num_dependents_deps.dev:0" github.com/dillonkearns/elm-pages,"criticality_score:0.435670,num_dependents_deps.dev:0" +github.com/dillonkearns/elm-publish-action, github.com/dillonkearns/elm-ts-json,num_dependents_deps.dev:0 github.com/dillonkearns/elm-typescript-interop,num_dependents_deps.dev:0 github.com/dillonkearns/graphqelm,num_dependents_deps.dev:0 @@ -436187,6 +444959,8 @@ github.com/dim912/handlebar-pretty-json,num_dependents_deps.dev:2 github.com/dima-5050/bank,num_dependents_deps.dev:0 github.com/dima-bu/hive.ui.lib, github.com/dima-bu/react-time-input,num_dependents_deps.dev:8 +github.com/dima-engineer/pytest-reporter, +github.com/dima-engineer/pytester, github.com/dima-exe/pupcap,num_dependents_deps.dev:0 github.com/dima-f1/range-array,num_dependents_deps.dev:0 github.com/dima-kov/oscar-portation, @@ -436360,6 +445134,7 @@ github.com/dimaxdqwerty/golang-training-shop,num_dependents_deps.dev:0 github.com/dimazest/fowler.corpora, github.com/dimazest/google-ngram-downloader, github.com/dimazest/poultry, +github.com/dimazhornyk/decentralized-git-uploader-action, github.com/dimazuien/react-router-scroll-to-top,num_dependents_deps.dev:0 github.com/dimazuien/react-viewport-height,num_dependents_deps.dev:0 github.com/dimazusov/amount-decliension,num_dependents_deps.dev:0 @@ -436742,6 +445517,7 @@ github.com/dimuska139/sendpulse-sdk-go,num_dependents_deps.dev:0 github.com/dimussong/infomaxy, github.com/dimv36/QCustomPlot-PyQt5, github.com/dimxy/bitgo-komodo-cc-lib,num_dependents_deps.dev:0 +github.com/dimzeta/semver-to-integer, github.com/din14970/TEMMETA, github.com/din14970/TVIPSconverter, github.com/din14970/elabftwqrprint, @@ -436837,6 +445613,7 @@ github.com/dineshram0212/youtube-analysis, github.com/dineshsonachalam/Lucid-Dynamodb, github.com/dineshsonachalam/cloudflare-kv, github.com/dineshsonachalam/cloudflare_workers, +github.com/dineshsonachalam/markdown-autodocs, github.com/dineshsonachalam/redis-cloudflare-kv,num_dependents_deps.dev:0 github.com/dineshtbits/data-structures-in-go,num_dependents_deps.dev:0 github.com/dineshtbits/knapsack-0-1,num_dependents_deps.dev:0 @@ -436913,6 +445690,8 @@ github.com/dinglingling2016/dllnew,num_dependents_deps.dev:0 github.com/dinglittle/Top250,num_dependents_deps.dev:0 github.com/dingmaotu/gsql_client, github.com/dingn1/form_header_persister,num_dependents_deps.dev:0 +github.com/dingo-d/phpstan-wp-action, +github.com/dingo-d/wpthemereview-gh-action, github.com/dingo/api,criticality_score:0.592250 github.com/dingo/blueprint,criticality_score:0.400720 github.com/dingo826/frontend__ejs,num_dependents_deps.dev:0 @@ -437100,8 +445879,11 @@ github.com/dinukadesilva/box-layout,num_dependents_deps.dev:0 github.com/dinuovos/test-manager,num_dependents_deps.dev:0 github.com/dinuovos/test-suite,num_dependents_deps.dev:0 github.com/dinup24/vax-notifier,num_dependents_deps.dev:0 +github.com/dinushchathurya/build-tag-push-action, +github.com/dinushchathurya/sinhala-quotes-github-action, github.com/dinushchathurya/sri-lankan-universities-faculties-degrees,num_dependents_deps.dev:0 github.com/dinushchathurya/srilankan-provicnes-districts-npm-package,num_dependents_deps.dev:0 +github.com/dinushchathurya/test-repo, github.com/dinuta/estuary-agent-java,num_dependents_deps.dev:0 github.com/dinuta/estuary-testrunner-java,num_dependents_deps.dev:0 github.com/dinvio/django-geo-timezones, @@ -437190,6 +445972,7 @@ github.com/diogogmt/grafctl,num_dependents_deps.dev:0 github.com/diogogmt/grunt_forever,num_dependents_deps.dev:0 github.com/diogogmt/le_node_winston_transport,num_dependents_deps.dev:0 github.com/diogogmt/sdk,num_dependents_deps.dev:0 +github.com/diogohudson/build_docker_2_ecr_eks, github.com/diogojorgebasso/image-style,num_dependents_deps.dev:0 github.com/diogok/cfe, github.com/diogok/ghz,num_dependents_deps.dev:0 @@ -437290,6 +446073,7 @@ github.com/dionmcm/ncts-syndication-client,num_dependents_deps.dev:0 github.com/dionnys5/golang-backend-imdbfinder,num_dependents_deps.dev:0 github.com/dionoid/koa-request,num_dependents_deps.dev:28 github.com/dionoid/koa-zlib,num_dependents_deps.dev:0 +github.com/dionomusuko/gh-release-with-wf-dispatch, github.com/dionren/ant-design-vue-admin,num_dependents_deps.dev:0 github.com/dionren/client-info,num_dependents_deps.dev:0 github.com/dionren/date-pro,num_dependents_deps.dev:0 @@ -437410,6 +446194,7 @@ github.com/diowa/twbs_less_rails,num_dependents_deps.dev:0 github.com/diowa/twbs_sass_rails,num_dependents_deps.dev:0 github.com/dioxic/faker4j,num_dependents_deps.dev:1 github.com/dioxic/mgenerate4j,num_dependents_deps.dev:0 +github.com/dioxmio/ga_pr-limit, github.com/dip-in-milk/snake, github.com/dipaco/balu-python, github.com/dipacs/react-mvc,num_dependents_deps.dev:0 @@ -437473,11 +446258,18 @@ github.com/dipeshy/deu,num_dependents_deps.dev:0 github.com/dipghoshraj/Gender-classifer-module, github.com/dipghoshraj/shiftencode, github.com/dipiash/enhanced-fetch-lib,num_dependents_deps.dev:0 +github.com/dipiash/pnpm-nx-reusable-action, github.com/dipien/bye-bye-jetifier,num_dependents_deps.dev:0 github.com/dipien/dipien-component-builder,num_dependents_deps.dev:0 github.com/dipien/google-play-api,num_dependents_deps.dev:0 github.com/dipien/releases-hub-gradle-plugin,num_dependents_deps.dev:0 github.com/diplett/golang-proj,num_dependents_deps.dev:0 +github.com/diplodoc-platform/docs-build-action, +github.com/diplodoc-platform/docs-clean-action, +github.com/diplodoc-platform/docs-message-action, +github.com/diplodoc-platform/docs-release-action, +github.com/diplodoc-platform/docs-upload-action, +github.com/diplodoc-platform/markdown-translation-action, github.com/diploidgenomics/ember-cli-cors, github.com/diplomacy/diplomacy, github.com/diplomacy/research,Google @@ -437505,6 +446297,7 @@ github.com/diproart/platform-js,num_dependents_deps.dev:0 github.com/diprokon/ng-table-virtual-scroll,"Google,num_dependents_deps.dev:0" github.com/dipsaus9/vue-ui-fields, github.com/dipscope/TypeManager.TS,num_dependents_deps.dev:0 +github.com/dipshit/kubeval, github.com/dipsywong98/reforml,num_dependents_deps.dev:0 github.com/dipsywong98/smnet,num_dependents_deps.dev:0 github.com/diptadas/kubernetes-examples,num_dependents_deps.dev:0 @@ -437563,6 +446356,7 @@ github.com/direct808/node-rmdir-cli,num_dependents_deps.dev:0 github.com/direct808/rnd-name,num_dependents_deps.dev:0 github.com/directa24/cashin-java-sdk,num_dependents_deps.dev:0 github.com/directactioneverywhere/dxe-airtable, +github.com/directangular/k8s-lock-action, github.com/directeur/django-sorting, github.com/directions4/bootstrap4-gulp-nunjucks,num_dependents_deps.dev:0 github.com/directions4/foundation-nunjucks, @@ -437609,6 +446403,10 @@ github.com/directxman12/should_be, github.com/directxman12/yalpt, github.com/directxman12/zapr,num_dependents_deps.dev:0 github.com/diregoblin/poisson_disc_sampling, +github.com/direktiv/direktiv-actions-ghexec, +github.com/direktiv/direktiv-actions-ghsync, +github.com/direktiv/direktiv-actions-ghupload, +github.com/direktiv/direktiv-github-action, github.com/direktspeed/class-nonew-decorator,num_dependents_deps.dev:0 github.com/direktspeed/donejs-canjs,num_dependents_deps.dev:0 github.com/direktspeed/ds-cctalk,num_dependents_deps.dev:0 @@ -437943,6 +446741,7 @@ github.com/disbotlist-xyz/disbotlist-api, github.com/disbots-gg/disbots.js,num_dependents_deps.dev:0 github.com/disc04/simplydrug, github.com/discardthree/PySDPT3glue, +github.com/discdiver/merge-from-upstream-repo, github.com/discdynamic/dynamic-yagpdb-ccs,num_dependents_deps.dev:0 github.com/discgolfer1138/foscamhd-client,num_dependents_deps.dev:0 github.com/discgolfer1138/indigo-client,num_dependents_deps.dev:0 @@ -438196,6 +446995,9 @@ github.com/disha0602/topsis-py, github.com/disha257/strapi-hook-astra,num_dependents_deps.dev:0 github.com/dishad/polyfill-contextmenu,num_dependents_deps.dev:0 github.com/dishantraut/go_mini,num_dependents_deps.dev:0 +github.com/dishapatel010/action-poetry-package-update, +github.com/dishapatel010/android-public-build, +github.com/dishapatel010/github-telegram-notify, github.com/dishbreak/aoc2020,num_dependents_deps.dev:0 github.com/dishbreak/gomilk,num_dependents_deps.dev:0 github.com/dishfo/wire_dao,num_dependents_deps.dev:0 @@ -438293,6 +447095,7 @@ github.com/dislazy/alidaodao-app-cos,num_dependents_deps.dev:0 github.com/dislazy/alidaodao-app-cos-deployer,num_dependents_deps.dev:0 github.com/dislazy/alidaodao-app-redis,num_dependents_deps.dev:1 github.com/dislazy/hexo-alidaodao-app-cos-deployer,num_dependents_deps.dev:0 +github.com/dislazy/hub-mirror-action, github.com/dislick/ts-pwgen,num_dependents_deps.dev:0 github.com/dislick/wiring-pi-wrapper,num_dependents_deps.dev:0 github.com/dislido/cqnode, @@ -438362,6 +447165,7 @@ github.com/display-interactive/ugo-dynamic-form,num_dependents_deps.dev:0 github.com/display-interactive/ugo-form-watcher,num_dependents_deps.dev:0 github.com/display-interactive/ugo-resumer,num_dependents_deps.dev:0 github.com/displayLi/wx-ajax,num_dependents_deps.dev:0 +github.com/displaykit/bump-release, github.com/displaylink-rpm/displaylink-rpm,criticality_score:0.395040 github.com/displaynone/youtube-downloader,num_dependents_deps.dev:0 github.com/displaytree/create-react-app,num_dependents_deps.dev:0 @@ -438587,6 +447391,7 @@ github.com/distributethe6ix/go-learning,num_dependents_deps.dev:0 github.com/distributhor/paygate-sdk,num_dependents_deps.dev:0 github.com/distributhor/scormcloud-client,num_dependents_deps.dev:0 github.com/distributhor/wild-west,num_dependents_deps.dev:0 +github.com/distributhor/workflow-webhook, github.com/distribution/distribution,criticality_score:0.685440 github.com/distributions-io/binomial-mgf,num_dependents_deps.dev:0 github.com/distributions-io/cauchy-cdf,num_dependents_deps.dev:0 @@ -438749,6 +447554,7 @@ github.com/ditto-app/Maestro,num_dependents_deps.dev:0 github.com/dittonjs/react-accessible-dropdown,num_dependents_deps.dev:0 github.com/dittos/pbabel,num_dependents_deps.dev:0 github.com/dittowords/cli,num_dependents_deps.dev:0 +github.com/dittowords/ditto-github-action, github.com/dittowords/ditto-react,num_dependents_deps.dev:0 github.com/dittrichlucas/changelog-generator,num_dependents_deps.dev:0 github.com/dittrichlucas/nykshortener,num_dependents_deps.dev:0 @@ -439111,6 +447917,7 @@ github.com/divramod/nodecui,num_dependents_deps.dev:0 github.com/divramod/yagpt, github.com/divramod/yagpt-test, github.com/divrhino/studybuddy,num_dependents_deps.dev:0 +github.com/divriots/action-dsd-release, github.com/divriots/ceramic,num_dependents_deps.dev:0 github.com/divriots/demo-user-event,num_dependents_deps.dev:0 github.com/divriots/dockit-core,num_dependents_deps.dev:0 @@ -439178,6 +447985,7 @@ github.com/divvit/moment-timezone-utils,num_dependents_deps.dev:0 github.com/divvit/user-agent-device-mapper,num_dependents_deps.dev:0 github.com/divvu/cowin-notifier,num_dependents_deps.dev:0 github.com/divvun/bidiff,num_dependents_deps.dev:0 +github.com/divvun/compile-mermaid-markdown-action, github.com/divvun/derive-collect-docs,num_dependents_deps.dev:0 github.com/divvun/divvunspell,num_dependents_deps.dev:0 github.com/divvun/xkb-parser,num_dependents_deps.dev:0 @@ -439408,6 +448216,8 @@ github.com/dizzyfool/genna,num_dependents_deps.dev:0 github.com/dizzyliam/tree-sitter-muon,num_dependents_deps.dev:0 github.com/dizzyloper/feature_flag_me,num_dependents_deps.dev:0 github.com/dizzyup/hyper-hypest,num_dependents_deps.dev:0 +github.com/dj-256/github-deploy, +github.com/dj-256/github-exec, github.com/dj-fe/code-cli,num_dependents_deps.dev:0 github.com/dj-hedgehog/browser-bookmark-manager,num_dependents_deps.dev:0 github.com/dj-paddle/dj-paddle, @@ -439758,6 +448568,7 @@ github.com/djaodjin/djaodjin-saas,criticality_score:0.323460 github.com/djaodjin/djaodjin-survey, github.com/djaramilloj/converter_kg_lb,num_dependents_deps.dev:0 github.com/djaramilloj/platzom, +github.com/djarek/bloaty-analyze, github.com/djarvur/allcups-itrally-2020-task,num_dependents_deps.dev:0 github.com/djarvur/cryptowrap,num_dependents_deps.dev:0 github.com/djatwood/chlots,num_dependents_deps.dev:0 @@ -439774,6 +448585,7 @@ github.com/djay/transmogrify.pathsorter, github.com/djbaker/lodown,num_dependents_deps.dev:0 github.com/djbeaumont/babel-plugin-transform-i18n,num_dependents_deps.dev:0 github.com/djbelieny/meteor-up,num_dependents_deps.dev:0 +github.com/djbender/docker-buildx-pull-or-build, github.com/djberg96/apple-system-logger,num_dependents_deps.dev:0 github.com/djberg96/archive-tar-external,num_dependents_deps.dev:0 github.com/djberg96/crypt-rot13,num_dependents_deps.dev:0 @@ -439854,6 +448666,9 @@ github.com/djdapz/stocks,num_dependents_deps.dev:0 github.com/djdaquin/lodown,num_dependents_deps.dev:0 github.com/djdduty/ttv-log,num_dependents_deps.dev:0 github.com/djdeath/pwm,num_dependents_deps.dev:2 +github.com/djdefi/cloc-action, +github.com/djdefi/gitavscan, +github.com/djdefi/team-readme-generator, github.com/djdelgado/lodown,num_dependents_deps.dev:0 github.com/djdembeck/m4b-merge, github.com/djdisodo/binaryutils-rust,num_dependents_deps.dev:0 @@ -440157,10 +448972,14 @@ github.com/djmitche/unicode-progress,num_dependents_deps.dev:0 github.com/djmitchella/flickr-data-folderify,num_dependents_deps.dev:0 github.com/djmoto24/fabula, github.com/djmunro/ss-react,num_dependents_deps.dev:0 +github.com/djn24/add-asset-to-release, +github.com/djn24/add-comment-to-release, github.com/djn24/codespaces-504,num_dependents_deps.dev:0 github.com/djnaumov/phonegap-build-zip,num_dependents_deps.dev:0 github.com/djnicholson/binance-statement,num_dependents_deps.dev:0 github.com/djnicholson/ec2-rotate-ip,num_dependents_deps.dev:0 +github.com/djnicholson/release-action, +github.com/djnotes/github-action-ssh-docker-compose, github.com/djnrrd/obs_streamdeck_controls, github.com/djodjoni/MultiSlider,num_dependents_deps.dev:0 github.com/djodjoni/jus,num_dependents_deps.dev:0 @@ -440218,6 +449037,7 @@ github.com/djoulz22/drbd,num_dependents_deps.dev:0 github.com/djoulz22/iscsitarget,num_dependents_deps.dev:0 github.com/djoulz22/lvm,num_dependents_deps.dev:0 github.com/djoulz22/zipabox,num_dependents_deps.dev:0 +github.com/djp3/puppeteer-headful, github.com/djpalm801/stdnt,num_dependents_deps.dev:0 github.com/djparente/polyboost, github.com/djpasseyjr/rescomp, @@ -440455,6 +449275,7 @@ github.com/dk00/pwa-utils,num_dependents_deps.dev:0 github.com/dk00/uni-fetch, github.com/dk1027/easy-send,num_dependents_deps.dev:0 github.com/dk107dk/cdocs, +github.com/dk1242/area-of-square-action, github.com/dk56/snare, github.com/dk731/3D-Led-Cube, github.com/dkMorlok/bunyan-logdna-stream,num_dependents_deps.dev:0 @@ -440477,6 +449298,7 @@ github.com/dkaiser014/go-backup-utility,num_dependents_deps.dev:0 github.com/dkakashi69/comment-extractor,num_dependents_deps.dev:0 github.com/dkakashi69/lrc-parser,num_dependents_deps.dev:0 github.com/dkakashi69/lrc2json,num_dependents_deps.dev:0 +github.com/dkalchenko/idealtex-workflows, github.com/dkaledin/nextjs-monorepo-tools,num_dependents_deps.dev:0 github.com/dkalpakchi/django-scientific-survey, github.com/dkalpakchi/quinductor, @@ -440584,22 +449406,35 @@ github.com/dkern/node-red-counter, github.com/dkern/node-red-throttle, github.com/dkern/telegram-bot, github.com/dkershner6/await-wait,num_dependents_deps.dev:0 +github.com/dkershner6/aws-ssm-getparameters-action, github.com/dkershner6/axios-hooks-mock, github.com/dkershner6/fetch-from-script-tag,num_dependents_deps.dev:0 +github.com/dkershner6/get-pull-request-action, +github.com/dkershner6/githubactions-result-reporter, +github.com/dkershner6/gitignore-parser, +github.com/dkershner6/jest-coverage-commenter-action, github.com/dkershner6/mock-react-hooks-firebase-auth,num_dependents_deps.dev:0 +github.com/dkershner6/node-workspace-detector-action, github.com/dkershner6/npm-typescript-package-template,num_dependents_deps.dev:0 +github.com/dkershner6/npm-version-check-with-comment-action, +github.com/dkershner6/post-api-call-action, +github.com/dkershner6/pr-size-labeler, github.com/dkershner6/react-firebase-auth,num_dependents_deps.dev:0 github.com/dkershner6/react-hooks-firebase-auth, +github.com/dkershner6/reaction-action, github.com/dkershner6/sequential-async-foreach,num_dependents_deps.dev:0 github.com/dkershner6/shopify-application-proxy-verification, github.com/dkershner6/shopify-verify-webhook,num_dependents_deps.dev:0 +github.com/dkershner6/switch-case-action, github.com/dkershner6/tsv-parse,num_dependents_deps.dev:0 github.com/dkershner6/unstated-next-subscribe, github.com/dkershner6/use-immer-produce,num_dependents_deps.dev:0 github.com/dkershner6/use-map-as-state, +github.com/dkershner6/use-npm-token-action, github.com/dkershner6/use-set-as-state,num_dependents_deps.dev:0 github.com/dkershner6/use-set-focus,num_dependents_deps.dev:0 github.com/dkershner6/useMapAsState,num_dependents_deps.dev:0 +github.com/dkershner6/vercel-set-env-action, github.com/dkeys666/none2,num_dependents_deps.dev:0 github.com/dkeysil/aiogram-logging, github.com/dkeysil/go-rest-postgre-example,num_dependents_deps.dev:0 @@ -440634,8 +449469,15 @@ github.com/dkhamsing/open-source-ios-apps,criticality_score:0.625270 github.com/dkharazi/d3-wave,num_dependents_deps.dev:0 github.com/dkhodakivskyi/poc,num_dependents_deps.dev:0 github.com/dkhr/record-locator,num_dependents_deps.dev:0 +github.com/dkhunt27/action-annotations, +github.com/dkhunt27/action-conventional-commits, +github.com/dkhunt27/action-git-package-version-search, +github.com/dkhunt27/action-nx-affected-list, +github.com/dkhunt27/action-nx-code-coverage, +github.com/dkhunt27/code-coverage-assistant, github.com/dkhunt27/environment-variable-service,num_dependents_deps.dev:0 github.com/dkhunt27/node-marathon,num_dependents_deps.dev:0 +github.com/dkhunt27/nrwl-nx-action, github.com/dkhunt27/serverless-sync-s3,num_dependents_deps.dev:0 github.com/dkhunt27/simple-http-utilities,num_dependents_deps.dev:0 github.com/dkhunt27/simple-js-validator,num_dependents_deps.dev:0 @@ -440738,6 +449580,8 @@ github.com/dkorolev/htmlgen,num_dependents_deps.dev:0 github.com/dkorolev/overlog,num_dependents_deps.dev:0 github.com/dkorolev/pidlock,num_dependents_deps.dev:0 github.com/dkorunic/ismc,num_dependents_deps.dev:0 +github.com/dkorzhov/actions-poetry, +github.com/dkoshkin/status-writer-action, github.com/dkoslicki/CAMIProfilingVisualization, github.com/dkoslicki/CMash, github.com/dkotik/cuebook,num_dependents_deps.dev:0 @@ -440957,6 +449801,7 @@ github.com/dlancer/django-pages-cms-extensions, github.com/dlancer/google-oauth2-tool, github.com/dlang-community/DCD,criticality_score:0.422250 github.com/dlang-community/awesome-d,criticality_score:0.299600 +github.com/dlang-community/setup-dlang, github.com/dlang/dlang.org,criticality_score:0.590230 github.com/dlang/dmd,criticality_score:0.759720 github.com/dlang/druntime,criticality_score:0.676340 @@ -440993,6 +449838,8 @@ github.com/dlauritzen/asciiparse,num_dependents_deps.dev:0 github.com/dlauritzen/node-dlutil,num_dependents_deps.dev:0 github.com/dlauritzen/plistlib,num_dependents_deps.dev:4 github.com/dlavelle7/py-bt, +github.com/dlavrenuek/add-commit-labels, +github.com/dlavrenuek/conventional-changelog-action, github.com/dlavrenuek/node-red-contrib-neopixel-display,num_dependents_deps.dev:0 github.com/dlavrenuek/react-debounced,num_dependents_deps.dev:0 github.com/dlawregiets/stallyns, @@ -441071,6 +449918,9 @@ github.com/dleitee/strman,num_dependents_deps.dev:1036 github.com/dleitee/twitty,num_dependents_deps.dev:0 github.com/dleitee/valid.js,num_dependents_deps.dev:0 github.com/dleitee/walletjs,num_dependents_deps.dev:0 +github.com/dlekhah/repository-dispatcher-monitor, +github.com/dlekhah/repository-trigger-monitor, +github.com/dlemel8/gophercon-2021-go-action, github.com/dlemel8/tunneler,num_dependents_deps.dev:0 github.com/dlemfh/t,num_dependents_deps.dev:0 github.com/dlemmermann/CalendarFX,num_dependents_deps.dev:0 @@ -441084,6 +449934,7 @@ github.com/dlemon/mongoose-gridstore,num_dependents_deps.dev:0 github.com/dlems/py-utils, github.com/dlemstra/Magick.NET,criticality_score:0.593420 github.com/dlemstra/Magick.WASM,num_dependents_deps.dev:0 +github.com/dlemstra/code-sign-action, github.com/dlennox24/colostate-ricro-ui,num_dependents_deps.dev:0 github.com/dlennox24/ricro-app-template,num_dependents_deps.dev:0 github.com/dlenroc/appium-roku-driver,num_dependents_deps.dev:0 @@ -441215,6 +450066,8 @@ github.com/dlion/smagenBot,num_dependents_deps.dev:0 github.com/dlion/stocazzo-node,num_dependents_deps.dev:0 github.com/dlion/toxiproxy-node,num_dependents_deps.dev:0 github.com/dlion/traktprogress,num_dependents_deps.dev:0 +github.com/dlip/envy.sh, +github.com/dlip/get-vercel-deployment-action, github.com/dlipovac012/atomium,num_dependents_deps.dev:0 github.com/dlipovetsky/i3-tabn,num_dependents_deps.dev:0 github.com/dlisp/event-to-stream,num_dependents_deps.dev:0 @@ -441309,6 +450162,7 @@ github.com/dlops-io/dlops, github.com/dlorenc/cosigned,num_dependents_deps.dev:0 github.com/dlorenc/is-even,num_dependents_deps.dev:0 github.com/dlorenc/is-odd,num_dependents_deps.dev:0 +github.com/dlouisenz/last-commit-message-text-finder-action, github.com/dloureiro/pandoc-gpp, github.com/dlouton/sectoolkit, github.com/dlouvier/pod-metrics-exporter,num_dependents_deps.dev:0 @@ -441646,6 +450500,7 @@ github.com/dmamills/parse-gpx,num_dependents_deps.dev:0 github.com/dmamills/picam,num_dependents_deps.dev:0 github.com/dmamills/timespan,num_dependents_deps.dev:0 github.com/dmamills/tiny-text-cli,num_dependents_deps.dev:0 +github.com/dmamontov/hass-py-lint, github.com/dmamontov/node-red-contrib-magic-home,num_dependents_deps.dev:0 github.com/dmamontov/node-red-contrib-miwifi,num_dependents_deps.dev:0 github.com/dmamontov/node-red-contrib-yandex-quasar,num_dependents_deps.dev:0 @@ -441660,6 +450515,7 @@ github.com/dmand/hdrpy, github.com/dmandalidis/docker-client,num_dependents_deps.dev:3 github.com/dmandalidis/kafka-cluster-unit,num_dependents_deps.dev:0 github.com/dmandalidis/lettuce-core-osgi,num_dependents_deps.dev:0 +github.com/dmandrade/sentry-release-github-action, github.com/dmandreev/dotNetify,num_dependents_deps.dev:0 github.com/dmaner/learning-go,num_dependents_deps.dev:0 github.com/dmanjunath/mapme,num_dependents_deps.dev:0 @@ -441770,6 +450626,7 @@ github.com/dmartzol/hmm,num_dependents_deps.dev:0 github.com/dmarvar/designsystemdiego,num_dependents_deps.dev:0 github.com/dmarx/psaw, github.com/dmarynych/oclif-plugin-oauth,num_dependents_deps.dev:0 +github.com/dmas-at-wiris/last-workflow-status, github.com/dmaspataud/smolmon,num_dependents_deps.dev:0 github.com/dmastylo/Inflation,num_dependents_deps.dev:0 github.com/dmatch01/debug-go-land,num_dependents_deps.dev:0 @@ -441879,10 +450736,13 @@ github.com/dmcqueen/go-fcm,num_dependents_deps.dev:0 github.com/dmcqueen/onesignal-go,num_dependents_deps.dev:0 github.com/dmcqueen/squash-node, github.com/dmcrodrigues/hal9000,num_dependents_deps.dev:0 +github.com/dmcruz/js-google-drive-uploader-github-action, github.com/dmcshehan/rtabs,num_dependents_deps.dev:0 +github.com/dmdboi/adonis-build-action, github.com/dmdboi/cawfee-cli,num_dependents_deps.dev:0 github.com/dmdboi/deux,num_dependents_deps.dev:0 github.com/dmdboi/duex,num_dependents_deps.dev:0 +github.com/dmdhrumilmistry/Shift-Left-Secure, github.com/dmdhrumilmistry/pyhtools, github.com/dmdnkv/api-vk-client,num_dependents_deps.dev:0 github.com/dmdque/solidity-array-utils,num_dependents_deps.dev:0 @@ -441993,6 +450853,7 @@ github.com/dmgk/uchardet,num_dependents_deps.dev:0 github.com/dmgo1014/go-oidc,num_dependents_deps.dev:0 github.com/dmgo1014/k6-runner,num_dependents_deps.dev:0 github.com/dmgolembiowski/iiii, +github.com/dmgraiser/go-actions-gophercon, github.com/dmgraiser/ps_go_getting_started,num_dependents_deps.dev:0 github.com/dmgv/btc-converter,num_dependents_deps.dev:0 github.com/dmgv/create-react-arch,num_dependents_deps.dev:0 @@ -442049,10 +450910,12 @@ github.com/dmijatovic/dv4all-wcp-lerna,num_dependents_deps.dev:10 github.com/dmijatovic/go-concepts,num_dependents_deps.dev:0 github.com/dmikey/babel-plugin-jsx-underscore,num_dependents_deps.dev:0 github.com/dmikey/grunt-jst-redux,num_dependents_deps.dev:0 +github.com/dmikey/package-json-version, github.com/dmikey/syr,num_dependents_deps.dev:0 github.com/dmikey/webpack-spud-loader,num_dependents_deps.dev:0 github.com/dmikey/yooj,num_dependents_deps.dev:0 github.com/dmikis/vow-exec,num_dependents_deps.dev:0 +github.com/dmikov/github-action-codeowners-last, github.com/dmikov/turbine-cli, github.com/dmikusa-pivotal/access_log_parser,num_dependents_deps.dev:0 github.com/dmikusa/rust-cargo-cnb,num_dependents_deps.dev:0 @@ -442214,6 +451077,7 @@ github.com/dmitry-blackwave/adyen-react-native,num_dependents_deps.dev:0 github.com/dmitry-davydov/rate-limiter,num_dependents_deps.dev:0 github.com/dmitry-dms/avalanche-control,num_dependents_deps.dev:0 github.com/dmitry-ee/time_exporter,num_dependents_deps.dev:0 +github.com/dmitry-engineer/pytester-cov, github.com/dmitry-fedotov-dev/codewars-kata,num_dependents_deps.dev:0 github.com/dmitry-glushkov/reast_api_go,num_dependents_deps.dev:0 github.com/dmitry-guryev/bookshelf-revalidator,num_dependents_deps.dev:0 @@ -442248,6 +451112,7 @@ github.com/dmitry-viskov/pylti1.3, github.com/dmitry-zaets/entity.js,num_dependents_deps.dev:0 github.com/dmitry-zaets/expect-redux-actions,num_dependents_deps.dev:0 github.com/dmitry-zaets/redux-actions-assertions, +github.com/dmitry/cypress-report-action, github.com/dmitry1981/amoveo-client, github.com/dmitry1981/bitcoin-client, github.com/dmitry5151/ngx-highlight-js,num_dependents_deps.dev:0 @@ -442428,6 +451293,7 @@ github.com/dmmarmol/bodokecss,num_dependents_deps.dev:0 github.com/dmmartinez/plib,num_dependents_deps.dev:0 github.com/dmmcquay/cni-plugin,num_dependents_deps.dev:0 github.com/dmmcquay/kube-controllers,num_dependents_deps.dev:0 +github.com/dmmikkel/lokalise-key-push, github.com/dmmikkel/vuezy,num_dependents_deps.dev:0 github.com/dmmiller612/bert-extractive-summarizer, github.com/dmmiller612/sparktorch, @@ -442533,6 +451399,8 @@ github.com/dmohs/create-full-stack-app,num_dependents_deps.dev:0 github.com/dmoj/judge,num_dependents_deps.dev:0 github.com/dmoles/adler,num_dependents_deps.dev:0 github.com/dmolesuc3/cos,num_dependents_deps.dev:0 +github.com/dmolik/actions-s3-caching, +github.com/dmolik/sync-s3-action, github.com/dmolin/backbone.base,num_dependents_deps.dev:0 github.com/dmolina/cec2005real, github.com/dmolina/cec2013lsgo, @@ -442773,6 +451641,7 @@ github.com/dmvaldman/samsara,"criticality_score:0.313130,num_dependents_deps.dev github.com/dmvass/elasticsearch-partition, github.com/dmvass/sqlalchemy-easy-profile, github.com/dmvass/universal-analytics-python3, +github.com/dmvict/clean-workflow-runs, github.com/dmvieira/driftage, github.com/dmvjs/tagr,num_dependents_deps.dev:0 github.com/dmvstar/node-red-contrib-http-ntlm-req,num_dependents_deps.dev:0 @@ -442928,6 +451797,8 @@ github.com/dnahodil/groovy-extra-list-behaviour,num_dependents_deps.dev:0 github.com/dnajjar/pikabu,num_dependents_deps.dev:0 github.com/dnajs/data-dashboard,num_dependents_deps.dev:0 github.com/dnajs/dna.js,num_dependents_deps.dev:4 +github.com/dnaka91/action-cargo-deny, +github.com/dnaka91/action-docker-tags, github.com/dnaka91/chronver,num_dependents_deps.dev:0 github.com/dnaka91/docsearch,num_dependents_deps.dev:0 github.com/dnaka91/obws,num_dependents_deps.dev:0 @@ -442961,6 +451832,7 @@ github.com/dnasir/jquery-cascading-dropdown,num_dependents_deps.dev:0 github.com/dnasir/jquery-simple-wizard,num_dependents_deps.dev:0 github.com/dnaslx/dnaslx,num_dependents_deps.dev:0 github.com/dnass/svelte-canvas,num_dependents_deps.dev:0 +github.com/dnau8/webflow-get-exporter, github.com/dnauck/angular-advanced-searchbox,num_dependents_deps.dev:0 github.com/dnavarrom/aws-cost-explorer,num_dependents_deps.dev:0 github.com/dnb-hugo/browserslist-config, @@ -443073,6 +451945,7 @@ github.com/dnguyenzd/go-tools,num_dependents_deps.dev:0 github.com/dnh-computing/terraform-provider-edgerouter,num_dependents_deps.dev:0 github.com/dnhsoft/ra-data-prisma2,num_dependents_deps.dev:0 github.com/dnhyde/vue-simplest-hue-radial-picker, +github.com/dniHze/maestro-test-action, github.com/dnicolaeva/congenial-fortnight-tester,num_dependents_deps.dev:0 github.com/dnidever/atmosnet, github.com/dnidever/bozepy, @@ -443253,6 +452126,7 @@ github.com/dns2utf8/rustdoc_demo,num_dependents_deps.dev:0 github.com/dns2utf8/son_of_grid_engine.rs,num_dependents_deps.dev:0 github.com/dnsang/scala-common-lib,num_dependents_deps.dev:0 github.com/dnsbty/aeris-node,num_dependents_deps.dev:0 +github.com/dnsbty/get-terraform-outputs-action, github.com/dnschneid/crouton,criticality_score:0.409710 github.com/dnsdb-team/dnsdb-java-sdk,num_dependents_deps.dev:0 github.com/dnseitz/rustration,num_dependents_deps.dev:0 @@ -443349,6 +452223,9 @@ github.com/dnxbf321/promise-jsonp,num_dependents_deps.dev:0 github.com/dnxbf321/up-to-date,num_dependents_deps.dev:0 github.com/dnxbf321/wcx,num_dependents_deps.dev:0 github.com/dnxbjyj/csvs, +github.com/dnyanesh-nagre-blazerunner/BlazeAction, +github.com/dnyanesh-nagre-perforce/blaze-action, +github.com/dnyanesh-nagre-perforce/blaze-action-1, github.com/dnymxm/flask-easymde, github.com/dnys1/aws-lambda-go,num_dependents_deps.dev:0 github.com/dnyy/eslint-config-dnyy,num_dependents_deps.dev:0 @@ -443417,6 +452294,7 @@ github.com/doananh234/react-native-zig-zag-list,num_dependents_deps.dev:0 github.com/doanduyhai/achilles,num_dependents_deps.dev:2664 github.com/doanguyen/lasotuvi, github.com/doanguyen/lasotuvi-django, +github.com/doanpt/AndroidTestReportAction, github.com/doanthuanthanh88/testapi6, github.com/doanthuanthanh88/testapi6-grpc,num_dependents_deps.dev:0 github.com/doanthuanthanh88/testapi6-mockapi, @@ -443428,6 +452306,12 @@ github.com/doanythingfordethklok/hammock, github.com/doanythingfordethklok/memory-stream, github.com/doapp-ryanp/dynamodb-local,num_dependents_deps.dev:8 github.com/doapp-ryanp/serverless-plugin-browserify,num_dependents_deps.dev:0 +github.com/doapply/3d-github-profile, +github.com/doapply/action-badge, +github.com/doapply/convert-json-to-csv, +github.com/doapply/git-sync-repo, +github.com/doapply/release.apk, +github.com/doapply/universities-directory, github.com/doarakko/reviewdog-playground,num_dependents_deps.dev:0 github.com/doars/doars,num_dependents_deps.dev:0 github.com/doaspx/_utils,num_dependents_deps.dev:0 @@ -443475,6 +452359,7 @@ github.com/dobashi/ts-eventually,num_dependents_deps.dev:0 github.com/dobasy/camellia-rs,num_dependents_deps.dev:0 github.com/dobau/golearn,num_dependents_deps.dev:0 github.com/dobbbb/elogrus,num_dependents_deps.dev:0 +github.com/dobbelina/multi_file_bandit, github.com/dobbleg1000/enhanced_threadpool, github.com/dobbs/wiki-plugin-frame,num_dependents_deps.dev:0 github.com/dobbs/wiki-plugin-graphviz,num_dependents_deps.dev:0 @@ -443508,6 +452393,7 @@ github.com/dobjs/dob-refetch, github.com/dobkeratops/array3d,num_dependents_deps.dev:0 github.com/dobkeratops/lininterp,num_dependents_deps.dev:0 github.com/dobkeratops/rust_arrays_with_generic_index,num_dependents_deps.dev:0 +github.com/dobladov/github-status-action, github.com/doblel/Flask-Hooker, github.com/dobobaie/Workers,num_dependents_deps.dev:0 github.com/dobobaie/baby-workers, @@ -443617,6 +452503,7 @@ github.com/docarys/docarys,num_dependents_deps.dev:0 github.com/docarys/docarys-material,num_dependents_deps.dev:0 github.com/docarys/generator-docarys,num_dependents_deps.dev:0 github.com/docarys/markdown-it-admonition,num_dependents_deps.dev:0 +github.com/docascod/actions-build, github.com/docascode/pcrawler,num_dependents_deps.dev:0 github.com/docascode/type2docfx, github.com/docbliny/haiku-senseme, @@ -443686,6 +452573,7 @@ github.com/docker-community-leaders/dockercommunity,num_dependents_deps.dev:0 github.com/docker-exec/dexec,num_dependents_deps.dev:0 github.com/docker-exec/go,num_dependents_deps.dev:0 github.com/docker-flow/docker-flow-proxy,"criticality_score:0.331940,num_dependents_deps.dev:0" +github.com/docker-gh-actions/build-push-action, github.com/docker-in-practice/go-web-server,num_dependents_deps.dev:0 github.com/docker-infra/aws-okta,num_dependents_deps.dev:0 github.com/docker-java/docker-java,criticality_score:0.647460 @@ -443713,6 +452601,7 @@ github.com/docker-library/ruby,criticality_score:0.521090 github.com/docker-library/tomcat,criticality_score:0.374090 github.com/docker-library/wordpress,criticality_score:0.523150 github.com/docker-mailserver/docker-mailserver,criticality_score:0.561580 +github.com/docker-practice/actions-setup-docker, github.com/docker-practice/wx-markdown,num_dependents_deps.dev:0 github.com/docker-practice/zh-cn,num_dependents_deps.dev:0 github.com/docker-production-aws/portfolio-service,num_dependents_deps.dev:0 @@ -443723,6 +452612,7 @@ github.com/docker-swing/swing-server, github.com/docker/api,num_dependents_deps.dev:0 github.com/docker/app,"criticality_score:0.479900,num_dependents_deps.dev:0" github.com/docker/awesome-compose,num_dependents_deps.dev:0 +github.com/docker/bake-action, github.com/docker/build-push-action,criticality_score:0.573590 github.com/docker/buildx,"criticality_score:0.583510,num_dependents_deps.dev:9" github.com/docker/cli,"criticality_score:0.803590,num_dependents_deps.dev:2058" @@ -443762,14 +452652,21 @@ github.com/docker/libcompose,"criticality_score:0.395100,num_dependents_deps.dev github.com/docker/libkv,criticality_score:0.330220 github.com/docker/libnetwork,num_dependents_deps.dev:301 github.com/docker/libswarm,num_dependents_deps.dev:0 +github.com/docker/login-action, github.com/docker/lunchbox,num_dependents_deps.dev:0 github.com/docker/machine,criticality_score:0.642290 +github.com/docker/metadata-action, github.com/docker/notary,num_dependents_deps.dev:2 github.com/docker/pulpo,num_dependents_deps.dev:0 github.com/docker/roadmap,criticality_score:0.341240 github.com/docker/scan-cli-plugin,num_dependents_deps.dev:0 +github.com/docker/scout-action, +github.com/docker/setup-buildx-action, +github.com/docker/setup-qemu-action, github.com/docker/swarm-v2,num_dependents_deps.dev:0 github.com/docker/swarmkit,"criticality_score:0.495760,num_dependents_deps.dev:84" +github.com/dockerbakery/github-metadata-action, +github.com/dockerbakery/gradle-metadata-action, github.com/dockerboard/bluewhale,num_dependents_deps.dev:0 github.com/dockerboard/marsoon,num_dependents_deps.dev:0 github.com/dockercore/k8s-shell,num_dependents_deps.dev:0 @@ -443917,6 +452814,7 @@ github.com/docpad/docpad-plugin-eco,num_dependents_deps.dev:0 github.com/docpad/docpad-plugin-feedr, github.com/docpad/docpad-plugin-ghpages,num_dependents_deps.dev:0 github.com/docpad/docpad-plugin-gist, +github.com/docpad/docpad-plugin-git, github.com/docpad/docpad-plugin-gitrestapi,num_dependents_deps.dev:0 github.com/docpad/docpad-plugin-gitrestapi/issues, github.com/docpad/docpad-plugin-haml, @@ -443932,6 +452830,7 @@ github.com/docpad/docpad-plugin-marked, github.com/docpad/docpad-plugin-move, github.com/docpad/docpad-plugin-multiplelayouts,num_dependents_deps.dev:0 github.com/docpad/docpad-plugin-nativecomments,num_dependents_deps.dev:0 +github.com/docpad/docpad-plugin-nodesass, github.com/docpad/docpad-plugin-paged, github.com/docpad/docpad-plugin-partials, github.com/docpad/docpad-plugin-proxy, @@ -443957,6 +452856,7 @@ github.com/docpad/docpad-plugin-umd,num_dependents_deps.dev:0 github.com/docpad/docpad-plugin-yourpluginname, github.com/docpad/docpad-plugintester,num_dependents_deps.dev:0 github.com/docplanner/github-flow-manager,num_dependents_deps.dev:0 +github.com/docploy/docploy-action, github.com/docpress/docpress,"criticality_score:0.345670,num_dependents_deps.dev:0" github.com/docpress/docpress-base,num_dependents_deps.dev:0 github.com/docpress/docpress-core,num_dependents_deps.dev:0 @@ -443968,6 +452868,7 @@ github.com/docs/frontmatter,num_dependents_deps.dev:0 github.com/docs/liquid,criticality_score:0.425960 github.com/docs/render-content,num_dependents_deps.dev:0 github.com/docsbox/dokky, +github.com/docschina/docschina-actions, github.com/docschina/mdpress,num_dependents_deps.dev:296 github.com/docscript/docscript,num_dependents_deps.dev:0 github.com/docsdk/docsdk-node, @@ -444052,15 +452953,19 @@ github.com/doctrine/inflector,criticality_score:0.595310 github.com/doctrine/instantiator,criticality_score:0.511890 github.com/doctrine/lexer,criticality_score:0.482380 github.com/doctrine/migrations,criticality_score:0.703710 +github.com/doctrine/mongodb, github.com/doctrine/mongodb-odm,criticality_score:0.655180 github.com/doctrine/orm,criticality_score:0.726790 github.com/doctrine/persistence,criticality_score:0.608860 +github.com/doctrine/phpcr-odm, github.com/doctrine/reflection,criticality_score:0.552370 github.com/doctrine/sql-formatter,criticality_score:0.445970 github.com/docty/graner,num_dependents_deps.dev:0 github.com/doctyper/customizr,num_dependents_deps.dev:4 github.com/doctyper/grunt-modernizr,num_dependents_deps.dev:0 github.com/doctyper/gulp-modernizr,num_dependents_deps.dev:0 +github.com/docuactions/github-pages, +github.com/docuactions/google-cloud-storage, github.com/doculabs/samon, github.com/documark/dmp-chapter-numbering, github.com/documark/dmp-page-meta, @@ -444276,11 +453181,16 @@ github.com/dodogabrie/evaLEs, github.com/dodoinblue/ionic-native-bluetoothle,num_dependents_deps.dev:0 github.com/dodomogu/apidoc,num_dependents_deps.dev:0 github.com/dodona-edu/dolos,num_dependents_deps.dev:0 +github.com/dodopizza/acr-sign-push-action, github.com/dodopizza/cashierapp-plugin-contracts,num_dependents_deps.dev:0 github.com/dodopizza/choco_packages_exporter,num_dependents_deps.dev:0 +github.com/dodopizza/dotcover-action, +github.com/dodopizza/dotnet-sonarscanner, +github.com/dodopizza/gha-checklist-badges, github.com/dodopizza/jaeger-kusto,num_dependents_deps.dev:0 github.com/dodopizza/kubectl-shovel,num_dependents_deps.dev:0 github.com/dodopizza/prometheus-shell-exporter,num_dependents_deps.dev:0 +github.com/dodopizza/setup-thrift, github.com/dodopizza/sqlalchemy-kusto, github.com/dodorare/android-manifest-rs,num_dependents_deps.dev:2 github.com/dodorare/apple-bundle-rs,num_dependents_deps.dev:2 @@ -444573,6 +453483,8 @@ github.com/dogoncouch/logdissect, github.com/dogoncouch/quizlight, github.com/dogonso/pickitup, github.com/dogonso/tux_mixer, +github.com/dogoo-me/merge-branch, +github.com/dogoo-me/rustlings-progress, github.com/dogoodpoints/ms-lib,num_dependents_deps.dev:0 github.com/dogpackdesign/apn-formats, github.com/dogpackdesign/apn-formats-js,num_dependents_deps.dev:0 @@ -444783,6 +453695,7 @@ github.com/dojph/react-adminlte,num_dependents_deps.dev:0 github.com/dojun-park/learngo,num_dependents_deps.dev:0 github.com/dok-ts/core,num_dependents_deps.dev:0 github.com/dok/react-workspace,num_dependents_deps.dev:0 +github.com/doka-guide/doka-labeler, github.com/dokai/gitctl, github.com/dokai/sphinxcontrib-cqlengine, github.com/dokan-dev/dokan-dotnet,criticality_score:0.457640 @@ -444819,6 +453732,7 @@ github.com/dokknet/paywall-middleware,num_dependents_deps.dev:0 github.com/dokku/dokku,"criticality_score:0.703580,num_dependents_deps.dev:0" github.com/dokku/dokku-letsencrypt,criticality_score:0.402660 github.com/dokku/dokku-postgres,criticality_score:0.499570 +github.com/dokku/github-action, github.com/dokku/plugn,num_dependents_deps.dev:0 github.com/dokku/sshcommand,criticality_score:0.368910 github.com/dokmic/bluetooth-device,num_dependents_deps.dev:0 @@ -445353,6 +454267,8 @@ github.com/domcorvasce/objection-foundry,num_dependents_deps.dev:0 github.com/domcorvasce/pyoption, github.com/domcorvasce/rtteo,num_dependents_deps.dev:0 github.com/domcull3n/discogs-crate-digger,num_dependents_deps.dev:0 +github.com/domdere/git-submodule-action, +github.com/domdere/haskell-lint-action, github.com/domderen/FileSaver.js,num_dependents_deps.dev:22 github.com/domderen/atom-shell-installer,num_dependents_deps.dev:0 github.com/domderen/bunyan-pagerduty,num_dependents_deps.dev:0 @@ -445485,6 +454401,7 @@ github.com/domenicoflauto/test-npm-package,num_dependents_deps.dev:0 github.com/domenicomon/ts-reactive,num_dependents_deps.dev:0 github.com/domenicquirl/cstree,num_dependents_deps.dev:0 github.com/domenikjones/django-publishing, +github.com/domenix/create-dns-record, github.com/domenn/node-red-contrib-interval,num_dependents_deps.dev:0 github.com/domenn/node-red-contrib-set-defaults,num_dependents_deps.dev:0 github.com/domenp/aircal, @@ -446341,6 +455258,7 @@ github.com/dominikh/implements,num_dependents_deps.dev:0 github.com/dominikh/keyword_arguments,num_dependents_deps.dev:0 github.com/dominikh/netstat-nat,num_dependents_deps.dev:0 github.com/dominikh/split0,num_dependents_deps.dev:0 +github.com/dominikh/staticcheck-action, github.com/dominikh/weechat-ruby,num_dependents_deps.dev:0 github.com/dominikh/xcapture,num_dependents_deps.dev:0 github.com/dominikhlbg/butteraugli.js,num_dependents_deps.dev:0 @@ -446373,6 +455291,7 @@ github.com/dominikus/p5.rec,num_dependents_deps.dev:0 github.com/dominikus1993/k8s-job-observer,num_dependents_deps.dev:0 github.com/dominikusbrian/MDConsole, github.com/dominikuswilly/go-design-pattern,num_dependents_deps.dev:0 +github.com/dominikvrbic/get-branch-name, github.com/dominikwalk/importtime_output_wrapper, github.com/dominikwerder/philox,num_dependents_deps.dev:0 github.com/dominikwilkowski/beast.js,num_dependents_deps.dev:0 @@ -446463,6 +455382,7 @@ github.com/domjtalbot/graphql-schema-flickr,num_dependents_deps.dev:0 github.com/domjtalbot/heritagebot,num_dependents_deps.dev:0 github.com/domjtalbot/javascript,num_dependents_deps.dev:0 github.com/domjtalbot/sassdoc-loader,num_dependents_deps.dev:0 +github.com/domjtalbot/skip-commit, github.com/domkalan/boolString,num_dependents_deps.dev:134 github.com/domkalan/node-ehs, github.com/domkar00/ng2-file-uploading-with-chunk,num_dependents_deps.dev:0 @@ -446666,6 +455586,7 @@ github.com/donaldpipowitch/node-hello-world,num_dependents_deps.dev:0 github.com/donaldpipowitch/rust-hello-world,num_dependents_deps.dev:0 github.com/donaldpipowitch/workspace-release,num_dependents_deps.dev:0 github.com/donaldpiret/asset_hash,num_dependents_deps.dev:0 +github.com/donaldpiret/ecs-deploy, github.com/donaldrauscher/sfdc-bulk, github.com/donaldshen/grenrc,num_dependents_deps.dev:0 github.com/donaldshen/gulp-cson2,num_dependents_deps.dev:0 @@ -446676,6 +455597,7 @@ github.com/donaldwasserman/ember-add-calendar-button,num_dependents_deps.dev:0 github.com/donaldwasserman/ember-link-or,num_dependents_deps.dev:0 github.com/donaldwasserman/ember-test-free-g, github.com/donalffons/opencascade.js,num_dependents_deps.dev:0 +github.com/donaltuohy/deployment-slack-alert, github.com/donasaur/http-proxy-rules,num_dependents_deps.dev:10 github.com/donatPeter/amazon-pay-async,num_dependents_deps.dev:0 github.com/donatPeter/amazon-payments-async,num_dependents_deps.dev:0 @@ -446700,6 +455622,7 @@ github.com/donatj/imgdedup,num_dependents_deps.dev:0 github.com/donatj/jqmux,num_dependents_deps.dev:0 github.com/donatj/mblen,num_dependents_deps.dev:0 github.com/donatj/sqlread,num_dependents_deps.dev:0 +github.com/donatj/symlink-check-action, github.com/donatj/unic,num_dependents_deps.dev:0 github.com/donatoaguirre24/palindrome-npm-module,num_dependents_deps.dev:0 github.com/donatocardoso/busca-cli, @@ -446707,6 +455630,7 @@ github.com/donatocardoso/express-swagger,num_dependents_deps.dev:0 github.com/donatocardoso/express-swagger-delta, github.com/donatolab/calciumcurator, github.com/donatolab/jobcreator, +github.com/donatorsky/update-docker-dependencies, github.com/donatso/family-chart, github.com/donavan/edsl-pageobject,num_dependents_deps.dev:0 github.com/donavanbecker/homebridge-honeywell-home,num_dependents_deps.dev:0 @@ -446788,6 +455712,7 @@ github.com/doncicuto/es-provinces,num_dependents_deps.dev:0 github.com/doncollins/dead-simple-string-interpolation,num_dependents_deps.dev:0 github.com/dond2clouds/angular-library-seed,num_dependents_deps.dev:0 github.com/dond2clouds/speedray-swagger-utils, +github.com/dondakeshimo/tmpl-cf, github.com/dondakeshimo/todo-cli,num_dependents_deps.dev:0 github.com/dondany/simple-blog,num_dependents_deps.dev:0 github.com/dondarrion91/go-rest,num_dependents_deps.dev:0 @@ -447030,6 +455955,7 @@ github.com/dongting/clquery, github.com/donguramii/toy.server,num_dependents_deps.dev:0 github.com/dongwanlong/dtmpl,num_dependents_deps.dev:0 github.com/dongwanlong/react-upload-image,num_dependents_deps.dev:0 +github.com/dongweiming/douban-activity-readme, github.com/dongweiming/fastapi-mako, github.com/dongweiming/idb, github.com/dongweiming/ipynb-viewer, @@ -447176,8 +456102,10 @@ github.com/donmahallem/TrapezeApiExpressServer,num_dependents_deps.dev:0 github.com/donmahallem/TrapezeApiTypes,num_dependents_deps.dev:0 github.com/donmahallem/TrapezeClientElectron,num_dependents_deps.dev:0 github.com/donmahallem/TrapezeClientNg,num_dependents_deps.dev:0 +github.com/donmahallem/github-release-action, github.com/donmahallem/guenni,num_dependents_deps.dev:0 github.com/donmahallem/js-libs,num_dependents_deps.dev:10 +github.com/donmahallem/lerna-label, github.com/donmahallem/trapeze,num_dependents_deps.dev:8 github.com/donmai-me/MaiConverter, github.com/donmai-me/WannaCRI, @@ -447332,6 +456260,7 @@ github.com/donotjs/donot-transform-pug,num_dependents_deps.dev:0 github.com/donotjs/donot-transform-rollup,num_dependents_deps.dev:0 github.com/donotjs/donot-transform-stylus,num_dependents_deps.dev:0 github.com/donotnoot/samlvpn,num_dependents_deps.dev:0 +github.com/donovan-fournier/action-post-md-slack, github.com/donovan-graham/ember-cli-broccoli-compass,num_dependents_deps.dev:0 github.com/donovan-graham/jest-regress,num_dependents_deps.dev:0 github.com/donovan-herion/cli,num_dependents_deps.dev:0 @@ -447652,6 +456581,7 @@ github.com/doong-jo/react-form-validation-hook,num_dependents_deps.dev:0 github.com/doong-jo/use-inicis,num_dependents_deps.dev:0 github.com/doonny/PipeCNN,criticality_score:0.309370 github.com/doonot/angular-image-cropper-v2,num_dependents_deps.dev:0 +github.com/doonstore/firebase-deploy, github.com/doooseee/BEN-notification,num_dependents_deps.dev:0 github.com/doooseee/ben-animation,num_dependents_deps.dev:0 github.com/dooozi/dooi,num_dependents_deps.dev:0 @@ -447890,6 +456820,7 @@ github.com/dopl-technologies/api-protos-nodejs,num_dependents_deps.dev:0 github.com/dopl-technologies/sdk-node,num_dependents_deps.dev:0 github.com/dopl-technologies/sdk-python, github.com/doppelganger113/amazon-pay-react,num_dependents_deps.dev:0 +github.com/doppelganger113/bazelisk-setup-action, github.com/doppelganger9/stencil-qrcode-component,num_dependents_deps.dev:0 github.com/doppelgunner/audio-react-recorder, github.com/doppelgunner/doppelgunner-stock-node,num_dependents_deps.dev:0 @@ -447945,6 +456876,7 @@ github.com/dorack/jiralicious,num_dependents_deps.dev:1 github.com/dorado-lmz/JointChart,num_dependents_deps.dev:0 github.com/dorado-lmz/axios-retry,num_dependents_deps.dev:0 github.com/dorado-lmz/storybook-custom_vue,num_dependents_deps.dev:0 +github.com/doradodev/node-python-serverless, github.com/dorafc/color-a-tron,num_dependents_deps.dev:0 github.com/dorahee/FW-DDSM, github.com/dorahee/demand-manager, @@ -448067,6 +456999,7 @@ github.com/doriandrn/rxdb-search,num_dependents_deps.dev:0 github.com/doriandrn/vue-browser-component,num_dependents_deps.dev:0 github.com/doriang102/cause, github.com/doriangrelu/react-custom-validation,num_dependents_deps.dev:0 +github.com/dorianim/downtimerobot-action, github.com/dorianim/py-tenda4g09, github.com/dorianj/postgres-csvlog,num_dependents_deps.dev:0 github.com/dorianlangbeck/nodejs-quvi,num_dependents_deps.dev:0 @@ -448148,6 +457081,8 @@ github.com/dornellaskj/react-SEO-starter, github.com/dorny/codemirror-highlight-node,num_dependents_deps.dev:0 github.com/dorny/jsdom,num_dependents_deps.dev:0 github.com/dorny/jsdom-little,num_dependents_deps.dev:84 +github.com/dorny/paths-filter, +github.com/dorny/test-reporter, github.com/dorny/xjade,num_dependents_deps.dev:0 github.com/dorokhin/amp-tools, github.com/dorokhin/golang-samples,num_dependents_deps.dev:0 @@ -448227,6 +457162,7 @@ github.com/dorsha/go-saml,num_dependents_deps.dev:0 github.com/dorsha/react-dropzone,num_dependents_deps.dev:0 github.com/dorshaar/quadraticformula,num_dependents_deps.dev:0 github.com/dorshay6/fast-serve,num_dependents_deps.dev:0 +github.com/dorshinar/get-deployment-url, github.com/dorsywang/Abstract.js,num_dependents_deps.dev:0 github.com/dorsywang/nodeWindow,num_dependents_deps.dev:2 github.com/dortania/OpenCore-Install-Guide,criticality_score:0.496260 @@ -448262,6 +457198,7 @@ github.com/dos-j/serenity-node,num_dependents_deps.dev:0 github.com/dos-j/serenity-react,num_dependents_deps.dev:0 github.com/dos-j/sham-it,num_dependents_deps.dev:0 github.com/dos-j/sham-server,num_dependents_deps.dev:0 +github.com/dos-m0nk3y/LeetCode-Synchronizer, github.com/dos1/angular-konami,num_dependents_deps.dev:0 github.com/dos1/angular-ponies,num_dependents_deps.dev:0 github.com/dos65/make,num_dependents_deps.dev:0 @@ -448298,6 +457235,7 @@ github.com/dosbox-staging/dosbox-staging,criticality_score:0.556120 github.com/dosco/graphjin,"criticality_score:0.394090,num_dependents_deps.dev:0" github.com/dosco/super-graph,num_dependents_deps.dev:0 github.com/doseeing/dyws,num_dependents_deps.dev:0 +github.com/doseiai/dctl, github.com/doselect/gocelery,num_dependents_deps.dev:0 github.com/doselect/ngTour,num_dependents_deps.dev:0 github.com/dosentmatter/babel-plugin-const-enum,num_dependents_deps.dev:65 @@ -448331,6 +457269,7 @@ github.com/doshprompt/grunt-angular-localization,num_dependents_deps.dev:0 github.com/doshprompt/grunt-html-angular-prepare,num_dependents_deps.dev:0 github.com/doshprompt/grunt-json-sort,num_dependents_deps.dev:0 github.com/doshprompt/htmlhint-stylish,num_dependents_deps.dev:0 +github.com/doshyt/cve-monitor, github.com/dosier/language-act-r,num_dependents_deps.dev:0 github.com/dosisod/nu,num_dependents_deps.dev:0 github.com/dosmond/fireup-cli,num_dependents_deps.dev:0 @@ -448357,6 +457296,8 @@ github.com/dostolu/service-deps,num_dependents_deps.dev:0 github.com/dostolu/swagger-hub-helper,num_dependents_deps.dev:0 github.com/dostolu/validationTransformer,num_dependents_deps.dev:0 github.com/dostow/rave,num_dependents_deps.dev:0 +github.com/dosuken123/github-action-test, +github.com/dosuken123/github-action-test-docker, github.com/dosuser/word-frequency,num_dependents_deps.dev:0 github.com/dosyago-coder-0/brutal.js,num_dependents_deps.dev:0 github.com/dosyago-coder-0/dosycanvasinput,num_dependents_deps.dev:0 @@ -448625,6 +457566,7 @@ github.com/dotenorio/clipboard-manager-electron,num_dependents_deps.dev:0 github.com/dotenorio/dotenorio.js,num_dependents_deps.dev:0 github.com/dotenorio/freeloader,num_dependents_deps.dev:0 github.com/dotenorio/git_aliases,num_dependents_deps.dev:0 +github.com/dotenv-linter/action-dotenv-linter, github.com/dotenv-linter/dotenv-linter,criticality_score:0.468830 github.com/dotenv-org/cli,num_dependents_deps.dev:0 github.com/dotenv-rs/dotenv,num_dependents_deps.dev:155 @@ -448644,6 +457586,7 @@ github.com/dothingsio/redux-websocket,num_dependents_deps.dev:0 github.com/dothinking/pdf2docx, github.com/dothinking/pdf2docxnogui, github.com/dothiphuc81299/coffeeshop-server,num_dependents_deps.dev:0 +github.com/dothq/actions-status-discord, github.com/dothq/argon-checker,num_dependents_deps.dev:0 github.com/dothq/birch,num_dependents_deps.dev:0 github.com/dothq/browser,criticality_score:0.500970 @@ -448652,8 +457595,10 @@ github.com/dothq/dc,num_dependents_deps.dev:0 github.com/dothq/dot,num_dependents_deps.dev:0 github.com/dothq/electron-privacy, github.com/dothq/id,num_dependents_deps.dev:0 +github.com/dothq/mozillabuild-shell-action, github.com/dothq/plugins,num_dependents_deps.dev:0 github.com/dothq/router, +github.com/dothq/tag-and-release-and-upload, github.com/dothq/tig,num_dependents_deps.dev:0 github.com/dothubio/dothub,num_dependents_deps.dev:0 github.com/dotify/animation-engine,num_dependents_deps.dev:0 @@ -448749,6 +457694,7 @@ github.com/dotnet/corefx,criticality_score:0.469360 github.com/dotnet/corefxlab,criticality_score:0.506620 github.com/dotnet/crank,criticality_score:0.353540 github.com/dotnet/csharplang,criticality_score:0.555240 +github.com/dotnet/datagridextensions, github.com/dotnet/designs,criticality_score:0.500560 github.com/dotnet/diagnostics,criticality_score:0.566320 github.com/dotnet/docfx,criticality_score:0.646680 @@ -448769,6 +457715,7 @@ github.com/dotnet/machinelearning,criticality_score:0.567270 github.com/dotnet/machinelearning-samples,criticality_score:0.486670 github.com/dotnet/maui,criticality_score:0.518570 github.com/dotnet/msbuild,criticality_score:0.636230 +github.com/dotnet/nbgv, github.com/dotnet/orleans,criticality_score:0.634190 github.com/dotnet/performance,criticality_score:0.469520 github.com/dotnet/pinvoke,criticality_score:0.477620 @@ -448788,6 +457735,7 @@ github.com/dotnet/templating,criticality_score:0.586830 github.com/dotnet/try,criticality_score:0.421840 github.com/dotnet/try-convert,criticality_score:0.459220 github.com/dotnet/tye,criticality_score:0.472710 +github.com/dotnet/versionsweeper, github.com/dotnet/wcf,criticality_score:0.541860 github.com/dotnet/winforms,criticality_score:0.653340 github.com/dotnet/wpf,criticality_score:0.653720 @@ -449009,6 +457957,7 @@ github.com/dottorblaster/siren,num_dependents_deps.dev:0 github.com/dottorblaster/tumbledown,num_dependents_deps.dev:0 github.com/dottorblaster/willfs,num_dependents_deps.dev:0 github.com/dottori-it/fancy-react-select,num_dependents_deps.dev:0 +github.com/dottxado/action-wordpress-svn-tag-cleaner, github.com/dottype/DotType,"num_dependents_deps.dev:2,num_dependents_deps.dev:0" github.com/dottype/DotType.DependencyInjection,num_dependents_deps.dev:0 github.com/dottype/DotType.Hosting,num_dependents_deps.dev:4 @@ -449235,6 +458184,7 @@ github.com/doublespeakgames/adarkroom,criticality_score:0.414310 github.com/doublestat/node-usb232-pir,num_dependents_deps.dev:0 github.com/doublestranded/ember-sigmajs,num_dependents_deps.dev:0 github.com/doubleswirve/hyper-saxy,num_dependents_deps.dev:0 +github.com/doublesymmetry/android-version-actions, github.com/doublethink-studios/rocketpack,num_dependents_deps.dev:0 github.com/doublethinkio/use-animate-css, github.com/doubletruth/ts-randomstring,num_dependents_deps.dev:0 @@ -449340,6 +458290,7 @@ github.com/dougbtv/kamailio-etcd-dispatcher,num_dependents_deps.dev:0 github.com/dougbtv/node-pasteall,num_dependents_deps.dev:0 github.com/dougbtv/stegosaurus,num_dependents_deps.dev:0 github.com/dougbtv/whereabouts,num_dependents_deps.dev:0 +github.com/dougcalobrisi/nested-github-runners-action, github.com/dougcalobrisi/react-jointjs,num_dependents_deps.dev:0 github.com/dougcpr/monomer,num_dependents_deps.dev:0 github.com/dougdroper/update_dependencies,num_dependents_deps.dev:0 @@ -449355,6 +458306,7 @@ github.com/dougfunny1983/lovely-log,num_dependents_deps.dev:0 github.com/dougg0k/node-sintegra,num_dependents_deps.dev:0 github.com/dougglez/slack-messenger,num_dependents_deps.dev:0 github.com/doughepi/opentracing-decorator, +github.com/doughepi/yaml-env-action, github.com/doughgle/cryptocracy, github.com/doughlass/swedish-ssn,num_dependents_deps.dev:0 github.com/doughsay/connect-active-tags,num_dependents_deps.dev:0 @@ -449399,6 +458351,7 @@ github.com/douglasapolinario/goarea,num_dependents_deps.dev:0 github.com/douglasbarbosadelima/event-emitter-manager,num_dependents_deps.dev:0 github.com/douglasbarbosadelima/http-status-helper,num_dependents_deps.dev:0 github.com/douglasbasilio/productstore,num_dependents_deps.dev:0 +github.com/douglascamata/setup-docker-macos-action, github.com/douglascdev/aoba_discord_bot, github.com/douglascdev/gmail_attachment_downloader, github.com/douglascdev/pypixelart, @@ -449637,6 +458590,7 @@ github.com/dound/gae-sessions,Google github.com/dounine/db-util,num_dependents_deps.dev:0 github.com/dounine/fasthttp,num_dependents_deps.dev:0 github.com/dounine/scala-filebeat,num_dependents_deps.dev:0 +github.com/douniwan5788/frpc_action, github.com/dounx/gwitch,num_dependents_deps.dev:0 github.com/doup/lamia,num_dependents_deps.dev:0 github.com/doup/metalsmith-i18n,num_dependents_deps.dev:0 @@ -449718,6 +458672,7 @@ github.com/dovaleac/stateless4j-yaml-importer,num_dependents_deps.dev:0 github.com/dovar001/crud,num_dependents_deps.dev:0 github.com/dovar001/search,num_dependents_deps.dev:0 github.com/dovar001/wallet,num_dependents_deps.dev:0 +github.com/dovbrand/repo-file-sync-action, github.com/dovbysh/gin-rest-generator,num_dependents_deps.dev:0 github.com/dovbysh/go-skeleton,num_dependents_deps.dev:0 github.com/dovca/apollo-module,num_dependents_deps.dev:0 @@ -449731,6 +458686,9 @@ github.com/dovedevic/IPyC, github.com/dovejb/character-painting,num_dependents_deps.dev:0 github.com/dover247/penlib, github.com/doverdb/react-alpha-jump,num_dependents_deps.dev:0 +github.com/dovetail/codewatchers, +github.com/dovetail/notion-get-page, +github.com/dovetail/notion-update-page-property, github.com/dovetailsoftware/aws-signing-proxy,num_dependents_deps.dev:0 github.com/dovgani/gd-window-tester,num_dependents_deps.dev:0 github.com/dovics/scheduler,num_dependents_deps.dev:0 @@ -449974,6 +458932,7 @@ github.com/doxify/gosupreme,num_dependents_deps.dev:0 github.com/doximity/configure-jfrog,num_dependents_deps.dev:0 github.com/doximity/es-elasticity,num_dependents_deps.dev:0 github.com/doximity/eslint-generate-todo,num_dependents_deps.dev:0 +github.com/doximity/gh-action-callback-list-files, github.com/doximity/rake-ui,num_dependents_deps.dev:0 github.com/doximity/vital,num_dependents_deps.dev:0 github.com/doxjs/dox-react,num_dependents_deps.dev:0 @@ -449997,6 +458956,7 @@ github.com/doyaaaaaken/kotlin-csv,num_dependents_deps.dev:0 github.com/doyaaaaaken/vue-environment-sticker,num_dependents_deps.dev:0 github.com/doycode/mlgorithms, github.com/doyensec/electronegativity,"criticality_score:0.360370,num_dependents_deps.dev:0" +github.com/doyensec/electronegativity-action, github.com/doyensec/inql,criticality_score:0.353490 github.com/doyensec/regexploit, github.com/doygen/doy,num_dependents_deps.dev:0 @@ -450014,6 +458974,7 @@ github.com/doytch/inferno-dnd-sorter,num_dependents_deps.dev:0 github.com/doytch/inferno-menu-bar,num_dependents_deps.dev:0 github.com/doytowin/doyto-oss-parent,num_dependents_deps.dev:0 github.com/doyubkim/fluid-engine-dev,criticality_score:0.415100 +github.com/doyyan/testaction, github.com/doyzheng/easy-json-convert,num_dependents_deps.dev:0 github.com/dozGrou/react-native-toastr,num_dependents_deps.dev:0 github.com/dozen-tech/simpled-worker,num_dependents_deps.dev:0 @@ -450111,6 +459072,7 @@ github.com/dpalominop/lssh, github.com/dpalou/cordova-common-registerusernotificationsettings,num_dependents_deps.dev:0 github.com/dpalou/cordova-plugin-local-notifications, github.com/dpaloucva/cordova-plugin-local-notifications,num_dependents_deps.dev:0 +github.com/dpanayotov/issue-cloner, github.com/dpansica/genericdao,num_dependents_deps.dev:0 github.com/dpansica/module-archetype,num_dependents_deps.dev:0 github.com/dpansica/webapplication-archetype,num_dependents_deps.dev:0 @@ -450335,6 +459297,7 @@ github.com/dpguerra/plataformabr-util-helper,num_dependents_deps.dev:0 github.com/dpguerra/plataformabr-util-validator,num_dependents_deps.dev:0 github.com/dpguthrie/bankfind, github.com/dpguthrie/brokermint, +github.com/dpguthrie/last-workflow-created-at, github.com/dpguthrie/yahooquery,criticality_score:0.346420 github.com/dphaener/call,num_dependents_deps.dev:0 github.com/dphaener/reactable-forms,num_dependents_deps.dev:0 @@ -450605,6 +459568,8 @@ github.com/dpoulopoulos/forma, github.com/dpoulson/SabertoothPacketSerial, github.com/dpp-name/jinba-js-client,num_dependents_deps.dev:0 github.com/dppalomar/riskparity.py, +github.com/dppeak/XCode-Deploy-With-Secrets, +github.com/dppeak/update-ios-plist-action, github.com/dpploy/covid-surge, github.com/dppo/react-native-photo-picker,num_dependents_deps.dev:0 github.com/dppo/react-native-popup,num_dependents_deps.dev:0 @@ -450636,6 +459601,7 @@ github.com/dprgarner/tech-radar-generator,num_dependents_deps.dev:0 github.com/dpricha89/dr-serverless-app,num_dependents_deps.dev:0 github.com/dprimenko/composefile,num_dependents_deps.dev:0 github.com/dprimenko/moleculer-auth-fb,num_dependents_deps.dev:0 +github.com/dprint/check, github.com/dprint/dprint,"criticality_score:0.420340,num_dependents_deps.dev:36" github.com/dprint/dprint-plugin-json,num_dependents_deps.dev:1 github.com/dprint/dprint-plugin-markdown,num_dependents_deps.dev:1 @@ -450657,6 +459623,8 @@ github.com/dprog-philippe-docourt/django-string-renderer, github.com/dprokop/querier,num_dependents_deps.dev:0 github.com/dprokop/tslint-totals-formatter,num_dependents_deps.dev:0 github.com/dpromanko/collatz-conjecture,num_dependents_deps.dev:0 +github.com/dprosper/ic-setup-cli, +github.com/dprosper/icce-cud-cli, github.com/dprosper/random-demo-names,num_dependents_deps.dev:0 github.com/dprosper/vpc-flowlogs-elasticsearch,num_dependents_deps.dev:0 github.com/dprotaso/pkg,num_dependents_deps.dev:0 @@ -450671,6 +459639,7 @@ github.com/dprovodnikov/useDropdown,num_dependents_deps.dev:0 github.com/dprovodnikov/useToggle,num_dependents_deps.dev:0 github.com/dpruessner/rust-bcm2709-spi,num_dependents_deps.dev:0 github.com/dpryan79/pyBigWig, +github.com/dps-srl/autobumper, github.com/dps/piui, github.com/dps/simplescheduler, github.com/dpsingh287/topsis-test-101, @@ -451143,6 +460112,7 @@ github.com/dragonchilde/go,num_dependents_deps.dev:0 github.com/dragoncommits/django-betterFlatPages, github.com/dragoncommits/django-developmentEmailDashboard, github.com/dragondev/XboxAPI-Wrapper, +github.com/dragondrop-cloud/github-action-tfstate-migration, github.com/dragoneena12/go-otp-example,num_dependents_deps.dev:0 github.com/dragoneena12/lapi-hotel-system,num_dependents_deps.dev:0 github.com/dragonereum/dragonereum-contracts,num_dependents_deps.dev:0 @@ -451211,9 +460181,13 @@ github.com/dragonprojects/mxd-search-command,num_dependents_deps.dev:0 github.com/dragonprojects/mxd-session-storage,num_dependents_deps.dev:0 github.com/dragonprojects/node-red-contrib-dnode,num_dependents_deps.dev:0 github.com/dragonqos/go_boilerplate,num_dependents_deps.dev:0 +github.com/dragonraid/changelog-emitter, +github.com/dragonraid/deployment-bumper, github.com/dragonraid/gowit,num_dependents_deps.dev:0 +github.com/dragonraid/sls-action, github.com/dragonraider5/node-archiver,num_dependents_deps.dev:0 github.com/dragonraider5/react-image-loadr,num_dependents_deps.dev:0 +github.com/dragonscale-ai/ghost-publish-action, github.com/dragonspark-tech/graphene-design-system,num_dependents_deps.dev:0 github.com/dragonsss/jwt-generator-cli,num_dependents_deps.dev:0 github.com/dragonsss/simple-go-starter,num_dependents_deps.dev:0 @@ -451223,6 +460197,7 @@ github.com/dragontalker/golang-card-deck,num_dependents_deps.dev:0 github.com/dragonteros/Eomi.js,num_dependents_deps.dev:0 github.com/dragontortoise/noweb.py, github.com/dragonveinchain/flexiblensq,num_dependents_deps.dev:0 +github.com/dragonwell-releng/check_commit_action, github.com/dragonwocky/documentative,num_dependents_deps.dev:0 github.com/dragonwocky/notion-enhancer,num_dependents_deps.dev:0 github.com/dragonwong/drop-animation,num_dependents_deps.dev:0 @@ -451254,6 +460229,7 @@ github.com/dragoon/django-selenium, github.com/dragoon20/mongodb-migrations,num_dependents_deps.dev:0 github.com/dragoonzx/vue-typed-generator, github.com/dragos-atanasoae/send-intent-listener,num_dependents_deps.dev:0 +github.com/dragos-cojocari/ms-teams-notification, github.com/dragos-tudor/practikal-library,num_dependents_deps.dev:0 github.com/dragos199993/dxpcli,num_dependents_deps.dev:0 github.com/dragos5436/npm-package, @@ -451386,6 +460362,7 @@ github.com/dral/react-generic-data,num_dependents_deps.dev:0 github.com/dral/react-goban-svg,num_dependents_deps.dev:0 github.com/dral/react-qrcode-svg,num_dependents_deps.dev:0 github.com/dral/react-web3-component,num_dependents_deps.dev:0 +github.com/dral3x/action-stringslint, github.com/dralagen/csv2xml,num_dependents_deps.dev:0 github.com/dralagen/pom,num_dependents_deps.dev:0 github.com/dralletje/ArrayPromise,num_dependents_deps.dev:0 @@ -451410,6 +460387,7 @@ github.com/dramf/gotlgbot,num_dependents_deps.dev:0 github.com/dramf/usedwords,num_dependents_deps.dev:0 github.com/dramich/rancher-client-example,num_dependents_deps.dev:0 github.com/dramich/rke,num_dependents_deps.dev:0 +github.com/dramirez-qb/operator-sdk-github-action, github.com/dramloc/myteepi,num_dependents_deps.dev:0 github.com/dramloc/petite-auth,num_dependents_deps.dev:0 github.com/drampelt/gulp-cson-safe,num_dependents_deps.dev:0 @@ -451429,6 +460407,7 @@ github.com/dranidis/permutation-sjt,num_dependents_deps.dev:0 github.com/dranih/gowap,num_dependents_deps.dev:0 github.com/dranikpg/rcin,num_dependents_deps.dev:0 github.com/dranjan/python-plyfile,criticality_score:0.308270 +github.com/drankhil/pull-request-target-branch-check, github.com/drankinn/particle.io, github.com/drankinn/wolverine, github.com/drantunes/ionic-query-interface,num_dependents_deps.dev:0 @@ -451790,6 +460769,7 @@ github.com/dreaken/react-microsoft-login-advanced,num_dependents_deps.dev:0 github.com/dreal/dreal4, github.com/drealnn/cordova-plugin-ATID911N,num_dependents_deps.dev:0 github.com/dream-bit-de/gatsby-plugin-better-page-tree,num_dependents_deps.dev:0 +github.com/dream-encode/upload-release-asset-node16, github.com/dream-mo/pyphp, github.com/dream-pioneer/call_useragent, github.com/dream-rhythm/npm_test, @@ -451882,6 +460862,7 @@ github.com/dreamcatcher-tech/keypress-browserify,num_dependents_deps.dev:2 github.com/dreamchasert/wx-esl,num_dependents_deps.dev:0 github.com/dreamcmi/qq-go-robot,num_dependents_deps.dev:0 github.com/dreamcodeman/tmt-go-sdk,num_dependents_deps.dev:0 +github.com/dreamcodez/dead-simple-nodejs, github.com/dreamcove/uci,num_dependents_deps.dev:0 github.com/dreamcreated/buffer-base62,num_dependents_deps.dev:0 github.com/dreamcreated/flake-id-decoder,num_dependents_deps.dev:0 @@ -451960,6 +460941,7 @@ github.com/dreamhorn/scrimshaw,num_dependents_deps.dev:0 github.com/dreamhost/cliff, github.com/dreamhost/cliff-tablib, github.com/dreamhost/dreamhost.css,num_dependents_deps.dev:0 +github.com/dreamhunter2333/ghcr-delete-image-action, github.com/dreamhuo/easycomment,num_dependents_deps.dev:0 github.com/dreamicalwestswim/vue3-cropper,num_dependents_deps.dev:0 github.com/dreamid27/ngx-izitoast, @@ -452024,6 +461006,7 @@ github.com/dreampulse/modelizer,num_dependents_deps.dev:0 github.com/dreampulse/node-rethinkdb,num_dependents_deps.dev:0 github.com/dreampulse/release-experiment,num_dependents_deps.dev:0 github.com/dreampulse/swagger2typescript,num_dependents_deps.dev:0 +github.com/dreamquark-ai/ci-security-report, github.com/dreamquark-ai/tabnet,criticality_score:0.368050 github.com/dreamqyq/coast-ui, github.com/dreamqyq/coast-ui-vue3,num_dependents_deps.dev:0 @@ -452036,6 +461019,7 @@ github.com/dreamscapes/linter-coverage,num_dependents_deps.dev:0 github.com/dreamseal/salfutil,num_dependents_deps.dev:0 github.com/dreamsicle-io/speckle, github.com/dreamsiclemedia/speckle,num_dependents_deps.dev:0 +github.com/dreamsinbits/export-plantuml-action, github.com/dreamsk/logger-webpack-plugin,num_dependents_deps.dev:0 github.com/dreamskr/nps,num_dependents_deps.dev:0 github.com/dreamsleep11/pper,num_dependents_deps.dev:0 @@ -452087,6 +461071,7 @@ github.com/drecom/scene-graph,num_dependents_deps.dev:0 github.com/drecom/scene-graph-schema,num_dependents_deps.dev:0 github.com/drecom/stats.js,num_dependents_deps.dev:0 github.com/drecom/webgl-rendering-debugger,num_dependents_deps.dev:0 +github.com/dredav/action-saber-build, github.com/dredav/lending-parser,num_dependents_deps.dev:0 github.com/dreday966/react-curry,num_dependents_deps.dev:0 github.com/dreddsa5dies/algorithm,num_dependents_deps.dev:0 @@ -452179,6 +461164,7 @@ github.com/dreiss/git-jira-attacher, github.com/dreitagebart/-unique-styled,num_dependents_deps.dev:0 github.com/dreitagebart/box,num_dependents_deps.dev:0 github.com/dreitagebart/unik,num_dependents_deps.dev:0 +github.com/dreitier/conditional-regex-search-and-replace-action, github.com/dreitzner/responsive-background-image,num_dependents_deps.dev:0 github.com/drejahl/vue-business-model-canvas,num_dependents_deps.dev:0 github.com/drejahl/vue-draggable-table,num_dependents_deps.dev:0 @@ -452291,6 +461277,8 @@ github.com/drewblaisdell/monitor.io,num_dependents_deps.dev:0 github.com/drewblas/aws-ses,"criticality_score:0.397060,num_dependents_deps.dev:6" github.com/drewblas/magistrate,num_dependents_deps.dev:0 github.com/drewblas/magistrate_monitor,num_dependents_deps.dev:0 +github.com/drewble/aws-signature-v4, +github.com/drewble/s3-upload-github-action, github.com/drewbo/schuler-ipsum,num_dependents_deps.dev:0 github.com/drewbo/sqltoes,num_dependents_deps.dev:0 github.com/drewbolles/use-browser-language,num_dependents_deps.dev:0 @@ -452455,6 +461443,9 @@ github.com/drewwalton19216801/autocallin,num_dependents_deps.dev:0 github.com/drewwhis/pybricks-stubs, github.com/drewwills/fbms,num_dependents_deps.dev:0 github.com/drewwyatt/am-i-shadowbanned,num_dependents_deps.dev:0 +github.com/drewwyatt/auto-rc, +github.com/drewwyatt/comment-pipeline, +github.com/drewwyatt/datadog-metrics-reporter, github.com/drewwyatt/eslint-plugin-tslint-comments,num_dependents_deps.dev:0 github.com/drewwyatt/fallouthacking,num_dependents_deps.dev:0 github.com/drewwyatt/git-tidy,num_dependents_deps.dev:0 @@ -452484,6 +461475,8 @@ github.com/dreyescat/bootstrap-rating,num_dependents_deps.dev:0 github.com/dreyescat/react-rating,"criticality_score:0.355950,num_dependents_deps.dev:46" github.com/dreygur/Quran.com, github.com/dreygur/SSLCommerz-Python-api, +github.com/dreygur/doxygen, +github.com/dreygur/github-actions-yarn, github.com/dreygur/subscene-api, github.com/dreylago/logicmin, github.com/dreynolds/CredentialsManager, @@ -452644,6 +461637,7 @@ github.com/driessamyn/deduplicater,num_dependents_deps.dev:0 github.com/driesvints/dotfiles,criticality_score:0.353410 github.com/drieswijns/ahorn, github.com/drift-labs/driftpy, +github.com/drift-labs/solana-verify-action, github.com/drift-org/backend,num_dependents_deps.dev:0 github.com/driftIces/open-mpweixin,num_dependents_deps.dev:0 github.com/drifterz13/go-services,num_dependents_deps.dev:0 @@ -452711,6 +461705,7 @@ github.com/drillcoder/python_pik_api_wrapper, github.com/drilldripper/QtArgSelector, github.com/drilldsp/adstruct,num_dependents_deps.dev:0 github.com/drillster/drone-email,num_dependents_deps.dev:0 +github.com/drilonrecica/action-slack-notify, github.com/drinchev/german-income-tax,num_dependents_deps.dev:0 github.com/drinchev/typedoc-plugin-context,num_dependents_deps.dev:0 github.com/drincruz/go-markdown-to-html,num_dependents_deps.dev:0 @@ -452842,6 +461837,7 @@ github.com/driveyard/driveyard,num_dependents_deps.dev:1 github.com/drivezy/drivezy-user-utils,num_dependents_deps.dev:0 github.com/drivezy/storage-utility,num_dependents_deps.dev:0 github.com/drivingscout/node-sdk,num_dependents_deps.dev:0 +github.com/drivly/deploy-worker, github.com/drivy/dom-query,num_dependents_deps.dev:0 github.com/drivy/fernet-cli, github.com/drivy/frontend-configs,num_dependents_deps.dev:0 @@ -452849,6 +461845,7 @@ github.com/drix00/casinotools, github.com/drix00/pymcxray, github.com/drix00/xrayphasemap, github.com/drix00/xrayspectrummodeling, +github.com/drixs6o9/docker-deployer, github.com/drizki/bmkg,num_dependents_deps.dev:0 github.com/drizki/jenis,num_dependents_deps.dev:0 github.com/drizki/kodepos.js,num_dependents_deps.dev:0 @@ -452873,6 +461870,7 @@ github.com/drj-io/td,num_dependents_deps.dev:0 github.com/drj11/posixbre,num_dependents_deps.dev:1 github.com/drj11/pypng,criticality_score:0.426110 github.com/drj11/sed.js,num_dependents_deps.dev:0 +github.com/drj17/assign-reviewers, github.com/drjayvee/babel-plugin-add-contenthash-to-imports,num_dependents_deps.dev:0 github.com/drjekyll-org/javapns,num_dependents_deps.dev:0 github.com/drjlt/csrf,num_dependents_deps.dev:0 @@ -452955,6 +461953,7 @@ github.com/drmats/js-toolbox,num_dependents_deps.dev:0 github.com/drmats/mem-box,num_dependents_deps.dev:0 github.com/drmats/red-goodies,num_dependents_deps.dev:0 github.com/drmegalomaniac/ghostish,num_dependents_deps.dev:0 +github.com/drmendes/setup-k8s-operator-sdk, github.com/drmercer/PickerForUnsplashPhotos,num_dependents_deps.dev:0 github.com/drmercer/essential-injector,num_dependents_deps.dev:0 github.com/drmercer/gitlike-config,num_dependents_deps.dev:0 @@ -452975,6 +461974,7 @@ github.com/drmikehenry/ptee, github.com/drmikehenry/romt, github.com/drmikehenry/svnwrap, github.com/drmingdrmer/md2zhihu, +github.com/drmingdrmer/mdbook-full, github.com/drmingdrmer/xptemplate,criticality_score:0.303650 github.com/drmobile/pubsub-broker, github.com/drmobile/services-lib, @@ -453126,6 +462126,7 @@ github.com/drolsen/postcss-in-out,num_dependents_deps.dev:0 github.com/drolsen/webpack-cdn-inject,num_dependents_deps.dev:0 github.com/drolsen/webpack-favicons,num_dependents_deps.dev:0 github.com/drolsen/webpack-svg-spritely,num_dependents_deps.dev:0 +github.com/drom/action-verilator, github.com/drom/aerostat,num_dependents_deps.dev:0 github.com/drom/atom-ide-eda,num_dependents_deps.dev:0 github.com/drom/bitfield,num_dependents_deps.dev:0 @@ -453415,6 +462416,7 @@ github.com/droppedoncaprica/docusign-node,num_dependents_deps.dev:0 github.com/droppedoncaprica/node-mailgun,num_dependents_deps.dev:0 github.com/droppedonjapan/js-fdf, github.com/droppedonjapan/object-iron,num_dependents_deps.dev:0 +github.com/droppmarket/helm-deploy, github.com/droppo/colorer,num_dependents_deps.dev:0 github.com/droppyjs/droppy, github.com/dropseed/barrel, @@ -453828,6 +462830,7 @@ github.com/drudru/rq-utils,num_dependents_deps.dev:0 github.com/drudrum/fazan_19P50,num_dependents_deps.dev:0 github.com/drudrum/markdown-sequelize-generator,num_dependents_deps.dev:0 github.com/drudv/dumpmeta-webpack-plugin,num_dependents_deps.dev:0 +github.com/drudzikatlassian/test-action, github.com/drufat/licpy, github.com/drufat/spexy, github.com/drugan/csscombx,num_dependents_deps.dev:2 @@ -453860,6 +462863,7 @@ github.com/druide/flow-remove-types-register,num_dependents_deps.dev:0 github.com/druide/node-throttle-agent,num_dependents_deps.dev:0 github.com/druide/rate-limiter,num_dependents_deps.dev:0 github.com/druide/reconnecting-websocket,num_dependents_deps.dev:0 +github.com/druidfi/security-checker-action, github.com/druidgreeneyes/rivet-core.java,num_dependents_deps.dev:0 github.com/druids/django-GDPR, github.com/druids/django-auth-token, @@ -453924,6 +462928,7 @@ github.com/drumtj/task-queue,num_dependents_deps.dev:0 github.com/drumtj/v3d,num_dependents_deps.dev:0 github.com/drumtj/wiki,num_dependents_deps.dev:0 github.com/drunckoder/mongo2json, +github.com/drunkalien/open-issue, github.com/drunkdream/easy-wsl, github.com/drunkdream/pytmate, github.com/drunkdream/rawdump, @@ -453983,6 +462988,7 @@ github.com/druxt/druxt-site,num_dependents_deps.dev:0 github.com/druxt/druxt-views, github.com/druxt/druxt.js,num_dependents_deps.dev:34 github.com/druxt/vuepress-theme-druxt,num_dependents_deps.dev:0 +github.com/druzsan/setup-matrix, github.com/drvic10k/bootstrap-sortable,"criticality_score:0.312510,num_dependents_deps.dev:0" github.com/drvilclash/hcoinapi, github.com/drvinceknight/Nashpy,Google @@ -454207,6 +463213,7 @@ github.com/dsal3389/easyTCP2, github.com/dsalin/epluginize,num_dependents_deps.dev:0 github.com/dsalsman-rdi/twitch-ripper,num_dependents_deps.dev:0 github.com/dsalsman-rdi/twitchy,num_dependents_deps.dev:0 +github.com/dsaltares/fetch-gh-release-asset, github.com/dsalvagni/karma-underscore-template-preprocessor,num_dependents_deps.dev:0 github.com/dsalvagni/react-profile-picture, github.com/dsalvaz/XMark, @@ -454263,6 +463270,7 @@ github.com/dsavransky/keplertools, github.com/dsaw/perfect-game-player, github.com/dsawardekar/mocha-fivemat-reporter,num_dependents_deps.dev:0 github.com/dsaxton/rdg,num_dependents_deps.dev:0 +github.com/dsayling/commit-branch-check-action, github.com/dsb-norge/eslint-config-dsb-vue,num_dependents_deps.dev:0 github.com/dsb-norge/vue-feedback-dialog,num_dependents_deps.dev:0 github.com/dsb-norge/vue-keycloak-js,num_dependents_deps.dev:0 @@ -454357,6 +463365,8 @@ github.com/dschaedl/ioBroker.weatherunderground,num_dependents_deps.dev:0 github.com/dschalk/JS-monads-stable,num_dependents_deps.dev:0 github.com/dschalk/js-monads,num_dependents_deps.dev:0 github.com/dschalk/reactive-monads,num_dependents_deps.dev:0 +github.com/dschanoeh/change-property, +github.com/dschanoeh/get-property, github.com/dschanoeh/hover-ddns,num_dependents_deps.dev:0 github.com/dschanoeh/what-to-wear,num_dependents_deps.dev:0 github.com/dschatzberg/intrusive,num_dependents_deps.dev:0 @@ -454391,6 +463401,7 @@ github.com/dschenkelman/rx-udp,num_dependents_deps.dev:0 github.com/dschenkelman/z-schema-errors,num_dependents_deps.dev:75 github.com/dschep/PyCoCoraHS, github.com/dschep/django-mutuallyexclusive-formfields, +github.com/dschep/filter-event-action, github.com/dschep/jot, github.com/dschep/ntfy,criticality_score:0.347980 github.com/dschep/ntfy-webpush, @@ -454544,6 +463555,9 @@ github.com/dsfields/spleen-node, github.com/dsfinn/roboversion, github.com/dsfsi/covid19za,num_dependents_deps.dev:0 github.com/dsfsi/textaugment, +github.com/dsfx3d/action-aws-ses, +github.com/dsfx3d/action-extract-unique-matches, +github.com/dsfx3d/action-regex-match-all, github.com/dsfx3d/another-deep-freeze, github.com/dsfx3d/dj-shortnr, github.com/dsfx3d/django-count-it, @@ -454573,6 +463587,9 @@ github.com/dshahin/yoda-session,num_dependents_deps.dev:0 github.com/dshaneg/generator-node-app,num_dependents_deps.dev:0 github.com/dshaneg/text-adventure-core,num_dependents_deps.dev:0 github.com/dshaobin/rapid-replace,num_dependents_deps.dev:0 +github.com/dshare-inc/actions-argocd, +github.com/dshare-inc/actions-codeartifact-auth, +github.com/dshare-inc/actions-semver, github.com/dsharew/responsive-miller-column,num_dependents_deps.dev:0 github.com/dsharhon/mroot,num_dependents_deps.dev:0 github.com/dsharlet/array,Google @@ -454628,6 +463645,7 @@ github.com/dsherret/code-block-writer,num_dependents_deps.dev:2786 github.com/dsherret/conditional-type-checks,"Google,num_dependents_deps.dev:0" github.com/dsherret/dprint,num_dependents_deps.dev:0 github.com/dsherret/dts-minify,num_dependents_deps.dev:0 +github.com/dsherret/rust-toolchain-file, github.com/dsherret/server-bridge,num_dependents_deps.dev:0 github.com/dsherret/server-bridge-base-client,num_dependents_deps.dev:0 github.com/dsherret/server-bridge-express,num_dependents_deps.dev:0 @@ -454797,6 +463815,8 @@ github.com/dsmalicsi/react-sticky-el,num_dependents_deps.dev:0 github.com/dsmall/term_frequency, github.com/dsmatter/tmux-layout,num_dependents_deps.dev:0 github.com/dsmcclain/palindrome,num_dependents_deps.dev:0 +github.com/dsmdavid/action-tableau-format-validator, +github.com/dsmdavid/action-test-tableau-format, github.com/dsmdavid/write-docker-actions,num_dependents_deps.dev:0 github.com/dsmdean/generator-dsm,num_dependents_deps.dev:0 github.com/dsmelon/silky-scroll, @@ -454839,6 +463859,9 @@ github.com/dsobotta/rust-angelscript,num_dependents_deps.dev:0 github.com/dsocha/gc-region-picker,num_dependents_deps.dev:0 github.com/dsocialnetwork/dsocialjs,num_dependents_deps.dev:0 github.com/dsocolobsky/monkey,num_dependents_deps.dev:0 +github.com/dsoftwareinc/django-redis-scheduler, +github.com/dsoftwareinc/github-actions-cli, +github.com/dsoftwareinc/setup-python-poetry-action, github.com/dsoko2/angular2-markdown,num_dependents_deps.dev:0 github.com/dsokoler/PyPi-Testing, github.com/dsolimando/moko,num_dependents_deps.dev:0 @@ -455188,6 +464211,7 @@ github.com/dswd/vpncloud,"criticality_score:0.407730,num_dependents_deps.dev:0" github.com/dswhitely1/create-reducer,num_dependents_deps.dev:0 github.com/dswistowski/pasiphae, github.com/dswistowski/radegast, +github.com/dswistowski/surge-sh-action, github.com/dswitzer/mxunit-watch, github.com/dsxack/container,num_dependents_deps.dev:0 github.com/dsxack/examples,num_dependents_deps.dev:0 @@ -455226,6 +464250,7 @@ github.com/dsznajder/vscode-es7-javascript-react-snippets,criticality_score:0.43 github.com/dszopa/youtube-song-downloader, github.com/dsztanko/python-semantic-release-poc, github.com/dszymon/vue-custom-renderer, +github.com/dt-co/youtrack-githooks, github.com/dt-fe/intl-format,num_dependents_deps.dev:0 github.com/dt-fe/number-precision,num_dependents_deps.dev:0 github.com/dt-fe/react-deep-match,num_dependents_deps.dev:0 @@ -455331,6 +464356,7 @@ github.com/dtboy1995/wslogcli,num_dependents_deps.dev:0 github.com/dtc-innovation/anonymisation-document-budgetaire,num_dependents_deps.dev:0 github.com/dtc-innovation/plans-de-compte, github.com/dtc-oss/react-evacon, +github.com/dtcMLOps/PCL-Build-Action, github.com/dtcenter/METcalcpy, github.com/dtcenter/METplotpy, github.com/dtchanpura/blurblurbot,num_dependents_deps.dev:0 @@ -455391,6 +464417,7 @@ github.com/dtfn/dtfn,num_dependents_deps.dev:0 github.com/dtgfranca/fc2.0-ci-co,num_dependents_deps.dev:0 github.com/dtglov/go-basics,num_dependents_deps.dev:0 github.com/dtglov/go-cart,num_dependents_deps.dev:0 +github.com/dtgreene/keyword-version-bump, github.com/dtgriscom/node-snmpjs-new,num_dependents_deps.dev:0 github.com/dthang3007/tfs-01,num_dependents_deps.dev:0 github.com/dtheetla/array_range_extensions,num_dependents_deps.dev:0 @@ -455400,6 +464427,7 @@ github.com/dthelegend/gosnake,num_dependents_deps.dev:0 github.com/dtheodor/flask-sqlalchemy-session, github.com/dtheodor/sqlalchemy_sqlschema, github.com/dtherhtun/drone-app,num_dependents_deps.dev:0 +github.com/dtherhtun/google-chat-action, github.com/dtherrick/pythondev-example, github.com/dthiagarajan/breakhis_gradcam, github.com/dthiagarajan/dynamic_unet, @@ -455421,6 +464449,7 @@ github.com/dthuilot/gowebserver,num_dependents_deps.dev:0 github.com/dthul/matfile,num_dependents_deps.dev:0 github.com/dthwaite/TPA, github.com/dtiadesse/sam-ui,num_dependents_deps.dev:0 +github.com/dtibi/pr-title-checker, github.com/dtilik/isomorphic.js, github.com/dtimskr/discord-markdown, github.com/dtinth/a-javascript-and-typescript-documentation-generator-based-on-typescript-compiler,num_dependents_deps.dev:0 @@ -455447,10 +464476,12 @@ github.com/dtinth/infancy,num_dependents_deps.dev:0 github.com/dtinth/it.js,num_dependents_deps.dev:0 github.com/dtinth/itself,num_dependents_deps.dev:0 github.com/dtinth/jxapp,num_dependents_deps.dev:0 +github.com/dtinth/markdown-report-action, github.com/dtinth/monetizer, github.com/dtinth/nes-apu-worklet,num_dependents_deps.dev:0 github.com/dtinth/node-fnamemodify,num_dependents_deps.dev:0 github.com/dtinth/obtain-github-app-installation-access-token,num_dependents_deps.dev:0 +github.com/dtinth/patch-generator-action, github.com/dtinth/prettier-standard-formatter,num_dependents_deps.dev:2 github.com/dtinth/promptpay-qr,num_dependents_deps.dev:0 github.com/dtinth/raise,num_dependents_deps.dev:0 @@ -455459,11 +464490,14 @@ github.com/dtinth/redux-waitfor,num_dependents_deps.dev:0 github.com/dtinth/reflux-waitfor,num_dependents_deps.dev:0 github.com/dtinth/ride,num_dependents_deps.dev:0 github.com/dtinth/screen-buffer,num_dependents_deps.dev:2 +github.com/dtinth/seal-of-approval, github.com/dtinth/sequenced,num_dependents_deps.dev:0 +github.com/dtinth/setup-github-actions-caching-for-turbo, github.com/dtinth/stfu,num_dependents_deps.dev:0 github.com/dtinth/synchroscope,num_dependents_deps.dev:0 github.com/dtinth/tailwind-search,num_dependents_deps.dev:0 github.com/dtinth/tailwindtinth,num_dependents_deps.dev:0 +github.com/dtinth/todo-actions, github.com/dtinth/transaction-parser-th,num_dependents_deps.dev:0 github.com/dtinth/uncache,num_dependents_deps.dev:0 github.com/dtinth/vinylsmith,num_dependents_deps.dev:0 @@ -455573,6 +464607,7 @@ github.com/dtolnay/reduce,num_dependents_deps.dev:1 github.com/dtolnay/ref-cast,num_dependents_deps.dev:1029 github.com/dtolnay/remain,num_dependents_deps.dev:8 github.com/dtolnay/rust-quiz,num_dependents_deps.dev:0 +github.com/dtolnay/rust-toolchain, github.com/dtolnay/rustversion,num_dependents_deps.dev:1252 github.com/dtolnay/ryu,"Google,num_dependents_deps.dev:18251" github.com/dtolnay/scratch,num_dependents_deps.dev:20 @@ -455777,6 +464812,7 @@ github.com/du-research3/to-change,num_dependents_deps.dev:0 github.com/du5/uploadtogoogledrive,num_dependents_deps.dev:0 github.com/du5/ups-poweroff,num_dependents_deps.dev:0 github.com/du5/v5sdk_go,num_dependents_deps.dev:0 +github.com/du5rte/create-secrets-file, github.com/du5rte/graphql-mongodb-projection, github.com/du5rte/react-skroll,num_dependents_deps.dev:0 github.com/du5rte/secrets, @@ -455833,6 +464869,8 @@ github.com/duallsistemas/duall-ts-utils,num_dependents_deps.dev:0 github.com/duallsistemas/duall-ui-utils, github.com/duallsistemas/exoclient-ts,num_dependents_deps.dev:0 github.com/duallsistemas/jwtclient-ts,num_dependents_deps.dev:0 +github.com/dually8/action-get-deployment-path, +github.com/dually8/action-string-replace, github.com/dualmoon/airbot,num_dependents_deps.dev:0 github.com/dualmoon/dorfbot-rpgdice,num_dependents_deps.dev:0 github.com/dualmoon/dorfbot-youtube,num_dependents_deps.dev:0 @@ -455841,6 +464879,7 @@ github.com/dualmoon/hubot-pokemon,num_dependents_deps.dev:0 github.com/dualmoon/joemon,num_dependents_deps.dev:0 github.com/dualsight/corepay,num_dependents_deps.dev:0 github.com/dualsight/corepay-client,num_dependents_deps.dev:0 +github.com/dualspiral/ore-upload-action, github.com/duan-elasticsearch/duan_elasticsearch,num_dependents_deps.dev:0 github.com/duan-elasticsearch/duan_elasticsearch_query,num_dependents_deps.dev:0 github.com/duan602728596/IndexedDB,num_dependents_deps.dev:0 @@ -455971,6 +465010,7 @@ github.com/duaraghav8/solmap,num_dependents_deps.dev:0 github.com/duaraghav8/solmeister,num_dependents_deps.dev:0 github.com/duaraghav8/solparse,num_dependents_deps.dev:166 github.com/duaraghav8/soltar,num_dependents_deps.dev:0 +github.com/duart38/branch-convention-check, github.com/duarte-evocorp/templateApp, github.com/duartealexf/spa-seo-prerenderer,num_dependents_deps.dev:0 github.com/duartealexf/sql-ddl-to-json-schema,num_dependents_deps.dev:0 @@ -456162,6 +465202,7 @@ github.com/ducha-aiki/pixelstitch, github.com/ducha-aiki/wxbs_benchmark, github.com/duchangkim/easy-timer,num_dependents_deps.dev:0 github.com/duchangyu/number-formatter,num_dependents_deps.dev:0 +github.com/ducharmemp/diesel-cli-action, github.com/ducharmemp/mobstr,num_dependents_deps.dev:0 github.com/ducheng/captcha-spring-boot-starter,num_dependents_deps.dev:0 github.com/duchesneaumathieu/pyperlin, @@ -456184,6 +465225,7 @@ github.com/ducin/grunt-jsonschema-validate, github.com/ducin/npm-ci-snapshot,num_dependents_deps.dev:0 github.com/ducin/npm-snapshot,num_dependents_deps.dev:0 github.com/ducin/raml-to-typescript,num_dependents_deps.dev:0 +github.com/duck-side/gandalf, github.com/duck2/uxsdcxx, github.com/duck8823/duci,num_dependents_deps.dev:0 github.com/duckbeartrap/bear-round-progress,num_dependents_deps.dev:0 @@ -456192,6 +465234,7 @@ github.com/duckbox/grunt-ng-template,num_dependents_deps.dev:8 github.com/duckbox/grunt-underscore-compile,num_dependents_deps.dev:0 github.com/duckbox/html-browserify,num_dependents_deps.dev:8 github.com/duckbrain/git-gateway,num_dependents_deps.dev:0 +github.com/duckbytes/amplify-build-status, github.com/duckcbuzz/crudapi,num_dependents_deps.dev:0 github.com/duckchip/penthouse-cli,num_dependents_deps.dev:0 github.com/duckduckgo/Android,criticality_score:0.539480 @@ -456207,6 +465250,8 @@ github.com/duckduckgo/zeroclickinfo-goodies,criticality_score:0.504570 github.com/duckduckgo/zeroclickinfo-spice,criticality_score:0.494340 github.com/duckducknono/open-ethereum-pool,num_dependents_deps.dev:0 github.com/duckgogo/aws-cli-adfs, +github.com/duckie-team/quack-label-filter-actions, +github.com/duckie-team/quack-parse-version-actions, github.com/duckietown/gym-duckietown,criticality_score:0.511350 github.com/duckietown/lib-dt-apriltags, github.com/duckietown/lib-dt-vl53l0x, @@ -456235,6 +465280,7 @@ github.com/duckpunch/react-go-board,num_dependents_deps.dev:0 github.com/duckpuppy/ididthis,num_dependents_deps.dev:0 github.com/ducks-project/drupal-librarify-webpack-plugin,num_dependents_deps.dev:0 github.com/ducksboard/gridster.js,"criticality_score:0.300800,num_dependents_deps.dev:0" +github.com/ducksify/action-akamai-purge, github.com/ducksoso/logger,num_dependents_deps.dev:0 github.com/ducktec/esp32c-rt,num_dependents_deps.dev:0 github.com/ducktec/pydtnsim, @@ -456247,6 +465293,7 @@ github.com/duckworthd/sqlrest, github.com/ducky427/neonx, github.com/duckzland/react-dom-inspector,num_dependents_deps.dev:0 github.com/ducla5/go-chatwork,num_dependents_deps.dev:0 +github.com/ducla5/laravel-app-reviewdog-action, github.com/duclm2609/nplog,num_dependents_deps.dev:0 github.com/duclong09/react-sample-blog-traveling,num_dependents_deps.dev:0 github.com/duclvz/dynamodb-cookie-store,num_dependents_deps.dev:0 @@ -456283,6 +465330,7 @@ github.com/ducthinh2901/react-native-view-global-redux,num_dependents_deps.dev:0 github.com/ductuongquan/go-papo-server,num_dependents_deps.dev:0 github.com/ductuongquan/golang-github-fetch-user-repos-example,num_dependents_deps.dev:0 github.com/duculete/homebridge-gree-ac,num_dependents_deps.dev:0 +github.com/ducvo-kms/cache, github.com/dudadornelles/bigcli, github.com/dudadornelles/flight-control-tower,num_dependents_deps.dev:0 github.com/dudadornelles/psychic, @@ -456311,6 +465359,7 @@ github.com/dudeofawesome/emoji-picker,num_dependents_deps.dev:0 github.com/dudeofawesome/generator-uebersicht,num_dependents_deps.dev:0 github.com/dudeofawesome/gulp-nf,num_dependents_deps.dev:0 github.com/dudeofawesome/lcd-controller,num_dependents_deps.dev:0 +github.com/dudeofawesome/npm-install, github.com/dudeofawesome/ptop,num_dependents_deps.dev:0 github.com/dudeofawesome/secure-random-value,num_dependents_deps.dev:0 github.com/dudeofawesome/wifi-setup,num_dependents_deps.dev:0 @@ -456319,8 +465368,11 @@ github.com/dudeonthehorse/kinky,num_dependents_deps.dev:0 github.com/dudeonyx/robodux,num_dependents_deps.dev:0 github.com/duderevolucion/cftp, github.com/duderman/cucumber_github_formatter,num_dependents_deps.dev:0 +github.com/duderman/gh-gem-tag-action, github.com/duderman/morseficator,num_dependents_deps.dev:0 github.com/duderman/omml2img,num_dependents_deps.dev:0 +github.com/duderman/reek-annotate-action, +github.com/duderman/rubocop-annotate-action, github.com/duderstadt-lab/marspylib, github.com/dudesuh/react-leaflet-markercluster,num_dependents_deps.dev:0 github.com/dudesuh/react-leaflet-multi-options-polyline,num_dependents_deps.dev:0 @@ -456358,6 +465410,7 @@ github.com/dudiq/debounce,num_dependents_deps.dev:0 github.com/dudiq/preact-router-mini,num_dependents_deps.dev:0 github.com/dudiq/sql-reader-params,num_dependents_deps.dev:0 github.com/dudiq/translate,num_dependents_deps.dev:0 +github.com/dudisamarel/reset-head, github.com/dudizimber/MeetPlaceTypes,num_dependents_deps.dev:0 github.com/dudk/vst2,num_dependents_deps.dev:0 github.com/dudko-av/angular-static,num_dependents_deps.dev:0 @@ -456366,6 +465419,9 @@ github.com/dudleycarr/nsqjs,num_dependents_deps.dev:16 github.com/dudleycarr/ratelimit.js,num_dependents_deps.dev:0 github.com/dudleycarr/snappystream,num_dependents_deps.dev:118 github.com/dudleycodes/GenerateReadableOTP,num_dependents_deps.dev:0 +github.com/dudo/cleanup_kustomized_namespace, +github.com/dudo/create_kustomized_namespace, +github.com/dudo/tag_check, github.com/dudongbin/dudongbin-hooks-train,num_dependents_deps.dev:0 github.com/dudor/my-learning,num_dependents_deps.dev:0 github.com/dudow8/react-djforms,num_dependents_deps.dev:0 @@ -456443,6 +465499,7 @@ github.com/dueros/bot-sdk-java,num_dependents_deps.dev:0 github.com/dueros/bot-sdk-node.js,num_dependents_deps.dev:0 github.com/duerrp/pycalc, github.com/duerrp/pyexperiment, +github.com/duerrsimon/repo_selective_sync_remove_solutions, github.com/dueruen/wastechain,num_dependents_deps.dev:0 github.com/duesee/abnf,num_dependents_deps.dev:9 github.com/duesee/abnf-core,num_dependents_deps.dev:0 @@ -456562,6 +465619,7 @@ github.com/duhongwei/hotpack,num_dependents_deps.dev:0 github.com/duhongwei/hotpack-compress,num_dependents_deps.dev:0 github.com/duhongwei/hotpack-eslint,num_dependents_deps.dev:0 github.com/duhongwei/hotpack-vue3,num_dependents_deps.dev:0 +github.com/duhow/download-github-release-assets, github.com/duhwcarvalho/react-native-picker-box,num_dependents_deps.dev:0 github.com/duian/js-cookies,num_dependents_deps.dev:26 github.com/duiba/duiba-design,num_dependents_deps.dev:0 @@ -456650,6 +465708,7 @@ github.com/dukegod/s-sever,num_dependents_deps.dev:0 github.com/dukehealth/kube-logger,num_dependents_deps.dev:0 github.com/dukeimg/ngrok-notify-telegram,num_dependents_deps.dev:0 github.com/dukelaar/test-docker,num_dependents_deps.dev:0 +github.com/dukeluo/gpt-runner, github.com/dukemiller/git-addnew,num_dependents_deps.dev:0 github.com/dukemiller/git-exclude,num_dependents_deps.dev:0 github.com/dukenan/golang-demo,num_dependents_deps.dev:0 @@ -456765,6 +465824,12 @@ github.com/duluca/fake-jwt-sign,num_dependents_deps.dev:0 github.com/duluca/hapi-web-server,num_dependents_deps.dev:0 github.com/duluca/init-dev-env,num_dependents_deps.dev:0 github.com/duluca/money-man, +github.com/dulvui/godot-android-export, +github.com/dulvui/godot-android-upload, +github.com/dulvui/godot-html-export, +github.com/dulvui/godot-ios-upload, +github.com/dulvui/libgdx-android-upload, +github.com/dulvui/libgdx-ios-upload, github.com/dulwich/dulwich,criticality_score:0.620880 github.com/dulx96/bb_logger, github.com/dulx96/ekiio-video-react,num_dependents_deps.dev:0 @@ -456872,12 +465937,33 @@ github.com/dun4n/formwork,num_dependents_deps.dev:0 github.com/dun4n/jsbt,num_dependents_deps.dev:0 github.com/duna-project/dunajs-client,num_dependents_deps.dev:0 github.com/duna-project/dunajs-client-dev,num_dependents_deps.dev:0 +github.com/dunada/actions-aws-eb, github.com/dunaevskiy/wdkit-react-intl-organizer,num_dependents_deps.dev:0 github.com/dunai-ts/core,num_dependents_deps.dev:0 github.com/dunai-ts/server,num_dependents_deps.dev:0 github.com/dunakeyr/pandasql3, github.com/dunal/gulp-jasmine-phantom-requirejs,num_dependents_deps.dev:0 github.com/duncaen/reverse-path,num_dependents_deps.dev:10 +github.com/duncan3dc/blade, +github.com/duncan3dc/bom-string, +github.com/duncan3dc/cache, +github.com/duncan3dc/console, +github.com/duncan3dc/domparser, +github.com/duncan3dc/exceptions, +github.com/duncan3dc/fork-helper, +github.com/duncan3dc/guzzle-tools, +github.com/duncan3dc/logger-aware-trait, +github.com/duncan3dc/mailer, +github.com/duncan3dc/meta-audio, +github.com/duncan3dc/object-intruder, +github.com/duncan3dc/php-env, +github.com/duncan3dc/php-ini, +github.com/duncan3dc/sessions, +github.com/duncan3dc/sonos, +github.com/duncan3dc/sonos-cloud, +github.com/duncan3dc/speaker, +github.com/duncan3dc/symfony-climate, +github.com/duncan3dc/uopz-expectations, github.com/duncan60/smalot-bootstrap-datetimepicker-react-fork,num_dependents_deps.dev:0 github.com/duncanHsu/CowMQ-Python, github.com/duncanbeevers/swf_recompress,num_dependents_deps.dev:0 @@ -456898,6 +465984,7 @@ github.com/duncanleo/hc-camera-ffmpeg,num_dependents_deps.dev:0 github.com/duncanleo/homebridge-go-plantower,num_dependents_deps.dev:0 github.com/duncanleo/sound-mqtt-doorbell,num_dependents_deps.dev:0 github.com/duncanmalashock/ivan,num_dependents_deps.dev:0 +github.com/duncanmcclean/post-release-comments, github.com/duncanmeech/dom,num_dependents_deps.dev:0 github.com/duncanmmacleod/ciecplib, github.com/duncanmmacleod/dqsegdb2, @@ -456972,6 +466059,7 @@ github.com/dungbx/sqs-taskqueue,num_dependents_deps.dev:0 github.com/dungctt101/react-native-basic,num_dependents_deps.dev:0 github.com/dungctt101/react-native-full,num_dependents_deps.dev:0 github.com/dungdm93/sqlalchemy-trino, +github.com/dungeon2567/simple-s3-upload-action, github.com/dungeonaltaf/shadowwiz,num_dependents_deps.dev:0 github.com/dungeongod/gatsby-template,num_dependents_deps.dev:0 github.com/dungeonsnd/gocom,num_dependents_deps.dev:0 @@ -456995,6 +466083,7 @@ github.com/dungnh3/bpp-resolve,num_dependents_deps.dev:0 github.com/dungnhtmh/go-endpoints,num_dependents_deps.dev:0 github.com/dungnx/elastic,num_dependents_deps.dev:0 github.com/dungnx/grpc-gateway,num_dependents_deps.dev:0 +github.com/dungpham91/lint-json-inside-yaml, github.com/dungps/evo-framework,num_dependents_deps.dev:0 github.com/dungviettran89/brewquire,num_dependents_deps.dev:0 github.com/dungviettran89/dr-auto-submitter,num_dependents_deps.dev:0 @@ -457059,10 +466148,13 @@ github.com/dunkfordyce/kuyabot-status,num_dependents_deps.dev:0 github.com/dunkinbase/ember-elements,num_dependents_deps.dev:0 github.com/dunklesToast/IServ,num_dependents_deps.dev:0 github.com/dunklesToast/WhatPulse,num_dependents_deps.dev:0 +github.com/dunklesToast/eslint-action, github.com/dunklesToast/node-xlsx-json, github.com/dunklestoast/tankerkoenig, github.com/dunkman32/really-useful-js,num_dependents_deps.dev:0 github.com/dunkman32/useful_js,num_dependents_deps.dev:0 +github.com/dunkmann00/jekyll-v4-build-pages, +github.com/dunkmann00/jekyll-v4-gh-pages, github.com/dunky11/react-saas-template,criticality_score:0.377290 github.com/dunkyl/SlyPyAPI, github.com/dunkyl/SlyPyGmail, @@ -457140,6 +466232,7 @@ github.com/duobeiyun/node-sdl-speaker,num_dependents_deps.dev:0 github.com/duodealer/gatsby-source-duodealer,num_dependents_deps.dev:0 github.com/duoduo369/bokecc_sdk, github.com/duofuni/duo-image-zoomer,num_dependents_deps.dev:0 +github.com/duoi/py-lambda-action, github.com/duointeractive/django-fabtastic, github.com/duointeractive/python-bluefin, github.com/duointeractive/sea-cucumber, @@ -457264,6 +466357,7 @@ github.com/duplotech/cypress-image-snapshot, github.com/duplotech/stream-to-neo4j,num_dependents_deps.dev:0 github.com/dupocas/dudaui,num_dependents_deps.dev:0 github.com/dupocas/zedui,num_dependents_deps.dev:0 +github.com/dupoiron-ops/action-create-repo, github.com/dupontgu/mpe-kt,num_dependents_deps.dev:0 github.com/dupotato/gocommon,num_dependents_deps.dev:0 github.com/dupski/data-with-cache,num_dependents_deps.dev:0 @@ -457526,6 +466620,8 @@ github.com/duskforge/nodzz, github.com/dusking/ldapy, github.com/duskload/mobile-device-detect,num_dependents_deps.dev:22 github.com/duskload/react-device-detect,"criticality_score:0.411800,num_dependents_deps.dev:82" +github.com/duskmoon314/action-delete-ghcr-untagged, +github.com/duskmoon314/action-load-env, github.com/duskmoon314/uart-rs,num_dependents_deps.dev:0 github.com/duskmoon314/vue3-typed-js,num_dependents_deps.dev:0 github.com/dusko-dime/table,num_dependents_deps.dev:0 @@ -457658,6 +466754,7 @@ github.com/dustinhayes/set-elements,num_dependents_deps.dev:0 github.com/dustinhayes/storage-native,num_dependents_deps.dev:0 github.com/dustinhayes/to-virtual-dom,num_dependents_deps.dev:0 github.com/dustinhiatt-wf/bolt,num_dependents_deps.dev:0 +github.com/dustinirving/create-pr, github.com/dustinjackson/html-webpack-inline-source-plugin,num_dependents_deps.dev:42 github.com/dustinkirkland/byobu,criticality_score:0.346510 github.com/dustinknopoff/bashdoc,num_dependents_deps.dev:0 @@ -457785,6 +466882,8 @@ github.com/dustnetwork/dustconf,num_dependents_deps.dev:0 github.com/dustout/entitysignal,num_dependents_deps.dev:0 github.com/dustsucker/svelte-meta,num_dependents_deps.dev:0 github.com/dustturtle/RealReachability,criticality_score:0.343660 +github.com/dustuu/Dustuu.Actions.RenderLocalizedHtml, +github.com/dustuu/GithubActionTest, github.com/dusty-nv/jetson-inference,criticality_score:0.419960 github.com/dusty-phillips/rescript-zora,num_dependents_deps.dev:0 github.com/dusty-phillips/similar-sounding-words, @@ -457908,6 +467007,9 @@ github.com/dutroctu/algorithmswithgo,num_dependents_deps.dev:0 github.com/dutronlabs/redicrypt, github.com/dutscher/aemsync, github.com/dutscher/assemble-less, +github.com/dutscher/read-package-json-endpoint-actions, +github.com/dutta/Sofy_ASW_Action, +github.com/dutterbutter/era-test-node-action, github.com/duttonkj/J2M,num_dependents_deps.dev:0 github.com/duttonkj/authentication-oauth1, github.com/duttonkj/authentication-oauth2,num_dependents_deps.dev:0 @@ -458079,7 +467181,10 @@ github.com/duyng2512/sxgo,num_dependents_deps.dev:0 github.com/duynguyen-ori75/bplustree,num_dependents_deps.dev:0 github.com/duynguyen-ori75/playground,num_dependents_deps.dev:0 github.com/duynguyenvan/censortify,num_dependents_deps.dev:0 +github.com/duynhanf/cypress-report, +github.com/duynhanf/cypress-report-action, github.com/duynhanf/example-library, +github.com/duynhanf/github-actions-example, github.com/duynk318/compressed-string,num_dependents_deps.dev:0 github.com/duyongguang/chinese-character,num_dependents_deps.dev:0 github.com/duyongguang/googlecn,num_dependents_deps.dev:0 @@ -458295,6 +467400,7 @@ github.com/dveenkamp/redux-atoms,num_dependents_deps.dev:0 github.com/dveenkamp/redux-suspenders,num_dependents_deps.dev:0 github.com/dvelasquez/bytes-to-co2,num_dependents_deps.dev:0 github.com/dvelasquez/carbon-tools,num_dependents_deps.dev:0 +github.com/dvelasquez/deploy-s3-action, github.com/dvelasquez/lighthouse-viewer,num_dependents_deps.dev:0 github.com/dvelasquez/vue-lighthouse-viewer,num_dependents_deps.dev:0 github.com/dvelasquez/vue-link-pre,num_dependents_deps.dev:0 @@ -458311,6 +467417,7 @@ github.com/dverrier/hocr_reader,num_dependents_deps.dev:0 github.com/dvershinin/cloudflareddns, github.com/dvershinin/gh, github.com/dvershinin/lastversion, +github.com/dvershinin/lastversion-action, github.com/dvershinin/pip-safe, github.com/dvershinin/sde, github.com/dverstap/jsmiparser,num_dependents_deps.dev:15 @@ -458386,6 +467493,7 @@ github.com/dvisionlab/Larvitar,num_dependents_deps.dev:0 github.com/dvisionlab/polywag,num_dependents_deps.dev:0 github.com/dvisockas/anachronic,num_dependents_deps.dev:0 github.com/dvitamin/postcss-var-func-fallback,num_dependents_deps.dev:0 +github.com/dvjn/wakatime-charts, github.com/dvklopfenstein/ReactomePy, github.com/dvklopfenstein/enrichmentanalysis, github.com/dvklopfenstein/pmidcite, @@ -458487,6 +467595,7 @@ github.com/dvorakj31/securefile_handler, github.com/dvorberg/bible_reference, github.com/dvorka/hstr,criticality_score:0.469690 github.com/dvorobiov/simpleConfig, +github.com/dvoros/openscad-builder, github.com/dvoros/scw-bot,num_dependents_deps.dev:0 github.com/dvp-dev/dealio-grpc-generated-go,num_dependents_deps.dev:0 github.com/dvp-dev/matamata-grpc-generated-go,num_dependents_deps.dev:0 @@ -458655,6 +467764,7 @@ github.com/dwaps/writerm,num_dependents_deps.dev:0 github.com/dwapstra/telnetlib-proxy, github.com/dwarakravikumar/hw_package123, github.com/dwarcher/grunt-harp-post,num_dependents_deps.dev:0 +github.com/dwardu89/aws-ssm-parameter-store, github.com/dwardu89/photo_sorter, github.com/dwarfJS/grunt-dwarf-builder,num_dependents_deps.dev:0 github.com/dwarfJS/gulp-dmd,num_dependents_deps.dev:0 @@ -458728,6 +467838,7 @@ github.com/dwd-fe/glovebox,num_dependents_deps.dev:0 github.com/dwdarm/num-format,num_dependents_deps.dev:0 github.com/dwdarm/url-builder,num_dependents_deps.dev:0 github.com/dwdcth/plugin-gb28181,num_dependents_deps.dev:0 +github.com/dwdcth/wails-build-action, github.com/dwddao/dxchange, github.com/dwdickens/node-cba-netbank,num_dependents_deps.dev:0 github.com/dwdjs/rem,num_dependents_deps.dev:0 @@ -458854,6 +467965,7 @@ github.com/dwelch2101/Xmlstats-py, github.com/dwelch2344/norajs,num_dependents_deps.dev:0 github.com/dwelle/excalidraw,num_dependents_deps.dev:0 github.com/dwendelen/daan.se,num_dependents_deps.dev:0 +github.com/dwenegar/upload-release-assets, github.com/dweng0/React-Off-The-Grid,num_dependents_deps.dev:0 github.com/dweng0/javascript-compiling-tokenizer,num_dependents_deps.dev:0 github.com/dweng0/react-native-passcode-pad,num_dependents_deps.dev:0 @@ -458893,6 +468005,7 @@ github.com/dwhmofly/whdai-tools,num_dependents_deps.dev:0 github.com/dwhodges2/sheetFeeder, github.com/dwhswenson/autorelease, github.com/dwhswenson/codemodel, +github.com/dwhswenson/conda-rc-check, github.com/dwhswenson/contact_map, github.com/dwhswenson/fabulous-paths, github.com/dwhswenson/ghcontribs, @@ -458974,6 +468087,7 @@ github.com/dwillis/python-espncricinfo, github.com/dwilt/obj-to-query-string,num_dependents_deps.dev:0 github.com/dwilt/react-redux-generator,num_dependents_deps.dev:0 github.com/dwin/binding,num_dependents_deps.dev:0 +github.com/dwin/dbmate-action, github.com/dwin/hashify,num_dependents_deps.dev:0 github.com/dwin/xidpy, github.com/dwinston/decampy, @@ -459272,12 +468386,14 @@ github.com/dworznik/typescript-starter,num_dependents_deps.dev:0 github.com/dwoz/pytest-cassandra, github.com/dwoz/pytest-dataplugin, github.com/dwoz/pytest-jasmine, +github.com/dwp/aws-terraform-tag-check, github.com/dwp/commitlint-config-base,num_dependents_deps.dev:0 github.com/dwp/encoded-logger-output,num_dependents_deps.dev:1 github.com/dwp/eslint-config-base,num_dependents_deps.dev:0 github.com/dwp/eslint-config-jasmine,num_dependents_deps.dev:0 github.com/dwp/eslint-config-mocha,num_dependents_deps.dev:0 github.com/dwp/eslint-config-typescript,num_dependents_deps.dev:0 +github.com/dwp/github-action-kitchen-terraform, github.com/dwp/govuk-casa,num_dependents_deps.dev:0 github.com/dwp/html-to-pdf,num_dependents_deps.dev:0 github.com/dwp/https-common-client-utility,num_dependents_deps.dev:0 @@ -459453,6 +468569,7 @@ github.com/dx-libs/array-extensions,num_dependents_deps.dev:0 github.com/dx-libs/async.require, github.com/dx-libs/queue,num_dependents_deps.dev:0 github.com/dx-libs/timeout,num_dependents_deps.dev:0 +github.com/dx-oss/nix-shell-action, github.com/dx-pbuckley/hubot,num_dependents_deps.dev:0 github.com/dx-pbuckley/hubot-falsehoods,num_dependents_deps.dev:0 github.com/dx-pbuckley/hubot-google-images,num_dependents_deps.dev:0 @@ -459599,6 +468716,7 @@ github.com/dxmcorp/spreadsheet-parser,num_dependents_deps.dev:0 github.com/dxmz/humanized-object-diff,num_dependents_deps.dev:0 github.com/dxmz/react-rollup-starter,num_dependents_deps.dev:0 github.com/dxmz/react-virtualized-menu-tree,num_dependents_deps.dev:0 +github.com/dxnter/lastfm-readme, github.com/dxoigmn/baffle,num_dependents_deps.dev:0 github.com/dxoigmn/btparse-ruby,num_dependents_deps.dev:0 github.com/dxoigmn/dot11,num_dependents_deps.dev:0 @@ -459874,6 +468992,8 @@ github.com/dylan-bennett/SimpleSurface, github.com/dylan-conlin/whosampled,num_dependents_deps.dev:0 github.com/dylan-cooper/node-osx-prefs,num_dependents_deps.dev:0 github.com/dylan-kerr/api-enforcer,num_dependents_deps.dev:0 +github.com/dylan-lang/install-dylan-tool, +github.com/dylan-lang/install-opendylan, github.com/dylan-lang/opendylan,criticality_score:0.456920 github.com/dylan-mcdonald/angular2-example,num_dependents_deps.dev:0 github.com/dylan-profiler/compressio, @@ -459939,6 +469059,7 @@ github.com/dylanblokhuis/gatsby-plugin-playwright, github.com/dylanblokhuis/svelte-eva-icons, github.com/dylanblokhuis/svelte-feather-icons,num_dependents_deps.dev:0 github.com/dylanblokhuis/svelte-loading-skeleton,num_dependents_deps.dev:0 +github.com/dylanbr0wn/deploy-to-dropbox, github.com/dylanburati/puredata-compiler, github.com/dylancl/ass-mongoose,num_dependents_deps.dev:0 github.com/dylancom/react-native-airplay-button,num_dependents_deps.dev:0 @@ -460011,6 +469132,7 @@ github.com/dylang/space-hogs,num_dependents_deps.dev:2 github.com/dylang/what-dog,num_dependents_deps.dev:0 github.com/dylangarcia/react-use-pagination,num_dependents_deps.dev:0 github.com/dylangit01/lotide, +github.com/dylangolow/dot-npmrc, github.com/dylangonzalezz/slideN,num_dependents_deps.dev:0 github.com/dylangonzalezz/sortmejs,num_dependents_deps.dev:0 github.com/dylanguo916/go_learning,num_dependents_deps.dev:0 @@ -460114,6 +469236,7 @@ github.com/dylanparry/ceylon,num_dependents_deps.dev:0 github.com/dylanpiercey/mocha-snap,num_dependents_deps.dev:0 github.com/dylanplecki/contextlock,num_dependents_deps.dev:0 github.com/dylanpyle/turnpike,num_dependents_deps.dev:0 +github.com/dylanratcliffe/delete-untagged-containers, github.com/dylanratcliffe/sdp.go,num_dependents_deps.dev:0 github.com/dylanratcliffe/sdp.js,num_dependents_deps.dev:0 github.com/dylanrenwick/chronoparse,num_dependents_deps.dev:0 @@ -460191,6 +469314,8 @@ github.com/dylon/vinary-search-tree-coffeescript,num_dependents_deps.dev:0 github.com/dyluth/chia,num_dependents_deps.dev:0 github.com/dyluth/connectionlogger,num_dependents_deps.dev:0 github.com/dylwylie/cloudsmith-cli, +github.com/dym-ok/inject-ssh-key, +github.com/dym-ok/pre-commit-action, github.com/dym-sh/base27, github.com/dym-sh/ebay-api-next, github.com/dym-sh/range, @@ -460279,6 +469404,10 @@ github.com/dynamicprogrammingsolutions/dps_authentication_manager,num_dependents github.com/dynamicprogrammingsolutions/dps_commons,num_dependents_deps.dev:0 github.com/dynamicprogrammingsolutions/dps_markdown,num_dependents_deps.dev:0 github.com/dynamicprogrammingsolutions/dps_webapplication,num_dependents_deps.dev:0 +github.com/dynamics-tools/export-managed-solution, +github.com/dynamics-tools/import-solution, +github.com/dynamics-tools/publish-dynamics-changes, +github.com/dynamics-tools/update-web-resource, github.com/dynamicsUAB/RCBS.py, github.com/dynamicsequence/cloudinary-react,num_dependents_deps.dev:0 github.com/dynamicslab/pykoopman, @@ -460330,6 +469459,7 @@ github.com/dynatrace-oss/db-load-generator, github.com/dynatrace-oss/dt-awslayerool, github.com/dynatrace-oss/dt-cli, github.com/dynatrace-oss/dynahist,num_dependents_deps.dev:0 +github.com/dynatrace-oss/dynatrace-github-action, github.com/dynatrace-oss/dynatrace-metric-utils-go,num_dependents_deps.dev:211 github.com/dynatrace-oss/dynatrace-metric-utils-java,num_dependents_deps.dev:0 github.com/dynatrace-oss/dynatrace-metric-utils-python, @@ -460376,6 +469506,7 @@ github.com/dynn/hyper-on-change,num_dependents_deps.dev:0 github.com/dynn/scp-async,num_dependents_deps.dev:0 github.com/dynnamitt/x2js-cli,num_dependents_deps.dev:0 github.com/dynnamitt/yaast, +github.com/dyno-dev/SFDX-Scratch-Org-Login-URL-Action, github.com/dyno-dev/fortune-extended-json-api,num_dependents_deps.dev:0 github.com/dyno-dev/fortune-salesforce, github.com/dynobird/cli, @@ -460808,6 +469939,7 @@ github.com/dzq/quick-mongo,num_dependents_deps.dev:0 github.com/dzqdzq/Sanic-sslify, github.com/dzsdevelop/webrtc,num_dependents_deps.dev:0 github.com/dzsm/ngx-diagram,num_dependents_deps.dev:0 +github.com/dzsquared/jupyter-publish-action, github.com/dzt/supreme-api,num_dependents_deps.dev:0 github.com/dzucconi/chance-font,num_dependents_deps.dev:0 github.com/dzucconi/frame-interval,num_dependents_deps.dev:0 @@ -461093,6 +470225,8 @@ github.com/e-sites/ingenico.css,num_dependents_deps.dev:0 github.com/e-sites/stylelint-config-esites,num_dependents_deps.dev:0 github.com/e-sites/vestigo,num_dependents_deps.dev:0 github.com/e-square-io/bdir,num_dependents_deps.dev:0 +github.com/e-square-io/nx-affected-matrix, +github.com/e-square-io/nx-distributed-task, github.com/e-stan/DecoID, github.com/e-stan/HRMS_2_QQQ, github.com/e-stan/imaging, @@ -461182,6 +470316,7 @@ github.com/e18s/local-time-in-europe,num_dependents_deps.dev:0 github.com/e1ektr0/node-dota2,num_dependents_deps.dev:0 github.com/e1ektr0/node-steam,num_dependents_deps.dev:0 github.com/e1emeb0t/mock-server,num_dependents_deps.dev:0 +github.com/e1himself/goss-installation-action, github.com/e1r0nd/browser-lsc-storage,num_dependents_deps.dev:0 github.com/e1sen-stein/event-emitter,num_dependents_deps.dev:0 github.com/e1sidy/gobeginner,num_dependents_deps.dev:0 @@ -461268,6 +470403,7 @@ github.com/e5r/jquery-toad,num_dependents_deps.dev:0 github.com/e5r/spalm,num_dependents_deps.dev:0 github.com/e619003/ScheduleManager, github.com/e61983/blog,num_dependents_deps.dev:0 +github.com/e621ng/publish-to-ghcr, github.com/e694169224/general-downloader,num_dependents_deps.dev:0 github.com/e6Hub/dtext-parser,num_dependents_deps.dev:0 github.com/e79ene/windy-plugin-barbs,num_dependents_deps.dev:0 @@ -461483,6 +470619,8 @@ github.com/eL0ck/Kombustion, github.com/eL0ck/tlx, github.com/eLTER-RI/deimsPy, github.com/eLafo/meta_vars,num_dependents_deps.dev:0 +github.com/eLco/setup-terragrunt, +github.com/eLco/setup-vault, github.com/eLeVeNnN/fastorch, github.com/eLeVeNnN/shinnosuke, github.com/eLeVeNnN/shinnosuke-gpu, @@ -461555,6 +470693,9 @@ github.com/eWAYPayment/eway-rapid-ruby,num_dependents_deps.dev:0 github.com/eWaterCycle/ewatercycle, github.com/eWaterCycle/grpc4bmi, github.com/eWaterCycle/jupyterlab_thredds,num_dependents_deps.dev:0 +github.com/eWaterCycle/setup-apptainer, +github.com/eWaterCycle/setup-grpc, +github.com/eWaterCycle/setup-singularity, github.com/eWert-Online/re-crypt,num_dependents_deps.dev:0 github.com/eWert-Online/rescript-hash,num_dependents_deps.dev:0 github.com/eWert-Online/warp, @@ -461582,6 +470723,7 @@ github.com/eXon/meteor-intl,num_dependents_deps.dev:0 github.com/eXon/react-cookie,num_dependents_deps.dev:20 github.com/eXon/videojs-vimeo,num_dependents_deps.dev:2 github.com/eXon/videojs-youtube,num_dependents_deps.dev:0 +github.com/eXpire163/yamale-docker-action, github.com/eXponenta/away-debug-ext,num_dependents_deps.dev:0 github.com/eXponenta/emscripten-libtess2,num_dependents_deps.dev:0 github.com/eXponenta/pixi-tiled,num_dependents_deps.dev:0 @@ -461822,6 +470964,7 @@ github.com/eai04191/moji,num_dependents_deps.dev:0 github.com/eajax/ez-html-replace,num_dependents_deps.dev:0 github.com/eajax/ez-map-util,num_dependents_deps.dev:0 github.com/eajazali87/test-utils,num_dependents_deps.dev:0 +github.com/eak24/setup-openapi-generator-cli, github.com/eakarpov/GraphLabsSuite.Core.GraphVisualizer,num_dependents_deps.dev:0 github.com/eakarpov/GraphLabsSuite.Core.Graphs,num_dependents_deps.dev:0 github.com/eakarpov/GraphLabsSuite.Core.Notifier,num_dependents_deps.dev:0 @@ -461915,6 +471058,7 @@ github.com/eamode/state-machine,num_dependents_deps.dev:0 github.com/eamodio/eslint-plugin-prettiest,num_dependents_deps.dev:0 github.com/eamodio/tslint-prettiest,num_dependents_deps.dev:0 github.com/eamodio/vscode-gitlens,criticality_score:0.591920 +github.com/eamon0989/git-repo-size-reducer, github.com/eamonduffy/DevOps-Bot,num_dependents_deps.dev:0 github.com/eamonnfaherty/aws-cloudtrail-events-schema, github.com/eamonnfaherty/better-boto, @@ -461924,6 +471068,7 @@ github.com/eamonnmcmanus/serialysis,num_dependents_deps.dev:0 github.com/eamontoyaa/jelinekstat, github.com/eamontoyaa/mstools, github.com/eamontoyaa/pybimstab, +github.com/eamonwoortman/mongo-import-action, github.com/ean/certd,num_dependents_deps.dev:0 github.com/eanaeem/create-react-app,num_dependents_deps.dev:0 github.com/eanaeem/ui-scripts,num_dependents_deps.dev:0 @@ -461986,6 +471131,7 @@ github.com/earcut4j/earcut4j,num_dependents_deps.dev:0 github.com/earelin/agro-components-react,num_dependents_deps.dev:0 github.com/earelin/generator-yagge, github.com/earelin/generator-yasge,num_dependents_deps.dev:0 +github.com/eariassoto/setup-premake, github.com/earksiinni/karma-riot-control,num_dependents_deps.dev:0 github.com/earksiinni/riot-control,num_dependents_deps.dev:0 github.com/earksiinni/riotflow,num_dependents_deps.dev:0 @@ -461994,6 +471140,7 @@ github.com/earl-hacker/naked-gun-quotes,num_dependents_deps.dev:0 github.com/earl-js/earl, github.com/earl/beanstalkc, github.com/earlRogers/ear-material-icon, +github.com/earldata/create-semver-tags-action, github.com/earldouglas/codedown,num_dependents_deps.dev:0 github.com/earldouglas/linear-scala,num_dependents_deps.dev:0 github.com/earldouglas/swagger-test,num_dependents_deps.dev:0 @@ -462098,6 +471245,7 @@ github.com/earthlab/earthpy, github.com/earthlab/matplotcheck, github.com/earthlab/streamstats, github.com/earthlingstd/react-native-es,num_dependents_deps.dev:0 +github.com/earthly/actions-setup, github.com/earthly/buildkit,num_dependents_deps.dev:0 github.com/earthly/earthly,"criticality_score:0.514980,num_dependents_deps.dev:0" github.com/earthmaps/cli,num_dependents_deps.dev:0 @@ -462109,6 +471257,7 @@ github.com/earthobservations/wetterdienst, github.com/earthpulse/pytorch_eo, github.com/earthpyy/django-flipt, github.com/earthpyy/drf-dropdown, +github.com/earthpyy/setup-digitalocean-firewall, github.com/earthquakesan/freeipa-group-sync,num_dependents_deps.dev:0 github.com/earthquakesan/golang-json-inspect,num_dependents_deps.dev:0 github.com/earthquakesan/lovlabelfetcher-py, @@ -462198,14 +471347,18 @@ github.com/easilyBaffled/state-speech-synth,num_dependents_deps.dev:0 github.com/easilyBaffled/template-module, github.com/easilyBaffled/tst,num_dependents_deps.dev:0 github.com/easilyuse/easily-http,num_dependents_deps.dev:0 +github.com/easimon/maximize-build-space, +github.com/easimon/wipe-cache, github.com/easingthemes/anketa,num_dependents_deps.dev:0 github.com/easingthemes/available-package-names,num_dependents_deps.dev:0 github.com/easingthemes/html-elements-list,num_dependents_deps.dev:0 github.com/easingthemes/logdc,num_dependents_deps.dev:0 github.com/easingthemes/npm-nc-template,num_dependents_deps.dev:0 +github.com/easingthemes/simple-github-action, github.com/easingthemes/ssh-deploy,criticality_score:0.362440 github.com/easingthemes/toolsv,num_dependents_deps.dev:0 github.com/easink/aioheos, +github.com/easolhq/theme-upload, github.com/eason1221/srcevsrental,num_dependents_deps.dev:0 github.com/easonchai/strapi-provider-upload-firebase-storage,num_dependents_deps.dev:0 github.com/easonchiu/react-cli,num_dependents_deps.dev:0 @@ -462456,6 +471609,7 @@ github.com/easybotics/node-rpi-rgb-led-matrix, github.com/easybread/easybread,num_dependents_deps.dev:0 github.com/easybuilders/easybuild,criticality_score:0.550670 github.com/easybyte-software/kongalib, +github.com/easychen/github-action-server-chan, github.com/easychessanimations/chessboard,num_dependents_deps.dev:0 github.com/easychessanimations/chessengine-wasm,num_dependents_deps.dev:0 github.com/easychessanimations/fetchutils,num_dependents_deps.dev:0 @@ -462604,6 +471758,7 @@ github.com/easystats/see,criticality_score:0.367590 github.com/easystreet3/angular-drupal,num_dependents_deps.dev:0 github.com/easystreet3/jDrupal,num_dependents_deps.dev:0 github.com/easytarget2000/conductor-ts, +github.com/easytranslate-com/strings-library-github-action, github.com/easytuples/easy-tuples,num_dependents_deps.dev:0 github.com/easyui/EZPlayer,num_dependents_deps.dev:0 github.com/easyui/react-native-ezplayer, @@ -462843,6 +471998,7 @@ github.com/ebakus/web3-ebakus,num_dependents_deps.dev:0 github.com/ebalkanski/goa,num_dependents_deps.dev:0 github.com/ebalkanski/graphql,num_dependents_deps.dev:0 github.com/ebalkanski/grpc,num_dependents_deps.dev:0 +github.com/eball/write-tag-to-version-file, github.com/ebameng/intl_export,num_dependents_deps.dev:0 github.com/ebanalyse/NERDA, github.com/ebanalyse/django-nested-form-field, @@ -462871,6 +472027,7 @@ github.com/ebarnard/alac.rs,num_dependents_deps.dev:9 github.com/ebarnard/lame-sys,num_dependents_deps.dev:0 github.com/ebarnard/rust-plist,num_dependents_deps.dev:214 github.com/ebarnsli/slack_signature_verifier, +github.com/ebarriosjr/nomad-deploy-action, github.com/ebarti/concurrencyutils,num_dependents_deps.dev:0 github.com/ebarti/cortex-xdr-client, github.com/ebarti/go-confluent-cloud,num_dependents_deps.dev:0 @@ -462899,6 +472056,10 @@ github.com/ebay/libovsdb,num_dependents_deps.dev:12 github.com/ebayboy/godemos,num_dependents_deps.dev:0 github.com/ebb-framework/ebb-core,num_dependents_deps.dev:0 github.com/ebb29c/asyncio-channel, +github.com/ebbflow-io/cargo-deb-amd64-ubuntu, +github.com/ebbflow-io/cargo-deb-armv7-debian, +github.com/ebbflow-io/cargo-rpm-amd64-fedora, +github.com/ebbflow-io/cargo-rpm-amd64-opensuseleap, github.com/ebbkrdrcn/catq, github.com/ebbkrdrcn/rexp, github.com/ebc-2in2crc/dango,num_dependents_deps.dev:0 @@ -463279,6 +472440,8 @@ github.com/ebu/test-engine-live-tools,num_dependents_deps.dev:0 github.com/ebual/normalize.css-without-attribute-selectors,num_dependents_deps.dev:0 github.com/ebuchman/evm-tools,num_dependents_deps.dev:0 github.com/ebuckley/gol,num_dependents_deps.dev:0 +github.com/ebuckthal/s3-download-artifact, +github.com/ebuckthal/s3-upload-artifact, github.com/ebudan/godotenv,num_dependents_deps.dev:0 github.com/ebudvikling/eb-colors,num_dependents_deps.dev:0 github.com/ebudvikling/eb-fonts,num_dependents_deps.dev:0 @@ -463367,6 +472530,8 @@ github.com/ecallen/blog,num_dependents_deps.dev:0 github.com/ecam900/godadjokes,num_dependents_deps.dev:0 github.com/ecam900/simple-go-rest,num_dependents_deps.dev:0 github.com/ecamp/hal-json-vuex,num_dependents_deps.dev:0 +github.com/ecampidoglio/auto-release-draft, +github.com/ecampidoglio/auto-release-milestone, github.com/ecampostrini/mt940-ts, github.com/ecancino/dbranes,num_dependents_deps.dev:0 github.com/ecancino/mellotron,num_dependents_deps.dev:0 @@ -463446,6 +472611,7 @@ github.com/ecederstrand/exchangelib,criticality_score:0.538950 github.com/ecederstrand/py-syncset, github.com/ecedi/slick,num_dependents_deps.dev:0 github.com/eceeb/node-shorturl,num_dependents_deps.dev:0 +github.com/ecelis/go-action, github.com/ecell/ecell4, github.com/ecell/ecell4_base, github.com/ecell/pathway2cyjs, @@ -463513,6 +472679,9 @@ github.com/echang1802/normandy, github.com/echaoo/apihub,num_dependents_deps.dev:0 github.com/echaouchna/go-fizzbuzz,num_dependents_deps.dev:0 github.com/echaouchna/react-bootstrap-tab,num_dependents_deps.dev:0 +github.com/echapmanFromBunnings/msteams-connector-webhook, +github.com/echapmanFromBunnings/repository-query, +github.com/echapmanFromBunnings/upload-release-assets, github.com/echebotarev/convert-array,num_dependents_deps.dev:0 github.com/echelon-solutions/aws-event-sourcing,num_dependents_deps.dev:0 github.com/echelon-solutions/regiment,num_dependents_deps.dev:0 @@ -463633,6 +472802,9 @@ github.com/echohubio/hubber-chromecast, github.com/echohubio/hubber-debug,num_dependents_deps.dev:0 github.com/echohubio/hubber-iot, github.com/echohubio/hubber-plugins, +github.com/echoings/actions.diy, +github.com/echoings/actions.mini-program, +github.com/echoings/actions.notify, github.com/echoinsys/echoinchain,num_dependents_deps.dev:0 github.com/echojc/chess,num_dependents_deps.dev:0 github.com/echojc/kt,num_dependents_deps.dev:0 @@ -463814,6 +472986,8 @@ github.com/eclipse-ee4j/common-annotations-api,num_dependents_deps.dev:126292 github.com/eclipse-ee4j/concurrency-api,num_dependents_deps.dev:210 github.com/eclipse-ee4j/concurrency-ri,num_dependents_deps.dev:214 github.com/eclipse-ee4j/eclipselink,num_dependents_deps.dev:10912 +github.com/eclipse-ee4j/eclipselink-asm, +github.com/eclipse-ee4j/eclipselink-oracleddlparser, github.com/eclipse-ee4j/ee4j,num_dependents_deps.dev:19622 github.com/eclipse-ee4j/ejb-api,num_dependents_deps.dev:8922 github.com/eclipse-ee4j/el-ri,num_dependents_deps.dev:26162 @@ -464089,6 +473263,7 @@ github.com/ecliptic/webpack-blocks-copy,num_dependents_deps.dev:0 github.com/ecliptic/webpack-blocks-html,num_dependents_deps.dev:0 github.com/ecliptic/webpack-blocks-purescript,num_dependents_deps.dev:0 github.com/ecliptic/webpack-blocks-utils,num_dependents_deps.dev:20 +github.com/ecliptical/covdir-report-action, github.com/ecliptical/ksrt,num_dependents_deps.dev:0 github.com/ecliptical/tokio-cadence,num_dependents_deps.dev:0 github.com/eclipticccc/rollup-plugin-terser-default,num_dependents_deps.dev:0 @@ -464196,6 +473371,8 @@ github.com/ecofe/ftpl,num_dependents_deps.dev:0 github.com/ecofe/tabletoexcel,num_dependents_deps.dev:0 github.com/ecofic/ngCordovaMocks,num_dependents_deps.dev:0 github.com/ecofic/tailor.js,num_dependents_deps.dev:0 +github.com/ecofighter/convert-seminar-note, +github.com/ecofighter/typeset-seminar-note, github.com/ecogels/tds-django, github.com/ecogodi/fprime,num_dependents_deps.dev:0 github.com/ecogood/ecg-quicktest-model,num_dependents_deps.dev:0 @@ -464212,6 +473389,7 @@ github.com/ecoker/sass-module-importer,num_dependents_deps.dev:0 github.com/ecolabardini/jdig,num_dependents_deps.dev:0 github.com/ecolell/amphipathic, github.com/ecolell/pfamserver, +github.com/ecologi/docker-cloud-build, github.com/ecologylab/BigSemanticsJavaScript,num_dependents_deps.dev:0 github.com/ecologylab/simpl.js,num_dependents_deps.dev:0 github.com/ecolutis/junit_viewer,num_dependents_deps.dev:0 @@ -464414,6 +473592,7 @@ github.com/ecomplus/application-sdk,num_dependents_deps.dev:0 github.com/ecomplus/apps-manager, github.com/ecomplus/auth, github.com/ecomplus/client, +github.com/ecomplus/cloud-commerce, github.com/ecomplus/i18n, github.com/ecomplus/passport-client, github.com/ecomplus/search-engine, @@ -464542,6 +473721,7 @@ github.com/ecowebhosting/spa-prerenderer,num_dependents_deps.dev:0 github.com/ecoz2/ecoz2rs,num_dependents_deps.dev:0 github.com/ecozoic/proxify,num_dependents_deps.dev:0 github.com/ecp-lang/ecp-interpreter, +github.com/ecperth/check-aws-inspector, github.com/ecprice/newsdiffs,criticality_score:0.326860 github.com/ecpy/ndx,num_dependents_deps.dev:0 github.com/ecraft/ember-cli-opbeat,num_dependents_deps.dev:0 @@ -464612,8 +473792,10 @@ github.com/ecrowjs/tsconfig,num_dependents_deps.dev:0 github.com/ecrows/flippy, github.com/ecrucru/anticrux,num_dependents_deps.dev:0 github.com/ecs-jbariel/js-cfclient,num_dependents_deps.dev:0 +github.com/ecsact-dev/github-action, github.com/ecsalina/gtrends, github.com/ecscstatsconsulting/morphemes, +github.com/ecsdeployer/github-action, github.com/ecsec/pack200-maven-plugin,num_dependents_deps.dev:0 github.com/ecsim/gopem, github.com/ecsim/opem, @@ -464668,6 +473850,7 @@ github.com/ecto/zalgo,num_dependents_deps.dev:0 github.com/ectobit/act,num_dependents_deps.dev:0 github.com/ectocet/cli,num_dependents_deps.dev:0 github.com/ectoflow/vue-stripe-elements, +github.com/ectomigo/ectomigo, github.com/ectopy/ectoconf, github.com/ecuber/math3d-react,num_dependents_deps.dev:0 github.com/ecuber/scrambled-eggs,num_dependents_deps.dev:0 @@ -464697,6 +473880,7 @@ github.com/ecyrbe/react-axios-query,num_dependents_deps.dev:0 github.com/ecyshor/akka-consul-lease,num_dependents_deps.dev:0 github.com/ecyshor/cassmig,num_dependents_deps.dev:0 github.com/ecyshor/gatsby-remark-embed-url,num_dependents_deps.dev:0 +github.com/ecyshor/translate-yaml, github.com/ecyuan/eyuan,num_dependents_deps.dev:0 github.com/eczarny/spectacle,criticality_score:0.425910 github.com/eczn/down-parse,num_dependents_deps.dev:0 @@ -464762,6 +473946,7 @@ github.com/edanchenkov/classclass,num_dependents_deps.dev:0 github.com/edanchenkov/fb-node, github.com/edanchenkov/react-d3-graph,num_dependents_deps.dev:0 github.com/edanedison/react-native-signature-panel,num_dependents_deps.dev:0 +github.com/edaniels/CodeCoverageSummary, github.com/edaniels/ccache,num_dependents_deps.dev:0 github.com/edaniels/go-git,num_dependents_deps.dev:0 github.com/edaniels/go-net-utils,num_dependents_deps.dev:0 @@ -465045,6 +474230,7 @@ github.com/eddow/vue-storage-decorator,num_dependents_deps.dev:2 github.com/eddow/web-jockey,num_dependents_deps.dev:0 github.com/eddran/sipahi,num_dependents_deps.dev:0 github.com/eddrichjanzzen/ng-color-scale,num_dependents_deps.dev:0 +github.com/eddsteel/bump-orb, github.com/eddumelendez/ldap-spring-boot,num_dependents_deps.dev:0 github.com/eddwardpark/hcss-react,num_dependents_deps.dev:0 github.com/eddy-geek/quickcut, @@ -465160,7 +474346,9 @@ github.com/edejin/DGeoUtils,num_dependents_deps.dev:0 github.com/edekadigital/BrowserAutomator, github.com/edekadigital/backoffice-ui,num_dependents_deps.dev:0 github.com/edekadigital/frontbend,num_dependents_deps.dev:0 +github.com/edelauna/gpt-review, github.com/edelbluth/blackred, +github.com/edelciomolina/bundler-minifier-action, github.com/edelciomolina/firebase-functions-redirects,num_dependents_deps.dev:0 github.com/edeleastar/tutor,num_dependents_deps.dev:0 github.com/edeleastar/tutors-js,num_dependents_deps.dev:0 @@ -465283,7 +474471,9 @@ github.com/ederribeiro/generator-apu-codeigniter,num_dependents_deps.dev:0 github.com/ederribeiro/vindijs,num_dependents_deps.dev:0 github.com/edersantana/hubot-equation,num_dependents_deps.dev:0 github.com/edersantana/hubot-recognizer,num_dependents_deps.dev:0 +github.com/edersonbrilhante/gitlab-runner-action, github.com/edersonbrilhante/vilicus,num_dependents_deps.dev:0 +github.com/edersonbrilhante/vilicus-github-action, github.com/edersonbuss/k8s-ci-cd-main,num_dependents_deps.dev:0 github.com/edersondev/ngx-control-formerror,num_dependents_deps.dev:0 github.com/edersonferreira/buildit,num_dependents_deps.dev:0 @@ -465378,6 +474568,8 @@ github.com/edgard/iperf3_exporter,num_dependents_deps.dev:0 github.com/edgard/murailobot,num_dependents_deps.dev:0 github.com/edgard/yeelight,num_dependents_deps.dev:0 github.com/edgardeng/view-echarts, +github.com/edgardleal/code-quality-to-spreadsheet-action, +github.com/edgardleal/mustache-template-action, github.com/edgardleal/path-template,num_dependents_deps.dev:0 github.com/edgardleal/require-vue,num_dependents_deps.dev:0 github.com/edgardleal/require-vuejs,num_dependents_deps.dev:0 @@ -465416,6 +474608,7 @@ github.com/edgarpf/is-amicable,num_dependents_deps.dev:0 github.com/edgarpf/nth-prime,num_dependents_deps.dev:0 github.com/edgarpf/parasitic-numbers,num_dependents_deps.dev:0 github.com/edgarpf/quote-scraper,num_dependents_deps.dev:0 +github.com/edgarrc/action-7z, github.com/edgarrmondragon/citric, github.com/edgarrmondragon/tap-dbt, github.com/edgarsrn/HebrewCalendarAPI,num_dependents_deps.dev:0 @@ -465502,6 +474695,7 @@ github.com/edgefarm/edgefarm-application-sdk.py, github.com/edgefarm/edgefarm-cli,num_dependents_deps.dev:0 github.com/edgefarm/edgefarm-service-modules,num_dependents_deps.dev:0 github.com/edgefarm/edgefarm.data,num_dependents_deps.dev:0 +github.com/edgefarm/setup-updatechart, github.com/edgeflip/dispatch, github.com/edgefund/edgefund-core,num_dependents_deps.dev:0 github.com/edgeguard-dev/go-metrics,num_dependents_deps.dev:0 @@ -465509,6 +474703,7 @@ github.com/edgeguard-dev/go.uuid,num_dependents_deps.dev:0 github.com/edgeguide/expect,num_dependents_deps.dev:0 github.com/edgehew/goprojects,num_dependents_deps.dev:0 github.com/edgehook/ctrlapp,num_dependents_deps.dev:0 +github.com/edgeimpulse/build-deploy, github.com/edgeimpulse/edge-impulse-cli,num_dependents_deps.dev:0 github.com/edgeimpulse/linux-sdk-python, github.com/edgeimpulse/tflite-find-arena-size,num_dependents_deps.dev:0 @@ -465799,6 +474994,7 @@ github.com/editor-js/table,num_dependents_deps.dev:7 github.com/editor-js/text-variant-tune,num_dependents_deps.dev:0 github.com/editor-js/underline,num_dependents_deps.dev:12 github.com/editor-js/warning,num_dependents_deps.dev:7 +github.com/editorconfig-checker/action-editorconfig-checker, github.com/editorconfig-checker/editorconfig-checker,num_dependents_deps.dev:286 github.com/editorconfig-checker/editorconfig-checker.javascript,num_dependents_deps.dev:2 github.com/editorconfig-checker/editorconfig-checker.python, @@ -465855,6 +475051,8 @@ github.com/edjuaro/ccal-noir, github.com/edjuaro/cuscatlan, github.com/edjuaro/cuzcatlan, github.com/edjubuh/node-pty,num_dependents_deps.dev:0 +github.com/edjufy/azure-blob-storage-upload, +github.com/edjufy/s3cmd-github-action, github.com/edjzhang/zipbiaschecker, github.com/edk-software/edk-route-verifier,num_dependents_deps.dev:0 github.com/edk0/special-engine, @@ -465869,6 +475067,7 @@ github.com/edkotkas/alia,num_dependents_deps.dev:0 github.com/edkotkas/hyper-blend,num_dependents_deps.dev:0 github.com/edlabao/jaraf, github.com/edlainenunes/go,num_dependents_deps.dev:0 +github.com/edlanglois/pkgbuild-action, github.com/edlanioj/kbu-store,num_dependents_deps.dev:0 github.com/edlea/homebridge-salus-it600,num_dependents_deps.dev:0 github.com/edlea/salus-it600,num_dependents_deps.dev:0 @@ -466187,7 +475386,9 @@ github.com/edozor/haikugo,num_dependents_deps.dev:0 github.com/edp963/davinci,criticality_score:0.530500 github.com/edp963/wormhole,criticality_score:0.436330 github.com/edpiburkhart/openweathermap-js,num_dependents_deps.dev:0 +github.com/edpichler/github-action-git-crypt, github.com/edpin/sessions,num_dependents_deps.dev:0 +github.com/edplato/trufflehog-actions-scan, github.com/edpop/node-unsprite,num_dependents_deps.dev:0 github.com/edporras/edn_turbo,num_dependents_deps.dev:0 github.com/edprince/pebble,num_dependents_deps.dev:0 @@ -466367,6 +475568,7 @@ github.com/eduardbadillo-igrid/morgan-moment,num_dependents_deps.dev:0 github.com/eduardbcom/longest-repeating-and-non-overlapping-pattern,num_dependents_deps.dev:0 github.com/eduardbcom/lookup-dns-cache,num_dependents_deps.dev:12 github.com/eduardbcom/node-memwatch,num_dependents_deps.dev:2 +github.com/eduardbme/github-action-prettier, github.com/eduardcotmrf/test-dependency-a,num_dependents_deps.dev:0 github.com/eduarddrenth/iText-GUI,num_dependents_deps.dev:0 github.com/eduarde/django_db_log, @@ -466436,6 +475638,7 @@ github.com/eduardoboucas/preact-jsx-chai-match,num_dependents_deps.dev:0 github.com/eduardoboucas/preact-jsx-chai-match-template,num_dependents_deps.dev:0 github.com/eduardoboucas/staticman,"criticality_score:0.497560,num_dependents_deps.dev:2" github.com/eduardobraun/serasa,num_dependents_deps.dev:0 +github.com/eduardocalazansjr/action-lambda-build, github.com/eduardocanellas/toggl-to-redmine, github.com/eduardocanellas/toggl-to-redmine-core, github.com/eduardocappellotto/validacao-bancaria-brasileira,num_dependents_deps.dev:0 @@ -466612,6 +475815,7 @@ github.com/edudavid/json-transform,num_dependents_deps.dev:0 github.com/edudepetris/notes-cli, github.com/edudobay/laika, github.com/eduedix/react-native-networking,num_dependents_deps.dev:0 +github.com/eduelias/gha-vacuum, github.com/eduelias/servervalidatedform,num_dependents_deps.dev:0 github.com/eduelias/truffle-privatekey,num_dependents_deps.dev:0 github.com/eduelias/tspiper,num_dependents_deps.dev:0 @@ -466640,6 +475844,7 @@ github.com/edukera/completium-cli,num_dependents_deps.dev:0 github.com/edukera/node-red-contrib-tezos,num_dependents_deps.dev:0 github.com/edulan/react-virtual-kanban,num_dependents_deps.dev:0 github.com/eduleboss/ioredis-sessions,num_dependents_deps.dev:0 +github.com/edulix/ort-action, github.com/edull24/ScrollWatch,num_dependents_deps.dev:10 github.com/eduluc12/lottojs,num_dependents_deps.dev:0 github.com/eduluc12/params-proxy,num_dependents_deps.dev:0 @@ -466653,7 +475858,13 @@ github.com/edumeron/json-storage,num_dependents_deps.dev:0 github.com/edumholt/consoller,num_dependents_deps.dev:0 github.com/edumoreira1506/-cig-core,num_dependents_deps.dev:0 github.com/edumoreira1506/cig-docs,num_dependents_deps.dev:0 +github.com/edumserrano/find-create-or-update-comment, +github.com/edumserrano/github-issue-forms-parser, +github.com/edumserrano/markdown-link-check-log-parser, +github.com/edumserrano/nuget-push, +github.com/edumserrano/share-jobs-data, github.com/edumueller/go-course,num_dependents_deps.dev:0 +github.com/edunad/actions-image, github.com/edunad/hooks,num_dependents_deps.dev:0 github.com/edunad/notoday,num_dependents_deps.dev:0 github.com/eduncan26/log-rotator,num_dependents_deps.dev:0 @@ -466671,6 +475882,7 @@ github.com/edupsousa/dialogflow-import,num_dependents_deps.dev:0 github.com/edupsousa/eshistory,num_dependents_deps.dev:0 github.com/edupsousa/node-termux-api,num_dependents_deps.dev:0 github.com/eduramiba/appium,num_dependents_deps.dev:0 +github.com/edurio-dev/scrub-workspace, github.com/edurtc/edurtc-server,num_dependents_deps.dev:0 github.com/edus44/axios-schema-resource,num_dependents_deps.dev:0 github.com/edus44/build-params,num_dependents_deps.dev:0 @@ -466750,9 +475962,11 @@ github.com/edvitor13/dencrypt, github.com/edvm/django-materialize-css, github.com/edvm/pimp-my-pillow, github.com/edvm/pysenteishon, +github.com/edvn0/setup-vulkan-sdk, github.com/edvorg/slides.rs,num_dependents_deps.dev:0 github.com/edvorg/webgl-rendering-context,num_dependents_deps.dev:0 github.com/edvorg/yew_audio,num_dependents_deps.dev:0 +github.com/edw1nzhao/variable-config-manager, github.com/edwar/react-native-upload-multiples-images,num_dependents_deps.dev:0 github.com/edwar64896/node-adif-gsp,num_dependents_deps.dev:0 github.com/edward-hong/next-auth,num_dependents_deps.dev:0 @@ -466814,7 +476028,10 @@ github.com/edwardfhsiao/react-minimal-datetime-range,num_dependents_deps.dev:0 github.com/edwardfhsiao/react-picky-date-time,num_dependents_deps.dev:0 github.com/edwardfhsiao/seasonme,num_dependents_deps.dev:0 github.com/edwardgaoyb/cordova-cookie-master,num_dependents_deps.dev:0 +github.com/edwardgeorge/explode-object-action, +github.com/edwardgeorge/file-outputs-action, github.com/edwardgeorge/importhelpers, +github.com/edwardgeorge/jq-action, github.com/edwardgeorge/uniplate, github.com/edwardgeorge/virtualenv-clone, github.com/edwardgerhold/syntaxjs, @@ -467430,6 +476647,7 @@ github.com/eerimoq/systest, github.com/eerimoq/textparser, github.com/eerkan/angular-page-generator,num_dependents_deps.dev:0 github.com/eerkunt/terraform-compliance, +github.com/eero-dev/dotnet-format, github.com/eeroan/WebConsole-reporter,num_dependents_deps.dev:0 github.com/eerohele/penkki,num_dependents_deps.dev:0 github.com/eerootsus/fotorama,num_dependents_deps.dev:0 @@ -467445,6 +476663,7 @@ github.com/eeschiavo/cordova-plugin-app-version,num_dependents_deps.dev:0 github.com/eeschiavo/cordova-plugin-clipboard,num_dependents_deps.dev:0 github.com/eeshangarg/nukefilewalker, github.com/eeshannarula29/structlinks, +github.com/eeshdarthvader/code-coverage-assistant, github.com/eeshdarthvader/create-scalable-app,num_dependents_deps.dev:0 github.com/eeshdarthvader/lighthouse, github.com/eeshdarthvader/pwa-lib,num_dependents_deps.dev:0 @@ -467502,6 +476721,8 @@ github.com/eevee/camel, github.com/eevee/cgettext, github.com/eevee/classtools, github.com/eevee/dictproxyhack, +github.com/eeveebank/github-actions-gitleaks, +github.com/eeveebank/github-actions-snyk, github.com/eeverman/andhow,num_dependents_deps.dev:0 github.com/eevleevs/hashequal, github.com/eexit/ghost-storage-cloudinary,num_dependents_deps.dev:0 @@ -467721,6 +476942,8 @@ github.com/efernandesng/bson2json,num_dependents_deps.dev:0 github.com/efernandesng/node-searchbyimage,num_dependents_deps.dev:0 github.com/efernandesng/placard-api,num_dependents_deps.dev:0 github.com/efernau/rot8,num_dependents_deps.dev:0 +github.com/eferraris/rabbit-sender, +github.com/eferraris/slack-webhook, github.com/eferro/go-snmpqueries,num_dependents_deps.dev:0 github.com/eferte/json-mock-hapi,num_dependents_deps.dev:0 github.com/eferte/proto-hapi-server,num_dependents_deps.dev:0 @@ -467755,6 +476978,7 @@ github.com/effector/logger,num_dependents_deps.dev:0 github.com/effector/patronum,num_dependents_deps.dev:0 github.com/effector/reflect, github.com/effector/root,num_dependents_deps.dev:0 +github.com/effector/size-compare, github.com/effectpet/eplogger,num_dependents_deps.dev:0 github.com/effectpet/ottervalidation, github.com/effectpet/ottervalidationvue, @@ -467791,6 +477015,8 @@ github.com/effervescentia/start-standard-preset,num_dependents_deps.dev:0 github.com/effervescentia/start-typescript,num_dependents_deps.dev:2 github.com/effervescentia/stylelint-config,num_dependents_deps.dev:0 github.com/effi/dfparaplot, +github.com/efficientIO/keepass-to-env-vars, +github.com/efficientIO/keepass-to-environment, github.com/efficientgo/e2e,num_dependents_deps.dev:0 github.com/efficientgo/tools,num_dependents_deps.dev:9 github.com/efficiently/larasset-js,num_dependents_deps.dev:0 @@ -467824,12 +477050,15 @@ github.com/effrenus/yandex-map-react,num_dependents_deps.dev:0 github.com/effus/simple-web-recording,num_dependents_deps.dev:0 github.com/effxhq/cluster-agent,num_dependents_deps.dev:0 github.com/effxhq/effx-go,num_dependents_deps.dev:0 +github.com/effxhq/effx-lint-action, +github.com/effxhq/effx-sync-action, github.com/effxhq/go-lifecycle,num_dependents_deps.dev:0 github.com/efgiese/ngx-barcode6,num_dependents_deps.dev:4 github.com/efharkin/ez-ephys, github.com/efi-mk/s3-scheduler, github.com/efiShtain/jest-sequelize,num_dependents_deps.dev:0 github.com/efiShtain/try-catch-type,num_dependents_deps.dev:0 +github.com/efiShtain/urlify-string, github.com/efiand/elc-php,num_dependents_deps.dev:0 github.com/efiand/eslint-config-pineglade,num_dependents_deps.dev:0 github.com/efiand/htmlacademy-stylelint-config,num_dependents_deps.dev:0 @@ -467842,6 +477071,7 @@ github.com/efibn/ngx-multi-line-ellipsis-wrapper,num_dependents_deps.dev:0 github.com/eficode-academy/git-katas,criticality_score:0.382760 github.com/eficode-academy/simple-fortune-cookie,num_dependents_deps.dev:0 github.com/eficode/JavaFXLibrary,num_dependents_deps.dev:0 +github.com/eficode/resolve-pr-refs, github.com/efidgy/efidgy, github.com/efidiles/folder-template,num_dependents_deps.dev:0 github.com/efidiles/lodash-ts-imports-loader,num_dependents_deps.dev:0 @@ -467967,6 +477197,7 @@ github.com/efrenbg1/gobroker,num_dependents_deps.dev:0 github.com/efrenbg1/mqtls-python, github.com/efrence/livehtml,num_dependents_deps.dev:0 github.com/efrencruz/rnd-names, +github.com/efrenfuentes/container-action, github.com/efrenmartinez/curso-basico-go,num_dependents_deps.dev:0 github.com/efrenps/react-query-builder, github.com/efriandika/Laravel-Echo-Server, @@ -468009,10 +477240,12 @@ github.com/efx-mxg312/number-formatter,num_dependents_deps.dev:0 github.com/efy/rmsync,num_dependents_deps.dev:0 github.com/efyguevara/SCL009-md-links,num_dependents_deps.dev:0 github.com/ega-forever/mokka,num_dependents_deps.dev:0 +github.com/ega4432/notion-to-markdown-action, github.com/egaba/ember-wired,num_dependents_deps.dev:0 github.com/egaba/ember-yup, github.com/egabancho/config-loader, github.com/egabancho/flask-sso-saml, +github.com/egad13/purge-jsdelivr-cache, github.com/egafni/Kache, github.com/egafni/MiniGraph, github.com/egafni/PsProfile, @@ -468372,6 +477605,7 @@ github.com/eggplants/pixiv-bulk-downloader, github.com/eggplants/pixiv-tag-analyzer, github.com/eggplants/random-nipple-player, github.com/eggplants/simpleverse, +github.com/eggplants/twitter-weathername-action, github.com/eggplants/wbsv-cli, github.com/eggsampler/certgot,num_dependents_deps.dev:0 github.com/eggsbenjamin/argo,num_dependents_deps.dev:0 @@ -468446,6 +477680,8 @@ github.com/egloo/use-axios-react,num_dependents_deps.dev:0 github.com/eglove/browserslist-config-ethang,num_dependents_deps.dev:0 github.com/eglove/eslint-config-ethang,num_dependents_deps.dev:0 github.com/eglove/stylelint-config-ethang,num_dependents_deps.dev:0 +github.com/egmacke/action-check-label, +github.com/egmacke/action-cleanup-workflow-runs, github.com/egman1/i-scroll,num_dependents_deps.dev:0 github.com/egman1/react-iscroll,num_dependents_deps.dev:0 github.com/egmkang/local_ipaddress,num_dependents_deps.dev:11 @@ -468948,8 +478184,17 @@ github.com/egor-manjula/gulp-karma-run,num_dependents_deps.dev:0 github.com/egor-manjula/privatbank-api,num_dependents_deps.dev:0 github.com/egor-n/SyncGenerator,num_dependents_deps.dev:0 github.com/egor-ruban/abac_with_graphql,num_dependents_deps.dev:0 +github.com/egor-tensin/build-boost, +github.com/egor-tensin/clang-format, +github.com/egor-tensin/cleanup-path, github.com/egor-tensin/cmake-common, +github.com/egor-tensin/setup-clang, +github.com/egor-tensin/setup-cygwin, +github.com/egor-tensin/setup-gcc, +github.com/egor-tensin/setup-mingw, +github.com/egor-tensin/setup-wireguard, github.com/egor-tensin/vk-scripts, +github.com/egor-tensin/vs-shell, github.com/egor-xyz/eslint-config,num_dependents_deps.dev:0 github.com/egor200201/golanghomework,num_dependents_deps.dev:0 github.com/egorAva/use-debouncy,num_dependents_deps.dev:0 @@ -469009,6 +478254,7 @@ github.com/egorovsa/node-verpatch,num_dependents_deps.dev:0 github.com/egorovsa/react-parallax-map, github.com/egorovsa/react-video-play,num_dependents_deps.dev:0 github.com/egorovsa/react-video-seek-slider,num_dependents_deps.dev:0 +github.com/egorpugin/sw-action, github.com/egorse/go-spacefn,num_dependents_deps.dev:0 github.com/egorse/golang-evdev,num_dependents_deps.dev:0 github.com/egorse/uinput,num_dependents_deps.dev:0 @@ -469173,6 +478419,7 @@ github.com/eharris93/appc-whatami,num_dependents_deps.dev:0 github.com/eharris93/qe-helper,num_dependents_deps.dev:0 github.com/ehartsuyker/node-deb,num_dependents_deps.dev:0 github.com/ehasnain/route-blocker,num_dependents_deps.dev:0 +github.com/ehassett/hcp-packer-action, github.com/ehasting/DBUSSimpleNotify, github.com/ehatch90/censorify,num_dependents_deps.dev:0 github.com/ehatch90/myServer,num_dependents_deps.dev:0 @@ -469445,6 +478692,10 @@ github.com/eibrahim/hyperslack,num_dependents_deps.dev:0 github.com/eibrahim995/xspfcleaner, github.com/eibrunorodrigues/rabbitmq-go,num_dependents_deps.dev:0 github.com/eic/eicmcio, +github.com/eic/generate-meeting-slides, +github.com/eic/run-cvmfs-osg-eic-shell, +github.com/eic/setup-spack, +github.com/eic/trigger-gitlab-ci, github.com/eichisanden/hubot-slash-command,num_dependents_deps.dev:0 github.com/eida/eida-statistics, github.com/eideasy/eideasy-browser-js,num_dependents_deps.dev:0 @@ -469498,9 +478749,11 @@ github.com/eiffel-community/etos-test-runner, github.com/eiffelluo/antd-extension,num_dependents_deps.dev:0 github.com/eifil/amt-ipld,num_dependents_deps.dev:0 github.com/eifinger/PyFoldingAtHomeControl, +github.com/eifinger/actionlint-action, github.com/eifinger/aiohere, github.com/eifinger/aioweenect, github.com/eifinger/fritz-switch-profiles, +github.com/eifinger/setup-rye, github.com/eig-2017/leaflet-geocoder-ban,num_dependents_deps.dev:0 github.com/eigen-space/argument-parser,num_dependents_deps.dev:2 github.com/eigen-space/base-http-service,num_dependents_deps.dev:0 @@ -469522,6 +478775,8 @@ github.com/eigen-space/sse-emitter,num_dependents_deps.dev:0 github.com/eigen-space/sse-server,num_dependents_deps.dev:0 github.com/eigen-space/sse-service,num_dependents_deps.dev:0 github.com/eigen-space/url-replacer,num_dependents_deps.dev:6 +github.com/eigenbot-app/dependabot-updates-docker, +github.com/eigenbot-app/dependabot-updates-gomod, github.com/eigenein/mrktpltsbot,num_dependents_deps.dev:0 github.com/eigenein/my-iot-rs,num_dependents_deps.dev:0 github.com/eigenein/protobuf, @@ -469711,6 +478966,7 @@ github.com/eikenb/go-shellwords,num_dependents_deps.dev:0 github.com/eikenb/pipeat,num_dependents_deps.dev:0 github.com/eikenb/terminal-colors, github.com/eikenb/udev-notify,num_dependents_deps.dev:0 +github.com/eikendev/gotify-action, github.com/eikendev/hackenv,num_dependents_deps.dev:0 github.com/eikendev/sectxt,num_dependents_deps.dev:0 github.com/eikendev/sectxtcov,num_dependents_deps.dev:0 @@ -469763,6 +479019,7 @@ github.com/ein-plus/pytest-django-rq, github.com/einar-lanfranco/publicwww, github.com/einaregilsson/Redirector,criticality_score:0.400910 github.com/einaregilsson/beanstalk-deploy,num_dependents_deps.dev:0 +github.com/einaregilsson/build-number, github.com/einaregilsson/gulp-global-exclude,num_dependents_deps.dev:0 github.com/einaregilsson/s3-list-all-objects,num_dependents_deps.dev:0 github.com/einarhauks/tesla-wall-connector, @@ -469996,6 +479253,7 @@ github.com/eisberg-labs/ngx-barcode-scanner,num_dependents_deps.dev:0 github.com/eisberg-labs/ngx-lib-starter,num_dependents_deps.dev:0 github.com/eisberg-labs/ngx-size-me,num_dependents_deps.dev:0 github.com/eisberg-labs/ngx-strength-meter,num_dependents_deps.dev:0 +github.com/eisberg-labs/static-website-to-s3, github.com/eisbm/libsbgn.js,num_dependents_deps.dev:0 github.com/eischaefer/numgeo, github.com/eisenbraun/guardian,num_dependents_deps.dev:0 @@ -470065,6 +479323,7 @@ github.com/eitchtee/pyCelsiusNetwork, github.com/eitchtee/pyMinhaUFOP, github.com/eithan1231/whois-light,num_dependents_deps.dev:0 github.com/eithanshavit/amortization,num_dependents_deps.dev:0 +github.com/eithanshavit/asana-link-commit-gh-action, github.com/eithanshavit/shareable-seed,num_dependents_deps.dev:0 github.com/eithe/node-red-contrib-jsonstat,num_dependents_deps.dev:0 github.com/eithe/node-red-contrib-pi-hole,num_dependents_deps.dev:0 @@ -470404,6 +479663,8 @@ github.com/ekchusis/twittersent, github.com/ekdennisek/tradera-api-client,num_dependents_deps.dev:0 github.com/ekdevdes/setInterval,num_dependents_deps.dev:0 github.com/ekeeke/Genesis-Plus-GX,criticality_score:0.465210 +github.com/ekeel/approval-action, +github.com/ekeel/tfsec-checkgen-validate, github.com/ekehoe32/orthrus, github.com/ekeih/dwdpollen, github.com/ekeih/heluxup, @@ -470554,6 +479815,7 @@ github.com/eklemen/gate-guard,num_dependents_deps.dev:0 github.com/eklemen/generate-express, github.com/eklemen/generator,num_dependents_deps.dev:0 github.com/eklemen/nestjs-sns,num_dependents_deps.dev:0 +github.com/ekline-io/ekline-github-action, github.com/eklingen/vinyl-stream-connect,num_dependents_deps.dev:0 github.com/eklingen/vinyl-stream-eslint,num_dependents_deps.dev:0 github.com/eklingen/vinyl-stream-gears,num_dependents_deps.dev:0 @@ -470660,6 +479922,7 @@ github.com/ekoeryanto/vuepress-theme-bootstrap,num_dependents_deps.dev:0 github.com/ekohe/pm25,num_dependents_deps.dev:0 github.com/ekohe/sourcescrub,num_dependents_deps.dev:0 github.com/ekohl/metadata_json_deps,num_dependents_deps.dev:0 +github.com/ekohl/ruby-version, github.com/ekojsalim/passport-sso-ui,num_dependents_deps.dev:0 github.com/ekokotov/object-table,num_dependents_deps.dev:0 github.com/ekokotov/react-url-table,num_dependents_deps.dev:0 @@ -470708,6 +479971,7 @@ github.com/ekotlikoff/gochess,num_dependents_deps.dev:0 github.com/ekouts/pyfirecrest, github.com/ekowcharles/echomet,num_dependents_deps.dev:0 github.com/ekowcharles/sre,num_dependents_deps.dev:0 +github.com/ekowcharles/update-github-actions-secret, github.com/ekoz/go-prac,num_dependents_deps.dev:0 github.com/ekozan/nfs-provisioner,num_dependents_deps.dev:0 github.com/ekozan/pm2-warlock,num_dependents_deps.dev:0 @@ -470820,6 +480084,7 @@ github.com/ekutner/home-connect-async, github.com/ekuwang/cordova-plugin-statusbar,num_dependents_deps.dev:0 github.com/ekuzmichev/circe-scala-bson,num_dependents_deps.dev:0 github.com/ekuzu/mongoose-uuid4,num_dependents_deps.dev:0 +github.com/ekvanox/pipreqs-action, github.com/ekwan/cctk, github.com/ekwing/eslint-config-ekwing,num_dependents_deps.dev:0 github.com/ekwing/stylelint-config-ekwing,num_dependents_deps.dev:0 @@ -470892,6 +480157,7 @@ github.com/elGatoMantocko/spotifauth, github.com/elManga-client/elmanga-mangadex,num_dependents_deps.dev:0 github.com/elMauNunez/jet,num_dependents_deps.dev:0 github.com/elMauNunez/split-text,num_dependents_deps.dev:0 +github.com/elMuso/MergePDFs-action, github.com/elPoeta/zoom-hover,num_dependents_deps.dev:0 github.com/elSteeze/angular-library-test,num_dependents_deps.dev:0 github.com/elSteeze/test-library-repo,num_dependents_deps.dev:0 @@ -471055,11 +480321,13 @@ github.com/elangobharathi/react-leaflet-fullscreen-plugin,num_dependents_deps.de github.com/elangobharathi/react.leaflet.fullscreen,num_dependents_deps.dev:0 github.com/elangoram1998/gnews-node-api,num_dependents_deps.dev:0 github.com/elangosundar/awesome-README-templates,criticality_score:0.307190 +github.com/elangosundar/social-ai, github.com/elangx/leetcode,num_dependents_deps.dev:0 github.com/elaninhust/postcss-config,num_dependents_deps.dev:0 github.com/elankeeran/AWSECommerceService,num_dependents_deps.dev:0 github.com/elankeeran/appConf,num_dependents_deps.dev:0 github.com/elankeeran/promisifyhttprequest,num_dependents_deps.dev:0 +github.com/elankvitko/pr-update-action, github.com/elannert/nodevetr,num_dependents_deps.dev:0 github.com/elanq/ninu,num_dependents_deps.dev:0 github.com/elanthia-online/cartograph,num_dependents_deps.dev:0 @@ -471072,6 +480340,7 @@ github.com/elantion/isEmptyObject,num_dependents_deps.dev:0 github.com/elantion/lc-jsonp,num_dependents_deps.dev:0 github.com/elantion/lc-number-picker,num_dependents_deps.dev:0 github.com/elantion/typeOf,num_dependents_deps.dev:0 +github.com/elanworld/subtree-sync-action, github.com/elao/eslint-config-elao,num_dependents_deps.dev:0 github.com/elao/eslint-formatter-relative-junit,num_dependents_deps.dev:0 github.com/elao/stylelint-formatter-relative-junit,num_dependents_deps.dev:0 @@ -471444,6 +480713,7 @@ github.com/elbayadm/attn2d,criticality_score:0.331960 github.com/elbecita/ice-breaker,num_dependents_deps.dev:0 github.com/elbecita/icebreaker.io,num_dependents_deps.dev:0 github.com/elbecita/icebreaker.io-client,num_dependents_deps.dev:0 +github.com/elbeejay/conda-publish-action, github.com/elbeejay/entrogrammer, github.com/elbeejay/py_gee_tools, github.com/elbeicktalat/flash,num_dependents_deps.dev:0 @@ -471849,6 +481119,7 @@ github.com/eleanor-em/bagel,num_dependents_deps.dev:0 github.com/eleanor-em/rust-elgamal,num_dependents_deps.dev:0 github.com/eleanor-studio/photon.editor,num_dependents_deps.dev:0 github.com/eleanorakh/rspec-progress-extended,num_dependents_deps.dev:0 +github.com/eleanorhealth/github-app-installation-auth-action, github.com/eleanorhealth/go-athenahealth,num_dependents_deps.dev:0 github.com/eleanorhealth/milo,num_dependents_deps.dev:0 github.com/eleazar-araujo/ngx-translate-extract,num_dependents_deps.dev:0 @@ -471860,6 +481131,7 @@ github.com/elebow/rbr,num_dependents_deps.dev:0 github.com/elebow/ruby-see5,num_dependents_deps.dev:0 github.com/elebow/ruby-see5-installer,num_dependents_deps.dev:0 github.com/eleboys/nwisemapper,num_dependents_deps.dev:0 +github.com/eleboys/test-coverage-report-action, github.com/elec-otago/fastfix, github.com/electather/Repeatr-ts,num_dependents_deps.dev:0 github.com/electather/payir-typescript,num_dependents_deps.dev:0 @@ -471990,6 +481262,7 @@ github.com/electricmonk/chai-react-element,num_dependents_deps.dev:0 github.com/electricmonk/sinon-chai-in-order,num_dependents_deps.dev:4 github.com/electricnoodle/prometheus-midi-generator,num_dependents_deps.dev:0 github.com/electricpizzza/geo-haversine,num_dependents_deps.dev:0 +github.com/electrikhq/electrik, github.com/electrikyouthh/thatmeowconfig,num_dependents_deps.dev:0 github.com/electro-smith/DaisySP,criticality_score:0.339690 github.com/electro-smith/json2daisy, @@ -472143,6 +481416,7 @@ github.com/electron/electron-userland-reports, github.com/electron/electronjs.org,criticality_score:0.573190 github.com/electron/electronjs.org-new,num_dependents_deps.dev:0 github.com/electron/fiddle,criticality_score:0.551210 +github.com/electron/forge, github.com/electron/get,num_dependents_deps.dev:1239 github.com/electron/get-crowdin-file-ids, github.com/electron/grunt-download-electron, @@ -472210,6 +481484,7 @@ github.com/electrovir/fsm-vir,num_dependents_deps.dev:0 github.com/electrovir/insulation,num_dependents_deps.dev:0 github.com/electrovir/itunes-library-migration-assistant,num_dependents_deps.dev:0 github.com/electrovir/pdf-text-reader,num_dependents_deps.dev:0 +github.com/electrovir/pull-request-vir, github.com/electrovir/rest-vir,num_dependents_deps.dev:0 github.com/electrovir/sql-vir,num_dependents_deps.dev:0 github.com/electrovir/statement-parser,num_dependents_deps.dev:0 @@ -472404,6 +481679,7 @@ github.com/elementar/rails_errors,num_dependents_deps.dev:0 github.com/elementar/refluxed,num_dependents_deps.dev:0 github.com/elementar/shapewear,num_dependents_deps.dev:0 github.com/elementary-data/elementary, +github.com/elementary-data/run-elementary-action, github.com/elementary-robotics/atom, github.com/elementary/appcenter,criticality_score:0.626360 github.com/elementary/code,criticality_score:0.597660 @@ -472416,8 +481692,10 @@ github.com/elementary/wallpapers,criticality_score:0.440070 github.com/elementary/website,criticality_score:0.608180 github.com/elementbound/mdview,num_dependents_deps.dev:0 github.com/elementc/yeager, +github.com/elementemerald/r2-upload-action, github.com/elementengineering/javascript-style-guide,num_dependents_deps.dev:0 github.com/elementh/random_color,num_dependents_deps.dev:3 +github.com/elementing/actions-ping, github.com/elementius/wordpressium,num_dependents_deps.dev:0 github.com/elementjs/elt,num_dependents_deps.dev:0 github.com/elementjs/elt-leaflet,num_dependents_deps.dev:0 @@ -472515,7 +481793,9 @@ github.com/elephant-fe/arthur,num_dependents_deps.dev:0 github.com/elephant-fe/athena,num_dependents_deps.dev:0 github.com/elephant-fe/utils,num_dependents_deps.dev:0 github.com/elephant-insurance/mergo,num_dependents_deps.dev:0 +github.com/elephantcastle/close-duplicated-pull-request, github.com/elephantly/milligramAdminTheme,num_dependents_deps.dev:0 +github.com/elephantoss/action-publish-hex, github.com/elephantproject/sdk,num_dependents_deps.dev:0 github.com/elephantrobotics/mypalletizer, github.com/elephantrobotics/pymycobot, @@ -472528,6 +481808,7 @@ github.com/elergy/nmock,num_dependents_deps.dev:0 github.com/eleron8/promtail-client,num_dependents_deps.dev:0 github.com/elertan/chrome_login_capture,num_dependents_deps.dev:0 github.com/elesarf/voice_fucker,num_dependents_deps.dev:0 +github.com/elesdoar/gh-action-bump-version, github.com/elesdoar/sails-hook-winston2,num_dependents_deps.dev:0 github.com/elesdoar/ui-leaflet-layers,num_dependents_deps.dev:0 github.com/elesiuta/backupy, @@ -472557,6 +481838,9 @@ github.com/eleung/chartjs-plugin-doughnutlabel,num_dependents_deps.dev:0 github.com/eleung/touchstone-navigator,num_dependents_deps.dev:0 github.com/eleurent/highway-env,criticality_score:0.441360 github.com/eleutherAI/mp_nerf, +github.com/eleutheria-tech/get-github-project-v2-item-ids, +github.com/eleutheria-tech/get-github-project-v2-metadata, +github.com/eleutheria-tech/update-github-project-v2-item-status, github.com/elev3nth/intid,num_dependents_deps.dev:0 github.com/elevai-consulting/commitlint-github,num_dependents_deps.dev:0 github.com/elevate-app/elevate-vg-cli,num_dependents_deps.dev:0 @@ -472658,6 +481942,7 @@ github.com/elfinFE/svg-man,num_dependents_deps.dev:0 github.com/elfincafe/kanaco,num_dependents_deps.dev:0 github.com/elfinitiy/arg-parser,num_dependents_deps.dev:0 github.com/elfinitiy/ewk-ts,num_dependents_deps.dev:0 +github.com/elfisworking/Deply_hexo_to_Tecent_cloud, github.com/elfive/homebridge-advanced-timer,num_dependents_deps.dev:0 github.com/elfive/homebridge-petkit-feeder-mini,num_dependents_deps.dev:0 github.com/elfive/homebridge-raspberry-simplegpio,num_dependents_deps.dev:0 @@ -472708,10 +481993,17 @@ github.com/elgiano/abletonalwayshotkeys,num_dependents_deps.dev:0 github.com/elgine/react-transform-tool,num_dependents_deps.dev:0 github.com/elgine/vue-transform-tool,num_dependents_deps.dev:0 github.com/elginer/carps,num_dependents_deps.dev:0 +github.com/elgohr/Github-Hub-Action, +github.com/elgohr/Github-Release-Action, github.com/elgohr/Publish-Docker-Github-Action,criticality_score:0.434570 +github.com/elgohr/acr-login-action, +github.com/elgohr/asdf-build-action, github.com/elgohr/concourse-sonarqube-notifier,num_dependents_deps.dev:0 +github.com/elgohr/ecr-login-action, +github.com/elgohr/gcloud-login-action, github.com/elgohr/github-action-analyzer,num_dependents_deps.dev:0 github.com/elgohr/go-localstack,num_dependents_deps.dev:0 +github.com/elgohr/go-vulncheck-action, github.com/elgohr/mqtt-to-influxdb,num_dependents_deps.dev:0 github.com/elgohr/semv,num_dependents_deps.dev:0 github.com/elgohr/stop-and-go,num_dependents_deps.dev:0 @@ -472862,6 +482154,7 @@ github.com/eliashussary/mail-confirm,num_dependents_deps.dev:0 github.com/eliashussary/react-mapbox-ui,num_dependents_deps.dev:0 github.com/eliashussary/react-maplibre-ui, github.com/eliasib13/Cardeck.js,num_dependents_deps.dev:0 +github.com/eliasjcjunior/aws-ssm-parameters-action, github.com/eliasjcjunior/serverless-plugin-typescript-express,num_dependents_deps.dev:0 github.com/eliasjcjunior/serverless-plugin-vault-v2,num_dependents_deps.dev:0 github.com/eliaskioni/ussdframework, @@ -472876,6 +482169,7 @@ github.com/eliasmamo/node-find-files2,num_dependents_deps.dev:0 github.com/eliasmeire/cycle-ws-driver,num_dependents_deps.dev:0 github.com/eliasmeire/emoji-pane,num_dependents_deps.dev:0 github.com/eliasmeire/mp3-mediarecorder,num_dependents_deps.dev:0 +github.com/eliasmelgaco/pull-request-comment-trigger, github.com/eliasnaur/ql,num_dependents_deps.dev:0 github.com/eliasnaur/vgotest,num_dependents_deps.dev:0 github.com/eliasnorrby/commitlint-config,num_dependents_deps.dev:0 @@ -472911,6 +482205,7 @@ github.com/eliben/so-tag-sentiment-analysis,num_dependents_deps.dev:0 github.com/elibenporat/hikaru,num_dependents_deps.dev:0 github.com/elibiz443/frontview,num_dependents_deps.dev:0 github.com/elibiz443/sema,num_dependents_deps.dev:0 +github.com/eliblock/less-advanced-security-action, github.com/elibom/elibom-node,num_dependents_deps.dev:0 github.com/elibom/elibom-ruby,num_dependents_deps.dev:0 github.com/elibracha/openapi-diff,num_dependents_deps.dev:1 @@ -472934,6 +482229,7 @@ github.com/elichai/syscalls-rs,num_dependents_deps.dev:0 github.com/elichai/two-party-hash,num_dependents_deps.dev:0 github.com/elicul/vue2_datepicker,num_dependents_deps.dev:0 github.com/elidaian/edsudoku, +github.com/elide-dev/setup-elide, github.com/elidirhealth/keycloak-nodejs-admin-client,num_dependents_deps.dev:0 github.com/elidoran/array-each-nonflat,num_dependents_deps.dev:0 github.com/elidoran/chain-builder,num_dependents_deps.dev:0 @@ -473101,6 +482397,7 @@ github.com/eliezedeck/gobase,num_dependents_deps.dev:0 github.com/eliezedeck/gozap2seq,num_dependents_deps.dev:0 github.com/eliezer-souza/create-action-redux,num_dependents_deps.dev:0 github.com/eliezerb/vdk,num_dependents_deps.dev:0 +github.com/eliezio/action-pykwalify, github.com/elifTech/cpd-ocpp,num_dependents_deps.dev:0 github.com/elifa/gulp-developerconsole,num_dependents_deps.dev:0 github.com/elifarley/klib,num_dependents_deps.dev:6 @@ -473169,6 +482466,7 @@ github.com/eliias/netiam,num_dependents_deps.dev:0 github.com/eliias/open-cli,num_dependents_deps.dev:0 github.com/eliias/vup,num_dependents_deps.dev:0 github.com/eliiza/theme-eliiza, +github.com/elijah-roberts/go-action, github.com/elijahandrews/flake8-blind-except, github.com/elijahcaine/GrindStone, github.com/elijahcarrel/goose,num_dependents_deps.dev:0 @@ -473216,6 +482514,7 @@ github.com/elijahmanor/scss-lint-loader,num_dependents_deps.dev:0 github.com/elijahmanor/spectacle-terminal,num_dependents_deps.dev:0 github.com/elijahmanor/test-tag-release,num_dependents_deps.dev:0 github.com/elijahmiller237/react-native-scatter-chart-em,num_dependents_deps.dev:0 +github.com/elijaholmos/prisma-schema-validate, github.com/elijahparker/node-jpeg-lum,num_dependents_deps.dev:0 github.com/elijahr/aiolo, github.com/elijahr/django-orderable-inlines, @@ -473317,6 +482616,7 @@ github.com/eliot-akira/testa,num_dependents_deps.dev:0 github.com/eliot-akira/testra, github.com/eliot-akira/tysch,num_dependents_deps.dev:0 github.com/eliot-iot/nodejs-sdk,num_dependents_deps.dev:0 +github.com/eliot-liner/pr-base-label, github.com/eliot12/learnig_go,num_dependents_deps.dev:0 github.com/eliotberriot/lifter, github.com/elioth-coder/jcomponent,num_dependents_deps.dev:0 @@ -473779,7 +483079,9 @@ github.com/elliotf/mocha-sinon,num_dependents_deps.dev:2 github.com/elliotf/node-dbqueue,num_dependents_deps.dev:0 github.com/elliotfleming/connect-flash-light,num_dependents_deps.dev:0 github.com/elliotfleming/stream-files,num_dependents_deps.dev:0 +github.com/elliotforbes/broken-link-checker, github.com/elliotforbes/ng-diff-match-patch,num_dependents_deps.dev:0 +github.com/elliotforbes/vcn-notarization-action, github.com/elliotforbes/vue-diff-match-patch,num_dependents_deps.dev:0 github.com/elliotgeno/EclipseScroll,num_dependents_deps.dev:0 github.com/elliothatch/fresh-socketio-router,num_dependents_deps.dev:0 @@ -473827,6 +483129,7 @@ github.com/elliottneilclark/michromer,num_dependents_deps.dev:0 github.com/elliottneilclark/rs-poker,num_dependents_deps.dev:0 github.com/elliottpolk/cj,num_dependents_deps.dev:0 github.com/elliottpolk/enigma,num_dependents_deps.dev:0 +github.com/elliottpope/cloudfoundry-cli-action, github.com/elliottregan/js-utilities,num_dependents_deps.dev:0 github.com/elliottsj/angular-chrome-messaging,num_dependents_deps.dev:0 github.com/elliottsj/babel-inline-import-loader,num_dependents_deps.dev:0 @@ -473872,7 +483175,9 @@ github.com/elliottwilliams/grunt-colorguard,num_dependents_deps.dev:0 github.com/elliottzheng/batch-face, github.com/elliottzheng/fast-alignment, github.com/elliotwaite/laminarflow, +github.com/elliotxx/go-cli-action-prototype, github.com/elliotxx/go-utils,num_dependents_deps.dev:0 +github.com/elliotxx/kusion-action, github.com/elliotxx/react-cron,num_dependents_deps.dev:0 github.com/ellipsesynergie/botkit,num_dependents_deps.dev:0 github.com/ellipsis-ai/ellipsis-api,num_dependents_deps.dev:0 @@ -473935,6 +483240,7 @@ github.com/ello/brains,num_dependents_deps.dev:0 github.com/ello/ello-ios,criticality_score:0.344510 github.com/ello/eslint-config-ello,num_dependents_deps.dev:0 github.com/ellocano/go-nvml,num_dependents_deps.dev:0 +github.com/ellraiser/love-test-report, github.com/ellreka/configs,num_dependents_deps.dev:0 github.com/ellreka/figma-comments-to-csv,num_dependents_deps.dev:0 github.com/ellreka/tailwindcss-highlight,num_dependents_deps.dev:0 @@ -473988,6 +483294,8 @@ github.com/elmahio/elmah.io.client.js,num_dependents_deps.dev:0 github.com/elmahio/elmah.io.express,num_dependents_deps.dev:0 github.com/elmahio/elmah.io.javascript,num_dependents_deps.dev:0 github.com/elmahio/elmah.io.js,num_dependents_deps.dev:0 +github.com/elmahio/github-create-deployment-action, +github.com/elmahio/github-upload-source-map-action, github.com/elmahio/jsStack,num_dependents_deps.dev:0 github.com/elmahio/netStack.js,num_dependents_deps.dev:0 github.com/elmahio/stacktrace.js,num_dependents_deps.dev:0 @@ -474019,6 +483327,7 @@ github.com/elmarsto/spar,num_dependents_deps.dev:0 github.com/elmarsto/spar-cli,num_dependents_deps.dev:0 github.com/elmarsto/spar-rs,num_dependents_deps.dev:4 github.com/elmarti/corertc,num_dependents_deps.dev:0 +github.com/elmarti/deploy-firebase, github.com/elmarti/meteor-video-chat,num_dependents_deps.dev:0 github.com/elmarti/react-joystick-component,num_dependents_deps.dev:0 github.com/elmartirta/elmar-woodenlog, @@ -474177,6 +483486,7 @@ github.com/elohr/jquery.popupForm,num_dependents_deps.dev:0 github.com/elohr/jquery.selectable,num_dependents_deps.dev:0 github.com/eloisepeng/image-resizer,num_dependents_deps.dev:0 github.com/eloisepeng/image-rotater,num_dependents_deps.dev:0 +github.com/eloisetaylor5693/turn-off-pr-comments-for-test-summary-github-action, github.com/eloj/countdown,num_dependents_deps.dev:0 github.com/elojah/game_03,num_dependents_deps.dev:0 github.com/elojah/go-http,num_dependents_deps.dev:0 @@ -474266,6 +483576,7 @@ github.com/elpeix/kaa, github.com/elpete/buildbox,num_dependents_deps.dev:0 github.com/elpete/extension-svg,num_dependents_deps.dev:0 github.com/elpete/gitlab-npm-audit-parser,num_dependents_deps.dev:0 +github.com/elpete/setup-commandbox, github.com/elpheria/rpc-websockets,"criticality_score:0.417980,num_dependents_deps.dev:2246" github.com/elpideus/XAnimePorn, github.com/elplatt/nkmodel, @@ -474316,6 +483627,9 @@ github.com/elrancid/moment-business-days-it,num_dependents_deps.dev:0 github.com/elrasco/vue-tailwind-components,num_dependents_deps.dev:0 github.com/elrasguno/npm-update-outdated,num_dependents_deps.dev:0 github.com/elrathor/gittraining,num_dependents_deps.dev:0 +github.com/elreclamador/okteto-configmap, +github.com/elreclamador/okteto-secret, +github.com/elreco/smartcat, github.com/elribonazo/avconv_id3,num_dependents_deps.dev:0 github.com/elribonazo/bwlim,num_dependents_deps.dev:0 github.com/elribonazo/nfgrep,num_dependents_deps.dev:0 @@ -474477,6 +483791,9 @@ github.com/elselabs/redux-timer,num_dependents_deps.dev:0 github.com/elselapatha/is-value-empty,num_dependents_deps.dev:0 github.com/elsesiy/kubectl-view-secret,num_dependents_deps.dev:0 github.com/elsetiyawan/mongoose-document-log,num_dependents_deps.dev:0 +github.com/elseu/sdu-define-tag-branch-action, +github.com/elseu/sdu-env-specific-variables-action, +github.com/elseu/sdu-helm-deploy-action, github.com/elseu/sdu-react-scripts,num_dependents_deps.dev:0 github.com/elseu/use-binding,num_dependents_deps.dev:0 github.com/elseu/use-tree,num_dependents_deps.dev:0 @@ -474529,6 +483846,7 @@ github.com/elstats/linear-regression,num_dependents_deps.dev:0 github.com/elstats/mean,num_dependents_deps.dev:0 github.com/elstats/percentile,num_dependents_deps.dev:0 github.com/elstonie/rsa-xml,num_dependents_deps.dev:30 +github.com/elstudio/actions-settings, github.com/elsudano/terraform-provider-vmware-workstation,num_dependents_deps.dev:0 github.com/elsudano/terraform-provider-vmwareworkstation,num_dependents_deps.dev:0 github.com/elsudano/terraform-provider-vmworkstation,num_dependents_deps.dev:0 @@ -474563,6 +483881,7 @@ github.com/eltonjosesouza/strapi-provider-upload-google-cloud-storage,num_depend github.com/eltonjuan/dom-to-image,num_dependents_deps.dev:0 github.com/eltonjuan/rollie,num_dependents_deps.dev:0 github.com/eltonjuan/slider,num_dependents_deps.dev:0 +github.com/eltonkola/bllok, github.com/eltonlai2014/EZChart,num_dependents_deps.dev:0 github.com/eltonlai2014/npm.test,num_dependents_deps.dev:0 github.com/eltonmarques96/manipulate-data,num_dependents_deps.dev:0 @@ -474694,6 +484013,7 @@ github.com/elvenworks/kafka-conector,num_dependents_deps.dev:0 github.com/elvertmora/quasar-fire-app,num_dependents_deps.dev:0 github.com/elves/elvish,"criticality_score:0.531930,num_dependents_deps.dev:5" github.com/elves/sample-plugin,num_dependents_deps.dev:0 +github.com/elves/setup-elvish, github.com/elves/up,num_dependents_deps.dev:0 github.com/elvesrodrigues/antiblock-scrapy, github.com/elvesrodrigues/antiblock-scrapy-selenium, @@ -474823,6 +484143,7 @@ github.com/elwinvaneede/elwins-test-web-components,num_dependents_deps.dev:0 github.com/elwinvaneede/elwins-test-web-components-angular,num_dependents_deps.dev:0 github.com/elwinvaneede/elwins-test-web-components-react,num_dependents_deps.dev:0 github.com/elwinvaneede/elwins-test-web-components-vue,num_dependents_deps.dev:0 +github.com/elwizard33/dokku-deploy-github-action, github.com/elwlwlwk/STLnode,num_dependents_deps.dev:0 github.com/elwlwlwk/s-h-esd,num_dependents_deps.dev:0 github.com/elwynelwyn/HGreenkeeper,num_dependents_deps.dev:0 @@ -474917,6 +484238,7 @@ github.com/em2046/nova-next,num_dependents_deps.dev:0 github.com/em4d/chick-address,num_dependents_deps.dev:0 github.com/emCOMP/twinkle, github.com/emPhreak/homebridge-blackbox-hd6224a, +github.com/emZubair/dependencies-autoupdate, github.com/ema-digital/emad,num_dependents_deps.dev:0 github.com/ema-digital/generator-emad,num_dependents_deps.dev:0 github.com/ema-digital/modreport,num_dependents_deps.dev:0 @@ -474941,6 +484263,8 @@ github.com/emacle/buefy,num_dependents_deps.dev:0 github.com/emacle/vue-treeselect,num_dependents_deps.dev:0 github.com/emacs-china/Spacemacs-rocks,criticality_score:0.318090 github.com/emacs-dashboard/emacs-dashboard,criticality_score:0.496730 +github.com/emacs-eask/setup-eask, +github.com/emacs-eldev/setup-eldev, github.com/emacs-ess/ESS,criticality_score:0.559190 github.com/emacs-evil/evil,criticality_score:0.515520 github.com/emacs-evil/evil-collection,criticality_score:0.486790 @@ -474987,7 +484311,10 @@ github.com/emadurandal/shaderity, github.com/emadurandal/shaderity-node, github.com/emae1712/LIM013-fe-md-links,num_dependents_deps.dev:0 github.com/emaele/rss-telegram-notifier,num_dependents_deps.dev:0 +github.com/emafazillah/covid19-updates-bot, github.com/emafriedrich/cesar,num_dependents_deps.dev:0 +github.com/emagers/ab-story-validation-action, +github.com/emagers/json-schema-validation, github.com/emagnca/mmcli, github.com/emagnier/elastic-grids,num_dependents_deps.dev:0 github.com/emagnier/inuitcss.widths-generator,num_dependents_deps.dev:0 @@ -475111,6 +484438,7 @@ github.com/emanuelbalcazar/mi-libreria-coder,num_dependents_deps.dev:0 github.com/emanuelbsilva/cloudfiles-upload,num_dependents_deps.dev:0 github.com/emanuelbsilva/connect-disable-304,num_dependents_deps.dev:0 github.com/emanuelbsilva/cypress-image-snapshot,num_dependents_deps.dev:0 +github.com/emanuelbuholzer/cite-key-files, github.com/emanuelcasco/azure-middleware,num_dependents_deps.dev:0 github.com/emanuelcasco/scenify,num_dependents_deps.dev:0 github.com/emanuelcepoi/manea,num_dependents_deps.dev:0 @@ -475123,6 +484451,7 @@ github.com/emanuelecasadio/body-parser-rawbody,num_dependents_deps.dev:0 github.com/emanuelecasadio/fixed-chunk-stream,num_dependents_deps.dev:0 github.com/emanuelecasadio/loopback-connector-rest-relaxed,num_dependents_deps.dev:0 github.com/emanuelefavero/console.log-alias, +github.com/emanuelegiona/ns3-compatibility-action, github.com/emanuelelongo/fetchetera,num_dependents_deps.dev:0 github.com/emanuelelongo/react-ssr-starter,num_dependents_deps.dev:0 github.com/emanuelelongo/react-ssr-starter-kit,num_dependents_deps.dev:0 @@ -475310,6 +484639,7 @@ github.com/embali/rjq,num_dependents_deps.dev:0 github.com/embanner/julpyter, github.com/embano1/ci-demo-app,num_dependents_deps.dev:0 github.com/embano1/govmomi,num_dependents_deps.dev:0 +github.com/embano1/wip, github.com/embaobao/Mars-packages,num_dependents_deps.dev:0 github.com/embaobao/baby-packages,num_dependents_deps.dev:0 github.com/embaobao/eat-packages,num_dependents_deps.dev:0 @@ -475364,6 +484694,10 @@ github.com/embear/vim-localvimrc,criticality_score:0.326170 github.com/embed-rs/stm32f7-discovery,num_dependents_deps.dev:0 github.com/embed-rs/svd_board,num_dependents_deps.dev:0 github.com/embed-rs/svd_codegen,num_dependents_deps.dev:0 +github.com/embedd-actions/nrf-connect-sdk-ci, +github.com/embedd-actions/nrf-connect-sdk-nrfutilbased-ci, +github.com/embedd-actions/nrf-connect-sdk-prebuild-ci, +github.com/embedded-community/get-runner-labels-action, github.com/embedded-community/pytest_gh_log_group, github.com/embedded-graphics/bdf,num_dependents_deps.dev:0 github.com/embedded-graphics/embedded-graphics,"criticality_score:0.416040,num_dependents_deps.dev:37" @@ -475381,6 +484715,7 @@ github.com/embeddedgo/display,num_dependents_deps.dev:0 github.com/embeddedgo/fs,num_dependents_deps.dev:0 github.com/embeddedgo/nrf5,num_dependents_deps.dev:0 github.com/embeddedgo/stm32,num_dependents_deps.dev:0 +github.com/embeddedinn/deploy_lambda, github.com/embeddedkafka/embedded-kafka,num_dependents_deps.dev:33 github.com/embeddedkafka/embedded-kafka-scalafix,num_dependents_deps.dev:0 github.com/embeddedkafka/embedded-kafka-schema-registry,num_dependents_deps.dev:0 @@ -475708,6 +485043,7 @@ github.com/emboiko/Socket_Singleton, github.com/emboiko/Ufd, github.com/embold-health/dbt-azuresynapse, github.com/embold/embold-maven-plugin,num_dependents_deps.dev:0 +github.com/embold/github-action-docker, github.com/embold/scanner-sync,num_dependents_deps.dev:0 github.com/embotech/ecos,criticality_score:0.391000 github.com/embotech/ecos-python,Google @@ -476097,6 +485433,7 @@ github.com/emeryberger/Heap-Layers,criticality_score:0.339390 github.com/emeryberger/Hoard,criticality_score:0.403860 github.com/emeryberger/scalene,criticality_score:0.441260 github.com/emeryc/iron_rose,num_dependents_deps.dev:0 +github.com/emesare/setup-binary-ninja, github.com/emesene/emesene,criticality_score:0.322590 github.com/emesik/cardano-python, github.com/emesik/revolut-python, @@ -476165,6 +485502,7 @@ github.com/emhayusa/portalksp, github.com/emhayusa/webinar, github.com/emi-hi/lotide,num_dependents_deps.dev:0 github.com/emi80/idxtools, +github.com/emibcn/badge-action, github.com/emibcn/binary-object,num_dependents_deps.dev:0 github.com/emibcn/github-badge-action,num_dependents_deps.dev:0 github.com/emibcn/pywisp, @@ -476319,6 +485657,7 @@ github.com/emilbayes/wat2wasm,num_dependents_deps.dev:0 github.com/emilbjorklund/django-template-shortcodes, github.com/emilbryggare/meteor-cordova-icon,num_dependents_deps.dev:0 github.com/emilbryggare/meteor-cordova-splash,num_dependents_deps.dev:0 +github.com/emilcardell/scw-s3-action, github.com/emilcieslar/chi-square-a-b-testing,num_dependents_deps.dev:0 github.com/emile2636/vue-grapheme-input,num_dependents_deps.dev:0 github.com/emile818/react-native-tapdaq, @@ -476349,10 +485688,12 @@ github.com/emilgoldsmith/create-custom-prop-types,num_dependents_deps.dev:0 github.com/emilgoldsmith/css-prop-types,num_dependents_deps.dev:0 github.com/emilgoldsmith/stylelint-custom-parser-loader,num_dependents_deps.dev:0 github.com/emilgoldsmith/stylelint-custom-processor-loader,num_dependents_deps.dev:48 +github.com/emilgoldsmith/wait-for-workflows-to-succeed, github.com/emilhaegglund/schavott, github.com/emilhakobian/go-backblaze,num_dependents_deps.dev:0 github.com/emilhaugberg/pwd-gen, github.com/emilhaugberg/random-password-generator,num_dependents_deps.dev:0 +github.com/emilhauk/update-eik-alias-action, github.com/emilhdiaz/serverless-iam-roles-per-function,num_dependents_deps.dev:0 github.com/emilhdiaz/serverless-plugin-aws-resource-names,num_dependents_deps.dev:0 github.com/emilhein/optifunc,num_dependents_deps.dev:0 @@ -476383,6 +485724,7 @@ github.com/emilio-martinez/is-datatype,num_dependents_deps.dev:0 github.com/emilio-martinez/tslint-no-redundant-jsdoc-annotations,num_dependents_deps.dev:0 github.com/emilio/precomputed-hash,num_dependents_deps.dev:825 github.com/emilio2601/scpy, +github.com/emilio2hd/pronto-annotate-action, github.com/emilio983/go-server,num_dependents_deps.dev:0 github.com/emilioSp/async-data-cache,num_dependents_deps.dev:0 github.com/emilioTe/express-nudist,num_dependents_deps.dev:0 @@ -476404,6 +485746,7 @@ github.com/emiliobondioli/one-scroll,num_dependents_deps.dev:0 github.com/emiliobool/node-red-contrib-twitch-chat,num_dependents_deps.dev:0 github.com/emiliobool/node-red-contrib-twitchjs,num_dependents_deps.dev:0 github.com/emiliocervantez/godnsmadeeasy,num_dependents_deps.dev:0 +github.com/emiliodallatorre/flutter-action, github.com/emiliodominguez/hangman-js,num_dependents_deps.dev:0 github.com/emiliodominguez/react-cli,num_dependents_deps.dev:0 github.com/emilioforrer/adonis-translatable,num_dependents_deps.dev:0 @@ -476419,6 +485762,8 @@ github.com/emilioicai/react-native-unified-push,num_dependents_deps.dev:0 github.com/emiliokyp/react-big-calendar, github.com/emiliomerella/mongodbs,num_dependents_deps.dev:0 github.com/emiliomoran/go-basic,num_dependents_deps.dev:0 +github.com/emiliopedrollo/auto-merge, +github.com/emiliopedrollo/create-pull-request, github.com/emilioplatzer/accounting-backend,num_dependents_deps.dev:0 github.com/emilioplatzer/accounting-machine,num_dependents_deps.dev:0 github.com/emilioplatzer/audit-copy,num_dependents_deps.dev:0 @@ -476441,6 +485786,7 @@ github.com/emiliorizzo/vue-d3-barchart,num_dependents_deps.dev:0 github.com/emiliorizzo/vue-d3-network,num_dependents_deps.dev:0 github.com/emiliorizzo/vue-dialog-drag,num_dependents_deps.dev:0 github.com/emiliosanchez/django-fixturemigration, +github.com/emilioschepis/wait-for-endpoint, github.com/emiliosel/sql-to-mongo,num_dependents_deps.dev:0 github.com/emiliosnic/icon-patterns,num_dependents_deps.dev:0 github.com/emiliowd/planetweight, @@ -476561,6 +485907,7 @@ github.com/emilynielson/watchmen-ping-mysql,num_dependents_deps.dev:0 github.com/emilypl2/BioSTEAMconnectors, github.com/emilyrose/hidstream, github.com/emilyselwood/theatrumorbis,num_dependents_deps.dev:0 +github.com/emilyseville7cfg-better-emacs/unit-test-runner, github.com/emilyst/video2gif,num_dependents_deps.dev:0 github.com/emilyyu518/lodown,num_dependents_deps.dev:0 github.com/emin/skiplist,num_dependents_deps.dev:0 @@ -476615,6 +485962,7 @@ github.com/emiraydin/react-native-datetime-picker,num_dependents_deps.dev:0 github.com/emirayka/parcom,num_dependents_deps.dev:0 github.com/emirayka/typescript-rollup-boilerplate,num_dependents_deps.dev:2 github.com/emircan-sahin/React-Native-Utilities,num_dependents_deps.dev:0 +github.com/emirdeliz/emirdeliz-chromedriver, github.com/emirdev/lather,num_dependents_deps.dev:0 github.com/emirdev/meteor-synced-cron,num_dependents_deps.dev:0 github.com/emirdev/node-exchange-autodiscover,num_dependents_deps.dev:0 @@ -476810,6 +486158,7 @@ github.com/emlynoregan/yccloudpickle, github.com/emm-ess/local-trust-chain,num_dependents_deps.dev:0 github.com/emm-ess/stylelint-config-outside-in-order,num_dependents_deps.dev:0 github.com/emm-ess/webpack-svg-sprite,num_dependents_deps.dev:0 +github.com/emm035/calver, github.com/emma-app/node-iap,num_dependents_deps.dev:0 github.com/emma-borhanian/schema_expectations,num_dependents_deps.dev:0 github.com/emma-k-alexandra/pywmata, @@ -476847,6 +486196,7 @@ github.com/emmanuelantony2000/valerie,num_dependents_deps.dev:0 github.com/emmanuelay/badger,num_dependents_deps.dev:0 github.com/emmanuelbeziat/vue-sequential-entrance,num_dependents_deps.dev:0 github.com/emmanuelbuah/mgdb-migrator,num_dependents_deps.dev:0 +github.com/emmanuelgautier/cloudinary-upload-action, github.com/emmanuelgautier/renovate-config,num_dependents_deps.dev:0 github.com/emmanuelgomez/nscc,num_dependents_deps.dev:0 github.com/emmanuelkant/simple-compose,num_dependents_deps.dev:0 @@ -476978,8 +486328,10 @@ github.com/emms007/node-red-contrib-deduplicate,num_dependents_deps.dev:0 github.com/emms007/node-red-contrib-deduplicate-adv, github.com/emms007/node-red-contrib-got-sequenced,num_dependents_deps.dev:0 github.com/emms007/node-red-contrib-merge-topic,num_dependents_deps.dev:0 +github.com/emmsdan-inc/heroku-env-update, github.com/emmsdan/network-address,num_dependents_deps.dev:0 github.com/emmsdan/uniis,num_dependents_deps.dev:0 +github.com/emmyoop/changie_bot, github.com/emn178/Chart.Crosshairs.js,num_dependents_deps.dev:0 github.com/emn178/Chart.PieceLabel.js,num_dependents_deps.dev:0 github.com/emn178/angular2-chartjs,num_dependents_deps.dev:0 @@ -477387,11 +486739,14 @@ github.com/emredv/SMS-Creator,num_dependents_deps.dev:0 github.com/emreeren/pmpos-core,num_dependents_deps.dev:0 github.com/emreeren/y-websockets-streaming-client,num_dependents_deps.dev:0 github.com/emreg00/pxea, +github.com/emregency/vercel-preview-alias, +github.com/emregunel/sfdx-package-version-updater, github.com/emrehan/jetman,num_dependents_deps.dev:0 github.com/emrejz/frontends,num_dependents_deps.dev:0 github.com/emrejz/search-helper,num_dependents_deps.dev:0 github.com/emrekara37/svelte-rate,num_dependents_deps.dev:0 github.com/emrekara37/svelte-rate-it, +github.com/emrekas/build-number, github.com/emrekeskinmac/Mysql5Hash,num_dependents_deps.dev:0 github.com/emrekilinc/grunt-custom-bump,num_dependents_deps.dev:0 github.com/emrekutlu/paperclip-compression,num_dependents_deps.dev:0 @@ -477430,6 +486785,7 @@ github.com/ems-project/admin-menu,num_dependents_deps.dev:0 github.com/ems-project/hashcash,num_dependents_deps.dev:0 github.com/ems-project/publisher,num_dependents_deps.dev:0 github.com/emsa16/chat-server,num_dependents_deps.dev:0 +github.com/emsameen/custom-gh-action, github.com/emsbn/hangul-typing,num_dependents_deps.dev:0 github.com/emsbn/html-webpack-remove-plugin,num_dependents_deps.dev:0 github.com/emschu/oerc,num_dependents_deps.dev:0 @@ -477483,6 +486839,7 @@ github.com/emukidid/swiss-gc,criticality_score:0.472150 github.com/emukungu/ugandan-districts,num_dependents_deps.dev:0 github.com/emukungu/ugandan-presidents,num_dependents_deps.dev:0 github.com/emulate-key/emulate-key-in-browser, +github.com/emulator-wtf/run-tests, github.com/emulbreh/bridson, github.com/emulbreh/eelale, github.com/emulbreh/pyffx, @@ -477506,11 +486863,19 @@ github.com/emustudio/edigen,num_dependents_deps.dev:0 github.com/emustudio/edigen-maven-plugin,num_dependents_deps.dev:0 github.com/emustudio/emuLib,num_dependents_deps.dev:0 github.com/emutex/wiring-x86, +github.com/emvakar/discord-notification-action, +github.com/emvaldes/configure-access, +github.com/emvaldes/generate-credentials, +github.com/emvaldes/manage-profiles, +github.com/emvaldes/monitor-loadbalancer, +github.com/emvaldes/system-requirements, +github.com/emvaldes/terraform-controller, github.com/emvc/chai-emvc-helpers,num_dependents_deps.dev:0 github.com/emvc/emvc, github.com/emvc/emvc-router,num_dependents_deps.dev:0 github.com/emvc/generator,num_dependents_deps.dev:0 github.com/emvcoder/source-server-stream,num_dependents_deps.dev:0 +github.com/emveepee/amlogic-s9xxx-armbian, github.com/emvenci/nativescript-plugins,num_dependents_deps.dev:0 github.com/emvi/api-js,num_dependents_deps.dev:0 github.com/emvi/oogway,num_dependents_deps.dev:0 @@ -477577,6 +486942,7 @@ github.com/enGMzizo/node-sql-mapper,num_dependents_deps.dev:0 github.com/enGMzizo/safe-dynamodb-table-copy,num_dependents_deps.dev:0 github.com/enRose/react-field-decorator,num_dependents_deps.dev:0 github.com/enStratus/mixcoatl, +github.com/enable-on/phpcs, github.com/enable3d/enable3d,"criticality_score:0.372280,num_dependents_deps.dev:1" github.com/enableasync/dubbo-go,num_dependents_deps.dev:0 github.com/enabledao/enable-contracts,num_dependents_deps.dev:0 @@ -477766,6 +487132,7 @@ github.com/encku/ble,num_dependents_deps.dev:0 github.com/encku/gpio,num_dependents_deps.dev:0 github.com/enclairfarron/flv.js.farron,num_dependents_deps.dev:0 github.com/enclarify/lab-assistant, +github.com/enclave-networks/setup-enclave, github.com/encloinc/Nitelite,num_dependents_deps.dev:0 github.com/encloinc/esf, github.com/encobrain/fybers,num_dependents_deps.dev:0 @@ -477848,8 +487215,12 @@ github.com/end-r/rx-ipc-electron-six, github.com/endaaman/spaseo,num_dependents_deps.dev:0 github.com/endaaman/spaseo.js, github.com/endafarrell/sanic-openapi3e, +github.com/endaft/action-dev-tagger, +github.com/endaft/action-prepend, +github.com/endaft/action-yamler, github.com/endaga/eno-python, github.com/endaga/openbts-python, +github.com/endail/pioasm-action, github.com/endalk200/document-scanner, github.com/endalk200/py_tools, github.com/endalk200/render_pdf, @@ -477871,6 +487242,7 @@ github.com/endb/tablevu,num_dependents_deps.dev:0 github.com/endbasic/endbasic,num_dependents_deps.dev:0 github.com/endblack/megah, github.com/endblack/megah-1.0.3,num_dependents_deps.dev:0 +github.com/endcrawl/github-action-slack-notify-curl, github.com/endday/all-search,num_dependents_deps.dev:0 github.com/ende93/gulp-css-format-oneline,num_dependents_deps.dev:0 github.com/ende93/gulp-tinypng-nokey,num_dependents_deps.dev:0 @@ -478004,12 +487376,14 @@ github.com/endoplasmic/hb-emitter,num_dependents_deps.dev:0 github.com/endoplasmic/hyperbutter-google-speech,num_dependents_deps.dev:0 github.com/endoplasmic/hyperbutter-microphone,num_dependents_deps.dev:0 github.com/endor-force/pytrafikverket, +github.com/endorama/asdf-parse-tool-versions, github.com/endorama/devid,num_dependents_deps.dev:0 github.com/endorama/generator-langular,num_dependents_deps.dev:0 github.com/endorama/register-grunt-tasks,num_dependents_deps.dev:0 github.com/endorama/two-factor-authenticator,num_dependents_deps.dev:0 github.com/endorfin/rk-annual-cycle,num_dependents_deps.dev:0 github.com/endorjs/endor,num_dependents_deps.dev:0 +github.com/endorlabs/github-action, github.com/endormi/comp-lead, github.com/endormi/eslint-config-endormi,num_dependents_deps.dev:0 github.com/endormi/gatsby-theme-chaleur,num_dependents_deps.dev:0 @@ -478034,12 +487408,14 @@ github.com/endps/f2c-rodrigofss,num_dependents_deps.dev:0 github.com/endquote/laundry,num_dependents_deps.dev:0 github.com/endqwerty/jsonjunit,num_dependents_deps.dev:0 github.com/endqwerty/vue-nightwatch-browserstack, +github.com/endra-sulaeman-dev/internal-priv-GitRepSync, github.com/endragor/aaudio-rs,num_dependents_deps.dev:0 github.com/endrain/cu-numbers, github.com/endrcn/json-array-converter, github.com/endrcn/json-converter,num_dependents_deps.dev:0 github.com/endrcn/process-tracker,num_dependents_deps.dev:0 github.com/endrcn/semi-sync,num_dependents_deps.dev:0 +github.com/endre-spotlab/fast-forward-js-action, github.com/endrebak/bamread, github.com/endrebak/biomartian, github.com/endrebak/bwread, @@ -478107,6 +487483,7 @@ github.com/endsley/wuML, github.com/endsound0211/es-ng-bs-table,num_dependents_deps.dev:0 github.com/endsound0211/es-ng6-bs4-table,num_dependents_deps.dev:0 github.com/endsound0211/es-ngx-auto-validate,num_dependents_deps.dev:0 +github.com/endtest-technologies/github-run-tests-action, github.com/endthestart/django-custom-auth, github.com/endthestart/django-senex-shop, github.com/endticket/cctalk,num_dependents_deps.dev:0 @@ -478262,6 +487639,8 @@ github.com/energychain/tplink_kasa_gsi,num_dependents_deps.dev:0 github.com/energychain/varta_engion_gsi_obis,num_dependents_deps.dev:0 github.com/energydrink9/functional-data-grid,num_dependents_deps.dev:0 github.com/energydrink9/react-popper-dropdown,num_dependents_deps.dev:0 +github.com/energyenables/keep-job-alive-action, +github.com/energyenables/pass-variable-between-jobs-action, github.com/energygreek/http-server,num_dependents_deps.dev:0 github.com/energyid/ediel, github.com/energyid/knmi-py, @@ -478382,6 +487761,8 @@ github.com/enferlazt/enferlazt-clock,num_dependents_deps.dev:0 github.com/enfipy/grpchat,num_dependents_deps.dev:0 github.com/enfipy/locker-rs,num_dependents_deps.dev:0 github.com/enfipy/serde-enum-derive,num_dependents_deps.dev:0 +github.com/enflo/curl-action, +github.com/enflo/jenkins-action, github.com/enflow-nl/bootstrap-modal-ios-polyfill,num_dependents_deps.dev:0 github.com/enflow-nl/elixir,num_dependents_deps.dev:0 github.com/enflow-nl/fotorama,num_dependents_deps.dev:0 @@ -478427,6 +487808,7 @@ github.com/engagetech/dropwizard-elasticsearch,num_dependents_deps.dev:0 github.com/engagor/concourse-nomad-resource,num_dependents_deps.dev:0 github.com/engagor/unified-components-react,num_dependents_deps.dev:0 github.com/engagor/unified-ui-tailwind,num_dependents_deps.dev:0 +github.com/engahmeds3ed/create-json-url, github.com/engajerest/auth,num_dependents_deps.dev:0 github.com/engajerest/sparkle,num_dependents_deps.dev:0 github.com/engapa/modeldb-basic, @@ -478494,7 +487876,9 @@ github.com/engineerapart/ts-universal-inject,num_dependents_deps.dev:0 github.com/engineerbetter/control-tower,num_dependents_deps.dev:0 github.com/engineerbetter/ironbird,num_dependents_deps.dev:0 github.com/engineerbetter/stopover,num_dependents_deps.dev:0 +github.com/engineerd/configurator, github.com/engineerd/in-toto-container,num_dependents_deps.dev:0 +github.com/engineerd/setup-kind, github.com/engineerd/wasm-to-oci,num_dependents_deps.dev:0 github.com/engineerddp/iniformater,num_dependents_deps.dev:0 github.com/engineering-bjs/dnsmeapi, @@ -478605,6 +487989,8 @@ github.com/enhancedjs/css-in-template-string-loader,num_dependents_deps.dev:0 github.com/enhancedjs/typescript-css-plugin,num_dependents_deps.dev:0 github.com/enhancedjs/typescript-html-plugin, github.com/enhancedjs/vue-template-in-string-loader,num_dependents_deps.dev:0 +github.com/enhancedocs/enhancedocs-github-action, +github.com/enhancedocs/setup-enhancedocs, github.com/enhancedsociety/solsa,num_dependents_deps.dev:0 github.com/enhancedtwitch/twitch-fetcher,num_dependents_deps.dev:0 github.com/enhancv/braintree-as-promised,num_dependents_deps.dev:0 @@ -478687,6 +488073,7 @@ github.com/eniolopes/kinesis-consumer,num_dependents_deps.dev:0 github.com/enioluwa23/playlist-importer,num_dependents_deps.dev:0 github.com/enioluwa23/playlist-importer-lite,num_dependents_deps.dev:0 github.com/enioluwa23/wordplay, +github.com/eniosultan/test, github.com/enipx/preloadar, github.com/enisbt/django-tckn-field, github.com/enisdenjo/graphql-sse,num_dependents_deps.dev:0 @@ -478747,6 +488134,7 @@ github.com/enjoy-digital/litex,criticality_score:0.617860 github.com/enjoy-network-tech/taro,num_dependents_deps.dev:0 github.com/enjoy/active-bookshelf,num_dependents_deps.dev:0 github.com/enjoy2000/django-counter-cache-field, +github.com/enjoy2000/s3-static-site-deploy, github.com/enjoyLife432/testNpm,num_dependents_deps.dev:0 github.com/enjoyablee/bloxlink,num_dependents_deps.dev:0 github.com/enjoycoding/vite-plugin-mock-server,num_dependents_deps.dev:0 @@ -478916,6 +488304,7 @@ github.com/enniel/adonis-mail-notification-channel,num_dependents_deps.dev:0 github.com/enniel/adonis-notifications,num_dependents_deps.dev:0 github.com/enniel/adonis-phone-validator,num_dependents_deps.dev:0 github.com/enniel/adonis-webhook-notification-channel,num_dependents_deps.dev:0 +github.com/enniel/bundletool-runner, github.com/enniel/ember-roboto-fontface,num_dependents_deps.dev:0 github.com/enniel/graphql-geojson-scalar-types,num_dependents_deps.dev:0 github.com/enniel/graphql-phone-type,num_dependents_deps.dev:0 @@ -478940,6 +488329,8 @@ github.com/ennube/runtime,num_dependents_deps.dev:0 github.com/ennube/shell,num_dependents_deps.dev:0 github.com/ennube/starter,num_dependents_deps.dev:0 github.com/ennucore/eschool_py, +github.com/eno-conan/ga-label-issue-try, +github.com/eno-conan/ruff-checkresult-to-PR, github.com/eno-lang/enojs,num_dependents_deps.dev:0 github.com/eno-lang/enojs-exploaders,num_dependents_deps.dev:0 github.com/eno-lang/enolib,num_dependents_deps.dev:2 @@ -479137,6 +488528,7 @@ github.com/enrico204/tollbooth,num_dependents_deps.dev:0 github.com/enrico3498/generator-friendation, github.com/enrico5b1b4/telegram-bot,num_dependents_deps.dev:0 github.com/enrico724/godotenv,num_dependents_deps.dev:0 +github.com/enricoGiga/next-semver, github.com/enricoaleandri/merge-package-json,num_dependents_deps.dev:0 github.com/enricoaleandri/text-to-mp3,num_dependents_deps.dev:0 github.com/enricoba/eems, @@ -479176,6 +488568,7 @@ github.com/enricofacca/rcis, github.com/enricofer/django-warp, github.com/enricolucia/gulp-angular-dep,num_dependents_deps.dev:0 github.com/enricolucia/gulp-framework-dep,num_dependents_deps.dev:0 +github.com/enricomarino/actions, github.com/enricomarino/is,num_dependents_deps.dev:19906 github.com/enricomarino/object, github.com/enricomonese/monete-cli,num_dependents_deps.dev:0 @@ -479201,6 +488594,7 @@ github.com/enridaga/gonzales,num_dependents_deps.dev:0 github.com/enright/imghex,num_dependents_deps.dev:0 github.com/enright/liftA,num_dependents_deps.dev:0 github.com/enright/lifta-syntax,num_dependents_deps.dev:0 +github.com/enriikke/gatsby-gh-pages-action, github.com/enrikerf/goapikerf,num_dependents_deps.dev:0 github.com/enriko-riba/pixi-scenegraph,num_dependents_deps.dev:0 github.com/enrimr/mermaid,num_dependents_deps.dev:0 @@ -479450,10 +488844,12 @@ github.com/entcore/feeder-aaf,num_dependents_deps.dev:0 github.com/entcore/generic-icons,num_dependents_deps.dev:0 github.com/entcore/gulp-ode-sass-imports,num_dependents_deps.dev:0 github.com/entcore/toolkit,num_dependents_deps.dev:0 +github.com/ente-io/action-electron-builder, github.com/ente-io/stacktrace,num_dependents_deps.dev:0 github.com/ente76/sd-sys,num_dependents_deps.dev:0 github.com/entegral/durp,num_dependents_deps.dev:0 github.com/enteil/Proempresa-node,num_dependents_deps.dev:0 +github.com/enteka-software/enalog-action, github.com/entelecheia/ekorpkit, github.com/entelect/java,num_dependents_deps.dev:0 github.com/entelgy-brasil/zucchini,num_dependents_deps.dev:0 @@ -479557,6 +488953,7 @@ github.com/enthrops/tainbox,num_dependents_deps.dev:1 github.com/enthudrives/BlameMe,num_dependents_deps.dev:0 github.com/enthus1ast/smex, github.com/entigolabs/entigo-k8s-gitops,num_dependents_deps.dev:0 +github.com/entimaniac/read-pom-version-action, github.com/entipic/atonic,num_dependents_deps.dev:68 github.com/entipic/data,num_dependents_deps.dev:0 github.com/entipic/domain,num_dependents_deps.dev:0 @@ -479743,6 +489140,8 @@ github.com/entropyx/epy-styles,num_dependents_deps.dev:0 github.com/entropyx/sass-boilerplate,num_dependents_deps.dev:2 github.com/entrostat/entro-ci,num_dependents_deps.dev:0 github.com/entrostat/gcloud-utils, +github.com/entrostat/git-auto-merger-action, +github.com/entrostat/git-secret-action, github.com/entrostat/github-stars-to-csv,num_dependents_deps.dev:0 github.com/entrostat/promax,num_dependents_deps.dev:0 github.com/entrostat/terminal-csv-splitter,num_dependents_deps.dev:0 @@ -479819,6 +489218,8 @@ github.com/enuchi/SplitStringByCharacterGroups,num_dependents_deps.dev:0 github.com/enuchi/gas-client,num_dependents_deps.dev:0 github.com/enuchi/gas-types-detailed, github.com/enudler/kafka-consumer-manager,num_dependents_deps.dev:0 +github.com/enuelx/action-env-from-an-aws-ssm-list, +github.com/enuelx/env-from-an-aws-ssm-list, github.com/enuggetry/blast-ncbi-tools,num_dependents_deps.dev:0 github.com/enum-all/gender,num_dependents_deps.dev:0 github.com/enumapi/enum-api-jackson,num_dependents_deps.dev:0 @@ -479845,6 +489246,7 @@ github.com/env0/env0-client-integrations,num_dependents_deps.dev:0 github.com/env0/middy, github.com/env0/terraform-provider-env0,num_dependents_deps.dev:0 github.com/env0/terratag,"criticality_score:0.319740,num_dependents_deps.dev:0" +github.com/env0/terratag-action, github.com/env0/ts-transform-json-schema,num_dependents_deps.dev:0 github.com/env107/milk-res-jsapi,num_dependents_deps.dev:0 github.com/env107/windapi-jssdk,num_dependents_deps.dev:0 @@ -480008,6 +489410,7 @@ github.com/enwemasor1995/shadowwizard,num_dependents_deps.dev:0 github.com/enxebre/cluster-api,num_dependents_deps.dev:0 github.com/enxebre/cluster-api-provider-aws,num_dependents_deps.dev:0 github.com/enxi/fast-cache-cdd,num_dependents_deps.dev:0 +github.com/enxservices/cloudflare-purge-action, github.com/enxservices/mundipagg,num_dependents_deps.dev:0 github.com/enxtur/node-elastic-query-builder,num_dependents_deps.dev:0 github.com/enyahs/sass-array,num_dependents_deps.dev:0 @@ -480015,6 +489418,7 @@ github.com/enyalabs/elliptic-expo,num_dependents_deps.dev:2 github.com/enyata/innovation-sandbox-node,num_dependents_deps.dev:0 github.com/enyata/innovation-sandbox-python, github.com/enyaxu/markdown-it-anchor,num_dependents_deps.dev:0 +github.com/enygma/update-team-avatars, github.com/enygmator/To-Do-PoC, github.com/enyingtan/cobblesapi,num_dependents_deps.dev:0 github.com/enykeev/serverless-plugin-tracer,num_dependents_deps.dev:0 @@ -480268,6 +489672,7 @@ github.com/eonu/ipcrypt,num_dependents_deps.dev:0 github.com/eonu/limeta,num_dependents_deps.dev:0 github.com/eonu/react-rails-api,num_dependents_deps.dev:0 github.com/eonurk/sinkaf, +github.com/eonx-com/actions-opsgenie, github.com/eonyxio/react-native-multitap,num_dependents_deps.dev:0 github.com/eonyxio/react-native-pagination-dots,num_dependents_deps.dev:0 github.com/eoovi/eoovi-node-sdk,num_dependents_deps.dev:0 @@ -481082,6 +490487,7 @@ github.com/eproxus/meck,criticality_score:0.491980 github.com/eproxus/opsworks,num_dependents_deps.dev:0 github.com/eprst/murmur3,num_dependents_deps.dev:0 github.com/epruesse/ymp, +github.com/eps1lon/actions-label-merge-conflict, github.com/eps1lon/dom-accessibility-api,"Google,num_dependents_deps.dev:14014" github.com/eps1lon/enzyme,num_dependents_deps.dev:0 github.com/eps1lon/esquery-cli,num_dependents_deps.dev:0 @@ -481155,6 +490561,7 @@ github.com/epsitec-sa/redux-nabu,num_dependents_deps.dev:0 github.com/epsitec-sa/statedb,num_dependents_deps.dev:40 github.com/epsitec-sa/webview,num_dependents_deps.dev:0 github.com/epsitec/electrum-ws-client,num_dependents_deps.dev:0 +github.com/epstechtheatre/Jekyll-Tester, github.com/epswartz/discordeventbot,num_dependents_deps.dev:0 github.com/epswartz/t-SNE, github.com/epsxy/gommitizen,num_dependents_deps.dev:0 @@ -481277,6 +490684,9 @@ github.com/equim-chan/leb128,num_dependents_deps.dev:0 github.com/equim-chan/sha3sum,num_dependents_deps.dev:0 github.com/equim-chan/util,num_dependents_deps.dev:1 github.com/equim-chan/vanity-monero,num_dependents_deps.dev:0 +github.com/equinix-labs/metal-device-action, +github.com/equinix-labs/metal-project-action, +github.com/equinix-labs/metal-sweeper-action, github.com/equinix-labs/otel-cli,num_dependents_deps.dev:0 github.com/equinix-labs/otel-init-go,num_dependents_deps.dev:0 github.com/equinix-metal/virtlet,num_dependents_deps.dev:0 @@ -481387,6 +490797,7 @@ github.com/equinor/zgy2sgz, github.com/equinor/zgyio, github.com/equinox-io/extendplate,num_dependents_deps.dev:0 github.com/equinox-io/integrity,num_dependents_deps.dev:0 +github.com/equinox-io/setup-release-tool, github.com/equinox-sun/goworks,num_dependents_deps.dev:0 github.com/equinoxfitness/HAMB, github.com/equinoxfitness/datacoco-batch, @@ -481421,8 +490832,10 @@ github.com/equippedcoding/appfactoryjs, github.com/equirio/percept, github.com/equiroz01/node-salesforce-hnl,num_dependents_deps.dev:0 github.com/equisde/go-python,num_dependents_deps.dev:0 +github.com/equisoft-devops/terraform-modules-lister, github.com/equisoide/monguitodb,num_dependents_deps.dev:0 github.com/equitania/odoo-fast-report-mapper, +github.com/equitybee/team-label-action, github.com/equitymultiple/omcms-ruby-client,num_dependents_deps.dev:0 github.com/equitymultiple/rs4,num_dependents_deps.dev:0 github.com/equitysim/trkd-client,num_dependents_deps.dev:0 @@ -481451,11 +490864,13 @@ github.com/er1c-zh/sql-to-gorm,num_dependents_deps.dev:0 github.com/er1cAk/chronomouse,num_dependents_deps.dev:0 github.com/er1iang/django-hfut-auth, github.com/er28-0652/securestring, +github.com/er28-0652/setup-ghidra, github.com/er345ssdlh/so-easily,num_dependents_deps.dev:0 github.com/er432/Ranger, github.com/er432/TASSELpy, github.com/er432/genomfart, github.com/er432/python-quantgen, +github.com/er5bus/alembic-python-action, github.com/er888kh/linux-cli-community, github.com/er888kh/ntc-docs-email-sender,num_dependents_deps.dev:0 github.com/erYunusTR/react-progress-line-bar,num_dependents_deps.dev:0 @@ -481622,6 +491037,7 @@ github.com/erchu/bean-cp,num_dependents_deps.dev:0 github.com/ercintorun/simplefetch, github.com/ercius/openNCEM, github.com/ercling/google-ads-go,num_dependents_deps.dev:0 +github.com/erclu/check-crlf, github.com/ercole-io/ercole,num_dependents_deps.dev:0 github.com/ercole-io/ercole-agent,num_dependents_deps.dev:0 github.com/ercole-io/ercole-agent-rhel5,num_dependents_deps.dev:0 @@ -481715,6 +491131,7 @@ github.com/erdkse/gatekeeper-client-sdk,num_dependents_deps.dev:0 github.com/erdkse/ngx-phone-number-input,num_dependents_deps.dev:0 github.com/erdkse/ngx-sdp,num_dependents_deps.dev:0 github.com/erdkse/puppeteer-page-proxy,num_dependents_deps.dev:0 +github.com/erdkse/upload-assets, github.com/erdlet/jakartaee8-mvc-archetype,num_dependents_deps.dev:0 github.com/erdlet/jcrud,num_dependents_deps.dev:0 github.com/erdnaxe/Arc_en_Cercles,num_dependents_deps.dev:0 @@ -481723,6 +491140,8 @@ github.com/erdnaxe/django-crans-theme, github.com/erdnaxe/galene-stream, github.com/erdnaxe/miniflux-luma,num_dependents_deps.dev:0 github.com/erdnaxe/web2pdf,num_dependents_deps.dev:0 +github.com/erdnaxela02/repository-updater, +github.com/erdnaxela02/test_repository-updater, github.com/erdnaxeli/escarpolette, github.com/erdo/android-fore,num_dependents_deps.dev:62 github.com/erdo/persista,num_dependents_deps.dev:0 @@ -481788,6 +491207,7 @@ github.com/eregnier/pm2systray,num_dependents_deps.dev:0 github.com/eregnier/semver-git-hook, github.com/eregnier/vue2-chunk,num_dependents_deps.dev:0 github.com/eregnier/vue2-gmap-custom-marker,num_dependents_deps.dev:0 +github.com/eregon/publish-release, github.com/erehmi/CountDownTask,num_dependents_deps.dev:0 github.com/erei/avakian,num_dependents_deps.dev:0 github.com/erei/discord,num_dependents_deps.dev:0 @@ -481845,6 +491265,7 @@ github.com/erettozi/thorden,num_dependents_deps.dev:0 github.com/ereuse/desktop-app-py, github.com/ereuse/rate, github.com/ereuse/workbench, +github.com/erevear/snowsql-formatter-action, github.com/ereyes01/gorethink,num_dependents_deps.dev:0 github.com/ereyes01/socketio,num_dependents_deps.dev:0 github.com/ereyes01/victor,num_dependents_deps.dev:0 @@ -481889,6 +491310,7 @@ github.com/erfanw/go-web-hello-world,num_dependents_deps.dev:0 github.com/erfederuiz/thorreznou, github.com/erfg12/memory.dll,criticality_score:0.298590 github.com/erfun/newsysinfo,num_dependents_deps.dev:0 +github.com/erg-lang/setup-erg, github.com/erg0dic/fuzzy-scheduler,num_dependents_deps.dev:0 github.com/erg0dic/whois-stats,num_dependents_deps.dev:0 github.com/ergatejs/create-ergate,num_dependents_deps.dev:0 @@ -481896,6 +491318,8 @@ github.com/ergatejs/ergate,num_dependents_deps.dev:0 github.com/ergatta/pqinterval,num_dependents_deps.dev:0 github.com/ergaurav21/demo_concurrent_programming_go,num_dependents_deps.dev:0 github.com/ergebnis/composer-normalize,criticality_score:0.578080 +github.com/ergebnis/composer-normalize-action, +github.com/ergebnis/composer-root-version-action, github.com/ergenekonyigit/ergenekon,num_dependents_deps.dev:0 github.com/ergenekonyigit/nemene,num_dependents_deps.dev:0 github.com/ergenekonyigit/useFetch,num_dependents_deps.dev:0 @@ -481950,6 +491374,7 @@ github.com/ergoserv/auxiliary_rails,num_dependents_deps.dev:0 github.com/ergosimulation/mpslib, github.com/ergovia-devs/foggle-redux,num_dependents_deps.dev:0 github.com/ergowerk/gulp-filetree-json-easy,num_dependents_deps.dev:0 +github.com/ergrassa/vault-secrets-to-files, github.com/ergs/fixie, github.com/ergs/fixie-batch, github.com/ergs/fixie-creds, @@ -482068,11 +491493,14 @@ github.com/eric183/mini-program-contentful,num_dependents_deps.dev:0 github.com/eric183/ricout,num_dependents_deps.dev:0 github.com/eric1980/node-red-contrib-basic-thermostat,num_dependents_deps.dev:0 github.com/eric1980/teslatoken, +github.com/eric2788/maven-jar-publish, +github.com/eric2788/pyinstaller-build, github.com/eric38383/react-progress-circle,num_dependents_deps.dev:0 github.com/eric7237cire/rgb_delivery,num_dependents_deps.dev:0 github.com/eric7578/ezcmd,num_dependents_deps.dev:0 github.com/eric7578/r3,num_dependents_deps.dev:0 github.com/ericArbour/git-vis, +github.com/ericLemanissier/barbarian-upload, github.com/ericN93/module,num_dependents_deps.dev:0 github.com/ericOrang/ng-date-picker, github.com/ericadamski/commit-with,num_dependents_deps.dev:0 @@ -482207,9 +491635,12 @@ github.com/ericclemmons/terse-js,num_dependents_deps.dev:0 github.com/ericclemmons/unique-selector,num_dependents_deps.dev:26 github.com/ericclemmons/webpack-npm-install-loader,num_dependents_deps.dev:0 github.com/ericconstantinides/create-menu,num_dependents_deps.dev:0 +github.com/ericcornelissen/git-tag-annotation-action, github.com/ericcornelissen/gulp-gitstage,num_dependents_deps.dev:0 github.com/ericcornelissen/jekyll-fontello,num_dependents_deps.dev:0 github.com/ericcornelissen/shescape,num_dependents_deps.dev:0 +github.com/ericcornelissen/svgo-action, +github.com/ericcornelissen/tool-versions-update-action, github.com/ericcornelissen/webmangler, github.com/ericcornelissen/wordrow,num_dependents_deps.dev:0 github.com/ericcrosson/coinmarketcap-api,num_dependents_deps.dev:0 @@ -482405,6 +491836,7 @@ github.com/eriche39/simple-orchestrator,num_dependents_deps.dev:2 github.com/erichelgeson/winston-splunk,num_dependents_deps.dev:3 github.com/ericherdzik/hogan-brisket,num_dependents_deps.dev:0 github.com/erichiggins/gaek, +github.com/erichiller/gh-action-plot, github.com/erichlof/THREE.js-PathTracing-Renderer,criticality_score:0.304810 github.com/ericho/storyboard-client,num_dependents_deps.dev:0 github.com/erichocean/django-sproutcore, @@ -482562,6 +491994,7 @@ github.com/ericksimonsklusner/wdio-html-advance-reporter, github.com/ericksimonsklusner/wdio-html-reporter-advanced,num_dependents_deps.dev:0 github.com/erickskrauch/postcss-logical-properties-polyfill,num_dependents_deps.dev:0 github.com/ericksond/hubot-azure,num_dependents_deps.dev:0 +github.com/ericksonlbs/jaguarportal-submit, github.com/ericksprengel/generator-rn-caos, github.com/ericksprengel/loggrep,num_dependents_deps.dev:0 github.com/erickstryck/process-calls,num_dependents_deps.dev:0 @@ -482877,6 +492310,10 @@ github.com/ericsienk/savvy-cache,num_dependents_deps.dev:0 github.com/ericsienk/savvy-interval,num_dependents_deps.dev:0 github.com/ericsienk/savvy-interview,num_dependents_deps.dev:0 github.com/ericsink/SQLitePCL.raw,criticality_score:0.502110 +github.com/ericsizemore/librariesio, +github.com/ericsizemore/mimey, +github.com/ericsizemore/simple_tpl, +github.com/ericsizemore/utility, github.com/ericsoco/base-charts-poc,num_dependents_deps.dev:0 github.com/ericsoco/d3-force-attract,num_dependents_deps.dev:0 github.com/ericsoco/d3-force-cluster,num_dependents_deps.dev:0 @@ -482914,6 +492351,8 @@ github.com/erictherobot/react-web-midi,num_dependents_deps.dev:0 github.com/erictherobot/svelteit,num_dependents_deps.dev:0 github.com/erictj/node-clucene,num_dependents_deps.dev:0 github.com/erictj/node-huntergatherer, +github.com/erictleung/find-file-whitespace, +github.com/erictleung/find-folder-whitespace, github.com/erictmc/url_shortener,num_dependents_deps.dev:0 github.com/erictompkins/page-shots, github.com/erictooth/pika-plugin-legacy-browser,num_dependents_deps.dev:0 @@ -483096,6 +492535,7 @@ github.com/erik4github/nasa-insight-api,num_dependents_deps.dev:0 github.com/erikKeresztes/gaugan.py, github.com/erikaa81/lets-go-wwg,num_dependents_deps.dev:0 github.com/erikagtierrez/multiple-media-picker,num_dependents_deps.dev:0 +github.com/erikaheidi/dynacover-actions, github.com/erikandrewzimmerman/Classic.js,num_dependents_deps.dev:0 github.com/erikap/ember-browser-update,num_dependents_deps.dev:0 github.com/erikap/torii-azure-ad2-provider,num_dependents_deps.dev:0 @@ -483289,6 +492729,7 @@ github.com/eriknw/afar, github.com/eriknw/dask-grblas, github.com/eriknw/innerscope, github.com/eriknw/innerself, +github.com/eriknyk/android-get-app-version-action, github.com/eriknyk/rforms,num_dependents_deps.dev:0 github.com/eriknyquist/GithubPoacher, github.com/eriknyquist/bfi, @@ -483549,8 +492990,10 @@ github.com/erikwlarsen/csv-to-jsonl,num_dependents_deps.dev:0 github.com/erikwoo/pug-react-compiler,num_dependents_deps.dev:0 github.com/erikxiv/gulp-docker-dest,num_dependents_deps.dev:0 github.com/erikxiv/restock,num_dependents_deps.dev:0 +github.com/erikxiv/techdocs-action, github.com/erikxu/golang-ci,num_dependents_deps.dev:0 github.com/eriky/ESClient, +github.com/erikyo/tsdoc-action, github.com/erikyuzwa/erikyuzwa-card,num_dependents_deps.dev:0 github.com/erikyuzwa/node-air-sdk,num_dependents_deps.dev:0 github.com/erikyuzwa/webpack-as3-plugin,num_dependents_deps.dev:0 @@ -483687,6 +493130,7 @@ github.com/erkanzileli/hello-app,num_dependents_deps.dev:0 github.com/erkanzileli/nrfiber,num_dependents_deps.dev:0 github.com/erkanzileli/rate-limiter,num_dependents_deps.dev:0 github.com/erkarp/manipulators, +github.com/erkenes/monorepo-split-action, github.com/erkexzcx/disconnectme-pihole,num_dependents_deps.dev:0 github.com/erkexzcx/stalkerhek,num_dependents_deps.dev:0 github.com/erkez/amqp-rpc-client,num_dependents_deps.dev:0 @@ -483748,6 +493192,7 @@ github.com/erlang/rebar3,criticality_score:0.675950 github.com/erlangMS/oauth2-client,num_dependents_deps.dev:0 github.com/erlanggawulung/web-scraper,num_dependents_deps.dev:0 github.com/erlangms/sdk,num_dependents_deps.dev:0 +github.com/erlangpack/github-action, github.com/erlaplante/pan-to-kql,num_dependents_deps.dev:0 github.com/erlapso/node-coindesk,num_dependents_deps.dev:0 github.com/erlapso/openai-api-node,num_dependents_deps.dev:0 @@ -483755,12 +493200,14 @@ github.com/erlaveri/meditor,num_dependents_deps.dev:0 github.com/erlaveri/react-mobx-form,num_dependents_deps.dev:0 github.com/erlaveri/ubox,num_dependents_deps.dev:0 github.com/erlcloud/erlcloud,criticality_score:0.526090 +github.com/erlef/setup-beam, github.com/erlend-axelsson/navReactEmpower,num_dependents_deps.dev:0 github.com/erlendjones/showctrl,num_dependents_deps.dev:0 github.com/erlepereira/x11-rs,num_dependents_deps.dev:1147 github.com/erlerobot/HRIM, github.com/erlete/module_inspector, github.com/erlete/perftesting, +github.com/erlete/version-updater, github.com/erlgo/nodebb-plugin-emailer-ssl-smtp,num_dependents_deps.dev:0 github.com/erlgo/nodebb-plugin-google-font-pass,num_dependents_deps.dev:0 github.com/erlgo/nodebb-plugin-portal-header,num_dependents_deps.dev:0 @@ -483824,6 +493271,7 @@ github.com/ermenkov/binarystar, github.com/ermeo/sdk-python, github.com/ermesonsampaio/cra-template-react-router-dom,num_dependents_deps.dev:0 github.com/ermetic/access-undenied-aws, +github.com/ermetic/actions, github.com/ermetic/aws-access-undenied, github.com/ermig1979/Simd,criticality_score:0.458860 github.com/ermin-muratovic/node-slic3r,num_dependents_deps.dev:0 @@ -484055,6 +493503,7 @@ github.com/erpcya/gRPC-Dictionary-Client,num_dependents_deps.dev:0 github.com/erpcya/gRPC-Enrollment-Client,num_dependents_deps.dev:0 github.com/erpcya/gRPC-POS-Client,num_dependents_deps.dev:0 github.com/erpcya/gRPC-Web-Store,num_dependents_deps.dev:0 +github.com/erpheus/private-submodule-checkout, github.com/erply/api-go-wrapper,num_dependents_deps.dev:0 github.com/erply/email,num_dependents_deps.dev:0 github.com/erply/pim-go-wrapper,num_dependents_deps.dev:0 @@ -484102,6 +493551,7 @@ github.com/errata-ai/fetch,num_dependents_deps.dev:0 github.com/errata-ai/markdata, github.com/errata-ai/nlpapi, github.com/errata-ai/vale,"criticality_score:0.557620,num_dependents_deps.dev:6" +github.com/errata-ai/vale-action, github.com/errbit/errbit,criticality_score:0.579280 github.com/errbotio/errbot,criticality_score:0.613890 github.com/errcw/gaussian,num_dependents_deps.dev:77 @@ -484212,6 +493662,7 @@ github.com/ersinfotech/slush-express,num_dependents_deps.dev:0 github.com/ersinfotech/slush-graphql,num_dependents_deps.dev:0 github.com/ersinfotech/truncate-dom,num_dependents_deps.dev:0 github.com/ersione/spring-boot-admin-jandi-notifier,num_dependents_deps.dev:0 +github.com/erskaggs/slack-pr-notify, github.com/ersmo/rserving,num_dependents_deps.dev:0 github.com/ersmoreira/ersmoreira_dummy_hello_world, github.com/ersoma/koa-bullmq-admin-middleware, @@ -484353,6 +493804,7 @@ github.com/ervipin/nodebook,num_dependents_deps.dev:0 github.com/ervirendersingh/newman-reporter-allure,num_dependents_deps.dev:0 github.com/ervitis/exchange-rates-operator,num_dependents_deps.dev:0 github.com/ervitis/exchangerateapp,num_dependents_deps.dev:0 +github.com/ervitis/github-profile-summary-cards, github.com/ervitis/logme,num_dependents_deps.dev:0 github.com/ervitis/twipy, github.com/ervwalter/spa-analytics-wrapper,num_dependents_deps.dev:0 @@ -484486,6 +493938,10 @@ github.com/erzu/oceanify,num_dependents_deps.dev:0 github.com/erzu/porter,num_dependents_deps.dev:0 github.com/erzu/yen,num_dependents_deps.dev:0 github.com/erzu/yen-support,num_dependents_deps.dev:0 +github.com/erzz/codeclimate-standalone, +github.com/erzz/commit-plantuml-action, +github.com/erzz/dockle-action, +github.com/erzz/wait-for-deploy, github.com/es-analysis/plato,num_dependents_deps.dev:62 github.com/es-ba/sistema-indicadores,num_dependents_deps.dev:0 github.com/es-code/gql,num_dependents_deps.dev:0 @@ -484558,15 +494014,68 @@ github.com/es-shims/String.raw, github.com/es-shims/Symbol.prototype.description,num_dependents_deps.dev:3563 github.com/es-shims/api,num_dependents_deps.dev:0 github.com/es-shims/array-includes,num_dependents_deps.dev:66252 +github.com/es-shims/array.prototype.concat, +github.com/es-shims/array.prototype.group, +github.com/es-shims/array.prototype.groupby, +github.com/es-shims/array.prototype.groupbytomap, +github.com/es-shims/array.prototype.grouptomap, +github.com/es-shims/array.prototype.join, +github.com/es-shims/array.prototype.push, +github.com/es-shims/array.prototype.slice, +github.com/es-shims/array.prototype.splice, +github.com/es-shims/array.prototype.toreversed, +github.com/es-shims/array.prototype.tosorted, +github.com/es-shims/array.prototype.tospliced, +github.com/es-shims/array.prototype.unshift, +github.com/es-shims/array.prototype.with, +github.com/es-shims/arraybuffer.prototype.detached, +github.com/es-shims/arraybuffer.prototype.slice, +github.com/es-shims/arraybuffer.prototype.transfer, +github.com/es-shims/arraybuffer.prototype.transfertofixedlength, +github.com/es-shims/date, +github.com/es-shims/disposablestack, +github.com/es-shims/error-cause, +github.com/es-shims/es-constants, github.com/es-shims/es-create-array-iterator, +github.com/es-shims/es-map, +github.com/es-shims/es-set-tostringtag, +github.com/es-shims/es-string-html-methods, github.com/es-shims/es5-shim,"criticality_score:0.499570,num_dependents_deps.dev:5108" github.com/es-shims/es7-shim,num_dependents_deps.dev:90 github.com/es-shims/is-nan,num_dependents_deps.dev:10534 +github.com/es-shims/iterator-helpers, github.com/es-shims/map-tojson, +github.com/es-shims/map.groupby, +github.com/es-shims/math.f16round, +github.com/es-shims/math.imul, +github.com/es-shims/math.log10, +github.com/es-shims/number.isnan, +github.com/es-shims/number.prototype.toexponential, github.com/es-shims/object-is,num_dependents_deps.dev:113358 +github.com/es-shims/object.defineproperties, github.com/es-shims/object.getownpropertydescriptors,num_dependents_deps.dev:86248 +github.com/es-shims/object.groupby, +github.com/es-shims/parseint, +github.com/es-shims/promise.withresolvers, github.com/es-shims/regexp.escape, +github.com/es-shims/set, github.com/es-shims/set-tojson, +github.com/es-shims/set.prototype.difference, +github.com/es-shims/set.prototype.intersection, +github.com/es-shims/set.prototype.isdisjointfrom, +github.com/es-shims/set.prototype.issubsetof, +github.com/es-shims/set.prototype.issupersetof, +github.com/es-shims/set.prototype.symmetricdifference, +github.com/es-shims/set.prototype.union, +github.com/es-shims/string, +github.com/es-shims/string.prototype.iswellformed, +github.com/es-shims/string.prototype.lastindexof, +github.com/es-shims/string.prototype.substr, +github.com/es-shims/string.prototype.towellformed, +github.com/es-shims/suppressederror, +github.com/es-shims/typedarray, +github.com/es-shims/typedarray.prototype.slice, +github.com/es-shims/well-known-symbols, github.com/es-shims/which-builtin-type,num_dependents_deps.dev:0 github.com/es-tools/rcm-tools,num_dependents_deps.dev:0 github.com/es-tools/ts-tools,num_dependents_deps.dev:0 @@ -484632,6 +494141,8 @@ github.com/esamarathon/website,num_dependents_deps.dev:0 github.com/esamattis/underscore.string,criticality_score:0.392440 github.com/esambongo/goarea,num_dependents_deps.dev:0 github.com/esamdal/wasm,num_dependents_deps.dev:0 +github.com/esaminu/upload-directory-action, +github.com/esaminu/upload-file-action, github.com/esammer/go-tasks,num_dependents_deps.dev:0 github.com/esammer/mockhttp,num_dependents_deps.dev:0 github.com/esamson/Flickr4Java,num_dependents_deps.dev:0 @@ -484859,6 +494370,7 @@ github.com/escaya/esbeautify,num_dependents_deps.dev:0 github.com/escaya/escaya,num_dependents_deps.dev:88 github.com/escaya/escaya-codegen,num_dependents_deps.dev:0 github.com/escaya/escaya-fuzzer,num_dependents_deps.dev:0 +github.com/escemi-tech/actions-node, github.com/escemi-tech/ts-dev-tools,num_dependents_deps.dev:0 github.com/esceptico/perceiver-io, github.com/escer/django-collectionfield, @@ -484879,6 +494391,7 @@ github.com/eschava/node-red-contrib-toggle,num_dependents_deps.dev:0 github.com/eschava/node-red-contrib-xiaomi-ble,num_dependents_deps.dev:0 github.com/escherba/python-cityhash, github.com/escherba/python-metrohash, +github.com/eschercloudai/baski-action, github.com/escherina/madmaxfuryroad-names,num_dependents_deps.dev:0 github.com/escherpad/MongooseModelBuilder,num_dependents_deps.dev:0 github.com/escherpad/luna, @@ -484966,6 +494479,8 @@ github.com/eseifert/gral,num_dependents_deps.dev:10 github.com/eseifert/madam, github.com/eseifert/vectorgraphics2d,num_dependents_deps.dev:522 github.com/esel-fliegen/esel3d, +github.com/esemeniuc/container-template1, +github.com/esemi/action-allure-report, github.com/esemi/github-activity-visualiser, github.com/esempla/validator,num_dependents_deps.dev:0 github.com/esendex/esendex-java-sdk,num_dependents_deps.dev:2 @@ -485271,6 +494786,7 @@ github.com/eslib/ramda,num_dependents_deps.dev:0 github.com/eslib/std,num_dependents_deps.dev:0 github.com/eslib/typescript-example,num_dependents_deps.dev:0 github.com/eslift/eslint-config-eslift,num_dependents_deps.dev:0 +github.com/eslint-functional/eslint-plugin-functional, github.com/eslint-kit/cli, github.com/eslint-kit/eslint-config-kit,num_dependents_deps.dev:0 github.com/eslint-plugin-cleanjs/eslint-plugin-cleanjs, @@ -485340,6 +494856,7 @@ github.com/esmevane/generator-sojourn,num_dependents_deps.dev:0 github.com/esmevane/gitbook-plugin-path-classes, github.com/esmevane/redux-crud-utils,num_dependents_deps.dev:0 github.com/esmevane/storyteller-dice, +github.com/esmf-org/install-esmf-action, github.com/esmify/compare-versions,num_dependents_deps.dev:0 github.com/esmilo/vremya,num_dependents_deps.dev:0 github.com/esmilo/yamato,num_dependents_deps.dev:0 @@ -485411,6 +494928,9 @@ github.com/esoma/aw11, github.com/esoma/jellybean, github.com/esoma/pgo, github.com/esoma/pyglm-typing, +github.com/esomore/argocd-pr-cleanup, +github.com/esomore/argocd-pr-jsonnet-app, +github.com/esomore/deploy-github-action, github.com/eson-fan/vue-easy-swiper,num_dependents_deps.dev:0 github.com/esonderegger/create-yagss-site,num_dependents_deps.dev:0 github.com/esonderegger/fec2xlsx, @@ -485457,6 +494977,7 @@ github.com/esp-rs/xtensa-lx,num_dependents_deps.dev:2 github.com/esp-rs/xtensa-lx-rt,num_dependents_deps.dev:6 github.com/esp-rs/xtensa-lx6,num_dependents_deps.dev:0 github.com/esp-rs/xtensa-lx6-rt,num_dependents_deps.dev:2 +github.com/esp-rs/xtensa-toolchain, github.com/esp/esp-js,num_dependents_deps.dev:6 github.com/esp/esp-js-react,num_dependents_deps.dev:0 github.com/esp/esp-js-ui,num_dependents_deps.dev:0 @@ -485523,6 +495044,7 @@ github.com/espenak/herokuslugignorehelper, github.com/espenak/htmls, github.com/espenak/plonetheme.fui, github.com/espenak/restfulgrok, +github.com/espenalb/get-diff-action, github.com/espenfjo/pyyaledoorman, github.com/espenfl/t4me, github.com/espenh/chessbored,num_dependents_deps.dev:0 @@ -485575,6 +495097,7 @@ github.com/esphen/fetch-hoc,num_dependents_deps.dev:0 github.com/esphen/jest-prop-type-error,num_dependents_deps.dev:2 github.com/esphen/kube-conf,num_dependents_deps.dev:0 github.com/esphen/wurl,num_dependents_deps.dev:0 +github.com/esphome/build-action, github.com/esphome/dashboard, github.com/esphome/esphome,criticality_score:0.646580 github.com/esphome/esphome-core,criticality_score:0.397150 @@ -485634,6 +495157,7 @@ github.com/espressif/esp-adf,"criticality_score:0.515400,num_dependents_deps.dev github.com/espressif/esp-at,criticality_score:0.447450 github.com/espressif/esp-docs, github.com/espressif/esp-idf,"criticality_score:0.805660,num_dependents_deps.dev:0" +github.com/espressif/esp-idf-ci-action, github.com/espressif/esp-iot-solution,"criticality_score:0.356010,num_dependents_deps.dev:0" github.com/espressif/esp-mdf,"criticality_score:0.319790,num_dependents_deps.dev:0" github.com/espressif/esp-mqtt,criticality_score:0.471530 @@ -485643,6 +495167,7 @@ github.com/espressif/esptool,criticality_score:0.551930 github.com/espressif/freertos-gdb, github.com/espressif/idf-component-manager, github.com/espressif/sphinx_idf_theme, +github.com/espressif/upload-components-ci-action, github.com/espresso-org/drive-components,num_dependents_deps.dev:0 github.com/espresso4j/espresso,num_dependents_deps.dev:0 github.com/espresso4j/jettino,num_dependents_deps.dev:0 @@ -485709,6 +495234,7 @@ github.com/esri/node-arcgis,num_dependents_deps.dev:0 github.com/esrichina/geomap-utils,num_dependents_deps.dev:0 github.com/esridc/ember-cli-mapillary,num_dependents_deps.dev:0 github.com/esridc/hub-annotations-component,num_dependents_deps.dev:0 +github.com/esrimo/gh-action-eslint-changeset, github.com/esrinederland/PythonUtils, github.com/esripdx/node-arcgis,num_dependents_deps.dev:0 github.com/esrlabs/bake,num_dependents_deps.dev:0 @@ -485730,6 +495256,7 @@ github.com/esromneb/AsyncBehaviorTree,num_dependents_deps.dev:0 github.com/esromneb/BehaviorTreeFlatBuffer,num_dependents_deps.dev:0 github.com/esromneb/DoubleRay,num_dependents_deps.dev:0 github.com/esromneb/behavior-tree-zmq,num_dependents_deps.dev:0 +github.com/esrprelease/MS.ESRP.Release.Action, github.com/esrrhs/fake-go,num_dependents_deps.dev:0 github.com/esrrhs/fakego,num_dependents_deps.dev:0 github.com/esrrhs/go-cpuminer,num_dependents_deps.dev:0 @@ -485796,13 +495323,16 @@ github.com/essentialaccessibility/aslint,num_dependents_deps.dev:0 github.com/essentialbooks/books,num_dependents_deps.dev:0 github.com/essentialjs/essential-bundle,num_dependents_deps.dev:0 github.com/essentialkaos/aligo,num_dependents_deps.dev:0 +github.com/essentialkaos/aligo-action, github.com/essentialkaos/bastion,num_dependents_deps.dev:0 github.com/essentialkaos/bernhard,num_dependents_deps.dev:0 github.com/essentialkaos/bibop,num_dependents_deps.dev:0 +github.com/essentialkaos/bibop-action, github.com/essentialkaos/bop,num_dependents_deps.dev:0 github.com/essentialkaos/branca,num_dependents_deps.dev:0 github.com/essentialkaos/check,num_dependents_deps.dev:0 github.com/essentialkaos/deadline,num_dependents_deps.dev:0 +github.com/essentialkaos/docker-info-action, github.com/essentialkaos/ek,num_dependents_deps.dev:0 github.com/essentialkaos/fz,num_dependents_deps.dev:0 github.com/essentialkaos/go-badge,num_dependents_deps.dev:0 @@ -485817,8 +495347,12 @@ github.com/essentialkaos/go-linenoise,num_dependents_deps.dev:0 github.com/essentialkaos/go-simpleyaml,num_dependents_deps.dev:0 github.com/essentialkaos/go-zabbix,num_dependents_deps.dev:0 github.com/essentialkaos/go-zabbix-jmx,num_dependents_deps.dev:0 +github.com/essentialkaos/godoc-action, github.com/essentialkaos/goheft,num_dependents_deps.dev:0 github.com/essentialkaos/gomakegen,num_dependents_deps.dev:0 +github.com/essentialkaos/goveralls-action, +github.com/essentialkaos/hadolint-action, +github.com/essentialkaos/htmlcov-action, github.com/essentialkaos/icecli,num_dependents_deps.dev:0 github.com/essentialkaos/imc,num_dependents_deps.dev:0 github.com/essentialkaos/jar,num_dependents_deps.dev:0 @@ -485828,6 +495362,7 @@ github.com/essentialkaos/knf,num_dependents_deps.dev:0 github.com/essentialkaos/knfgen,num_dependents_deps.dev:0 github.com/essentialkaos/mdtoc,num_dependents_deps.dev:0 github.com/essentialkaos/perfecto,num_dependents_deps.dev:0 +github.com/essentialkaos/perfecto-action, github.com/essentialkaos/pkgre,num_dependents_deps.dev:0 github.com/essentialkaos/rbinstall,num_dependents_deps.dev:0 github.com/essentialkaos/redis-cli-monitor,num_dependents_deps.dev:0 @@ -485836,6 +495371,7 @@ github.com/essentialkaos/redis-monitor-top,num_dependents_deps.dev:0 github.com/essentialkaos/redy,num_dependents_deps.dev:0 github.com/essentialkaos/scratch,num_dependents_deps.dev:0 github.com/essentialkaos/shdoc,num_dependents_deps.dev:0 +github.com/essentialkaos/shellcheck-action, github.com/essentialkaos/sonar,num_dependents_deps.dev:0 github.com/essentialkaos/source-index,num_dependents_deps.dev:0 github.com/essentialkaos/sslcli,num_dependents_deps.dev:0 @@ -485938,6 +495474,7 @@ github.com/estahn/k8s-image-swapper,num_dependents_deps.dev:0 github.com/estan/protoc-gen-doc,num_dependents_deps.dev:0 github.com/estantevirtual/doctor,num_dependents_deps.dev:0 github.com/estara/points-tracker,num_dependents_deps.dev:0 +github.com/estarossa0/readme-last-commit, github.com/estarsyang/mintuiform,num_dependents_deps.dev:0 github.com/estartando-devs/cra-template-estartando-devs,num_dependents_deps.dev:0 github.com/estasney/CompanyGraph, @@ -486092,6 +495629,9 @@ github.com/estevesd/reicons,num_dependents_deps.dev:0 github.com/estevezluis1/cordova-plugin-cardio,num_dependents_deps.dev:0 github.com/estheban/node-json2xml,num_dependents_deps.dev:160 github.com/estherjeba/auditplus-site,num_dependents_deps.dev:0 +github.com/estherk0/helm-image-validator, +github.com/estherk0/jenkins-trigger, +github.com/estherk0/site-yaml-actions, github.com/estherkim/amphtml,num_dependents_deps.dev:0 github.com/esthersweon/react-native-page-swiper,num_dependents_deps.dev:0 github.com/esthor/react-native-swipeable-flatlist,num_dependents_deps.dev:0 @@ -486144,6 +495684,8 @@ github.com/estools/esutils,num_dependents_deps.dev:328251 github.com/estools2/esminify,num_dependents_deps.dev:24 github.com/estorrs/stainaug, github.com/estrada9166/bonera,num_dependents_deps.dev:0 +github.com/estrada9166/issue-ref, +github.com/estrada9166/labeler, github.com/estrada9166/leao,num_dependents_deps.dev:0 github.com/estrada9166/mongoose-cipher,num_dependents_deps.dev:0 github.com/estrada9166/shma-express,num_dependents_deps.dev:0 @@ -486243,9 +495785,11 @@ github.com/estrelar/server,num_dependents_deps.dev:0 github.com/estronzanicole/ne-footer-copyright,num_dependents_deps.dev:0 github.com/estroz/kubebuilder,num_dependents_deps.dev:0 github.com/estroz/operator-sdk,num_dependents_deps.dev:0 +github.com/estroz/rerun-actions, github.com/estrud/libpythonpro, github.com/estruyf/doctor,num_dependents_deps.dev:0 github.com/estruyf/generator-displaytemplates,num_dependents_deps.dev:0 +github.com/estruyf/gh-action-beta-version, github.com/estruyf/gulp-spsync-creds,num_dependents_deps.dev:0 github.com/estruyf/homebridge-button-toggle,num_dependents_deps.dev:0 github.com/estruyf/homebridge-presence-switch-msgraph, @@ -486330,6 +495874,7 @@ github.com/esxjs/babel-plugin-esx-browser,num_dependents_deps.dev:0 github.com/esxjs/babel-plugin-esx-ssr,num_dependents_deps.dev:0 github.com/esxjs/esx, github.com/esxjs/to-esx,num_dependents_deps.dev:8 +github.com/esxl/action-package-build, github.com/esxquillon/babel-plugin-react-css-modules-transform,num_dependents_deps.dev:0 github.com/esy-cross/ninja-build,num_dependents_deps.dev:0 github.com/esy-ocaml/BetterErrors,num_dependents_deps.dev:0 @@ -486339,6 +495884,7 @@ github.com/esy-ocaml/flock,num_dependents_deps.dev:0 github.com/esy-ocaml/ocaml,num_dependents_deps.dev:158 github.com/esy-ocaml/ocamlrun,num_dependents_deps.dev:0 github.com/esy/esy,"criticality_score:0.501880,num_dependents_deps.dev:0" +github.com/esy/github-action, github.com/esy/pesy,num_dependents_deps.dev:0 github.com/esycat/gradle-config-plugin,num_dependents_deps.dev:0 github.com/esycat/gradle-git,num_dependents_deps.dev:0 @@ -486472,6 +496018,7 @@ github.com/etbox/stable-marriage,num_dependents_deps.dev:0 github.com/etburke/winston-pagerduty,num_dependents_deps.dev:0 github.com/etby/DataCache-Gson,num_dependents_deps.dev:0 github.com/etby/butterknife,num_dependents_deps.dev:2 +github.com/etc-tiago/aws-s3-website-action, github.com/etc-tiago/deep-merge-object,num_dependents_deps.dev:0 github.com/etc-tiago/lerna-semantic-versioning,num_dependents_deps.dev:0 github.com/etc-ui/etccb-flexible,num_dependents_deps.dev:0 @@ -486492,6 +496039,7 @@ github.com/etcdigital/get-numbers-from-string,num_dependents_deps.dev:0 github.com/etcdigital/lambda-koa,num_dependents_deps.dev:4 github.com/etcdigital/pdfssr,num_dependents_deps.dev:0 github.com/etcdigital/ptah,num_dependents_deps.dev:2 +github.com/etcdigital/pull-request-changelog, github.com/etcdigital/simple-react-form-handler,num_dependents_deps.dev:0 github.com/etcdigital/slugx,num_dependents_deps.dev:0 github.com/etcdigital/strd,num_dependents_deps.dev:0 @@ -486579,6 +496127,7 @@ github.com/eteration/glassmaker,num_dependents_deps.dev:0 github.com/etercast/jsdoc-template,num_dependents_deps.dev:0 github.com/etercast/mp3,num_dependents_deps.dev:0 github.com/etereo-io/angular2,num_dependents_deps.dev:0 +github.com/etereo-io/deploy-gae-action, github.com/eterevsky/vui, github.com/etermind/alex,num_dependents_deps.dev:0 github.com/etermind/tmonad,num_dependents_deps.dev:0 @@ -486596,6 +496145,10 @@ github.com/eternal44/convert-number,num_dependents_deps.dev:0 github.com/eternal44/crockpot,num_dependents_deps.dev:0 github.com/eternal44/crockpot-fromRoman,num_dependents_deps.dev:0 github.com/eternal44/crockpot-toEnglish,num_dependents_deps.dev:0 +github.com/eternalapprentice2000/checkout, +github.com/eternalapprentice2000/emulate-tfs-enviroment, +github.com/eternalapprentice2000/get-github-app-access-token, +github.com/eternalapprentice2000/get-version-from-release-notes, github.com/eternalblue/monsta,num_dependents_deps.dev:0 github.com/eternalblue/python-terraform-continued, github.com/eternalconcert/robotframework-sqless, @@ -486694,6 +496247,7 @@ github.com/eth2-networks/networking, github.com/eth4ne/go-ethereum,num_dependents_deps.dev:0 github.com/ethaden/pgpmailfilter,num_dependents_deps.dev:0 github.com/ethagnawl/rmuxinator,num_dependents_deps.dev:0 +github.com/ethan-dowler/ramsey-gififier, github.com/ethan-gu/test,num_dependents_deps.dev:0 github.com/ethan-heo/design-system,num_dependents_deps.dev:0 github.com/ethan-heo/ui-components,num_dependents_deps.dev:0 @@ -486836,6 +496390,7 @@ github.com/ethanresnick/json-api,num_dependents_deps.dev:0 github.com/ethanresnick/json-api-custom-query,num_dependents_deps.dev:6 github.com/ethanresnick/node-pg-query-native,num_dependents_deps.dev:50 github.com/ethanresnick/plastic.js,num_dependents_deps.dev:0 +github.com/ethanresnick/pr-checklists, github.com/ethanresnick/restify-swagger-ui,num_dependents_deps.dev:0 github.com/ethanresnick/tslint-config,num_dependents_deps.dev:0 github.com/ethanresnick/twilio-ivr,num_dependents_deps.dev:0 @@ -486845,6 +496400,7 @@ github.com/ethanrowe/python-phlawg, github.com/ethanrubio/conventional-commit-types-atom,num_dependents_deps.dev:0 github.com/ethanrubio/cz-conventional-changelog-atom,num_dependents_deps.dev:0 github.com/ethanrubio/ember-pikaday-time,num_dependents_deps.dev:0 +github.com/ethanrucinski/action-aws-oidc-auth, github.com/ethanselzer/react-cursor-position,num_dependents_deps.dev:38 github.com/ethanselzer/react-hover-observer,num_dependents_deps.dev:42 github.com/ethanselzer/react-image-magnify,num_dependents_deps.dev:8 @@ -487176,8 +496732,10 @@ github.com/ethersphere/ethproxy,num_dependents_deps.dev:0 github.com/ethersphere/gitbook-plugin-sections,num_dependents_deps.dev:0 github.com/ethersphere/go-price-oracle-abi,num_dependents_deps.dev:1 github.com/ethersphere/go-storage-incentives-abi,num_dependents_deps.dev:4 +github.com/ethersphere/repo-sync-action, github.com/ethersphere/swarm,criticality_score:0.596260 github.com/ethersphere/swarm-cli,num_dependents_deps.dev:0 +github.com/ethersphere/update-supported-bee-action, github.com/etherspot/eth-sdk,num_dependents_deps.dev:10 github.com/etherspot/etherspot-contracts, github.com/etherspot/etherspot-sdk,num_dependents_deps.dev:2 @@ -487225,6 +496783,7 @@ github.com/ethikz/stylelint-config,num_dependents_deps.dev:0 github.com/ethiodotapp/ethio-client-js,num_dependents_deps.dev:0 github.com/ethiopia/moment-ethiopian,num_dependents_deps.dev:0 github.com/ethiopicist/Conversion,num_dependents_deps.dev:0 +github.com/ethisysltd/helix-check, github.com/ethjs/ethjs, github.com/ethjs/ethjs-abi,num_dependents_deps.dev:720 github.com/ethjs/ethjs-account,num_dependents_deps.dev:10 @@ -487261,9 +496820,11 @@ github.com/ethomson/card,num_dependents_deps.dev:0 github.com/ethomson/contributions,num_dependents_deps.dev:0 github.com/ethomson/dat-life,num_dependents_deps.dev:0 github.com/ethomson/gatsby-plugin-relativeurl,num_dependents_deps.dev:0 +github.com/ethomson/issue-dashboard, github.com/ethomson/probot-azure-pipelines,num_dependents_deps.dev:0 github.com/ethomson/probot-serverless-azurefunctions,num_dependents_deps.dev:0 github.com/ethomson/retarget_prs,num_dependents_deps.dev:0 +github.com/ethomson/send-tweet-action, github.com/ethorhub/ethor,num_dependents_deps.dev:0 github.com/ethorz/addstyles,num_dependents_deps.dev:0 github.com/ethorz/ethcss,num_dependents_deps.dev:0 @@ -487308,6 +496869,7 @@ github.com/ethvault/ens-registrar-contract,num_dependents_deps.dev:0 github.com/ethvault/iframe-provider,num_dependents_deps.dev:10 github.com/ethvault/iframe-provider-polyfill,num_dependents_deps.dev:0 github.com/ethvelcro/velcro-contracts, +github.com/ethyaan/tgate-action, github.com/ethyca/fideslib, github.com/ethyca/fideslog, github.com/ethyde/generator-bijoo,num_dependents_deps.dev:0 @@ -487454,6 +497016,8 @@ github.com/etijskens/footest, github.com/etijskens/static_vars, github.com/etiktin/generate-evb, github.com/etiktin/node-generate-evb,num_dependents_deps.dev:0 +github.com/etils-actions/pypi-auto-publish, +github.com/etils-actions/pypi-build-publish, github.com/etimberg/Chart.Smith.js,num_dependents_deps.dev:0 github.com/etimberg/pycircuitbreaker, github.com/etimo/go-magic-mirror,num_dependents_deps.dev:0 @@ -487641,6 +497205,7 @@ github.com/etsy/hound,num_dependents_deps.dev:0 github.com/etsy/kevin-middleware, github.com/etsy/statsd,num_dependents_deps.dev:0 github.com/etsy/terraform-demux,num_dependents_deps.dev:0 +github.com/ettakhi/hello-action, github.com/ettiennegous/united-energy-usage-data, github.com/ettingshausen/react-native-android-broadcast-receiver-for-urovo, github.com/ettingshausen/react-native-upload,num_dependents_deps.dev:0 @@ -487658,6 +497223,7 @@ github.com/ettoreleandrotognoli/django-pycdi, github.com/ettoreleandrotognoli/jjb-discord, github.com/ettoreleandrotognoli/python-cdi, github.com/ettoremarques/createTable,num_dependents_deps.dev:0 +github.com/ettorestark/upload-static-website-to-s3, github.com/ettwz/freetorrents-mteam,num_dependents_deps.dev:0 github.com/etu-front/etu-components,num_dependents_deps.dev:0 github.com/etu-front/etu-hooks,num_dependents_deps.dev:0 @@ -487757,6 +497323,8 @@ github.com/euberdeveloper/einsteinify, github.com/euberdeveloper/eslint-plugin,num_dependents_deps.dev:0 github.com/euberdeveloper/eslint-plugin-typescript,num_dependents_deps.dev:0 github.com/euberdeveloper/euberlog,num_dependents_deps.dev:2 +github.com/euberdeveloper/ga-dree, +github.com/euberdeveloper/ga-project-version, github.com/euberdeveloper/mediawiki-history-dumps-scraper,num_dependents_deps.dev:0 github.com/euberdeveloper/mongo-cleaner,num_dependents_deps.dev:0 github.com/euberdeveloper/mongo-scanner,num_dependents_deps.dev:0 @@ -487789,6 +497357,7 @@ github.com/euchungmsft/golang-sdk-test,num_dependents_deps.dev:0 github.com/euclia/go-accounts,num_dependents_deps.dev:0 github.com/euclia/jaqpotj,num_dependents_deps.dev:0 github.com/euclid-inc/Clamp.js,num_dependents_deps.dev:0 +github.com/euclid1990/actions-ansible, github.com/euclid1990/write-assets-webpack-plugin,num_dependents_deps.dev:0 github.com/euclidesfreire/pinkybrain,num_dependents_deps.dev:0 github.com/euclidesh/scarecrow,num_dependents_deps.dev:0 @@ -487801,6 +497370,7 @@ github.com/euclio/ips,num_dependents_deps.dev:0 github.com/euclio/spellbound,num_dependents_deps.dev:0 github.com/eudaemonic-one/lifelong-learning,num_dependents_deps.dev:0 github.com/eudald-seeslab/mmsbm, +github.com/eudes/action-dropbox, github.com/eudesrodrigo/brFinance, github.com/eudesroger7/rg-flex-grid,num_dependents_deps.dev:0 github.com/eudicots/Cactus,criticality_score:0.335650 @@ -487839,6 +497409,7 @@ github.com/eugene-babichenko/cubemx2cmake, github.com/eugene-babichenko/data-pile,num_dependents_deps.dev:0 github.com/eugene-babichenko/rpi_ip_bot_client, github.com/eugene-babichenko/rust-fsm,num_dependents_deps.dev:0 +github.com/eugene-babichenko/slack-notifier, github.com/eugene-belkovich/geojson-world-map,num_dependents_deps.dev:0 github.com/eugene-bulkin/grunt-buddyjs,num_dependents_deps.dev:0 github.com/eugene-bulkin/q-sqlite3,num_dependents_deps.dev:0 @@ -488188,6 +497759,7 @@ github.com/eunchong/autowrapt-logger, github.com/eunchong/falcon-elastic-apm, github.com/eunchong/screen-watcher, github.com/eunchu/react-hooks,num_dependents_deps.dev:0 +github.com/eunchurn/action-publish, github.com/eunchurn/components, github.com/eunchurn/react-windrose-chart,num_dependents_deps.dev:0 github.com/eunchurn/ts-utils,num_dependents_deps.dev:0 @@ -488201,6 +497773,7 @@ github.com/eunikitin/npm-package-es6-boilerplate,num_dependents_deps.dev:0 github.com/eunion/zhuge-io-node,num_dependents_deps.dev:0 github.com/eunjae-lee/create-gatsby-theme,num_dependents_deps.dev:0 github.com/eunjae-lee/dummy-lib-1111,num_dependents_deps.dev:0 +github.com/eunjae-lee/issue-to-markdown, github.com/eunjae-lee/render-options-injector,num_dependents_deps.dev:0 github.com/eunjae-lee/vue-demi,num_dependents_deps.dev:0 github.com/eunjae-lee/vuepress-plugin-mermaid,num_dependents_deps.dev:0 @@ -488637,6 +498210,7 @@ github.com/evalsocket/policyreport-octant-plugin,num_dependents_deps.dev:0 github.com/evaluationK/unix-snc,num_dependents_deps.dev:0 github.com/evaluatly/evaluatly-js,num_dependents_deps.dev:0 github.com/evalynledezma/evalyn-js-footer,num_dependents_deps.dev:0 +github.com/evamaxfield/github-pages-deploy-action-python, github.com/evan-007/ember-cli-guitar-chords,num_dependents_deps.dev:0 github.com/evan-007/react-guitar-chords,num_dependents_deps.dev:0 github.com/evan-blaine/randw, @@ -488723,6 +498297,7 @@ github.com/evandavid/status-response-dictionary,num_dependents_deps.dev:0 github.com/evandbrown/cli,num_dependents_deps.dev:0 github.com/evandcoleman/node-appletv,num_dependents_deps.dev:0 github.com/evandegr/grunt-inject-css,num_dependents_deps.dev:0 +github.com/evandejesus/s3-sync-action, github.com/evanderkoogh/node-sitemap-stream-parser,num_dependents_deps.dev:0 github.com/evandevizio/go-playing-cards,num_dependents_deps.dev:0 github.com/evandhq/bapple,num_dependents_deps.dev:0 @@ -489012,6 +498587,7 @@ github.com/evanrs/thin-tree,num_dependents_deps.dev:0 github.com/evanrs/use-google-maps-sdk,num_dependents_deps.dev:0 github.com/evanrs/use-google-places, github.com/evanrs/use-latest-version,num_dependents_deps.dev:0 +github.com/evans-kim/action, github.com/evans-kim/v-pick-up-scroll,num_dependents_deps.dev:0 github.com/evans-opilo/go-mongodb-connection,num_dependents_deps.dev:0 github.com/evans-opilo/go-sendgrid,num_dependents_deps.dev:0 @@ -489087,6 +498663,7 @@ github.com/evansmurithi/drone-github-issue,num_dependents_deps.dev:0 github.com/evansmurithi/sshaudit,num_dependents_deps.dev:0 github.com/evansmwendwa/ng2-daterangepicker,num_dependents_deps.dev:0 github.com/evansmwendwa/python-socialite, +github.com/evansnguyen/image-optimization, github.com/evansolomon/cameron-streams, github.com/evansolomon/disperse,num_dependents_deps.dev:0 github.com/evansolomon/futurus,num_dependents_deps.dev:2 @@ -489152,6 +498729,7 @@ github.com/evanthegrayt/standup_md,num_dependents_deps.dev:0 github.com/evantianx/pipeline,num_dependents_deps.dev:0 github.com/evantill/liquibase-utils,num_dependents_deps.dev:0 github.com/evantkchong/pylodica, +github.com/evantorrie/mott-the-tidier, github.com/evantre/exportexcel,num_dependents_deps.dev:0 github.com/evantu/print-web, github.com/evantu/tprint,num_dependents_deps.dev:0 @@ -489349,6 +498927,7 @@ github.com/evdcush/fart, github.com/evdenis/cvehound, github.com/evdhiggins/airtable-sync,num_dependents_deps.dev:0 github.com/evdhiggins/automate-this,num_dependents_deps.dev:0 +github.com/evdhiggins/manage-pr-assignees, github.com/eve-of-darkness/db-public,num_dependents_deps.dev:0 github.com/eve-proxy/eve,num_dependents_deps.dev:0 github.com/eve-scout/nodebb-plugin-sso-eveonline,num_dependents_deps.dev:0 @@ -489357,6 +498936,7 @@ github.com/eve-scout/passport-eveonline-sso,num_dependents_deps.dev:0 github.com/eve-scout/passport-eveseat,num_dependents_deps.dev:0 github.com/eve-spyglass/spyglass2,num_dependents_deps.dev:0 github.com/eve-val/evelink, +github.com/eve0415/CF-Pages-Clean-Deployments-Action, github.com/eve0415/MC-API,num_dependents_deps.dev:0 github.com/eveble/base,num_dependents_deps.dev:2 github.com/eveble/core,num_dependents_deps.dev:4 @@ -489824,6 +499404,7 @@ github.com/ever-co/angular2-wizard, github.com/ever-co/ever,criticality_score:0.377580 github.com/ever-co/ever-cli,num_dependents_deps.dev:0 github.com/ever-co/gauzy,criticality_score:0.588660 +github.com/ever-guild/tvm-action, github.com/ever-js/ever-js,num_dependents_deps.dev:0 github.com/ever-ton/go-repository-pattern,num_dependents_deps.dev:0 github.com/ever23/dbtabla,num_dependents_deps.dev:0 @@ -489859,6 +499440,7 @@ github.com/evercyan/cantor,num_dependents_deps.dev:0 github.com/evercyan/gocli,num_dependents_deps.dev:0 github.com/evercyan/leetcli,num_dependents_deps.dev:0 github.com/evercyan/letitgo,num_dependents_deps.dev:0 +github.com/everdevs/contentful-action, github.com/everdevs/design-system, github.com/everdimension/angular-svg-base-fix,num_dependents_deps.dev:38 github.com/everdimension/react-area,num_dependents_deps.dev:0 @@ -490115,6 +499697,7 @@ github.com/everlongproject/go-force,num_dependents_deps.dev:0 github.com/everlongproject/i18n4go,num_dependents_deps.dev:0 github.com/everlose/tt-utils,num_dependents_deps.dev:0 github.com/everlutionsk/ajaxcom-js,num_dependents_deps.dev:0 +github.com/everlytic/branch-merge, github.com/evermade/wp-block-toolkit,num_dependents_deps.dev:0 github.com/evermarkets/emx-node, github.com/evermax/iseva,num_dependents_deps.dev:0 @@ -490148,14 +499731,24 @@ github.com/evernym/sovrin-client-rest, github.com/evernym/vdr-tools, github.com/evernym/verity-sdk,num_dependents_deps.dev:0 github.com/everolth/bootstrap-toggle-react,num_dependents_deps.dev:0 +github.com/everpcpc/actions-cache, +github.com/everpcpc/cloudflare-dns-action, +github.com/everpcpc/comment-on-pr-action, +github.com/everpcpc/current-pr-action, +github.com/everpcpc/elasticsearch-action, github.com/everpeace/concourse-aws,num_dependents_deps.dev:0 github.com/everpeace/k8s-host-device-plugin,num_dependents_deps.dev:0 github.com/everpeace/k8s-hostpath-device-plugin,num_dependents_deps.dev:0 +github.com/everphone-gmbh/cancel-previous-workflows, +github.com/everphone-gmbh/doctrine-migrations-action, +github.com/everphone-gmbh/github-asana-action, +github.com/everphone-gmbh/shame_bot, github.com/everplus/ctriputil, github.com/everplus/node-shared-cache,num_dependents_deps.dev:0 github.com/everproof/material-form,num_dependents_deps.dev:0 github.com/everproof/material-form-dialog-stepper,num_dependents_deps.dev:0 github.com/everproof/material-ui-flip-card,num_dependents_deps.dev:0 +github.com/everscale-actions/setup-tools, github.com/eversedev/jelbrek.js,num_dependents_deps.dev:0 github.com/everskyblue/devpacker, github.com/everskyblue/patronjs,num_dependents_deps.dev:0 @@ -490336,6 +499929,9 @@ github.com/evgenTraytyak/kiwi-api,num_dependents_deps.dev:0 github.com/evgenTraytyak/skypicker-api,num_dependents_deps.dev:0 github.com/evgenbar/java-binary-decoder,num_dependents_deps.dev:0 github.com/evgenbrq/tree,num_dependents_deps.dev:0 +github.com/evgeni/action-autopkgtest, +github.com/evgeni/action-lintian, +github.com/evgeni/action-piuparts, github.com/evgeni/pytest-qr, github.com/evgenii-malov/asyncio-map, github.com/evgenii-malov/vcompress, @@ -490490,6 +500086,7 @@ github.com/evico-tr/talentqlassessment1,num_dependents_deps.dev:0 github.com/evico-tr/talentqlassessment2,num_dependents_deps.dev:0 github.com/evictor/get-blob-duration,num_dependents_deps.dev:0 github.com/evidanary/grepg-python, +github.com/eviden-actions/clean-self-hosted-runner, github.com/evidenceprime/html-docx-js,num_dependents_deps.dev:16 github.com/evidenceprime/pouchdb.mapreduce.noeval,num_dependents_deps.dev:0 github.com/evidentlyai/evidently, @@ -490729,6 +500326,7 @@ github.com/evnbr/bindery,"criticality_score:0.334900,num_dependents_deps.dev:0" github.com/evnbr/bindery-controls,num_dependents_deps.dev:0 github.com/evnbr/regionize,num_dependents_deps.dev:0 github.com/evneandrey/react-datepicker,num_dependents_deps.dev:0 +github.com/evnex/netlify-deploy, github.com/evnm/dropbox-node,num_dependents_deps.dev:0 github.com/evnm/fintop,num_dependents_deps.dev:0 github.com/evnm/spread.rs,num_dependents_deps.dev:0 @@ -490761,6 +500359,7 @@ github.com/evo-company/cantal-js,num_dependents_deps.dev:0 github.com/evo-company/cantal-koa,num_dependents_deps.dev:0 github.com/evo-company/design-config-schema,num_dependents_deps.dev:0 github.com/evo-company/eslint-config-uaprom, +github.com/evo-lua/evo-setup-action, github.com/evo-ui/evo-ui,num_dependents_deps.dev:0 github.com/evo34/vue-antiscroll,num_dependents_deps.dev:0 github.com/evoL/albert,num_dependents_deps.dev:0 @@ -490803,6 +500402,7 @@ github.com/evoforce/react-native-amap3d,num_dependents_deps.dev:0 github.com/evogelsa/dcs-real-weather,num_dependents_deps.dev:0 github.com/evogytis/baltic, github.com/evoicefire/starwind-vsan-exporter,num_dependents_deps.dev:0 +github.com/evoja/dependaboja, github.com/evoja/npm-ns-plain,num_dependents_deps.dev:0 github.com/evoja/npm-packageoid, github.com/evoja/redux-actions,num_dependents_deps.dev:0 @@ -490985,6 +500585,7 @@ github.com/evrenkutar/randevent,num_dependents_deps.dev:0 github.com/evrimfeyyaz/covid-19-api,num_dependents_deps.dev:0 github.com/evrom/hurst,num_dependents_deps.dev:0 github.com/evromalarkey/gulp-vite,num_dependents_deps.dev:0 +github.com/evrone-erp/yandex-tracker-action, github.com/evrone/factory_girl-seeds,num_dependents_deps.dev:0 github.com/evrone/glider-rails,num_dependents_deps.dev:0 github.com/evrone/go-clean-template,num_dependents_deps.dev:0 @@ -491000,7 +500601,12 @@ github.com/evry-bergen/waf-util,num_dependents_deps.dev:0 github.com/evrybiont/knack-rails,num_dependents_deps.dev:0 github.com/evrycollin/wdio-allure-addons-reporter,num_dependents_deps.dev:0 github.com/evrycollin/webdriverio-addons,num_dependents_deps.dev:0 +github.com/evryfs/cloudctl-action, +github.com/evryfs/composite-java-action, github.com/evryfs/github-actions-runner-operator,num_dependents_deps.dev:0 +github.com/evryfs/helm-ephemeral-action, +github.com/evryfs/notify-slack-action, +github.com/evryfs/sbom-dependency-submission-action, github.com/evryn/laraberg-vue,num_dependents_deps.dev:0 github.com/evrythng/digital-link.js,num_dependents_deps.dev:2 github.com/evrythng/distributed-resource-manager,num_dependents_deps.dev:0 @@ -491090,6 +500696,7 @@ github.com/evturn/sentence-generator,num_dependents_deps.dev:0 github.com/evulse/connect-ironcache,num_dependents_deps.dev:0 github.com/evuz/depInjection,num_dependents_deps.dev:0 github.com/evuz/ts-domain,num_dependents_deps.dev:0 +github.com/evvanErb/get-github-email-by-username-action, github.com/evvers/git-pre-commit-hook, github.com/evvers/git-pre-commit-hook-utils, github.com/evvers/kafka-dev-tools, @@ -491202,6 +500809,7 @@ github.com/eweitz/morpheus.js,num_dependents_deps.dev:0 github.com/ewelina-slepko/slepkoJS,num_dependents_deps.dev:0 github.com/ewels/MultiQC,criticality_score:0.625670 github.com/ewels/rich-click, +github.com/ewels/rich-codex, github.com/ewen-lbh/check-availability, github.com/ewen-lbh/creations,num_dependents_deps.dev:0 github.com/ewen-lbh/crossplain, @@ -491268,6 +500876,7 @@ github.com/ewilde/terraform-provider-kibana,num_dependents_deps.dev:0 github.com/ewilde/terraform-provider-runscope,num_dependents_deps.dev:0 github.com/ewilken/hap-rs,num_dependents_deps.dev:0 github.com/ewilken/starlink-rs,num_dependents_deps.dev:0 +github.com/ewilliams-zoot/jsv-action, github.com/ewimberley/Pyanchetto, github.com/ewimberley/yarp, github.com/ewindisch/lambda-transport,num_dependents_deps.dev:0 @@ -491290,6 +500899,7 @@ github.com/ewiththebowtie/packer,num_dependents_deps.dev:0 github.com/ewity/react-native-ewity-forms,num_dependents_deps.dev:0 github.com/ewjoachim/bitwarden-keyring, github.com/ewjoachim/colorsnip, +github.com/ewjoachim/coverage-comment-action, github.com/ewjoachim/fr2csv, github.com/ewjoachim/nbgen, github.com/ewjoachim/pyler, @@ -491526,6 +501136,7 @@ github.com/exah/webpack-universal-hot-middleware,num_dependents_deps.dev:0 github.com/exah/ya-fetch,num_dependents_deps.dev:0 github.com/exaile/exaile,criticality_score:0.574970 github.com/exakat/exakat,criticality_score:0.444360 +github.com/exakat/exakat-ga, github.com/exakat/php-static-analysis-tools,criticality_score:0.312770 github.com/exalearn/colmena, github.com/exalexday/helloworld,num_dependents_deps.dev:0 @@ -491658,6 +501269,8 @@ github.com/excavador/gb,num_dependents_deps.dev:0 github.com/exceeder/vuetrex,num_dependents_deps.dev:0 github.com/exceedhl/toft,num_dependents_deps.dev:0 github.com/exceedideal/edl-coderunner,num_dependents_deps.dev:0 +github.com/excel-dna/intellisense, +github.com/excel-dna/registration, github.com/exceljs/exceljs,"criticality_score:0.579240,num_dependents_deps.dev:254" github.com/excellaco/voa-mobile-shared,num_dependents_deps.dev:0 github.com/excellalabs/jquery.maskedinput,num_dependents_deps.dev:4 @@ -491891,6 +501504,7 @@ github.com/exercism/java,criticality_score:0.440620 github.com/exercism/javascript-analyzer,num_dependents_deps.dev:0 github.com/exercism/javascript-representer,num_dependents_deps.dev:0 github.com/exercism/javascript-test-runner,num_dependents_deps.dev:0 +github.com/exercism/pr-commenter-action, github.com/exercism/problem-specifications, github.com/exercism/python,criticality_score:0.520710 github.com/exercism/ruby,criticality_score:0.493490 @@ -492029,6 +501643,8 @@ github.com/exini/dicom-streams,num_dependents_deps.dev:0 github.com/exini/dicom-streams-js,num_dependents_deps.dev:0 github.com/exinone/mint-withdraw,num_dependents_deps.dev:0 github.com/exioReed/PreDeCon, +github.com/exions/merge-upstream, +github.com/exions/undo-push, github.com/exiotech/CRBL,num_dependents_deps.dev:0 github.com/exiotech/UploadMultipartImage,num_dependents_deps.dev:0 github.com/exiotech/nuxt-web3.js,num_dependents_deps.dev:0 @@ -492171,6 +501787,7 @@ github.com/exodusmovement/simdb,num_dependents_deps.dev:0 github.com/exodusmovement/varstruct-cstring,num_dependents_deps.dev:0 github.com/exoego/aws-lambda-scalajs-facade,num_dependents_deps.dev:0 github.com/exoego/aws-sdk-scalajs-facade,num_dependents_deps.dev:22 +github.com/exoego/cross-scala-versions, github.com/exoego/scala-js-env-jsdom-nodejs,num_dependents_deps.dev:0 github.com/exoego/scala-js-jquery,num_dependents_deps.dev:0 github.com/exoego/scala-js-nodejs,num_dependents_deps.dev:1999 @@ -492340,6 +501957,7 @@ github.com/exoticknight/luoji,num_dependents_deps.dev:0 github.com/exoticknight/mathematical-function-composition,num_dependents_deps.dev:0 github.com/exoticknight/rust-option,num_dependents_deps.dev:0 github.com/exoticknight/url-monkey,num_dependents_deps.dev:0 +github.com/exoticlibraries/exotic-action, github.com/exoticorn/exoquant-rs,num_dependents_deps.dev:3 github.com/exoticorn/pngeq,num_dependents_deps.dev:0 github.com/exound/feq,num_dependents_deps.dev:0 @@ -492436,6 +502054,7 @@ github.com/expenses/googleimagesearch, github.com/expenses/line_drawing,num_dependents_deps.dev:427 github.com/experdot/general-engine, github.com/experdot/general.js,num_dependents_deps.dev:0 +github.com/experfy/sonarqube, github.com/experience-digital/node-logger,num_dependents_deps.dev:0 github.com/experiencecommerce/cordova-plugin-customconfigparameters,num_dependents_deps.dev:0 github.com/experienceone/apikit,num_dependents_deps.dev:0 @@ -492527,6 +502146,7 @@ github.com/explooosion/ngx-status-button,num_dependents_deps.dev:0 github.com/explorable-viz/fluid, github.com/explorador/local-by-flywheel-alfred,num_dependents_deps.dev:0 github.com/exploratium/quant-cli, +github.com/explore-dev/cautious-broccoli, github.com/explore-node-js/node.js-byte-flag-calculator,num_dependents_deps.dev:0 github.com/explore-node-js/node.js-bytes-calculator, github.com/explore-node-js/node.js-object-field-resolver,num_dependents_deps.dev:0 @@ -492537,6 +502157,17 @@ github.com/exploreshaifali/django-softdelete-it, github.com/explorigin/modular-js,num_dependents_deps.dev:0 github.com/explorigin/persistent-redux,num_dependents_deps.dev:0 github.com/exploripy/exploripy, +github.com/explorium-ai/bump-helm-chart-action, +github.com/explorium-ai/bump-helm-dependencies-action, +github.com/explorium-ai/datadog-sourcemap-upload-action, +github.com/explorium-ai/deploy-k8s-action, +github.com/explorium-ai/get-ecr-image-action, +github.com/explorium-ai/package-helm-ecr-action, +github.com/explorium-ai/package-helm-ghcr-action, +github.com/explorium-ai/trigger-astronomer-action, +github.com/explorium-ai/trigger-dag-action, +github.com/explorium-ai/trigger-databricks-job-action, +github.com/explorium-ai/wait-github-status-action, github.com/explortics/explortics.js,num_dependents_deps.dev:0 github.com/explosion-scratch/express-minifier,num_dependents_deps.dev:0 github.com/explosion-scratch/smart404,num_dependents_deps.dev:0 @@ -492599,6 +502230,7 @@ github.com/expo/expo-graphics, github.com/expo/expo-multi-touch,num_dependents_deps.dev:0 github.com/expo/expo-phaser,num_dependents_deps.dev:0 github.com/expo/expo-pixi,num_dependents_deps.dev:0 +github.com/expo/expo-preview-action, github.com/expo/expo-processing, github.com/expo/expo-sdk,num_dependents_deps.dev:56 github.com/expo/expo-server-sdk-node,"criticality_score:0.374880,num_dependents_deps.dev:2" @@ -492736,6 +502368,7 @@ github.com/export-mike/formzy,num_dependents_deps.dev:0 github.com/export/app.io,num_dependents_deps.dev:0 github.com/export/generator-appio,num_dependents_deps.dev:0 github.com/exportarts/bullmq-utils,num_dependents_deps.dev:0 +github.com/exportarts/jenkins-build-tag-action, github.com/exportarts/nestjs-prismic,num_dependents_deps.dev:0 github.com/exportarts/ngx-material-data-table,num_dependents_deps.dev:0 github.com/exportarts/ngx-pending-changes,num_dependents_deps.dev:0 @@ -492747,6 +502380,7 @@ github.com/exposebox/local-mysql-cache,num_dependents_deps.dev:0 github.com/exposebox/node-stats-aggregator,num_dependents_deps.dev:0 github.com/exposebox/node-thrift2-hbase, github.com/exposebox/object-hbase-mapping,num_dependents_deps.dev:0 +github.com/exposuresoftware/laravelwave, github.com/expr/forma,num_dependents_deps.dev:0 github.com/expr/httpiped,num_dependents_deps.dev:0 github.com/expr/httpiped-stream,num_dependents_deps.dev:0 @@ -492897,6 +502531,7 @@ github.com/exreplay/webpack-hot-middleware,num_dependents_deps.dev:0 github.com/exrobbie/ali-msg,num_dependents_deps.dev:0 github.com/exrobbie/bootstrap-ie8,num_dependents_deps.dev:0 github.com/exrobbie/ie8-polyfill, +github.com/exrofol/flake8-annotations, github.com/exrok/svg2pts,num_dependents_deps.dev:0 github.com/exromany/combinations-generator,num_dependents_deps.dev:10 github.com/exromany/loopback-counts-mixin,num_dependents_deps.dev:0 @@ -493020,7 +502655,11 @@ github.com/extrabacon/python-shell,"criticality_score:0.427770,num_dependents_de github.com/extrabacon/rest-collection-stream,num_dependents_deps.dev:2 github.com/extrabacon/xlrd-parser,num_dependents_deps.dev:0 github.com/extracold1209/mqLogger,num_dependents_deps.dev:0 +github.com/extractions/netrc, github.com/extractions/setup-crate,num_dependents_deps.dev:0 +github.com/extractions/setup-just, +github.com/extractions/setup-mdbook, +github.com/extractions/setup-powerpack, github.com/extractr-io/puphpeteer,num_dependents_deps.dev:0 github.com/extractr-io/rialto,num_dependents_deps.dev:0 github.com/extrading/logrus-sentry-hook,num_dependents_deps.dev:0 @@ -493035,6 +502674,7 @@ github.com/extraton/freeton,num_dependents_deps.dev:0 github.com/extravaganzaa/mongoconnect,num_dependents_deps.dev:0 github.com/extrawest/firebase-chat-component,num_dependents_deps.dev:0 github.com/extrawest/service-worker-generator,num_dependents_deps.dev:0 +github.com/extrawitz/11ty-dockerless-build, github.com/extrawurst/cargo-modify,num_dependents_deps.dev:0 github.com/extrawurst/gitui,"criticality_score:0.514820,num_dependents_deps.dev:0" github.com/extrawurst/ip2country,num_dependents_deps.dev:0 @@ -493042,6 +502682,7 @@ github.com/extraymond/aframe-mouse-dragndrop,num_dependents_deps.dev:0 github.com/extraymond/afterglow,num_dependents_deps.dev:0 github.com/extraymond/c3d-rs,num_dependents_deps.dev:0 github.com/extreme4all/osrs, +github.com/extreme4all/python-black-check-v22.3.0, github.com/extremebi/ngx-input-loader,num_dependents_deps.dev:0 github.com/extremegrief1/extreme-tools, github.com/extremeheat/JSPyBridge, @@ -493070,6 +502711,7 @@ github.com/exu/wiki,num_dependents_deps.dev:0 github.com/exuan/kratos-redis,num_dependents_deps.dev:0 github.com/exuan/nodebb-plugin-sso-weibo-new,num_dependents_deps.dev:0 github.com/exuan/waka-api,num_dependents_deps.dev:0 +github.com/exuanbo/actions-deploy-gist, github.com/exuanbo/dmg-utils,num_dependents_deps.dev:0 github.com/exuanbo/file-icons-js,num_dependents_deps.dev:6 github.com/exuanbo/gulp-inject-inline,num_dependents_deps.dev:0 @@ -493150,6 +502792,7 @@ github.com/eyaleizenberg/rake-migrations,num_dependents_deps.dev:0 github.com/eyaleizenberg/react-native-custom-action-sheet,num_dependents_deps.dev:0 github.com/eyaleizenberg/react-native-floating-label-text-input,num_dependents_deps.dev:0 github.com/eyaleizenberg/react-native-image-picker,num_dependents_deps.dev:0 +github.com/eyaleizenberg/redis-github-action, github.com/eyalev/clipboard-util, github.com/eyalev/count-lines, github.com/eyalev/create-cli, @@ -493177,6 +502820,7 @@ github.com/eyaltoledano/shopify-apps-reviews-cli,num_dependents_deps.dev:0 github.com/eyaltrabelsi/pandas-log, github.com/eyalvardi/angular-ticks-viewer, github.com/eyalyoli/react-native-swipe-cards-deck,num_dependents_deps.dev:0 +github.com/eyalzamir/delete-new-packages, github.com/eyantra-eysip/GradeFast-2019, github.com/eyas-ranjous/datastructures-js,num_dependents_deps.dev:0 github.com/eyas-ranjous/express-routes-registrar,num_dependents_deps.dev:0 @@ -493327,6 +502971,7 @@ github.com/eyethereal/node-etweb,num_dependents_deps.dev:0 github.com/eyev/nba.ts,num_dependents_deps.dev:0 github.com/eyewa/graphql-request,num_dependents_deps.dev:0 github.com/eyforia/xpur,num_dependents_deps.dev:0 +github.com/eygraber/autobase-action, github.com/eygraber/compose-color-picker,num_dependents_deps.dev:0 github.com/eygraber/cure,num_dependents_deps.dev:0 github.com/eygraber/detekt-rules,num_dependents_deps.dev:0 @@ -493352,6 +502997,7 @@ github.com/eykhagen/strest,num_dependents_deps.dev:0 github.com/eykjs/mongocrypt,num_dependents_deps.dev:0 github.com/eykjs/node-fireuser,num_dependents_deps.dev:0 github.com/eyko/replayer,num_dependents_deps.dev:0 +github.com/eyko139/copy-to-branches, github.com/eykrehbein/cook,num_dependents_deps.dev:0 github.com/eykrehbein/dprep, github.com/eykrehbein/hooks,num_dependents_deps.dev:0 @@ -493434,6 +503080,7 @@ github.com/eyy/resors,num_dependents_deps.dev:0 github.com/eyy/to-locals,num_dependents_deps.dev:0 github.com/eyybaebae/jds,num_dependents_deps.dev:0 github.com/eyzhub/weex-plugin-inapp,num_dependents_deps.dev:0 +github.com/eyzi/k8s-deploy, github.com/eyzi/pixia,num_dependents_deps.dev:0 github.com/eyzy/eyzy,num_dependents_deps.dev:0 github.com/eyzy/eyzy-tree,num_dependents_deps.dev:0 @@ -493546,6 +503193,7 @@ github.com/ezegrosfeld/basic-api,num_dependents_deps.dev:0 github.com/ezegrosfeld/cli,num_dependents_deps.dev:0 github.com/ezegrosfeld/go-eth,num_dependents_deps.dev:0 github.com/ezegrosfeld/hcorp-microservices,num_dependents_deps.dev:0 +github.com/ezegrosfeld/terraform-action, github.com/ezegrosfeld/vader,num_dependents_deps.dev:1 github.com/ezegrosfeld/yoda,num_dependents_deps.dev:0 github.com/ezegyfa2/ckeditor5-build-classic,num_dependents_deps.dev:0 @@ -493859,6 +503507,9 @@ github.com/f-a-r-a-z/extractwords,num_dependents_deps.dev:2 github.com/f-a-r-a-z/findahaiku,num_dependents_deps.dev:0 github.com/f-a-r-a-z/rhyming-part,num_dependents_deps.dev:0 github.com/f-a-r-a-z/syllables,num_dependents_deps.dev:0 +github.com/f-actions/font-bakery, +github.com/f-actions/hyperglot, +github.com/f-actions/opentype-sanitizer, github.com/f-amaral/apiagenda,num_dependents_deps.dev:0 github.com/f-chilmi/just-text-go,num_dependents_deps.dev:0 github.com/f-cloud/react-chat-panel,num_dependents_deps.dev:0 @@ -493887,6 +503538,7 @@ github.com/f-koehler/wgmgr, github.com/f-kubotar/node-sass-brunch,num_dependents_deps.dev:0 github.com/f-ld/airflow-alt-ldap, github.com/f-ld/node-deb,num_dependents_deps.dev:0 +github.com/f-lib/github-actions, github.com/f-list/fork-ts-checker-webpack-plugin,num_dependents_deps.dev:0 github.com/f-list/vue-ts,num_dependents_deps.dev:0 github.com/f-lopes/spring-mvc-test-utils,num_dependents_deps.dev:0 @@ -494051,6 +503703,8 @@ github.com/f18m/rpm-spec-dependency-analyzer, github.com/f1ames/maprereduce,num_dependents_deps.dev:0 github.com/f1ames/node-deatchbycaptcha,num_dependents_deps.dev:0 github.com/f1ames/plentiful-files,num_dependents_deps.dev:0 +github.com/f1lander/create-repository-action, +github.com/f1lander/delete-repository-action, github.com/f1le-transfer/client, github.com/f1lt3r/ansi-to-string,num_dependents_deps.dev:0 github.com/f1lt3r/axel,num_dependents_deps.dev:2 @@ -494224,6 +503878,7 @@ github.com/f5itc/swf-graph,num_dependents_deps.dev:0 github.com/f5networks/f5-ipam-controller,num_dependents_deps.dev:3 github.com/f5networks/k8s-bigip-ctlr,num_dependents_deps.dev:0 github.com/f5networks/terraform-provider-bigip,num_dependents_deps.dev:0 +github.com/f6wbl6/kubeflow-pipelines-deploy-action, github.com/f7ng/aether,num_dependents_deps.dev:0 github.com/f7ng/aether-cli,num_dependents_deps.dev:0 github.com/f7olivera/wea, @@ -494355,6 +504010,7 @@ github.com/fab1o/type-checking,num_dependents_deps.dev:0 github.com/fab2112/labtrade, github.com/fab95s/multilang-label-manager,num_dependents_deps.dev:0 github.com/fabacab/awesome-cybersecurity-blueteam,criticality_score:0.335480 +github.com/fabacab/jekyll-builder-for-github-pages-action, github.com/fabacus/node-bamboohr,num_dependents_deps.dev:0 github.com/fabacus/node-magento2,num_dependents_deps.dev:0 github.com/fabacus/node-revel,num_dependents_deps.dev:0 @@ -494365,6 +504021,34 @@ github.com/fabaff/penin, github.com/fabaff/python-iceportal, github.com/fabaff/python-pihole, github.com/fabaff/time-past, +github.com/fabasoad/data-format-converter-action, +github.com/fabasoad/icq-notify-action, +github.com/fabasoad/jsonbin-action, +github.com/fabasoad/linguist-action, +github.com/fabasoad/nsfw-detection-action, +github.com/fabasoad/pascal-action, +github.com/fabasoad/setup-brainfuck-action, +github.com/fabasoad/setup-cassandra-action, +github.com/fabasoad/setup-ciao-action, +github.com/fabasoad/setup-cloe-action, +github.com/fabasoad/setup-cobol-action, +github.com/fabasoad/setup-enry-action, +github.com/fabasoad/setup-graudit-action, +github.com/fabasoad/setup-jolie-action, +github.com/fabasoad/setup-kitten-action, +github.com/fabasoad/setup-lolcode-action, +github.com/fabasoad/setup-malbolge-action, +github.com/fabasoad/setup-mint-action, +github.com/fabasoad/setup-multi-gitter-action, +github.com/fabasoad/setup-piet-action, +github.com/fabasoad/setup-shakespeare-action, +github.com/fabasoad/setup-umka-action, +github.com/fabasoad/setup-wren-action, +github.com/fabasoad/setup-yorick-action, +github.com/fabasoad/translation-action, +github.com/fabasoad/twilio-fax-action, +github.com/fabasoad/twilio-voice-call-action, +github.com/fabasoad/yaml-json-xml-converter-action, github.com/fabbricadigitale/paper-chip,"Google,num_dependents_deps.dev:0" github.com/fabbricadigitale/proauth.js,num_dependents_deps.dev:0 github.com/fabcien/cashaddr-converter,num_dependents_deps.dev:0 @@ -494380,6 +504064,7 @@ github.com/fabdrol/signalk-windjs-plugin,num_dependents_deps.dev:0 github.com/fabe/gatsby-plugin-drive,num_dependents_deps.dev:0 github.com/fabe/gatsby-source-figma,num_dependents_deps.dev:0 github.com/fabe/node-spectacles,num_dependents_deps.dev:0 +github.com/fabeabe/git-sftp-action, github.com/fabean/flexbox-grid,num_dependents_deps.dev:0 github.com/fabean/massive-typo,num_dependents_deps.dev:0 github.com/fabean/no.js,num_dependents_deps.dev:0 @@ -494389,6 +504074,9 @@ github.com/fabedge/fabedge,num_dependents_deps.dev:0 github.com/fabel/oo-serializer,num_dependents_deps.dev:0 github.com/fabelx/isithacked,num_dependents_deps.dev:0 github.com/faber-lotto/grape_api_signature,num_dependents_deps.dev:0 +github.com/faberNovel/docker-android, +github.com/faberNovel/github-changelog-generator-action, +github.com/faberNovel/heart-action, github.com/faberNovel/iosappaudit,num_dependents_deps.dev:0 github.com/faberbee/spiderbee, github.com/faberf/datajuicer, @@ -494425,6 +504113,7 @@ github.com/fabian-thomas/cakecmsutils, github.com/fabian-thomas/odesli-cli, github.com/fabian-thomas/python-odesli, github.com/fabian-z/core,num_dependents_deps.dev:0 +github.com/fabian4/actions-push-anydir-to-anydir, github.com/fabianLeon/wc-header,num_dependents_deps.dev:0 github.com/fabianSorn/widgetmark, github.com/fabianTMC/mongoToSQL,num_dependents_deps.dev:0 @@ -494461,6 +504150,7 @@ github.com/fabiandev/node-require-fallback, github.com/fabiandev/split-by-path-webpack-plugin, github.com/fabiandev/ts-runtime,"criticality_score:0.314110,num_dependents_deps.dev:0" github.com/fabianfrz/ICAPrb-Server,num_dependents_deps.dev:0 +github.com/fabiangeisler/github-shotgrid-upload-action, github.com/fabiangermann/django-textblocks, github.com/fabiangom/Platzom,num_dependents_deps.dev:0 github.com/fabianhaef/Kolibree,num_dependents_deps.dev:0 @@ -494471,6 +504161,7 @@ github.com/fabianhoeft/raytracing,num_dependents_deps.dev:0 github.com/fabianishere/slf4n,num_dependents_deps.dev:0 github.com/fabiankaegy/blockkit,num_dependents_deps.dev:0 github.com/fabiankaegy/gutenberg-post-picker,num_dependents_deps.dev:0 +github.com/fabiankaegy/monitor-wordpress-dependencies-action, github.com/fabiankaegy/posts-to-pdf,num_dependents_deps.dev:0 github.com/fabiankay/react-svg-gauge,num_dependents_deps.dev:0 github.com/fabiankramm/notify,num_dependents_deps.dev:0 @@ -494495,6 +504186,7 @@ github.com/fabianmoronzirfas/prompt-4-scripts,num_dependents_deps.dev:0 github.com/fabianmoronzirfas/to-markdown-cli,num_dependents_deps.dev:0 github.com/fabianmoss/gamuth, github.com/fabianmurariu/graphblas-java-native,num_dependents_deps.dev:0 +github.com/fabiano-amaral/ecs-task-def-replacements, github.com/fabianoengler/dictvars, github.com/fabianofdf/labels-verify,num_dependents_deps.dev:0 github.com/fabianofranca/apollo-lib,num_dependents_deps.dev:0 @@ -494541,6 +504233,7 @@ github.com/fabicsp/vtv-test-storybook,num_dependents_deps.dev:0 github.com/fabid/d3-x3dom-axis,num_dependents_deps.dev:0 github.com/fabid/d3-x3dom-shape,num_dependents_deps.dev:0 github.com/fabid/series-generator,num_dependents_deps.dev:0 +github.com/fabidick22/detect-changes-action, github.com/fabiel-leon/rss-rewriter,num_dependents_deps.dev:0 github.com/fabiel-leon/rss-to-facebook,num_dependents_deps.dev:0 github.com/fabiel-leon/rss-to-telegram,num_dependents_deps.dev:0 @@ -494626,6 +504319,7 @@ github.com/fabiobatalha/crossrefapi, github.com/fabioberger/forms,num_dependents_deps.dev:0 github.com/fabiobiondi/angular-fullscreen,num_dependents_deps.dev:0 github.com/fabioboris/node-simple-crypto, +github.com/fabiocaccamo/create-matrix-action, github.com/fabiocaccamo/django-admin-interface,criticality_score:0.436760 github.com/fabiocaccamo/django-colorfield, github.com/fabiocaccamo/django-extra-settings, @@ -495073,6 +504767,7 @@ github.com/fabmax94/utils_plus, github.com/fabmesto/ionic-admob-fab,num_dependents_deps.dev:0 github.com/fabmesto/ionic-wp,num_dependents_deps.dev:0 github.com/fabmont/safelyRead,num_dependents_deps.dev:0 +github.com/fabn/rancher-login-action, github.com/fabnumdef/e-chauffeur_lib-vue,num_dependents_deps.dev:0 github.com/fabo871218/srtmp,num_dependents_deps.dev:0 github.com/fabon-f/kcna.rb,num_dependents_deps.dev:0 @@ -495085,7 +504780,9 @@ github.com/faboulaws/restful-model,num_dependents_deps.dev:0 github.com/faboweb/zliq,num_dependents_deps.dev:8 github.com/faboweb/zliq-stacktrace,num_dependents_deps.dev:0 github.com/faboyds/nem-generator,num_dependents_deps.dev:0 +github.com/fabpot-graveyard/pirum, github.com/fabpot/local-php-security-checker,num_dependents_deps.dev:0 +github.com/fabpot/sphinx-php, github.com/fabquenneville/MediaCurator, github.com/fabquo/FabCountry-CLI,num_dependents_deps.dev:0 github.com/fabregas/asynces, @@ -495126,6 +504823,7 @@ github.com/fabric-testbed/python-comanage-api, github.com/fabric-testbed/system-service-utils, github.com/fabric-ui/fabric-ui, github.com/fabric/fabric,criticality_score:0.522870 +github.com/fabric/patchwork, github.com/fabric8-analytics/cli-tools,num_dependents_deps.dev:0 github.com/fabric8-analytics/fabric8-analytics-dependency-editor,num_dependents_deps.dev:14 github.com/fabric8-analytics/fabric8-analytics-lsp-server,num_dependents_deps.dev:0 @@ -495223,6 +504921,7 @@ github.com/fabriceyhc/Sibyl, github.com/fabriceyhc/emoji_translate, github.com/fabriceyhc/pyfuzz, github.com/fabrician/distribution-maven-plugin,num_dependents_deps.dev:0 +github.com/fabriciobastian/download-release-asset-action, github.com/fabriciobastian/jsonrpc-client-websocket,num_dependents_deps.dev:0 github.com/fabriciodanioj/caneta-azul-pegadinha,num_dependents_deps.dev:0 github.com/fabriciofmsilva/js-tdd-course,num_dependents_deps.dev:0 @@ -495240,6 +504939,7 @@ github.com/fabriciomsdev/ng-generic-compare-function-for-select,num_dependents_d github.com/fabriciomsdev/simple-cnpj-validation-js,num_dependents_deps.dev:0 github.com/fabriciomsdev/simple-cpf-validation-js,num_dependents_deps.dev:0 github.com/fabriciomsdev/ts-utils-format-and-validate-values,num_dependents_deps.dev:0 +github.com/fabriciomurta/ensure-nuget-source, github.com/fabriciopk/adventofcode,num_dependents_deps.dev:0 github.com/fabriciorby/maven-surefire-junit5-tree-reporter,num_dependents_deps.dev:0 github.com/fabriciorhs/skd3,num_dependents_deps.dev:0 @@ -495312,6 +505012,15 @@ github.com/fabrix-app/spool-tapestries,num_dependents_deps.dev:0 github.com/fabrix-app/spool-tasks,num_dependents_deps.dev:0 github.com/fabrix-app/spool-tracker,num_dependents_deps.dev:0 github.com/fabrix-app/spool-winston,num_dependents_deps.dev:0 +github.com/fabriziocacicia/actions-template-sync, +github.com/fabriziocacicia/check-latest-commit-conventional-action, +github.com/fabriziocacicia/commit-and-push-to-protected-branch-action, +github.com/fabriziocacicia/delete-tags-without-release-action, +github.com/fabriziocacicia/keep-history-conventional, +github.com/fabriziocacicia/move-latest-commit-to-pr-action, +github.com/fabriziocacicia/self-delete-workflow-action, +github.com/fabriziocacicia/semver-compare-action, +github.com/fabriziocacicia/undo-latest-commit-action, github.com/fabriziocosta/GraphLearn, github.com/fabriziocucci/yacl4j,num_dependents_deps.dev:6 github.com/fabriziogiudici/fancyBox,num_dependents_deps.dev:0 @@ -495327,6 +505036,7 @@ github.com/fabriziopandini/capi-conditions,num_dependents_deps.dev:0 github.com/fabriziopandini/cluster-api,num_dependents_deps.dev:0 github.com/fabriziopandini/vagrant-playbook, github.com/fabrizioromanelli/vat-check,num_dependents_deps.dev:0 +github.com/fabriziosalmi/cloudflare-dns-export-prefix, github.com/fabrom/log-http2file,num_dependents_deps.dev:0 github.com/fabrouy/easy_poller,num_dependents_deps.dev:0 github.com/fabrv/amigo,num_dependents_deps.dev:0 @@ -495406,7 +505116,10 @@ github.com/fabytm/Outage-Detector, github.com/fac/ania,num_dependents_deps.dev:0 github.com/fac/fa-css-utilities, github.com/fac/fa-harness-tools,num_dependents_deps.dev:0 +github.com/fac/harness-deploy-action, github.com/fac/origin,num_dependents_deps.dev:0 +github.com/fac/ruby-gem-push-action, +github.com/fac/ruby-gem-setup-credentials-action, github.com/fac2003/perceiver-multi-modality-pytorch, github.com/fac2003/pytorch_polkadots, github.com/facade/flare-client-js,num_dependents_deps.dev:0 @@ -495418,6 +505131,7 @@ github.com/facade/ignition-ui,num_dependents_deps.dev:0 github.com/facadejs/Facade.js,num_dependents_deps.dev:0 github.com/facadus/kelper,num_dependents_deps.dev:0 github.com/facaiy/math-expression-parser,num_dependents_deps.dev:0 +github.com/facalz/mdl-watching-box, github.com/facascante/sharky,num_dependents_deps.dev:0 github.com/facastagnini/python-chirimbolito, github.com/facbookresearch/mtenv, @@ -495552,8 +505266,10 @@ github.com/facebook/prop-types,"criticality_score:0.537730,num_dependents_deps.d github.com/facebook/prophet,criticality_score:0.567080 github.com/facebook/proxygen,criticality_score:0.705300 github.com/facebook/pyaib, +github.com/facebook/pyre-action, github.com/facebook/pyre-check,criticality_score:0.589690 github.com/facebook/pyre2, +github.com/facebook/pysa-action, github.com/facebook/react,"criticality_score:0.878790,num_dependents_deps.dev:644079" github.com/facebook/react-360,num_dependents_deps.dev:0 github.com/facebook/react-devtools,num_dependents_deps.dev:5451 @@ -495598,6 +505314,7 @@ github.com/facebookarchive/php-graph-sdk,criticality_score:0.369800 github.com/facebookarchive/react-native-custom-components,num_dependents_deps.dev:78 github.com/facebookarchive/react-native-deprecated-modules,num_dependents_deps.dev:18 github.com/facebookarchive/rpool,num_dependents_deps.dev:0 +github.com/facebookarchive/sapp-action, github.com/facebookarchive/stackerr,num_dependents_deps.dev:0 github.com/facebookarchive/testname,num_dependents_deps.dev:0 github.com/facebookarchive/waitout,num_dependents_deps.dev:0 @@ -496015,6 +505732,7 @@ github.com/facundobatista/simplecalc, github.com/facundobatista/unitconv, github.com/facundobatista/yaswfp, github.com/facundofarias/awesome-websockets,criticality_score:0.340590 +github.com/facundofarias/deploybot-action, github.com/facundofarias/ecb-exchange-rates,num_dependents_deps.dev:0 github.com/facundofernandez/videojs-css,num_dependents_deps.dev:0 github.com/facundofernandez/videojs-dvr,num_dependents_deps.dev:0 @@ -496056,6 +505774,7 @@ github.com/faddat/clayfour,num_dependents_deps.dev:0 github.com/faddat/claysix,num_dependents_deps.dev:0 github.com/faddat/clint-demo,num_dependents_deps.dev:0 github.com/faddat/dig,num_dependents_deps.dev:0 +github.com/faddat/imager, github.com/faddat/investo-demo,num_dependents_deps.dev:0 github.com/faddat/splash,num_dependents_deps.dev:0 github.com/faddat/testchain,num_dependents_deps.dev:0 @@ -496086,6 +505805,7 @@ github.com/fadeit/prerender-postgre-cache,num_dependents_deps.dev:0 github.com/fadeit/responsive-html-email-signature,num_dependents_deps.dev:0 github.com/fadel/pytorch_ema, github.com/fadellh/alterra-go,num_dependents_deps.dev:0 +github.com/fadenb/Matrix-Chat-Message, github.com/fadendaten/ski_binding_calculator,num_dependents_deps.dev:0 github.com/fadendaten/succession,num_dependents_deps.dev:0 github.com/fadeoutsoftware/WASDI, @@ -496106,6 +505826,7 @@ github.com/fadhilx/toyyibpay-nodejs,num_dependents_deps.dev:0 github.com/fadhlanfm/cookie-splitter,num_dependents_deps.dev:0 github.com/fadhlanhawali/functional-e-commerce,num_dependents_deps.dev:0 github.com/fadhlimulyana20/go_backend,num_dependents_deps.dev:0 +github.com/fadi-quader-mox/pr-version-bump, github.com/fadich/tree-guardian, github.com/fadidevv/react-native-fblogin,num_dependents_deps.dev:0 github.com/fadilaharifki/box-stars,num_dependents_deps.dev:0 @@ -496153,6 +505874,7 @@ github.com/fadoss/maude-bindings, github.com/fadoss/umaudemc, github.com/fadoun-seydou/projet, github.com/fadrizul/twigjs,num_dependents_deps.dev:0 +github.com/fadur/service-state-action, github.com/fadziljusri/npx-vcard,num_dependents_deps.dev:0 github.com/faebeee/complex-debug,num_dependents_deps.dev:0 github.com/faebeee/complex-engine, @@ -496180,6 +505902,7 @@ github.com/faebulicious/ui5-task-extendedI18nCheck,num_dependents_deps.dev:0 github.com/faebzz/localStore,num_dependents_deps.dev:0 github.com/faebzz/since,num_dependents_deps.dev:0 github.com/fael/hyper-cs16, +github.com/faelau/rpmbuild, github.com/faeldt/base64id,num_dependents_deps.dev:40845 github.com/faeldt/jpmobile-ip,num_dependents_deps.dev:0 github.com/faeldt/redis-mock,num_dependents_deps.dev:0 @@ -496347,6 +506070,7 @@ github.com/fahimc/npm-proxy-switch,num_dependents_deps.dev:0 github.com/fahimc/polyutil,num_dependents_deps.dev:0 github.com/fahimc/staging-bower,num_dependents_deps.dev:0 github.com/fahimfarookme/fsm4js,num_dependents_deps.dev:0 +github.com/fahimshahrierrasel/Xamarin-Droid-Builder, github.com/fahimvalanchery/kerala-data,num_dependents_deps.dev:0 github.com/fahlmant/lox,num_dependents_deps.dev:0 github.com/fahmi1597/microservices-go,num_dependents_deps.dev:0 @@ -496428,6 +506152,7 @@ github.com/fair-search/fairsearchdeltr-java,num_dependents_deps.dev:0 github.com/fair-search/fairsearchdeltr-python, github.com/fair-software/fairtally, github.com/fair-software/howfairis, +github.com/fair-software/howfairis-github-action, github.com/fair-workflows/fairworkflows, github.com/fair-workflows/nanopub, github.com/fairDataSociety/fds.js,num_dependents_deps.dev:0 @@ -496586,6 +506311,7 @@ github.com/faizanah/-conduit-app-response,num_dependents_deps.dev:0 github.com/faizanaryan94/go_tutorial,num_dependents_deps.dev:0 github.com/faizanaryan94/golang-rest-api-mux-with-gorm,num_dependents_deps.dev:0 github.com/faizanaryan94/golang_auth_jwt,num_dependents_deps.dev:0 +github.com/faizanf47/post-renderer-action, github.com/faizanhussainrabbani/golangpracticeexercise,num_dependents_deps.dev:0 github.com/faizans-cuelogic/django-multimedia-basic-chat, github.com/faizanu94/key-value-exists,num_dependents_deps.dev:0 @@ -496732,6 +506458,7 @@ github.com/fakundo/redux-getters,num_dependents_deps.dev:0 github.com/fakundo/sass-replace-webpack-plugin,num_dependents_deps.dev:0 github.com/fakundo/webpack-assets-loader,num_dependents_deps.dev:0 github.com/fakundo/webpack-po-messages-loader,num_dependents_deps.dev:0 +github.com/fal-ai/dbt-cloud-action, github.com/fal-works/bundle-helper,num_dependents_deps.dev:0 github.com/fal-works/cli-bespoke-js,num_dependents_deps.dev:0 github.com/fal-works/creative-coding-core,num_dependents_deps.dev:0 @@ -496937,6 +506664,8 @@ github.com/fallying/towerofhanoi,num_dependents_deps.dev:0 github.com/falm/number-timeago,num_dependents_deps.dev:0 github.com/falmar/react-adm-lte,num_dependents_deps.dev:0 github.com/falmp/opsworks-instances,num_dependents_deps.dev:0 +github.com/falnyr/aws-sam-deploy-action, +github.com/falnyr/replace-env-vars-action, github.com/faloker/bingger,num_dependents_deps.dev:0 github.com/faloker/wallarm-fast-cli, github.com/falon/telegraf-plugins,num_dependents_deps.dev:0 @@ -496987,6 +506716,7 @@ github.com/falstack/vue-roll-list,num_dependents_deps.dev:0 github.com/falstack/vue-waterfall,num_dependents_deps.dev:0 github.com/falstack/vuepress-code-box,num_dependents_deps.dev:0 github.com/falsy/next-api-router,num_dependents_deps.dev:0 +github.com/falti/dotenv-action, github.com/faluciano/anime-go-bot,num_dependents_deps.dev:0 github.com/falzm/again,num_dependents_deps.dev:0 github.com/falzm/bunny,num_dependents_deps.dev:0 @@ -497022,6 +506752,7 @@ github.com/famicity/ngImgCrop,num_dependents_deps.dev:0 github.com/famicity/thou-shalt-not,num_dependents_deps.dev:0 github.com/familiar-studio/flickity-lightbox,num_dependents_deps.dev:0 github.com/familiar-studio/generator-familiar-craft,num_dependents_deps.dev:0 +github.com/familiohq/appcenter-distribute-action, github.com/family-guy/aiostorage, github.com/family-guy/easy-german, github.com/family-guy/python-pypi-example, @@ -497285,6 +507016,7 @@ github.com/fangasvsass/react-native-fast-image,num_dependents_deps.dev:0 github.com/fangbao-0418/demo,num_dependents_deps.dev:0 github.com/fangbao-0418/react-frame,num_dependents_deps.dev:0 github.com/fangbinwei/algorithm-practice,num_dependents_deps.dev:0 +github.com/fangbinwei/aliyun-oss-website-action, github.com/fangcao7618/nodes,num_dependents_deps.dev:0 github.com/fangdd-open/duo-doc,num_dependents_deps.dev:0 github.com/fangdingjun/archiver,num_dependents_deps.dev:0 @@ -497371,6 +507103,7 @@ github.com/fangqifan/request-middleware-pipeline,num_dependents_deps.dev:0 github.com/fangqifan/request-queue-middleware,num_dependents_deps.dev:0 github.com/fangqifan/signalr-client-miniapp,num_dependents_deps.dev:0 github.com/fangqifan/signalr-pipeline-http-client,num_dependents_deps.dev:0 +github.com/fangqiuming/latest-release-version, github.com/fangqk1991/ali-oss-lazy-upload,num_dependents_deps.dev:0 github.com/fangqk1991/app-error,num_dependents_deps.dev:0 github.com/fangqk1991/fc-assert,num_dependents_deps.dev:0 @@ -497911,6 +507644,7 @@ github.com/fanyingmao/toch,num_dependents_deps.dev:0 github.com/fanyingmao/ym-mogodb-sql,num_dependents_deps.dev:0 github.com/fanyingmao/ym-mongodb-sql,num_dependents_deps.dev:0 github.com/fanyinng/vue-my,num_dependents_deps.dev:0 +github.com/fanykettleio/github-action-wpe-site-deploy, github.com/fanyong920/jvppeteer,num_dependents_deps.dev:0 github.com/fanyongkang87/ykfan_utils, github.com/fanyonglong/DxBuildProject,num_dependents_deps.dev:0 @@ -498045,6 +507779,8 @@ github.com/faradayio/through2-jsonwriter,num_dependents_deps.dev:0 github.com/faradayio/through2-linereader,num_dependents_deps.dev:0 github.com/faradayio/through2-linewriter,num_dependents_deps.dev:0 github.com/faradayio/tilesplash,num_dependents_deps.dev:0 +github.com/faradaytrs/array-to-object-action, +github.com/faradaytrs/substitute-secrets-action, github.com/faradaytrs/timezone-mapper,num_dependents_deps.dev:0 github.com/faradey/deployer,num_dependents_deps.dev:0 github.com/farafonoff/grunt-webpack, @@ -498080,6 +507816,7 @@ github.com/faraway-aim/proto,num_dependents_deps.dev:0 github.com/faraway-aim/service-common,num_dependents_deps.dev:0 github.com/farazahmad759/dricup-cli,num_dependents_deps.dev:0 github.com/farazahmad759/dricup-crud-express,num_dependents_deps.dev:0 +github.com/farazatarodi/pusher-trigger, github.com/farazdagi/frenzy,num_dependents_deps.dev:0 github.com/farazdagi/go-bindata,num_dependents_deps.dev:0 github.com/farazfaraji/zoho-packages, @@ -498348,7 +508085,10 @@ github.com/farmerbb/Taskbar,criticality_score:0.418090 github.com/farmerconnect/eslint-config-node-ts,num_dependents_deps.dev:0 github.com/farmerconnect/eslint-config-ts,num_dependents_deps.dev:0 github.com/farmerconnect/prettier-config,num_dependents_deps.dev:0 +github.com/farmersdog/clubhouse-pr, +github.com/farmersdog/clubhouse-workflow-action, github.com/farmersdog/node-bunyan-syslog,num_dependents_deps.dev:0 +github.com/farmersdog/release, github.com/farmersedgeinc/yaml-crypt,num_dependents_deps.dev:0 github.com/farmerx/elasticsql,num_dependents_deps.dev:0 github.com/farmerx/gomini,num_dependents_deps.dev:0 @@ -498386,6 +508126,7 @@ github.com/farooqad0/ClayMineralsIdentify, github.com/farooqad0/NPHIconvert, github.com/faropoulos/rx-cart,num_dependents_deps.dev:0 github.com/faros-ai/airbyte-connectors,num_dependents_deps.dev:0 +github.com/faros-ai/faros-cicd-github-action, github.com/faros-ai/faros-python-client, github.com/faroukelkholy/myhttp,num_dependents_deps.dev:0 github.com/farpat/api-js,num_dependents_deps.dev:0 @@ -498402,6 +508143,8 @@ github.com/farrrr/import-sort-style-far,num_dependents_deps.dev:0 github.com/farrrr/laravel-elixir-css-url-adjuster,num_dependents_deps.dev:0 github.com/farrrr/laravel-elixir-webpack-ex,num_dependents_deps.dev:0 github.com/farrrr/laravel-elixir6-useref,num_dependents_deps.dev:0 +github.com/farrukh90/github-actions-for-marketplace, +github.com/farrukh90/github-actions-release, github.com/farrukhibnakbar/channel-in-golang,num_dependents_deps.dev:0 github.com/farrukhibnakbar/concurrensy-in-golang,num_dependents_deps.dev:0 github.com/farrukhny/darwin,num_dependents_deps.dev:0 @@ -498484,6 +508227,7 @@ github.com/faruken/lesscss, github.com/faruken/webpy-celery, github.com/farukozdemirz/react-native-scale-alert,num_dependents_deps.dev:0 github.com/faruktoptas/FancyShowCaseView,criticality_score:0.303200 +github.com/faruktoptas/android-github-actions-emulator, github.com/faruoqi/di-golang,num_dependents_deps.dev:0 github.com/faruoqi/logger,num_dependents_deps.dev:0 github.com/faruqfadhil/hybrida,num_dependents_deps.dev:0 @@ -498540,6 +508284,7 @@ github.com/farzher/prelude-ls-extended,num_dependents_deps.dev:0 github.com/fasaxc/libcalico-go,num_dependents_deps.dev:0 github.com/fascalsj/nodejs-hello-world-library,num_dependents_deps.dev:0 github.com/fascoli/solr-status,num_dependents_deps.dev:0 +github.com/fasetto/dokku-deploy, github.com/fasetto/krunker.io,num_dependents_deps.dev:0 github.com/fasetto/python-cexio, github.com/fasez26/CDMX009-MdLinks,num_dependents_deps.dev:0 @@ -498607,6 +508352,8 @@ github.com/fast-box/fastbox,num_dependents_deps.dev:0 github.com/fast-cache/fast-cache,num_dependents_deps.dev:0 github.com/fast-cache2/fast-cache2,num_dependents_deps.dev:0 github.com/fast-classpath-scanner/fast-classpath-scanner,num_dependents_deps.dev:0 +github.com/fast-facts/chrome-extension-upload-action, +github.com/fast-facts/ng-update, github.com/fast-flow/admin,num_dependents_deps.dev:0 github.com/fast-flow/body.react,num_dependents_deps.dev:2 github.com/fast-flow/checkbox.react,num_dependents_deps.dev:0 @@ -498885,6 +508632,7 @@ github.com/fastify/fastify-zipkin,num_dependents_deps.dev:0 github.com/fastify/fluent-json-schema,num_dependents_deps.dev:6 github.com/fastify/fluent-schema,num_dependents_deps.dev:20 github.com/fastify/forwarded,num_dependents_deps.dev:156 +github.com/fastify/github-action-merge-dependabot, github.com/fastify/light-my-request,num_dependents_deps.dev:3256 github.com/fastify/middleman,num_dependents_deps.dev:2534 github.com/fastify/point-of-view,num_dependents_deps.dev:12 @@ -498949,6 +508697,7 @@ github.com/fastlmm/bed-reader, github.com/fastlmm/fastlmmclib, github.com/fastlorenzo/vault-openvpn,num_dependents_deps.dev:0 github.com/fastly/cli,num_dependents_deps.dev:0 +github.com/fastly/compute-actions, github.com/fastly/ember-anti-clickjacking,num_dependents_deps.dev:0 github.com/fastly/epoch,num_dependents_deps.dev:0 github.com/fastly/fastly-py, @@ -498982,6 +508731,7 @@ github.com/fastmonkeys/pontus, github.com/fastmonkeys/python-verkkomaksut, github.com/fastmonkeys/qstring, github.com/fastmonkeys/stellar, +github.com/fastndead/render-deploy-action, github.com/fastner/konstrukteur, github.com/fastnlp/fastHan, github.com/fastnlp/fastNLP,criticality_score:0.443740 @@ -499166,6 +508916,7 @@ github.com/fatelei/RedisHashShard,num_dependents_deps.dev:0 github.com/fatelei/bit-bee, github.com/fatelei/changyou_api, github.com/fatelei/crawl_wx, +github.com/fatelei/github-notify-actions, github.com/fatelei/go-feishu,num_dependents_deps.dev:0 github.com/fatelei/gulp-deploy-ftp,num_dependents_deps.dev:0 github.com/fatelei/hash-ring,num_dependents_deps.dev:0 @@ -499211,6 +508962,7 @@ github.com/fatesigner/utils,num_dependents_deps.dev:0 github.com/fatesigner/vue-lib,num_dependents_deps.dev:0 github.com/fatesigner/wx-jssdk,num_dependents_deps.dev:0 github.com/fatetop/baokimApi,num_dependents_deps.dev:0 +github.com/fateyan/action-discord-notifier, github.com/fatfalcon/aws-utils,num_dependents_deps.dev:0 github.com/fatfalcon/stepfunctionsmodel,num_dependents_deps.dev:0 github.com/fatfan/gitpb,num_dependents_deps.dev:0 @@ -499322,6 +509074,8 @@ github.com/fatihsucu/python-mathpix, github.com/fatihsucu/python-skew-correction, github.com/fatihsucu/pyzomato, github.com/fatihtelis/react-lorem-ipsum,num_dependents_deps.dev:0 +github.com/fatihtokus/scan2html-action, +github.com/fatihtokus/tf-visualizer-action, github.com/fatimaaltaf/2020-04-17-personal-npm-package,num_dependents_deps.dev:0 github.com/fatimaaltaf/Lotide,num_dependents_deps.dev:0 github.com/fatimanguyen2/lotide,num_dependents_deps.dev:0 @@ -499331,6 +509085,9 @@ github.com/fatisar/arrow, github.com/fatisar/moment-range,num_dependents_deps.dev:0 github.com/fatisar/python-mailgun3, github.com/fatisar/us-shapes, +github.com/fatjyc/push-gcr-action, +github.com/fatjyc/tagger-action, +github.com/fatjyc/update-submodule-action, github.com/fatlama/async-sqs-tasks-js, github.com/fatlama/fl-secretsmanager-caching-js, github.com/fatlama/secrets-fetcher-js, @@ -499413,6 +509170,7 @@ github.com/fattihkoca/vuejs-table,num_dependents_deps.dev:0 github.com/fattihkoca/vuejs-title, github.com/fattmerchantorg/fattmerchant_python_client, github.com/fattomhk/react-native-webview-with-refresh,num_dependents_deps.dev:0 +github.com/fatton139/pr-comment-file-size, github.com/fattureincloud/create-react-app,num_dependents_deps.dev:0 github.com/fattureincloud/fattureincloud-python-sdk, github.com/fattycrabcakes/aligned-sum-operation,num_dependents_deps.dev:0 @@ -499460,6 +509218,7 @@ github.com/faulkner/cubist,num_dependents_deps.dev:0 github.com/faulkner/sentry-geo, github.com/faulkner/sphero, github.com/faulknercs/Knockstrap,num_dependents_deps.dev:0 +github.com/faultaddr/PCL-CMake-Action, github.com/faultless/create-react-app,num_dependents_deps.dev:0 github.com/faultline/faultline-js,num_dependents_deps.dev:0 github.com/faultmap/faultmaplib, @@ -499546,6 +509305,7 @@ github.com/faustomorales/retinanetjs,num_dependents_deps.dev:0 github.com/faustomorales/vit-keras, github.com/faustoroger/libpythonpro, github.com/faustotnc/BlueBerryMath, +github.com/faustro/create-an-issue, github.com/faustuzas/web_development,num_dependents_deps.dev:0 github.com/faustyn-p/yeelight-service,num_dependents_deps.dev:0 github.com/fauteuil/async-function-delay,num_dependents_deps.dev:0 @@ -499633,6 +509393,7 @@ github.com/favware/npm-deprecate,num_dependents_deps.dev:0 github.com/favware/querystring,num_dependents_deps.dev:0 github.com/favware/rollup-type-bundler,num_dependents_deps.dev:0 github.com/favware/skip-dependency,num_dependents_deps.dev:0 +github.com/favware/ssh-remote-action, github.com/favware/syntax-highlighter,num_dependents_deps.dev:0 github.com/favware/unescape,num_dependents_deps.dev:0 github.com/favware/yamlreader,num_dependents_deps.dev:0 @@ -499640,6 +509401,7 @@ github.com/favware/zalgo,num_dependents_deps.dev:0 github.com/favyen/miris,num_dependents_deps.dev:0 github.com/fawad1985/kc-diagnostics, github.com/fawaz-ahmed/react-native-read-more,num_dependents_deps.dev:0 +github.com/fawazahmed0/action-debug, github.com/fawazahmed0/youtube-uploader,num_dependents_deps.dev:0 github.com/fawazhussain/link-parser,num_dependents_deps.dev:0 github.com/fawazshah/currency-cli,num_dependents_deps.dev:0 @@ -499652,6 +509414,7 @@ github.com/fawkes18/nba-betting-scaping-api, github.com/fawkesley/postmark,num_dependents_deps.dev:0 github.com/fawmi/vue-google-maps, github.com/fawry-api/fawry-node,num_dependents_deps.dev:0 +github.com/fawwaz/afrisal-pr-tracker-action, github.com/fawwazaf/alta-task,num_dependents_deps.dev:0 github.com/fawwazaf/soal2_hacker_rank_alta,num_dependents_deps.dev:0 github.com/fawwazaf/test_workflow,num_dependents_deps.dev:0 @@ -500028,6 +509791,7 @@ github.com/fbriden/alpaca-finance-rs,num_dependents_deps.dev:0 github.com/fbriden/market-finance-rs,num_dependents_deps.dev:1 github.com/fbriden/yahoo-finance-rs,num_dependents_deps.dev:2 github.com/fbrinker/raspi-pin-label-translator,num_dependents_deps.dev:0 +github.com/fbritoferreira/deno-deploy-solid-start, github.com/fbruandrade/maratona-fullcycle,num_dependents_deps.dev:0 github.com/fbrundu/py_session, github.com/fbrundu/pymrmr, @@ -500075,6 +509839,7 @@ github.com/fcabanasm/react-font-size-resizer,num_dependents_deps.dev:0 github.com/fcabanasm/react-purchase-cart,num_dependents_deps.dev:0 github.com/fcabestre/Scala-MQTT-client,num_dependents_deps.dev:0 github.com/fcagalj/geo-transformer,num_dependents_deps.dev:0 +github.com/fcakyon/conda-publish-action, github.com/fcakyon/confplot, github.com/fcakyon/craft_text_detector, github.com/fcakyon/deeptext, @@ -500244,6 +510009,7 @@ github.com/fchristl/ldap-self-rest-service,num_dependents_deps.dev:0 github.com/fchristl/ngx-easily-draggable,num_dependents_deps.dev:0 github.com/fchristl/ttrss-js-api,num_dependents_deps.dev:0 github.com/fchristle/winston-gelf,num_dependents_deps.dev:4 +github.com/fchyla/deploy-hugo-to-gcs, github.com/fcibook/quick,num_dependents_deps.dev:2 github.com/fcicc/py-jobject, github.com/fcingolani/cammesa-api,num_dependents_deps.dev:0 @@ -500278,6 +510044,7 @@ github.com/fcmatteo/express-antiflood,num_dependents_deps.dev:0 github.com/fcmatteo/express-antiflood-redis,num_dependents_deps.dev:0 github.com/fcmatteo/insertion-sort-js,num_dependents_deps.dev:0 github.com/fcocc77/golang_util,num_dependents_deps.dev:0 +github.com/fcodelabs/react-deploy-github-pages-action, github.com/fcodelabs/thapal,num_dependents_deps.dev:0 github.com/fcofabricio/primevue, github.com/fcofdez/alcaudon,num_dependents_deps.dev:0 @@ -500472,6 +510239,7 @@ github.com/fdabek1/ehr-functions, github.com/fdabek1/rura, github.com/fdabrandao/vpsolver, github.com/fdaciuk/ajax,"criticality_score:0.312990,num_dependents_deps.dev:0" +github.com/fdaciuk/auto-label, github.com/fdaciuk/boleto,num_dependents_deps.dev:0 github.com/fdaciuk/calculatr,num_dependents_deps.dev:0 github.com/fdaciuk/clima,num_dependents_deps.dev:0 @@ -500522,6 +510290,8 @@ github.com/fdch/dreamsound, github.com/fdciabdul/BCA-Mutasi-Scraper,num_dependents_deps.dev:0 github.com/fdciabdul/lafzi-js, github.com/fdcl-nrf/fym, +github.com/fddayan/archive-exists, +github.com/fddayan/chromatic-should-deploy, github.com/fddayan/morning-pages-journal,num_dependents_deps.dev:0 github.com/fdddf/vue-aplayer,num_dependents_deps.dev:0 github.com/fde31/max-js-bundler,num_dependents_deps.dev:0 @@ -500544,6 +510314,7 @@ github.com/fdefabricio/leetcode-in-go,num_dependents_deps.dev:0 github.com/fdefelici/hello-npm,num_dependents_deps.dev:0 github.com/fdefelici/react-bootstrap-combobox,num_dependents_deps.dev:0 github.com/fdegier/JablotronPy, +github.com/fdegir/ega, github.com/fdegrave/djangodoo, github.com/fdehau/deck,num_dependents_deps.dev:0 github.com/fdehau/tmpl,num_dependents_deps.dev:0 @@ -500601,6 +510372,8 @@ github.com/fdhadzh/node-google-feed,num_dependents_deps.dev:0 github.com/fdhadzh/node-yandex-rich,num_dependents_deps.dev:0 github.com/fdiazaguirre/ngCarouselDirective,num_dependents_deps.dev:0 github.com/fdidron/sensors,num_dependents_deps.dev:0 +github.com/fdiesel/github-action-deploy-aws-lightsail-container, +github.com/fdiesel/github-action-node-release, github.com/fdietz/heki.css,num_dependents_deps.dev:0 github.com/fdietz/sprite_generator,num_dependents_deps.dev:0 github.com/fdietze/lodium,num_dependents_deps.dev:0 @@ -500624,6 +510397,7 @@ github.com/fdiotalevi/trunkly-ruby,num_dependents_deps.dev:0 github.com/fdiskyou/kcshell, github.com/fdistorted/gokeeper,num_dependents_deps.dev:0 github.com/fdjkgh580/vmodel.js,num_dependents_deps.dev:0 +github.com/fdkevin0/azure-china-cdn-purge, github.com/fdmarcin/benerator-cumberpy, github.com/fdmitnick/homework,num_dependents_deps.dev:0 github.com/fdmitnick/test_code,num_dependents_deps.dev:0 @@ -500641,6 +510415,7 @@ github.com/fdorantesm/asapp, github.com/fdorantesm/asynkstorage,num_dependents_deps.dev:0 github.com/fdorantesm/gosp.css,num_dependents_deps.dev:0 github.com/fdorg/flashdevelop,criticality_score:0.536860 +github.com/fdosani/run-edgetest-action, github.com/fdouetteau/PyMapReduce, github.com/fdouetteau/bottle-mongodb-plugin, github.com/fdoxyz/martilla,num_dependents_deps.dev:0 @@ -500650,6 +510425,7 @@ github.com/fdr/envconsul,num_dependents_deps.dev:0 github.com/fdr345/myjob,num_dependents_deps.dev:0 github.com/fdrennan/ndexr_numdata, github.com/fdrennan/ndexr_reddit, +github.com/fdroessler/awesome-stargazers, github.com/fdruide/postcss-bem-fix,num_dependents_deps.dev:0 github.com/fdruide/stylelint-selector-last-no-trailing-comma,num_dependents_deps.dev:0 github.com/fds-dev/fds-cli, @@ -500762,6 +510538,7 @@ github.com/fearmear/prefix-selector-loader,num_dependents_deps.dev:0 github.com/fearmear/react-native-port-watchdog,num_dependents_deps.dev:0 github.com/fearmear/rexsub,num_dependents_deps.dev:0 github.com/fearoff999/multiapi,num_dependents_deps.dev:0 +github.com/fearphage/shellcheck-action, github.com/fearsd/django-logging-middleware, github.com/fearthecowboy/dotnet,num_dependents_deps.dev:2 github.com/fearthecowboy/static-link, @@ -500990,6 +510767,7 @@ github.com/feathersjs/socketio,num_dependents_deps.dev:0 github.com/feathersjs/socketio-client,num_dependents_deps.dev:2 github.com/feathersjs/tools,num_dependents_deps.dev:24 github.com/feathersjs/transport-commons,num_dependents_deps.dev:2 +github.com/featherweight-design/collect-directory-names-by-file-glob, github.com/featherweight-design/component-library, github.com/featherweightweb/django-composer, github.com/featherweightweb/revive-ajax.js,num_dependents_deps.dev:0 @@ -501232,6 +511010,8 @@ github.com/fedecalendino/apple-health, github.com/fedecalendino/hooked-on-django, github.com/fedecalendino/nintendeals, github.com/fedecalendino/pysub-parser, +github.com/fedecalendino/slack-release-notifier, +github.com/fedecalendino/sonarqube-scanner-trigger, github.com/fedecalendino/wrap-genius, github.com/fedecech/auto_events, github.com/fedecia/gmail-api-sync, @@ -501333,6 +511113,7 @@ github.com/fedepaol/PostmanLib--Rings-Twice--Android,num_dependents_deps.dev:0 github.com/fedepazos95/aws-appsync-request-wrapper,num_dependents_deps.dev:0 github.com/fedeperin/github-repo-cards,num_dependents_deps.dev:0 github.com/feder1co5oave/ipsec_exporter,num_dependents_deps.dev:0 +github.com/federacy/scan-action, github.com/federalies/dynamoco,num_dependents_deps.dev:0 github.com/federated-wiki/wiki-plugin-fivestar,num_dependents_deps.dev:0 github.com/federatedai/kubefate,num_dependents_deps.dev:0 @@ -501428,6 +511209,7 @@ github.com/fedor/node-becky,num_dependents_deps.dev:0 github.com/fedor/node-no-config,num_dependents_deps.dev:0 github.com/fedor/node-require-all-root,num_dependents_deps.dev:0 github.com/fedor/redux-p,num_dependents_deps.dev:0 +github.com/fedora-copr/vcs-diff-lint-action, github.com/fedora-infra/anitya, github.com/fedora-infra/askbot-fedmsg, github.com/fedora-infra/bodhi, @@ -501488,6 +511270,7 @@ github.com/fedora-python/pyp2rpm, github.com/fedora-python/python-ethtool, github.com/fedora-python/taskotron-python-versions, github.com/fedora-python/tox-current-env, +github.com/fedora-python/tox-github-action, github.com/fedora-ruby/gem2rpm,num_dependents_deps.dev:0 github.com/fedora-static-analysis/firehose, github.com/fedora-static-analysis/gccinvocation, @@ -501768,8 +511551,10 @@ github.com/feeloc/slate-build,num_dependents_deps.dev:0 github.com/feelonewong/ifeel-design-vue,num_dependents_deps.dev:0 github.com/feelonewong/volant-tpl,num_dependents_deps.dev:0 github.com/feelool007/material-ui-datatable,num_dependents_deps.dev:0 +github.com/feeloor/azure-static-website-deploy, github.com/feeloor/ng-extension-schematics,num_dependents_deps.dev:0 github.com/feeloor/ng-timeparser,num_dependents_deps.dev:0 +github.com/feelpp/action-install-feelpp, github.com/feelpp/asciidoctor-remote-include-processor,num_dependents_deps.dev:0 github.com/feelsantiago/feel-logger,num_dependents_deps.dev:0 github.com/feelsantiago/react-native-animated-counter,num_dependents_deps.dev:0 @@ -501867,6 +511652,7 @@ github.com/feh/guess,num_dependents_deps.dev:0 github.com/feheap/gopractice,num_dependents_deps.dev:0 github.com/fehepe/backend-restaurant-transactions-visualizer,num_dependents_deps.dev:0 github.com/fehlfarbe/python-aruco, +github.com/fehlhabers/versed, github.com/fehlix/electron-simple-templates,num_dependents_deps.dev:0 github.com/fehlmach/go-demo,num_dependents_deps.dev:0 github.com/fehlmach/rains,num_dependents_deps.dev:0 @@ -501998,6 +511784,7 @@ github.com/feishu-sdk-python/pyfs-decrypt, github.com/feishu-sdk-python/pyfs-message, github.com/feishu-sdk-python/pyfs-mina, github.com/feishu-sdk-python/pyfs-pay, +github.com/feiskyer/ChatGPT-Reviewer, github.com/feiskyer/acs-engine,num_dependents_deps.dev:0 github.com/feiskyer/aks-engine,num_dependents_deps.dev:0 github.com/feiskyer/go-examples,num_dependents_deps.dev:0 @@ -502126,6 +511913,8 @@ github.com/felicienfrancois/node-resourcehacker,num_dependents_deps.dev:0 github.com/felicienfrancois/node-variable-replacer,num_dependents_deps.dev:0 github.com/felicienfrancois/node-winresourcer,num_dependents_deps.dev:102 github.com/felicio/eslint-config-react,num_dependents_deps.dev:0 +github.com/felickz/dependabot-kev-action, +github.com/felickz/secret-scanning-review-action, github.com/felics/dry-animate.scss,num_dependents_deps.dev:0 github.com/felics/hagrid,num_dependents_deps.dev:0 github.com/felicson/exponet,num_dependents_deps.dev:0 @@ -502225,6 +512014,8 @@ github.com/felipechang/netsuite-starter,num_dependents_deps.dev:0 github.com/felipechang/node-suitetalk, github.com/felipechang/suiteauth-go,num_dependents_deps.dev:0 github.com/felipecortes117/golang_development,num_dependents_deps.dev:0 +github.com/felipecosta09/Deep-Security-Smart-Check-Scan-Action, +github.com/felipecpc/github-action-jira-report-uploader, github.com/felipecrescencio/mongodburl-node,num_dependents_deps.dev:0 github.com/felipecrs/bindl, github.com/felipecrs/docker-meta,num_dependents_deps.dev:0 @@ -502360,6 +512151,7 @@ github.com/felipeqq2/eleventy-plugin-lazyload,num_dependents_deps.dev:0 github.com/felipeqq2/fauna2go,num_dependents_deps.dev:0 github.com/feliperamaral/jsbsmodal,num_dependents_deps.dev:0 github.com/feliperazeek/geonode, +github.com/felipereyel/update-notion, github.com/feliperfmarques/cordova-plugin-facebook4,num_dependents_deps.dev:0 github.com/feliperfmarques/ngx-walkthrough,num_dependents_deps.dev:0 github.com/felipernb/algorithms.js,num_dependents_deps.dev:16 @@ -502491,11 +512283,14 @@ github.com/felix-kaestner/lungo,num_dependents_deps.dev:0 github.com/felix-lang/felix,criticality_score:0.540970 github.com/felix-last/kmeans_smote, github.com/felix-lessoer/machinebeat,num_dependents_deps.dev:0 +github.com/felix-schaipp/add-release-channel, +github.com/felix-schaipp/hash-branch-name, github.com/felix-zenk/ResourceBundle, github.com/felix-zenk/iceportal-apis, github.com/felix021/fserial, github.com/felix021/pyshmht, github.com/felix1313/ngx-intl-tel-input,num_dependents_deps.dev:0 +github.com/felix2000jp/pr-style-cop-action, github.com/felix25/test,num_dependents_deps.dev:0 github.com/felix2feng/sol-trace,num_dependents_deps.dev:4 github.com/felix307253927/gulp-vsftp,num_dependents_deps.dev:0 @@ -502576,6 +512371,7 @@ github.com/felixexter/scrollbarWidth,num_dependents_deps.dev:164 github.com/felixexter/tmpl,num_dependents_deps.dev:0 github.com/felixexter/tmpl.js,num_dependents_deps.dev:0 github.com/felixfaisal/attack-on-web,num_dependents_deps.dev:0 +github.com/felixfaisal/attack-on-web-actions, github.com/felixfbecker/abortable-rx,num_dependents_deps.dev:32 github.com/felixfbecker/aggregate-map,num_dependents_deps.dev:0 github.com/felixfbecker/angular-async-filter,num_dependents_deps.dev:0 @@ -502758,6 +512554,7 @@ github.com/felixmosh/kodi-addon-release,num_dependents_deps.dev:0 github.com/felixmosh/postcss-decrease-specificity,num_dependents_deps.dev:0 github.com/felixmosh/postcss-extract-styles,num_dependents_deps.dev:44 github.com/felixmosh/ts-global-module-loader,num_dependents_deps.dev:0 +github.com/felixmosh/turborepo-gh-artifacts, github.com/felixmr1/weasleprogram-go,num_dependents_deps.dev:0 github.com/felixmueller/homebridge-zway-velux, github.com/felixnext/PythonCache, @@ -502888,6 +512685,7 @@ github.com/feljx/reload-server,num_dependents_deps.dev:0 github.com/felko/modulable, github.com/felkr/hclencoder,num_dependents_deps.dev:0 github.com/felkr/roamer,num_dependents_deps.dev:0 +github.com/fell-lucas/setup-pnpm-action, github.com/felladrin/create-pubsub,num_dependents_deps.dev:0 github.com/felladrin/typed-event-dispatcher,num_dependents_deps.dev:0 github.com/felladrin/windows-cursor-icon, @@ -503196,6 +512994,7 @@ github.com/fengkfengk/eslint-plugin-import-sorter,num_dependents_deps.dev:0 github.com/fengkuangxiaxia/livego,num_dependents_deps.dev:0 github.com/fengkx/cacheman-level,num_dependents_deps.dev:0 github.com/fengkx/cacheman-leveldb,num_dependents_deps.dev:0 +github.com/fengkx/cert-check, github.com/fengkx/fast-rss-parser,num_dependents_deps.dev:0 github.com/fengkx/got-iconv,num_dependents_deps.dev:0 github.com/fengkx/hexo-generator-search-index, @@ -503203,6 +513002,7 @@ github.com/fengkx/hexo-native-lazy-load,num_dependents_deps.dev:0 github.com/fengkx/html-encoding-sniffer-xs,num_dependents_deps.dev:0 github.com/fengkx/jieba-wasm,num_dependents_deps.dev:0 github.com/fengkx/rsshub-launcher,num_dependents_deps.dev:0 +github.com/fengkx/server-tg-alert, github.com/fengkx/simplecc-wasm,num_dependents_deps.dev:0 github.com/fengkx/whatwg-encoding-mapper,num_dependents_deps.dev:0 github.com/fenglang0203/grunt-marsrevT,num_dependents_deps.dev:0 @@ -503220,6 +513020,7 @@ github.com/fengliner/qps-limit,num_dependents_deps.dev:0 github.com/fengling-inc/egg-bull,num_dependents_deps.dev:0 github.com/fengling-inc/egg-typeorm,num_dependents_deps.dev:0 github.com/fengliqiang/anotherway,num_dependents_deps.dev:0 +github.com/fengliu222/aliyun-oss-website-action, github.com/fenglui/qianka-et-ad-theme,num_dependents_deps.dev:0 github.com/fengluo/flask-shield, github.com/fengluo/youzan, @@ -503372,6 +513173,7 @@ github.com/fengsx/umi-plugin-dynamic-import-from-cdn,num_dependents_deps.dev:0 github.com/fengsx/umi-plugin-dynamic-public-path,num_dependents_deps.dev:0 github.com/fengsx/umi-plugin-runtime-import,num_dependents_deps.dev:0 github.com/fengsx/umi-plugin-vue2,num_dependents_deps.dev:0 +github.com/fengtao1998/auto-labeling, github.com/fengtianxi001/icns2ico,num_dependents_deps.dev:0 github.com/fengtomy/multi-select-vue,num_dependents_deps.dev:0 github.com/fengtomy/simplePromisify,num_dependents_deps.dev:0 @@ -503670,6 +513472,8 @@ github.com/fennec-project/go-remote,num_dependents_deps.dev:0 github.com/fennec-project/podtracer,num_dependents_deps.dev:0 github.com/fennec-project/snoopy-operator,num_dependents_deps.dev:0 github.com/fennec69/java-event-framework,num_dependents_deps.dev:0 +github.com/fennecdjay/emojify-docker-action, +github.com/fennecdjay/gwion-action, github.com/fenneclab/hugo-bin,num_dependents_deps.dev:0 github.com/fenneh/hyper-snazzy-unfaded,num_dependents_deps.dev:0 github.com/fennerm/flashfocus, @@ -503700,6 +513504,7 @@ github.com/fenrirunbound/kubeconfig-factory,num_dependents_deps.dev:0 github.com/fenriz07/golang-transbank-oneclick-mall,num_dependents_deps.dev:0 github.com/fenriz07/golang-transbank-webpay-rest,num_dependents_deps.dev:0 github.com/fenrus75/powertop,criticality_score:0.562010 +github.com/fenske/coreskills-test-runner, github.com/fenstamaker/postcss-composition,num_dependents_deps.dev:0 github.com/fensziii/readdirRecursive,num_dependents_deps.dev:0 github.com/fent/Ann,num_dependents_deps.dev:0 @@ -503868,6 +513673,7 @@ github.com/ferdinakusumah/sepamin,num_dependents_deps.dev:0 github.com/ferdinand-dhbw/fuzzy-graph-coloring, github.com/ferdinandalexa/Platzom,num_dependents_deps.dev:0 github.com/ferdinandfly/create-react-app-typescript,num_dependents_deps.dev:0 +github.com/ferdinandkeller/html-to-pdf-action, github.com/ferdinandklr/txture,num_dependents_deps.dev:0 github.com/ferdinandtorggler/extract-svg-styles,num_dependents_deps.dev:0 github.com/ferdinandtorggler/remove-svg-properties,num_dependents_deps.dev:0 @@ -503957,6 +513763,7 @@ github.com/fergusean/node-flux-led,num_dependents_deps.dev:0 github.com/fergusfettes/lattice, github.com/fergusfrl/Recog,num_dependents_deps.dev:0 github.com/fergusinlondon/go-supervise,num_dependents_deps.dev:0 +github.com/fergusmacd/github-actions-usage, github.com/fergusn/capi-controller,num_dependents_deps.dev:0 github.com/fergusonjason/astro-common,num_dependents_deps.dev:0 github.com/fergusq/retki, @@ -504057,6 +513864,7 @@ github.com/fernandes/reativo,num_dependents_deps.dev:0 github.com/fernandesleticia/go-microservice,num_dependents_deps.dev:0 github.com/fernandez14/golang-crypto-trading-bot,num_dependents_deps.dev:0 github.com/fernandez14/goose,num_dependents_deps.dev:0 +github.com/fernandezafb/jira-updater, github.com/fernandezajp/PyExtJS,num_dependents_deps.dev:0 github.com/fernandezeric/Freya, github.com/fernandezfran/exma, @@ -504088,6 +513896,7 @@ github.com/fernandoalmeida/epub-reader,num_dependents_deps.dev:0 github.com/fernandoantunes/react-native-open-app,num_dependents_deps.dev:0 github.com/fernandoarrj/chillbass,num_dependents_deps.dev:0 github.com/fernandoarrj/googlenewspy, +github.com/fernandoataoldotcom/test-gha-publish, github.com/fernandobatels/fiscal-rs,num_dependents_deps.dev:0 github.com/fernandobatels/rsfbclient,num_dependents_deps.dev:7 github.com/fernandobhz/agoge-pouchdb-plugins,num_dependents_deps.dev:0 @@ -504214,6 +514023,7 @@ github.com/fernandomoraes/prometheus-nodejs-exporter, github.com/fernandomoraes/tiny-livereload,num_dependents_deps.dev:0 github.com/fernandomorais/connect-etcd,num_dependents_deps.dev:0 github.com/fernandomorais/node-etcd,num_dependents_deps.dev:0 +github.com/fernandomrtnz/gh-action-test, github.com/fernandonieuwveldt/easyflow, github.com/fernandonieuwveldt/mlxops_pipelines, github.com/fernandoocampo/fancy-worker,num_dependents_deps.dev:0 @@ -504253,6 +514063,7 @@ github.com/fernandou/Promise, github.com/fernandovfilho/react-native-qrcode-svg, github.com/fernandoxu/react-test-1, github.com/fernandrone/grace,num_dependents_deps.dev:0 +github.com/fernandrone/linelint, github.com/fernanrojas/react-oidc,num_dependents_deps.dev:0 github.com/fernap3/astr,num_dependents_deps.dev:0 github.com/fernap3/eslint-plugin-set-iterable, @@ -504452,6 +514263,7 @@ github.com/ferreirandre/golang,num_dependents_deps.dev:0 github.com/ferreirarod/ng-javaee-config,num_dependents_deps.dev:0 github.com/ferreirarubens/scss-layout,num_dependents_deps.dev:0 github.com/ferreiratiago/gulp-git-push,num_dependents_deps.dev:0 +github.com/ferreiratiago/mba, github.com/ferreiravinicius/cafezito,num_dependents_deps.dev:0 github.com/ferreiro/avatar-me,num_dependents_deps.dev:0 github.com/ferreiro/oh-my-errors,num_dependents_deps.dev:0 @@ -504540,7 +514352,9 @@ github.com/ferryjul/fairCORELSV2, github.com/ferrymen/fm-style,num_dependents_deps.dev:0 github.com/ferrymen/fm-ui-style,num_dependents_deps.dev:0 github.com/ferrytan/SkeletonPlaceholderView,num_dependents_deps.dev:0 +github.com/ferrywlto/update-readme-action-csharp, github.com/ferserc1/bg2e-js-voxel,num_dependents_deps.dev:0 +github.com/fersilva16/ts-report-action, github.com/fersingb/gf,num_dependents_deps.dev:0 github.com/ferstar/check-requirements-txt, github.com/ferstl/depgraph-maven-plugin,num_dependents_deps.dev:0 @@ -504548,6 +514362,8 @@ github.com/ferstl/jitwatch-jarscan-maven-plugin,num_dependents_deps.dev:0 github.com/ferstl/parallel-stream-support,num_dependents_deps.dev:0 github.com/fertek/isitpangram, github.com/ferthings/react-dnd-image-puzzle,num_dependents_deps.dev:0 +github.com/fertrig/create-file-action, +github.com/ferulisses/aws-manage-firewall-action, github.com/feruz666/go_prjcts,num_dependents_deps.dev:0 github.com/ferventcoder/nuget-gem,num_dependents_deps.dev:0 github.com/ferventdev/pieces-to-go,num_dependents_deps.dev:0 @@ -504835,6 +514651,7 @@ github.com/feyzikesim/sht20, github.com/feyzikesim/sps30, github.com/feyzullahyildiz/geoserver-sld-generator,num_dependents_deps.dev:0 github.com/feyzullahyildiz/sequelize-typescript-migration-engine,num_dependents_deps.dev:0 +github.com/fezhengjin/actions-feishu-xsky, github.com/fezproof/dotenvcrypt,num_dependents_deps.dev:0 github.com/fezz-io/zps,num_dependents_deps.dev:0 github.com/fezzlk/discographs,num_dependents_deps.dev:0 @@ -505055,6 +514872,7 @@ github.com/ffissore/geoip-rs,num_dependents_deps.dev:0 github.com/ffissore/jrecordbind,num_dependents_deps.dev:0 github.com/ffissore/shorty,num_dependents_deps.dev:0 github.com/ffissore/slf4j-fluent,num_dependents_deps.dev:0 +github.com/ffittschen/pr-branch-labeler, github.com/ffive-xyz/sap-timesheet,num_dependents_deps.dev:0 github.com/ffizer/ffizer,num_dependents_deps.dev:0 github.com/ffjlabo/auto-wire,num_dependents_deps.dev:0 @@ -505085,6 +514903,7 @@ github.com/fforres/babel_code_analysis,num_dependents_deps.dev:0 github.com/fforres/ink-quicksearch-input,num_dependents_deps.dev:0 github.com/fforres/pokemon-local-database,num_dependents_deps.dev:0 github.com/fforres/skills,num_dependents_deps.dev:0 +github.com/fforres/validate-changed-files, github.com/ffortier/bash-spec-runner,num_dependents_deps.dev:0 github.com/fforw/brace-diff,num_dependents_deps.dev:0 github.com/fforw/organic-quads,num_dependents_deps.dev:0 @@ -505185,6 +515004,7 @@ github.com/ffunenga/insideout, github.com/ffunenga/pipgh, github.com/ffunenga/virtuallinks, github.com/ffurano/grpc-proto,num_dependents_deps.dev:0 +github.com/ffurrer2/extract-release-notes, github.com/ffurrer2/semver,num_dependents_deps.dev:0 github.com/ffwdtech/ffwd,num_dependents_deps.dev:0 github.com/ffwff/hana,num_dependents_deps.dev:0 @@ -505203,6 +515023,9 @@ github.com/fgRuslan/easyAnim,num_dependents_deps.dev:0 github.com/fgRuslan/frostTheme,num_dependents_deps.dev:0 github.com/fgRuslan/vk-spammer, github.com/fga-eps-mds/2019.1-unbrake,num_dependents_deps.dev:0 +github.com/fga-eps-mds/2023-2-MeasureSoftGram-Action, +github.com/fga-eps-mds/MeasureSoftGram-Action, +github.com/fga-eps-mds/MeasureSoftGram-Helper-Action, github.com/fgabbaninililly/TestPyPiUpload, github.com/fgadaleta/histo,num_dependents_deps.dev:0 github.com/fgadaleta/labello,num_dependents_deps.dev:0 @@ -505410,6 +515233,7 @@ github.com/fgsake/hibernate-cache-couchbase,num_dependents_deps.dev:0 github.com/fgsoftware1/cordova-plugin-goole-play-services-ads,num_dependents_deps.dev:0 github.com/fgtatsuro/api_server_poc,num_dependents_deps.dev:0 github.com/fguiotte/sap, +github.com/fguisso/amass-action, github.com/fguisso/lnstore,num_dependents_deps.dev:0 github.com/fguitton/vscode-gedcom,num_dependents_deps.dev:0 github.com/fguler/snippetbox,num_dependents_deps.dev:0 @@ -505512,6 +515336,8 @@ github.com/fhfaa/grunt-xmlstoke,num_dependents_deps.dev:0 github.com/fhfuih/jupyterlab_theme_onedark,num_dependents_deps.dev:0 github.com/fhg-test/core,num_dependents_deps.dev:0 github.com/fhg-test/rest,num_dependents_deps.dev:0 +github.com/fhgbaguidi/action-cloud-run, +github.com/fhgbaguidi/envsubst-action, github.com/fhh2626/BFEE2, github.com/fhigher/mdns,num_dependents_deps.dev:0 github.com/fhightower/html-to-json, @@ -505582,6 +515408,7 @@ github.com/fhs/python-hdf4, github.com/fhsinchy/mongoose-simple-slugify,num_dependents_deps.dev:0 github.com/fhsinchy/tent,num_dependents_deps.dev:0 github.com/fhstp/sonivis-lens-widget, +github.com/fhswf/JupyterHub-Autotagger-Action, github.com/fhswf/book_me, github.com/fhuel/p5keeper,num_dependents_deps.dev:0 github.com/fhuel/whosfhuel,num_dependents_deps.dev:0 @@ -505595,6 +515422,7 @@ github.com/fhwang/sync_machine_active_record,num_dependents_deps.dev:0 github.com/fhwang/sync_machine_generator,num_dependents_deps.dev:0 github.com/fhwang/sync_machine_mongoid,num_dependents_deps.dev:0 github.com/fhwrdh/hubot-pairbot,num_dependents_deps.dev:0 +github.com/fi-ts/action-docker-make, github.com/fi-ts/cloud-go,num_dependents_deps.dev:0 github.com/fi-ts/cloudctl,num_dependents_deps.dev:0 github.com/fi-ts/postgreslet,num_dependents_deps.dev:0 @@ -505662,10 +515490,12 @@ github.com/fiahfy/storiesof2csf,num_dependents_deps.dev:0 github.com/fiahfy/vue-visibility-changed-mixin,num_dependents_deps.dev:0 github.com/fiahfy/worker-promisify,num_dependents_deps.dev:0 github.com/fiakkasa/ngx-fi-utils,num_dependents_deps.dev:0 +github.com/fiam/arm-none-eabi-gcc, github.com/fians/Waves,"criticality_score:0.347160,num_dependents_deps.dev:18" github.com/fians/marka,num_dependents_deps.dev:0 github.com/fians/situs,num_dependents_deps.dev:0 github.com/fians/warna, +github.com/fianulabs/setup-fianu, github.com/fiathux/whtmacro, github.com/fiatjaf/LSD,num_dependents_deps.dev:0 github.com/fiatjaf/bech32, @@ -505746,6 +515576,7 @@ github.com/fiber-god/reason-expo,num_dependents_deps.dev:0 github.com/fibercrypto/pyskyfiber,num_dependents_deps.dev:0 github.com/fibercrypto/skywallet-protob,num_dependents_deps.dev:0 github.com/fiberii/learning-git,num_dependents_deps.dev:0 +github.com/fiberplane/publish-event, github.com/fiberthrone/redux-actions-namespace,num_dependents_deps.dev:0 github.com/fiberwire/enome,num_dependents_deps.dev:0 github.com/fiberwire/enviro,num_dependents_deps.dev:0 @@ -505956,6 +515787,10 @@ github.com/fidding/python-cli, github.com/fiddleplum/s3-fs,num_dependents_deps.dev:0 github.com/fiddler/ember-cli-slack-chat, github.com/fiddler/hubot-domainr,num_dependents_deps.dev:0 +github.com/fiddlermikey/action-add-autolink, +github.com/fiddlermikey/action-get-primary-language, +github.com/fiddlermikey/action-merge-json, +github.com/fiddlermikey/assign-from-json, github.com/fiddlerwoaroof/js-generic-functions,num_dependents_deps.dev:0 github.com/fiddlerwoaroof/jsonrpc, github.com/fiddus/datatables-query,num_dependents_deps.dev:0 @@ -506057,6 +515892,7 @@ github.com/fidojs/fidojs-kennel,num_dependents_deps.dev:0 github.com/fidojs/fidojs-kennel-console,num_dependents_deps.dev:0 github.com/fidor/fidor_api,num_dependents_deps.dev:0 github.com/fidothe/rgf, +github.com/fidou/azcli-artifacttool-workaround, github.com/fidrees88/easy-novnc,num_dependents_deps.dev:0 github.com/fidrelity/so_social,num_dependents_deps.dev:0 github.com/fidtech-dev/browser-mobile-checker,num_dependents_deps.dev:0 @@ -506161,8 +515997,12 @@ github.com/fifiman/EasyYoutubeMusic, github.com/fifman/sockspy, github.com/fifman/tangle, github.com/fifsky/db,num_dependents_deps.dev:0 +github.com/fifsky/dingtalk-action, github.com/fifsky/drone-wechat-work,num_dependents_deps.dev:0 +github.com/fifsky/html-to-pdf-action, github.com/fifsky/react-simplemde-editor,num_dependents_deps.dev:0 +github.com/fifsky/ssh-action, +github.com/fifsky/wechat-work-action, github.com/fiftech/fifbucket, github.com/fifth-partners/stoffel, github.com/fifth-postulate/T9,num_dependents_deps.dev:0 @@ -506266,6 +516106,7 @@ github.com/figroc/s2geometry, github.com/figroc/tensorflow-serving-client,num_dependents_deps.dev:0 github.com/figroll/figroll-cli, github.com/figs-lab/datalegreya, +github.com/figshare/github-upload-action, github.com/figsoda/expand,num_dependents_deps.dev:0 github.com/figsoda/mmtc,num_dependents_deps.dev:0 github.com/figsoda/one-of,num_dependents_deps.dev:0 @@ -506327,6 +516168,7 @@ github.com/fikani/ngx-pubsub,num_dependents_deps.dev:0 github.com/fikaproductions/fika-gatsby-source-cockpit, github.com/fikasimplece/stockbit-testcode,num_dependents_deps.dev:0 github.com/fikaworks/grgate,num_dependents_deps.dev:0 +github.com/fike/horusec-action, github.com/fikin/go-complexity-analysis,num_dependents_deps.dev:0 github.com/fikisipi/cloudflare-workers-go,num_dependents_deps.dev:0 github.com/fikisipi/newgodoc,num_dependents_deps.dev:0 @@ -506797,6 +516639,7 @@ github.com/filipetedim/angular-rating-icons,num_dependents_deps.dev:0 github.com/filipgolonka/cordova-plugin-ga,num_dependents_deps.dev:0 github.com/filipgolonka/slack-github-issue-creator,num_dependents_deps.dev:0 github.com/filiph/english_words,Google +github.com/filiph/linkcheck, github.com/filiphanes/forwardform,num_dependents_deps.dev:0 github.com/filipi86/horusec-demo,num_dependents_deps.dev:0 github.com/filipi87/bmf-to-json,num_dependents_deps.dev:0 @@ -506869,8 +516712,11 @@ github.com/filips123/HotBitsPy, github.com/filips123/MagneticFieldCalculator, github.com/filips123/ZeroFrameJS,num_dependents_deps.dev:0 github.com/filips123/ZeroFramePy, +github.com/filips123/configwriter, github.com/filips123/ethavatar.js,num_dependents_deps.dev:0 +github.com/filips123/eventy, github.com/filips123/jakopicevca, +github.com/filips123/monologphpmailer, github.com/filips123/pythonMail, github.com/filipsaric1/expo-location,num_dependents_deps.dev:0 github.com/filipsedivy/pixel.py, @@ -506878,13 +516724,20 @@ github.com/filipsobczak/gulp-linker,num_dependents_deps.dev:0 github.com/filipstefansson/cargo-semver,num_dependents_deps.dev:0 github.com/filipstefansson/nexus-validate,num_dependents_deps.dev:0 github.com/filipstefansson/query-fns,num_dependents_deps.dev:0 +github.com/filipstefansson/set-npm-token-action, +github.com/filipstefansson/uuid-action, github.com/filiptammergard/gatsby-remark-text-composition,num_dependents_deps.dev:0 github.com/filiptammergard/namedays,num_dependents_deps.dev:0 github.com/filiptammergard/prettier-config,num_dependents_deps.dev:0 github.com/filiptammergard/text-analyzer,num_dependents_deps.dev:0 github.com/filiptdz/react-native-rich-text,num_dependents_deps.dev:0 +github.com/filiptibell/repo-filetree-action, +github.com/filiptibell/roblox-place-publish-action, +github.com/filiptibell/rojo-sourcemap-action, github.com/filiptronicek/BRUH,num_dependents_deps.dev:0 +github.com/filiptronicek/github-rank-action, github.com/filiptronicek/gitpy, +github.com/filiptronicek/green-action, github.com/filiptrplan/spotify-cover-art,num_dependents_deps.dev:0 github.com/filiptrplan/trplanex, github.com/filiptypjeu/npm-easycal,num_dependents_deps.dev:0 @@ -506917,6 +516770,7 @@ github.com/fillano/fit,num_dependents_deps.dev:0 github.com/fillano/gulp-fit,num_dependents_deps.dev:0 github.com/fillano/xmlrun,num_dependents_deps.dev:0 github.com/filledstacks/firebase-backend,num_dependents_deps.dev:0 +github.com/fillefilip8/DocFxToMarkdown, github.com/filleokus/hls-stats,num_dependents_deps.dev:0 github.com/fillerInk/notion.css,num_dependents_deps.dev:0 github.com/fillerspace/grandiloquent,num_dependents_deps.dev:0 @@ -507186,6 +517040,7 @@ github.com/finaldream/parallel-sass,num_dependents_deps.dev:0 github.com/finaldream/staticonv,num_dependents_deps.dev:0 github.com/finaldream/svc, github.com/finaldream/svg2css,num_dependents_deps.dev:0 +github.com/finale-lua/lua-docs-generator, github.com/finalfire/aspars, github.com/finalfusion/finalfrontier,num_dependents_deps.dev:6 github.com/finalfusion/finalfusion-inspector,num_dependents_deps.dev:0 @@ -507517,6 +517372,7 @@ github.com/finer-vision/Event,num_dependents_deps.dev:0 github.com/finer-vision/React-Form,num_dependents_deps.dev:0 github.com/finer-vision/Store,num_dependents_deps.dev:0 github.com/finer-vision/Validation,num_dependents_deps.dev:0 +github.com/finer-vision/backup-databases, github.com/finery-ui/ccy-icons, github.com/finethanks/react-image-editor,num_dependents_deps.dev:0 github.com/finethanks/slate-article-editor,num_dependents_deps.dev:0 @@ -507551,6 +517407,7 @@ github.com/fingerpich/jalali-moment,"criticality_score:0.451100,num_dependents_d github.com/fingerpich/moment-jalaali,num_dependents_deps.dev:0 github.com/fingerpich/vue-edit-json,num_dependents_deps.dev:0 github.com/fingerpich/vue-jalali-moment,num_dependents_deps.dev:0 +github.com/fingerprintjs/action-coverage-report-md, github.com/fingerprintjs/botd,num_dependents_deps.dev:0 github.com/fingerprintjs/fingerprintjs,"criticality_score:0.533200,num_dependents_deps.dev:168" github.com/fingerprintjs/fingerprintjs-pro-server-api-node-sdk,num_dependents_deps.dev:0 @@ -507632,6 +517489,7 @@ github.com/finklabs/whaaaaat, github.com/finktek/eventum,num_dependents_deps.dev:0 github.com/finlayhenderson/shadowwzard,num_dependents_deps.dev:0 github.com/finlean/frontendTool,num_dependents_deps.dev:0 +github.com/finleap-connect/opa-test-action, github.com/finmath/finmath-lib,"criticality_score:0.505770,num_dependents_deps.dev:0" github.com/finmath/finmath-lib-automaticdifferentiation-extensions,num_dependents_deps.dev:0 github.com/finmath/finmath-lib-cuda-extensions,num_dependents_deps.dev:0 @@ -507764,6 +517622,7 @@ github.com/finnp/cliclopts,num_dependents_deps.dev:364 github.com/finnp/commandLiner,num_dependents_deps.dev:0 github.com/finnp/cpio-fs,num_dependents_deps.dev:4 github.com/finnp/cpio-stream,num_dependents_deps.dev:10 +github.com/finnp/create-file-action, github.com/finnp/create-module,num_dependents_deps.dev:0 github.com/finnp/crtrdg-arrows,num_dependents_deps.dev:0 github.com/finnp/dat-berlin-badegewaesser,num_dependents_deps.dev:0 @@ -507931,6 +517790,7 @@ github.com/finos/tracdap, github.com/finosofica/mat-contenteditable,num_dependents_deps.dev:0 github.com/finosofica/ngx-facebook,num_dependents_deps.dev:0 github.com/finpack/grunt-finalia-sitemap,num_dependents_deps.dev:0 +github.com/finphie/GitHubSettingsSync, github.com/finpo/create-finpo-nuxt,num_dependents_deps.dev:0 github.com/finpo/pug-lint-config-finpo,num_dependents_deps.dev:0 github.com/finpo/vue2-dependency-selector,num_dependents_deps.dev:0 @@ -508067,6 +517927,7 @@ github.com/fionera/rclone,num_dependents_deps.dev:0 github.com/fionera/teamdrivemanager,num_dependents_deps.dev:0 github.com/fionera/tempoinfo,num_dependents_deps.dev:0 github.com/fionera/tttnsd,num_dependents_deps.dev:0 +github.com/fionn/render-markdown, github.com/fionnbharra/midicoptor,num_dependents_deps.dev:0 github.com/fionnbharra/spectre_js_client,num_dependents_deps.dev:0 github.com/fionnmaccumhaill/ctdataindex,num_dependents_deps.dev:0 @@ -508181,6 +518042,7 @@ github.com/fireantjs/fireant-stylus,num_dependents_deps.dev:0 github.com/fireantjs/fireant-timestamp,num_dependents_deps.dev:0 github.com/fireantjs/fireant-uglify,num_dependents_deps.dev:0 github.com/fireantology/django-logtailer, +github.com/fireaz/push-git-subdirectory-as-branch, github.com/fireb1001/litecontentsync, github.com/fireball-x/fire-fs,num_dependents_deps.dev:0 github.com/fireball-x/fire-path,num_dependents_deps.dev:0 @@ -508309,6 +518171,7 @@ github.com/firebaseco/pseudo,num_dependents_deps.dev:0 github.com/firebaseco/safe_datejs,num_dependents_deps.dev:0 github.com/firebaseco/vcap-node-client,num_dependents_deps.dev:0 github.com/firebaseui/ng-bootstrap,num_dependents_deps.dev:0 +github.com/firebelley/godot-export, github.com/firebfm/lotide,num_dependents_deps.dev:0 github.com/firebitsbr/amtgo,num_dependents_deps.dev:0 github.com/fireblocks/fireblocks-defi-sdk,num_dependents_deps.dev:0 @@ -508326,6 +518189,7 @@ github.com/firebreath/FireBreath,criticality_score:0.379900 github.com/firebug-wox/wox-admin-components,num_dependents_deps.dev:0 github.com/firebug/firebug.sdk,num_dependents_deps.dev:0 github.com/firebugger/wox-cli,num_dependents_deps.dev:0 +github.com/firebuild/firebuild-action, github.com/firecampapp/with-async-error,num_dependents_deps.dev:0 github.com/firecat53/bitwarden-menu, github.com/firecat53/keepmenu, @@ -508388,6 +518252,7 @@ github.com/firefart/redirector,num_dependents_deps.dev:0 github.com/firefart/rss_fetcher,num_dependents_deps.dev:0 github.com/firefiesta/fire-infinite-scroll,num_dependents_deps.dev:0 github.com/firefinancialservices/fire-business-api-java,num_dependents_deps.dev:0 +github.com/firefinchdev/treewaredebug, github.com/firefish5000/svelte-as-markup-preprocessor,num_dependents_deps.dev:0 github.com/firefish5000/svelte-trim, github.com/firefish5000/svelte2dts,num_dependents_deps.dev:0 @@ -508871,6 +518736,8 @@ github.com/firstandthird/stackshots,num_dependents_deps.dev:0 github.com/firstandthird/stylelint-config-firstandthird,num_dependents_deps.dev:0 github.com/firstandthird/svg-injector,num_dependents_deps.dev:0 github.com/firstandthird/swarm-bot,num_dependents_deps.dev:0 +github.com/firstandthird/swarmpit-stack-deploy-action, +github.com/firstandthird/swarmpit-stack-destroy-action, github.com/firstandthird/tape-rollup,num_dependents_deps.dev:0 github.com/firstandthird/taskkit,num_dependents_deps.dev:0 github.com/firstandthird/taskkit-analyze,num_dependents_deps.dev:0 @@ -508933,6 +518800,8 @@ github.com/firstleads/react-native-swipedeck, github.com/firstlookmedia/aws-profile-gpg, github.com/firstlookmedia/dangerzone,criticality_score:0.353680 github.com/firstlookmedia/listcrunch, +github.com/firstmate-systems/docker-hub-builder, +github.com/firstmate-systems/gcs-push-chart, github.com/firstmk/Leaflet,num_dependents_deps.dev:0 github.com/firstmode/tanager-tcp, github.com/firstnoname/forexample,num_dependents_deps.dev:0 @@ -509032,6 +518901,8 @@ github.com/fischerfredl/flask-expects-json, github.com/fischerfredl/flask-json-errorhandler, github.com/fischerjulian/smpl-go-web,num_dependents_deps.dev:0 github.com/fischerromain/grunt-webicons,num_dependents_deps.dev:0 +github.com/fischerscode/tagger, +github.com/fischerscode/uptodate, github.com/fischersean/biblical-football,num_dependents_deps.dev:0 github.com/fischersean/phish-food,num_dependents_deps.dev:0 github.com/fischeversenker/multi-diff, @@ -509041,6 +518912,11 @@ github.com/fischor/protogen-javascript,num_dependents_deps.dev:0 github.com/fischor/protogen-python, github.com/fisdap/innodb-optimized-uuid,num_dependents_deps.dev:0 github.com/fiserro/easy-config,num_dependents_deps.dev:0 +github.com/fish-actions/fisher, +github.com/fish-actions/format-check, +github.com/fish-actions/install-fish, +github.com/fish-actions/littlecheck, +github.com/fish-actions/syntax-check, github.com/fish-ball/django-fullclean, github.com/fish-ball/jquery.formdata.js,num_dependents_deps.dev:0 github.com/fish-bundles/fb, @@ -509050,6 +518926,10 @@ github.com/fish-pro/sort-library,num_dependents_deps.dev:0 github.com/fish-quant/big-fish, github.com/fish-quant/sim-fish, github.com/fish-shell/fish-shell,criticality_score:0.761480 +github.com/fish-shop/install-plugin, +github.com/fish-shop/install-plugin-manager, +github.com/fish-shop/run-fishtape-tests, +github.com/fish-shop/syntax-check, github.com/fish-uncle/VF,num_dependents_deps.dev:0 github.com/fish-uncle/babel-plugin-demand-loading,num_dependents_deps.dev:0 github.com/fish-uncle/egg-visit,num_dependents_deps.dev:0 @@ -509100,9 +518980,11 @@ github.com/fishbrain/eslint-config-fishbrain-base,num_dependents_deps.dev:0 github.com/fishbrain/fishbars,num_dependents_deps.dev:0 github.com/fishbrain/logging-go,num_dependents_deps.dev:0 github.com/fishbrain/mini-i18n-webpack-plugin,num_dependents_deps.dev:0 +github.com/fishbrain/outstanding-pull-requests-action, github.com/fishbrain/sun_calc,num_dependents_deps.dev:0 github.com/fishbrain/tarpon,num_dependents_deps.dev:0 github.com/fishbrain/tslint-config-fishbrain,num_dependents_deps.dev:0 +github.com/fishcharlie/CmdToFile, github.com/fishdemon/go-yehua,num_dependents_deps.dev:0 github.com/fishead/bytes-protocol,num_dependents_deps.dev:0 github.com/fishead/current-package-version,num_dependents_deps.dev:0 @@ -509192,6 +519074,7 @@ github.com/fishin/taut,num_dependents_deps.dev:0 github.com/fishingfly/clusterupgrade,num_dependents_deps.dev:0 github.com/fishioon/onechat,num_dependents_deps.dev:0 github.com/fishjojo/pydmfet, +github.com/fishjump/WakaHS, github.com/fishkao/rake, github.com/fishkiller252/fishkiller252,num_dependents_deps.dev:0 github.com/fishlikewater/schedule,num_dependents_deps.dev:4 @@ -509208,6 +519091,7 @@ github.com/fishrock123/primus-spark-latency,num_dependents_deps.dev:0 github.com/fishrock123/set-env,num_dependents_deps.dev:0 github.com/fishs-x/pyfuncs, github.com/fishsouprecipe/atmigram, +github.com/fishsticks89/pros-build, github.com/fishtag/octavius,num_dependents_deps.dev:0 github.com/fishtn/hoopa, github.com/fishtown-analyics/dbt-init, @@ -509372,6 +519256,7 @@ github.com/fission-suite/kit,num_dependents_deps.dev:0 github.com/fission-suite/ts-sdk,num_dependents_deps.dev:0 github.com/fission-suite/typescript-client, github.com/fission-suite/webnative, +github.com/fission/action, github.com/fission/fission,"criticality_score:0.571270,num_dependents_deps.dev:1" github.com/fission/fission-java-libs,num_dependents_deps.dev:0 github.com/fission/keda-connectors,num_dependents_deps.dev:0 @@ -509428,6 +519313,7 @@ github.com/fitapp-os/chart,num_dependents_deps.dev:0 github.com/fitapp-os/kompliziert,num_dependents_deps.dev:0 github.com/fitay/mongodb,num_dependents_deps.dev:0 github.com/fitay/node-db-migrate,num_dependents_deps.dev:0 +github.com/fitbeard/action-trigger-awx, github.com/fitbit/smartling,num_dependents_deps.dev:0 github.com/fitblip/wsstat, github.com/fitchdigital/fitch-ui,num_dependents_deps.dev:0 @@ -509444,6 +519330,8 @@ github.com/fitiavana07/flasko, github.com/fitigai/ui,num_dependents_deps.dev:0 github.com/fitiger/go,num_dependents_deps.dev:0 github.com/fitiskin/is-valid-coords,num_dependents_deps.dev:0 +github.com/fititnt/hxltm-action, +github.com/fititnt/hxltm-extras-action, github.com/fitle-dev/scikit-deploy, github.com/fitlivingmm/rpcx,num_dependents_deps.dev:0 github.com/fitlivingmm/rpcx-etcd,num_dependents_deps.dev:0 @@ -509475,6 +519363,7 @@ github.com/fitnr/yaml-cat,num_dependents_deps.dev:0 github.com/fitnr/yfm-concat,num_dependents_deps.dev:0 github.com/fitodic/centerline, github.com/fitoe/BMapLib.LuShu,num_dependents_deps.dev:0 +github.com/fitomad/github-chatgpt-integration, github.com/fitosegrera/udoo-gpio,num_dependents_deps.dev:0 github.com/fitpic/Augmently, github.com/fitraditya/node-pdf2img,num_dependents_deps.dev:0 @@ -509573,6 +519462,7 @@ github.com/fiveai/aws-okta,num_dependents_deps.dev:0 github.com/fiveai/terraform-provider-freeipa,num_dependents_deps.dev:0 github.com/fivebalanceid/rosetta-fivebalance,num_dependents_deps.dev:0 github.com/fivebinaries/go-cardano-serialization,num_dependents_deps.dev:0 +github.com/fivebluepetals/rollback-action, github.com/fiveddd/QueryVin, github.com/fiveem/booplate,num_dependents_deps.dev:0 github.com/fiveem/postgres-error-codes,num_dependents_deps.dev:0 @@ -509649,6 +519539,7 @@ github.com/fivestack/bcp, github.com/fivestack/datarade, github.com/fivestars/javascript,num_dependents_deps.dev:0 github.com/fivestars/tslint-config-fivestars,num_dependents_deps.dev:0 +github.com/fivetag/promtool-junit, github.com/fivetalent/eslint-config-fivetalent,num_dependents_deps.dev:0 github.com/fivetanley/ember-cli-dotenv,num_dependents_deps.dev:0 github.com/fivetanley/gerrit-stream, @@ -509729,6 +519620,7 @@ github.com/fiws/machine,num_dependents_deps.dev:0 github.com/fiws/minepkg,num_dependents_deps.dev:0 github.com/fix-me/code-use,num_dependents_deps.dev:0 github.com/fix-me/fancy-units,num_dependents_deps.dev:0 +github.com/fix-runner/image, github.com/fix2015/angular-chart-morris,num_dependents_deps.dev:0 github.com/fix2015/create-angular-2-app,num_dependents_deps.dev:0 github.com/fix2015/create-angular-app,num_dependents_deps.dev:0 @@ -509783,6 +519675,9 @@ github.com/fixlr/codemirror-rails,num_dependents_deps.dev:118 github.com/fixme-lausanne/mpdwsgi-web,num_dependents_deps.dev:0 github.com/fixme199/tree,num_dependents_deps.dev:0 github.com/fixmycode/pykhipu, +github.com/fixpoint/azblob-download-artifact, +github.com/fixpoint/azblob-generate-static-index, +github.com/fixpoint/azblob-upload-artifact, github.com/fixpoint/packelf, github.com/fixpoint/python-message-channel, github.com/fixpoint/python-spymock, @@ -510005,6 +519900,7 @@ github.com/fjc0k/wedevtools-cli, github.com/fjc0k/weixiao.js,num_dependents_deps.dev:0 github.com/fjc0k/yapi-to-typescript,num_dependents_deps.dev:0 github.com/fjc3120/export-excel,num_dependents_deps.dev:0 +github.com/fjcaetano/mint-action, github.com/fjcaetano/react-hook-hooked,num_dependents_deps.dev:0 github.com/fjcaetano/react-hook-utilities,num_dependents_deps.dev:0 github.com/fjch1997/homebridge-markisol,num_dependents_deps.dev:0 @@ -510028,6 +519924,8 @@ github.com/fjedi/rest-api,num_dependents_deps.dev:0 github.com/fjelltopp/ckanext-short-urls, github.com/fjelltopp/fjelltopp-etl, github.com/fjeng/AEPTools, +github.com/fjeremic/cron-first-interaction, +github.com/fjeremic/cron-labeler, github.com/fjflores92/media-player,num_dependents_deps.dev:0 github.com/fjflores92/rand-msgs,num_dependents_deps.dev:0 github.com/fjhheras/trajectorytools, @@ -510044,6 +519942,7 @@ github.com/fjl/gio-demos,num_dependents_deps.dev:0 github.com/fjl/memsize,num_dependents_deps.dev:272 github.com/fjl/os-timesync,num_dependents_deps.dev:0 github.com/fjlaubscher/node-imager,num_dependents_deps.dev:0 +github.com/fjlopezs/lcov-reporter-action, github.com/fjmillman/graphical-password-scheme,num_dependents_deps.dev:0 github.com/fjmorant/react-native-nested-listview, github.com/fjms/raspibeacon,num_dependents_deps.dev:0 @@ -510056,8 +519955,10 @@ github.com/fjodor-rybakov/call-of-duty-nestjs,num_dependents_deps.dev:0 github.com/fjodor-rybakov/discord-nestjs,num_dependents_deps.dev:0 github.com/fjodorekstrom/timeout-middleware,num_dependents_deps.dev:0 github.com/fjogeleit/event-store,num_dependents_deps.dev:0 +github.com/fjogeleit/http-request-action, github.com/fjogeleit/policy-reporter,num_dependents_deps.dev:0 github.com/fjogeleit/policy-reporter-kyverno-plugin,num_dependents_deps.dev:0 +github.com/fjogeleit/yaml-update-action, github.com/fjonas/aqours,num_dependents_deps.dev:0 github.com/fjonas/jin,num_dependents_deps.dev:0 github.com/fjonas/juex,num_dependents_deps.dev:0 @@ -510085,6 +519986,7 @@ github.com/fjsds/ip-service,num_dependents_deps.dev:0 github.com/fjshadows/jet-sdk,num_dependents_deps.dev:0 github.com/fjshadows/md5-hex,num_dependents_deps.dev:0 github.com/fjshadows/react-bootstrap-datetimepicker,num_dependents_deps.dev:0 +github.com/fjsnogueira/checkmarx-cxflow-github-action, github.com/fjson/react-native-chameleon,num_dependents_deps.dev:132 github.com/fjsw/fjsw-algorithm-java,num_dependents_deps.dev:0 github.com/fjsw/fjsw-cloud-java,num_dependents_deps.dev:0 @@ -510107,6 +520009,7 @@ github.com/fjw/node-leddriver,num_dependents_deps.dev:0 github.com/fjw/node-simplespi,num_dependents_deps.dev:0 github.com/fjwCode/external-ip, github.com/fjwCode/wireless-control, +github.com/fjwillemsen/setup-nox2, github.com/fjy202/projectstarter, github.com/fjy202/pysh, github.com/fk2000/fk2000,num_dependents_deps.dev:0 @@ -510165,6 +520068,7 @@ github.com/fkieber/wdwapp, github.com/fkimani/go-lambda,num_dependents_deps.dev:0 github.com/fkirc/attranslate,num_dependents_deps.dev:0 github.com/fkirc/capacitor-build-safety,num_dependents_deps.dev:0 +github.com/fkirc/skip-duplicate-actions, github.com/fkirdreamshovel/palindrome,num_dependents_deps.dev:0 github.com/fkjctm/cloud-mapper,num_dependents_deps.dev:0 github.com/fkkmemi/memiutil,num_dependents_deps.dev:0 @@ -510225,6 +520129,9 @@ github.com/fkoep/downcast-rs,num_dependents_deps.dev:99 github.com/fkoep/intern-rs,num_dependents_deps.dev:0 github.com/fkoep/variadic_generics-rs,num_dependents_deps.dev:0 github.com/fkohlgrueber/viu, +github.com/fkohrt/action-languagetool, +github.com/fkohrt/action-markdownlint, +github.com/fkohrt/action-remark-lint, github.com/fkohs/py_socksproto, github.com/fkokosinski/tomograph, github.com/fkolbl/BIMMS, @@ -510379,6 +520286,7 @@ github.com/flagsense/flagsense-java-sdk,num_dependents_deps.dev:0 github.com/flagsense/flagsense-node-sdk,num_dependents_deps.dev:0 github.com/flagsense/flagsense-python-sdk, github.com/flagsense/go-sdk,num_dependents_deps.dev:0 +github.com/flagship-io/codebase-analyzer-action, github.com/flagship-io/flagship-common,num_dependents_deps.dev:0 github.com/flagship-io/flagship-go-sdk,num_dependents_deps.dev:0 github.com/flagship-io/flagship-proto,num_dependents_deps.dev:0 @@ -510423,6 +520331,7 @@ github.com/flaktack/financisto-to-ledger,num_dependents_deps.dev:0 github.com/flakusha/rust_sorting,num_dependents_deps.dev:0 github.com/flam3rboy/p5.js,num_dependents_deps.dev:0 github.com/flamatoken/igniswap-sdk,num_dependents_deps.dev:0 +github.com/flame-app-studio/firebase-ci-ops, github.com/flame-dev/Flame,num_dependents_deps.dev:0 github.com/flame-developers/command-runtime,num_dependents_deps.dev:0 github.com/flame-engine/flame,criticality_score:0.520640 @@ -510437,6 +520346,7 @@ github.com/flamebase/flamebase-server,num_dependents_deps.dev:0 github.com/flamechain/ConsLoadingBar, github.com/flameddd/binternalip, github.com/flameddd/redux-sharedworker,num_dependents_deps.dev:0 +github.com/flameddd/screenshots-ci-action, github.com/flamefork/go-workers,num_dependents_deps.dev:0 github.com/flamefork/libphonenumber,num_dependents_deps.dev:0 github.com/flamego/auth,num_dependents_deps.dev:0 @@ -510476,6 +520386,8 @@ github.com/flamescape/acsp,num_dependents_deps.dev:0 github.com/flamesdev/react-interval-rerenderer,num_dependents_deps.dev:0 github.com/flameshot-org/flameshot,criticality_score:0.570260 github.com/flamespeed/cs207-FinalProject, +github.com/flamestro/build-push-github-action, +github.com/flamestro/repository-event-dispatch-action, github.com/flamewow/PyAPNs, github.com/flamewow/argon2_py, github.com/flamewow/nestjs-asyncapi,num_dependents_deps.dev:0 @@ -510524,6 +520436,7 @@ github.com/flan/tyuo,num_dependents_deps.dev:0 github.com/flanaman/wsgi_monitor3, github.com/flandrade/harvest-overtime,num_dependents_deps.dev:0 github.com/flaneur2020/go-simpleflow,num_dependents_deps.dev:0 +github.com/flaneur2020/query-matching-issues, github.com/flaneurtv/json-pipe-protocol,num_dependents_deps.dev:0 github.com/flanfly/glpk-sys,num_dependents_deps.dev:0 github.com/flanfly/quickjs-sys,num_dependents_deps.dev:0 @@ -510604,6 +520517,7 @@ github.com/flarahome/battlecruiser, github.com/flarahome/flara, github.com/flarco/dbio,num_dependents_deps.dev:0 github.com/flarco/dbnet, +github.com/flarco/envkey-action, github.com/flarco/g,num_dependents_deps.dev:0 github.com/flarco/gutil,num_dependents_deps.dev:0 github.com/flarco/sling,num_dependents_deps.dev:0 @@ -510694,6 +520608,7 @@ github.com/flashcode/gitchart, github.com/flashcode/msgcheck, github.com/flashcode/nb2fr,num_dependents_deps.dev:0 github.com/flashcode/nb2l, +github.com/flashd2n/validate-cloud-release, github.com/flashdagger/git-subrepo-pypi, github.com/flashdagger/ytdlp-plugins, github.com/flasherup/gradtage.de,num_dependents_deps.dev:0 @@ -510750,8 +520665,11 @@ github.com/flaskbb/flaskbb-plugin-portal, github.com/flaskhost/flaskhost-cli, github.com/flast/kyulog,num_dependents_deps.dev:0 github.com/flast7/flast7,num_dependents_deps.dev:0 +github.com/flat35hd99/actions_for_latex_markdown, github.com/flat35hd99/biovoronoi, +github.com/flat35hd99/cache-make, github.com/flat35hd99/canalyse, +github.com/flat35hd99/openscad-actions, github.com/flat35hd99/supaconify, github.com/flatangle/flatlib, github.com/flatanimals/vue-media-queries,num_dependents_deps.dev:0 @@ -510764,6 +520682,7 @@ github.com/flatfeestack/payout,num_dependents_deps.dev:0 github.com/flatfilers/adapter,num_dependents_deps.dev:0 github.com/flatfisher/flounder, github.com/flatgeobuf/flatgeobuf,num_dependents_deps.dev:0 +github.com/flatherskevin/semver-action, github.com/flathub/flathub,criticality_score:0.488470 github.com/flatipie/Flatipie, github.com/flatiron-labs/design-system, @@ -510822,6 +520741,7 @@ github.com/flatlogic/widgster,num_dependents_deps.dev:0 github.com/flatmax/WASM,num_dependents_deps.dev:0 github.com/flatmax/gtkiostream,num_dependents_deps.dev:0 github.com/flatpak/flatpak,criticality_score:0.689800 +github.com/flatpak/flatpak-github-actions, github.com/flatpeach/guava,num_dependents_deps.dev:0 github.com/flatpickr/flatpickr,"criticality_score:0.618050,num_dependents_deps.dev:10" github.com/flatpolar/geoTriMesh, @@ -510840,6 +520760,7 @@ github.com/flatsurf/cppyythonizations, github.com/flatsurf/ipyvue-async, github.com/flatsurf/ipyvue-flatsurf, github.com/flatsurf/sage-flatsurf, +github.com/flatt-security/shisho-action, github.com/flatt-security/tree-sitter-go-query,num_dependents_deps.dev:0 github.com/flatten-js/blessed-widget-manager,num_dependents_deps.dev:0 github.com/flatten-js/frnpm,num_dependents_deps.dev:0 @@ -510919,6 +520840,7 @@ github.com/flaviogf/star_wars_backend,num_dependents_deps.dev:0 github.com/flaviogf/strongify_password,num_dependents_deps.dev:0 github.com/flaviogf/wash_contact_sdk, github.com/flaviogf/wash_landingpage_sdk,num_dependents_deps.dev:0 +github.com/flavioheleno/watchr-action, github.com/flaviohenriquealmeida/express-shortcut,num_dependents_deps.dev:0 github.com/flaviohenriquealmeida/express-use-shortcut,num_dependents_deps.dev:0 github.com/flavioislima/HeroicGamesLauncher,criticality_score:0.387740 @@ -510957,7 +520879,9 @@ github.com/flaviostutz/wfs-tiler,num_dependents_deps.dev:0 github.com/flaviotordini/minitube,criticality_score:0.479060 github.com/flaviotulino/angular-cbc,num_dependents_deps.dev:0 github.com/flaviouk/gitlab-ts, +github.com/flaviouk/monorepo-cache-key, github.com/flaviovs/ubadges,num_dependents_deps.dev:0 +github.com/flavius-dinu/chatgpt-pr-comment, github.com/flaviusb/fantasy-cpu-emulator,num_dependents_deps.dev:0 github.com/flaviusb/pineapplepizza-rust-reference,num_dependents_deps.dev:0 github.com/flaviusone/coverage-diff,num_dependents_deps.dev:0 @@ -511046,6 +520970,11 @@ github.com/flbulgarelli/gobstones-test-runner,num_dependents_deps.dev:0 github.com/flbulgarelli/headbreaker,num_dependents_deps.dev:0 github.com/flbulgarelli/onomaspy, github.com/flcdrg/ember-cli-typescript,num_dependents_deps.dev:0 +github.com/flcdrg/example-ts-action, +github.com/flcdrg/get-azure-app-configuration-action, +github.com/flcdrg/remove-release-asset-action, +github.com/flcdrg/replace-multiple-action, +github.com/flcdrg/wayback-machine-query-action, github.com/flcl42/react-select-chain,num_dependents_deps.dev:0 github.com/flcoder/ansi-ec,num_dependents_deps.dev:0 github.com/flcoder/simple-ut,num_dependents_deps.dev:0 @@ -511096,8 +521025,10 @@ github.com/fleet6/godlike,num_dependents_deps.dev:0 github.com/fleetbase/fleetbase-js,num_dependents_deps.dev:0 github.com/fleetcoder/fleet-ui,num_dependents_deps.dev:0 github.com/fleetdm/fleet,num_dependents_deps.dev:0 +github.com/fleetdm/fleet-mdm-gitops, github.com/fleetdm/orbit,num_dependents_deps.dev:0 github.com/fleetdm/throttled,num_dependents_deps.dev:0 +github.com/fleetfn/fleet-action, github.com/fleetfs/fleetfs,num_dependents_deps.dev:0 github.com/fleeting/generator-drought,num_dependents_deps.dev:0 github.com/fleeting/starwars-cli,num_dependents_deps.dev:0 @@ -511183,6 +521114,7 @@ github.com/flemingtonlab/SpliceV, github.com/flemo93/dcs-go-stats,num_dependents_deps.dev:0 github.com/flemo93/dcs-kellergeschwader-serverstatus-go,num_dependents_deps.dev:0 github.com/flemse/ember-cli-template-switcher,num_dependents_deps.dev:0 +github.com/flemzord/setup-aws-copilot, github.com/flennerhag/mlens, github.com/fleonard/cra-template-fleonard-starter,num_dependents_deps.dev:0 github.com/fleonasb/django4-bootstrap-breadcrumbs, @@ -511270,6 +521202,7 @@ github.com/fletcherist/yandex-dialogs-sdk-lowdb,num_dependents_deps.dev:0 github.com/fletchto99/hexo-sliding-spoiler,num_dependents_deps.dev:0 github.com/fletchto99/multiwall-creator,num_dependents_deps.dev:0 github.com/fletom/gifruw, +github.com/fletort/clasp-tokens-action, github.com/fleur-js/fleur,num_dependents_deps.dev:0 github.com/fleur-js/lys,num_dependents_deps.dev:0 github.com/fleur-js/mordred,num_dependents_deps.dev:0 @@ -511282,8 +521215,12 @@ github.com/flex-dapps/embark-mythx,num_dependents_deps.dev:0 github.com/flex-dapps/gantree-cli,num_dependents_deps.dev:0 github.com/flex-dapps/gantree-core, github.com/flex-dapps/gantree-lib-nodejs,num_dependents_deps.dev:0 +github.com/flex-development/dist-tag-action, +github.com/flex-development/flautoreview, +github.com/flex-development/gh-commit, github.com/flex-development/grease,num_dependents_deps.dev:0 github.com/flex-development/log,num_dependents_deps.dev:0 +github.com/flex-development/rice-action, github.com/flex-oss/flex-fruit,num_dependents_deps.dev:0 github.com/flex-oss/flex-oss-parent,num_dependents_deps.dev:0 github.com/flex-oss/flex-ui,num_dependents_deps.dev:0 @@ -511298,6 +521235,7 @@ github.com/flexare/colorista,num_dependents_deps.dev:0 github.com/flexbase-eng/notarize-node-client, github.com/flexbean/url-watch,num_dependents_deps.dev:0 github.com/flexbooru/flexbooru,criticality_score:0.309930 +github.com/flexcodelabs/bump-version, github.com/flexcompute/tidy3d, github.com/flexd/csrf,num_dependents_deps.dev:0 github.com/flexd/node-motd,num_dependents_deps.dev:0 @@ -511644,6 +521582,7 @@ github.com/flipped-aurora/gva-plugins,num_dependents_deps.dev:0 github.com/flipped-aurora/ws,num_dependents_deps.dev:0 github.com/flipped199/solar2lunar,num_dependents_deps.dev:0 github.com/flipper-zero/flipper-update-server,num_dependents_deps.dev:0 +github.com/flipperdevices/flipperzero-ufbt-action, github.com/flippingbits/titan,num_dependents_deps.dev:0 github.com/flippinjoe/chunkit,num_dependents_deps.dev:0 github.com/flippo24/candles, @@ -511653,6 +521592,7 @@ github.com/flips01/ble,num_dependents_deps.dev:0 github.com/flipsasser/federal_offense,num_dependents_deps.dev:0 github.com/flipside/gulp-graphql,num_dependents_deps.dev:0 github.com/flipsidecrypto/databricks-sdk-golang,num_dependents_deps.dev:0 +github.com/flipt-io/validate-action, github.com/fliptables/react-native-lazyloader,num_dependents_deps.dev:0 github.com/flipthedream/goinsapi,num_dependents_deps.dev:0 github.com/fliptheweb/ab-group-size,num_dependents_deps.dev:0 @@ -511965,6 +521905,7 @@ github.com/flocktory/editro,num_dependents_deps.dev:0 github.com/flocsy/grunt-liquibase-postgresql,num_dependents_deps.dev:0 github.com/flocsy/pebble-rtltr,num_dependents_deps.dev:0 github.com/flocsy/x-echo,num_dependents_deps.dev:0 +github.com/flodav/test-action, github.com/floe/deepbacksub,criticality_score:0.323440 github.com/floehopper/instantiator,num_dependents_deps.dev:0 github.com/floehopper/introspection,num_dependents_deps.dev:0 @@ -512001,6 +521942,7 @@ github.com/flohil/wdio-workflo-example,num_dependents_deps.dev:0 github.com/flohil/wdio-workflo-jasmine-framework,num_dependents_deps.dev:4 github.com/flohil/wdio-workflo-spec-reporter,num_dependents_deps.dev:4 github.com/flohil/webdriverio-workflo,num_dependents_deps.dev:4 +github.com/floholz/issue-to-project-v2-item, github.com/flohorovicic/pygeomod, github.com/flohorovicic/pynoddy, github.com/floj/caddy2goaccess,num_dependents_deps.dev:0 @@ -512031,6 +521973,7 @@ github.com/floledermann/stimsrv,num_dependents_deps.dev:0 github.com/floledermann/stimsrv-client-puppeteer,num_dependents_deps.dev:0 github.com/floledermann/stimsrv-client-servercanvas,num_dependents_deps.dev:0 github.com/floledermann/stimsrv-slippymap,num_dependents_deps.dev:0 +github.com/flolep2607/translate-readme, github.com/floleuerer/fastai_ulmfit, github.com/flomader/eventhub-command-line-tools, github.com/flomair/gulp-excelsheets2json,num_dependents_deps.dev:0 @@ -512050,6 +521993,7 @@ github.com/flomotlik/awsie, github.com/flomotlik/deployto, github.com/flomotlik/former, github.com/flomotlik/formica, +github.com/floms/action-caprover, github.com/floms/response-raider,num_dependents_deps.dev:0 github.com/flonny/pxtovw-loader,num_dependents_deps.dev:0 github.com/flonny/pxtovw-postcss, @@ -512057,6 +522001,7 @@ github.com/floo51/js-md5,num_dependents_deps.dev:12 github.com/flood-io/browser-test,num_dependents_deps.dev:0 github.com/flood-io/element,num_dependents_deps.dev:2574 github.com/flood-io/experimental-release-workflow,num_dependents_deps.dev:0 +github.com/flood-io/is-published-on-npm, github.com/flood-io/ruby-jmeter,criticality_score:0.322220 github.com/floodfx/cfmr-python, github.com/floodfx/fspk-cli, @@ -512207,6 +522152,7 @@ github.com/florian-barbare/react-menu,num_dependents_deps.dev:0 github.com/florian-barbare/webpack-config,num_dependents_deps.dev:0 github.com/florian-bd/component-resolver-webpack,num_dependents_deps.dev:0 github.com/florian-bd/syntax,num_dependents_deps.dev:0 +github.com/florian-h05/gh-action-advanced-bump-version, github.com/florian-heer/react-native-cacheable-images,num_dependents_deps.dev:0 github.com/florian-heer/rn-cached-images,num_dependents_deps.dev:0 github.com/florian-huber/mt-dynamics, @@ -512243,6 +522189,7 @@ github.com/florianbellazouz/kaaabin,num_dependents_deps.dev:0 github.com/florianbellazouz/kaaalastic-ovh,num_dependents_deps.dev:0 github.com/florianbellazouz/kaaanet,num_dependents_deps.dev:0 github.com/florianbellazouz/kaaatoken,num_dependents_deps.dev:0 +github.com/florianblume/with-pybind11-action, github.com/florianboergel/pyTEF, github.com/florianbreier/jest-html-reporters,num_dependents_deps.dev:0 github.com/floriancargoet/github-cloner,num_dependents_deps.dev:0 @@ -512318,14 +522265,17 @@ github.com/florianl/go-nflog,num_dependents_deps.dev:0 github.com/florianl/go-nfqueue,num_dependents_deps.dev:6 github.com/florianl/go-tc,num_dependents_deps.dev:14 github.com/florianl/gonetviz,num_dependents_deps.dev:0 +github.com/florianl/govulncheck-action, github.com/florianl/panonoctl, github.com/florianl/pyOSCapi, github.com/florianldt/WorkplaceBotMessageEmitter,num_dependents_deps.dev:0 +github.com/florianldt/workplace-action, github.com/florianleger/plotly.js,num_dependents_deps.dev:0 github.com/florianlenz/js-primitve-types,num_dependents_deps.dev:0 github.com/florianloch/cassette,num_dependents_deps.dev:0 github.com/florianloch/gobak,num_dependents_deps.dev:0 github.com/florianludwig/spip, +github.com/florianmarkusse/jsPerformoBot, github.com/florianmaxim/gold-secret,num_dependents_deps.dev:0 github.com/florianmaxim/meta,num_dependents_deps.dev:0 github.com/florianmaxim/meta-console,num_dependents_deps.dev:0 @@ -512365,6 +522315,7 @@ github.com/florianv/objar,num_dependents_deps.dev:0 github.com/florianv/swap,criticality_score:0.434740 github.com/florianvazelle/phaser3-vjoy-plugin,num_dependents_deps.dev:0 github.com/florianwoelki/insta-clone,num_dependents_deps.dev:0 +github.com/floric/repo-monitor-action, github.com/floridoo/concat-with-sourcemaps,num_dependents_deps.dev:12618 github.com/floridoo/gulp-sourcemaps,num_dependents_deps.dev:22163 github.com/floridoo/scarab,num_dependents_deps.dev:0 @@ -512415,6 +522366,8 @@ github.com/florisdh/pixi-scenes,num_dependents_deps.dev:0 github.com/florisla/stm32loader, github.com/florisvink/herres,num_dependents_deps.dev:0 github.com/florisvink/rustig,num_dependents_deps.dev:0 +github.com/florius0/resharper-ci, +github.com/florius0/resharper-unity-ci, github.com/floross/nestjs-notion, github.com/florovarelaa/binaryConversor,num_dependents_deps.dev:0 github.com/florpor/pdf-table-extractor,num_dependents_deps.dev:0 @@ -512795,6 +522748,9 @@ github.com/flowmemo/h-index,num_dependents_deps.dev:0 github.com/flowmemo/httpany,num_dependents_deps.dev:0 github.com/flowmemo/koa-httpany,num_dependents_deps.dev:0 github.com/flownait/stmodels, +github.com/flownative/action-docker-build, +github.com/flownative/action-docker-get-label, +github.com/flownative/action-docker-publish-semver, github.com/flownative/localbeach,num_dependents_deps.dev:0 github.com/flownerd/httprouter,num_dependents_deps.dev:0 github.com/flownerd/keyboard,num_dependents_deps.dev:0 @@ -512853,6 +522809,8 @@ github.com/flowup/ngx-hackable-markdown,num_dependents_deps.dev:0 github.com/flowup/ngx-swagger-client-generator,num_dependents_deps.dev:0 github.com/flowup/rx-webrpc,num_dependents_deps.dev:0 github.com/flowup/videogular2,num_dependents_deps.dev:0 +github.com/flowwer-dev/pull-request-stats, +github.com/flowwer-dev/recap, github.com/flowxjs/TypeServiceORM,num_dependents_deps.dev:0 github.com/flowxjs/TypeServiceRedis,num_dependents_deps.dev:0 github.com/flowxjs/npm, @@ -512990,6 +522948,8 @@ github.com/fluencelabs/marine-rs-sdk,num_dependents_deps.dev:141 github.com/fluencelabs/p2p-fileshare,num_dependents_deps.dev:0 github.com/fluencelabs/proto-distributor,num_dependents_deps.dev:0 github.com/fluencelabs/rust-sdk,num_dependents_deps.dev:182 +github.com/fluencelabs/setup-fluence, +github.com/fluencelabs/setup-marine, github.com/fluencelabs/trust-graph,num_dependents_deps.dev:2 github.com/fluencelabs/wasm-module-name,num_dependents_deps.dev:0 github.com/fluencesh/fluence.libs.monorepo,num_dependents_deps.dev:0 @@ -513028,6 +522988,7 @@ github.com/fluent/fluentd-ui,"criticality_score:0.303010,num_dependents_deps.dev github.com/fluent/serverengine,num_dependents_deps.dev:1011 github.com/fluentart/nodeDB,num_dependents_deps.dev:0 github.com/fluentassertions/fluentassertions,criticality_score:0.643570 +github.com/fluentci-io/setup-fluentci, github.com/fluentcodes/elasticobjects,num_dependents_deps.dev:0 github.com/fluentdesignweb/fdweb,num_dependents_deps.dev:0 github.com/fluentdesk/FRESCA,num_dependents_deps.dev:0 @@ -513061,6 +523022,8 @@ github.com/fluffle/goirc,criticality_score:0.315450 github.com/fluffle/opencensus-go,num_dependents_deps.dev:0 github.com/fluffle/vegeta,num_dependents_deps.dev:0 github.com/fluffos/fluffos,criticality_score:0.390220 +github.com/fluffy-bunny/action-docker-azure-terraform-setup, +github.com/fluffy-bunny/action-filequery, github.com/fluffy-bunny/go-jwt-middleware,num_dependents_deps.dev:0 github.com/fluffy-bunny/goiocdi,num_dependents_deps.dev:0 github.com/fluffy-bunny/grpcdotnetgo,num_dependents_deps.dev:0 @@ -513393,6 +523356,8 @@ github.com/flutejs/rcf,num_dependents_deps.dev:0 github.com/flutesing/fs-delete-empty,num_dependents_deps.dev:0 github.com/flutesing/fs-sync,num_dependents_deps.dev:0 github.com/flutesing/w,num_dependents_deps.dev:0 +github.com/flutter-actions/setup-flutter, +github.com/flutter-fix-something/auto-label-action, github.com/flutter-rs/cargo-flutter,num_dependents_deps.dev:0 github.com/flutter-rs/psi-cli, github.com/flutter-webrtc/flutter-webrtc,criticality_score:0.450170 @@ -513434,6 +523399,7 @@ github.com/flutter/uxr,Google github.com/flutter/web_installers,Google github.com/flutter/website,"Google,criticality_score:0.643850" github.com/fluttercandies/extended_image,criticality_score:0.361800 +github.com/fluttercandies/no-free-usage-action, github.com/flutterchina/dio,criticality_score:0.448000 github.com/flutterchina/flutter-in-action,criticality_score:0.348900 github.com/fluttercommunity/flutter_downloader,criticality_score:0.371470 @@ -513442,6 +523408,7 @@ github.com/fluttercommunity/flutter_webview_plugin,criticality_score:0.388370 github.com/fluttercommunity/font_awesome_flutter,criticality_score:0.351810 github.com/fluttercommunity/get_it,criticality_score:0.417310 github.com/fluttercommunity/redux.dart,Google +github.com/flutterings/dart-package-analyzer, github.com/flutteryembers/references,num_dependents_deps.dev:0 github.com/fluture-js/Fluture,"criticality_score:0.476230,num_dependents_deps.dev:304" github.com/fluture-js/booture, @@ -513469,6 +523436,7 @@ github.com/fluxcapacitor/pipeline, github.com/fluxcd/flagger,"criticality_score:0.536070,num_dependents_deps.dev:0" github.com/fluxcd/flux,"criticality_score:0.599050,num_dependents_deps.dev:5" github.com/fluxcd/flux2,"criticality_score:0.550760,num_dependents_deps.dev:1" +github.com/fluxcd/fluxctl-action, github.com/fluxcd/go-git-providers,num_dependents_deps.dev:0 github.com/fluxcd/helm-controller,num_dependents_deps.dev:1 github.com/fluxcd/helm-operator,"criticality_score:0.561750,num_dependents_deps.dev:0" @@ -513485,6 +523453,8 @@ github.com/fluxcd/webui,num_dependents_deps.dev:0 github.com/fluxdeploy/flux-cli, github.com/fluxdesign/flux-css,num_dependents_deps.dev:0 github.com/fluxet/project-lvl1-s400,num_dependents_deps.dev:0 +github.com/fluximus-prime/openapi-to-postman-action, +github.com/fluximus-prime/redocly-cli-github-action, github.com/fluxine/fakelms,num_dependents_deps.dev:0 github.com/fluxio/flux-sdk-helpers, github.com/fluxlet/fluxlet,num_dependents_deps.dev:0 @@ -513492,6 +523462,7 @@ github.com/fluxlet/fluxlet-immutable,num_dependents_deps.dev:0 github.com/fluxloop/react-native-pure,num_dependents_deps.dev:0 github.com/fluxly/fluxamasynthPi, github.com/fluxly/oheye, +github.com/fluxninja/openai-pr-reviewer, github.com/fluxo-js/fluxo,num_dependents_deps.dev:0 github.com/fluxo-js/fluxo-react-connect-stores,num_dependents_deps.dev:0 github.com/fluxonaut/b3_cdi_curve, @@ -513516,6 +523487,7 @@ github.com/fluxxu/elm-hot-loader,num_dependents_deps.dev:0 github.com/fluxxu/evalidator,num_dependents_deps.dev:2 github.com/fluxynet/gocipe,num_dependents_deps.dev:0 github.com/fluxynet/vue-setter,num_dependents_deps.dev:0 +github.com/fluzzi/labeler, github.com/flw0/equation-editor-react,num_dependents_deps.dev:14 github.com/flweber/express-ad-basicauth,num_dependents_deps.dev:0 github.com/flweber/portainer-stack-updater,num_dependents_deps.dev:0 @@ -513676,6 +523648,7 @@ github.com/flying-events/nodejs-sdk,num_dependents_deps.dev:0 github.com/flying-robot/simpledb,num_dependents_deps.dev:0 github.com/flying-sheep/allot, github.com/flying-sheep/babel-plugin-transform-react-createelement-to-jsx,num_dependents_deps.dev:4 +github.com/flying-sheep/check, github.com/flying-sheep/eslint-config,num_dependents_deps.dev:0 github.com/flying-sheep/eslint-plugin-no-foreach,num_dependents_deps.dev:2 github.com/flying-sheep/itertools-len, @@ -513732,6 +523705,7 @@ github.com/flyingmutant/changepoint,num_dependents_deps.dev:0 github.com/flyingmutant/rapid,num_dependents_deps.dev:0 github.com/flyingon/go-common,num_dependents_deps.dev:0 github.com/flyingpetet/repository, +github.com/flyingpot/hugo-cos-deploy, github.com/flyingrhinonz/nccm, github.com/flyingrub/scdl,criticality_score:0.400110 github.com/flyingsaucerproject/flyingsaucer,"criticality_score:0.348360,num_dependents_deps.dev:640" @@ -513803,6 +523777,7 @@ github.com/flynnham/typed,num_dependents_deps.dev:0 github.com/flynnsDevstation/eslint-config,num_dependents_deps.dev:0 github.com/flynnt/grunt-ssnt,num_dependents_deps.dev:0 github.com/flynnt/grunt-sst, +github.com/flynshue/version-action, github.com/flynshuepersonal/articles,num_dependents_deps.dev:0 github.com/flynshuepersonal/napv2,num_dependents_deps.dev:0 github.com/flynshuepersonal/porkv2,num_dependents_deps.dev:0 @@ -513914,6 +523889,7 @@ github.com/flyswatter/sandwich-expando,num_dependents_deps.dev:0 github.com/flyswatter/voxel-zigfu,num_dependents_deps.dev:0 github.com/flytam/CsdnSyncHexo,num_dependents_deps.dev:0 github.com/flytam/babel-plugin-resolve-config-json,num_dependents_deps.dev:0 +github.com/flytam/github-issue-to-hexo, github.com/flytam/tcb-router,num_dependents_deps.dev:0 github.com/flytam/vpc-cidr,num_dependents_deps.dev:0 github.com/flyte/md-mqtt, @@ -514005,6 +523981,7 @@ github.com/flyway/flyway-test-extensions,num_dependents_deps.dev:123 github.com/flyween/drag-ele,num_dependents_deps.dev:0 github.com/flyween/rorop,num_dependents_deps.dev:0 github.com/flyween/vue3-quill,num_dependents_deps.dev:0 +github.com/flyweightrocks/aws-ec2-action, github.com/flywheel-io/bids-client, github.com/flywheel-io/cornerstone-nifti-image-loader,num_dependents_deps.dev:0 github.com/flywheel-io/flywheel-common, @@ -514071,6 +524048,7 @@ github.com/fmacpro/parliament-data-scraper,num_dependents_deps.dev:0 github.com/fmagege/tut-meower,num_dependents_deps.dev:0 github.com/fmagin/angr-cli, github.com/fmagrini/seislib, +github.com/fmahiant/docker-buildroot-action, github.com/fmahnke/jsonschema-cli,num_dependents_deps.dev:0 github.com/fmahnke/node-log-stomp,num_dependents_deps.dev:0 github.com/fmahnke/resolv,num_dependents_deps.dev:0 @@ -514176,6 +524154,7 @@ github.com/fmenabe/go-netmagis,num_dependents_deps.dev:0 github.com/fmendoza/ngx-form-progress-bar,num_dependents_deps.dev:0 github.com/fmenegui/ecg_tools, github.com/fmenemo/tslint-config-angular,num_dependents_deps.dev:0 +github.com/fmenezes/codeowners-action, github.com/fmenezes/json-stringify-date,num_dependents_deps.dev:2 github.com/fmenezes/talkrpc,num_dependents_deps.dev:0 github.com/fmenozzi/shadertoy-rs,num_dependents_deps.dev:0 @@ -514240,6 +524219,7 @@ github.com/fmj95817/ucas-csutil,num_dependents_deps.dev:0 github.com/fmjsjx/libcommon,num_dependents_deps.dev:106 github.com/fmjsjx/libnetty,num_dependents_deps.dev:27 github.com/fmjsjx/myboot,num_dependents_deps.dev:9 +github.com/fml09/get-label, github.com/fmlimao/fm-json-response,num_dependents_deps.dev:0 github.com/fmlimao/fm-validator,num_dependents_deps.dev:0 github.com/fmlo-dev/fmflow, @@ -514300,11 +524280,13 @@ github.com/fmterrorf/drdrie,num_dependents_deps.dev:0 github.com/fmtlib/fmt,"criticality_score:0.704870,num_dependents_deps.dev:0" github.com/fmtoffolo/showSearcher,num_dependents_deps.dev:0 github.com/fmtree-dev/fmtree, +github.com/fmtree-dev/md-toc-action, github.com/fmtvp/percento.js, github.com/fmtvp/tal,num_dependents_deps.dev:0 github.com/fmtvp/tal-page-strategies,num_dependents_deps.dev:0 github.com/fmui/java-osb,num_dependents_deps.dev:0 github.com/fmuiin14/belajar-golang,num_dependents_deps.dev:0 +github.com/fmunirdev/envvar-to-dotenv-action, github.com/fmunoz92/generator-meanio,num_dependents_deps.dev:0 github.com/fmv1992/data_utilities, github.com/fmv1992/fmv1992_scala_utilities,num_dependents_deps.dev:0 @@ -514462,6 +524444,7 @@ github.com/fnklabs/mt5-client,num_dependents_deps.dev:0 github.com/fnklabs/nast,num_dependents_deps.dev:0 github.com/fnknzzz/poker-resolver,num_dependents_deps.dev:0 github.com/fnkr/cot,num_dependents_deps.dev:0 +github.com/fnkr/github-action-ghr, github.com/fnkr/inwxcli, github.com/fnky/css3-uiswitch,num_dependents_deps.dev:0 github.com/fnky/extend-accessors,num_dependents_deps.dev:0 @@ -514478,6 +524461,7 @@ github.com/fnmartinez/j-micro-configs,num_dependents_deps.dev:0 github.com/fnmunhoz/neutrino-preset-prettier-eslint,num_dependents_deps.dev:0 github.com/fnndsc/pypx, github.com/fnnzzz/grabbbins,num_dependents_deps.dev:0 +github.com/fno/kubernetes-action-no-aws, github.com/fnoah/enhanced-file-loader,num_dependents_deps.dev:0 github.com/fnoah/react-breakout,num_dependents_deps.dev:0 github.com/fnoah/react-relaxed,num_dependents_deps.dev:0 @@ -514556,6 +524540,7 @@ github.com/fntechgit/schedule-filter-widget,num_dependents_deps.dev:0 github.com/fntkg/reporter,num_dependents_deps.dev:0 github.com/fntlnz/coredns,num_dependents_deps.dev:0 github.com/fntneves/jquery-labelauty,num_dependents_deps.dev:0 +github.com/fntsrlike/action-netlify-deploy, github.com/fntst/VMConsole,num_dependents_deps.dev:0 github.com/fntst/callthen,num_dependents_deps.dev:0 github.com/fntst/tlfns,num_dependents_deps.dev:0 @@ -514584,6 +524569,7 @@ github.com/fnzr/zenchi, github.com/fo-dicom/fo-dicom,criticality_score:0.543640 github.com/fo0/java-gh-package-registry-example,num_dependents_deps.dev:0 github.com/fo2rist/cadabra,num_dependents_deps.dev:3 +github.com/fo2rist/pull-request-stats, github.com/foabo/7days-miniprojects,num_dependents_deps.dev:0 github.com/foad-heidari/dj-booking, github.com/foad/climbing-capacity,num_dependents_deps.dev:0 @@ -514680,6 +524666,7 @@ github.com/focusaurus/path-part,num_dependents_deps.dev:0 github.com/focusaurus/process-title,num_dependents_deps.dev:0 github.com/focusaurus/white-glove, github.com/focusaurus/writers-digest,num_dependents_deps.dev:0 +github.com/focusbe/deploy-action, github.com/focusbe/focusbe-cli, github.com/focusbe/focusbejs,num_dependents_deps.dev:0 github.com/focusbe/giant-tools,num_dependents_deps.dev:0 @@ -514704,6 +524691,23 @@ github.com/fodelf/workspaceMangage, github.com/fodelf/wwzWebpack,num_dependents_deps.dev:0 github.com/fodevs/myhttp,num_dependents_deps.dev:0 github.com/fodoj/terraform-provider-foreman,num_dependents_deps.dev:0 +github.com/fody/anotar, +github.com/fody/asyncerrorhandler, +github.com/fody/caseless, +github.com/fody/emptyconstructor, +github.com/fody/equals, +github.com/fody/extraconstraints, +github.com/fody/infoof, +github.com/fody/janitor, +github.com/fody/methodtimer, +github.com/fody/moduleinit, +github.com/fody/obsolete, +github.com/fody/propertychanging, +github.com/fody/publicize, +github.com/fody/resourcer, +github.com/fody/validar, +github.com/fody/virtuosity, +github.com/fody/visualize, github.com/foeb/pinned_slab,num_dependents_deps.dev:0 github.com/foenixx/lisgo,num_dependents_deps.dev:0 github.com/foerster-technologies/phone,num_dependents_deps.dev:0 @@ -514853,6 +524857,7 @@ github.com/foisonocean/react-performant-collapsible,num_dependents_deps.dev:0 github.com/foisonocean/vite-plugin-graphql,num_dependents_deps.dev:0 github.com/foisonocean/webpack-grpc-web-loader,num_dependents_deps.dev:0 github.com/fojas/cleverbot-node,num_dependents_deps.dev:0 +github.com/fojia/action-move-issues-to-column, github.com/fojia/vue-aurus,num_dependents_deps.dev:0 github.com/fokind/fc,num_dependents_deps.dev:0 github.com/fokind/fundamental-react-native,num_dependents_deps.dev:0 @@ -515220,6 +525225,8 @@ github.com/fontanf/columngenerationsolverpy, github.com/fontanf/localsearchsolverpy, github.com/fontanf/treesearchsolverpy, github.com/fontanon/node-soap,num_dependents_deps.dev:0 +github.com/fontebasso/docker-hub-upstream, +github.com/fontebasso/ec2-github-runner, github.com/fontello/cubic2quad,num_dependents_deps.dev:1190 github.com/fontello/fontello,criticality_score:0.524320 github.com/fontello/microbuffer,num_dependents_deps.dev:1290 @@ -515264,10 +525271,13 @@ github.com/foo-dogsquared/freebies-hunt-api,num_dependents_deps.dev:0 github.com/foo-dogsquared/json-database,num_dependents_deps.dev:0 github.com/foo-foo-mq/node-riveter, github.com/foo-software/binoculars,num_dependents_deps.dev:0 +github.com/foo-software/binoculars-action, github.com/foo-software/create-react-app-server,num_dependents_deps.dev:0 github.com/foo-software/foo-api,num_dependents_deps.dev:0 github.com/foo-software/foo-react-charts,num_dependents_deps.dev:0 github.com/foo-software/lighthouse-check,num_dependents_deps.dev:0 +github.com/foo-software/lighthouse-check-action, +github.com/foo-software/lighthouse-check-status-action, github.com/foo-software/lighthouse-persist,num_dependents_deps.dev:0 github.com/foo-software/lighthouse-trigger,num_dependents_deps.dev:0 github.com/foo-software/react-feature-toggle,num_dependents_deps.dev:0 @@ -515403,6 +525413,7 @@ github.com/fooloomanzoo/text-input,num_dependents_deps.dev:4 github.com/fooloomanzoo/webvisual-elements,num_dependents_deps.dev:0 github.com/fooloomanzoo/webvisual-server,num_dependents_deps.dev:0 github.com/foolprooflabs/tiswitch,num_dependents_deps.dev:0 +github.com/foolscapcon/action-build-ghost-theme, github.com/foolsogood/custom-ele-table,num_dependents_deps.dev:0 github.com/foolsogood/react-custom-table,num_dependents_deps.dev:0 github.com/foolsopts/grapesjs-blocks-flexbox,num_dependents_deps.dev:0 @@ -515440,12 +525451,15 @@ github.com/fooof-tools/fooof, github.com/fooofei/go_pieces,num_dependents_deps.dev:0 github.com/fooofei/goremoter,num_dependents_deps.dev:0 github.com/fooofei/stdr,num_dependents_deps.dev:0 +github.com/foooomio/setup-jena, github.com/fooplugins/FooTable,num_dependents_deps.dev:0 github.com/foopod/emoji-string-tools,num_dependents_deps.dev:0 github.com/foorenxiang/odinson, github.com/foorenxiang/patchymcpatchface, github.com/foorilla/django-admin-list-charts, github.com/foosel/node-red-contrib-ssl-certificate,num_dependents_deps.dev:0 +github.com/foosel/scoop-checkver-action, +github.com/foosel/sync-team-with-twitter-list-action, github.com/foosinn/minduweb,num_dependents_deps.dev:0 github.com/foosinn/spacewidget, github.com/foosoft/goldsmith,num_dependents_deps.dev:0 @@ -515499,6 +525513,7 @@ github.com/fopina/pyfispip, github.com/fopina/pyspeedtest, github.com/fopina/subjack,num_dependents_deps.dev:0 github.com/fopina/tgbotplug, +github.com/fopina/upstream-to-pr, github.com/fopoon/funity, github.com/foprc/Brave,num_dependents_deps.dev:0 github.com/foprc/Starr,num_dependents_deps.dev:0 @@ -515568,6 +525583,7 @@ github.com/forbes/multiclamp,num_dependents_deps.dev:0 github.com/forbesjo/launch-browsers,num_dependents_deps.dev:0 github.com/forbesjo/videojs-4-5-compatibility,num_dependents_deps.dev:0 github.com/forbesjo/videojs-automation,num_dependents_deps.dev:0 +github.com/forbeslindesay/type-of, github.com/forbesmyester/SyncIt,num_dependents_deps.dev:0 github.com/forbesmyester/SyncItControl,num_dependents_deps.dev:0 github.com/forbesmyester/add-dot-diagram,num_dependents_deps.dev:0 @@ -515681,6 +525697,7 @@ github.com/forcedotcom/springmvc-archetype,num_dependents_deps.dev:0 github.com/forcedotcom/stargate,num_dependents_deps.dev:0 github.com/forcedotcom/wsc,num_dependents_deps.dev:332 github.com/forceform/code-quality-tools,num_dependents_deps.dev:0 +github.com/forcemax/apptestai-test, github.com/forcepoint/fp-bd-fuid-cisco-pxgrid,num_dependents_deps.dev:0 github.com/forcetool/forcetool,num_dependents_deps.dev:0 github.com/forceuser/access-deep,num_dependents_deps.dev:0 @@ -515880,6 +525897,7 @@ github.com/foretagsplatsen/ftgp-eslint,num_dependents_deps.dev:0 github.com/foretagsplatsen/klassified,num_dependents_deps.dev:0 github.com/foretagsplatsen/lesshint-unix-reporter,num_dependents_deps.dev:0 github.com/foretagsplatsen/numbro,num_dependents_deps.dev:91 +github.com/foretheta/required-labels, github.com/forever-am/fcredis, github.com/forever-eight/mongo,num_dependents_deps.dev:0 github.com/forever-eight/todo,num_dependents_deps.dev:0 @@ -515911,6 +525929,7 @@ github.com/foreverzi/snowflake,num_dependents_deps.dev:0 github.com/foreverzmy/interview,num_dependents_deps.dev:0 github.com/foreverzmy/vue-ts-componet,num_dependents_deps.dev:0 github.com/forewing/csgo-rcon,num_dependents_deps.dev:0 +github.com/forewing/git-metadata, github.com/forewing/gobuild,num_dependents_deps.dev:0 github.com/forewing/goldennum,num_dependents_deps.dev:0 github.com/forewing/webrcon-server,num_dependents_deps.dev:0 @@ -515965,6 +525984,7 @@ github.com/forge1yc/go_note,num_dependents_deps.dev:0 github.com/forge512/ember-printable-pages,num_dependents_deps.dev:0 github.com/forge512/ember-sass-atoms,num_dependents_deps.dev:0 github.com/forge512/ember-webcam, +github.com/forged-concepts/packer-build-action, github.com/forgedsoftware/measurementjs, github.com/forgehe/lotide,num_dependents_deps.dev:0 github.com/forgemo/byte_stream_splitter,num_dependents_deps.dev:0 @@ -516094,6 +526114,7 @@ github.com/forkacc/go-http-server,num_dependents_deps.dev:0 github.com/forkai/g2u-cli,num_dependents_deps.dev:0 github.com/forkai/jandan,num_dependents_deps.dev:0 github.com/forkai/kurisu,num_dependents_deps.dev:0 +github.com/forkbabu/AutoEdit, github.com/forkbabu/BinodTharu, github.com/forkbabu/keras-notify, github.com/forkbabu/lucid2, @@ -516363,14 +526384,18 @@ github.com/formslider/formslider.tracking,num_dependents_deps.dev:0 github.com/formslider/formslider.unbounce.fixheight,num_dependents_deps.dev:0 github.com/formslider/formslider.unbounce.submitter,num_dependents_deps.dev:0 github.com/formsnake/formsnake-api, +github.com/formsort/action-check-codecov-config, +github.com/formsort/action-heroku-deploy, github.com/formsort/constants,num_dependents_deps.dev:2 github.com/formsort/custom-question-api,num_dependents_deps.dev:0 github.com/formsort/oss,num_dependents_deps.dev:2 github.com/formsort/react-embed,num_dependents_deps.dev:0 +github.com/formsort/sentryfuge, github.com/formsort/web-embed-api,num_dependents_deps.dev:0 github.com/formspark/formtrack,num_dependents_deps.dev:0 github.com/formspark/use-formspark,num_dependents_deps.dev:0 github.com/formspark/vue-use-formspark,num_dependents_deps.dev:0 +github.com/formspree/cli-action, github.com/formspree/formspree,criticality_score:0.324150 github.com/formspree/formspree-cli,num_dependents_deps.dev:0 github.com/formspree/formspree-core,num_dependents_deps.dev:4 @@ -516421,6 +526446,7 @@ github.com/forntoh/mdcdoc,num_dependents_deps.dev:0 github.com/fornwall/advent-of-code,num_dependents_deps.dev:0 github.com/fornwall/advent-of-code-2019-rs,num_dependents_deps.dev:0 github.com/fornwall/allocation-counter,num_dependents_deps.dev:0 +github.com/fornwall/check-ignore, github.com/fornwall/jelf,num_dependents_deps.dev:0 github.com/fornwall/rust-script,num_dependents_deps.dev:0 github.com/foroozandehgroup/NMR-EsPy, @@ -516660,6 +526686,7 @@ github.com/forticode/cipherise-java-sdk,num_dependents_deps.dev:0 github.com/forticode/cipherise-typescript-sdk,num_dependents_deps.dev:0 github.com/forticulous/ember-ez-tabs, github.com/fortierq/MTGScan, +github.com/fortierq/add-binder-link-action, github.com/fortierq/flimit, github.com/fortifi/go-api,num_dependents_deps.dev:0 github.com/fortifi/productmanager-go,num_dependents_deps.dev:0 @@ -516667,9 +526694,17 @@ github.com/fortify-ps/fortify-client-api,num_dependents_deps.dev:30 github.com/fortify-ps/fortify-ssc-parser-util,num_dependents_deps.dev:0 github.com/fortify/bsi-token-parser-js,num_dependents_deps.dev:0 github.com/fortify/bsi-token-parser-kt,num_dependents_deps.dev:0 +github.com/fortify/gha-export-vulnerabilities, +github.com/fortify/gha-fod-generate-sarif, +github.com/fortify/gha-setup-fod-uploader, +github.com/fortify/gha-setup-scancentral-client, +github.com/fortify/github-action, github.com/fortify/plugin-api,num_dependents_deps.dev:0 github.com/fortify/ssc-restapi-client,num_dependents_deps.dev:0 github.com/fortifyadmin/fortifyapi, +github.com/fortil/action-create-github-comment, +github.com/fortil/action-generate-invalidation, +github.com/fortil/action-slack-notification, github.com/fortil/node-cloudwatchlogs,num_dependents_deps.dev:0 github.com/fortil/require-all-ts,num_dependents_deps.dev:0 github.com/fortil/xray-pg-sequelize,num_dependents_deps.dev:0 @@ -516685,6 +526720,7 @@ github.com/fortis/koa-boost,num_dependents_deps.dev:0 github.com/fortis/react-cent,num_dependents_deps.dev:0 github.com/fortitude/fortitude-sass,num_dependents_deps.dev:0 github.com/fortitudo-tech/fortitudo.tech, +github.com/fortmarek/tapestry-action, github.com/fortmatic/magic-js, github.com/fortmatic/passport-magic,num_dependents_deps.dev:0 github.com/fortnightlabs/snowball-js,num_dependents_deps.dev:39 @@ -516695,6 +526731,7 @@ github.com/fortnoxab/bitbucket-slack-bot,num_dependents_deps.dev:0 github.com/fortnoxab/mkubectl,num_dependents_deps.dev:0 github.com/fortnoxab/prometheus-net-discovery,num_dependents_deps.dev:0 github.com/fortrabbit/teutonic-css,num_dependents_deps.dev:0 +github.com/fortran-lang/setup-fpm, github.com/fortran-lang/stdlib,criticality_score:0.509720 github.com/fortranlee/folk-ccap,num_dependents_deps.dev:0 github.com/fortranlee/generic-validator,num_dependents_deps.dev:0 @@ -516881,6 +526918,7 @@ github.com/foss-haas/rote,num_dependents_deps.dev:0 github.com/foss-haas/rotunda,num_dependents_deps.dev:0 github.com/foss-haas/vworp,num_dependents_deps.dev:0 github.com/foss-transportationmodeling/popgen, +github.com/fossa-contrib/fossa-action, github.com/fossadev/unbans,num_dependents_deps.dev:0 github.com/fossage/ASCII-Video,num_dependents_deps.dev:0 github.com/fossage/generate-mock-builders, @@ -516900,6 +526938,7 @@ github.com/fossamagna/gmail-query-builder,num_dependents_deps.dev:0 github.com/fossamagna/google-script-dts-generator,num_dependents_deps.dev:0 github.com/fossapps/searilie,num_dependents_deps.dev:0 github.com/fossar/selfoss,criticality_score:0.537320 +github.com/fossas/fossa-action, github.com/fossas/fossa-cli,"criticality_score:0.486000,num_dependents_deps.dev:0" github.com/fossas/mocha-tape-deck,num_dependents_deps.dev:0 github.com/fossasia/2012.fossasia.org,criticality_score:0.356260 @@ -516953,6 +526992,7 @@ github.com/fossasia/visdom,criticality_score:0.425810 github.com/fossbarrow/swedish-ssn-validator,num_dependents_deps.dev:0 github.com/fossbarrow/tailwindcss-multiline-truncate,num_dependents_deps.dev:0 github.com/fosscord/fosscord-server-util,num_dependents_deps.dev:0 +github.com/fossdd/action-setup-pijul, github.com/fossdd/compiler-analyse,num_dependents_deps.dev:0 github.com/fossdd/compiler-analyses,num_dependents_deps.dev:0 github.com/fossegrim/liracer.org,num_dependents_deps.dev:0 @@ -517104,6 +527144,7 @@ github.com/foundation/foundation-zurb-template,criticality_score:0.317880 github.com/foundation/inky,"criticality_score:0.330650,num_dependents_deps.dev:4" github.com/foundation/panini,"criticality_score:0.364260,num_dependents_deps.dev:0" github.com/foundation/supercollider, +github.com/foundationdb-rs/foundationdb-actions-install, github.com/foundationdb/fdb-kubernetes-operator,num_dependents_deps.dev:0 github.com/foundations-dev/Shipwright, github.com/foundatn-io/go-pic,num_dependents_deps.dev:0 @@ -517114,6 +527155,7 @@ github.com/foundcareers/react-native-infinite-flatlist,num_dependents_deps.dev:0 github.com/foundcareers/redux-entity,num_dependents_deps.dev:0 github.com/founddev/plump, github.com/founddrama/a2z,num_dependents_deps.dev:0 +github.com/foundeo/fixinator-github-action, github.com/founder1992/sftp-upload-plugin,num_dependents_deps.dev:0 github.com/founderFE/founder-ui,num_dependents_deps.dev:0 github.com/founderlab/eslint-config-founderlab,num_dependents_deps.dev:0 @@ -517188,6 +527230,8 @@ github.com/foundriesio/ota-device-list,num_dependents_deps.dev:0 github.com/foundriesio/ota-device-remove,num_dependents_deps.dev:0 github.com/foundriesio/ota-device-updates,num_dependents_deps.dev:0 github.com/foundriesio/request-promise,num_dependents_deps.dev:0 +github.com/foundry-rs/foundry-toolchain, +github.com/foundry-rs/setup-snfoundry, github.com/foundweekends/conscript,"criticality_score:0.392940,num_dependents_deps.dev:0" github.com/foundweekends/giter8,"criticality_score:0.508160,num_dependents_deps.dev:8" github.com/foundweekends/pamflet,num_dependents_deps.dev:8 @@ -517200,6 +527244,8 @@ github.com/foundy/rollup-sample,num_dependents_deps.dev:0 github.com/fountain-of-youth/foy-python-handler, github.com/fountainalgo/pivot-reactjs,num_dependents_deps.dev:0 github.com/fountainhead-cash/bitsocketd,num_dependents_deps.dev:0 +github.com/fountainhead/action-pr-label-assistant, +github.com/fountainhead/action-wait-for-check, github.com/fountainjs/fountain-generator,num_dependents_deps.dev:0 github.com/fountainjs/generator-fountain-angular1,num_dependents_deps.dev:0 github.com/fountainjs/generator-fountain-angular2,num_dependents_deps.dev:0 @@ -517253,6 +527299,7 @@ github.com/fourdigits/django-anonymous, github.com/fourdigits/wagtail-xliff-translation, github.com/fourever/cocoon,num_dependents_deps.dev:0 github.com/foureyedraven/react-bash-typescript,num_dependents_deps.dev:0 +github.com/fourfactory/ziplo-action, github.com/fourforbusiness/corporate-brand-logo,num_dependents_deps.dev:0 github.com/fourhundredfour/helmsman,num_dependents_deps.dev:0 github.com/fourhundredfour/tailor, @@ -517366,6 +527413,7 @@ github.com/fox-one/pando-rings-sdk-go,num_dependents_deps.dev:0 github.com/fox-one/passport-mixin,num_dependents_deps.dev:0 github.com/fox-one/pkg,num_dependents_deps.dev:9 github.com/fox-one/walle,num_dependents_deps.dev:0 +github.com/fox-tech/generate-github-app-token, github.com/fox-zero/jira,num_dependents_deps.dev:0 github.com/fox000002/clever_algorithms_js,num_dependents_deps.dev:0 github.com/fox0014/devops-cmd,num_dependents_deps.dev:0 @@ -517548,6 +527596,7 @@ github.com/foxis/easyrobot,num_dependents_deps.dev:0 github.com/foxitUi/foxit-ui,num_dependents_deps.dev:0 github.com/foxitsoftware/cordova-plugin-foxitpdf, github.com/foxitsoftware/react-native-foxitpdf,num_dependents_deps.dev:0 +github.com/foxlaby/request-action, github.com/foxleigh81/buildcom,num_dependents_deps.dev:0 github.com/foxleigh81/trellis,num_dependents_deps.dev:0 github.com/foxliang/blog,num_dependents_deps.dev:0 @@ -517602,7 +527651,9 @@ github.com/foxriver76/ioBroker.denon,num_dependents_deps.dev:0 github.com/foxriver76/ioBroker.sonnen, github.com/foxriver76/ioBroker.xbox,num_dependents_deps.dev:0 github.com/foxriver76/node-bring-api, +github.com/foxscore/add-icon-to-unitypackage, github.com/foxted/basic-trend,num_dependents_deps.dev:0 +github.com/foxted/github-action-envsubst, github.com/foxthefox/homebridge-cul,num_dependents_deps.dev:0 github.com/foxthefox/ioBroker.fritzdect,num_dependents_deps.dev:0 github.com/foxthefox/ioBroker.jeelink,num_dependents_deps.dev:0 @@ -517618,6 +527669,10 @@ github.com/foxtrot/scuzzy,num_dependents_deps.dev:0 github.com/foxtrotmike/cafemap, github.com/foxty/topaz,num_dependents_deps.dev:0 github.com/foxundermoon/cra-define-override,num_dependents_deps.dev:0 +github.com/foxundermoon/feishu-action, +github.com/foxundermoon/setup-qshell, +github.com/foxundermoon/upload-qiniu-cert-action, +github.com/foxundermoon/wechat-work-action, github.com/foxweb/capistrano-redmine,num_dependents_deps.dev:0 github.com/foxworksweb/ngx-contextmenu,num_dependents_deps.dev:0 github.com/foxx/peewee-extras, @@ -517898,6 +527953,7 @@ github.com/fphilipe/premailer-rails,criticality_score:0.529410 github.com/fpi-inc/FpiLogo,num_dependents_deps.dev:0 github.com/fpi-inc/generator-fpi-web,num_dependents_deps.dev:0 github.com/fpiantini/jokettt, +github.com/fpicalausa/remove-stale-branches, github.com/fpicetti/occamypy, github.com/fpierfed/aioimdb, github.com/fpieterse/proc_plot, @@ -518006,6 +528062,8 @@ github.com/fr-cable/fr-cable-js-client,num_dependents_deps.dev:0 github.com/fr-cable/fr-cable-ruby,num_dependents_deps.dev:0 github.com/fr-end/auto,num_dependents_deps.dev:0 github.com/fr-esco/tslint-config,num_dependents_deps.dev:0 +github.com/fr-platform/github-action-get-repo-info, +github.com/fr-platform/keypr, github.com/fr-wentianqi/js-deep-type-check,num_dependents_deps.dev:0 github.com/fr05t1k/ctop,num_dependents_deps.dev:0 github.com/fr0gger/SuperPeHasher, @@ -518019,6 +528077,7 @@ github.com/fr13n8/todo-app,num_dependents_deps.dev:0 github.com/fr1j0/configlobal,num_dependents_deps.dev:0 github.com/fr1sk/mongo-clone,num_dependents_deps.dev:0 github.com/fr1zle/vscode-elixir,criticality_score:0.327930 +github.com/fr33d00m/chatgpt-github-actions, github.com/fr33d4n/ez-validator.js,num_dependents_deps.dev:0 github.com/fr33jc/bang, github.com/fr33jc/novaclient-auth-secretkey, @@ -518051,6 +528110,7 @@ github.com/frabaddo/rich-for,num_dependents_deps.dev:0 github.com/frabarz/react-raw-object,num_dependents_deps.dev:0 github.com/frabbit/angular.haxe,num_dependents_deps.dev:0 github.com/frabert/musicplayer-api,num_dependents_deps.dev:0 +github.com/frabert/replace-string-action, github.com/frabert/riff,num_dependents_deps.dev:15 github.com/frabitech/frabit, github.com/frabitech/frabit-server, @@ -518196,6 +528256,7 @@ github.com/fraction/ssb-cli,num_dependents_deps.dev:0 github.com/fraction/ssb-vanity,num_dependents_deps.dev:0 github.com/fractional-company/amm-data,num_dependents_deps.dev:0 github.com/fractional-company/collections-data,num_dependents_deps.dev:0 +github.com/fractiunate-circle/fractiunate-workflow-dispatch, github.com/fracto-team/fracto-validated-input,num_dependents_deps.dev:0 github.com/fracto-team/http-client,num_dependents_deps.dev:0 github.com/fracto-team/vue-credit-card, @@ -518236,6 +528297,8 @@ github.com/fraenkel-lab/mogp, github.com/fraenky8/go-modules-playground,num_dependents_deps.dev:0 github.com/fraenky8/gorequest,num_dependents_deps.dev:0 github.com/fraenky8/tables-to-go,num_dependents_deps.dev:0 +github.com/frafaelptu/robotframework-docker-action-fork, +github.com/frafaelptu/robotframework-docker-action-run-tests, github.com/frafra/extract-from-url, github.com/frafra/frakegps,num_dependents_deps.dev:0 github.com/frafra/poly2geojson,num_dependents_deps.dev:0 @@ -518382,6 +528445,7 @@ github.com/framelunch/obento-cp,num_dependents_deps.dev:0 github.com/framelunch/obento-loop,num_dependents_deps.dev:0 github.com/framelunch/obento-notice,num_dependents_deps.dev:0 github.com/framelunch/obento-state,num_dependents_deps.dev:0 +github.com/framer/bridge, github.com/framer/motion,"criticality_score:0.651790,num_dependents_deps.dev:687" github.com/frames75/put-secrets-awssm,num_dependents_deps.dev:0 github.com/frameshft/strapi-provider-email-sendgridmail,num_dependents_deps.dev:0 @@ -518487,6 +528551,7 @@ github.com/franccesco/ignorio, github.com/franccesco/mullpy, github.com/france-connect/identity-provider-example, github.com/france-ioi/algoreabackend,num_dependents_deps.dev:0 +github.com/france-kradev/angular-deploy-gh-pages-actions, github.com/france193/RuuviTelegramBot,num_dependents_deps.dev:0 github.com/francecil/antd-virtualized, github.com/francecil/vue-cli-plugin-contextmenu,num_dependents_deps.dev:0 @@ -518502,6 +528567,7 @@ github.com/francesca64/once-cell-regex,num_dependents_deps.dev:0 github.com/francesca64/xkbcommon-dl,num_dependents_deps.dev:0 github.com/francescat93/Exact_sinogram, github.com/francescmm/GitQlient,criticality_score:0.445560 +github.com/francesco-b-lexicon/github-actions-report-lcov, github.com/francesco-bracchi/ambjs,num_dependents_deps.dev:0 github.com/francesco-bracchi/cojs, github.com/francesco-kriegel/homebridge-radio-player-plus,num_dependents_deps.dev:0 @@ -518552,10 +528618,12 @@ github.com/francis-schiavo/blizzard-api-go,num_dependents_deps.dev:0 github.com/francis-taylor/TgToObj, github.com/francis-taylor/instaprofile, github.com/francis0407/tidb,num_dependents_deps.dev:0 +github.com/francis94c/string-greater-than-action, github.com/francis95-han/common-francis95-han, github.com/francisalvinbarretto/passport-yahoo-oauth,num_dependents_deps.dev:0 github.com/francisbautista/flare, github.com/francisbesset/font-awesome-sass-loader,num_dependents_deps.dev:8 +github.com/francisbilham11/action-cached-lfs-checkout, github.com/francisbrito/create-npm-package,num_dependents_deps.dev:0 github.com/francisbrito/fastify-aws-cognito,num_dependents_deps.dev:0 github.com/francisbrito/fastify-pagination,num_dependents_deps.dev:0 @@ -518612,6 +528680,7 @@ github.com/franciscogonz64/bookings,num_dependents_deps.dev:0 github.com/franciscogouveia/hapi-rbac, github.com/franciscogouveia/node-fritzbox,num_dependents_deps.dev:0 github.com/franciscogouveia/rbac-core,num_dependents_deps.dev:8 +github.com/franciscohanna92/actions-calver, github.com/franciscohanna92/codemirror-dlx,num_dependents_deps.dev:0 github.com/franciscohanna92/ng-lodash, github.com/franciscojaimesfreyre/nativescript-open-inbox,num_dependents_deps.dev:0 @@ -519138,8 +529207,13 @@ github.com/frankcs96/learning-platform-service,num_dependents_deps.dev:0 github.com/frankcsx/bglutil,num_dependents_deps.dev:0 github.com/frankdamico/lodown,num_dependents_deps.dev:0 github.com/frankdeck/hubot-ascii,num_dependents_deps.dev:0 +github.com/frankdejonge/action-close-subsplit-pr, github.com/frankdejonge/endpoints.js,num_dependents_deps.dev:0 github.com/frankdejonge/node-left-pad-io,num_dependents_deps.dev:0 +github.com/frankdejonge/use-container-cleanup, +github.com/frankdejonge/use-github-token, +github.com/frankdejonge/use-ssh-agent, +github.com/frankdejonge/use-subsplit-publish, github.com/frankdenton9503/golang,num_dependents_deps.dev:0 github.com/frankdilo/businesscard,num_dependents_deps.dev:0 github.com/frankdilo/cropper-python, @@ -519162,6 +529236,7 @@ github.com/frankfoerster/grunt-svg2web,num_dependents_deps.dev:0 github.com/frankgerhardt/botkit-matrix,num_dependents_deps.dev:0 github.com/frankgerhardt/botkit-matrix-sample,num_dependents_deps.dev:0 github.com/frankgreco/aviation,num_dependents_deps.dev:0 +github.com/frankgrimes97/avrolint-action, github.com/frankh/norbert,num_dependents_deps.dev:0 github.com/frankhang/iot,num_dependents_deps.dev:0 github.com/frankhang/util,num_dependents_deps.dev:0 @@ -519195,6 +529270,7 @@ github.com/frankiannelli/eslint-config,num_dependents_deps.dev:0 github.com/frankie-seb/sinatra,num_dependents_deps.dev:0 github.com/frankie567/drf-tracking, github.com/frankie567/fastapi-users,criticality_score:0.435460 +github.com/frankie567/grafana-annotation-action, github.com/frankie567/httpx-oauth, github.com/frankie567/n8n-google-pubsub-nodes,num_dependents_deps.dev:0 github.com/frankie567/starlette-csrf, @@ -519464,6 +529540,7 @@ github.com/franlol/uselocalstorage, github.com/franlopezm/golang_first_steps,num_dependents_deps.dev:0 github.com/franmacedo/movemouse,num_dependents_deps.dev:0 github.com/frannnz/frannnz-own-npm-package,num_dependents_deps.dev:0 +github.com/frannpr/pr_open_slack, github.com/franogales/go-algorithms,num_dependents_deps.dev:0 github.com/franpog859/control-plane,num_dependents_deps.dev:0 github.com/franpog859/kyma,num_dependents_deps.dev:0 @@ -519506,6 +529583,7 @@ github.com/frantic1048/rst-live-preview,num_dependents_deps.dev:0 github.com/franticnick/simplegraph,num_dependents_deps.dev:0 github.com/franticstas/project-lvl1-s438,num_dependents_deps.dev:0 github.com/frantjc/dil-go-bot,num_dependents_deps.dev:0 +github.com/frantjc/forge, github.com/frantp/Pozyx-Python-library, github.com/frantp/piot, github.com/frantrombotto/list-primes-golang,num_dependents_deps.dev:0 @@ -519528,6 +529606,7 @@ github.com/franza/continuate,num_dependents_deps.dev:0 github.com/franza/sloosh,num_dependents_deps.dev:0 github.com/franza/staticdir,num_dependents_deps.dev:0 github.com/franzbecker/rule-them-all,num_dependents_deps.dev:0 +github.com/franzbischoff/replace_envs, github.com/franzeal/ngx-formly-designer,num_dependents_deps.dev:0 github.com/franzeal/ngx-formly-tabs,num_dependents_deps.dev:0 github.com/franzemil/django_pg_commands, @@ -519552,6 +529631,7 @@ github.com/franziskuskiefer/wrapping-arithmetic,num_dependents_deps.dev:0 github.com/franziz/artagger, github.com/franzk/rails-autoellipsis,num_dependents_deps.dev:0 github.com/franzliedke/ember-webcomponents,num_dependents_deps.dev:0 +github.com/franzliedke/gh-action-php, github.com/franzliedke/studio,criticality_score:0.373900 github.com/franzmandl/rcpicar, github.com/franznkemaka/rn-in-app-update,num_dependents_deps.dev:0 @@ -519870,6 +529950,7 @@ github.com/frdl/sort,num_dependents_deps.dev:8 github.com/frdl/webfan-server,num_dependents_deps.dev:0 github.com/frdl/webfantize,num_dependents_deps.dev:0 github.com/frdmn/GiraHelper,num_dependents_deps.dev:0 +github.com/frdmn/age-calculator-action, github.com/frdmn/alfred-imgur,num_dependents_deps.dev:0 github.com/frdmn/alfred-ldap,num_dependents_deps.dev:0 github.com/frdmn/giraCLI, @@ -519883,6 +529964,7 @@ github.com/frdmn/twitgrab,num_dependents_deps.dev:0 github.com/frdnrdb/bubb, github.com/frdnrdb/dynamicon, github.com/frdnrdb/ljsy,num_dependents_deps.dev:0 +github.com/frdrwrt/write-to-file, github.com/frdwrd/bifocal, github.com/frdystudio/frdycake,num_dependents_deps.dev:0 github.com/fre-hu/mdarray,num_dependents_deps.dev:0 @@ -519941,6 +530023,7 @@ github.com/freaktechnik/transifex-loader,num_dependents_deps.dev:0 github.com/freaktechnik/twitch-chatlog,num_dependents_deps.dev:0 github.com/freaktechnik/twitchbots-base,num_dependents_deps.dev:0 github.com/freaktechnik/twitchbots-node,num_dependents_deps.dev:0 +github.com/freaktechnik/web-ext-lint, github.com/freakycue/co-wrapper,num_dependents_deps.dev:2 github.com/freakycue/express-dynamic-helpers-patch,num_dependents_deps.dev:0 github.com/freakycue/express-hbs-helpers,num_dependents_deps.dev:0 @@ -520015,6 +530098,7 @@ github.com/fredbi/keto,num_dependents_deps.dev:0 github.com/fredbi/keycloak-gatekeeper,num_dependents_deps.dev:0 github.com/fredbi/oathkeeper,num_dependents_deps.dev:0 github.com/fredbordel/lotide,num_dependents_deps.dev:0 +github.com/fredbradley/gh-action-wordpress-version-update, github.com/fredbradley/tfl-colours,num_dependents_deps.dev:0 github.com/fredcallaway/grade.py, github.com/fredcess23/ebenezer,num_dependents_deps.dev:0 @@ -520079,6 +530163,7 @@ github.com/freddydumont/next-nprogress-emotion,num_dependents_deps.dev:0 github.com/freddydumont/redwood-nprogress,num_dependents_deps.dev:0 github.com/freddyheppell/random-prime,num_dependents_deps.dev:0 github.com/freddyheppell/scitweet, +github.com/freddylist/treeless-checkout-action, github.com/freddyrangel/redux-csp,num_dependents_deps.dev:0 github.com/freddyzeng/babel-plugin-function-log, github.com/freddyzeng/funlog,num_dependents_deps.dev:0 @@ -520171,6 +530256,7 @@ github.com/fredericvl/pyevacalor, github.com/fredericvl/pysaj, github.com/frederik-schmidt/google_drive_data_transfer, github.com/frederik/keystone-admin-routes,num_dependents_deps.dev:0 +github.com/frederikheld/render-plantuml-to-wiki-action, github.com/frederikheld/usm.io,num_dependents_deps.dev:0 github.com/frederikhors/orm-benchmark,num_dependents_deps.dev:0 github.com/frederikme/TinderBot, @@ -520307,6 +530393,7 @@ github.com/fredxinfan/xmandrill,num_dependents_deps.dev:0 github.com/fredybawa/datalayer,num_dependents_deps.dev:0 github.com/fredybawa/matanzas,num_dependents_deps.dev:0 github.com/fredybawa/npm-restflow,num_dependents_deps.dev:0 +github.com/fredybp/xcodebuild, github.com/fredybustos/cra-template-login,num_dependents_deps.dev:0 github.com/fredyc/react-apollo-hooks,num_dependents_deps.dev:0 github.com/fredydeltoro/Md5_Hash,num_dependents_deps.dev:0 @@ -520333,6 +530420,7 @@ github.com/free-jqgrid/jqGrid,num_dependents_deps.dev:9 github.com/free-jungle/handy-lock,num_dependents_deps.dev:1 github.com/free-kits/doc,num_dependents_deps.dev:0 github.com/free-kits/rmake, +github.com/free-lunch/aws-cdk-github-actions, github.com/free-soellingeraj/goodies, github.com/free-time/freetime-cli,num_dependents_deps.dev:0 github.com/free-tools-io/ftio-sdk,num_dependents_deps.dev:0 @@ -520599,13 +530687,16 @@ github.com/freee/firebase-sdk-js,num_dependents_deps.dev:0 github.com/freee/freee-accounting-sdk-java,num_dependents_deps.dev:0 github.com/freee/prettier-config-freee,num_dependents_deps.dev:0 github.com/freee/tsconfig-freee,num_dependents_deps.dev:0 +github.com/freeedcom/ai-codereviewer, github.com/freeeeaker/textOverflow,num_dependents_deps.dev:0 github.com/freeekanayaka/charm-test, github.com/freeeve/bufr,num_dependents_deps.dev:0 github.com/freeeve/sbd,num_dependents_deps.dev:0 github.com/freefaint/avrora,num_dependents_deps.dev:0 +github.com/freefair/action-ghcr-prune, github.com/freefair/android-colors,num_dependents_deps.dev:0 github.com/freefair/gradle-plugins,num_dependents_deps.dev:0 +github.com/freefair/helm, github.com/freefair/okhttp-spring-boot,num_dependents_deps.dev:48 github.com/freefall48/LocalNetwork, github.com/freefishgo/goexcel,num_dependents_deps.dev:0 @@ -521155,6 +531246,7 @@ github.com/frega/ckeditor5-drupal-mention,num_dependents_deps.dev:0 github.com/fregante/blur-accessibly,num_dependents_deps.dev:0 github.com/fregante/content-scripts-register-polyfill, github.com/fregante/daily-version, +github.com/fregante/daily-version-action, github.com/fregante/delegate-it, github.com/fregante/doma, github.com/fregante/eslint-formatters,num_dependents_deps.dev:0 @@ -521174,10 +531266,14 @@ github.com/fregante/one-event, github.com/fregante/one-mutation,num_dependents_deps.dev:0 github.com/fregante/push-form,num_dependents_deps.dev:0 github.com/fregante/regex-join,num_dependents_deps.dev:0 +github.com/fregante/release-with-changelog, github.com/fregante/select-dom, +github.com/fregante/setup-git-token, +github.com/fregante/setup-git-user, github.com/fregante/shorten-repo-url, github.com/fregante/text-field-edit,num_dependents_deps.dev:2 github.com/fregante/tiny-version-compare, +github.com/fregante/title-to-labels-action, github.com/fregante/video-canvas, github.com/fregante/web-ext-submit,num_dependents_deps.dev:0 github.com/fregante/webext-additional-permissions,num_dependents_deps.dev:4 @@ -521232,6 +531328,7 @@ github.com/freifunkbremen/yanic,num_dependents_deps.dev:0 github.com/freifunkhamburg/ffffng,num_dependents_deps.dev:0 github.com/freight-chain/pqms,num_dependents_deps.dev:0 github.com/freight-hub/TypedEnv,num_dependents_deps.dev:0 +github.com/freight-hub/action-delete-comment, github.com/freight-hub/naming-tool,num_dependents_deps.dev:0 github.com/freight-hub/verdaccio-openmetrics, github.com/freight-js/freightjs,num_dependents_deps.dev:0 @@ -521336,6 +531433,13 @@ github.com/frenchtoast747/granite, github.com/frenchtoast747/webgl-obj-loader,num_dependents_deps.dev:14 github.com/frenchtoasters/familytree,num_dependents_deps.dev:0 github.com/frenchtoasters/leaderelection,num_dependents_deps.dev:0 +github.com/frenck/action-addon-information, +github.com/frenck/action-addon-linter, +github.com/frenck/action-home-assistant, +github.com/frenck/action-setup-cas, +github.com/frenck/action-setup-lokalise, +github.com/frenck/action-setup-yq, +github.com/frenck/action-yamllint, github.com/frenck/awesome-home-assistant,criticality_score:0.389560 github.com/frenck/home-assistant-config,criticality_score:0.359610 github.com/frenck/python-adguardhome, @@ -521488,6 +531592,7 @@ github.com/freshesx/mogul-scripts,num_dependents_deps.dev:0 github.com/freshesx/style-import-loader,num_dependents_deps.dev:0 github.com/freshesx/suite,num_dependents_deps.dev:0 github.com/fresheye1/express-http-proxy-is, +github.com/freshforces-borndigital/github-action-wpe-site-deploy, github.com/freshfox/express-json-views,num_dependents_deps.dev:0 github.com/freshfox/ff-utils,num_dependents_deps.dev:0 github.com/freshfox/ffc-angular,num_dependents_deps.dev:0 @@ -521629,6 +531734,7 @@ github.com/frgfm/PyroNear, github.com/frgfm/python_docs, github.com/frgfm/torch-cam, github.com/frgfm/torch-scan, +github.com/frgfm/validate-python-headers, github.com/frgmt/django-fernet-encrypted-fields, github.com/frgul006/ts-holidays,num_dependents_deps.dev:0 github.com/frhagn/Typewriter,criticality_score:0.324410 @@ -521686,6 +531792,7 @@ github.com/frictionlessdata/jsontableschema-pandas-py, github.com/frictionlessdata/jsontableschema-py, github.com/frictionlessdata/jsontableschema-sql-py, github.com/frictionlessdata/livemark, +github.com/frictionlessdata/repository, github.com/frictionlessdata/specs,criticality_score:0.466500 github.com/frictionlessdata/tableschema-ckan-datastore-py, github.com/frictionlessdata/tableschema-elasticsearch-py, @@ -521758,6 +531865,9 @@ github.com/friedemannsommer/typescript-postmessagehandler,num_dependents_deps.de github.com/friedenberg/mac-md-to-html-pasteboard, github.com/friedenberg/tacky, github.com/friedenberg/z,num_dependents_deps.dev:0 +github.com/frieder/jira-issue-info, +github.com/frieder/jira-issue-transition, +github.com/frieder/jira-issue-updater, github.com/friederikewild/DroidAppRater,num_dependents_deps.dev:0 github.com/friederikewild/DroidCustomFont,num_dependents_deps.dev:0 github.com/friederikewild/DroidLogger,num_dependents_deps.dev:0 @@ -521848,9 +531958,16 @@ github.com/friendsofgo/gopherapi,num_dependents_deps.dev:0 github.com/friendsofgo/graphiql,num_dependents_deps.dev:1 github.com/friendsofgo/killgrave,num_dependents_deps.dev:0 github.com/friendsofgo/neural,num_dependents_deps.dev:0 +github.com/friendsofgo/pr-size-labeler, +github.com/friendsofgo/remote-docker-action, github.com/friendsofphp/proxy-manager-lts, +github.com/friendsofphp/sami, +github.com/friendsofphp/sismo, +github.com/friendsofphp/uprofiler, github.com/friendsoftheweb/catalyst,num_dependents_deps.dev:0 github.com/friendsoftheweb/docutron,num_dependents_deps.dev:0 +github.com/friendzymes/assembly, +github.com/frienkly/gce-cloudsql-proxy-action, github.com/frier-sam/namextracter, github.com/frier-sam/pywikiscraper, github.com/frieser/nordigen-go-lib,num_dependents_deps.dev:0 @@ -521890,6 +532007,7 @@ github.com/frikiman34/MicroLogger,num_dependents_deps.dev:0 github.com/frikinside/jquery.fast-reader,num_dependents_deps.dev:0 github.com/frikinside/jquery.go-binary,num_dependents_deps.dev:0 github.com/frikiplanet/ciphertoken,num_dependents_deps.dev:0 +github.com/frikishaan/dev-action, github.com/frikky/Shuffle,"criticality_score:0.394380,num_dependents_deps.dev:0" github.com/frikky/go-elasticsearch,num_dependents_deps.dev:0 github.com/frikky/kin-openapi,num_dependents_deps.dev:0 @@ -521971,6 +532089,7 @@ github.com/frispete/fetch-ethercodes, github.com/frispete/keyrings.cryptfile, github.com/frispete/vpndnshelper, github.com/frispete/wm-win-tool, +github.com/frisrsyd/adonis-build-action, github.com/frissdiegurke/nodebb-plugin-shortcuts,num_dependents_deps.dev:0 github.com/frissyn/Reflux, github.com/frissyn/kitsune, @@ -521994,6 +532113,7 @@ github.com/fritill-team/django_translation, github.com/fritogotlayed/mds-sdk-node,num_dependents_deps.dev:0 github.com/fritshermans/deduplipy, github.com/fritshermans/pyminhash, +github.com/frittatelle/s3-sync-action, github.com/fritx/PUM, github.com/fritx/a-sync,num_dependents_deps.dev:0 github.com/fritx/app-mounter,num_dependents_deps.dev:0 @@ -522230,6 +532350,8 @@ github.com/frnjjq/node-q4s,num_dependents_deps.dev:0 github.com/frnkclsst/d3charts,num_dependents_deps.dev:0 github.com/frnksgr/27bslash6-module, github.com/frnksgr/t2m,num_dependents_deps.dev:0 +github.com/frnmst/md-toc, +github.com/frnode/html-to-pdf-action, github.com/frnsimoes/go-studies,num_dependents_deps.dev:0 github.com/frnsys/arena, github.com/frnsys/browser, @@ -522338,6 +532460,16 @@ github.com/frogfishio/role,num_dependents_deps.dev:0 github.com/frogfishio/user, github.com/froggey/Mezzano,criticality_score:0.411190 github.com/frogletjs/froglet,num_dependents_deps.dev:0 +github.com/frogobox/frogo-android-sdk, +github.com/frogobox/frogo-android-ui-kit, +github.com/frogobox/frogo-animation, +github.com/frogobox/frogo-build-src, +github.com/frogobox/frogo-loading-indicator-view, +github.com/frogobox/frogo-sdk, +github.com/frogobox/frogo-ui, +github.com/frogobox/kick-start-android-webview, +github.com/frogobox/kick-start-library, +github.com/frogobox/open-build-src, github.com/frogrammer/azure-knowledgemining-cli, github.com/frogrammer/databricks-workspace-cleaner, github.com/frogrammer/databricks-workspace-tool, @@ -522451,6 +532583,7 @@ github.com/front-lib/events,num_dependents_deps.dev:0 github.com/front-lib/queue,num_dependents_deps.dev:2 github.com/front-library/imagemin-compress,num_dependents_deps.dev:0 github.com/front-library/webfonts-icon,num_dependents_deps.dev:0 +github.com/front-matter/content-registration, github.com/front/create-cloud-block,num_dependents_deps.dev:0 github.com/front/cw-latest-news,num_dependents_deps.dev:0 github.com/front/dibs,num_dependents_deps.dev:0 @@ -522740,6 +532873,8 @@ github.com/frostbyte-lang/europa, github.com/frostbyte-lang/frostbyte-lang, github.com/frostbyte73/go-throttle,num_dependents_deps.dev:0 github.com/frostbytedata/muuid,num_dependents_deps.dev:0 +github.com/frostebite/File-To-Base64, +github.com/frostebite/K8s-Download-Volume, github.com/frostidaho/dynmen, github.com/frostidaho/python-dbusnotify, github.com/frostiebot/time-picker,num_dependents_deps.dev:0 @@ -522778,6 +532913,7 @@ github.com/frostming/pofmt, github.com/frostming/pycomplete, github.com/frostming/python-cfonts, github.com/frostming/rediswrapper, +github.com/frostming/scoop-action, github.com/frostming/setuptools_pep660, github.com/frostney/babel-preset-es2015-loose-rollup,num_dependents_deps.dev:0 github.com/frostney/bundlebee,num_dependents_deps.dev:0 @@ -522957,6 +533093,7 @@ github.com/frrakn/logging-slack, github.com/frrist/go-ipfs,num_dependents_deps.dev:0 github.com/frrist/jaeger-client-go,num_dependents_deps.dev:0 github.com/frrist/testify,num_dependents_deps.dev:0 +github.com/frroossst/clang-format-lint-action, github.com/frsab/smart-node-cluster-multicore,num_dependents_deps.dev:0 github.com/frsechet/cognito-user-pool,num_dependents_deps.dev:0 github.com/frsechet/messengerify-markdown,num_dependents_deps.dev:0 @@ -523058,6 +533195,7 @@ github.com/frumioj/crypto11,num_dependents_deps.dev:0 github.com/frundh/tracer-cli,num_dependents_deps.dev:0 github.com/frusal/frusal-cli,num_dependents_deps.dev:0 github.com/frustra/tetrus,num_dependents_deps.dev:0 +github.com/frutbits/staff-readme, github.com/frutik56/gron,num_dependents_deps.dev:0 github.com/fruttasecca/hay_checker, github.com/frutuozo29/veiaco-ui,num_dependents_deps.dev:0 @@ -523112,6 +533250,7 @@ github.com/frydzone/fryd-JavaScript-SDK,num_dependents_deps.dev:0 github.com/frydzone/frydSDK,num_dependents_deps.dev:0 github.com/frydzone/passport-fryd, github.com/frykher/gif-mak3r, +github.com/fryorcraken/size-limit-action, github.com/frypizzabox/Scrapeteer,num_dependents_deps.dev:0 github.com/frytg/yLogger,num_dependents_deps.dev:0 github.com/frytg/yPush,num_dependents_deps.dev:0 @@ -523340,6 +533479,7 @@ github.com/fsevenm/js-object-traveller,num_dependents_deps.dev:0 github.com/fsevenm/vscode-run-it-on,num_dependents_deps.dev:0 github.com/fsevents/fsevents,"criticality_score:0.566860,num_dependents_deps.dev:152476" github.com/fsevilla/Picnic-Grid,num_dependents_deps.dev:0 +github.com/fsfe/reuse-action, github.com/fsfe/reuse-tool, github.com/fsfrazao/Dispersers, github.com/fsggs/j2d,num_dependents_deps.dev:0 @@ -523450,6 +533590,7 @@ github.com/fsoubelet/toychain, github.com/fsouza/autoflake8, github.com/fsouza/channels,num_dependents_deps.dev:0 github.com/fsouza/ctxlogger,num_dependents_deps.dev:0 +github.com/fsouza/fake-gcs-action, github.com/fsouza/fake-gcs-server,"criticality_score:0.535430,num_dependents_deps.dev:30" github.com/fsouza/gizmo-stackdriver-logging,num_dependents_deps.dev:0 github.com/fsouza/go-dockerclient,"criticality_score:0.631470,num_dependents_deps.dev:737" @@ -523457,6 +533598,7 @@ github.com/fsouza/hls-rip,num_dependents_deps.dev:0 github.com/fsouza/porteiro,num_dependents_deps.dev:0 github.com/fsouza/prettierd,num_dependents_deps.dev:0 github.com/fsouza/result,num_dependents_deps.dev:0 +github.com/fsouza/rs-toolchain, github.com/fsouza/s3-upload-proxy,num_dependents_deps.dev:0 github.com/fsouza/vod-module-sprite,num_dependents_deps.dev:0 github.com/fspaans/sample-plugin,num_dependents_deps.dev:0 @@ -523626,6 +533768,7 @@ github.com/ftalburt/fantasy-hockey-notifier-cdk, github.com/ftalo/biojs-vis-pmccitation,num_dependents_deps.dev:0 github.com/ftamas88/kafka-test,num_dependents_deps.dev:0 github.com/ftao/python-ifcfg, +github.com/ftasbasi/renderfile, github.com/ftauth/ftauth,num_dependents_deps.dev:0 github.com/ftauth/sdk-go,num_dependents_deps.dev:0 github.com/ftavares/create-react-app,num_dependents_deps.dev:0 @@ -523726,7 +533869,10 @@ github.com/ftlynx/tsx,num_dependents_deps.dev:0 github.com/ftm-pm/form-constructor,num_dependents_deps.dev:0 github.com/ftn-tim2/jsd-project, github.com/ftnetworks/react-stl-viewer,num_dependents_deps.dev:0 +github.com/ftnext/action-concatenate-files, +github.com/ftnext/action-push-ghpages, github.com/ftnext/python4kyoani, +github.com/ftnilsson/generate-release-name-action, github.com/ftobia/ham, github.com/ftobia/pytest-ordering, github.com/ftomassetti/antlr4-c3-kotlin,num_dependents_deps.dev:2 @@ -523768,6 +533914,7 @@ github.com/ftrossbach/club-topicana,num_dependents_deps.dev:1 github.com/ftrossbach/kiqr,num_dependents_deps.dev:2 github.com/ftruzzi/ensure_vpn, github.com/ftruzzi/libgen_uploader, +github.com/ftsamis/jenkins-githubaction, github.com/ftsanjuan/pinport,num_dependents_deps.dev:0 github.com/ftschopp/react-tailwind-toolkit, github.com/ftsell/maze_generator,num_dependents_deps.dev:0 @@ -523901,6 +534048,7 @@ github.com/fuckingbored/exposed,num_dependents_deps.dev:0 github.com/fuckingdigital/watch-animation-frame,num_dependents_deps.dev:0 github.com/fucm/python-stiebel-eltron, github.com/fucusy/dataframe2html,num_dependents_deps.dev:0 +github.com/fudan-mse/latex-action, github.com/fudanchii/drone,num_dependents_deps.dev:0 github.com/fudanda/fdd-bg,num_dependents_deps.dev:0 github.com/fudanfuhua/html-webpack-insert-plugin,num_dependents_deps.dev:0 @@ -523944,6 +534092,7 @@ github.com/fuermosi777/react-free-scrollbar,num_dependents_deps.dev:4 github.com/fuermosi777/srtjs,num_dependents_deps.dev:0 github.com/fuerstenau/gorrosion,num_dependents_deps.dev:0 github.com/fuerstenau/gorrosion-gtp,num_dependents_deps.dev:0 +github.com/fufaldinav/telegram-action, github.com/fufu70/SolarSystem-Graph,num_dependents_deps.dev:0 github.com/fufu70/color-contrast-converter,num_dependents_deps.dev:0 github.com/fufu70/react-confetti-canvas,num_dependents_deps.dev:0 @@ -524091,6 +534240,7 @@ github.com/fuji-nakahara/textlint-rule-preset-fuji,num_dependents_deps.dev:0 github.com/fuji44/tyranoscript-packager,num_dependents_deps.dev:0 github.com/fuji8/gotypeconverter,num_dependents_deps.dev:0 github.com/fuji8/learning.go-redis,num_dependents_deps.dev:0 +github.com/fuji97/aws-ecs-copilot-deploy, github.com/fujiangsun/algorithm,num_dependents_deps.dev:0 github.com/fujiangsun/collection,num_dependents_deps.dev:0 github.com/fujiangsun/geecache,num_dependents_deps.dev:0 @@ -524101,6 +534251,7 @@ github.com/fujiawei-dev/gin-notes,num_dependents_deps.dev:0 github.com/fujiawei-dev/toolkit-py, github.com/fujiazhang/kaiguang-webpack-plugin,num_dependents_deps.dev:0 github.com/fujibee/hadoop-papyrus,num_dependents_deps.dev:0 +github.com/fujidaiti/dart-package-inspector, github.com/fujiharuka/node-adaptive-threshold,num_dependents_deps.dev:0 github.com/fujiharuka/node-maxmin-filter,num_dependents_deps.dev:0 github.com/fujiii/emoji-list,num_dependents_deps.dev:0 @@ -524201,8 +534352,10 @@ github.com/fukuball/react-native-orientation-loading-overlay,num_dependents_deps github.com/fukubaya/next-rkj,num_dependents_deps.dev:0 github.com/fukuchi/libqrencode,criticality_score:0.427160 github.com/fukudataiga/gacha,num_dependents_deps.dev:0 +github.com/fukuiretu/actions-issue-comments-validate, github.com/fukuiretu/nuxt-healthcheck,num_dependents_deps.dev:0 github.com/fukuiretu/nuxt-user-agent,num_dependents_deps.dev:0 +github.com/fukumone/openai-chat, github.com/fukurin00/astar_golang,num_dependents_deps.dev:0 github.com/fukurin00/cli-provider_wes,num_dependents_deps.dev:0 github.com/fukurin00/geo_routing_provider,num_dependents_deps.dev:0 @@ -524220,6 +534373,7 @@ github.com/ful-stackz/fetch-gql, github.com/ful-stackz/fswitch,num_dependents_deps.dev:0 github.com/ful-stackz/func-switch, github.com/ful1e5/Bibata_Cursor,criticality_score:0.337500 +github.com/ful1e5/TheActionDev, github.com/ful1e5/clickgen, github.com/fulang0208/react-native-refreshablelist-ios,num_dependents_deps.dev:0 github.com/fulangren/magicbag,num_dependents_deps.dev:0 @@ -524249,6 +534403,7 @@ github.com/fulcrumgenomics/fgbio,num_dependents_deps.dev:0 github.com/fulcrumgenomics/fgpyo, github.com/fulcrumgenomics/pybedlite, github.com/fulcrumgenomics/pyfgaws, +github.com/fulcrumgenomics/setup-latch, github.com/fulcrumgenomics/sopt,num_dependents_deps.dev:8 github.com/fulcrumui/css-utils,num_dependents_deps.dev:0 github.com/fulder/crl-checker, @@ -524299,6 +534454,7 @@ github.com/fullStackDemo/vuex-local-sync,num_dependents_deps.dev:0 github.com/fullStackDemo/waterfall,num_dependents_deps.dev:0 github.com/fullboar/pyvotal, github.com/fullbridge-batkins/s3_cors_fileupload,num_dependents_deps.dev:0 +github.com/fullbright/automl-pycaret, github.com/fullcalendar/fullcalendar,"criticality_score:0.669070,num_dependents_deps.dev:477" github.com/fullcalendar/fullcalendar-angular,"criticality_score:0.336910,num_dependents_deps.dev:3" github.com/fullcalendar/fullcalendar-react,num_dependents_deps.dev:23 @@ -524444,6 +534600,7 @@ github.com/fullstack-build/tslog,"criticality_score:0.415180,num_dependents_deps github.com/fullstack-development/build-route-tree,num_dependents_deps.dev:0 github.com/fullstack-development/developers-roadmap,criticality_score:0.371340 github.com/fullstack-development/redux-make-communication,num_dependents_deps.dev:0 +github.com/fullstack-devops/awesome-ci-action, github.com/fullstack-foundation/react-widgets,num_dependents_deps.dev:0 github.com/fullstack-hy2020/fullstack-hy2020.github.io,criticality_score:0.552290 github.com/fullstack-js-online/cli,num_dependents_deps.dev:0 @@ -524552,6 +534709,7 @@ github.com/fum1h1ro/unienv,num_dependents_deps.dev:0 github.com/fumanne/dds-20151201,num_dependents_deps.dev:0 github.com/fumblingfish/rdx-stack-creator,num_dependents_deps.dev:0 github.com/fumblingfish/scrollscout,num_dependents_deps.dev:0 +github.com/fumeapp/action, github.com/fumeapp/fume-cli,num_dependents_deps.dev:0 github.com/fumeapp/nuxt-storm,num_dependents_deps.dev:0 github.com/fumeboy/SimpleWebpackHTMLEntrypoint,num_dependents_deps.dev:0 @@ -524776,6 +534934,7 @@ github.com/funda-frontend/eslint-config,num_dependents_deps.dev:0 github.com/funda-frontend/icons,num_dependents_deps.dev:0 github.com/funda-frontend/tailwind-config,num_dependents_deps.dev:0 github.com/funda-frontend/ui,num_dependents_deps.dev:0 +github.com/fundacaocerti/mobsf-action, github.com/fundacaocerti/qda_modelos, github.com/fundakol/behave-xray, github.com/fundakol/pytest-jira-xray, @@ -524877,6 +535036,7 @@ github.com/funilrys/A-John-Shots, github.com/funilrys/PyFunceble, github.com/funilrys/PyTravisCI, github.com/funinps/dom-mark,num_dependents_deps.dev:0 +github.com/funivan/github-autopr, github.com/funk-team/elm-interreactor,num_dependents_deps.dev:0 github.com/funk1d/markdown-figcap, github.com/funkaj/random-crystal-generator,num_dependents_deps.dev:0 @@ -524901,6 +535061,7 @@ github.com/funkey/augment, github.com/funkey/gunpowder, github.com/funkey/nyroglancer, github.com/funkey/skeletopyze,Google +github.com/funkeyfreak/api-spec-cleanup, github.com/funkhaus/can-vue,num_dependents_deps.dev:0 github.com/funkhaus/fh-components,num_dependents_deps.dev:0 github.com/funkhaus/fh-deploy,num_dependents_deps.dev:0 @@ -524998,6 +535159,7 @@ github.com/funkyremi/homebridge-http-lock-plus,num_dependents_deps.dev:0 github.com/funkyremi/ip-map-react,num_dependents_deps.dev:0 github.com/funkyremi/morse-code-converter,num_dependents_deps.dev:0 github.com/funkyremi/vtt-live-edit,num_dependents_deps.dev:0 +github.com/funkyremi/yarn-github-action, github.com/funkyshu/vfs,num_dependents_deps.dev:0 github.com/funlee/funlee-gulp,num_dependents_deps.dev:0 github.com/funlee/play-title,num_dependents_deps.dev:0 @@ -525033,6 +535195,7 @@ github.com/funny-man/uzi-vue,num_dependents_deps.dev:0 github.com/funny123/marlon_node,num_dependents_deps.dev:0 github.com/funnyPan/caniuse,num_dependents_deps.dev:0 github.com/funnyang/easy_queryset, +github.com/funnyboy-roks/modrinth-auto-desc, github.com/funnycoderstar/miko-cli,num_dependents_deps.dev:0 github.com/funnycoderstar/vuepress-theme-lemon,num_dependents_deps.dev:0 github.com/funnydevp/example-grpc-gateway,num_dependents_deps.dev:0 @@ -525046,6 +535209,9 @@ github.com/funnygamer/ftpserverlib,num_dependents_deps.dev:0 github.com/funnyque/easyUpload.js, github.com/funnythingz/material-colors-selector,num_dependents_deps.dev:0 github.com/funnywwh/lorca,num_dependents_deps.dev:0 +github.com/funnyzak/ifttt-webhook-action, +github.com/funnyzak/jishida-action, +github.com/funnyzak/pushoo-action, github.com/funpad/excel-object-mapper,num_dependents_deps.dev:0 github.com/funparko/bannerjoy,num_dependents_deps.dev:0 github.com/funpokes/bing-image-search,num_dependents_deps.dev:0 @@ -525091,8 +535257,10 @@ github.com/fuodorov/kenv, github.com/fuodorov/redpic, github.com/fuomag9/miio, github.com/fuoricitta/react-native-chart-kit,num_dependents_deps.dev:0 +github.com/fupa/openapi-to-postman-action, github.com/fupas/commons,num_dependents_deps.dev:0 github.com/fupelaqu/node-security-middleware,num_dependents_deps.dev:0 +github.com/fupengl/go-release-action, github.com/fupengl/miniprogram-cli,num_dependents_deps.dev:0 github.com/fupengl/miniprogram-webpack-plugin,num_dependents_deps.dev:0 github.com/fupslot/angular-hotkeys-light,num_dependents_deps.dev:0 @@ -525120,6 +535288,7 @@ github.com/fur-repo/fur-logger,num_dependents_deps.dev:0 github.com/fur-repo/fur-shapes,num_dependents_deps.dev:3 github.com/fur6y/grunt-cordova-api,num_dependents_deps.dev:0 github.com/fur6y/grunt-git-subrepos,num_dependents_deps.dev:0 +github.com/furacas/up2qn-plus, github.com/furagi/cloud9-cucumber,num_dependents_deps.dev:0 github.com/furagu/easy-gd, github.com/furagu/vargs-callback,num_dependents_deps.dev:0 @@ -525177,6 +535346,10 @@ github.com/furic-zhao/gulp-fez-sprite,num_dependents_deps.dev:0 github.com/furic-zhao/gulp-fez-svg-symbols-tojs,num_dependents_deps.dev:0 github.com/furic-zhao/gulp-fez-tinypic,num_dependents_deps.dev:0 github.com/furic-zhao/preload-webpack-plugin, +github.com/furic/laravel-game-essentials, +github.com/furic/laravel-house-ads, +github.com/furic/laravel-leaderboards, +github.com/furic/laravel-redeem-codes, github.com/furimu1234/asyncpgw, github.com/furimu1234/same, github.com/furins/commento,num_dependents_deps.dev:0 @@ -525205,12 +535378,14 @@ github.com/furkanayhan/swalidate,num_dependents_deps.dev:0 github.com/furkancaglar/tcp-chatting,num_dependents_deps.dev:0 github.com/furkancaglar/tools,num_dependents_deps.dev:0 github.com/furkandemir55/postgres-query-builder,num_dependents_deps.dev:0 +github.com/furkando/jira-checklist-action, github.com/furkandogan/web-automation-template,num_dependents_deps.dev:0 github.com/furkangologlu/port-listener,num_dependents_deps.dev:0 github.com/furkangursoy/embassy, github.com/furkaninanc/jwplayer-scraper,num_dependents_deps.dev:0 github.com/furkaninanc/m3u8-to-mp4,num_dependents_deps.dev:2 github.com/furkaninanc/openload-downloader,num_dependents_deps.dev:0 +github.com/furkanipek/chrome-extension-action, github.com/furkanisitan/object.pickomit,num_dependents_deps.dev:0 github.com/furkankose/reqque,num_dependents_deps.dev:0 github.com/furkankykc/TravelingSalesman, @@ -525955,6 +536130,7 @@ github.com/futuretap/InAppSettingsKit,criticality_score:0.541590 github.com/futuretea/harvester-inventory,num_dependents_deps.dev:0 github.com/futurewan/react-region-picker,num_dependents_deps.dev:0 github.com/futurewan/react-toast,num_dependents_deps.dev:0 +github.com/futureware-tech/simulator-action, github.com/futureworkz/changeful,num_dependents_deps.dev:0 github.com/futurice-oss/django-jsonmodel, github.com/futurice/android-best-practices,criticality_score:0.316190 @@ -526094,6 +536270,7 @@ github.com/fuxingZhang/rmdir,num_dependents_deps.dev:0 github.com/fuxingZhang/unrar,num_dependents_deps.dev:0 github.com/fuxingloh/airtable,num_dependents_deps.dev:0 github.com/fuxingloh/hibernate-validator-enum,num_dependents_deps.dev:0 +github.com/fuxingloh/multi-labeler, github.com/fuxingloh/remark-code-import-replace,num_dependents_deps.dev:0 github.com/fuxingloh/vue-horizontal,num_dependents_deps.dev:0 github.com/fuxingloh/vue-horizontal-list, @@ -526187,6 +536364,7 @@ github.com/fuzz-productions/generator-mortar,num_dependents_deps.dev:0 github.com/fuzz7j/2tubi,num_dependents_deps.dev:0 github.com/fuzzbuck/dackio,num_dependents_deps.dev:0 github.com/fuzzbuck/discordgo,num_dependents_deps.dev:0 +github.com/fuzzbuzz/pr-comment, github.com/fuzzbuzz/tutorial-go,num_dependents_deps.dev:0 github.com/fuzzcard/nodejs-cryptokit,num_dependents_deps.dev:0 github.com/fuzzco/cute-parallax,num_dependents_deps.dev:0 @@ -526417,6 +536595,7 @@ github.com/fwauters/holidates,num_dependents_deps.dev:0 github.com/fwcd/KotlinLanguageGrammars,num_dependents_deps.dev:0 github.com/fwcd/SmallBalloon,num_dependents_deps.dev:0 github.com/fwcd/kotlin-language-server,criticality_score:0.432200 +github.com/fwcd/swift-docc-action, github.com/fwcd/tree-sitter-kotlin,num_dependents_deps.dev:0 github.com/fwchen/holothuroidea, github.com/fwchen/jellyfish,num_dependents_deps.dev:0 @@ -526492,6 +536671,8 @@ github.com/fwhigh/metaflow-helper, github.com/fwiedmann/differ,num_dependents_deps.dev:0 github.com/fwiedmann/heartbeat,num_dependents_deps.dev:0 github.com/fwienber/promise-as3,num_dependents_deps.dev:0 +github.com/fwilhe2/bump-version, +github.com/fwilhe2/setup-kotlin, github.com/fwilkens/gem_stream,num_dependents_deps.dev:0 github.com/fwilkerson/clean-set,num_dependents_deps.dev:164 github.com/fwilkerson/datasist,num_dependents_deps.dev:0 @@ -526605,11 +536786,13 @@ github.com/fxbin/bubble-fireworks,num_dependents_deps.dev:914 github.com/fxbois/web-mode,criticality_score:0.496440 github.com/fxborg/indexed-ring-buffer,num_dependents_deps.dev:0 github.com/fxbox/openzwave-rust,num_dependents_deps.dev:0 +github.com/fxchen/code-review, github.com/fxck/frid,num_dependents_deps.dev:0 github.com/fxck/seamless-immutable,num_dependents_deps.dev:0 github.com/fxck/store,num_dependents_deps.dev:0 github.com/fxckfxtxre/SpaceDb, github.com/fxckfxtxre/Stratz, +github.com/fxcl/sync-fork, github.com/fxcm/RestAPI,criticality_score:0.367240 github.com/fxcosta/laravel-chartjs,criticality_score:0.325910 github.com/fxcosta/react-native-camera,num_dependents_deps.dev:0 @@ -526721,6 +536904,7 @@ github.com/fxuniverse/generator-gumby-assemble,num_dependents_deps.dev:0 github.com/fxvaskin/lionheart,num_dependents_deps.dev:0 github.com/fxwavelet/runtime,num_dependents_deps.dev:0 github.com/fxwavelet/wavelet,num_dependents_deps.dev:0 +github.com/fxwiegand/apply-clippy-lints, github.com/fxxjdedd/cache-loader,num_dependents_deps.dev:0 github.com/fxxjdedd/vue-cli-plugin-seed-template-generator,num_dependents_deps.dev:0 github.com/fxy060608/uni-cloud-router,num_dependents_deps.dev:0 @@ -526792,6 +536976,7 @@ github.com/fyl080801/nestjs-vite-project,num_dependents_deps.dev:10 github.com/fyl080801/vjdesign,num_dependents_deps.dev:0 github.com/fyl080801/vjform,num_dependents_deps.dev:0 github.com/fyl2xp1/krust,num_dependents_deps.dev:0 +github.com/fylein/docker-release-action, github.com/fylein/dynamics-sdk-py, github.com/fylein/freshsales-sdk-py, github.com/fylein/fyle-accounting-mappings, @@ -526807,6 +536992,8 @@ github.com/fylein/gsheets-db-connector, github.com/fylein/netsuite-db-connector, github.com/fylein/netsuite-sdk-py, github.com/fylein/procore-sdk-py, +github.com/fylein/python-pylint-github-action, +github.com/fylein/python-pytest-github-action, github.com/fylein/qbo-sdk-py, github.com/fylein/sqlite-connector, github.com/fylein/xero-db-connector, @@ -526948,6 +537135,7 @@ github.com/fzaninotto/uptime,num_dependents_deps.dev:0 github.com/fzankl/docsify-plugin-flexible-alerts, github.com/fzaverl/s3dlib, github.com/fzcs/react-native-segmented-control-android,num_dependents_deps.dev:0 +github.com/fzdwx/add-event-to-myblog, github.com/fzed51/date-validator, github.com/fzed51/webpack-config,num_dependents_deps.dev:0 github.com/fzembow/rect-scaler,num_dependents_deps.dev:0 @@ -527127,6 +537315,7 @@ github.com/g-s-k/lox-lang,num_dependents_deps.dev:0 github.com/g-s-k/parsley,num_dependents_deps.dev:0 github.com/g-s-k/pxsort,num_dependents_deps.dev:0 github.com/g-s-k/slack_moji,num_dependents_deps.dev:0 +github.com/g-s-k/toml-test-action, github.com/g-s-k/trx,num_dependents_deps.dev:0 github.com/g-s-k/uchr,num_dependents_deps.dev:0 github.com/g-s-k/zero_days,num_dependents_deps.dev:0 @@ -527150,6 +537339,7 @@ github.com/g-w1/ezc,num_dependents_deps.dev:0 github.com/g-w1/pdfcr,num_dependents_deps.dev:0 github.com/g-w1/work,num_dependents_deps.dev:0 github.com/g-walley/cegpy, +github.com/g-wilson/action-semgrep, github.com/g-wilson/go-pa1010d,num_dependents_deps.dev:0 github.com/g-wilson/go-sgp30,num_dependents_deps.dev:0 github.com/g-wilson/imonumber,num_dependents_deps.dev:0 @@ -527261,6 +537451,7 @@ github.com/g2a-com/node-standard-error,num_dependents_deps.dev:0 github.com/g2crowd/elasticsearch-js-client,num_dependents_deps.dev:0 github.com/g2crowd/extractOptions,num_dependents_deps.dev:0 github.com/g2crowd/g2_command,num_dependents_deps.dev:0 +github.com/g2crowd/required-approvals-action, github.com/g2crowd/sparkline,num_dependents_deps.dev:0 github.com/g2crowd/widget,num_dependents_deps.dev:0 github.com/g2fly99/esl,num_dependents_deps.dev:0 @@ -527297,6 +537488,7 @@ github.com/g3n1us/g3n1us_elementary,num_dependents_deps.dev:0 github.com/g3n1us/g3n1us_elementary_model,num_dependents_deps.dev:0 github.com/g3n1us/g3n1us_helpers.js,num_dependents_deps.dev:0 github.com/g3n1us/g3n1us_toolkit,num_dependents_deps.dev:0 +github.com/g3ngar/mega-put, github.com/g3ngar/sinopia-freeze-storage,num_dependents_deps.dev:0 github.com/g3ngar/verdaccio-offline-storage,num_dependents_deps.dev:0 github.com/g3offrey/fizzbuzz,num_dependents_deps.dev:0 @@ -527327,10 +537519,12 @@ github.com/g3rd/django-rszio, github.com/g3rd/django-timetable, github.com/g3rrit/pear_cpy, github.com/g3rrit/todo_cli, +github.com/g3rv4/GetMoarFediverse, github.com/g3xx/mkdocs-Github, github.com/g42cloud-terraform/terraform-provider-g42cloud,num_dependents_deps.dev:0 github.com/g45t345rt/esbuild-plugin-filelastmodified,num_dependents_deps.dev:0 github.com/g4b1nagy/helpful-site, +github.com/g4bri3lDev/arch-make-action, github.com/g4brielvs/cheesebread, github.com/g4brielvs/python-tomita, github.com/g4brielvs/sheepped, @@ -527371,6 +537565,7 @@ github.com/g4rcez/use-form,num_dependents_deps.dev:0 github.com/g4rcez/use-reducer,num_dependents_deps.dev:2 github.com/g4rick/eslint-config-g4rick,num_dependents_deps.dev:0 github.com/g4s8/example-go-import,num_dependents_deps.dev:0 +github.com/g4s8/gitlint-action, github.com/g4s8/gitstrap,num_dependents_deps.dev:0 github.com/g4s8/go-bundle,num_dependents_deps.dev:0 github.com/g4s8/go-license-detector,num_dependents_deps.dev:0 @@ -527380,6 +537575,7 @@ github.com/g4s8/matchers-json,num_dependents_deps.dev:0 github.com/g4s8/mime,num_dependents_deps.dev:6 github.com/g4s8/oot,num_dependents_deps.dev:0 github.com/g4s8/rio,num_dependents_deps.dev:9 +github.com/g4s8/xcop-action, github.com/g4s8/xembly-js,num_dependents_deps.dev:0 github.com/g4t13l/riverflow,num_dependents_deps.dev:0 github.com/g4vroche/resst-fetch,num_dependents_deps.dev:0 @@ -527580,6 +537776,7 @@ github.com/gabbigum/gomail,num_dependents_deps.dev:0 github.com/gabbo-dam/galaxy-uikit,num_dependents_deps.dev:0 github.com/gabbo-dam/jetswap-uikit,num_dependents_deps.dev:0 github.com/gabbo-dam/jetswap-uikit2,num_dependents_deps.dev:0 +github.com/gabbottron/s3-upload-action, github.com/gabbpuy/vindauga, github.com/gabby-network/client,num_dependents_deps.dev:0 github.com/gabby-network/server,num_dependents_deps.dev:0 @@ -527604,6 +537801,7 @@ github.com/gabe-l-hart/actions-test,num_dependents_deps.dev:0 github.com/gabe0x02/baker-js,num_dependents_deps.dev:0 github.com/gabe0x02/version_compare,num_dependents_deps.dev:2 github.com/gabe565/pyruckus, +github.com/gabe565/setup-helm-docs-action, github.com/gabeabrams/canvas-csv-matcher,num_dependents_deps.dev:0 github.com/gabeabrams/divvy-submissions,num_dependents_deps.dev:0 github.com/gabeabrams/late-days-lti,num_dependents_deps.dev:0 @@ -527715,6 +537913,7 @@ github.com/gabesullice/defcom, github.com/gabesullice/dependentree,num_dependents_deps.dev:0 github.com/gabesullice/juissy,num_dependents_deps.dev:0 github.com/gabesullice/shapes,num_dependents_deps.dev:18 +github.com/gabesw/confluence-readme-sync, github.com/gabeszrozsa/learnlerna,num_dependents_deps.dev:0 github.com/gabetocci/single-dev-env,num_dependents_deps.dev:0 github.com/gabfiocchi/lazyion,num_dependents_deps.dev:0 @@ -527865,6 +538064,7 @@ github.com/gabrfarina/hexo-jquery,num_dependents_deps.dev:0 github.com/gabri3lyang/lrc2json,num_dependents_deps.dev:0 github.com/gabriardi/gatsby-source-instagram-json, github.com/gabric098/iq-validator,num_dependents_deps.dev:0 +github.com/gabricc/kubectl-aws-eks, github.com/gabrie-allaigre/node-avatar-builder,num_dependents_deps.dev:0 github.com/gabrie-allaigre/sonar-gitlab-plugin,criticality_score:0.351260 github.com/gabrie30/ghorg,"criticality_score:0.320220,num_dependents_deps.dev:0" @@ -527878,6 +538078,7 @@ github.com/gabriel-deliu/given-when-then-js,num_dependents_deps.dev:0 github.com/gabriel-deliu/react-calendar-fine-timeline,num_dependents_deps.dev:0 github.com/gabriel-deliu/screenlog.js,num_dependents_deps.dev:0 github.com/gabriel-domingues/katex-document,num_dependents_deps.dev:0 +github.com/gabriel-gn/hello-world-github-action, github.com/gabriel-gn/prisma-components,num_dependents_deps.dev:0 github.com/gabriel-godoy/testcafe,num_dependents_deps.dev:0 github.com/gabriel-hahn/btc-converter-cli,num_dependents_deps.dev:0 @@ -527889,6 +538090,7 @@ github.com/gabriel-kaam/validator3500,num_dependents_deps.dev:0 github.com/gabriel-letarte/sails-arangodb, github.com/gabriel-lopez-lopez/dynamic-react-route,num_dependents_deps.dev:0 github.com/gabriel-milan/Akuanduba, +github.com/gabriel-milan/action-pylint, github.com/gabriel-milan/btrader,num_dependents_deps.dev:0 github.com/gabriel-milan/dbt-client, github.com/gabriel-milan/maestro, @@ -528066,6 +538268,7 @@ github.com/gabrieldemarmiesse/python-on-whales, github.com/gabrieldertoni/discord-bot,num_dependents_deps.dev:0 github.com/gabrieldim/go-crash-course,num_dependents_deps.dev:0 github.com/gabrieldissotti/learning-go-lang,num_dependents_deps.dev:0 +github.com/gabrieldocs/pitest-report-action, github.com/gabrieldocs/teste-npm,num_dependents_deps.dev:0 github.com/gabrieldonadel/cz-custom-changelog,num_dependents_deps.dev:0 github.com/gabrieldonadel/rn-material-ui-textfield,num_dependents_deps.dev:2 @@ -528112,6 +538315,7 @@ github.com/gabrielfalcao/markment, github.com/gabrielfalcao/minions, github.com/gabrielfalcao/plural, github.com/gabrielfalcao/privacy, +github.com/gabrielfalcao/pyenv-action, github.com/gabrielfalcao/speakers, github.com/gabrielfalcao/steadymark, github.com/gabrielfalcao/sure,criticality_score:0.442100 @@ -528306,6 +538510,7 @@ github.com/gabrielrpaladini/blckchain-golang,num_dependents_deps.dev:0 github.com/gabrielrufino/folquire,num_dependents_deps.dev:0 github.com/gabrielrufino/gr-tools,num_dependents_deps.dev:0 github.com/gabrielrufino/imagehub,num_dependents_deps.dev:0 +github.com/gabrielrufino/mongodump-action, github.com/gabrielrufino/mongowatcher,num_dependents_deps.dev:0 github.com/gabrielrufino/onemorerouter,num_dependents_deps.dev:0 github.com/gabrielrufino/react-hooksdb,num_dependents_deps.dev:0 @@ -528340,6 +538545,7 @@ github.com/gabrieltong/sparkchain,num_dependents_deps.dev:0 github.com/gabrieltong/sparkchain-mongoose,num_dependents_deps.dev:0 github.com/gabrieltrompiz/react-verification-code-input,num_dependents_deps.dev:0 github.com/gabrieluizramos/delorean-js,num_dependents_deps.dev:0 +github.com/gabrieluizramos/unsplash-stats-workflow, github.com/gabrielurbina/type-guard,num_dependents_deps.dev:0 github.com/gabrielvoigt/nodejs-study,num_dependents_deps.dev:0 github.com/gabrielvv/beebuzz,num_dependents_deps.dev:0 @@ -528377,6 +538583,7 @@ github.com/gabstv/revert-to-master,num_dependents_deps.dev:0 github.com/gabstv/sandpiper,num_dependents_deps.dev:0 github.com/gabstv/sqltypes,num_dependents_deps.dev:0 github.com/gabszzz/coordscraper,num_dependents_deps.dev:0 +github.com/gabtec/backstage-techdocs-minio-action, github.com/gabtec/couchdb-utils,num_dependents_deps.dev:0 github.com/gabtec/gabtec-utils,num_dependents_deps.dev:0 github.com/gabteles/gulp-less2sass,num_dependents_deps.dev:4 @@ -528388,6 +538595,7 @@ github.com/gabts/node-modules-license-crawler,num_dependents_deps.dev:0 github.com/gabulhas/arrow-distributed-directory-protocol,num_dependents_deps.dev:0 github.com/gabulhas/distributed-data-structures-in-go,num_dependents_deps.dev:0 github.com/gabulhas/garbage-lisp,num_dependents_deps.dev:0 +github.com/gabuscuv/VuePagesAction, github.com/gabwagner/punchListJQueryLess,num_dependents_deps.dev:0 github.com/gabxway/penguin-api,num_dependents_deps.dev:0 github.com/gaby77/iseekframework-utils,num_dependents_deps.dev:0 @@ -528428,6 +538636,20 @@ github.com/gactjs/history,num_dependents_deps.dev:0 github.com/gactjs/key,num_dependents_deps.dev:0 github.com/gactjs/react-router,num_dependents_deps.dev:0 github.com/gactjs/store,num_dependents_deps.dev:0 +github.com/gacts/fetch-doppler-secret, +github.com/gacts/github-slug, +github.com/gacts/gitleaks, +github.com/gacts/install-dnscontrol, +github.com/gacts/install-geth-tools, +github.com/gacts/install-hurl, +github.com/gacts/install-mmock, +github.com/gacts/install-nomad, +github.com/gacts/install-podman, +github.com/gacts/is-stargazer, +github.com/gacts/purge-jsdelivr-cache, +github.com/gacts/run-and-post-run, +github.com/gacts/setup-go-with-cache, +github.com/gacts/setup-node-with-cache, github.com/gad69/golang,num_dependents_deps.dev:0 github.com/gadabout/ember-cli-locales-pods,num_dependents_deps.dev:0 github.com/gadael/gadael,num_dependents_deps.dev:0 @@ -528488,6 +538710,7 @@ github.com/gadhagod/gitignore-cli, github.com/gadhagod/lolxd,num_dependents_deps.dev:0 github.com/gadhagod/mega-pip, github.com/gadhagod/pyrule-compendium, +github.com/gadhagod/rockset-action, github.com/gadhagod/sprintscript, github.com/gadhagod/worldpops, github.com/gadhao/gopath,num_dependents_deps.dev:0 @@ -528733,6 +538956,7 @@ github.com/gagginaspinnata/mandrill-mail,num_dependents_deps.dev:0 github.com/gagginaspinnata/proxygrabber,num_dependents_deps.dev:0 github.com/gagginaspinnata/yc-api, github.com/gaggle-net/codepiper, +github.com/gaggle/elixir_script, github.com/gagle/js-ie-version,num_dependents_deps.dev:0 github.com/gagle/node-argp,num_dependents_deps.dev:28 github.com/gagle/node-bcp47,num_dependents_deps.dev:1748 @@ -528758,6 +538982,9 @@ github.com/gagle/node-ssl-self-signed-certificate,num_dependents_deps.dev:0 github.com/gagle/node-status-bar,num_dependents_deps.dev:38 github.com/gagle/node-tftp, github.com/gagle/node-tftp-client,num_dependents_deps.dev:0 +github.com/gagle/nx-check-changes, +github.com/gagle/package-version, +github.com/gagle/path-filtering, github.com/gagle/tagged-event-proxy,num_dependents_deps.dev:0 github.com/gagliardetto/chrome-tea,num_dependents_deps.dev:0 github.com/gagliardetto/codebox,num_dependents_deps.dev:0 @@ -528792,7 +539019,10 @@ github.com/gagoar/alohomora,num_dependents_deps.dev:0 github.com/gagoar/codeowners-generator,num_dependents_deps.dev:0 github.com/gagoar/coverage-diff-cli,num_dependents_deps.dev:0 github.com/gagoar/delBoy,num_dependents_deps.dev:0 +github.com/gagoar/get-saml-identity-action, github.com/gagoar/github-app-installation-token,num_dependents_deps.dev:0 +github.com/gagoar/invoke-aws-lambda, +github.com/gagoar/use-herald-action, github.com/gagocarrilloedgar/LambertJS,num_dependents_deps.dev:0 github.com/gagocarrilloedgar/data-science-js,num_dependents_deps.dev:0 github.com/gagocarrilloedgar/nwe,num_dependents_deps.dev:0 @@ -528838,6 +539068,7 @@ github.com/gahlotnikhil/generator-angular-2,num_dependents_deps.dev:0 github.com/gahogg/rl_learn, github.com/gahoiv/sockjs-client,num_dependents_deps.dev:0 github.com/gaholanda/react-component-gh,num_dependents_deps.dev:0 +github.com/gahorstmann/credo-sonar-convert, github.com/gaia-boat/communication, github.com/gaia-boat/control, github.com/gaia-boat/routes, @@ -529199,6 +539430,7 @@ github.com/galactrax/cfw_ll,num_dependents_deps.dev:0 github.com/galactrax/cfw_url,num_dependents_deps.dev:0 github.com/galactrax/cfw_whind,num_dependents_deps.dev:6 github.com/galactrax/commentar,num_dependents_deps.dev:0 +github.com/galadrimteam/gpt-pr-review, github.com/galagoshin/gologger,num_dependents_deps.dev:0 github.com/galagoshin/gosql,num_dependents_deps.dev:0 github.com/galagoshin/goutils,num_dependents_deps.dev:0 @@ -529461,6 +539693,7 @@ github.com/gallofeliz/simple-dijs,num_dependents_deps.dev:0 github.com/gallonallen/ng2-daterangepicker,num_dependents_deps.dev:0 github.com/gallyamow/react-gantt-simple-timeline, github.com/gallynaut/gocrypto-api,num_dependents_deps.dev:0 +github.com/galmatn/action-connect-ovpn, github.com/galmeiri/confy,num_dependents_deps.dev:0 github.com/galmeiri/jsonprocenv,num_dependents_deps.dev:0 github.com/galmeiri/sconfigger, @@ -529472,6 +539705,7 @@ github.com/galnir/Master-Bot,num_dependents_deps.dev:0 github.com/galois-advertising/cmake_setup, github.com/galoko/yapw,num_dependents_deps.dev:0 github.com/galomortal47/golang,num_dependents_deps.dev:0 +github.com/galonga/upload-amazon-appstore, github.com/galooshi/atom-import-js, github.com/galpin/pluck, github.com/galr52/react-json-view,num_dependents_deps.dev:0 @@ -529503,6 +539737,7 @@ github.com/galva185/myfirstrepo,num_dependents_deps.dev:0 github.com/galvanidev/dlvproxy,num_dependents_deps.dev:0 github.com/galvanize-it/glearn-cli,num_dependents_deps.dev:0 github.com/galvao/JHRW,num_dependents_deps.dev:0 +github.com/galvesribeiro/AzureCosmosAction, github.com/galvez/fast-path-set,num_dependents_deps.dev:0 github.com/galvez/fastify-api,num_dependents_deps.dev:0 github.com/galvez/fastify-apply,num_dependents_deps.dev:0 @@ -529555,6 +539790,7 @@ github.com/gambol99/etcd-discovery,num_dependents_deps.dev:0 github.com/gambolputty/german-nouns, github.com/gambolputty/wiktionary-de-parser, github.com/gambtho/aks-engine,num_dependents_deps.dev:0 +github.com/gambtho/aks_devcluster_action, github.com/gambtho/hubot-book-list,num_dependents_deps.dev:0 github.com/gambtho/hubot-linkdump,num_dependents_deps.dev:0 github.com/gambtho/hubot-will-it-connect,num_dependents_deps.dev:0 @@ -529574,6 +539810,12 @@ github.com/game-bot/game-domain,num_dependents_deps.dev:0 github.com/game-change/express-ming,num_dependents_deps.dev:0 github.com/game-change/ng-xlsx,num_dependents_deps.dev:0 github.com/game-change/ng-xslx, +github.com/game-ci/steam-deploy, +github.com/game-ci/unity-activate, +github.com/game-ci/unity-builder, +github.com/game-ci/unity-request-activation-file, +github.com/game-ci/unity-return-license, +github.com/game-ci/unity-test-runner, github.com/game-fe/emotionfy,num_dependents_deps.dev:0 github.com/game-fe/emotionify, github.com/game-lover/language-commonlisp,num_dependents_deps.dev:0 @@ -529587,6 +539829,7 @@ github.com/game-soft/mega-drive,num_dependents_deps.dev:0 github.com/game-soft/pc-engine,num_dependents_deps.dev:0 github.com/game-soft/super-famicom,num_dependents_deps.dev:0 github.com/game7/secrets-out,num_dependents_deps.dev:0 +github.com/game8inc/cull, github.com/gamebalancy/balancy-unity,num_dependents_deps.dev:0 github.com/gameballers/gameball-node,num_dependents_deps.dev:0 github.com/gameballers/gameball-python, @@ -529660,9 +539903,11 @@ github.com/gamedev-js/regltf,num_dependents_deps.dev:0 github.com/gamedev-js/scene-graph,num_dependents_deps.dev:0 github.com/gamedev-js/vfx.js,num_dependents_deps.dev:0 github.com/gamedev-js/vmath,num_dependents_deps.dev:4 +github.com/gamedev-thingy/Download-Extract, github.com/gamedevalliance/gridsome-remark-video-shortcode,num_dependents_deps.dev:0 github.com/gamedig/node-gamedig,criticality_score:0.401170 github.com/gameendman/mdbook-open-on-gh,num_dependents_deps.dev:0 +github.com/gameformush/app-yaml-env-compiler, github.com/gamefreak/snuownd,num_dependents_deps.dev:2 github.com/gamegos/cesi,criticality_score:0.317310 github.com/gamehost/ovirt_python_sdk, @@ -529674,6 +539919,7 @@ github.com/gamejolt/client-game-wrapper,num_dependents_deps.dev:0 github.com/gamejolt/client-voodoo,num_dependents_deps.dev:0 github.com/gamejolt/nwjs-installer-builder,num_dependents_deps.dev:0 github.com/gamejolt/nwjs-snappy-updater,num_dependents_deps.dev:0 +github.com/gamekaiju/action-reward-pr, github.com/gamekid/async-flow,num_dependents_deps.dev:0 github.com/gamekid/async-routine,num_dependents_deps.dev:0 github.com/gamekong/leafserver,num_dependents_deps.dev:0 @@ -529691,6 +539937,7 @@ github.com/gamell/gitbook-plugin-journal-summary,num_dependents_deps.dev:0 github.com/gamell/markpress,num_dependents_deps.dev:0 github.com/gamemachine/gamemachine,num_dependents_deps.dev:0 github.com/gamemaker1/office-text-extractor,num_dependents_deps.dev:0 +github.com/gamemann/DPDK-Deploy-Action, github.com/gamemann/gfl-watch,num_dependents_deps.dev:0 github.com/gamemann/pterodactyl-game-server-watch,num_dependents_deps.dev:0 github.com/gamemann/pterodactyl-packet-watch,num_dependents_deps.dev:0 @@ -529727,6 +539974,7 @@ github.com/gameroasters/sign-in-with-apple,num_dependents_deps.dev:0 github.com/gameroomforpresident/GameroomKit-Python, github.com/gamers-coin/node-gamerscoin,num_dependents_deps.dev:0 github.com/gamers-coin/node.js-gamerscoin,num_dependents_deps.dev:0 +github.com/gamersindo1223/MAL-ReadmeList, github.com/gamersindo1223/simple-db,num_dependents_deps.dev:0 github.com/gamersover/pandasecharts, github.com/games-directory/api-giantbomb,num_dependents_deps.dev:0 @@ -529982,6 +540230,7 @@ github.com/gandaldf/uuid,num_dependents_deps.dev:0 github.com/gandaldf/zerolog,num_dependents_deps.dev:0 github.com/gandalf15/cs4527,num_dependents_deps.dev:0 github.com/gandarez/changelog-action,num_dependents_deps.dev:0 +github.com/gandarez/check-pr-body-action, github.com/gandarez/fnmatch,num_dependents_deps.dev:0 github.com/gandarez/semver-action,num_dependents_deps.dev:0 github.com/gandarez/viper,num_dependents_deps.dev:0 @@ -530015,6 +540264,7 @@ github.com/gandreadis/markdown-word-count, github.com/gandresr/PTSNET, github.com/gandrille/postinstall,num_dependents_deps.dev:0 github.com/gandy92/blackclue, +github.com/gane5hvarma/kubectl-actions, github.com/ganeasy/grab,num_dependents_deps.dev:0 github.com/ganeasy/wechatsendtemplatemessage,num_dependents_deps.dev:0 github.com/ganehag/go-units,num_dependents_deps.dev:0 @@ -530047,6 +540297,8 @@ github.com/ganeshkbhat/node-php-cgi,num_dependents_deps.dev:0 github.com/ganeshkbhat/taskcontrol, github.com/ganeshkolhe4392/indiazipcode, github.com/ganeshkumarsv/go-github,num_dependents_deps.dev:0 +github.com/ganeshkumartk/Dev.to-md, +github.com/ganeshkumartk/gist-bird, github.com/ganeshlore/chain-adaptor,num_dependents_deps.dev:0 github.com/ganeshmad/react-scrolling-slider-gallery,num_dependents_deps.dev:0 github.com/ganeshmad/reactpopupmodal,num_dependents_deps.dev:0 @@ -530334,6 +540586,7 @@ github.com/gaokun/vue-who-moved-my-cheese,num_dependents_deps.dev:0 github.com/gaokun/web-performance-monitor,num_dependents_deps.dev:0 github.com/gaokun/webpack-module-tracker,num_dependents_deps.dev:0 github.com/gaol/git-rev-missing,num_dependents_deps.dev:0 +github.com/gaol/hugo-gh-action, github.com/gaol/java-parent,num_dependents_deps.dev:0 github.com/gaol/slides,num_dependents_deps.dev:0 github.com/gaol/test-eventbus-bridge,num_dependents_deps.dev:0 @@ -530373,6 +540626,7 @@ github.com/gaomeng1900/mapshaper,num_dependents_deps.dev:0 github.com/gaomeng1900/webpack-glsl-loader,num_dependents_deps.dev:0 github.com/gaomeng965/components,num_dependents_deps.dev:0 github.com/gaomeng965/gm-cli,num_dependents_deps.dev:0 +github.com/gaomengen/go-action-lab, github.com/gaoming13/browser-storage,num_dependents_deps.dev:0 github.com/gaomjun/htun,num_dependents_deps.dev:0 github.com/gaomugong/unchained,num_dependents_deps.dev:0 @@ -530401,6 +540655,7 @@ github.com/gaoqing/robust-http-fetch,num_dependents_deps.dev:0 github.com/gaoqisen/gqs-webcenter,num_dependents_deps.dev:0 github.com/gaorenfei/rollup-vue,num_dependents_deps.dev:0 github.com/gaorlov/serializer, +github.com/gaoruhao/azure-pipeline-github-action, github.com/gaorx/mookoo, github.com/gaorx/stardust3,num_dependents_deps.dev:0 github.com/gaoryrt/HTMLgenerator,num_dependents_deps.dev:0 @@ -530774,6 +541029,7 @@ github.com/garciparedes/pascua, github.com/garciparedes/ringer, github.com/garcticman/golang-ecs-engine,num_dependents_deps.dev:0 github.com/garcus/wct-xunit-reporter,num_dependents_deps.dev:0 +github.com/gardarik/provider-status-action, github.com/gardatech/bugbane, github.com/gardaud/barify, github.com/gardaud/colorscheme, @@ -530790,6 +541046,7 @@ github.com/gardelin/sdom,num_dependents_deps.dev:0 github.com/gardell/scoped-callback,num_dependents_deps.dev:0 github.com/gardemm/nuxt-sprite-svg-inline,num_dependents_deps.dev:0 github.com/garden-io/garden,"criticality_score:0.510850,num_dependents_deps.dev:0" +github.com/garden-io/garden-action, github.com/garden-io/mlem,num_dependents_deps.dev:0 github.com/garden20/app_settings,num_dependents_deps.dev:0 github.com/garden20/garden-core,num_dependents_deps.dev:0 @@ -530958,6 +541215,7 @@ github.com/garethjns/reinforcement-learning-keras, github.com/garethjns/social-distancing-sim, github.com/garethjns/tf2-vgpu, github.com/garethlatwork/quickbase_client,num_dependents_deps.dev:0 +github.com/garethlau/Setup-Neo4j, github.com/garethlau/illumi,num_dependents_deps.dev:0 github.com/garethpaul/fsq-go-explore,num_dependents_deps.dev:0 github.com/garethpaul/plugin-cli-101-training,num_dependents_deps.dev:0 @@ -531030,9 +541288,13 @@ github.com/garfileds/vue-night-switch,num_dependents_deps.dev:0 github.com/garfix/nli-go,num_dependents_deps.dev:0 github.com/garfonzo/djangoproton, github.com/garfty/pixijs-generator, +github.com/garg3133/welcome-new-contributors, github.com/gargakshit/typeorm,num_dependents_deps.dev:0 github.com/gargalce/node-ffmpeg-stream-recorder,num_dependents_deps.dev:0 github.com/gargankita/react-native-wheelpicker-drum-roll,num_dependents_deps.dev:0 +github.com/garganshu/github-assignee-updater, +github.com/garganshu/github-issue-updater, +github.com/garganshu/github-label-updater, github.com/garganurag893/react-native-phone-number-input,num_dependents_deps.dev:0 github.com/gargath/mongster,num_dependents_deps.dev:0 github.com/gargath/pleiades,num_dependents_deps.dev:0 @@ -531123,7 +541385,11 @@ github.com/garncarz/laileoulacuisse, github.com/garncarz/privatizace, github.com/garne041/chem_calc, github.com/garnermccloud/ratebeer-api,num_dependents_deps.dev:0 +github.com/garnertb/get-team-members, +github.com/garnertb/weekly-issue-action, github.com/garnet-labs/cli,num_dependents_deps.dev:0 +github.com/garnet-org/lstn-gh-action, +github.com/garnet-org/lstn-policy, github.com/garney/busy-indicator,num_dependents_deps.dev:0 github.com/garney/custom-modal,num_dependents_deps.dev:0 github.com/garney/event-dispatcher,num_dependents_deps.dev:0 @@ -531295,6 +541561,7 @@ github.com/garrows/datanow-cli,num_dependents_deps.dev:0 github.com/garrows/dnssearch,num_dependents_deps.dev:0 github.com/garrows/gulp-headerfooter,num_dependents_deps.dev:0 github.com/garrows/jsonrefer,num_dependents_deps.dev:0 +github.com/garrows/psalm-github-actions, github.com/garrows/route53-backup-to-s3,num_dependents_deps.dev:0 github.com/garrows/ses-proxy,num_dependents_deps.dev:0 github.com/garrows/sockethooks-cli,num_dependents_deps.dev:0 @@ -531473,6 +541740,8 @@ github.com/garygchai/fis-optimizer-minify-html,num_dependents_deps.dev:0 github.com/garygrossgarten/business-card,num_dependents_deps.dev:0 github.com/garygrossgarten/cookiemonster,num_dependents_deps.dev:0 github.com/garygrossgarten/create-github-repo,num_dependents_deps.dev:0 +github.com/garygrossgarten/github-action-scp, +github.com/garygrossgarten/github-action-ssh, github.com/garygrossgarten/wach,num_dependents_deps.dev:0 github.com/garyham/fluxurious,num_dependents_deps.dev:0 github.com/garyhan/uniapp-router-patch,num_dependents_deps.dev:0 @@ -531668,6 +541937,7 @@ github.com/gasparesganga/jquery-ajax-downloader,num_dependents_deps.dev:0 github.com/gasparesganga/jquery-loading-overlay,num_dependents_deps.dev:0 github.com/gasparesganga/jquery-message-box,num_dependents_deps.dev:0 github.com/gasparhabif/go-api-test,num_dependents_deps.dev:0 +github.com/gasparhe/newman-action, github.com/gasparian/featureSelection, github.com/gasparian/lsh-search-go,num_dependents_deps.dev:0 github.com/gasparian/money-transfers-api,num_dependents_deps.dev:0 @@ -531680,6 +541950,8 @@ github.com/gasparnd/random-names-pkg,num_dependents_deps.dev:0 github.com/gasparsigma/typed-inline-svg,num_dependents_deps.dev:0 github.com/gasparteixeira/i18n-react-json,num_dependents_deps.dev:0 github.com/gaspartino/servidor-local-udp,num_dependents_deps.dev:0 +github.com/gaspb/app-yaml-env-compiler, +github.com/gaspb/latest-tag-action, github.com/gasperio/gasper,num_dependents_deps.dev:0 github.com/gaspiman/interview_challenges,num_dependents_deps.dev:0 github.com/gaspiman/lexvec,num_dependents_deps.dev:0 @@ -531784,6 +542056,8 @@ github.com/gateio/gateapi-nodejs,num_dependents_deps.dev:0 github.com/gateio/gateapi-python, github.com/gateio/gatews,num_dependents_deps.dev:0 github.com/gateio/rest,num_dependents_deps.dev:0 +github.com/gateixeira/enterprise-licenses-report, +github.com/gateixeira/manage-collaborators-action, github.com/gatejs/cluster,num_dependents_deps.dev:0 github.com/gatekeeper/gatekeeper-operator,num_dependents_deps.dev:0 github.com/gatelogic/djs-cmd-handler, @@ -531801,6 +542075,7 @@ github.com/gatero/loopback-component-passport,num_dependents_deps.dev:0 github.com/gates1de/leetcode,num_dependents_deps.dev:0 github.com/gatesense/node-red-contrib-coap,num_dependents_deps.dev:0 github.com/gateservice-net/gain-net,num_dependents_deps.dev:0 +github.com/gatest233/ssh2actions, github.com/gatete-bruno/golang,num_dependents_deps.dev:0 github.com/gatewaker/gatewaker-client,num_dependents_deps.dev:0 github.com/gateware-ts/gateware-ts,num_dependents_deps.dev:0 @@ -531848,6 +542123,7 @@ github.com/gatkin/nrdashboards, github.com/gatleon/gatleon-authform-rails,num_dependents_deps.dev:0 github.com/gatleon/gatleon-params2,num_dependents_deps.dev:0 github.com/gatleon/gatleon-rails,num_dependents_deps.dev:0 +github.com/gatling/enterprise-action, github.com/gatling/frontline-gradle-plugin,num_dependents_deps.dev:0 github.com/gatling/frontline-maven-plugin,num_dependents_deps.dev:0 github.com/gatling/gatling,"criticality_score:0.666800,num_dependents_deps.dev:3718" @@ -531992,6 +542268,8 @@ github.com/gaurav-nelson/asciidoc-link-check,num_dependents_deps.dev:0 github.com/gaurav-nelson/asciidoc-link-extractor,num_dependents_deps.dev:0 github.com/gaurav-nelson/asciidoc-xref-extractor,num_dependents_deps.dev:0 github.com/gaurav-nelson/gatsby-remark-replace,num_dependents_deps.dev:0 +github.com/gaurav-nelson/github-action-markdown-link-check, +github.com/gaurav-nelson/github-action-vale-lint, github.com/gaurav-nelson/retext-google-styleguide,num_dependents_deps.dev:0 github.com/gaurav-nelson/retext-ibmstyleguide,num_dependents_deps.dev:0 github.com/gaurav-nelson/retext-wordusage,num_dependents_deps.dev:0 @@ -532060,6 +542338,7 @@ github.com/gauravp16/StateMachine,num_dependents_deps.dev:0 github.com/gauravparnamis/firstlibraries,num_dependents_deps.dev:0 github.com/gauravprayag/pro1,num_dependents_deps.dev:0 github.com/gauravrawat440/one-funny-package,num_dependents_deps.dev:0 +github.com/gauravsa/go-action, github.com/gauravsaluja2006/koajs-couchbase-connector,num_dependents_deps.dev:0 github.com/gauravshankar/t-design-system,num_dependents_deps.dev:0 github.com/gauravshimpi/PandasUtilities, @@ -532155,6 +542434,7 @@ github.com/gautameswaran/kafkaq,num_dependents_deps.dev:0 github.com/gautameswaran/openidconnect,num_dependents_deps.dev:0 github.com/gautamgro/PwaFramework,num_dependents_deps.dev:0 github.com/gautamkrishnar/blog-post-workflow,criticality_score:0.478510 +github.com/gautamkrishnar/keepalive-workflow, github.com/gautamkrishnar/naughtychecker.js,num_dependents_deps.dev:0 github.com/gautamkrishnar/nothing-private,criticality_score:0.407910 github.com/gautamkrishnar/profanity-finder.js,num_dependents_deps.dev:0 @@ -532177,6 +542457,7 @@ github.com/gauteh/hidefix,num_dependents_deps.dev:0 github.com/gauteh/lieer,criticality_score:0.435180 github.com/gauteh/roaring-landmask,num_dependents_deps.dev:0 github.com/gautema/CQRSlite,criticality_score:0.317930 +github.com/gautemo/fetch-api-data-action, github.com/gautemo/gaute-web-components,num_dependents_deps.dev:0 github.com/gautemo/selector-library,num_dependents_deps.dev:0 github.com/gautemo/touch-cli-windows,num_dependents_deps.dev:0 @@ -532228,6 +542509,7 @@ github.com/gavazn/gavazn,num_dependents_deps.dev:0 github.com/gavbdheiver/RUL_simplified-0.1.1.tar.gz, github.com/gavcooper/learning-go,num_dependents_deps.dev:0 github.com/gavel-tool/python-gavel-owl, +github.com/gavelapis/deploy-multiple-firebase-subdomains, github.com/gavelapis/loopback-connector-google-cloud-datastore, github.com/gaven/flexistyl,num_dependents_deps.dev:0 github.com/gaven/nuxt-svg-sprite-module,num_dependents_deps.dev:0 @@ -532564,6 +542846,7 @@ github.com/gayverjr/pyemap, github.com/gaz492/gotracerwifi,num_dependents_deps.dev:0 github.com/gaz492/haste,num_dependents_deps.dev:0 github.com/gaz492/twitch-export-builder,num_dependents_deps.dev:0 +github.com/gazab/create-markdown-table, github.com/gazab/mozaik-ext-teamcity,num_dependents_deps.dev:0 github.com/gazal-k/wct-xunit,num_dependents_deps.dev:0 github.com/gazandic/go-whatsapp,num_dependents_deps.dev:0 @@ -532629,6 +542912,7 @@ github.com/gba-3/push,num_dependents_deps.dev:0 github.com/gbabula/g5-knockout,num_dependents_deps.dev:0 github.com/gbaciulis/generator-bannerlab,num_dependents_deps.dev:0 github.com/gbaeke/go-template,num_dependents_deps.dev:0 +github.com/gbaeke/kyverno-cli, github.com/gbaeke/nasnet-go,num_dependents_deps.dev:0 github.com/gbagnoli/tzbuddy.rs,num_dependents_deps.dev:0 github.com/gbahamondez/koa-load-routes, @@ -532715,6 +542999,7 @@ github.com/gbeltramo/persty, github.com/gbemougata/gg-js-footer,num_dependents_deps.dev:0 github.com/gbenbow/angular-elastic,num_dependents_deps.dev:0 github.com/gbenga504/gist,num_dependents_deps.dev:0 +github.com/gbenm/pintos-checker, github.com/gbenroscience/clock-js,num_dependents_deps.dev:0 github.com/gbenvenuti/cordova-plugin-screen-orientation,num_dependents_deps.dev:0 github.com/gbenvenuti/customulize,num_dependents_deps.dev:0 @@ -532790,9 +543075,11 @@ github.com/gbk/load-balancer,num_dependents_deps.dev:0 github.com/gbk/module-updater, github.com/gbk94/react-native-expandable-circle-menu,num_dependents_deps.dev:0 github.com/gbkel/gitorm,num_dependents_deps.dev:0 +github.com/gbkel/kindlefy, github.com/gbkel/levq,num_dependents_deps.dev:0 github.com/gbkel/shugart,num_dependents_deps.dev:0 github.com/gbkwiatt/node-rpi-ws281x-native,num_dependents_deps.dev:0 +github.com/gblach/cavalry-action, github.com/gblackiv/proglog,num_dependents_deps.dev:0 github.com/gblair/webpack-php-manifest,num_dependents_deps.dev:0 github.com/gblakeman/lockup,num_dependents_deps.dev:0 @@ -532832,6 +543119,7 @@ github.com/gboudreau/nest-api,criticality_score:0.392850 github.com/gbougakov/apple-jwt,num_dependents_deps.dev:0 github.com/gbougakov/informatics-toolkit,num_dependents_deps.dev:0 github.com/gbougakov/install.sh,num_dependents_deps.dev:0 +github.com/gbougakov/no-deploy-friday, github.com/gbougakov/piply,num_dependents_deps.dev:0 github.com/gbougakov/timeslotter, github.com/gbouquet/browser-sync,num_dependents_deps.dev:0 @@ -532879,6 +543167,8 @@ github.com/gbrian/UDPMulticastEmulator,num_dependents_deps.dev:0 github.com/gbrigandi/tfschema-bindgen,num_dependents_deps.dev:0 github.com/gbrits/cordova-plugin-decimal-keyboard,num_dependents_deps.dev:0 github.com/gbrits/ionic-calendar,num_dependents_deps.dev:0 +github.com/gbrls/action-dropbox-download, +github.com/gbrls/cabueta, github.com/gbrlsepulveda/grower,num_dependents_deps.dev:0 github.com/gbrlsnchs/angry-log,num_dependents_deps.dev:0 github.com/gbrlsnchs/go-colorable,num_dependents_deps.dev:0 @@ -532974,6 +543264,7 @@ github.com/gbvanrenswoude/cdk-grafana-json-dashboard-handler, github.com/gbyonivo/adlam-jitsu,num_dependents_deps.dev:0 github.com/gbywt/common_feature, github.com/gc-admin/gocoin-js,num_dependents_deps.dev:0 +github.com/gc-i/old-phpunit-action, github.com/gc-plugins/apps,num_dependents_deps.dev:0 github.com/gc-plugins/package-managers,num_dependents_deps.dev:0 github.com/gc-plugins/plugin-manager,num_dependents_deps.dev:0 @@ -533006,6 +543297,7 @@ github.com/gcalmettes/pandas-groupby-apply-chaining-extension, github.com/gcalmettes/reveal.js-d3,num_dependents_deps.dev:0 github.com/gcalmettes/reveal.js-webpack-kit,num_dependents_deps.dev:0 github.com/gcampax/node-sockaddr,num_dependents_deps.dev:8 +github.com/gcampbell-msft/fixed-pending-release, github.com/gcangussu/eslint-config,num_dependents_deps.dev:0 github.com/gcangussu/grpc-frame,num_dependents_deps.dev:0 github.com/gcanivet/node-insteon,num_dependents_deps.dev:0 @@ -533074,6 +543366,7 @@ github.com/gcard-inc/discgo-poll,num_dependents_deps.dev:0 github.com/gcardone/junidecode,"Google,num_dependents_deps.dev:0" github.com/gcaria/met-jobs, github.com/gcarq/seek_bufread,num_dependents_deps.dev:3 +github.com/gcarreno/setup-lazarus, github.com/gcarrilao/acunetix-api-python, github.com/gcartlidge/biostarPython, github.com/gcasar/fizz,num_dependents_deps.dev:0 @@ -533083,8 +543376,10 @@ github.com/gcash/bchwallet,num_dependents_deps.dev:3 github.com/gcash/dnsseeder,num_dependents_deps.dev:0 github.com/gcash/neutrino,num_dependents_deps.dev:0 github.com/gcatanese/Tweesky, +github.com/gcatanese/push-to-postman-action, github.com/gcattan/EEG_UNIFIED_ACCESS, github.com/gcattan/covmatest, +github.com/gcattan/git-quality-check, github.com/gcauchis/ScalablePressWrapper,num_dependents_deps.dev:0 github.com/gcaufield/MonkeyPack, github.com/gcavalcante8808/htpwd, @@ -533316,6 +543611,8 @@ github.com/gcoulby/random.js,num_dependents_deps.dev:0 github.com/gcovr/gcovr,criticality_score:0.513130 github.com/gcow/first_package, github.com/gcoxdev/react-hook-form-wizard,num_dependents_deps.dev:0 +github.com/gcp-clouddeploy-ecosystem/deploy-clouddeploy, +github.com/gcp-clouddeploy-ecosystem/release-clouddeploy, github.com/gcp-kit/gcpine-gae-example,num_dependents_deps.dev:0 github.com/gcp-kit/line-bot-gcp-go,num_dependents_deps.dev:0 github.com/gcp-kit/stalog,num_dependents_deps.dev:0 @@ -533401,6 +543698,7 @@ github.com/gdamore/echo,num_dependents_deps.dev:0 github.com/gdamore/go-restful,num_dependents_deps.dev:0 github.com/gdamore/go-toml,num_dependents_deps.dev:0 github.com/gdamore/hprose-golang,num_dependents_deps.dev:0 +github.com/gdamore/mangos, github.com/gdamore/tcell,"criticality_score:0.518160,num_dependents_deps.dev:816" github.com/gdamore/term,num_dependents_deps.dev:0 github.com/gdams/node-cpplint,num_dependents_deps.dev:0 @@ -533734,6 +544032,7 @@ github.com/gdupont/less-monitor,num_dependents_deps.dev:0 github.com/gdurandvadas/tfc,num_dependents_deps.dev:0 github.com/gdurelle/cuba-libre,num_dependents_deps.dev:0 github.com/gdurelle/slimpay,num_dependents_deps.dev:0 +github.com/gdut-dynamic-x/ros-build-deb-action, github.com/gdutwyg/vue-table,num_dependents_deps.dev:0 github.com/gduverger/backslash-markdown-extension, github.com/gduverger/control-f-client, @@ -533954,6 +544253,7 @@ github.com/gechr/ksd,num_dependents_deps.dev:0 github.com/gechr/yamlfmt,num_dependents_deps.dev:0 github.com/gecko-robotics/marko.py, github.com/gecko-robotics/pygeckopb, +github.com/gecko655/github-action-visualize-gcb-graph, github.com/gecko984/supervenn, github.com/geckoboard/cake-bot,num_dependents_deps.dev:0 github.com/geckoboard/everdeen,num_dependents_deps.dev:0 @@ -534149,6 +544449,7 @@ github.com/geek1011/kepubify,num_dependents_deps.dev:0 github.com/geek1011/kobopatch-patches,num_dependents_deps.dev:0 github.com/geek1011/koboutils,num_dependents_deps.dev:0 github.com/geek4teck/tambola,num_dependents_deps.dev:0 +github.com/geekNero/secret-scanning, github.com/geekac/workjets, github.com/geekakili/portside,num_dependents_deps.dev:0 github.com/geekape/omni-cli,num_dependents_deps.dev:0 @@ -534168,6 +544469,8 @@ github.com/geekcash/geekcash-rpc,num_dependents_deps.dev:0 github.com/geekcash/insight-api,num_dependents_deps.dev:0 github.com/geekcash/mix-lib,num_dependents_deps.dev:0 github.com/geekcash/smart-rpc,num_dependents_deps.dev:0 +github.com/geekcell/github-action-aws-codedeploy-wait, +github.com/geekcell/github-action-aws-ecs-run-task, github.com/geekchomolungma/everest-base-camp,num_dependents_deps.dev:0 github.com/geekcodeplus/geekcodeplus,num_dependents_deps.dev:0 github.com/geekcodershivam/amazon-code-verify, @@ -534280,6 +544583,7 @@ github.com/geeknees/talknote_rb,num_dependents_deps.dev:0 github.com/geeknight-march-2021/create-react-app,num_dependents_deps.dev:0 github.com/geeknull/quick-clipboard,num_dependents_deps.dev:0 github.com/geeknux/win,num_dependents_deps.dev:0 +github.com/geekodour/gh-actions-custom-status, github.com/geekodour/github-blog-api,num_dependents_deps.dev:0 github.com/geekodour/seeta,num_dependents_deps.dev:0 github.com/geekofweek/homeassistant,criticality_score:0.354190 @@ -534399,6 +544703,7 @@ github.com/geelweb/django-navhelper, github.com/geelweb/geelweb-django-contactform, github.com/geelweb/laposte-python-sdk, github.com/geem-lab/overreact, +github.com/geemanjs/conventional-changelog-npm-publish, github.com/geemaple/react-native-tencent-ad,num_dependents_deps.dev:0 github.com/geemili/augr,num_dependents_deps.dev:0 github.com/geemo/node-svg2png-es5,num_dependents_deps.dev:0 @@ -534574,7 +544879,9 @@ github.com/geiqin/plaza-proto,num_dependents_deps.dev:0 github.com/geiqin/thirdparty,num_dependents_deps.dev:0 github.com/geiqin/work-proto,num_dependents_deps.dev:0 github.com/geiqin/xconfig,num_dependents_deps.dev:0 +github.com/geirem/bom-tracker, github.com/geirem/envyconfig, +github.com/geirem/packages-helper, github.com/geirolz/advxml,num_dependents_deps.dev:0 github.com/geirskjo/binparse, github.com/geisbruch/node-java_hashcode,num_dependents_deps.dev:0 @@ -534758,6 +545065,7 @@ github.com/gembaadvantage/ecr-swiss,num_dependents_deps.dev:0 github.com/gembaadvantage/helm-ecr,num_dependents_deps.dev:0 github.com/gembaadvantage/kubesw,num_dependents_deps.dev:0 github.com/gembaadvantage/uplift,num_dependents_deps.dev:0 +github.com/gembaadvantage/uplift-action, github.com/gembcior/FortressTools, github.com/gembcior/d-ral, github.com/gembcior/svd2py, @@ -535367,6 +545675,7 @@ github.com/genghisken/psat-server-web, github.com/genghistron84/go-gin-api-example,num_dependents_deps.dev:0 github.com/genghongjie/config,num_dependents_deps.dev:0 github.com/genghongjie/go-code,num_dependents_deps.dev:0 +github.com/gengjayus/tomat, github.com/gengjia0214/jai, github.com/gengjiawen/crawler-toolbox,num_dependents_deps.dev:0 github.com/gengjiawen/monkey-rust,num_dependents_deps.dev:14 @@ -535696,6 +546005,7 @@ github.com/gentlemanchao/template-vser-loader,num_dependents_deps.dev:0 github.com/gentlemanchao/vser,num_dependents_deps.dev:0 github.com/gentlemanchao/vser-router,num_dependents_deps.dev:0 github.com/gentletee/fltrjson,num_dependents_deps.dev:0 +github.com/gentoo-monero/repoman-action, github.com/gentoo/docutils-glep, github.com/gentoo/eudev,criticality_score:0.578630 github.com/gentoo/gentoo,criticality_score:0.725460 @@ -535829,6 +546139,7 @@ github.com/geobeyond/sdk-tools,num_dependents_deps.dev:0 github.com/geoblink/apidoc-plugin-ts,num_dependents_deps.dev:0 github.com/geoblink/design-system, github.com/geoblink/node-pg-spice,num_dependents_deps.dev:0 +github.com/geoblink/publish-to-npm, github.com/geoblink/web-scraper-chrome-extension,num_dependents_deps.dev:0 github.com/geoblocks/base,num_dependents_deps.dev:0 github.com/geoblocks/cesium-helpers,num_dependents_deps.dev:0 @@ -535990,6 +546301,7 @@ github.com/geoffyoungs/rubber-generate,num_dependents_deps.dev:1 github.com/geofholbrook/restful-bridge,num_dependents_deps.dev:0 github.com/geofileops/geofileops, github.com/geofirestore/geofirestore-js,num_dependents_deps.dev:0 +github.com/geofjamg/broadcast-event, github.com/geofmureithi/actix-jobs,num_dependents_deps.dev:0 github.com/geofmureithi/apalis,num_dependents_deps.dev:0 github.com/geofmureithi/filetypes,num_dependents_deps.dev:0 @@ -536022,6 +546334,7 @@ github.com/geoip-lite/node-geoip,"criticality_score:0.436930,num_dependents_deps github.com/geoirb/event,num_dependents_deps.dev:0 github.com/geoirb/kangaroo,num_dependents_deps.dev:0 github.com/geoirb/set-of-lists-bot,num_dependents_deps.dev:0 +github.com/geokats7/jenkins_client, github.com/geokit/geokit,"criticality_score:0.424920,num_dependents_deps.dev:38" github.com/geokit/geokit-rails,"criticality_score:0.404850,num_dependents_deps.dev:0" github.com/geokollias/proglog,num_dependents_deps.dev:0 @@ -536048,6 +546361,7 @@ github.com/geoloep/Leaflet.RD,num_dependents_deps.dev:0 github.com/geoloep/krite,num_dependents_deps.dev:0 github.com/geoloep/krite-vue,num_dependents_deps.dev:0 github.com/geoloep/openls-geocode-parser,num_dependents_deps.dev:0 +github.com/geolonia/convert-to-geojson-action, github.com/geolonia/create-map,num_dependents_deps.dev:0 github.com/geolonia/embed,num_dependents_deps.dev:0 github.com/geolonia/fixed-map-plugin, @@ -536213,6 +546527,7 @@ github.com/geordie-quiroa/geordify-cli,num_dependents_deps.dev:0 github.com/geordielad/saml-forward-proxy,num_dependents_deps.dev:0 github.com/geordiemhall/rework-media-filter, github.com/geordiemhall/rework-namespace-css,num_dependents_deps.dev:8 +github.com/geored/indy-action, github.com/georelljones/lodown,num_dependents_deps.dev:0 github.com/georg-un/kneebow, github.com/georg-wolflein/impartial, @@ -536230,6 +546545,8 @@ github.com/george-aidonidis/s-cli,num_dependents_deps.dev:0 github.com/george-aidonidis/safe-uri-path,num_dependents_deps.dev:0 github.com/george-angel/drone-test-project,num_dependents_deps.dev:0 github.com/george-aprozeanu/async-group,num_dependents_deps.dev:0 +github.com/george-baca/jira-pr-action, +github.com/george-baca/pyright-action, github.com/george-dilthey/just-the-recipe,num_dependents_deps.dev:0 github.com/george-e-shaw-iv/doculint,num_dependents_deps.dev:0 github.com/george-hinkel/completions-resurrection, @@ -536260,11 +546577,13 @@ github.com/george518/ppgo_job,num_dependents_deps.dev:0 github.com/george901/http-rest-api,num_dependents_deps.dev:0 github.com/georgeadamson/postcss-merge-selectors,num_dependents_deps.dev:0 github.com/georgeadeishvili/react-stream-player,num_dependents_deps.dev:0 +github.com/georgealton/iam-sarif-report, github.com/georgealways/js,num_dependents_deps.dev:0 github.com/georgeandsavva/securecode,num_dependents_deps.dev:0 github.com/georgearrowwood/express-joi-params,num_dependents_deps.dev:0 github.com/georgearrowwood/resize-to-s3,num_dependents_deps.dev:0 github.com/georgebashi/puppet-newrelic,num_dependents_deps.dev:0 +github.com/georgebatalinski/blanky, github.com/georgebbbb/pure-render-without-function,num_dependents_deps.dev:0 github.com/georgebbbb/react-horizon-simple,num_dependents_deps.dev:0 github.com/georgebbbb/redux-thunk-loadings,num_dependents_deps.dev:0 @@ -536364,6 +546683,8 @@ github.com/georgemunyoro/carpet,num_dependents_deps.dev:0 github.com/georgemunyoro/go-templating-engine,num_dependents_deps.dev:0 github.com/georgemunyoro/static-site-generator,num_dependents_deps.dev:0 github.com/georgemunyoro/weave,num_dependents_deps.dev:0 +github.com/georgeneto/directory-changes-checker, +github.com/georgeneto/tags-versioning, github.com/georgenorman/tessel-kit,num_dependents_deps.dev:0 github.com/georgeokez/georgeokez-frame-print,num_dependents_deps.dev:0 github.com/georgeosddev/connect-ltsv-logger,num_dependents_deps.dev:0 @@ -536462,9 +546783,11 @@ github.com/georgioskyr92/backoffice-suite-accounts-users,num_dependents_deps.dev github.com/georgioskyr92/backoffice-suite-email,num_dependents_deps.dev:0 github.com/georgiowan/react-impressjs,num_dependents_deps.dev:0 github.com/georgipeltekov/ngx-file-drop,num_dependents_deps.dev:0 +github.com/georgismitev/deepcode-code-scanning-analysis, github.com/georgjaehnig/mapsme-ge0,num_dependents_deps.dev:0 github.com/georgjaehnig/weighted-fsm-js,num_dependents_deps.dev:0 github.com/georgjz/tree-sitter-6809,num_dependents_deps.dev:0 +github.com/georglauterbach/cargo-action-fmt, github.com/georglind/konvert, github.com/georgmartius/vid.stab,criticality_score:0.425980 github.com/georgo/homebridge-raspberrypi,num_dependents_deps.dev:0 @@ -536604,6 +546927,14 @@ github.com/geotrev/undernet,num_dependents_deps.dev:0 github.com/geotrev/upgraded-component,num_dependents_deps.dev:0 github.com/geotrev/upgraded-element,num_dependents_deps.dev:0 github.com/geotrix-project/geotrix-project-lib,num_dependents_deps.dev:0 +github.com/geovanams/List-Branch-Docker-Action, +github.com/geovanams/List-branches-action, +github.com/geovanams/action-list-repos, +github.com/geovanams/action-list-repos-msbuild, +github.com/geovanams/actionteste, +github.com/geovanams/hello-world-docker-action, +github.com/geovanams/list-repos-msbuild, +github.com/geovanams/tdc-list-branches-docker-action, github.com/geovanasilva/business-card-geovanasilva,num_dependents_deps.dev:0 github.com/geovanecavalcante/goarea,num_dependents_deps.dev:0 github.com/geovanerocha/vanilla-countdown,num_dependents_deps.dev:0 @@ -536627,6 +546958,7 @@ github.com/geowarin/tarec,num_dependents_deps.dev:0 github.com/geowarin/tarec-plugin-less,num_dependents_deps.dev:0 github.com/geowarin/tarec-plugin-mocha,num_dependents_deps.dev:0 github.com/geowarin/tarec-plugin-typescript,num_dependents_deps.dev:0 +github.com/geowatson/flutter-latest, github.com/geowatson/loadtest, github.com/geowe/geowe-coordinate-utils,num_dependents_deps.dev:0 github.com/geowe2-ce/geowe-ui,num_dependents_deps.dev:0 @@ -536796,6 +547128,7 @@ github.com/gerard2p/linode-v4,num_dependents_deps.dev:0 github.com/gerard2p/node-mce,num_dependents_deps.dev:0 github.com/gerard33/sony_bravia_psk, github.com/gerardabello/adsr-envelope-graph, +github.com/gerardabello/auto-assign, github.com/gerardabello/benoop,num_dependents_deps.dev:0 github.com/gerardc/cloudflare-go,num_dependents_deps.dev:0 github.com/gerardcl/renfe-cli, @@ -536839,6 +547172,7 @@ github.com/geraud/jspath-mutator,num_dependents_deps.dev:0 github.com/geraud1533/angular-auth-oidc-client,num_dependents_deps.dev:0 github.com/geraxe/dolib, github.com/gerayking/go-bipartitegraphmaxmatch,num_dependents_deps.dev:0 +github.com/gerbal/always-cache, github.com/gerbenjacobs/go-restful,num_dependents_deps.dev:0 github.com/gerbenjacobs/properties,num_dependents_deps.dev:0 github.com/gerbenjacobs/terraform-provider-consul,num_dependents_deps.dev:0 @@ -536856,6 +547190,7 @@ github.com/gercai/businesscard,num_dependents_deps.dev:0 github.com/gerchardon/docker-logio,num_dependents_deps.dev:0 github.com/gercograndia/aws-iam-tester, github.com/gercograndia/aws-tmp-keys-fetcher, +github.com/gerdemann/http-status-code, github.com/gerdemann/lazytube,num_dependents_deps.dev:0 github.com/gerdoe-jr/tw-econ,num_dependents_deps.dev:0 github.com/gerdos/PyRAMA, @@ -536996,6 +547331,8 @@ github.com/gerifield/jitter,num_dependents_deps.dev:0 github.com/gerifield/logrus-airbrake-legacy-hook,num_dependents_deps.dev:0 github.com/gerirgaudi/elesai,num_dependents_deps.dev:0 github.com/gerirgaudi/senedsa,num_dependents_deps.dev:0 +github.com/geritol/match-tag-to-package-version, +github.com/geritol/write-guard, github.com/geritwagner/digital-tickler, github.com/gerizal/core-module,num_dependents_deps.dev:0 github.com/gerkirill/gl-office-time-api,num_dependents_deps.dev:0 @@ -537019,6 +547356,7 @@ github.com/german-pichardo/wp-admin-custom,num_dependents_deps.dev:0 github.com/german-st/dialogflowv2,num_dependents_deps.dev:0 github.com/german-st/node-red-contrib-sharepoint,num_dependents_deps.dev:0 github.com/german-st/node-red-ews,num_dependents_deps.dev:0 +github.com/german1311/file-upload-one-drive, github.com/german1608/tic-tac-toe-eng-fcc,num_dependents_deps.dev:0 github.com/germanattanasio/docpad-plugin-ssi,num_dependents_deps.dev:0 github.com/germanattanasio/jenkins-badges,num_dependents_deps.dev:0 @@ -537104,6 +547442,7 @@ github.com/gerpark/ftsim, github.com/gerrandonea/gerrandonea-palindrome,num_dependents_deps.dev:0 github.com/gerrard-ynwa/code,num_dependents_deps.dev:0 github.com/gerrard00/node-tree-fiddy,num_dependents_deps.dev:0 +github.com/gerred/current-time, github.com/gerred/dimensional_pouch,num_dependents_deps.dev:0 github.com/gerred/node-cryptor,num_dependents_deps.dev:0 github.com/gerred/queue_stream,num_dependents_deps.dev:0 @@ -537130,6 +547469,7 @@ github.com/gerrymandr/rcv, github.com/gerrymanoim/exchange_calendars, github.com/gerrymanoim/libpy_simdjson, github.com/gerrymanoim/paprika-to-sqlite, +github.com/gerrymanoim/pr-prefix-labeler, github.com/gerrypower/rspec-translation,num_dependents_deps.dev:0 github.com/gerrywen/apidoc2runner, github.com/gerrywen/postman2runner, @@ -537155,6 +547495,7 @@ github.com/gerswin/python-hassio-sonoff, github.com/gert-janwille/WMA,num_dependents_deps.dev:0 github.com/gert7/agis,num_dependents_deps.dev:0 github.com/gertd/gha-test,num_dependents_deps.dev:0 +github.com/gertd/yaml-reader-action, github.com/gertjana/LoraCharge,num_dependents_deps.dev:0 github.com/gertjanvanzwieten/mvi, github.com/gertjvr/serverless-docker,num_dependents_deps.dev:0 @@ -537193,6 +547534,8 @@ github.com/gesellix/docker-client,num_dependents_deps.dev:0 github.com/gesellix/gradle-debian-plugin,num_dependents_deps.dev:0 github.com/gesellix/gradle-docker-plugin,num_dependents_deps.dev:0 github.com/gesellix/ngx-tooltip,num_dependents_deps.dev:0 +github.com/gesellix/slack-notify-action, +github.com/gesellix/terrahelp-github-action, github.com/gesellix/unix-socket-factory,num_dependents_deps.dev:142 github.com/gesellkammer/bpf4, github.com/gesellkammer/configdict, @@ -537300,6 +547643,8 @@ github.com/get-set-fetch/test-utils,num_dependents_deps.dev:0 github.com/get-stackable/stackable-javascript,num_dependents_deps.dev:0 github.com/get-woke/get-woke.github.io,num_dependents_deps.dev:0 github.com/get-woke/woke,num_dependents_deps.dev:0 +github.com/get-woke/woke-action, +github.com/get-woke/woke-action-reviewdog, github.com/get-wrecked/flask-events, github.com/get-ytt/ytt,num_dependents_deps.dev:0 github.com/get/parsejson,num_dependents_deps.dev:13834 @@ -537362,6 +547707,7 @@ github.com/getapper/react-media-recorder,num_dependents_deps.dev:0 github.com/getapper/react-native-arkit,num_dependents_deps.dev:0 github.com/getapper/react-sombrero,num_dependents_deps.dev:0 github.com/getapper/serverless-mongo-proxy,num_dependents_deps.dev:0 +github.com/getappmap/archive-action, github.com/getavalon/core, github.com/getaway-house/react-autocomplete,num_dependents_deps.dev:0 github.com/getbackender/backender, @@ -537569,6 +547915,7 @@ github.com/getgort/gort,num_dependents_deps.dev:0 github.com/getgort/gortctl,num_dependents_deps.dev:0 github.com/getgrav/grav,criticality_score:0.719550 github.com/getgrav/grav-plugin-admin,criticality_score:0.680590 +github.com/getgrav/skeleton-builder, github.com/getgridea/gridea,criticality_score:0.367270 github.com/getguesstimate/guesstimate-app,criticality_score:0.300070 github.com/getguesstimate/guesstimate-graph-simulator,num_dependents_deps.dev:0 @@ -537655,6 +548002,7 @@ github.com/getjets/jets,num_dependents_deps.dev:0 github.com/getjets/jets-cli,num_dependents_deps.dev:0 github.com/getjets/jets-railtie,num_dependents_deps.dev:0 github.com/getjobber/prawnto,num_dependents_deps.dev:0 +github.com/getjoystick/witcher-action, github.com/getjs/gulp-hot-reload, github.com/getjusto/parts,num_dependents_deps.dev:0 github.com/getkalido/hb_migrations,num_dependents_deps.dev:0 @@ -537667,6 +548015,7 @@ github.com/getkey/eslint-config-getkey,num_dependents_deps.dev:0 github.com/getkey/rollup-plugin-obfuscator,num_dependents_deps.dev:0 github.com/getkey/svg-patcher,num_dependents_deps.dev:0 github.com/getkiat/grpc-go-course,num_dependents_deps.dev:0 +github.com/getkimball/deploy-action, github.com/getkin/kin-openapi,"criticality_score:0.543920,num_dependents_deps.dev:218" github.com/getkirby-solutions/panel-theme-azure,num_dependents_deps.dev:0 github.com/getkirby-v2/kirby,criticality_score:0.302350 @@ -537772,6 +548121,8 @@ github.com/getmindspun/bootstrap-avatar, github.com/getmindspun/bootstrap-js-buttons,num_dependents_deps.dev:0 github.com/getmindspun/ghost-theme-utils, github.com/getmoro/moro,criticality_score:0.370050 +github.com/getmoto/moto, +github.com/getmoto/py-partiql-parser, github.com/getmyboat/boxr, github.com/getmyinvoices/accounts-api-python, github.com/getmykhan/toolstack, @@ -537808,6 +548159,7 @@ github.com/getnelson/terraform-provider-nelson,num_dependents_deps.dev:0 github.com/getnewdash/register-interest,num_dependents_deps.dev:0 github.com/getnikola/coil, github.com/getnikola/nikola,criticality_score:0.590910 +github.com/getnikola/nikola-action, github.com/getninjas/adwords-client, github.com/getninjas/celery-executor, github.com/getninjas/devops_test,num_dependents_deps.dev:0 @@ -537840,10 +548192,16 @@ github.com/getogrand/commonregex,num_dependents_deps.dev:0 github.com/getomni/hyper,num_dependents_deps.dev:0 github.com/getomni/insomnia, github.com/getomni/insomnia-omni,num_dependents_deps.dev:0 +github.com/getong/elasticsearch-action, +github.com/getong/mariadb-action, +github.com/getong/mongo-action, +github.com/getong/rabbitmq-action, +github.com/getong/redis-action, github.com/getorca/pyPelias, github.com/getorca/pyUSDforex, github.com/getorg/getorg, github.com/getose/lines-to-polygons,num_dependents_deps.dev:0 +github.com/getoslash/github-build-stats-action, github.com/getoutreach/broccoli-systemjs-builder, github.com/getoutreach/client-ext-sdk,num_dependents_deps.dev:0 github.com/getoutreach/devenv,num_dependents_deps.dev:0 @@ -537870,6 +548228,7 @@ github.com/getperiodic/component.full-width-slideshow,num_dependents_deps.dev:0 github.com/getperiodic/component.list-view-scroll,num_dependents_deps.dev:0 github.com/getperiodic/component.navigation-header,num_dependents_deps.dev:0 github.com/getperiodic/layout.generate.ejs-locals,num_dependents_deps.dev:0 +github.com/getpersio/backblaze-b2-action, github.com/getplaybook/Playbook-SDK-React-Native, github.com/getpopper/popper, github.com/getpoppn/Taskfile.js,num_dependents_deps.dev:0 @@ -537879,6 +548238,7 @@ github.com/getporter/az-mixin,num_dependents_deps.dev:1 github.com/getporter/azure-plugins,num_dependents_deps.dev:0 github.com/getporter/cnab-go,num_dependents_deps.dev:0 github.com/getporter/gcloud-mixin,num_dependents_deps.dev:1 +github.com/getporter/gh-action, github.com/getporter/helm-mixin,num_dependents_deps.dev:0 github.com/getporter/helm2-mixin,num_dependents_deps.dev:2 github.com/getporter/kubernetes-mixin,num_dependents_deps.dev:0 @@ -537932,7 +548292,11 @@ github.com/getsedona/stylelint-config-sedona,num_dependents_deps.dev:0 github.com/getsenic/gatt-python, github.com/getsenic/nuimo-linux-python, github.com/getsenic/senic.cryptoyaml, +github.com/getsentry/action-git-diff-suggestions, github.com/getsentry/action-github-app-token, +github.com/getsentry/action-migrations, +github.com/getsentry/action-release, +github.com/getsentry/action-visual-snapshot, github.com/getsentry/airflow-metrics, github.com/getsentry/apple-crash-report-parser,num_dependents_deps.dev:0 github.com/getsentry/arroyo, @@ -538018,12 +548382,16 @@ github.com/getsetdb/getsetpy, github.com/getshaka-org/native-converter,num_dependents_deps.dev:5 github.com/getshaka-org/shaka,num_dependents_deps.dev:0 github.com/getshaka-org/shaka-router,num_dependents_deps.dev:0 +github.com/getshifter/actions-start, +github.com/getshifter/actions-stop, github.com/getshifter/domain-cli,num_dependents_deps.dev:0 github.com/getshifter/hl-sdk-node,num_dependents_deps.dev:0 github.com/getshifter/shifter-sdk-js, github.com/getshiphub/eslint-config,num_dependents_deps.dev:0 github.com/getshiphub/shed,num_dependents_deps.dev:0 github.com/getshiphub/typescript-stdlib,num_dependents_deps.dev:0 +github.com/getshogun/release-changelog-builder-action, +github.com/getsidetrack/action-xcodeproj-spm-update, github.com/getsimpletools/simpletools-python, github.com/getslash/backslash-python, github.com/getslash/flux, @@ -538147,6 +548515,7 @@ github.com/gettyio/user-management-service,num_dependents_deps.dev:0 github.com/gettymoney/logstashUDP,num_dependents_deps.dev:0 github.com/gettymoney/tiktok-scraper,num_dependents_deps.dev:0 github.com/getumbrel/umbrel,criticality_score:0.508350 +github.com/getunlatch/jscpd-github-action, github.com/getupio-undistro/cluster-api,num_dependents_deps.dev:0 github.com/getupio-undistro/kubernetes-build,num_dependents_deps.dev:0 github.com/getupio-undistro/rpc,num_dependents_deps.dev:0 @@ -538251,6 +548620,7 @@ github.com/gevial/rockethook, github.com/gevious/ember-datepicker,num_dependents_deps.dev:0 github.com/gevious/flask_slither, github.com/gevorg-aznauryan/ziggy-app-css,num_dependents_deps.dev:0 +github.com/gevorg-martir/version-me, github.com/gevorg/apache-crypt,num_dependents_deps.dev:1172 github.com/gevorg/apache-md5,num_dependents_deps.dev:1194 github.com/gevorg/htdigest,num_dependents_deps.dev:14 @@ -538346,6 +548716,8 @@ github.com/gfairchild/yelpapi, github.com/gfalcone/mlserve, github.com/gfannes/molybdenum,num_dependents_deps.dev:0 github.com/gfanton/go-libp2p,num_dependents_deps.dev:0 +github.com/gfarb/get-project-next-fields, +github.com/gfarb/sfdx-deploy, github.com/gfarinacci/fardev-ui, github.com/gfarrell/jave,num_dependents_deps.dev:0 github.com/gfax/hubot-junkyard-brawl,num_dependents_deps.dev:0 @@ -538386,6 +548758,7 @@ github.com/gfelbing/cppstyle, github.com/gfelbing/pandoc-compose, github.com/gfelizola/formsy-material-ui,num_dependents_deps.dev:0 github.com/gfelizola/material-ui,num_dependents_deps.dev:0 +github.com/gfellerph/package-json-version-check, github.com/gfernandez598/springwebflow-optforrepl,num_dependents_deps.dev:0 github.com/gferon/am2320.rs,num_dependents_deps.dev:0 github.com/gferrin/BigDecimal.js,num_dependents_deps.dev:0 @@ -538653,6 +549026,9 @@ github.com/ggasoftware/gga-selenium-framework,num_dependents_deps.dev:0 github.com/ggassmann/react-google-structured-data,num_dependents_deps.dev:0 github.com/ggaughan/pipe2py, github.com/ggayane/react-input-validation,num_dependents_deps.dev:0 +github.com/ggazzo/backport-action, +github.com/ggazzo/gh-action-auto-label, +github.com/ggazzo/no-js-action, github.com/ggbemou/gg-npm-project,num_dependents_deps.dev:0 github.com/ggbetawerks/ng-dice-roller,num_dependents_deps.dev:0 github.com/ggblee/binance, @@ -538668,6 +549044,7 @@ github.com/ggcity/leaflet-map,num_dependents_deps.dev:2 github.com/ggcity/leaflet-tile-layer,num_dependents_deps.dev:0 github.com/ggcity/leaflet-wms,num_dependents_deps.dev:0 github.com/ggcity/map-viewer,num_dependents_deps.dev:0 +github.com/ggclimdaw/publicaraction1, github.com/ggcode1/rrgeo,num_dependents_deps.dev:0 github.com/ggcodec/printlog,num_dependents_deps.dev:0 github.com/ggd543/fis-lint-eslint,num_dependents_deps.dev:0 @@ -538975,6 +549352,7 @@ github.com/ggzorgg/higher-ts,num_dependents_deps.dev:0 github.com/ggzorgg/immutable2d,num_dependents_deps.dev:0 github.com/ggzorgg/minesync,num_dependents_deps.dev:0 github.com/gh-BumsooKim/face_labeling, +github.com/gh-bot/fix-labeler, github.com/gh-conf/gh-api,num_dependents_deps.dev:4 github.com/gh-conf/gh-conf-constants,num_dependents_deps.dev:10 github.com/gh-conf/gh-conf-parse,num_dependents_deps.dev:2 @@ -538988,6 +549366,7 @@ github.com/gh-conf/upstreaminit,num_dependents_deps.dev:0 github.com/gh-forky/ng2-cache,num_dependents_deps.dev:0 github.com/gh-gill/node-red-contrib-metabase-embed, github.com/gh-gill/node-red-contrib-ui-metabase,num_dependents_deps.dev:0 +github.com/gh-jir/deploy-firebase-functions, github.com/gh-linking-owner/publicNoApp, github.com/gh-linking-owner/publicWithApp, github.com/gh-zhangpeng/algorithm,num_dependents_deps.dev:0 @@ -539013,16 +549392,27 @@ github.com/gh4ck3r/gtags-parsers,num_dependents_deps.dev:0 github.com/gh4ck3r/npm-ansi,num_dependents_deps.dev:0 github.com/gh549427987/npm, github.com/gh640/github_repo_opener, +github.com/gh640/npm-outdated-action, github.com/gh640/wait-for-docker, github.com/gh6497/swagger-extension,num_dependents_deps.dev:0 github.com/gh72029002/nodejs,num_dependents_deps.dev:0 github.com/gh72029002/nodejs_custom_module, github.com/ghB111/tg-bot-button-data-fetching,num_dependents_deps.dev:0 github.com/ghSP/iniparser,num_dependents_deps.dev:0 +github.com/gha-actions/bump-tag, +github.com/gha-actions/test-runner, +github.com/gha-utilities/init-pull-request, +github.com/gha-utilities/jekyll-build, +github.com/gha-utilities/sass-build, +github.com/gha-utilities/workspace-commit, github.com/ghaagsma/javascript-utilities,num_dependents_deps.dev:0 github.com/ghabrielv/vita-wallet-payment-gateway,num_dependents_deps.dev:0 github.com/ghabrielv/vitawallet-pay-button,num_dependents_deps.dev:0 github.com/ghachemsaif/table-builder-sgh,num_dependents_deps.dev:0 +github.com/ghactions-utilities/slack-notification, +github.com/ghacts/go, +github.com/ghacts/manual-deploy-to-netlify, +github.com/ghacts/static-site, github.com/ghacupha/generator-jhipster-file-handling,num_dependents_deps.dev:0 github.com/ghacupha/loadable-state,num_dependents_deps.dev:0 github.com/ghadad/my-go-training,num_dependents_deps.dev:0 @@ -539086,6 +549476,7 @@ github.com/ghaini/treasure-finder,num_dependents_deps.dev:0 github.com/ghajba/wp-editor, github.com/ghaku/randpick.js,num_dependents_deps.dev:0 github.com/ghal/greekoffers,num_dependents_deps.dev:0 +github.com/ghalactic/github-release-from-tag, github.com/ghale/gradle-glu-plugin,num_dependents_deps.dev:0 github.com/ghale/gradle-jenkins-plugin,num_dependents_deps.dev:0 github.com/ghalex/bubbles,num_dependents_deps.dev:0 @@ -539149,10 +549540,13 @@ github.com/ghconn/goch,num_dependents_deps.dev:0 github.com/ghcri/ghcri,num_dependents_deps.dev:0 github.com/ghdic/marinelifeirony,num_dependents_deps.dev:0 github.com/ghdl/ghdl,criticality_score:0.584110 +github.com/ghdl/setup-ghdl-ci, github.com/ghdna/athena-express,num_dependents_deps.dev:0 github.com/ghdna/cognito-express,num_dependents_deps.dev:0 github.com/ghdpro/django-template-toolkit, github.com/ghdrjsgml1/shadowizard,num_dependents_deps.dev:0 +github.com/ghe-actions/dockerfile-validator, +github.com/ghe-actions/hello-act-max, github.com/ghecco/saveit,num_dependents_deps.dev:0 github.com/ghecko/wifinetctl, github.com/ghedamat/ember-cli-deploy-ssh-tunnel,num_dependents_deps.dev:0 @@ -539335,6 +549729,7 @@ github.com/ghmcadams/redis-utils,num_dependents_deps.dev:0 github.com/ghmeier/arppush,num_dependents_deps.dev:0 github.com/ghmeier/asana,num_dependents_deps.dev:0 github.com/ghmeier/assert-exists,num_dependents_deps.dev:0 +github.com/ghmeier/aws-ecs-run-task, github.com/ghmeier/dead-link,num_dependents_deps.dev:0 github.com/ghmendonca/socketio-hooks,num_dependents_deps.dev:0 github.com/ghmendonca/twilio-conversations-hooks,num_dependents_deps.dev:0 @@ -539406,6 +549801,7 @@ github.com/ghost-language/engine,num_dependents_deps.dev:0 github.com/ghost-language/ghost,num_dependents_deps.dev:0 github.com/ghost-of-turek/liQuorice, github.com/ghost-pacer/protocols,num_dependents_deps.dev:0 +github.com/ghost-road-studio/deployment-manager, github.com/ghost-sniper/techchat,num_dependents_deps.dev:0 github.com/ghost-worker/ghost-worker,num_dependents_deps.dev:0 github.com/ghost086/dnsamplify,num_dependents_deps.dev:0 @@ -539480,6 +549876,7 @@ github.com/ghostmonitor/atomic-scheduler, github.com/ghostnoop/learn_golang,num_dependents_deps.dev:0 github.com/ghostogre/address-scroll,num_dependents_deps.dev:0 github.com/ghostops/ICloud-Shared-Album, +github.com/ghostoy/dingtalk-action, github.com/ghostport/python-sdk, github.com/ghostratel/Thanos-fingersnap, github.com/ghostratel/awesome-events, @@ -539490,6 +549887,7 @@ github.com/ghostrydr/jquery.vamoose,num_dependents_deps.dev:0 github.com/ghosts/medium-feed,num_dependents_deps.dev:0 github.com/ghosts/pkgform,num_dependents_deps.dev:0 github.com/ghostsbr/api_desafio_go,num_dependents_deps.dev:0 +github.com/ghostsecurity/retry-action, github.com/ghostseven/homebridge-hs-plug, github.com/ghostsnstuff/cheeto,num_dependents_deps.dev:0 github.com/ghostsnstuff/crapi,num_dependents_deps.dev:0 @@ -539518,6 +549916,7 @@ github.com/ghostxt/fis-parser-sass2,num_dependents_deps.dev:0 github.com/ghostyusheng/finfo,num_dependents_deps.dev:0 github.com/ghostzali/app-ideas-bin2dec,num_dependents_deps.dev:0 github.com/ghostzali/romanconv,num_dependents_deps.dev:0 +github.com/ghostzero/kubectl, github.com/ghostzhang/ListText,num_dependents_deps.dev:0 github.com/ghosv/open,num_dependents_deps.dev:0 github.com/ghosx/leetcode-go,num_dependents_deps.dev:0 @@ -539541,6 +549940,7 @@ github.com/ghpabs/average-colour,num_dependents_deps.dev:0 github.com/ghpabs/colour-me-life,num_dependents_deps.dev:0 github.com/ghpabs/happy-number,num_dependents_deps.dev:0 github.com/ghpabs/outlier,num_dependents_deps.dev:0 +github.com/ghr-actions/settings-check, github.com/ghrehh/react-minimal-tooltip, github.com/ghrhome/whobird_npm_scope, github.com/ghrhome/whobird_npm_test, @@ -539625,6 +550025,8 @@ github.com/gi-rust/gtypes,num_dependents_deps.dev:4 github.com/gi05/leetcode-exercises,num_dependents_deps.dev:0 github.com/gi0baro/emmett-haml, github.com/gi0baro/renoir-haml, +github.com/gi0baro/setup-noir, +github.com/gi0baro/setup-poetry-bin, github.com/gi0baro/weppy, github.com/gi0baro/weppy-assets, github.com/gi0baro/weppy-bs3, @@ -539660,6 +550062,7 @@ github.com/giacomelli/GeneticSharp,criticality_score:0.394410 github.com/giacomette/react-native-super-date-picker,num_dependents_deps.dev:0 github.com/giacomette/react-native-super-range-slider, github.com/giacomo/rpi-ws281x, +github.com/giacomocavalieri/tagref_action, github.com/giacomocerquone/Movies-Lookup,num_dependents_deps.dev:0 github.com/giacomocerquone/StreamKey,num_dependents_deps.dev:0 github.com/giacomocerquone/graphcms-markdown-migrator,num_dependents_deps.dev:0 @@ -539715,6 +550118,7 @@ github.com/giampaolo/pysendfile,Google github.com/giamplai/grunt-svg-onecolor,num_dependents_deps.dev:0 github.com/gian2705/parse-hooks,num_dependents_deps.dev:0 github.com/gian2705/tiny,num_dependents_deps.dev:0 +github.com/gian2dchris/aws-ssm-port-forwarding-session-action, github.com/gian788/docooment,num_dependents_deps.dev:0 github.com/gian788/docsgen,num_dependents_deps.dev:0 github.com/gian788/i18next-node-mongodb-backend,num_dependents_deps.dev:0 @@ -540027,6 +550431,7 @@ github.com/giautm/captcha,num_dependents_deps.dev:0 github.com/giautm/expo-fsstorage,num_dependents_deps.dev:0 github.com/giautm/hanetai,num_dependents_deps.dev:0 github.com/giautm/pkg-go,num_dependents_deps.dev:0 +github.com/giautm/rancher-deploy-action, github.com/giautm/react-native-imei,num_dependents_deps.dev:0 github.com/giautm/react-relay-network-layer,num_dependents_deps.dev:0 github.com/giautm/viettelpay,num_dependents_deps.dev:0 @@ -540066,6 +550471,7 @@ github.com/gibizer/osc-placement-tree, github.com/gibkigonzo/instant-prefetch,num_dependents_deps.dev:0 github.com/gibmir/gotbot,num_dependents_deps.dev:0 github.com/gibon228/tiletool, +github.com/giboow/action-aws-cli, github.com/giboow/react-disqus-counter,num_dependents_deps.dev:0 github.com/gibrancordoba/dynamodb-schema,num_dependents_deps.dev:0 github.com/gibrancordoba/lambda-proxy-response,num_dependents_deps.dev:0 @@ -540282,6 +550688,7 @@ github.com/gigahunter/react-jsonschema-form-extensions,num_dependents_deps.dev:0 github.com/gigahunter/react-tags,num_dependents_deps.dev:0 github.com/gigaiis/cwp-22-1,num_dependents_deps.dev:0 github.com/gigakuma/tomon-sdk,num_dependents_deps.dev:0 +github.com/gigalixir/gigalixir-action, github.com/gigalixir/gigalixir-cli, github.com/gigamo/aurb,num_dependents_deps.dev:0 github.com/gigamo/mongo_mapper_acts_as_versioned,num_dependents_deps.dev:0 @@ -540327,6 +550734,7 @@ github.com/gigaquads/pybiz, github.com/gigaquads/ravel, github.com/gigaquads/store, github.com/gigaquads/tunafish, +github.com/gigara/rush-cache, github.com/gigas64/aistac-foundation, github.com/gigas64/discovery-connectors, github.com/gigas64/discovery-transition-ds, @@ -540355,6 +550763,7 @@ github.com/gigawhitlocks/myface, github.com/gigerlin/easyRPC,num_dependents_deps.dev:0 github.com/gigforks/termui,num_dependents_deps.dev:0 github.com/giggio/customcode,num_dependents_deps.dev:0 +github.com/giggio/docker-image-update-checker, github.com/giggio/mocha-retry,num_dependents_deps.dev:0 github.com/giggio/node-chromedriver,"criticality_score:0.589500,num_dependents_deps.dev:317" github.com/giggio/semvermaxcli,num_dependents_deps.dev:0 @@ -540433,6 +550842,7 @@ github.com/giift/gulp-flatraml,num_dependents_deps.dev:0 github.com/giift/npm-country-flags,num_dependents_deps.dev:0 github.com/giiita/refuel,num_dependents_deps.dev:909 github.com/giiita/scaladia,num_dependents_deps.dev:153 +github.com/giioohbernini/pr-preview, github.com/giioohbernini/react-native-web-to-native-template,num_dependents_deps.dev:0 github.com/giioohbernini/reactnative-webview-boilerplate,num_dependents_deps.dev:0 github.com/giiwa/giiwa,num_dependents_deps.dev:0 @@ -540457,6 +550867,7 @@ github.com/gijsroge/tilt.js,num_dependents_deps.dev:0 github.com/gijsroge/toggle.jquery,num_dependents_deps.dev:0 github.com/gijsroge/vue-responsive-menu,num_dependents_deps.dev:0 github.com/gijswobben/customs, +github.com/gijswobben/flake8-action, github.com/gijswobben/pymed, github.com/gijzelaerr/djonet, github.com/gijzelaerr/kliko, @@ -540623,6 +551034,7 @@ github.com/gilbertohasnofb/barfoo, github.com/gilbertohasnofb/listools, github.com/gilbertojrequena/bonsai-sns,num_dependents_deps.dev:0 github.com/gilbertond/gorevision,num_dependents_deps.dev:0 +github.com/gilbertotcc/structurizr-action, github.com/gilbertovento/shrike,num_dependents_deps.dev:0 github.com/gilbertozp/pynts, github.com/gilbertparreno/arithmetic,num_dependents_deps.dev:0 @@ -541058,6 +551470,7 @@ github.com/gilyas/pulumi-infrastructure-as-code-sdk,num_dependents_deps.dev:0 github.com/gilzoide/c_api_extract-py, github.com/gilzoide/inclua, github.com/gilzoide/labirinto-flask, +github.com/gilzonme/eazybump, github.com/gim-projekt-ai/nano-ai,num_dependents_deps.dev:0 github.com/gim-projekt-ai/nanoai-libs,num_dependents_deps.dev:0 github.com/gim96/testAuth,num_dependents_deps.dev:0 @@ -541088,6 +551501,7 @@ github.com/gimenete/open-text-editor,num_dependents_deps.dev:0 github.com/gimenete/pgprom,num_dependents_deps.dev:0 github.com/gimenete/phlow,num_dependents_deps.dev:0 github.com/gimenete/pync,num_dependents_deps.dev:10 +github.com/gimenete/rubocop-action, github.com/gimenete/seaquel,num_dependents_deps.dev:0 github.com/gimenete/sequelize-sync-diff,num_dependents_deps.dev:0 github.com/gimenete/tot,num_dependents_deps.dev:0 @@ -541102,6 +551516,7 @@ github.com/gimke/lemon-ui, github.com/gimke/open,num_dependents_deps.dev:0 github.com/gimke/riff,num_dependents_deps.dev:0 github.com/gimler/symfony-rest-edition,criticality_score:0.320130 +github.com/gimlet-io/gimlet-artifact-shipper-action, github.com/gimlet-io/gimlet-cli,num_dependents_deps.dev:0 github.com/gimlet-io/gimlet-dashboard,num_dependents_deps.dev:0 github.com/gimlet-io/gimlet-stack,num_dependents_deps.dev:0 @@ -541115,6 +551530,7 @@ github.com/gimli-rs/gimli,"criticality_score:0.523000,num_dependents_deps.dev:88 github.com/gimli-rs/leb128,num_dependents_deps.dev:289 github.com/gimli-rs/locate-dwarf,num_dependents_deps.dev:0 github.com/gimli-rs/object,num_dependents_deps.dev:8840 +github.com/gimli01/repository-set-labels-sync, github.com/gimlids/flipbook.js,num_dependents_deps.dev:0 github.com/gimlids/json-set-string,num_dependents_deps.dev:0 github.com/gimlids/jsonls,num_dependents_deps.dev:0 @@ -541129,6 +551545,8 @@ github.com/gimm/gulp-live-server,num_dependents_deps.dev:8 github.com/gimmi-tiozzo/math-operation,num_dependents_deps.dev:0 github.com/gimmi/java-any,num_dependents_deps.dev:0 github.com/gimmyxd/check-ahead,num_dependents_deps.dev:0 +github.com/gimmyxd/check-ahead-action, +github.com/gimmyxd/rtc-action, github.com/gimoteco/gatsby-plugin-nginx-redirect,num_dependents_deps.dev:0 github.com/gimox/json-routing,num_dependents_deps.dev:0 github.com/gimox/mongoose-express-autoinit,num_dependents_deps.dev:0 @@ -541191,6 +551609,7 @@ github.com/ginarcooper2002/appalachia, github.com/ginbarca/ng-chart-type,num_dependents_deps.dev:0 github.com/ginboy/fast-cache,num_dependents_deps.dev:0 github.com/gincheong/react-chatbot-ui, +github.com/gincher/azure-keyvault, github.com/gincoinc/gew-kmp,num_dependents_deps.dev:0 github.com/gincoinc/go,num_dependents_deps.dev:0 github.com/ginden/gulp-istanbul-espree,num_dependents_deps.dev:0 @@ -541201,6 +551620,8 @@ github.com/gindowcloud/element-go, github.com/gindowin/element-go,num_dependents_deps.dev:0 github.com/gineff/bb-db,num_dependents_deps.dev:0 github.com/gineign/nativescript-wechat,num_dependents_deps.dev:0 +github.com/giner/check-actions, +github.com/giner/check-commits, github.com/ginere/ginere-base,num_dependents_deps.dev:0 github.com/ginere/ginere-base-web,num_dependents_deps.dev:0 github.com/ginere/ginere-jdbc-mysql,num_dependents_deps.dev:0 @@ -541313,6 +551734,7 @@ github.com/ginocoates/react-placeholder-img,num_dependents_deps.dev:0 github.com/ginoh/hoge-controller-kubebuilder,num_dependents_deps.dev:0 github.com/ginoh/play_with_go,num_dependents_deps.dev:0 github.com/ginoh/temp-controller,num_dependents_deps.dev:0 +github.com/ginokent/github-actions-should-gitignore, github.com/ginoledesma/sunpower-pvs-exporter, github.com/ginopalazzo/zoidberg, github.com/ginoquispe21/concurrent-programming,num_dependents_deps.dev:0 @@ -541453,6 +551875,7 @@ github.com/gionkunz/grunt-doxication,num_dependents_deps.dev:0 github.com/gionkunz/interceptor-js,num_dependents_deps.dev:0 github.com/gionna/goex,num_dependents_deps.dev:0 github.com/gior/proficiency,num_dependents_deps.dev:0 +github.com/gioragutt/scan-unverified-actions, github.com/gioren/testx-pop3-keywords,num_dependents_deps.dev:0 github.com/gioren/testx-postgres-keywords,num_dependents_deps.dev:0 github.com/giorgenes/bigbang,num_dependents_deps.dev:0 @@ -541488,6 +551911,7 @@ github.com/giorgosart/react-easy-edit,num_dependents_deps.dev:0 github.com/giorgosart/strong-typed,num_dependents_deps.dev:0 github.com/giorgosavgeris/passport-zoom-oauth2,num_dependents_deps.dev:0 github.com/giorgosera/simple-search,num_dependents_deps.dev:0 +github.com/giorgosneokleous93/docker-multicommand-android, github.com/gios-asu/react-cornea,num_dependents_deps.dev:0 github.com/gios/generator-babel,num_dependents_deps.dev:0 github.com/gios/gzipper,num_dependents_deps.dev:0 @@ -541564,6 +551988,7 @@ github.com/giovanniorigins/vue-resource-mock-api, github.com/giovannipcarvalho/git-timespent, github.com/giovannipizzi/seekpath, github.com/giovanniramos/angular-jstore,num_dependents_deps.dev:0 +github.com/giovannirossini/aws-eks, github.com/giovannirossini/learn_go,num_dependents_deps.dev:0 github.com/giovannirossini/web_go,num_dependents_deps.dev:0 github.com/giovanniscanferla/mmCIF-converter,num_dependents_deps.dev:0 @@ -541624,6 +552049,7 @@ github.com/gipsy-king/is-odd-cyclic,num_dependents_deps.dev:1 github.com/gipyeong-lee/osome-kit, github.com/gipyeong-lee/react-ion-slider, github.com/girOly/lotide,num_dependents_deps.dev:0 +github.com/giraffate/clippy-action, github.com/giraffate/ghrs,num_dependents_deps.dev:0 github.com/giraffate/keiro,num_dependents_deps.dev:0 github.com/giraffe-fsharp/Giraffe,criticality_score:0.506940 @@ -541648,6 +552074,7 @@ github.com/giraud/babel-plugin-transform-react-compose-displayname, github.com/giraysam/boomerang-cache,num_dependents_deps.dev:0 github.com/giraysam/viiny-dragger,num_dependents_deps.dev:0 github.com/girbons/comics-downloader,num_dependents_deps.dev:0 +github.com/girder/create-pip-index-action, github.com/girder/django-auth-style, github.com/girder/django-composed-configuration, github.com/girder/django-girder-utils, @@ -541888,6 +552315,7 @@ github.com/giswqs/scholarpy, github.com/giswqs/wetland, github.com/giswqs/whitebox, github.com/giswqs/whiteboxgui, +github.com/git-actions/set-user, github.com/git-afsantos/bonsai, github.com/git-afsantos/haros, github.com/git-afsantos/haros-plugin-model-ged, @@ -541928,7 +552356,10 @@ github.com/git-disl/LRBench, github.com/git-duet/git-duet,"criticality_score:0.384140,num_dependents_deps.dev:0" github.com/git-fetch-git-roll-over/GradDog, github.com/git-for-windows/build-extra,criticality_score:0.558910 +github.com/git-for-windows/get-azure-pipelines-artifact, github.com/git-for-windows/git,num_dependents_deps.dev:0 +github.com/git-for-windows/rss-to-issues, +github.com/git-for-windows/setup-git-for-windows-sdk, github.com/git-friendly/git-friendly,criticality_score:0.372690 github.com/git-ftp/git-ftp,criticality_score:0.435740 github.com/git-garo7/go.hello,num_dependents_deps.dev:0 @@ -541991,6 +552422,13 @@ github.com/git-series/git-series,num_dependents_deps.dev:0 github.com/git-solt/arraytraverser,num_dependents_deps.dev:0 github.com/git-temporal/git-temporal,num_dependents_deps.dev:0 github.com/git-tfs/git-tfs,criticality_score:0.522160 +github.com/git-things-done/ferret, +github.com/git-things-done/forecast, +github.com/git-things-done/fortune, +github.com/git-things-done/librarian, +github.com/git-things-done/now-now, +github.com/git-things-done/porter, +github.com/git-things-done/usher, github.com/git-time-metric/go-git,num_dependents_deps.dev:0 github.com/git-tips/tips,criticality_score:0.602660 github.com/git-token/api-middleware,num_dependents_deps.dev:0 @@ -542013,7 +552451,9 @@ github.com/git314/glitch_face, github.com/git314/termboxplot, github.com/git4d/angular-ui-tree-i4d,num_dependents_deps.dev:0 github.com/git4robot/pypi_find_primes, +github.com/git9527/clean-up-action, github.com/git9527/favicons-webpack-plugin-re,num_dependents_deps.dev:0 +github.com/git9527/setup-coscli, github.com/gitChaika/dtsgenerator,num_dependents_deps.dev:0 github.com/gitHber/export-all.macro,num_dependents_deps.dev:0 github.com/gitHber/postcss-css-variables-theme,num_dependents_deps.dev:0 @@ -542038,6 +552478,8 @@ github.com/gitSirzh/react-smart-address,num_dependents_deps.dev:0 github.com/gitUmaru/Open-Biopipeline, github.com/gitWhatever/text-effect,num_dependents_deps.dev:0 github.com/gitWhatever/vue-digitroll,num_dependents_deps.dev:0 +github.com/gita-vahdatinia/batch-dependabot, +github.com/gita-vahdatinia/purge_branch, github.com/gita/bhagavad-gita-api, github.com/gitaarik/adyengo, github.com/gitaarik/django-admin-relation-links, @@ -542053,6 +552495,9 @@ github.com/gitachyut/genrunner,num_dependents_deps.dev:0 github.com/gitaction/toolkit,num_dependents_deps.dev:0 github.com/gitaepark97/jobscrapper-go,num_dependents_deps.dev:0 github.com/gitahead/gitahead,criticality_score:0.380820 +github.com/gitahernandez/docker-container-action-example, +github.com/gitahernandez/my-docker-action-fhernandez, +github.com/gitahernandezorg/my-docker-action-fhernandez, github.com/gitaiQAQ/rollup-plugin-output,num_dependents_deps.dev:0 github.com/gitalek/go_prof,num_dependents_deps.dev:0 github.com/gitalk/gitalk,criticality_score:0.453490 @@ -542088,6 +552533,7 @@ github.com/gitblit/iciql,num_dependents_deps.dev:1 github.com/gitblit/ohmdb,num_dependents_deps.dev:44 github.com/gitblit/pippo-pebble-emoji,num_dependents_deps.dev:0 github.com/gitblit/sysinfo,num_dependents_deps.dev:0 +github.com/gitboard-io/gitboard-action, github.com/gitbook-ng/fresh-require,num_dependents_deps.dev:0 github.com/gitbook-ng/gitbook,num_dependents_deps.dev:0 github.com/gitbook-ng/node.flow,num_dependents_deps.dev:2 @@ -542170,6 +552616,7 @@ github.com/gitduk/mplus, github.com/gitduk/tfuc, github.com/gitduk/utils, github.com/gitdust/webpack-statics-version-plugin,num_dependents_deps.dev:0 +github.com/gitector/gitector-actions, github.com/gitenberg-dev/gitberg, github.com/gitenberg-dev/metadata, github.com/gitenter/gitar,num_dependents_deps.dev:0 @@ -542187,9 +552634,12 @@ github.com/giterlab/urllib,num_dependents_deps.dev:8 github.com/giterlab/uuid,num_dependents_deps.dev:0 github.com/giteshnxtlvl/cook,num_dependents_deps.dev:0 github.com/giteshwari12345/golang--,num_dependents_deps.dev:0 +github.com/gitevents/action, github.com/gitevents/core,num_dependents_deps.dev:0 github.com/gitevents/gitevents-jobs,num_dependents_deps.dev:0 github.com/gitevents/gitevents-meetup,num_dependents_deps.dev:0 +github.com/gitevents/ics, +github.com/gitevents/inclusive-org, github.com/gitex-flow/gitex-flow-node, github.com/gitextensions/gitextensions,criticality_score:0.713240 github.com/gitfaf/abbreviate-arguments,num_dependents_deps.dev:0 @@ -542295,6 +552745,14 @@ github.com/githoniel/webpack-fork-loader,num_dependents_deps.dev:0 github.com/githr1314/vue-simple-tab-switch,num_dependents_deps.dev:0 github.com/githrdw/vsc-home,num_dependents_deps.dev:12 github.com/github-123456/gostudy,num_dependents_deps.dev:0 +github.com/github-action-design/action-open-terminal, +github.com/github-action-design/action-open-tunnel, +github.com/github-actions-publish/publish-action, +github.com/github-actions-tools/gh-list-releases, +github.com/github-actions-tools/gh-reviews-count, +github.com/github-actions-up-and-running/pr-comment, +github.com/github-actions-x/commit, +github.com/github-actions-x/hugo, github.com/github-bot-framework/core,num_dependents_deps.dev:0 github.com/github-brijframework/github-brijframework-api,num_dependents_deps.dev:5 github.com/github-brijframework/github-brijframework-asm,num_dependents_deps.dev:1 @@ -542316,6 +552774,7 @@ github.com/github-release/github-release,criticality_score:0.467570 github.com/github-rs/github-rs,num_dependents_deps.dev:0 github.com/github-slack/snappydoo,num_dependents_deps.dev:0 github.com/github-suraj/calendar-util, +github.com/github-suraj/git-action-alerts, github.com/github-tooling/forkwork, github.com/github-tooling/ghtopdep, github.com/github-tools/github,"criticality_score:0.421860,num_dependents_deps.dev:76" @@ -542328,10 +552787,12 @@ github.com/github-yeah/uitypes-cli, github.com/github-zhang/build-file-or-folder,num_dependents_deps.dev:0 github.com/github/CodeSearchNet,criticality_score:0.339600 github.com/github/VisualStudio,criticality_score:0.522010 +github.com/github/accessibility-alt-text-bot, github.com/github/accessibilityjs,num_dependents_deps.dev:6 github.com/github/archive-program,criticality_score:0.416500 github.com/github/auto-check-element,num_dependents_deps.dev:0 github.com/github/auto-complete-element,num_dependents_deps.dev:0 +github.com/github/automatic-contrib-prs, github.com/github/babel-plugin-ensure-name-for-custom-elements,num_dependents_deps.dev:0 github.com/github/babel-plugin-transform-custom-element-classes,num_dependents_deps.dev:34 github.com/github/babel-plugin-transform-invariant-location,num_dependents_deps.dev:0 @@ -542339,6 +552800,7 @@ github.com/github/babel-preset-github,num_dependents_deps.dev:0 github.com/github/backup-utils,criticality_score:0.559090 github.com/github/balanced-employee-ip-agreement,criticality_score:0.364860 github.com/github/braintree-encryption, +github.com/github/branch-deploy, github.com/github/catalyst,"criticality_score:0.410850,num_dependents_deps.dev:0" github.com/github/certstore,num_dependents_deps.dev:1 github.com/github/check-all,num_dependents_deps.dev:0 @@ -542350,7 +552812,9 @@ github.com/github/codemirror-contrib,num_dependents_deps.dev:0 github.com/github/codeql,criticality_score:0.649340 github.com/github/codeql-cli-binaries,Google github.com/github/codeql-go,"Google,num_dependents_deps.dev:0" +github.com/github/combine-prs, github.com/github/combobox-nav,num_dependents_deps.dev:2 +github.com/github/contributors, github.com/github/covid19-dashboard,criticality_score:0.476370 github.com/github/custom-element-boilerplate, github.com/github/depstubber,num_dependents_deps.dev:0 @@ -542377,6 +552841,7 @@ github.com/github/generator-hubot, github.com/github/gh-cli,num_dependents_deps.dev:0 github.com/github/gh-osc,num_dependents_deps.dev:0 github.com/github/gh-ost,"criticality_score:0.521920,num_dependents_deps.dev:14" +github.com/github/ghas-jira-integration, github.com/github/git-lfs,num_dependents_deps.dev:46 github.com/github/git-media,num_dependents_deps.dev:0 github.com/github/git-sizer,num_dependents_deps.dev:0 @@ -542393,6 +552858,8 @@ github.com/github/hubot-scripts,num_dependents_deps.dev:0 github.com/github/ietf-cms,num_dependents_deps.dev:0 github.com/github/image-crop-element,num_dependents_deps.dev:0 github.com/github/include-fragment-element,num_dependents_deps.dev:0 +github.com/github/issue-labeler, +github.com/github/issue-metrics, github.com/github/janky,"criticality_score:0.333650,num_dependents_deps.dev:0" github.com/github/jtml, github.com/github/keiko, @@ -542417,6 +552884,7 @@ github.com/github/personal-website,criticality_score:0.374050 github.com/github/piianalyzer, github.com/github/platform-samples,"criticality_score:0.380790,num_dependents_deps.dev:0" github.com/github/prettier-config,num_dependents_deps.dev:0 +github.com/github/privileged-requester, github.com/github/query-selector,num_dependents_deps.dev:0 github.com/github/quote-selection,num_dependents_deps.dev:0 github.com/github/remote-form,num_dependents_deps.dev:0 @@ -542436,6 +552904,7 @@ github.com/github/skeema,num_dependents_deps.dev:0 github.com/github/smimesign,num_dependents_deps.dev:0 github.com/github/stable-socket,num_dependents_deps.dev:0 github.com/github/stack-graphs,num_dependents_deps.dev:0 +github.com/github/stale-repos, github.com/github/super-linter,"criticality_score:0.675140,num_dependents_deps.dev:0" github.com/github/tab-container-element, github.com/github/task-lists-element,num_dependents_deps.dev:0 @@ -542452,6 +552921,7 @@ github.com/github/view_component,criticality_score:0.576360 github.com/github/vitess-gh,num_dependents_deps.dev:0 github.com/github/vulcanizer,criticality_score:0.332740 github.com/github/webauthn-json,num_dependents_deps.dev:0 +github.com/github/webpack-bundlesize-compare-action, github.com/github/webpack-config-github,num_dependents_deps.dev:0 github.com/github0013/rpi-dht,num_dependents_deps.dev:0 github.com/github1/ajax-service,num_dependents_deps.dev:0 @@ -542514,7 +552984,10 @@ github.com/githubmann/aronruan-utils,num_dependents_deps.dev:0 github.com/githubmann/callapp-lib,num_dependents_deps.dev:0 github.com/githubmin/node-red-contrib-modbustcp,num_dependents_deps.dev:0 github.com/githubnemo/CompileDaemon,"criticality_score:0.401040,num_dependents_deps.dev:12" +github.com/githubocto/flat, github.com/githubocto/flat-ui,num_dependents_deps.dev:0 +github.com/githubocto/github-archive-action, +github.com/githubocto/repo-visualizer, github.com/githubocto/snowpack-vscode-extension-template, github.com/githubocto/tailwind-vscode, github.com/githuboftigran/rn-range-slider,num_dependents_deps.dev:0 @@ -542525,6 +552998,8 @@ github.com/githubprabin143/react-open-dialog,num_dependents_deps.dev:0 github.com/githubpublicrepo/hello-world,num_dependents_deps.dev:0 github.com/githubrepodescription/meshrpc,num_dependents_deps.dev:0 github.com/githubsmilo/yfsapi,num_dependents_deps.dev:0 +github.com/githubtraining/looking-glass-action, +github.com/githubtraining/looking-glass-payload-tester, github.com/githubuser/python-cashmere, github.com/githubuser/python-mcflow, github.com/githubuser0xFFFF/Qt-Advanced-Docking-System, @@ -542543,6 +553018,7 @@ github.com/githwxi/ATS-Postiats,criticality_score:0.488340 github.com/gitify-dependencies-test/errors,num_dependents_deps.dev:0 github.com/gitify-dependencies-test/schemas,num_dependents_deps.dev:0 github.com/gitify-dependencies-test/validations,num_dependents_deps.dev:0 +github.com/gitignore-in/gh-action, github.com/gitim/empty-module-webpack-plugin,num_dependents_deps.dev:0 github.com/gitim/react-app-rewire-bundle-analyzer,num_dependents_deps.dev:0 github.com/gitim/react-app-rewire-svgr-loader,num_dependents_deps.dev:0 @@ -542561,6 +553037,7 @@ github.com/gitkingchen/kingBuilder,num_dependents_deps.dev:0 github.com/gitlab-api/gitlab-api,num_dependents_deps.dev:0 github.com/gitlab/a10r, github.com/gitlab4j/gitlab4j-api,criticality_score:0.481800 +github.com/gitlabels/gitlabels, github.com/gitlabhq/gitlab-recipes,criticality_score:0.417650 github.com/gitlabhq/gitlab-runner,num_dependents_deps.dev:0 github.com/gitlabhq/gitlab-shell,"criticality_score:0.530140,num_dependents_deps.dev:0" @@ -542577,6 +553054,7 @@ github.com/gitlawr/hey,num_dependents_deps.dev:0 github.com/gitlawr/mergeyaml,num_dependents_deps.dev:0 github.com/gitlawr/rancher,num_dependents_deps.dev:0 github.com/gitldy1013/vuepress-theme-ldy,num_dependents_deps.dev:0 +github.com/gitleaks/gitleaks-action, github.com/gitless-vcs/gitless,criticality_score:0.366780 github.com/gitliyu/drag-map,num_dependents_deps.dev:0 github.com/gitliyu/electron-update-helper,num_dependents_deps.dev:0 @@ -542622,6 +553100,7 @@ github.com/gitonthescene/csv-reconcile, github.com/gitonthescene/csv-reconcile-geo, github.com/gitonthescene/csv-reconcile-levenshtein, github.com/gitopia/git-remote-gitopia,num_dependents_deps.dev:0 +github.com/gitopia/gitopia-mirror-action, github.com/gitops-tech/example-application,num_dependents_deps.dev:0 github.com/gitops-tools/pkg,num_dependents_deps.dev:0 github.com/gitops-tools/tekton-ci,num_dependents_deps.dev:0 @@ -542780,6 +553259,7 @@ github.com/gittygitgit/64BitInt,num_dependents_deps.dev:0 github.com/gittygupta/dropy, github.com/gittz/ango,num_dependents_deps.dev:0 github.com/gitu/eodhdapi,num_dependents_deps.dev:0 +github.com/gitu/gha-download-images, github.com/gitu/openfigi,num_dependents_deps.dev:0 github.com/gitulamy/konsole,num_dependents_deps.dev:0 github.com/gitupxm163/go-learning,num_dependents_deps.dev:0 @@ -542805,6 +553285,7 @@ github.com/gitwatch/gitwatch,criticality_score:0.432070 github.com/gitwd/svg-transform,num_dependents_deps.dev:0 github.com/gitwujiaolong/browser-solc,num_dependents_deps.dev:0 github.com/gitx-io/GitFx,num_dependents_deps.dev:0 +github.com/gitx-io/ssh-keygen-action, github.com/gitxiaofan/go_learn,num_dependents_deps.dev:0 github.com/gitxone/gitxone-core,num_dependents_deps.dev:0 github.com/gitxpj/rust-atpp,num_dependents_deps.dev:0 @@ -542900,6 +553381,8 @@ github.com/giuseppeg/suitcss-components-dropdown,num_dependents_deps.dev:0 github.com/giuseppeg/suitcss-components-form,num_dependents_deps.dev:0 github.com/giuseppeg/suitcss-components-icon,num_dependents_deps.dev:0 github.com/giuseppeg/wai-aria-practices-tests,num_dependents_deps.dev:0 +github.com/giuseppegargani/first_custom_action, +github.com/giuseppegargani/second_custom_action, github.com/giuseppejoet/go-lang,num_dependents_deps.dev:0 github.com/giuseppepaul/urlCacheBuster,num_dependents_deps.dev:0 github.com/giusepperj/generator-gpress,num_dependents_deps.dev:0 @@ -542928,6 +553411,7 @@ github.com/givemeallyourcats/xhaust,num_dependents_deps.dev:0 github.com/givemefish/prettier_config, github.com/givemesunshine/goconfig,num_dependents_deps.dev:0 github.com/givemeurhats/japper,num_dependents_deps.dev:0 +github.com/givemomentum/render-deploy, github.com/givery-technology/textlint-rule-preset-codeprep,num_dependents_deps.dev:0 github.com/givery-technology/textlint-rule-preset-track,num_dependents_deps.dev:0 github.com/givery-technology/track-db-test-library,num_dependents_deps.dev:0 @@ -543080,6 +553564,7 @@ github.com/gjingram/ccmodel, github.com/gjingram/cfactory, github.com/gjingram/clang_tools, github.com/gjk-cat/cat-prep,num_dependents_deps.dev:0 +github.com/gjkim42/go-verify, github.com/gjlacerda/btc-converter,num_dependents_deps.dev:0 github.com/gjlacerda/node-organizer,num_dependents_deps.dev:0 github.com/gjlacerda/proximo-feriado,num_dependents_deps.dev:0 @@ -543212,6 +553697,7 @@ github.com/gjwwill/canvasbd,num_dependents_deps.dev:0 github.com/gjwwill/echart,num_dependents_deps.dev:0 github.com/gjwwill/es6-video,num_dependents_deps.dev:0 github.com/gjy3035/Awesome-Crowd-Counting,criticality_score:0.343910 +github.com/gjyoung1974/aws-eks-action, github.com/gk-learning/custom-angular2-csv,num_dependents_deps.dev:0 github.com/gk-shi/v3-waterfall,num_dependents_deps.dev:0 github.com/gk2savage/go-scylla-poc,num_dependents_deps.dev:0 @@ -543260,6 +553746,7 @@ github.com/gkampitakis/email-client,num_dependents_deps.dev:0 github.com/gkampitakis/fastify-custom-healthcheck,num_dependents_deps.dev:0 github.com/gkampitakis/fastify-method-not-allowed,num_dependents_deps.dev:0 github.com/gkampitakis/fastify-secrets-vault,num_dependents_deps.dev:0 +github.com/gkampitakis/github-action-todo-commenter, github.com/gkampitakis/kubernetes-rbac-exploration,num_dependents_deps.dev:0 github.com/gkampitakis/promiseExtension,num_dependents_deps.dev:0 github.com/gkampitakis/server-benchmarks,num_dependents_deps.dev:0 @@ -543275,6 +553762,7 @@ github.com/gkarthiks/ip-geo-locator,num_dependents_deps.dev:0 github.com/gkarthiks/isEmptyObj,num_dependents_deps.dev:0 github.com/gkarthiks/k8s-discovery,num_dependents_deps.dev:0 github.com/gkarthiks/medium-12-fact-app,num_dependents_deps.dev:0 +github.com/gkarthiks/nil-issue-reporter, github.com/gkarthiks/s3-presigned-url,num_dependents_deps.dev:0 github.com/gkatai/gk-viewer,num_dependents_deps.dev:0 github.com/gkatanacio/sample-lambda-app,num_dependents_deps.dev:0 @@ -543330,6 +553818,7 @@ github.com/gkhan205/cwg-react-starter, github.com/gkhan205/formify-react,num_dependents_deps.dev:0 github.com/gkhan205/slugifyme,num_dependents_deps.dev:0 github.com/gkhayes/mlrose, +github.com/gki/branch-lifetime, github.com/gki/hubot-pivotal,num_dependents_deps.dev:0 github.com/gkiar/cebd1160-week10-project, github.com/gkiar/onevoxel, @@ -543661,6 +554150,7 @@ github.com/glafarge/flickity-lazyload,num_dependents_deps.dev:0 github.com/glafche/electron-find-in-page, github.com/glafer/npm-workshop,num_dependents_deps.dev:0 github.com/glahajeekn/Color-Buttons, +github.com/glahajeekn/send-meagess-to-telegram, github.com/glaidler/ts-utils,num_dependents_deps.dev:0 github.com/glaiel/trace_time, github.com/glalonde/scrub_log,num_dependents_deps.dev:0 @@ -543736,10 +554226,12 @@ github.com/glasnt/ih, github.com/glasnt/octohat-rb,num_dependents_deps.dev:0 github.com/glassbearInc/rs-bindata,num_dependents_deps.dev:0 github.com/glassechidna/actions2aws,num_dependents_deps.dev:0 +github.com/glassechidna/artifact-cleaner, github.com/glassechidna/awsctx,num_dependents_deps.dev:0 github.com/glassechidna/efsu,num_dependents_deps.dev:0 github.com/glassechidna/hc,num_dependents_deps.dev:0 github.com/glassechidna/lambdaeip,num_dependents_deps.dev:0 +github.com/glassechidna/resharper-action, github.com/glassechidna/stackit,num_dependents_deps.dev:0 github.com/glassechidna/trackiam,num_dependents_deps.dev:0 github.com/glassechidna/whodunnit,num_dependents_deps.dev:0 @@ -543762,7 +554254,9 @@ github.com/glasslion/sentry-fogbugz, github.com/glasslion/y2b, github.com/glasslytics/glasslytics-js,num_dependents_deps.dev:0 github.com/glasslytics/glasslytics-node,num_dependents_deps.dev:0 +github.com/glassmonkey/actions-php-audit, github.com/glassmonkey/flutter_with_golang,num_dependents_deps.dev:0 +github.com/glassmonkey/image-regression-notification, github.com/glassmorphic/css,num_dependents_deps.dev:0 github.com/glassmorphic/js,num_dependents_deps.dev:0 github.com/glassmorphic/react,num_dependents_deps.dev:0 @@ -543841,6 +554335,7 @@ github.com/glaunay/taxonomyWS,num_dependents_deps.dev:0 github.com/glaures/modelprojector,num_dependents_deps.dev:0 github.com/glautervl/react-ui-library-example,num_dependents_deps.dev:0 github.com/glauth/glauth,"criticality_score:0.329110,num_dependents_deps.dev:2" +github.com/glav/chuck-norris-quote, github.com/glavmotor/error-wrapper, github.com/glavweb/jake,num_dependents_deps.dev:0 github.com/glawson/electron-deeplink,num_dependents_deps.dev:0 @@ -543859,6 +554354,7 @@ github.com/glayzzle/php-writer,num_dependents_deps.dev:0 github.com/glayzzle/types,num_dependents_deps.dev:0 github.com/glazec/create-smart-contract,num_dependents_deps.dev:0 github.com/glazec/hexo-web-push-notification,num_dependents_deps.dev:0 +github.com/glazec/web-push-notification, github.com/glazedSolutions/apey-eye,num_dependents_deps.dev:0 github.com/glazedio/babel-preset-glazed,num_dependents_deps.dev:0 github.com/glazedio/eslint-config-glazed,num_dependents_deps.dev:0 @@ -543879,6 +554375,8 @@ github.com/gldraphael/chordsheet-cli,num_dependents_deps.dev:0 github.com/gldsly/winproxy,num_dependents_deps.dev:0 github.com/gleam-lang/gleam,criticality_score:0.620350 github.com/gleam-lang/hexpm-rust,num_dependents_deps.dev:0 +github.com/gleam-lang/setup-erlang, +github.com/gleam-lang/setup-gleam, github.com/glean-dev/merlin-cli,num_dependents_deps.dev:0 github.com/glean-wheat/wheat-ui,num_dependents_deps.dev:0 github.com/gleandroj/AngularMaterialComponents,num_dependents_deps.dev:0 @@ -543999,6 +554497,7 @@ github.com/gleich/logoru,num_dependents_deps.dev:0 github.com/gleich/lumber,num_dependents_deps.dev:0 github.com/gleich/neptune,num_dependents_deps.dev:0 github.com/gleich/nuke,num_dependents_deps.dev:0 +github.com/gleich/profile_stack, github.com/gleich/release,num_dependents_deps.dev:0 github.com/gleich/solar,num_dependents_deps.dev:0 github.com/gleich/ssh_me,num_dependents_deps.dev:0 @@ -544098,6 +554597,8 @@ github.com/glenkitchen/menu-lit-element,num_dependents_deps.dev:0 github.com/glenmurphy/route,num_dependents_deps.dev:0 github.com/glenn-wang/xs,num_dependents_deps.dev:0 github.com/glenna/react-native-template-swifty,num_dependents_deps.dev:0 +github.com/glennawatson/ChangeLog, +github.com/glennawatson/signclient, github.com/glennblock/azure-node-tuneup,num_dependents_deps.dev:0 github.com/glennblock/azure-scripty,num_dependents_deps.dev:0 github.com/glenncalleja/human_friendly_opening_hours, @@ -544282,6 +554783,7 @@ github.com/gliderlabs/registrator,criticality_score:0.395170 github.com/gliderlabs/sigil,num_dependents_deps.dev:3 github.com/gliderlabs/ssh,"criticality_score:0.308700,num_dependents_deps.dev:20" github.com/glidernet/python-ogn-client, +github.com/gliech/create-github-secret-action, github.com/gliech/semantic-release-config-base,num_dependents_deps.dev:0 github.com/gliech/semantic-release-config-github-ansible-role,num_dependents_deps.dev:0 github.com/gliech/semantic-release-config-github-generic, @@ -544439,6 +554941,7 @@ github.com/glitchassassin/flexible-data-parser, github.com/glitchassassin/lackey, github.com/glitchassassin/sola-scriptura, github.com/glitchboyl/deep-into-js,num_dependents_deps.dev:0 +github.com/glitchcrab/action-hass-check-config, github.com/glitchcrab/sonar,num_dependents_deps.dev:0 github.com/glitchdigital/structured-data-testing-tool,num_dependents_deps.dev:0 github.com/glitchdotcom/dotenv,num_dependents_deps.dev:0 @@ -544712,6 +555215,7 @@ github.com/globusonline/transfer-api-client-python, github.com/gloc-mike/pancakes, github.com/glocalzone/mongo-query-converter,num_dependents_deps.dev:0 github.com/glocash/glocash-golang,num_dependents_deps.dev:0 +github.com/glochtefeld/godot-html-export, github.com/gloe2019/lotide,num_dependents_deps.dev:0 github.com/gloflow/gloflow,num_dependents_deps.dev:0 github.com/gloflow/gloflow-ethmonitor,num_dependents_deps.dev:0 @@ -544763,12 +555267,14 @@ github.com/glookast/commons-timecode,num_dependents_deps.dev:0 github.com/glookast/commons-timecode-schemas,num_dependents_deps.dev:0 github.com/glookast/commons-xml,num_dependents_deps.dev:1 github.com/glooko/mongoid-embedded-errors,num_dependents_deps.dev:0 +github.com/gloomberry-ci/dependabot-automerge, github.com/gloomyTofu/protoman,num_dependents_deps.dev:0 github.com/gloomyzerg/textractor,num_dependents_deps.dev:0 github.com/gloorx/redprint,num_dependents_deps.dev:0 github.com/gloot/grunt-sencha-zordercompress, github.com/glop-rs/glop,num_dependents_deps.dev:0 github.com/glopezep/asmund,num_dependents_deps.dev:0 +github.com/glopezep/helm, github.com/glopezep/layer-orm,num_dependents_deps.dev:0 github.com/glopezep/opery,num_dependents_deps.dev:0 github.com/glopezep/opery-sequelize-base-service,num_dependents_deps.dev:0 @@ -544902,6 +555408,7 @@ github.com/glromeo/mocha-toolkit,num_dependents_deps.dev:0 github.com/glromeo/moderno,num_dependents_deps.dev:0 github.com/glromeo/node-sql-wasm,num_dependents_deps.dev:0 github.com/glromeo/snowpack-plugin-css-result, +github.com/gls-denmark/path-tag-bumper, github.com/glsdown/dash-loading-spinners, github.com/glsjay/aws-es-kibana,num_dependents_deps.dev:0 github.com/glslify/glsl-face-normal,num_dependents_deps.dev:0 @@ -544960,6 +555467,7 @@ github.com/glucksfall/pleione, github.com/glucksfall/sterope, github.com/gluckyiyi/gobus,num_dependents_deps.dev:0 github.com/glucometers-tech/freestyle-hid, +github.com/glucoseguards/workflow-alternate-backup-action, github.com/glud123/tree-transfer,num_dependents_deps.dev:0 github.com/glue-labs/username-generator,num_dependents_deps.dev:0 github.com/glue-tools/nothing,num_dependents_deps.dev:0 @@ -544983,6 +555491,7 @@ github.com/glued/baku,num_dependents_deps.dev:0 github.com/glued/web-meta,num_dependents_deps.dev:0 github.com/glued/yokai,num_dependents_deps.dev:0 github.com/gluefxu/ag-psd,num_dependents_deps.dev:0 +github.com/gluehbirnenkopf/gha-ecr, github.com/gluelabs/ngx-pushape,num_dependents_deps.dev:0 github.com/gluelabs/pushape-cordova-push, github.com/gluelabs/pushape-js,num_dependents_deps.dev:0 @@ -545026,6 +555535,7 @@ github.com/gluonhq/aws-sdk-java-mobile,num_dependents_deps.dev:4 github.com/gluonhq/client-maven-archetypes,num_dependents_deps.dev:0 github.com/gluonhq/client-maven-plugin,num_dependents_deps.dev:0 github.com/gluonhq/cloudlink-enterprise-sdk,num_dependents_deps.dev:0 +github.com/gluonhq/gluon-build-license, github.com/gluonhq/gluonfx-maven-plugin,num_dependents_deps.dev:0 github.com/gluonhq/ide-plugins,num_dependents_deps.dev:0 github.com/gluonhq/scenebuilder,criticality_score:0.434160 @@ -545358,6 +555868,7 @@ github.com/gmcd/cognito-jwt,num_dependents_deps.dev:0 github.com/gmcdev/unix-path-literal,num_dependents_deps.dev:0 github.com/gmcgoldr/algo-app-dev, github.com/gmcguire/django-db-pool, +github.com/gmcintire/dokku-github-action, github.com/gmcoringa/coordinator,num_dependents_deps.dev:0 github.com/gmcoringa/tswitch,num_dependents_deps.dev:0 github.com/gmcquillan/django-brake, @@ -545462,6 +555973,7 @@ github.com/gmh04/podparser, github.com/gmhafiz/go8,num_dependents_deps.dev:0 github.com/gmhafiz/randomstrings,num_dependents_deps.dev:0 github.com/gmhcode/go-shopping-backend-proto,num_dependents_deps.dev:0 +github.com/gmiam/rust-musl-action, github.com/gmiam/uri-pattern-matcher,num_dependents_deps.dev:0 github.com/gmiaslab/ClassificaIO, github.com/gmiaslab/pyiomica, @@ -545473,6 +555985,7 @@ github.com/gmicros/gf,num_dependents_deps.dev:0 github.com/gmidorii/leetcode,num_dependents_deps.dev:0 github.com/gmierz/mindwave-lsl, github.com/gmierz/pupil-lib-python, +github.com/gmij/max-build-space, github.com/gmikeska/sails-hook-truffle,num_dependents_deps.dev:0 github.com/gmile/docker-machine-driver-xhyve,num_dependents_deps.dev:0 github.com/gmile/jks-key-extractor,num_dependents_deps.dev:0 @@ -545550,6 +556063,7 @@ github.com/gmodrogan/first-npm-test,num_dependents_deps.dev:0 github.com/gmohandas/denstatbank, github.com/gmolabs/jupyterlab-soundcloud-ext,num_dependents_deps.dev:0 github.com/gmolaire/chessboardjs,num_dependents_deps.dev:0 +github.com/gmolau/codeowners, github.com/gmoliner/headers-lighting,num_dependents_deps.dev:0 github.com/gmoliner/table-headers-lighting, github.com/gmolino/colorin, @@ -545756,6 +556270,7 @@ github.com/gmwils/node-transloadit,num_dependents_deps.dev:0 github.com/gmyrianthous/example-publish-pypi, github.com/gmysage/pyxas, github.com/gmzsebastian/FLEET, +github.com/gmzta/github-action, github.com/gn-t-k/learn-go,num_dependents_deps.dev:0 github.com/gn5r/vue-common-confirm,num_dependents_deps.dev:0 github.com/gn5r/vue-confirm,num_dependents_deps.dev:0 @@ -545775,6 +556290,7 @@ github.com/gnagel/redux-ab-test,num_dependents_deps.dev:0 github.com/gnagy/gradle-jena-plugin,num_dependents_deps.dev:0 github.com/gnagy/junit-stdio,num_dependents_deps.dev:0 github.com/gnahckire/ciscospark-py, +github.com/gnakic/fly-pr-review-apps, github.com/gnalck/ghost-storage-b2,num_dependents_deps.dev:0 github.com/gnames/bayes,num_dependents_deps.dev:8 github.com/gnames/bhlnames,num_dependents_deps.dev:0 @@ -545829,12 +556345,15 @@ github.com/gnarrrl/webhook-sign,num_dependents_deps.dev:0 github.com/gnarvaja/eth-prototype, github.com/gnarvaja/inv-py-docker-k8s-tasks, github.com/gnarvaja/weektimetable, +github.com/gnat-service/argocd-action, github.com/gnat-service/controller-loader,num_dependents_deps.dev:0 github.com/gnat-service/eslint-config-gnat,num_dependents_deps.dev:0 github.com/gnat-service/gnat-error,num_dependents_deps.dev:0 github.com/gnat-service/gnat-mongoose,num_dependents_deps.dev:0 github.com/gnat-service/module-loader,num_dependents_deps.dev:0 github.com/gnat-service/schema-loader,num_dependents_deps.dev:0 +github.com/gnat-service/setup-aliyun-cli-action, +github.com/gnat-service/simple-cicd-action, github.com/gnattwc/grunt-cfn-lint,num_dependents_deps.dev:0 github.com/gnatty/mds-nodejs-cli-multiplicator,num_dependents_deps.dev:0 github.com/gnaudio/jabra-browser-integration,num_dependents_deps.dev:0 @@ -545866,6 +556385,7 @@ github.com/gncloud/futuremaker, github.com/gncube/generator-dnndev,num_dependents_deps.dev:0 github.com/gncube/generator-gsndnn,num_dependents_deps.dev:0 github.com/gndctrl2mjrtm/cweb-project, +github.com/gndelia/onesky-uploader-action, github.com/gndplayground/react-hoc-form-validatable,num_dependents_deps.dev:0 github.com/gndplayground/uniswap-v2-sdk,num_dependents_deps.dev:0 github.com/gndplayground/zuzu,num_dependents_deps.dev:0 @@ -545940,6 +556460,7 @@ github.com/gnipbao/bstore, github.com/gnipbao/localstorage-fallback,num_dependents_deps.dev:0 github.com/gniquil/ember-cli-routing-service, github.com/gniquil/teadux,num_dependents_deps.dev:0 +github.com/gniquyij/page2pdf, github.com/gnir-work/node-site-downloader,num_dependents_deps.dev:0 github.com/gnir-work/react-window-dynamic-list,num_dependents_deps.dev:0 github.com/gnirob/prettier-config,num_dependents_deps.dev:0 @@ -546006,6 +556527,7 @@ github.com/gnomerspell/pyjazzclient, github.com/gnomff/node-cache-merge,num_dependents_deps.dev:0 github.com/gnomff/scala-tx-provider,num_dependents_deps.dev:0 github.com/gnomikos/traIXroute, +github.com/gnomock/github-action, github.com/gnomonconquest/mkvimdb, github.com/gnonio/gl-compute,num_dependents_deps.dev:0 github.com/gnordhielm/babel-plugin-simple-logger,num_dependents_deps.dev:0 @@ -546091,6 +556613,7 @@ github.com/gnowth/react,num_dependents_deps.dev:54 github.com/gnox/devcontainer-manager, github.com/gnp/cusip-rs,num_dependents_deps.dev:0 github.com/gnp/isin-rs,num_dependents_deps.dev:0 +github.com/gnpaone/winget-push-test, github.com/gnprice/pysh, github.com/gnprice/toml-cli,num_dependents_deps.dev:0 github.com/gnramos/convert-ej, @@ -546199,6 +556722,7 @@ github.com/go-aah/vfs,num_dependents_deps.dev:0 github.com/go-aah/view,num_dependents_deps.dev:0 github.com/go-accumulation/tour,num_dependents_deps.dev:0 github.com/go-acme/lego,"criticality_score:0.634140,num_dependents_deps.dev:1016" +github.com/go-actions/linked-issues, github.com/go-admin-team/go-admin,criticality_score:0.393660 github.com/go-admin-team/go-admin-core,num_dependents_deps.dev:0 github.com/go-admin-team/gorm-adapter,num_dependents_deps.dev:0 @@ -546413,6 +556937,7 @@ github.com/go-faast/payments-common,num_dependents_deps.dev:0 github.com/go-faast/ripple-payments,num_dependents_deps.dev:0 github.com/go-faast/stellar-payments,num_dependents_deps.dev:0 github.com/go-faast/tron-payments,num_dependents_deps.dev:0 +github.com/go-feature-flag/gofeatureflag-lint-action, github.com/go-feature/mosso,num_dependents_deps.dev:0 github.com/go-fed/activity,num_dependents_deps.dev:0 github.com/go-fed/apcore,num_dependents_deps.dev:0 @@ -546428,6 +556953,8 @@ github.com/go-fetch-js/parse-body,num_dependents_deps.dev:1 github.com/go-fetch-js/prefix-url,num_dependents_deps.dev:0 github.com/go-fetch-js/useragent,num_dependents_deps.dev:0 github.com/go-fingerprint/gochroma,num_dependents_deps.dev:0 +github.com/go-fjords/cloudflare-delete-deployments-action, +github.com/go-fjords/get-active-deployment-action, github.com/go-flexible/flex,num_dependents_deps.dev:0 github.com/go-flexible/flexgrpc,num_dependents_deps.dev:0 github.com/go-flexible/flexhttp,num_dependents_deps.dev:0 @@ -546540,6 +557067,7 @@ github.com/go-graphite/carbonapi,"criticality_score:0.570570,num_dependents_deps github.com/go-graphite/go-carbon,"criticality_score:0.466280,num_dependents_deps.dev:0" github.com/go-graphite/go-whisper,num_dependents_deps.dev:22 github.com/go-graphite/protocol,num_dependents_deps.dev:26 +github.com/go-gremlins/gremlins-action, github.com/go-gts/gts,num_dependents_deps.dev:0 github.com/go-gulfstream/connector,num_dependents_deps.dev:0 github.com/go-gulfstream/gs,num_dependents_deps.dev:0 @@ -546866,6 +557394,7 @@ github.com/go-sandbox/golang-rest-api-with-mux,num_dependents_deps.dev:0 github.com/go-sanitize/sanitize,num_dependents_deps.dev:0 github.com/go-sdk/logx,num_dependents_deps.dev:0 github.com/go-sdk/utilx,num_dependents_deps.dev:0 +github.com/go-semantic-release/action, github.com/go-semantic-release/changelog-generator-default,num_dependents_deps.dev:0 github.com/go-semantic-release/commit-analyzer-cz,num_dependents_deps.dev:0 github.com/go-semantic-release/condition-circleci,num_dependents_deps.dev:0 @@ -546946,6 +557475,7 @@ github.com/go-tk/optional,num_dependents_deps.dev:0 github.com/go-tk/testcase,num_dependents_deps.dev:1 github.com/go-tk/try,num_dependents_deps.dev:0 github.com/go-tmux/kube-tmux,num_dependents_deps.dev:0 +github.com/go-to-k/delstack, github.com/go-tof/nettop,num_dependents_deps.dev:0 github.com/go-tof/speedtestx,num_dependents_deps.dev:0 github.com/go-tomb/tomb, @@ -547130,6 +557660,8 @@ github.com/goat-systems/go-tezos,num_dependents_deps.dev:0 github.com/goatandsheep/closed-captions-listener,num_dependents_deps.dev:0 github.com/goatandsheep/color-randomizer, github.com/goatandsheep/configuration-chain,num_dependents_deps.dev:0 +github.com/goatandsheep/dependabot-issue-action, +github.com/goatandsheep/issuehunt-action, github.com/goatandsheep/node-pip,num_dependents_deps.dev:0 github.com/goatandsheep/node-srt,num_dependents_deps.dev:0 github.com/goatandsheep/overleia, @@ -547252,6 +557784,7 @@ github.com/gobeam/golang-oauth,num_dependents_deps.dev:0 github.com/gobeam/gooauth2,num_dependents_deps.dev:0 github.com/gobeam/mongo-go-pagination,num_dependents_deps.dev:0 github.com/gobeam/stringy,num_dependents_deps.dev:7 +github.com/gobeer/godocit, github.com/gobeli/eleventy-plugin-svelte,num_dependents_deps.dev:0 github.com/gobeli/gatsby-gallery,num_dependents_deps.dev:0 github.com/gobelieveio/im_service,num_dependents_deps.dev:0 @@ -547270,6 +557803,7 @@ github.com/gobestsdk/httpserver,num_dependents_deps.dev:0 github.com/gobestsdk/log,num_dependents_deps.dev:0 github.com/gobestsdk/trace,num_dependents_deps.dev:0 github.com/gobestsdk/types,num_dependents_deps.dev:0 +github.com/gobeyondidentity/auth-commit-sig, github.com/gobhi/create-react-app,num_dependents_deps.dev:0 github.com/gobie/closure-sandbox,num_dependents_deps.dev:0 github.com/gobie/coffeelint-complex-conditions,num_dependents_deps.dev:0 @@ -547287,11 +557821,13 @@ github.com/gobixm/react-native-proto-serial,num_dependents_deps.dev:0 github.com/gobkc/log,num_dependents_deps.dev:0 github.com/goblab/generator-mongoose,num_dependents_deps.dev:0 github.com/goblain/bunk, +github.com/goblet/goblet-github-actions, github.com/gobliggg/socketcluster-client-go,num_dependents_deps.dev:0 github.com/goblimey/go-ntrip,num_dependents_deps.dev:0 github.com/goblimey/go-tools,num_dependents_deps.dev:0 github.com/goblimey/hello1,num_dependents_deps.dev:0 github.com/goblimey/hello2,num_dependents_deps.dev:0 +github.com/goblin-ihx/action-release-releaseapk, github.com/goblin-laboratory/react-app-rewire-entry,num_dependents_deps.dev:0 github.com/goblin-laboratory/react-player,num_dependents_deps.dev:0 github.com/goblin-laboratory/reactjs-player,num_dependents_deps.dev:0 @@ -547425,6 +557961,7 @@ github.com/gocardless/gocardless-nodejs,num_dependents_deps.dev:0 github.com/gocardless/gocardless-pro-python, github.com/gocardless/gocardless-pro-ruby,num_dependents_deps.dev:0 github.com/gocardless/gocardless-ruby,num_dependents_deps.dev:0 +github.com/gocardless/publish-techdocs-action, github.com/gocardless/react-gocardless-dropin,num_dependents_deps.dev:0 github.com/gocardless/resque-sentry,num_dependents_deps.dev:0 github.com/gocardless/simple-swag,num_dependents_deps.dev:0 @@ -547606,6 +558143,11 @@ github.com/goda-sh/utils,num_dependents_deps.dev:0 github.com/godaddy-wordpress/circleci-coverage-github-reporter,num_dependents_deps.dev:0 github.com/godaddy-wordpress/coblocks,"criticality_score:0.522970,num_dependents_deps.dev:0" github.com/godaddy-wordpress/coblocks-icons,num_dependents_deps.dev:0 +github.com/godaddy-wordpress/mwcs-deploy-action, +github.com/godaddy-wordpress/pagely-deploy-action, +github.com/godaddy-wordpress/setup-secure-shell, +github.com/godaddy-wordpress/setup-wp-cli, +github.com/godaddy-wordpress/setup-wp-env, github.com/godaddy-wordpress/stylelint-config,num_dependents_deps.dev:0 github.com/godaddy-x/jorm,num_dependents_deps.dev:0 github.com/godaddy/addhoc, @@ -547692,6 +558234,7 @@ github.com/godaddy/stylelint-config-godaddy,num_dependents_deps.dev:0 github.com/godaddy/svgs,num_dependents_deps.dev:186 github.com/godaddy/swagger-jsdoc-deref,num_dependents_deps.dev:0 github.com/godaddy/tartufo, +github.com/godaddy/tartufo-action, github.com/godaddy/terminus,"criticality_score:0.467820,num_dependents_deps.dev:120" github.com/godaddy/timings, github.com/godaddy/timings-client-js,num_dependents_deps.dev:0 @@ -547791,6 +558334,7 @@ github.com/godfreyzubiaga/starksten-ui,num_dependents_deps.dev:0 github.com/godfryd/gamepadinfo, github.com/godghdai/tools,num_dependents_deps.dev:0 github.com/godheeran/opticalflow-fft,num_dependents_deps.dev:0 +github.com/godie-larenas/kubernetes-action-awscli-eks, github.com/godievski/rn-syntax-highlighter,num_dependents_deps.dev:0 github.com/godisbilen/types, github.com/godiscourse/godiscourse,num_dependents_deps.dev:0 @@ -547893,6 +558437,7 @@ github.com/godronus/deepmerge-concat,num_dependents_deps.dev:0 github.com/godror/godror,num_dependents_deps.dev:36 github.com/godrowr/go-crawler,num_dependents_deps.dev:0 github.com/godruoyi/tencent-cdn-refresh,num_dependents_deps.dev:0 +github.com/godruoyi/wakeup, github.com/godsarmy/runc,num_dependents_deps.dev:0 github.com/godsboss/celestial-corruption,num_dependents_deps.dev:0 github.com/godsboss/gh-actions-experiment,num_dependents_deps.dev:0 @@ -548131,6 +558676,7 @@ github.com/gofor-little/ts,num_dependents_deps.dev:3 github.com/gofor-little/xerror,num_dependents_deps.dev:0 github.com/gofor-little/xlambda,num_dependents_deps.dev:0 github.com/gofor-little/xrand,num_dependents_deps.dev:0 +github.com/goforboom/aws-container-registry-action, github.com/goforboom/storybook,num_dependents_deps.dev:0 github.com/goforbroke1006/hello-npm,num_dependents_deps.dev:0 github.com/goforbroke1006/npm-wildfowl, @@ -548142,6 +558688,7 @@ github.com/goforu/vue-wexin-emojis,num_dependents_deps.dev:0 github.com/gofreddo/eta,num_dependents_deps.dev:0 github.com/gofreddo/http-intercept,num_dependents_deps.dev:0 github.com/gofrendiasgard/api-exercise-alta,num_dependents_deps.dev:0 +github.com/gofrolist/molecule-action, github.com/gofrs/flock,"criticality_score:0.361150,num_dependents_deps.dev:3049" github.com/gofrs/go-flock,num_dependents_deps.dev:0 github.com/gofrs/uuid,"criticality_score:0.515630,num_dependents_deps.dev:8917" @@ -548156,6 +558703,7 @@ github.com/gofunky/pyraset,num_dependents_deps.dev:0 github.com/gofunky/siteleaf-updater,num_dependents_deps.dev:0 github.com/gofunky/trumpet,num_dependents_deps.dev:0 github.com/gofunky/tuplip,num_dependents_deps.dev:0 +github.com/gofunky/update-codeowners, github.com/gofury/fastmvc,num_dependents_deps.dev:0 github.com/gofx8za7e898cabc/myproject,num_dependents_deps.dev:0 github.com/gofydo/publish-flow,num_dependents_deps.dev:0 @@ -548171,6 +558719,10 @@ github.com/goga-m/pagesigner.js, github.com/gogadeveloper/goland,num_dependents_deps.dev:0 github.com/gogaeva/balancer,num_dependents_deps.dev:0 github.com/gogaeva/build-system,num_dependents_deps.dev:0 +github.com/gogaille/review-terraform-plan, +github.com/gogaille/setup-monorepo-node-app, +github.com/gogaille/setup-terraform, +github.com/gogaille/sparse-checkout, github.com/gogakoreli/angular-reform,num_dependents_deps.dev:0 github.com/gogakoreli/elements-beta,num_dependents_deps.dev:0 github.com/gogama/aws-sdk-go-flextime,num_dependents_deps.dev:0 @@ -548417,6 +558969,7 @@ github.com/goinsane/erf,num_dependents_deps.dev:1 github.com/goinsane/xcontext,num_dependents_deps.dev:0 github.com/goinsane/xlog,num_dependents_deps.dev:1 github.com/goinsane/xmath,num_dependents_deps.dev:1 +github.com/goinst-hub/i-d-template, github.com/goinstant/assert,num_dependents_deps.dev:0 github.com/goinstant/buffer-equal-constant-time,num_dependents_deps.dev:29632 github.com/goinstant/global-tunnel,num_dependents_deps.dev:8 @@ -548435,6 +558988,7 @@ github.com/goioc/web,num_dependents_deps.dev:0 github.com/goipp/go-101,num_dependents_deps.dev:0 github.com/goir/uwsgicachetop, github.com/goirijo/thermoplotting, +github.com/goit/setup-resharper, github.com/goith/fasthttp-routing,num_dependents_deps.dev:0 github.com/goith/go-learn,num_dependents_deps.dev:0 github.com/goiw111/cll,num_dependents_deps.dev:0 @@ -548603,6 +559157,8 @@ github.com/gokins/core,num_dependents_deps.dev:0 github.com/gokins/gokins,num_dependents_deps.dev:0 github.com/gokins/runner,num_dependents_deps.dev:0 github.com/gokit/webvm,num_dependents_deps.dev:0 +github.com/gokiwibot/gcp-env-vars-file-compiler, +github.com/gokiwibot/gcp-yaml-compiler, github.com/gokker-tech/logger,num_dependents_deps.dev:0 github.com/goklc/framework,num_dependents_deps.dev:0 github.com/goklc/goklc,num_dependents_deps.dev:0 @@ -548729,6 +559285,7 @@ github.com/golang-devops/gen,num_dependents_deps.dev:0 github.com/golang-devops/go-watcher,num_dependents_deps.dev:0 github.com/golang-devops/goreman,num_dependents_deps.dev:0 github.com/golang-devops/hidden-cmd-proxy,num_dependents_deps.dev:0 +github.com/golang-enthusiast/app-yaml-env-compiler, github.com/golang-framework/mvc,num_dependents_deps.dev:0 github.com/golang-friends/members,num_dependents_deps.dev:0 github.com/golang-game-rpc/game_rpc,num_dependents_deps.dev:0 @@ -548793,6 +559350,7 @@ github.com/golang/glog,"Google,num_dependents_deps.dev:5181" github.com/golang/go,"Google,criticality_score:0.864140" github.com/golang/go-get-issue-15410,Google github.com/golang/gofrontend,"Google,criticality_score:0.362040,num_dependents_deps.dev:0" +github.com/golang/govulncheck-action, github.com/golang/groupcache,"Google,criticality_score:0.377620" github.com/golang/image,"Google,criticality_score:0.532180" github.com/golang/leveldb,Google @@ -549112,6 +559670,9 @@ github.com/golfadas/d3-3,num_dependents_deps.dev:0 github.com/golfcloud/appsync-nodejs, github.com/golfsierraAI/NewsScraper,num_dependents_deps.dev:0 github.com/golfz/goliath,num_dependents_deps.dev:0 +github.com/golfzaptw/action-auto-reviews-from-branches, +github.com/golfzaptw/action-commit-push-pr, +github.com/golfzaptw/action-connect-ovpn, github.com/golfzaptw/boilerplate-cypress,num_dependents_deps.dev:0 github.com/golfzaptw/codeceptjs-playwright-boilerplate,num_dependents_deps.dev:0 github.com/golfzaptw/cypress-with-format,num_dependents_deps.dev:0 @@ -549205,6 +559766,7 @@ github.com/golift/securityspy,num_dependents_deps.dev:1 github.com/golift/starr,num_dependents_deps.dev:2 github.com/golift/subscribe,num_dependents_deps.dev:0 github.com/golift/turbovanityurls,num_dependents_deps.dev:0 +github.com/golift/upload-packagecloud, github.com/golift/version,num_dependents_deps.dev:13 github.com/golift/xtractr,num_dependents_deps.dev:0 github.com/golightlyb/csrf.py, @@ -549218,6 +559780,7 @@ github.com/goliney/grunt-coderoom,num_dependents_deps.dev:0 github.com/goliney/rebox,num_dependents_deps.dev:0 github.com/golionproject/reactnetworking,num_dependents_deps.dev:0 github.com/golioth/dtls,num_dependents_deps.dev:0 +github.com/golioth/setup-goliothctl, github.com/golkhandani/cron_expression_builder,num_dependents_deps.dev:0 github.com/golkhandani/fastest-validator-nestjs,num_dependents_deps.dev:0 github.com/golkhandani/mysql2-nestjs,num_dependents_deps.dev:0 @@ -549227,6 +559790,7 @@ github.com/goller/data_models,num_dependents_deps.dev:0 github.com/goller/envconfig,num_dependents_deps.dev:0 github.com/goller/hashring, github.com/goller/kubedash,num_dependents_deps.dev:0 +github.com/golles/mock-yaml-secrets-action, github.com/gollowars/csv-util,num_dependents_deps.dev:0 github.com/gollowars/google-spreadsheet-manager,num_dependents_deps.dev:0 github.com/gollowars/gulp-base64-stylus,num_dependents_deps.dev:0 @@ -549267,6 +559831,7 @@ github.com/goloroden/cases,num_dependents_deps.dev:0 github.com/goloroden/comparejs,num_dependents_deps.dev:0 github.com/goloroden/forcedomain,num_dependents_deps.dev:0 github.com/goloroden/isolated,num_dependents_deps.dev:0 +github.com/goloroden/lint-pull-request-title, github.com/goloroden/node-assertthat,num_dependents_deps.dev:0 github.com/goloroden/node-force-domain,num_dependents_deps.dev:0 github.com/goloroden/tutum,num_dependents_deps.dev:0 @@ -549539,6 +560104,7 @@ github.com/gon250/ng2-orderBy-pipe,num_dependents_deps.dev:0 github.com/gonaumov/npm-max-dir-index,num_dependents_deps.dev:0 github.com/gonber/node-checkfront,num_dependents_deps.dev:0 github.com/goncalo-godwitlabs/spr, +github.com/goncalo-oliveira/openfaas-setup-cli, github.com/goncaloccastro/scintilla, github.com/goncalomb/dashwood,num_dependents_deps.dev:0 github.com/goncaloneves/node-each,num_dependents_deps.dev:0 @@ -549761,6 +560327,7 @@ github.com/gonsor/wurmloch,num_dependents_deps.dev:0 github.com/gonsuke/fluent-plugin-dynamodb,num_dependents_deps.dev:0 github.com/gonsuke/python-luxio, github.com/gontikr99/chutzparse,num_dependents_deps.dev:0 +github.com/gonuit/heroku-docker-deploy, github.com/gonum/diff, github.com/gonum/exp,num_dependents_deps.dev:0 github.com/gonum/gonum,"criticality_score:0.531040,num_dependents_deps.dev:1444" @@ -549825,6 +560392,7 @@ github.com/gonzalofh/travel-ban-updates,num_dependents_deps.dev:0 github.com/gonzaloflirt/link-python, github.com/gonzalofrancoceballos/MLP, github.com/gonzalojs/shadowizard,num_dependents_deps.dev:0 +github.com/gonzalonaveira/gh-image-resizing, github.com/gonzaloperezbarrios/chalo-datepicker-multi-language,num_dependents_deps.dev:0 github.com/gonzaloperezbarrios/chalo-location-search-input,num_dependents_deps.dev:0 github.com/gonzaloperezbarrios/chalo-phone-format, @@ -550194,6 +560762,7 @@ github.com/goodrain/rainbond-oam,num_dependents_deps.dev:2 github.com/goodrain/rainbond-operator,num_dependents_deps.dev:3 github.com/goodrank/lite-padding-margin,num_dependents_deps.dev:0 github.com/goodread/goodread-js,num_dependents_deps.dev:0 +github.com/goodroot/github-action-slack-project-notifier, github.com/goods-services/goodz,num_dependents_deps.dev:0 github.com/goods/ember-app-version, github.com/goods/ember-assembly,num_dependents_deps.dev:0 @@ -550234,6 +560803,7 @@ github.com/goodwithtech/deckoder,num_dependents_deps.dev:0 github.com/goodwithtech/docker-guard,num_dependents_deps.dev:0 github.com/goodwithtech/dockertags,num_dependents_deps.dev:0 github.com/goodwithtech/dockle,num_dependents_deps.dev:0 +github.com/goodwithtech/dockle-action, github.com/goodwjf/generator-sogou,num_dependents_deps.dev:0 github.com/goodwjf/generator-webx,num_dependents_deps.dev:0 github.com/goodwjf/watch-color,num_dependents_deps.dev:0 @@ -550431,6 +561001,8 @@ github.com/google-developer-training/pwa-ecommerce-demo,Google github.com/google-developer-training/pwa-training-labs,"Google,criticality_score:0.311030" github.com/google-github-actions/.github,Google github.com/google-github-actions/actions-docs,Google +github.com/google-github-actions/auth, +github.com/google-github-actions/create-cloud-deploy-release, github.com/google-github-actions/deploy-appengine,Google github.com/google-github-actions/deploy-cloud-functions,Google github.com/google-github-actions/deploy-cloudrun,Google @@ -550438,8 +561010,10 @@ github.com/google-github-actions/deploy-workflow,Google github.com/google-github-actions/get-gke-credentials,Google github.com/google-github-actions/get-secretmanager-secrets,Google github.com/google-github-actions/release-please-action,Google +github.com/google-github-actions/run-vertexai-notebook, github.com/google-github-actions/setup-cloud-sdk,Google github.com/google-github-actions/setup-gcloud,"Google,criticality_score:0.493140" +github.com/google-github-actions/ssh-compute, github.com/google-github-actions/test-infra,Google github.com/google-github-actions/upload-cloud-storage,Google github.com/google-gson/typeadapters,Google @@ -556061,6 +566635,7 @@ github.com/gopal-007/gopal-007,num_dependents_deps.dev:0 github.com/gopal-gautam/vue-green-audio-player,num_dependents_deps.dev:0 github.com/gopal-virtual/es-create-app, github.com/gopal221296/quotes-go-rand,num_dependents_deps.dev:0 +github.com/gopala000/incr-version, github.com/gopalakrishnan-chakkaravarthy/ngxCkGrid, github.com/gopalakrishnan-v/espn-cricket-api,num_dependents_deps.dev:0 github.com/gopalanand333/nodejs-unique-numeric-ID-generator,num_dependents_deps.dev:0 @@ -556198,6 +566773,7 @@ github.com/goplus/goplus,num_dependents_deps.dev:0 github.com/goplus/gox,num_dependents_deps.dev:3 github.com/goplus/interp,num_dependents_deps.dev:0 github.com/goplus/reflectx,num_dependents_deps.dev:5 +github.com/goplus/setup-goplus, github.com/goplus/spx,num_dependents_deps.dev:0 github.com/goplus/www,num_dependents_deps.dev:0 github.com/goplus/xtypes,num_dependents_deps.dev:0 @@ -556421,6 +566997,7 @@ github.com/goretk/redress,num_dependents_deps.dev:0 github.com/gorexlv/goutil,num_dependents_deps.dev:0 github.com/gorfadvijay/logeagle-adapter-browser,num_dependents_deps.dev:0 github.com/gorfadvijay/logeagle-adapter-nodejs,num_dependents_deps.dev:0 +github.com/gorgbus/gist-actions, github.com/gorghoa/angular-images-tools,num_dependents_deps.dev:0 github.com/gorghoa/browserenv-generator,num_dependents_deps.dev:0 github.com/gorghoa/env-publisher,num_dependents_deps.dev:0 @@ -556487,6 +567064,7 @@ github.com/gorillab/reader-js,num_dependents_deps.dev:0 github.com/gorillab/reader-scraper,num_dependents_deps.dev:0 github.com/gorillabyte/silverback,num_dependents_deps.dev:0 github.com/gorillalabs/sparkling,criticality_score:0.327880 +github.com/gorillamania/AICodeBot-action, github.com/gorillamania/node_geoip_server,num_dependents_deps.dev:0 github.com/gorillamania/package.json-validator,num_dependents_deps.dev:202 github.com/gorillatron/AsyncTask,num_dependents_deps.dev:0 @@ -556509,6 +567087,8 @@ github.com/gorillazer/ginny-prometheus,num_dependents_deps.dev:1 github.com/gorillazer/ginny-redis,num_dependents_deps.dev:0 github.com/gorillazer/ginny-serve,num_dependents_deps.dev:0 github.com/gorillazer/ginny-util,num_dependents_deps.dev:2 +github.com/gorillio/github-action-cherry-pick, +github.com/gorillio/github-action-sync, github.com/gorilskij/no-comment,num_dependents_deps.dev:0 github.com/gorilych/go-10952,num_dependents_deps.dev:0 github.com/goriunov/ClusterWS,num_dependents_deps.dev:0 @@ -556629,6 +567209,7 @@ github.com/goschlim/comp-auction-system,num_dependents_deps.dev:0 github.com/goscot/cleango,num_dependents_deps.dev:0 github.com/gosddc/packer-post-processor-vagrant-vmware-ovf,num_dependents_deps.dev:0 github.com/goseefuture/gblog,num_dependents_deps.dev:0 +github.com/goseind/datadog-actions-wf-usage, github.com/gosella/autopython, github.com/goserg/links,num_dependents_deps.dev:0 github.com/gosh-lang/gosh,num_dependents_deps.dev:0 @@ -556655,6 +567236,7 @@ github.com/goshareit/client,num_dependents_deps.dev:0 github.com/goshawkdb/client,num_dependents_deps.dev:0 github.com/goshawkdb/collections,num_dependents_deps.dev:0 github.com/goshawkdb/js-client,num_dependents_deps.dev:0 +github.com/goshencollege/validate-branch-name, github.com/goshippo/shippo-node-client, github.com/goshlanguage/kpong,num_dependents_deps.dev:0 github.com/goshpil/tcpchan,num_dependents_deps.dev:0 @@ -556699,6 +567281,7 @@ github.com/gosnmp/gosnmp,"criticality_score:0.517180,num_dependents_deps.dev:241 github.com/gosolu/solu,num_dependents_deps.dev:0 github.com/gosom/go-gdc,num_dependents_deps.dev:0 github.com/gosome/fileupdater,num_dependents_deps.dev:0 +github.com/gosp/resource-checker, github.com/gospime/apollo-client,num_dependents_deps.dev:0 github.com/gospime/app-handlers,num_dependents_deps.dev:0 github.com/gospime/autoloader,num_dependents_deps.dev:0 @@ -556944,6 +567527,7 @@ github.com/gotlium/django-pinba, github.com/gotlium/django-proxylist, github.com/gotlium/django-secure-auth, github.com/gotlium/track-china-post-air-mail, +github.com/gotmax23/set-bot-git-user-action, github.com/gotmc/libusb,num_dependents_deps.dev:0 github.com/gotmc/usbtmc,num_dependents_deps.dev:0 github.com/gotnotable/albus, @@ -557055,6 +567639,7 @@ github.com/goto-bus-stop/rjs-subcontext,num_dependents_deps.dev:0 github.com/goto-bus-stop/rollup-plugin-es-module-interop,num_dependents_deps.dev:0 github.com/goto-bus-stop/scope-analyzer,num_dependents_deps.dev:3520 github.com/goto-bus-stop/scream-stream,num_dependents_deps.dev:0 +github.com/goto-bus-stop/setup-zig, github.com/goto-bus-stop/shasum-object,num_dependents_deps.dev:9106 github.com/goto-bus-stop/shorten-url,num_dependents_deps.dev:0 github.com/goto-bus-stop/shorten-url-rs,num_dependents_deps.dev:0 @@ -557121,6 +567706,7 @@ github.com/gotomicro/ego,num_dependents_deps.dev:0 github.com/gotomicro/ego-component,num_dependents_deps.dev:0 github.com/gotomicro/egoctl,num_dependents_deps.dev:0 github.com/gotomicro/gopay,num_dependents_deps.dev:0 +github.com/gotomicro/gotip-action, github.com/gotomicro/prototool,num_dependents_deps.dev:0 github.com/gotomsak/sconcent,num_dependents_deps.dev:0 github.com/gotoolkit/bot,num_dependents_deps.dev:0 @@ -557323,6 +567909,8 @@ github.com/govau/design-system-components,"criticality_score:0.346120,num_depend github.com/govau/pancake,num_dependents_deps.dev:180 github.com/govau/tunneler, github.com/govau/uikit,num_dependents_deps.dev:20 +github.com/govcms-extras/github-action-jira-connect, +github.com/govcms-extras/github-action-jira-create, github.com/govdelivery/create_ticket,num_dependents_deps.dev:0 github.com/govdelivery/tms_client,num_dependents_deps.dev:0 github.com/goveo/2-of-5-barcode,num_dependents_deps.dev:0 @@ -557339,6 +567927,8 @@ github.com/govind123-alt/package-demo,num_dependents_deps.dev:0 github.com/govind1530/npx_card,num_dependents_deps.dev:0 github.com/govind2220000/image_scraper, github.com/govindarajan/amigo,num_dependents_deps.dev:0 +github.com/govindarajanv/docker-actions-template, +github.com/govindarajanv/secrets-finder, github.com/govindgrover/mtms, github.com/govindjhag/request-limiter,num_dependents_deps.dev:0 github.com/govindrai/proteus-puppeteer,num_dependents_deps.dev:0 @@ -557406,6 +567996,8 @@ github.com/gowiny/vue-class-extend,num_dependents_deps.dev:0 github.com/gowithfloat/clippy, github.com/gowizz/SearchBar, github.com/gowizz/country,num_dependents_deps.dev:0 +github.com/gowizzard/compver, +github.com/gowizzard/vmerge, github.com/gowk-org/jotp,num_dependents_deps.dev:0 github.com/gowk/gosql,num_dependents_deps.dev:0 github.com/gowk/sql,num_dependents_deps.dev:0 @@ -557430,6 +568022,7 @@ github.com/gowthamgirithar/golangexercises,num_dependents_deps.dev:0 github.com/gowthamgts/subtitles-fixer,num_dependents_deps.dev:0 github.com/gowthamr12/forexample,num_dependents_deps.dev:0 github.com/gowthamrajj/ng2-webstorage,num_dependents_deps.dev:0 +github.com/gowthamreilly/jira-attachments, github.com/gowthamrm/ember-scroll-preview,num_dependents_deps.dev:0 github.com/gowthamrm/ember-scroll-progress,num_dependents_deps.dev:0 github.com/gowthamrodda/diet,num_dependents_deps.dev:0 @@ -557514,6 +568107,7 @@ github.com/gp-technical/stack-demo,num_dependents_deps.dev:0 github.com/gp-technical/stack-pack-gpapi,num_dependents_deps.dev:0 github.com/gp-technical/stack-pack-util,num_dependents_deps.dev:1 github.com/gp187/algos-ts,num_dependents_deps.dev:0 +github.com/gp201/oppiabot, github.com/gp2kumar/jsonconverter, github.com/gp397/vagrant-qubes,num_dependents_deps.dev:0 github.com/gp5251/fe-api-mocker,num_dependents_deps.dev:0 @@ -557698,6 +568292,7 @@ github.com/gpittarelli/psqlcsv,num_dependents_deps.dev:0 github.com/gpizzorno/tree-sitter-chunk-grammar,num_dependents_deps.dev:0 github.com/gpjyothish/dialogflow-connector,num_dependents_deps.dev:0 github.com/gpkc/cypyler, +github.com/gplanchat/github-action-box, github.com/gpldecha/gym-leftright, github.com/gpldecha/gym-square, github.com/gpleo/restful-socket,num_dependents_deps.dev:0 @@ -557816,6 +568411,11 @@ github.com/gpulido/kuzzle-ngrx,num_dependents_deps.dev:0 github.com/gpulido/python-airzone, github.com/gpulido/python-kuro, github.com/gpulido/python-selve, +github.com/gpuliyar/check-url-action, +github.com/gpuliyar/install-kong-deck, +github.com/gpuliyar/pr-deploy-status-action, +github.com/gpuliyar/pr-status-action, +github.com/gpuliyar/zapier-webhook-action, github.com/gpuoti/Artifact-PonyExpress, github.com/gpupo/gpupo-npm-common,num_dependents_deps.dev:0 github.com/gpupo/gpupo-npm-dev,num_dependents_deps.dev:0 @@ -557886,9 +568486,11 @@ github.com/gr1mmj00u/project-lvl3-s238,num_dependents_deps.dev:0 github.com/gr1mmj00u/redis-serializer,num_dependents_deps.dev:0 github.com/gr2m/CORS-Proxy,num_dependents_deps.dev:6 github.com/gr2m/account-rest-api,num_dependents_deps.dev:0 +github.com/gr2m/app-stats-action, github.com/gr2m/appcache-autoupdate,num_dependents_deps.dev:0 github.com/gr2m/appcache-nanny,num_dependents_deps.dev:0 github.com/gr2m/async-get-set-store,num_dependents_deps.dev:18 +github.com/gr2m/await-npm-package-version-action, github.com/gr2m/before-after-hook,num_dependents_deps.dev:10640 github.com/gr2m/boop-gregors-nose,num_dependents_deps.dev:0 github.com/gr2m/bootstrap-expanding-input,num_dependents_deps.dev:0 @@ -557897,6 +568499,8 @@ github.com/gr2m/contenteditable-autocomplete,num_dependents_deps.dev:0 github.com/gr2m/copy-repository,num_dependents_deps.dev:0 github.com/gr2m/couchdb-remove-conflicts,num_dependents_deps.dev:0 github.com/gr2m/couchdb-view-tester,num_dependents_deps.dev:0 +github.com/gr2m/cowsay-action, +github.com/gr2m/create-or-update-pull-request-action, github.com/gr2m/deprecation,num_dependents_deps.dev:9032 github.com/gr2m/download-email-attachments,num_dependents_deps.dev:0 github.com/gr2m/editable-table,num_dependents_deps.dev:0 @@ -557905,9 +568509,11 @@ github.com/gr2m/express-github-stitch,num_dependents_deps.dev:0 github.com/gr2m/find-hearted-contributions,num_dependents_deps.dev:0 github.com/gr2m/frontend-test-setup,num_dependents_deps.dev:0 github.com/gr2m/funky-sloth-42,num_dependents_deps.dev:0 +github.com/gr2m/get-json-paths-action, github.com/gr2m/github-enterprise-server-versions,num_dependents_deps.dev:0 github.com/gr2m/github-graphql-schema,num_dependents_deps.dev:0 github.com/gr2m/github-openapi-graphql-query,num_dependents_deps.dev:0 +github.com/gr2m/github-organization-repository-auditing-action, github.com/gr2m/glitch-deploy,num_dependents_deps.dev:0 github.com/gr2m/glitch-github-app,num_dependents_deps.dev:0 github.com/gr2m/gr2m-awoftuawfntayowfutn,num_dependents_deps.dev:0 @@ -557917,6 +568523,7 @@ github.com/gr2m/grunt-eco,num_dependents_deps.dev:0 github.com/gr2m/hapi-cors-headers,num_dependents_deps.dev:150 github.com/gr2m/has-localstorage,num_dependents_deps.dev:1162 github.com/gr2m/hatchbaby,num_dependents_deps.dev:0 +github.com/gr2m/hello-world-js-action, github.com/gr2m/hoodie-plugin-appcache,num_dependents_deps.dev:0 github.com/gr2m/hoodie-plugin-backbone,num_dependents_deps.dev:0 github.com/gr2m/hoodie-plugin-user-data,num_dependents_deps.dev:0 @@ -557927,6 +568534,7 @@ github.com/gr2m/javascript-plugin-architecture-with-typescript-definitions,num_d github.com/gr2m/knock-knock-server,num_dependents_deps.dev:0 github.com/gr2m/localstorage-memory,num_dependents_deps.dev:1584 github.com/gr2m/merge-dependency-update-prs, +github.com/gr2m/merge-schedule-action, github.com/gr2m/mite.node,num_dependents_deps.dev:0 github.com/gr2m/moment-parseformat, github.com/gr2m/moment.parseFormat,num_dependents_deps.dev:0 @@ -557952,11 +568560,13 @@ github.com/gr2m/octokit-rest-for-node-v0.12,num_dependents_deps.dev:0 github.com/gr2m/octokit-rest-plugin-add-endpoints,num_dependents_deps.dev:0 github.com/gr2m/octokit-rest-plugin-exmple,num_dependents_deps.dev:0 github.com/gr2m/octokit-rest-routes,num_dependents_deps.dev:0 +github.com/gr2m/org-stats-action, github.com/gr2m/pika-plugin-unpkg-field,num_dependents_deps.dev:0 github.com/gr2m/pino-sentry-errors,num_dependents_deps.dev:0 github.com/gr2m/pouchdb-doc-api,num_dependents_deps.dev:12 github.com/gr2m/pouchdb-idb,num_dependents_deps.dev:0 github.com/gr2m/randmon-knock-knock,num_dependents_deps.dev:0 +github.com/gr2m/release-notifier-action, github.com/gr2m/release-test,num_dependents_deps.dev:0 github.com/gr2m/scriptkit-octokit,num_dependents_deps.dev:0 github.com/gr2m/selsa,num_dependents_deps.dev:0 @@ -557964,6 +568574,7 @@ github.com/gr2m/semantic-release-cli-test,num_dependents_deps.dev:0 github.com/gr2m/semantic-release-plugin-update-version-in-files,num_dependents_deps.dev:0 github.com/gr2m/semantic-release-test,num_dependents_deps.dev:0 github.com/gr2m/semantic-release-test-1368,num_dependents_deps.dev:0 +github.com/gr2m/set-cron-schedule-action, github.com/gr2m/smartdate-input,num_dependents_deps.dev:0 github.com/gr2m/spawn-pouchdb-server,num_dependents_deps.dev:10 github.com/gr2m/string-to-jsdoc-comment,num_dependents_deps.dev:0 @@ -557976,6 +568587,7 @@ github.com/gr2m/universal-publish-test,num_dependents_deps.dev:0 github.com/gr2m/universal-user-agent,num_dependents_deps.dev:15774 github.com/gr2m/uscis-service-center-processing-times,num_dependents_deps.dev:0 github.com/gr2m/wip-bot,num_dependents_deps.dev:0 +github.com/gr2m/write-csv-file-action, github.com/gr33ndata/dysl, github.com/gr33ndata/irlib, github.com/gr3atwh173/create_eel_app, @@ -558006,6 +568618,7 @@ github.com/grARM/vtl-parse-loader,num_dependents_deps.dev:0 github.com/graalvm/graal,num_dependents_deps.dev:21 github.com/graalvm/graaljs,num_dependents_deps.dev:727 github.com/graalvm/native-build-tools,num_dependents_deps.dev:1 +github.com/graalvm/setup-graalvm, github.com/graalvm/truffle,num_dependents_deps.dev:0 github.com/graanco/homebridge-SimpliSafePlatform,num_dependents_deps.dev:0 github.com/graaphscom/compoas,num_dependents_deps.dev:0 @@ -558038,7 +568651,9 @@ github.com/grabvintage/babel-plugin-transform-ssm,num_dependents_deps.dev:0 github.com/grabvintage/ts-schemaof,num_dependents_deps.dev:0 github.com/grace5925/vue-cli-plugin-puzzle,num_dependents_deps.dev:0 github.com/gracecox/MagPySV, +github.com/gracefullight/rssify-ts, github.com/gracehalbert/lodown,num_dependents_deps.dev:0 +github.com/gracekarina/hello-world-docker-action, github.com/graceland/graceland-core,num_dependents_deps.dev:0 github.com/gracelang/minigrace,num_dependents_deps.dev:0 github.com/gracemin15/gmin-test,num_dependents_deps.dev:0 @@ -558140,10 +568755,13 @@ github.com/gradio-app/gradio-UI, github.com/gradisarjoze/businesscard, github.com/gradle-plugins/grava,num_dependents_deps.dev:0 github.com/gradle-plugins/toolbox,num_dependents_deps.dev:55 +github.com/gradle-update/update-gradle-wrapper-action, github.com/gradle/gradle,"criticality_score:0.864840,num_dependents_deps.dev:18" +github.com/gradle/gradle-build-action, github.com/gradle/gradle-completion,criticality_score:0.318190 github.com/gradle/gradle-enterprise-build-config-samples,num_dependents_deps.dev:0 github.com/gradle/gradle-profiler,criticality_score:0.458910 +github.com/gradle/wrapper-validation-action, github.com/gradolol/cra-template-webant-admin,num_dependents_deps.dev:0 github.com/gradolol/react-mic-record,num_dependents_deps.dev:0 github.com/gradorsys/asb-jwk,num_dependents_deps.dev:0 @@ -558178,6 +568796,7 @@ github.com/graemef/redminer,num_dependents_deps.dev:0 github.com/graemef/trello,num_dependents_deps.dev:2 github.com/graemeg/freepascal,criticality_score:0.372670 github.com/graemeg/lazarus,criticality_score:0.400640 +github.com/graemegeorge/prevent-merge-jira, github.com/graememcc/funkierJS,num_dependents_deps.dev:0 github.com/graememcc/troth,num_dependents_deps.dev:0 github.com/graemenickerson/lotide,num_dependents_deps.dev:0 @@ -558219,6 +568838,7 @@ github.com/grafana/grizzly,num_dependents_deps.dev:0 github.com/grafana/iot-sitewise-datasource,num_dependents_deps.dev:0 github.com/grafana/jsonnet-libs,criticality_score:0.445290 github.com/grafana/k6,num_dependents_deps.dev:0 +github.com/grafana/k6-action, github.com/grafana/k6-operator,num_dependents_deps.dev:0 github.com/grafana/kubernetes-app,criticality_score:0.348920 github.com/grafana/kubernetes-diff-logger,num_dependents_deps.dev:0 @@ -558256,6 +568876,7 @@ github.com/grafana/x-ray-datasource,num_dependents_deps.dev:0 github.com/grafana/xk6,num_dependents_deps.dev:0 github.com/grafana/xk6-amqp,num_dependents_deps.dev:0 github.com/grafana/xk6-execution,num_dependents_deps.dev:0 +github.com/grafbase/schema-check-action, github.com/grafe-team/grafe-framework,num_dependents_deps.dev:0 github.com/grafeas/binauthz-signer,Google github.com/grafeas/client-go,"Google,num_dependents_deps.dev:0" @@ -558279,6 +568900,7 @@ github.com/graficos-net/graficols,num_dependents_deps.dev:0 github.com/graficos-net/html-cleanser,num_dependents_deps.dev:0 github.com/graficos/pipe-js, github.com/grafiddle/angular-chart, +github.com/grafikr/shopify-actions, github.com/grafikri/excel-to-vue-i18n,num_dependents_deps.dev:0 github.com/grafikri/excel-vue-i18n, github.com/grafikri/sum-big-number,num_dependents_deps.dev:0 @@ -558338,7 +568960,19 @@ github.com/grahambrooks/xpa,num_dependents_deps.dev:0 github.com/grahamc/boto_s3_shim, github.com/grahamc/docbook-index,num_dependents_deps.dev:0 github.com/grahamc/git-cachecow, +github.com/grahamcampbell/analyzer, +github.com/grahamcampbell/bounded-cache, +github.com/grahamcampbell/guzzle-factory, +github.com/grahamcampbell/laravel-binput, +github.com/grahamcampbell/laravel-bitbucket, +github.com/grahamcampbell/laravel-digitalocean, +github.com/grahamcampbell/laravel-gitlab, +github.com/grahamcampbell/laravel-manager, +github.com/grahamcampbell/laravel-security, +github.com/grahamcampbell/laravel-testbench, +github.com/grahamcampbell/laravel-testbench-core, github.com/grahamcampbell/result-type, +github.com/grahamcampbell/security-core, github.com/grahamcrackers/react-headless-table,num_dependents_deps.dev:0 github.com/grahame/dividebatur, github.com/grahamearley/FirestoreGoogleAppsScript,criticality_score:0.309510 @@ -558407,6 +569041,7 @@ github.com/grails-profiles/rest-api,num_dependents_deps.dev:0 github.com/grails-profiles/rest-api-plugin,num_dependents_deps.dev:0 github.com/grails-profiles/vue,num_dependents_deps.dev:0 github.com/grails-profiles/web,num_dependents_deps.dev:0 +github.com/grails/github-pages-deploy-action, github.com/grails/gorm-cassandra,num_dependents_deps.dev:0 github.com/grails/gorm-hibernate5,num_dependents_deps.dev:9 github.com/grails/gorm-mongodb,num_dependents_deps.dev:92 @@ -558601,6 +569236,7 @@ github.com/gramps-project/web-api, github.com/gramsco/days-of-our-lives,num_dependents_deps.dev:0 github.com/gramsco/dooljs, github.com/gramster/ghreport, +github.com/gramster/github-issue-reporter, github.com/gramstr/better-firebase-functions,num_dependents_deps.dev:0 github.com/gran33/ts-vs-js,num_dependents_deps.dev:0 github.com/granaber/FormatDateEpoch,num_dependents_deps.dev:0 @@ -558635,6 +569271,13 @@ github.com/grandeurtech/react-sdk,num_dependents_deps.dev:0 github.com/grandideastudio/jtagulator,criticality_score:0.385540 github.com/grandiosedata/urfave-cli,num_dependents_deps.dev:0 github.com/grandjs/grafka, +github.com/grandmasterdev/github-action-aws-cdk-update, +github.com/grandmasterdev/github-action-azure-work-item, +github.com/grandmasterdev/github-action-ci-nodejs-build-test, +github.com/grandmasterdev/github-action-ci-nodejs-package, +github.com/grandmasterdev/github-action-get-branch, +github.com/grandmasterdev/github-action-npm-audit-fix, +github.com/grandmasterdev/sonarqube-scan-action, github.com/grandnode/grandnode,criticality_score:0.611450 github.com/grandonbroseph/css-duration,num_dependents_deps.dev:0 github.com/grandquista/CaaSbootstrap,num_dependents_deps.dev:0 @@ -558827,6 +569470,7 @@ github.com/grantmcconnaughey/django-avatar,criticality_score:0.385370 github.com/grantmcconnaughey/django-field-history, github.com/grantmcconnaughey/django-lazy-tags, github.com/grantmcconnaughey/lintly, +github.com/grantmcconnaughey/lintly-flake8-github-action, github.com/grantmiiller/surfboard,num_dependents_deps.dev:0 github.com/grantneale/kafka-lag-based-assignor,num_dependents_deps.dev:0 github.com/grantnelson-wf/dartcomptest,num_dependents_deps.dev:0 @@ -559152,6 +569796,8 @@ github.com/graphql-java/java-dataloader,"criticality_score:0.348030,num_dependen github.com/graphql-java/nadel,num_dependents_deps.dev:0 github.com/graphql-js/graphene-js,num_dependents_deps.dev:0 github.com/graphql-js/graphene-sequelize,num_dependents_deps.dev:0 +github.com/graphql-kit/graphql-faker, +github.com/graphql-kit/graphql-voyager, github.com/graphql-monster/cra-template-graphql-monster,num_dependents_deps.dev:0 github.com/graphql-nexus/logger,num_dependents_deps.dev:0 github.com/graphql-nexus/nexus,"criticality_score:0.551790,num_dependents_deps.dev:6" @@ -559238,6 +569884,7 @@ github.com/grasilife/grasilife-ui,num_dependents_deps.dev:0 github.com/grasilife/stenciljs-test,num_dependents_deps.dev:0 github.com/grasilife/vue-design,num_dependents_deps.dev:0 github.com/grasilife/vue-preset,num_dependents_deps.dev:0 +github.com/grass-growth/ssh-private-key-action, github.com/grassator/benign,num_dependents_deps.dev:0 github.com/grassator/docpad-plugin-datefromfilename,num_dependents_deps.dev:0 github.com/grassator/happened,num_dependents_deps.dev:0 @@ -559257,7 +569904,10 @@ github.com/grassator/webpack-extract-translation-keys,num_dependents_deps.dev:0 github.com/grasscy/gemini,num_dependents_deps.dev:0 github.com/grasscy/leetcode,num_dependents_deps.dev:0 github.com/grassedge/detect-pull-reqs,num_dependents_deps.dev:0 +github.com/grassedge/generate-plantuml-action, github.com/grassedge/git-pr-release,num_dependents_deps.dev:0 +github.com/grassedge/git-pr-release-action, +github.com/grassedge/issue-backlink-to-wrike-action, github.com/grassedge/node-config-refactor,num_dependents_deps.dev:0 github.com/grasses/mongosion, github.com/grasseum/grass_composer,num_dependents_deps.dev:0 @@ -559368,6 +570018,7 @@ github.com/gravitational/rigging,num_dependents_deps.dev:0 github.com/gravitational/robotest,num_dependents_deps.dev:0 github.com/gravitational/roundtrip,num_dependents_deps.dev:5 github.com/gravitational/satellite,num_dependents_deps.dev:0 +github.com/gravitational/setup-gamma, github.com/gravitational/stolon,num_dependents_deps.dev:0 github.com/gravitational/teleport,"criticality_score:0.645020,num_dependents_deps.dev:0" github.com/gravitational/teleport-plugins,num_dependents_deps.dev:0 @@ -559543,6 +570194,7 @@ github.com/grazianobolla/wildermyth-translator,num_dependents_deps.dev:0 github.com/grbac/grbac,num_dependents_deps.dev:0 github.com/grbit/ahocorasick,num_dependents_deps.dev:0 github.com/grbl/grbl,criticality_score:0.408590 +github.com/grbnb/random-workflow-cron, github.com/grbr/filtra,num_dependents_deps.dev:0 github.com/grbr/node-stackhash,num_dependents_deps.dev:0 github.com/grbr/s3og,num_dependents_deps.dev:0 @@ -559672,6 +570324,7 @@ github.com/greasemonkey/gm4-polyfill,num_dependents_deps.dev:0 github.com/greasemonkey/greasemonkey,criticality_score:0.420130 github.com/great-expectations/airflow-provider-great-expectations, github.com/great-expectations/great_expectations,criticality_score:0.623330 +github.com/great-expectations/great_expectations_action, github.com/great-lakes/botbuilder-agent,num_dependents_deps.dev:0 github.com/great-majority/KoikatuCharaLoader, github.com/great-majority/KoikatuWebAPI, @@ -559781,10 +570434,12 @@ github.com/greboid/irc-bot,num_dependents_deps.dev:0 github.com/greboid/irc-github,num_dependents_deps.dev:0 github.com/greboid/irc-goplum,num_dependents_deps.dev:0 github.com/greboid/irc-webhook,num_dependents_deps.dev:0 +github.com/greboid/issue-milestone-manager, github.com/greboid/newtab,num_dependents_deps.dev:0 github.com/greboid/portusproxy,num_dependents_deps.dev:0 github.com/greboid/puzzles,num_dependents_deps.dev:0 github.com/greboid/registryauth,num_dependents_deps.dev:0 +github.com/grebois/kube-tools, github.com/grecinto/carinventory,num_dependents_deps.dev:0 github.com/greckov/keli_scoreboard_driver, github.com/gredler/jdk9-png-writer-backport,num_dependents_deps.dev:0 @@ -559851,6 +570506,9 @@ github.com/green-bot/watson-translate-stream,num_dependents_deps.dev:0 github.com/green-coder/cdc,num_dependents_deps.dev:0 github.com/green-coder/cdc-rs,num_dependents_deps.dev:0 github.com/green-coder/girouette,num_dependents_deps.dev:0 +github.com/green-coding-berlin/eco-ci-activity-checker, +github.com/green-coding-berlin/eco-ci-energy-estimation, +github.com/green-coding-berlin/green-ci-activity-checker, github.com/green-element-chain/gelchain,num_dependents_deps.dev:0 github.com/green-elephant/PahomJS,num_dependents_deps.dev:0 github.com/green-fox-academy/huli-filesystem-nodejs,num_dependents_deps.dev:0 @@ -560104,6 +570762,7 @@ github.com/greenlaw110/play-morphia,num_dependents_deps.dev:0 github.com/greenlaw110/spring-aaa,num_dependents_deps.dev:0 github.com/greenlaw110/spring-rythm,num_dependents_deps.dev:0 github.com/greenleafs1/footsites,num_dependents_deps.dev:0 +github.com/greenled/no-merge-commits-check, github.com/greenlemonA/datePicker,num_dependents_deps.dev:0 github.com/greenlight-ci/cli,num_dependents_deps.dev:0 github.com/greenlight-ci/config-loader,num_dependents_deps.dev:0 @@ -560262,6 +570921,7 @@ github.com/greenwheat/vue-cli-plugin-build-zip,num_dependents_deps.dev:0 github.com/greenwoodcm/dict-validator, github.com/greenyas/inferno-svgr,num_dependents_deps.dev:0 github.com/greenygh0st/angular-file-input,num_dependents_deps.dev:0 +github.com/greenygh0st/net-proj-release-version, github.com/greenygh0st/ng-timespan,num_dependents_deps.dev:0 github.com/greenyouse/backstop-reporter,num_dependents_deps.dev:0 github.com/greenyouse/bottom-button,num_dependents_deps.dev:0 @@ -560392,6 +571052,7 @@ github.com/gregchapman-dev/converter21, github.com/gregchapman-dev/musicdiff, github.com/gregchu/python-serializers, github.com/gregcockroft/AndroidMath,Google +github.com/gregdavill/setup-riscv-gnu-toolchain, github.com/gregdaynes/chip-log, github.com/gregdaynes/rmq-exchange,num_dependents_deps.dev:0 github.com/gregdel/pushover,num_dependents_deps.dev:5 @@ -560620,6 +571281,10 @@ github.com/gregoor/hubup,num_dependents_deps.dev:0 github.com/gregor-muellegger/django-publicmanager, github.com/gregoralbrecht/eslint-config,num_dependents_deps.dev:0 github.com/gregoranders/arts,num_dependents_deps.dev:0 +github.com/gregoranders/nodejs-create-release, +github.com/gregoranders/nodejs-prepare-asset, +github.com/gregoranders/nodejs-project-info, +github.com/gregoranders/nodejs-upload-asset, github.com/gregoranders/react-spinner,num_dependents_deps.dev:0 github.com/gregoranders/ts-csv,num_dependents_deps.dev:0 github.com/gregoranders/ts-jhu-covid19,num_dependents_deps.dev:0 @@ -560661,6 +571326,7 @@ github.com/gregoryfm/spotify-wrapper,num_dependents_deps.dev:0 github.com/gregoryfranklin/jaeger,num_dependents_deps.dev:0 github.com/gregorygonzoland/lodown,num_dependents_deps.dev:0 github.com/gregoryguillou/go-git-http-xfer,num_dependents_deps.dev:0 +github.com/gregoryhunt/ticket-check-action, github.com/gregoryjenk/GregoryJenk.Aesthetic,num_dependents_deps.dev:0 github.com/gregoryjjb/plotfast,num_dependents_deps.dev:0 github.com/gregoryjjb/storetex,num_dependents_deps.dev:0 @@ -560734,6 +571400,8 @@ github.com/gregschmit/drf-action-serializer, github.com/gregschmit/puflib, github.com/gregschmit/rails-rest-framework,num_dependents_deps.dev:0 github.com/gregschmit/rest-scaffold,num_dependents_deps.dev:0 +github.com/gregsdennis/dependencies-action, +github.com/gregsdennis/minimum-open-time, github.com/gregsexton/gitv,criticality_score:0.329210 github.com/gregsoares/react-test-ezwrap,num_dependents_deps.dev:0 github.com/gregsqueeb/greg-slider,num_dependents_deps.dev:0 @@ -560765,6 +571433,10 @@ github.com/gregtuc/StockSocket,num_dependents_deps.dev:0 github.com/gregtuc/realtor-fetcher,num_dependents_deps.dev:0 github.com/gregtyler/girders,num_dependents_deps.dev:0 github.com/greguintow/automarker,num_dependents_deps.dev:0 +github.com/greguintow/concat-string-action, +github.com/greguintow/get-diff-action, +github.com/greguintow/jest-coverage-comment, +github.com/greguintow/lcov-reporter-action, github.com/gregunz/{name}, github.com/greguz/fastify-dynareg,num_dependents_deps.dev:0 github.com/greguz/fastify-kubernetes,num_dependents_deps.dev:0 @@ -560814,6 +571486,7 @@ github.com/gregzanch/functional-acoustics,num_dependents_deps.dev:0 github.com/gregzhang616/gemini-checkbox,num_dependents_deps.dev:0 github.com/gregzhang616/gemini-radiobox,num_dependents_deps.dev:0 github.com/gregzhang616/jquery-datepicker,num_dependents_deps.dev:0 +github.com/gregziegan/fetch-latest-release, github.com/gregzuro/mqtt-client,num_dependents_deps.dev:0 github.com/grei-ufc/mygrid, github.com/greian/sponline,num_dependents_deps.dev:0 @@ -560937,10 +571610,12 @@ github.com/gretzky/spotify-audio-api,num_dependents_deps.dev:0 github.com/gretzky/standardize.css,num_dependents_deps.dev:0 github.com/gretzky/styled-components-animations,num_dependents_deps.dev:0 github.com/greums/robotframework-websocketclient, +github.com/greut/eclint-action, github.com/greut/nomad,num_dependents_deps.dev:0 github.com/greut/travisbot, github.com/greuze/consul-to-env,num_dependents_deps.dev:0 github.com/greven/chronos-ui,num_dependents_deps.dev:0 +github.com/grevend/moscow-prioritization, github.com/grevolution/ugit,num_dependents_deps.dev:0 github.com/grevory/angular-local-storage,"criticality_score:0.337190,num_dependents_deps.dev:41" github.com/grevych/mandado-auth,num_dependents_deps.dev:0 @@ -561083,6 +571758,7 @@ github.com/greyzeng/hello-go,num_dependents_deps.dev:0 github.com/greyzmeem/django-ssr, github.com/greyzmeem/python-logging-loki, github.com/greyzor/aisimplekit, +github.com/grezar/codeownerizer, github.com/grf-labs/grf,criticality_score:0.417150 github.com/grfrederic/deconvolution, github.com/grg121/xontrib-syslog-shell-profiler, @@ -561291,6 +571967,9 @@ github.com/griffindy/cookie_monster,num_dependents_deps.dev:0 github.com/griffinfoster/SWHT, github.com/griffinfoster/issformat, github.com/griffinfoster/shapelets, +github.com/griffinkelly/django-coveragepy-github-action, +github.com/griffinkelly/django-test-action, +github.com/griffinkelly/mysql-python, github.com/griffinmyers/hemingway,num_dependents_deps.dev:0 github.com/griffinpf/bulketl, github.com/griffinqiu/letteravatar,num_dependents_deps.dev:0 @@ -561669,7 +572348,13 @@ github.com/grisu-io/usvcs,num_dependents_deps.dev:0 github.com/grisu48/gopenqa,num_dependents_deps.dev:0 github.com/grisu48/openqa-mon,num_dependents_deps.dev:0 github.com/grisu48/pasta,num_dependents_deps.dev:0 +github.com/grisumbras/conan-export-subdirs, +github.com/grisumbras/conan-promote, +github.com/grisumbras/conan-upload, github.com/grisumbras/hapis, +github.com/grisumbras/locate-conan-package, +github.com/grisumbras/run-cpt, +github.com/grisumbras/store-env, github.com/grit96/async-tools,num_dependents_deps.dev:0 github.com/grit96/gulp-md-template,num_dependents_deps.dev:0 github.com/grit96/gulp-template-html,num_dependents_deps.dev:0 @@ -561748,6 +572433,7 @@ github.com/grmlin/node-wsl,num_dependents_deps.dev:0 github.com/grmlin/watched,num_dependents_deps.dev:0 github.com/grmmph/socket-graffiti,num_dependents_deps.dev:0 github.com/grmmvv/heroku-cli-wrapper, +github.com/grmoon/autoupdater, github.com/grmrgecko/asterisk-outgoing-call-api,num_dependents_deps.dev:0 github.com/grnadav/css2js,num_dependents_deps.dev:0 github.com/grncdr/assert-in-order, @@ -561792,6 +572478,7 @@ github.com/grncdr/update-package-json,num_dependents_deps.dev:0 github.com/grncdr/uri-template,num_dependents_deps.dev:116 github.com/grncdr/web-pockets,num_dependents_deps.dev:0 github.com/grncdr/yafsm,num_dependents_deps.dev:84 +github.com/grndvl1/appcenter-distribute-action, github.com/grnet/bmcmanager, github.com/grnet/cdmi-spec,num_dependents_deps.dev:0 github.com/grnet/juniper-nxpy, @@ -561962,6 +572649,8 @@ github.com/grokwithrahul/sketchify, github.com/grokzen/pyi, github.com/grolea/aimelo-nest,num_dependents_deps.dev:0 github.com/grolip/fich, +github.com/grolston/cfn-security, +github.com/grolston/guard-action, github.com/grom1124/filemanager,num_dependents_deps.dev:0 github.com/grom194/project-lvl1-s98,num_dependents_deps.dev:0 github.com/grom194/project-lvl2-s121,num_dependents_deps.dev:0 @@ -562031,6 +572720,7 @@ github.com/groner/alternator.py, github.com/grongor/go-snmp-proxy,num_dependents_deps.dev:0 github.com/grongor/panicwatch,num_dependents_deps.dev:0 github.com/grongworks/atbl,num_dependents_deps.dev:0 +github.com/gronitab/docker-swarm-deploy-action, github.com/gronke/es6-express-api,num_dependents_deps.dev:0 github.com/gronke/node-commit-status-reporter,num_dependents_deps.dev:0 github.com/gronke/py-changelogmd, @@ -562095,6 +572785,7 @@ github.com/groovetch/react-native-spring-scrollview,num_dependents_deps.dev:0 github.com/grooveyryan/spalindrome,num_dependents_deps.dev:0 github.com/groovili/gogtrends,num_dependents_deps.dev:0 github.com/grooviter/asteroid,num_dependents_deps.dev:0 +github.com/groovy-sky/gmuv, github.com/groovy-sky/self-k8s,num_dependents_deps.dev:0 github.com/groovy/GMavenPlus,num_dependents_deps.dev:0 github.com/groovy/gmaven,num_dependents_deps.dev:360 @@ -562124,6 +572815,7 @@ github.com/groshproject/grosh-core,num_dependents_deps.dev:0 github.com/groskilled/on_dirait_de_la_bite,num_dependents_deps.dev:0 github.com/groskilled/test_gin,num_dependents_deps.dev:0 github.com/grossadamm/has_specs,num_dependents_deps.dev:0 +github.com/grossamos/rudra, github.com/grossb1/vue-test-current-time,num_dependents_deps.dev:0 github.com/grossbart/refreshable-remote-data-ts, github.com/grosser/fast_gettext,criticality_score:0.433390 @@ -562206,6 +572898,7 @@ github.com/group-butler/GroupButler,criticality_score:0.354540 github.com/group-hub/markdown-html,num_dependents_deps.dev:0 github.com/group6tech/grunt-squirrel-releasify,num_dependents_deps.dev:0 github.com/groupI/res, +github.com/grouparoo/cloud-action, github.com/grouparoo/grouparoo,"criticality_score:0.442940,num_dependents_deps.dev:2" github.com/grouparoo/node-marketo,num_dependents_deps.dev:0 github.com/groupbool/album-player,num_dependents_deps.dev:0 @@ -562341,6 +573034,7 @@ github.com/groupher/link,num_dependents_deps.dev:0 github.com/groupher/react-editor.js,num_dependents_deps.dev:0 github.com/grouplens/lenskit,num_dependents_deps.dev:819 github.com/groupme/documentdb-go,num_dependents_deps.dev:0 +github.com/groupninemedia/filter-git-diff, github.com/groupon-testium/img-diff, github.com/groupon-testium/testium, github.com/groupon-testium/webdriver-http-sync,num_dependents_deps.dev:0 @@ -562516,8 +573210,11 @@ github.com/grownseed/hachi,num_dependents_deps.dev:0 github.com/grownseed/haibu-ishiki,num_dependents_deps.dev:0 github.com/growombud/omnesiac,num_dependents_deps.dev:0 github.com/growombud/prolly,num_dependents_deps.dev:0 +github.com/growrk/action-grk-monorepo, +github.com/growrk/action-set-environment, github.com/growse/owntracks-pg-recorder,num_dependents_deps.dev:0 github.com/growse/www.growse.com,num_dependents_deps.dev:0 +github.com/growse/xunit-mattermost-reporter, github.com/growth-digital/droidekas,num_dependents_deps.dev:0 github.com/growth-team/pygrowth, github.com/growth2/lazybones-mybatis-generator-plugin,num_dependents_deps.dev:0 @@ -562599,6 +573296,7 @@ github.com/grptx/express-http-cache-middleware,num_dependents_deps.dev:0 github.com/grptx/gx-redmine,num_dependents_deps.dev:0 github.com/grptx/winston-transport-logstash,num_dependents_deps.dev:0 github.com/grq/gulp-selfinvoker,num_dependents_deps.dev:0 +github.com/grramos/action-named-checkzone, github.com/grrizzly/glob-expander,num_dependents_deps.dev:0 github.com/grrizzly/nsp-reporter-multi,num_dependents_deps.dev:0 github.com/grro/OpenhabWebThingPushGateway, @@ -562749,6 +573447,8 @@ github.com/grumble/libgen.js,num_dependents_deps.dev:0 github.com/grumblechat/server,num_dependents_deps.dev:0 github.com/grumd/many-promises,num_dependents_deps.dev:0 github.com/grumpishmermaids/grump,num_dependents_deps.dev:0 +github.com/grumpy-programmer/conventional-commits-semver-release, +github.com/grumpy-programmer/setup-k8s-kustomize, github.com/grumpyTofu/mui-editor,num_dependents_deps.dev:0 github.com/grumpydev/TinyIoC,criticality_score:0.424220 github.com/grumpydev22/grunt-combine-js,num_dependents_deps.dev:0 @@ -562871,11 +573571,13 @@ github.com/gruntwork-io/health-checker,num_dependents_deps.dev:0 github.com/gruntwork-io/helm-kubernetes-services,num_dependents_deps.dev:0 github.com/gruntwork-io/kafka-health-check,num_dependents_deps.dev:0 github.com/gruntwork-io/kubergrunt,num_dependents_deps.dev:0 +github.com/gruntwork-io/patcher-action, github.com/gruntwork-io/terraform-aws-couchbase,num_dependents_deps.dev:0 github.com/gruntwork-io/terraform-google-gke,"criticality_score:0.454190,num_dependents_deps.dev:0" github.com/gruntwork-io/terraform-google-sql,num_dependents_deps.dev:0 github.com/gruntwork-io/terraform-test,num_dependents_deps.dev:0 github.com/gruntwork-io/terragrunt,"criticality_score:0.627510,num_dependents_deps.dev:8" +github.com/gruntwork-io/terragrunt-action, github.com/gruntwork-io/terragrunt-infrastructure-live-example,criticality_score:0.299170 github.com/gruntwork-io/terratest,"criticality_score:0.717900,num_dependents_deps.dev:61" github.com/grupapracuj/iislog-prometheus-exporter,num_dependents_deps.dev:0 @@ -562884,6 +573586,7 @@ github.com/grupo-exito-ecommerce/exito-cli-ts, github.com/grupo-exito-ecommerce/toolbelt, github.com/grupo-exito-ecommerce/types-exito,num_dependents_deps.dev:0 github.com/grupo-haze/mtasa-api,num_dependents_deps.dev:0 +github.com/grupo-neolife/eks-kubectl-action, github.com/grupo-sbf/airflow-team-clientes, github.com/grupo-sbf/data-libs, github.com/grupoandrademartins/totvserprm, @@ -562905,6 +573608,8 @@ github.com/grupotaric/matchers, github.com/grupotaric/nose-xvfb, github.com/grupozap/ligeiro,num_dependents_deps.dev:0 github.com/grupozap/vue-livr,num_dependents_deps.dev:0 +github.com/gruppe-adler/action-release-to-steam-ws, +github.com/gruppe-adler/action-release-with-hemtt, github.com/gruppe-adler/grad-introCam,num_dependents_deps.dev:0 github.com/gruppe-adler/grad-sectors,num_dependents_deps.dev:0 github.com/gruppe-adler/navbar-component,num_dependents_deps.dev:0 @@ -562919,6 +573624,7 @@ github.com/grupy-sanca/dojo-toolkit, github.com/grusbri/iq-webhook-receiver,num_dependents_deps.dev:0 github.com/grusch-it/alfred-pinboard,num_dependents_deps.dev:0 github.com/grusheva/infrastructure-task-01,num_dependents_deps.dev:0 +github.com/grust101/flic_triggered_action, github.com/grutts/siri, github.com/grutty-sf/gite,num_dependents_deps.dev:0 github.com/gruuf/go-mediainfo,num_dependents_deps.dev:0 @@ -563000,6 +573706,7 @@ github.com/gryphonmyers/paper-tree,num_dependents_deps.dev:0 github.com/gryphonmyers/pug-multiple-basedirs-plugin,num_dependents_deps.dev:2 github.com/gryphonmyers/pugvdomify,num_dependents_deps.dev:0 github.com/gryphonmyers/weddell-static-site-generator,num_dependents_deps.dev:0 +github.com/gryphonshafer/GitHub-MD-Book, github.com/grz0zrg/ccwt.js,num_dependents_deps.dev:0 github.com/grzanka/python-cookie06, github.com/grzany/exercism-go,num_dependents_deps.dev:0 @@ -563156,6 +573863,7 @@ github.com/gsantiago/small-supplant,num_dependents_deps.dev:0 github.com/gsantiago/subtitle.js,num_dependents_deps.dev:12 github.com/gsantiago/use-cep,num_dependents_deps.dev:0 github.com/gsantner/markor,criticality_score:0.541530 +github.com/gsaraf/aws-s3-github-action, github.com/gsarfati/loopback-connector-sns,num_dependents_deps.dev:0 github.com/gsasouza/easy-crud,num_dependents_deps.dev:0 github.com/gsauthof/adf2pdf, @@ -563184,6 +573892,8 @@ github.com/gschleic/engage-templates,num_dependents_deps.dev:0 github.com/gschleic/fuseric,num_dependents_deps.dev:0 github.com/gscho/dockerfile-rb,num_dependents_deps.dev:0 github.com/gscho/hab_version_monitor,num_dependents_deps.dev:0 +github.com/gscho/setup-cloud-custodian, +github.com/gscho/setup-state-tool, github.com/gschool/glearn-cli,num_dependents_deps.dev:0 github.com/gschramm/pyapetnet, github.com/gschramm/pymirc, @@ -563224,6 +573934,7 @@ github.com/gserrano/smeagol,num_dependents_deps.dev:0 github.com/gserranonajera/pyesia, github.com/gserrg/v-bem, github.com/gseshadri/bitcoinity,num_dependents_deps.dev:0 +github.com/gsf/aws-params-env-action, github.com/gsf/deva,num_dependents_deps.dev:0 github.com/gsf/elasticsearch-doc-stream,num_dependents_deps.dev:0 github.com/gsf/elasticsearch-each,num_dependents_deps.dev:0 @@ -563377,6 +574088,7 @@ github.com/gsmuralee/deep-object-find,num_dependents_deps.dev:0 github.com/gsnedders/pytest-expect, github.com/gsnedders/python-webencodings,Google github.com/gsnedders/wcag-contrast-ratio, +github.com/gsnegovskiy/uuid-action, github.com/gsoc-cn/gsoc-cn,criticality_score:0.300040 github.com/gsoft-inc/azure-devops-npm-auth,num_dependents_deps.dev:0 github.com/gsoft-inc/craco,criticality_score:0.491100 @@ -563478,6 +574190,7 @@ github.com/gstack/atom-browser-webview,num_dependents_deps.dev:0 github.com/gstack/localdiff,num_dependents_deps.dev:0 github.com/gstack/node-sexstatic,num_dependents_deps.dev:1 github.com/gstack/watch-http-server,num_dependents_deps.dev:0 +github.com/gstackio/trigger-concourse-resource-check-action, github.com/gstaff/flask-ngrok, github.com/gstaff/just-ship-it, github.com/gstaff/test_release, @@ -563490,6 +574203,7 @@ github.com/gstamatelat/simple-graph,num_dependents_deps.dev:0 github.com/gstamatelat/stats,num_dependents_deps.dev:0 github.com/gstark/tesla-api,num_dependents_deps.dev:0 github.com/gstaubli/runtime_stats, +github.com/gstavrinos/ros2_kart_racing_action, github.com/gstelmaczonek/rollup-plugin-stylus-compiler,num_dependents_deps.dev:0 github.com/gsterczewski/coding_kata,num_dependents_deps.dev:0 github.com/gsterjov/phoenix-channels-rs,num_dependents_deps.dev:0 @@ -563628,6 +574342,7 @@ github.com/gtarsia/abides,num_dependents_deps.dev:0 github.com/gtasautumn/vaquita,num_dependents_deps.dev:0 github.com/gtaschuk/bitmask-rbac,num_dependents_deps.dev:0 github.com/gtaschuk/ethereum-identicon, +github.com/gtaschuk/graph-deploy, github.com/gtaschuk/identicon,num_dependents_deps.dev:0 github.com/gtatiya/gym-novel-gridworlds, github.com/gtaylor/EVE-Market-Data-Structures, @@ -563989,6 +574704,7 @@ github.com/guadalupe-gop/ramdom-messages,num_dependents_deps.dev:0 github.com/guadalupeperezb/react-native-picker-scrollview,num_dependents_deps.dev:0 github.com/guader/rain,num_dependents_deps.dev:0 github.com/guaguaguaxia/gonoob,num_dependents_deps.dev:0 +github.com/guahanweb/action-nodejs-gh-pages, github.com/guahanweb/guahanweb,num_dependents_deps.dev:0 github.com/guahanweb/hapi-jwt-plugin,num_dependents_deps.dev:0 github.com/guaidashu/go_delay_queue,num_dependents_deps.dev:0 @@ -564110,6 +574826,8 @@ github.com/guangwong/front-build,num_dependents_deps.dev:0 github.com/guangwong/node-llvm-x,num_dependents_deps.dev:0 github.com/guangyang/har-to-swagger,num_dependents_deps.dev:0 github.com/guangzan/emoji-popover,num_dependents_deps.dev:0 +github.com/guangzhengli/files-editor-action, +github.com/guangzhengli/wecom-notification-action, github.com/guangzhengyu/swagger-jssdk-codegen,num_dependents_deps.dev:0 github.com/guangzhengyu/swagger-request,num_dependents_deps.dev:0 github.com/guanjiaming/native-scroll,num_dependents_deps.dev:0 @@ -564354,6 +575072,7 @@ github.com/guardiaocl/guardiaocl-servers, github.com/guardicode/centra-py-client, github.com/guardicore/angular2-template-loader,num_dependents_deps.dev:0 github.com/guardicore/monkey,criticality_score:0.515560 +github.com/guardio-nick/github-build-stats-to-dd, github.com/guardjs/extatistic, github.com/guardjs/npmExtatistic,num_dependents_deps.dev:0 github.com/guardline-vpn/wireguard-tools,num_dependents_deps.dev:0 @@ -564391,6 +575110,7 @@ github.com/gubareve/mathtool,num_dependents_deps.dev:0 github.com/gubareve/powerschool-learning-api, github.com/gubareve/py-blocktext, github.com/gubareve/pysystems, +github.com/gubareve/snowflake-github-action, github.com/gubareve/x-squared, github.com/gubatron/aoc,num_dependents_deps.dev:0 github.com/gubitech/gurl-go,num_dependents_deps.dev:0 @@ -564406,6 +575126,8 @@ github.com/gucci/emailcli, github.com/guccialex/orthogonal_rotation,num_dependents_deps.dev:0 github.com/guccicucaracha/procmon,num_dependents_deps.dev:0 github.com/guchaocharlie/DemoSVG,num_dependents_deps.dev:0 +github.com/guchaocharlie/comment-pr, +github.com/guchaocharlie/ga-slack-notification, github.com/guchaocharlie/test-senmatic-release,num_dependents_deps.dev:0 github.com/guchdes/django-java,num_dependents_deps.dev:0 github.com/gucheen/FetchQL,num_dependents_deps.dev:0 @@ -564519,6 +575241,7 @@ github.com/guemues/german-game-tournament, github.com/guemues/hue-changer, github.com/guemues/python-instagram-fixed, github.com/guenbakku/mkdocs-windmillex, +github.com/guenchi/setup-scheme, github.com/guendto/jomiel, github.com/guendto/jomiel-comm, github.com/guendto/jomiel-kore, @@ -564646,6 +575369,7 @@ github.com/gugalnikov/presto-consul-connect,num_dependents_deps.dev:0 github.com/gugamm/apollo-mutation-state,num_dependents_deps.dev:0 github.com/gugamm/redux-api-mapper,num_dependents_deps.dev:0 github.com/gugamm/use-api,num_dependents_deps.dev:0 +github.com/guganabu/github-action, github.com/gugaofeng/wx-check-url,num_dependents_deps.dev:0 github.com/gugarosa/dualing, github.com/gugarosa/learnergy, @@ -564688,6 +575412,8 @@ github.com/gugliio/go-platzi,num_dependents_deps.dev:0 github.com/gugliio/golang,num_dependents_deps.dev:0 github.com/gugocharade/electron-data-holder,num_dependents_deps.dev:0 github.com/gugod/App-perlbrew,criticality_score:0.582680 +github.com/gugod/action-perlcritic, +github.com/gugod/actions-perlcritic, github.com/gugod/bin,num_dependents_deps.dev:0 github.com/gugohome/web-cache-rpc,num_dependents_deps.dev:0 github.com/gugsrs/hc,num_dependents_deps.dev:0 @@ -564696,6 +575422,11 @@ github.com/gugu/fluxstore2,num_dependents_deps.dev:0 github.com/gugu927/wideq, github.com/guguaihaha/socks,num_dependents_deps.dev:0 github.com/guguaihaha/zr-build,num_dependents_deps.dev:0 +github.com/guguducken/change-paths-action, +github.com/guguducken/issue-time-action, +github.com/guguducken/label-size-action, +github.com/guguducken/milestone-add-action, +github.com/guguducken/workflow-rerun-action, github.com/gugugu689/data-structure,num_dependents_deps.dev:0 github.com/gugugu689/homework,num_dependents_deps.dev:0 github.com/guguji/dataoke,num_dependents_deps.dev:0 @@ -564749,6 +575480,7 @@ github.com/guiaramos/bookstore,num_dependents_deps.dev:0 github.com/guiaramos/go-meower,num_dependents_deps.dev:0 github.com/guiassemany/angular-reverse-geocode,num_dependents_deps.dev:0 github.com/guiassemany/stick-to-me,num_dependents_deps.dev:0 +github.com/guiavet-org/terraform-pr-multipledir, github.com/guibacellar/OSIx, github.com/guibbs/safe-url-input-checker,num_dependents_deps.dev:0 github.com/guibes/graphql-simple-api,num_dependents_deps.dev:0 @@ -564756,6 +575488,8 @@ github.com/guibirow/apigen,num_dependents_deps.dev:0 github.com/guibperes/react-my-component-boilerplate,num_dependents_deps.dev:0 github.com/guibperes/react-my-component-typescript-boilerplate,num_dependents_deps.dev:0 github.com/guibranco/BancosBrasileiros,num_dependents_deps.dev:0 +github.com/guibranco/github-file-reader-action-v2, +github.com/guibranco/github-status-action-v2, github.com/guibranco/holiday-api-rust,num_dependents_deps.dev:0 github.com/guibranco/jQuery.ListaDeCompras,num_dependents_deps.dev:0 github.com/guibranco/viacep-rs,num_dependents_deps.dev:0 @@ -564784,8 +575518,10 @@ github.com/guidb/google-sheets,num_dependents_deps.dev:0 github.com/guidde/react-guidde-widget,num_dependents_deps.dev:0 github.com/guidebee/openapi-flow-codegen-apisauce,num_dependents_deps.dev:0 github.com/guidebee/swagger-saga-client,num_dependents_deps.dev:0 +github.com/guidecx/action.pr-title-validation, github.com/guideli/guideli-bundler,num_dependents_deps.dev:0 github.com/guideline-tech/fixtury,num_dependents_deps.dev:0 +github.com/guidepup/setup-action, github.com/guidesmiths/acdc,num_dependents_deps.dev:0 github.com/guidesmiths/adblock-plus-crx,num_dependents_deps.dev:0 github.com/guidesmiths/block-sequence,num_dependents_deps.dev:0 @@ -565010,6 +575746,7 @@ github.com/guilhem/egress-proxy-operator,num_dependents_deps.dev:0 github.com/guilhem/freeipa-issuer,num_dependents_deps.dev:0 github.com/guilhem/goproxy,num_dependents_deps.dev:0 github.com/guilhem/mergo,num_dependents_deps.dev:0 +github.com/guilhem/rss-issues-action, github.com/guilhembn/python-imbdquotes, github.com/guilherme-andrade/acts_as_living,num_dependents_deps.dev:0 github.com/guilherme-andrade/objectified,num_dependents_deps.dev:0 @@ -565126,6 +575863,7 @@ github.com/guilhermestorck/lazy-android-programmer,num_dependents_deps.dev:0 github.com/guilhermethales/web-components,num_dependents_deps.dev:0 github.com/guilhermetod/concat-webpack-plugin,num_dependents_deps.dev:0 github.com/guilhermetod/gas-client,num_dependents_deps.dev:0 +github.com/guilhermetod/semantic-release-notes-preview, github.com/guilhermevidal/docker-cat,num_dependents_deps.dev:0 github.com/guilhermevidal/docker-image-latest-version,num_dependents_deps.dev:0 github.com/guilhermevidal/node-dependencies-dockerfile-splitter,num_dependents_deps.dev:0 @@ -565345,6 +576083,7 @@ github.com/guillim/vue2-leaflet-prunecluster,num_dependents_deps.dev:0 github.com/guillochon/mosfit, github.com/guillon/xmlplain, github.com/guillonapa/NPM-Resume,num_dependents_deps.dev:0 +github.com/guillonapa/gh-action-maven-cli, github.com/guillotinaweb/aioclustermanager, github.com/guillotinaweb/aiofluent, github.com/guillotinaweb/angular-traversal, @@ -565373,6 +576112,7 @@ github.com/guiloga/guirpc, github.com/guilospanck/blockchainingo,num_dependents_deps.dev:0 github.com/guilospanck/golanguageessentials,num_dependents_deps.dev:0 github.com/guilouro/formcat,num_dependents_deps.dev:0 +github.com/guilouro/multiple-repositories-dispatch, github.com/guilouro/redux-global-loader,num_dependents_deps.dev:0 github.com/guilro/ansible-dummy-package,num_dependents_deps.dev:0 github.com/guilro/cache-cache,num_dependents_deps.dev:0 @@ -565533,8 +576273,10 @@ github.com/guivin/dht-prometheus-exporter,num_dependents_deps.dev:0 github.com/guivl/aws_works, github.com/guiwitz/microfilm, github.com/guiwitz/morphodynamics, +github.com/guix77/drupal-rector-github-action, github.com/guix77/erc735js,num_dependents_deps.dev:0 github.com/guix77/mocha-truffle-reporter,num_dependents_deps.dev:1 +github.com/guix77/phpcs-drupal-action, github.com/guix77/react-blockcerts,num_dependents_deps.dev:0 github.com/guix77/react-openbadges,num_dependents_deps.dev:0 github.com/guix77/truffle-cost,num_dependents_deps.dev:1 @@ -565610,10 +576352,12 @@ github.com/gulien/fizz-buzz,num_dependents_deps.dev:0 github.com/gulien/go-update,num_dependents_deps.dev:0 github.com/gulitsky/hyper-cyanide,num_dependents_deps.dev:0 github.com/guliuli/blue-poem,num_dependents_deps.dev:0 +github.com/gulivan/get-changed-files, github.com/gullerya/callout,num_dependents_deps.dev:0 github.com/gullerya/cluster-tasks-service,num_dependents_deps.dev:0 github.com/gullerya/data-tier,num_dependents_deps.dev:0 github.com/gullerya/data-tier-list,num_dependents_deps.dev:0 +github.com/gullerya/db-setup-action, github.com/gullerya/elsec,num_dependents_deps.dev:0 github.com/gullerya/i18n,num_dependents_deps.dev:0 github.com/gullerya/just-test, @@ -565737,6 +576481,7 @@ github.com/gulpjs/bach,num_dependents_deps.dev:8620 github.com/gulpjs/better-stats,num_dependents_deps.dev:0 github.com/gulpjs/clone-buffer,num_dependents_deps.dev:49440 github.com/gulpjs/conventional-changelog-gulp,num_dependents_deps.dev:0 +github.com/gulpjs/copy-prop, github.com/gulpjs/copy-props, github.com/gulpjs/default-resolution,num_dependents_deps.dev:7822 github.com/gulpjs/each-props, @@ -565765,6 +576510,7 @@ github.com/gulpjs/lead,num_dependents_deps.dev:11044 github.com/gulpjs/liftoff, github.com/gulpjs/mute-stdout,num_dependents_deps.dev:7992 github.com/gulpjs/now-and-later,num_dependents_deps.dev:11380 +github.com/gulpjs/ordered-read-streams, github.com/gulpjs/parse-node-version,num_dependents_deps.dev:64736 github.com/gulpjs/plugin-error,num_dependents_deps.dev:11922 github.com/gulpjs/rechoir, @@ -565855,6 +576601,7 @@ github.com/gumieri/gumieri.js,num_dependents_deps.dev:0 github.com/gumieri/lib2cli,num_dependents_deps.dev:0 github.com/gumieri/p,num_dependents_deps.dev:0 github.com/gumieri/wayhelp,num_dependents_deps.dev:0 +github.com/gumil/Detekt-Action, github.com/guming/eksworkshop-app,num_dependents_deps.dev:0 github.com/gumkins/winston-slack-webhook-transport,num_dependents_deps.dev:0 github.com/gumlet/cacheable-request,num_dependents_deps.dev:0 @@ -565982,6 +576729,7 @@ github.com/gunark/rubycas-server,num_dependents_deps.dev:0 github.com/gunarssimkuns/webpack-media-query-split-plugin,num_dependents_deps.dev:0 github.com/gunavel/react-material-floating-button,num_dependents_deps.dev:0 github.com/gunawan-d/belajar-docker,num_dependents_deps.dev:0 +github.com/gunawanpras/open-issue, github.com/gunawanwijaya/minami,num_dependents_deps.dev:0 github.com/gunawanwijaya/simple-cache,num_dependents_deps.dev:0 github.com/gunawanwijaya/utils,num_dependents_deps.dev:0 @@ -566078,6 +576826,7 @@ github.com/gunjunlee/shy, github.com/gunk/gunk,"criticality_score:0.317510,num_dependents_deps.dev:0" github.com/gunk/gunk-example-server,num_dependents_deps.dev:0 github.com/gunkdesign/hexo-invision,num_dependents_deps.dev:0 +github.com/gunkow/terraform-pr-commenter, github.com/gunlinux/python-smsru, github.com/gunn/pure-store,num_dependents_deps.dev:0 github.com/gunn4r/material-ui-advanced-table,num_dependents_deps.dev:0 @@ -566123,6 +576872,7 @@ github.com/gunta/bootstrap-desktop-native-flat,num_dependents_deps.dev:0 github.com/gunta/grunt-contrib-manifest,num_dependents_deps.dev:0 github.com/gunta/grunt-manifest,num_dependents_deps.dev:0 github.com/gunta/grunt-preload-assets,num_dependents_deps.dev:0 +github.com/gunta/notion-to-json-yml-action, github.com/gunter1020/jquery-formHelper,num_dependents_deps.dev:0 github.com/guntermueller/golang_-universum,num_dependents_deps.dev:0 github.com/gunters63/restify-swagger-validation-middleware,num_dependents_deps.dev:0 @@ -566459,6 +577209,7 @@ github.com/guptachirag/stats,num_dependents_deps.dev:0 github.com/guptakvgaurav/GoodCallback,num_dependents_deps.dev:0 github.com/guptakvgaurav/multer-cloudinary,num_dependents_deps.dev:0 github.com/guptakvgaurav/opendata,num_dependents_deps.dev:0 +github.com/guptalakshya92/delete_gem, github.com/guptamohit385/filedb,num_dependents_deps.dev:0 github.com/guptamohit385/no-cb-hell,num_dependents_deps.dev:0 github.com/guptanavdeep1983/traefik-cf-containers-ondemand-plugin,num_dependents_deps.dev:0 @@ -566471,6 +577222,7 @@ github.com/guptasanchit90/firebase-cloud-ts-gen,num_dependents_deps.dev:0 github.com/guptasanchit90/ng-svg-icon, github.com/guptasanchit90/ngrx-gen, github.com/guptasiddhant/utilits,num_dependents_deps.dev:0 +github.com/gupy-io/gittyleaks-action, github.com/gupy-io/searchops,num_dependents_deps.dev:0 github.com/gupy-io/superlogica-api-wrapper, github.com/guqingming/enum-array, @@ -566574,6 +577326,7 @@ github.com/gurneet14/interface,num_dependents_deps.dev:0 github.com/gurneet14/map,num_dependents_deps.dev:0 github.com/gurneetbhatia/pypmatrix, github.com/gurnur/hello-server,num_dependents_deps.dev:0 +github.com/gurock/trcli-action, github.com/gurolayanlar/gulp-google-tag-manager,num_dependents_deps.dev:0 github.com/gurov/cache-observable,num_dependents_deps.dev:0 github.com/gurov/colors,num_dependents_deps.dev:0 @@ -566867,6 +577620,7 @@ github.com/gustavo-hillesheim/minimal-di,num_dependents_deps.dev:0 github.com/gustavo-hillesheim/scaffolding,num_dependents_deps.dev:0 github.com/gustavo0197/react-jwt, github.com/gustavo0197/vue-easy-jwt,num_dependents_deps.dev:0 +github.com/gustavo1020/-release-version-, github.com/gustavoaroberto/demetria, github.com/gustavoauma/glemmazon, github.com/gustavobeavis/command-bus-ts,num_dependents_deps.dev:0 @@ -566895,6 +577649,7 @@ github.com/gustavodsf/javers,num_dependents_deps.dev:21 github.com/gustavoelizarraras/learning_go,num_dependents_deps.dev:0 github.com/gustavofabro/get-torrents-cli,num_dependents_deps.dev:0 github.com/gustavofamorim/serverless-utils,num_dependents_deps.dev:0 +github.com/gustavofreze/auto-assign, github.com/gustavofsantos/pretty-path-formatter,num_dependents_deps.dev:0 github.com/gustavofsantos/worker-link, github.com/gustavofsantos/zilez,num_dependents_deps.dev:0 @@ -567061,12 +577816,14 @@ github.com/gutenye/weapp-guten,num_dependents_deps.dev:0 github.com/gutenye/weapp-shim,num_dependents_deps.dev:0 github.com/gutfeeling/word_forms,criticality_score:0.341130 github.com/guthix/jagex-bytebuf,num_dependents_deps.dev:0 +github.com/guthizon/actions-gh-pages, github.com/guticoma2/htmlTombn,num_dependents_deps.dev:0 github.com/guticoma2/prerender,num_dependents_deps.dev:0 github.com/gutiere/gutcli, github.com/gutierri/wsl-path-exe, github.com/gutiguim/curso-golang,num_dependents_deps.dev:0 github.com/gutiguy/react-spring-3d-carousel,num_dependents_deps.dev:0 +github.com/gutio/ai1shot, github.com/gutioliveira/react-native-slide-to-unlock,num_dependents_deps.dev:0 github.com/gutkyu/node-xlrd,num_dependents_deps.dev:0 github.com/gutkyu/xlgen,num_dependents_deps.dev:0 @@ -567100,6 +577857,7 @@ github.com/guudd/botengo,num_dependents_deps.dev:0 github.com/guuibayer/gride,num_dependents_deps.dev:0 github.com/guuibayer/use-checkbox,num_dependents_deps.dev:0 github.com/guuilp/trello4j,num_dependents_deps.dev:0 +github.com/guumaster/aur-publish-docker-action, github.com/guumaster/fp-dom,num_dependents_deps.dev:0 github.com/guumaster/hostctl,"criticality_score:0.303780,num_dependents_deps.dev:0" github.com/guumaster/node-roa-time,num_dependents_deps.dev:0 @@ -567137,6 +577895,9 @@ github.com/guyannanfei25/cli,num_dependents_deps.dev:0 github.com/guyannanfei25/go-nsq,num_dependents_deps.dev:0 github.com/guyannanfei25/goquery,num_dependents_deps.dev:0 github.com/guyannanfei25/govaluate,num_dependents_deps.dev:0 +github.com/guyarb/deny-not-updated-branch, +github.com/guyarb/golang-test-annotations, +github.com/guyarb/golangci-lint-action, github.com/guyariely/beautify-html, github.com/guyariely/react-click-outside-wrapper,num_dependents_deps.dev:0 github.com/guyaross/orva-mirror,num_dependents_deps.dev:0 @@ -567167,6 +577928,7 @@ github.com/guybrush/nexus-web,num_dependents_deps.dev:0 github.com/guybrush/objpath, github.com/guybrush/pylon,num_dependents_deps.dev:0 github.com/guybrush/socketvat,num_dependents_deps.dev:4 +github.com/guychauliac/aws-cdk-github-actions, github.com/guycohen85/active-slider,num_dependents_deps.dev:0 github.com/guycole/daring-cyclops,num_dependents_deps.dev:0 github.com/guycole/go-lab,num_dependents_deps.dev:0 @@ -567250,6 +578012,7 @@ github.com/guyius/karma-simple-reporter,num_dependents_deps.dev:0 github.com/guykisel/inline-plz, github.com/guykisel/robotframework-faker, github.com/guyklainer/fast,num_dependents_deps.dev:0 +github.com/guyklainer/label-pr-review-decision, github.com/guyko/weighted-lottery,num_dependents_deps.dev:0 github.com/guylabs/angular-spring-data-rest,num_dependents_deps.dev:0 github.com/guylabs/ion-autocomplete,num_dependents_deps.dev:0 @@ -567357,6 +578120,7 @@ github.com/guzart/neutrino-preset-typescript-react,num_dependents_deps.dev:0 github.com/guzart/node-enfig,num_dependents_deps.dev:0 github.com/guzart/rassphrase,num_dependents_deps.dev:0 github.com/guzgarcia/react-artwork,num_dependents_deps.dev:0 +github.com/guzhongren/algolia-docsearch-upload-action, github.com/guzhongzhi/gmicro,num_dependents_deps.dev:0 github.com/guziy/pylibrmn, github.com/guzman-raphael/djbase,num_dependents_deps.dev:0 @@ -567387,9 +578151,15 @@ github.com/guzz/clappr-thumbnails-plugin,num_dependents_deps.dev:0 github.com/guzz/clappr-youtube-playback,num_dependents_deps.dev:0 github.com/guzz/dash-shaka-playback,num_dependents_deps.dev:0 github.com/guzz/hlsjs-playback, +github.com/guzzle/command, github.com/guzzle/guzzle,criticality_score:0.672550 +github.com/guzzle/guzzle-services, +github.com/guzzle/guzzle3, github.com/guzzle/promises,criticality_score:0.456240 github.com/guzzle/psr7,criticality_score:0.509580 +github.com/guzzle/ringphp, +github.com/guzzle/streams, +github.com/guzzle/uri-template, github.com/guzzlerio/deride, github.com/gv1122/golang-type-practice,num_dependents_deps.dev:0 github.com/gv1122/shopify-variants,num_dependents_deps.dev:0 @@ -567474,6 +578244,7 @@ github.com/gvarsanyi/vhostd,num_dependents_deps.dev:0 github.com/gvarsanyi/webdir,num_dependents_deps.dev:0 github.com/gvas/knockout-jqueryui,num_dependents_deps.dev:0 github.com/gvas/react-autolinker-wrapper,num_dependents_deps.dev:0 +github.com/gvasilei/AutoReviewer, github.com/gvdhoven/node-red-contrib-dutch-weather, github.com/gvdhoven/node-red-contrib-slide,num_dependents_deps.dev:0 github.com/gvelimir/mongo-query-builder-chain,num_dependents_deps.dev:0 @@ -567487,6 +578258,7 @@ github.com/gvencadze/adjust-task,num_dependents_deps.dev:0 github.com/gventuri/create-react-component,num_dependents_deps.dev:0 github.com/gventuri/nodejs-form-validator,num_dependents_deps.dev:0 github.com/gventuri/react-questify,num_dependents_deps.dev:0 +github.com/gvenzl/setup-oracle-sqlcl, github.com/gvergara06/go-inicial,num_dependents_deps.dev:0 github.com/gvergnaud/evolui,num_dependents_deps.dev:0 github.com/gvergnaud/nextjs-dynamic-routes,num_dependents_deps.dev:4 @@ -567576,6 +578348,7 @@ github.com/gvx/base116676, github.com/gvx/generate-html, github.com/gvx/signature-altering, github.com/gvx/wurm, +github.com/gvych/eks-kubectl-action, github.com/gvych/go-lint-nil-err-not-reversed,num_dependents_deps.dev:0 github.com/gw-wiscon/homebridge-onkyo-avr, github.com/gw-wiscon/homebridge-philipstv,num_dependents_deps.dev:0 @@ -567642,6 +578415,7 @@ github.com/gwasser/django-bootstrap5-form, github.com/gwastro/sbank, github.com/gwatts/dropbox-sdk-go-unofficial,num_dependents_deps.dev:0 github.com/gwatts/gin-adapter, +github.com/gwatts/go-coverage-action, github.com/gwatts/jquery.sparkline,num_dependents_deps.dev:163 github.com/gwatts/rootcerts,num_dependents_deps.dev:0 github.com/gwax/mtg_ssm, @@ -567794,6 +578568,7 @@ github.com/gwl002/priorityQueue, github.com/gwleclerc/hugo-lunr,num_dependents_deps.dev:0 github.com/gwleclerc/rs-jsonpath,num_dependents_deps.dev:0 github.com/gwll/loaclcache,num_dependents_deps.dev:0 +github.com/gwllx/remote-sync, github.com/gwmccull/eslint-plugin-build-app,num_dependents_deps.dev:0 github.com/gwn/dsql, github.com/gwn/hyperapp-router5-adapter,num_dependents_deps.dev:0 @@ -568137,6 +578912,7 @@ github.com/gympass/go-giter8,num_dependents_deps.dev:0 github.com/gympass/goprompt,num_dependents_deps.dev:0 github.com/gymratgames/cellular-automata,num_dependents_deps.dev:0 github.com/gymreklab/TRTools, +github.com/gymshark/slack-notifier-action, github.com/gynekolog/cordova-plugin-facebook4-ios3,num_dependents_deps.dev:0 github.com/gyng/react-windowed,num_dependents_deps.dev:0 github.com/gynmi/log4jx,num_dependents_deps.dev:0 @@ -568206,6 +578982,7 @@ github.com/gyst/plonetheme.transition, github.com/gyteng/SmartDNS,num_dependents_deps.dev:0 github.com/gythaogg/matchenc, github.com/gytisrepecka/writefreely,num_dependents_deps.dev:0 +github.com/gyto/mailgun-template-action, github.com/gyto/react-use-tag-truncator,num_dependents_deps.dev:0 github.com/gyturi1/gosandbox,num_dependents_deps.dev:0 github.com/gyu-don/blueqat-classicalbit-backend, @@ -568449,6 +579226,7 @@ github.com/h-enk/doks,num_dependents_deps.dev:0 github.com/h-enk/hyas, github.com/h-enk/hyas-cli,num_dependents_deps.dev:0 github.com/h-fam/brain,num_dependents_deps.dev:0 +github.com/h-fam/super-linter, github.com/h-g-c/go-crud,num_dependents_deps.dev:0 github.com/h-ikeda/aframe-arrow-component,num_dependents_deps.dev:0 github.com/h-ikeda/express-firebase-server-helper,num_dependents_deps.dev:0 @@ -568535,11 +579313,13 @@ github.com/h0tc0d3/postcss-hamster,num_dependents_deps.dev:0 github.com/h0tk3y/better-parse,num_dependents_deps.dev:6 github.com/h0tk3y/k-new-mpp-samples,num_dependents_deps.dev:0 github.com/h0tw4t3r/react-soundcloud-embedded, +github.com/h0tw4t3r/wagmi-generate, github.com/h0uter/doorpost_detector, github.com/h0ward/download-google-spreadsheet,num_dependents_deps.dev:0 github.com/h0x0d9/project-lvl1-s280,num_dependents_deps.dev:0 github.com/h0x0d9/project-lvl2-s293,num_dependents_deps.dev:0 github.com/h0x0er/andromanifest,num_dependents_deps.dev:0 +github.com/h0x3ein/trufflehog-actions-scan, github.com/h0x91b/ESB-node-driver,num_dependents_deps.dev:0 github.com/h0x91b/ESB-proxy-server,num_dependents_deps.dev:0 github.com/h0x91b/fast-redis-cluster,num_dependents_deps.dev:0 @@ -568609,6 +579389,7 @@ github.com/h2blake/book-process,num_dependents_deps.dev:0 github.com/h2cone/dagagent,num_dependents_deps.dev:0 github.com/h2database/h2database,"criticality_score:0.658730,num_dependents_deps.dev:4633" github.com/h2ero/go-callvis,num_dependents_deps.dev:0 +github.com/h2floh/action-get-joke-of-the-day, github.com/h2g2bob/ipp-server, github.com/h2g2guy/statuspi.py, github.com/h2gb/bumpy_vector,num_dependents_deps.dev:0 @@ -568821,12 +579602,14 @@ github.com/h4rdw1r3/imgen,num_dependents_deps.dev:0 github.com/h4rdy/fofa-sdk, github.com/h4run/react-basic-form, github.com/h4run/react-form,num_dependents_deps.dev:0 +github.com/h4sh5/npm-mal-feed-check, github.com/h4t0n/day-schedule,num_dependents_deps.dev:0 github.com/h4t0n/fast-tweet,num_dependents_deps.dev:0 github.com/h4t0n/htauth,num_dependents_deps.dev:0 github.com/h4t0n/mongoose-idexists,num_dependents_deps.dev:0 github.com/h4t0n/node-env-match,num_dependents_deps.dev:0 github.com/h4t0n/rest-bac,num_dependents_deps.dev:0 +github.com/h4ux/gitops-acl-action, github.com/h4v0kr/multichain-rpc,num_dependents_deps.dev:0 github.com/h4wldev/cottage-barney,num_dependents_deps.dev:0 github.com/h4wldev/python-figures, @@ -568862,6 +579645,7 @@ github.com/h5bp/server-configs,"criticality_score:0.386690,num_dependents_deps.d github.com/h5bp/server-configs-apache,"criticality_score:0.584080,num_dependents_deps.dev:2" github.com/h5bp/server-configs-nginx,criticality_score:0.562160 github.com/h5bp/server-configs-node, +github.com/h5bp/server-configs-test, github.com/h5jan/h5jan-core,num_dependents_deps.dev:0 github.com/h5kure/base_repr, github.com/h5o/h5o-bookmarklet,num_dependents_deps.dev:0 @@ -568906,6 +579690,7 @@ github.com/hCaptcha/hmt-basemodels, github.com/hCaptcha/hmt-escrow,num_dependents_deps.dev:0 github.com/hCaptcha/react-native-hcaptcha,num_dependents_deps.dev:0 github.com/hCaptcha/vue-hcaptcha,num_dependents_deps.dev:0 +github.com/hEDGEpointGlobal/fortress.deploylambda-action, github.com/hLinx/lower-component,num_dependents_deps.dev:0 github.com/hLinx/passive-component,num_dependents_deps.dev:0 github.com/hMatoba/Piexif,criticality_score:0.305730 @@ -568990,6 +579775,7 @@ github.com/haalcala/node-redis-pubsub, github.com/haalcala/node-shutdown,num_dependents_deps.dev:0 github.com/haalcala/node-spring,num_dependents_deps.dev:0 github.com/haalcala/pm2, +github.com/haampie-spack/setup-spack, github.com/haan123/sfra-module-loader,num_dependents_deps.dev:0 github.com/haandol/local-mq,num_dependents_deps.dev:0 github.com/haandol/react-kakao-button,num_dependents_deps.dev:0 @@ -569229,6 +580015,9 @@ github.com/hack-fan/skadi-action,num_dependents_deps.dev:0 github.com/hack-fan/skadi-agent-shell,num_dependents_deps.dev:0 github.com/hack-fan/skadigo,num_dependents_deps.dev:0 github.com/hack-fan/x,num_dependents_deps.dev:0 +github.com/hack-ink/cargo-featalign-action, +github.com/hack-ink/subalfred-check-features-action, +github.com/hack-ink/subalfred-check-runtime-action, github.com/hack-pad/go-indexeddb,num_dependents_deps.dev:0 github.com/hack-pad/hackpad,num_dependents_deps.dev:0 github.com/hack-pad/hackpadfs,num_dependents_deps.dev:0 @@ -569323,6 +580112,7 @@ github.com/hackedd/python-dotjs, github.com/hackedd/unbrowserify,num_dependents_deps.dev:0 github.com/hackedu/facebook_ids,num_dependents_deps.dev:0 github.com/hackedu/xmpp_merge,num_dependents_deps.dev:0 +github.com/hackee/v2ex-action, github.com/hackello/npm-packages,num_dependents_deps.dev:0 github.com/hackenbruder/govdata-js,num_dependents_deps.dev:0 github.com/hackendOrg/HackendPython, @@ -569441,6 +580231,12 @@ github.com/hackiftekhar/IQDropDownTextField,criticality_score:0.329930 github.com/hackiftekhar/IQKeyboardManager,criticality_score:0.542770 github.com/hackify/hackify,num_dependents_deps.dev:0 github.com/hackillinois/api,num_dependents_deps.dev:0 +github.com/hacking-gentoo/action-ebuild-maintain, +github.com/hacking-gentoo/action-ebuild-release, +github.com/hacking-gentoo/action-ebuild-test, +github.com/hacking-gentoo/action-fetch-portage, +github.com/hacking-gentoo/action-fetch-stage3, +github.com/hacking-gentoo/action-repoman, github.com/hacking-thursday/h4-scripts, github.com/hacking4/h4micro-framework,num_dependents_deps.dev:0 github.com/hackingbeauty/drizzle-enhanced,num_dependents_deps.dev:0 @@ -569460,6 +580256,7 @@ github.com/hackingmaterials/figrecipes, github.com/hackingmaterials/matminer,criticality_score:0.489370 github.com/hackingmaterials/robocrystallographer, github.com/hackingmaterials/rocktsled, +github.com/hackinteach/action-cloud-run, github.com/hackinteach/pytest-approxable, github.com/hackintoshrao/checkup,num_dependents_deps.dev:0 github.com/hackintoshrao/minio-go,num_dependents_deps.dev:0 @@ -569652,6 +580449,7 @@ github.com/hacpaka/go-recaptcha-v3,num_dependents_deps.dev:0 github.com/hacpaka/jquery-forms-notify,num_dependents_deps.dev:0 github.com/hacpy/chainbridge-substrate-events,num_dependents_deps.dev:0 github.com/hacpy/go-substrate-rpc-client,num_dependents_deps.dev:0 +github.com/hacs/action, github.com/hacs/fast, github.com/hacs/frontend, github.com/hacs/integration,criticality_score:0.578450 @@ -569701,6 +580499,8 @@ github.com/hadees/plurality,num_dependents_deps.dev:0 github.com/hadefication/glenbangkila,num_dependents_deps.dev:0 github.com/hadefication/vue-chartisan, github.com/hademo/crud-interfaces,num_dependents_deps.dev:0 +github.com/hadenlabs/action-confluence-sync, +github.com/hadenlabs/action-pre-commit, github.com/hadenlabs/build-tools,num_dependents_deps.dev:0 github.com/hadenlabs/commitlint-config, github.com/hadenlabs/docker-kali-linux,num_dependents_deps.dev:0 @@ -569740,6 +580540,7 @@ github.com/hadiab/react-condition,num_dependents_deps.dev:0 github.com/hadialqattan/gologin,num_dependents_deps.dev:0 github.com/hadialqattan/no-darkreader,num_dependents_deps.dev:0 github.com/hadialqattan/pycln, +github.com/hadialqattan/relies-on, github.com/hadian90/gin-jethtml-boilerplate,num_dependents_deps.dev:0 github.com/hadiazb/newPackageNPM, github.com/hadiazt/random-pic.js,num_dependents_deps.dev:0 @@ -569819,6 +580620,7 @@ github.com/hadnet/side-nav-react,num_dependents_deps.dev:0 github.com/hadock/schema-alchemia,num_dependents_deps.dev:0 github.com/hadokee/node-no-captcha,num_dependents_deps.dev:0 github.com/hadolint/hadolint,criticality_score:0.561640 +github.com/hadolint/hadolint-action, github.com/hadooping/go-rest-api,num_dependents_deps.dev:0 github.com/hados99/Node-Media-Server, github.com/hadouken/libtorrent-nodejs,num_dependents_deps.dev:0 @@ -569873,6 +580675,7 @@ github.com/hadzimme/juman,num_dependents_deps.dev:0 github.com/hadzimme/mecab-light,num_dependents_deps.dev:0 github.com/haeckelk/go-practice,num_dependents_deps.dev:0 github.com/haedaal/chores,num_dependents_deps.dev:0 +github.com/haedaal/ecs-deploy, github.com/haeena/slackevent-responder, github.com/haefele-software/mvmt, github.com/haefele-software/origen,num_dependents_deps.dev:0 @@ -569888,6 +580691,7 @@ github.com/haemishkyd/poolsense, github.com/haemly/vue-google-heatmap,num_dependents_deps.dev:0 github.com/haempel/zcrypto,num_dependents_deps.dev:0 github.com/haempel/zgrab2,num_dependents_deps.dev:0 +github.com/haemtim/generate_wordcloud, github.com/haenelt/GBB, github.com/haensl/assign-reducers,num_dependents_deps.dev:0 github.com/haensl/beacon-tool,num_dependents_deps.dev:0 @@ -570143,17 +580947,22 @@ github.com/hahow/pika-stubs, github.com/hahuang65/Changeling,num_dependents_deps.dev:0 github.com/hahwul/WebHackersWeapons,criticality_score:0.345700 github.com/hahwul/XSpear,num_dependents_deps.dev:0 +github.com/hahwul/action-dalfox, +github.com/hahwul/authz0, github.com/hahwul/backbomb,num_dependents_deps.dev:0 github.com/hahwul/dalfox,"criticality_score:0.434660,num_dependents_deps.dev:0" +github.com/hahwul/deadfinder, github.com/hahwul/devsecops,num_dependents_deps.dev:0 github.com/hahwul/gee,num_dependents_deps.dev:0 github.com/hahwul/go-github-selfupdate-patched,num_dependents_deps.dev:0 github.com/hahwul/jwt-hack,num_dependents_deps.dev:0 github.com/hahwul/membi,num_dependents_deps.dev:0 github.com/hahwul/mobilehackersweapons,num_dependents_deps.dev:0 +github.com/hahwul/mzap, github.com/hahwul/s3reverse,num_dependents_deps.dev:0 github.com/hahwul/volt,num_dependents_deps.dev:0 github.com/hahwul/ws-smuggler,num_dependents_deps.dev:0 +github.com/hahwul/zest-env, github.com/hai-bui-kkday/authomatic, github.com/hai046/auto-model-view-build,num_dependents_deps.dev:0 github.com/hai046/zkconfig-resources,num_dependents_deps.dev:0 @@ -570212,6 +581021,7 @@ github.com/haidaraM/vagranttoansibleinventory, github.com/haidarafif0809/alay-letter,num_dependents_deps.dev:0 github.com/haidarafif0809/fresh_sequelize,num_dependents_deps.dev:0 github.com/haidark/JupyterLab-Experiments,num_dependents_deps.dev:0 +github.com/haider000/private-repo-rules, github.com/haideralipunjabi/cli-badges, github.com/haideralsh/pattern-matching,num_dependents_deps.dev:0 github.com/haideralsh/result-ts,num_dependents_deps.dev:0 @@ -570260,6 +581070,7 @@ github.com/haihonglicom/test-package, github.com/haihongren/alertmanager,num_dependents_deps.dev:0 github.com/haihongren/todoapp,num_dependents_deps.dev:0 github.com/haiiaaa/chartjs-gauge,num_dependents_deps.dev:0 +github.com/haiiliin/action-pull-request-another-repo, github.com/haiix/TComponent,num_dependents_deps.dev:0 github.com/haiix/aseq,num_dependents_deps.dev:0 github.com/haiix/seq,num_dependents_deps.dev:0 @@ -570313,6 +581124,7 @@ github.com/hail2u/scss-functions,num_dependents_deps.dev:0 github.com/hail2u/scss-partials,num_dependents_deps.dev:0 github.com/hail2u/unutm,num_dependents_deps.dev:0 github.com/hail2u/vim-css3-syntax,criticality_score:0.440320 +github.com/hailaz/autotag-action, github.com/hailelagi/gophers-and-toys,num_dependents_deps.dev:0 github.com/hailfire113/InVaIN, github.com/haili042/create-qbi-app,num_dependents_deps.dev:0 @@ -570433,6 +581245,7 @@ github.com/hais-hbh/zero-ui, github.com/haisapan/ProxyScanner.NodeJs,num_dependents_deps.dev:0 github.com/haise0/dirdar,num_dependents_deps.dev:0 github.com/haishangfeie/img-magnifier,num_dependents_deps.dev:0 +github.com/haishanh/actions-telegram-notification, github.com/haishanh/coc-swagger,num_dependents_deps.dev:0 github.com/haishanh/fetchi,num_dependents_deps.dev:0 github.com/haishanh/gulp-spacingWord,num_dependents_deps.dev:0 @@ -570477,6 +581290,7 @@ github.com/haiti-projects/haiti-database,num_dependents_deps.dev:2 github.com/haiti-projects/haiti-framework,num_dependents_deps.dev:20 github.com/haiticss/haiticss,num_dependents_deps.dev:0 github.com/haitiyas/httphandler,num_dependents_deps.dev:0 +github.com/haitongz/actions-hello-world, github.com/haitrinh/react-native-file-asset,num_dependents_deps.dev:0 github.com/haivision/srtgo,num_dependents_deps.dev:0 github.com/haiwangyang/tinypackage, @@ -570583,6 +581397,8 @@ github.com/hakaiInstitute/hakai-segmentation, github.com/hakancelik96/pyall, github.com/hakancelik96/pythonanywhere-client, github.com/hakancelik96/unimport, +github.com/hakancelikdev/unexport, +github.com/hakancelikdev/unimport, github.com/hakanderyal/slate,num_dependents_deps.dev:0 github.com/hakandilek/vagabond-uml,num_dependents_deps.dev:0 github.com/hakanensari/bezos,num_dependents_deps.dev:0 @@ -570653,6 +581469,7 @@ github.com/hakier/dotenv-generate-helper,num_dependents_deps.dev:0 github.com/hakier/extract-from-document,num_dependents_deps.dev:0 github.com/hakier/smsgateway.me,num_dependents_deps.dev:0 github.com/hakiergrzonzo/fastapi-redis-cache, +github.com/hakierspejs/jekyll-screenshot-github-action, github.com/hakierspejs/long-season,num_dependents_deps.dev:0 github.com/hakilebara/ember-color-palette, github.com/hakimbmkg/LinduAI, @@ -570806,6 +581623,7 @@ github.com/halaproliu/gitbook-plugin-codepens, github.com/halaproliu/gitbook-plugin-gittalk,num_dependents_deps.dev:0 github.com/halaproliu/gitbook-plugin-gtag,num_dependents_deps.dev:0 github.com/halaproliu/gitbook-plugin-siteVerification,num_dependents_deps.dev:0 +github.com/halaslabs/laravel-test-runner, github.com/halaxa/json-machine,criticality_score:0.377240 github.com/halaz-lazlo/ngx-select,num_dependents_deps.dev:0 github.com/halbardhobby/ticketingappmicroservices,num_dependents_deps.dev:0 @@ -571002,6 +581820,7 @@ github.com/halilozercan/py-socketio-client, github.com/halilozercan/runcurl, github.com/halilozercan/smp, github.com/halilozercan/vizontele, +github.com/halilsafakkilic/jenkins-action, github.com/haliltayfuroglu/node-db-migrate,num_dependents_deps.dev:0 github.com/halilteyfik/browser-communication,num_dependents_deps.dev:0 github.com/halilylm/go_react_jwt,num_dependents_deps.dev:0 @@ -571220,6 +582039,7 @@ github.com/halogenica/beautifulhugo,criticality_score:0.484790 github.com/halogenjs/resource,num_dependents_deps.dev:0 github.com/halogenjs/route,num_dependents_deps.dev:0 github.com/halogenjs/view,num_dependents_deps.dev:0 +github.com/haloislet/cos-action, github.com/halojs/halo-annotation,num_dependents_deps.dev:0 github.com/halojs/halo-compress,num_dependents_deps.dev:0 github.com/halojs/halo-cors,num_dependents_deps.dev:0 @@ -571299,6 +582119,7 @@ github.com/halvards/ghcr-actions-test,num_dependents_deps.dev:0 github.com/halvards/ko,num_dependents_deps.dev:0 github.com/halvards/spdy-referrer-push,num_dependents_deps.dev:0 github.com/halvardssm/deno-nessie,criticality_score:0.392910 +github.com/halvardssm/github-action-tag-release, github.com/halvardssm/go-domeneshop-client,num_dependents_deps.dev:0 github.com/halvardssm/js-helpers,num_dependents_deps.dev:0 github.com/halvardssm/package-translation-fetch, @@ -571462,6 +582283,7 @@ github.com/hamidelectronic/vue-datepicker,num_dependents_deps.dev:0 github.com/hamidelectronic/vue-persian-datepickers, github.com/hamidfzm/Flask-HTMLmin, github.com/hamidfzm/aor-language-farsi,num_dependents_deps.dev:0 +github.com/hamidfzm/docker-remote-deployment-action, github.com/hamidfzm/ra-language-farsi,num_dependents_deps.dev:0 github.com/hamidfzm/react-native-image-viewing, github.com/hamidfzm/react-native-nextswiper,num_dependents_deps.dev:0 @@ -571623,6 +582445,7 @@ github.com/hammertime1308/go-lang,num_dependents_deps.dev:0 github.com/hammertime1308/shape-sorter,num_dependents_deps.dev:0 github.com/hammertime1308/student-rest-api,num_dependents_deps.dev:0 github.com/hammertoe/crypto_balancer, +github.com/hammertoe/payid_xrp_action, github.com/hammoaj/node-red-contrib-auth-idaas-oidc,num_dependents_deps.dev:0 github.com/hammoaj/node-red-contrib-cloudantplus,num_dependents_deps.dev:0 github.com/hammoaj/node-red-contrib-summariser,num_dependents_deps.dev:0 @@ -571718,6 +582541,7 @@ github.com/hamstah/ukpostcodeparser, github.com/hamstap85/django-expression-filter, github.com/hamstap85/green-eggs, github.com/hamstelfo/uf.formacion,num_dependents_deps.dev:0 +github.com/hamster1963/go-release-action, github.com/hamster3d/mathchem-package, github.com/hamster601/cachedemo,num_dependents_deps.dev:0 github.com/hamster601/flashsale,num_dependents_deps.dev:0 @@ -571737,6 +582561,7 @@ github.com/hamuPP/t-vue-tree,num_dependents_deps.dev:0 github.com/hamuhouse/mongo-effect,num_dependents_deps.dev:0 github.com/hamukichi/ironpycompiler, github.com/hamukichi/pykayacim, +github.com/hamuyuuki/pushing-hours-restriction, github.com/hamvocke/asciilove, github.com/hamweather/grunt-jasmine-legacy,num_dependents_deps.dev:0 github.com/hamxabaig/cols-from-array,num_dependents_deps.dev:0 @@ -571826,6 +582651,7 @@ github.com/hanFengSan/nestjs-agenda,num_dependents_deps.dev:0 github.com/hanFengSan/nestjs-simple-redis-lock,num_dependents_deps.dev:0 github.com/hana-am/Jigglypuff, github.com/hana-ame/portalproxy,num_dependents_deps.dev:0 +github.com/hanaTsuk1/nsis-plugin, github.com/hanaarena/act-cli,num_dependents_deps.dev:0 github.com/hanaarena/kora,num_dependents_deps.dev:0 github.com/hanaarena/pixelart,num_dependents_deps.dev:0 @@ -571844,6 +582670,7 @@ github.com/hanachin/habu,num_dependents_deps.dev:0 github.com/hanachin/is_dead,num_dependents_deps.dev:0 github.com/hanachin/lingr_bot,num_dependents_deps.dev:0 github.com/hanachin/react-infinite-scroll,num_dependents_deps.dev:0 +github.com/hanafiah-enovade/hello-action, github.com/hanagantig/aerrors,num_dependents_deps.dev:0 github.com/hanagantig/cron,num_dependents_deps.dev:0 github.com/hanage999/go-mastodon,num_dependents_deps.dev:0 @@ -571931,6 +582758,7 @@ github.com/hanatharesh2712/ionic-native-sms-retriever-plugin-master,num_dependen github.com/hanayashiki/pyenv, github.com/hanayashiki/react-native-ws-logger,num_dependents_deps.dev:0 github.com/hanayik/hapticJS,num_dependents_deps.dev:0 +github.com/hanaytug/unity-installer, github.com/hanazuki/cdk-lambda-ruby,num_dependents_deps.dev:0 github.com/hanazuki/node-jsonnet,num_dependents_deps.dev:0 github.com/hanazuki/rinne,num_dependents_deps.dev:0 @@ -572040,6 +582868,8 @@ github.com/handpipe/handpipe.js,num_dependents_deps.dev:2 github.com/handpoint/cordova-plugin-handpoint,num_dependents_deps.dev:2699 github.com/handrawanw/otp-caches,num_dependents_deps.dev:0 github.com/hands-agency/twitter-display,num_dependents_deps.dev:0 +github.com/hands-lab/dockle-action, +github.com/hands-lab/push-ecr-action, github.com/hands8142/discord-xp-ts,num_dependents_deps.dev:0 github.com/handsameliu/vue-simple-calendar,num_dependents_deps.dev:0 github.com/handsandkeyboards/passwordmanager,num_dependents_deps.dev:0 @@ -572091,6 +582921,7 @@ github.com/handtrix/env-array,num_dependents_deps.dev:0 github.com/handv/literallycanvas,num_dependents_deps.dev:0 github.com/handwritingio/python-client, github.com/handy-common-utils/aws-utils,num_dependents_deps.dev:0 +github.com/handy-common-utils/conditionally-approve-pr-from-trusted-committers, github.com/handy-common-utils/dev-dependencies,num_dependents_deps.dev:0 github.com/handy-common-utils/dev-utils,num_dependents_deps.dev:0 github.com/handy-common-utils/fs-utils,num_dependents_deps.dev:2 @@ -572123,6 +582954,7 @@ github.com/hanekawa-chan/chat,num_dependents_deps.dev:0 github.com/hanekawa-chan/todo,num_dependents_deps.dev:0 github.com/hanekawa-chan/universal,num_dependents_deps.dev:0 github.com/hanekedesign/ngKit,num_dependents_deps.dev:0 +github.com/hanelalo/hexo-deploy-action, github.com/hanepjiv/elicit-rs,num_dependents_deps.dev:0 github.com/hanepjiv/hash_combine-rs,num_dependents_deps.dev:0 github.com/haner199401/generator-react-project-boilerplate,num_dependents_deps.dev:0 @@ -572287,6 +583119,7 @@ github.com/hangum/TadpoleForDBTools,criticality_score:0.331070 github.com/hanguofeng/gocaptcha,num_dependents_deps.dev:0 github.com/hanguokai/youku, github.com/hanguyen-it/node-fork-queue,num_dependents_deps.dev:0 +github.com/hangwoo/crowdin-translation-progress, github.com/hangxie/parquet-go,num_dependents_deps.dev:0 github.com/hangxie/parquet-tools,num_dependents_deps.dev:0 github.com/hangxing620/generator-feng,num_dependents_deps.dev:0 @@ -572321,6 +583154,7 @@ github.com/hanhan-ai/2019HanHan, github.com/hanhan3682523/hxj-demo-cli,num_dependents_deps.dev:0 github.com/hanhan3682523/light-app-cli,num_dependents_deps.dev:0 github.com/hanhan9449/dictation,num_dependents_deps.dev:0 +github.com/hanhan9449/img-interlace-action, github.com/hanhan9449/is-equal-four, github.com/hanhanhanz/forothree,num_dependents_deps.dev:0 github.com/hanhanhanz/urlgrepper,num_dependents_deps.dev:0 @@ -572433,6 +583267,11 @@ github.com/hankcs/iparser, github.com/hankcs/pyhanlp, github.com/hankegui/go-learn,num_dependents_deps.dev:0 github.com/hankehly/netkeiba, +github.com/hankei6km/gdrive-act-recv, +github.com/hankei6km/gdrive-act-send, +github.com/hankei6km/gdrive-act-share, +github.com/hankei6km/gha-sem-from-title, +github.com/hankei6km/gha-sem-pr-labeler, github.com/hankei6km/mdast-qrcode,num_dependents_deps.dev:0 github.com/hankei6km/mirage_linemode, github.com/hankei6km/rehype-remove-empty-paragraph, @@ -572596,6 +583435,7 @@ github.com/hannu-hell/basic_card, github.com/hannujaakkola/rot26,num_dependents_deps.dev:0 github.com/hannupekka/jsonni-cli,num_dependents_deps.dev:0 github.com/hannut91/ng-next-directive,num_dependents_deps.dev:0 +github.com/hannut91/pr-docs-actions, github.com/hanocha/rubocop-google_ads,num_dependents_deps.dev:0 github.com/hanoivip/react-native-game,num_dependents_deps.dev:0 github.com/hanooyang/mocko,num_dependents_deps.dev:0 @@ -572685,6 +583525,7 @@ github.com/hansgianfranco/ckeditor5-emojis,num_dependents_deps.dev:0 github.com/hansgianfranco/jquery-simple-validate,num_dependents_deps.dev:0 github.com/hansgogia/krl,num_dependents_deps.dev:0 github.com/hansh1029/scrappergo,num_dependents_deps.dev:0 +github.com/hanshazairi/42-norminette-action, github.com/hanshengchiu/reorderables,criticality_score:0.323140 github.com/hanship0530/learning_golang,num_dependents_deps.dev:0 github.com/hanshof/raspiSensors, @@ -572967,6 +583808,7 @@ github.com/haobird/fixpool,num_dependents_deps.dev:0 github.com/haobird/gormq,num_dependents_deps.dev:0 github.com/haobird/goutils,num_dependents_deps.dev:0 github.com/haobird/logger,num_dependents_deps.dev:0 +github.com/haoblackj/action-textlint, github.com/haoboyang/qieshu,num_dependents_deps.dev:0 github.com/haobtc/bitcore,num_dependents_deps.dev:0 github.com/haobtc/pyhaobtc, @@ -573014,6 +583856,8 @@ github.com/haohailiang/npm-plugin-make,num_dependents_deps.dev:0 github.com/haohailiang/webpack-official-china,num_dependents_deps.dev:0 github.com/haohao667788/spm-loader, github.com/haohao809/columnTree-,num_dependents_deps.dev:0 +github.com/haohaochung/update-pr-descriptions, +github.com/haohaowasky/AWS_ACTION_ECR_CHINA, github.com/haoheiyo/chaos-cases, github.com/haoheliu/torchsubband, github.com/haoheliu/voicefixer, @@ -573199,7 +584043,9 @@ github.com/haozzzzzzzz/go-tool,num_dependents_deps.dev:0 github.com/hapaa16/awd_manager,num_dependents_deps.dev:0 github.com/hapaa16/awdui,num_dependents_deps.dev:0 github.com/hapag-lloyd/jest-puppeteer-react,num_dependents_deps.dev:0 +github.com/hapakaien/archlinux-package-action, github.com/hapakaien/fiber-boilerplate,num_dependents_deps.dev:0 +github.com/hapakaien/push-aur-action, github.com/hapcha/hapcha-tag,num_dependents_deps.dev:0 github.com/hapevau/hpv-tvdb-mngr,num_dependents_deps.dev:0 github.com/hapevau/thetvdb-client,num_dependents_deps.dev:0 @@ -573546,6 +584392,7 @@ github.com/happyflyer/go_notes,num_dependents_deps.dev:0 github.com/happyfoxinc/helpstack,criticality_score:0.309360 github.com/happyfresh/cloudenv,num_dependents_deps.dev:0 github.com/happyfresh/cloudtester,num_dependents_deps.dev:0 +github.com/happygears/gt2v, github.com/happygears/nsgcli, github.com/happygiraffe/jslint4java,num_dependents_deps.dev:3 github.com/happygiraffe/roaring,num_dependents_deps.dev:0 @@ -573839,6 +584686,7 @@ github.com/hardcore-os/corekv,num_dependents_deps.dev:0 github.com/hardcore-sushi/async-psec,num_dependents_deps.dev:0 github.com/hardcore-sushi/droidfs,num_dependents_deps.dev:0 github.com/hardcoretech/data-spec-validator, +github.com/hardcoretech/django-migration-checker-action, github.com/hardcoretech/djangorestframework-idempotency-key, github.com/harddie/mytldr,num_dependents_deps.dev:0 github.com/hardeep/tslint-jest-rules,num_dependents_deps.dev:0 @@ -573982,6 +584830,7 @@ github.com/hareeqi/csjs-native,num_dependents_deps.dev:0 github.com/hareeqi/http2https,num_dependents_deps.dev:0 github.com/hareeqi/mqtt-bench,num_dependents_deps.dev:0 github.com/hareevs/raven-bash, +github.com/harehare/elm-analyse-action, github.com/harehare/textusm,num_dependents_deps.dev:0 github.com/hareko/js-filer,num_dependents_deps.dev:0 github.com/hareko/js-merge-xml,num_dependents_deps.dev:8 @@ -574527,6 +585376,7 @@ github.com/harrett/unionService, github.com/harri-codes/harricodes,num_dependents_deps.dev:0 github.com/harrietjia/vue-calendar-l,num_dependents_deps.dev:0 github.com/harrietjia/vue-flip-page,num_dependents_deps.dev:0 +github.com/harrietrs/copy-to-pr, github.com/harrietty/project_euler,num_dependents_deps.dev:0 github.com/harrifeng/dockerui,num_dependents_deps.dev:0 github.com/harrim91/flash-redux,num_dependents_deps.dev:0 @@ -574597,6 +585447,7 @@ github.com/harrisonlucaswork/ckeditor5-emojis,num_dependents_deps.dev:0 github.com/harrisonmalone/applied-go,num_dependents_deps.dev:0 github.com/harrisonmalone/puppies-server,num_dependents_deps.dev:0 github.com/harrisonmalone/url-shortener,num_dependents_deps.dev:0 +github.com/harrisonpim/broken-link-checker, github.com/harrisonpim/dotenv-stripout, github.com/harrisonpim/going,num_dependents_deps.dev:0 github.com/harrisonpim/hal, @@ -574609,6 +585460,7 @@ github.com/harrisrobin/react-native-dnd-grid,num_dependents_deps.dev:0 github.com/harrisrobin/react-native-swipe-gestures-recognizer,num_dependents_deps.dev:0 github.com/harritaylor/torchvggish, github.com/harry-gao/json-uplift,num_dependents_deps.dev:0 +github.com/harry-isaac/actions.serverless-with-python-requirements, github.com/harry-jung/apidoc,num_dependents_deps.dev:0 github.com/harry-jung/apidoc-core,num_dependents_deps.dev:0 github.com/harry-nguyen-88/rn-run-android, @@ -574806,6 +585658,7 @@ github.com/harryy2510/rehttp, github.com/harryy2510/vue-datepicker,num_dependents_deps.dev:0 github.com/harryyann/golang-advanced-homework,num_dependents_deps.dev:0 github.com/harryyuanfeng/leancloudPushForNode,num_dependents_deps.dev:0 +github.com/harryzcy/action-bark, github.com/harryzcy/stdio-test,num_dependents_deps.dev:0 github.com/harryzq/create-react-parcel,num_dependents_deps.dev:0 github.com/harryzq/ha-px2vwh,num_dependents_deps.dev:0 @@ -574817,6 +585670,7 @@ github.com/harscoet/grunt-json-dox,num_dependents_deps.dev:0 github.com/harscoet/vargs-callback,num_dependents_deps.dev:0 github.com/harsewaksingh13/tc-core, github.com/harsgak/nxaddons, +github.com/harsh-2711/ghost-issues-notifier-actions, github.com/harsh-98/go-template,num_dependents_deps.dev:0 github.com/harsh-98/witnet_lib, github.com/harsh-a1/dhis2API,num_dependents_deps.dev:0 @@ -574826,6 +585680,7 @@ github.com/harsh-vishnoi/Zomato_API,num_dependents_deps.dev:0 github.com/harsh-webk22/helloworld,num_dependents_deps.dev:0 github.com/harsh049/wkhtmltopdf,num_dependents_deps.dev:0 github.com/harsh07bharvada/structures-wiz,num_dependents_deps.dev:0 +github.com/harsh098/helm-eks-action-awscli-2, github.com/harsh204016/extended-maths, github.com/harsh25jai/react-native-advance-image,num_dependents_deps.dev:0 github.com/harsh306/continuation-jax, @@ -574870,6 +585725,7 @@ github.com/harshasrinivas/pypi-check, github.com/harshasrinivas/pypilist, github.com/harshasrinivas/spinning, github.com/harshatba/django-migration-scripts, +github.com/harshau007/image-optimizer, github.com/harshavardhana/attrz, github.com/harshavardhana/auditproxy,num_dependents_deps.dev:0 github.com/harshavardhana/boilerpipy, @@ -574958,6 +585814,7 @@ github.com/harshkanjariya/any-steganography,num_dependents_deps.dev:0 github.com/harshkanjariya/nodedb-helper,num_dependents_deps.dev:0 github.com/harshkhandeparkar/tauri-settings,num_dependents_deps.dev:0 github.com/harshkhandeparkar/tauri-snap-packager,num_dependents_deps.dev:0 +github.com/harshmandan/git-restore-mtime-action, github.com/harshmange44/npx_card,num_dependents_deps.dev:0 github.com/harshmaur/clevertap-react,num_dependents_deps.dev:0 github.com/harshmaur/react-input-error-validation,num_dependents_deps.dev:0 @@ -574991,6 +585848,7 @@ github.com/harshshah85/npm-pack-lab,num_dependents_deps.dev:0 github.com/harshsharma22/baseClass, github.com/harshshekhar15/golang-concepts,num_dependents_deps.dev:0 github.com/harshshekhar15/queue,num_dependents_deps.dev:0 +github.com/harshsinghatz/openai-pr-reviewer, github.com/harshsinghvi/UniversalGPIO, github.com/harshthakur9030/node-disk-manager,num_dependents_deps.dev:0 github.com/harshtomar6/react-multi-form, @@ -575130,6 +585988,7 @@ github.com/harunhasdal/process-logger,num_dependents_deps.dev:0 github.com/harunhasdal/sftp-connector,num_dependents_deps.dev:0 github.com/harunnryd/tempokerja,num_dependents_deps.dev:0 github.com/harunnryd/tempolalu,num_dependents_deps.dev:0 +github.com/harunrst/reading-time-action, github.com/harunshimanto/autopreprocessing, github.com/haruntuncay/socket.io-client,num_dependents_deps.dev:0 github.com/harunurhan/bi-directional-map,num_dependents_deps.dev:8 @@ -575146,7 +586005,11 @@ github.com/harunurhan/rx-socket.io-client,num_dependents_deps.dev:0 github.com/harunurhan/turengJS,num_dependents_deps.dev:0 github.com/haruponponpopon/bitcoin,num_dependents_deps.dev:0 github.com/haruponponpopon/study,num_dependents_deps.dev:0 +github.com/harupy/auto-labeling, +github.com/harupy/comment-on-pr, +github.com/harupy/find-trailing-whitespace, github.com/harupy/mlflow-extend, +github.com/harupy/push-kaggle-kernel, github.com/harupy/pyspark-util, github.com/harupy/sphinx-plotly-directive, github.com/haruska/react-relay-network-modern,num_dependents_deps.dev:0 @@ -575248,6 +586111,7 @@ github.com/harveyslash/Sympyle, github.com/harveywangdao/ants,num_dependents_deps.dev:0 github.com/harveywangdao/earth,num_dependents_deps.dev:0 github.com/harvic3/nodetskeleton-tools,num_dependents_deps.dev:0 +github.com/harvidsen/bumpver-action, github.com/harvies/charon,num_dependents_deps.dev:109 github.com/harvies/easyexcel,num_dependents_deps.dev:0 github.com/harvimt/quamash, @@ -575284,6 +586148,7 @@ github.com/has2k1/plotnine,criticality_score:0.501600 github.com/has2k1/plotnine-examples, github.com/has2k1/plydata, github.com/has2k1/scikit-misc, +github.com/hasaan21/files-changed-detector-action, github.com/hasadna/OpenCaptcha, github.com/hasadna/accessible-graphs, github.com/hasadna/knesset-data, @@ -575611,6 +586476,7 @@ github.com/hashheart/hashheart.github.io,num_dependents_deps.dev:0 github.com/hashibuto/MiGreat, github.com/hashibuto/layer8,num_dependents_deps.dev:0 github.com/hashibutogarasu/cmdcolorprint, +github.com/hashicorp-contrib/setup-packer, github.com/hashicorp-demoapp/hashicups-client-go,num_dependents_deps.dev:0 github.com/hashicorp-demoapp/product-api-go,num_dependents_deps.dev:0 github.com/hashicorp-demoapp/public-api,num_dependents_deps.dev:0 @@ -575663,6 +586529,7 @@ github.com/hashicorp/ember-cli-api-double, github.com/hashicorp/envconsul,"criticality_score:0.427020,num_dependents_deps.dev:0" github.com/hashicorp/eventlogger,num_dependents_deps.dev:1 github.com/hashicorp/flight,num_dependents_deps.dev:0 +github.com/hashicorp/gh-action-check-broken-links, github.com/hashicorp/go-argmapper,num_dependents_deps.dev:31 github.com/hashicorp/go-azure-helpers,num_dependents_deps.dev:181 github.com/hashicorp/go-bexpr,num_dependents_deps.dev:49 @@ -575714,6 +586581,7 @@ github.com/hashicorp/nomad-openapi,num_dependents_deps.dev:0 github.com/hashicorp/nomad-scala-sdk,num_dependents_deps.dev:0 github.com/hashicorp/nomad-skeleton-driver-plugin,num_dependents_deps.dev:0 github.com/hashicorp/packer,"criticality_score:0.788800,num_dependents_deps.dev:612" +github.com/hashicorp/packer-github-actions, github.com/hashicorp/packer-plugin-alicloud,num_dependents_deps.dev:56 github.com/hashicorp/packer-plugin-amazon,num_dependents_deps.dev:56 github.com/hashicorp/packer-plugin-ansible,num_dependents_deps.dev:56 @@ -575761,6 +586629,8 @@ github.com/hashicorp/remark-plugins, github.com/hashicorp/rivet-graphql, github.com/hashicorp/sentinel-sdk,num_dependents_deps.dev:0 github.com/hashicorp/serf,"criticality_score:0.437590,num_dependents_deps.dev:6990" +github.com/hashicorp/setup-copywrite, +github.com/hashicorp/setup-nomad-pack, github.com/hashicorp/setup-terraform,criticality_score:0.404640 github.com/hashicorp/shared-secure-libs,num_dependents_deps.dev:20 github.com/hashicorp/structure,num_dependents_deps.dev:0 @@ -575770,6 +586640,7 @@ github.com/hashicorp/terraform,"criticality_score:0.832360,num_dependents_deps.d github.com/hashicorp/terraform-aws-consul,"criticality_score:0.508170,num_dependents_deps.dev:0" github.com/hashicorp/terraform-aws-vault,"criticality_score:0.438210,num_dependents_deps.dev:0" github.com/hashicorp/terraform-cdk,criticality_score:0.521710 +github.com/hashicorp/terraform-cdk-action, github.com/hashicorp/terraform-cdk-go,num_dependents_deps.dev:0 github.com/hashicorp/terraform-config-inspect,num_dependents_deps.dev:1990 github.com/hashicorp/terraform-exec,num_dependents_deps.dev:1234 @@ -575828,6 +586699,7 @@ github.com/hashicorp/vagrant,criticality_score:0.772920 github.com/hashicorp/vagrant-vmware-desktop,num_dependents_deps.dev:0 github.com/hashicorp/vagrant_cloud,num_dependents_deps.dev:0 github.com/hashicorp/vault,"criticality_score:0.696570,num_dependents_deps.dev:5699" +github.com/hashicorp/vault-action, github.com/hashicorp/vault-csi-provider,num_dependents_deps.dev:0 github.com/hashicorp/vault-guides,"criticality_score:0.385880,num_dependents_deps.dev:0" github.com/hashicorp/vault-helm,criticality_score:0.468950 @@ -575979,6 +586851,7 @@ github.com/hasindulanka/pantherago,num_dependents_deps.dev:0 github.com/hasinhamrah/myket-iab-cordova-plugin,num_dependents_deps.dev:0 github.com/hasiotis/zbuilder, github.com/hasit/bolt,num_dependents_deps.dev:0 +github.com/hasithaa/setup-ballerina, github.com/hasithaishere/express-boom-v2, github.com/hasithajayasundara/react-awesome-megamenu,num_dependents_deps.dev:0 github.com/hasithalakmal/lazy,num_dependents_deps.dev:0 @@ -575986,6 +586859,13 @@ github.com/haskaalo/overwatch-api,num_dependents_deps.dev:0 github.com/haskalach/ellipsis-tooltip,num_dependents_deps.dev:0 github.com/haskasu/code-gamelet-vscode,num_dependents_deps.dev:0 github.com/haskell-CI/haskell-ci,criticality_score:0.511140 +github.com/haskell-actions/hlint-run, +github.com/haskell-actions/hlint-scan, +github.com/haskell-actions/hlint-setup, +github.com/haskell-actions/parse-cabal-file, +github.com/haskell-actions/run-fourmolu, +github.com/haskell-actions/run-ormolu, +github.com/haskell-actions/setup, github.com/haskell-beam/beam,criticality_score:0.440290 github.com/haskell-distributed/distributed-process,criticality_score:0.417390 github.com/haskell-foundation/foundation,criticality_score:0.434390 @@ -576036,6 +586916,7 @@ github.com/hasnainroopawalla/ShowML, github.com/hasnainroopawalla/ant-colony-optimization, github.com/hasnat/action-validator,num_dependents_deps.dev:0 github.com/hasnat/container-crontab,num_dependents_deps.dev:0 +github.com/hasnat/deploy-docker-compose, github.com/hasnat/dom-form-submit,num_dependents_deps.dev:0 github.com/hasnat/ftpfs,num_dependents_deps.dev:0 github.com/hasnat/http-stale-cache-proxy,num_dependents_deps.dev:0 @@ -576052,6 +586933,7 @@ github.com/hasparus/nom-ts,num_dependents_deps.dev:0 github.com/hasparus/springy-svgy-buttons,num_dependents_deps.dev:0 github.com/hasparus/strict-routes, github.com/hasparus/unsafe-keys,num_dependents_deps.dev:0 +github.com/hasretsariyer/firebase-app-distribution-github-action, github.com/hass-api/hassapi, github.com/hassaanp/host-local-files,num_dependents_deps.dev:0 github.com/hassadee/aframe-stl-exporter-component,num_dependents_deps.dev:0 @@ -576081,6 +586963,7 @@ github.com/hassanhfb/censorify,num_dependents_deps.dev:0 github.com/hassanhibbert/validate-manager,num_dependents_deps.dev:0 github.com/hassankhan/config,criticality_score:0.397880 github.com/hassankhan/emojify.js,num_dependents_deps.dev:12 +github.com/hassanmehedi1/my-github-action, github.com/hassansin/gh-release,num_dependents_deps.dev:0 github.com/hassansin/minio-go,num_dependents_deps.dev:0 github.com/hassansin/nock-playback,num_dependents_deps.dev:0 @@ -576129,7 +587012,9 @@ github.com/hasufell/pnmixer-rust,num_dependents_deps.dev:0 github.com/hasufell/rust-libnotify,num_dependents_deps.dev:4 github.com/hasujin/commclient,num_dependents_deps.dev:0 github.com/hasujin/ston_common,num_dependents_deps.dev:0 +github.com/hasundue/denopendabot, github.com/hasura/api-codegen,num_dependents_deps.dev:0 +github.com/hasura/comment-progress, github.com/hasura/gatsby-gitbook-starter,criticality_score:0.367480 github.com/hasura/generator-hasura-node, github.com/hasura/generator-hasura-web,num_dependents_deps.dev:0 @@ -576138,6 +587023,7 @@ github.com/hasura/graphiql,num_dependents_deps.dev:0 github.com/hasura/graphiql-explorer,num_dependents_deps.dev:0 github.com/hasura/graphql-engine,"criticality_score:0.624730,num_dependents_deps.dev:0" github.com/hasura/graphqurl,num_dependents_deps.dev:0 +github.com/hasura/hasura-cloud-preview-apps, github.com/hasura/js-sdk,num_dependents_deps.dev:0 github.com/hasura/json2graphql,num_dependents_deps.dev:0 github.com/hasura/kubetemplate, @@ -576190,6 +587076,7 @@ github.com/hata6502/ignore-files,num_dependents_deps.dev:0 github.com/hata6502/kanvas,num_dependents_deps.dev:0 github.com/hata6502/lazy-formatter,num_dependents_deps.dev:0 github.com/hata6502/negaposi,num_dependents_deps.dev:0 +github.com/hata6502/no-broken-dependency-action, github.com/hata6502/slice-html,num_dependents_deps.dev:0 github.com/hata6502/textlint-filter-rule-ja-named-entities,num_dependents_deps.dev:0 github.com/hata6502/textlint-filter-rule-urls,num_dependents_deps.dev:0 @@ -576199,6 +587086,7 @@ github.com/hata6502/textlint-rule-ja-no-inappropriate-words,num_dependents_deps. github.com/hata6502/textlint-rule-ja-no-orthographic-variants,num_dependents_deps.dev:0 github.com/hata6502/textlint-rule-ja-sudachi-synonym-suggestion,num_dependents_deps.dev:0 github.com/hata6502/textlint-rule-no-zero-width-spaces,num_dependents_deps.dev:0 +github.com/hata6502/zx-script-action, github.com/hatajoe/ghkw,num_dependents_deps.dev:0 github.com/hatajoe/go-git,num_dependents_deps.dev:0 github.com/hatajoe/ttools,num_dependents_deps.dev:0 @@ -576210,6 +587098,9 @@ github.com/hatamake/escape-html,num_dependents_deps.dev:0 github.com/hatamake/koto-parser, github.com/hatamiarash7/Nazer-JS,num_dependents_deps.dev:0 github.com/hatamiarash7/PacketTracer, +github.com/hatamiarash7/ar-paas-action, +github.com/hatamiarash7/openapi-generator, +github.com/hatamiarash7/repo-sync, github.com/hatappi/echo-server,num_dependents_deps.dev:0 github.com/hatappi/go-recmd,num_dependents_deps.dev:0 github.com/hatappi/gomodoro,num_dependents_deps.dev:0 @@ -576220,6 +587111,7 @@ github.com/hatch-is/loopback-testing,num_dependents_deps.dev:0 github.com/hatch-sh/hatch, github.com/hatch/nsweeper,num_dependents_deps.dev:0 github.com/hatch1fy/service-core,num_dependents_deps.dev:0 +github.com/hatchboxio/github-hatchbox-deploy-action, github.com/hatchedlabs/tachyons,num_dependents_deps.dev:0 github.com/hatcheryio/prettier-config,num_dependents_deps.dev:0 github.com/hatching/triage,num_dependents_deps.dev:0 @@ -576307,6 +587199,7 @@ github.com/hatsyjs/serve-static, github.com/hattan/botbuilder-greeting,num_dependents_deps.dev:0 github.com/hattan/hello-go,num_dependents_deps.dev:0 github.com/hattan/jokr, +github.com/hattan/verify-linked-issue-action, github.com/hatter30/math_base, github.com/hattie019425/net,num_dependents_deps.dev:0 github.com/hattiewebb/qratest,num_dependents_deps.dev:0 @@ -576371,6 +587264,9 @@ github.com/hauk3wu1ff/golang-api,num_dependents_deps.dev:0 github.com/hauk3wu1ff/greetings,num_dependents_deps.dev:0 github.com/hauk3wu1ff/hello,num_dependents_deps.dev:0 github.com/hauke96/simple-task-manager,num_dependents_deps.dev:0 +github.com/haukurh/aws-cloudfront-invalidation-action, +github.com/haukurh/aws-s3-sync-action, +github.com/haukurh/lftp-action, github.com/hauleth/ct,num_dependents_deps.dev:0 github.com/hauleth/libucl-sys,num_dependents_deps.dev:0 github.com/hauleth/soma,num_dependents_deps.dev:0 @@ -576379,6 +587275,7 @@ github.com/hauleth/vanilla-ujs,num_dependents_deps.dev:0 github.com/hauleth/zopfli-brunch,num_dependents_deps.dev:0 github.com/haulf/haulfgosdk,num_dependents_deps.dev:0 github.com/haulf/haulfresources,num_dependents_deps.dev:0 +github.com/haully/semantic-release-preview, github.com/haulmont/jmix-frontend,num_dependents_deps.dev:0 github.com/haum/mqtt_mpd, github.com/haumacher/msgbuf,num_dependents_deps.dev:0 @@ -576503,6 +587400,7 @@ github.com/havesource/cordova-plugin-push,num_dependents_deps.dev:0 github.com/havetrytwo/es_util,num_dependents_deps.dev:0 github.com/haveyoudebuggedit/go-retry,num_dependents_deps.dev:0 github.com/haveyoudebuggedit/gotestfmt,num_dependents_deps.dev:0 +github.com/haveyoudebuggedit/gotestfmt-action, github.com/havgry/ys-react,num_dependents_deps.dev:0 github.com/havhol/sharepoint-sync,num_dependents_deps.dev:0 github.com/havhol/snappysass,num_dependents_deps.dev:0 @@ -576599,6 +587497,7 @@ github.com/hawkins/interactive-scripts, github.com/hawkins/npm-script-runner,num_dependents_deps.dev:0 github.com/hawkins/prettier-webpack-loader,num_dependents_deps.dev:0 github.com/hawkins/prettier-webpack-plugin,num_dependents_deps.dev:4 +github.com/hawkinsw/ietf-publish-action, github.com/hawkinsw/qperf,num_dependents_deps.dev:0 github.com/hawkj/data_structures_go,num_dependents_deps.dev:0 github.com/hawkjo/freebarcodes, @@ -576867,9 +587766,15 @@ github.com/hay/stapes,num_dependents_deps.dev:0 github.com/hay/trackings,num_dependents_deps.dev:0 github.com/hay/wikilope,num_dependents_deps.dev:0 github.com/hay/ytplay,num_dependents_deps.dev:0 +github.com/haya14busa/action-bumpr, +github.com/haya14busa/action-cond, +github.com/haya14busa/action-update-semver, +github.com/haya14busa/action-workflow_run-status, github.com/haya14busa/github-release-stats,num_dependents_deps.dev:0 github.com/haya14busa/go-sarif,num_dependents_deps.dev:0 +github.com/hayaah/hello-world-javascript-action, github.com/hayaah/react-flow-chart,num_dependents_deps.dev:0 +github.com/hayaah/update-terrafrom-cloud-module, github.com/hayaato/marshalizer,num_dependents_deps.dev:0 github.com/hayabusa-cloud/hayabusa,num_dependents_deps.dev:0 github.com/hayabusa-cloud/hybs-server,num_dependents_deps.dev:0 @@ -576912,6 +587817,7 @@ github.com/hayatoito/serval,num_dependents_deps.dev:0 github.com/hayatoito/site,num_dependents_deps.dev:0 github.com/hayatoy/cloudml-magic, github.com/hayawata3626/eslint-plugin-arrow-function-brace, +github.com/hayawata3626/team-approval-checker, github.com/hayd/ctox, github.com/hayd/deno-docker,criticality_score:0.387710 github.com/hayd/deno-lambda,criticality_score:0.383650 @@ -577026,6 +587932,7 @@ github.com/hayes0724/web-font-converter,num_dependents_deps.dev:0 github.com/hayesall/rfgb, github.com/hayesall/rnlp, github.com/hayesgb/mlrun_connect, +github.com/hayesgm/seacrest, github.com/hayesjosh/yayes, github.com/hayesmaker/generator-rizzla,num_dependents_deps.dev:0 github.com/hayesmaker/grunt-smoothie,num_dependents_deps.dev:0 @@ -577088,9 +587995,13 @@ github.com/haystack-app/ui-toolkit,num_dependents_deps.dev:0 github.com/haystackjs/journey,num_dependents_deps.dev:0 github.com/haystackjs/start-journey,num_dependents_deps.dev:0 github.com/haytek/bysh, +github.com/haythem/public-ip, github.com/haytherecharlie/Imagenation,num_dependents_deps.dev:0 github.com/haytherecharlie/timed-fetch, github.com/haytko/apollo-link-watched-mutation,num_dependents_deps.dev:0 +github.com/hayuna/giphy, +github.com/hayuna/github-project-automation-plus, +github.com/hayuna/pr-update-action, github.com/haywair/goblog,num_dependents_deps.dev:0 github.com/haywirecoder/homebridge-envisalink-ademco,num_dependents_deps.dev:0 github.com/haywirecoder/homebridge-flobymoen,num_dependents_deps.dev:0 @@ -577123,6 +588034,7 @@ github.com/hazcod/intigriti-cicd-plugin,num_dependents_deps.dev:0 github.com/hazcod/intigriti-webhook,num_dependents_deps.dev:0 github.com/haze-lan/haze-go,num_dependents_deps.dev:0 github.com/hazealign/spawn-rx,num_dependents_deps.dev:0 +github.com/hazeezet/caprover-action, github.com/hazeim254/bootstrap-sass,num_dependents_deps.dev:0 github.com/hazel-ui/hazel-ui,num_dependents_deps.dev:0 github.com/hazelcast/frontend-shared, @@ -577253,11 +588165,13 @@ github.com/hb-chen/gmqtt,num_dependents_deps.dev:0 github.com/hb-go/micro,num_dependents_deps.dev:0 github.com/hb-go/pkg,num_dependents_deps.dev:0 github.com/hb0730/auto-sign,num_dependents_deps.dev:0 +github.com/hb0730/bot-notice-action, github.com/hb0730/dbvc,num_dependents_deps.dev:4 github.com/hb0730/go-backups,num_dependents_deps.dev:0 github.com/hb0730/go-check-certs,num_dependents_deps.dev:0 github.com/hb0730/go-request,num_dependents_deps.dev:0 github.com/hb0730/hb0730-commons,num_dependents_deps.dev:0 +github.com/hb0730/maven-action, github.com/hb0730/subdomain,num_dependents_deps.dev:0 github.com/hb0730/test-travis-deploy,num_dependents_deps.dev:0 github.com/hb0730/wechat-articles-spider,num_dependents_deps.dev:0 @@ -577288,6 +588202,7 @@ github.com/hbarcelos/maxmind2,num_dependents_deps.dev:0 github.com/hbarcelos/promise-js,num_dependents_deps.dev:0 github.com/hbarcelos/speckoloo,num_dependents_deps.dev:0 github.com/hbarcelos/stream3-concat,num_dependents_deps.dev:0 +github.com/hbarve1/github-action-firebase-functions, github.com/hbarve1/graphql-fetch,num_dependents_deps.dev:0 github.com/hbarve1/javascript,num_dependents_deps.dev:0 github.com/hbas/androidrules,num_dependents_deps.dev:0 @@ -577329,6 +588244,7 @@ github.com/hberkayozdemir/golang_data_structures,num_dependents_deps.dev:0 github.com/hbertoduarte/hilbert_2d,num_dependents_deps.dev:0 github.com/hbethune/lychee,num_dependents_deps.dev:0 github.com/hbf/miniball,num_dependents_deps.dev:13 +github.com/hbfernandes/slack-action, github.com/hbgaldino/react-zoom-with-pins,num_dependents_deps.dev:0 github.com/hbgaldino/strapi-provider-upload-google-storage, github.com/hbgl/laravel-mix-php-manifest,num_dependents_deps.dev:0 @@ -577462,6 +588378,7 @@ github.com/hbouvier/tomahawk-plugin-mongodb,num_dependents_deps.dev:0 github.com/hbouvier/tomahawk-plugin-redis,num_dependents_deps.dev:0 github.com/hbouvier/tomahawk-routes-kv-store,num_dependents_deps.dev:0 github.com/hbouvier/watchdog,num_dependents_deps.dev:0 +github.com/hbowron/github-action, github.com/hboylan/congress-mongodb,num_dependents_deps.dev:0 github.com/hboylan/express-mongoose-api-seed,num_dependents_deps.dev:0 github.com/hboylan/ng2-http, @@ -577537,6 +588454,8 @@ github.com/hc5duke/storekit-postback-validation,num_dependents_deps.dev:0 github.com/hcLei/npm_mapinterface,num_dependents_deps.dev:0 github.com/hcallen/python-xmatters, github.com/hcamusic/harmonysite,num_dependents_deps.dev:0 +github.com/hcancelik/pr-approval-tracker, +github.com/hcancelik/pr-conflict-finder, github.com/hcarrilloI/jquery-Rnd-FullBg,num_dependents_deps.dev:0 github.com/hcarvalhoalves/django-tsearch2, github.com/hcarver/skiller-whale-sync,num_dependents_deps.dev:0 @@ -577744,6 +588663,7 @@ github.com/hcphoon01/leaflet-headless,num_dependents_deps.dev:0 github.com/hcpl/serde_mtproto,num_dependents_deps.dev:0 github.com/hcpl/xkbgroup, github.com/hcpmiyuki/easySum, +github.com/hcpsilva/clang-format-action, github.com/hcsalis/vertx3-eventbus-rx-client,num_dependents_deps.dev:0 github.com/hcsch/crsp,num_dependents_deps.dev:0 github.com/hcsdtk/weapp-up,num_dependents_deps.dev:0 @@ -577773,6 +588693,7 @@ github.com/hcyhzy/ratelimiter,num_dependents_deps.dev:0 github.com/hczhcz/eslint-plugin-flowtype-comment,num_dependents_deps.dev:0 github.com/hczhcz/wechaty-telegram,num_dependents_deps.dev:0 github.com/hd-bz068/usehooks,num_dependents_deps.dev:0 +github.com/hd-deman/actions, github.com/hd-ui-examples/lerna-example,num_dependents_deps.dev:0 github.com/hd-ui/hd-ui,num_dependents_deps.dev:0 github.com/hd19861028/angular-mobile,num_dependents_deps.dev:0 @@ -577864,6 +588785,8 @@ github.com/hdensity/keycloak-crowd-user-federation,num_dependents_deps.dev:0 github.com/hdepro/fastjs,num_dependents_deps.dev:0 github.com/hderms/jasmine-include-fragment,num_dependents_deps.dev:0 github.com/hdeshev/allow-publish,num_dependents_deps.dev:0 +github.com/hdev14/laravel-test-action, +github.com/hdev14/sls-deploy-action, github.com/hdevalence/cpace,num_dependents_deps.dev:0 github.com/hdevalence/ed25519consensus,num_dependents_deps.dev:374 github.com/hdevalence/iaca-marker-macros,num_dependents_deps.dev:0 @@ -577886,9 +588809,11 @@ github.com/hdhami/react-pagination-lite,num_dependents_deps.dev:0 github.com/hdhami/sticky-js,num_dependents_deps.dev:0 github.com/hdima/erlport, github.com/hdimitrieski/ngrx-modal,num_dependents_deps.dev:0 +github.com/hdimon/prerelease-number, github.com/hdinsight/spark-eventhubs,num_dependents_deps.dev:0 github.com/hdisysteme/java-cfenv-s3,num_dependents_deps.dev:0 github.com/hdiv/hdiv,num_dependents_deps.dev:30 +github.com/hdiv/hdiv-vulnerability-check-action, github.com/hdjarv/dagens-namn,num_dependents_deps.dev:0 github.com/hdjonutz/react-datetimepicker-typescript,num_dependents_deps.dev:0 github.com/hdjwq/react-tabs,num_dependents_deps.dev:0 @@ -577913,12 +588838,17 @@ github.com/hdmamin/spellotape, github.com/hdmf-dev/hdmf, github.com/hdmf-dev/hdmf-docutils, github.com/hdmjesus/hdjesus-random-names,num_dependents_deps.dev:0 +github.com/hdmsantander/depends-docker-action, +github.com/hdmsantander/git-log-analyzer-action, +github.com/hdmsantander/npm-commit-date-ifier-action, +github.com/hdmsantander/scc-docker-action, github.com/hdmvide/Homebridge-SwitchSound,num_dependents_deps.dev:0 github.com/hdn-1d10t/divinity,num_dependents_deps.dev:0 github.com/hdngr/sriracha,num_dependents_deps.dev:2 github.com/hdnpt/geartrack, github.com/hdntecnologiabr/cra-template-hdnchakra,num_dependents_deps.dev:0 github.com/hdntecnologiabr/extensions,num_dependents_deps.dev:0 +github.com/hdoc/hdoc-github-action, github.com/hdocmsu/nbtest5, github.com/hdodenhof/AndroidStateMachine,num_dependents_deps.dev:0 github.com/hdodenhof/CircleImageView,"criticality_score:0.427620,num_dependents_deps.dev:15" @@ -578119,6 +589049,7 @@ github.com/headmastersquall/caatinga, github.com/headmelted/codebuilds,criticality_score:0.438850 github.com/headmyshoulder/odeint-v2,criticality_score:0.357320 github.com/headnet/collective.cachepurger, +github.com/headout/helm, github.com/heads-and-hands/handh-school-back,num_dependents_deps.dev:0 github.com/heads-up-org/heads-up, github.com/headsetapp/AutoUpdater,num_dependents_deps.dev:0 @@ -578138,6 +589069,7 @@ github.com/headwaters-ai/headwaters, github.com/headwayappco/widget,num_dependents_deps.dev:0 github.com/headwayio/carrier_wave_base64_uploader,num_dependents_deps.dev:0 github.com/headwayio/create-react-app,num_dependents_deps.dev:0 +github.com/headwayio/shipwright-tokens, github.com/headwinds/cross-country,num_dependents_deps.dev:0 github.com/headwirecom/jsonforms-react-spectrum-renderers,num_dependents_deps.dev:0 github.com/headwirecom/percli,num_dependents_deps.dev:0 @@ -578185,6 +589117,7 @@ github.com/healthonnet/honcode-certification-utils,num_dependents_deps.dev:2 github.com/healthonnet/is-honcode-certified,num_dependents_deps.dev:0 github.com/healthonrails/annolid, github.com/healthpartners/kube-monkey,num_dependents_deps.dev:0 +github.com/healthplace/npmrc-registry-login-action, github.com/healthscience/CALE,num_dependents_deps.dev:0 github.com/healthscience/node-safeflow,num_dependents_deps.dev:0 github.com/healthsparq/bootstrap-jetpacked,num_dependents_deps.dev:0 @@ -578440,6 +589373,7 @@ github.com/heavenstudio/pag_seguro,num_dependents_deps.dev:0 github.com/heavilessrose/goproc,num_dependents_deps.dev:0 github.com/heavis/iview,num_dependents_deps.dev:0 github.com/heaviss/ransomnote,num_dependents_deps.dev:0 +github.com/heavy-matill/action-firebase-hosting-functions-deploy, github.com/heavyairship/vega-transform-pg,num_dependents_deps.dev:0 github.com/heavybeard/advanced-zoom,num_dependents_deps.dev:0 github.com/heavybeard/gulp-json-to-css-variables,num_dependents_deps.dev:0 @@ -578517,6 +589451,8 @@ github.com/heca-project/heca,num_dependents_deps.dev:0 github.com/heca-project/heca-lib,num_dependents_deps.dev:0 github.com/heca-project/zmanim,num_dependents_deps.dev:0 github.com/hecanjog/pippi,num_dependents_deps.dev:0 +github.com/hecateapp/comply-action, +github.com/hecateapp/dispatch-action, github.com/hecelebi/mapsold,num_dependents_deps.dev:0 github.com/hech/domain-check, github.com/hechangmin/Todo,num_dependents_deps.dev:0 @@ -578578,6 +589514,7 @@ github.com/hecomp/session-management,num_dependents_deps.dev:0 github.com/hecrj/coffee,num_dependents_deps.dev:0 github.com/hecrj/glow_glyph,num_dependents_deps.dev:8 github.com/hecrj/iced,"criticality_score:0.493310,num_dependents_deps.dev:341" +github.com/hecrj/setup-rust-action, github.com/hecrj/wgpu_glyph,num_dependents_deps.dev:42 github.com/hecrj/window_clipboard,num_dependents_deps.dev:160 github.com/hecs/tiny-html-builder, @@ -578619,10 +589556,12 @@ github.com/hectorcorrea/jaguarDb,num_dependents_deps.dev:3 github.com/hectorcorrea/log-hanging-fruit,num_dependents_deps.dev:0 github.com/hectorcorrea/marcli,num_dependents_deps.dev:0 github.com/hectorcorrea/mongoConnect, +github.com/hectorcoy/aws-codecommit-syncv2, github.com/hectordolo/name-generator,num_dependents_deps.dev:0 github.com/hectorespert/python-oligo, github.com/hectorfhurtado/generator-nando-polymer,num_dependents_deps.dev:0 github.com/hectorgrecco/anvisa,num_dependents_deps.dev:0 +github.com/hectorguerrini/build-ios-action, github.com/hectorguo/babel-preset-chrome-43,num_dependents_deps.dev:0 github.com/hectorguo/react-3d-rotation-box,num_dependents_deps.dev:0 github.com/hectorguo/react-nested-table, @@ -578645,6 +589584,7 @@ github.com/hectorm/eslint-config-hectorm,num_dependents_deps.dev:0 github.com/hectorm/hblock,criticality_score:0.442680 github.com/hectorm/otpauth, github.com/hectormalot/rbac,num_dependents_deps.dev:0 +github.com/hectormartin42/actions-aws-eb, github.com/hectormendozao/aulaaprende,num_dependents_deps.dev:0 github.com/hectormz/napari-mat-images, github.com/hectorpalmatellez/hubot-cpf,num_dependents_deps.dev:0 @@ -578691,6 +589631,7 @@ github.com/hedgewars/hw,criticality_score:0.377450 github.com/hedgeyedev/jasmine-jstd-conf,num_dependents_deps.dev:0 github.com/hedgeyedev/mailroom,num_dependents_deps.dev:0 github.com/hedgeyedev/snow,num_dependents_deps.dev:0 +github.com/hedia-team/autobump-and-publish, github.com/hediant/amqp-subpub,num_dependents_deps.dev:0 github.com/hediant/ces-node,num_dependents_deps.dev:0 github.com/hediant/fish-collector, @@ -578741,6 +589682,7 @@ github.com/hedy06/gatsby-hello,num_dependents_deps.dev:0 github.com/hedy06/gatsby-hello/issues, github.com/hedy06/print-hello-to-console,num_dependents_deps.dev:0 github.com/hedyhli/gtrending, +github.com/hedyhli/passibility, github.com/hedyhli/starcli, github.com/hedyma86/byte-parse-util,num_dependents_deps.dev:0 github.com/hedyn/wsonrpc,num_dependents_deps.dev:2 @@ -578936,6 +589878,7 @@ github.com/hehu80/bitbackup-py, github.com/hehu80/pysalad, github.com/hei-pa/pimatic-homegear-ws,num_dependents_deps.dev:0 github.com/hei-school/avereno, +github.com/hei-school/aws-credentials-setter, github.com/heia-fr/pygments-arm, github.com/heia-fr/telecom-tower-server,num_dependents_deps.dev:0 github.com/heibaikn/promise-class,num_dependents_deps.dev:0 @@ -579106,7 +590049,9 @@ github.com/heing/conrec.js,num_dependents_deps.dev:0 github.com/heinhtetzawycc/react-native-image-picker-resizer,num_dependents_deps.dev:0 github.com/heinlinaung/heinlinaung,num_dependents_deps.dev:0 github.com/heinovski/plafosim, +github.com/heinrichcoetzee/back4app-deploy-action, github.com/heinrichhartmann/bankreport, +github.com/heinrichreimer/action-github-changelog-generator, github.com/heinrichreimer/material-intro,criticality_score:0.411000 github.com/heinst/nodejs-md5,num_dependents_deps.dev:0 github.com/heinthanth/parsenv-node,num_dependents_deps.dev:0 @@ -579173,7 +590118,11 @@ github.com/heitorbaldo/pyqpath, github.com/heitorfernandesnt/fc-docker-desafiogo,num_dependents_deps.dev:0 github.com/heitorlessa/apigw-secret-header,num_dependents_deps.dev:0 github.com/heitorlessa/goad,num_dependents_deps.dev:0 +github.com/heitorpolidoro/auto-release, +github.com/heitorpolidoro/autocreate-pr, +github.com/heitorpolidoro/automerge-pr, github.com/heitorpolidoro/colors, +github.com/heitorpolidoro/lint-with-PR-comments, github.com/heitorpolidoro/polidoro-argument, github.com/heitorpolidoro/polidoro-cli, github.com/heitorpolidoro/polidoro-gitlab, @@ -579287,6 +590236,9 @@ github.com/helabenkhalfallah/hb-elements,num_dependents_deps.dev:0 github.com/helabenkhalfallah/react-cli, github.com/helabenkhalfallah/react-sg-components,num_dependents_deps.dev:0 github.com/helabenkhalfallah/react-ui-kit,num_dependents_deps.dev:0 +github.com/helaili/github-graphql-action, +github.com/helaili/github-oidc-auth, +github.com/helaili/jekyll-action, github.com/helal-ismail/basis-connector,num_dependents_deps.dev:0 github.com/helaoutar/react-lazy-load-image,num_dependents_deps.dev:0 github.com/helapkg/hela,criticality_score:0.307070 @@ -579382,6 +590334,7 @@ github.com/helfer/graphql-disable-introspection,num_dependents_deps.dev:0 github.com/helfi92/h-scripts,num_dependents_deps.dev:0 github.com/helfi92/material-ui-treeview,num_dependents_deps.dev:0 github.com/helfi92/regex-from-extensions,num_dependents_deps.dev:0 +github.com/helfmanrTest/MyAction, github.com/helgardferreira/strict-formx, github.com/helgeFox/gif-check,num_dependents_deps.dev:0 github.com/helgeerbe/certbot-dns-ionos, @@ -579661,6 +590614,7 @@ github.com/hello-js/hello,num_dependents_deps.dev:0 github.com/hello-js/hello-config, github.com/hello-js/hello-index,num_dependents_deps.dev:2 github.com/hello-js/router,num_dependents_deps.dev:0 +github.com/hello-liang-shan/acr-delete-tag, github.com/hello-motto/videos-modal,num_dependents_deps.dev:0 github.com/hello-nyxo/component-library,num_dependents_deps.dev:0 github.com/hello-react/simplehttpserver2, @@ -580051,12 +591005,15 @@ github.com/hellysonrp/rclone,num_dependents_deps.dev:0 github.com/hellysonrp/storage,num_dependents_deps.dev:0 github.com/helm-inc/ember-pikaday-time, github.com/helm/chart-releaser,num_dependents_deps.dev:0 +github.com/helm/chart-releaser-action, github.com/helm/chart-testing,"criticality_score:0.520610,num_dependents_deps.dev:0" +github.com/helm/chart-testing-action, github.com/helm/chartmuseum,"criticality_score:0.478940,num_dependents_deps.dev:9" github.com/helm/charts,"criticality_score:0.820090,num_dependents_deps.dev:0" github.com/helm/helm,"criticality_score:0.763280,num_dependents_deps.dev:267" github.com/helm/helm-2to3,"criticality_score:0.436570,num_dependents_deps.dev:12" github.com/helm/hub,criticality_score:0.518090 +github.com/helm/kind-action, github.com/helm/monocular,"criticality_score:0.357250,num_dependents_deps.dev:0" github.com/helm168/react-web-resize,num_dependents_deps.dev:0 github.com/helm168/react-web-scroller,num_dependents_deps.dev:0 @@ -580087,6 +591044,7 @@ github.com/helmetjs/ienoopen,num_dependents_deps.dev:1774 github.com/helmetjs/nocache,num_dependents_deps.dev:9212 github.com/helmetjs/referrer-policy,num_dependents_deps.dev:5888 github.com/helmetjs/x-xss-protection,num_dependents_deps.dev:6418 +github.com/helmfile/helmfile-action, github.com/helmholtz-analytics/heat, github.com/helmi03/consul-haproxy,num_dependents_deps.dev:0 github.com/helmi03/gogeos,num_dependents_deps.dev:0 @@ -580129,7 +591087,9 @@ github.com/helmutkemper/kemper.com.br,num_dependents_deps.dev:0 github.com/helmutkemper/kemper.com.br.plugin.sqlite.user,num_dependents_deps.dev:0 github.com/helmutkemper/kemper.com.br.plugin.sqllite.menu,num_dependents_deps.dev:0 github.com/helmutkemper/kemper.com.br.plugin.sqllite.user,num_dependents_deps.dev:0 +github.com/helmwave/deploy-action, github.com/helmwave/helmwave,num_dependents_deps.dev:0 +github.com/helmwave/setup-action, github.com/helmwave/terraform-provider,num_dependents_deps.dev:0 github.com/helnokaly/adonis-cache,num_dependents_deps.dev:0 github.com/helols/spostcss-brunch,num_dependents_deps.dev:0 @@ -580168,6 +591128,7 @@ github.com/helperdiscord/petitio,num_dependents_deps.dev:44 github.com/helperdiscord/vote-client,num_dependents_deps.dev:0 github.com/helpermethod/continuous-update-maven-plugin,num_dependents_deps.dev:0 github.com/helpermethod/dependency-update-maven-plugin,num_dependents_deps.dev:0 +github.com/helpermethod/graalvm-native-image-toolchain, github.com/helpermethod/membrane-maven-plugin,num_dependents_deps.dev:0 github.com/helpers/banners,num_dependents_deps.dev:0 github.com/helpers/frep,num_dependents_deps.dev:0 @@ -580699,6 +591660,7 @@ github.com/hence-io/hence-inquisitor,num_dependents_deps.dev:0 github.com/hence-io/slush-hence,num_dependents_deps.dev:0 github.com/henchan/generator-drywall,num_dependents_deps.dev:0 github.com/henchc/syllabipy, +github.com/henchiyb/asana-create-task-github-action, github.com/henchmun/twitchlie,num_dependents_deps.dev:0 github.com/henchspace/jethro,num_dependents_deps.dev:0 github.com/hencjo/summer-migration,num_dependents_deps.dev:0 @@ -580778,6 +591740,7 @@ github.com/hendriklammers/cra-template-hendrik,num_dependents_deps.dev:0 github.com/hendriklammers/html-elm,num_dependents_deps.dev:0 github.com/hendriklammers/ku-quota,num_dependents_deps.dev:0 github.com/hendriklammers/nu-headlines,num_dependents_deps.dev:0 +github.com/hendrikmuhs/ccache-action, github.com/hendrikniemann/create-react-app,num_dependents_deps.dev:0 github.com/hendrikniemann/dataupdater,num_dependents_deps.dev:0 github.com/hendrikniemann/setlx.js,num_dependents_deps.dev:0 @@ -580808,6 +591771,8 @@ github.com/hendrixer/node-source-map-support,num_dependents_deps.dev:0 github.com/hendrixfan/delaunator-ruby,num_dependents_deps.dev:0 github.com/hendrixfan/triangle,num_dependents_deps.dev:0 github.com/hendrixfan/vue-accessibility-toolbar,num_dependents_deps.dev:0 +github.com/hendrixjoseph/jekyll-tag-page-generator-action, +github.com/hendrixjoseph/random-social-share, github.com/hendrixroa/cognito-defender,num_dependents_deps.dev:0 github.com/hendrixroa/mock-openapi-in-aws-api-gateway,num_dependents_deps.dev:0 github.com/hendrixroa/swagger-aws-api-gateway,num_dependents_deps.dev:0 @@ -580870,7 +591835,10 @@ github.com/hengkx/react-native-gdt-adnet,num_dependents_deps.dev:0 github.com/hengkx/react-native-oss,num_dependents_deps.dev:0 github.com/hengkx/react-native-pincode,num_dependents_deps.dev:0 github.com/hengkx/react-native-video-info,num_dependents_deps.dev:0 +github.com/hengkx/ssh-deploy, github.com/hengkyawijaya/dockerize,num_dependents_deps.dev:0 +github.com/hengkyawijaya/release-drafter-action, +github.com/hengkyawijaya/say-word-action, github.com/henglinli/tunnel,num_dependents_deps.dev:0 github.com/henglory/iso8583,num_dependents_deps.dev:0 github.com/hengruo/pycunia, @@ -580963,6 +591931,8 @@ github.com/henne-/unifi-api,num_dependents_deps.dev:0 github.com/henne-s/pco-tools, github.com/henneberger/typekin,num_dependents_deps.dev:0 github.com/hennedo/go-websockets,num_dependents_deps.dev:0 +github.com/hennejg/github-tag-action, +github.com/hennejg/slack-build-notifier, github.com/henneptech/docgen,num_dependents_deps.dev:0 github.com/hennessyevan/aluminum-ui, github.com/hennessyevan/gatsby-remark-grid-tables,num_dependents_deps.dev:2 @@ -581124,6 +592094,8 @@ github.com/henrimacedo/appromath, github.com/henrioseptiano/amartek,num_dependents_deps.dev:0 github.com/henriq-88/naver-id-login,num_dependents_deps.dev:0 github.com/henrique2003/http-server,num_dependents_deps.dev:0 +github.com/henrique502/action-docker-env-config, +github.com/henrique502/demo-action-conventional-standards, github.com/henrique502/node-cnab,num_dependents_deps.dev:0 github.com/henriqueArrazao/default-pagination-vue,num_dependents_deps.dev:0 github.com/henriquea/dat-color,num_dependents_deps.dev:0 @@ -581171,6 +592143,7 @@ github.com/henriquehbr/react-flickity,num_dependents_deps.dev:0 github.com/henriquehbr/svelte-matrix,num_dependents_deps.dev:0 github.com/henriquehbr/svelte-typewriter,num_dependents_deps.dev:0 github.com/henriquehbr/versionem,num_dependents_deps.dev:0 +github.com/henriquehorbovyi/Android-CI-CD, github.com/henriqueinonhe/generator-henriqueinonhe,num_dependents_deps.dev:0 github.com/henriqueinonhe/react-hooks,num_dependents_deps.dev:0 github.com/henriquelima1984/librarypython, @@ -581220,12 +592193,14 @@ github.com/henrixapp/ember-paper-tabs,num_dependents_deps.dev:0 github.com/henrixapp/vuex-orbit,num_dependents_deps.dev:0 github.com/henrixapp/webdav-submission,num_dependents_deps.dev:0 github.com/henrok1/test,num_dependents_deps.dev:0 +github.com/henrotaym/prepare-terraform-variables-action, github.com/henry-anderson/HTTPicnic,num_dependents_deps.dev:0 github.com/henry-burgess/jspsych-survey-control,num_dependents_deps.dev:0 github.com/henry-burgess/jspsych-survey-likert-rich, github.com/henry-burgess/psycho-gorilla,num_dependents_deps.dev:0 github.com/henry-burgess/psygo,num_dependents_deps.dev:0 github.com/henry-hc/fetch-decode,num_dependents_deps.dev:0 +github.com/henry-lang/pages-minify-action, github.com/henry-luo/mark, github.com/henry-luo/mark-js,num_dependents_deps.dev:0 github.com/henry-luo/mark-template, @@ -581301,6 +592276,8 @@ github.com/henrygd/get-data-attributes,num_dependents_deps.dev:0 github.com/henrygd/hide-show-scroll,num_dependents_deps.dev:0 github.com/henrygd/side-panel-menu-thing,num_dependents_deps.dev:0 github.com/henrygeorgist/go-statistics,num_dependents_deps.dev:2 +github.com/henrygriffiths/debug_action, +github.com/henrygriffiths/pr_lint, github.com/henryhe1234/lotide,num_dependents_deps.dev:0 github.com/henryhe9999/number2money,num_dependents_deps.dev:0 github.com/henryhiraki22/covid-api,num_dependents_deps.dev:0 @@ -581384,6 +592361,7 @@ github.com/henryrosalesmendez/nifwrapper, github.com/henrysdev/fisherman,num_dependents_deps.dev:0 github.com/henryse/go-messages,num_dependents_deps.dev:0 github.com/henryse/go-money,num_dependents_deps.dev:0 +github.com/henrysha/check-dependency-match-action, github.com/henrysha/hain-plugin-thetvdb,num_dependents_deps.dev:0 github.com/henrysher/kotocore, github.com/henrysher/opslib, @@ -581435,6 +592413,7 @@ github.com/henrytseng/helloworldr,num_dependents_deps.dev:0 github.com/henrytseng/hostr,num_dependents_deps.dev:0 github.com/henrytseng/node-resource,num_dependents_deps.dev:0 github.com/henrytseng/parametr, +github.com/henrytseng/readme-changelog, github.com/henrytseng/tictactoe,num_dependents_deps.dev:0 github.com/henryv0/grafitti-stencil, github.com/henryv11/async-request, @@ -581500,6 +592479,8 @@ github.com/heolin/strapping, github.com/heolin123/agreement, github.com/heolin123/funcrowd-frontend,num_dependents_deps.dev:0 github.com/heongilee/learngo,num_dependents_deps.dev:0 +github.com/heowc/action-file.io, +github.com/heowc/action-hexo, github.com/heowc/hexo-tag-gdemo,num_dependents_deps.dev:0 github.com/hep-gc/cloud-scheduler, github.com/hep-gc/dynafed_storagestats, @@ -581583,6 +592564,7 @@ github.com/hequan2017/go-webssh,num_dependents_deps.dev:0 github.com/hequanx/learn-go,num_dependents_deps.dev:0 github.com/heqyoufree/ModifyFGO,num_dependents_deps.dev:0 github.com/her-cat/golb,num_dependents_deps.dev:0 +github.com/her-cat/upyun-deployer, github.com/her0e1c1/pwm, github.com/hera-team/vis_cpu, github.com/herablog/itunes-app-reviews,num_dependents_deps.dev:0 @@ -581739,10 +592721,12 @@ github.com/herculesinc/nova.validator,num_dependents_deps.dev:0 github.com/herculesinc/pg-dao,num_dependents_deps.dev:0 github.com/herculesinc/pg-io,num_dependents_deps.dev:0 github.com/herculesinc/pohlig-hellman,num_dependents_deps.dev:0 +github.com/herculesjr/github-actions-jwt-generator, github.com/herculesksp/lineman-angular,num_dependents_deps.dev:0 github.com/herculesksp/lineman-jade,num_dependents_deps.dev:0 github.com/herczy/quicktester, github.com/herdius/herdius-core,num_dependents_deps.dev:0 +github.com/herdstat/herdstat-action, github.com/herdup/herd-ember,num_dependents_deps.dev:0 github.com/herdus0512/fscrypt,num_dependents_deps.dev:0 github.com/here-be-snapdragons/snapdragon-lexer,num_dependents_deps.dev:0 @@ -581835,6 +592819,8 @@ github.com/heresy/angularjs-social-login,num_dependents_deps.dev:0 github.com/heresy/simpla-firebase-auth,num_dependents_deps.dev:0 github.com/heresyrt/gridster.js,num_dependents_deps.dev:0 github.com/heretere/hdl,num_dependents_deps.dev:0 +github.com/heretical/mini-parsers, +github.com/heretical/pointer-path, github.com/heretse/node-red-contrib-blackloud-api,num_dependents_deps.dev:0 github.com/heretse/node-red-contrib-cloud-firebase-auth,num_dependents_deps.dev:0 github.com/herf/spdurl,num_dependents_deps.dev:0 @@ -581884,9 +592870,12 @@ github.com/hermanTenuki/goinpy,num_dependents_deps.dev:0 github.com/hermanTenuki/imageZIP, github.com/hermanbanken/RxFiddle,num_dependents_deps.dev:0 github.com/hermanbanken/go-githubapp,num_dependents_deps.dev:0 +github.com/hermanbanken/hubrise, +github.com/hermanbanken/kubeconform-action, github.com/hermanbanken/nsp-preprocessor-yarn,num_dependents_deps.dev:0 github.com/hermanbanken/otel-cloudtrace-renamer,num_dependents_deps.dev:0 github.com/hermanbanken/rx-splice,num_dependents_deps.dev:0 +github.com/hermanbanken/setup-go, github.com/hermanbergwerf/bashbeautify, github.com/hermanbergwerf/project.yaml,num_dependents_deps.dev:0 github.com/hermancaldara/2112, @@ -582368,6 +593357,7 @@ github.com/herschel666/arc-macros,num_dependents_deps.dev:0 github.com/herschel666/conditional-callback,num_dependents_deps.dev:0 github.com/herschel666/exif-loader,num_dependents_deps.dev:0 github.com/herschel666/html-to-kirbytext,num_dependents_deps.dev:0 +github.com/herschel666/microblog-action, github.com/herschel666/phox,num_dependents_deps.dev:0 github.com/hershal/whoshome,num_dependents_deps.dev:0 github.com/hershal/whoshome-cli,num_dependents_deps.dev:0 @@ -582385,6 +593375,7 @@ github.com/herteleo/vue-cli-plugin-vuido,num_dependents_deps.dev:0 github.com/herteleo/vue-mu,num_dependents_deps.dev:0 github.com/hertogp/imagine, github.com/hertweckhr1/fundamental-react,num_dependents_deps.dev:0 +github.com/hertzg/action-npm-goggles, github.com/hertzg/etekcity,num_dependents_deps.dev:0 github.com/hertzg/node-gdate-julian,num_dependents_deps.dev:0 github.com/hertzg/node-mount,num_dependents_deps.dev:0 @@ -582487,6 +593478,7 @@ github.com/hesh915/engine.io-go,num_dependents_deps.dev:0 github.com/hesh915/go-socket.io-client,num_dependents_deps.dev:0 github.com/heshaam-sigsci/lab,num_dependents_deps.dev:0 github.com/heshamabdou/go-mssqldb,num_dependents_deps.dev:0 +github.com/heshamghalaab/deployment-to-another-repo, github.com/heshed/gjson,num_dependents_deps.dev:0 github.com/heshed/vegeta,num_dependents_deps.dev:0 github.com/heshequ/he-date-format,num_dependents_deps.dev:0 @@ -582538,6 +593530,7 @@ github.com/hesto2/react-animated-list, github.com/hesto2/sez,num_dependents_deps.dev:0 github.com/hesto2/spotimute,num_dependents_deps.dev:0 github.com/heston/firebase-live-data, +github.com/hestonhoffman/changed-lines, github.com/heswap/heswap-sdk,num_dependents_deps.dev:0 github.com/heswap/heswap-uikit,num_dependents_deps.dev:0 github.com/hesyifei/emotion-native-media-query,num_dependents_deps.dev:0 @@ -582586,6 +593579,7 @@ github.com/hetrodoo/hetrodo-node-cursor-napi,num_dependents_deps.dev:0 github.com/hetsketch/gulp-ttf2svg,num_dependents_deps.dev:0 github.com/hettiger/d3js-wordcloud,num_dependents_deps.dev:0 github.com/hettiger/nativescript-plugin-regions,num_dependents_deps.dev:0 +github.com/hettlage/open-issue, github.com/hetykai/gowebdav,num_dependents_deps.dev:0 github.com/hetznerZA/localize-toolkit,num_dependents_deps.dev:0 github.com/hetznercloud/awesome-hcloud,criticality_score:0.334800 @@ -582634,6 +593628,8 @@ github.com/heurisio/heuris-py, github.com/heuristicAL/trackit,num_dependents_deps.dev:0 github.com/heurze/MDBFree,num_dependents_deps.dev:0 github.com/heurze/sticky-header,num_dependents_deps.dev:0 +github.com/heussd/babellint, +github.com/heussd/mirror-to-bitbucket-github-action, github.com/heutelbeck/base64uuid,num_dependents_deps.dev:0 github.com/hevangel/mutable_int, github.com/hevans90/ngx-filedropper,num_dependents_deps.dev:0 @@ -582932,6 +593928,7 @@ github.com/hexindai/hexindai-maven-plugin,num_dependents_deps.dev:0 github.com/hexindai/id5,num_dependents_deps.dev:0 github.com/hexindai/s3harding,num_dependents_deps.dev:0 github.com/hexindai/swagger-repo,num_dependents_deps.dev:0 +github.com/hexionas/grafana-annotation-action, github.com/hexiu/utils,num_dependents_deps.dev:0 github.com/hexiuhui/vue-choose,num_dependents_deps.dev:0 github.com/hexium310/custom-dashed-border,num_dependents_deps.dev:0 @@ -583089,6 +594086,7 @@ github.com/hexus/phaser-arcade-slopes,num_dependents_deps.dev:0 github.com/hexus/phaser-slopes,num_dependents_deps.dev:0 github.com/hexydec/dabby,num_dependents_deps.dev:0 github.com/hexylena/argparse2tool, +github.com/hexylena/tootit, github.com/hexyun/helpers,num_dependents_deps.dev:0 github.com/hexyun/hexdo,num_dependents_deps.dev:0 github.com/hey-booster/heybooster-toolkit, @@ -583238,6 +594236,7 @@ github.com/heygrady/neutrino-preset-standard,num_dependents_deps.dev:0 github.com/heygrady/redux-data-collections,num_dependents_deps.dev:0 github.com/heygrady/redux-saga-watch-actions,num_dependents_deps.dev:0 github.com/heygrady/redux-selectors,num_dependents_deps.dev:0 +github.com/heyhacksecurity/github-start-pentest-action, github.com/heyheyhello/haptic,num_dependents_deps.dev:0 github.com/heyhui2018/leetcode,num_dependents_deps.dev:0 github.com/heyi-core/codefactory,num_dependents_deps.dev:0 @@ -583343,6 +594342,7 @@ github.com/heyosj/minifile,num_dependents_deps.dev:0 github.com/heyouzhi/httprouter,num_dependents_deps.dev:0 github.com/heyparkerj/10guys1cup-discord-bot,num_dependents_deps.dev:0 github.com/heyparkerj/macro-calculator,num_dependents_deps.dev:0 +github.com/heypigeonhq/setup-skaffold, github.com/heypran/easy-console,num_dependents_deps.dev:0 github.com/heyprof/angularjs-input-birthday,num_dependents_deps.dev:0 github.com/heyprof/angularjs-input-file,num_dependents_deps.dev:0 @@ -583424,6 +594424,7 @@ github.com/heyvito/go-giter8,num_dependents_deps.dev:0 github.com/heyvito/goparse,num_dependents_deps.dev:0 github.com/heyvito/oxio,num_dependents_deps.dev:0 github.com/heyvito/prohibited-usernames,num_dependents_deps.dev:0 +github.com/heyvito/semver-releaser, github.com/heywbj/django-rest-framework-recursive, github.com/heywhy/dic-js,num_dependents_deps.dev:0 github.com/heywhy/vue-ioc,num_dependents_deps.dev:0 @@ -583638,6 +594639,7 @@ github.com/hfpiao/homeservice,num_dependents_deps.dev:0 github.com/hfpp2012/umi-plugin-external-lodash,num_dependents_deps.dev:0 github.com/hfpp2012/umi-plugin-hello,num_dependents_deps.dev:0 github.com/hfpp2012/umi-plugin-pro-block,num_dependents_deps.dev:0 +github.com/hfrSchmidt/ansible-lint-github-action, github.com/hfrada/TopedSearch,num_dependents_deps.dev:0 github.com/hfreire/eslint-config-hfreire,num_dependents_deps.dev:0 github.com/hfreire/facebook-login-for-robots,num_dependents_deps.dev:0 @@ -583665,6 +594667,8 @@ github.com/hfunc/hfunc-go,num_dependents_deps.dev:0 github.com/hfurubotten/enturclient, github.com/hfurubotten/niluclient, github.com/hfuss/ethernetes,num_dependents_deps.dev:0 +github.com/hfuss/setup-operator-sdk, +github.com/hfuss/setup-terraform-credentials, github.com/hfutpath/react-scrollload,num_dependents_deps.dev:0 github.com/hfutxqd/NicotvParser, github.com/hfuuss/antd-plus,num_dependents_deps.dev:0 @@ -583677,6 +594681,7 @@ github.com/hfwang/node-redis-objects,num_dependents_deps.dev:0 github.com/hfxunlp/pyhcrypt, github.com/hfymusic/anydoor,num_dependents_deps.dev:0 github.com/hfz-r/Broadcast-Plugin, +github.com/hg-jarlinghaus/aws-cdk-github-actions, github.com/hg-pavlov/lbext-auth,num_dependents_deps.dev:0 github.com/hg-pyun/axios-intercept-logger,num_dependents_deps.dev:0 github.com/hg-pyun/axios-logger, @@ -583781,6 +594786,7 @@ github.com/hgleyder/react-calendar-events-preview,num_dependents_deps.dev:0 github.com/hgleyder/react-polygon-particles-image, github.com/hgliyuhao/flower, github.com/hgliyuhao/little_dinosaur, +github.com/hglong16/action-notifications, github.com/hgmelectronics/defcode,num_dependents_deps.dev:0 github.com/hgmelectronics/flatten-include-yaml,num_dependents_deps.dev:0 github.com/hgmelectronics/node-hid-async, @@ -583885,6 +594891,7 @@ github.com/hh-h/aiohttp-swagger3, github.com/hh-h/aiosnmp, github.com/hh.ru/ssl-cert-check, github.com/hh10k/gulp-prune,num_dependents_deps.dev:0 +github.com/hh24k/dockerfile-templater-action, github.com/hh2o4/get-query-params,num_dependents_deps.dev:0 github.com/hh54188/Node-Simple-Cache,num_dependents_deps.dev:4 github.com/hh54188/Smart-Crawler,num_dependents_deps.dev:0 @@ -583923,6 +594930,7 @@ github.com/hharnisc/service-mq-pubsub,num_dependents_deps.dev:0 github.com/hharnisc/service-mq-pushworker,num_dependents_deps.dev:0 github.com/hharnisc/storybook-addon-figma,num_dependents_deps.dev:0 github.com/hharnisc/turtle-race,num_dependents_deps.dev:0 +github.com/hharnisc/wait-for-netlify-action, github.com/hharnisc/wayback,num_dependents_deps.dev:0 github.com/hharnisc/winston-express-middleware,num_dependents_deps.dev:0 github.com/hharutyunov/s3-bucket-multipart-toolkit, @@ -583950,6 +594958,7 @@ github.com/hhatto/rust-ens,num_dependents_deps.dev:0 github.com/hhawkins/generator-azurefunctions,num_dependents_deps.dev:0 github.com/hhb1994/homebridge-sensor-th,num_dependents_deps.dev:0 github.com/hhblaze/Biser,num_dependents_deps.dev:0 +github.com/hhcalder92/action-docker, github.com/hhcho/densvis, github.com/hhcol620/create-vue-app,num_dependents_deps.dev:0 github.com/hhd85/gg,num_dependents_deps.dev:0 @@ -584140,6 +595149,7 @@ github.com/hhxsv5/laravel-s,criticality_score:0.489870 github.com/hhy5861/bee,num_dependents_deps.dev:0 github.com/hhy5861/buffstreams,num_dependents_deps.dev:0 github.com/hhy5861/resty,num_dependents_deps.dev:0 +github.com/hhyasdf/image-sync-action, github.com/hhyo/Archery,criticality_score:0.509630 github.com/hhyo/SchemaObject, github.com/hhyo/SchemaSync, @@ -584166,6 +595176,8 @@ github.com/hi-ogawa/uci-ws, github.com/hi-primus/hi-dateinfer, github.com/hi-primus/hi-urlparser, github.com/hi-primus/optimus, +github.com/hi-rustin/run-on-arch-action-go, +github.com/hi-rustin/ti-community-rebase, github.com/hi-tech-park/react-native-keyboard-view,num_dependents_deps.dev:0 github.com/hi-wx/hi-wx,num_dependents_deps.dev:0 github.com/hi-zhenyu/expon, @@ -584262,6 +595274,11 @@ github.com/hibegin/simplewebserver,num_dependents_deps.dev:0 github.com/hibegin/simplewebserver-cli,num_dependents_deps.dev:0 github.com/hiber/ra-data-strapi,num_dependents_deps.dev:0 github.com/hiber/strapi-provider-upload-azure,num_dependents_deps.dev:0 +github.com/hiber3d/publish, +github.com/hiberbee/github-action-helm, +github.com/hiberbee/github-action-kops, +github.com/hiberbee/github-action-minikube, +github.com/hiberbee/github-action-skaffold, github.com/hiberbee/insomnia-theme, github.com/hibernate-redis/hibernate-redis,num_dependents_deps.dev:0 github.com/hibernate/aws-v4-signer-java-jbossmodules,num_dependents_deps.dev:0 @@ -584389,10 +595406,12 @@ github.com/hidadeng/tidytextpy, github.com/hidadeng/weibo_crawler, github.com/hidadeng/wordexpansion, github.com/hidakarintaro/gacha,num_dependents_deps.dev:0 +github.com/hidakatsuya/action-report-android-lint, github.com/hidakatsuya/fixture_group,num_dependents_deps.dev:0 github.com/hidakatsuya/pdf_matcher,num_dependents_deps.dev:0 github.com/hidakatsuya/pdf_matcher-test_adapters,num_dependents_deps.dev:0 github.com/hidakatsuya/pdf_matcher-testing,num_dependents_deps.dev:0 +github.com/hidakatsuya/setup-diff-pdf, github.com/hidakatsuya/thinreports-cli,num_dependents_deps.dev:0 github.com/hidalgopl/k8s-labels-validation-webhook,num_dependents_deps.dev:0 github.com/hidaris/aiowebthing, @@ -584584,6 +595603,7 @@ github.com/hidoriDcub/hydd-js,num_dependents_deps.dev:0 github.com/hidoriDcub/hydd-react-js,num_dependents_deps.dev:0 github.com/hidoriDcub/hydd-vue-js,num_dependents_deps.dev:0 github.com/hidracloud/hidra,num_dependents_deps.dev:0 +github.com/hidracloud/hidra-action, github.com/hidroh/materialistic,criticality_score:0.299260 github.com/hidrokit/hidrokit, github.com/hidstarshine/algorithm,num_dependents_deps.dev:0 @@ -584623,6 +595643,7 @@ github.com/hiendv/teible,num_dependents_deps.dev:0 github.com/hienha/emcli, github.com/hienle2020/input-notify,num_dependents_deps.dev:0 github.com/hienle2020/jquery-characters-caculator,num_dependents_deps.dev:0 +github.com/hienlh/none-contributed-alert, github.com/hiennguyen1205/test_deploy,num_dependents_deps.dev:0 github.com/hienpdbk/daily-practice,num_dependents_deps.dev:0 github.com/hienpham2102/rn-use-interval,num_dependents_deps.dev:0 @@ -584658,6 +595679,7 @@ github.com/hieuandree/tcom-react-native-webview,num_dependents_deps.dev:0 github.com/hieudoan7/golang,num_dependents_deps.dev:0 github.com/hieudole/react-native-paypal-integration,num_dependents_deps.dev:0 github.com/hieudt-2054/avengers-chatwork,num_dependents_deps.dev:0 +github.com/hieudt/sun-phpcs, github.com/hieugq/wf,num_dependents_deps.dev:0 github.com/hieuhani/node-odoorpc,num_dependents_deps.dev:0 github.com/hieuhani/nuxt-multi-tenancy-module,num_dependents_deps.dev:0 @@ -584714,6 +595736,7 @@ github.com/hieutt39/python-zalo-official-sdk, github.com/hieuvp/linux-academy-downloader,num_dependents_deps.dev:0 github.com/hieuvp/react-native-fingerprint-scanner,"criticality_score:0.359700,num_dependents_deps.dev:0" github.com/hieuvp/xpath-html,num_dependents_deps.dev:0 +github.com/hieuwu/notify-microsoft-teams, github.com/hieuxit/HighLightTextView,num_dependents_deps.dev:0 github.com/hieuxit/android-binding,num_dependents_deps.dev:0 github.com/hieuxit/android-collectionmodule,num_dependents_deps.dev:0 @@ -584767,11 +595790,13 @@ github.com/higanworks/knife-zcloudjp,num_dependents_deps.dev:0 github.com/higanworks/knife-zero,num_dependents_deps.dev:0 github.com/higanworks/sakurraform,num_dependents_deps.dev:0 github.com/higashi000/noa,num_dependents_deps.dev:0 +github.com/higebu/actions-email-domain, github.com/higebu/actions-vaddy-example,num_dependents_deps.dev:0 github.com/higebu/gogarp,num_dependents_deps.dev:0 github.com/higebu/vagrant-vyatta,num_dependents_deps.dev:0 github.com/higebu/vagrant-vyos,num_dependents_deps.dev:0 github.com/higebu/vnccmd,num_dependents_deps.dev:0 +github.com/higgins/action-hackernews-post, github.com/higginsrob/comply,num_dependents_deps.dev:0 github.com/higginsrob/isviewable,num_dependents_deps.dev:0 github.com/higginsrob/jdom,num_dependents_deps.dev:4 @@ -584798,6 +595823,7 @@ github.com/high54/angular-6-social-login,num_dependents_deps.dev:0 github.com/high54/ngfast,num_dependents_deps.dev:0 github.com/highalpha/fullname_parser,num_dependents_deps.dev:0 github.com/highb/pathspec-ruby,num_dependents_deps.dev:82 +github.com/highbyte/sonarscan-dotnet, github.com/highcharts/adapt-chart-to-legend,num_dependents_deps.dev:2 github.com/highcharts/crossing-specific-value,num_dependents_deps.dev:0 github.com/highcharts/draggable-legend,num_dependents_deps.dev:0 @@ -584969,6 +595995,8 @@ github.com/highsource/lhapi-client,num_dependents_deps.dev:0 github.com/highsource/maven-jaxb2-plugin,criticality_score:0.327690 github.com/highsource/ogc-schemas,num_dependents_deps.dev:496 github.com/highsource/w3c-schemas,num_dependents_deps.dev:204 +github.com/highspeedoffice/apm-sourcemap-upload, +github.com/highspeedoffice/pytest-cov-xml-parser, github.com/highstone-team/hyrai-icons,num_dependents_deps.dev:0 github.com/highstrike/raspberry-ready,num_dependents_deps.dev:0 github.com/hightail/grunt-smartling-sdk,num_dependents_deps.dev:0 @@ -584978,6 +596006,7 @@ github.com/hightcoast/convertkit-node,num_dependents_deps.dev:0 github.com/hightechtony/ngx-responsive,num_dependents_deps.dev:0 github.com/hightechtony/ngx-responsive-carousel-o, github.com/hightouchio/airflow-provider-hightouch, +github.com/hightouchio/hightouch-github-action, github.com/hightouchio/passage,num_dependents_deps.dev:0 github.com/highvalley-systems/signalbox,num_dependents_deps.dev:0 github.com/highwall/pexpect-serial, @@ -585126,6 +596155,7 @@ github.com/hijiangtao/fliggy-test,num_dependents_deps.dev:0 github.com/hijiangtao/glmaps,num_dependents_deps.dev:0 github.com/hijiangtao/ng-highcharts,num_dependents_deps.dev:0 github.com/hijiangtao/shaonian,num_dependents_deps.dev:0 +github.com/hijiki51/wakatime-gcal-exporter, github.com/hijonathan/moment.twitter,num_dependents_deps.dev:0 github.com/hijup/eslint-plugin-hijup,num_dependents_deps.dev:0 github.com/hijup/js-check-header,num_dependents_deps.dev:0 @@ -585223,7 +596253,9 @@ github.com/hilanmiao/bell,num_dependents_deps.dev:0 github.com/hilaoyu/softether-api-client-go,num_dependents_deps.dev:0 github.com/hilariesit/colorunittest, github.com/hilariie/py-emailer, +github.com/hilarion5/send-mail, github.com/hilarryxu/lx-pylib, +github.com/hilary/openapi-cli-bundle-action, github.com/hilaryous/eslint-config-hilaryous,num_dependents_deps.dev:0 github.com/hilarysk/string_to_arpa,num_dependents_deps.dev:0 github.com/hilarysk/string_to_ipa,num_dependents_deps.dev:0 @@ -585985,6 +597017,7 @@ github.com/hiroki-kojima/CarryLessRangeCoder, github.com/hiroki-kojima/HFDA, github.com/hiroki-uchida/gitbook-plugin-html-minifier,num_dependents_deps.dev:0 github.com/hiroki0525/autoload_module, +github.com/hiroki0525/delete-vercel-preview-urls, github.com/hirokidaichi/flumine,num_dependents_deps.dev:0 github.com/hirokidaichi/gilot, github.com/hirokidaichi/namespace-js, @@ -586023,6 +597056,7 @@ github.com/hirokiosame/i-peers,num_dependents_deps.dev:0 github.com/hirokiosame/import,num_dependents_deps.dev:16 github.com/hirokiosame/mdvue-loader, github.com/hirokiosame/vue-pseudo-window,num_dependents_deps.dev:0 +github.com/hirokisakabe/pr-message-to-slack, github.com/hirokoji/aws-iot-device-manager,num_dependents_deps.dev:0 github.com/hirokoji/calil,num_dependents_deps.dev:0 github.com/hirokoji/waigaya, @@ -586167,6 +597201,7 @@ github.com/hisasann/darksouls,num_dependents_deps.dev:0 github.com/hisasann/electron-log-rotate,num_dependents_deps.dev:0 github.com/hisasann/grunt-yukkuroid,num_dependents_deps.dev:0 github.com/hisasann/lemon-sour,num_dependents_deps.dev:0 +github.com/hisasann/simple-github-auto-push, github.com/hisashim/docdiff,num_dependents_deps.dev:0 github.com/hisashimurai/get_gcp_secret, github.com/hisashimurai/get_metadata, @@ -586654,6 +597689,7 @@ github.com/hivivo/first-person-controls,num_dependents_deps.dev:0 github.com/hivivo/ngx-json-viewer,"Google,num_dependents_deps.dev:0" github.com/hivivo/teakettle,num_dependents_deps.dev:0 github.com/hivivo/winston-firestore, +github.com/hiwabbi/wabbi-gate-by-issues, github.com/hiwane/ganrac,num_dependents_deps.dev:0 github.com/hiwanz/generator-fedp,num_dependents_deps.dev:0 github.com/hiwanz/npmreg,num_dependents_deps.dev:0 @@ -586666,6 +597702,7 @@ github.com/hiway/rust-barkup,num_dependents_deps.dev:0 github.com/hiweb-io/hiweb-theme-sdk,num_dependents_deps.dev:0 github.com/hiweb-io/jsonapi-client-js,num_dependents_deps.dev:0 github.com/hiweb-io/snowplow-go-analytics-sdk,num_dependents_deps.dev:0 +github.com/hiwelo/new-dependencies-action, github.com/hiwjd/quick,num_dependents_deps.dev:0 github.com/hiwye/channel-bus,num_dependents_deps.dev:0 github.com/hiwynn/wynn-select-receiver,num_dependents_deps.dev:0 @@ -586833,6 +597870,7 @@ github.com/hjet/mixin-metrics,num_dependents_deps.dev:0 github.com/hjet/sdk,num_dependents_deps.dev:0 github.com/hjeti/vue-generator,num_dependents_deps.dev:0 github.com/hjfitz/contentful-redis,num_dependents_deps.dev:0 +github.com/hjfitz/depcheck-comment, github.com/hjfitz/emt,num_dependents_deps.dev:0 github.com/hjfitz/env,num_dependents_deps.dev:0 github.com/hjfitz/js-images,num_dependents_deps.dev:0 @@ -586915,6 +597953,7 @@ github.com/hjnilsson/country-flags,"criticality_score:0.434690,num_dependents_de github.com/hjnilsson/next-named-routes,num_dependents_deps.dev:0 github.com/hjnilsson/react-html-id,num_dependents_deps.dev:2 github.com/hjnilsson/strip-dom-tags,num_dependents_deps.dev:0 +github.com/hjoelh/wait-for-netlify-deploy-action, github.com/hjohn/hs.ddif,num_dependents_deps.dev:12 github.com/hjohn/hs.jfx.eventstream,num_dependents_deps.dev:4 github.com/hjonasson/highnode,num_dependents_deps.dev:0 @@ -587055,6 +598094,7 @@ github.com/hkdahal/react-places-autocomplete,num_dependents_deps.dev:0 github.com/hkdb/s76cc,num_dependents_deps.dev:0 github.com/hkdeman/term-rex, github.com/hkder/python-aqman, +github.com/hkdobrev/minio-deploy-action, github.com/hkdobrev/run-if-changed,num_dependents_deps.dev:0 github.com/hkeio/activerecord,num_dependents_deps.dev:2 github.com/hkeio/device-tracker,num_dependents_deps.dev:0 @@ -587248,6 +598288,8 @@ github.com/hkraftno/openapi2protohk,num_dependents_deps.dev:0 github.com/hkroger/homebridge-measurinator,num_dependents_deps.dev:0 github.com/hkrone74/jsonresume-theme-eternal-de,num_dependents_deps.dev:0 github.com/hkrone74/jsonresume-theme-standard-resume-de,num_dependents_deps.dev:0 +github.com/hkrsmk/ghost-restart-action, +github.com/hkrsmk/ghost-update-action, github.com/hkru/vigenere-cipher,num_dependents_deps.dev:0 github.com/hkrutzer/sync-loader,num_dependents_deps.dev:0 github.com/hkseo98/goweb,num_dependents_deps.dev:0 @@ -587276,6 +598318,11 @@ github.com/hkurhinen/ship-api,num_dependents_deps.dev:0 github.com/hkurhinen/worldScanner,num_dependents_deps.dev:0 github.com/hkurokawa/appfollow-api,num_dependents_deps.dev:0 github.com/hkurokawa/hubot-duuune,num_dependents_deps.dev:0 +github.com/hkusu/apk-info-action, +github.com/hkusu/s3-upload-action, +github.com/hkusu/slack-integration, +github.com/hkusu/slack-post-action, +github.com/hkusu/status-create-action, github.com/hkvalvik/fontset,num_dependents_deps.dev:0 github.com/hkvalvik/hamburger.js,num_dependents_deps.dev:0 github.com/hkvalvik/sass-media-mixins,num_dependents_deps.dev:0 @@ -587597,6 +598644,8 @@ github.com/hmans/three-elements,num_dependents_deps.dev:2 github.com/hmans/three-increments,num_dependents_deps.dev:0 github.com/hmans/trinity, github.com/hmanukyanvmw/ci-task-test,num_dependents_deps.dev:0 +github.com/hmanzur/actions-aws-eb, +github.com/hmanzur/actions-set-secret, github.com/hmanzur/express-query-filter,num_dependents_deps.dev:0 github.com/hmanzur/golang-first-steps,num_dependents_deps.dev:0 github.com/hmapjs/hmap,num_dependents_deps.dev:0 @@ -587606,6 +598655,7 @@ github.com/hmarcelino/grunt-dot-template-compiler,num_dependents_deps.dev:0 github.com/hmarcelodn/aurelia-virtual-scroll,num_dependents_deps.dev:0 github.com/hmarcelodn/generator-dotnet-docker,num_dependents_deps.dev:0 github.com/hmarques98/template-react-native-typescript,num_dependents_deps.dev:0 +github.com/hmarr/debug-action, github.com/hmarr/django-debug-toolbar-mongo, github.com/hmarr/pick-dom-element,num_dependents_deps.dev:0 github.com/hmartiniano/faz, @@ -587624,6 +598674,7 @@ github.com/hmate9/NodeVine,num_dependents_deps.dev:0 github.com/hmate9/fixjs,num_dependents_deps.dev:0 github.com/hmatuschek/eigen3-nnls,Google github.com/hmaxsoftware/sdk-reservas,num_dependents_deps.dev:0 +github.com/hmbig2/tf-linter-action, github.com/hmbrg/gatsby-plugin-netlify-cms-paths,num_dependents_deps.dev:0 github.com/hmbrg/jotai-query,num_dependents_deps.dev:0 github.com/hmbui/pyprchecker, @@ -587761,6 +598812,8 @@ github.com/hmlanigan/description,num_dependents_deps.dev:0 github.com/hmlauth/randomizer,num_dependents_deps.dev:0 github.com/hmleal/django-podcast, github.com/hmleal/goscal,num_dependents_deps.dev:0 +github.com/hmlendea/nexusmods-update, +github.com/hmlendea/steam-workshop-update, github.com/hmlhml/anydoor,num_dependents_deps.dev:0 github.com/hmlongco/Resolver,criticality_score:0.410490 github.com/hmmftg/libiso,num_dependents_deps.dev:0 @@ -587777,6 +598830,7 @@ github.com/hmnd/fuzzycsv, github.com/hmnd/vuepress-theme-dark-new,num_dependents_deps.dev:0 github.com/hmnd/webpack-dev-server-types,num_dependents_deps.dev:0 github.com/hmngwy/balita,num_dependents_deps.dev:0 +github.com/hmngwy/jenny, github.com/hmngwy/mutton, github.com/hmngwy/py-aws-lambda-handler, github.com/hmnhGeek/scanner, @@ -587843,6 +598897,7 @@ github.com/hms-networks/kolibri-js-client,num_dependents_deps.dev:0 github.com/hms-networks/kolibri-js-core,num_dependents_deps.dev:0 github.com/hms-networks/node-red-contrib-kolibri,num_dependents_deps.dev:0 github.com/hms181231/pan-cli,num_dependents_deps.dev:0 +github.com/hms5232/install-CNS11643-fonts-action, github.com/hms58/protoc-gen-micro,num_dependents_deps.dev:0 github.com/hms58/zaptextencoder,num_dependents_deps.dev:0 github.com/hmsayem/deployment-controller,num_dependents_deps.dev:0 @@ -587853,6 +598908,7 @@ github.com/hmsayem/jetstream-backup-restore-cli,num_dependents_deps.dev:0 github.com/hmsayem/server-controller,num_dependents_deps.dev:0 github.com/hmschreiner/node-hubspot-api,num_dependents_deps.dev:0 github.com/hmsjy2017/smzdm-pic,num_dependents_deps.dev:0 +github.com/hmsjy2017/ssh2actions, github.com/hmsk/frontmatter-markdown-loader,num_dependents_deps.dev:16 github.com/hmsk/generator-harp-gh-pages,num_dependents_deps.dev:0 github.com/hmsk/hubot-esa,num_dependents_deps.dev:0 @@ -587881,6 +598937,9 @@ github.com/hmtsai/go_project2,num_dependents_deps.dev:0 github.com/hmtt/cucumber-parallel-testing,num_dependents_deps.dev:0 github.com/hmtvltk2/django-thumbor, github.com/hmtylmz/ngr-gridstack,num_dependents_deps.dev:0 +github.com/hmu332233/action.compare-dependencies, +github.com/hmu332233/action.issues-to-posts, +github.com/hmu332233/action.similar-package-reviewer, github.com/hmu332233/markdown_navigator,num_dependents_deps.dev:0 github.com/hmu332233/npm.minung--dev-tools,num_dependents_deps.dev:0 github.com/hmu332233/npm.tree-cli,num_dependents_deps.dev:0 @@ -588105,6 +599164,7 @@ github.com/hoangdangal/roostervalidate,num_dependents_deps.dev:0 github.com/hoangdat/testLibrary,num_dependents_deps.dev:0 github.com/hoangdevelopers/ngx-config,num_dependents_deps.dev:0 github.com/hoangdoan267/react-native-FBInStream,num_dependents_deps.dev:0 +github.com/hoangduchuu/deploygate-upload-app, github.com/hoangduyptithcm/bookstore_users_api,num_dependents_deps.dev:0 github.com/hoangdv1112/array-move,num_dependents_deps.dev:0 github.com/hoangenouvo/passport-linkedin-token-v2, @@ -588205,6 +599265,7 @@ github.com/hoangvu12/videojs-touch-overlay,num_dependents_deps.dev:0 github.com/hoangvuoppa/NodeJS,num_dependents_deps.dev:0 github.com/hoangvvo/axioswal,num_dependents_deps.dev:0 github.com/hoangvvo/benzene,num_dependents_deps.dev:0 +github.com/hoangvvo/gitflow-workflow-action, github.com/hoangvvo/graphql-jit, github.com/hoangvvo/graphyne,num_dependents_deps.dev:0 github.com/hoangvvo/next-connect,"criticality_score:0.315080,num_dependents_deps.dev:0" @@ -588406,6 +599467,13 @@ github.com/hoc2019/easyfa, github.com/hoc2019/generator-ac,num_dependents_deps.dev:0 github.com/hocaboo/hcb-browser-info,num_dependents_deps.dev:0 github.com/hocdocsource/treesitter-to-unist,num_dependents_deps.dev:0 +github.com/hocgin/action-clear, +github.com/hocgin/action-edge-addone-upload, +github.com/hocgin/action-env, +github.com/hocgin/action-qiniu-upload, +github.com/hocgin/action-use-template, +github.com/hocgin/action-wechat-miniprogram-upload, +github.com/hocgin/action-wechat-project-publish, github.com/hocgin/gin-components,num_dependents_deps.dev:0 github.com/hocgin/gin-eggs,num_dependents_deps.dev:0 github.com/hocgin/gin-footer,num_dependents_deps.dev:0 @@ -588430,6 +599498,7 @@ github.com/hochzehn/ng2-semantic-ui,num_dependents_deps.dev:0 github.com/hockeybots/slapshot,num_dependents_deps.dev:0 github.com/hockor/egg-joi-new,num_dependents_deps.dev:0 github.com/hoco/scatter-swap-js,num_dependents_deps.dev:0 +github.com/hocon-validator/action, github.com/hocopor/webpack,num_dependents_deps.dev:0 github.com/hocss/autoprefixer-transform, github.com/hocss/cleancss-transform,num_dependents_deps.dev:0 @@ -588666,6 +599735,7 @@ github.com/hoho/knitter,num_dependents_deps.dev:0 github.com/hoho/node-conkitty,num_dependents_deps.dev:0 github.com/hoho/nyanoislands,num_dependents_deps.dev:0 github.com/hoho/wobla,num_dependents_deps.dev:0 +github.com/hoho4190/issue-pr-labeler, github.com/hohogpb/traverse_folder,num_dependents_deps.dev:0 github.com/hohonu/padhana, github.com/hohyun321/AssemblyDataReader, @@ -588690,6 +599760,7 @@ github.com/hoishin/tsconfig,num_dependents_deps.dev:0 github.com/hoishin/tslint-config,num_dependents_deps.dev:0 github.com/hoishin/use-nodecg,num_dependents_deps.dev:0 github.com/hoisie/web,criticality_score:0.346120 +github.com/hoisjp/azure-monitor-action, github.com/hoist/hoist-js,num_dependents_deps.dev:0 github.com/hoist/hoist-node-sdk,num_dependents_deps.dev:0 github.com/hoist/jokes,num_dependents_deps.dev:0 @@ -588713,6 +599784,7 @@ github.com/hojinYang/neureca, github.com/hojjat-faryabi/drawable_image, github.com/hojoonch/PyRho, github.com/hojp7874/koscrap, +github.com/hojulian/action-setup-cache-python-poetry, github.com/hojulian/mdb-bench,num_dependents_deps.dev:0 github.com/hojulian/microdb,num_dependents_deps.dev:0 github.com/hojunin/hjcoin,num_dependents_deps.dev:0 @@ -588749,9 +599821,11 @@ github.com/hokiedsp/semantic-ui-media-progress,num_dependents_deps.dev:0 github.com/hokieg3n1us/motionshader, github.com/hokify/agenda, github.com/hokify/axios-rate-limit, +github.com/hokify/code-coverage-assistant-ts, github.com/hokify/cordova-plugin-push,num_dependents_deps.dev:0 github.com/hokify/node-http-proxy,num_dependents_deps.dev:0 github.com/hokify/node-ts-cache,num_dependents_deps.dev:0 +github.com/hokify/remove-buildcache-action, github.com/hokify/vuejs-datepicker, github.com/hokitlee/go-ip2region,num_dependents_deps.dev:0 github.com/hokkey/jquery.yakumono,num_dependents_deps.dev:0 @@ -588769,6 +599843,7 @@ github.com/hokkqi/yiff, github.com/hokkung/go-gateway,num_dependents_deps.dev:0 github.com/hokolinks/hoko-android,num_dependents_deps.dev:0 github.com/hokonco/kitgo,num_dependents_deps.dev:0 +github.com/hokru/mc-client-action, github.com/hokulea/ember-css-modules-config, github.com/hokuma/auto-text-link,num_dependents_deps.dev:0 github.com/hokuma/chai-eql-immutable,num_dependents_deps.dev:0 @@ -588830,6 +599905,7 @@ github.com/holden-caulfield/qpjs,num_dependents_deps.dev:0 github.com/holden-nelson/plaw, github.com/holden-s/leetcode,num_dependents_deps.dev:0 github.com/holdenk/distributedcomputing4kids, +github.com/holdenk/spark-misc-utils, github.com/holdenk/spark-testing-base,"criticality_score:0.419790,num_dependents_deps.dev:2" github.com/holdequity/hardin,num_dependents_deps.dev:0 github.com/holdfenytolvaj/pogi,num_dependents_deps.dev:2 @@ -588842,6 +599918,7 @@ github.com/holdonbaby/hello,num_dependents_deps.dev:0 github.com/holdonnn/PyOGP, github.com/holdskill/vue-hui,num_dependents_deps.dev:0 github.com/holdymoldy/pyF3D, +github.com/hole19/git-tag-action, github.com/holedaemon/avakian,num_dependents_deps.dev:0 github.com/holedaemon/moja,num_dependents_deps.dev:0 github.com/holedaemon/scraper,num_dependents_deps.dev:0 @@ -588962,6 +600039,8 @@ github.com/holimon/wails-webview,num_dependents_deps.dev:0 github.com/holimon/webview-webview,num_dependents_deps.dev:0 github.com/holinnn/lupin, github.com/holinnn/ovh-rb,num_dependents_deps.dev:0 +github.com/holishing/gfortran_autotool_action, +github.com/holishing/gfortran_meson_action, github.com/holistic-web/toolbox,num_dependents_deps.dev:0 github.com/holisticon/angular-common,num_dependents_deps.dev:0 github.com/holisticon/angularjs-common,num_dependents_deps.dev:0 @@ -589205,6 +600284,7 @@ github.com/holochain/lair,num_dependents_deps.dev:52 github.com/holochain/lair-client-js,num_dependents_deps.dev:0 github.com/holochain/lib3h,num_dependents_deps.dev:5 github.com/holochain/n-bch-rs,num_dependents_deps.dev:0 +github.com/holochain/nix-cache-check, github.com/holochain/sim2h,num_dependents_deps.dev:0 github.com/holochain/sodoken,num_dependents_deps.dev:17 github.com/holochain/try-o-rama,num_dependents_deps.dev:0 @@ -589271,6 +600351,7 @@ github.com/holoviz/lumen, github.com/holoviz/panel,"criticality_score:0.544530,num_dependents_deps.dev:0" github.com/holoviz/param, github.com/holoviz/spatialpandas, +github.com/holowinski/plantuml-github-action, github.com/holoyan/python-data-validation, github.com/holrock/torquestat,num_dependents_deps.dev:0 github.com/holskil/bl-post-office, @@ -589317,6 +600398,7 @@ github.com/holvonix-open/paginate-generator,num_dependents_deps.dev:0 github.com/holvonix-open/pullmaster,num_dependents_deps.dev:0 github.com/holvonix-open/release-config-js,num_dependents_deps.dev:0 github.com/holvonix-open/request-stream-promise, +github.com/holvonix-open/setup-bazelisk, github.com/holvonix-open/solr-query-io-ts,num_dependents_deps.dev:0 github.com/holvonix-open/solr-query-maker,num_dependents_deps.dev:0 github.com/holvonix-open/wkt-io-ts,num_dependents_deps.dev:0 @@ -589453,6 +600535,7 @@ github.com/home-assistant-libs/zwave-js-server-python, github.com/home-assistant/addons,criticality_score:0.478540 github.com/home-assistant/android,criticality_score:0.573940 github.com/home-assistant/appdaemon, +github.com/home-assistant/builder, github.com/home-assistant/cli,num_dependents_deps.dev:0 github.com/home-assistant/core,criticality_score:0.871870 github.com/home-assistant/frontend,criticality_score:0.730040 @@ -589476,6 +600559,7 @@ github.com/home-assistant/tempio,num_dependents_deps.dev:0 github.com/home-buddy/express-appengine-handlers,num_dependents_deps.dev:0 github.com/home-buddy/rest-buddy,num_dependents_deps.dev:0 github.com/home-connect/homebridge-zigbee2mqtt,num_dependents_deps.dev:0 +github.com/home-furnishing-nordic/semver-release-manager, github.com/home-labs/es-loading-resolver, github.com/home-labs/esphinx-rails,num_dependents_deps.dev:0 github.com/home-labs/esphinx-rails-ui,num_dependents_deps.dev:0 @@ -589561,6 +600645,7 @@ github.com/homected/hdhrhttpapi, github.com/homecu/cronredux, github.com/homedad/pony-config,num_dependents_deps.dev:0 github.com/homeday-de/Chunks2JsonPlugin,num_dependents_deps.dev:14 +github.com/homeday-de/github-action-changelog-generator, github.com/homeday-de/homeday-assets,num_dependents_deps.dev:0 github.com/homeday-de/homeday-blocks,num_dependents_deps.dev:0 github.com/homedepot/AppDynamicsRESTx, @@ -589669,6 +600754,7 @@ github.com/homerjam/cloudant-backup,num_dependents_deps.dev:0 github.com/homerjam/cloudant-restore,num_dependents_deps.dev:0 github.com/homerjam/couch-restore,num_dependents_deps.dev:0 github.com/homerjam/generator-codeigniter,num_dependents_deps.dev:0 +github.com/homerjam/git-sync-alternate, github.com/homerjam/mjml-mailchimp,num_dependents_deps.dev:6 github.com/homerjam/now-builders,num_dependents_deps.dev:0 github.com/homerjam/prerender-s3-cache-alt,num_dependents_deps.dev:0 @@ -589893,6 +600979,8 @@ github.com/honey-comb/core-ui,num_dependents_deps.dev:0 github.com/honey/honey,num_dependents_deps.dev:0 github.com/honey32/riot-pubsub,num_dependents_deps.dev:0 github.com/honeybadger-io/gatsby-plugin-honeybadger,num_dependents_deps.dev:0 +github.com/honeybadger-io/github-notify-deploy-action, +github.com/honeybadger-io/github-upload-sourcemap-action, github.com/honeybadger-io/heya,criticality_score:0.332180 github.com/honeybadger-io/honeybadger-java,num_dependents_deps.dev:0 github.com/honeybadger-io/honeybadger-js,num_dependents_deps.dev:12 @@ -589924,6 +601012,8 @@ github.com/honeycombio/dynamic-sampler.js,num_dependents_deps.dev:0 github.com/honeycombio/dynsampler-go,num_dependents_deps.dev:0 github.com/honeycombio/example-metrics-client,num_dependents_deps.dev:0 github.com/honeycombio/examples,num_dependents_deps.dev:0 +github.com/honeycombio/gha-buildevents, +github.com/honeycombio/gha-create-asana-task, github.com/honeycombio/gosaml2,num_dependents_deps.dev:0 github.com/honeycombio/goxmldsig,num_dependents_deps.dev:0 github.com/honeycombio/heroku-honeycomb-drain,num_dependents_deps.dev:0 @@ -589973,6 +601063,7 @@ github.com/honeyframework/honey-cli,num_dependents_deps.dev:0 github.com/honeyframework/honey-core,num_dependents_deps.dev:0 github.com/honeyframework/honey-dipper-template,num_dependents_deps.dev:0 github.com/honeyframework/honey-scaffold,num_dependents_deps.dev:0 +github.com/honeygrid/action-functions-deploy, github.com/honeylogic-io/wagtail-code-blog, github.com/honeymaro/node-github-pages,num_dependents_deps.dev:0 github.com/honeynet/beeswarm, @@ -590006,7 +601097,10 @@ github.com/hong24/hello-npm,num_dependents_deps.dev:0 github.com/hong4rc/powered-by,num_dependents_deps.dev:0 github.com/hongaar/bandersnatch,num_dependents_deps.dev:0 github.com/hongaar/json-diff2,num_dependents_deps.dev:0 +github.com/hongaar/moker, github.com/hongaar/mokr,num_dependents_deps.dev:0 +github.com/hongaar/update-major-version-tag, +github.com/hongaar/update-node-versions, github.com/honganhbk/honganh_tets, github.com/hongarc/request-myself,num_dependents_deps.dev:0 github.com/hongbin0908/react-scripts-exted,num_dependents_deps.dev:0 @@ -590144,6 +601238,8 @@ github.com/hongyan99/beanone,num_dependents_deps.dev:0 github.com/hongyan99/xmapper,num_dependents_deps.dev:0 github.com/hongyanh/juice-pack,num_dependents_deps.dev:0 github.com/hongyanwang/crypto-lab,num_dependents_deps.dev:0 +github.com/hongyiheng/weather-bot, +github.com/hongyiheng/weibo-rank-bot, github.com/hongyin163/lynx-express-chr,num_dependents_deps.dev:0 github.com/hongyin163/react-native-android-lib,num_dependents_deps.dev:0 github.com/hongyin163/react-native-chart-android,num_dependents_deps.dev:0 @@ -590263,6 +601359,7 @@ github.com/honza/smithy,num_dependents_deps.dev:0 github.com/honza/vim-snippets,criticality_score:0.606340 github.com/honzab/scroll-phat-go,num_dependents_deps.dev:0 github.com/honzabilek4/leti.js,num_dependents_deps.dev:0 +github.com/honzabilek4/npm-publish, github.com/honzabrecka/composable-fetch,num_dependents_deps.dev:0 github.com/honzabrecka/dopar,num_dependents_deps.dev:0 github.com/honzabrecka/gama,num_dependents_deps.dev:0 @@ -590512,6 +601609,8 @@ github.com/hoonto/npmflat,num_dependents_deps.dev:0 github.com/hoonv/problemsolving,num_dependents_deps.dev:0 github.com/hoony/scrapm,num_dependents_deps.dev:0 github.com/hooone/datacc,num_dependents_deps.dev:0 +github.com/hooopo/oh-my-github-pipeline, +github.com/hooopo/repo-track-pipeline, github.com/hooopo/second_level_cache,criticality_score:0.342820 github.com/hoop0564/wikis,num_dependents_deps.dev:0 github.com/hoop33/bat,num_dependents_deps.dev:0 @@ -590615,8 +601714,11 @@ github.com/hopfenspace/hopfenmatrix, github.com/hophiphip/sockd,num_dependents_deps.dev:0 github.com/hophouse/gop,num_dependents_deps.dev:0 github.com/hophuochoanggia/consumerproduct,num_dependents_deps.dev:0 +github.com/hopin-team/action-reek, github.com/hopin-team/react-video-js-player, github.com/hopin-team/twirp-ts,num_dependents_deps.dev:0 +github.com/hopinc/action, +github.com/hopisaurus/helm-check-action, github.com/hopkings2008/yigfs,num_dependents_deps.dev:0 github.com/hopkinson/eslint-config-wbiao,num_dependents_deps.dev:0 github.com/hopkinson/sub_demo,num_dependents_deps.dev:0 @@ -590721,6 +601823,7 @@ github.com/horejsek/python-fastjsonschema,criticality_score:0.320880 github.com/horejsek/python-pytest-data, github.com/horejsek/python-sqlpuzzle, github.com/horejsek/python-webdriverwrapper, +github.com/horellana/openconnect, github.com/horensen/namingly,num_dependents_deps.dev:0 github.com/horensen/sg-areas,num_dependents_deps.dev:0 github.com/horeyes/sample-nativescript-login,num_dependents_deps.dev:0 @@ -590834,6 +601937,8 @@ github.com/horngderyang/hdytools, github.com/horninc/caselaw_tools, github.com/hornta/eslint-config,num_dependents_deps.dev:0 github.com/horntell/python-sdk, +github.com/hornv/changelog, +github.com/horochx/deploy-via-scp, github.com/horosgrisa/asify,num_dependents_deps.dev:0 github.com/horosgrisa/cli-html,num_dependents_deps.dev:6 github.com/horosgrisa/cli-jsx,num_dependents_deps.dev:0 @@ -591095,6 +602200,9 @@ github.com/hostport/wildduck-wrapper,num_dependents_deps.dev:0 github.com/hosts-guru/otamodels-golang,num_dependents_deps.dev:0 github.com/hostup/pool,num_dependents_deps.dev:0 github.com/hostwithquantum/ansible-openstack-inventory,num_dependents_deps.dev:0 +github.com/hostwithquantum/github-org-sync-action, +github.com/hostwithquantum/setup-k8s-action, +github.com/hostwithquantum/setup-runway, github.com/hostyhosting/scoob,num_dependents_deps.dev:0 github.com/hosuaby/Leaflet.SmoothMarkerBouncing,num_dependents_deps.dev:0 github.com/hosuaby/inject-resources,num_dependents_deps.dev:0 @@ -591148,6 +602256,7 @@ github.com/hotam-singh/phaeton-elements,num_dependents_deps.dev:0 github.com/hotam-singh/phaeton-sdk,num_dependents_deps.dev:0 github.com/hotarugali/hexo-deployer-git-plus,num_dependents_deps.dev:0 github.com/hotarugali/hexo-electric-clock-plus, +github.com/hotaruma/packagist-sync, github.com/hotax/hyper-rest,num_dependents_deps.dev:0 github.com/hotbaby/build-dist-package, github.com/hotbaby/django-throttling-py, @@ -591279,6 +602388,7 @@ github.com/hotpxl/tsinghua-university-network,num_dependents_deps.dev:0 github.com/hotrannam/btc-escrow,num_dependents_deps.dev:0 github.com/hotray-iot/shared,num_dependents_deps.dev:0 github.com/hotray-iot/themes,num_dependents_deps.dev:0 +github.com/hotrungnhan/VuePagesAction, github.com/hotrungnhan/vietnamese-non-tonemark,num_dependents_deps.dev:0 github.com/hotrungnhan/vietnamese-tonemarkless, github.com/hotrungnhan/vue-axios,num_dependents_deps.dev:0 @@ -591299,6 +602409,7 @@ github.com/hotswwkyo/stest, github.com/hotswwkyo/unittest_seven_helper, github.com/hottbox/hottbox, github.com/hottdogg/promise-reduce,num_dependents_deps.dev:0 +github.com/hottestchilipepper/github-strings-action, github.com/hottmanmichael/necto,num_dependents_deps.dev:0 github.com/hoturam/learning-git,num_dependents_deps.dev:0 github.com/hotusa/react-igmweb,num_dependents_deps.dev:0 @@ -591445,6 +602556,7 @@ github.com/houndsh/logspout-honeycomb,num_dependents_deps.dev:0 github.com/hounshell/gulp-compilers, github.com/hounsokhorn/vue2-events-calendars,num_dependents_deps.dev:0 github.com/houqiming/sshex,num_dependents_deps.dev:0 +github.com/houqp/download-release-assets-action, github.com/houqp/iris-python-client, github.com/houqp/leptess,num_dependents_deps.dev:0 github.com/houqp/sqlvet,num_dependents_deps.dev:0 @@ -591477,6 +602589,7 @@ github.com/house-of-giants/storybook-npm-test,num_dependents_deps.dev:0 github.com/house-of-vanity/mystem-rs,num_dependents_deps.dev:0 github.com/house9/clerk,num_dependents_deps.dev:0 github.com/house9/jquery-iframe-auto-height,num_dependents_deps.dev:0 +github.com/houseabsolute/actions-rust-cross, github.com/houseabsolute/omegasort,num_dependents_deps.dev:0 github.com/houseabsolute/precious,num_dependents_deps.dev:0 github.com/houseabsolute/ubi,num_dependents_deps.dev:0 @@ -591560,6 +602673,7 @@ github.com/houtianze/bypy,criticality_score:0.420970 github.com/houtianze/hdb-contractors,num_dependents_deps.dev:0 github.com/houtianze/jsonresume-theme-macchiato-ibic,num_dependents_deps.dev:0 github.com/houtianze/jsonresume-theme-stackoverflow-ibic,num_dependents_deps.dev:0 +github.com/houtianze/npm-publish-action, github.com/houtianze/rest-replayer,num_dependents_deps.dev:0 github.com/houtianze/resume-cli-ibic,num_dependents_deps.dev:0 github.com/houtianze/resume-schema-ibic,num_dependents_deps.dev:0 @@ -591625,8 +602739,10 @@ github.com/hovissimo/onshape-axios,num_dependents_deps.dev:0 github.com/hovodab/alrescha, github.com/hovodab/nekkar, github.com/hovren/crisp, +github.com/how-do-you/gh-actions, github.com/how-to-react/nwb-lerna-travis,num_dependents_deps.dev:0 github.com/how-to-react/nwb-semantic-release,num_dependents_deps.dev:0 +github.com/how2flow/upload-docker-action, github.com/howToCodeWell/footer-menu,num_dependents_deps.dev:0 github.com/howToCodeWell/header-menu,num_dependents_deps.dev:0 github.com/howToCodeWell/simple-image-grid, @@ -591785,11 +602901,13 @@ github.com/howlingmad/chancer,num_dependents_deps.dev:0 github.com/howlowck/botbuilder-redux, github.com/howlowck/card-validate,num_dependents_deps.dev:0 github.com/howlowck/cra-template-ts-redux-express,num_dependents_deps.dev:0 +github.com/howlowck/create-repo-action, github.com/howlowck/generator-static,num_dependents_deps.dev:0 github.com/howlowck/iothub-browser,num_dependents_deps.dev:0 github.com/howlowck/koa-geolocator-ip,num_dependents_deps.dev:0 github.com/howlowck/powerbi-dataview-transformer,num_dependents_deps.dev:0 github.com/howlowck/react-powerbi,num_dependents_deps.dev:0 +github.com/howlowck/ungen-action, github.com/howlowck/words-to-num,num_dependents_deps.dev:0 github.com/howm/homebridge-rfx-shutter,num_dependents_deps.dev:0 github.com/howm/homebridge-vogels-motionmount,num_dependents_deps.dev:0 @@ -592019,9 +603137,11 @@ github.com/hpcloud/tail,criticality_score:0.351610 github.com/hpcng/sif,num_dependents_deps.dev:0 github.com/hpcng/singularity,"criticality_score:0.592190,num_dependents_deps.dev:0" github.com/hpcng/warewulf,num_dependents_deps.dev:0 +github.com/hpcodecraft/oction-create-release-extended, github.com/hpcodecraft/pentabarf,num_dependents_deps.dev:0 github.com/hpcorona/xlsx-rs,num_dependents_deps.dev:0 github.com/hpcplus2/ts-import-plugin,num_dependents_deps.dev:0 +github.com/hpcsc/upload-bintray-docker-action, github.com/hpcslag/MicroDatabase,num_dependents_deps.dev:0 github.com/hpcslag/newspaper,num_dependents_deps.dev:0 github.com/hpcslag/node-csv-converter,num_dependents_deps.dev:0 @@ -592055,6 +603175,7 @@ github.com/hpedrorodrigues/Sand,num_dependents_deps.dev:0 github.com/hpehl/go-bindata,num_dependents_deps.dev:0 github.com/hpehl/mcup,num_dependents_deps.dev:0 github.com/hpenetworking/pyhpecw7, +github.com/hperl/github-actions, github.com/hperrin/svelte-material-ui,"criticality_score:0.475060,num_dependents_deps.dev:254" github.com/hperrone/ZooTClient3D,num_dependents_deps.dev:0 github.com/hpeyerl/etherrain, @@ -592098,8 +603219,10 @@ github.com/hpi-epic/manm-cs, github.com/hpi-schul-cloud/infra-otc-cert-manager-webhook,num_dependents_deps.dev:0 github.com/hpi-schul-cloud/lint-configs,num_dependents_deps.dev:0 github.com/hpi-schul-cloud/styles,num_dependents_deps.dev:0 +github.com/hpi-swa/setup-smalltalkCI, github.com/hpi-xnor/bitorch, github.com/hpi-xnor/bittorchinfo, +github.com/hpicgs/github-software-analytics-embedding, github.com/hpidcock/go-pub-sub-channel,num_dependents_deps.dev:0 github.com/hpidcock/grpc-proxy,num_dependents_deps.dev:0 github.com/hpidcock/worker,num_dependents_deps.dev:0 @@ -592322,6 +603445,7 @@ github.com/hr3lxphr6j/ctfile,num_dependents_deps.dev:0 github.com/hr3lxphr6j/requests,num_dependents_deps.dev:0 github.com/hr6r/hexo-migrator-blogger,num_dependents_deps.dev:0 github.com/hraberg/enumerable,num_dependents_deps.dev:0 +github.com/hrabiel/check-crowdin-translation-progress, github.com/hrafne/style-sniffer,num_dependents_deps.dev:0 github.com/hrafnthor/wakatime-client,num_dependents_deps.dev:0 github.com/hrahimi270/nestjs-algoliasearch,num_dependents_deps.dev:0 @@ -592332,8 +603456,10 @@ github.com/hrajchert/mddoc,num_dependents_deps.dev:0 github.com/hrakaroo/glob-library-java,num_dependents_deps.dev:0 github.com/hrakotobe/auto-file-to-dir,num_dependents_deps.dev:0 github.com/hramini/reduxtor,num_dependents_deps.dev:0 +github.com/hramos/needs-attention, github.com/hramos/react-native-template-master-detail,num_dependents_deps.dev:0 github.com/hramos/react-native-template-tabs,num_dependents_deps.dev:0 +github.com/hramos/respond-to-issue-based-on-label, github.com/hranharry/acss-cli,num_dependents_deps.dev:0 github.com/hranharry/alphabet-list-ali,num_dependents_deps.dev:0 github.com/hranharry/easy-wxpay,num_dependents_deps.dev:0 @@ -592372,6 +603498,7 @@ github.com/hrdtbs/react-code,num_dependents_deps.dev:0 github.com/hrdtbs/react-is-kagawa,num_dependents_deps.dev:0 github.com/hrdtbs/useJQuery,num_dependents_deps.dev:0 github.com/hredestig/python_boilerplate_decaf, +github.com/hreeder/discord-post-updater, github.com/hreeinfo/commons-box,num_dependents_deps.dev:0 github.com/hreeinfo/commons-embed-server,num_dependents_deps.dev:0 github.com/hreeinfo/gradle-corebox-plugin,num_dependents_deps.dev:15 @@ -592424,6 +603551,7 @@ github.com/hrgdavor/java-watcher,num_dependents_deps.dev:0 github.com/hrgdavor/mi2js,num_dependents_deps.dev:0 github.com/hrgui/classy-components, github.com/hrgui/classy-components.js,num_dependents_deps.dev:0 +github.com/hrgui/lcov-reporter-action, github.com/hrharder/erc20-token,num_dependents_deps.dev:0 github.com/hrharder/gas-price-utils,num_dependents_deps.dev:0 github.com/hrharder/weth-helper,num_dependents_deps.dev:0 @@ -592447,6 +603575,8 @@ github.com/hrishabhkumar/ms-rdp,num_dependents_deps.dev:0 github.com/hrishabhkumar/native-rdp,num_dependents_deps.dev:0 github.com/hrishabhkumar/react-workflow-editor,num_dependents_deps.dev:0 github.com/hrishikesh-bhagwat/golang-reference,num_dependents_deps.dev:0 +github.com/hrishikesh-kadam/setup-flutter, +github.com/hrishikesh-kadam/setup-lcov, github.com/hrishikeshio/Faker.py, github.com/hrishikeshio/dcjs-rails,num_dependents_deps.dev:0 github.com/hrishikeshpaul/vibey, @@ -592597,6 +603727,7 @@ github.com/hrueger/nativescript-letter-avatar,num_dependents_deps.dev:0 github.com/hrueger/ngx-advanced-image-editor,num_dependents_deps.dev:0 github.com/hrueger/ngx-onlyoffice,num_dependents_deps.dev:0 github.com/hrueger/redundancyjs,num_dependents_deps.dev:0 +github.com/hrueger/setup-nativescript, github.com/hrueger/zxcvbn,num_dependents_deps.dev:0 github.com/hrugani/myhtml2pdf,num_dependents_deps.dev:0 github.com/hrushikesh07/angular-hk-ui,num_dependents_deps.dev:0 @@ -592619,8 +603750,10 @@ github.com/hrydgard/ppsspp,criticality_score:0.694170 github.com/hryhola/wallet-connector-npm, github.com/hryk/bioruby-protparam,num_dependents_deps.dev:0 github.com/hryk/dm-groonga-adapter,num_dependents_deps.dev:0 +github.com/hryk/setup-ncbi-blast, github.com/hrynko/vue-pdf-embed,num_dependents_deps.dev:0 github.com/hryo224/NBAData, +github.com/hrysd/action-php_codesniffer, github.com/hrysd/capistrano-lingr,num_dependents_deps.dev:0 github.com/hrysd/grunt-hamlbars,num_dependents_deps.dev:0 github.com/hrysd/nature-remo-api-client,num_dependents_deps.dev:0 @@ -592692,6 +603825,7 @@ github.com/hsbakshi/awstwitter, github.com/hsbao/myView-wheel-ui,num_dependents_deps.dev:0 github.com/hsbiti/react-chartist,num_dependents_deps.dev:0 github.com/hsblhsn/denco,num_dependents_deps.dev:0 +github.com/hsblhsn/version-or-commit-sha, github.com/hsbmaulana/jscollector,num_dependents_deps.dev:0 github.com/hsbmaulana/reems,num_dependents_deps.dev:0 github.com/hsborges/copy-detection,num_dependents_deps.dev:0 @@ -592843,6 +603977,7 @@ github.com/hsiaoyi0504/bcinfo, github.com/hsierra00/chronos-angular-wizard-form,num_dependents_deps.dev:0 github.com/hsierra00/chronos-base,num_dependents_deps.dev:0 github.com/hsim13372/QCompress, +github.com/hsimah/ftp-action, github.com/hsimao/mars-cli-dev,num_dependents_deps.dev:8 github.com/hsimao/vue-notification,num_dependents_deps.dev:0 github.com/hsimao/vue-tabs-component,num_dependents_deps.dev:0 @@ -593024,6 +604159,9 @@ github.com/hsouth95/node-how-long-left,num_dependents_deps.dev:0 github.com/hsowan/baidu-autopush,num_dependents_deps.dev:0 github.com/hsp8712/addrparser,num_dependents_deps.dev:0 github.com/hsp9513/cheersoup,num_dependents_deps.dev:0 +github.com/hspaans/ansible-galaxy-action, +github.com/hspaans/latexmk-action, +github.com/hspaans/spamassassin-action, github.com/hspan/creon,num_dependents_deps.dev:0 github.com/hspec/hspec,criticality_score:0.545310 github.com/hsputra/kontrak-sqlite,num_dependents_deps.dev:0 @@ -593085,6 +604223,7 @@ github.com/hsun/node-simleak,num_dependents_deps.dev:0 github.com/hsun/node-throttler,num_dependents_deps.dev:0 github.com/hsuna/vue-egret, github.com/hsuna/vue-egret-loader, +github.com/hsupu/setup-awscli, github.com/hsuyenmin/kg_hsuyenmin_2021,num_dependents_deps.dev:0 github.com/hsw409328/fast-work,num_dependents_deps.dev:0 github.com/hswolff/activity-logger,num_dependents_deps.dev:2 @@ -593191,6 +604330,7 @@ github.com/htdvisser/did,num_dependents_deps.dev:0 github.com/htdvisser/exp,num_dependents_deps.dev:0 github.com/htdvisser/mqtt,num_dependents_deps.dev:0 github.com/htdvisser/slash,num_dependents_deps.dev:0 +github.com/htec-infra/gha-tbd, github.com/htec-infra/project-scaffold,num_dependents_deps.dev:0 github.com/hteiktinoo/react-whammy,num_dependents_deps.dev:0 github.com/htekgulds/blueprint-basit-tablo,num_dependents_deps.dev:0 @@ -593214,6 +604354,7 @@ github.com/htgc/fluent-plugin-azureeventhubs,num_dependents_deps.dev:0 github.com/htgc/fluent-plugin-azurestorage,num_dependents_deps.dev:0 github.com/htgoebel/gitflow, github.com/htgoebel/jinja2rst, +github.com/htgoebel/pysource-spellchecker, github.com/hth-frontend/eslint-config-hth,num_dependents_deps.dev:0 github.com/hth-frontend/hth-icon-font,num_dependents_deps.dev:0 github.com/hth-frontend/ku-icon-font,num_dependents_deps.dev:0 @@ -593299,6 +604440,7 @@ github.com/htmlcoin/HRC721Token,num_dependents_deps.dev:0 github.com/htmlcoin/htmlcoininfo-api, github.com/htmlcoin/htmlcoinjs-lib, github.com/htmlcssfreebies/macaw-tabs,num_dependents_deps.dev:0 +github.com/htmlcsstoimage/action, github.com/htmlfactorycz/grunt-frontend-starter,num_dependents_deps.dev:0 github.com/htmlfactorycz/grunt-img-to-inlinesvg,num_dependents_deps.dev:0 github.com/htmlfactorycz/grunt-my-first-plugin,num_dependents_deps.dev:0 @@ -593332,6 +604474,8 @@ github.com/htop-dev/htop,criticality_score:0.627730 github.com/htor/fusc,num_dependents_deps.dev:0 github.com/htorbov/capacitor-apple-login,num_dependents_deps.dev:0 github.com/htp84/neat_panda, +github.com/htpata/bluemachine_ga, +github.com/htpata/tmscanner-github-action, github.com/htpcBeginner/docker-traefik,criticality_score:0.333270 github.com/htpeter/analytics_toolbox, github.com/htqbuu/cordova-plugin-android-update,num_dependents_deps.dev:0 @@ -593351,6 +604495,7 @@ github.com/htruong24/dragdrop-dragula,num_dependents_deps.dev:0 github.com/htruong24/ng-dragdrop-dragula,num_dependents_deps.dev:0 github.com/hts0000/go-in-action,num_dependents_deps.dev:0 github.com/htsh-tsyk/releaseactiontest,num_dependents_deps.dev:0 +github.com/htsnvhoang/find-replace-multiple, github.com/httIsHere/vue-calendar-week,num_dependents_deps.dev:0 github.com/httj2/lotide,num_dependents_deps.dev:0 github.com/httl/httl,num_dependents_deps.dev:27 @@ -593434,6 +604579,7 @@ github.com/httplib2/httplib2,criticality_score:0.556240 github.com/httplock/httplock,num_dependents_deps.dev:0 github.com/httpmock/mock-http-server,num_dependents_deps.dev:14 github.com/httpmock/mock-http-server-specs,num_dependents_deps.dev:0 +github.com/httpoz/envoyer-action, github.com/httpoz/kafka-go-kata,num_dependents_deps.dev:0 github.com/httprb/http,"criticality_score:0.619500,num_dependents_deps.dev:822" github.com/httpreserve/gnomescreenshot,num_dependents_deps.dev:0 @@ -593492,7 +604638,9 @@ github.com/htwenning/sanic-jinja, github.com/htwyford/chartist-plugin-targetline,num_dependents_deps.dev:0 github.com/htyisabug/tgbot-youtube-notifier,num_dependents_deps.dev:0 github.com/htyleo/external-sort,num_dependents_deps.dev:0 +github.com/htynkn/aliyun-serverless-action, github.com/htynkn/generators-sited-plugin, +github.com/htynkn/terra-master-packing-action, github.com/htz-html/dove,num_dependents_deps.dev:0 github.com/htz-html/gulu-demo,num_dependents_deps.dev:0 github.com/htz/strapi-provider-upload-aws-s3-baseurl, @@ -593547,6 +604695,7 @@ github.com/huabench/go_test3,num_dependents_deps.dev:0 github.com/huachao1001/torch_helper, github.com/huacnlee/auto-correct.rs,num_dependents_deps.dev:0 github.com/huacnlee/autocorrect,num_dependents_deps.dev:0 +github.com/huacnlee/autocorrect-action, github.com/huacnlee/ckeditor5-build-rails,num_dependents_deps.dev:0 github.com/huacnlee/egg-parameters,num_dependents_deps.dev:0 github.com/huacnlee/gitlab-mail-receiver,num_dependents_deps.dev:0 @@ -594020,6 +605169,8 @@ github.com/huanshiwushuang/smart-gesture,num_dependents_deps.dev:0 github.com/huanteng/go-jsonlogic,num_dependents_deps.dev:0 github.com/huantianad/py-vitals, github.com/huanting0016/knowledge,num_dependents_deps.dev:0 +github.com/huantt/article-listing, +github.com/huantt/weather-forecast, github.com/huanxinding/generator-ifs,num_dependents_deps.dev:0 github.com/huanxsd/react-native-refresh-list-view,num_dependents_deps.dev:0 github.com/huanyifan/gomodtest,num_dependents_deps.dev:0 @@ -594086,16 +605237,24 @@ github.com/huawei-noah/trustworthyAI, github.com/huawei-noah/vega,criticality_score:0.310580 github.com/huawei/dockyard,num_dependents_deps.dev:2 github.com/huawei/esdk_k8s_plugin,num_dependents_deps.dev:0 +github.com/huaweicloud/Maven-cloudartifact-action, github.com/huaweicloud/ModelArts-Lab,criticality_score:0.463060 +github.com/huaweicloud/PyPI-cloudartifact-action, +github.com/huaweicloud/auth-action, +github.com/huaweicloud/cce-cluster-credentials, +github.com/huaweicloud/cce-credential-action, github.com/huaweicloud/cloudeye-exporter,num_dependents_deps.dev:0 github.com/huaweicloud/cloudide-messaging,num_dependents_deps.dev:0 github.com/huaweicloud/cloudide-nls,num_dependents_deps.dev:0 github.com/huaweicloud/cloudide-plugin-api,num_dependents_deps.dev:0 github.com/huaweicloud/cloudide-plugin-core,num_dependents_deps.dev:0 +github.com/huaweicloud/deploy-cci-action, +github.com/huaweicloud/deploy-functiongraph-action, github.com/huaweicloud/dubbo-servicecomb,num_dependents_deps.dev:76 github.com/huaweicloud/flink-dis-plugin,num_dependents_deps.dev:0 github.com/huaweicloud/generator-cloudide-plugin,num_dependents_deps.dev:0 github.com/huaweicloud/golangsdk,num_dependents_deps.dev:2 +github.com/huaweicloud/huaweicloud-cli-action, github.com/huaweicloud/huaweicloud-dis-kafka-adapter,num_dependents_deps.dev:26 github.com/huaweicloud/huaweicloud-iot-device-sdk-java,num_dependents_deps.dev:0 github.com/huaweicloud/huaweicloud-python-sdk-core, @@ -594111,10 +605270,16 @@ github.com/huaweicloud/huaweicloud-sdk-python, github.com/huaweicloud/huaweicloud-sdk-python-dis, github.com/huaweicloud/huaweicloud-sdk-python-frs, github.com/huaweicloud/huaweicloud-sdk-python-v3, +github.com/huaweicloud/npm-cloudartifact-action, +github.com/huaweicloud/obs-helper, github.com/huaweicloud/packer-builder-huaweicloud-ecs,num_dependents_deps.dev:0 +github.com/huaweicloud/scp-remote-action, github.com/huaweicloud/spark-streaming-dis-plugin,num_dependents_deps.dev:0 github.com/huaweicloud/spring-cloud-huawei,num_dependents_deps.dev:449 +github.com/huaweicloud/ssh-remote-action, github.com/huaweicloud/structured-streaming-dis-plugin,num_dependents_deps.dev:0 +github.com/huaweicloud/swr-login, +github.com/huaweicloud/swr-multiplatform-build-action, github.com/huaweicloud/terraform-provider-huaweicloud,num_dependents_deps.dev:0 github.com/huaweicloud/terraform-provider-telefonicaopencloud,num_dependents_deps.dev:0 github.com/huaweidatacomm/telegraf,num_dependents_deps.dev:0 @@ -594123,6 +605288,7 @@ github.com/huaxiabuluo/cross-domain-worker-url,num_dependents_deps.dev:0 github.com/huaxiafu/hello-world,num_dependents_deps.dev:0 github.com/huaxingmaster/numas-cli,num_dependents_deps.dev:0 github.com/huaxinjiayou/gulp-cmd-transport,num_dependents_deps.dev:0 +github.com/huaxk/postgis-action, github.com/huaxk/pulumi-proxmox,num_dependents_deps.dev:0 github.com/huaxr/gogoutine,num_dependents_deps.dev:0 github.com/huayeyehh/gitbook-plugin-head-nav,num_dependents_deps.dev:0 @@ -594510,6 +605676,7 @@ github.com/hudk114/mock,num_dependents_deps.dev:0 github.com/hudk114/pool,num_dependents_deps.dev:0 github.com/hudk114/vue-picture-drag,num_dependents_deps.dev:0 github.com/hudk114/vue-uri,num_dependents_deps.dev:0 +github.com/hudl/GHA-test-reporter, github.com/hudl/casperjs,num_dependents_deps.dev:0 github.com/hudl/fargo,num_dependents_deps.dev:9 github.com/hudl/grunt-casper, @@ -594752,6 +605919,8 @@ github.com/huferry/easy-rmq-pipe,num_dependents_deps.dev:0 github.com/huferry/id3tag-rss,num_dependents_deps.dev:0 github.com/huferry/job-dispatcher,num_dependents_deps.dev:0 github.com/huferry/pelan2,num_dependents_deps.dev:0 +github.com/huff-language/huff-tests-action, +github.com/huff-language/huff-toolchain, github.com/huffmsa/carte-blanche-python-utils, github.com/huffon/factsumm, github.com/huffpostdata/google-docs-console-download,num_dependents_deps.dev:0 @@ -594788,6 +605957,7 @@ github.com/hug33k/FreeMobileSMS, github.com/hug33k/homebridge-neomekit,num_dependents_deps.dev:0 github.com/hugabor/bundle-js,num_dependents_deps.dev:2 github.com/hugapi/hug,criticality_score:0.444100 +github.com/hugcabbage/next-version, github.com/hugcoday/plotchart,num_dependents_deps.dev:0 github.com/hugdubois/svc-fizzbuzz,num_dependents_deps.dev:0 github.com/huge818/tcp-tunnel,num_dependents_deps.dev:0 @@ -594837,6 +606007,7 @@ github.com/huggingface/api-inference-community, github.com/huggingface/autonlp, github.com/huggingface/datasets,criticality_score:0.593450 github.com/huggingface/doc-builder, +github.com/huggingface/helm-publish-action, github.com/huggingface/huggingface, github.com/huggingface/huggingface_hub,num_dependents_deps.dev:0 github.com/huggingface/huggingface_sb3, @@ -594847,6 +606018,7 @@ github.com/huggingface/node-question-answering,num_dependents_deps.dev:0 github.com/huggingface/pytorch-pretrained-BERT,Google github.com/huggingface/pytorch-pretrained-BigGAN, github.com/huggingface/pytorch-transformers, +github.com/huggingface/semver-release-action, github.com/huggingface/snapchat-lens-api,num_dependents_deps.dev:0 github.com/huggingface/spm_precompiled,num_dependents_deps.dev:1 github.com/huggingface/tokenizers,"criticality_score:0.552130,num_dependents_deps.dev:2" @@ -594859,6 +606031,7 @@ github.com/hugglesfox/canihasip-rs,num_dependents_deps.dev:0 github.com/hugh-panda/ckeditor,num_dependents_deps.dev:0 github.com/hugh2632/bloomfilter,num_dependents_deps.dev:0 github.com/hugh2632/crawler,num_dependents_deps.dev:0 +github.com/hughack/json-simple-template, github.com/hughbe/fetch-send-request,num_dependents_deps.dev:0 github.com/hughbe/levenshtein-sort,num_dependents_deps.dev:0 github.com/hughbe/react-bootstrap-custom-select,num_dependents_deps.dev:0 @@ -594867,6 +606040,9 @@ github.com/hughbe/react-bootstrap-text-dropdown,num_dependents_deps.dev:0 github.com/hughbe/react-native-onboarding,num_dependents_deps.dev:0 github.com/hughbe/react-wrapped-input,num_dependents_deps.dev:0 github.com/hughbreckenridge/lodown, +github.com/hughcube/aliyun-cli-action, +github.com/hughcube/aliyun-fun-action, +github.com/hughcube/deploy-action, github.com/hughe/s3gof3r,num_dependents_deps.dev:0 github.com/hughepaul/joi-model,num_dependents_deps.dev:0 github.com/hughesac/packet_builder,num_dependents_deps.dev:0 @@ -595255,6 +606431,7 @@ github.com/hughsk/wrap-stream,num_dependents_deps.dev:124 github.com/hughsk/xhr-progress,num_dependents_deps.dev:6 github.com/hughunter/go-signin-with-apple,num_dependents_deps.dev:0 github.com/hughzurname/temp-mailbox,num_dependents_deps.dev:0 +github.com/hugil/markdown-to-pdf, github.com/huginn/huginn,criticality_score:0.554310 github.com/hugla/hugla-node,num_dependents_deps.dev:0 github.com/hugla/hugla-node-body-parser,num_dependents_deps.dev:0 @@ -595282,6 +606459,7 @@ github.com/hugnosis/log4js-simple,num_dependents_deps.dev:0 github.com/hugo-dutra/mongo-socket-client,num_dependents_deps.dev:0 github.com/hugo-fonseca/portuguese-utils,num_dependents_deps.dev:0 github.com/hugo-marello/ntlm-socket,num_dependents_deps.dev:0 +github.com/hugo-mendiguchia/creacion-github-actions, github.com/hugo-mods/icons,num_dependents_deps.dev:0 github.com/hugo-nicaise/stellarcss,num_dependents_deps.dev:0 github.com/hugo-paulo/musical-giggle,num_dependents_deps.dev:0 @@ -595290,6 +606468,7 @@ github.com/hugo-s29/ozmo-compile, github.com/hugo-s29/ozmo-react,num_dependents_deps.dev:0 github.com/hugo1005/vizual, github.com/hugo1707/task-api,num_dependents_deps.dev:0 +github.com/hugo19941994/delete-draft-releases, github.com/hugo19941994/jwks-fetch,num_dependents_deps.dev:0 github.com/hugo1o1/yatype,num_dependents_deps.dev:0 github.com/hugo429586472/hugo-cli-generator,num_dependents_deps.dev:0 @@ -595308,10 +606487,17 @@ github.com/hugoalh-studio/NodeJS.GitHubSodium,num_dependents_deps.dev:0 github.com/hugoalh-studio/NodeJS.SymmetricCrypto,num_dependents_deps.dev:0 github.com/hugoalh-studio/command-line-parser-nodejs,num_dependents_deps.dev:0 github.com/hugoalh-studio/more-method-nodejs,num_dependents_deps.dev:0 +github.com/hugoalh-studio/setup-powershell-toolkit-ghaction, github.com/hugoalh/NodeJS.AdvancedDetermine,num_dependents_deps.dev:0 github.com/hugoalh/NodeJS.AdvancedRandom,num_dependents_deps.dev:0 github.com/hugoalh/NodeJS.MoreArray,num_dependents_deps.dev:0 github.com/hugoalh/NodeJS.ReadDirectoryDepth,num_dependents_deps.dev:0 +github.com/hugoalh/disk-space-optimizer-ghaction, +github.com/hugoalh/scan-virus-ghaction, +github.com/hugoalh/send-discord-webhook-ghaction, +github.com/hugoalh/send-ifttt-webhook-ghaction, +github.com/hugoalh/trigger-ifttt-webhook-applet-ghaction, +github.com/hugoalh/trigger-pipedream-workflow-ghaction, github.com/hugoangeles0810/tv-maze,num_dependents_deps.dev:0 github.com/hugoatease/react-surveys,num_dependents_deps.dev:0 github.com/hugoattal/eslint-plugin-sort-keys-custom-order,num_dependents_deps.dev:0 @@ -595743,6 +606929,7 @@ github.com/hujinglin/includes-loader, github.com/hujinglin/naming,num_dependents_deps.dev:0 github.com/hujinpu/dadablog,num_dependents_deps.dev:0 github.com/hujinsen/StarGAN-Voice-Conversion,Google +github.com/hujiulong/action-qiniu-upload, github.com/hujiulong/egg-pg,num_dependents_deps.dev:0 github.com/hujiulong/gcoord,"criticality_score:0.307110,num_dependents_deps.dev:32" github.com/hujiulong/gl-math,num_dependents_deps.dev:0 @@ -595890,6 +607077,7 @@ github.com/humancodecompany/utils,num_dependents_deps.dev:0 github.com/humancompatibleai/imitation,Google github.com/humancopy/peace.js,num_dependents_deps.dev:0 github.com/humandetail/egg-ts-sequelize,num_dependents_deps.dev:0 +github.com/humanendpoint/confluence-syncer, github.com/humanenginuity/assayer,num_dependents_deps.dev:0 github.com/humanetech-community/awesome-humane-tech,criticality_score:0.398900 github.com/humanforest/dixa-python, @@ -595904,6 +607092,8 @@ github.com/humangeo/rawes, github.com/humanhuang/webproxy,num_dependents_deps.dev:0 github.com/humaniq/emoji-auth,num_dependents_deps.dev:0 github.com/humanise-ai/botmaster-humanise-middleware,num_dependents_deps.dev:0 +github.com/humanitec/build-push-to-humanitec, +github.com/humanitec/preview-envs-action, github.com/humankeyboard/cascade, github.com/humanly-touched/miescuelsapo,num_dependents_deps.dev:0 github.com/humanmade/Cavalcade,criticality_score:0.428740 @@ -595982,6 +607172,8 @@ github.com/humbertda/ngx-openapi-form-generator,num_dependents_deps.dev:0 github.com/humbertin28github/mean,num_dependents_deps.dev:0 github.com/humbertoatondo/pokemon-api,num_dependents_deps.dev:0 github.com/humbertochiesi/golang,num_dependents_deps.dev:0 +github.com/humbertocrispim/github-action-ssh-docker-compose, +github.com/humbertocrispim/ssh-docker-compose-action, github.com/humbertolopez2107/reminder-daily,num_dependents_deps.dev:0 github.com/humbertomoura/fogcare,num_dependents_deps.dev:0 github.com/humbertopiaia/escpos-commands-js,num_dependents_deps.dev:0 @@ -595997,6 +607189,9 @@ github.com/humblesoftware/grunt-gretchen,num_dependents_deps.dev:0 github.com/humblespark/react-ssr-critical-styles,num_dependents_deps.dev:0 github.com/humblespark/sambell,num_dependents_deps.dev:0 github.com/humbletim/glm-js,num_dependents_deps.dev:0 +github.com/humbletim/install-vulkan-sdk, +github.com/humbletim/setup-vulkan-sdk, +github.com/humbletim/vsdevenv-shell, github.com/humboldt-xie/jschan,num_dependents_deps.dev:0 github.com/humboldt-xie/qlang,num_dependents_deps.dev:0 github.com/humboldt123/is-it-christmas,num_dependents_deps.dev:0 @@ -596075,6 +607270,7 @@ github.com/hummal/crittr,num_dependents_deps.dev:0 github.com/hummal/hyper-monokai-deluxe,num_dependents_deps.dev:0 github.com/hummal/lg-autoupdate,num_dependents_deps.dev:0 github.com/humman/box2d-rs,num_dependents_deps.dev:0 +github.com/hummeltech/freebsd-vagrant-action, github.com/hummer-studio/tarantula,num_dependents_deps.dev:0 github.com/hummer-studio/xminer,num_dependents_deps.dev:0 github.com/hummerd/rdq,num_dependents_deps.dev:0 @@ -596091,6 +607287,9 @@ github.com/hummingbirdtech/hodor,num_dependents_deps.dev:0 github.com/hummingly/ics,num_dependents_deps.dev:0 github.com/hummingwave/imagecrop,num_dependents_deps.dev:0 github.com/hummingwave/waveorm,num_dependents_deps.dev:0 +github.com/hummusonrails/awake-yet-action, +github.com/hummusonrails/dev-posts-to-jekyll-markdown-action, +github.com/hummusonrails/github-action-gpt-language-check, github.com/humor-grad-school/join-monster,num_dependents_deps.dev:0 github.com/humorHan/perfect-webpack-cli,num_dependents_deps.dev:0 github.com/humorHan/tinifyPngLoader,num_dependents_deps.dev:0 @@ -596179,6 +607378,7 @@ github.com/hung-phan/grunt-msx,num_dependents_deps.dev:0 github.com/hung12ct/the-way-to-go,num_dependents_deps.dev:0 github.com/hung135/py-dbutils, github.com/hungHoangDang/track-time-branch,num_dependents_deps.dev:0 +github.com/hungbang/vue-cli-plugin-s3-deploy-action-new, github.com/hungchai/co-talib,num_dependents_deps.dev:0 github.com/hungchenchang/aacencoder,num_dependents_deps.dev:0 github.com/hungchenchang/fdpassing,num_dependents_deps.dev:0 @@ -596197,6 +607397,7 @@ github.com/hungdh0x5e/token-cache,num_dependents_deps.dev:0 github.com/hunger/downloader,num_dependents_deps.dev:12 github.com/hungeraibin/AiBinUI,num_dependents_deps.dev:0 github.com/hungga1711/react-native-dnd-board,num_dependents_deps.dev:0 +github.com/hunghg255/action-notifications, github.com/hunghhdev/learn_golang,num_dependents_deps.dev:0 github.com/hunghkit/effect-views,num_dependents_deps.dev:0 github.com/hunghkit/sequelize-sql,num_dependents_deps.dev:0 @@ -596205,6 +607406,7 @@ github.com/hungkoala/graphql,num_dependents_deps.dev:0 github.com/hunglc007/tensorflow-yolov4-tflite,criticality_score:0.356140 github.com/hunglsxx/Node-Media-Server,num_dependents_deps.dev:0 github.com/hunglsxx/gocicd,num_dependents_deps.dev:0 +github.com/hungluu/move-tasks, github.com/hungluu2106/parrots,num_dependents_deps.dev:0 github.com/hungluu2106/redpanda,num_dependents_deps.dev:0 github.com/hungluu2106/savior,num_dependents_deps.dev:0 @@ -596274,6 +607476,7 @@ github.com/hungvm90/ng-summernote,num_dependents_deps.dev:0 github.com/hungvt13/typography.css,num_dependents_deps.dev:0 github.com/hungvu193/ReactNativeRasa,num_dependents_deps.dev:0 github.com/hungyiwu/pca_analysis_toolkit, +github.com/hunhoon21/github-issue-to-shortcut-story, github.com/hunidang/testgo,num_dependents_deps.dev:0 github.com/huningxin/opencv, github.com/hunjixin/venusapi,num_dependents_deps.dev:0 @@ -596702,10 +607905,14 @@ github.com/husainaloos/dep,num_dependents_deps.dev:0 github.com/husainap/https-log-server,num_dependents_deps.dev:0 github.com/husam212/proxymesh,num_dependents_deps.dev:0 github.com/husanu/nodejs-cpu-usage,num_dependents_deps.dev:2 +github.com/husarnet/cache, +github.com/husarnet/husarnet-action, github.com/husd/simple-compiler,num_dependents_deps.dev:0 github.com/huse2021/gomoku-cli,num_dependents_deps.dev:0 github.com/huse2021/hu-se2021-group3,num_dependents_deps.dev:0 github.com/huse2021/rpn-calculator,num_dependents_deps.dev:0 +github.com/huseinayub/waybackurls-action, +github.com/huseinayub/wkhtmltoimage-action, github.com/huseinnashr/bookstore-users-api,num_dependents_deps.dev:0 github.com/huseinzol05/Malaya, github.com/huseinzol05/dynamic-singer, @@ -596819,6 +608026,7 @@ github.com/hussain2y2/roboto-sass, github.com/hussain2y2/vue-datatable,num_dependents_deps.dev:0 github.com/hussainkazemi/fconsole,num_dependents_deps.dev:0 github.com/hussaintamboli/event-builder,num_dependents_deps.dev:0 +github.com/hussainweb/drupalqa-action, github.com/hussam-m/vue-select,num_dependents_deps.dev:0 github.com/hussam-m/vue2-form-loading,num_dependents_deps.dev:0 github.com/husscode/babel-plugin-strip-invariant,num_dependents_deps.dev:0 @@ -596901,7 +608109,10 @@ github.com/hustcc/x-return-top.js,num_dependents_deps.dev:0 github.com/hustcc/xhr.js,num_dependents_deps.dev:0 github.com/hustcc/xmorse,num_dependents_deps.dev:0 github.com/hustcc/yuque-lint,num_dependents_deps.dev:0 +github.com/hustcer/erda-pipeline, github.com/hustcer/inq,num_dependents_deps.dev:0 +github.com/hustcer/setup-moonbit, +github.com/hustcer/setup-nu, github.com/hustcer/star,num_dependents_deps.dev:0 github.com/hustchenbo/sanx-cli,num_dependents_deps.dev:0 github.com/hustclf/that_is_me_on_github, @@ -597022,6 +608233,7 @@ github.com/huuck/ADBHoney, github.com/huuhoa/adaptivecards, github.com/huuhoa/colusa, github.com/huuhoa/hyranote, +github.com/huukhai/github-action, github.com/huukimit/simple-scrollspy,num_dependents_deps.dev:0 github.com/huuminhtech/mp3-convert,num_dependents_deps.dev:0 github.com/huuminhtech/winston-huuminh-transport,num_dependents_deps.dev:0 @@ -597226,6 +608438,7 @@ github.com/huynhsamha/pascalcase-keys-object,num_dependents_deps.dev:0 github.com/huynhsamha/snakecase-keys-object,num_dependents_deps.dev:0 github.com/huynhsamha/uppercase-keys-object,num_dependents_deps.dev:0 github.com/huynhsang/passport-instagram-graph,num_dependents_deps.dev:0 +github.com/huynhthaianhhd/typescript-action-axie, github.com/huynq26/securityexamples,num_dependents_deps.dev:0 github.com/huynqbibabo/react-native-background-upload,num_dependents_deps.dev:0 github.com/huynqbibabo/react-native-google-cloud-speech-to-text,num_dependents_deps.dev:0 @@ -597467,6 +608680,7 @@ github.com/hwaipy/InteractionFreeJS,num_dependents_deps.dev:0 github.com/hwaipy/InteractionFreeMongoDB, github.com/hwaipy/InteractionFreePy, github.com/hwalaz/nitrox-calc,num_dependents_deps.dev:0 +github.com/hwalker928/ptero-gitsync, github.com/hwaly/handlebars-webpack-plugin,num_dependents_deps.dev:0 github.com/hwaly/hwaly-app,num_dependents_deps.dev:0 github.com/hwaly/hwaly-validate,num_dependents_deps.dev:0 @@ -597923,6 +609137,7 @@ github.com/hybrix-io/hybrixd-node,num_dependents_deps.dev:0 github.com/hybsearch/hybsearch,num_dependents_deps.dev:0 github.com/hybtalented/jsdoc-template-vue,num_dependents_deps.dev:0 github.com/hyc3z/utils, +github.com/hyc3z/waka-box, github.com/hyc7575/h2mJs,num_dependents_deps.dev:0 github.com/hychen/hycheck,num_dependents_deps.dev:0 github.com/hychen/hyexec,num_dependents_deps.dev:0 @@ -597960,6 +609175,7 @@ github.com/hydeenoble/helm-env,num_dependents_deps.dev:0 github.com/hydeenoble/ngx-dynamic-table,num_dependents_deps.dev:0 github.com/hydeng/auto-vue-routes-plugin,num_dependents_deps.dev:0 github.com/hydentity/nebuchadnezzar-IPFS,num_dependents_deps.dev:0 +github.com/hydephp/action, github.com/hyderapp/hyder-cli,num_dependents_deps.dev:0 github.com/hydezhaotoo/chkslave,num_dependents_deps.dev:0 github.com/hydgladiator/gocron,num_dependents_deps.dev:0 @@ -598032,6 +609248,8 @@ github.com/hydreio/graphql-batch-executor,num_dependents_deps.dev:4 github.com/hydreio/shimio,num_dependents_deps.dev:0 github.com/hydreio/shimio-graphql,num_dependents_deps.dev:0 github.com/hydrius/isspy, +github.com/hydro-cloud/hoge, +github.com/hydro-cloud/wp-post-action, github.com/hydro-dev/Hydro,num_dependents_deps.dev:10 github.com/hydro-dev/customize,num_dependents_deps.dev:0 github.com/hydro-dev/geoip,num_dependents_deps.dev:0 @@ -598156,11 +609374,13 @@ github.com/hyeongukryu/kaist-today-notice,num_dependents_deps.dev:0 github.com/hyeongukryu/riccardo, github.com/hyeongwon-choe/atm-project,num_dependents_deps.dev:0 github.com/hyeongyu-choi/graphql_server,num_dependents_deps.dev:0 +github.com/hyeongyuan/review-gpt-action, github.com/hyeonil/awesome-string,num_dependents_deps.dev:0 github.com/hyeonjae/github-action-test,num_dependents_deps.dev:0 github.com/hyeonjae/go-eventsource,num_dependents_deps.dev:0 github.com/hyeonjae/goavro,num_dependents_deps.dev:0 github.com/hyeonjae/guestbook,num_dependents_deps.dev:0 +github.com/hyeonjeong-ko/packiging-test, github.com/hyeonupark/arboretum,num_dependents_deps.dev:0 github.com/hyeonupark/babel-plugin-transform-decorators-unofficial,num_dependents_deps.dev:0 github.com/hyeonupark/babel-preset-escompile,num_dependents_deps.dev:0 @@ -598179,6 +609399,7 @@ github.com/hyerdev/vue-flow-form,num_dependents_deps.dev:0 github.com/hyeri0609/gulp-hyeriserver,num_dependents_deps.dev:0 github.com/hyeseong-dev/jobscrapper,num_dependents_deps.dev:0 github.com/hyeshik/seamlessf5, +github.com/hyesungoh/action-DPCRAS3CF, github.com/hyeungeunKim/react-custom-swiper,num_dependents_deps.dev:0 github.com/hyeyoon/dopyo.js,num_dependents_deps.dev:0 github.com/hyf152632/format-currency,num_dependents_deps.dev:0 @@ -598300,7 +609521,9 @@ github.com/hynding/bread-store,num_dependents_deps.dev:0 github.com/hynek.petrak/sshame, github.com/hynek/argon2-cffi,criticality_score:0.427840 github.com/hynek/argon2-cffi-bindings, +github.com/hynek/build-and-inspect-python-package, github.com/hynek/doc2dash,criticality_score:0.336380 +github.com/hynek/environ-config, github.com/hynek/environ_config, github.com/hynek/first, github.com/hynek/pem,Google @@ -598323,8 +609546,10 @@ github.com/hyogman/wip-it,num_dependents_deps.dev:0 github.com/hyojin/material-ui-datatables,num_dependents_deps.dev:0 github.com/hyone-labs/aurora-vue,num_dependents_deps.dev:0 github.com/hyonzin/hangul-braille-converter, +github.com/hyoo-ru/mam_build, github.com/hyoo-ru/mam_mol,criticality_score:0.371760 github.com/hyorax/react-native-countdown-bar,num_dependents_deps.dev:0 +github.com/hyorimitsu/actions-check-diff, github.com/hyosangkang/qsim,num_dependents_deps.dev:0 github.com/hyounesy/GlobalView.js,num_dependents_deps.dev:0 github.com/hyounoo/v-tree,num_dependents_deps.dev:0 @@ -598368,6 +609593,8 @@ github.com/hyper-expanse/set-npm-auth-token-for-ci, github.com/hyper-fun/fallback-ts,num_dependents_deps.dev:0 github.com/hyper-fun/hyper-function, github.com/hyper-pokemon/hyper-star-wars,num_dependents_deps.dev:0 +github.com/hyper-tuner/ini-upload-action, +github.com/hyper-tuner/ini-validate-action, github.com/hyper-ui/core, github.com/hyper-ui/router,num_dependents_deps.dev:0 github.com/hyper0x/bamboo,num_dependents_deps.dev:0 @@ -598582,11 +609809,13 @@ github.com/hyperjump-io/json-schema-validator, github.com/hyperjump-io/oas-schema-validator, github.com/hyperjump-io/uri-template,num_dependents_deps.dev:0 github.com/hyperjumptech/acccore,num_dependents_deps.dev:0 +github.com/hyperjumptech/branch-preview, github.com/hyperjumptech/export-github-clones-views,num_dependents_deps.dev:0 github.com/hyperjumptech/grule-rule-engine,"criticality_score:0.458090,num_dependents_deps.dev:0" github.com/hyperjumptech/hansip,num_dependents_deps.dev:0 github.com/hyperjumptech/js-urai,num_dependents_deps.dev:0 github.com/hyperjumptech/monika,num_dependents_deps.dev:0 +github.com/hyperjumptech/procheck, github.com/hyperjumptech/react-native-confetti,num_dependents_deps.dev:0 github.com/hyperjumptech/universal-update-checker,num_dependents_deps.dev:0 github.com/hyperjumptech/whatsapp-business-sender,num_dependents_deps.dev:0 @@ -598631,6 +609860,8 @@ github.com/hyperledger-labs/yui-corda-ibc,num_dependents_deps.dev:0 github.com/hyperledger-labs/yui-fabric-ibc,num_dependents_deps.dev:0 github.com/hyperledger-labs/yui-ibc-solidity,num_dependents_deps.dev:0 github.com/hyperledger-labs/yui-relayer,num_dependents_deps.dev:0 +github.com/hyperledger-tooling/github-contributors-action, +github.com/hyperledger-tooling/github-issue-schedule, github.com/hyperledger-twgc/ccs-gm,num_dependents_deps.dev:1 github.com/hyperledger-twgc/fabric-gm-plugins,num_dependents_deps.dev:0 github.com/hyperledger-twgc/gm-interoperability,num_dependents_deps.dev:0 @@ -598753,6 +609984,7 @@ github.com/hypermodules/sitedown, github.com/hypermodules/yt-pip, github.com/hypermoney/react-native-splash-screen,num_dependents_deps.dev:0 github.com/hypermurea/generator-phonegap,num_dependents_deps.dev:0 +github.com/hyperngn/github-actions-11ty, github.com/hypernormalisation/coinblockpro, github.com/hypernormalisation/datalink, github.com/hypernormalisation/prologue, @@ -598823,6 +610055,11 @@ github.com/hyperscale/hyperfs,num_dependents_deps.dev:0 github.com/hyperscale/hyperpaas,num_dependents_deps.dev:0 github.com/hyperscale/hyperpic,num_dependents_deps.dev:0 github.com/hyperscalr/hyperscalr.go,num_dependents_deps.dev:0 +github.com/hyperskill/azblob-download-artifact, +github.com/hyperskill/azblob-upload-artifact, +github.com/hyperskill/azure-login, +github.com/hyperskill/azure-purge-untagged, +github.com/hyperskill/git-crypt-unlock, github.com/hyperskill/hyperstyle, github.com/hypersoftllc/qc-attach-node,num_dependents_deps.dev:0 github.com/hypersoftllc/qc-css-properties,num_dependents_deps.dev:0 @@ -598885,6 +610122,7 @@ github.com/hyperswarm/immutable-record,num_dependents_deps.dev:0 github.com/hyperswarm/network,num_dependents_deps.dev:370 github.com/hyperswarm/replicator,num_dependents_deps.dev:0 github.com/hyperswarm/tunnel,num_dependents_deps.dev:0 +github.com/hypertech-lda/laravel-auto-deploy, github.com/hypertexthero/mezzanine-robotonotebook, github.com/hyperthreading/d3-bihisankey,num_dependents_deps.dev:0 github.com/hypertino/auth-service-api,num_dependents_deps.dev:0 @@ -598914,6 +610152,7 @@ github.com/hyperup1234/discord.js-12,num_dependents_deps.dev:0 github.com/hyperup1234/tictactoe-package,num_dependents_deps.dev:0 github.com/hyperupcall/fox-night,num_dependents_deps.dev:0 github.com/hypervax/hypervax,num_dependents_deps.dev:0 +github.com/hypervectorio/hypervector-results-gh-action, github.com/hypervectorio/hypervector-wrapper, github.com/hypervillain/ast-to-literal,num_dependents_deps.dev:2 github.com/hypervillain/babel-extract-named-export,num_dependents_deps.dev:0 @@ -599689,6 +610928,7 @@ github.com/i-rocky/to-webp,num_dependents_deps.dev:0 github.com/i-rox/node-soap,num_dependents_deps.dev:0 github.com/i-safari/goarabic,num_dependents_deps.dev:0 github.com/i-samaryov/node-webkit-winreg,num_dependents_deps.dev:0 +github.com/i-sanyam/action-no-circular-deps, github.com/i-sattaya/ts-tool-script,num_dependents_deps.dev:0 github.com/i-schuetz/SwiftCharts,criticality_score:0.320010 github.com/i-sergienko/spring-rabbitmq-rpc,num_dependents_deps.dev:0 @@ -599739,6 +610979,7 @@ github.com/i0tool5/simpleuploader,num_dependents_deps.dev:0 github.com/i0tool5/spidee,num_dependents_deps.dev:0 github.com/i0x915/go-dsp,num_dependents_deps.dev:0 github.com/i0z/rtts-ts,num_dependents_deps.dev:0 +github.com/i10b/matrix-commit, github.com/i11/cosh, github.com/i11/jackson-datatype-datastore,num_dependents_deps.dev:0 github.com/i11cn/node_logger,num_dependents_deps.dev:0 @@ -599879,8 +611120,11 @@ github.com/i3drobotics/imath_requests, github.com/i3drobotics/pyi3drsgm, github.com/i3drobotics/stereomideval, github.com/i3h/cloudflare-ddns,num_dependents_deps.dev:0 +github.com/i3h/deploy-with-scp, +github.com/i3h/download-release-asset, github.com/i3h/geoip2-gql,num_dependents_deps.dev:0 github.com/i3h/leetcode,num_dependents_deps.dev:0 +github.com/i3h/share-data, github.com/i3labtech/simple-sendtransaction-etc,num_dependents_deps.dev:0 github.com/i3team/test-i3-package,num_dependents_deps.dev:0 github.com/i3thuan5/Taiwanese-serif-to-Unicode, @@ -599926,6 +611170,7 @@ github.com/i4han/satmaker,num_dependents_deps.dev:0 github.com/i4han/underscore2,num_dependents_deps.dev:0 github.com/i4mi/fhir-resources-r4, github.com/i4mi/fhir-wrappers.ts,num_dependents_deps.dev:0 +github.com/i4mmaddy/boman-ai-action, github.com/i58000/vue-treecharts, github.com/i58000/vue-v-contextmenu, github.com/i582/cfmt,num_dependents_deps.dev:0 @@ -600197,12 +611442,15 @@ github.com/iCarlyCode/random-name-family, github.com/iCarolinei/node.jsA-cli,num_dependents_deps.dev:0 github.com/iCarolinei/npx-card,num_dependents_deps.dev:0 github.com/iChainML/hapi-decorators,num_dependents_deps.dev:0 +github.com/iChebbi/appflow-build, github.com/iChebbi/ayyo-react-cli,num_dependents_deps.dev:0 +github.com/iChengbo/generate-qrcode, github.com/iChengbo/react-native-error-helper,num_dependents_deps.dev:0 github.com/iChengbo/react-native-imagemin-asset-plugin,num_dependents_deps.dev:0 github.com/iCheques/cmc7-validador,num_dependents_deps.dev:0 github.com/iCheques/icheques-webintegration,num_dependents_deps.dev:0 github.com/iCheques/netfactor-integration,num_dependents_deps.dev:0 +github.com/iChochy/Algolia-Upload-Records, github.com/iClusterDev/JS-Devkit-CLI, github.com/iClusterDev/TypeIs.JS, github.com/iClusterDev/type-is-object,num_dependents_deps.dev:0 @@ -600216,6 +611464,8 @@ github.com/iColtz/mc-player-uuid,num_dependents_deps.dev:0 github.com/iColtz/node-hypixel.js,num_dependents_deps.dev:0 github.com/iColtz/tenor.js,num_dependents_deps.dev:0 github.com/iConstituent/unicode,num_dependents_deps.dev:0 +github.com/iCrawl/action-eslint, +github.com/iCrawl/action-tsc, github.com/iCrawl/canvas-helper,num_dependents_deps.dev:0 github.com/iCrawl/discord-vscode,criticality_score:0.367860 github.com/iCrawl/eslint-config-aqua,num_dependents_deps.dev:2 @@ -600231,6 +611481,7 @@ github.com/iDEAKITT/virtual-node-env,num_dependents_deps.dev:0 github.com/iDGE90/fly-select,num_dependents_deps.dev:0 github.com/iDVB/findflash,num_dependents_deps.dev:0 github.com/iDVB/middy-reroute,num_dependents_deps.dev:0 +github.com/iDVB/wafv2-allow-action, github.com/iDarush/sec-excel,num_dependents_deps.dev:0 github.com/iDarush/vuex-typesafe-actions,num_dependents_deps.dev:0 github.com/iDearie/idea-ui,num_dependents_deps.dev:0 @@ -600294,6 +611545,7 @@ github.com/iFanpSGTS/PSController_Module, github.com/iFanpSGTS/SelfBot-Wrapper, github.com/iFaxity/hyper-dom,num_dependents_deps.dev:0 github.com/iFaxity/mdc-data-table,num_dependents_deps.dev:0 +github.com/iFaxity/wait-on-action, github.com/iFgR/vue-dnd2,num_dependents_deps.dev:0 github.com/iFgR/vue-shortkey,"criticality_score:0.323810,num_dependents_deps.dev:4" github.com/iFireflyTeam/iwhalecloud,num_dependents_deps.dev:0 @@ -600368,6 +611620,7 @@ github.com/iJimmyWei/react-native-signature-pad,num_dependents_deps.dev:0 github.com/iJimmyWei/rn-fetch-blob,num_dependents_deps.dev:0 github.com/iJunkie22/SiteHTML, github.com/iKBAHT/propin,num_dependents_deps.dev:0 +github.com/iKadmium/json-summary-reporter, github.com/iKaew/linkstation, github.com/iKaio/beyrjs,num_dependents_deps.dev:0 github.com/iKaio0998/iptv-list-to-json,num_dependents_deps.dev:0 @@ -600676,6 +611929,7 @@ github.com/iRhonin/idena.py, github.com/iRhuel/smush,num_dependents_deps.dev:0 github.com/iRoachie/react-native-material-tabs,num_dependents_deps.dev:0 github.com/iRoachie/react-native-snackbar-avoiding-view,num_dependents_deps.dev:0 +github.com/iRoachie/slack-github-actions, github.com/iRobik/cl-swearword-detector,num_dependents_deps.dev:0 github.com/iRuxu/CssLab,num_dependents_deps.dev:0 github.com/iRuxu/fn.js,num_dependents_deps.dev:0 @@ -600684,6 +611938,7 @@ github.com/iRuxu/luat2json, github.com/iRuxu/sterilizer,num_dependents_deps.dev:0 github.com/iRuxu/wordpress-password-js,num_dependents_deps.dev:0 github.com/iRyanBell/has-scroll-hook,num_dependents_deps.dev:1 +github.com/iRyanBell/scc-docker-action, github.com/iRynek/django-template-minifier, github.com/iRynek/django-template-pages, github.com/iRyukizo/check_lines, @@ -600692,6 +611947,7 @@ github.com/iSCInc/generator-iscinc,num_dependents_deps.dev:0 github.com/iSCInc/iscinc-hw-gem,num_dependents_deps.dev:0 github.com/iSDP/Telebot,num_dependents_deps.dev:0 github.com/iSECPartners/tlspretense,num_dependents_deps.dev:0 +github.com/iSOLveIT/mkdocs-notes, github.com/iSPA-io/ispa-element, github.com/iSTB/python-schemata, github.com/iSab01/megazord, @@ -600925,6 +612181,8 @@ github.com/iacchus/birdears, github.com/iacchus/iacchus-table-language, github.com/iacchus/kaomoji-database-edit-tool, github.com/iacchus/quickdiary, +github.com/iacobfred/deploy-docker-ssh, +github.com/iacobfred/generate-dotenv, github.com/iacopomelani/berryhub,num_dependents_deps.dev:0 github.com/iacopomelani/black-hole,num_dependents_deps.dev:0 github.com/iacopomelani/go-starter-project,num_dependents_deps.dev:0 @@ -601015,6 +612273,7 @@ github.com/iagurban/yielder, github.com/iahmedgamal/clg, github.com/iahu/postcss-font-normalize,num_dependents_deps.dev:0 github.com/iahuang/taro,num_dependents_deps.dev:0 +github.com/iaia/issue-copier, github.com/iaiaiarna/discobot, github.com/iaiaiarna/fanfic-proxy,num_dependents_deps.dev:0 github.com/iaiaiarna/modbot, @@ -601125,6 +612384,7 @@ github.com/iam-i/rust-public1,num_dependents_deps.dev:0 github.com/iam-jam/gridsome-source-gmaps-geocode,num_dependents_deps.dev:0 github.com/iam-jam/gridsome-source-menu,num_dependents_deps.dev:0 github.com/iam-kevin/react-chat-potato,num_dependents_deps.dev:0 +github.com/iam-medvedev/action-conventional-commit, github.com/iam-medvedev/dev-sandbox,num_dependents_deps.dev:0 github.com/iam-medvedev/esbuild-plugin-less,num_dependents_deps.dev:0 github.com/iam-medvedev/sls-tool,num_dependents_deps.dev:0 @@ -601146,6 +612406,7 @@ github.com/iam4x/es6-react-boilerplate,num_dependents_deps.dev:0 github.com/iam4x/eth-scan,num_dependents_deps.dev:0 github.com/iam4x/ezservices, github.com/iam4x/isomorphic-flux-boilerplate,"criticality_score:0.313930,num_dependents_deps.dev:0" +github.com/iam4x/now-deploy-preview-comment, github.com/iam4x/react-btn-checkbox,num_dependents_deps.dev:0 github.com/iamAzi/beautiful-taro-hooks,num_dependents_deps.dev:0 github.com/iamAzi/qrcode2clipboard,num_dependents_deps.dev:0 @@ -601248,6 +612509,7 @@ github.com/iamanubhavsaini/node-git-directories, github.com/iamanujvrma/grpc-microservices,num_dependents_deps.dev:0 github.com/iamanvesh/mapbox-gl-draw-circle,num_dependents_deps.dev:6 github.com/iamapig120/simple-color-picker,num_dependents_deps.dev:0 +github.com/iamapinan/minio-upload-and-slack-notify, github.com/iamareebjamal/vue-component-compiler,num_dependents_deps.dev:0 github.com/iamargus95/learning-golang,num_dependents_deps.dev:0 github.com/iamarijit13/calc,num_dependents_deps.dev:0 @@ -601274,9 +612536,12 @@ github.com/iamawebgeek/redux-data-entity,num_dependents_deps.dev:0 github.com/iamawebgeek/redux-data-entity-offline,num_dependents_deps.dev:0 github.com/iamawebgeek/redux-packed,num_dependents_deps.dev:0 github.com/iamazeem/cwm-keda-external-scaler,num_dependents_deps.dev:0 +github.com/iamazeem/security-headers-action, +github.com/iamazeem/substitute-action, github.com/iamazhai/bigdargon,num_dependents_deps.dev:0 github.com/iamaziz/PyDataset, github.com/iamaziz/iversions, +github.com/iamazy/download-action, github.com/iamazy/elasticsearch-sql,num_dependents_deps.dev:0 github.com/iambalaam/dae2css,num_dependents_deps.dev:0 github.com/iambean/slider, @@ -601530,6 +612795,7 @@ github.com/iamdanfox/anno.js,num_dependents_deps.dev:0 github.com/iamdanfox/cjsx-in-browser,num_dependents_deps.dev:0 github.com/iamdanielcassil/transactor,num_dependents_deps.dev:0 github.com/iamdanielkim/spectrum-node,num_dependents_deps.dev:0 +github.com/iamdanielyin/github-action-rancher2, github.com/iamdarrenhall/gulp-svg-spritesheet,num_dependents_deps.dev:0 github.com/iamdarshan7/EdvRegex, github.com/iamdarshan7/OpenSocialMediaWithCLI, @@ -601591,6 +612857,7 @@ github.com/iamdevonbutler/possibilities,num_dependents_deps.dev:0 github.com/iamdevonbutler/react-autocomplete,num_dependents_deps.dev:0 github.com/iamdevonbutler/schemaify-object,num_dependents_deps.dev:0 github.com/iamdew/react-express-boilerplate,num_dependents_deps.dev:0 +github.com/iamdharmesh/action-wordpress-pot-generator, github.com/iamdhj/web-lint-config,num_dependents_deps.dev:0 github.com/iamdimka/boxc,num_dependents_deps.dev:0 github.com/iamdimka/discord,num_dependents_deps.dev:0 @@ -601631,6 +612898,7 @@ github.com/iameax/eslint-plugin-code-style,num_dependents_deps.dev:0 github.com/iamel89/telegraf-session-mssql, github.com/iameli/floating-hangout,num_dependents_deps.dev:0 github.com/iameli/metallb-log-limiter,num_dependents_deps.dev:0 +github.com/iamenr0s/packer-qemu-action, github.com/iameo/monopy, github.com/iameugenejo/angular-centered,num_dependents_deps.dev:0 github.com/iameugenejo/callbackmanager,num_dependents_deps.dev:0 @@ -601787,6 +613055,7 @@ github.com/iamkhurramkhalil/input-validation-creator,num_dependents_deps.dev:0 github.com/iamkhush/django-mapistration, github.com/iamkimchico/gatsby-theme, github.com/iamkroot/trakt-scrobbler, +github.com/iamkubi/github-release, github.com/iamkubi/pydactyl, github.com/iamkumaran/aem-clientlib-webpack-plugin--with-sling-option,num_dependents_deps.dev:0 github.com/iamkumaran/aemsync--with-sling-option,num_dependents_deps.dev:0 @@ -601826,6 +613095,7 @@ github.com/iamlucassantos/upygrade, github.com/iamlucaswolf/gym-chess, github.com/iamlucaswolf/numpy-ros, github.com/iamlucnguyen/react-native-cryptocurrency-hexagon-icons,num_dependents_deps.dev:0 +github.com/iamludal/action-purge-workflow-runs, github.com/iammac360/jsonresume-theme-elegant,num_dependents_deps.dev:0 github.com/iammadab/infopiece,num_dependents_deps.dev:0 github.com/iammadab/kvstore,num_dependents_deps.dev:0 @@ -601912,8 +613182,10 @@ github.com/iamngoni/hotrecharge,num_dependents_deps.dev:0 github.com/iamniting/operator,num_dependents_deps.dev:0 github.com/iamnoah/atg-ivy-resolver,num_dependents_deps.dev:0 github.com/iamnonroot/rayconnect-client,num_dependents_deps.dev:0 +github.com/iamnotaturtle/auto-gofmt, github.com/iamnotgay/log-common,num_dependents_deps.dev:0 github.com/iamnotrodger/art-house-api,num_dependents_deps.dev:0 +github.com/iamobj/action-minimatch, github.com/iamobj/vue-big-wheel,num_dependents_deps.dev:0 github.com/iamocean/nb-navigation,num_dependents_deps.dev:0 github.com/iamogbz/crx-livereload,num_dependents_deps.dev:0 @@ -601954,6 +613226,7 @@ github.com/iamolegga/thro,num_dependents_deps.dev:0 github.com/iamolegga/to-uuid,num_dependents_deps.dev:0 github.com/iamolegga/workers-cluster,num_dependents_deps.dev:0 github.com/iamonuwa/feed-watcher,num_dependents_deps.dev:0 +github.com/iamops-team/aws-soci, github.com/iamoracle/django_case_insensitive_field, github.com/iamoracle/python-easy-rsa, github.com/iamoric/gowebserver,num_dependents_deps.dev:0 @@ -602058,6 +613331,7 @@ github.com/iamsaquib8/dom-tree-rs,num_dependents_deps.dev:0 github.com/iamsauravsharma/advent-of-code-py, github.com/iamsauravsharma/alpha_vantage,num_dependents_deps.dev:2 github.com/iamsauravsharma/cargo-trim,num_dependents_deps.dev:0 +github.com/iamsauravsharma/create-dotenv, github.com/iamsauravsharma/renovate-config,num_dependents_deps.dev:0 github.com/iamsayantan/konference,num_dependents_deps.dev:0 github.com/iamsayantan/larasockets,num_dependents_deps.dev:0 @@ -602158,6 +613432,7 @@ github.com/iamsrijon/bridge-synchronization,num_dependents_deps.dev:0 github.com/iamsrujal/array-refactor,num_dependents_deps.dev:0 github.com/iamssen/angular2-reflow,num_dependents_deps.dev:0 github.com/iamssen/convention, +github.com/iamssen/couchdb-github-action, github.com/iamssen/d3tip,num_dependents_deps.dev:0 github.com/iamssen/declaration-syntax-tester,num_dependents_deps.dev:0 github.com/iamssen/done-exec,num_dependents_deps.dev:0 @@ -602349,6 +613624,7 @@ github.com/iamtio/goradex,num_dependents_deps.dev:0 github.com/iamtio/oledgen,num_dependents_deps.dev:0 github.com/iamtio/photosorter, github.com/iamtio/wolio,num_dependents_deps.dev:0 +github.com/iamtito/tito-composite-action, github.com/iamtjg/github-twissues,num_dependents_deps.dev:0 github.com/iamtjg/hubot-remote-ark, github.com/iamtmoe/zj,num_dependents_deps.dev:0 @@ -602399,6 +613675,7 @@ github.com/iamvipinpatil/pixelated-image,num_dependents_deps.dev:0 github.com/iamvipinpatil/vip-admin,num_dependents_deps.dev:0 github.com/iamvishnusankar/corex,num_dependents_deps.dev:0 github.com/iamvishnusankar/next-sitemap,"criticality_score:0.390560,num_dependents_deps.dev:0" +github.com/iamvishnusankar/vsts-npm-auth, github.com/iamvoxlan/learn-go,num_dependents_deps.dev:0 github.com/iamwangkj/kj-mp-cli, github.com/iamwave/samorozvrh,num_dependents_deps.dev:0 @@ -602481,9 +613758,11 @@ github.com/ian000/gulp-turbo,num_dependents_deps.dev:0 github.com/ian0113/go-oop-like,num_dependents_deps.dev:0 github.com/ian0113/goweb,num_dependents_deps.dev:0 github.com/ian13456/gauss-jordan,num_dependents_deps.dev:0 +github.com/ian4hu/zerotier-hosts, github.com/ian923/limegarden,num_dependents_deps.dev:0 github.com/ian97531/halo,num_dependents_deps.dev:0 github.com/ian97531/origin,num_dependents_deps.dev:0 +github.com/ianabc/github-action-rpmbuild, github.com/ianabc/latinsq, github.com/ianaber/batterymonitor6813v4,num_dependents_deps.dev:0 github.com/ianaber/heatpumpv2,num_dependents_deps.dev:0 @@ -602493,6 +613772,7 @@ github.com/ianadiwibowo/gopupuru,num_dependents_deps.dev:0 github.com/ianamason/SudokuSensei, github.com/ianare/django-memcache-admin, github.com/ianare/exif-py,criticality_score:0.398780 +github.com/ianatha/action-screenshot-diff, github.com/ianatkin80/node-red-contrib-socketio-client,num_dependents_deps.dev:0 github.com/ianatoly/go-dht,num_dependents_deps.dev:0 github.com/ianatoly/irttclient.poc,num_dependents_deps.dev:0 @@ -602512,6 +613792,7 @@ github.com/ianaya89/vue-packt-plugin,num_dependents_deps.dev:0 github.com/ianaya89/vue-sticky-js,num_dependents_deps.dev:0 github.com/ianb/doctestjs,num_dependents_deps.dev:0 github.com/ianbale/ember-html5-draggable,num_dependents_deps.dev:0 +github.com/ianbelcher/eks-kubectl-action, github.com/ianberinger/sqlc,num_dependents_deps.dev:0 github.com/ianbishop/yellow_api,num_dependents_deps.dev:0 github.com/ianbjorndilling/off-loader,num_dependents_deps.dev:0 @@ -602538,6 +613819,7 @@ github.com/iancanderson/streaker-js,num_dependents_deps.dev:0 github.com/iancarv/schm,num_dependents_deps.dev:0 github.com/iancasstwo/terraform-provider-iancass,num_dependents_deps.dev:0 github.com/iancharters/project_euler,num_dependents_deps.dev:0 +github.com/ianchb/android-kernel-actions-modif1, github.com/ianchen-tw/trio-vis, github.com/ianchi/ESpression,num_dependents_deps.dev:0 github.com/ianchi/ESpression-jsonpath,num_dependents_deps.dev:0 @@ -602718,6 +614000,7 @@ github.com/ianlai/go-api,num_dependents_deps.dev:0 github.com/ianlancetaylor/demangle,num_dependents_deps.dev:220 github.com/ianlancetaylor/go-sqlite3,num_dependents_deps.dev:0 github.com/ianlancetaylor/libbacktrace,criticality_score:0.354640 +github.com/ianlapham/release-and-build, github.com/ianleeclark/notorious,num_dependents_deps.dev:0 github.com/ianlet/eslint-plugin-mdx-patch,num_dependents_deps.dev:0 github.com/ianlevesque/ruby-lzma,num_dependents_deps.dev:0 @@ -602923,6 +614206,7 @@ github.com/ianrussel/gwapo,num_dependents_deps.dev:0 github.com/iansan5653/assertion-types,num_dependents_deps.dev:0 github.com/iansan5653/compress-tag,num_dependents_deps.dev:8 github.com/iansan5653/improved-immutable-record,num_dependents_deps.dev:0 +github.com/iansan5653/publish-js-to-pages, github.com/iansan5653/unraw,num_dependents_deps.dev:14 github.com/iansawyerva/generator-angular-material,num_dependents_deps.dev:0 github.com/ianschmitz/jest-environment-jsdom-fifteen,num_dependents_deps.dev:94 @@ -603016,7 +614300,9 @@ github.com/ianstormtaylor/to-snake-case,num_dependents_deps.dev:1784 github.com/ianstormtaylor/to-space-case,num_dependents_deps.dev:7894 github.com/ianstormtaylor/to-title-case,num_dependents_deps.dev:306 github.com/ianstormtaylor/write-file-stdout,num_dependents_deps.dev:3078 +github.com/iansu/apollo-schema-check-action, github.com/iansu/blarn,num_dependents_deps.dev:0 +github.com/iansu/codecov-action-node, github.com/iansu/cra-minimal-templates,num_dependents_deps.dev:0 github.com/iansu/cra-template-empty,num_dependents_deps.dev:0 github.com/iansu/cra-template-wheeler-mode,num_dependents_deps.dev:0 @@ -603130,11 +614416,14 @@ github.com/ianwalter/nrg-session,num_dependents_deps.dev:0 github.com/ianwalter/parse-cookie-string,num_dependents_deps.dev:0 github.com/ianwalter/peregrin,num_dependents_deps.dev:0 github.com/ianwalter/pino-print,num_dependents_deps.dev:0 +github.com/ianwalter/playwright-container, +github.com/ianwalter/pnpm-container, github.com/ianwalter/power-sled,num_dependents_deps.dev:0 github.com/ianwalter/prescott,num_dependents_deps.dev:6 github.com/ianwalter/preset-lib,num_dependents_deps.dev:0 github.com/ianwalter/print,num_dependents_deps.dev:76 github.com/ianwalter/prism-loader,num_dependents_deps.dev:0 +github.com/ianwalter/puppeteer-container, github.com/ianwalter/puppeteer-helper,num_dependents_deps.dev:0 github.com/ianwalter/purgecss-loader,num_dependents_deps.dev:0 github.com/ianwalter/relay,num_dependents_deps.dev:0 @@ -603332,6 +614621,7 @@ github.com/iattempt/namanager, github.com/iauglov/gin-keycloak,num_dependents_deps.dev:0 github.com/iaunzu/beanwrapper,num_dependents_deps.dev:0 github.com/iaunzu/strqlbuilder,num_dependents_deps.dev:0 +github.com/iautom8things/semantic-version, github.com/iavael/goutil,num_dependents_deps.dev:0 github.com/iavael/lego,num_dependents_deps.dev:0 github.com/iavael/racktables-vlanparse,num_dependents_deps.dev:0 @@ -603345,6 +614635,7 @@ github.com/iawaknahc/gomessageformat,num_dependents_deps.dev:0 github.com/iawaknahc/jsonschema,num_dependents_deps.dev:0 github.com/iawia002/Lulu,criticality_score:0.306390 github.com/iawia002/annie,"criticality_score:0.435970,num_dependents_deps.dev:3" +github.com/iawia002/get-tag-or-commit-id, github.com/iawia002/rec, github.com/iax7/pdfh,num_dependents_deps.dev:0 github.com/iazi/ngMapAutocomplete,num_dependents_deps.dev:0 @@ -603357,6 +614648,8 @@ github.com/iazrael/template-picker,num_dependents_deps.dev:0 github.com/ib-ganz/eloquify,num_dependents_deps.dev:0 github.com/ib-ruby/ib-api,num_dependents_deps.dev:0 github.com/ib-ruby/ib-symbols,num_dependents_deps.dev:0 +github.com/ib-yasn/deployment-action, +github.com/ib-yasn/deployment-status, github.com/ib1984/py-talentlms, github.com/ib4tt/avaname, github.com/ibLeDy/timezone-converter, @@ -603384,6 +614677,7 @@ github.com/ibakaidov/pargs,num_dependents_deps.dev:0 github.com/ibakaidov/shower-tts,num_dependents_deps.dev:0 github.com/ibakaidov/thiser,num_dependents_deps.dev:0 github.com/ibakhsh/smart_Data_List,num_dependents_deps.dev:0 +github.com/ibakshay/greet-contributors-action, github.com/ibalaji777/reactivestate,num_dependents_deps.dev:0 github.com/ibalajisankar/Ellipsis,num_dependents_deps.dev:0 github.com/ibalajisankar/confetti,num_dependents_deps.dev:0 @@ -603567,6 +614861,8 @@ github.com/ibill-today/ibill-js,num_dependents_deps.dev:0 github.com/ibillboard/tag-summary,num_dependents_deps.dev:2 github.com/ibimec/ibpm-api-client, github.com/ibio/svg-optimizer,num_dependents_deps.dev:0 +github.com/ibiqlik/action-yamllint, +github.com/ibiqlik/conftest-action-docker, github.com/ibireme/YYKit,criticality_score:0.360860 github.com/ibirnam/module-tut,num_dependents_deps.dev:0 github.com/ibirrer/headlessui-angular,num_dependents_deps.dev:0 @@ -604015,6 +615311,7 @@ github.com/ibnYusrat/nativescript-globalevents,num_dependents_deps.dev:0 github.com/ibnYusrat/nativescript-orientation,num_dependents_deps.dev:0 github.com/ibnYusrat/nativescript-platform,num_dependents_deps.dev:0 github.com/ibnYusrat/nativescript-platform-css,num_dependents_deps.dev:0 +github.com/ibnesayeed/repo-attrs, github.com/ibnjunaid/node-geojson,num_dependents_deps.dev:0 github.com/ibnlanre/agbawo,num_dependents_deps.dev:0 github.com/ibnlanre/atomize,num_dependents_deps.dev:0 @@ -604089,6 +615386,7 @@ github.com/ibraheemdev/turbofish,num_dependents_deps.dev:0 github.com/ibrahem-kamal/vue-grid-layout,num_dependents_deps.dev:0 github.com/ibrahemDev/r-time-picker,num_dependents_deps.dev:0 github.com/ibrahidm/logger-lite, +github.com/ibrahiem96/poke-readme-action, github.com/ibrahim-13/react-catch,num_dependents_deps.dev:0 github.com/ibrahim-akrab/bookstore_users-api,num_dependents_deps.dev:0 github.com/ibrahim-akrab/products_api,num_dependents_deps.dev:0 @@ -604131,6 +615429,7 @@ github.com/ibrahimduran/node-kaptan,num_dependents_deps.dev:0 github.com/ibrahimduran/node-kaptan-http,num_dependents_deps.dev:0 github.com/ibrahimduran/node-puckages,num_dependents_deps.dev:0 github.com/ibrahimduran/wsoop,num_dependents_deps.dev:0 +github.com/ibrahimejaz/gitleaks-action, github.com/ibrahimeymenduran/node-clii,num_dependents_deps.dev:0 github.com/ibrahimfadel/pi-lang,num_dependents_deps.dev:0 github.com/ibrahimfw/style-guide,num_dependents_deps.dev:0 @@ -604304,6 +615603,8 @@ github.com/ic-labs/icekit-press-releases, github.com/ic3fox/jawr-main-repo,num_dependents_deps.dev:26 github.com/ic3fox/jawr-spring,num_dependents_deps.dev:0 github.com/icabodcam/trainingmodule1_m-highscore,num_dependents_deps.dev:0 +github.com/icadsistemi/bump-action, +github.com/icadsistemi/gitops-acl-action, github.com/icadsistemi/logpet,num_dependents_deps.dev:0 github.com/icagstrout/grunt-handlebars-static,num_dependents_deps.dev:0 github.com/icagstrout/grunt-imagemagick,num_dependents_deps.dev:0 @@ -604343,8 +615644,13 @@ github.com/icalia-actions/aws-delete-elb-rule, github.com/icalia-actions/aws-delete-elb-target-group, github.com/icalia-actions/aws-delete-route53-records, github.com/icalia-actions/aws-deregister-ecs-task-definitions, +github.com/icalia-actions/aws-sqs-setup-queue, +github.com/icalia-actions/aws-sqs-teardown-queue, +github.com/icalia-actions/cc-prepare-test-reporting, github.com/icalia-actions/cc-test-reporter-base,num_dependents_deps.dev:0 +github.com/icalia-actions/common-variables, github.com/icalia-actions/deploy-aws-ecs-service,num_dependents_deps.dev:0 +github.com/icalia-actions/map-github-actor, github.com/icalia-actions/register-aws-ecs-task-definition,num_dependents_deps.dev:0 github.com/icalia-actions/run-aws-ecs-task,num_dependents_deps.dev:0 github.com/icalia-actions/run-ci-compose,num_dependents_deps.dev:0 @@ -604520,6 +615826,8 @@ github.com/icavalheiro/lazy-xml-parser,num_dependents_deps.dev:0 github.com/icavalheiro/model-ur-controllers,num_dependents_deps.dev:0 github.com/icb-dcm/pyabc, github.com/icb-dcm/pypesto, +github.com/icbat/parse-wow-addon-version, +github.com/icbat/wow-addon-upload-action, github.com/icbcom/aistdap-sdk-java,num_dependents_deps.dev:0 github.com/icbd/focus_actor,num_dependents_deps.dev:0 github.com/icbi-lab/infercnvpy, @@ -604890,6 +616198,7 @@ github.com/iceproductions/Commando,num_dependents_deps.dev:0 github.com/iceproductions/js-binary,num_dependents_deps.dev:0 github.com/iceprosurface/remote-async,num_dependents_deps.dev:0 github.com/iceprosurface/svg-dom-loader,num_dependents_deps.dev:0 +github.com/icepuma/rust-action, github.com/icepy/cm.logger,num_dependents_deps.dev:0 github.com/icepy/dingtalk-javascript-utility,num_dependents_deps.dev:2 github.com/icepy/electron-easy-ipc,num_dependents_deps.dev:0 @@ -605016,6 +616325,7 @@ github.com/iceuinet/iceEditor,num_dependents_deps.dev:0 github.com/iceview/httprequest,num_dependents_deps.dev:0 github.com/icevl/react-semantic-popup, github.com/icew1nd/create-github-action-boilerplate,num_dependents_deps.dev:0 +github.com/icew1nd/some-test-action-12345, github.com/icewind1991/bitbuffer,num_dependents_deps.dev:4 github.com/icewind1991/bitstream_reader,num_dependents_deps.dev:0 github.com/icewind1991/contrast-rs,num_dependents_deps.dev:0 @@ -605090,6 +616400,7 @@ github.com/icfnext/storybook-aem,num_dependents_deps.dev:0 github.com/icfolson/pattern-file-search,num_dependents_deps.dev:0 github.com/icfr/laravel-node-queue, github.com/icft/todo,num_dependents_deps.dev:0 +github.com/icg-software/docker-push-action, github.com/icgc-argo/ego-token-utils,num_dependents_deps.dev:0 github.com/icgc-argo/platform-ui,num_dependents_deps.dev:0 github.com/icgc-argo/program-service,num_dependents_deps.dev:0 @@ -605201,6 +616512,9 @@ github.com/ichiriac/sofa-odm,num_dependents_deps.dev:0 github.com/ichiriac/ubuntu-smart-fan,num_dependents_deps.dev:0 github.com/ichiriac/win-audit-watch,num_dependents_deps.dev:0 github.com/ichiro-its/kumo-client,num_dependents_deps.dev:0 +github.com/ichiro-its/ros2-build-and-test-action, +github.com/ichiro-its/ros2-build-debian-action, +github.com/ichiro-its/ros2-ci, github.com/ichiroadris/vue-cli-plugin-cmpnt,num_dependents_deps.dev:0 github.com/ichiroadris/vue-cli-plugin-tailwind-setup, github.com/ichiroadris/vue-js-ray, @@ -605639,6 +616953,7 @@ github.com/ictrobot/c2wasm,num_dependents_deps.dev:0 github.com/ictxiangxin/boson, github.com/icu-996-icu/use-localstorge-observed,num_dependents_deps.dev:0 github.com/icu-project/full-icu-npm,num_dependents_deps.dev:19 +github.com/icub-tech-iit/gh-action-repo-selective-sync, github.com/icub3d/combinatorics.rs,num_dependents_deps.dev:0 github.com/icub3d/sudoku_solver.rs,num_dependents_deps.dev:0 github.com/icui/asdfy, @@ -605664,6 +616979,7 @@ github.com/icyJoseph/use-easing,num_dependents_deps.dev:0 github.com/icyJoseph/use-store-hooks,num_dependents_deps.dev:0 github.com/icyJoseph/useElementResize,num_dependents_deps.dev:0 github.com/icyJoseph/useOptimizedResize,num_dependents_deps.dev:0 +github.com/icyak/delete-old-branches-action, github.com/icyberon/qlmapper,num_dependents_deps.dev:0 github.com/icybit/icy-error,num_dependents_deps.dev:0 github.com/icybit/icy-jwt,num_dependents_deps.dev:0 @@ -605704,6 +617020,7 @@ github.com/icyflame/terminal-wallet,num_dependents_deps.dev:0 github.com/icyi2i/python-helpers, github.com/icylace/icylace-object-utils,num_dependents_deps.dev:0 github.com/icylace/ntml,num_dependents_deps.dev:0 +github.com/icyleaf/cloudflare-workers-kv-action, github.com/icymonk/FunctionalJS,num_dependents_deps.dev:0 github.com/icymonk/functional-js, github.com/icynoangel/three.connect,num_dependents_deps.dev:0 @@ -605825,6 +617142,7 @@ github.com/idamediafoundry/Mapper-API,num_dependents_deps.dev:0 github.com/idan-at/eslint-plugin-package-json-dependencies, github.com/idan-at/native-sizeof, github.com/idan-at/rs-express,num_dependents_deps.dev:0 +github.com/idan-gur/actions-opsgenie, github.com/idan/oauthlib,Google github.com/idan/pixelbar,num_dependents_deps.dev:0 github.com/idan57/pip-plus-plus, @@ -606012,6 +617330,7 @@ github.com/ideabosque/Flask-B1Connector, github.com/ideabosque/Flask-DWConnector, github.com/ideabosque/Flask-Mage2Connector, github.com/ideabosque/Flask-SAPB1, +github.com/ideacatlab/tarballmaker, github.com/ideacome-frontend/vue-router,num_dependents_deps.dev:0 github.com/ideacome-frontend/vue-router-dom-cache, github.com/ideaconnect/axios-jwt-oobe,num_dependents_deps.dev:0 @@ -606326,6 +617645,8 @@ github.com/idesis-gmbh/htmldiff.js,num_dependents_deps.dev:0 github.com/idesis-gmbh/png2icons,num_dependents_deps.dev:10 github.com/idetatsu/instant-lambda,num_dependents_deps.dev:0 github.com/ideum/gestureworks-node-bindings, +github.com/idev-coder/github-actions-deploy, +github.com/idev-coder/github-actions-package, github.com/idev-develop/KakaoLink-Python, github.com/idev-hub/logger,num_dependents_deps.dev:0 github.com/idevanyr/go-bank-backend,num_dependents_deps.dev:0 @@ -606589,6 +617910,7 @@ github.com/idleberg/Creative-Commons-Markdown,"criticality_score:0.356980,num_de github.com/idleberg/ace-nsis-mode,num_dependents_deps.dev:0 github.com/idleberg/caniuse-cli,num_dependents_deps.dev:0 github.com/idleberg/codemirror-nsis,num_dependents_deps.dev:0 +github.com/idleberg/create-playdate-release, github.com/idleberg/fontawesome-svg-loader,num_dependents_deps.dev:0 github.com/idleberg/generator-atom-package-coffeescript,num_dependents_deps.dev:0 github.com/idleberg/generator-atom-package-typescript,num_dependents_deps.dev:0 @@ -606630,10 +617952,12 @@ github.com/idleberg/node-wp-salts-cli,num_dependents_deps.dev:0 github.com/idleberg/nsis-logo,num_dependents_deps.dev:0 github.com/idleberg/prismjs-nsis,num_dependents_deps.dev:0 github.com/idleberg/rainbow-nsis,num_dependents_deps.dev:0 +github.com/idleberg/setup-playdate-sdk, github.com/idleberg/sublime-tinker-tools,num_dependents_deps.dev:0 github.com/idleberg/web-porridge,num_dependents_deps.dev:0 github.com/idleberg/webvsc-cli,num_dependents_deps.dev:0 github.com/idleberg/webvsc-ui,num_dependents_deps.dev:0 +github.com/idlefingers/do-space-sync-action, github.com/idlefingers/hyper-idlefingers,num_dependents_deps.dev:0 github.com/idlefingers/mobx-react-autorun,num_dependents_deps.dev:0 github.com/idlelosthobo/parchments, @@ -606794,6 +618118,7 @@ github.com/idobata/hubot-idobata,num_dependents_deps.dev:0 github.com/idobatter/node-win32api,num_dependents_deps.dev:0 github.com/idobatter/node-win32com,num_dependents_deps.dev:0 github.com/idobatter/node-win32ole,num_dependents_deps.dev:0 +github.com/idoberko2/dokku-deploy-github-action, github.com/idobh2/node-gitcheckout-cli,num_dependents_deps.dev:0 github.com/idobh2/node-js-this,num_dependents_deps.dev:0 github.com/idoch/generator-go-negroni-pat-angular,num_dependents_deps.dev:0 @@ -606960,6 +618285,7 @@ github.com/idur69/oneNeuron_pypi, github.com/idus-dev/eslint-config-idus-vue,num_dependents_deps.dev:0 github.com/idushii/WindowIcon,num_dependents_deps.dev:0 github.com/idushii/vue-bootstrap-elements,num_dependents_deps.dev:0 +github.com/idvoretskyi/dcochecker, github.com/idvxlab/vega-lite-linter, github.com/idw-org/css-feature-test,num_dependents_deps.dev:0 github.com/idw111/blueimp-load-image-npm,num_dependents_deps.dev:0 @@ -607083,6 +618409,7 @@ github.com/iendeavor/element-ui-sticky-table, github.com/iendeavor/form-validation.js,num_dependents_deps.dev:0 github.com/iendeavor/i18next-select-post-processor,num_dependents_deps.dev:0 github.com/iendeavor/object-visualizer,num_dependents_deps.dev:0 +github.com/iendeavor/shorten-commit-sha, github.com/iendeavor/vue-chronos,num_dependents_deps.dev:0 github.com/iendeavor/vue-next-select, github.com/iendeavor/vue-route-props,num_dependents_deps.dev:0 @@ -607138,6 +618465,7 @@ github.com/iesugrace/iesugrace-django-polls, github.com/ietf-ribose/doi2ietf-py, github.com/ietf-tools/RfcEditor, github.com/ietf-tools/rfc2html, +github.com/ietf-tools/semver-action, github.com/iethem/react-native-boilerplate,num_dependents_deps.dev:0 github.com/ietheredge/VisionEngine, github.com/iethree/daily-office,num_dependents_deps.dev:0 @@ -607174,6 +618502,7 @@ github.com/iexg/IEX-API,criticality_score:0.345470 github.com/iexn/wpage,num_dependents_deps.dev:0 github.com/iexn/wpage-cli, github.com/iezsoft/goctp,num_dependents_deps.dev:0 +github.com/if-nil/docsify-file-catalog-action, github.com/if-then-fund/django-html-emailer, github.com/if-u-remembers/golang,num_dependents_deps.dev:0 github.com/if-u-remembers/guojia,num_dependents_deps.dev:0 @@ -607332,6 +618661,7 @@ github.com/iffiX/machin, github.com/iffigues/gopdate,num_dependents_deps.dev:0 github.com/iffsid/ad.js,num_dependents_deps.dev:0 github.com/iffy/humancrypto, +github.com/iffy/install-nim, github.com/iffy/norm, github.com/ificha/oozie-client,num_dependents_deps.dev:0 github.com/ifig29/payline,num_dependents_deps.dev:0 @@ -607504,6 +618834,7 @@ github.com/ifunjs/minify_js,num_dependents_deps.dev:0 github.com/ifunplus/react-d3-speedometer, github.com/ifuryi/chatapi,num_dependents_deps.dev:0 github.com/ifuture-pro/listify,num_dependents_deps.dev:0 +github.com/ifuture-pro/listify-actions, github.com/ifuture-pro/vuepress-plugin-rss,num_dependents_deps.dev:0 github.com/ifvictr/caffeine9,num_dependents_deps.dev:0 github.com/ifvictr/clubhouse-go,num_dependents_deps.dev:0 @@ -607550,6 +618881,7 @@ github.com/ig248/deepquantiles, github.com/ig248/kerashistoryplot, github.com/ig248/pyampd, github.com/ig3/markdown-it-wikilinks,num_dependents_deps.dev:0 +github.com/igabaydulin/helm-check-action, github.com/igabesz/advanced-controllers,num_dependents_deps.dev:0 github.com/igabesz/alert-service,num_dependents_deps.dev:0 github.com/igabesz/async-search,num_dependents_deps.dev:0 @@ -607627,6 +618959,7 @@ github.com/igeligel/jsx-to-simple-ast,num_dependents_deps.dev:0 github.com/igeligel/parse-react-components,num_dependents_deps.dev:0 github.com/igeligel/vue-steam-chat,num_dependents_deps.dev:0 github.com/igembitsgoa/igem-wikisync, +github.com/igembitsgoa/wikisync-action, github.com/igemuoftATG/generator-igemwiki,num_dependents_deps.dev:0 github.com/igemuoftATG/igemwiki-api,num_dependents_deps.dev:0 github.com/igenex/bhg,num_dependents_deps.dev:0 @@ -607638,6 +618971,9 @@ github.com/igetgames/spectacle-create-react-app,num_dependents_deps.dev:0 github.com/igetgames/spectacle-react-scripts,num_dependents_deps.dev:0 github.com/igetgames/ultralight-cra,num_dependents_deps.dev:0 github.com/igfilipovic/favico.js,num_dependents_deps.dev:0 +github.com/igfuw/libcloudphxx_build, +github.com/igfuw/libmpdataxx_install, +github.com/igfuw/load_UWLCM_singularity_image, github.com/igfz/vue-json-pertty2, github.com/igggame/nebulas-go,num_dependents_deps.dev:0 github.com/igghera/floating-action-menu,num_dependents_deps.dev:0 @@ -607709,6 +619045,7 @@ github.com/igmoweb/igmoweb.com,num_dependents_deps.dev:0 github.com/igmrrf/cra-template-the-lazy-dev-otaku,num_dependents_deps.dev:0 github.com/ign-gpao/client-gpao, github.com/ignacio-nava/django-kick-off, +github.com/ignacioFernandez1/lora-fuota-updater, github.com/ignacioHermosilla/tbk-oneclick, github.com/ignaciobarbanodesigner/simple-mock-class-factory,num_dependents_deps.dev:0 github.com/ignaciocabeza/toga-layout-builder, @@ -607910,6 +619247,7 @@ github.com/igolaizola/twithook,num_dependents_deps.dev:0 github.com/igolaizola/wallabot,num_dependents_deps.dev:0 github.com/igoldny/generator-ftbpro,num_dependents_deps.dev:0 github.com/igolkotek/sui,num_dependents_deps.dev:0 +github.com/igolopolosov/github-action-release-github-pages, github.com/igoodbad/responsive-table,num_dependents_deps.dev:0 github.com/igoogle-ink/go-micro,num_dependents_deps.dev:0 github.com/igoogle-ink/gopher,num_dependents_deps.dev:0 @@ -607943,6 +619281,7 @@ github.com/igor-krawczuk/saers,num_dependents_deps.dev:0 github.com/igor-kupczynski/http2-utils,num_dependents_deps.dev:0 github.com/igor-kupczynski/notion-exporter,num_dependents_deps.dev:0 github.com/igor-lemon/antd-scss-theme-plugin,num_dependents_deps.dev:0 +github.com/igor-lemon/lerna-package-tag, github.com/igor-lemon/secure-electron-license-keys,num_dependents_deps.dev:0 github.com/igor-lemon/secure-electron-license-keys-cli,num_dependents_deps.dev:0 github.com/igor-makarov/censorius,num_dependents_deps.dev:0 @@ -608001,6 +619340,7 @@ github.com/igor97100/cnnutils, github.com/igor9silva/publish,num_dependents_deps.dev:0 github.com/igorDolzh/fun-task-axios,num_dependents_deps.dev:0 github.com/igorDolzh/js-atom,num_dependents_deps.dev:0 +github.com/igorDolzh/lokalise-file-push, github.com/igorDolzh/react-atomic,num_dependents_deps.dev:0 github.com/igorFrontend/nut-json,num_dependents_deps.dev:0 github.com/igorFrontend/nut-parser,num_dependents_deps.dev:0 @@ -608061,6 +619401,7 @@ github.com/igorcferreira/eu-covid-pass,num_dependents_deps.dev:0 github.com/igorcoding/asynctnt, github.com/igorcoding/asynctnt-queue, github.com/igorcoding/guavahash, +github.com/igorcosta/gsheet-sync, github.com/igorcosta/ng-filters-br,num_dependents_deps.dev:0 github.com/igorcrevar/crewhogan,num_dependents_deps.dev:0 github.com/igorcrevar/react-native-lcrew-forms,num_dependents_deps.dev:0 @@ -608075,6 +619416,7 @@ github.com/igordeoliveirasa/node-pushnotifications,num_dependents_deps.dev:0 github.com/igordertigor/python-timd, github.com/igordg777/git-effect,num_dependents_deps.dev:0 github.com/igordg777/test-pages, +github.com/igordias2/action-s3-cache, github.com/igordmitrievnz/project,num_dependents_deps.dev:0 github.com/igordrangel/koala,num_dependents_deps.dev:0 github.com/igordrangel/koala-angular-template,num_dependents_deps.dev:0 @@ -608113,6 +619455,7 @@ github.com/igorgolovanov/lolly,num_dependents_deps.dev:0 github.com/igorgolovanov/menthol,num_dependents_deps.dev:0 github.com/igorgolovanov/objection-boom,num_dependents_deps.dev:0 github.com/igorgolovanov/objection-joi,num_dependents_deps.dev:0 +github.com/igorgottschalg/firebase-rollback-hosting-action, github.com/igorgottschalg/wordpress-package,num_dependents_deps.dev:0 github.com/igorhlino/configmgmtchallenge,num_dependents_deps.dev:0 github.com/igoricelic/dtomapper,num_dependents_deps.dev:0 @@ -608133,6 +619476,7 @@ github.com/igorivaniuk/multer-google-storage,num_dependents_deps.dev:0 github.com/igorivaniuk/telegraf-i18n,num_dependents_deps.dev:0 github.com/igorivaniuk/telegraf-session-redis,num_dependents_deps.dev:0 github.com/igorivaniuk/tus-server,num_dependents_deps.dev:0 +github.com/igorjs/gh-actions-clean-workflow, github.com/igorjunior/ip-promise, github.com/igorjunior/rastreio-promise,num_dependents_deps.dev:0 github.com/igorkaldowski/strapi-email-nodemailer-gmail,num_dependents_deps.dev:0 @@ -608235,6 +619579,7 @@ github.com/igorrendulic/mcrypt-sdk-go,num_dependents_deps.dev:0 github.com/igorrendulic/sixthmass-android-sdk,num_dependents_deps.dev:0 github.com/igorrmotta/fetch-fragment-matcher, github.com/igorrmotta/random-md-color,num_dependents_deps.dev:0 +github.com/igorrs/create-release, github.com/igorrybalko/frontend-skeleton,num_dependents_deps.dev:0 github.com/igorrypniewski/fast.db,num_dependents_deps.dev:0 github.com/igorsales/iOS_android_Toolbox,num_dependents_deps.dev:0 @@ -608310,6 +619655,9 @@ github.com/igorzg/typed-js,num_dependents_deps.dev:0 github.com/igorzg/typeix,num_dependents_deps.dev:0 github.com/igorzoriy/grunt-backup,num_dependents_deps.dev:0 github.com/igorzoriy/gulp-html2pdf,num_dependents_deps.dev:0 +github.com/igotinfected-ci/build-and-sign-monogame-android, +github.com/igotinfected-ci/build-monogame, +github.com/igotinfected-ci/setup-resharper, github.com/igotodev/genpass,num_dependents_deps.dev:0 github.com/igotodev/grpc-session-auth,num_dependents_deps.dev:0 github.com/igotodev/gspass,num_dependents_deps.dev:0 @@ -608379,8 +619727,10 @@ github.com/igroykt/metar-ykt,num_dependents_deps.dev:0 github.com/igrslv/rust-endianness,num_dependents_deps.dev:0 github.com/igrybkov/alfred-focus-on-work,num_dependents_deps.dev:0 github.com/igrybkov/homebridge-bridge-http-status,num_dependents_deps.dev:0 +github.com/igsekor/pyspelling-any, github.com/igsr/igsr_analysis, github.com/igsr/igsr_archive, +github.com/igsr5/chatgpt-issue-commentator, github.com/igtm/graceful-cluster,num_dependents_deps.dev:0 github.com/igtm/move_jismeshcode, github.com/igtm/node-alb-log-parser,num_dependents_deps.dev:0 @@ -608451,6 +619801,7 @@ github.com/igvteam/igv.js,"criticality_score:0.555010,num_dependents_deps.dev:0" github.com/igvteam/juicebox.js, github.com/igvteam/juicebox.js-npm,num_dependents_deps.dev:0 github.com/igvteam/swcproject,num_dependents_deps.dev:0 +github.com/igwejk/action-steady-step, github.com/igwkang/bls-go,num_dependents_deps.dev:0 github.com/igwkang/chiapos,num_dependents_deps.dev:0 github.com/igxactly/bleve,num_dependents_deps.dev:0 @@ -608653,6 +620004,7 @@ github.com/ihhu/cyjh-cli,num_dependents_deps.dev:0 github.com/ihhub/fheroes2,criticality_score:0.445500 github.com/ihi-energy-storage/sparkpluggw,num_dependents_deps.dev:0 github.com/ihippik/gitlab-runner,num_dependents_deps.dev:0 +github.com/ihiroky/extract-action, github.com/ihiroshi27/passgenerator-js,num_dependents_deps.dev:0 github.com/ihiroshi27/passsigner-js,num_dependents_deps.dev:0 github.com/ihiroshi27/promptpay-js,num_dependents_deps.dev:0 @@ -608756,9 +620108,11 @@ github.com/ihtml5/wx-redux,num_dependents_deps.dev:0 github.com/ihuanglei/nail,num_dependents_deps.dev:0 github.com/ihuanglei/vue-reditor,num_dependents_deps.dev:0 github.com/ihuangzhu/draftjs-editor,num_dependents_deps.dev:0 +github.com/ihub-pub/bot, github.com/ihucos/noapt, github.com/ihucos/sola, github.com/ihugang/find2,num_dependents_deps.dev:0 +github.com/ihuicatl/ros2wasm-builder, github.com/ihuixu/cello-loader, github.com/ihuixu/cello-server, github.com/ihuixu/grunt-cmd-commonjs, @@ -608991,6 +620345,10 @@ github.com/iissy/contrib,num_dependents_deps.dev:0 github.com/iissy/goweb,num_dependents_deps.dev:0 github.com/iistyler/AsyncBlock,num_dependents_deps.dev:0 github.com/iistyler/FirebaseObject,num_dependents_deps.dev:0 +github.com/iisyos/github-contribution-metrics, +github.com/iisyos/ssm-to-heroku-env-action, +github.com/iisyos/star_tweet, +github.com/iisyos/yaml-replacement-action, github.com/iitc-project/ingress-intel-total-conversion,criticality_score:0.356840 github.com/iitdbgroup/cape, github.com/iitheo/cronjob,num_dependents_deps.dev:0 @@ -609187,6 +620545,7 @@ github.com/ik9999/tern-chancejs,num_dependents_deps.dev:0 github.com/ik9999/tern-jasminematchers, github.com/ika-front-end/ember-components,num_dependents_deps.dev:0 github.com/ika-front-end/ember-layouts,num_dependents_deps.dev:0 +github.com/ika-rwth-aachen/docker-ros, github.com/ika18/grunt-git-rev-parse,num_dependents_deps.dev:0 github.com/ikadesign/node-red-contrib-faceapi,num_dependents_deps.dev:0 github.com/ikaem/go-bookings,num_dependents_deps.dev:0 @@ -609217,6 +620576,7 @@ github.com/ikalnitsky/holocron, github.com/ikalnitsky/holocron-clear-theme, github.com/ikalnitsky/holocron-creole, github.com/ikalnitsky/iResign, +github.com/ikalnytskyi/action-setup-postgres, github.com/ikalnytskyi/git-pr, github.com/ikalnytskyi/httpie-credential-store, github.com/ikalnytskyi/picobox, @@ -609234,6 +620594,7 @@ github.com/ikamensh/flynt,criticality_score:0.461300 github.com/ikamensh/ig_api, github.com/ikamensh/ilya_ezplot, github.com/ikamva/components, +github.com/ikanago/issue-deadline-manager, github.com/ikanago/ojisan_f-ck,num_dependents_deps.dev:0 github.com/ikanedo/ecommerce-store-locator,num_dependents_deps.dev:0 github.com/ikanor/harvester,num_dependents_deps.dev:0 @@ -609398,6 +620759,7 @@ github.com/ikegami-yukino/zunda-python, github.com/ikegami/tts_save,num_dependents_deps.dev:0 github.com/ikegami/tts_save_extractor,num_dependents_deps.dev:0 github.com/ikehakinyemi/learning-golang,num_dependents_deps.dev:0 +github.com/ikeike443/decK-action, github.com/ikeikeikeike/cast,num_dependents_deps.dev:0 github.com/ikeikeikeike/celery-tracker, github.com/ikeikeikeike/django-spine, @@ -609657,6 +621019,7 @@ github.com/ikryloff/project-lvl1-s200,num_dependents_deps.dev:0 github.com/iks-gmbh/iks-datepicker,num_dependents_deps.dev:0 github.com/iks15174/go-restapi1,num_dependents_deps.dev:0 github.com/iksaif/my-little-ticket, +github.com/iksaku/openstack-swift-action, github.com/iksaku/tailwindcss-plugins,num_dependents_deps.dev:0 github.com/ikseek/iso_4217, github.com/ikseek/undname, @@ -609700,6 +621063,7 @@ github.com/ikubetoomuzik/unibar,num_dependents_deps.dev:0 github.com/ikucan/MathMonkey, github.com/ikuhiroo/sysgo,num_dependents_deps.dev:0 github.com/ikumen/flask-cfg, +github.com/ikumi9/azure-keyvault-action, github.com/ikun/connect-parse-proxy, github.com/ikun/grunt-ftp-deploy, github.com/ikun/string-replace-loader,num_dependents_deps.dev:0 @@ -609722,8 +621086,10 @@ github.com/iky/nameko-slack, github.com/ikysil/run-parts-rust,num_dependents_deps.dev:0 github.com/il20afar/switcho,num_dependents_deps.dev:0 github.com/il3ven/express-simple-stats, +github.com/ilCollez/ssh-scp-deploy, github.com/ilDon/changelog-flow,num_dependents_deps.dev:0 github.com/ilDug/dag-mat-spinner,num_dependents_deps.dev:0 +github.com/ilDug/get-tag-action, github.com/ilDug/ngx-confirm,num_dependents_deps.dev:0 github.com/ilDug/ngx-datepicker,num_dependents_deps.dev:0 github.com/ilDug/ngx-dragdrop,num_dependents_deps.dev:0 @@ -609746,6 +621112,8 @@ github.com/ilaksono/lotide,num_dependents_deps.dev:0 github.com/ilam01/jpush-go,num_dependents_deps.dev:0 github.com/ilam01/limits-go,num_dependents_deps.dev:0 github.com/ilammy/fluid-let,num_dependents_deps.dev:0 +github.com/ilammy/msvc-dev-cmd, +github.com/ilammy/setup-nasm, github.com/ilammy/themis,num_dependents_deps.dev:0 github.com/ilan-gold/generate_tiff_offsets, github.com/ilan9175/flf-uikit,num_dependents_deps.dev:0 @@ -609946,6 +621314,7 @@ github.com/ilhamsabir/is-modal,num_dependents_deps.dev:0 github.com/ilhamsabir/is-pagination,num_dependents_deps.dev:0 github.com/ilhamster/ltl,num_dependents_deps.dev:0 github.com/ilhantekir/React-Hooks-Get-Dimensions, +github.com/ilharp/sign-android-release, github.com/ilhasoft/gocommon,num_dependents_deps.dev:0 github.com/ilhicas/drone-cli,num_dependents_deps.dev:0 github.com/ilhomidin/bftc, @@ -610149,6 +621518,7 @@ github.com/ilkermanap/python-pciids, github.com/ilkeryilmaz/timelinejs,num_dependents_deps.dev:0 github.com/ilkiri/morkovka,num_dependents_deps.dev:0 github.com/ilkka/generator-webpack-es6-cssnext,num_dependents_deps.dev:0 +github.com/ilkka/git-https-push-action, github.com/ilkka/nowwith,num_dependents_deps.dev:0 github.com/ilkkah/http-auth,num_dependents_deps.dev:0 github.com/ilkkah/ilkkah-fb,num_dependents_deps.dev:0 @@ -610318,6 +621688,7 @@ github.com/illuspas/rtmp-bench,num_dependents_deps.dev:0 github.com/illuspas/vue-nodeplayer,num_dependents_deps.dev:0 github.com/illusson/scitedutool_api_golang,num_dependents_deps.dev:0 github.com/illustra/illustra, +github.com/illvart/beautysh-action, github.com/illvart/gatsby-plugin-minify-html,num_dependents_deps.dev:0 github.com/illvart/static,num_dependents_deps.dev:0 github.com/illyaburyak/findword_go,num_dependents_deps.dev:0 @@ -610332,6 +621703,7 @@ github.com/illyism/markade,num_dependents_deps.dev:0 github.com/illyism/markade-server,num_dependents_deps.dev:2 github.com/ilmannafian04/sweeprs,num_dependents_deps.dev:0 github.com/ilmatic/boardwalk,num_dependents_deps.dev:0 +github.com/ilmazsaami/gotweet, github.com/ilmc/contented,num_dependents_deps.dev:0 github.com/ilmente/mnTouch,num_dependents_deps.dev:0 github.com/ilmente/plainbook,num_dependents_deps.dev:0 @@ -610466,6 +621838,7 @@ github.com/iltegin/ngaps,num_dependents_deps.dev:0 github.com/iltegin/vue-echarts,num_dependents_deps.dev:0 github.com/iltempo/aws-cloudfront,num_dependents_deps.dev:0 github.com/iltempo/uservoice,num_dependents_deps.dev:0 +github.com/ilteoood/docker_buildx, github.com/ilteralkann/youtube-thumbnail-downloader-module,num_dependents_deps.dev:0 github.com/ilteriskeskin/linuxU, github.com/ilteriskeskin/sey-ayraci,num_dependents_deps.dev:0 @@ -610603,6 +621976,7 @@ github.com/ilyakrivitskiy/first-repository,num_dependents_deps.dev:0 github.com/ilyakrivitskiy/simple-calculator-golang,num_dependents_deps.dev:0 github.com/ilyalatt/prman, github.com/ilyalavrinov/contests,num_dependents_deps.dev:0 +github.com/ilyalehchylin/appstore-connect-app-version, github.com/ilyalesik/effector-localstorage,num_dependents_deps.dev:0 github.com/ilyalesik/gen-flow-files,num_dependents_deps.dev:2 github.com/ilyalesik/react-fetch-hook,num_dependents_deps.dev:2 @@ -610610,6 +621984,7 @@ github.com/ilyalesik/react-overrides, github.com/ilyalesik/react-use-trigger, github.com/ilyalesik/with-modifiers,num_dependents_deps.dev:0 github.com/ilyalevyant/bookstore_users-api,num_dependents_deps.dev:0 +github.com/ilyam8/periodic-pr-labeler, github.com/ilyamkin/dev-to-js, github.com/ilyankou/Leaflet.IconMaterial,num_dependents_deps.dev:0 github.com/ilyanovak/naive-bayes-gauss, @@ -610812,6 +622187,7 @@ github.com/imadcn/idworker,num_dependents_deps.dev:0 github.com/imade-nl/vue-bs-notify,num_dependents_deps.dev:0 github.com/imadkurdi/stars-rating,num_dependents_deps.dev:0 github.com/imadu/e-commerce-api,num_dependents_deps.dev:0 +github.com/imadx/jest-action, github.com/imadx/vue-editInPlace,num_dependents_deps.dev:0 github.com/imadx/vue-live-edit, github.com/imadx/vue-photo-upload,num_dependents_deps.dev:0 @@ -610984,6 +622360,7 @@ github.com/imagina/quser,num_dependents_deps.dev:4 github.com/imaginary-cloud/CameraManager,criticality_score:0.368610 github.com/imaginary-cloud/eslint-config-react,num_dependents_deps.dev:0 github.com/imaginary-cloud/prettier-config,num_dependents_deps.dev:0 +github.com/imaginarymachines/builder-action, github.com/imaginate/act,num_dependents_deps.dev:0 github.com/imaginate/are,num_dependents_deps.dev:0 github.com/imaginate/cure,num_dependents_deps.dev:0 @@ -611019,6 +622396,9 @@ github.com/imaharu/isucon7-qualify,num_dependents_deps.dev:0 github.com/imail-ma/imail-node,num_dependents_deps.dev:0 github.com/imaimiami/ngMixpanel,num_dependents_deps.dev:0 github.com/imain/container-check, +github.com/imajeetyadav/argocd-cli, +github.com/imajeetyadav/delete-merged-branches, +github.com/imajeetyadav/kubectl, github.com/imajes/smokeclouds-rubocop,num_dependents_deps.dev:0 github.com/imajion/react-clamp-lines,num_dependents_deps.dev:0 github.com/imajoriri/ask-auxiliary,num_dependents_deps.dev:0 @@ -611160,6 +622540,7 @@ github.com/imartingraham/nomniture,num_dependents_deps.dev:0 github.com/imartingraham/react-native-progress,num_dependents_deps.dev:0 github.com/imas-alex/JEntigrator,num_dependents_deps.dev:0 github.com/imas-alex/java-NoSQL-local-database,num_dependents_deps.dev:0 +github.com/imas/setup-rdflint, github.com/imashishjoshi/paytm-nodejs,num_dependents_deps.dev:0 github.com/imasho/kyototycoon-client,num_dependents_deps.dev:0 github.com/imasif/data-css,num_dependents_deps.dev:0 @@ -611204,6 +622585,8 @@ github.com/imazen/imageflow-go,num_dependents_deps.dev:0 github.com/imazen/imageflow-node,num_dependents_deps.dev:0 github.com/imazen/resizer,criticality_score:0.393200 github.com/imazzine/mdln,num_dependents_deps.dev:0 +github.com/imba-tjd/auto-close-pr-action, +github.com/imba-tjd/rebase-upstream-action, github.com/imba/imba,"criticality_score:0.535850,num_dependents_deps.dev:2" github.com/imba/imba-document,num_dependents_deps.dev:0 github.com/imba/imba-node-watch,num_dependents_deps.dev:0 @@ -611246,7 +622629,9 @@ github.com/imbcmdth/xyz-utils,num_dependents_deps.dev:2 github.com/imbellucci/ez-layout,num_dependents_deps.dev:0 github.com/imbhargav5/armin,num_dependents_deps.dev:0 github.com/imbhargav5/fetch-unless-cached,num_dependents_deps.dev:0 +github.com/imbhargav5/hashnode-user-with-posts-json, github.com/imbhargav5/is-url-nextjs-page,num_dependents_deps.dev:0 +github.com/imbhargav5/puppeteer-pdf-action, github.com/imbhargav5/react-lazy-progressive-image,num_dependents_deps.dev:0 github.com/imbhargav5/react-scroll-sensor,num_dependents_deps.dev:0 github.com/imbhargav5/rooks,"criticality_score:0.489320,num_dependents_deps.dev:221" @@ -611341,6 +622726,7 @@ github.com/imchintan/react-native-crypto-js,num_dependents_deps.dev:338 github.com/imchintan/react-native-hyper-text,num_dependents_deps.dev:0 github.com/imchuncai/flac,num_dependents_deps.dev:0 github.com/imchuncai/jsonhttp,num_dependents_deps.dev:0 +github.com/imciner2/run-lcov, github.com/imcj/get-mirror, github.com/imcj/hxcommonjs,num_dependents_deps.dev:0 github.com/imclaren/calmcache,num_dependents_deps.dev:0 @@ -611546,6 +622932,7 @@ github.com/imega/daemon,num_dependents_deps.dev:0 github.com/imega/gomemcache-selector,num_dependents_deps.dev:0 github.com/imega/luaformatter,num_dependents_deps.dev:0 github.com/imega/mt,num_dependents_deps.dev:0 +github.com/imehedi/actions-awscli-v2, github.com/imeisa/codewars,num_dependents_deps.dev:0 github.com/imeji-community/pyimeji, github.com/imeka/trk-io,num_dependents_deps.dev:0 @@ -611683,6 +623070,7 @@ github.com/imgly/vesdk-react-native,num_dependents_deps.dev:0 github.com/imgod123456/shiny-wafflel,num_dependents_deps.dev:0 github.com/imgold2017/workspace,num_dependents_deps.dev:0 github.com/imgproxy/imgproxy,"criticality_score:0.536220,num_dependents_deps.dev:0" +github.com/imgproxy/imgproxy.rb, github.com/imgqb/parseEngineData,num_dependents_deps.dev:150 github.com/imgqb/psd-parser,num_dependents_deps.dev:0 github.com/imgs-bar/proxy,num_dependents_deps.dev:0 @@ -611714,6 +623102,7 @@ github.com/imheretw/imhere,num_dependents_deps.dev:0 github.com/imheretw/imhere-angular-wizard,num_dependents_deps.dev:0 github.com/imheretw/node-line-messaging,num_dependents_deps.dev:0 github.com/imhoffd/colors, +github.com/imhoffd/needs-reply, github.com/imhofjs/imhof,num_dependents_deps.dev:0 github.com/imhonglu/styled-based-components,num_dependents_deps.dev:0 github.com/imhoss/scratch,num_dependents_deps.dev:0 @@ -611828,11 +623217,13 @@ github.com/imjasonh/combine,num_dependents_deps.dev:0 github.com/imjasonh/datatest,num_dependents_deps.dev:0 github.com/imjasonh/diy,num_dependents_deps.dev:0 github.com/imjasonh/ghatest2,num_dependents_deps.dev:0 +github.com/imjasonh/gke-auth, github.com/imjasonh/go-containerregistry,num_dependents_deps.dev:0 github.com/imjasonh/image,num_dependents_deps.dev:0 github.com/imjasonh/ko,num_dependents_deps.dev:0 github.com/imjasonh/kontain.me,num_dependents_deps.dev:0 github.com/imjasonh/rbac-audit,num_dependents_deps.dev:0 +github.com/imjasonh/setup-crane, github.com/imjasonh/setup-ko,num_dependents_deps.dev:0 github.com/imjasonh/setup-pack,num_dependents_deps.dev:0 github.com/imjasonh/staticmaps,num_dependents_deps.dev:0 @@ -611858,8 +623249,13 @@ github.com/imjoehaines/simple-state, github.com/imjoey/go-ovirt,num_dependents_deps.dev:0 github.com/imjoey/go-restful,num_dependents_deps.dev:0 github.com/imjohansunden/simple-async-queue,num_dependents_deps.dev:0 +github.com/imjohnbo/action-to-mermaid, github.com/imjohnbo/alfred-github-link-markdownifier,num_dependents_deps.dev:0 github.com/imjohnbo/alfred-open-latest-weekly-radar,num_dependents_deps.dev:0 +github.com/imjohnbo/dear-santa-action, +github.com/imjohnbo/extract-issue-template-fields, +github.com/imjohnbo/gh-polls-bot-action, +github.com/imjohnbo/issue-bot, github.com/imjohnlouie04/b-scale,num_dependents_deps.dev:0 github.com/imjohsep/import-utility, github.com/imjoseangel/dnsmock, @@ -611898,6 +623294,7 @@ github.com/imjuni/tjscli,num_dependents_deps.dev:0 github.com/imjxydhh/MyImputation, github.com/imk-toolkit/imk-toolkit, github.com/imkarma/breve,num_dependents_deps.dev:0 +github.com/imkasen/time-progress-bar, github.com/imkch/dot-matrix-map, github.com/imkch/editormd-loader,num_dependents_deps.dev:0 github.com/imkch/ol-extend-set, @@ -612049,6 +623446,7 @@ github.com/immense/quill-drag-and-drop-module,num_dependents_deps.dev:0 github.com/immensity/pywebber, github.com/immerjs/immer,"criticality_score:0.590450,num_dependents_deps.dev:16613" github.com/immerjs/use-immer,criticality_score:0.347820 +github.com/immerok/setup-rok, github.com/immerrr/lua-mode,criticality_score:0.422690 github.com/immers-space/web-monetization-polyfill,num_dependents_deps.dev:0 github.com/immersa-co/jwt, @@ -612222,7 +623620,9 @@ github.com/imnirdst/ii-react-native-android-local-notification,num_dependents_de github.com/imnodb/start-chrome,num_dependents_deps.dev:0 github.com/imnodb/web-proxy-server,num_dependents_deps.dev:0 github.com/imnotjames/generator-phaser-unofficialest,num_dependents_deps.dev:0 +github.com/imnotjames/github-project-to-markdown, github.com/imnotjames/koa-openapi-router,num_dependents_deps.dev:0 +github.com/imnotjames/notion-docs-sync, github.com/imnotjames/pastebin_mirror, github.com/imnotjames/typeorm,num_dependents_deps.dev:0 github.com/imnotjames/whois-servers,num_dependents_deps.dev:0 @@ -612250,6 +623650,7 @@ github.com/imnull/string-format,num_dependents_deps.dev:0 github.com/imnull/string-reader,num_dependents_deps.dev:0 github.com/imnull/style-keeper,num_dependents_deps.dev:0 github.com/imnull/xconv,num_dependents_deps.dev:0 +github.com/imny94/deploy-firebase, github.com/imo/gtimes, github.com/imobanco/as-webservice-wrapper, github.com/imobanco/bb-wrapper, @@ -612326,6 +623727,7 @@ github.com/imor/uci, github.com/imoris11/file-upload-modal,num_dependents_deps.dev:0 github.com/imoris11/sea-ports,num_dependents_deps.dev:0 github.com/imorph/gate-keeper,num_dependents_deps.dev:0 +github.com/imorphio/vigilant-action, github.com/imorti/boondoggle,num_dependents_deps.dev:0 github.com/imorti/buffalo,num_dependents_deps.dev:0 github.com/imorti/pop,num_dependents_deps.dev:0 @@ -612396,6 +623798,7 @@ github.com/impedance/project-lvl1-s474,num_dependents_deps.dev:0 github.com/impeiran/chaser-cli,num_dependents_deps.dev:0 github.com/impeiran/ure,num_dependents_deps.dev:0 github.com/impeiran/vue-use-virtual-list,num_dependents_deps.dev:0 +github.com/impekable/action-studio, github.com/impelsystems/react-mentions,num_dependents_deps.dev:0 github.com/impengmoumou/h5-hybridapp-bridge,num_dependents_deps.dev:0 github.com/impensables/uql,num_dependents_deps.dev:0 @@ -612449,6 +623852,7 @@ github.com/impinj/itemsense-node,num_dependents_deps.dev:0 github.com/impinj/java-itemsense-client,num_dependents_deps.dev:0 github.com/impira/extraction-benchmark, github.com/impira/impira-python, +github.com/impks27/hello-world-javascript-action, github.com/implausible/Node-Build-Time, github.com/implausible/Stateless-React-Pager,num_dependents_deps.dev:0 github.com/implausible/find-git-repositories,num_dependents_deps.dev:22 @@ -612518,6 +623922,7 @@ github.com/import-brain/elements.py, github.com/import-brain/golanguage_helloworld,num_dependents_deps.dev:0 github.com/import-io/s3-deploy,num_dependents_deps.dev:0 github.com/import-js/eslint-import-resolver-typescript, +github.com/import-js/eslint-plugin-import, github.com/import-yuefeng/freeFile, github.com/import/component, github.com/import666/Karthiks_Model_Engine, @@ -612584,6 +623989,16 @@ github.com/impredicative/urltitle, github.com/impredicative/wrapdisc, github.com/impress-org/givewp, github.com/impress/impress.js,"criticality_score:0.527410,num_dependents_deps.dev:0" +github.com/impresscms-dev/filter-php-class-list-with-glob-like-rules-action, +github.com/impresscms-dev/flattern-markdown-folder-structure-action, +github.com/impresscms-dev/generate-php-project-classes-list-file-action, +github.com/impresscms-dev/generate-phpdocs-with-clean-phpdoc-md-action, +github.com/impresscms-dev/generate-phpdocs-with-evert-phpdoc-md-action, +github.com/impresscms-dev/phpdocs-wiki-update-action, +github.com/impresscms-dev/prefix-or-suffix-text-files-action, +github.com/impresscms-dev/simple-autorelease-action, +github.com/impresscms-dev/strip-markdown-extensions-from-links-action, +github.com/impresscms-dev/test-impresscms-addon-action, github.com/impressivewebs/QuestionMark.js,num_dependents_deps.dev:0 github.com/impressivewebs/frontend-feeds,criticality_score:0.320740 github.com/impresso/dask_k8, @@ -612691,6 +624106,7 @@ github.com/imranhsayed/nextjs-headless-wordpress,num_dependents_deps.dev:0 github.com/imranhsayed/nextjs-wp-assets,num_dependents_deps.dev:0 github.com/imranhsayed/woo-next,criticality_score:0.303410 github.com/imranismail/bff,num_dependents_deps.dev:0 +github.com/imranismail/setup-kustomize, github.com/imrankhan17/pyzoopla, github.com/imrankhan17/statsbomb-parser, github.com/imranmaj/websockets,num_dependents_deps.dev:0 @@ -612762,6 +624178,7 @@ github.com/imroc/gopacket,num_dependents_deps.dev:0 github.com/imroc/req,"criticality_score:0.339360,num_dependents_deps.dev:152" github.com/imroc/zk2etcd,num_dependents_deps.dev:0 github.com/imron02/react-native-sideswipe,num_dependents_deps.dev:0 +github.com/imrushi/markdown-or-hugo-to-medium, github.com/imrvelj/moment-random, github.com/imrvelj/moment-random-date,num_dependents_deps.dev:0 github.com/imryang/git-test,num_dependents_deps.dev:0 @@ -612769,6 +624186,8 @@ github.com/imryche/blockkit, github.com/ims/gulp-kit-2,num_dependents_deps.dev:0 github.com/ims0l0/gorubikcube,num_dependents_deps.dev:0 github.com/imsahil007/KMeansImage, +github.com/imsamdez/actions.compare-branch, +github.com/imsamdez/actions.merge-branch, github.com/imsamdez/swaler,num_dependents_deps.dev:0 github.com/imsamet/patika-react-homework-5,num_dependents_deps.dev:0 github.com/imsamtar/chstore,num_dependents_deps.dev:0 @@ -612814,6 +624233,7 @@ github.com/imsingee/structpb,num_dependents_deps.dev:0 github.com/imsingee/template,num_dependents_deps.dev:0 github.com/imsingee/tt,num_dependents_deps.dev:0 github.com/imsingh/rxjs-audio,num_dependents_deps.dev:0 +github.com/imskr/readme-update-actions, github.com/imsky/github-graphql-client,num_dependents_deps.dev:18 github.com/imsky/grady,num_dependents_deps.dev:0 github.com/imsky/holder,"criticality_score:0.490200,num_dependents_deps.dev:32" @@ -612908,6 +624328,7 @@ github.com/imsweb/staging-algorithm-tnm,num_dependents_deps.dev:0 github.com/imsweb/staging-client-java,num_dependents_deps.dev:21 github.com/imsweb/validation,num_dependents_deps.dev:0 github.com/imsweb/x12-parser,num_dependents_deps.dev:0 +github.com/imsyuan/action-laravel-rsync-deploy, github.com/imt-jaime/ts-typelib-example,num_dependents_deps.dev:1 github.com/imtaotao/Grass,num_dependents_deps.dev:0 github.com/imtaotao/Swop,num_dependents_deps.dev:0 @@ -613164,6 +624585,7 @@ github.com/in-the-keyhole/khs-spring-boot-publish-swagger-starter,num_dependents github.com/in-the-keyhole/khs-spring-boot-troublemaker-starter,num_dependents_deps.dev:0 github.com/in-the-keyhole/khs-trouble-maker-client,num_dependents_deps.dev:0 github.com/in-the-ocean/htmlcomparator, +github.com/in-toto/github-action, github.com/in-toto/in-toto,criticality_score:0.451700 github.com/in-toto/in-toto-golang,num_dependents_deps.dev:14 github.com/in-toto/in-toto-java,num_dependents_deps.dev:0 @@ -613300,6 +624722,7 @@ github.com/inanutshell86/project-lvl1-s101,num_dependents_deps.dev:0 github.com/inaos/jam,num_dependents_deps.dev:48 github.com/inapsis/ioBroker.palazzetti,num_dependents_deps.dev:0 github.com/inari-conya/l4g,num_dependents_deps.dev:0 +github.com/inarix/ga-argocd-action, github.com/inarol/audio-analyser-cli,num_dependents_deps.dev:0 github.com/inasalifatus/try-github,num_dependents_deps.dev:0 github.com/inasie/upbitpy, @@ -613349,6 +624772,7 @@ github.com/inbuss/thymeleaf-cdi,num_dependents_deps.dev:0 github.com/inbuss/thymeleaf-jersey,num_dependents_deps.dev:0 github.com/inbuss/thymeleaf-mvc,num_dependents_deps.dev:0 github.com/inc-brick/medici,num_dependents_deps.dev:0 +github.com/inc-rement/chat, github.com/inc-zz/area-data,num_dependents_deps.dev:0 github.com/inc2734/add-custom-event,num_dependents_deps.dev:6 github.com/inc2734/basis,num_dependents_deps.dev:0 @@ -613449,6 +624873,8 @@ github.com/incepter/react-expansion,num_dependents_deps.dev:0 github.com/incepter/react-invisible-element,num_dependents_deps.dev:0 github.com/incepter/react-offsets,num_dependents_deps.dev:0 github.com/incepter/react-userinput-hooks,num_dependents_deps.dev:0 +github.com/inception-health/otel-export-trace-action, +github.com/inception-health/otel-upload-test-artifact-action, github.com/inception-project/inception,criticality_score:0.576860 github.com/inception-soa/eslint-config-inception,num_dependents_deps.dev:0 github.com/inception-soa/inception-standard,num_dependents_deps.dev:0 @@ -613523,6 +624949,8 @@ github.com/includable/react-native-map-link,num_dependents_deps.dev:0 github.com/includable/topics-js,num_dependents_deps.dev:0 github.com/include-all/generate-app-cli,num_dependents_deps.dev:0 github.com/include-all/generate-react-app-cli,num_dependents_deps.dev:0 +github.com/include-dcc/cavatica-upload-action, +github.com/include-dcc/sbpack-action, github.com/include-what-you-use/include-what-you-use,criticality_score:0.502590 github.com/include-yy/account-manager, github.com/includeMaple/data-tools,num_dependents_deps.dev:0 @@ -613534,6 +624962,7 @@ github.com/includeos/IncludeOS,criticality_score:0.417680 github.com/incluedu/utils,num_dependents_deps.dev:0 github.com/incluirtecnologia/v-currency-field,num_dependents_deps.dev:0 github.com/inclus/pg-init,num_dependents_deps.dev:0 +github.com/inclusivelint/inclusivelint-github-actions, github.com/inclusivelint/inclusivelint-lib,num_dependents_deps.dev:0 github.com/inclyc/HIT-GPA-Converter, github.com/inclyc/hitutil, @@ -613550,6 +624979,7 @@ github.com/incognitochain/incognito-cli,num_dependents_deps.dev:0 github.com/incognitochain/portal-master-pubkey-generator,num_dependents_deps.dev:0 github.com/incognitochain/portal-workers,num_dependents_deps.dev:0 github.com/incognitochain/sdk-v2,num_dependents_deps.dev:0 +github.com/incognos/github-action-expo-version-set-on-tag, github.com/incognos/react-virtual-list,num_dependents_deps.dev:0 github.com/incolumepy-prospections/incolumepy.gwa, github.com/incolumepy/incolumepy.makefilelicense, @@ -613813,6 +625243,7 @@ github.com/indellient/vault-helper,num_dependents_deps.dev:0 github.com/indemandly/workflowmax,num_dependents_deps.dev:0 github.com/indenger20/movie_widget,num_dependents_deps.dev:0 github.com/indeni/cloudrail-knowledge, +github.com/indeni/cloudrail-run-ga, github.com/indeni/dragoneye, github.com/indent-go/apis,num_dependents_deps.dev:0 github.com/indentapis/indent-go,num_dependents_deps.dev:0 @@ -613997,6 +625428,7 @@ github.com/indieatom/mockee,num_dependents_deps.dev:0 github.com/indiebrain/resque-alive,num_dependents_deps.dev:0 github.com/indiecastfm/react-native-audio-streamer, github.com/indiedevelopments/azulejo,num_dependents_deps.dev:0 +github.com/indiedotkim/SwiftAllStars, github.com/indieforger/assimilator,num_dependents_deps.dev:0 github.com/indieforger/forger,num_dependents_deps.dev:0 github.com/indieforger/fs-sniff,num_dependents_deps.dev:0 @@ -614038,6 +625470,7 @@ github.com/indiereign/go-dash,num_dependents_deps.dev:0 github.com/indiereign/shift72-kibble,num_dependents_deps.dev:0 github.com/indiereign/shift72-kibble-template-avod,num_dependents_deps.dev:0 github.com/indiescripter/tappity-tap, +github.com/indiesdev/curl, github.com/indiespirit/react-native-chart-kit,"criticality_score:0.455140,num_dependents_deps.dev:0" github.com/indietyp/django-automated-logging, github.com/indietyp/lit, @@ -614077,6 +625510,7 @@ github.com/indigotech/graphql-schema-decorator,num_dependents_deps.dev:0 github.com/indigotech/taq-node-web-tools,num_dependents_deps.dev:0 github.com/indigotree/coding-standards,num_dependents_deps.dev:0 github.com/indigotree/gatsby-plugin-bugherd,num_dependents_deps.dev:0 +github.com/indigotree/github-action-deploy-to-wpe, github.com/indigotree/netlify-cms-yoast-seo,num_dependents_deps.dev:0 github.com/indigotree/webpack-wp,num_dependents_deps.dev:0 github.com/indigov-us/zendesk-api,num_dependents_deps.dev:0 @@ -614404,6 +625838,7 @@ github.com/indy/full-meta-jacket,num_dependents_deps.dev:0 github.com/indy256/convexhull-js,num_dependents_deps.dev:0 github.com/indyfree/CARLA, github.com/indygreg/PyOxidizer,"criticality_score:0.515940,num_dependents_deps.dev:49" +github.com/indygreg/apple-code-sign-action, github.com/indygreg/python-zstandard,Google github.com/indygreg/rs-memory-module-sys,num_dependents_deps.dev:0 github.com/indyhall/hubot-user-voting,num_dependents_deps.dev:0 @@ -614465,6 +625900,7 @@ github.com/ineo6/github-dark-theme,num_dependents_deps.dev:0 github.com/ineo6/magic-lint,num_dependents_deps.dev:0 github.com/ineo6/mini-deploy,num_dependents_deps.dev:0 github.com/ineo6/mp-ci,num_dependents_deps.dev:0 +github.com/inercia/cluster-providers, github.com/inercia/gen-crd-api-reference-docs,num_dependents_deps.dev:0 github.com/inercia/libvirt-go,num_dependents_deps.dev:0 github.com/inercia/weave,num_dependents_deps.dev:0 @@ -614487,6 +625923,8 @@ github.com/ines/spacy-js,num_dependents_deps.dev:0 github.com/ines/wasabi,Google github.com/ineshbose/boyd_bot_terminal, github.com/ineshbose/font-installer, +github.com/ineshbose/project-card-action, +github.com/ineshbose/wiki-action, github.com/inessa13/repin, github.com/inet-framework/inet,criticality_score:0.552150 github.com/inet256/inet256,num_dependents_deps.dev:0 @@ -614579,6 +626017,7 @@ github.com/infakt/mongo_mailer,num_dependents_deps.dev:0 github.com/infakt/wpupdater, github.com/infamily/indb, github.com/infamily/infinity-driver, +github.com/infamous-riddles/branch-guardian, github.com/infamous/cli,num_dependents_deps.dev:0 github.com/infamous/element,num_dependents_deps.dev:0 github.com/infamous/infamous, @@ -614586,6 +626025,7 @@ github.com/infamous/motor,num_dependents_deps.dev:0 github.com/infamous/variable,num_dependents_deps.dev:0 github.com/infamousjoeg/authn-k8s-demo-app,num_dependents_deps.dev:0 github.com/infamousjoeg/conceal,num_dependents_deps.dev:0 +github.com/infamousjoeg/conjur-action, github.com/infamousjoeg/cybr-cli,num_dependents_deps.dev:0 github.com/infamousjoeg/gcp-ocr-demo,num_dependents_deps.dev:0 github.com/infamousjoeg/go-conceal,num_dependents_deps.dev:0 @@ -614727,9 +626167,18 @@ github.com/infinispan/protostream,num_dependents_deps.dev:3623 github.com/infinit-lab/gravity,num_dependents_deps.dev:0 github.com/infinit/elle,criticality_score:0.397430 github.com/infinitaslearning/marv-mssql-driver,num_dependents_deps.dev:0 +github.com/infinitaslearning/notion-azure-catalog, +github.com/infinitaslearning/notion-github-catalog, +github.com/infinitaslearning/notion-mapper, +github.com/infinitaslearning/notion-release-notes, +github.com/infinitaslearning/notion-translator, github.com/infinitasx/easi-py-common, github.com/infinitbyte/gopa,num_dependents_deps.dev:1 github.com/infinite-Joy/smart-open,num_dependents_deps.dev:0 +github.com/infinite-automations/gh-projects-field-ids, +github.com/infinite-automations/terraform-all-in-one, +github.com/infinite-automations/terramate-all-in-one, +github.com/infinite-automations/tflint-all-in-one, github.com/infinite-blue-1042/fibbonaci-programs_1,num_dependents_deps.dev:0 github.com/infinite-blue-1042/v-clock,num_dependents_deps.dev:0 github.com/infinite-cat/recap.dev-client,num_dependents_deps.dev:0 @@ -614828,6 +626277,7 @@ github.com/infinity-future/skcrf-tagger, github.com/infinity-future/torch-tagger, github.com/infinity-future/torch-text-classifier, github.com/infinity-oj/server-v2,num_dependents_deps.dev:0 +github.com/infinity-swap/github-app, github.com/infinity-ventures/ivplab, github.com/infinity0/ed25519-dalek-rustgo,num_dependents_deps.dev:0 github.com/infinity1013/Topsis, @@ -614928,6 +626378,8 @@ github.com/inflation/jpegxl-sys,num_dependents_deps.dev:0 github.com/inflation/x265-sys,num_dependents_deps.dev:0 github.com/inflearn/git-deploy,num_dependents_deps.dev:0 github.com/inflearn/git-release,num_dependents_deps.dev:0 +github.com/infleet/caprover-deployment-action, +github.com/infleet/minio-action, github.com/inflowml/structql,num_dependents_deps.dev:0 github.com/influencerngzk/leetcode,num_dependents_deps.dev:0 github.com/influentialpublishers/awesomize,num_dependents_deps.dev:0 @@ -615319,6 +626771,7 @@ github.com/informeai/gohelps,num_dependents_deps.dev:0 github.com/informeai/mailoo, github.com/informeai/markhub,num_dependents_deps.dev:0 github.com/informeai/termplay,num_dependents_deps.dev:0 +github.com/informeai/verify-if-rebased, github.com/informeai/vision, github.com/informedy/create-react-app,num_dependents_deps.dev:0 github.com/informixter/dragnet_data_parser,num_dependents_deps.dev:0 @@ -615379,6 +626832,8 @@ github.com/infothrill/python-dyndnsc, github.com/infothrill/python-dyndnsc-growl, github.com/infothrill/python-dyndnsc-macosnotify, github.com/infothrill/python-launchd, +github.com/infovista-opensource/setup-yq4, +github.com/infovista-opensource/vars-to-env-action, github.com/infoxchange/django_elastic_appsearch, github.com/infoxchange/docker-forklift, github.com/infoxicator/gatsby-plugin-use-theme-switcher,num_dependents_deps.dev:0 @@ -615414,6 +626869,7 @@ github.com/infracia/promise-callback,num_dependents_deps.dev:0 github.com/infracia/type-functions,num_dependents_deps.dev:0 github.com/infracloudco/jsonkvs, github.com/infracloudio/botkube,"criticality_score:0.472820,num_dependents_deps.dev:0" +github.com/infracloudio/ci-cd-standards-using-opa, github.com/infracloudio/lot,num_dependents_deps.dev:0 github.com/infracloudio/msbotbuilder-go,num_dependents_deps.dev:1 github.com/infracost/infracost,"criticality_score:0.482850,num_dependents_deps.dev:0" @@ -615603,6 +627059,7 @@ github.com/ingenious/api-responder, github.com/ingenious/async-methods,num_dependents_deps.dev:0 github.com/ingeniumsolutions/mdx-table,num_dependents_deps.dev:0 github.com/ingenmaffen/ngx-treeview,num_dependents_deps.dev:0 +github.com/ingeno/gtmetrix-action, github.com/ingensec/npm,num_dependents_deps.dev:0 github.com/ingensi/storeit,num_dependents_deps.dev:0 github.com/ingenuity-ph/react-native-api-client, @@ -615677,6 +627134,7 @@ github.com/ingrammicro/connect-javascript-sdk,num_dependents_deps.dev:0 github.com/ingrammicro/connect-python-sdk, github.com/ingrammicro/django-gocs, github.com/ingran/linkero, +github.com/ingress-it-solutions/gitea-code-review-action, github.com/ingress-it-solutions/palzin-npm-package, github.com/ingress/core,num_dependents_deps.dev:0 github.com/ingress/ingress,num_dependents_deps.dev:0 @@ -615897,6 +627355,7 @@ github.com/initstring/dhcp4,num_dependents_deps.dev:0 github.com/initsysctrl/testgo,num_dependents_deps.dev:0 github.com/initzero/snmpgo,num_dependents_deps.dev:0 github.com/iniudin/test-kompetensi,num_dependents_deps.dev:0 +github.com/iniva/action-repository-dispatch, github.com/iniva/hapi-nosql-mongoose,num_dependents_deps.dev:0 github.com/iniva/js-hooks,num_dependents_deps.dev:0 github.com/iniva/refs-compiler,num_dependents_deps.dev:0 @@ -615947,6 +627406,7 @@ github.com/inkOfPixel/shopify-token-store,num_dependents_deps.dev:0 github.com/inkOfPixel/slowrate, github.com/inkOfPixel/sms-length, github.com/inkandswitch/hypermerge,num_dependents_deps.dev:0 +github.com/inkarnaterpg/environment-variable-replacer, github.com/inkatze/eslint-config,num_dependents_deps.dev:0 github.com/inkblot-therapy/inkblot-ui, github.com/inkblot/aws-lambda-maven-plugin,num_dependents_deps.dev:0 @@ -616098,6 +627558,7 @@ github.com/inloop/tslint-config,num_dependents_deps.dev:0 github.com/inluxc/echo-logrus,num_dependents_deps.dev:0 github.com/inluxc/godog,num_dependents_deps.dev:0 github.com/inluxc/selenium,num_dependents_deps.dev:0 +github.com/inluxc/swagger-codegen-action, github.com/inlym/egg-aliyun-tablestore,num_dependents_deps.dev:0 github.com/inlym/egg-apigw-tracer,num_dependents_deps.dev:0 github.com/inlym/egg-kit,num_dependents_deps.dev:0 @@ -616222,6 +627683,8 @@ github.com/innerlee/ganbase, github.com/innerlee/ganzoo, github.com/innerr/quick-start-mod.ticat,num_dependents_deps.dev:0 github.com/innerr/quick-start.ticat,num_dependents_deps.dev:0 +github.com/innerspacetrainings/Prace.js, +github.com/innerspacetrainings/azure-npm-publish, github.com/innerspirit/contact-finder,num_dependents_deps.dev:0 github.com/innerspirit/topdomains-reddit,num_dependents_deps.dev:0 github.com/innerspirit/wp-checker,num_dependents_deps.dev:0 @@ -616232,11 +627695,14 @@ github.com/innexgo/frontend-common,num_dependents_deps.dev:0 github.com/innexgo/frontend-todo-app-api,num_dependents_deps.dev:0 github.com/innfactory/flutter-factory,num_dependents_deps.dev:0 github.com/inngage/inngage-react,num_dependents_deps.dev:0 +github.com/inngest/action-deploy-functions, +github.com/inngest/action-test-functions, github.com/inngest/inngest-python, github.com/inngest/inngestctl,num_dependents_deps.dev:0 github.com/inngest/inngestgo,num_dependents_deps.dev:0 github.com/inngest/javascript-sdk,num_dependents_deps.dev:0 github.com/inngest/serverless-actions,num_dependents_deps.dev:0 +github.com/inngest/setup-inngest, github.com/inniti/vue-horizontal-scroller, github.com/innix/github-avatar-generator, github.com/innix/logrus-cloudwatch,num_dependents_deps.dev:0 @@ -616260,6 +627726,7 @@ github.com/innobi/hyperarrow, github.com/innobower/bricksui,num_dependents_deps.dev:0 github.com/innobower/bricksui-cli, github.com/innobricks/bricks-cli,num_dependents_deps.dev:0 +github.com/innocarpe/actions-slack, github.com/innocces/taro-hooks,num_dependents_deps.dev:0 github.com/innocces/wx-promise-request,num_dependents_deps.dev:0 github.com/innocentio/hactor,num_dependents_deps.dev:0 @@ -616416,6 +627883,8 @@ github.com/innovationgarage/sakstig, github.com/innovationgarage/socket-tentacles, github.com/innovationnorway/node-terraform-config,num_dependents_deps.dev:0 github.com/innovationnorway/semantic-release-terraform-config,num_dependents_deps.dev:0 +github.com/innovationnorway/setup-sentinel, +github.com/innovationnorway/setup-vault, github.com/innovationnorway/terraform-provider-azure-preview,num_dependents_deps.dev:0 github.com/innovationnorway/terraform-provider-domeneshop,num_dependents_deps.dev:0 github.com/innovationnorway/terraform-provider-git,num_dependents_deps.dev:0 @@ -616677,6 +628146,8 @@ github.com/inpyjamas/renovate-config,num_dependents_deps.dev:0 github.com/inpyjamas/scripts, github.com/inq-dev/keypad-input,num_dependents_deps.dev:0 github.com/inqbation/django-balystic, +github.com/inquid/publish-gae-action, +github.com/inquid/yii-phpunit-action, github.com/inquiloper/moneyterr,num_dependents_deps.dev:0 github.com/inquirim/inquisitor, github.com/inquiring/project-lvl1-s388,num_dependents_deps.dev:0 @@ -616899,8 +628370,24 @@ github.com/insightindustry/sqlathanor, github.com/insightindustry/validator-collection, github.com/insightindustry/walkscore-api, github.com/insightlab/graphast,num_dependents_deps.dev:0 +github.com/insights-io/compressed-size-action, github.com/insightsan/EthOTP,num_dependents_deps.dev:0 +github.com/insightsengineering/bioc-check-action, +github.com/insightsengineering/coverage-action, +github.com/insightsengineering/covtracer-action, +github.com/insightsengineering/cran-status-monitor, +github.com/insightsengineering/disk-space-reclaimer, +github.com/insightsengineering/pip-action, +github.com/insightsengineering/presidio-action, github.com/insightsengineering/presidio-cli, +github.com/insightsengineering/r-image-creator, +github.com/insightsengineering/r-license-report, +github.com/insightsengineering/r-pkgdown-multiversion, +github.com/insightsengineering/r-spellcheck-action, +github.com/insightsengineering/r-verdepcheck-action, +github.com/insightsengineering/release-existence-action, +github.com/insightsengineering/staged-dependencies-action, +github.com/insightsengineering/thevalidatoR, github.com/insighty-studio/eslint-config,num_dependents_deps.dev:0 github.com/insigmo/rest_api_client, github.com/insigmo/simple_logger, @@ -617063,27 +628550,41 @@ github.com/insoutt/capacitor-wallpaper, github.com/inspark/inspark-design-system-web,num_dependents_deps.dev:0 github.com/inspec/inspec,"criticality_score:0.661310,num_dependents_deps.dev:0" github.com/inspec/train,num_dependents_deps.dev:1046 +github.com/inspect-js/array-buffer-byte-length, +github.com/inspect-js/available-regexp-flags, github.com/inspect-js/available-typed-arrays,num_dependents_deps.dev:41736 +github.com/inspect-js/buffer-equal, +github.com/inspect-js/deep-equal-json, +github.com/inspect-js/defined, github.com/inspect-js/functions-have-names,num_dependents_deps.dev:11506 github.com/inspect-js/get-symbol-description,num_dependents_deps.dev:3588 github.com/inspect-js/has-bigints,num_dependents_deps.dev:284 github.com/inspect-js/has-dynamic-import,num_dependents_deps.dev:346 +github.com/inspect-js/has-optional-chaining, +github.com/inspect-js/has-override-mistake, github.com/inspect-js/has-package-exports,num_dependents_deps.dev:6 github.com/inspect-js/has-package-imports,num_dependents_deps.dev:0 github.com/inspect-js/has-package-self-reference,num_dependents_deps.dev:0 github.com/inspect-js/has-private-fields,num_dependents_deps.dev:0 github.com/inspect-js/has-property-descriptors, +github.com/inspect-js/has-proto, github.com/inspect-js/has-strict-mode, github.com/inspect-js/has-symbols,num_dependents_deps.dev:343067 github.com/inspect-js/has-template-literals, github.com/inspect-js/has-tostringtag,num_dependents_deps.dev:244380 github.com/inspect-js/has-typed-arrays,num_dependents_deps.dev:0 +github.com/inspect-js/hasown, +github.com/inspect-js/is-accessor-descriptor, github.com/inspect-js/is-arguments,num_dependents_deps.dev:132804 +github.com/inspect-js/is-array-buffer, +github.com/inspect-js/is-async-function, github.com/inspect-js/is-bigint,num_dependents_deps.dev:185440 github.com/inspect-js/is-boolean-object, github.com/inspect-js/is-callable,num_dependents_deps.dev:185435 github.com/inspect-js/is-core-module,num_dependents_deps.dev:429642 +github.com/inspect-js/is-data-descriptor, github.com/inspect-js/is-date-object,num_dependents_deps.dev:220823 +github.com/inspect-js/is-descriptor, github.com/inspect-js/is-equal,num_dependents_deps.dev:752 github.com/inspect-js/is-finalizationregistry,num_dependents_deps.dev:852 github.com/inspect-js/is-generator-function,num_dependents_deps.dev:41374 @@ -617092,6 +628593,7 @@ github.com/inspect-js/is-negative-zero, github.com/inspect-js/is-number-object,num_dependents_deps.dev:185447 github.com/inspect-js/is-object, github.com/inspect-js/is-regex,num_dependents_deps.dev:225432 +github.com/inspect-js/is-registered-symbol, github.com/inspect-js/is-set,num_dependents_deps.dev:22456 github.com/inspect-js/is-shared-array-buffer,num_dependents_deps.dev:0 github.com/inspect-js/is-symbol,num_dependents_deps.dev:190372 @@ -617099,9 +628601,13 @@ github.com/inspect-js/is-typed-array,num_dependents_deps.dev:41631 github.com/inspect-js/is-weakmap,num_dependents_deps.dev:15352 github.com/inspect-js/is-weakref,num_dependents_deps.dev:852 github.com/inspect-js/is-weakset,num_dependents_deps.dev:15352 +github.com/inspect-js/is-well-known-symbol, github.com/inspect-js/node-deep-equal,"criticality_score:0.506100,num_dependents_deps.dev:13303" +github.com/inspect-js/node-exports-info, github.com/inspect-js/node-supports-preserve-symlinks-flag, github.com/inspect-js/object-inspect,num_dependents_deps.dev:252680 +github.com/inspect-js/typed-array-byte-length, +github.com/inspect-js/typed-array-byte-offset, github.com/inspect-js/typed-array-length,num_dependents_deps.dev:6 github.com/inspect-js/which-boxed-primitive,num_dependents_deps.dev:185218 github.com/inspect-js/which-builtin-type, @@ -617268,6 +628774,28 @@ github.com/instalator/ioBroker.sanext,num_dependents_deps.dev:0 github.com/instalator/ioBroker.starline,num_dependents_deps.dev:0 github.com/instalator/ioBroker.synology,num_dependents_deps.dev:0 github.com/instalator/ioBroker.vis-players,num_dependents_deps.dev:0 +github.com/install-pinned/autoflake, +github.com/install-pinned/black, +github.com/install-pinned/build, +github.com/install-pinned/isort, +github.com/install-pinned/maturin, +github.com/install-pinned/maturin-with-zig, +github.com/install-pinned/mypy, +github.com/install-pinned/pdm, +github.com/install-pinned/pdoc, +github.com/install-pinned/pip-tools, +github.com/install-pinned/poetry, +github.com/install-pinned/pytest, +github.com/install-pinned/pyupgrade, +github.com/install-pinned/reorder_python_imports, +github.com/install-pinned/ruff, +github.com/install-pinned/setuptools, +github.com/install-pinned/tox, +github.com/install-pinned/twine, +github.com/install-pinned/usort, +github.com/install-pinned/wheel, +github.com/install-pinned/yapf, +github.com/install-pinned/yesqa, github.com/installer/instl,num_dependents_deps.dev:0 github.com/installerUzb/json-from-xml,num_dependents_deps.dev:0 github.com/installerUzb/mongo-swift,num_dependents_deps.dev:0 @@ -617282,6 +628810,7 @@ github.com/instamatic-dev/instamatic, github.com/instana/android-agent,num_dependents_deps.dev:0 github.com/instana/create-artifactory-access-config,num_dependents_deps.dev:0 github.com/instana/envcheck,num_dependents_deps.dev:0 +github.com/instana/github-action-update-agent-configurations, github.com/instana/go-sensor,num_dependents_deps.dev:201 github.com/instana/golang-sensor,num_dependents_deps.dev:2 github.com/instana/instana-java-opentracing,num_dependents_deps.dev:0 @@ -617316,6 +628845,7 @@ github.com/instant2333/Strategy, github.com/instantOS/instantOS,criticality_score:0.422880 github.com/instantia-data/react-native-bluetooth-serial-hex,num_dependents_deps.dev:0 github.com/instantish/martian,num_dependents_deps.dev:0 +github.com/instantish/milestone-closer, github.com/instantlinux/apicrud, github.com/instantlinux/apicrud-ui,num_dependents_deps.dev:0 github.com/instantlinux/secondshot, @@ -617345,6 +628875,7 @@ github.com/instela/instela-js-sdk,num_dependents_deps.dev:0 github.com/insthync/medium-to-markdown-enhanced,num_dependents_deps.dev:0 github.com/insthync/simple-profanity-filter-with-whitelist,num_dependents_deps.dev:0 github.com/insticator/freegeoip,num_dependents_deps.dev:0 +github.com/instinctstudios/testim-cli-gh-action, github.com/institis/async-functional,num_dependents_deps.dev:0 github.com/instituciones-abiertas/ia2-annotation-tool,num_dependents_deps.dev:0 github.com/institut-de-genomique/biscot, @@ -617404,6 +628935,7 @@ github.com/instructure/switchman-inst-jobs,num_dependents_deps.dev:0 github.com/instructure/truss-cli,num_dependents_deps.dev:0 github.com/instructurecustomdevqa/bobross,num_dependents_deps.dev:0 github.com/instrumenta/conftest,num_dependents_deps.dev:0 +github.com/instrumenta/conftest-action, github.com/instrumenta/kubeval,"criticality_score:0.412290,num_dependents_deps.dev:2" github.com/instrumental/instrumental_agent-java,num_dependents_deps.dev:0 github.com/instrumental/instrumental_agent-node,num_dependents_deps.dev:0 @@ -617432,7 +628964,9 @@ github.com/insurance-technologies/ng-zone-operator,num_dependents_deps.dev:0 github.com/insurance-technologies/ngrx-data,num_dependents_deps.dev:0 github.com/insurancezebra/sass-affected,num_dependents_deps.dev:0 github.com/insurgent-lab/conventional-changelog-insurgent,num_dependents_deps.dev:0 +github.com/insurgent-lab/is-in-pr-action, github.com/insurgent-lab/ts-entity,num_dependents_deps.dev:0 +github.com/insurify/github-asana-action, github.com/insutance/hey-insutance, github.com/insutance/velog-hits, github.com/inswave/w5grid-rest-node,num_dependents_deps.dev:0 @@ -617453,6 +628987,7 @@ github.com/int-brain-lab/ONE, github.com/int-brain-lab/iblscripts, github.com/int-brain-lab/iblviewer, github.com/int-brain-lab/mtscomp, +github.com/int-her/action-kubectl-for-eks, github.com/int020h/pimatic-bmp180,num_dependents_deps.dev:0 github.com/int02h/autoprefs,num_dependents_deps.dev:0 github.com/int02h/ocubator,num_dependents_deps.dev:0 @@ -617468,23 +629003,29 @@ github.com/int0h/micro-jade,num_dependents_deps.dev:0 github.com/int0h/npm-hddSpace,num_dependents_deps.dev:0 github.com/int0matar/case-book,num_dependents_deps.dev:0 github.com/int128/argocd-commenter,num_dependents_deps.dev:0 +github.com/int128/datadog-actions-metrics, github.com/int128/deploy-notification-controller,num_dependents_deps.dev:0 +github.com/int128/docker-manifest-create-action, github.com/int128/ghcp,num_dependents_deps.dev:0 github.com/int128/gradle-ssh-plugin,"criticality_score:0.339650,num_dependents_deps.dev:0" github.com/int128/gradleupdate,num_dependents_deps.dev:0 github.com/int128/groovy-ssh,num_dependents_deps.dev:0 github.com/int128/instagit,num_dependents_deps.dev:0 github.com/int128/jira-to-slack,num_dependents_deps.dev:0 +github.com/int128/kaniko-action, github.com/int128/kauthproxy,num_dependents_deps.dev:0 github.com/int128/kubectl-external-forward,num_dependents_deps.dev:0 github.com/int128/kubectl-socat,num_dependents_deps.dev:0 github.com/int128/kubelogin,"criticality_score:0.415450,num_dependents_deps.dev:0" github.com/int128/kustomtree,num_dependents_deps.dev:0 +github.com/int128/list-associated-pull-requests-action, github.com/int128/oauth2-github-app,num_dependents_deps.dev:0 github.com/int128/oauth2cli,num_dependents_deps.dev:2 github.com/int128/pojofill,num_dependents_deps.dev:0 github.com/int128/slack-docker,num_dependents_deps.dev:0 github.com/int128/spring-session-appengine,num_dependents_deps.dev:0 +github.com/int128/stale-branch-action, +github.com/int128/update-generated-files-action, github.com/int128/yamlpatch,num_dependents_deps.dev:0 github.com/int128fly/ionic-background-geolocation,num_dependents_deps.dev:0 github.com/int3/ice-cream,num_dependents_deps.dev:0 @@ -617600,6 +629141,7 @@ github.com/integr8ly/workload-web-app,num_dependents_deps.dev:0 github.com/integrai/json-megatron,num_dependents_deps.dev:0 github.com/integral-ssmith/pandas_zookeeper, github.com/integral0523/mongodbeginner,num_dependents_deps.dev:0 +github.com/integraldx/UnityLinter, github.com/integralist/customcli,num_dependents_deps.dev:0 github.com/integralist/go-flags,num_dependents_deps.dev:0 github.com/integrallis/binnacle-js,num_dependents_deps.dev:0 @@ -617661,6 +629203,7 @@ github.com/integromat/node-soap,num_dependents_deps.dev:0 github.com/integromat/simdom,num_dependents_deps.dev:0 github.com/integromat/tesseract.js,num_dependents_deps.dev:0 github.com/integromat/wc-api-node,num_dependents_deps.dev:0 +github.com/integrtr/ui5-deploy, github.com/inteist/java-hashcode,num_dependents_deps.dev:0 github.com/intek-training-jsc/flickr-mirroring-Friendlyngoc, github.com/intek-training-jsc/flickr-mirroring-KV16, @@ -618462,6 +630005,7 @@ github.com/intelligentplant/data-core-types,num_dependents_deps.dev:0 github.com/intelligentplant/py-app-store-api, github.com/intelligentpos/tokengen,num_dependents_deps.dev:0 github.com/intelligentvisibility/netmagus_python, +github.com/intelligo-mn/intelligo-actions, github.com/intelligo-systems/intelligo, github.com/intelligo-systems/intelligo-cli,num_dependents_deps.dev:0 github.com/intelligo-systems/intelligo-generator, @@ -618520,6 +630064,7 @@ github.com/intellocator/intellocator-cli,num_dependents_deps.dev:0 github.com/intellocator/intellocator-devkit,num_dependents_deps.dev:0 github.com/intelowlproject/IntelOwl,criticality_score:0.482070 github.com/intelowlproject/pyintelowl, +github.com/intelowlproject/twitter_post, github.com/intelrug/bunnycdn,num_dependents_deps.dev:0 github.com/intelrug/nestjs-bunnycdn,num_dependents_deps.dev:0 github.com/intelrug/nestjs-graphql-dataloader,num_dependents_deps.dev:0 @@ -618536,6 +630081,8 @@ github.com/intelsnap/antd-final-form,num_dependents_deps.dev:0 github.com/intelxed/intelxedhub.io, github.com/intelxed/mbuild,Google github.com/intelxed/xed,criticality_score:0.551430 +github.com/intelygenz/action-product-version-tags, +github.com/intelygenz/monorepo-tagger-action, github.com/intelyt/easyssh, github.com/intendednull/yew-state,num_dependents_deps.dev:0 github.com/intendia-oss/autorest,num_dependents_deps.dev:0 @@ -619052,6 +630599,7 @@ github.com/interpretor/zyre.js,num_dependents_deps.dev:2 github.com/interpunkt/generator-craftskeleton,num_dependents_deps.dev:0 github.com/interputed/grapi, github.com/interra/data-catalog-components,num_dependents_deps.dev:0 +github.com/interrobangc/check-pull-request-title, github.com/interrobrian/stylelint-teamcity-reporter, github.com/interrogator/buzz, github.com/interrogator/corpkit, @@ -619101,6 +630649,9 @@ github.com/interscript/opal-webassembly,num_dependents_deps.dev:0 github.com/intersec/html-dedup-loader,num_dependents_deps.dev:0 github.com/intersec/selectic,num_dependents_deps.dev:0 github.com/intersec/vtyx,num_dependents_deps.dev:0 +github.com/intersecato/bitly-shortener, +github.com/intersecato/dropbox-upload, +github.com/intersecato/google-drive-uploader, github.com/intersectionalipy/intersectionalipy, github.com/intersective/generator-sls-lambda,num_dependents_deps.dev:0 github.com/intersective/jwt-parser,num_dependents_deps.dev:0 @@ -619295,6 +630846,7 @@ github.com/into-ai/deeplearning2020, github.com/into-ai/kerasltiprovider, github.com/into-ai/kerasltisubmission, github.com/into-ai/vue-backpropagation-exercise,num_dependents_deps.dev:0 +github.com/into-docker/build-action, github.com/into-piece/Print.js,num_dependents_deps.dev:0 github.com/into233/vue-cli-plugin-proxy, github.com/intocare/katz-category,num_dependents_deps.dev:0 @@ -619463,6 +631015,7 @@ github.com/intuit/autometer,num_dependents_deps.dev:0 github.com/intuit/baklava, github.com/intuit/benten,num_dependents_deps.dev:6 github.com/intuit/bias-detector, +github.com/intuit/cfn-deploy, github.com/intuit/cloudraider,num_dependents_deps.dev:0 github.com/intuit/cyphfell,num_dependents_deps.dev:0 github.com/intuit/design-systems-cli,"criticality_score:0.405850,num_dependents_deps.dev:105740" @@ -619882,6 +631435,7 @@ github.com/inverse-inc/scep,num_dependents_deps.dev:0 github.com/inverse-inc/sogo,criticality_score:0.578050 github.com/inverse-inc/wireguard-go,num_dependents_deps.dev:0 github.com/inverse/cert-host-scraper, +github.com/inverse/edge-addon, github.com/inverse/python-iolite-client, github.com/inverse/python-libratone, github.com/inversepath/crucible,num_dependents_deps.dev:0 @@ -619931,6 +631485,7 @@ github.com/invertase/angular-toasty,num_dependents_deps.dev:0 github.com/invertase/babel-preset-react-native-syntax,num_dependents_deps.dev:0 github.com/invertase/denque,num_dependents_deps.dev:39596 github.com/invertase/firebase-firestore-fields,num_dependents_deps.dev:0 +github.com/invertase/github-action-dart-analyzer, github.com/invertase/google-java-format,num_dependents_deps.dev:0 github.com/invertase/jsredis,num_dependents_deps.dev:0 github.com/invertase/puppeteer-pool,num_dependents_deps.dev:0 @@ -619960,6 +631515,8 @@ github.com/investtools/redux-normalizr-middleware,num_dependents_deps.dev:0 github.com/investtools/websign-client,num_dependents_deps.dev:0 github.com/investycorp/oss-license-check,num_dependents_deps.dev:0 github.com/investycorp/prisma-schema-import,num_dependents_deps.dev:0 +github.com/invi5H/dependabot-automerge, +github.com/invi5H/ssh-action, github.com/invibot/fastjob,num_dependents_deps.dev:0 github.com/invibot/redux-saga-enhancer,num_dependents_deps.dev:0 github.com/invibot/redux-shortcut,num_dependents_deps.dev:0 @@ -620050,6 +631607,7 @@ github.com/invisionapp/go-swagger,num_dependents_deps.dev:0 github.com/invisionapp/opentelemetry-lightstep-exporter-go,num_dependents_deps.dev:0 github.com/invisionapp/protoc-gen-tts,num_dependents_deps.dev:0 github.com/invisionapp/saml,num_dependents_deps.dev:0 +github.com/invisirisk/pse-action, github.com/invisit/nest-repl,num_dependents_deps.dev:0 github.com/invit/ghupload,num_dependents_deps.dev:0 github.com/invit/vcreport,num_dependents_deps.dev:0 @@ -620652,6 +632210,8 @@ github.com/iogf/sukhoi, github.com/iogf/untwisted, github.com/iogf/websnake, github.com/iogf/whocall, +github.com/ioggstream/api-oas-checker-action, +github.com/ioggstream/bandit-report-artifacts, github.com/ioggstream/caspython-centera, github.com/ioggstream/openapi-resolver, github.com/iogiul/FERMI, @@ -620678,6 +632238,7 @@ github.com/ioing/gulp-babel-script-tag,num_dependents_deps.dev:0 github.com/ioing/gulp-create-ioing-demo,num_dependents_deps.dev:0 github.com/ioing/gulp-imports-to-commonjs,num_dependents_deps.dev:0 github.com/iojohnso/node-octopus-deploy,num_dependents_deps.dev:0 +github.com/iojuedioe9rd/build-unity-1.0.4, github.com/iojw/socialscan, github.com/ioki/grunt-sass-lint,num_dependents_deps.dev:0 github.com/ioki/restler-bluebird, @@ -620870,6 +632431,7 @@ github.com/ionic-org/cordova-plugin-echo-sx,num_dependents_deps.dev:0 github.com/ionic-rs/ionic,num_dependents_deps.dev:0 github.com/ionic-selectable/ionic-selectable,num_dependents_deps.dev:0 github.com/ionic-team/angular-toolkit,num_dependents_deps.dev:2 +github.com/ionic-team/appflow-build, github.com/ionic-team/avocado,num_dependents_deps.dev:0 github.com/ionic-team/capacitor,"criticality_score:0.657170,num_dependents_deps.dev:78" github.com/ionic-team/capacitor-angular-toolkit, @@ -620975,6 +632537,8 @@ github.com/ionos-cloud/sdk-go,num_dependents_deps.dev:0 github.com/ionos-cloud/sdk-python-dbaas-postgres, github.com/ionos-cloud/terraform-provider-ionoscloud,num_dependents_deps.dev:0 github.com/ionos-cloud/terraform-provider-profitbricks,num_dependents_deps.dev:0 +github.com/ionos-deploy-now/deploy-to-ionos-action, +github.com/ionos-deploy-now/retrieve-project-info-action, github.com/ionos-enterprise/ionos-enterprise-cli,num_dependents_deps.dev:0 github.com/ionos-enterprise/ionos-enterprise-sdk-go,num_dependents_deps.dev:0 github.com/ionos-enterprise/ionos-enterprise-sdk-nodejs,num_dependents_deps.dev:0 @@ -621022,6 +632586,7 @@ github.com/ionutmilica/react-fb-auth,num_dependents_deps.dev:0 github.com/ionutmilica/redux-modal-container,num_dependents_deps.dev:0 github.com/ionutpetre/angular-component,num_dependents_deps.dev:0 github.com/ionutpetre/angular-lovefield,num_dependents_deps.dev:0 +github.com/ionutradu-tm/check_pull_request, github.com/ionutvmi/uglifyjs-folder,num_dependents_deps.dev:4 github.com/ionuv/s-bridge,num_dependents_deps.dev:0 github.com/ionware/apache-vhost,num_dependents_deps.dev:0 @@ -621177,6 +632742,7 @@ github.com/iosamuel/npm-iosamuel,num_dependents_deps.dev:0 github.com/iosdevzone/IDZSwiftCommonCrypto,criticality_score:0.323130 github.com/ioshal/godepi,num_dependents_deps.dev:0 github.com/ioshchepkov/pygeoid, +github.com/iosifache/semgrep-rules-manager, github.com/iosiflivadaru/account-template,num_dependents_deps.dev:0 github.com/iosio/capsule,num_dependents_deps.dev:0 github.com/iosio/client,num_dependents_deps.dev:0 @@ -621300,6 +632866,7 @@ github.com/iota-pico/pow-wasm, github.com/iota-pico/pow-webgl, github.com/iota-pico/storage,num_dependents_deps.dev:0 github.com/iota9star/qiniu-upload-plugin-pro-npmjs,num_dependents_deps.dev:0 +github.com/iota9star/sign-android-release, github.com/iotacb/Simple-Page-Slide,num_dependents_deps.dev:0 github.com/iotacb/Simple-Scroll,num_dependents_deps.dev:0 github.com/iotacb/Simple-Scroll-Parallax,num_dependents_deps.dev:0 @@ -621510,6 +633077,7 @@ github.com/iotube-analytics/go-iotube-analytics,num_dependents_deps.dev:0 github.com/iotufersa/more4iot-js-sdk,num_dependents_deps.dev:0 github.com/iotum/cordova-ios-session-description-handler, github.com/iotway/iotway, +github.com/iou90/aliCdn, github.com/iou90/react-immutable-component,num_dependents_deps.dev:0 github.com/iou90/react-native-animation-switch,num_dependents_deps.dev:0 github.com/iou90/react-native-autoheight-webview,"criticality_score:0.422540,num_dependents_deps.dev:2" @@ -621596,6 +633164,7 @@ github.com/ipa-cyberlab/kmgm,num_dependents_deps.dev:0 github.com/ipa-cyberlab/kmgm-issuer,num_dependents_deps.dev:0 github.com/ipa-cyberlab/latest,num_dependents_deps.dev:0 github.com/ipa-jfh/urdf-animation,num_dependents_deps.dev:0 +github.com/ipacheco-uy/actions-chat, github.com/ipaddress-gem/ipaddress,criticality_score:0.298620 github.com/ipader/SwiftGuide,criticality_score:0.311330 github.com/ipadla/flake8-class-constants, @@ -621699,6 +633268,7 @@ github.com/ipconfiger/wsmocky, github.com/ipcrm/sdm-pack-ansible,num_dependents_deps.dev:0 github.com/ipcrm/sdm-pack-ecs,num_dependents_deps.dev:0 github.com/ipcrm/sdm-pack-serverless,num_dependents_deps.dev:0 +github.com/ipcrmdemo/hello-world-javascript-action, github.com/ipcrmdemo/sdm-pack-jira,num_dependents_deps.dev:0 github.com/ipdata/java,num_dependents_deps.dev:0 github.com/ipdata/python, @@ -621781,6 +633351,7 @@ github.com/ipfs-shipyard/ipfs-css,num_dependents_deps.dev:0 github.com/ipfs-shipyard/ipfs-deploy,"criticality_score:0.341920,num_dependents_deps.dev:0" github.com/ipfs-shipyard/ipfs-desktop,criticality_score:0.530620 github.com/ipfs-shipyard/ipfs-geoip, +github.com/ipfs-shipyard/ipfs-github-action, github.com/ipfs-shipyard/ipfs-level, github.com/ipfs-shipyard/ipfs-locations, github.com/ipfs-shipyard/ipfs-npm-registry-mirror,num_dependents_deps.dev:0 @@ -622148,6 +633719,7 @@ github.com/ippei-tanaka/weblogjs,num_dependents_deps.dev:0 github.com/ippei0605/cfenv-one-liner,num_dependents_deps.dev:0 github.com/ippei0605/watson-nlc-qa,num_dependents_deps.dev:0 github.com/ippei0605/watson-nlc-stub,num_dependents_deps.dev:0 +github.com/ippie52/markdown_code_embed_action, github.com/ippm/ippm,num_dependents_deps.dev:0 github.com/ippm/ippm-node,num_dependents_deps.dev:0 github.com/ippontech/metrics-spark-receiver,num_dependents_deps.dev:0 @@ -622260,6 +633832,7 @@ github.com/ipython/ipykernel,criticality_score:0.480480 github.com/ipython/ipyparallel,criticality_score:0.457470 github.com/ipython/ipython,criticality_score:0.742290 github.com/ipython/ipython-in-depth,criticality_score:0.333910 +github.com/ipython/ipython_genutils, github.com/ipython/ipywidgets,num_dependents_deps.dev:66 github.com/ipython/matplotlib-inline, github.com/ipython/rlipython, @@ -622430,10 +634003,16 @@ github.com/iranreyes/debug-popup-log,num_dependents_deps.dev:0 github.com/iranreyes/generator-ecma-six,num_dependents_deps.dev:0 github.com/iranreyes/gsap-lite-promise,num_dependents_deps.dev:0 github.com/iranreyes/gsap-promisify,num_dependents_deps.dev:0 +github.com/iranzo/ansible-lint-action, +github.com/iranzo/gh-action-runpublish, +github.com/iranzo/gh-pages-jekyll-action, +github.com/iranzo/gh-pages-pelican-action, github.com/iranzo/removesquashed, github.com/irap-omp/hyperspectral, github.com/irappa-pattar/odim,num_dependents_deps.dev:0 github.com/irapuan/proglog,num_dependents_deps.dev:0 +github.com/irasnyd/puppet-lint-action, +github.com/irasnyd/puppet-parser-validate-action, github.com/irastypain/gendiff, github.com/irastypain/project-lvl1-s124,num_dependents_deps.dev:0 github.com/irastypain/project-lvl2-s125,num_dependents_deps.dev:0 @@ -622454,6 +634033,8 @@ github.com/irbab00n/react-css-in-js-animator,num_dependents_deps.dev:0 github.com/irbis-labs/kreida-rs,num_dependents_deps.dev:0 github.com/irbis-labs/rsmorphy,num_dependents_deps.dev:0 github.com/irbiznl/oxide,num_dependents_deps.dev:0 +github.com/irby/get-labels-on-push, +github.com/irby/setup-node-nvm, github.com/irbyk/command-parser,num_dependents_deps.dev:0 github.com/ircam-ismm/resume-audio-context,num_dependents_deps.dev:0 github.com/ircam-ismm/simple-components,num_dependents_deps.dev:0 @@ -622478,6 +634059,8 @@ github.com/ircop/wgadmin,num_dependents_deps.dev:0 github.com/ircv3/ircv3-specifications,criticality_score:0.508960 github.com/irdeten/deployer,num_dependents_deps.dev:0 github.com/irdkwmnsb/VKPy, +github.com/irdvl/gradual-black-formatter, +github.com/ire4ever1190/nim-docs-action, github.com/ireade/meme-maker,num_dependents_deps.dev:0 github.com/ireader/media-server,criticality_score:0.327550 github.com/ireaderfe/fis3-optimizer-minifier,num_dependents_deps.dev:0 @@ -622553,6 +634136,7 @@ github.com/irewapaul/pk-hello-world,num_dependents_deps.dev:0 github.com/irexiz/process_uptime,num_dependents_deps.dev:0 github.com/irezaaa/dyno-ip-changer,num_dependents_deps.dev:0 github.com/irezaul/newmac,num_dependents_deps.dev:0 +github.com/ireznik/postgis-action, github.com/irfan7junior/custom-hooks,num_dependents_deps.dev:0 github.com/irfan7junior/fetch-type,num_dependents_deps.dev:0 github.com/irfanalam/test-khaadi-v1.0,num_dependents_deps.dev:0 @@ -622579,11 +634163,14 @@ github.com/irfius/piranha,num_dependents_deps.dev:0 github.com/irfn/bundle_rc,num_dependents_deps.dev:0 github.com/irfn/cache-memoize,num_dependents_deps.dev:0 github.com/irgalieri/compare-request,num_dependents_deps.dev:0 +github.com/irgaly/setup-mint, +github.com/irgaly/xcode-cache, github.com/irgangla/icalevents, github.com/irgangla/pntools, github.com/irgangla/recorder,num_dependents_deps.dev:0 github.com/irgb/ormgen, github.com/irgeek/StrEnum, +github.com/irgolic/AutoPR, github.com/irgroup/repro_eval, github.com/irhamdz/learning,num_dependents_deps.dev:0 github.com/irhamputra/react-use-pkg,num_dependents_deps.dev:0 @@ -622906,6 +634493,8 @@ github.com/irongaze/iron-import,num_dependents_deps.dev:0 github.com/irongaze/iron-settings,num_dependents_deps.dev:0 github.com/irongaze/iron-web,num_dependents_deps.dev:0 github.com/irongaze/simms,num_dependents_deps.dev:0 +github.com/irongut/CodeCoverageSummary, +github.com/irongut/EditRelease, github.com/ironhack-edu/ironlauncher, github.com/ironhack/generator,num_dependents_deps.dev:0 github.com/ironhack/md2oedx,num_dependents_deps.dev:0 @@ -623225,6 +634814,7 @@ github.com/is908/go_leetcode,num_dependents_deps.dev:0 github.com/isAdrisal/lazyvids.js,num_dependents_deps.dev:0 github.com/isAdrisal/revelio, github.com/isConic/api_of_things_python, +github.com/isFakeAccount/devvit-upload-github-action, github.com/isFakeAccount/psnawp, github.com/isJDongYa/jloading,num_dependents_deps.dev:0 github.com/isJDongYa/jmoremsg,num_dependents_deps.dev:0 @@ -623324,6 +634914,7 @@ github.com/isaacev/MiniPy,num_dependents_deps.dev:0 github.com/isaacev/codemirror-no-newlines,num_dependents_deps.dev:0 github.com/isaacgr/jaysonic,num_dependents_deps.dev:0 github.com/isaacgr/nmos-node-generator,num_dependents_deps.dev:0 +github.com/isaacguerreir/test, github.com/isaachall/paypal-permissions,num_dependents_deps.dev:0 github.com/isaacherrera47/yifysubs-api,num_dependents_deps.dev:0 github.com/isaachess/gender-guess,num_dependents_deps.dev:0 @@ -623369,6 +634960,8 @@ github.com/isaacribeiro/inline-json-validator,num_dependents_deps.dev:0 github.com/isaacrivas/magro, github.com/isaacrlee/event-parser,num_dependents_deps.dev:0 github.com/isaacrlevin/presencelight,criticality_score:0.464030 +github.com/isaacrlevin/windows-store-action, +github.com/isaacrlevin/winget-publish-action, github.com/isaacrob/distdrone, github.com/isaacrob/distdrone3, github.com/isaacrobinson2000/CursorCreate, @@ -623540,6 +635133,7 @@ github.com/isaacto/makefilemenu, github.com/isaacto/smemo, github.com/isaacto/sufarray, github.com/isaactrevino/golang-app,num_dependents_deps.dev:0 +github.com/isaacvando/elmgithubpages, github.com/isaacvitor/cnabtools,num_dependents_deps.dev:0 github.com/isaacvitor/jasper-connector,num_dependents_deps.dev:0 github.com/isaacvitor/node-red-contrib-socketio-client,num_dependents_deps.dev:0 @@ -623578,6 +635172,7 @@ github.com/isabo/phone-number-input-field,num_dependents_deps.dev:0 github.com/isabroch/rainbow-console,num_dependents_deps.dev:0 github.com/isac-cell/crsplus, github.com/isac322/aiofile_linux, +github.com/isac322/builtkit-state, github.com/isac322/flake8-force-keyword-arguments, github.com/isac322/linux_aio, github.com/isac322/linux_aio_bind, @@ -623586,6 +635181,7 @@ github.com/isac322/python-libcgroup, github.com/isac322/python-libcgroup_bind, github.com/isac322/ratelimit-stubs, github.com/isacarnekvist/ucimlr, +github.com/isacarvid/PR-review-notification, github.com/isaccanedo/catbyte,num_dependents_deps.dev:0 github.com/isaccanedo/cryptowallet_generator_webservice_go,num_dependents_deps.dev:0 github.com/isaccanedo/httprequest,num_dependents_deps.dev:0 @@ -623615,6 +635211,7 @@ github.com/isagalaev/highlight.js,num_dependents_deps.dev:4006 github.com/isagalaev/ijson,Google github.com/isagalbero/Card-card-validator,num_dependents_deps.dev:0 github.com/isagalbero/markdown,num_dependents_deps.dev:0 +github.com/isagila/latex-lint-action, github.com/isagul/ng-pagination-component,num_dependents_deps.dev:0 github.com/isagul/ng2-select-list,num_dependents_deps.dev:0 github.com/isagul/react-scroll-button,num_dependents_deps.dev:0 @@ -623796,7 +635393,10 @@ github.com/isayme/xiaomi-push,num_dependents_deps.dev:0 github.com/isayme/youdao-note,num_dependents_deps.dev:0 github.com/isazi/tuning_metrics, github.com/isbadawi/minerva, +github.com/isbang/compose-action, github.com/isbang/lazy,num_dependents_deps.dev:0 +github.com/isbang/setup-awscli, +github.com/isbang/sqs-action, github.com/isbe-house/dyscord, github.com/isbellj008/cordova-text-to-speach,num_dependents_deps.dev:0 github.com/isbjorntrading/aiocells, @@ -623874,6 +635474,7 @@ github.com/isdampe/upmon,num_dependents_deps.dev:0 github.com/isdanni/19cs004,num_dependents_deps.dev:0 github.com/isdenmois/5to6-codemod, github.com/isdenmois/amd-to-es6,num_dependents_deps.dev:0 +github.com/isdevx/github-action-benchmark, github.com/isdzulqor/kraicklist,num_dependents_deps.dev:0 github.com/ise-smile/corral,num_dependents_deps.dev:0 github.com/ise-smile/falco,num_dependents_deps.dev:0 @@ -623920,6 +635521,7 @@ github.com/iservices/flux-base,num_dependents_deps.dev:0 github.com/iservices/generator-future-state,num_dependents_deps.dev:0 github.com/iservices/reng,num_dependents_deps.dev:0 github.com/isery/loadfiles,num_dependents_deps.dev:0 +github.com/isethi/issue-timer, github.com/iseulde/dom-react,num_dependents_deps.dev:0 github.com/isezen/air-db, github.com/isfanazha/go-design-patterns,num_dependents_deps.dev:0 @@ -623936,6 +635538,7 @@ github.com/isfe-team/ai-plus-sdk,num_dependents_deps.dev:0 github.com/isfe-team/dev-server-proxy-cookie-setter,num_dependents_deps.dev:0 github.com/isfe-team/mse-player,num_dependents_deps.dev:0 github.com/isfe-team/vue-components,num_dependents_deps.dev:0 +github.com/isfk/dingtalk, github.com/isg-software/advscrollevent,num_dependents_deps.dev:0 github.com/isg-software/folding-arrow,num_dependents_deps.dev:0 github.com/isg-software/progresspie,num_dependents_deps.dev:0 @@ -624145,10 +635748,14 @@ github.com/ishwarchandratiwari/countrydata,num_dependents_deps.dev:0 github.com/ishwarchandratiwari/searching-customer-within-a-range,num_dependents_deps.dev:0 github.com/ishwarchandratiwari/simple-demo-random-number-generator,num_dependents_deps.dev:0 github.com/ishwarrimal/simple-sticky-react,num_dependents_deps.dev:0 +github.com/ishween/whatsapp-push-notify-action, github.com/ishwinder/nodebb-plugin-seo,num_dependents_deps.dev:0 github.com/ishworgurung/fabio,num_dependents_deps.dev:0 github.com/ishworgurung/linux-ticker, github.com/ishworgurung/nomad,num_dependents_deps.dev:0 +github.com/ishworkh/container-image-artifact-download, +github.com/ishworkh/docker-image-artifact-download, +github.com/ishworkh/docker-image-artifact-upload, github.com/ishxiao/aps, github.com/isi-gach/babel-plugin-inline-react-svg,num_dependents_deps.dev:0 github.com/isi-ies-group/cpvlib, @@ -624258,6 +635865,7 @@ github.com/iskolbin/tspriorityqueue, github.com/iskolbin/tsratio, github.com/iskolbin/tsshadowcasting2d, github.com/iskolbin/tstween, +github.com/iskoldt-X/conda-publish-action, github.com/iskorotkov/rusprofile-grpc,num_dependents_deps.dev:0 github.com/iskracat/Hitotsubashi-University, github.com/iskrenyp/spock-goodies,num_dependents_deps.dev:0 @@ -624269,6 +635877,7 @@ github.com/islam-shaheen/mylib,num_dependents_deps.dev:0 github.com/islam2018/rn-cli, github.com/islam3zzat/react-images,num_dependents_deps.dev:0 github.com/island-brother/crawler,num_dependents_deps.dev:0 +github.com/island-is/cache, github.com/island-is/islandis-login,num_dependents_deps.dev:0 github.com/island205/browserify-loader,num_dependents_deps.dev:0 github.com/island205/f5,num_dependents_deps.dev:0 @@ -624303,6 +635912,7 @@ github.com/islikai/create-react-template-cli,num_dependents_deps.dev:0 github.com/isliqian/common-tools,num_dependents_deps.dev:0 github.com/islishude/bip32,num_dependents_deps.dev:0 github.com/islishude/ding,num_dependents_deps.dev:0 +github.com/islishude/spa-deploy-action, github.com/islishude/wallet-rpc,num_dependents_deps.dev:0 github.com/islisp-dev/iris,num_dependents_deps.dev:0 github.com/islizeqiang/code-fabric,num_dependents_deps.dev:0 @@ -624312,6 +635922,7 @@ github.com/islog/datawriterclient-js,num_dependents_deps.dev:0 github.com/islooper/base,num_dependents_deps.dev:0 github.com/islooper/warning,num_dependents_deps.dev:0 github.com/islos-efe-eme/snapmatic-converter, +github.com/ism0080/comicstrip-readme, github.com/ismFerDev/Wall-e, github.com/isma90/api-common,num_dependents_deps.dev:0 github.com/isma90/common-clases,num_dependents_deps.dev:0 @@ -624350,6 +635961,7 @@ github.com/ismail-codinglab/gmail-inbox,num_dependents_deps.dev:0 github.com/ismail-syed/junk,num_dependents_deps.dev:0 github.com/ismail-syed/prettier-stylelint-formatter,num_dependents_deps.dev:4 github.com/ismail-tijani/vote-vue-go,num_dependents_deps.dev:0 +github.com/ismail/rust-musl-action, github.com/ismail424/ALPR, github.com/ismail5701/session-alert,num_dependents_deps.dev:0 github.com/ismail9k/neomorphism,num_dependents_deps.dev:0 @@ -624548,6 +636160,7 @@ github.com/iso-react/suspenseful,num_dependents_deps.dev:0 github.com/isoautobos/prysm,num_dependents_deps.dev:0 github.com/isobar-us/redux-form-gen,num_dependents_deps.dev:0 github.com/isobaraustralia/generator-feather,num_dependents_deps.dev:0 +github.com/isobecci/github-trello-actions, github.com/isobit/websocket-nats,num_dependents_deps.dev:14 github.com/isocpp/CppCoreGuidelines,criticality_score:0.632360 github.com/isocra/TableDnD,"criticality_score:0.382680,num_dependents_deps.dev:0" @@ -624593,6 +636206,7 @@ github.com/isoken26/es6sayhello,num_dependents_deps.dev:0 github.com/isolary/isolary-form-validator,num_dependents_deps.dev:0 github.com/isolary/web-form-validator,num_dependents_deps.dev:0 github.com/isollaa/simple-restapi,num_dependents_deps.dev:0 +github.com/isolomak/auto-merge-labeled, github.com/isomarcte/errors4s,num_dependents_deps.dev:48 github.com/isomarcte/http4s-active-requests,num_dependents_deps.dev:0 github.com/isomarcte/sbt-version-scheme-enforcer,num_dependents_deps.dev:0 @@ -624639,6 +636253,7 @@ github.com/isonet/isonet,num_dependents_deps.dev:0 github.com/isonet/mediacontrol,num_dependents_deps.dev:0 github.com/isonet/slush-angular-es6,num_dependents_deps.dev:0 github.com/isonet/war-webpack-plugin,num_dependents_deps.dev:0 +github.com/isontheline/ChopChopAction, github.com/isonz/nodejs_ison_study,num_dependents_deps.dev:0 github.com/isopen/ngx-cable,num_dependents_deps.dev:0 github.com/isopov/gotest,num_dependents_deps.dev:0 @@ -624651,6 +636266,7 @@ github.com/isopropylcyanide/jersey-log-utils,num_dependents_deps.dev:0 github.com/isoreact/bacon,num_dependents_deps.dev:0 github.com/isoreact/bacon1,num_dependents_deps.dev:0 github.com/isoreact/core,num_dependents_deps.dev:0 +github.com/isort/isort-action, github.com/isoteriktech/express-response-helper,num_dependents_deps.dev:0 github.com/isoteriktech/xgdx,num_dependents_deps.dev:0 github.com/isoteriktech/xgdx-animation,num_dependents_deps.dev:0 @@ -624909,6 +636525,11 @@ github.com/issp-center-dev/abICS, github.com/issue-db/issue-db,num_dependents_deps.dev:0 github.com/issue-notifier/issue-notifier-api,num_dependents_deps.dev:0 github.com/issue-notifier/notification-service,num_dependents_deps.dev:0 +github.com/issue-ops/labeler, +github.com/issue-ops/parser, +github.com/issue-ops/releaser, +github.com/issue-ops/semver, +github.com/issue-ops/validator, github.com/issue9/cache,num_dependents_deps.dev:0 github.com/issue9/cmdopt,num_dependents_deps.dev:0 github.com/issue9/cnregion,num_dependents_deps.dev:0 @@ -625020,6 +636641,7 @@ github.com/istex/node-ezs-teeftfr,num_dependents_deps.dev:0 github.com/istex/popplonode,num_dependents_deps.dev:0 github.com/isthatcentered/charlies-factory,num_dependents_deps.dev:0 github.com/isthatcentered/dashing,num_dependents_deps.dev:0 +github.com/isthatcentered/dist-to-ftp, github.com/isthatcentered/tickable,num_dependents_deps.dev:0 github.com/isthatcentered/traceable,num_dependents_deps.dev:0 github.com/isthatcentered/unicorn,num_dependents_deps.dev:0 @@ -625057,6 +636679,7 @@ github.com/istio/enhancements,Google github.com/istio/envoy,Google github.com/istio/fortio,num_dependents_deps.dev:0 github.com/istio/fortio-deployment,Google +github.com/istio/get-istioctl, github.com/istio/glog,Google github.com/istio/go-control-plane,"Google,num_dependents_deps.dev:0" github.com/istio/gogo-genproto,"Google,num_dependents_deps.dev:534" @@ -625253,6 +636876,7 @@ github.com/iswanulumam/dependency-injection-go,num_dependents_deps.dev:0 github.com/iswanulumam/git-simulation,num_dependents_deps.dev:0 github.com/iswdp/termplot, github.com/isweijia/parse-swagger,num_dependents_deps.dev:0 +github.com/isweluiz/ansible-in-docker-action, github.com/isxcode/react-keycap,num_dependents_deps.dev:0 github.com/isxcode/spring-oxygen,num_dependents_deps.dev:0 github.com/isy/photoswipe-react,num_dependents_deps.dev:0 @@ -625430,7 +637054,10 @@ github.com/italia/design-web-toolkit,num_dependents_deps.dev:0 github.com/italia/developers-italia-backend,num_dependents_deps.dev:0 github.com/italia/eslint-config-italia, github.com/italia/ita-web-toolkit, +github.com/italia/publiccode-parser-action, github.com/italia/publiccode-parser-go,num_dependents_deps.dev:0 +github.com/italia/publiccode-softwareversion-check-action, +github.com/italia/slack-notify-release-action, github.com/italia/spid-compliant-certificates-python, github.com/italia/spid-rails,num_dependents_deps.dev:0 github.com/italia/spid-ruby,num_dependents_deps.dev:0 @@ -625466,6 +637093,7 @@ github.com/italoiz/insomnia-plugin-pinbank,num_dependents_deps.dev:0 github.com/italoiz/pinbank-cli,num_dependents_deps.dev:0 github.com/italoiz/unform-community-packages,num_dependents_deps.dev:0 github.com/italojs/appfly, +github.com/italojs/check-pr-branches, github.com/italolelis/heimdall,num_dependents_deps.dev:0 github.com/italolelis/outboxer,num_dependents_deps.dev:0 github.com/italolelis/reachable,num_dependents_deps.dev:0 @@ -625484,6 +637112,7 @@ github.com/italypaleale/go-gin-sample,num_dependents_deps.dev:0 github.com/italypaleale/prvt,num_dependents_deps.dev:0 github.com/italypaleale/unlocker,num_dependents_deps.dev:0 github.com/itamae-kitchen/itamae,"criticality_score:0.551350,num_dependents_deps.dev:3" +github.com/itamarc/action-itemplate-ghpages, github.com/itamarc/itemplate,num_dependents_deps.dev:0 github.com/itamarco/spark-ordernet-client,num_dependents_deps.dev:0 github.com/itamarf84/fast_downloader, @@ -625714,6 +637343,10 @@ github.com/itenl/egg-csv-cli,num_dependents_deps.dev:0 github.com/itenl/react-native-scrollable-tabview,num_dependents_deps.dev:0 github.com/itenl/react-native-vdebug,num_dependents_deps.dev:0 github.com/itenneti/stateless-validation,num_dependents_deps.dev:0 +github.com/itential/itential-automation-get-status, +github.com/itential/itential-automation-start, +github.com/itential/itential-automation-status, +github.com/itential/itential-trigger-automation, github.com/iter-tools/immutable-stack,num_dependents_deps.dev:0 github.com/iter-tools/iter-tools,num_dependents_deps.dev:1724 github.com/iter-tools/map,num_dependents_deps.dev:0 @@ -625722,6 +637355,7 @@ github.com/iter-tools/regex,num_dependents_deps.dev:0 github.com/iter-tools/set,num_dependents_deps.dev:0 github.com/iter8-tools/etc3,num_dependents_deps.dev:0 github.com/iter8-tools/handler,num_dependents_deps.dev:0 +github.com/iter8-tools/iter8-action, github.com/iter8-tools/iter8ctl,num_dependents_deps.dev:0 github.com/iter8-tools/metrics-mock,num_dependents_deps.dev:0 github.com/iterable-iterator/cardinality,num_dependents_deps.dev:0 @@ -625767,6 +637401,7 @@ github.com/iterative/dvc-ssh, github.com/iterative/dvc-task, github.com/iterative/dvc_streamlit, github.com/iterative/ldb, +github.com/iterative/priority-list, github.com/iterative/pytest-test-utils, github.com/iterative/scmrepo, github.com/iterative/shtab, @@ -625873,6 +637508,7 @@ github.com/ithaka/focus-trap,num_dependents_deps.dev:2 github.com/ithaka/pharos,num_dependents_deps.dev:0 github.com/ithaka/tdm-notebooks, github.com/ithallojunior/workdaykeep,num_dependents_deps.dev:0 +github.com/ithaque-renovation/latest-commit-date-action, github.com/itheamc/amcryption-npm-package,num_dependents_deps.dev:0 github.com/ithebk/react-native-position-bar, github.com/ithecorgi/escrumgolang,num_dependents_deps.dev:0 @@ -625880,6 +637516,7 @@ github.com/itheima2017/gitbook-plugin-theme-itheima, github.com/itheima2017/itheima-cli,num_dependents_deps.dev:0 github.com/ithemal/Ithemal,Google github.com/ithemal/bhive,Google +github.com/ithersta/ktlint-format-action, github.com/ithewei/libhv,criticality_score:0.328900 github.com/ithingv/golang,num_dependents_deps.dev:0 github.com/ithinkdancan/node-adt-pulse,num_dependents_deps.dev:0 @@ -626141,6 +637778,7 @@ github.com/its0x4d/instagramapi-python, github.com/its2easy/animate-sprite,num_dependents_deps.dev:0 github.com/its2mc/MorphBridge,num_dependents_deps.dev:0 github.com/its2mc/sPromise,num_dependents_deps.dev:0 +github.com/its404/get-flutter-version, github.com/itsCb/googleSignIn-vueJs,num_dependents_deps.dev:0 github.com/itsCharisma/Lotide,num_dependents_deps.dev:0 github.com/itsDevhere/social-network-analysis, @@ -626155,6 +637793,8 @@ github.com/itsMahdiZare/matlearn, github.com/itsMapleLeaf/gatekeeper,num_dependents_deps.dev:0 github.com/itsMapleLeaf/vite-plugin-babel-macros,num_dependents_deps.dev:0 github.com/itsNikolay/teleporter,num_dependents_deps.dev:0 +github.com/itsOliverBott/assign-pr-author-as-assignee, +github.com/itsOliverBott/assign-pr-reviewers, github.com/itsPG/colorplus.js, github.com/itsPG/diff.js, github.com/itsPauV/morph-chart,num_dependents_deps.dev:0 @@ -626486,6 +638126,7 @@ github.com/itsmelion/lion-lint,num_dependents_deps.dev:0 github.com/itsmelion/shellscripts,num_dependents_deps.dev:0 github.com/itsmemattchung/osslicenses, github.com/itsmemz53/go-sensors-read,num_dependents_deps.dev:0 +github.com/itsmeow/curseforge-upload, github.com/itsmepetrov/classnames-loader,num_dependents_deps.dev:8 github.com/itsmepetrov/homebridge-zigbee,num_dependents_deps.dev:0 github.com/itsmepetrov/queue-event-emitter,num_dependents_deps.dev:0 @@ -626498,6 +638139,7 @@ github.com/itsmeprakhar22/go-external-api-consumption,num_dependents_deps.dev:0 github.com/itsmesean/arteMetrics,num_dependents_deps.dev:0 github.com/itsmeskkyz3r/mle,num_dependents_deps.dev:0 github.com/itsmestevieg/cra-template-hello-react, +github.com/itsmesuniljacob/opa-docker, github.com/itsmewes/gotp,num_dependents_deps.dev:0 github.com/itsmewulf/apico, github.com/itsmewulf/dlabs.py, @@ -626529,6 +638171,7 @@ github.com/itsnauman/termrule, github.com/itsnauman/tod, github.com/itsnebulalol/code-folder-generator,num_dependents_deps.dev:0 github.com/itsnebulalol/npx-nebula, +github.com/itsnebulalol/theos-action, github.com/itsnewt/COVID19-npm,num_dependents_deps.dev:0 github.com/itsnickbarry/emojideas,num_dependents_deps.dev:0 github.com/itsnickbarry/hyperbolic-canvas,num_dependents_deps.dev:0 @@ -626554,6 +638197,7 @@ github.com/itsolutionsfactory/poetry-deps-scanner, github.com/itsonlybinary/test-fileuploader,num_dependents_deps.dev:0 github.com/itspacchu/collatzconjecturebin,num_dependents_deps.dev:0 github.com/itspacchu/gostuff,num_dependents_deps.dev:0 +github.com/itsparser/covreport, github.com/itspawanbhardwaj/spark-fuzzy-matching,num_dependents_deps.dev:0 github.com/itspedruu/dolphin,num_dependents_deps.dev:0 github.com/itspedruu/glitchy,num_dependents_deps.dev:0 @@ -626662,7 +638306,9 @@ github.com/itsursujit/flash,num_dependents_deps.dev:0 github.com/itsvick/SunbirdEd-consumption-ngcomponents,num_dependents_deps.dev:0 github.com/itsvick/pdf-download,num_dependents_deps.dev:0 github.com/itsvick/sb-styles,num_dependents_deps.dev:0 +github.com/itsvinayak/pylint-and-format, github.com/itsvoltz/go-rustplus,num_dependents_deps.dev:0 +github.com/itsvs/no-merge-action, github.com/itswadesh/fast2sms,num_dependents_deps.dev:0 github.com/itswcg/Greet-girlfriend, github.com/itswcg/django-grpc-framework, @@ -626672,6 +638318,7 @@ github.com/itsy-sh/is,num_dependents_deps.dev:0 github.com/itsybitesyspider/retriever,num_dependents_deps.dev:0 github.com/itsyouonline/loginsrv,num_dependents_deps.dev:0 github.com/itsyub/vue-wysiwyg-lite,num_dependents_deps.dev:0 +github.com/itsyuvalcohen/merge-branches, github.com/itszero/babel-plugin-transform-handy-debug,num_dependents_deps.dev:0 github.com/itszero/coredns-mdns,num_dependents_deps.dev:0 github.com/itszero/kgcat,num_dependents_deps.dev:0 @@ -626717,6 +638364,7 @@ github.com/itumeleng96/LowCostSmartFarmHub, github.com/iturgeon/aws-secrets-environment,num_dependents_deps.dev:0 github.com/iturgeon/test-travis-monorepo-npm-deploy,num_dependents_deps.dev:0 github.com/iturn/hyperledger-chaincode-dev-network,num_dependents_deps.dev:0 +github.com/itustanic/github-chaos-actions, github.com/ituxka/tinymce-filebrowser-django, github.com/itv/chuckwagon,num_dependents_deps.dev:0 github.com/itv/servicebox,num_dependents_deps.dev:0 @@ -626849,6 +638497,7 @@ github.com/itzsrikanth/buffus,num_dependents_deps.dev:0 github.com/itzyaboi6493/go-dslib,num_dependents_deps.dev:0 github.com/itzyanick/ackee-tracker-consent,num_dependents_deps.dev:0 github.com/itzzmeakhi/react-formsio,num_dependents_deps.dev:0 +github.com/iu-actions/create-workbook, github.com/iu-o/toast,num_dependents_deps.dev:0 github.com/iu0v1/gocui,num_dependents_deps.dev:0 github.com/iu1340/lazyImgs,num_dependents_deps.dev:0 @@ -626954,6 +638603,7 @@ github.com/iulo/css2spritesmith,num_dependents_deps.dev:0 github.com/iulo/grunt-css2sprite,num_dependents_deps.dev:0 github.com/iulo/grunt-inline2,num_dependents_deps.dev:0 github.com/iulspop/ruby_to_uml,num_dependents_deps.dev:0 +github.com/iulusoy/setup-fortran, github.com/iumehara/ogmapper,num_dependents_deps.dev:0 github.com/iumjjing/cafe24-sms-Django, github.com/iunderwood/iupy, @@ -627055,6 +638705,7 @@ github.com/ivan-bogach/nonsense,num_dependents_deps.dev:0 github.com/ivan-brko/GamayunPyUtils, github.com/ivan-curada/test-app-drawer,num_dependents_deps.dev:0 github.com/ivan-dalmet/formiz,num_dependents_deps.dev:0 +github.com/ivan-developer-01/jokes-on-issues-action, github.com/ivan-golubev/pbkdf2-sha512,num_dependents_deps.dev:0 github.com/ivan-ha/generator-ivan-js,num_dependents_deps.dev:0 github.com/ivan-hilckov/leaflet-shade,num_dependents_deps.dev:0 @@ -627122,12 +638773,16 @@ github.com/ivanabc/log4go,num_dependents_deps.dev:0 github.com/ivanakimov/geography,num_dependents_deps.dev:0 github.com/ivanakimov/hashids.js,num_dependents_deps.dev:244 github.com/ivanaleksandrovich/project,num_dependents_deps.dev:0 +github.com/ivanamat/defectdojo-engagements, +github.com/ivanamat/defectdojo-import-scan, +github.com/ivanamat/defectdojo-products, github.com/ivanantunes/angular-modal-material,num_dependents_deps.dev:0 github.com/ivanantunes/zmaterial-app,num_dependents_deps.dev:0 github.com/ivanantunes/zmodule-api,num_dependents_deps.dev:0 github.com/ivanape/xk6-redis,num_dependents_deps.dev:0 github.com/ivanary/go-learn,num_dependents_deps.dev:0 github.com/ivanbakel/backtracking_iterator,num_dependents_deps.dev:0 +github.com/ivanbakel/submodule-dependency, github.com/ivanbatic/cwl-ts-parser,num_dependents_deps.dev:0 github.com/ivanbeldad/timed-queue,num_dependents_deps.dev:0 github.com/ivanberry/create-react-app,num_dependents_deps.dev:0 @@ -627141,6 +638796,7 @@ github.com/ivanbychkov27/go-test,num_dependents_deps.dev:0 github.com/ivanbychkov27/web,num_dependents_deps.dev:0 github.com/ivancc99/gostudy,num_dependents_deps.dev:0 github.com/ivancduran/ppm,num_dependents_deps.dev:0 +github.com/ivancea/mac-renderer, github.com/ivanceras/blob-uuid,num_dependents_deps.dev:14 github.com/ivanceras/codegenta,num_dependents_deps.dev:0 github.com/ivanceras/curtain,num_dependents_deps.dev:0 @@ -627236,6 +638892,7 @@ github.com/ivangabriele/bootstrap-without-jquery,num_dependents_deps.dev:0 github.com/ivangabriele/cport,num_dependents_deps.dev:0 github.com/ivangabriele/dumdum,num_dependents_deps.dev:0 github.com/ivangabriele/eslint-config,num_dependents_deps.dev:0 +github.com/ivangabriele/find-and-replace-pull-request-body, github.com/ivangabriele/from-ndjson,num_dependents_deps.dev:0 github.com/ivangabriele/gulp-webpagetest,num_dependents_deps.dev:0 github.com/ivangabriele/is-command,num_dependents_deps.dev:0 @@ -627243,6 +638900,7 @@ github.com/ivangabriele/language-detector,num_dependents_deps.dev:0 github.com/ivangabriele/loading-spinner,num_dependents_deps.dev:8 github.com/ivangabriele/prettier-config,num_dependents_deps.dev:0 github.com/ivangabriele/proload,num_dependents_deps.dev:0 +github.com/ivangabriele/publish-latest-release, github.com/ivangabriele/reactnimations,num_dependents_deps.dev:0 github.com/ivangabriele/rorre,num_dependents_deps.dev:2 github.com/ivangabriele/tfs,num_dependents_deps.dev:0 @@ -627329,6 +638987,8 @@ github.com/ivankff/scss-mixin,num_dependents_deps.dev:0 github.com/ivankl/backend-project-lvl1,num_dependents_deps.dev:0 github.com/ivankl/backend-project-lvl2,num_dependents_deps.dev:0 github.com/ivanklee86/gitsecret, +github.com/ivanklee86/python_pipenv_action, +github.com/ivanklee86/xunit-slack-reporter, github.com/ivanknow/occ-cli,num_dependents_deps.dev:0 github.com/ivankorobkov/python-inject,criticality_score:0.336160 github.com/ivankovrigin/golang-examples,num_dependents_deps.dev:0 @@ -627365,6 +639025,9 @@ github.com/ivanmartinezmorales/leetcode-questions,num_dependents_deps.dev:0 github.com/ivanmartos/bamboo-tracker,num_dependents_deps.dev:0 github.com/ivanmaulana/react-zoom-pan-image,num_dependents_deps.dev:0 github.com/ivanmendoza/generator-snbx,num_dependents_deps.dev:0 +github.com/ivanmilevtues/auto-test-generator, +github.com/ivanmilov/telegram_notify_action, +github.com/ivanmilov/upstream_check_new_commits, github.com/ivanminutillo/bitbot,num_dependents_deps.dev:0 github.com/ivanminutillo/resources-flow-stenciljs,num_dependents_deps.dev:0 github.com/ivanmoskalev/rnb,num_dependents_deps.dev:0 @@ -627761,6 +639424,7 @@ github.com/ivicos-GmbH/lib-jitsi-meet,num_dependents_deps.dev:0 github.com/ivicos-GmbH/react-jitsi,num_dependents_deps.dev:0 github.com/ivictorpd/pokedex-server,num_dependents_deps.dev:0 github.com/ividjs/ivid,num_dependents_deps.dev:0 +github.com/ivido/helm-deploy, github.com/ividrine/weather-gov-api,num_dependents_deps.dev:0 github.com/iview/iview,"criticality_score:0.497850,num_dependents_deps.dev:115" github.com/iview/iview-admin,"criticality_score:0.377470,num_dependents_deps.dev:0" @@ -627886,6 +639550,7 @@ github.com/ivoglent/netpipe, github.com/ivoglent/node-slack-logs,num_dependents_deps.dev:0 github.com/ivoglent/npkm,num_dependents_deps.dev:0 github.com/ivoglent/nqueue,num_dependents_deps.dev:0 +github.com/ivoilic/deploy-firebase-functions-storage-firestore, github.com/ivoilic/hyper-brackets-dark,num_dependents_deps.dev:0 github.com/ivoilic/react-scooter,num_dependents_deps.dev:0 github.com/ivoilic/react-slick-styles,num_dependents_deps.dev:0 @@ -628189,6 +639854,9 @@ github.com/iwasakishuto/PythonUtils, github.com/iwasakishuto/Translation-Gummy, github.com/iwasnothing/binancetrade,num_dependents_deps.dev:0 github.com/iwat/dyndump,num_dependents_deps.dev:0 +github.com/iwata-n/actions-checkstyle, +github.com/iwata-n/actions-detekt, +github.com/iwata-n/actions-pull-request-json, github.com/iwataka/ghq,num_dependents_deps.dev:0 github.com/iwataka/mybot,num_dependents_deps.dev:0 github.com/iwatakeshi/airtable-api, @@ -628243,6 +639911,7 @@ github.com/iwburns/nullshield,num_dependents_deps.dev:0 github.com/iwburns/slab-tree,num_dependents_deps.dev:0 github.com/iwburns/tupperware,num_dependents_deps.dev:0 github.com/iwconfig/dlffmpeg, +github.com/iwdgo/gotip-build, github.com/iwdgo/htmlutils,num_dependents_deps.dev:0 github.com/iwdmb/copycat, github.com/iwdwebman/AyeAyeForApi,num_dependents_deps.dev:0 @@ -628348,6 +640017,7 @@ github.com/iwinston/typeorm-plus,num_dependents_deps.dev:0 github.com/iwishiwasaneagle/AirDataUAV, github.com/iwishiwasaneagle/blindfold.py, github.com/iwishiwasaneagle/classifier, +github.com/iwishiwasaneagle/git-user-random-gpg, github.com/iwishiwasaneagle/jsim, github.com/iwishiwasaneagle/proportional_navigation, github.com/iwisunny/cluster-schema-translator,num_dependents_deps.dev:0 @@ -628554,12 +640224,14 @@ github.com/ixvar/node-alexa, github.com/ixzzd/bs-react-dropdown,num_dependents_deps.dev:0 github.com/ixzzd/gatsby-plugin-intl,num_dependents_deps.dev:0 github.com/iyadaqel/ManoelGadiFA, +github.com/iyaja/batch-job-submitter, github.com/iyaja/eve, github.com/iyaki/schedule,num_dependents_deps.dev:0 github.com/iyanghong/markdown-topology-editor,num_dependents_deps.dev:0 github.com/iyanuashiri/calendar-plus, github.com/iyanuashiri/dj-cart, github.com/iyanuashiri/store, +github.com/iyanuashiri/twilio-sms-action, github.com/iyanuashiri/twitter-threader, github.com/iyappan24/bqcon, github.com/iyappan24/eziocon, @@ -628644,6 +640316,7 @@ github.com/iyoukeji/react-native-amap-sdk,num_dependents_deps.dev:0 github.com/iyouport-org/relaybaton,num_dependents_deps.dev:0 github.com/iyriss/lotide,num_dependents_deps.dev:0 github.com/iytdl/iytdl, +github.com/iyu/actions-milestone, github.com/iyu/calcjs, github.com/iyu/eerr,num_dependents_deps.dev:0 github.com/iyu/excel2json, @@ -628652,6 +640325,7 @@ github.com/iyu/obj2arr,num_dependents_deps.dev:0 github.com/iyu/require-list,num_dependents_deps.dev:0 github.com/iyu/spread2json,num_dependents_deps.dev:0 github.com/iyu/xlsx-parser,num_dependents_deps.dev:0 +github.com/iyu88/lighthouse-report-formatter, github.com/iyume/nonebot-plugin-arcaea, github.com/iyume/nonebot-plugin-ipypreter, github.com/iyuq/webpack-koa2-middleware,num_dependents_deps.dev:0 @@ -628729,6 +640403,7 @@ github.com/izabelacg/palm-tree,num_dependents_deps.dev:0 github.com/izaboj/links-shortener,num_dependents_deps.dev:0 github.com/izaccavalheiro/light-monorepo,num_dependents_deps.dev:0 github.com/izacgaldino23/goparse,num_dependents_deps.dev:0 +github.com/izackwu/tencent-cloud-cdn-purge-cache, github.com/izacus/pysolarized, github.com/izacximenes/mycli,num_dependents_deps.dev:0 github.com/izadgot/conductor,num_dependents_deps.dev:0 @@ -628766,6 +640441,7 @@ github.com/izavits/node.analytics,num_dependents_deps.dev:0 github.com/izayl/eslint-config, github.com/izayl/hooks,num_dependents_deps.dev:0 github.com/izayl/release-version-webpack-plugin,num_dependents_deps.dev:0 +github.com/izayl/spotify-box, github.com/izazkhan1/khan,num_dependents_deps.dev:0 github.com/izb/grunt-consolidate-css,num_dependents_deps.dev:0 github.com/izb/grunt-starter,num_dependents_deps.dev:0 @@ -628803,6 +640479,7 @@ github.com/izelnakri/paper_trail,criticality_score:0.424210 github.com/izelnakri/qunit-action, github.com/izelnakri/qunitx,num_dependents_deps.dev:0 github.com/izemaster/platzom,num_dependents_deps.dev:0 +github.com/izer-xyz/openwrt-imagebuilder-action, github.com/izern/common-utils,num_dependents_deps.dev:0 github.com/izern/sequence,num_dependents_deps.dev:0 github.com/izern/spring-boot,num_dependents_deps.dev:0 @@ -628823,6 +640500,7 @@ github.com/izgzhen/msbase.py, github.com/izgzhen/nfd-sys,num_dependents_deps.dev:0 github.com/izhan/storybook-description-loader,num_dependents_deps.dev:0 github.com/izhangxu/image-optimize,num_dependents_deps.dev:0 +github.com/izhangzhihao/delete-comment, github.com/izhangzhihao/intellij-rainbow-brackets,criticality_score:0.513240 github.com/izhaolongfei/maxfe,num_dependents_deps.dev:0 github.com/izhaolongfei/mp-img2base64,num_dependents_deps.dev:0 @@ -628841,6 +640519,7 @@ github.com/izhui/IZhui-rpc,num_dependents_deps.dev:0 github.com/izhui/IZhui-zookeeper,num_dependents_deps.dev:0 github.com/izhukov1992/mezzanine-portfolio, github.com/izhukov1992/mezzanine-theme-ascetic, +github.com/izi-community/kubernetes-action, github.com/izi-global/izir, github.com/izi/game-of-life, github.com/izica/debounce-decorator-es6,num_dependents_deps.dev:0 @@ -628910,6 +640589,8 @@ github.com/izumin5210-sandbox/go-generics,num_dependents_deps.dev:0 github.com/izumin5210-sandbox/json-masking,num_dependents_deps.dev:0 github.com/izumin5210-sandbox/rejoiner-apollo-sample,num_dependents_deps.dev:0 github.com/izumin5210/OHP,num_dependents_deps.dev:2 +github.com/izumin5210/action-go-crossbuild, +github.com/izumin5210/action-homebrew-tap, github.com/izumin5210/botkit-echo,num_dependents_deps.dev:0 github.com/izumin5210/eslint-config-izumin5210,num_dependents_deps.dev:0 github.com/izumin5210/gex,num_dependents_deps.dev:12 @@ -629044,6 +640725,7 @@ github.com/j-d-b/angular-fixed-aspect-img,num_dependents_deps.dev:0 github.com/j-d-b/array-find-duplicates,num_dependents_deps.dev:0 github.com/j-d-b/min-react-setup,num_dependents_deps.dev:0 github.com/j-deng/phoenix-miniprogram-channel,num_dependents_deps.dev:0 +github.com/j-dogcoder/gh-action-labels, github.com/j-dominguezp/fettuccine,num_dependents_deps.dev:0 github.com/j-easy/easy-batch,"criticality_score:0.458380,num_dependents_deps.dev:33" github.com/j-easy/easy-flows,num_dependents_deps.dev:0 @@ -629081,6 +640763,7 @@ github.com/j-fischer/js-mock,num_dependents_deps.dev:0 github.com/j-fischer/rest-on-fire,num_dependents_deps.dev:0 github.com/j-flan/mochaTest,num_dependents_deps.dev:0 github.com/j-frost/soy-declaration-loader,num_dependents_deps.dev:0 +github.com/j-fulbright/label-when-approved-action, github.com/j-funk/corbanbrook-fft,num_dependents_deps.dev:0 github.com/j-funk/fftw-js,num_dependents_deps.dev:0 github.com/j-funk/kissfft-js,num_dependents_deps.dev:0 @@ -629370,6 +641053,7 @@ github.com/j0shgrant/orchestrator,num_dependents_deps.dev:0 github.com/j0t3x/rmq.io,num_dependents_deps.dev:0 github.com/j0tunn/ashot,num_dependents_deps.dev:0 github.com/j0urneyK/lambda-template-generate-cli,num_dependents_deps.dev:0 +github.com/j0yu/setup-rez, github.com/j122j/controlpanel.gg,num_dependents_deps.dev:0 github.com/j127/embed-discourse,num_dependents_deps.dev:0 github.com/j127/prettier-config,num_dependents_deps.dev:0 @@ -629455,6 +641139,7 @@ github.com/j2inn/haystack-codegen,num_dependents_deps.dev:0 github.com/j2inn/haystack-core,num_dependents_deps.dev:0 github.com/j2inn/haystack-units, github.com/j2kun/babel-plugin-react-native-config,num_dependents_deps.dev:0 +github.com/j2kun/chktex-action, github.com/j2kun/rote, github.com/j2labs/apytrium, github.com/j2labs/bitprophet, @@ -629492,6 +641177,8 @@ github.com/j3ffyang/docker-development-youtube-series,num_dependents_deps.dev:0 github.com/j3gb3rt/cordova-plugin-local-notifications,num_dependents_deps.dev:0 github.com/j3guile/ts-lib-template,num_dependents_deps.dev:0 github.com/j3harvey/jil, +github.com/j3hempsey-actions/local-cache, +github.com/j3hempsey/github-action-benchmark, github.com/j3k0/PhoneGap-InAppPurchase-iOS,num_dependents_deps.dev:0 github.com/j3k0/add-hours,num_dependents_deps.dev:0 github.com/j3k0/admob-google-cordova,num_dependents_deps.dev:0 @@ -629826,6 +641513,7 @@ github.com/jaantollander/loggingtools, github.com/jaanumahe/lotusjs,num_dependents_deps.dev:0 github.com/jaapgroot/logrusbun,num_dependents_deps.dev:0 github.com/jaapieaapie1/urlparameters,num_dependents_deps.dev:0 +github.com/jaapio/keelsh-deploy, github.com/jaapjorisjaap/remote-dev, github.com/jaapmengers/sonos_cli,num_dependents_deps.dev:0 github.com/jaaprood/react-app-context-mixin,num_dependents_deps.dev:0 @@ -630024,6 +641712,7 @@ github.com/jaccomeijer/wheelroom,num_dependents_deps.dev:0 github.com/jacdac/jacdac-ts,num_dependents_deps.dev:14 github.com/jacdebug/lpat,num_dependents_deps.dev:0 github.com/jace-ys/mit-6824,num_dependents_deps.dev:0 +github.com/jace-ys/mobydick-action, github.com/jace-ys/redsync,num_dependents_deps.dev:0 github.com/jace-ys/super-smash-heroes,num_dependents_deps.dev:0 github.com/jace-ys/tusk,num_dependents_deps.dev:0 @@ -630119,6 +641808,7 @@ github.com/jachwe/node-caldav,num_dependents_deps.dev:0 github.com/jachym/tempfileatexit, github.com/jaciechao/pandaria-norman,num_dependents_deps.dev:0 github.com/jaciechao/rancher-upgrade-authtool,num_dependents_deps.dev:0 +github.com/jacinlowe/update-android-manifest-package-action, github.com/jacintogl82/js-modules,num_dependents_deps.dev:0 github.com/jacintogl82/shopping-cart-mini,num_dependents_deps.dev:0 github.com/jacius/configural,num_dependents_deps.dev:0 @@ -630138,7 +641828,9 @@ github.com/jack-davidson/blogfolio,num_dependents_deps.dev:0 github.com/jack-davidson/keyo,num_dependents_deps.dev:0 github.com/jack-debug/cj7, github.com/jack-dunleavy/simple-use-form,num_dependents_deps.dev:0 +github.com/jack-fin/issue-label-notification-action, github.com/jack-fin/react-tags, +github.com/jack-fireworkhq/action-confluence-sync, github.com/jack-hermanson/component-lib,num_dependents_deps.dev:0 github.com/jack-hermanson/css-lib,num_dependents_deps.dev:0 github.com/jack-hermanson/ts-utils,num_dependents_deps.dev:0 @@ -630146,6 +641838,7 @@ github.com/jack-in-the-box/angular-split-html,num_dependents_deps.dev:0 github.com/jack-kingdom/mux,num_dependents_deps.dev:0 github.com/jack-kitto/greetings,num_dependents_deps.dev:0 github.com/jack-kitto/readstore,num_dependents_deps.dev:0 +github.com/jack-lewin/check-staged, github.com/jack-lewin/eslint-config,num_dependents_deps.dev:0 github.com/jack-michaud/IcePick, github.com/jack-mil/bing-rewards, @@ -630246,6 +641939,7 @@ github.com/jackbearheart/email-addresses,num_dependents_deps.dev:1892 github.com/jackbi/vue-verify,num_dependents_deps.dev:0 github.com/jackbicknell14/ml-boilerplate, github.com/jackbilestech/npm-test,num_dependents_deps.dev:0 +github.com/jackbilestech/semver-compare, github.com/jackbisceglia/cra-barebones-setup,num_dependents_deps.dev:0 github.com/jackbister/async-lz-string,num_dependents_deps.dev:0 github.com/jackbister/grhp,num_dependents_deps.dev:0 @@ -630321,9 +642015,11 @@ github.com/jackdalton/majorca,num_dependents_deps.dev:0 github.com/jackdalton2/sume.js, github.com/jackdamiels/simple-fsm,num_dependents_deps.dev:0 github.com/jackdbd/eleventy-plugin-embed-cloudinary,num_dependents_deps.dev:0 +github.com/jackdbd/wpt-action, github.com/jackdbernier/reqlint, github.com/jackdbernier/serpentologist, github.com/jackdcasey/friendlyloris, +github.com/jackdcasey/vue-cli-plugin-s3-deploy-action, github.com/jackdclark/five,"criticality_score:0.302810,num_dependents_deps.dev:0" github.com/jackdcrawford/five,num_dependents_deps.dev:6 github.com/jackdeadman/use-mouse-drag,num_dependents_deps.dev:0 @@ -630387,6 +642083,8 @@ github.com/jackeysui/nodejs,num_dependents_deps.dev:0 github.com/jackfengji/brat-frontend-editor,num_dependents_deps.dev:0 github.com/jackfengji/ngtemplate-loader,num_dependents_deps.dev:0 github.com/jackfirth/pyramda, +github.com/jackfirth/racket-package-ci-action, +github.com/jackfirth/racket-package-resyntax-action, github.com/jackfive/generator-jhipster-hibernate-envers,num_dependents_deps.dev:0 github.com/jackfletch/javascript-style,num_dependents_deps.dev:0 github.com/jackfletch/splash-vis-utils,num_dependents_deps.dev:0 @@ -630480,6 +642178,7 @@ github.com/jackielii/dlis-1,num_dependents_deps.dev:0 github.com/jackielii/pb-from-json, github.com/jackielii/tcpproxy,num_dependents_deps.dev:0 github.com/jackieluc/gatsby-theme-90s,num_dependents_deps.dev:0 +github.com/jackieo5023/flow-coverage-compare, github.com/jackiesun8/pomelo-config-reader,num_dependents_deps.dev:0 github.com/jackiesun8/pomelo-config-reader-demo,num_dependents_deps.dev:0 github.com/jackiexiao/zhtts, @@ -630537,6 +642236,7 @@ github.com/jacklehamster/dok-socket,num_dependents_deps.dev:0 github.com/jacklehamster/dok-socket-client,num_dependents_deps.dev:0 github.com/jacklehamster/dok-timescheduler,num_dependents_deps.dev:0 github.com/jacklehamster/dok-utils,num_dependents_deps.dev:0 +github.com/jacklehamster/package-rename-action, github.com/jacklein/rn-bottom-drawer,num_dependents_deps.dev:0 github.com/jackleriche/react-rrule-generator,num_dependents_deps.dev:0 github.com/jackleslie/html-styled,num_dependents_deps.dev:0 @@ -630881,6 +642581,7 @@ github.com/jacksonrayhamilton/tern-jsx,num_dependents_deps.dev:0 github.com/jacksonrayhamilton/wordlist-english,num_dependents_deps.dev:0 github.com/jacksonrnewhouse/roaring,num_dependents_deps.dev:0 github.com/jacksonrya/eslint-config-standard,num_dependents_deps.dev:0 +github.com/jacksonsierra/graphql-inspector, github.com/jacksonsix/npmprojects,num_dependents_deps.dev:0 github.com/jacksontaylorxyz/jasbr,num_dependents_deps.dev:0 github.com/jacksontaylorxyz/sum,num_dependents_deps.dev:0 @@ -631021,6 +642722,7 @@ github.com/jackycute/remark-gemoji-to-emoji,num_dependents_deps.dev:56 github.com/jackycute/remark-html-emoji-image,num_dependents_deps.dev:0 github.com/jackye1995/trysail, github.com/jackyef/bundlesize,num_dependents_deps.dev:0 +github.com/jackyef/bundlewatch-gh-action, github.com/jackyef/cursor-flashlight, github.com/jackyef/iconic-react,num_dependents_deps.dev:0 github.com/jackyef/quirc-wasm,num_dependents_deps.dev:0 @@ -631074,6 +642776,7 @@ github.com/jackywxd/feathers-authentication-management,num_dependents_deps.dev:0 github.com/jackywxd/feathers-refresh-token,num_dependents_deps.dev:0 github.com/jackyyf/gox,num_dependents_deps.dev:0 github.com/jackyzha0/ThrowColour, +github.com/jackyzha0/actions-distributed-press, github.com/jackyzha0/hugo-obsidian,num_dependents_deps.dev:0 github.com/jackyzha0/portal,num_dependents_deps.dev:0 github.com/jackyzhen/hb-scraper,num_dependents_deps.dev:0 @@ -631111,6 +642814,7 @@ github.com/jacob-briscoe/spring-property-aws-ssm-resolver,num_dependents_deps.de github.com/jacob-duong/awry-utilities,num_dependents_deps.dev:0 github.com/jacob-duong/link-preview,num_dependents_deps.dev:0 github.com/jacob-ebey/dashboard-controls,num_dependents_deps.dev:0 +github.com/jacob-ebey/federated-container-action, github.com/jacob-ebey/forgo-render-to-string,num_dependents_deps.dev:0 github.com/jacob-ebey/go-graphql-boilerplate,num_dependents_deps.dev:0 github.com/jacob-ebey/golang-ecomm,num_dependents_deps.dev:0 @@ -631386,6 +643090,7 @@ github.com/jacobintern/leetcode,num_dependents_deps.dev:0 github.com/jacobitosuperstar/simple_tools, github.com/jacobjma/PyQSTEM, github.com/jacobjma/abtem, +github.com/jacobjmarks/quick-sentiment-analysis, github.com/jacobjonsson/stylex,num_dependents_deps.dev:0 github.com/jacobjordan94/giant-bomb, github.com/jacobjordan94/jservice-node,num_dependents_deps.dev:0 @@ -631599,6 +643304,7 @@ github.com/jacobsowles/react-meerkat-template-basic,num_dependents_deps.dev:0 github.com/jacobsowles/react-meerkat-template-dark,num_dependents_deps.dev:0 github.com/jacobsteringa/SPEM,num_dependents_deps.dev:0 github.com/jacobstern/handlebars-inc,num_dependents_deps.dev:0 +github.com/jacobsteves/caprover-deployment, github.com/jacobsteves/display-if,num_dependents_deps.dev:0 github.com/jacobsteves/easy-input-validator,num_dependents_deps.dev:0 github.com/jacobstr/okra,num_dependents_deps.dev:0 @@ -631608,7 +643314,18 @@ github.com/jacobsun/sr-store,num_dependents_deps.dev:0 github.com/jacobsun/thepinyin.js,num_dependents_deps.dev:0 github.com/jacobsun/vue-common-styles,num_dependents_deps.dev:0 github.com/jacobsun/whay,num_dependents_deps.dev:0 +github.com/jacobsvante/age-decrypt-action, +github.com/jacobsvante/deploy-helm-gke-action, +github.com/jacobsvante/extract-release-commit-action, +github.com/jacobsvante/gcr-add-version-tags-action, +github.com/jacobsvante/kustomize-deploy-action, +github.com/jacobsvante/scaleway-kustomize-deploy-action, +github.com/jacobsvante/setup-age-action, +github.com/jacobsvante/setup-gcloud-with-docker-auth-action, +github.com/jacobsvante/tag-major-minor-action, +github.com/jacobsvante/version-tag-docker-image, github.com/jacobszpz/CURPSuite, +github.com/jacobszpz/python-flatpak-generator-action, github.com/jacobtabak/Fragment-Switcher,num_dependents_deps.dev:0 github.com/jacobthemyth/ember-magic-man,num_dependents_deps.dev:0 github.com/jacobthemyth/ember-simple-auth-parse, @@ -631617,8 +643334,11 @@ github.com/jacobtichenor/tichplate,num_dependents_deps.dev:0 github.com/jacobtolar/interpolatr, github.com/jacobtomlinson/carte-noire,criticality_score:0.298160 github.com/jacobtomlinson/datapoint-js,num_dependents_deps.dev:0 +github.com/jacobtomlinson/gha-anaconda-package-version, github.com/jacobtomlinson/gha-find-replace,num_dependents_deps.dev:0 github.com/jacobtomlinson/gha-get-docker-hub-tags,num_dependents_deps.dev:0 +github.com/jacobtomlinson/gha-lint-yaml, +github.com/jacobtomlinson/gha-read-helm-chart, github.com/jacobtomlinson/jupyterlab-nvdashboard,num_dependents_deps.dev:0 github.com/jacobtomlinson/website,num_dependents_deps.dev:0 github.com/jacobtoppm/wagtail-image-import, @@ -631706,6 +643426,8 @@ github.com/jacopo-chevallard/PyP-BEAGLE, github.com/jacopo-chevallard/PySpecLines, github.com/jacopoantonello/slmtools, github.com/jacopoantonello/zernike, +github.com/jacopocarlini/action-autotag, +github.com/jacopocarlini/azure-pipelines, github.com/jacopodl/cavefinder, github.com/jacopodl/dirtytext, github.com/jacopodl/jschema2py, @@ -631751,6 +643473,7 @@ github.com/jacott/yaajs,num_dependents_deps.dev:0 github.com/jacovdbosch/radio2term,num_dependents_deps.dev:0 github.com/jacoyutorius/rails_dump2_s3,num_dependents_deps.dev:0 github.com/jacoyutorius/vue-csv-loader,num_dependents_deps.dev:0 +github.com/jacoz/gae-env-compile-action, github.com/jacqueline-homan/FizzBuzzAlgorithm,num_dependents_deps.dev:0 github.com/jacquelinel33/Lotide, github.com/jacquerie/arxiv-cli, @@ -631759,6 +643482,7 @@ github.com/jacquerie/flask-shell-bpython, github.com/jacquerie/flask-shell-ptpython, github.com/jacquerie/github-compose, github.com/jacquerie/github-file, +github.com/jacques-blom/wait-for-terraform-action, github.com/jacques717/tiny,num_dependents_deps.dev:0 github.com/jacquesbonet/jss-material-ui,num_dependents_deps.dev:0 github.com/jacquesbonet/redux-easy2-crud,num_dependents_deps.dev:0 @@ -631979,6 +643703,7 @@ github.com/jadok/vemsy,num_dependents_deps.dev:0 github.com/jadolg/RocketChatBot, github.com/jadolg/dockerimagesave,num_dependents_deps.dev:0 github.com/jadolg/outline-vpn-api, +github.com/jadolg/rocketchat-notification-action, github.com/jadolg/rocketchat_API, github.com/jadomag/aco,num_dependents_deps.dev:0 github.com/jadomag/daco,num_dependents_deps.dev:0 @@ -631992,6 +643717,7 @@ github.com/jadonsapna11/youtube_dl,num_dependents_deps.dev:0 github.com/jadrake75/odata-filter-parser, github.com/jadraketx/influx_util,num_dependents_deps.dev:0 github.com/jadraque/consign, +github.com/jadrol/pr-description-checker-action, github.com/jadsalhani/ionic2-generator,num_dependents_deps.dev:0 github.com/jadsalhani/patreon-go,num_dependents_deps.dev:0 github.com/jadsalhani/react-native-country-picker-modal,num_dependents_deps.dev:0 @@ -632149,6 +643875,7 @@ github.com/jaehongdev/std-golang,num_dependents_deps.dev:0 github.com/jaehoonkhim/exam-plugin,num_dependents_deps.dev:0 github.com/jaehoonn/exam-githubaction,num_dependents_deps.dev:0 github.com/jaehue/echo-kit,num_dependents_deps.dev:0 +github.com/jaehue/tencent-cos-action, github.com/jaehyunlee1221/STA-663-Final-Project, github.com/jaejaejae/jscluster,num_dependents_deps.dev:0 github.com/jaejaejae/personalized-pagerank-js,num_dependents_deps.dev:0 @@ -632246,7 +643973,9 @@ github.com/jaffee/redis,num_dependents_deps.dev:0 github.com/jaffraytan/merge-util,num_dependents_deps.dev:0 github.com/jaffraytan/rs-merge-util, github.com/jaffrey98/batinfo,num_dependents_deps.dev:0 +github.com/jafin/gha-search-replace, github.com/jafingerhut/p4-guide,criticality_score:0.407920 +github.com/jaflores357/consul-kv-github-action, github.com/jafreck/websocket-rpc, github.com/jafri/async-which, github.com/jafri/check-sudo,num_dependents_deps.dev:0 @@ -632284,6 +644013,10 @@ github.com/jagadeeshshetty/nightwatchjs-basic,num_dependents_deps.dev:0 github.com/jagadeeshshetty/selenium-webdriver,num_dependents_deps.dev:0 github.com/jagadeeswararaochappa/test-library, github.com/jagadeshanh/morse,num_dependents_deps.dev:0 +github.com/jagadish-k/auto-assign-reviewer, +github.com/jagadish-k/download-from-artifactory, +github.com/jagadish-k/setup-js, +github.com/jagadish-k/toggle-gh-protection, github.com/jagaimo300/golang_hello_world,num_dependents_deps.dev:0 github.com/jagamypriera/material-colors-light,num_dependents_deps.dev:0 github.com/jagamypriera/path-to-json,num_dependents_deps.dev:0 @@ -632403,6 +644136,7 @@ github.com/jagre/go,num_dependents_deps.dev:0 github.com/jagreehal/react-stencil-wrapper, github.com/jagreehal/st-cc,num_dependents_deps.dev:0 github.com/jagreehal/stencil-props,num_dependents_deps.dev:0 +github.com/jagreenwood/swift-build-lambda, github.com/jagregory/aws-es6-promise,num_dependents_deps.dev:0 github.com/jagregory/cloud-config-multipart.js,num_dependents_deps.dev:0 github.com/jagregory/cognito-local,num_dependents_deps.dev:0 @@ -632448,6 +644182,7 @@ github.com/jahadul-rakib/go_concurrency,num_dependents_deps.dev:0 github.com/jahaja/csc,num_dependents_deps.dev:0 github.com/jahan-addison/minta,num_dependents_deps.dev:0 github.com/jahan01/dj-extensions, +github.com/jahanarun/aws-cli-action, github.com/jahanarun/hyperv-vm-shut,num_dependents_deps.dev:0 github.com/jahangiranwari/identikal,num_dependents_deps.dev:0 github.com/jahans3/react-native-pinch,num_dependents_deps.dev:0 @@ -632455,6 +644190,7 @@ github.com/jahantaila/mrstock, github.com/jahartley/mcp23017,num_dependents_deps.dev:0 github.com/jahartley/node-ds2482,num_dependents_deps.dev:0 github.com/jahartley/node-ds2482-temperature,num_dependents_deps.dev:0 +github.com/jahbenjah/SmarterASP.NET-web-deploy, github.com/jahbini/aframe-lowroller-component,num_dependents_deps.dev:0 github.com/jahbini/halvalla,num_dependents_deps.dev:0 github.com/jahbini/html2halvalla,num_dependents_deps.dev:0 @@ -632543,6 +644279,7 @@ github.com/jahvon/k8s-operator,num_dependents_deps.dev:0 github.com/jahzielv/hemingway,num_dependents_deps.dev:0 github.com/jahzielv/newpost, github.com/jahzielv/standup,num_dependents_deps.dev:0 +github.com/jai-dewani/Tweet-PRs, github.com/jai-dewani/fun-mark, github.com/jai-imageio/jai-imageio-core,"Google,num_dependents_deps.dev:2658" github.com/jai-imageio/jai-imageio-jpeg2000,"Google,num_dependents_deps.dev:67" @@ -632599,6 +644336,7 @@ github.com/jailkey/MoldCLI, github.com/jailkey/MoldJS,num_dependents_deps.dev:0 github.com/jailkey/hexler,num_dependents_deps.dev:0 github.com/jails-org/Jails,num_dependents_deps.dev:0 +github.com/jailson-silva/limpar-workspace, github.com/jailtonjunior94/aopa-cli,num_dependents_deps.dev:0 github.com/jailtonjunior94/api-person,num_dependents_deps.dev:0 github.com/jailtonjunior94/bank,num_dependents_deps.dev:0 @@ -632608,6 +644346,7 @@ github.com/jailtonjunior94/financialcontrol-events,num_dependents_deps.dev:0 github.com/jailtonjunior94/go-challenge,num_dependents_deps.dev:0 github.com/jailtonjunior94/go-digimons,num_dependents_deps.dev:0 github.com/jaimbox/capacitor-geofence-box-tracker,num_dependents_deps.dev:0 +github.com/jaime-chavez/size_checker, github.com/jaime-ez/node-jwks-rsa#publish, github.com/jaime-olivares/sprite-css,num_dependents_deps.dev:0 github.com/jaime-olivares/yuml,num_dependents_deps.dev:0 @@ -632641,6 +644380,7 @@ github.com/jaimerosales/modelderivative-nodejs-tutorial,num_dependents_deps.dev: github.com/jaimess/quickorc,num_dependents_deps.dev:0 github.com/jaimeteb/chatto,num_dependents_deps.dev:0 github.com/jaimevalero/pandas_diff, +github.com/jaimevalero/push-kaggle-dataset, github.com/jaimevp54/htmlBuilder, github.com/jaimiles23/Alexa-Utils, github.com/jaimiles23/pywrangle, @@ -632649,7 +644389,9 @@ github.com/jain-neeeraj/lighthouse-network-gatherer,num_dependents_deps.dev:0 github.com/jain-neeeraj/mochawesome-slack-reporter, github.com/jain-ritik/npm_package,num_dependents_deps.dev:0 github.com/jainaayush01/npm-package, +github.com/jainal09/strivio, github.com/jainaman224/Algo_Ds_Notes,criticality_score:0.352420 +github.com/jainamoswal/BotStatus, github.com/jainamoswal/pytgauth, github.com/jainamoswal/secureme, github.com/jainanuj7/indian-numbers,num_dependents_deps.dev:0 @@ -632669,6 +644411,7 @@ github.com/jainpawan/pdf,num_dependents_deps.dev:0 github.com/jainpawan/unidoc,num_dependents_deps.dev:0 github.com/jainprashul/covidTrack,num_dependents_deps.dev:0 github.com/jainprashul/gogoanime,num_dependents_deps.dev:0 +github.com/jainrahul0311/RahulTestHelloAction, github.com/jainsahab/AndroidSnooper,num_dependents_deps.dev:0 github.com/jainsuneet/ckeditor5-build-classic-extended, github.com/jainsuneet/strapi-provider-upload-digitaloceanspace,num_dependents_deps.dev:0 @@ -632848,6 +644591,7 @@ github.com/jakeauyeung/fis-parser-typescript,num_dependents_deps.dev:0 github.com/jakeauyeung/fis-postpackager-min,num_dependents_deps.dev:0 github.com/jakeauyeung/om,num_dependents_deps.dev:0 github.com/jakeauyeung/wlt-zepto,num_dependents_deps.dev:0 +github.com/jakebailey/pyright-action, github.com/jakebian/picard, github.com/jakebiesinger/HTS-waterworks, github.com/jakeblaxon/graphql-join,num_dependents_deps.dev:0 @@ -632963,17 +644707,23 @@ github.com/jakehumphries/gymshark-orders-api-go,num_dependents_deps.dev:0 github.com/jakejack13/gachapy, github.com/jakejarrett/marionette-component,num_dependents_deps.dev:0 github.com/jakejarrett/node-gtk-theme,num_dependents_deps.dev:0 +github.com/jakejarvis/backblaze-b2-action, github.com/jakejarvis/cli,num_dependents_deps.dev:0 +github.com/jakejarvis/cloudflare-purge-action, github.com/jakejarvis/dark-mode,num_dependents_deps.dev:0 github.com/jakejarvis/eslint-config,num_dependents_deps.dev:0 +github.com/jakejarvis/hugo-build-action, github.com/jakejarvis/hugo-extended, github.com/jakejarvis/hugo-mod-twemoji,num_dependents_deps.dev:0 github.com/jakejarvis/hugo-node,num_dependents_deps.dev:0 github.com/jakejarvis/imagemin-overwrite,num_dependents_deps.dev:0 github.com/jakejarvis/jakejarvis, +github.com/jakejarvis/lighthouse-action, github.com/jakejarvis/netlify-plugin-cache,num_dependents_deps.dev:0 +github.com/jakejarvis/s3-sync-action, github.com/jakejarvis/simple-anchor,num_dependents_deps.dev:0 github.com/jakejarvis/twemoji-emojis,num_dependents_deps.dev:0 +github.com/jakejarvis/wait-action, github.com/jakejosol/warp-sdk-js,num_dependents_deps.dev:0 github.com/jakejosol/warp-server,num_dependents_deps.dev:0 github.com/jakejrichards/cod-api,num_dependents_deps.dev:0 @@ -633303,6 +645053,7 @@ github.com/jakob-bagterp/colorist-for-python, github.com/jakob-bagterp/timer-for-python, github.com/jakob-bebop/trnsd,num_dependents_deps.dev:0 github.com/jakob-e/unitconversion,num_dependents_deps.dev:2 +github.com/jakob-ed/dynalist-backup, github.com/jakob-he/TADA, github.com/jakob-lass/MJOLNIR, github.com/jakob101/postcss-inline-rtl,num_dependents_deps.dev:2 @@ -633388,6 +645139,7 @@ github.com/jakobmattsson/z-core,num_dependents_deps.dev:4 github.com/jakobmattsson/z-std-pack,num_dependents_deps.dev:0 github.com/jakobmattsson/z-underscore,num_dependents_deps.dev:2 github.com/jakobo/generator-slideshow,num_dependents_deps.dev:0 +github.com/jakobo/slack-rich-notify, github.com/jakobrosenberg/persistable,num_dependents_deps.dev:0 github.com/jakobrosenberg/ppid-changed,num_dependents_deps.dev:0 github.com/jakobrosenberg/spank,num_dependents_deps.dev:0 @@ -633562,6 +645314,7 @@ github.com/jakubkottnauer/graphql-modeler,num_dependents_deps.dev:0 github.com/jakubkottnauer/kendo-ui-react,num_dependents_deps.dev:0 github.com/jakubkowalczyk-pl/jgallery,num_dependents_deps.dev:0 github.com/jakubkulhan/bunny,criticality_score:0.443940 +github.com/jakublipcak-xrail/sql-action, github.com/jakubm/dow,num_dependents_deps.dev:0 github.com/jakubmazanec/eslint-config,num_dependents_deps.dev:0 github.com/jakubnabrdalik/gitkurwa,criticality_score:0.312830 @@ -633587,6 +645340,7 @@ github.com/jakubsuszynski/steve-utilities,num_dependents_deps.dev:0 github.com/jakubsvehla/chroma-py, github.com/jakubsvehla/nominatim,num_dependents_deps.dev:0 github.com/jakubtelec/tiny-stopwatch,num_dependents_deps.dev:0 +github.com/jakubtobiasz/sylius-build-test-app-action, github.com/jakubvalenta/listio, github.com/jakubvaltar/radsort,num_dependents_deps.dev:0 github.com/jakubzet/use-openweathermap-api,num_dependents_deps.dev:0 @@ -633716,6 +645470,7 @@ github.com/jalbam/easpm123, github.com/jalbertsr/deep,num_dependents_deps.dev:0 github.com/jalcaldea/7z-stream,num_dependents_deps.dev:0 github.com/jalcine/wintermute-node,num_dependents_deps.dev:0 +github.com/jaldamiz/AutoML_Pycaret, github.com/jalejandromarin/agenda-api,num_dependents_deps.dev:0 github.com/jalemolina/django-disqus, github.com/jalemy/migratory-js,num_dependents_deps.dev:0 @@ -633731,7 +645486,9 @@ github.com/jalepi/muss, github.com/jalepi/soll, github.com/jalescardoso/indexeddb-angular,num_dependents_deps.dev:0 github.com/jaleskovec/reqcheck, +github.com/jalexispoveda/gh-action-dotnet-bump, github.com/jalexspringer/netimpact, +github.com/jalextowle/github-action-benchmark, github.com/jalexy12/generator, github.com/jalgraves/bitbucket, github.com/jalgraves/jal_nba, @@ -633837,6 +645594,7 @@ github.com/jam1garner/cargo-mextk,num_dependents_deps.dev:0 github.com/jam1garner/cargo-skyline,num_dependents_deps.dev:0 github.com/jam1garner/compile-time-crc32,num_dependents_deps.dev:3 github.com/jam1garner/concat,num_dependents_deps.dev:0 +github.com/jam1garner/contributors-only, github.com/jam1garner/cpp-inherit,num_dependents_deps.dev:0 github.com/jam1garner/gc-adapter,num_dependents_deps.dev:0 github.com/jam1garner/gc-gcm,num_dependents_deps.dev:0 @@ -633975,6 +645733,7 @@ github.com/jamd315/OnImage, github.com/jameelmoses/is-contrast-checker,num_dependents_deps.dev:0 github.com/jameelmoses/is-marker-clusterer,num_dependents_deps.dev:0 github.com/jameelsocorro/react-md-article,num_dependents_deps.dev:0 +github.com/jameesjohn/oppia-actions, github.com/jamel/dbf,num_dependents_deps.dev:3 github.com/jamel/j7zip,num_dependents_deps.dev:0 github.com/jamel/kladr,num_dependents_deps.dev:2 @@ -634137,6 +645896,7 @@ github.com/james-cain/vue-element-placeholder-polyfill,num_dependents_deps.dev:0 github.com/james-cain/vue-lerna,num_dependents_deps.dev:0 github.com/james-cain/vue-photoswipe-plugin,num_dependents_deps.dev:0 github.com/james-cain/vue-show,num_dependents_deps.dev:0 +github.com/james-d-elliott/conventional-releaser-action, github.com/james-d-elliott/gocopyfw,num_dependents_deps.dev:0 github.com/james-d-mitchell/gaplint, github.com/james-d-mitchell/libsemigroups, @@ -634394,6 +646154,7 @@ github.com/jamesburton/-codeconsultants-mst,num_dependents_deps.dev:0 github.com/jamesbvaughan/sendsms, github.com/jamescalam/aesthetic_ascii, github.com/jamescallumyoung/pin-to-ipfs,num_dependents_deps.dev:0 +github.com/jamescallumyoung/pinata-publish-action, github.com/jamescarney3/open-ui-toolbox,num_dependents_deps.dev:0 github.com/jamescarr/jasmine-tool, github.com/jamescarr/mongoose-amqp-plugin,num_dependents_deps.dev:0 @@ -634915,6 +646676,7 @@ github.com/jamesmoriarty/gohack,num_dependents_deps.dev:0 github.com/jamesmoriarty/gomem,num_dependents_deps.dev:0 github.com/jamesmoriarty/lisp-rb,num_dependents_deps.dev:0 github.com/jamesmoriarty/zendesk,num_dependents_deps.dev:0 +github.com/jamesmortensen/cache-container-images-action, github.com/jamesmortensen/wdio-eslinter-service,num_dependents_deps.dev:0 github.com/jamesmudd/jhdf,num_dependents_deps.dev:1 github.com/jamesmunns/anachro,num_dependents_deps.dev:0 @@ -635086,6 +646848,7 @@ github.com/jamesridgway/devdeck-key-light, github.com/jamesridgway/devdeck-slack, github.com/jamesridgway/devdeck_core, github.com/jamesridgway/dsfkit, +github.com/jamesridgway/github-actions-approval-request, github.com/jamesridgway/short-urls-client, github.com/jamesridgway/voice-transcriber-client, github.com/jamesroberts/fastwsgi, @@ -635278,6 +647041,7 @@ github.com/jamestjw/lyrical,num_dependents_deps.dev:0 github.com/jamestjw/youtube2m4a, github.com/jamestollefson/legcop, github.com/jamestomasino/flashleit,num_dependents_deps.dev:0 +github.com/jamestrousdale/github-app-jwt-token, github.com/jamestthompson3/viiksetjs,num_dependents_deps.dev:0 github.com/jamesturk/django-honeypot,criticality_score:0.314770 github.com/jamesturk/django-markupfield, @@ -635469,6 +647233,7 @@ github.com/jamiebarnett/echor,num_dependents_deps.dev:0 github.com/jamiebegin/metrics2mqtt, github.com/jamieberrier/balboa_park_itinerary_ideas,num_dependents_deps.dev:0 github.com/jamiebikies/ember-pusher,num_dependents_deps.dev:0 +github.com/jamiebrynes7/setup-spatialos-cli, github.com/jamiebuilds/VisibilityObserver,num_dependents_deps.dev:0 github.com/jamiebuilds/aria-data,num_dependents_deps.dev:0 github.com/jamiebuilds/babel-plugin-hash-strings,num_dependents_deps.dev:0 @@ -635631,6 +647396,7 @@ github.com/jamiestraw/contribution,num_dependents_deps.dev:0 github.com/jamiestraw/dodgem,num_dependents_deps.dev:0 github.com/jamiestraw/streaker-cli,num_dependents_deps.dev:0 github.com/jamiesunderland/rest-my-case,num_dependents_deps.dev:0 +github.com/jamietanna/textcmd.js, github.com/jamietre/ImageMapster,"criticality_score:0.409000,num_dependents_deps.dev:0" github.com/jamietre/babel-plugin-transform-es2015-modules-commonjs-simple,num_dependents_deps.dev:24 github.com/jamietre/git-test,num_dependents_deps.dev:0 @@ -635682,6 +647448,7 @@ github.com/jamime/semantic-example,num_dependents_deps.dev:0 github.com/jamime/semantic-example-two,num_dependents_deps.dev:0 github.com/jamincan/wolang,num_dependents_deps.dev:0 github.com/jamipuchi/animated-3d-card,num_dependents_deps.dev:0 +github.com/jamirandac/setup-node-2, github.com/jamiri/port-app,num_dependents_deps.dev:0 github.com/jamis/fuzzy_file_finder,num_dependents_deps.dev:2 github.com/jamis/theseus,num_dependents_deps.dev:0 @@ -635864,6 +647631,7 @@ github.com/jamsidedown/sawpit, github.com/jamsinclair/babel-plugin-dynamic-import-node-and-webpack,num_dependents_deps.dev:0 github.com/jamsinclair/budou-node,num_dependents_deps.dev:0 github.com/jamsinclair/compare-versions-cli, +github.com/jamsinclair/gif-guardian-action, github.com/jamsinclair/github-lite,num_dependents_deps.dev:0 github.com/jamsinclair/multi-uglify-js,num_dependents_deps.dev:0 github.com/jamsinclair/postcss-typography2,num_dependents_deps.dev:0 @@ -635968,6 +647736,7 @@ github.com/jan-swiecki/node-on-file-change,num_dependents_deps.dev:0 github.com/jan-swiecki/node-simple-rest,num_dependents_deps.dev:0 github.com/jan-swiecki/node-sockjs-eventbus,num_dependents_deps.dev:0 github.com/jan-swiecki/node-sql-schema-builder,num_dependents_deps.dev:0 +github.com/jan-tricks/deployaction, github.com/jan-vite/nginxwebauthn, github.com/jan-x-marek/jmcharts,num_dependents_deps.dev:0 github.com/jan-xyz/adventofcode,num_dependents_deps.dev:0 @@ -636102,6 +647871,7 @@ github.com/jandejongh/jqueues,num_dependents_deps.dev:0 github.com/jandejongh/jqueues-guided-tour,num_dependents_deps.dev:0 github.com/jandejongh/jsimulation,num_dependents_deps.dev:1 github.com/jandelgado/gcov2lcov,num_dependents_deps.dev:137 +github.com/jandelgado/gcov2lcov-action, github.com/jandelgado/rabtap,num_dependents_deps.dev:0 github.com/janderland/fdbq,num_dependents_deps.dev:0 github.com/janderland/tq,num_dependents_deps.dev:0 @@ -636216,6 +647986,7 @@ github.com/janentikan/tmx2bam, github.com/janeoa/ardugorpc,num_dependents_deps.dev:0 github.com/janephp/janephp,criticality_score:0.473300 github.com/janeq493/MyMLL, +github.com/janerikcarlsen/aws-canary-monitoring, github.com/janerikcarlsen/fpl-cli, github.com/janerist/git-kahoot, github.com/janeshenamazon/aws-azure-login,num_dependents_deps.dev:0 @@ -636285,6 +648056,7 @@ github.com/jangler/oracles-randomizer,num_dependents_deps.dev:0 github.com/jangler/readlike, github.com/jangler/truce-py, github.com/janglucky/gomodone,num_dependents_deps.dev:0 +github.com/jangnh/env-bot, github.com/jango/calculon, github.com/jango89/custom-go-swagger-model-gen,num_dependents_deps.dev:0 github.com/jango89/hibernate-minimal-logger,num_dependents_deps.dev:0 @@ -636327,6 +648099,7 @@ github.com/janhalfar/eventhorizon,num_dependents_deps.dev:0 github.com/janhalfar/glide,num_dependents_deps.dev:0 github.com/janhancic/grunt-stitch-js,num_dependents_deps.dev:0 github.com/janhancic/mirrorkey,num_dependents_deps.dev:0 +github.com/janhartje/terraform-pr-commenter, github.com/janheindejong/svgreplicate, github.com/janhenckens/hubot-paulsmith,num_dependents_deps.dev:0 github.com/janhenckens/hubot-placeholdit,num_dependents_deps.dev:0 @@ -636467,6 +648240,7 @@ github.com/janispritzkau/rcon-client, github.com/janispritzkau/rust-base-encode,num_dependents_deps.dev:0 github.com/janispritzkau/watch-deep,num_dependents_deps.dev:0 github.com/janissaries-io/html-editor,num_dependents_deps.dev:0 +github.com/janisz/action, github.com/janisz/du,num_dependents_deps.dev:0 github.com/janisz/gradle-wsdl2java,num_dependents_deps.dev:0 github.com/janisz/marathon-consul,num_dependents_deps.dev:0 @@ -636699,6 +648473,8 @@ github.com/janneh/parse-access-token,num_dependents_deps.dev:0 github.com/janneh/resort,num_dependents_deps.dev:0 github.com/janneh/service-factory,num_dependents_deps.dev:0 github.com/jannekem/consistentor, +github.com/jannekem/publish-schedule-action, +github.com/jannekem/run-python-script-action, github.com/janneklouman/jsonresume-theme-rhinebeck,num_dependents_deps.dev:0 github.com/janneklouman/jsonresume-theme-tokyo,num_dependents_deps.dev:0 github.com/jannemann/postman-ci,num_dependents_deps.dev:0 @@ -636928,6 +648704,7 @@ github.com/janryWang/callbag-map-promise,num_dependents_deps.dev:0 github.com/janryWang/cool-path,num_dependents_deps.dev:238 github.com/janryWang/depath,num_dependents_deps.dev:0 github.com/janryWang/exp-parser,num_dependents_deps.dev:0 +github.com/janryWang/github-tag-release, github.com/janryWang/gub,num_dependents_deps.dev:0 github.com/janryWang/immutability,num_dependents_deps.dev:0 github.com/janryWang/immutability-skinable-component,num_dependents_deps.dev:0 @@ -636969,6 +648746,10 @@ github.com/janschoepke/triangle.js,num_dependents_deps.dev:0 github.com/janschoepke/vue-countdown,num_dependents_deps.dev:0 github.com/janschulz/knitpy, github.com/janschulz/pydatapipes, +github.com/janschumann/stv-create-or-update-components-artifact-with-release, +github.com/janschumann/stv-create-zip-release, +github.com/janschumann/stv-docker-build-push, +github.com/janschumann/stv-finallize-components, github.com/jansedivy/devs,num_dependents_deps.dev:0 github.com/jansedivy/potion,num_dependents_deps.dev:0 github.com/jansedivy/potion-audio,num_dependents_deps.dev:0 @@ -637003,6 +648784,7 @@ github.com/jansesun/bone-act-sass,num_dependents_deps.dev:0 github.com/jansesun/extract-text-webpack-plugin, github.com/jansesun/redux-react-rxjs,num_dependents_deps.dev:0 github.com/jansindl3r/sameWidther, +github.com/jansitarski/minio-copy-and-discord-webhook, github.com/jansky/ghupdatesecret, github.com/janslifka/imagediffer, github.com/jansmolders86/mediacenterjs,"criticality_score:0.332930,num_dependents_deps.dev:0" @@ -637133,6 +648915,7 @@ github.com/januswel/typescript-plugin-unassert,num_dependents_deps.dev:0 github.com/janusz-chludzinski/aura-vita,num_dependents_deps.dev:0 github.com/januszhou/node-env-config,num_dependents_deps.dev:0 github.com/januszm/application_presenter,num_dependents_deps.dev:0 +github.com/januszmarcinik/ftp-deploy, github.com/janusznoszczynski/SocketCore.Client.TypeScript,num_dependents_deps.dev:0 github.com/januwA/ajanuw-async-validate,num_dependents_deps.dev:0 github.com/januwA/ajanuw-completer,num_dependents_deps.dev:0 @@ -637199,6 +648982,7 @@ github.com/janzho/vite-plugin-vue-router,num_dependents_deps.dev:0 github.com/janziemba/react-native-basic-ui,num_dependents_deps.dev:0 github.com/janzmazek/langerhans, github.com/janzmazek/upn2sepa, +github.com/jaoafa/CheckPluginEnabling, github.com/jaoafa/jaoweb-viewer,num_dependents_deps.dev:0 github.com/jaobernardi/Httpy, github.com/jaobernardi/pyding, @@ -637290,6 +649074,9 @@ github.com/japgolly/cloud-trace-java,num_dependents_deps.dev:12 github.com/japgolly/robolectric,num_dependents_deps.dev:0 github.com/japgolly/scalacss,criticality_score:0.388110 github.com/japgolly/scalajs-react,criticality_score:0.486160 +github.com/japgolly/setup-everything-scala, +github.com/japgolly/setup-scala-util, +github.com/japgolly/setup-scalajs, github.com/japgolly/svg-android,num_dependents_deps.dev:0 github.com/japgolly/webtamp,num_dependents_deps.dev:0 github.com/japhethca/postit-api,num_dependents_deps.dev:0 @@ -637355,7 +649142,9 @@ github.com/jaraco/backports.datetime_timestamp, github.com/jaraco/backports.entry_points_selectable, github.com/jaraco/backports.functools_lru_cache, github.com/jaraco/backports.hook_compressed, +github.com/jaraco/backports.method_request, github.com/jaraco/backports.pdb, +github.com/jaraco/backports.print_function, github.com/jaraco/backports.unittest_mock, github.com/jaraco/calendra, github.com/jaraco/cmdix, @@ -637415,6 +649204,7 @@ github.com/jaraco/jaraco.windows, github.com/jaraco/jaraco.xkcd, github.com/jaraco/keyring,criticality_score:0.599750 github.com/jaraco/keyrings.alt, +github.com/jaraco/librarypaste, github.com/jaraco/lpaste, github.com/jaraco/nat-pmp, github.com/jaraco/nspektr, @@ -637464,6 +649254,7 @@ github.com/jarcodallo/nestjs-ethers,num_dependents_deps.dev:0 github.com/jarcodallo/nestjs-matic,num_dependents_deps.dev:0 github.com/jarcodallo/nestjs-terra,num_dependents_deps.dev:0 github.com/jarcodallo/nestjs-web3,num_dependents_deps.dev:0 +github.com/jard-111/doxygen-action, github.com/jardelgoncalves/broleto,num_dependents_deps.dev:0 github.com/jardelgoncalves/iso-weeks-year,num_dependents_deps.dev:0 github.com/jarden-liu/ion-emptying-button,num_dependents_deps.dev:0 @@ -638039,6 +649830,7 @@ github.com/jariberg/gulp-rewrite-resources,num_dependents_deps.dev:0 github.com/jariberg/riotjs-compile-loader,num_dependents_deps.dev:0 github.com/jariberg/videoconvert,num_dependents_deps.dev:0 github.com/jariberg/vue-sugar,num_dependents_deps.dev:0 +github.com/jaricardodev/publish-nuget, github.com/jarick/meteor-redux-subscriptions,num_dependents_deps.dev:0 github.com/jarick/react-router-universal,num_dependents_deps.dev:0 github.com/jarick/redux-dataset,num_dependents_deps.dev:0 @@ -638286,6 +650078,7 @@ github.com/jarofghosts/ziggy-substitute,num_dependents_deps.dev:0 github.com/jarohen/bridje,num_dependents_deps.dev:0 github.com/jarohen/chime,criticality_score:0.408980 github.com/jarojasm95/kueue, +github.com/jaroldwong/ecr-push-and-ecs-deploy, github.com/jaromero/generator-beanpod,num_dependents_deps.dev:0 github.com/jarondh/moment-workdays,num_dependents_deps.dev:0 github.com/jarondl/pygtfs, @@ -638349,6 +650142,7 @@ github.com/jarrekk/Jalpc,criticality_score:0.353990 github.com/jarrekk/imgkit, github.com/jarrett-m/cloudpie,num_dependents_deps.dev:0 github.com/jarrett-pon/graph-data,num_dependents_deps.dev:0 +github.com/jarrettmeyer/github-action-package-values, github.com/jarrettmeyer/jsbus,num_dependents_deps.dev:0 github.com/jarrettmeyer/linkr,num_dependents_deps.dev:0 github.com/jarrettmeyer/recumbent,num_dependents_deps.dev:0 @@ -638372,6 +650166,7 @@ github.com/jarrodldavis/probot-gpg,num_dependents_deps.dev:0 github.com/jarrodldavis/rasterize-svg-path-webpack-plugin,num_dependents_deps.dev:0 github.com/jarrodldavis/remark-changelog-version-bump,num_dependents_deps.dev:0 github.com/jarrodldavis/tailwindcss-clsx,num_dependents_deps.dev:0 +github.com/jarrodparkes/git-log-action, github.com/jarrodthibodeau/angular-number-to-text-pipe,num_dependents_deps.dev:0 github.com/jarrodthibodeau/json-derulo,num_dependents_deps.dev:0 github.com/jarrodthibodeau/json-derulo-cli,num_dependents_deps.dev:0 @@ -638438,6 +650233,8 @@ github.com/jarusified/co-timeinterval,num_dependents_deps.dev:0 github.com/jarusified/node-trace-func,num_dependents_deps.dev:0 github.com/jarv/go-gitlab,num_dependents_deps.dev:0 github.com/jarvaibhavraj/masterform,num_dependents_deps.dev:0 +github.com/jarvan1/eks-kubectl-action, +github.com/jarvan1/oci-kubectl-action, github.com/jarvenn/fasterhttp,num_dependents_deps.dev:0 github.com/jarvify/moleculer-pgr,num_dependents_deps.dev:0 github.com/jarvify/moleculer-ts,num_dependents_deps.dev:0 @@ -638501,6 +650298,7 @@ github.com/jarvys/random-timestamp,num_dependents_deps.dev:0 github.com/jarvys/viewportSize,num_dependents_deps.dev:0 github.com/jarwol/graphql-schema-utils,num_dependents_deps.dev:0 github.com/jaryP/ContinualAI, +github.com/jarylc/github-app-token, github.com/jaryn/gdbplugins, github.com/jarynek/invipo-angular,num_dependents_deps.dev:0 github.com/jarynseidl/censorify,num_dependents_deps.dev:0 @@ -638609,7 +650407,12 @@ github.com/jashkenas/underscore,"criticality_score:0.683700,num_dependents_deps. github.com/jashmenn/activeuuid,num_dependents_deps.dev:0 github.com/jashmenn/postgraphile-upsert-plugin,num_dependents_deps.dev:0 github.com/jashort/SmartFileSorter, +github.com/jashparekh/bigquery-action, +github.com/jashparekh/cloud-functions-action, +github.com/jashparekh/mypy-action, github.com/jasich/judo.js,num_dependents_deps.dev:0 +github.com/jasineri/gitartwork, +github.com/jasineri/simple-push-action, github.com/jasinner/rhcos-scanner,num_dependents_deps.dev:0 github.com/jasinner/rhcos-tracker,num_dependents_deps.dev:0 github.com/jasisk/shortstop-dns,num_dependents_deps.dev:0 @@ -638638,6 +650441,7 @@ github.com/jaskeerat789/go-webserver-template,num_dependents_deps.dev:0 github.com/jaskirat-singh-0403/Topsis-Jaskirat-101917040, github.com/jaslyn-siliconjungles/rn-scripts,num_dependents_deps.dev:0 github.com/jasmaa/py-fpff, +github.com/jasmaa/testng-cloudwatch-metrics-action, github.com/jasmanx11/kin-openapi,num_dependents_deps.dev:0 github.com/jasmas/DiscoNet, github.com/jasmas/homebridge-platform-blink-security,num_dependents_deps.dev:0 @@ -638735,6 +650539,7 @@ github.com/jasoma/smartthings-gradle,num_dependents_deps.dev:0 github.com/jason-adam/go-rss-feed,num_dependents_deps.dev:0 github.com/jason-allen-oneal/nodebb-theme-beyond,num_dependents_deps.dev:0 github.com/jason-ash/pyesg, +github.com/jason-bent/jab-github-create-custom-action, github.com/jason-c-child/lynx-redux-middleware,num_dependents_deps.dev:0 github.com/jason-c-child/react-native-toggler,num_dependents_deps.dev:0 github.com/jason-c-child/tiny-cli-parser,num_dependents_deps.dev:0 @@ -638745,6 +650550,9 @@ github.com/jason-costello/intellij-import-bug-example,num_dependents_deps.dev:0 github.com/jason-costello/schooling-covid,num_dependents_deps.dev:0 github.com/jason-cqtan/go190,num_dependents_deps.dev:0 github.com/jason-cqtan/learngoprograms,num_dependents_deps.dev:0 +github.com/jason-dour/action-setup-gomplate, +github.com/jason-dour/action-setup-hugo-preproc, +github.com/jason-edstrom/dotnet-tests-report-testing-fix, github.com/jason-ely/altair-export-json-to-csv,num_dependents_deps.dev:0 github.com/jason-gkq/zero-react-scripts, github.com/jason-guru/helping-monk,num_dependents_deps.dev:0 @@ -638866,6 +650674,7 @@ github.com/jasonalantolbert/standalorm, github.com/jasonalantolbert/txtoml, github.com/jasonallen/arc4rand.js,num_dependents_deps.dev:0 github.com/jasonamartin/style-warning-breaker,num_dependents_deps.dev:0 +github.com/jasonamyers/github-bumpversion-action, github.com/jasonamyers/macerate,num_dependents_deps.dev:0 github.com/jasonatwood/DataDictionary, github.com/jasonayre/mqttx,num_dependents_deps.dev:0 @@ -638930,6 +650739,7 @@ github.com/jasonchen86899/jaeger-client-go,num_dependents_deps.dev:0 github.com/jasoncheng/cacti-host-updown-monitor,num_dependents_deps.dev:0 github.com/jasonchenhaha/golearning.go,num_dependents_deps.dev:0 github.com/jasoncheung94/youtube-projects-code,num_dependents_deps.dev:0 +github.com/jasonchung1871/oc-login, github.com/jasoncmcg/node-cmd-switch,num_dependents_deps.dev:0 github.com/jasoncmcg/node-in-parallel,num_dependents_deps.dev:0 github.com/jasoncoders/golang,num_dependents_deps.dev:0 @@ -639014,6 +650824,7 @@ github.com/jasongilman/willet-lang,num_dependents_deps.dev:0 github.com/jasongin/console-menu,num_dependents_deps.dev:0 github.com/jasongin/noble-uwp,num_dependents_deps.dev:4 github.com/jasongin/nvs,criticality_score:0.387620 +github.com/jasongitmail/fast-webhook, github.com/jasongornall/FlashFunctionFinder, github.com/jasongornall/stylushelp,num_dependents_deps.dev:0 github.com/jasongraffius/pymain, @@ -639216,6 +651027,7 @@ github.com/jasonmacgowan/generator-rocket.chat,num_dependents_deps.dev:0 github.com/jasonmacgowan/probot-extended-setup,num_dependents_deps.dev:0 github.com/jasonmadigan/aib-to-ynab,num_dependents_deps.dev:0 github.com/jasonmadigan/bootstrap2-umd,num_dependents_deps.dev:0 +github.com/jasonmadigan/clone-issues-action, github.com/jasonmadigan/jeera,num_dependents_deps.dev:0 github.com/jasonmamy/cordova-wheel-selector-plugin,num_dependents_deps.dev:250 github.com/jasonmattingly/easy_rspec,num_dependents_deps.dev:0 @@ -639491,6 +651303,7 @@ github.com/jasonvitagendev/redux-saga-loop-utils, github.com/jasonwadsworth/dynamodb-data-migration,num_dependents_deps.dev:0 github.com/jasonwadsworth/dynamodb-local-test-helper,num_dependents_deps.dev:0 github.com/jasonwalsh/jasonwalsh,num_dependents_deps.dev:0 +github.com/jasonwalsh/terraform-plugins, github.com/jasonwebb/morphogenesis-resources,criticality_score:0.309920 github.com/jasonwee/common-util-py, github.com/jasonwells/ruby-jet,num_dependents_deps.dev:0 @@ -639749,6 +651562,7 @@ github.com/jaubourg/prall,num_dependents_deps.dev:0 github.com/jaubourg/wires,num_dependents_deps.dev:2 github.com/jauco/jester,num_dependents_deps.dev:0 github.com/jauco/webpack-injectable,num_dependents_deps.dev:0 +github.com/jauderho/git-repo-sync, github.com/jaudiolibs/audioops,num_dependents_deps.dev:4 github.com/jaudiolibs/audioservers,num_dependents_deps.dev:11 github.com/jaudiolibs/jnajack,num_dependents_deps.dev:0 @@ -639765,6 +651579,7 @@ github.com/jaulz/js-yaml-type-data,num_dependents_deps.dev:0 github.com/jaulz/js-yaml-type-include,num_dependents_deps.dev:0 github.com/jaulz/js-yaml-type-ts,num_dependents_deps.dev:0 github.com/jaulz/js-yaml-type-ts-module,num_dependents_deps.dev:0 +github.com/jaumann/github-bumpversion-action, github.com/jaumard/ecmas-annotations,num_dependents_deps.dev:2 github.com/jaumard/generator-homey,num_dependents_deps.dev:0 github.com/jaumard/ng2-dashboard,num_dependents_deps.dev:0 @@ -639793,6 +651608,7 @@ github.com/jaumebonet/RosettaSilentToolbox, github.com/jaumebonet/libconfig, github.com/jaumebonet/pynion, github.com/jaumecapdevila/inthebones,num_dependents_deps.dev:0 +github.com/jaumegui/action-open-pr, github.com/jaumejordan/pyargcbr, github.com/jaumeortola/spanish-dict-tools,num_dependents_deps.dev:23 github.com/jaumesegarra/aframe-stl-model,num_dependents_deps.dev:0 @@ -640038,7 +651854,10 @@ github.com/javaidbabar/cli-starter-kit,num_dependents_deps.dev:0 github.com/javaito/HolandaCatalinaBson,num_dependents_deps.dev:6 github.com/javaito/HolandaCatalinaFw,num_dependents_deps.dev:0 github.com/javaito/PostgresStorageLayer,num_dependents_deps.dev:0 +github.com/javajawa/check-registry-for-image, +github.com/javajawa/create-envfile, github.com/javajawa/py-tiny-orm, +github.com/javajawa/remote-docker-tag, github.com/javajazz/jazz-grids,num_dependents_deps.dev:0 github.com/javajefe/jedis-extensions,num_dependents_deps.dev:0 github.com/javajefe/redisson-extensions,num_dependents_deps.dev:0 @@ -640294,6 +652113,7 @@ github.com/javid-abd/javidabd, github.com/javid-dastgoshadeh/jconsulsd,num_dependents_deps.dev:0 github.com/javid-xi/go_learning,num_dependents_deps.dev:0 github.com/javid-xi/gonote,num_dependents_deps.dev:0 +github.com/javidalpe/cognition-deploy-action, github.com/javidalpe/coordinate-format-converter,num_dependents_deps.dev:2 github.com/javidalpe/latlng,num_dependents_deps.dev:0 github.com/javidalpe/map-label-rotated,num_dependents_deps.dev:0 @@ -640359,6 +652179,7 @@ github.com/javierbyte/react-textselect,num_dependents_deps.dev:0 github.com/javierbyte/react-tour,num_dependents_deps.dev:0 github.com/javierbyte/visual-center,num_dependents_deps.dev:0 github.com/javiercaceres/lancer,num_dependents_deps.dev:0 +github.com/javiercavlop/terraform-cloud-actions, github.com/javiercbk/acn,num_dependents_deps.dev:0 github.com/javiercbk/jayoak,num_dependents_deps.dev:0 github.com/javiercbk/naive-mongo,num_dependents_deps.dev:0 @@ -640477,7 +652298,9 @@ github.com/javierdwd/npmsv,num_dependents_deps.dev:0 github.com/javierelpianista/py_gzdoom_launcher, github.com/javierfernandes/artemisajs,num_dependents_deps.dev:0 github.com/javierfernandes/babel-plugin-ramda-adjunct,num_dependents_deps.dev:0 +github.com/javierfernandes/jest-timing-action, github.com/javierfernandes/jest-timing-reporter,num_dependents_deps.dev:0 +github.com/javierfreire/next-release, github.com/javierg/CoinsliderRails,num_dependents_deps.dev:0 github.com/javiergarciacotado/go-examples,num_dependents_deps.dev:0 github.com/javiergarciaheras/mitos, @@ -640499,6 +652322,7 @@ github.com/javierlopezdeancos/pedigri,num_dependents_deps.dev:0 github.com/javierlopezdeancos/stipendivm,num_dependents_deps.dev:0 github.com/javierm32/revsys,num_dependents_deps.dev:0 github.com/javiermaestre/eslint-config,num_dependents_deps.dev:0 +github.com/javiermagro14/azure-static-website-deploy, github.com/javiermanzano/mongoose-cursor,num_dependents_deps.dev:0 github.com/javiermanzano/ohce-christmas,num_dependents_deps.dev:0 github.com/javiermanzano/react-native-form-keyboard-dismiss,num_dependents_deps.dev:0 @@ -640507,6 +652331,7 @@ github.com/javiermenesesdxc/react-native-loading-spinner-overlay,num_dependents_ github.com/javiermugueta/moskispub,num_dependents_deps.dev:0 github.com/javiermugueta/osa-streaming,num_dependents_deps.dev:0 github.com/javiermuniz/kojin-cli,num_dependents_deps.dev:0 +github.com/javiern8410/actions-google-chat-notification, github.com/javiernuber/platzom,num_dependents_deps.dev:0 github.com/javierobledo/syntaxsemanticanalysis, github.com/javierriofrio/platzom,num_dependents_deps.dev:0 @@ -640526,8 +652351,14 @@ github.com/javiertury/babel-plugin-transform-import-meta,num_dependents_deps.dev github.com/javiertury/koa-my-way,num_dependents_deps.dev:0 github.com/javiertury/redsys-easy,num_dependents_deps.dev:0 github.com/javiertury/route-imperator,num_dependents_deps.dev:0 +github.com/javiertuya/branch-snapshots-action, +github.com/javiertuya/junit-report-action, +github.com/javiertuya/sharpen-action, +github.com/javiertuya/sonarqube-action, github.com/javiervalero/shared-styled-components,num_dependents_deps.dev:0 github.com/javiervallejoco/learning-git,num_dependents_deps.dev:0 +github.com/javiesses/custom-github-action, +github.com/javiesses/line-counter-contracts, github.com/javif89/vue-make,num_dependents_deps.dev:0 github.com/javifelices/random-messages-platzi,num_dependents_deps.dev:0 github.com/javifm86/tailwindcss-prefers-dark-mode,num_dependents_deps.dev:0 @@ -640597,6 +652428,8 @@ github.com/javivelasco/react-css-themr,num_dependents_deps.dev:190 github.com/javivelasco/react-tunnels,num_dependents_deps.dev:4 github.com/javix64/ScrapingWordPress, github.com/javixeneize/wtfuzz, +github.com/javixeneize/yasca, +github.com/javixeneize/zasca, github.com/javiyt/spotwufamily,num_dependents_deps.dev:0 github.com/javiyt/wiremock-golang-client,num_dependents_deps.dev:0 github.com/javking07/toadlester,num_dependents_deps.dev:0 @@ -640674,6 +652507,10 @@ github.com/jawad-unmarshal/trialrepo,num_dependents_deps.dev:0 github.com/jawadalik91/electron-store,num_dependents_deps.dev:0 github.com/jawadhasan/VendingMachine,num_dependents_deps.dev:0 github.com/jawadzaib/hello-soda-v2, +github.com/jawah/niquests, +github.com/jawah/qh3, +github.com/jawah/urllib3.future, +github.com/jawah/wassima, github.com/jawahar273/practNLPTools-lite, github.com/jawahars16/kubex,num_dependents_deps.dev:0 github.com/jawang35/badger,num_dependents_deps.dev:0 @@ -640693,6 +652530,9 @@ github.com/jawerty/watchmon,num_dependents_deps.dev:0 github.com/jawg/geojson-jackson,num_dependents_deps.dev:0 github.com/jawg/geojson-jackson-jts-extensions,num_dependents_deps.dev:0 github.com/jawg/types.ts,num_dependents_deps.dev:0 +github.com/jawher/action-ansible, +github.com/jawher/action-hcloud, +github.com/jawher/action-scw, github.com/jawher/gotests,num_dependents_deps.dev:0 github.com/jawher/immanix,num_dependents_deps.dev:0 github.com/jawher/indie,num_dependents_deps.dev:0 @@ -640701,6 +652541,7 @@ github.com/jawher/moulder-j,num_dependents_deps.dev:0 github.com/jawher/mow.cli,"criticality_score:0.314010,num_dependents_deps.dev:1" github.com/jawi/ols,criticality_score:0.431070 github.com/jawidx/web-launch-app,num_dependents_deps.dev:0 +github.com/jawills/sf-deploy, github.com/jawish/joi-email-extensions,num_dependents_deps.dev:0 github.com/jawish/nc450,num_dependents_deps.dev:0 github.com/jawish/rollup-plugin-twig,num_dependents_deps.dev:0 @@ -640778,6 +652619,8 @@ github.com/jaxx2104/homebridge-irmagician,num_dependents_deps.dev:0 github.com/jaxx2104/hyper-monokai-glow,num_dependents_deps.dev:0 github.com/jaxx2104/warsman,num_dependents_deps.dev:0 github.com/jaxxreal/zen-sleep-js,num_dependents_deps.dev:0 +github.com/jaxxstorm/action-install-gh-release, +github.com/jaxxstorm/action-pulumi-esc, github.com/jaxxstorm/breakglass,num_dependents_deps.dev:0 github.com/jaxxstorm/change-aws-credentials,num_dependents_deps.dev:0 github.com/jaxxstorm/developer-friendly-iac,num_dependents_deps.dev:0 @@ -640845,6 +652688,7 @@ github.com/jay2503/cowin-watch,num_dependents_deps.dev:0 github.com/jay2503/ez-mysql,num_dependents_deps.dev:0 github.com/jay2503/jm-ez-l10n,num_dependents_deps.dev:0 github.com/jay2503/jm-ez-mysql, +github.com/jay2610/delete-older-releases, github.com/jay3332/PyMacro, github.com/jay3332/discord.py, github.com/jay3332/expr.py, @@ -640893,6 +652737,9 @@ github.com/jayalane/go-relay,num_dependents_deps.dev:0 github.com/jayalane/persist_wrapper, github.com/jayalfredprufrock/node-eject-media,num_dependents_deps.dev:0 github.com/jayalfredprufrock/saint-css,num_dependents_deps.dev:0 +github.com/jayamanikharyono/airflow-dag-action, +github.com/jayamanikharyono/jinja-action, +github.com/jayamanikharyono/tableau-workbook-action, github.com/jayanie/grpc-example,num_dependents_deps.dev:0 github.com/jayankaghosh/mop,num_dependents_deps.dev:0 github.com/jayansmart/smight-tasks,num_dependents_deps.dev:0 @@ -640903,6 +652750,7 @@ github.com/jayant840084/nodetypes,num_dependents_deps.dev:0 github.com/jayant840084/response-express,num_dependents_deps.dev:0 github.com/jayanta-banik/IProgress, github.com/jayanta-patra/jxpress, +github.com/jayanta525/github-pages-directory-listing, github.com/jayantasodekar/genietalkcards, github.com/jayantasodekar/genietalkcardstemplating,num_dependents_deps.dev:0 github.com/jayantasodekar/genitalkcardsdesigner,num_dependents_deps.dev:0 @@ -641022,6 +652870,7 @@ github.com/jaydaro/transpose-matrix,num_dependents_deps.dev:0 github.com/jaydata/jaydata,num_dependents_deps.dev:8 github.com/jaydata/node-genx,num_dependents_deps.dev:6 github.com/jaydattc/bdownload,num_dependents_deps.dev:0 +github.com/jaydattd/string-operations-action, github.com/jaydeep17/queue-connector,num_dependents_deps.dev:0 github.com/jaydeep17/smslingo,num_dependents_deps.dev:0 github.com/jaydeepc/marshmallow, @@ -641116,6 +652965,7 @@ github.com/jaydunning/domedit,num_dependents_deps.dev:0 github.com/jayed-tz/ngx-shimmering-loader,num_dependents_deps.dev:0 github.com/jayed-tz/stored-gravatar,num_dependents_deps.dev:0 github.com/jayeeliu/faker,num_dependents_deps.dev:0 +github.com/jayef0/chalice-extended-action, github.com/jayehernandez/letra-extension,criticality_score:0.483160 github.com/jayehmke/micro-stack,num_dependents_deps.dev:0 github.com/jayesbe/react-native-cacheable-image,num_dependents_deps.dev:0 @@ -641378,7 +653228,9 @@ github.com/jaypratapsingh/GoogleDrive, github.com/jayproulx/aws-stack-watch,num_dependents_deps.dev:0 github.com/jayproulx/cloudformation-helper,num_dependents_deps.dev:0 github.com/jayproulx/vlt-watch,num_dependents_deps.dev:0 +github.com/jayps/get-release-or-tag, github.com/jaypy-code/node-lvm,num_dependents_deps.dev:0 +github.com/jayqi/failed-build-issue-action, github.com/jayqi/quickhttp, github.com/jayqi/reprexlite, github.com/jayqi/spongebob, @@ -641607,16 +653459,24 @@ github.com/jayway/maven-lab-plugin,num_dependents_deps.dev:0 github.com/jayway/powermock,num_dependents_deps.dev:19221 github.com/jayway/rest-assured,num_dependents_deps.dev:10576 github.com/jayway/robotium,num_dependents_deps.dev:0 +github.com/jaywcjlove/action-ejs, github.com/jaywcjlove/awesome-mac,criticality_score:0.544750 github.com/jaywcjlove/awesome-uikit,criticality_score:0.308150 github.com/jaywcjlove/bannerjs,num_dependents_deps.dev:0 +github.com/jaywcjlove/changelog-generator, github.com/jaywcjlove/code-example,num_dependents_deps.dev:0 github.com/jaywcjlove/colors-cli,num_dependents_deps.dev:324 github.com/jaywcjlove/compile-less,num_dependents_deps.dev:0 github.com/jaywcjlove/console-emojis,num_dependents_deps.dev:0 github.com/jaywcjlove/cookie.js,num_dependents_deps.dev:0 +github.com/jaywcjlove/coverage-badges-cli, +github.com/jaywcjlove/create-tag-action, github.com/jaywcjlove/directory-trees-webpack-plugin,num_dependents_deps.dev:0 github.com/jaywcjlove/ejs2-loader,num_dependents_deps.dev:0 +github.com/jaywcjlove/generated-badges, +github.com/jaywcjlove/github-action-contributors, +github.com/jaywcjlove/github-action-modify-file-content, +github.com/jaywcjlove/github-action-package, github.com/jaywcjlove/github-rank,"criticality_score:0.310540,num_dependents_deps.dev:0" github.com/jaywcjlove/gitke,num_dependents_deps.dev:0 github.com/jaywcjlove/golang-tutorial,num_dependents_deps.dev:0 @@ -641634,6 +653494,7 @@ github.com/jaywcjlove/kkt-ssr,num_dependents_deps.dev:0 github.com/jaywcjlove/linux-command,"criticality_score:0.488320,num_dependents_deps.dev:0" github.com/jaywcjlove/loading-cli,num_dependents_deps.dev:12 github.com/jaywcjlove/magic-input,num_dependents_deps.dev:0 +github.com/jaywcjlove/markdown-to-html-cli, github.com/jaywcjlove/mocker-api,"criticality_score:0.468550,num_dependents_deps.dev:12" github.com/jaywcjlove/nginx-editor,num_dependents_deps.dev:0 github.com/jaywcjlove/parcel-plugin-markdown-string,num_dependents_deps.dev:0 @@ -641698,6 +653559,7 @@ github.com/jayzhou215/jayzhou215.github.io,num_dependents_deps.dev:0 github.com/jayzman/ext-quasar-auth,num_dependents_deps.dev:0 github.com/jayzyaj/centrifuge-js-cyy, github.com/jayzzer/betfair,num_dependents_deps.dev:0 +github.com/jayzzer/resharper-inspectcode, github.com/jayzzz00/publicmodule,num_dependents_deps.dev:0 github.com/jaz303/appy-bird,num_dependents_deps.dev:0 github.com/jaz303/audio-aggregate-param,num_dependents_deps.dev:0 @@ -641828,6 +653690,7 @@ github.com/jazdw/rql-parser,num_dependents_deps.dev:0 github.com/jazeee/jazeee-npm-org-test,num_dependents_deps.dev:0 github.com/jazeee/react-datetime-bootstrap,num_dependents_deps.dev:0 github.com/jazenx/morning-cli, +github.com/jazibjafri/issue-volunteer, github.com/jazibjohar/react-select,num_dependents_deps.dev:0 github.com/jazibobs/react-screensaver,num_dependents_deps.dev:0 github.com/jazibsawar/gridsome-source-cosmicjs,num_dependents_deps.dev:0 @@ -641927,6 +653790,7 @@ github.com/jazzfog/UpMerge,num_dependents_deps.dev:0 github.com/jazzfog/bin-test,num_dependents_deps.dev:0 github.com/jazzfog/livebox,num_dependents_deps.dev:0 github.com/jazzhow/command4j,num_dependents_deps.dev:0 +github.com/jazzido/pup-action, github.com/jazziebgd/nw-app-example,num_dependents_deps.dev:0 github.com/jazziebgd/nw-app-test,num_dependents_deps.dev:0 github.com/jazziebgd/nw-skeleton,num_dependents_deps.dev:0 @@ -641943,6 +653807,8 @@ github.com/jazzpool/logx,num_dependents_deps.dev:0 github.com/jazzqi/react-archer,num_dependents_deps.dev:0 github.com/jazzqi/rosbag.js,num_dependents_deps.dev:0 github.com/jazzschmidt/skeleton-bash,num_dependents_deps.dev:0 +github.com/jazzsequence/action-token-expiration, +github.com/jazzsequence/action-wordpress-vulnerability-scanner, github.com/jazzsequence/generator-hm-plugin,num_dependents_deps.dev:0 github.com/jazztong/csla,num_dependents_deps.dev:0 github.com/jazzy-elks/dummy-sdk,num_dependents_deps.dev:0 @@ -642115,6 +653981,8 @@ github.com/jbaiter/hidapi-cffi, github.com/jbaiter/jpegtran-cffi, github.com/jbaiter/python-rust-fst, github.com/jbaiter/zotero-cli, +github.com/jbajic/buildifier, +github.com/jbajic/setup-buildifier-action, github.com/jbake-org/jbake,criticality_score:0.407340 github.com/jbake-org/jbake-maven-plugin,num_dependents_deps.dev:0 github.com/jbake/go-cache,num_dependents_deps.dev:0 @@ -642143,7 +654011,9 @@ github.com/jbandi/npm-card,num_dependents_deps.dev:0 github.com/jbandlow/nb_hugo_exporter, github.com/jbandura/ember-legit-forms,num_dependents_deps.dev:0 github.com/jbangdev/jbang,criticality_score:0.526950 +github.com/jbangdev/jbang-action, github.com/jbangdev/jbang-maven-plugin,num_dependents_deps.dev:0 +github.com/jbangdev/setup-jbang, github.com/jbangelo/fletcher,num_dependents_deps.dev:0 github.com/jbangelo/lis3dsh-rs,num_dependents_deps.dev:0 github.com/jbankester/pat-sajax,num_dependents_deps.dev:0 @@ -642521,7 +654391,10 @@ github.com/jberg/milkdrop-preset-converter-aws,num_dependents_deps.dev:2 github.com/jberg/milkdrop-preset-utils,num_dependents_deps.dev:4 github.com/jberg/milkdrop-shader-converter,num_dependents_deps.dev:0 github.com/jberghoef/wagtail-tag-manager, +github.com/jbergknoff/github-action-wait-for-terraform-plan-approval, github.com/jberglinds/coc-jira-complete,num_dependents_deps.dev:0 +github.com/jbergstroem/cache-key-exists, +github.com/jbergstroem/hadolint-gh-action, github.com/jberkel/sms-backup-plus,criticality_score:0.463280 github.com/jberkel/spotify-api,num_dependents_deps.dev:0 github.com/jbermudezcabrera/campos, @@ -642586,6 +654459,7 @@ github.com/jbhannah/lodge,num_dependents_deps.dev:0 github.com/jbhannah/react-apollo-typed-hooks,num_dependents_deps.dev:0 github.com/jbharter/insomnia-plugin-kraken,num_dependents_deps.dev:0 github.com/jbharter/node-ghe-token-fetcher,num_dependents_deps.dev:0 +github.com/jbheard/markdown-docs, github.com/jbheber/HotKeysEngine,num_dependents_deps.dev:0 github.com/jbhoosreddy/path-browser-wrapper,num_dependents_deps.dev:0 github.com/jbhouse/CodeCofferCli,num_dependents_deps.dev:0 @@ -642697,6 +654571,7 @@ github.com/jbloomlab/neutcurve, github.com/jbloomlab/pdb_prot_align, github.com/jbloxsome/google-vm-scheduler, github.com/jbltx/generator-mean-stack,num_dependents_deps.dev:0 +github.com/jbltx/unity-create, github.com/jblukach/getmeta, github.com/jblukach/snap4n6cli, github.com/jblyberg/SipTwo, @@ -642816,6 +654691,7 @@ github.com/jborean93/pypsrp, github.com/jborean93/pyspnego, github.com/jborean93/requests-credssp,Google github.com/jborean93/smbprotocol, +github.com/jborlido/unity-builder, github.com/jbornemann/pixie,num_dependents_deps.dev:0 github.com/jborrey/infura_ruby,num_dependents_deps.dev:0 github.com/jborrow/scrunner, @@ -642916,6 +654792,7 @@ github.com/jboursiquot/bulkippt,num_dependents_deps.dev:0 github.com/jboursiquot/bulkippt-cli,num_dependents_deps.dev:0 github.com/jboursiquot/maildis,num_dependents_deps.dev:0 github.com/jboursiquot/portscan,num_dependents_deps.dev:0 +github.com/jbouter/aur-releaser, github.com/jbouwh/omnikdatalogger, github.com/jbouwh/omnikdataloggerproxy, github.com/jbouwman/go-ipfs-cmds,num_dependents_deps.dev:0 @@ -643075,6 +654952,7 @@ github.com/jbro/ipxe-cert-dumper,num_dependents_deps.dev:0 github.com/jbroadway/analog,criticality_score:0.365480 github.com/jbroadway/asl-player,num_dependents_deps.dev:0 github.com/jbroadway/urlify,criticality_score:0.351080 +github.com/jbrocher/auto-pr-body-generator, github.com/jbrockmendel/doom, github.com/jbrodriguez/echo,num_dependents_deps.dev:0 github.com/jbrodriguez/react-native-android-sqlite,num_dependents_deps.dev:0 @@ -643089,6 +654967,7 @@ github.com/jbronn/invocare-puppet, github.com/jbronn/invocare-ssh, github.com/jbrooksuk/JSON-Airports,num_dependents_deps.dev:0 github.com/jbrooksuk/SoundRain,num_dependents_deps.dev:0 +github.com/jbrooksuk/laravel-forge-action, github.com/jbrooksuk/node-flux,num_dependents_deps.dev:0 github.com/jbrooksuk/node-summary,"criticality_score:0.319840,num_dependents_deps.dev:2" github.com/jbrough/leucine,num_dependents_deps.dev:0 @@ -643116,9 +654995,11 @@ github.com/jbrumwell/vitals, github.com/jbruni/linkinator,num_dependents_deps.dev:0 github.com/jbruni/mimosa-inline-css-import,num_dependents_deps.dev:0 github.com/jbrunsting/note-taker-v2,num_dependents_deps.dev:0 +github.com/jbrunton/cleanup-pulumi-stacks, github.com/jbrunton/g3ops,num_dependents_deps.dev:0 github.com/jbrunton/gflows,num_dependents_deps.dev:0 github.com/jbrunton/gha-installer,num_dependents_deps.dev:0 +github.com/jbrunton/setup-gflows, github.com/jbryanscott/datetimewindow, github.com/jbrzusto/go-enum,num_dependents_deps.dev:0 github.com/jbsaff/angular-schema-form-multiselect,num_dependents_deps.dev:0 @@ -643152,6 +655033,7 @@ github.com/jbt/fuzzyMatch,num_dependents_deps.dev:0 github.com/jbt/markdown-editor,Google github.com/jbt/tiny-hashes,num_dependents_deps.dev:34 github.com/jbtanguy/JBTools, +github.com/jbtcd/release-action, github.com/jbtobar/daployer,num_dependents_deps.dev:0 github.com/jbu/personis, github.com/jbub/banking,num_dependents_deps.dev:2 @@ -643188,6 +655070,7 @@ github.com/jbuckmccready/cavalier_contours,num_dependents_deps.dev:0 github.com/jbuckmccready/static_aabb2d_index,num_dependents_deps.dev:1 github.com/jbueler/entity_status,num_dependents_deps.dev:0 github.com/jbuerman/latexsuite, +github.com/jbuettnerbild/send-job-status-to-pr-action, github.com/jbug-brasil/ub-java-client,num_dependents_deps.dev:0 github.com/jbuget/ember-cli-formable,num_dependents_deps.dev:0 github.com/jbuget/node-scalingo,num_dependents_deps.dev:0 @@ -643313,6 +655196,7 @@ github.com/jc-lab/node-mscabinet,num_dependents_deps.dev:0 github.com/jc-lab/pe-remake-stream.js,num_dependents_deps.dev:0 github.com/jc-lab/pfcurve.js,num_dependents_deps.dev:0 github.com/jc-lab/plugin-loader,num_dependents_deps.dev:0 +github.com/jc-lab/shim-review-bot, github.com/jc-lab/simple-pfs-stream,num_dependents_deps.dev:0 github.com/jc-lab/spring-protobuf-mongo-converter,num_dependents_deps.dev:0 github.com/jc-lab/ssdp-ts,num_dependents_deps.dev:0 @@ -643418,6 +655302,7 @@ github.com/jcam1/bosyu-generator-cli,num_dependents_deps.dev:0 github.com/jcamargoendava/pokemonwiki,num_dependents_deps.dev:0 github.com/jcamenisch/ENV_BANG,num_dependents_deps.dev:0 github.com/jcamiloangarita/stocker, +github.com/jcamiloradamesa/github-checkrun, github.com/jcampbell05/xcake,num_dependents_deps.dev:0 github.com/jcandksolutions/android-unit-test,num_dependents_deps.dev:0 github.com/jcane86/motor-hat,num_dependents_deps.dev:0 @@ -643433,6 +655318,7 @@ github.com/jcao219/websocket-async,num_dependents_deps.dev:0 github.com/jcapels/boimmg, github.com/jcapili/crowpy, github.com/jcapobianco-cbi/react-d3-graph-cbi,num_dependents_deps.dev:0 +github.com/jcapona/mount-image-partition-action, github.com/jcapona/pi-gpio-api, github.com/jcapona/venv-clean, github.com/jcapozzi/ng2-component-popover,num_dependents_deps.dev:0 @@ -643540,9 +655426,16 @@ github.com/jcbagneris/fms, github.com/jcbcouch/goreview,num_dependents_deps.dev:0 github.com/jcbe-ode/ode-ngjs-front, github.com/jcbeho/platzom,num_dependents_deps.dev:0 +github.com/jcbenitezh/setup-pmd, +github.com/jcbhmr/configure-bun-action, +github.com/jcbhmr/copy-wiki-action, +github.com/jcbhmr/publish-features, +github.com/jcbhmr/publish-templates, +github.com/jcbhmr/publish-to-github-wiki, github.com/jcbinet/ts-inject,num_dependents_deps.dev:0 github.com/jcbiznoff/react-native-lit,num_dependents_deps.dev:0 github.com/jcblw/autocomplete,num_dependents_deps.dev:0 +github.com/jcblw/bash, github.com/jcblw/csv-to-ssml,num_dependents_deps.dev:0 github.com/jcblw/domla, github.com/jcblw/hikki,num_dependents_deps.dev:0 @@ -643593,6 +655486,7 @@ github.com/jcbrand/requirejs-tpl,num_dependents_deps.dev:0 github.com/jcbritobr/chat,num_dependents_deps.dev:0 github.com/jcbritobr/sevenguitasksgiu,num_dependents_deps.dev:0 github.com/jcbritobr/workerpool,num_dependents_deps.dev:0 +github.com/jcbsfilho/edge-computing-deploy, github.com/jcbshw/homebridge-rtsp-recorder,num_dependents_deps.dev:0 github.com/jcbuisson/readlinesync,num_dependents_deps.dev:2 github.com/jcburley/joker,num_dependents_deps.dev:0 @@ -643630,6 +655524,7 @@ github.com/jccroft1/keychronchecker,num_dependents_deps.dev:0 github.com/jcdalton2201/karma-hy-html-reporter,num_dependents_deps.dev:0 github.com/jcdang/print-pdf,num_dependents_deps.dev:0 github.com/jcdaniel14/devnet_ssh, +github.com/jcdcdev/jcdcdev.Github.ModioSyncDocs, github.com/jcde/jsutilities,num_dependents_deps.dev:0 github.com/jcdea/aarch64-client-go,num_dependents_deps.dev:0 github.com/jcdea/edkey,num_dependents_deps.dev:0 @@ -643689,6 +655584,7 @@ github.com/jcfrancisco/carlo-js,num_dependents_deps.dev:0 github.com/jcfrancisco/snaps,num_dependents_deps.dev:0 github.com/jcfrancisiii/gomongo,num_dependents_deps.dev:0 github.com/jcfranco/stencil-eslint-core, +github.com/jcfrane/s3-get-object-action, github.com/jcftang/dri-api,num_dependents_deps.dev:0 github.com/jcftang/logentriesrus,num_dependents_deps.dev:5 github.com/jcftang/node-dri,num_dependents_deps.dev:0 @@ -643800,6 +655696,8 @@ github.com/jchbh-duplicate/wechat-enterprise,num_dependents_deps.dev:0 github.com/jchbh-duplicate/wechat-enterprise-api,num_dependents_deps.dev:0 github.com/jchck/pattern-library,num_dependents_deps.dev:0 github.com/jchen-1122/odds,num_dependents_deps.dev:0 +github.com/jchen1/wait-for-green, +github.com/jchen42703/windows-signer-action, github.com/jchen897/MapleUI,num_dependents_deps.dev:0 github.com/jchengjr77/canaveral,num_dependents_deps.dev:0 github.com/jchenry/migrate,num_dependents_deps.dev:0 @@ -643915,6 +655813,7 @@ github.com/jciccio/react-js-paginator,num_dependents_deps.dev:0 github.com/jciccio/react-js-search,num_dependents_deps.dev:0 github.com/jciccio/react-loading-progress,num_dependents_deps.dev:0 github.com/jciccio/react-table-with-csv-download, +github.com/jcii/jcii-dump-context-action, github.com/jcincotta22/boilerplate-sdk-py, github.com/jcincotta22/boilerplate-sdk-python, github.com/jcincotta22/sampleproject, @@ -643973,6 +655872,7 @@ github.com/jclc/funnygif,num_dependents_deps.dev:0 github.com/jclehner/nmrpflash,criticality_score:0.422970 github.com/jcleigh/react-native-1d-barcodes,num_dependents_deps.dev:0 github.com/jcleira/ecr-credentials-controller,num_dependents_deps.dev:0 +github.com/jclem/action-mix, github.com/jclem/bookshelf-validators,num_dependents_deps.dev:0 github.com/jclem/clusterflock,num_dependents_deps.dev:0 github.com/jclem/dorante,num_dependents_deps.dev:0 @@ -644070,6 +655970,7 @@ github.com/jcmcneal/react-step-wizard,num_dependents_deps.dev:0 github.com/jcmdln/binbox,num_dependents_deps.dev:0 github.com/jcmellado/js-lzma,Google github.com/jcmellado/markdown-template,num_dependents_deps.dev:0 +github.com/jcmendez-acc/amplify-cli-action, github.com/jcmf/glulx-strings,num_dependents_deps.dev:0 github.com/jcmf/gribbl,num_dependents_deps.dev:0 github.com/jcmf/imbroglio,num_dependents_deps.dev:0 @@ -644112,6 +656013,7 @@ github.com/jcodec/jcodec,"criticality_score:0.378320,num_dependents_deps.dev:20" github.com/jcoderltd/odin,num_dependents_deps.dev:6 github.com/jcoelho93/shell-database, github.com/jcoelho96/golang-public,num_dependents_deps.dev:0 +github.com/jcoene/fastly-purge-action, github.com/jcoene/go-nsq,num_dependents_deps.dev:0 github.com/jcoffman27/shadowizard,num_dependents_deps.dev:0 github.com/jcoglan/canopy,num_dependents_deps.dev:0 @@ -644296,6 +656198,7 @@ github.com/jcouto/sbxreader, github.com/jcoutu/gitnetworkitis,num_dependents_deps.dev:0 github.com/jcoutu/refinery_testimonials,num_dependents_deps.dev:0 github.com/jcouture/nv,num_dependents_deps.dev:0 +github.com/jcouyang/airtable-report, github.com/jcouyang/alacarte,num_dependents_deps.dev:0 github.com/jcouyang/conjs,num_dependents_deps.dev:0 github.com/jcouyang/dhall-generic,num_dependents_deps.dev:0 @@ -644342,6 +656245,7 @@ github.com/jcpst/run-task,num_dependents_deps.dev:0 github.com/jcpst/scl-to-frequency,num_dependents_deps.dev:0 github.com/jcpst/sh-cli,num_dependents_deps.dev:0 github.com/jcpst/shove,num_dependents_deps.dev:0 +github.com/jcputney/git-commit-data-action, github.com/jcputney/scorm-again,num_dependents_deps.dev:0 github.com/jcpwfloi/easypay,num_dependents_deps.dev:0 github.com/jcpwfloi/showapi,num_dependents_deps.dev:0 @@ -644456,7 +656360,10 @@ github.com/jcrwhite/qany,num_dependents_deps.dev:0 github.com/jcrwhite/shh-node-http,num_dependents_deps.dev:0 github.com/jcs/rubywarden,criticality_score:0.308890 github.com/jcs/xbanish,criticality_score:0.336650 +github.com/jcs090218/github-push-action, github.com/jcs090218/node-minify-dir,num_dependents_deps.dev:0 +github.com/jcs090218/setup-emacs, +github.com/jcs090218/setup-emacs-windows, github.com/jcs12311/redux-string,num_dependents_deps.dev:0 github.com/jcs12311/web-console,num_dependents_deps.dev:0 github.com/jcsaaddupuy/dogecoin-python, @@ -644486,6 +656393,7 @@ github.com/jcsw/go-rest-api-template,num_dependents_deps.dev:0 github.com/jct808/ChineseNumbersCharactersConverter,num_dependents_deps.dev:0 github.com/jctanner/ansible-tools, github.com/jctaoo/electron-run,num_dependents_deps.dev:0 +github.com/jctaveras/heroku-deploy, github.com/jcteague/autofixturejs,num_dependents_deps.dev:0 github.com/jcteague/efate,num_dependents_deps.dev:0 github.com/jcteague/efate-uuid, @@ -644613,6 +656521,8 @@ github.com/jcwatson11/gbo,num_dependents_deps.dev:0 github.com/jcwatson11/roundsql,num_dependents_deps.dev:0 github.com/jcwatson11/typeqsfind,num_dependents_deps.dev:0 github.com/jcwieme/my-webpack-template,num_dependents_deps.dev:0 +github.com/jcwillox/action-publish-powershell-script, +github.com/jcwillox/install-tool-action, github.com/jcwillox/up-bank-api, github.com/jcwilson/falcon-epdb, github.com/jcwoltz/mrrapi, @@ -644621,6 +656531,7 @@ github.com/jcwtw/gatsby-react-lightweight-charts,num_dependents_deps.dev:0 github.com/jcx6586408/toolparseexcel,num_dependents_deps.dev:0 github.com/jcxplorer/hydra,num_dependents_deps.dev:0 github.com/jcxplorer/kops,num_dependents_deps.dev:0 +github.com/jcy0308/simple-server-monitoring-action, github.com/jczacharia/orchestra,num_dependents_deps.dev:0 github.com/jczaplew/csv-express,num_dependents_deps.dev:12 github.com/jczaplew/dbgeo,num_dependents_deps.dev:0 @@ -644654,6 +656565,7 @@ github.com/jd-boyd/pysexp, github.com/jd-boyd/python-lzo, github.com/jd-boyd/sofipa,num_dependents_deps.dev:0 github.com/jd-boyd/typednamedtuple, +github.com/jd-carroll/aws-cdk-github-commands, github.com/jd-carroll/cfn-response-async,num_dependents_deps.dev:6 github.com/jd-carroll/gatsby-remark-external-links,num_dependents_deps.dev:0 github.com/jd-carroll/package-metadata,num_dependents_deps.dev:0 @@ -644670,6 +656582,9 @@ github.com/jd-smart-fe/eslint-config-jd,num_dependents_deps.dev:0 github.com/jd-smart-fe/smarter,num_dependents_deps.dev:0 github.com/jd-smart-fe/welink-cli,num_dependents_deps.dev:0 github.com/jd-soft/fn-declare,num_dependents_deps.dev:0 +github.com/jd-solanki/gh-action-comment-on-new-issue, +github.com/jd-solanki/gh-action-md-to-html, +github.com/jd-solanki/gh-action-toggle-awaiting-reply-label, github.com/jd-sweeney/fabric-fm,num_dependents_deps.dev:0 github.com/jd/daiquiri,criticality_score:0.380000 github.com/jd/fastcounter, @@ -644679,6 +656594,7 @@ github.com/jd0048/custom-cordova-plugin,num_dependents_deps.dev:0 github.com/jd1378/GuaranteedTaskRunner,num_dependents_deps.dev:0 github.com/jd1378/autologin-axios-client,num_dependents_deps.dev:0 github.com/jd1378/clean-persian,num_dependents_deps.dev:0 +github.com/jd1378/filter_pull_requests_by_author, github.com/jd1378/gattuuids,num_dependents_deps.dev:0 github.com/jd1378/ipc-utils,num_dependents_deps.dev:0 github.com/jd1378/iran-cities-json,num_dependents_deps.dev:0 @@ -644818,6 +656734,8 @@ github.com/jdberrocal1/ember-cli-deploy-new-relic-sourcemap,num_dependents_deps. github.com/jdbi/jdbi,"criticality_score:0.627020,num_dependents_deps.dev:1060" github.com/jdbi/jdbi-st4,num_dependents_deps.dev:0 github.com/jdblischak/workflowr,criticality_score:0.459670 +github.com/jdboisvert/calver-bump-action, +github.com/jdboisvert/checkmigrations-action, github.com/jdbool/promise-index,num_dependents_deps.dev:0 github.com/jdbool/sub-rosa-servers,num_dependents_deps.dev:0 github.com/jdborowy/grunt-remove-logging-calls,num_dependents_deps.dev:0 @@ -644833,6 +656751,7 @@ github.com/jdc2000/arterial-components,num_dependents_deps.dev:34 github.com/jdc996/libprueba,num_dependents_deps.dev:0 github.com/jdcalkins/angular2-datatable,num_dependents_deps.dev:0 github.com/jdcalkins/ng2-data-table, +github.com/jdcargile/ms-teams-notification, github.com/jdcarvalho/python-notazz, github.com/jdcasey/EMB,num_dependents_deps.dev:10 github.com/jdcasey/RWX,num_dependents_deps.dev:9 @@ -644929,6 +656848,7 @@ github.com/jdcumpson/txbonjour, github.com/jdd1260/quickstart-react,num_dependents_deps.dev:0 github.com/jddeal/go-nexrad,num_dependents_deps.dev:0 github.com/jddecarlo/pyaid, +github.com/jddeep/Flutter-Runner, github.com/jddf/jddf-java,num_dependents_deps.dev:0 github.com/jddf/jddf-js,num_dependents_deps.dev:0 github.com/jddf/jddf-python, @@ -645207,6 +657127,7 @@ github.com/jdevries3133/django_htmx_rest, github.com/jdevries3133/teacher_helper, github.com/jdewells/jschon, github.com/jdewinne/pyspinnaker, +github.com/jdewinne/test-create-customer-action, github.com/jdewit/bootstrap-timepicker,"criticality_score:0.343970,num_dependents_deps.dev:26" github.com/jdewit/cucumber-step-definitions,num_dependents_deps.dev:0 github.com/jdewit/generator-ez-module,num_dependents_deps.dev:0 @@ -645340,9 +657261,11 @@ github.com/jdiamond/sources,num_dependents_deps.dev:0 github.com/jdiamond/xqtt,num_dependents_deps.dev:2 github.com/jdiaz5513/capnp-ts,num_dependents_deps.dev:12 github.com/jdiazromeral/django-ddd, +github.com/jdickey/bash, github.com/jdickey/create-sample-users,num_dependents_deps.dev:0 github.com/jdidc/idc-cli,num_dependents_deps.dev:0 github.com/jdidion/autoclick, +github.com/jdidion/dxcompiler-compile-action, github.com/jdidion/ngsindex, github.com/jdidion/ngstream, github.com/jdidion/pokrok, @@ -645469,6 +657392,12 @@ github.com/jdmbotero/node-deeplink,num_dependents_deps.dev:0 github.com/jdmedlock/GitAClue,num_dependents_deps.dev:0 github.com/jdmedlock/tabular-svelte,num_dependents_deps.dev:0 github.com/jdmejiav/jack-compiler-golang,num_dependents_deps.dev:0 +github.com/jdmevo123/akamai-edgeworker-action, +github.com/jdmevo123/akamai-jekyll-netstorage-action, +github.com/jdmevo123/akamai-mpulse-annotation-action, +github.com/jdmevo123/akamai-netstorage-action, +github.com/jdmevo123/akamai-purge-action, +github.com/jdmevo123/aws-cli, github.com/jdmeyer3/esquerydsl,num_dependents_deps.dev:0 github.com/jdmg94/jdmg94,num_dependents_deps.dev:0 github.com/jdmg94/react-gradient-container,num_dependents_deps.dev:0 @@ -645499,6 +657428,7 @@ github.com/jdneo/node-phantom-simple,num_dependents_deps.dev:0 github.com/jdnichollsc/Ionic-Starter-Template,num_dependents_deps.dev:0 github.com/jdnichollsc/Phaser-Kinetic-Scrolling-Plugin,num_dependents_deps.dev:0 github.com/jdno/alfred-gitignore,num_dependents_deps.dev:0 +github.com/jdno/setup-butler, github.com/jdno/transponder,num_dependents_deps.dev:0 github.com/jdnoahu/ja-devcamp-js-footer,num_dependents_deps.dev:0 github.com/jdnumm/artdirector, @@ -645575,6 +657505,8 @@ github.com/jdowner/gist, github.com/jdowner/libpyhdfs, github.com/jdowner/rigidbody, github.com/jdowner/uuid64, +github.com/jdowni000/arcaflow-container-toolkit-action, +github.com/jdowning/p2g-action, github.com/jdp/jarg, github.com/jdp/urp, github.com/jdp1g09/node-red-satellites,num_dependents_deps.dev:0 @@ -645607,6 +657539,7 @@ github.com/jdrab/app-updater,num_dependents_deps.dev:0 github.com/jdraiv/PyRTK, github.com/jdraiv/sanic-templates, github.com/jdrda/ie10-viewport-bug-workaround,num_dependents_deps.dev:1 +github.com/jdreeve/campsite-rule-python-lint, github.com/jdretz/jrts-snipcart-components,num_dependents_deps.dev:0 github.com/jdretz/simple-bea-client, github.com/jdreux/dirlist,num_dependents_deps.dev:0 @@ -645776,6 +657709,7 @@ github.com/jdvorak/pull-http-router,num_dependents_deps.dev:0 github.com/jdvorak/pull-offset-limit,num_dependents_deps.dev:216 github.com/jdvorak/random-line-access,num_dependents_deps.dev:0 github.com/jdvorak/rough-sortedness,num_dependents_deps.dev:0 +github.com/jdvr/action-add-comment, github.com/jdwije/LEWT,num_dependents_deps.dev:0 github.com/jdwije/blabbermouth,num_dependents_deps.dev:0 github.com/jdwije/jst, @@ -645811,6 +657745,7 @@ github.com/jdxcode/oclif-debug,num_dependents_deps.dev:0 github.com/jdxcode/password-prompt,num_dependents_deps.dev:6424 github.com/jdxcode/plugins,num_dependents_deps.dev:0 github.com/jdxcode/qqjs,num_dependents_deps.dev:272 +github.com/jdxcode/rtx-action, github.com/jdxcode/rwlockfile, github.com/jdxcode/rxjs-lazy,num_dependents_deps.dev:0 github.com/jdxcode/sfdx-example-plugin,num_dependents_deps.dev:0 @@ -645993,6 +657928,7 @@ github.com/jean-airoldie/lumby-flatbuffers, github.com/jean-airoldie/zeromq-src-rs,num_dependents_deps.dev:12 github.com/jean-baptiste-lasselle/hashicorp-vault-helper-dhutil,num_dependents_deps.dev:0 github.com/jean-daniel/dns_exporter,num_dependents_deps.dev:0 +github.com/jean-dfinity/rust-musl-action, github.com/jean-edouard-boulanger/mylivebox, github.com/jean-edouard-boulanger/quickforex, github.com/jean-emmanuel/open-stage-control,criticality_score:0.533000 @@ -646056,6 +657992,7 @@ github.com/jeancrus/template-react-redux-saga,num_dependents_deps.dev:0 github.com/jeancsanchez/JCPlayer,num_dependents_deps.dev:0 github.com/jeancsil/simple-memcached-monitor,num_dependents_deps.dev:0 github.com/jeandeaual/go-locale,num_dependents_deps.dev:0 +github.com/jeandeaual/mplabx-xc8-build-action, github.com/jeandeaual/tts-deckconverter,num_dependents_deps.dev:0 github.com/jeandemeusy/jdu-table, github.com/jeandemeusy/jdu_args, @@ -646126,12 +658063,14 @@ github.com/jeanlescure/material-ui-schema-form, github.com/jeanlescure/nano-audit,num_dependents_deps.dev:0 github.com/jeanlescure/node-pubnub-webrtc,num_dependents_deps.dev:0 github.com/jeanlescure/node-wait-man,num_dependents_deps.dev:0 +github.com/jeanlescure/react-deploy-to-s3-action, github.com/jeanlescure/react-schema-form,num_dependents_deps.dev:0 github.com/jeanlescure/resamplerjs,num_dependents_deps.dev:0 github.com/jeanlescure/session-sso,num_dependents_deps.dev:0 github.com/jeanlescure/short-unique-id,num_dependents_deps.dev:54 github.com/jeanlescure/short_uuid_typedoc_template,num_dependents_deps.dev:0 github.com/jeanlescure/string-crypto,num_dependents_deps.dev:120 +github.com/jeanluc243/Flutter-Deployment, github.com/jeanluc243/django-matchbox-orm, github.com/jeanlucaslima/jeanlucas,num_dependents_deps.dev:0 github.com/jeanlucaslima/tgbot,num_dependents_deps.dev:0 @@ -646198,6 +658137,7 @@ github.com/jeanslack/audiomass, github.com/jeanslack/pysplitcue, github.com/jeansordes/dotenv-placeholder,num_dependents_deps.dev:0 github.com/jeanstkng/ibkr, +github.com/jeanthink/typescript-action, github.com/jeantimex/calculator,num_dependents_deps.dev:0 github.com/jeantimex/dummy-tools,num_dependents_deps.dev:0 github.com/jeantimex/dummy-tools-1,num_dependents_deps.dev:0 @@ -646297,6 +658237,7 @@ github.com/jec-project/jec-tool-cli,num_dependents_deps.dev:0 github.com/jec-project/jec-wildcat, github.com/jecafarelli/yaml,num_dependents_deps.dev:0 github.com/jecamanga/simples, +github.com/jecanizarez/chalice-extended-action, github.com/jecase/tugasbesar_dap,num_dependents_deps.dev:0 github.com/jecced/go-tools,num_dependents_deps.dev:0 github.com/jecdegois/random-messages, @@ -646813,7 +658754,9 @@ github.com/jeequan/jeepay-sdk-java,num_dependents_deps.dev:0 github.com/jeerbl/webfonts-generator-loader,num_dependents_deps.dev:0 github.com/jeerbl/webfonts-loader,num_dependents_deps.dev:16 github.com/jeertmans/context, +github.com/jeertmans/filesfinder, github.com/jeertmans/flpy, +github.com/jeertmans/maturin-action, github.com/jeertmans/selsearch, github.com/jeertmans/strong, github.com/jeescu/alte-vue,num_dependents_deps.dev:0 @@ -646869,6 +658812,8 @@ github.com/jeezlee/react-mathjax-preview,num_dependents_deps.dev:0 github.com/jeezlee/template-editor,num_dependents_deps.dev:0 github.com/jeezliu/stock-cli,num_dependents_deps.dev:0 github.com/jef/audit-org-keys,num_dependents_deps.dev:0 +github.com/jef/conventional-commits-pr-action, +github.com/jef/conventional-commits-release-action, github.com/jef/pushbullet-node,num_dependents_deps.dev:0 github.com/jef/stargazer-vanity,num_dependents_deps.dev:0 github.com/jef/streetmerchant,criticality_score:0.569010 @@ -646881,11 +658826,13 @@ github.com/jefarmstrong/sortzzy, github.com/jefarrell/styleguidekit-assets-default,num_dependents_deps.dev:0 github.com/jefawks3/rails-react-ssr,num_dependents_deps.dev:0 github.com/jefbarn/moment-recur-ts,num_dependents_deps.dev:0 +github.com/jefchien/github-action-benchmark, github.com/jefcolbi/django-magic-notifier, github.com/jefcolbi/django-template-data, github.com/jefcolbi/django-theme-installer, github.com/jefcolbi/ninagram, github.com/jefcolbi/pyconafrica, +github.com/jefeish/project-template-action, github.com/jefelewis/math-exact,num_dependents_deps.dev:0 github.com/jefelewis/react-native-contact-action-sheet,num_dependents_deps.dev:0 github.com/jefelewis/react-native-edit-fields,num_dependents_deps.dev:0 @@ -647007,6 +658954,8 @@ github.com/jeff-tian/typed-jweixin,num_dependents_deps.dev:0 github.com/jeff-tian/urllib,num_dependents_deps.dev:0 github.com/jeff-tian/wechat-api,num_dependents_deps.dev:0 github.com/jeff-vincent/docker-lite-python, +github.com/jeff-vincent/orka-actions-down-org, +github.com/jeff-vincent/orka-actions-up-org, github.com/jeff-vincent/orka-python-sdk, github.com/jeff-zou/log-pilot-0.9.7,num_dependents_deps.dev:0 github.com/jeff-zucker/solid-file-client,num_dependents_deps.dev:2 @@ -647026,6 +658975,7 @@ github.com/jeff2857/binance-sdk,num_dependents_deps.dev:0 github.com/jeff2ma/stylelint-wechat-work-css, github.com/jeff3754/HexColorToColorName,num_dependents_deps.dev:0 github.com/jeff3dx/react-query-params,num_dependents_deps.dev:2 +github.com/jeff51419/commit_push_action, github.com/jeff51419/golang,num_dependents_deps.dev:0 github.com/jeffDevelops/fetchiQL,num_dependents_deps.dev:0 github.com/jeffWelling/ticgit,num_dependents_deps.dev:0 @@ -647116,6 +659066,7 @@ github.com/jeffbuttars/rj,num_dependents_deps.dev:0 github.com/jeffbuttars/usethis-django-bootstrap, github.com/jeffbyrnes/darksky-bluebird,num_dependents_deps.dev:0 github.com/jeffbyrnes/hubot-forecast,num_dependents_deps.dev:0 +github.com/jeffbyrnes/trellis-action, github.com/jeffcarbs/eslint-formatter-todo,num_dependents_deps.dev:1 github.com/jeffcarp/2dmap,num_dependents_deps.dev:0 github.com/jeffcarp/braintree-angular,num_dependents_deps.dev:0 @@ -647139,6 +659090,7 @@ github.com/jeffcohen/ez,num_dependents_deps.dev:0 github.com/jeffcressman/react-native-package-manager-test-module,num_dependents_deps.dev:0 github.com/jeffcsauer/arcospy, github.com/jeffdaily/parasail-python, +github.com/jeffdanielperso/github-project-auto, github.com/jeffdanielperso/n8n-nodes-github,num_dependents_deps.dev:0 github.com/jeffdcamp/dbtools-android,num_dependents_deps.dev:0 github.com/jeffdcamp/dbtools-gen,num_dependents_deps.dev:0 @@ -647359,6 +659311,7 @@ github.com/jeffling/wallaby-vinyl-adapter,num_dependents_deps.dev:0 github.com/jeffling/wallaby-webpack,num_dependents_deps.dev:2 github.com/jefflinse/goevents,num_dependents_deps.dev:0 github.com/jefflinse/plasticity,num_dependents_deps.dev:0 +github.com/jefflinse/pr-semver-bump, github.com/jefflinwood/cordova-plugin-twiliovoicesdk,num_dependents_deps.dev:0 github.com/jefflinwood/twilio-voice-phonegap-plugin,num_dependents_deps.dev:0 github.com/jefflinwood/twilio_client_phonegap,num_dependents_deps.dev:0 @@ -647475,6 +659428,7 @@ github.com/jeffreybool/go-micro,num_dependents_deps.dev:0 github.com/jeffreybos-timeseries/react-native-aws3,num_dependents_deps.dev:0 github.com/jeffreybos/create-react-app,num_dependents_deps.dev:0 github.com/jeffreybos/react-big-scheduler, +github.com/jeffreyc/copy-commit-to-another-repo, github.com/jeffreycahyono/backbone.firestore,num_dependents_deps.dev:0 github.com/jeffreychan637/wix-instance, github.com/jeffreyclu/mta-gtfs,num_dependents_deps.dev:0 @@ -647524,6 +659478,7 @@ github.com/jeffreymorganio/tweet-utils-js, github.com/jeffreyolchovy/sbt-fmpp-resolver,num_dependents_deps.dev:0 github.com/jeffreyquan/flip-card-wc, github.com/jeffreyquan/slide-panel,num_dependents_deps.dev:0 +github.com/jeffreys-cat/compressed-size-action, github.com/jeffreysbrother/clean-desktop,num_dependents_deps.dev:0 github.com/jeffreysbrother/dupejs,num_dependents_deps.dev:0 github.com/jeffreysbrother/generator-ninthlink,num_dependents_deps.dev:0 @@ -647537,6 +659492,7 @@ github.com/jeffreyshen19/sugar-labs-hello-world,num_dependents_deps.dev:0 github.com/jeffreystarr/dateinfer, github.com/jeffreystoke/pty,num_dependents_deps.dev:0 github.com/jeffreytai/cryptocompare-java-api-wrapper,num_dependents_deps.dev:0 +github.com/jeffreytse/jekyll-deploy-action, github.com/jeffreywardman/chesscom, github.com/jeffreyway/laravel-mix-tailwind,num_dependents_deps.dev:0 github.com/jeffreywescott/bs-tape,num_dependents_deps.dev:0 @@ -647813,6 +659769,7 @@ github.com/jeiler/PushNotification,num_dependents_deps.dev:0 github.com/jeinwag/keepassxc-cr-recovery,num_dependents_deps.dev:0 github.com/jeiros/mdrun, github.com/jeiros/msmadapter, +github.com/jeising/asciidoctor-ghpages-action, github.com/jeisux92/angular2-json-schema-form, github.com/jeiwan/blockchain_go,num_dependents_deps.dev:0 github.com/jeizsm/actix-telegram,num_dependents_deps.dev:0 @@ -647859,6 +659816,7 @@ github.com/jekill/wemos-led-matrix-js,num_dependents_deps.dev:0 github.com/jekin6/DigitalKeyboard,num_dependents_deps.dev:0 github.com/jeking3/boto3-post-conditions, github.com/jeking3/grunt-shell-spawn, +github.com/jeking3/release-feedback, github.com/jeking3/tempenv, github.com/jekku/phoenix_html,num_dependents_deps.dev:0 github.com/jekku/silent-yolocaust,num_dependents_deps.dev:0 @@ -647975,6 +659933,7 @@ github.com/jellekralt/node-beanstalk,num_dependents_deps.dev:0 github.com/jellekralt/video-embed,num_dependents_deps.dev:0 github.com/jelleschutter/fhnw-ds-weatherstation-client, github.com/jelleschutter/nbconvert-theme-pale-sand-navy, +github.com/jelleschutter/redaxo-headless-deploy, github.com/jelleschutter/wikidata-plain-sparql, github.com/jellespijker/pyDewesoft, github.com/jellevandenhooff/dkim, @@ -648007,6 +659966,7 @@ github.com/jellycheng/gowxpay,num_dependents_deps.dev:0 github.com/jellycrystal/django-explain-commands, github.com/jellycrystal/gtt-python-client, github.com/jellydator/indc,num_dependents_deps.dev:0 +github.com/jellydn/git-version, github.com/jellydn/new-web-app,num_dependents_deps.dev:0 github.com/jellydn/next-swagger-doc, github.com/jellydn/next-validations, @@ -648056,6 +660016,7 @@ github.com/jellz/dabf, github.com/jellz/discord.js-pagination,num_dependents_deps.dev:0 github.com/jellz/minehut, github.com/jellz/minehut-file-watcher, +github.com/jelmer/action-debianize, github.com/jelmer/aiohttp-openmetrics, github.com/jelmer/buildlog-consultant, github.com/jelmer/prometheus-xmpp-alerts, @@ -648206,6 +660167,7 @@ github.com/jeneser/rsa-node,num_dependents_deps.dev:0 github.com/jeneser/vue-cli-ghpages,num_dependents_deps.dev:0 github.com/jeneser/vue-scroll-behavior,num_dependents_deps.dev:0 github.com/jenesh/Random-Things-Library,num_dependents_deps.dev:0 +github.com/jenesh/slack-pr-action, github.com/jenetics/facilejdbc,num_dependents_deps.dev:0 github.com/jenetics/jenetics,"criticality_score:0.445570,num_dependents_deps.dev:0" github.com/jenetics/jpx,num_dependents_deps.dev:47 @@ -648243,6 +660205,7 @@ github.com/jenius/rupture,num_dependents_deps.dev:16 github.com/jenius/update-notifier-tester,num_dependents_deps.dev:0 github.com/jenjinstudios/jira-wrapper,num_dependents_deps.dev:0 github.com/jenjwong/react-component-scaffold,num_dependents_deps.dev:0 +github.com/jenkey2011/vuepress-deploy, github.com/jenkin/nodebb-plugin-embed-gmap,num_dependents_deps.dev:0 github.com/jenkins-contrib-themes/jenkins-core-theme,num_dependents_deps.dev:0 github.com/jenkins-infra/captain-hook,num_dependents_deps.dev:0 @@ -648310,6 +660273,8 @@ github.com/jenkins-x/slack,num_dependents_deps.dev:0 github.com/jenkins-x/terraform-azurerm-jx,num_dependents_deps.dev:0 github.com/jenkins-x/updatebot,num_dependents_deps.dev:0 github.com/jenkins-zh/docker-zh,num_dependents_deps.dev:0 +github.com/jenkins-zh/git-backup-actions, +github.com/jenkins-zh/hugo-gh-actions, github.com/jenkins-zh/jcli-account-plugin,num_dependents_deps.dev:0 github.com/jenkins-zh/jcli-casc-plugin,num_dependents_deps.dev:0 github.com/jenkins-zh/jcli-ishell-plugin,num_dependents_deps.dev:0 @@ -648342,6 +660307,7 @@ github.com/jenkinsci/jenkins,criticality_score:0.831490 github.com/jenkinsci/jenkins-automation-operator,num_dependents_deps.dev:0 github.com/jenkinsci/jenkins-operator,num_dependents_deps.dev:0 github.com/jenkinsci/jenkinsfile-runner,criticality_score:0.499890 +github.com/jenkinsci/jenkinsfile-runner-github-actions, github.com/jenkinsci/js-builder,num_dependents_deps.dev:1 github.com/jenkinsci/js-modules,num_dependents_deps.dev:16 github.com/jenkinsci/js-preferences, @@ -648459,6 +660425,9 @@ github.com/jensbodal/lndir,num_dependents_deps.dev:0 github.com/jensbodal/peer-dependency-enforcer,num_dependents_deps.dev:0 github.com/jensborch/webhooks4j,num_dependents_deps.dev:12 github.com/jensbrks/templa,num_dependents_deps.dev:0 +github.com/jenschelkopf/broadcast-action, +github.com/jenschelkopf/issue-label-notification-action, +github.com/jenschelkopf/project-card-moved-notification-action, github.com/jenscobie/node-rundeck,num_dependents_deps.dev:0 github.com/jenscobie/node-service-smoke,num_dependents_deps.dev:0 github.com/jenscski/homebridge-ws-lightbulb,num_dependents_deps.dev:0 @@ -648469,6 +660438,7 @@ github.com/jenselg/Obj.js,num_dependents_deps.dev:0 github.com/jenselg/obfs,num_dependents_deps.dev:0 github.com/jensenak/flakey,num_dependents_deps.dev:0 github.com/jenseng/canading-style-sheets,num_dependents_deps.dev:0 +github.com/jenseng/dynamic-uses, github.com/jenseng/globby-js,num_dependents_deps.dev:24 github.com/jenseng/hair_trigger,criticality_score:0.338550 github.com/jenseng/i18nliner-js, @@ -648551,6 +660521,8 @@ github.com/jensstigaard/vue-vmix-conn-plugin,num_dependents_deps.dev:0 github.com/jensteichert/webvitals-exporter,num_dependents_deps.dev:0 github.com/jensteichert/webvitals_exporter,num_dependents_deps.dev:0 github.com/jensvdh/mapbox.js-bower,num_dependents_deps.dev:0 +github.com/jensvog/ebook-convert-action, +github.com/jensvog/pythonanywhere-webapp-reload-action, github.com/jensvrai/fake-schema,num_dependents_deps.dev:0 github.com/jensvrai/mailgun-rest,num_dependents_deps.dev:0 github.com/jenswbe/go-commerce,num_dependents_deps.dev:0 @@ -648614,6 +660586,7 @@ github.com/jeonsoft/utils,num_dependents_deps.dev:0 github.com/jeordanecarlosbatista/jcbapicli,num_dependents_deps.dev:0 github.com/jeordman/golang-mini-api,num_dependents_deps.dev:0 github.com/jeorryb/pyasan, +github.com/jeoy/github-deploy-actions, github.com/jeoy/qrcodejs,num_dependents_deps.dev:0 github.com/jep-mikecurtis/TailwindTextEditor, github.com/jep-project/jep-cmake, @@ -648712,6 +660685,7 @@ github.com/jepub/jepub-core,num_dependents_deps.dev:0 github.com/jeqo/dropwizard-modules,num_dependents_deps.dev:0 github.com/jeqo/micrometer-binder-kafka,num_dependents_deps.dev:0 github.com/jeqo/zipkin-storage-kafka,num_dependents_deps.dev:0 +github.com/jerCarre/deepl_action, github.com/jera/jera-push,num_dependents_deps.dev:0 github.com/jerabaul29/niced_url_request, github.com/jerabaul29/python_callifile, @@ -649161,6 +661135,7 @@ github.com/jeremymorgan/hotcar,num_dependents_deps.dev:0 github.com/jeremymorgan/hotcarapi,num_dependents_deps.dev:0 github.com/jeremymturner/pysatadif, github.com/jeremymturner/pytle, +github.com/jeremynac/flutter-gh-pages, github.com/jeremynac/panoply, github.com/jeremyolliver/gvis,num_dependents_deps.dev:0 github.com/jeremyolliver/new_relic_ping,num_dependents_deps.dev:0 @@ -649191,6 +661166,7 @@ github.com/jeremypoulter/node-openevse,num_dependents_deps.dev:0 github.com/jeremypoulter/openevse_wifi_gui,num_dependents_deps.dev:0 github.com/jeremypoulter/openevse_wifi_server,num_dependents_deps.dev:0 github.com/jeremypower/yammer-node-client-rest-api,num_dependents_deps.dev:0 +github.com/jeremypruitt/gha-github-issue-for-leetcode-daily, github.com/jeremyqzt/statsJs, github.com/jeremyrajan/blogy,num_dependents_deps.dev:0 github.com/jeremyrajan/json-markdown,num_dependents_deps.dev:0 @@ -649364,6 +661340,7 @@ github.com/jerloo/penda,num_dependents_deps.dev:0 github.com/jerloo/pica,num_dependents_deps.dev:0 github.com/jerm-s/config-file-writer,num_dependents_deps.dev:0 github.com/jermainewang/dgl,num_dependents_deps.dev:0 +github.com/jermainezhimin/slack-actions, github.com/jerme404/ng-sign-here,num_dependents_deps.dev:0 github.com/jermel/groups,num_dependents_deps.dev:0 github.com/jermeo/copy-dynamodb-table,num_dependents_deps.dev:0 @@ -649442,6 +661419,7 @@ github.com/jeroenptrs/bsqsq,num_dependents_deps.dev:0 github.com/jeroenptrs/bump-siblings,num_dependents_deps.dev:0 github.com/jeroenptrs/consencss,num_dependents_deps.dev:0 github.com/jeroenptrs/consensass,num_dependents_deps.dev:0 +github.com/jeroenptrs/gh-action-update-deno, github.com/jeroenptrs/micro-faast,num_dependents_deps.dev:0 github.com/jeroenptrs/override-clsx,num_dependents_deps.dev:0 github.com/jeroenptrs/react-ion-store,num_dependents_deps.dev:0 @@ -649572,6 +661550,10 @@ github.com/jeromefroe/jmphash-rs,num_dependents_deps.dev:0 github.com/jeromefroe/lru-rs,num_dependents_deps.dev:378 github.com/jeromefroe/lttb-rs,num_dependents_deps.dev:0 github.com/jeromefroe/tsz-rs,num_dependents_deps.dev:0 +github.com/jeromegamez/duration-php, +github.com/jeromegamez/mite-php, +github.com/jeromegamez/ramsey-uuid-normalizer, +github.com/jeromegamez/typed-collection, github.com/jeromegit/fixations, github.com/jeromegn/Backbone.localStorage,"criticality_score:0.299840,num_dependents_deps.dev:0" github.com/jeromegn/mongol,num_dependents_deps.dev:0 @@ -649661,10 +661643,12 @@ github.com/jerone/eslint-angular-template-consistent-this,num_dependents_deps.de github.com/jerone/eslint-plugin-angular-template-consistent-this,num_dependents_deps.dev:0 github.com/jerone/turndown-plugin-github-code-snippet,num_dependents_deps.dev:0 github.com/jeroni7100/zwift-packet-monitor,num_dependents_deps.dev:0 +github.com/jeronimoek/markdown-vscode-contributions-action, github.com/jeronimomora/react-alert-template-basic,num_dependents_deps.dev:0 github.com/jeronimonunes/linear-program-parser,num_dependents_deps.dev:2 github.com/jerop/experimental,num_dependents_deps.dev:0 github.com/jerop/fuzzton,num_dependents_deps.dev:0 +github.com/jerop/tkn, github.com/jerosoler/3dbox,num_dependents_deps.dev:0 github.com/jerosoler/Drawflow, github.com/jerosoler/cornerbox,num_dependents_deps.dev:0 @@ -649684,6 +661668,9 @@ github.com/jerpa/node-red-contrib-mios,num_dependents_deps.dev:0 github.com/jerps/rss-ticker,num_dependents_deps.dev:0 github.com/jerr0328/co2-mini, github.com/jerray/jk-keyboard,num_dependents_deps.dev:0 +github.com/jerray/publish-docker-action, +github.com/jerray/setup-aliyun-cli-action, +github.com/jerray/work-weixin-notifier, github.com/jerrevanveluw/update-ruecksichtslos,num_dependents_deps.dev:0 github.com/jerrica-mj/lotide,num_dependents_deps.dev:0 github.com/jerrinfrancis/authenticator,num_dependents_deps.dev:0 @@ -649706,6 +661693,8 @@ github.com/jerry-mengjie/arr-sort-by,num_dependents_deps.dev:0 github.com/jerry-mengjie/draftjs-to-html, github.com/jerry-mengjie/react-draft-wysiwyg, github.com/jerry-muir/cspb, +github.com/jerry-sky/testing-gh-actions, +github.com/jerry-sky/vyrow, github.com/jerry-wang12/chinese2pinyin,num_dependents_deps.dev:0 github.com/jerry-wang12/umi-plugin-replace-portal,num_dependents_deps.dev:0 github.com/jerry1100/electron-browser-storage,num_dependents_deps.dev:0 @@ -649776,6 +661765,7 @@ github.com/jerryjappinen/linna-util,num_dependents_deps.dev:0 github.com/jerryjiao/easyFP,num_dependents_deps.dev:0 github.com/jerryjin83/angular2-repo,num_dependents_deps.dev:0 github.com/jerryjj/ui-translator,num_dependents_deps.dev:0 +github.com/jerryjvl/jekyll-build-action, github.com/jerryjyc/golang,num_dependents_deps.dev:0 github.com/jerrykan/wsgi-liveserver, github.com/jerrykingxyz/CompareEngine,num_dependents_deps.dev:0 @@ -649903,6 +661893,7 @@ github.com/jes-sherborne/tiny-tree,num_dependents_deps.dev:0 github.com/jesalerno84/image-preloader-promise,num_dependents_deps.dev:0 github.com/jesalerno84/react-server-sent-event-container,num_dependents_deps.dev:0 github.com/jesalerno84/redux-mocha-test-generators,num_dependents_deps.dev:0 +github.com/jesalg/commit-hawk-action, github.com/jesanfafon/slack-emoji-tiles,num_dependents_deps.dev:0 github.com/jesc7/go-dbf,num_dependents_deps.dev:0 github.com/jesc7/goftp,num_dependents_deps.dev:0 @@ -650119,6 +662110,7 @@ github.com/jesseditson/Model-rethink,num_dependents_deps.dev:0 github.com/jesseditson/Urza,num_dependents_deps.dev:0 github.com/jesseditson/absolutize-links,num_dependents_deps.dev:0 github.com/jesseditson/ancient-morse-translator,num_dependents_deps.dev:0 +github.com/jesseditson/archival, github.com/jesseditson/ember-jsonapi,num_dependents_deps.dev:0 github.com/jesseditson/fs-router,num_dependents_deps.dev:2 github.com/jesseditson/grunt-process-css,num_dependents_deps.dev:0 @@ -650184,6 +662176,7 @@ github.com/jessehattabaugh/stator,num_dependents_deps.dev:0 github.com/jessehon/angular-schema-form-ionic,num_dependents_deps.dev:0 github.com/jessehon/angular2-json-schema-form-ionic,num_dependents_deps.dev:0 github.com/jessehouchins/castjs,num_dependents_deps.dev:0 +github.com/jessehouwing/actions-semver-checker, github.com/jesseilev/functional-javascript-rebootu,num_dependents_deps.dev:0 github.com/jessejamescox/node-red-contrib-kbus,num_dependents_deps.dev:0 github.com/jessejburton/localstorage-collection-api,num_dependents_deps.dev:0 @@ -650201,6 +662194,7 @@ github.com/jesselang/dox,num_dependents_deps.dev:0 github.com/jesselap/lotide, github.com/jesselewishill/lodown,num_dependents_deps.dev:0 github.com/jesseliu0/ibstract, +github.com/jesseloudon/azure-storage-firewall-default-action, github.com/jesselpalmer/BASIC,num_dependents_deps.dev:0 github.com/jesselpalmer/cs.js,num_dependents_deps.dev:0 github.com/jesselpalmer/node-emojify,num_dependents_deps.dev:0 @@ -650228,6 +662222,7 @@ github.com/jessemyers/pluscal, github.com/jessemzhang/dendrosplit, github.com/jessemzhang/tn_test, github.com/jessengatai/blox-boiler,num_dependents_deps.dev:0 +github.com/jessenich/tag-bump-action, github.com/jesseocon/mc-sass-lib,num_dependents_deps.dev:0 github.com/jesseokeya/forbes-list,num_dependents_deps.dev:0 github.com/jesseokeya/go-rest-api-template,num_dependents_deps.dev:0 @@ -650276,6 +662271,7 @@ github.com/jessesomerville/tree,num_dependents_deps.dev:0 github.com/jessespenkelink/restify-request-cache,num_dependents_deps.dev:0 github.com/jessesquires/JSQCoreDataKit,criticality_score:0.415570 github.com/jessesquires/PresenterKit,criticality_score:0.350210 +github.com/jessestricker/nix-flake-update, github.com/jessestuart/circle-github-bot,num_dependents_deps.dev:0 github.com/jessestuart/devicon,num_dependents_deps.dev:0 github.com/jessestuart/docker-hub-graphql-api,num_dependents_deps.dev:0 @@ -650395,6 +662391,10 @@ github.com/jessicagreben/wide-load,num_dependents_deps.dev:0 github.com/jessicahayley/bondage.js,num_dependents_deps.dev:0 github.com/jessicahayley/node-mastodon,num_dependents_deps.dev:0 github.com/jessicalins/learning,num_dependents_deps.dev:0 +github.com/jessicalostinspace/bump-semantic-version-action, +github.com/jessicalostinspace/commit-difference-action, +github.com/jessicalostinspace/cut-release-action, +github.com/jessicalostinspace/github-action-get-regex-branch, github.com/jessicamrbr/dotenv-example,num_dependents_deps.dev:0 github.com/jessicamrbr/jsons-to-cnab,num_dependents_deps.dev:0 github.com/jessicapaz/files,num_dependents_deps.dev:0 @@ -650404,6 +662404,7 @@ github.com/jessicaseo83/lotide,num_dependents_deps.dev:0 github.com/jessicasimplicio/card-validation-lib-jess,num_dependents_deps.dev:0 github.com/jessicasimplicio/mD-links-lib,num_dependents_deps.dev:0 github.com/jessicasomaiya/sudoku,num_dependents_deps.dev:0 +github.com/jessicazu/trello-github-actions, github.com/jessie-codes/echo-relic,num_dependents_deps.dev:0 github.com/jessie-codes/gelf-file,num_dependents_deps.dev:0 github.com/jessie-codes/good-gelf,num_dependents_deps.dev:0 @@ -650659,6 +662660,7 @@ github.com/jesussegnini/rubiconproject-api-node,num_dependents_deps.dev:0 github.com/jesussobrino/ng2-library,num_dependents_deps.dev:0 github.com/jesussteve/react-redux-rest-generator,num_dependents_deps.dev:0 github.com/jesusvallez/ngx-translate-extract,num_dependents_deps.dev:0 +github.com/jesusvasquez333/verify-pr-label-action, github.com/jesusvilla/knext,num_dependents_deps.dev:0 github.com/jesusvillamarin/platzom,num_dependents_deps.dev:0 github.com/jesuswasmychoice/nope.db, @@ -650828,6 +662830,7 @@ github.com/jeterdx/tourofgo,num_dependents_deps.dev:0 github.com/jetereting/go_util,num_dependents_deps.dev:0 github.com/jetereting/xls,num_dependents_deps.dev:0 github.com/jetersen/express-ipfilter, +github.com/jetersen/ghaction.file.sync, github.com/jeterson/winthor-auth-service,num_dependents_deps.dev:0 github.com/jetfault/classnames-prefix,num_dependents_deps.dev:0 github.com/jetfuelfinance/fortress-js, @@ -650893,6 +662896,9 @@ github.com/jetlang/remoting,num_dependents_deps.dev:0 github.com/jetli/antd-rs,num_dependents_deps.dev:0 github.com/jetli/create-yew-app,num_dependents_deps.dev:0 github.com/jetli/mdc-rs,num_dependents_deps.dev:0 +github.com/jetli/trunk-action, +github.com/jetli/wasm-bindgen-action, +github.com/jetli/wasm-pack-action, github.com/jetlinks/coap-codec,num_dependents_deps.dev:0 github.com/jetlinks/jetlinks,"criticality_score:0.306020,num_dependents_deps.dev:1" github.com/jetlinks/netty-mqtt-client,num_dependents_deps.dev:0 @@ -650948,6 +662954,7 @@ github.com/jetstack/cert-manager-csi,num_dependents_deps.dev:0 github.com/jetstack/google-cas-issuer,num_dependents_deps.dev:0 github.com/jetstack/kube-lego,"criticality_score:0.307290,num_dependents_deps.dev:0" github.com/jetstack/kube-oidc-proxy,criticality_score:0.360620 +github.com/jetstack/paranoia, github.com/jetstack/preflight,num_dependents_deps.dev:0 github.com/jetstack/tarmak,criticality_score:0.302510 github.com/jetstack/vault-plugin-auth-google,num_dependents_deps.dev:0 @@ -650980,6 +662987,7 @@ github.com/jettison-rails/jettison,num_dependents_deps.dev:0 github.com/jettlin/axios-restful,num_dependents_deps.dev:0 github.com/jettlin/json_object_parser,num_dependents_deps.dev:0 github.com/jettro/c3-angular-directive,num_dependents_deps.dev:0 +github.com/jetty-project/codehaus-jetty6, github.com/jetty-project/h2spec-maven-plugin,num_dependents_deps.dev:0 github.com/jetty-project/jasper-jsp,num_dependents_deps.dev:8426 github.com/jetty-project/jetty-alpn,num_dependents_deps.dev:82 @@ -651074,6 +663082,7 @@ github.com/jexbox/jsf,num_dependents_deps.dev:0 github.com/jexbox/play-plugin,num_dependents_deps.dev:0 github.com/jexbox/tapestry,num_dependents_deps.dev:0 github.com/jexia-inc/Jexia-Angular-Service,num_dependents_deps.dev:0 +github.com/jexia/deploy-action, github.com/jexia/express-session-etcd3, github.com/jexia/jexia-cli, github.com/jexia/jexia-sdk-js, @@ -651692,6 +663701,7 @@ github.com/jfrog/artifactory-user-plugins,criticality_score:0.399500 github.com/jfrog/build-info,num_dependents_deps.dev:90 github.com/jfrog/color,num_dependents_deps.dev:0 github.com/jfrog/file-specs-java,num_dependents_deps.dev:28 +github.com/jfrog/frogbot, github.com/jfrog/go-archive-extractor,num_dependents_deps.dev:0 github.com/jfrog/gocmd,num_dependents_deps.dev:1 github.com/jfrog/gofrog,num_dependents_deps.dev:37 @@ -651706,6 +663716,7 @@ github.com/jfrog/jfrog-ui-essentials, github.com/jfrog/live-logs,num_dependents_deps.dev:0 github.com/jfrog/nuget-deps-tree, github.com/jfrog/project-examples,"criticality_score:0.403980,num_dependents_deps.dev:0" +github.com/jfrog/setup-jfrog-cli, github.com/jfrog/terraform-provider-artifactory,num_dependents_deps.dev:0 github.com/jfrog/xray-client-js,num_dependents_deps.dev:0 github.com/jfrolich/elixir-smoothie,num_dependents_deps.dev:0 @@ -651874,6 +663885,7 @@ github.com/jfuruness/lib_roa_checker, github.com/jfuruness/lib_work_login, github.com/jfuruness/lib_youtube_cd_burner, github.com/jfussion/gota,num_dependents_deps.dev:0 +github.com/jfversluis/dotnet-format, github.com/jfw10973/fetch-plugin,num_dependents_deps.dev:0 github.com/jfw225/ptlib, github.com/jfxcore/jfx,num_dependents_deps.dev:12 @@ -652008,6 +664020,7 @@ github.com/jgarber623/link-header-parser-ruby,num_dependents_deps.dev:8 github.com/jgarber623/micromicro,num_dependents_deps.dev:0 github.com/jgarber623/python-nsfw, github.com/jgarber623/svgeez,num_dependents_deps.dev:0 +github.com/jgarcesres/git2jamf, github.com/jgarcia4444/npr_cli_news_reader,num_dependents_deps.dev:0 github.com/jgardella/compat,num_dependents_deps.dev:0 github.com/jgarff/rpi_ws281x,"criticality_score:0.408530,num_dependents_deps.dev:0" @@ -652060,6 +664073,10 @@ github.com/jgdijk/ng-rds,num_dependents_deps.dev:0 github.com/jgdodson/react-auth-forms,num_dependents_deps.dev:0 github.com/jgdonas/web-scraper,num_dependents_deps.dev:0 github.com/jgdovin/node-soap,num_dependents_deps.dev:0 +github.com/jge162/Action-RunScript, +github.com/jge162/Action-Workflows, +github.com/jge162/Create-Release, +github.com/jge162/verilog_compiler, github.com/jgears/jgears-validator,num_dependents_deps.dev:0 github.com/jgebczak/qparam,num_dependents_deps.dev:0 github.com/jgebczak/simple-colors,num_dependents_deps.dev:0 @@ -652068,6 +664085,7 @@ github.com/jgebhardt/react-for-atom,num_dependents_deps.dev:2 github.com/jgeewax/gclouddatastore, github.com/jgeewax/pyhaml-jinja, github.com/jgehrcke/ci-analysis, +github.com/jgehrcke/github-repo-stats, github.com/jgehrcke/goeffel, github.com/jgehrcke/schniepel, github.com/jgeiger/cfilter,num_dependents_deps.dev:0 @@ -652101,10 +664119,12 @@ github.com/jgfoster/gemstone_ruby,num_dependents_deps.dev:0 github.com/jggc/cordova-plugin-firestore,num_dependents_deps.dev:0 github.com/jggc/firebase-js-sdk,num_dependents_deps.dev:0 github.com/jgh-/VideoCore,Google +github.com/jghiloni/concourse-trigger-job-action, github.com/jghiloni/cpuprimer,num_dependents_deps.dev:0 github.com/jghlt/utilss,num_dependents_deps.dev:0 github.com/jghoman/awesome-apache-airflow,criticality_score:0.377160 github.com/jghowe/express-multiple-views,num_dependents_deps.dev:0 +github.com/jgiannuzzi/setup-build-matrix, github.com/jgiannuzzi/taiga-contrib-saml-auth, github.com/jgibat/njmvc,num_dependents_deps.dev:0 github.com/jgibbon/tingbot-node,num_dependents_deps.dev:0 @@ -652118,6 +664138,7 @@ github.com/jgierer12/gatsby-plugin-indieweb,num_dependents_deps.dev:0 github.com/jgierer12/hooks,num_dependents_deps.dev:0 github.com/jgierer12/js-configs,num_dependents_deps.dev:0 github.com/jgierer12/merge-deep, +github.com/jgierer12/npm-auth-gpr, github.com/jgierer12/react-puggy,num_dependents_deps.dev:0 github.com/jgierer12/react-tag-names,num_dependents_deps.dev:0 github.com/jgieseler/solarmach, @@ -652154,6 +664175,8 @@ github.com/jgillick/node-avr-multibootloader,num_dependents_deps.dev:0 github.com/jgillick/node-discobus,num_dependents_deps.dev:0 github.com/jgillick/python-pause, github.com/jgillick/scrubbr,num_dependents_deps.dev:0 +github.com/jgillick/test-coverage-annotations, +github.com/jgillick/test-coverage-reporter, github.com/jgilliescommure/go,num_dependents_deps.dev:0 github.com/jgilliescommure/go-person,num_dependents_deps.dev:0 github.com/jgillmanjr/addsPy, @@ -652651,12 +664674,14 @@ github.com/jhalterman/recurrent,num_dependents_deps.dev:33 github.com/jhalterman/sarge,num_dependents_deps.dev:0 github.com/jhalterman/typetools,"criticality_score:0.311810,num_dependents_deps.dev:1997" github.com/jhalterman/xsylum,num_dependents_deps.dev:0 +github.com/jhalvorson/ci-pilot-action, github.com/jhalvorson/create-react-app,num_dependents_deps.dev:0 github.com/jhalvorson/html-to-text-cli,num_dependents_deps.dev:0 github.com/jhalvorson/roamdown, github.com/jhalvorson/slug-off,num_dependents_deps.dev:0 github.com/jhalvorson/stringify-file,num_dependents_deps.dev:0 github.com/jhamPac/zulu,num_dependents_deps.dev:0 +github.com/jhamadhav/quote-workflow, github.com/jhamberg/promise-all-sequential,num_dependents_deps.dev:0 github.com/jhamberg/unitime,num_dependents_deps.dev:0 github.com/jhamlet/dice-js,num_dependents_deps.dev:0 @@ -653085,6 +665110,7 @@ github.com/jherr/react-custom-element-builder,num_dependents_deps.dev:0 github.com/jherr/vue-music-notation, github.com/jherson/mongo-api,num_dependents_deps.dev:0 github.com/jhertz123/katujo-web-utils,num_dependents_deps.dev:0 +github.com/jhesch/dirty-bits, github.com/jhesch/integra,num_dependents_deps.dev:0 github.com/jhessin/coffee-babel,num_dependents_deps.dev:0 github.com/jhessin/generator-coffee-mithril,num_dependents_deps.dev:0 @@ -653137,6 +665163,7 @@ github.com/jhg/drop-root-rs,num_dependents_deps.dev:0 github.com/jhg/npm-activate,num_dependents_deps.dev:0 github.com/jhg/opaque-pointer-rs,num_dependents_deps.dev:0 github.com/jhg/tui-image-viewer,num_dependents_deps.dev:0 +github.com/jhg/wasm2js-action, github.com/jhg023/BitBuffer,num_dependents_deps.dev:0 github.com/jhg023/Pbbl,num_dependents_deps.dev:3 github.com/jhg023/SimpleNet,num_dependents_deps.dev:0 @@ -653166,6 +665193,10 @@ github.com/jhiesey/stream-http,"criticality_score:0.343470,num_dependents_deps.d github.com/jhiesey/to-arraybuffer,num_dependents_deps.dev:101284 github.com/jhiesey/videostream,num_dependents_deps.dev:340 github.com/jhiggs85/node-rolling-spider,num_dependents_deps.dev:0 +github.com/jhihyulin/deta-change-visor-action, +github.com/jhihyulin/deta-create-micro-action, +github.com/jhihyulin/deta-deploy-action, +github.com/jhihyulin/deta-update-env-action, github.com/jhilbs3/pwnc, github.com/jhilden/i18n_viz,num_dependents_deps.dev:0 github.com/jhilden/jquery-ui-sass-rails,num_dependents_deps.dev:0 @@ -653239,6 +665270,7 @@ github.com/jhlabs/react-phone-input-2,num_dependents_deps.dev:0 github.com/jhladka/BLOOBS, github.com/jhlagado/angular1-materialize,num_dependents_deps.dev:0 github.com/jhlagado/f-layout,num_dependents_deps.dev:0 +github.com/jhleao/release-summary, github.com/jhlee838/blue-lang, github.com/jhleekr/kakao.py, github.com/jhleeo/golang_tutorial,num_dependents_deps.dev:0 @@ -653330,6 +665362,8 @@ github.com/jhonalino/hls-to-hex,num_dependents_deps.dev:0 github.com/jhonaswitow/funnycommands,num_dependents_deps.dev:0 github.com/jhonatan89/lib-mocks-temp,num_dependents_deps.dev:0 github.com/jhonatangs/slsdt, +github.com/jhonatanmacazana/action-caprover, +github.com/jhonatanmacazana/action-nx-affected-list, github.com/jhonatanmacazana/ts-binary-install,num_dependents_deps.dev:0 github.com/jhonatanmacazana/vsr-new,num_dependents_deps.dev:0 github.com/jhonatanrsantos/go-exercices,num_dependents_deps.dev:0 @@ -653451,7 +665485,10 @@ github.com/jhpratt/babel-plugin-inline-json-props,num_dependents_deps.dev:0 github.com/jhpratt/decorators,num_dependents_deps.dev:0 github.com/jhpratt/deranged,num_dependents_deps.dev:0 github.com/jhpratt/esfetch,num_dependents_deps.dev:0 +github.com/jhpratt/num-conv, +github.com/jhpratt/num_threads, github.com/jhpratt/option-result,num_dependents_deps.dev:0 +github.com/jhpratt/powerfmt, github.com/jhpratt/range,num_dependents_deps.dev:0 github.com/jhpratt/rocket_conditional_attach,num_dependents_deps.dev:0 github.com/jhpratt/skrolr,num_dependents_deps.dev:0 @@ -653604,6 +665641,7 @@ github.com/jhuckaby/uncatch,num_dependents_deps.dev:34 github.com/jhuckaby/webcamjs,"criticality_score:0.343960,num_dependents_deps.dev:10" github.com/jhuckaby/wperf,num_dependents_deps.dev:0 github.com/jhuckaby/zeroupload,num_dependents_deps.dev:0 +github.com/jhudsl/ottr-reports, github.com/jhudson8/backbone-async-event,num_dependents_deps.dev:0 github.com/jhudson8/backbone-query-parameters,num_dependents_deps.dev:0 github.com/jhudson8/backbone-reaction,num_dependents_deps.dev:0 @@ -653706,6 +665744,8 @@ github.com/jhusain/reanimated.macro,num_dependents_deps.dev:0 github.com/jhusain/remux2,num_dependents_deps.dev:0 github.com/jhusain/task-lib,num_dependents_deps.dev:0 github.com/jhuseman/Guavacado, +github.com/jhutchings1/conda-dependency-submission-action, +github.com/jhutchings1/spdx-to-dependency-graph-action, github.com/jhuynh240/lodown,num_dependents_deps.dev:0 github.com/jhv/oneNeuron_pypi, github.com/jhvar/django-utils, @@ -653724,6 +665764,7 @@ github.com/jhwohlgemuth/pwngoal,num_dependents_deps.dev:0 github.com/jhwohlgemuth/snapsvg-hexagonal,num_dependents_deps.dev:0 github.com/jhwohlgemuth/tomo-cli,num_dependents_deps.dev:0 github.com/jhwohlgemuth/voxelcss,num_dependents_deps.dev:0 +github.com/jhwz/minio-action, github.com/jhwz/passwordmanager,num_dependents_deps.dev:0 github.com/jhx/gem-cssbuttongenerator-css-rails,num_dependents_deps.dev:0 github.com/jhx/gem-enableplaceholder-jquery-rails,num_dependents_deps.dev:0 @@ -653757,6 +665798,7 @@ github.com/jiacai-wang/alidns,num_dependents_deps.dev:0 github.com/jiacai2050/better-history,num_dependents_deps.dev:0 github.com/jiacai2050/blog-backup,num_dependents_deps.dev:0 github.com/jiacai2050/chrome-history-stat,num_dependents_deps.dev:0 +github.com/jiachengpan/download-comment-files, github.com/jiachengxu/coredns,num_dependents_deps.dev:0 github.com/jiachengzhang1/newsapi-java,num_dependents_deps.dev:0 github.com/jiachitor/TOTO-UI, @@ -654153,6 +666195,7 @@ github.com/jiangxiaoxin/hi-npm-cn,num_dependents_deps.dev:0 github.com/jiangxiaoyuww/sghmc-, github.com/jiangxiayun/flow-editor-vue,num_dependents_deps.dev:0 github.com/jiangxin/compare-sed-perl,num_dependents_deps.dev:0 +github.com/jiangxin/file-exists-action, github.com/jiangxin/gistore,num_dependents_deps.dev:0 github.com/jiangxin/goconfig,num_dependents_deps.dev:0 github.com/jiangxinlei/vmonitor,num_dependents_deps.dev:0 @@ -654227,6 +666270,7 @@ github.com/jiankanglianhct/hct,num_dependents_deps.dev:0 github.com/jiankunLi2018/rrwebSDK,num_dependents_deps.dev:0 github.com/jianli/git-get-merge, github.com/jianli/git-playback, +github.com/jianliang00/commit-queue-actions, github.com/jianliao/spectrum-css-test-asset,num_dependents_deps.dev:0 github.com/jianliao/xd-thumbnail-extractor, github.com/jianliaoim/react-stack-modal,num_dependents_deps.dev:0 @@ -654556,8 +666600,10 @@ github.com/jidesoft/jidejs,num_dependents_deps.dev:0 github.com/jidibingren/ios-ipa-server,num_dependents_deps.dev:0 github.com/jidibingren/simple-fileserver,num_dependents_deps.dev:0 github.com/jidicula/activity-contest-server,num_dependents_deps.dev:0 +github.com/jidicula/clang-format-action, github.com/jidicula/gamco,num_dependents_deps.dev:0 github.com/jidicula/gamco-nav-check,num_dependents_deps.dev:0 +github.com/jidicula/go-fuzz-action, github.com/jidicula/go-gamco,num_dependents_deps.dev:0 github.com/jidicula/gopl-exercises,num_dependents_deps.dev:0 github.com/jidicula/gorm-quickstart,num_dependents_deps.dev:0 @@ -654681,6 +666727,7 @@ github.com/jieuryli/number-formatter,num_dependents_deps.dev:0 github.com/jieverson/hyperemoji,num_dependents_deps.dev:0 github.com/jievince/glog,num_dependents_deps.dev:0 github.com/jievince/liner,num_dependents_deps.dev:0 +github.com/jievince/upload-to-oss, github.com/jiewazi/ccs-gm,num_dependents_deps.dev:0 github.com/jiewj/generator-jiewj-webpack,num_dependents_deps.dev:0 github.com/jiexa24/chef-webapi,num_dependents_deps.dev:0 @@ -654751,6 +666798,7 @@ github.com/jiggliemon/kiev,num_dependents_deps.dev:0 github.com/jiggliemon/parsed,num_dependents_deps.dev:0 github.com/jiggliemon/yayo,num_dependents_deps.dev:0 github.com/jiggliemon/yeah,num_dependents_deps.dev:0 +github.com/jigglycrumb/action-deploy-workspace-to-repo, github.com/jiggum/react-dust-effect,num_dependents_deps.dev:0 github.com/jiggum/react-thanos-glove,num_dependents_deps.dev:0 github.com/jiggum/redux-batched-dispatch,num_dependents_deps.dev:0 @@ -654829,6 +666877,7 @@ github.com/jihoonson/iron-arrow,num_dependents_deps.dev:0 github.com/jihuagou/system,num_dependents_deps.dev:0 github.com/jihuayu/aliyun-iot-sdk,num_dependents_deps.dev:0 github.com/jihunleekr/problem_solving_offline_judge_python, +github.com/jihyungSong/humancat, github.com/jiihu/create-react-app,num_dependents_deps.dev:0 github.com/jiiis/flatbuffers,num_dependents_deps.dev:0 github.com/jiiis/jlayout,num_dependents_deps.dev:0 @@ -654894,6 +666943,7 @@ github.com/jikkai/vue2-dnd,num_dependents_deps.dev:0 github.com/jiko21/flav-md,num_dependents_deps.dev:0 github.com/jikuja/azure-msi-keyvault,num_dependents_deps.dev:0 github.com/jikuja/tsc-checkjs,num_dependents_deps.dev:0 +github.com/jikuma/githubaction, github.com/jikurata/build-project,num_dependents_deps.dev:0 github.com/jikurata/compile-html,num_dependents_deps.dev:0 github.com/jikurata/events,num_dependents_deps.dev:0 @@ -655040,6 +667090,7 @@ github.com/jim/ocrunner,num_dependents_deps.dev:0 github.com/jim060/ng2-smart-table-jhipster, github.com/jim0611tw/lyrics_t,num_dependents_deps.dev:0 github.com/jim12312321/lacdtest, +github.com/jim19901103/backup-mongo-action, github.com/jim22k/roundtable, github.com/jim3ma/checkup,num_dependents_deps.dev:0 github.com/jim3ma/clog,num_dependents_deps.dev:0 @@ -655059,6 +667110,7 @@ github.com/jimbethancourt/dtangler,num_dependents_deps.dev:8 github.com/jimbirthday/golang-tcp,num_dependents_deps.dev:0 github.com/jimblandy/perf-event,num_dependents_deps.dev:37 github.com/jimblandy/perf-event-open-sys,num_dependents_deps.dev:60 +github.com/jimbloemkolk/auto-rebase, github.com/jimblue/grav-plugin-webpacker,num_dependents_deps.dev:0 github.com/jimbly/howler.js,num_dependents_deps.dev:0 github.com/jimbo/normal-forme,num_dependents_deps.dev:0 @@ -655076,6 +667128,7 @@ github.com/jimbojw/php-extract.js,num_dependents_deps.dev:0 github.com/jimbol/ember-template-middleware,num_dependents_deps.dev:0 github.com/jimbol/expect-gen,num_dependents_deps.dev:0 github.com/jimbol/generator-test-runner,num_dependents_deps.dev:0 +github.com/jimbrig/todoist-readme, github.com/jimbrittain/grunt-require-cache-clear,num_dependents_deps.dev:0 github.com/jimbuck/pully-core, github.com/jimbuho/code-scripts,num_dependents_deps.dev:0 @@ -655111,8 +667164,10 @@ github.com/jimeh/emacs-builds,num_dependents_deps.dev:0 github.com/jimeh/fastmail-rules,num_dependents_deps.dev:0 github.com/jimeh/node-base58,num_dependents_deps.dev:22 github.com/jimeh/redistat,num_dependents_deps.dev:0 +github.com/jimeh/release-please-manifest-action, github.com/jimeh/solargraph,num_dependents_deps.dev:0 github.com/jimeh/time_ext,num_dependents_deps.dev:0 +github.com/jimeh/update-tags-action, github.com/jimej/goawslib,num_dependents_deps.dev:0 github.com/jimen0/fdns,num_dependents_deps.dev:0 github.com/jimenez/go-sample,num_dependents_deps.dev:0 @@ -655402,6 +667457,7 @@ github.com/jimkinsey/q-it-up,num_dependents_deps.dev:0 github.com/jimkinsey/q-link,num_dependents_deps.dev:0 github.com/jimklo/pyiso8601plus, github.com/jimklonowski/jquery.jimlinkit,num_dependents_deps.dev:0 +github.com/jimkring/action-python-nogil, github.com/jimkyndemeyer/js-graphql-intellij-plugin,criticality_score:0.419240 github.com/jimlambie/carl,num_dependents_deps.dev:0 github.com/jimlambie/connect-api-sessions,num_dependents_deps.dev:0 @@ -655499,6 +667555,7 @@ github.com/jimmy319/react-ig-indicator,num_dependents_deps.dev:0 github.com/jimmy319/universal-react-apollo,num_dependents_deps.dev:0 github.com/jimmy3663/personal-practice,num_dependents_deps.dev:0 github.com/jimmy808126/bornCordova,num_dependents_deps.dev:0 +github.com/jimmy927/reviewdog-action-prettier, github.com/jimmyahalpara/Pytable, github.com/jimmyandrademusic/.com,num_dependents_deps.dev:0 github.com/jimmyangel/sampleterrain,num_dependents_deps.dev:0 @@ -655554,6 +667611,7 @@ github.com/jimmyfortinx/gulp-node-build-tasks,num_dependents_deps.dev:0 github.com/jimmyfortinx/npm-scripts-config,num_dependents_deps.dev:0 github.com/jimmyfortinx/npm-scripts-conventional-changelog,num_dependents_deps.dev:0 github.com/jimmyfrasche/autoreadme,num_dependents_deps.dev:0 +github.com/jimmygchen/runner-fallback-action, github.com/jimmyhedstr0m/interceptor,num_dependents_deps.dev:0 github.com/jimmyhillis/what-mac,num_dependents_deps.dev:0 github.com/jimmyhmiller/multiple-methods,num_dependents_deps.dev:0 @@ -655600,6 +667658,7 @@ github.com/jimmynono/fizzbuzz-redux__W5-A4,num_dependents_deps.dev:0 github.com/jimmynotjim/generator-genesis-evolution, github.com/jimmynotjim/scrollNav,"num_dependents_deps.dev:0,criticality_score:0.318470" github.com/jimmyou587/stegno, +github.com/jimmypoulsen/jira-relay, github.com/jimmyppi/searchcmd, github.com/jimmypw/adcs,num_dependents_deps.dev:0 github.com/jimmypw/fsnapshot,num_dependents_deps.dev:0 @@ -655718,11 +667777,16 @@ github.com/jimschubert/angular-dragon-drop,num_dependents_deps.dev:0 github.com/jimschubert/beast-changelog-action,num_dependents_deps.dev:0 github.com/jimschubert/brushes.js,num_dependents_deps.dev:0 github.com/jimschubert/changelog,num_dependents_deps.dev:0 +github.com/jimschubert/delete-artifacts-action, github.com/jimschubert/generator-npm-es6,num_dependents_deps.dev:0 github.com/jimschubert/generator-tizenwebui,num_dependents_deps.dev:0 github.com/jimschubert/kopper,num_dependents_deps.dev:0 +github.com/jimschubert/labeler-action, +github.com/jimschubert/query-tag-action, github.com/jimschubert/stress, github.com/jimschubert/tweeter.js,num_dependents_deps.dev:0 +github.com/jimseiwert/sonarqube-scanner-linux, +github.com/jimseiwert/sonarqube-scanner-windows, github.com/jimshute/visual-sprite,num_dependents_deps.dev:0 github.com/jimsimon/karma-web-components,num_dependents_deps.dev:0 github.com/jimsloan/qliqsoft-api,num_dependents_deps.dev:0 @@ -655775,6 +667839,8 @@ github.com/jimx6/react-multi-toogle,num_dependents_deps.dev:0 github.com/jimx6/simple-aws-cloud-map, github.com/jimy-byerley/arrex, github.com/jimy-byerley/pymadcad, +github.com/jimyang-9/jira-version, +github.com/jimyang-9/release-jira-fix-version, github.com/jimyj/proxygrabber,num_dependents_deps.dev:0 github.com/jimyx17/goav,num_dependents_deps.dev:0 github.com/jimzandueta/stocksjs,num_dependents_deps.dev:0 @@ -655840,6 +667906,9 @@ github.com/jinCN/observe,num_dependents_deps.dev:0 github.com/jinCN/require-auto,num_dependents_deps.dev:0 github.com/jinCN/value-map,num_dependents_deps.dev:0 github.com/jinCN/wait,num_dependents_deps.dev:0 +github.com/jina-ai/action-hub-builder, +github.com/jina-ai/action-hubble-push, +github.com/jina-ai/action-hubble-test-docker, github.com/jina-ai/annlite, github.com/jina-ai/docarray, github.com/jina-ai/finetuner, @@ -656183,6 +668252,7 @@ github.com/jinjamator/jinjamator, github.com/jinjamator/jinjamator-plugin-output-apic, github.com/jinjamator/pyperf2, github.com/jinjamator/simplenetlink, +github.com/jinjat-data/gh-pages-deploy-action, github.com/jinji-jiangyang/generator-h5workflow,num_dependents_deps.dev:0 github.com/jinjiaji512/bb-demo,num_dependents_deps.dev:0 github.com/jinjiajin/mpvue-mpParse,num_dependents_deps.dev:0 @@ -656242,6 +668312,7 @@ github.com/jinlongwukong/go-cisco-webex-teams,num_dependents_deps.dev:0 github.com/jinmang2/DOOLY, github.com/jinmatt/goat,num_dependents_deps.dev:0 github.com/jinmayamashita/overlayslide,num_dependents_deps.dev:0 +github.com/jinmayamashita/ready-for-review, github.com/jinmayamashita/spaceblock,num_dependents_deps.dev:0 github.com/jinmiaoluo/goplay,num_dependents_deps.dev:0 github.com/jinming1937/storage-ctrl,num_dependents_deps.dev:0 @@ -656380,6 +668451,7 @@ github.com/jinzhe/sandbox,num_dependents_deps.dev:0 github.com/jinzhe/vue-keypad,num_dependents_deps.dev:0 github.com/jinzhe/vue-swipe,num_dependents_deps.dev:0 github.com/jinzhe0094/uitestrunner_syberos, +github.com/jinzhijiang/docker-action-fabric, github.com/jinzhijie/graiax-nem, github.com/jinzhongmin/screenshot,num_dependents_deps.dev:0 github.com/jinzhu/configor,num_dependents_deps.dev:71 @@ -656441,6 +668513,7 @@ github.com/jiqiangccie/common-tools,num_dependents_deps.dev:0 github.com/jiqiangccie/commontools,num_dependents_deps.dev:0 github.com/jiqsaw/ng-currency-format,num_dependents_deps.dev:0 github.com/jira-node/node-jira-client,"criticality_score:0.460600,num_dependents_deps.dev:42" +github.com/jira-tools/action-jira-linter, github.com/jiraiyame/global-fetch,num_dependents_deps.dev:0 github.com/jiraiyame/react-nagrand-gl,num_dependents_deps.dev:0 github.com/jiramategithub/golang-tutorial,num_dependents_deps.dev:0 @@ -656484,6 +668557,7 @@ github.com/jirenius/resgate,num_dependents_deps.dev:0 github.com/jirenius/taskqueue,num_dependents_deps.dev:0 github.com/jireva/redo,num_dependents_deps.dev:0 github.com/jireve999/saji-pages,num_dependents_deps.dev:0 +github.com/jirevwe/typesense-github-action, github.com/jirfag/cameradar,num_dependents_deps.dev:0 github.com/jirfag/fabric8-wit,num_dependents_deps.dev:0 github.com/jirgl/jirgl-data-structures,num_dependents_deps.dev:0 @@ -656517,6 +668591,7 @@ github.com/jirikuchta/angular-szn-autocomplete,num_dependents_deps.dev:0 github.com/jirikuchta/garmin-ical-export, github.com/jirikuncar/alps, github.com/jirikuncar/git-json-tree, +github.com/jirikuncar/recorder, github.com/jirimracek/conjugate-esp,num_dependents_deps.dev:0 github.com/jiripospisil/ashley,num_dependents_deps.dev:0 github.com/jiripospisil/ashley-koa,num_dependents_deps.dev:0 @@ -656526,9 +668601,13 @@ github.com/jiripudil/neon-loader,num_dependents_deps.dev:0 github.com/jirkafm/generic-artifactory-deploy-maven-plugin,num_dependents_deps.dev:0 github.com/jirnexu/msisdn-parser,num_dependents_deps.dev:0 github.com/jiro4989/align,num_dependents_deps.dev:0 +github.com/jiro4989/build-deb-action, +github.com/jiro4989/build-rpm-action, github.com/jiro4989/colc,num_dependents_deps.dev:0 github.com/jiro4989/jmeter_sample,num_dependents_deps.dev:0 +github.com/jiro4989/nimlint-action, github.com/jiro4989/relma,num_dependents_deps.dev:0 +github.com/jiro4989/setup-nim-action, github.com/jiro4989/textimg,num_dependents_deps.dev:0 github.com/jiro4989/vhwatch,num_dependents_deps.dev:0 github.com/jironghuang/bootstrap-index, @@ -656571,6 +668650,7 @@ github.com/jirutka/rake-jekyll,num_dependents_deps.dev:0 github.com/jirutka/rsql-parser,num_dependents_deps.dev:364 github.com/jirutka/rsub-client, github.com/jirutka/ruby-beautify2,num_dependents_deps.dev:0 +github.com/jirutka/setup-alpine, github.com/jirutka/slim-htag,num_dependents_deps.dev:0 github.com/jirutka/spring-boot-servlet-inherit-channel,num_dependents_deps.dev:0 github.com/jirutka/spring-data-jdbc-repository,num_dependents_deps.dev:0 @@ -656726,6 +668806,7 @@ github.com/jithin-zachariah/gherkin-parse,num_dependents_deps.dev:0 github.com/jithin012/react-custom-dropdown,num_dependents_deps.dev:0 github.com/jithin8mathew/Protein-feature-extraction, github.com/jithindasad/git-profile,num_dependents_deps.dev:0 +github.com/jithindevasia/demo-action, github.com/jithinj-lp/lpgit, github.com/jithinlal/react-neumorph, github.com/jithinsebastian2/react-horizontal-infinite-scroll,num_dependents_deps.dev:0 @@ -656794,6 +668875,8 @@ github.com/jitta/spinal,num_dependents_deps.dev:0 github.com/jittakal/cli,num_dependents_deps.dev:0 github.com/jittapont/go-mock-test,num_dependents_deps.dev:0 github.com/jittapont/test-3,num_dependents_deps.dev:0 +github.com/jitterbit/await-check-suites, +github.com/jitterbit/get-changed-files, github.com/jitterbit/npdynamodb,num_dependents_deps.dev:0 github.com/jittuu/react-native-detect-mm-text-encoding,num_dependents_deps.dev:0 github.com/jitu143-hub/cloudnativedevops-demo,num_dependents_deps.dev:0 @@ -656803,6 +668886,7 @@ github.com/jituanlin/by-jituanlin-match,num_dependents_deps.dev:0 github.com/jituanlin/gitlab-merge-request-flow,num_dependents_deps.dev:0 github.com/jituanlin/toy-js,num_dependents_deps.dev:0 github.com/jituboss/django-stisla, +github.com/jitvimol/practice_automl, github.com/jitwxs/commons,num_dependents_deps.dev:0 github.com/jiu-chen/gopractice,num_dependents_deps.dev:0 github.com/jiu2015/gotestspace,num_dependents_deps.dev:0 @@ -656902,6 +668986,7 @@ github.com/jiwenjiang/Positioning-jssdk,num_dependents_deps.dev:0 github.com/jiwenjiang/react-audio-analyser,num_dependents_deps.dev:0 github.com/jiwenyoung/koa-logging-middleware, github.com/jiwenyoung/tmdb-api,num_dependents_deps.dev:0 +github.com/jiwidi/python-lint-action, github.com/jiwonMe/KONCERT, github.com/jiwonchang/gyp-converter,num_dependents_deps.dev:0 github.com/jiwoncpark/baobab, @@ -656922,6 +669007,7 @@ github.com/jixing475/usethatPy, github.com/jixuan1989/aop_time_cost,num_dependents_deps.dev:0 github.com/jixuyang/gotest,num_dependents_deps.dev:0 github.com/jiyarong/decodewechat,num_dependents_deps.dev:0 +github.com/jiyeonseo/daily-hackernews-action, github.com/jiyeonseo/gatsby-source-giphy-trending,num_dependents_deps.dev:0 github.com/jiyeyuran/dbr,num_dependents_deps.dev:0 github.com/jiyeyuran/go-eventemitter,num_dependents_deps.dev:1 @@ -657059,6 +669145,7 @@ github.com/jjanssen/django-testhook, github.com/jjant/active-select,num_dependents_deps.dev:0 github.com/jjanzen27/golang_dsa,num_dependents_deps.dev:0 github.com/jjaros587/selenium_generator, +github.com/jjasghar/actions-words-really-matter, github.com/jjasghar/chef-handler-campfire,num_dependents_deps.dev:0 github.com/jjasghar/hubot-chef,num_dependents_deps.dev:0 github.com/jjasghar/hubot-dance,num_dependents_deps.dev:0 @@ -657111,6 +669198,7 @@ github.com/jjcarrancia/angular2-paginator,num_dependents_deps.dev:0 github.com/jjcarrancia/ionic2-stars-valoration,num_dependents_deps.dev:0 github.com/jjcastano/batch-promise,num_dependents_deps.dev:0 github.com/jjcav84/prisma-mongo-ecom,num_dependents_deps.dev:0 +github.com/jjchiw/ms-teams-deploy-card, github.com/jjcinaz/certutils,num_dependents_deps.dev:0 github.com/jjcinaz/sheeptabulator,num_dependents_deps.dev:0 github.com/jjclark1982/factorio-control-panel, @@ -657253,6 +669341,7 @@ github.com/jjlawren/python-plexauth, github.com/jjlawren/python-plexwebsocket, github.com/jjlharrison/gulp-multimarkdown,num_dependents_deps.dev:0 github.com/jjlharrison/gulp-rtlcss,num_dependents_deps.dev:262 +github.com/jjliggett/jjversion-action, github.com/jjlmoya/css-slider,num_dependents_deps.dev:0 github.com/jjlorenzo/in-dir-exec,num_dependents_deps.dev:0 github.com/jjlorenzo/show-direnv-diff,num_dependents_deps.dev:0 @@ -657363,12 +669452,14 @@ github.com/jjrmich/rounded-rectangle,num_dependents_deps.dev:0 github.com/jjrobotcn/andy4,num_dependents_deps.dev:0 github.com/jjs-dev/ci-config-gen,num_dependents_deps.dev:0 github.com/jjs1233/image_info,num_dependents_deps.dev:0 +github.com/jjs98/pnpm-install-action, github.com/jjsch-dev/PyArduinoFlash, github.com/jjsearle/ari-py, github.com/jjsearle/asterisklint, github.com/jjshammas/gulp-react-native-stylesheet-css,num_dependents_deps.dev:0 github.com/jjsl/namecheap,num_dependents_deps.dev:0 github.com/jjsman/jsonn, +github.com/jjst/action-digitalocean-deploy-app, github.com/jjst/rbautofillbug, github.com/jjstickel/scikit-datasmooth, github.com/jjstiff/png-scale,num_dependents_deps.dev:0 @@ -657517,6 +669608,7 @@ github.com/jkahrs/go-bindata,num_dependents_deps.dev:0 github.com/jkahrs/log-courier,num_dependents_deps.dev:0 github.com/jkahrs/zabbix,num_dependents_deps.dev:0 github.com/jkakar/commandant, +github.com/jkakavas/parse-issue-comment-action, github.com/jkal/python-aba, github.com/jkalina/esi-middleware,num_dependents_deps.dev:0 github.com/jkalina/gulp-less2js,num_dependents_deps.dev:0 @@ -657749,6 +669841,7 @@ github.com/jkirchartz/pos2tracery,num_dependents_deps.dev:0 github.com/jkirkby91-2/vue-apiArchitect,num_dependents_deps.dev:0 github.com/jkirkpatrick24/react-create-component-cli,num_dependents_deps.dev:0 github.com/jkirkwood/placemat,num_dependents_deps.dev:0 +github.com/jkisk/list-open-pulls, github.com/jkisk/multi-hook,num_dependents_deps.dev:0 github.com/jkisk/multihook,num_dependents_deps.dev:0 github.com/jkiss/nk-datatables,num_dependents_deps.dev:0 @@ -657963,6 +670056,8 @@ github.com/jkroepke/github_exporter,num_dependents_deps.dev:0 github.com/jkroepke/helm,num_dependents_deps.dev:0 github.com/jkroepke/lens-extension-certificate-info,num_dependents_deps.dev:0 github.com/jkroepke/openvpn-auth-azure-ad, +github.com/jkroepke/setup-helmfile, +github.com/jkroepke/setup-vals, github.com/jkroepke/webpack-file-preprocessor-plugin,num_dependents_deps.dev:0 github.com/jkrogager/PyNOT, github.com/jkrogager/VoigtFit, @@ -658118,6 +670213,7 @@ github.com/jkulton/topical,num_dependents_deps.dev:0 github.com/jkulvich/tobin,num_dependents_deps.dev:0 github.com/jkulvich/vkauth,num_dependents_deps.dev:0 github.com/jkuma/fizzbuzz,num_dependents_deps.dev:0 +github.com/jkumar19/sonar-build-breaker, github.com/jkup/TextWithNewlines,num_dependents_deps.dev:0 github.com/jkup/a11y-string,num_dependents_deps.dev:0 github.com/jkup/catpack,num_dependents_deps.dev:0 @@ -658297,6 +670393,7 @@ github.com/jlamendo/strsearch,num_dependents_deps.dev:0 github.com/jlami/ember-cli-analytics-statcounter, github.com/jlandersen/vsts-api,num_dependents_deps.dev:0 github.com/jlandowner/go-zaim,num_dependents_deps.dev:0 +github.com/jlandowner/helm-chartsnap-action, github.com/jlandowner/kubernetes-route53-sync,num_dependents_deps.dev:0 github.com/jlandowner/psp-util,num_dependents_deps.dev:0 github.com/jlandrews/cosmos-sdk,num_dependents_deps.dev:0 @@ -658376,6 +670473,7 @@ github.com/jlburkhead/ec2-event,num_dependents_deps.dev:0 github.com/jlburkhead/redis-limit, github.com/jlbyh2o/django-zurb-foundation-6, github.com/jlcain3/stikit,num_dependents_deps.dev:0 +github.com/jlcaraballo/gh-notion, github.com/jlcarmic/node-dfs,num_dependents_deps.dev:0 github.com/jlcarmic/node-stattleship,num_dependents_deps.dev:0 github.com/jlcarvalho/filesquash-widget, @@ -658687,6 +670785,7 @@ github.com/jleonard/firebase-for-your-face,num_dependents_deps.dev:0 github.com/jleonardvp/redux-import-export-dock-monitor,num_dependents_deps.dev:0 github.com/jlep/gearsloth-mem-adapter,num_dependents_deps.dev:0 github.com/jlepinski/pyconvcli, +github.com/jlepocher/mailgun-create-template-version-action, github.com/jleppert/nodequad,num_dependents_deps.dev:0 github.com/jleppert/opencv4nodejs,num_dependents_deps.dev:0 github.com/jleppert/prufer,num_dependents_deps.dev:0 @@ -658701,6 +670800,7 @@ github.com/jleskovar/graphql-java,num_dependents_deps.dev:0 github.com/jleskovar/spring-boot-scala-app-parent,num_dependents_deps.dev:0 github.com/jleskovar/vue-native-websocket,num_dependents_deps.dev:0 github.com/jlesly/hungry_vegan,num_dependents_deps.dev:0 +github.com/jlesquembre/clojars-publish-action, github.com/jlesquembre/coc-conjure,num_dependents_deps.dev:0 github.com/jlesquembre/jlle, github.com/jletellier/langeroids,num_dependents_deps.dev:0 @@ -658718,6 +670818,7 @@ github.com/jlevesy/go-sind,num_dependents_deps.dev:0 github.com/jlevesy/sind,num_dependents_deps.dev:0 github.com/jlevine22/node-netatmo-api,num_dependents_deps.dev:0 github.com/jlevon/zoom-lomax,num_dependents_deps.dev:0 +github.com/jlevy-io/wait-for-netlify-deploy-with-headers, github.com/jlevy/ghizmo, github.com/jlevy/og-equity-compensation,criticality_score:0.385560 github.com/jlevy/pdiffjson,num_dependents_deps.dev:0 @@ -658733,6 +670834,7 @@ github.com/jlewczyk/git-hooks-js-win, github.com/jlewczyk/ngx-json-viewer,num_dependents_deps.dev:0 github.com/jlewczyk/swagger-ui-express-oauth2,num_dependents_deps.dev:0 github.com/jleyba/js-dossier,"Google,num_dependents_deps.dev:0" +github.com/jlfrancisco/github-action-docker, github.com/jlfsjunior/dash_chakraui_components, github.com/jlfwong/chrome2calltree, github.com/jlfwong/speedscope,"criticality_score:0.432750,num_dependents_deps.dev:0" @@ -658925,6 +671027,7 @@ github.com/jln-pl/grunt-release-plugin,num_dependents_deps.dev:0 github.com/jln-pl/grunt-version-manager,num_dependents_deps.dev:0 github.com/jln-pl/js-360,num_dependents_deps.dev:0 github.com/jlndk/ObservableList,num_dependents_deps.dev:0 +github.com/jlndk/github-action-jest, github.com/jlnerd/JLpyUtils, github.com/jlnerd/JLpy_utils_package, github.com/jlnerd/pyDSlib, @@ -659127,6 +671230,7 @@ github.com/jlukic/require-dot-file,num_dependents_deps.dev:246 github.com/jlumbroso/codepost-stats, github.com/jlumbroso/combstruct2json, github.com/jlumbroso/comma, +github.com/jlumbroso/free-disk-space, github.com/jlumbroso/grubhub, github.com/jlumbroso/imslp, github.com/jlumbroso/incipit, @@ -659325,6 +671429,7 @@ github.com/jmadankumar/react-scrollup-lite,num_dependents_deps.dev:0 github.com/jmadelaine/baselift,num_dependents_deps.dev:0 github.com/jmadelaine/react-use-validation,num_dependents_deps.dev:0 github.com/jmadelaine/ts-guardian,num_dependents_deps.dev:0 +github.com/jmadler/git-subtree-action, github.com/jmaenpaa/db2_helpers, github.com/jmaerte/pysmps, github.com/jmaferreira/homebridge-garage-door-shelly1,num_dependents_deps.dev:0 @@ -659353,6 +671458,7 @@ github.com/jmagnusson/sentry-dramatiq, github.com/jmagnusson/sentry-falcon, github.com/jmagnusson/sqlalchemy-geonames, github.com/jmagrippis/client-cookies, +github.com/jmagrippis/markdown-to-supabase, github.com/jmagrippis/react-googleyolo,num_dependents_deps.dev:0 github.com/jmagrippis/react-maps-loader,num_dependents_deps.dev:0 github.com/jmagrippis/react-window-global-loader,num_dependents_deps.dev:0 @@ -659525,6 +671631,8 @@ github.com/jmarquis/autosftp,num_dependents_deps.dev:0 github.com/jmarquis/broccoli-svgstore,num_dependents_deps.dev:24 github.com/jmarquis/rowt,num_dependents_deps.dev:0 github.com/jmarrec/idf-tags, +github.com/jmarrec/rubocop-composite-action, +github.com/jmarrec/setup-qtifw, github.com/jmarrietar/tfr_image, github.com/jmarroyave/mlb-ui-lib,num_dependents_deps.dev:0 github.com/jmars/drum,num_dependents_deps.dev:0 @@ -659573,8 +671681,15 @@ github.com/jmather/node-fake-api-server,num_dependents_deps.dev:0 github.com/jmather/scope.js,num_dependents_deps.dev:0 github.com/jmathewburns/rangefun,num_dependents_deps.dev:0 github.com/jmatraszek/haxonite,num_dependents_deps.dev:0 +github.com/jmatsu/detect-issue-comment-to-pr-action, +github.com/jmatsu/dg-delete-distribution-action, +github.com/jmatsu/dg-upload-app-action, +github.com/jmatsu/issue-metadata, github.com/jmatsu/license-list-plugin,num_dependents_deps.dev:0 github.com/jmatsu/multipreference,num_dependents_deps.dev:0 +github.com/jmatsu/notify-job-summary, +github.com/jmatsu/setup-actions-toolkit, +github.com/jmatsu/setup-android-problem-matcher, github.com/jmatsu/terraform-provider-slack,num_dependents_deps.dev:0 github.com/jmatt/threepio, github.com/jmattheis/goverter,num_dependents_deps.dev:0 @@ -659602,6 +671717,8 @@ github.com/jmb12686/sms-service,num_dependents_deps.dev:0 github.com/jmb12686/time-bomb,num_dependents_deps.dev:0 github.com/jmb463/git-test,num_dependents_deps.dev:0 github.com/jmbarbier/rst2code, +github.com/jmbarne3/satis-add-package, +github.com/jmbarne3/satis-partial-build, github.com/jmbarzee/bitbox,num_dependents_deps.dev:0 github.com/jmbarzee/dominion,num_dependents_deps.dev:0 github.com/jmbarzee/exmachina,num_dependents_deps.dev:0 @@ -660059,6 +672176,7 @@ github.com/jmgao/svg_panelize,num_dependents_deps.dev:0 github.com/jmgao/tracing,num_dependents_deps.dev:0 github.com/jmgaya/react-primercss,num_dependents_deps.dev:0 github.com/jmgilman/VaultSSH, +github.com/jmgilman/actions-generate-checksum, github.com/jmgilman/bdantic, github.com/jmgilman/beancount-hypothesis, github.com/jmgilman/beancount-stubs, @@ -660078,6 +672196,7 @@ github.com/jmhIcoding/GitDown, github.com/jmhIcoding/flowcontainer, github.com/jmhal/goprogramming,num_dependents_deps.dev:0 github.com/jmhdez/minimal-router,num_dependents_deps.dev:0 +github.com/jmheretik/action-local-cache, github.com/jmhl/readable-fractions,num_dependents_deps.dev:0 github.com/jmhmd/dcmjs,num_dependents_deps.dev:0 github.com/jmhmd/dcmjs-utils,num_dependents_deps.dev:0 @@ -660085,9 +672204,11 @@ github.com/jmhobbs/color,num_dependents_deps.dev:0 github.com/jmhobbs/cultofthepartyparrot.com,criticality_score:0.458060 github.com/jmhobbs/gogo_sendmail,num_dependents_deps.dev:0 github.com/jmhobbs/jsTodoTxt,num_dependents_deps.dev:0 +github.com/jmhobbs/playdate-compiler-action, github.com/jmhobbs/srv,num_dependents_deps.dev:0 github.com/jmhodges/authboss,num_dependents_deps.dev:0 github.com/jmhodges/braintree-go,num_dependents_deps.dev:0 +github.com/jmhodges/ensure-latest-go, github.com/jmhodges/grab,num_dependents_deps.dev:0 github.com/jmhodges/howsmyssl,"criticality_score:0.306400,num_dependents_deps.dev:0" github.com/jmhodges/idgen,num_dependents_deps.dev:0 @@ -660154,6 +672275,9 @@ github.com/jmini/htmlchecker,num_dependents_deps.dev:2 github.com/jmini/issue-model,num_dependents_deps.dev:0 github.com/jmini/path-order,num_dependents_deps.dev:0 github.com/jmini/substring-finder,num_dependents_deps.dev:0 +github.com/jmir1/github-action-get-latest-release, +github.com/jmir1/overleaf-sync, +github.com/jmir1/waka-readme-stats, github.com/jmiron11/music-universe,num_dependents_deps.dev:0 github.com/jmisavage/red-snapper,num_dependents_deps.dev:0 github.com/jmishra01/Custom-button-in-Matplotlib-toolbar, @@ -660293,6 +672417,7 @@ github.com/jmmoser/node-thingworx,num_dependents_deps.dev:0 github.com/jmmoser/time-value-actions,num_dependents_deps.dev:0 github.com/jmmosso/go,num_dependents_deps.dev:0 github.com/jmmv/markdown2social, +github.com/jmn8718/action-esper.io-upload, github.com/jmnarloch/angular-vendor-media-type,num_dependents_deps.dev:0 github.com/jmnarloch/aws-eventbridge-pattern-builder,num_dependents_deps.dev:0 github.com/jmnarloch/feign-encoding-spring-cloud-starter,num_dependents_deps.dev:0 @@ -660322,6 +672447,7 @@ github.com/jmnarloch/zuul-route-health-spring-cloud-starter,num_dependents_deps. github.com/jmnarloch/zuul-trie-matcher-spring-cloud-starter,num_dependents_deps.dev:0 github.com/jmnavarrol/python-multigit, github.com/jmnelson12/distributed-world,num_dependents_deps.dev:0 +github.com/jmnote/size-label-action, github.com/jmnote/toggleswatch,num_dependents_deps.dev:0 github.com/jmnsf/angular-pub-sub,num_dependents_deps.dev:0 github.com/jmnunezizu/passport-discogs,num_dependents_deps.dev:0 @@ -660347,6 +672473,8 @@ github.com/jmoiron/redtape, github.com/jmoiron/sqlx,"criticality_score:0.478460,num_dependents_deps.dev:2868" github.com/jmoles/keccak-verilog,Google github.com/jmolinaso/bitcli, +github.com/jmoll-hn/cancel-workflow-action, +github.com/jmoll-hn/last-green-commit-action, github.com/jmolsmobile/LandscapeVideoCamera,num_dependents_deps.dev:0 github.com/jmons/ramlwrap, github.com/jmonster/benny-hanes-socket-pool,num_dependents_deps.dev:0 @@ -660355,6 +672483,8 @@ github.com/jmont/eslint-plugin-smart-quotes,num_dependents_deps.dev:0 github.com/jmontejr/frevo,num_dependents_deps.dev:0 github.com/jmonterroso/cr-currency-exchange,num_dependents_deps.dev:0 github.com/jmonterroso/jmonterroso,num_dependents_deps.dev:0 +github.com/jmontiel8/action-deploy, +github.com/jmontielTec/tec-on-premise-deploy, github.com/jmontleon/crane-test,num_dependents_deps.dev:0 github.com/jmontrose/fake-honeybadger,num_dependents_deps.dev:0 github.com/jmontroy90/aoc-2020,num_dependents_deps.dev:0 @@ -660537,6 +672667,7 @@ github.com/jms/tzlookupservice,num_dependents_deps.dev:0 github.com/jms737/hb_plugin_computer,num_dependents_deps.dev:0 github.com/jms7446/pyleftpad, github.com/jms976/nodestraw,num_dependents_deps.dev:0 +github.com/jmsalazardev/firebase-deploy, github.com/jmsalie/xls,num_dependents_deps.dev:0 github.com/jmsanders/stuboto, github.com/jmsanpascual/angular-desktop-notification,num_dependents_deps.dev:0 @@ -660558,6 +672689,9 @@ github.com/jmsegrev/ng2-calendar,num_dependents_deps.dev:0 github.com/jmserrano-dev/json2dts,num_dependents_deps.dev:0 github.com/jmserrano-dev/locales2autocomplete,num_dependents_deps.dev:0 github.com/jmserrano-dev/react-app-location,num_dependents_deps.dev:0 +github.com/jmservera/libreoffice-action, +github.com/jmservera/license-finder-action, +github.com/jmservera/qna-maker-kb-action, github.com/jmsfwk/dotenv-mix,num_dependents_deps.dev:0 github.com/jmsfwk/fobi_phonenumber, github.com/jmsfwk/httpie-bearer-auth, @@ -660612,6 +672746,7 @@ github.com/jmt99/simple,num_dependents_deps.dev:0 github.com/jmtapio/not-co-logger, github.com/jmtardo/lodown,num_dependents_deps.dev:0 github.com/jmtellez/CLI-mate, +github.com/jmtellez/domain-cert-checker, github.com/jmtimko5/github-analyzer,num_dependents_deps.dev:0 github.com/jmtoball/cli-confirm,num_dependents_deps.dev:2 github.com/jmtoball/dampfplauderer,num_dependents_deps.dev:0 @@ -660638,7 +672773,9 @@ github.com/jmulet/node-geogebra,num_dependents_deps.dev:0 github.com/jmulet/tsgen,num_dependents_deps.dev:0 github.com/jmulford-bandwidth/gitbook-plugin-parse-from-url,num_dependents_deps.dev:0 github.com/jmullo/require-sort,num_dependents_deps.dev:0 +github.com/jmunckhof/noor-chat-message, github.com/jmunox/node-exif,num_dependents_deps.dev:0 +github.com/jmunta-tlx/tlx-cicd, github.com/jmurphy45/ts-datastructures,num_dependents_deps.dev:0 github.com/jmurphyau/ember-get-helper,num_dependents_deps.dev:68 github.com/jmurphyau/ember-polyfill-for-tests,num_dependents_deps.dev:0 @@ -660762,6 +672899,7 @@ github.com/jnamika/attrcheck, github.com/jnamika/fcompop, github.com/jnamika/pyfunctor, github.com/jnan88/monitor-jvm,num_dependents_deps.dev:0 +github.com/jnanadarshan/mkdocs-build-action, github.com/jnape/linkedin-js,num_dependents_deps.dev:0 github.com/jnaqsh/jbackup_rails,num_dependents_deps.dev:0 github.com/jnaqsh/under_construction,num_dependents_deps.dev:0 @@ -660813,6 +672951,7 @@ github.com/jnd0/tailwindcss-sepia-mode,num_dependents_deps.dev:0 github.com/jneal/react-dropzone-s3-uploader,num_dependents_deps.dev:0 github.com/jneander/jlnio,num_dependents_deps.dev:0 github.com/jneander/jneander,num_dependents_deps.dev:2 +github.com/jneate/postman-collection-action, github.com/jnecus/ukbcrunch, github.com/jnecus/ukbiobank-tools, github.com/jneem/ascii-set,num_dependents_deps.dev:0 @@ -660987,6 +673126,7 @@ github.com/jnoodle/dayjs,num_dependents_deps.dev:0 github.com/jnoodle/picker,num_dependents_deps.dev:0 github.com/jnoodle/vue-flowchart-editor,num_dependents_deps.dev:0 github.com/jnook/org.injava.lang.DesignByContract,num_dependents_deps.dev:0 +github.com/jnooree/jekyll-deploy-action, github.com/jnoortheen/arger, github.com/jnoortheen/django-utils-plus, github.com/jnoortheen/dynamic-conf, @@ -661140,6 +673280,7 @@ github.com/jnunortiz/bookstore_users-api,num_dependents_deps.dev:0 github.com/jnunyez/5gc-k8s-operator,num_dependents_deps.dev:0 github.com/jnurmine/Zenburn,criticality_score:0.335140 github.com/jnury/stunip,num_dependents_deps.dev:0 +github.com/jnus/json-variables, github.com/jnutter/phantom-pdf,num_dependents_deps.dev:0 github.com/jnv/2captcha,num_dependents_deps.dev:0 github.com/jnv/gatsby-plugin-s3,num_dependents_deps.dev:0 @@ -661178,6 +673319,7 @@ github.com/jnwelzel/wf-design-system,num_dependents_deps.dev:0 github.com/jnwhiteh/orcbrew-utils,num_dependents_deps.dev:0 github.com/jnwjack/progress-bar-with-steps,num_dependents_deps.dev:0 github.com/jnwltr/swagger-angular-generator,num_dependents_deps.dev:0 +github.com/jnwng/github-app-installation-token-action, github.com/jnx/so_cial,num_dependents_deps.dev:0 github.com/jnxey/vuex,num_dependents_deps.dev:0 github.com/jnxyx/jn-copy,num_dependents_deps.dev:0 @@ -661203,6 +673345,7 @@ github.com/jo-mueller/napari-stl-exporter, github.com/jo-nas/pygitea, github.com/jo-sm/1password.js,num_dependents_deps.dev:0 github.com/jo-sm/asn1js,num_dependents_deps.dev:0 +github.com/jo-sm/at-dependabot-merge, github.com/jo-sm/lopy, github.com/jo-sm/parse-stages-csv,num_dependents_deps.dev:0 github.com/jo-sm/stylelint_d,num_dependents_deps.dev:0 @@ -661211,6 +673354,7 @@ github.com/jo-teixeira/area-udemy-golang,num_dependents_deps.dev:0 github.com/jo-teixeira/areagolang,num_dependents_deps.dev:0 github.com/jo-teixeira/go-udemy-course,num_dependents_deps.dev:0 github.com/jo-tham/geosample, +github.com/jo-tm/publish-crates-workspace, github.com/jo-wil/jwcl,num_dependents_deps.dev:0 github.com/jo/5984,num_dependents_deps.dev:0 github.com/jo/backbone-pouch,num_dependents_deps.dev:0 @@ -661603,6 +673747,8 @@ github.com/joaofguiomar/react-tooltip-anything,num_dependents_deps.dev:0 github.com/joaofnds/bar,num_dependents_deps.dev:0 github.com/joaofnds/foo,num_dependents_deps.dev:0 github.com/joaofogoncalves/ngx-mathquill,num_dependents_deps.dev:0 +github.com/joaofouyer/qodana-action, +github.com/joaofouyer/qodana-action-badge, github.com/joaofracasso/semanticGP, github.com/joaofraga/hubot-bitbucket-pullrequests,num_dependents_deps.dev:0 github.com/joaofribeiro/tree,num_dependents_deps.dev:0 @@ -661747,6 +673893,7 @@ github.com/joaopalmeiro/pycture, github.com/joaopalmeiro/texbox, github.com/joaopalmeiro/textlint-extra-terms,num_dependents_deps.dev:0 github.com/joaopalmeiro/toppics, +github.com/joaopalmeiro/tou, github.com/joaopalmeiro/vvifi, github.com/joaopalotti/trec_tools, github.com/joaopandolfi/blackwhale,num_dependents_deps.dev:0 @@ -661831,6 +673978,7 @@ github.com/joaotavora/yasnippet,criticality_score:0.429680 github.com/joaoteixeira/extract-data-csv,num_dependents_deps.dev:0 github.com/joaoteixeira/go-auth-service-v2,num_dependents_deps.dev:0 github.com/joaoteixeira88/python-guard, +github.com/joaov-barbosa/demo-kvouth-v, github.com/joaovalentimdev/bank-go-oop,num_dependents_deps.dev:0 github.com/joaovalentimdev/hello-world-go,num_dependents_deps.dev:0 github.com/joaovarandas/bc-utils,num_dependents_deps.dev:0 @@ -662063,6 +674211,7 @@ github.com/jobedom/vue-const,num_dependents_deps.dev:0 github.com/jobedom/vue-ticks,num_dependents_deps.dev:0 github.com/jobergner/backent-cli,num_dependents_deps.dev:0 github.com/jobergner/decltostring,num_dependents_deps.dev:0 +github.com/joberstein/actions-commitlint-validation, github.com/jobfeikens/rcon,num_dependents_deps.dev:0 github.com/jobial-io/sclap,num_dependents_deps.dev:144 github.com/jobilla/feature-toggles,num_dependents_deps.dev:0 @@ -662114,6 +674263,7 @@ github.com/jobovy/galpy, github.com/jobovy/kimmy, github.com/jobovy/kimmy.js,num_dependents_deps.dev:0 github.com/jobovy/mwdust, +github.com/jobovy/pyodide-buildpackage-action, github.com/jobovy/vizier.js,num_dependents_deps.dev:0 github.com/jobovy/wendy, github.com/jobr3255/cordova-headset-buttons-plugin,num_dependents_deps.dev:0 @@ -662162,11 +674312,13 @@ github.com/joccau/utiles,num_dependents_deps.dev:0 github.com/jocdominguez/composables-resources,num_dependents_deps.dev:0 github.com/joce455/hsl-to-hex,num_dependents_deps.dev:0 github.com/joceano/curso-golang,num_dependents_deps.dev:0 +github.com/jocel1/pr-labeler-action, github.com/jocelo/tiny,num_dependents_deps.dev:0 github.com/jocelyn023/test_privatization_deployment,num_dependents_deps.dev:0 github.com/jocelynberrendonner/go-licenses,num_dependents_deps.dev:0 github.com/jocelynlecomte/metalsmith-series,num_dependents_deps.dev:0 github.com/jocelynmutso/dandy-doc,num_dependents_deps.dev:0 +github.com/jocelynthode/statix-action, github.com/jochasinga/alphaseek.js,num_dependents_deps.dev:0 github.com/jochasinga/chaosmonkey,num_dependents_deps.dev:0 github.com/jochasinga/cli,num_dependents_deps.dev:0 @@ -662248,6 +674400,7 @@ github.com/jodersky/cmdr,num_dependents_deps.dev:0 github.com/jodersky/commando,num_dependents_deps.dev:0 github.com/jodersky/identicon,num_dependents_deps.dev:0 github.com/jodersky/mill-jnilib,num_dependents_deps.dev:0 +github.com/jodersky/setup-mill, github.com/jodersky/simplesql,num_dependents_deps.dev:0 github.com/jodersky/spray-json,num_dependents_deps.dev:0 github.com/jodersky/ustats,num_dependents_deps.dev:0 @@ -662271,12 +674424,14 @@ github.com/jodot/jodot,num_dependents_deps.dev:0 github.com/jodreports/jodreports-test,num_dependents_deps.dev:0 github.com/joduplessis/conductor,num_dependents_deps.dev:0 github.com/joduplessis/distil,num_dependents_deps.dev:0 +github.com/joduplessis/gh-action-calver-bump-version, github.com/joduplessis/keg,num_dependents_deps.dev:0 github.com/joduplessis/zero,num_dependents_deps.dev:0 github.com/jody-frankowski/notes,num_dependents_deps.dev:0 github.com/jody-zeitler/cuke-skywalker, github.com/jody-zeitler/version-it,num_dependents_deps.dev:0 github.com/jodybrewster/react-native-linkedin-login,num_dependents_deps.dev:0 +github.com/jodyheavener/bonusly-github, github.com/jodyheavener/circle-client,num_dependents_deps.dev:0 github.com/jodyheavener/circleci-node,num_dependents_deps.dev:0 github.com/jodyheavener/dtpm,num_dependents_deps.dev:0 @@ -662480,6 +674635,7 @@ github.com/joeblackwaslike/tmpld, github.com/joeblankenship1/bitcoin_graph, github.com/joeblas/money-parse,num_dependents_deps.dev:0 github.com/joeblas/use-am-i-printing,num_dependents_deps.dev:0 +github.com/joeblau/publish-generate-action, github.com/joeblew99/boutique,num_dependents_deps.dev:0 github.com/joeblynch/plivode,num_dependents_deps.dev:0 github.com/joebobmiles/FunctionalTools, @@ -662733,6 +674889,7 @@ github.com/joeha480/dotify,num_dependents_deps.dev:390 github.com/joehakimrahme/blogstrap, github.com/joehalliwell/generator-materialize-webpack,num_dependents_deps.dev:0 github.com/joehalliwell/jGeoPlanet,num_dependents_deps.dev:0 +github.com/joehan/action-extensions-deploy, github.com/joehand/archiver-api,num_dependents_deps.dev:0 github.com/joehand/are-you-around,num_dependents_deps.dev:0 github.com/joehand/bagit-fs,num_dependents_deps.dev:0 @@ -662862,7 +675019,9 @@ github.com/joeistas/heroes-parser,num_dependents_deps.dev:0 github.com/joeistas/node-casclib,num_dependents_deps.dev:0 github.com/joeizzard/go-dev-tools,num_dependents_deps.dev:0 github.com/joejoinerr/kwmatrix, +github.com/joejordanbrown/fork-sync, github.com/joejordanbrown/ngx-email-obfuscation,num_dependents_deps.dev:0 +github.com/joejordanbrown/trellis-action, github.com/joejukan/argumenter,num_dependents_deps.dev:0 github.com/joejukan/ng-di-kit,num_dependents_deps.dev:0 github.com/joejukan/ts-indexer,num_dependents_deps.dev:0 @@ -662891,12 +675050,15 @@ github.com/joekkim-git/vmdlt,num_dependents_deps.dev:0 github.com/joekkim-git/vmw,num_dependents_deps.dev:0 github.com/joekrill/elk-client,num_dependents_deps.dev:0 github.com/joekrill/elk-message,num_dependents_deps.dev:0 +github.com/joekrom/cf-action, +github.com/joekrom/hello-action, github.com/joekrump/clio-js,num_dependents_deps.dev:0 github.com/joekrump/draft-note-editor, github.com/joekur/react-canvas-draw,num_dependents_deps.dev:0 github.com/joeky888/godog,num_dependents_deps.dev:0 github.com/joel-bitar/react-native-apple-ads-attribution, github.com/joel-chu/node-open-cobol,num_dependents_deps.dev:0 +github.com/joel-coffman/action-git-diff-check, github.com/joel-costigliola/assertj-core,num_dependents_deps.dev:18679 github.com/joel-costigliola/assertj-db,num_dependents_deps.dev:4 github.com/joel-costigliola/assertj-guava,num_dependents_deps.dev:73 @@ -662944,10 +675106,12 @@ github.com/joelanders/gotoys,num_dependents_deps.dev:0 github.com/joelanford/controller-runtime,num_dependents_deps.dev:0 github.com/joelanford/declcfg,num_dependents_deps.dev:0 github.com/joelanford/declcfg-inline-bundles,num_dependents_deps.dev:0 +github.com/joelanford/go-apidiff, github.com/joelanford/helm-operator,num_dependents_deps.dev:0 github.com/joelanford/ignore,num_dependents_deps.dev:4 github.com/joelanford/kubectl-operator,num_dependents_deps.dev:0 github.com/joelanford/operator-sdk,num_dependents_deps.dev:0 +github.com/joelanford/opm-validate, github.com/joelangeway/jhaml,num_dependents_deps.dev:0 github.com/joelangeway/planepacker,num_dependents_deps.dev:0 github.com/joelanman/nixon,num_dependents_deps.dev:0 @@ -663264,6 +675428,7 @@ github.com/joelrbrandt/generator-cli,num_dependents_deps.dev:0 github.com/joelrbrandt/jscs-trailing-whitespace-in-source,num_dependents_deps.dev:0 github.com/joelrfcosta/go-update,num_dependents_deps.dev:0 github.com/joelrfcosta/react-native-logentries,num_dependents_deps.dev:0 +github.com/joelrose/hcl-update, github.com/joelroxell/borsdata_sdk-sdk, github.com/joelsaupe/changecase-objects, github.com/joelsaxton/Super-T9, @@ -663287,6 +675452,7 @@ github.com/joelspeed/machine-api-operator,num_dependents_deps.dev:0 github.com/joelstevick/test-scenario-runner,num_dependents_deps.dev:0 github.com/joelsummerfield/experiment.typescript-library,num_dependents_deps.dev:0 github.com/joeltankam/checkif.js,num_dependents_deps.dev:0 +github.com/joeltankam/dotnet-action, github.com/joeltanwr/DirtyDF, github.com/joeltello/node-express-json-rpc2,num_dependents_deps.dev:0 github.com/joelterry/clwhy,num_dependents_deps.dev:0 @@ -663311,6 +675477,7 @@ github.com/joelvalim/database,num_dependents_deps.dev:0 github.com/joelvaneenwyk/shellcheck, github.com/joelverhagen/PingdomBackup, github.com/joelverhagen/flask-rauth, +github.com/joelverhagen/token-login, github.com/joelvh/Sysmo.js,num_dependents_deps.dev:0 github.com/joelvh/custom-router,num_dependents_deps.dev:0 github.com/joelvh/flowy,num_dependents_deps.dev:0 @@ -663344,7 +675511,9 @@ github.com/joelwallis/hubot-health,num_dependents_deps.dev:0 github.com/joelwallis/node-joelwallis,num_dependents_deps.dev:0 github.com/joelwallis/only,num_dependents_deps.dev:0 github.com/joelwass/vuex-store-generator, +github.com/joelwmale/codeception-action, github.com/joelwmale/cogent-js,num_dependents_deps.dev:0 +github.com/joelwmale/webhook-action, github.com/joelworsham/jw-lib-log, github.com/joelwreed/dm-paperclip,num_dependents_deps.dev:0 github.com/joelwross/jest-style-matchers,num_dependents_deps.dev:0 @@ -663477,6 +675646,8 @@ github.com/joequant/ethercalc-python, github.com/joequery/Stupid-Table-Plugin,"criticality_score:0.322930,num_dependents_deps.dev:0" github.com/joer717/anydoor,num_dependents_deps.dev:0 github.com/joerayme/hubot-guys,num_dependents_deps.dev:0 +github.com/joerdav/run-xc, +github.com/joerdav/setup-xc, github.com/joerex/firebase-redux-accounts,num_dependents_deps.dev:0 github.com/joerex/react-redux-accounts,num_dependents_deps.dev:0 github.com/joerex1418/cta, @@ -663487,6 +675658,7 @@ github.com/joerez/rust-markdown-renderer,num_dependents_deps.dev:0 github.com/joerg-schneider/airtunnel, github.com/joerg-schneider/blizz, github.com/joerg65/pytedee, +github.com/joergbrech/moxunit-action, github.com/joergbuchwald/NetCDFInterpolate, github.com/joergbuchwald/VTUinterface, github.com/joergbuchwald/ogs6py, @@ -663519,6 +675691,7 @@ github.com/joeribakker/web-setup,num_dependents_deps.dev:0 github.com/joeribekker/restorm, github.com/joerick/cibuildwheel,criticality_score:0.632180 github.com/joerick/ngrok_pdb, +github.com/joerick/pr-labels-action, github.com/joerick/pyinstrument,criticality_score:0.472770 github.com/joerick/pyinstrument_cext, github.com/joeriddles/dictionizr, @@ -663544,6 +675717,7 @@ github.com/joernio/joern2sarif, github.com/joernneumeyer/loin,num_dependents_deps.dev:0 github.com/joernott/go-camunda-clean,num_dependents_deps.dev:0 github.com/joernott/go-xymon-remotemonitor,num_dependents_deps.dev:0 +github.com/joernott/load_testplan, github.com/joernroeder/piwik-react-router,num_dependents_deps.dev:2 github.com/joerober/proglog,num_dependents_deps.dev:0 github.com/joeroot/parts,num_dependents_deps.dev:0 @@ -663957,11 +676131,13 @@ github.com/joffrey-bion/checkstyle-config,num_dependents_deps.dev:0 github.com/joffrey-bion/chrome-devtools-kotlin,num_dependents_deps.dev:0 github.com/joffrey-bion/fx-gson,num_dependents_deps.dev:2 github.com/joffrey-bion/generics-explorer,num_dependents_deps.dev:4 +github.com/joffrey-bion/gradle-library-release-action, github.com/joffrey-bion/hashcode-utils,num_dependents_deps.dev:0 github.com/joffrey-bion/hashcode-utils-kt,num_dependents_deps.dev:0 github.com/joffrey-bion/jackstomp,num_dependents_deps.dev:0 github.com/joffrey-bion/kotlin-blueprintjs,num_dependents_deps.dev:0 github.com/joffrey-bion/krossbow,num_dependents_deps.dev:36 +github.com/joffrey-bion/library-release-action, github.com/joffrey-bion/livedoc,num_dependents_deps.dev:71 github.com/joffreyBerrier/insights-module,num_dependents_deps.dev:0 github.com/joffreyBerrier/vue-datepicker,num_dependents_deps.dev:0 @@ -664017,6 +676193,8 @@ github.com/jogboms/ns-ng-plugin-seed,num_dependents_deps.dev:0 github.com/jogboms/ns-ngrx-debugger,num_dependents_deps.dev:0 github.com/jogendra/example-ios-apps,criticality_score:0.395530 github.com/jogetworkflow/jw-community,criticality_score:0.335240 +github.com/joggrdocs/hog-heaven, +github.com/joggrdocs/previews, github.com/jogind3r/allurlstatus, github.com/jogjayr/Smart-Table,num_dependents_deps.dev:0 github.com/jogjayr/angular-tooltips, @@ -664123,6 +676301,7 @@ github.com/johanfive/useToaster,num_dependents_deps.dev:0 github.com/johanfive/yolog,num_dependents_deps.dev:0 github.com/johanfo/golog,num_dependents_deps.dev:0 github.com/johanfredin/llama,num_dependents_deps.dev:0 +github.com/johanfylling/setup-odm, github.com/johang/btfs,criticality_score:0.335400 github.com/johangirod/eslint-config-johangirod,num_dependents_deps.dev:0 github.com/johangu/node-minimp3,num_dependents_deps.dev:0 @@ -664143,6 +676322,7 @@ github.com/johanhenriksson/goworld,num_dependents_deps.dev:0 github.com/johanhenselmans/gobot,num_dependents_deps.dev:0 github.com/johanhermansson/oan-gulp-tasks,num_dependents_deps.dev:0 github.com/johanholmerin/css-to-js.macro, +github.com/johanholmerin/mutation-report-action, github.com/johanholmerin/rollup-plugin-workers, github.com/johanholmerin/structured-clone,num_dependents_deps.dev:0 github.com/johanholmerin/style9,num_dependents_deps.dev:0 @@ -664179,7 +676359,9 @@ github.com/johann8384/cloudy-localsmith,num_dependents_deps.dev:0 github.com/johann8384/passport-ubersmith,num_dependents_deps.dev:0 github.com/johannalbino/course_golang,num_dependents_deps.dev:0 github.com/johannawren/node-app-skeleton,num_dependents_deps.dev:0 +github.com/johannchopin-buyco/deployed-jira-tickets-notifier-action, github.com/johannchopin/restapify-cli,num_dependents_deps.dev:0 +github.com/johannes-huther/webhook.sh, github.com/johannes-mueller/pugl-sys,num_dependents_deps.dev:0 github.com/johannes-mueller/pugl-ui,num_dependents_deps.dev:0 github.com/johannes-riecken/appengine-go,num_dependents_deps.dev:0 @@ -664280,6 +676462,7 @@ github.com/johannesthoma/profile_require,num_dependents_deps.dev:0 github.com/johannestroeger/gulp-highlight,num_dependents_deps.dev:4 github.com/johannestroeger/qck,num_dependents_deps.dev:0 github.com/johannestroeger/react-bem-decorator,num_dependents_deps.dev:0 +github.com/johannesvedder/await-workflow, github.com/johannesvollmer/exrs,num_dependents_deps.dev:0 github.com/johannesvollmer/id-vec,num_dependents_deps.dev:0 github.com/johannesvollmer/lebe,num_dependents_deps.dev:3 @@ -664341,6 +676524,7 @@ github.com/johansundell/lego,num_dependents_deps.dev:0 github.com/johansundell/mysql,num_dependents_deps.dev:0 github.com/johantilli/rollinggroupcorrelation, github.com/johanvanhelden/elixir,num_dependents_deps.dev:0 +github.com/johanvanhelden/gha-clover-test-coverage-check, github.com/johanvaniperen/wdio-cucumber-snippet-reporter,num_dependents_deps.dev:0 github.com/johanvergeer/pelican-add-css-classes, github.com/johanvergeer/pelican-cite, @@ -664409,6 +676593,7 @@ github.com/johipsum/if-else-react,num_dependents_deps.dev:0 github.com/johker/prush,num_dependents_deps.dev:0 github.com/johlandabee/winca,num_dependents_deps.dev:0 github.com/johli/isolearn, +github.com/johlo/kube-score-action, github.com/johlrogge/consjs,num_dependents_deps.dev:0 github.com/johmanx10/env,num_dependents_deps.dev:0 github.com/johmanx10/nv,num_dependents_deps.dev:0 @@ -664427,6 +676612,7 @@ github.com/john-crossley/homebridge-bee-hive,num_dependents_deps.dev:0 github.com/john-d-pelingo/create-react-app,num_dependents_deps.dev:0 github.com/john-d-pelingo/godbot,num_dependents_deps.dev:0 github.com/john-d-pelingo/jdp-scripts,num_dependents_deps.dev:2 +github.com/john-d-pelingo/jira-link-issue-action, github.com/john-d-pelingo/mrust,num_dependents_deps.dev:0 github.com/john-d-pelingo/sieses,num_dependents_deps.dev:0 github.com/john-d-pelingo/sinartisi,num_dependents_deps.dev:0 @@ -664528,6 +676714,7 @@ github.com/john-ui-kit/react-native,num_dependents_deps.dev:0 github.com/john-uk/learning-git,num_dependents_deps.dev:0 github.com/john-veillette/mne_ari, github.com/john-victor-100/credittodxs,num_dependents_deps.dev:0 +github.com/john-waitforit/action-eslint-leaderboard, github.com/john-warner/Modstache,num_dependents_deps.dev:0 github.com/john-white-92/vue-listbox,num_dependents_deps.dev:0 github.com/john-white-92/vue-scrollbox,num_dependents_deps.dev:0 @@ -664552,6 +676739,7 @@ github.com/john015/vue-load-image,num_dependents_deps.dev:0 github.com/john01dav/actix-plus,num_dependents_deps.dev:0 github.com/john04047210/pyhuffman, github.com/john050481/fun24js,num_dependents_deps.dev:0 +github.com/john0isaac/action-check-markdown, github.com/john1345/onlinemall-fe,num_dependents_deps.dev:0 github.com/john1625b/Percentile-freq-calculator,num_dependents_deps.dev:0 github.com/john202020/csi,num_dependents_deps.dev:0 @@ -664716,6 +676904,7 @@ github.com/johncarl81/parceler,"criticality_score:0.478750,num_dependents_deps.d github.com/johncarl81/transfuse,num_dependents_deps.dev:192 github.com/johncarney/flex-station-data,num_dependents_deps.dev:0 github.com/johncashmore/grunt-combine-media-queries, +github.com/johncburnette/stackpath-cdn-purge, github.com/johncclayton/monitor-fw-13, github.com/johncclayton/useful_dashboard_info, github.com/johncf/mines,num_dependents_deps.dev:0 @@ -664744,6 +676933,7 @@ github.com/johncoene/go-graphtweets,num_dependents_deps.dev:0 github.com/johncoene/go-nettle,num_dependents_deps.dev:0 github.com/johncoffee/swagger2-ts-codegen,num_dependents_deps.dev:0 github.com/johncokos/aws-tools,num_dependents_deps.dev:0 +github.com/johncomposed/pr-updater-action, github.com/johnconan/backend-project-lvl1,num_dependents_deps.dev:0 github.com/johnconnor31/AutoAutoComplete, github.com/johncornish/RDCGen, @@ -664819,6 +677009,7 @@ github.com/johndimi/cdcrush,num_dependents_deps.dev:0 github.com/johndimi/romdj,num_dependents_deps.dev:0 github.com/johndimm/filterpanel,num_dependents_deps.dev:0 github.com/johndistasio/since,num_dependents_deps.dev:0 +github.com/johndmulhausen/ai-docs-critic, github.com/johndoe-dev/CertGenerator, github.com/johndoe/myapp, github.com/johndoe31415/hsmwiz, @@ -664921,6 +677112,7 @@ github.com/johnfoderaro/make-random,num_dependents_deps.dev:0 github.com/johnfoderaro/webhook,num_dependents_deps.dev:0 github.com/johnfontaine/LasStreamReader,num_dependents_deps.dev:0 github.com/johnfontaine/chess-tools,num_dependents_deps.dev:0 +github.com/johnforeland/github-action-sfdx-version-updater, github.com/johnfrancisgit/gfiberspeedtest_cli, github.com/johnfraney/django-bootstrap-customizer, github.com/johnfraney/django-front-end-validators, @@ -664962,12 +677154,14 @@ github.com/johngeorgewright/node-child-proc, github.com/johngeorgewright/nodefig,num_dependents_deps.dev:0 github.com/johngeorgewright/npm-check-git,num_dependents_deps.dev:0 github.com/johngeorgewright/npm-package-config-env,num_dependents_deps.dev:0 +github.com/johngeorgewright/parse-version-action, github.com/johngeorgewright/persist-env,num_dependents_deps.dev:0 github.com/johngeorgewright/plugola,num_dependents_deps.dev:0 github.com/johngeorgewright/pro-dash,num_dependents_deps.dev:0 github.com/johngeorgewright/promdash,num_dependents_deps.dev:0 github.com/johngeorgewright/react-component-mock,num_dependents_deps.dev:0 github.com/johngeorgewright/redux-event,num_dependents_deps.dev:0 +github.com/johngeorgewright/regex-action, github.com/johngeorgewright/runtypes-generator,num_dependents_deps.dev:0 github.com/johngeorgewright/runtyping,num_dependents_deps.dev:0 github.com/johngeorgewright/take-oath,num_dependents_deps.dev:0 @@ -665213,6 +677407,7 @@ github.com/johnlanni/lockfreelist,num_dependents_deps.dev:0 github.com/johnlcox/dagger-servlet,num_dependents_deps.dev:0 github.com/johnlcox/motif,num_dependents_deps.dev:0 github.com/johnlcox/process-warden,num_dependents_deps.dev:1 +github.com/johnlee-jh/changed-files-action, github.com/johnlee175/rxbus,num_dependents_deps.dev:0 github.com/johnlees/PopPUNK, github.com/johnlees/unitig-caller, @@ -665237,6 +677432,7 @@ github.com/johnlinvc/autodiff,num_dependents_deps.dev:0 github.com/johnliu55tw/game-of-life, github.com/johnllao/remoteproc,num_dependents_deps.dev:0 github.com/johnlofty/thefilewatch, +github.com/johnlokerse/website-healthcheck, github.com/johnlowery/crucial-form,num_dependents_deps.dev:0 github.com/johnluetke/WeatherAPI,num_dependents_deps.dev:0 github.com/johnlyden/learnstorybook-design-system,num_dependents_deps.dev:0 @@ -665383,6 +677579,9 @@ github.com/johnnyasantoss/wiredep-away,num_dependents_deps.dev:0 github.com/johnnyb88/lotide,num_dependents_deps.dev:0 github.com/johnnyb912/stylelint-config-sensible-scss,num_dependents_deps.dev:0 github.com/johnnybarrels/jupyterlab_onedarkpro,num_dependents_deps.dev:0 +github.com/johnnybenson/heroku-docker-deploy, +github.com/johnnybenson/package-json-versioned-action, +github.com/johnnybenson/random-message-action, github.com/johnnybenson/sassr,num_dependents_deps.dev:0 github.com/johnnyboi91/react-hooks-utilities, github.com/johnnyboi91/react-hooks-utils,num_dependents_deps.dev:0 @@ -665402,6 +677601,7 @@ github.com/johnnycpc/go-pssh-generator,num_dependents_deps.dev:0 github.com/johnnycpc/tw-lottery-linebot-go,num_dependents_deps.dev:0 github.com/johnnycricket/fileCacheBust,num_dependents_deps.dev:0 github.com/johnnycx127/react-geosuggest-baidu,num_dependents_deps.dev:0 +github.com/johnnycynchai/amazon-ecs-run-task, github.com/johnnydebris/es-htmlform,num_dependents_deps.dev:0 github.com/johnnye/fragmenta,num_dependents_deps.dev:0 github.com/johnnyfekete/elegant-react-tooltip,num_dependents_deps.dev:0 @@ -665412,6 +677612,7 @@ github.com/johnnyhalife/node-util-ext,num_dependents_deps.dev:0 github.com/johnnyhalife/passport-flickr,num_dependents_deps.dev:4 github.com/johnnyhalife/templatizer-hbs,num_dependents_deps.dev:0 github.com/johnnyhawley/tailwindcss-chunky-underlines,num_dependents_deps.dev:0 +github.com/johnnyhuy/actions-discord-git-webhook, github.com/johnnyhuy/ggsmark,num_dependents_deps.dev:0 github.com/johnnyji/create-reducer-redux,num_dependents_deps.dev:0 github.com/johnnyji/esint-config-johnnyji,num_dependents_deps.dev:0 @@ -665422,6 +677623,7 @@ github.com/johnnykramer/liveedu-status,num_dependents_deps.dev:0 github.com/johnnykramer/tglogger,num_dependents_deps.dev:0 github.com/johnnykv/heralding,criticality_score:0.332990 github.com/johnnykv/kumo, +github.com/johnnylarner/setup-spark, github.com/johnnylc/ant-design-mobile-rn,num_dependents_deps.dev:0 github.com/johnnyleung/bitmask,num_dependents_deps.dev:0 github.com/johnnylin-a/uattend-automator,num_dependents_deps.dev:0 @@ -665496,6 +677698,7 @@ github.com/johnnywang1994/webpack-config-creator,num_dependents_deps.dev:0 github.com/johnnywidth/envconfig,num_dependents_deps.dev:0 github.com/johnnyx3m/elementz-fbgraph,num_dependents_deps.dev:0 github.com/johnnyxh/npm-autorelease,num_dependents_deps.dev:0 +github.com/johno/actions-push-subdirectories, github.com/johno/digital-garden,num_dependents_deps.dev:14 github.com/johno/do-not-disturb, github.com/johno/gatsby-theme-documentation,num_dependents_deps.dev:0 @@ -665962,6 +678165,7 @@ github.com/johnstonjacob/hourly-cli,num_dependents_deps.dev:0 github.com/johnstonjacob/taskbook-ext,num_dependents_deps.dev:0 github.com/johnstonmatt/current-type-of,num_dependents_deps.dev:8 github.com/johnstonmatt/easy-e,num_dependents_deps.dev:4 +github.com/johnstonmatt/is-valid-json-action, github.com/johnstonmatt/open-with-vscode,num_dependents_deps.dev:0 github.com/johnstonmatt/purp,num_dependents_deps.dev:0 github.com/johnstonskj/PyDL7, @@ -666154,6 +678358,8 @@ github.com/johnwargo/johnwargo-cordova-plugin-mol, github.com/johnwargo/make-readme,num_dependents_deps.dev:0 github.com/johnwargo/moddable-helper,num_dependents_deps.dev:0 github.com/johnwargo/react-build-info,num_dependents_deps.dev:0 +github.com/johnwason/swig-build-action, +github.com/johnwason/vcpkg-action, github.com/johnwatkins0/composer-autoload-file-generator,num_dependents_deps.dev:0 github.com/johnwatkins0/composer-autoload-generator,num_dependents_deps.dev:0 github.com/johnwatkins0/covered-video-player,num_dependents_deps.dev:0 @@ -666170,6 +678376,7 @@ github.com/johnwatkins0/react-editable-html-element, github.com/johnwatkins0/react-thumbnail-gallery, github.com/johnwatkins0/wp-barba-page-preloader,num_dependents_deps.dev:0 github.com/johnwatkins0/wp-react-thumbnail-gallery,num_dependents_deps.dev:0 +github.com/johnwbyrd/update-release, github.com/johnwcallahan/punctuation-name2symbol,num_dependents_deps.dev:0 github.com/johnwcallahan/sentence-builder,num_dependents_deps.dev:0 github.com/johnwebbcole/gulp-jscad-files,num_dependents_deps.dev:0 @@ -666230,9 +678437,11 @@ github.com/johnyf/svglatex, github.com/johnyf/tla, github.com/johnyf/tlapy, github.com/johnyf/tool_lists,criticality_score:0.351260 +github.com/johnyherangi/create-release-notes, github.com/johnyherangi/passget,num_dependents_deps.dev:0 github.com/johnyjpsf/shp2postgis, github.com/johnymonster/napkin,num_dependents_deps.dev:0 +github.com/johnymontana/flat-graph, github.com/johnyob/Aurora-Connector, github.com/johnyob/Wikipedia-JS,num_dependents_deps.dev:0 github.com/johnyob/alexa-skills, @@ -666351,6 +678560,7 @@ github.com/joinflux/capacitor-firebase-dynamic-links,num_dependents_deps.dev:0 github.com/joinflux/capacitor-segment,num_dependents_deps.dev:0 github.com/joinflux/firebase-analytics,num_dependents_deps.dev:0 github.com/joinflux/firebase-remote-config,num_dependents_deps.dev:0 +github.com/joinflux/firebase-tools, github.com/joinfunny/eeExpress,num_dependents_deps.dev:0 github.com/joinhack/gdesk,num_dependents_deps.dev:0 github.com/joinhack/simplenes,num_dependents_deps.dev:0 @@ -666428,6 +678638,8 @@ github.com/jojo-jie/ghost,num_dependents_deps.dev:0 github.com/jojo-tutor/react-error-boundary,num_dependents_deps.dev:0 github.com/jojo-tutor/react-error-handler, github.com/jojo-tutor/use-fetch, +github.com/jojo2357/Code-Stats-Action, +github.com/jojo243/android-gradle-action, github.com/jojo2829/lotide, github.com/jojo5716/boilerplate-component,num_dependents_deps.dev:0 github.com/jojo5716/e2e,num_dependents_deps.dev:0 @@ -666508,6 +678720,7 @@ github.com/jojolepro/specs_declaration,num_dependents_deps.dev:0 github.com/jojolepro/web_worker,num_dependents_deps.dev:0 github.com/jojolepro/world_dispatcher,num_dependents_deps.dev:0 github.com/jojomak13/mongo-data-factory, +github.com/jojomatik/sync-branch, github.com/jojomi/ardcollection,num_dependents_deps.dev:0 github.com/jojomi/covid-mailer,num_dependents_deps.dev:0 github.com/jojomi/dev-ca,num_dependents_deps.dev:0 @@ -666531,6 +678744,7 @@ github.com/jojow/node-verr-log,num_dependents_deps.dev:0 github.com/jojow/specify-artifact,num_dependents_deps.dev:0 github.com/jojoxd/BugTracker,num_dependents_deps.dev:0 github.com/jojoxd/vite-plugin-favicon,num_dependents_deps.dev:0 +github.com/jojustin/IBM-Cloud-App-Configuration-Sync, github.com/jok4r/loss_checker, github.com/jok4r/oe_common, github.com/jokachild/react-radar-screen, @@ -666719,12 +678933,15 @@ github.com/jolicode/Harvest-Forecast-tools,num_dependents_deps.dev:0 github.com/jolicode/JoliNotif,criticality_score:0.368360 github.com/jolicode/codingstyle, github.com/jolicode/generator-joli-symfony,num_dependents_deps.dev:0 +github.com/jolicode/gifexceptionbundle, github.com/jolicode/pomdok,num_dependents_deps.dev:0 +github.com/jolicode/slack-php-api, github.com/jolicode/tabto,num_dependents_deps.dev:0 github.com/jolie-storm/create-jolie-ms,num_dependents_deps.dev:0 github.com/jolie-storm/jolie-maven-download,num_dependents_deps.dev:0 github.com/jolie/jolie,num_dependents_deps.dev:5 github.com/jolie/leonardo,num_dependents_deps.dev:0 +github.com/jolie/setup-jolie, github.com/jolieching/react-virtual-sky, github.com/jolieching/react-virtual-sky/tarball/e07568dbfd89c373d3bbb8a7aebaed71b8ed5a62, github.com/jolienai/go-dns-service,num_dependents_deps.dev:0 @@ -666958,6 +679175,7 @@ github.com/jon-bell/homebridge-synology-surveillance-homemode,num_dependents_dep github.com/jon-bright/gatt,num_dependents_deps.dev:0 github.com/jon-choi/lotide,num_dependents_deps.dev:0 github.com/jon-edward/py-telegram-notifier, +github.com/jon-evergreen/amazon-batch-render-job-definition, github.com/jon-fearer/go-algs,num_dependents_deps.dev:0 github.com/jon-fm/react-netlify-form,num_dependents_deps.dev:0 github.com/jon-hall/atom-checkbox,num_dependents_deps.dev:0 @@ -667007,6 +679225,7 @@ github.com/jon4hz/mnemonick9,num_dependents_deps.dev:0 github.com/jon4hz/pastebin,num_dependents_deps.dev:0 github.com/jon4hz/tgbsctipping,num_dependents_deps.dev:0 github.com/jon4hz/web3-multicall-go,num_dependents_deps.dev:0 +github.com/jon4hz/workflow-webhook, github.com/jonDel/remote_multicommand, github.com/jonDel/ssh_paramiko, github.com/jonDel/xmlrpcssl, @@ -667023,6 +679242,10 @@ github.com/jona799t/skoleintra-api, github.com/jona799t/unilogin-api, github.com/jonabasque/learn-npm,num_dependents_deps.dev:0 github.com/jonabc/actions-mocks,num_dependents_deps.dev:0 +github.com/jonabc/licensed-ci, +github.com/jonabc/linked-project-columns, +github.com/jonabc/setup-licensed, +github.com/jonabc/sync-task-issues, github.com/jonafato/Flask-Copilot, github.com/jonaferreira/codewars,num_dependents_deps.dev:0 github.com/jonahallibone/react-tilty,num_dependents_deps.dev:0 @@ -667040,6 +679263,8 @@ github.com/jonahgeek/create-reusable-react-app,num_dependents_deps.dev:0 github.com/jonahgeorge/force-ssl-heroku,num_dependents_deps.dev:0 github.com/jonahglover/channels,num_dependents_deps.dev:0 github.com/jonahglover/gotowork,num_dependents_deps.dev:0 +github.com/jonahgoldwastaken/issue-branch, +github.com/jonahgoldwastaken/milestone-sprint, github.com/jonahh-yeti/apns,num_dependents_deps.dev:0 github.com/jonahharris/node-activity-analyzer,num_dependents_deps.dev:0 github.com/jonahharris/node-bktree,num_dependents_deps.dev:0 @@ -667053,6 +679278,7 @@ github.com/jonahoffline/node-redsismica,num_dependents_deps.dev:0 github.com/jonahs99/tanqs2-share,num_dependents_deps.dev:0 github.com/jonahsnider/benchmark, github.com/jonahsnider/convert,num_dependents_deps.dev:0 +github.com/jonahsnider/firebase-action, github.com/jonahsnider/how,num_dependents_deps.dev:0 github.com/jonahsnider/netlify-cache-nextjs, github.com/jonahsnider/prettier-config-random,num_dependents_deps.dev:0 @@ -667150,6 +679376,7 @@ github.com/jonas-schievink/spi-memory,num_dependents_deps.dev:0 github.com/jonas-schievink/termclock,num_dependents_deps.dev:0 github.com/jonas-schievink/untagged-option,num_dependents_deps.dev:93 github.com/jonas-schievink/wayback-mirror,num_dependents_deps.dev:0 +github.com/jonas-schievink/workflow-proxy, github.com/jonas-schievink/xbe,num_dependents_deps.dev:0 github.com/jonas-schievink/xml-rpc-rs,num_dependents_deps.dev:0 github.com/jonas-schievink/zathura-plugin,num_dependents_deps.dev:0 @@ -667179,11 +679406,13 @@ github.com/jonasantonelli/react-count-up,num_dependents_deps.dev:0 github.com/jonasantonelli/react-native-swipe-carousel,num_dependents_deps.dev:0 github.com/jonasantonelli/react-rating-stars,num_dependents_deps.dev:0 github.com/jonasaurus/permu,num_dependents_deps.dev:0 +github.com/jonasb/android-problem-matchers-action, github.com/jonasbark/flutter_stripe_payment,criticality_score:0.376000 github.com/jonasbb/petgraph-graphml,num_dependents_deps.dev:0 github.com/jonasbb/rust_misc_utils,num_dependents_deps.dev:0 github.com/jonasbb/serde_with,num_dependents_deps.dev:369 github.com/jonasbjork/helsingborgalarm, +github.com/jonasbn/github-action-perl-dist-zilla, github.com/jonasbn/go-testtimer,num_dependents_deps.dev:0 github.com/jonasbostoen/bxgateway, github.com/jonascarpay/apecs,criticality_score:0.379740 @@ -667199,6 +679428,7 @@ github.com/jonascsantos/rsmq-worker,num_dependents_deps.dev:0 github.com/jonasdaugalas/brilview, github.com/jonase/eastwood,criticality_score:0.502040 github.com/jonase/kibit,criticality_score:0.441450 +github.com/jonaseberle/github-action-setup-ddev, github.com/jonasegf/estudos-k8s,num_dependents_deps.dev:0 github.com/jonasfa/libcruisecontrol,num_dependents_deps.dev:0 github.com/jonasfernandesnuvem/gothings,num_dependents_deps.dev:0 @@ -667262,6 +679492,7 @@ github.com/jonaskuske/postcss-smoothscroll-anchor-polyfill,num_dependents_deps.d github.com/jonaskuske/smoothscroll-anchor-polyfill,num_dependents_deps.dev:0 github.com/jonaslagoni/asyncapi-quicktype-filter,num_dependents_deps.dev:0 github.com/jonaslagoni/asyncapi-quicktype-template,num_dependents_deps.dev:0 +github.com/jonaslagoni/gh-action-asyncapi-document-bump, github.com/jonaslagoni/jmeter-template,num_dependents_deps.dev:0 github.com/jonaslb/j2scr, github.com/jonaslindebros/if-statements,num_dependents_deps.dev:0 @@ -667291,6 +679522,7 @@ github.com/jonasrauber/eagerpy, github.com/jonasrauber/foolbox-native, github.com/jonasrichard/ironmq,num_dependents_deps.dev:0 github.com/jonasrichard/metalmq,num_dependents_deps.dev:0 +github.com/jonasrk/flake8-action, github.com/jonasrmichel/rudiments,num_dependents_deps.dev:0 github.com/jonasrmichel/tiling,num_dependents_deps.dev:0 github.com/jonasrothfuss/py-fisher-vector, @@ -667395,6 +679627,7 @@ github.com/jonathan-daniel/CPyModbus, github.com/jonathan-felicity/codepleateau, github.com/jonathan-fielding/DigitalOceanCLI,num_dependents_deps.dev:0 github.com/jonathan-fielding/SimpleStateManager,num_dependents_deps.dev:4 +github.com/jonathan-fielding/bundlephobia-pr-review, github.com/jonathan-fielding/criticaljs,num_dependents_deps.dev:0 github.com/jonathan-fielding/element-data-store,num_dependents_deps.dev:0 github.com/jonathan-fielding/express-camelcase-keys,num_dependents_deps.dev:0 @@ -667445,6 +679678,7 @@ github.com/jonathan-s/sockpuppet,num_dependents_deps.dev:0 github.com/jonathan-santos/appGastosApi,num_dependents_deps.dev:0 github.com/jonathan-santos/hexo-prism-copy-button,num_dependents_deps.dev:0 github.com/jonathan-scholbach/runtime_typing, +github.com/jonathan-sh/kubectl, github.com/jonathan-sh/schema-type-validation,num_dependents_deps.dev:0 github.com/jonathan-shemer/aiomixpanel, github.com/jonathan-shemer/chenv, @@ -668042,8 +680276,10 @@ github.com/jonathas/imux-node,num_dependents_deps.dev:0 github.com/jonathas/node-muvi,num_dependents_deps.dev:0 github.com/jonathas/node-pdf2img-promises,num_dependents_deps.dev:0 github.com/jonathasbsouza/react-br-bank-icons,num_dependents_deps.dev:0 +github.com/jonathascosta/hello-world-docker-action, github.com/jonathasgouv/pyvector, github.com/jonathborg/mysql-wrapper,num_dependents_deps.dev:0 +github.com/jonathborg/spdx-to-dependency-graph-action, github.com/jonathf/chaospy,criticality_score:0.440950 github.com/jonathf/enw, github.com/jonathf/matlab2cpp, @@ -668160,6 +680396,7 @@ github.com/joncasey/nunjucks-extension-code-highlight,num_dependents_deps.dev:0 github.com/joncasey/nunjucks-global-uid,num_dependents_deps.dev:0 github.com/joncastro/SafeInCloud, github.com/jonchaney/react-phone-input-2,num_dependents_deps.dev:0 +github.com/jonchang/deploy-neocities, github.com/jonchang/tact, github.com/jonchardy/typedoc-plugin-no-inherit,num_dependents_deps.dev:24 github.com/jonchenn/amp-prototyper,num_dependents_deps.dev:0 @@ -668175,6 +680412,9 @@ github.com/jonchurch/print-todo,num_dependents_deps.dev:0 github.com/jonchurch/reddit-dl,num_dependents_deps.dev:0 github.com/jonchurch/set-gh-status,num_dependents_deps.dev:0 github.com/jonchurch/trek-quotes,num_dependents_deps.dev:0 +github.com/joncloud/dos-build-action, +github.com/joncloud/download-install-action, +github.com/joncloud/makensis-action, github.com/joncloud/rlx-js,num_dependents_deps.dev:0 github.com/joncombe/django-opposable-thumbs, github.com/joncombe/django-simple-website-meta, @@ -668182,6 +680422,8 @@ github.com/joncombe/django-webmaster, github.com/joncombe/pyShipping-python3, github.com/joncooper/gor,num_dependents_deps.dev:0 github.com/joncooperworks/httpfuzz,num_dependents_deps.dev:0 +github.com/joncrain/macos-pkg-install, +github.com/joncrain/munkipkg-action, github.com/joncrlsn/declarations-api,num_dependents_deps.dev:0 github.com/joncrlsn/mypfs,num_dependents_deps.dev:0 github.com/joncrlsn/pgdiff,num_dependents_deps.dev:0 @@ -668326,6 +680568,8 @@ github.com/joneit/synonomous,num_dependents_deps.dev:42 github.com/joneit/tabz,num_dependents_deps.dev:0 github.com/joneit/templex,num_dependents_deps.dev:2 github.com/joneit/unstrungify,num_dependents_deps.dev:2 +github.com/joneja09/gh-action-dotnet-bump, +github.com/jonelantha/gatsby-s3-action, github.com/jonelantha/react-responsive-pagination,num_dependents_deps.dev:0 github.com/joneldiablo/generator-node-component,num_dependents_deps.dev:0 github.com/joneldiablo/objection-model-generator,num_dependents_deps.dev:0 @@ -668412,6 +680656,7 @@ github.com/jonfairbanks/hubot-uptime,num_dependents_deps.dev:0 github.com/jonfairbanks/react-editor-md,num_dependents_deps.dev:0 github.com/jonfaustman/django-frontend, github.com/jonfaustman/django-frontend-skeleton, +github.com/jonfazzaro/sign-android-release, github.com/jonferreira/node-red-contrib-alexa-remote,num_dependents_deps.dev:0 github.com/jonferreira/node-red-contrib-meobox,num_dependents_deps.dev:0 github.com/jonferreira/node-red-contrib-sftp,num_dependents_deps.dev:0 @@ -668509,6 +680754,10 @@ github.com/jongwony/gsnip, github.com/jongwony/jw, github.com/jongwony/sshas, github.com/jongwook/tfrecord_lite, +github.com/jongwooo/docusaurus-cache, +github.com/jongwooo/gatsby-cache, +github.com/jongwooo/next-cache, +github.com/jongwooo/terraform-cache, github.com/jongyoungcha/kafka-grpc-tutorial,num_dependents_deps.dev:0 github.com/jonhaddow/eslint-config-jonhaddow,num_dependents_deps.dev:0 github.com/jonhadfield/aws-vault,num_dependents_deps.dev:0 @@ -668626,6 +680875,7 @@ github.com/jonhue/notifications-rails,num_dependents_deps.dev:144 github.com/jonhue/omniauth-paypal-oauth2,num_dependents_deps.dev:0 github.com/jonhue/onsignal,num_dependents_deps.dev:0 github.com/jonhue/propose, +github.com/jonhue/pubtex-action, github.com/jonhue/pwa,num_dependents_deps.dev:0 github.com/jonhue/r404,num_dependents_deps.dev:0 github.com/jonhue/randomize_id,num_dependents_deps.dev:0 @@ -668728,6 +680978,7 @@ github.com/jonkemp/umd-util,num_dependents_deps.dev:0 github.com/jonkemp/useref,num_dependents_deps.dev:823 github.com/jonkerj/iec62056, github.com/jonkgrimes/nbtscanner,num_dependents_deps.dev:0 +github.com/jonknutson/kubectl-eks-apply, github.com/jonkofee/axios-offline,num_dependents_deps.dev:0 github.com/jonkofee/caser,num_dependents_deps.dev:0 github.com/jonkragskow/inorgqm, @@ -668742,6 +680993,7 @@ github.com/jonkwheeler/tsconfig-replace-paths,num_dependents_deps.dev:0 github.com/jonkwheeler/tscpaths,num_dependents_deps.dev:0 github.com/jonkykong/SideMenu,criticality_score:0.435070 github.com/jonlabelle/SublimeJsPrettier,"criticality_score:0.508000,num_dependents_deps.dev:0" +github.com/jonlabelle/setup-ssis-devops-tools, github.com/jonlaing/rationale,num_dependents_deps.dev:0 github.com/jonlamb-gh/oxcc-nucleo-f767zi,num_dependents_deps.dev:0 github.com/jonlamb-gh/oxcc-stm32f767-hal,num_dependents_deps.dev:0 @@ -668772,6 +681024,7 @@ github.com/jonluca/jonluca,num_dependents_deps.dev:0 github.com/jonluca/node-xhr2,num_dependents_deps.dev:0 github.com/jonluca/node-xhr2-unsafe, github.com/jonluca/reddit-oauth, +github.com/jonluca/setup-python-runner-name, github.com/jonlundy/sshfwd,num_dependents_deps.dev:0 github.com/jonm/term2md, github.com/jonmaciel/react-global-key-down,num_dependents_deps.dev:0 @@ -668821,6 +681074,7 @@ github.com/jonnay101/golang-benchmark,num_dependents_deps.dev:0 github.com/jonnay101/grpc-course,num_dependents_deps.dev:0 github.com/jonnay101/objectkeys,num_dependents_deps.dev:0 github.com/jonnay101/resize-image,num_dependents_deps.dev:0 +github.com/jonnekaunisto/isitup-action, github.com/jonnekaunisto/pyser, github.com/jonnekaunisto/simple-youtube-api, github.com/jonnelafin/amongus,num_dependents_deps.dev:0 @@ -669957,6 +682211,7 @@ github.com/jontsai/pychopro, github.com/jontsai/python3-wkhtmltopdf, github.com/jontuk/pychro, github.com/jontypreston/emog,num_dependents_deps.dev:0 +github.com/jontze/action-mdbook, github.com/jonursenbach/backup-to-ebooks-archive,num_dependents_deps.dev:0 github.com/jonursenbach/emoji-lexicon,num_dependents_deps.dev:2 github.com/jonursenbach/hubot-baseball,num_dependents_deps.dev:0 @@ -670018,6 +682273,7 @@ github.com/jonyeezs/vscode-power-up-web-development-pack,num_dependents_deps.dev github.com/jonyet/webdriverio-boilerplate,num_dependents_deps.dev:0 github.com/jonyhuang99/gorm-adapter,num_dependents_deps.dev:0 github.com/jonyhy96/fuck-crud,num_dependents_deps.dev:0 +github.com/jonyhy96/lgtm-action, github.com/jonyhy96/replacer,num_dependents_deps.dev:0 github.com/jonyio/karma-html-live-reporter,num_dependents_deps.dev:0 github.com/jonykrause/mapquest-geocoder,num_dependents_deps.dev:0 @@ -670053,6 +682309,7 @@ github.com/joocer/burgess, github.com/joocer/cronicl, github.com/joocer/danvers, github.com/joocer/data_expectations, +github.com/joocer/fides, github.com/joocer/juon, github.com/joocer/timeseries, github.com/joofsh/geofsh,num_dependents_deps.dev:0 @@ -670098,6 +682355,7 @@ github.com/joomcode/colonist,num_dependents_deps.dev:0 github.com/joomcode/go-bindata,num_dependents_deps.dev:0 github.com/joomcode/gocraft-web,num_dependents_deps.dev:0 github.com/joomcode/gofpdf,num_dependents_deps.dev:0 +github.com/joomcode/jira-webhook-action, github.com/joomcode/lightsaber,num_dependents_deps.dev:0 github.com/joomcode/schema,num_dependents_deps.dev:0 github.com/joomcode/smuggler,num_dependents_deps.dev:0 @@ -670123,6 +682381,7 @@ github.com/joona/settings.json,num_dependents_deps.dev:0 github.com/joonacreoir/Ask-Jeeves,num_dependents_deps.dev:0 github.com/joonas-fi/joonas-sys,num_dependents_deps.dev:0 github.com/joonas-fi/rss-to-homeassistant,num_dependents_deps.dev:0 +github.com/joonashak/comment-annotator, github.com/joonashak/eve-data,num_dependents_deps.dev:0 github.com/joonaspilli/devious-tools,num_dependents_deps.dev:0 github.com/joonaspilli/vue-active-view,num_dependents_deps.dev:0 @@ -670220,6 +682479,8 @@ github.com/joontop/joontop-editor,num_dependents_deps.dev:0 github.com/joonty/breaktime,num_dependents_deps.dev:0 github.com/joonvena/dealhawk-backend,num_dependents_deps.dev:0 github.com/joonvena/robot-reporter,num_dependents_deps.dev:0 +github.com/joonvena/robotframework-docker-action, +github.com/joonvena/robotframework-reporter-action, github.com/jooohhn/amplitude-javascript, github.com/jooohn/array-diff-items,num_dependents_deps.dev:0 github.com/jooohn/typesafe-di,num_dependents_deps.dev:0 @@ -670292,6 +682553,7 @@ github.com/jooycar/js-sdk, github.com/jooyul-yoon/golang,num_dependents_deps.dev:0 github.com/jooyul-yoon/jobscrape,num_dependents_deps.dev:0 github.com/jooyunghan/symcoro,num_dependents_deps.dev:0 +github.com/jop-software/github-labels-as-code-action, github.com/jopasserat/toolxit-bibtex,num_dependents_deps.dev:0 github.com/jopaw/json-schema-ref-parser,num_dependents_deps.dev:0 github.com/jope-io/JopeHome-ecobee,num_dependents_deps.dev:0 @@ -670397,6 +682659,7 @@ github.com/jordan-melendez/gsum, github.com/jordan-patterson/frequently, github.com/jordan-patterson/gtts,num_dependents_deps.dev:0 github.com/jordan-rash/pythonTest, +github.com/jordan-simonovski/datadog-event-action, github.com/jordan-wright/email,criticality_score:0.456870 github.com/jordan078/PDBCOCO, github.com/jordan1997/Moxy,num_dependents_deps.dev:1 @@ -670417,6 +682680,8 @@ github.com/jordanarcherdev/node-fs-digger,num_dependents_deps.dev:0 github.com/jordanarseno/node-postgres-named,num_dependents_deps.dev:0 github.com/jordanaustin/BurntToast,num_dependents_deps.dev:0 github.com/jordanbangia/future,num_dependents_deps.dev:0 +github.com/jordanbean-msft/github-action-wth-template-check, +github.com/jordanbean-msft/wth-spell-check-action, github.com/jordanblakey/ffjs,num_dependents_deps.dev:0 github.com/jordanblakey/ffront,num_dependents_deps.dev:0 github.com/jordanbonaldi/CloudflareDNS,num_dependents_deps.dev:0 @@ -670504,6 +682769,7 @@ github.com/jordanlewis/gcassert,num_dependents_deps.dev:0 github.com/jordanlewis/go2xunit,num_dependents_deps.dev:0 github.com/jordanlewis/heapalyzer,num_dependents_deps.dev:0 github.com/jordanlewis/re,num_dependents_deps.dev:0 +github.com/jordanlumley/balena-action, github.com/jordanm/bake, github.com/jordanmack/nervos-lumos-sign-message,num_dependents_deps.dev:0 github.com/jordanmack/sudt-cli,num_dependents_deps.dev:0 @@ -670549,6 +682815,7 @@ github.com/jordansexton/koa-redirect,num_dependents_deps.dev:0 github.com/jordansexton/koa-trout,num_dependents_deps.dev:0 github.com/jordansexton/react-native-webview-crosswalk,num_dependents_deps.dev:0 github.com/jordansexton/react-native-wkwebview,num_dependents_deps.dev:0 +github.com/jordansilva/github-action-issue-to-jira, github.com/jordansinn1994/rand20.js,num_dependents_deps.dev:0 github.com/jordansinn1994/rollbot.js,num_dependents_deps.dev:0 github.com/jordansissel/experiments,num_dependents_deps.dev:0 @@ -670575,6 +682842,7 @@ github.com/jordao76/hello-lights,num_dependents_deps.dev:0 github.com/jordao76/hello-lights-cli,num_dependents_deps.dev:0 github.com/jordao76/web-build-tasks,num_dependents_deps.dev:0 github.com/jordelca/krakend-opa,num_dependents_deps.dev:0 +github.com/jordemort/action-pyright, github.com/jordemort/python-renameat2, github.com/jordens/csdl, github.com/jordens/pyasa, @@ -670612,6 +682880,8 @@ github.com/jordipbou/frLinnStrument,num_dependents_deps.dev:0 github.com/jordipbou/frMIDI,num_dependents_deps.dev:0 github.com/jordipolo/oas_proxy,num_dependents_deps.dev:0 github.com/jordipons/musicnn, +github.com/jordiprats/mysql-action, +github.com/jordiprats/puppetmasterless-action, github.com/jordiprats/python-cloudswitch, github.com/jordiprats/python-libscrt, github.com/jordiprats/python-penisipsum, @@ -670726,6 +682996,7 @@ github.com/jorgebg/devip, github.com/jorgebg/gief, github.com/jorgebg/nestbackup, github.com/jorgebg/seenoevil, +github.com/jorgebg/stateful-action, github.com/jorgebg/vows-at,num_dependents_deps.dev:0 github.com/jorgebg/webassets-livescript, github.com/jorgebo10/hello-pipeline,num_dependents_deps.dev:0 @@ -671036,6 +683307,7 @@ github.com/jos-b/hubble, github.com/jos3duardo/cnpj-ws,num_dependents_deps.dev:0 github.com/jos3duardo/node-cep-correios,num_dependents_deps.dev:0 github.com/jos3s/theme-icons,num_dependents_deps.dev:0 +github.com/josStorer/get-current-time, github.com/josa42/alfred-text-transformation,num_dependents_deps.dev:0 github.com/josa42/atom-quick-input,num_dependents_deps.dev:0 github.com/josa42/coc-dev-tools,num_dependents_deps.dev:0 @@ -671085,15 +683357,19 @@ github.com/joschi/jackson-datatype-threetenbp,num_dependents_deps.dev:524 github.com/joschi/jersey-jetty10,num_dependents_deps.dev:0 github.com/joschi/jersey-smime,num_dependents_deps.dev:0 github.com/joschi/jlibvips,num_dependents_deps.dev:0 +github.com/joschi/mastofeedbot, github.com/joschi/nosqlunit-elasticsearch-http,num_dependents_deps.dev:0 github.com/joschi/nosqlunit-elasticsearch2,num_dependents_deps.dev:0 github.com/joschi/openapi-diff,num_dependents_deps.dev:0 +github.com/joschi/setup-jdk, github.com/joschi/tinylog-gelf,num_dependents_deps.dev:0 +github.com/joschi/toot-together, github.com/joschnitzbauer/dalymi, github.com/joschuafink/noodle-slide,num_dependents_deps.dev:0 github.com/joscmw95/ng-materialize,num_dependents_deps.dev:0 github.com/josconno/moria, github.com/joscor34/ecoSmart,num_dependents_deps.dev:0 +github.com/josdagaro/tfsuit, github.com/josdejong/babble,num_dependents_deps.dev:0 github.com/josdejong/ducktype,num_dependents_deps.dev:10 github.com/josdejong/function-composer,num_dependents_deps.dev:0 @@ -671121,6 +683397,8 @@ github.com/jose-hms/ewonjs,num_dependents_deps.dev:0 github.com/jose-joye/osb-broker-k8s-lib,num_dependents_deps.dev:0 github.com/jose-lpa/crossbarhttp3, github.com/jose-lpa/django-tracking-analyzer, +github.com/jose-lpa/python-black-check-action, +github.com/jose-lpa/python-isort-check-action, github.com/jose-manuel/helloworld-jmg, github.com/jose-manuel/npfc, github.com/jose-moralez/window_ops, @@ -671139,12 +683417,14 @@ github.com/jose1914luis/Ionic2-Calendar,num_dependents_deps.dev:0 github.com/jose99ii/programacion,num_dependents_deps.dev:0 github.com/joseAbarcaSaavedra/test, github.com/joseDaKing/react-native-extra,num_dependents_deps.dev:0 +github.com/joseEnrique/create-envfile, github.com/joseEnrique/elasticsearch-watcher-js,num_dependents_deps.dev:0 github.com/joseEnrique/parallel-requests,num_dependents_deps.dev:0 github.com/joseGabriel06/listsum, github.com/joseabad123/simplegoapp,num_dependents_deps.dev:0 github.com/joseabraham/eprezto-yappy-sdk, github.com/joseacabaneros/github-names,num_dependents_deps.dev:0 +github.com/joseaeltala/convert-svg-to-png, github.com/joseagudelob/josemod,num_dependents_deps.dev:0 github.com/joseairosa/app-tester,num_dependents_deps.dev:0 github.com/joseairosa/pi-sys,num_dependents_deps.dev:0 @@ -671196,6 +683476,7 @@ github.com/josecdomber/grte-tab-cat-menu,num_dependents_deps.dev:0 github.com/josecebe/twbs-pagination,num_dependents_deps.dev:0 github.com/josecelano/mandelbrot-orbit, github.com/josecfreitas/eslint-config-insider,num_dependents_deps.dev:0 +github.com/josecfreittas/elixir-coverage-feedback-action, github.com/josecfreittas/ngx-select-dropdown,num_dependents_deps.dev:0 github.com/josecgil/html-fixture,num_dependents_deps.dev:0 github.com/joseconstela/nodesfc,num_dependents_deps.dev:0 @@ -671206,6 +683487,7 @@ github.com/josectobar/react-native-iot-wifi,num_dependents_deps.dev:0 github.com/joseda7/angular-library-example,num_dependents_deps.dev:0 github.com/josedache/react-portal,num_dependents_deps.dev:0 github.com/josedagale/learningNpm, +github.com/josedagama/mulesoft-exchange-upload, github.com/josedelrio85/cells,num_dependents_deps.dev:0 github.com/josedelrio85/dynamoapi,num_dependents_deps.dev:0 github.com/josedelrio85/livecell,num_dependents_deps.dev:0 @@ -671214,6 +683496,7 @@ github.com/josedelrio85/untraceable,num_dependents_deps.dev:0 github.com/josedelrio85/workload,num_dependents_deps.dev:0 github.com/josedepaz/flowx,num_dependents_deps.dev:0 github.com/josedepaz/hapi-ham,num_dependents_deps.dev:0 +github.com/josedev-union/caprover-compose-action, github.com/josedev03/platzom,num_dependents_deps.dev:0 github.com/josedg/api-go,num_dependents_deps.dev:0 github.com/josedonizetti/kubeaudit,num_dependents_deps.dev:0 @@ -671312,6 +683595,7 @@ github.com/josejuan2412/fichier,num_dependents_deps.dev:0 github.com/josejuanqm/VersaPlayer,criticality_score:0.337840 github.com/josejuansanchez/NanoPlayBoard-Python-Library, github.com/josejulio/cytoscape-node-html-label,num_dependents_deps.dev:0 +github.com/josejuniordev/heroku-container-deploy-action, github.com/joseki-tech/generator-paragons,num_dependents_deps.dev:0 github.com/joselado/pyqula, github.com/joselcc/babel7-jest,num_dependents_deps.dev:0 @@ -671382,6 +683666,7 @@ github.com/joseluisq/vue-vpaginator,num_dependents_deps.dev:0 github.com/joselume/realpe-authentication,num_dependents_deps.dev:0 github.com/josem/redis-worker,num_dependents_deps.dev:0 github.com/josemagalhaesnt/cra-template-styled-and-linted,num_dependents_deps.dev:0 +github.com/josemando/aws-cloudfront-create-invalidation, github.com/josemanuelcarretero/ref-union-napi,num_dependents_deps.dev:0 github.com/josemanuelcarretero/windows-registry-napi-node,num_dependents_deps.dev:0 github.com/josemarimanio/django-adminlte2-templates, @@ -671433,6 +683718,7 @@ github.com/josepaiva94/translation-google,num_dependents_deps.dev:0 github.com/josepapaianni/react-declarative-head,num_dependents_deps.dev:0 github.com/josepba/docker-madoko,num_dependents_deps.dev:0 github.com/josepbordesjove/RN-draggable-grid,num_dependents_deps.dev:0 +github.com/josepdecid/get-nodejs-version, github.com/josepedrodias/parenthood,num_dependents_deps.dev:0 github.com/josepedrodias/react-focusable,num_dependents_deps.dev:0 github.com/josepegea/tk_component,num_dependents_deps.dev:2 @@ -671450,6 +683736,7 @@ github.com/joseph-jja/grunt-jsmeter,num_dependents_deps.dev:0 github.com/joseph-jja/grunt-minify-each,num_dependents_deps.dev:0 github.com/joseph-jja/sonar-runner-4node,num_dependents_deps.dev:0 github.com/joseph-mcallister/smart-shell, +github.com/joseph-montanez/forward-event-action, github.com/joseph-montanez/gulp-rsynced,num_dependents_deps.dev:0 github.com/joseph-njogu/Devansiblelib, github.com/joseph-njogu/Django_local_lib, @@ -671477,6 +683764,7 @@ github.com/joseph1125/dart-text, github.com/joseph1125/dart_text,num_dependents_deps.dev:0 github.com/joseph184/browserify-fs,num_dependents_deps.dev:12 github.com/joseph2/vue-slide-unlock,num_dependents_deps.dev:0 +github.com/joseph243/SlackTestReporter, github.com/josephPB/XNet, github.com/josephacall/polypoint, github.com/josepharhar/nanostat,num_dependents_deps.dev:0 @@ -671602,6 +683890,7 @@ github.com/josephlewisjgl/statswalespy, github.com/josephlewisjgl/write-docker-actions,num_dependents_deps.dev:0 github.com/josephlim94/janus_gst_client_py, github.com/josephlr/ms-tpm-20-ref,Google +github.com/josephlr/setup-protoc, github.com/josephluck/afterimage,num_dependents_deps.dev:0 github.com/josephluck/helix,num_dependents_deps.dev:0 github.com/josephluck/helix-inferno,num_dependents_deps.dev:0 @@ -671641,6 +683930,8 @@ github.com/josephrexme/AR.js,num_dependents_deps.dev:0 github.com/josephrexme/griz,num_dependents_deps.dev:0 github.com/josephrexme/scrollobserve,num_dependents_deps.dev:0 github.com/josephrexme/typable-react,num_dependents_deps.dev:0 +github.com/josephrodriguez/setup-kustomizegen, +github.com/josephrodriguez/swift-release, github.com/josephroffey/broccoli-npm-pull, github.com/josephroyking/bitcoincom-link,num_dependents_deps.dev:0 github.com/josephroyking/cashtab-components,num_dependents_deps.dev:0 @@ -672011,6 +684302,7 @@ github.com/joshburnsxyz/cid-recv,num_dependents_deps.dev:0 github.com/joshburnsxyz/comd,num_dependents_deps.dev:0 github.com/joshburnsxyz/servicelog.js,num_dependents_deps.dev:0 github.com/joshbwlng/socket.io-prometheus-metrics,num_dependents_deps.dev:0 +github.com/joshcai/leetcode-sync, github.com/joshcalcino/pysplashsph, github.com/joshcaplin/wasp,num_dependents_deps.dev:0 github.com/joshcarp/afterwork-go,num_dependents_deps.dev:0 @@ -672024,6 +684316,7 @@ github.com/joshcarp/expert-eureka,num_dependents_deps.dev:0 github.com/joshcarp/gh-issue-automation,num_dependents_deps.dev:0 github.com/joshcarp/go-benchmarks,num_dependents_deps.dev:0 github.com/joshcarp/go-get-test,num_dependents_deps.dev:0 +github.com/joshcarp/gogetcheck, github.com/joshcarp/grpcexample,num_dependents_deps.dev:0 github.com/joshcarp/grpctl,num_dependents_deps.dev:0 github.com/joshcarp/it-project,num_dependents_deps.dev:0 @@ -672140,6 +684433,7 @@ github.com/joshgentry/hyper-gruvbox,num_dependents_deps.dev:0 github.com/joshgerdes/jekyll-smartcropper,num_dependents_deps.dev:0 github.com/joshgerdes/jekyll-uno,criticality_score:0.377020 github.com/joshgerdes/jquery.ui.touch,num_dependents_deps.dev:2 +github.com/joshghent/aws-ssm-parameter-store, github.com/joshghent/color-converter,num_dependents_deps.dev:0 github.com/joshghent/color-formatter-cli,num_dependents_deps.dev:0 github.com/joshghent/deepClone,num_dependents_deps.dev:114 @@ -672259,6 +684553,11 @@ github.com/joshjhargreaves/react-native-event-calendar,num_dependents_deps.dev:0 github.com/joshjim-bactad/amqplib-mock,num_dependents_deps.dev:0 github.com/joshjim-bactad/icecat,num_dependents_deps.dev:0 github.com/joshjnunez/lodown,num_dependents_deps.dev:0 +github.com/joshjohanning/actions-ref-linter, +github.com/joshjohanning/azdo_commit_message_validator, +github.com/joshjohanning/enforce-github-pat-expiration, +github.com/joshjohanning/generate-org-repos-sbom-action, +github.com/joshjohanning/text-to-emoji-action, github.com/joshjordan/auto-type-cast,num_dependents_deps.dev:0 github.com/joshjung/dummy-data,num_dependents_deps.dev:0 github.com/joshjung/dummy-server,num_dependents_deps.dev:0 @@ -672302,6 +684601,8 @@ github.com/joshlam123/dsc_project,num_dependents_deps.dev:0 github.com/joshland/btrfsmaint, github.com/joshland/wgmesh, github.com/joshlarsen/aws-recon-proto,num_dependents_deps.dev:0 +github.com/joshlarsen/jekyll4-deploy-gh-pages, +github.com/joshlarsen/ssh-tunnel-action, github.com/joshleaves/api-signed-request,num_dependents_deps.dev:0 github.com/joshleaves/licenjs,num_dependents_deps.dev:0 github.com/joshleaves/node-ga,num_dependents_deps.dev:0 @@ -672319,8 +684620,10 @@ github.com/joshlf/package-test,num_dependents_deps.dev:0 github.com/joshlgrossman/seams,num_dependents_deps.dev:0 github.com/joshlgrossman/superapp,num_dependents_deps.dev:0 github.com/joshlk/dataclassframe, +github.com/joshlk/jenkins-githubaction, github.com/joshlk/k-means-constrained, github.com/joshlk/many_requests, +github.com/joshlrogers/variable-substitution, github.com/joshm/fulltongo,num_dependents_deps.dev:0 github.com/joshm1/koa-history-api-fallback,num_dependents_deps.dev:0 github.com/joshm12345/ezhashlib, @@ -672370,6 +684673,10 @@ github.com/joshmello/reactjs-title, github.com/joshmenden/planet-express,num_dependents_deps.dev:0 github.com/joshmerr/cryptotool,num_dependents_deps.dev:0 github.com/joshmfrankel/hubot-star-wars,num_dependents_deps.dev:0 +github.com/joshmfrankel/simplecov-check-action, +github.com/joshmgross/guestbook, +github.com/joshmgross/remove-from-project-classic, +github.com/joshmgross/send-slack-message, github.com/joshmh/globalize2,num_dependents_deps.dev:0 github.com/joshmh/lamassu-mock-exchange, github.com/joshmh/lamassu-mock-sms,num_dependents_deps.dev:0 @@ -672481,6 +684788,7 @@ github.com/joshsouza/generator-puppetskel,num_dependents_deps.dev:0 github.com/joshspeagle/brutus, github.com/joshspeagle/dynesty, github.com/joshspeagle/frankenz, +github.com/joshspicer/devcontainer-features-action, github.com/joshstevens19/ethereum-abi-types-generator,num_dependents_deps.dev:0 github.com/joshstevens19/ethereum-bloom-filters,num_dependents_deps.dev:10184 github.com/joshstevens19/ethereum-erc20-token-balances-multicall,num_dependents_deps.dev:0 @@ -672494,6 +684802,7 @@ github.com/joshstrange/eufy-robovac,num_dependents_deps.dev:0 github.com/joshstrange/hexo-deployer-s3,num_dependents_deps.dev:0 github.com/joshstrange/homebridge-eufy-robovac,num_dependents_deps.dev:0 github.com/joshstrange/paprika-api,num_dependents_deps.dev:2 +github.com/joshstrange/setup-quasar, github.com/joshstrange/simplebank,num_dependents_deps.dev:0 github.com/joshstrobl/libdconf,num_dependents_deps.dev:0 github.com/joshsusser/refraction,num_dependents_deps.dev:0 @@ -672549,6 +684858,9 @@ github.com/joshtronic/node-holidayapi,num_dependents_deps.dev:0 github.com/joshtru/formatus,num_dependents_deps.dev:0 github.com/joshturge/goswyftx,num_dependents_deps.dev:0 github.com/joshturge/shortener,num_dependents_deps.dev:0 +github.com/joshtynjala/setup-adobe-air-action, +github.com/joshtynjala/setup-apache-flex-action, +github.com/joshua-auchincloss/criterion-pages, github.com/joshua-cooper/eslint-config,num_dependents_deps.dev:0 github.com/joshua-cooper/genp,num_dependents_deps.dev:0 github.com/joshua-cooper/supermemo2,num_dependents_deps.dev:0 @@ -672585,6 +684897,7 @@ github.com/joshuaaron/use-container-queries,num_dependents_deps.dev:0 github.com/joshuaaron/use-element-in-view,num_dependents_deps.dev:0 github.com/joshuaavalon/favicon, github.com/joshuaavalon/file_hash, +github.com/joshuaavalon/flyway-action, github.com/joshuaavalon/hapi-plugin-graphql,num_dependents_deps.dev:0 github.com/joshuaavalon/koa-graphql-typescript,num_dependents_deps.dev:0 github.com/joshuaavalon/lambda-sharp,num_dependents_deps.dev:0 @@ -672631,6 +684944,7 @@ github.com/joshuadombal/fiosdb,num_dependents_deps.dev:0 github.com/joshuadutton/aws-serverless-toolbox,num_dependents_deps.dev:0 github.com/joshuaeilers/fs-walker-rx,num_dependents_deps.dev:0 github.com/joshuaellis/react-tensorflow,num_dependents_deps.dev:0 +github.com/joshuaestes/featuretoggle, github.com/joshuafc/ntvpn,num_dependents_deps.dev:0 github.com/joshuafcole/claire-files,num_dependents_deps.dev:0 github.com/joshuafcole/indeks,num_dependents_deps.dev:0 @@ -672697,17 +685011,34 @@ github.com/joshuakarjala/redisq-py, github.com/joshuakarjala/sydbank-exporter, github.com/joshuakemmerling/gatsby-source-apple-app-store,num_dependents_deps.dev:0 github.com/joshuakemmerling/gatsby-theme-app-landing-page, +github.com/joshuakgoldberg/all-contributors-for-repository, +github.com/joshuakgoldberg/are-docs-informative, +github.com/joshuakgoldberg/astro-konamimojisplosion, +github.com/joshuakgoldberg/cached-factory, +github.com/joshuakgoldberg/co-author-to-username, +github.com/joshuakgoldberg/commit-to-co-authors, +github.com/joshuakgoldberg/console-fail-test, +github.com/joshuakgoldberg/create-typescript-app, github.com/joshuakgoldberg/csproj-to-tsconfig,num_dependents_deps.dev:0 github.com/joshuakgoldberg/emojisplosion,num_dependents_deps.dev:0 +github.com/joshuakgoldberg/eslint-plugin-expect-type, +github.com/joshuakgoldberg/github-sponsors-to-markdown, github.com/joshuakgoldberg/jest-dev-server,num_dependents_deps.dev:0 github.com/joshuakgoldberg/jquery-2-typescript-async-await-adapter,num_dependents_deps.dev:0 +github.com/joshuakgoldberg/konamimojisplosion, github.com/joshuakgoldberg/mobx-safe,num_dependents_deps.dev:0 github.com/joshuakgoldberg/package-build-order,num_dependents_deps.dev:0 github.com/joshuakgoldberg/performance-stub,num_dependents_deps.dev:0 +github.com/joshuakgoldberg/prettier-plugin-curly, +github.com/joshuakgoldberg/should-semantic-release, +github.com/joshuakgoldberg/sinon-timers-repeatable, github.com/joshuakgoldberg/squee,num_dependents_deps.dev:0 +github.com/joshuakgoldberg/template-typescript-node-package, github.com/joshuakgoldberg/test-event-listeners,num_dependents_deps.dev:0 github.com/joshuakgoldberg/throttle-debounce,num_dependents_deps.dev:0 +github.com/joshuakgoldberg/ts-api-utils, github.com/joshuakgoldberg/tsc-fancy,num_dependents_deps.dev:0 +github.com/joshuakgoldberg/typedoc-plugin-konamimojisplosion, github.com/joshuakwaite/pdf-flatten,num_dependents_deps.dev:0 github.com/joshualat/Container.rb,num_dependents_deps.dev:0 github.com/joshualat/study,num_dependents_deps.dev:0 @@ -672900,6 +685231,7 @@ github.com/joshwnj/style-attr,num_dependents_deps.dev:370 github.com/joshwnj/synthland,num_dependents_deps.dev:0 github.com/joshwnj/watch-json,num_dependents_deps.dev:0 github.com/joshwnj/watchob,num_dependents_deps.dev:0 +github.com/joshwooding/verified-github-author-action, github.com/joshwyatt/clear_screen,num_dependents_deps.dev:0 github.com/joshwyatt/curriculiterate,num_dependents_deps.dev:0 github.com/joshwyatt/fix-subl,num_dependents_deps.dev:0 @@ -673033,6 +685365,10 @@ github.com/josscode/safetyfirst,num_dependents_deps.dev:0 github.com/josscrowcroft/accounting.js,num_dependents_deps.dev:1 github.com/josscrowcroft/money.js,num_dependents_deps.dev:0 github.com/josscrowcroft/npm-exchange-rates,num_dependents_deps.dev:0 +github.com/jossef/action-latest-release-info, +github.com/jossef/action-semantic-release-info, +github.com/jossef/action-semantic-releaser, +github.com/jossef/action-set-json-field, github.com/jossef/material-design-icons-iconfont,num_dependents_deps.dev:140 github.com/jossef/open-accessability,num_dependents_deps.dev:0 github.com/jossef/open-accessibility, @@ -673074,6 +685410,7 @@ github.com/jostcrow/import_class, github.com/josteink/wsd-mode,criticality_score:0.316830 github.com/josteitv/nissanconnect-api,num_dependents_deps.dev:0 github.com/josteph/browlog, +github.com/josteph/depcruise-pull-request, github.com/josteph/esbuild-plugin-lodash,num_dependents_deps.dev:2 github.com/joster-dev/icon, github.com/joster422/form-control,num_dependents_deps.dev:0 @@ -673099,6 +685436,7 @@ github.com/jostylr/litpro-jshint,num_dependents_deps.dev:0 github.com/jostylr/math-numbers,num_dependents_deps.dev:0 github.com/jostyposty/eslint-config,num_dependents_deps.dev:0 github.com/josuablejeru/netor,num_dependents_deps.dev:0 +github.com/josuacarranza/custom-javascript-open-issue-action, github.com/josubg/django_navbar_client, github.com/josubg/pycorpus, github.com/josubg/pyfiware, @@ -673144,6 +685482,7 @@ github.com/josuehennemann/csrf,num_dependents_deps.dev:0 github.com/josuehennemann/gobot,num_dependents_deps.dev:0 github.com/josuehennemann/gocv,num_dependents_deps.dev:0 github.com/josuejvl/go-react,num_dependents_deps.dev:0 +github.com/josuelopezv/K8AppDeploy, github.com/josuemartinezz/camelcase_to_snakecase_js,num_dependents_deps.dev:0 github.com/josuemeza/tag-releaser,num_dependents_deps.dev:0 github.com/josuemtzmo/xarrayMannKendall, @@ -673189,6 +685528,7 @@ github.com/jotafeldmann/dra-dual-reference-array,num_dependents_deps.dev:0 github.com/jotagep/harmony-dapp-template,num_dependents_deps.dev:0 github.com/jotagep/jotagep-card,num_dependents_deps.dev:0 github.com/jotagesales/gin-server,num_dependents_deps.dev:0 +github.com/jotahe/javascriptaction, github.com/jotak/mipod,num_dependents_deps.dev:0 github.com/jotamaster/email-secure,num_dependents_deps.dev:0 github.com/jotamusik/async-validator,num_dependents_deps.dev:0 @@ -673315,15 +685655,22 @@ github.com/joutaojian/ai-java-sdk,num_dependents_deps.dev:0 github.com/joutvhu/babel-plugin-transform-node-module,num_dependents_deps.dev:0 github.com/joutvhu/clianalysis,num_dependents_deps.dev:0 github.com/joutvhu/control-terminal,num_dependents_deps.dev:0 +github.com/joutvhu/create-release, +github.com/joutvhu/create-tag, github.com/joutvhu/data-mapping,num_dependents_deps.dev:0 +github.com/joutvhu/delete-artifact, github.com/joutvhu/express-whirler,num_dependents_deps.dev:0 github.com/joutvhu/extension-props,num_dependents_deps.dev:0 github.com/joutvhu/fixed-width-parser,num_dependents_deps.dev:0 +github.com/joutvhu/ftp-transfer, +github.com/joutvhu/get-release, github.com/joutvhu/import-by,num_dependents_deps.dev:0 github.com/joutvhu/material-extra,num_dependents_deps.dev:0 +github.com/joutvhu/publish-android, github.com/joutvhu/spring-dynamic-jpa,num_dependents_deps.dev:0 github.com/joutvhu/whirler,num_dependents_deps.dev:0 github.com/joutvhu/whirler-client,num_dependents_deps.dev:0 +github.com/joutvhu/write-file, github.com/jouve/supervisor-react, github.com/jouweneel/MCom,num_dependents_deps.dev:0 github.com/jouweneel/tvguide,num_dependents_deps.dev:0 @@ -673334,6 +685681,7 @@ github.com/jouz/xbee-api,num_dependents_deps.dev:0 github.com/jouz/xbee-stream,num_dependents_deps.dev:0 github.com/jouz/xbee-stream-nodes,num_dependents_deps.dev:0 github.com/jovaage/json-file-proxy,num_dependents_deps.dev:0 +github.com/jovanblazek/env-changes-detector, github.com/jovandeginste/go-mysqldump,num_dependents_deps.dev:0 github.com/jovandeginste/gr,num_dependents_deps.dev:0 github.com/jovandeginste/hiera-mock,num_dependents_deps.dev:0 @@ -673380,6 +685728,7 @@ github.com/jovicaconkic/generator-grunt-angular,num_dependents_deps.dev:0 github.com/jovicaconkic/generator-nswebangular, github.com/jovicaconkic/generator-nswebapp,num_dependents_deps.dev:0 github.com/jovicigor/DataPreprocessor, +github.com/jovicon/s3-upload-github-action, github.com/jovidecroock/React-angler,num_dependents_deps.dev:0 github.com/jovidecroock/hooked-form,num_dependents_deps.dev:0 github.com/jovidecroock/mobx-form, @@ -673408,6 +685757,7 @@ github.com/jovotech/jovo-output, github.com/jovotech/jovo-sample-voice-app-nodejs,num_dependents_deps.dev:0 github.com/jovpet/create-react-component-folder,num_dependents_deps.dev:0 github.com/jovpet/generator-wordpress-theme-gulp,num_dependents_deps.dev:0 +github.com/jovrtn/github-action-wpengine-git-deploy, github.com/jovsa/jovsatools, github.com/jovyan/jupyter-devinstall,num_dependents_deps.dev:0 github.com/jovyan/pythreejs,num_dependents_deps.dev:0 @@ -673477,6 +685827,7 @@ github.com/joyant/fire,num_dependents_deps.dev:0 github.com/joyant/leaf,num_dependents_deps.dev:0 github.com/joyanujoy/geolib, github.com/joyarzun/accuweather-simple,num_dependents_deps.dev:0 +github.com/joyarzun/go-testcoverage-action, github.com/joyarzun/jenkins-slack,num_dependents_deps.dev:0 github.com/joyarzun/speeech,num_dependents_deps.dev:0 github.com/joyblanks/sp-devops,num_dependents_deps.dev:0 @@ -673758,6 +686109,7 @@ github.com/jozefizso/bower-jquery-easing,num_dependents_deps.dev:0 github.com/jozefizso/connect-error-document,num_dependents_deps.dev:0 github.com/jozefizso/generator-license,num_dependents_deps.dev:314 github.com/jozefizso/nifty-magic-check,num_dependents_deps.dev:0 +github.com/jozefizso/setup-sparkle, github.com/jozefizso/ui-mask,num_dependents_deps.dev:0 github.com/jozefizso/vite-plugin-office-addin,num_dependents_deps.dev:0 github.com/jozeflacko/test-api,num_dependents_deps.dev:0 @@ -673782,6 +686134,7 @@ github.com/jozsefsallai/iro,num_dependents_deps.dev:0 github.com/jozsefsallai/nevnapok.js,num_dependents_deps.dev:0 github.com/jozsefsallai/next-bar,num_dependents_deps.dev:0 github.com/jozsefsallai/node-okuna,num_dependents_deps.dev:0 +github.com/jozsefsallai/node-package-version, github.com/jozsefsallai/peekalink.py, github.com/jozsefsallai/vue-kofi,num_dependents_deps.dev:0 github.com/jozsi/mystash,num_dependents_deps.dev:0 @@ -673864,6 +686217,7 @@ github.com/jpalumickas/auth0-verifier,num_dependents_deps.dev:0 github.com/jpalumickas/csstats,num_dependents_deps.dev:0 github.com/jpalumickas/emoji-datasource-ruby,num_dependents_deps.dev:0 github.com/jpalumickas/hubot-gamestatus,num_dependents_deps.dev:0 +github.com/jpalumickas/imdb-export-action, github.com/jpalumickas/node-oauth2-server-grant-type-apple,num_dependents_deps.dev:0 github.com/jpalumickas/node-oauth2-server-grant-type-facebook,num_dependents_deps.dev:0 github.com/jpalumickas/node-oauth2-server-grant-type-google,num_dependents_deps.dev:0 @@ -673962,8 +686316,10 @@ github.com/jpavlav/QueryPrometheus, github.com/jpavlav/UptimeRobotPy, github.com/jpavon/react-scripts-ts,num_dependents_deps.dev:0 github.com/jpavon/typings-for-css-modules-loader,num_dependents_deps.dev:0 +github.com/jpb06/bump-package, github.com/jpb06/debian-node-deploy,num_dependents_deps.dev:0 github.com/jpb06/gapi-oauth-react-hooks,num_dependents_deps.dev:0 +github.com/jpb06/jest-badges-action, github.com/jpb06/mongodb-generic-dal,num_dependents_deps.dev:0 github.com/jpb06/node-jest-badges,num_dependents_deps.dev:0 github.com/jpb12/react-tree-graph,num_dependents_deps.dev:26 @@ -674095,6 +686451,7 @@ github.com/jpedro/color,num_dependents_deps.dev:0 github.com/jpedro/crypto,num_dependents_deps.dev:0 github.com/jpedro/echo,num_dependents_deps.dev:0 github.com/jpedro/kubernetes-ingress-rules,num_dependents_deps.dev:0 +github.com/jpedro002/Discord-Notification, github.com/jpedroh/aisweb-brasil,num_dependents_deps.dev:0 github.com/jpedroh/ivao-whazzup,num_dependents_deps.dev:0 github.com/jpedroh/mach,num_dependents_deps.dev:0 @@ -674145,6 +686502,7 @@ github.com/jperasmus/keyboard-only-focus-ring, github.com/jperasmus/pipe-then,num_dependents_deps.dev:0 github.com/jperasmus/snapscan,num_dependents_deps.dev:0 github.com/jpereiramg/getsandbox-express,num_dependents_deps.dev:0 +github.com/jpereiramp/retag-buildah-image, github.com/jperelli/django-class-based-auth-views, github.com/jperelli/django-variable-settings, github.com/jperelli/domokeeper,num_dependents_deps.dev:0 @@ -674188,15 +686546,21 @@ github.com/jpeterson/calcite-ui-icons-react,num_dependents_deps.dev:4 github.com/jpetitcolas/ui-codemirror,num_dependents_deps.dev:0 github.com/jpetitcolas/webpack-react, github.com/jpetrucciani/archives, +github.com/jpetrucciani/archives-check, +github.com/jpetrucciani/bandit-check, github.com/jpetrucciani/bash.py, +github.com/jpetrucciani/black-check, github.com/jpetrucciani/bucketstore, github.com/jpetrucciani/gamble, github.com/jpetrucciani/hubspot3, github.com/jpetrucciani/jh_jwt, +github.com/jpetrucciani/mypy-check, +github.com/jpetrucciani/prospector-check, github.com/jpetrucciani/pybugsnag, github.com/jpetrucciani/pyclickup, github.com/jpetrucciani/python-duckduckgo, github.com/jpetrucciani/qoo, +github.com/jpetrucciani/ruff-check, github.com/jpettersson/lingon,num_dependents_deps.dev:0 github.com/jpettersson/lingon-cli,num_dependents_deps.dev:0 github.com/jpettersson/lingon-git-deploy,num_dependents_deps.dev:0 @@ -674443,7 +686807,9 @@ github.com/jplusplus/viltolyckor_scraper, github.com/jplyle/node-tss,num_dependents_deps.dev:0 github.com/jpm63/go-allyinvest,num_dependents_deps.dev:0 github.com/jpm8888/angel-broking-command-line,num_dependents_deps.dev:0 +github.com/jpmaca/k8s-envsubst-action, github.com/jpmarra/learnstorybook-design-system,num_dependents_deps.dev:0 +github.com/jpmcb/prow-github-actions, github.com/jpmcgrath/shortener,"criticality_score:0.355600,num_dependents_deps.dev:0" github.com/jpmckinney/image-proxy, github.com/jpmelos/migreat, @@ -674546,8 +686912,10 @@ github.com/jpoehls/hulk,num_dependents_deps.dev:0 github.com/jpoehls/hulk-cli,num_dependents_deps.dev:0 github.com/jpoehls/node-RandomSelection,num_dependents_deps.dev:0 github.com/jpoehnelt/in-solidarity-bot,num_dependents_deps.dev:0 +github.com/jpoehnelt/secrets-sync-action, github.com/jpoehnelt/semantic-release-replace-plugin,num_dependents_deps.dev:0 github.com/jpoehnelt/test_npm_package,num_dependents_deps.dev:0 +github.com/jpoehnelt/verify-npm-files-action, github.com/jpoiri/ember-dirtier, github.com/jpoiri/ember-i18n-export,num_dependents_deps.dev:0 github.com/jpoiri/ember-i18n-import,num_dependents_deps.dev:0 @@ -674623,6 +686991,7 @@ github.com/jpoullet2000/atlasclient, github.com/jpoullet2000/orange3-shap, github.com/jpountz/lz4-java,num_dependents_deps.dev:6239 github.com/jpower432/webhook-interceptor,num_dependents_deps.dev:0 +github.com/jpowerj/gu-domains-push, github.com/jpowers/node-google-places,num_dependents_deps.dev:0 github.com/jpowersdev/lat_lng_radius, github.com/jpoz/APNS,num_dependents_deps.dev:0 @@ -674642,6 +687011,7 @@ github.com/jppradhan/compound-js,num_dependents_deps.dev:0 github.com/jppradhan/nggen,num_dependents_deps.dev:0 github.com/jppribeiro/go-vectorial,num_dependents_deps.dev:0 github.com/jpqy/lotide,num_dependents_deps.dev:0 +github.com/jpradoar/ga-semanticversion, github.com/jpragma/micronaut-uow-scope,num_dependents_deps.dev:0 github.com/jpragma/testdataset,num_dependents_deps.dev:0 github.com/jpramosi/geckordp, @@ -674678,7 +687048,9 @@ github.com/jpreecedev/default-project-setup,num_dependents_deps.dev:0 github.com/jpreecedev/webpack-4-scratch,num_dependents_deps.dev:0 github.com/jpreynat/github-email-js,num_dependents_deps.dev:0 github.com/jpreynat/react-custom-debounced-input,num_dependents_deps.dev:0 +github.com/jpribyl/action-docker-layer-caching, github.com/jpribyl/adonis-airtable-provider,num_dependents_deps.dev:0 +github.com/jpribyl/push-prebuilt-action, github.com/jpribyl/react-hook-dragula,num_dependents_deps.dev:0 github.com/jpribyl/react-hook-mathjax,num_dependents_deps.dev:0 github.com/jprice/outlaw.py, @@ -674950,6 +687322,7 @@ github.com/jpush/jsms-react-native,num_dependents_deps.dev:0 github.com/jpush/jverification-react-native,num_dependents_deps.dev:0 github.com/jpv-os/cabal-coffers,num_dependents_deps.dev:0 github.com/jpvaldes/brainowl, +github.com/jpvalery/yarn-percy-ci, github.com/jpvanhal/flask-basicauth, github.com/jpvanhal/flask-split, github.com/jpvanhal/flask-xuacompatible, @@ -675287,6 +687660,7 @@ github.com/jraede/awesome-job-dude,num_dependents_deps.dev:0 github.com/jraede/cascading-relations,num_dependents_deps.dev:0 github.com/jraede/medici,num_dependents_deps.dev:0 github.com/jraede/mongoose-rest-endpoints,num_dependents_deps.dev:0 +github.com/jraesly/Update-Flow-Owners, github.com/jrainlau/LowPolifier,num_dependents_deps.dev:0 github.com/jrainlau/dolu,num_dependents_deps.dev:0 github.com/jrainlau/elf,num_dependents_deps.dev:0 @@ -675324,6 +687698,7 @@ github.com/jramos-br/node-minitrace,num_dependents_deps.dev:0 github.com/jramrath/textColor, github.com/jrandall11/npm_js_tutorial,num_dependents_deps.dev:0 github.com/jrandallw/convert-region,num_dependents_deps.dev:0 +github.com/jrandiny/apt-repo-action, github.com/jrans/react-native-smart-scroll-view,num_dependents_deps.dev:0 github.com/jrapoport/chestnut,num_dependents_deps.dev:0 github.com/jrapoport/gothic,num_dependents_deps.dev:0 @@ -675389,6 +687764,7 @@ github.com/jrburke/r.js,num_dependents_deps.dev:3319 github.com/jrburke/requirejs,num_dependents_deps.dev:0 github.com/jrc03c/node_array_extras,num_dependents_deps.dev:0 github.com/jrc2139/vimonade,num_dependents_deps.dev:0 +github.com/jrcamelo/fast-r-action, github.com/jrcamenzuli/http-performance,num_dependents_deps.dev:0 github.com/jrcamp/pywik, github.com/jrcasso/gograph,num_dependents_deps.dev:0 @@ -675482,6 +687858,7 @@ github.com/jreisinger/homepage,num_dependents_deps.dev:0 github.com/jreisinger/runp,num_dependents_deps.dev:0 github.com/jrel/angular-file-form-control,num_dependents_deps.dev:0 github.com/jreleaser/jreleaser,num_dependents_deps.dev:643 +github.com/jreleaser/release-action, github.com/jrellis/pybio, github.com/jremenec/spring-openapi,num_dependents_deps.dev:18 github.com/jremi/check-folder-exists-nodejs,num_dependents_deps.dev:0 @@ -675910,6 +688287,7 @@ github.com/jroebu14/react-atomic-datepicker,num_dependents_deps.dev:0 github.com/jroehl/gatsby-source-is24, github.com/jroehl/gatsby-transformer-estates,num_dependents_deps.dev:0 github.com/jroehl/google-sheet-cli,num_dependents_deps.dev:0 +github.com/jroehl/gsheet.action, github.com/jroehl/jroehl-business-card,num_dependents_deps.dev:0 github.com/jroehl/linkedin-token,num_dependents_deps.dev:0 github.com/jroehl/oauth2-cli-helper,num_dependents_deps.dev:0 @@ -675926,6 +688304,7 @@ github.com/jrolfe4/write-docker-actions,num_dependents_deps.dev:0 github.com/jrolfs/flyers,num_dependents_deps.dev:0 github.com/jrom/semantic_antispam,num_dependents_deps.dev:0 github.com/jromay/gulp-json-structure-validator,num_dependents_deps.dev:0 +github.com/jromero/issue-generation-action, github.com/jromero2k/jslib-wip,num_dependents_deps.dev:0 github.com/jromerob/node-sftp-deploy-sp,num_dependents_deps.dev:0 github.com/jromest/filipino-badwords-list,num_dependents_deps.dev:0 @@ -675987,6 +688366,7 @@ github.com/jrossi/coreos-ipxe-server,num_dependents_deps.dev:0 github.com/jroth137/rcfdtdpy, github.com/jrotolo/react-keygen,num_dependents_deps.dev:0 github.com/jrottenberg/ffmpeg,criticality_score:0.484680 +github.com/jrouly/scalafmt-native-action, github.com/jrounsav/react-native-simple-qrcode,num_dependents_deps.dev:0 github.com/jrow2286/cordova-plugin-auth-handler,num_dependents_deps.dev:0 github.com/jrowberg/i2cdevlib,criticality_score:0.490300 @@ -676201,6 +688581,8 @@ github.com/jrydberg/glock, github.com/jrydberg/nesoi, github.com/jrydberg/txgossip, github.com/jryebread/linkportal,num_dependents_deps.dev:0 +github.com/jrylan/github-action-reviews-counter, +github.com/jrylan/github-action-stuck-pr-notifier, github.com/jrylan/json-schema-typed, github.com/jrynlds/Semantic-UI-LESS, github.com/jryoo/basisAPI,num_dependents_deps.dev:0 @@ -676230,6 +688612,7 @@ github.com/js-bits/performance,num_dependents_deps.dev:4 github.com/js-bits/timeout,num_dependents_deps.dev:0 github.com/js-bits/xpromise,num_dependents_deps.dev:8 github.com/js-cha/article-api,num_dependents_deps.dev:0 +github.com/js-choi/github-comment-floodgate, github.com/js-cli/fancy-log,num_dependents_deps.dev:1156 github.com/js-cli/fined,num_dependents_deps.dev:124 github.com/js-cli/glogg,num_dependents_deps.dev:2 @@ -676456,6 +688839,7 @@ github.com/js-slave/eslint-config-js-slave,num_dependents_deps.dev:0 github.com/js-slave/js-slave-base,num_dependents_deps.dev:0 github.com/js-slave/js-slave-file,num_dependents_deps.dev:0 github.com/js-slave/js-slave-notification,num_dependents_deps.dev:0 +github.com/js-soft/ferretdb-github-action, github.com/js-soft/ui5-task-mvn-dependency-provider, github.com/js-soft/wdi5,num_dependents_deps.dev:0 github.com/js-soft/wdio-ui5,num_dependents_deps.dev:0 @@ -676527,6 +688911,7 @@ github.com/js571/gulp-rem,num_dependents_deps.dev:0 github.com/js571/qn-ueditor, github.com/js571/vue-lazyload-img,num_dependents_deps.dev:0 github.com/js62789/hbs-precompiler,num_dependents_deps.dev:0 +github.com/js6pak/start-jitpack, github.com/js8976/oracleusergrant, github.com/js8path/annotated-error,num_dependents_deps.dev:2 github.com/js8path/js8path-data,num_dependents_deps.dev:0 @@ -676652,6 +689037,7 @@ github.com/jsanchesleao/webvd,num_dependents_deps.dev:0 github.com/jsancho-gpl/datasette-pytables, github.com/jsanders/angular_rails_csrf,num_dependents_deps.dev:0 github.com/jsangilve/copy-assets-webpack-plugin,num_dependents_deps.dev:0 +github.com/jsanjay63/covid19-geoextractor, github.com/jsannemo/omogenexec,num_dependents_deps.dev:0 github.com/jsannerstedt/dedux,num_dependents_deps.dev:0 github.com/jsannerstedt/dedux-app,num_dependents_deps.dev:0 @@ -676714,6 +689100,7 @@ github.com/jsany/log-filesize-webpack-plugin,num_dependents_deps.dev:0 github.com/jsany/npm-template,num_dependents_deps.dev:0 github.com/jsany/rc,num_dependents_deps.dev:0 github.com/jsanz/carto_cli, +github.com/jsanz1209/aws-cli, github.com/jsaponara/opentaxforms, github.com/jsappme/node-binance-trader,criticality_score:0.315020 github.com/jsaputo1/lotide,num_dependents_deps.dev:0 @@ -677017,6 +689404,7 @@ github.com/jscott1989/dottest, github.com/jscott1989/python-pipedrive, github.com/jscottsmith/react-observed,num_dependents_deps.dev:0 github.com/jscottsmith/react-scroll-parallax,"criticality_score:0.298200,num_dependents_deps.dev:10" +github.com/jscrambler/code-integrity-actions, github.com/jscrambler/jscrambler, github.com/jscrambler/node-https-proxy-agent,num_dependents_deps.dev:12 github.com/jscrimes/swiper,num_dependents_deps.dev:0 @@ -677041,6 +689429,7 @@ github.com/jsd0fl1/icon-packer,num_dependents_deps.dev:0 github.com/jsd0fl1/mysql-replication-guard,num_dependents_deps.dev:0 github.com/jsd0fl1/network-discovery,num_dependents_deps.dev:0 github.com/jsd0fl1/strongswan-vici,num_dependents_deps.dev:0 +github.com/jsdaniell/create-json, github.com/jsdaniell/mask-fields,num_dependents_deps.dev:0 github.com/jsdaniell/recipe-cli,num_dependents_deps.dev:0 github.com/jsdaniell/whats-cli,num_dependents_deps.dev:0 @@ -677212,6 +689601,7 @@ github.com/jsdsl/locking-queue,num_dependents_deps.dev:0 github.com/jsdsl/queue,num_dependents_deps.dev:0 github.com/jsdsl/stack,num_dependents_deps.dev:0 github.com/jsdtaylor/git-secret-scanner,num_dependents_deps.dev:0 +github.com/jsduenass/sync-docs, github.com/jsdvjx/String2Fun,num_dependents_deps.dev:0 github.com/jsdvjx/TrackingMore,num_dependents_deps.dev:2 github.com/jsdvjx/fetch-logistics,num_dependents_deps.dev:2 @@ -677650,6 +690040,7 @@ github.com/jsiebern/reason-mui-withstyles-ppx,num_dependents_deps.dev:0 github.com/jsiebern/scribe-plugin-span-style,num_dependents_deps.dev:0 github.com/jsiegenthaler/homebridge-eosstb,num_dependents_deps.dev:0 github.com/jsiegenthaler/homebridge-samsungtvht, +github.com/jsierles/fly-staging-app, github.com/jsierles/react-native-audio,num_dependents_deps.dev:0 github.com/jsierles/react-native-audiorecorder,num_dependents_deps.dev:0 github.com/jsierles/react-native-view-snapshot,num_dependents_deps.dev:0 @@ -677716,6 +690107,7 @@ github.com/jsimonetti/go-spice,num_dependents_deps.dev:0 github.com/jsimonetti/rtnetlink,num_dependents_deps.dev:123 github.com/jsimonetti/sniqueue,num_dependents_deps.dev:0 github.com/jsimonetti/ssh-scheme-handler,num_dependents_deps.dev:0 +github.com/jsimonrichard/freeze-micropython-module, github.com/jsimonson2013/aframe-gaze-component,num_dependents_deps.dev:0 github.com/jsimpso/PyFortiAPI, github.com/jsinfin/fincli,num_dependents_deps.dev:0 @@ -677807,12 +690199,14 @@ github.com/jskp/young_yang_npm_demo,num_dependents_deps.dev:0 github.com/jskrat/kagami-house-nrf-gateway,num_dependents_deps.dev:0 github.com/jskress/builder-tool, github.com/jskrnbindra/html-escape-unescape,num_dependents_deps.dev:0 +github.com/jskrzypek/set-git-branch-action, github.com/jskrzypek/tz-mongodb,num_dependents_deps.dev:0 github.com/jskuby/react-native-gridview,num_dependents_deps.dev:0 github.com/jskull/komo,num_dependents_deps.dev:0 github.com/jskulski/lancet,num_dependents_deps.dev:0 github.com/jskulski/snu,num_dependents_deps.dev:0 github.com/jskygithub/extreme-headless, +github.com/jskz/alternate-backup-action, github.com/jskz/golem,num_dependents_deps.dev:0 github.com/jsl9208/koa2-serve-index,num_dependents_deps.dev:2 github.com/jslabs/react-forms, @@ -677825,6 +690219,7 @@ github.com/jslate/hubot-blog-reminders,num_dependents_deps.dev:0 github.com/jslate/hubot-branch-name,num_dependents_deps.dev:0 github.com/jslate/hubot-retro,num_dependents_deps.dev:0 github.com/jslater89/warble,num_dependents_deps.dev:0 +github.com/jslattery26/watch_your_profamity, github.com/jslatts/stacklog, github.com/jslatts/stalker,num_dependents_deps.dev:2 github.com/jslay88/qbt_migrate, @@ -677968,6 +690363,7 @@ github.com/jsmini/util-tools, github.com/jsmircic/typescript-fsa-immer,num_dependents_deps.dev:0 github.com/jsmith-bitflipper/webauthn-firewall-proxy,num_dependents_deps.dev:0 github.com/jsmith-phoenix/jira-connector,num_dependents_deps.dev:0 +github.com/jsmith/changes-since-last-tag, github.com/jsmith/dot-worker,num_dependents_deps.dev:0 github.com/jsmith/eslint-config-restricted-globals,num_dependents_deps.dev:0 github.com/jsmith/ginteract, @@ -678003,8 +690399,15 @@ github.com/jsmonday/jscream,num_dependents_deps.dev:0 github.com/jsmonday/voina,num_dependents_deps.dev:0 github.com/jsmorph/paho.mqtt.golang,num_dependents_deps.dev:0 github.com/jsmouret/google-cloud-go,num_dependents_deps.dev:0 +github.com/jsmrcaga/action-easy-lambda-deploy, +github.com/jsmrcaga/action-logsnag, +github.com/jsmrcaga/action-netlify-deploy, +github.com/jsmrcaga/action-social-post, +github.com/jsmrcaga/action-update-aws-taskdef, github.com/jsmrcaga/argumentate,num_dependents_deps.dev:0 +github.com/jsmrcaga/commit-lint, github.com/jsmrcaga/connardjs,num_dependents_deps.dev:0 +github.com/jsmrcaga/control-action, github.com/jsmrcaga/discordia,num_dependents_deps.dev:0 github.com/jsmrcaga/executor,num_dependents_deps.dev:0 github.com/jsmrcaga/genetics,num_dependents_deps.dev:0 @@ -678020,6 +690423,7 @@ github.com/jsmrcaga/query-grammar, github.com/jsmrcaga/redfox,num_dependents_deps.dev:0 github.com/jsmreese/moment-duration-format,num_dependents_deps.dev:458 github.com/jsmreese/responsive-equalized-heights,num_dependents_deps.dev:0 +github.com/jsmvaldivia/file-splitter, github.com/jsmwoolf/MUI-Colorpicker-Button,num_dependents_deps.dev:0 github.com/jsmyanmar/react-mm-text,num_dependents_deps.dev:0 github.com/jsmyung-datansoft/kokex, @@ -678062,6 +690466,7 @@ github.com/jsnyders/StringTemplate-js,num_dependents_deps.dev:0 github.com/jso0/cdn-loader,num_dependents_deps.dev:0 github.com/jso0/html-webpack-cdn-plugin,num_dependents_deps.dev:0 github.com/jsoa/django-renderit, +github.com/jsoares/gh-pr-content-checker, github.com/jsobell/treacherous,num_dependents_deps.dev:0 github.com/jsoceandiver/jso-react-static-website,num_dependents_deps.dev:0 github.com/jsochacki/socHACKi, @@ -678111,6 +690516,8 @@ github.com/jsok/karma-env-preprocessor,num_dependents_deps.dev:4 github.com/jsok/libnetwork-plugin,num_dependents_deps.dev:0 github.com/jsok/mesos_exporter,num_dependents_deps.dev:0 github.com/jsok/nose-alembic-attrib, +github.com/jsok/serialize-workflow-action, +github.com/jsok/svu-version-bump-action, github.com/jsok/vault,num_dependents_deps.dev:0 github.com/jsoklevski/hubot-github-reminder,num_dependents_deps.dev:0 github.com/jsolbrig/argdoc, @@ -678435,6 +690842,7 @@ github.com/jspahrsummers/adt, github.com/jspaine/html-ast-transform,num_dependents_deps.dev:0 github.com/jspaine/quill-placeholder-module,num_dependents_deps.dev:0 github.com/jspaine/react-native-custom-tabs-shim,num_dependents_deps.dev:0 +github.com/jspaleta/sensuctl-action, github.com/jspanther/angular-chart-jspanther,num_dependents_deps.dev:0 github.com/jspaper/grunt-yaml-locales,num_dependents_deps.dev:0 github.com/jspapp/simpleforce,num_dependents_deps.dev:0 @@ -678568,6 +690976,7 @@ github.com/jspricke/python-icstask, github.com/jspricke/python-remind, github.com/jspricke/radicale-remind, github.com/jspricke/remind-caldav, +github.com/jspricke/ros-deb-builder-action, github.com/jsprieto10/npmloves,num_dependents_deps.dev:0 github.com/jsprieto10/pyloves, github.com/jspringbot/jspringbot,num_dependents_deps.dev:101 @@ -678586,6 +690995,7 @@ github.com/jspython-dev/jspython,num_dependents_deps.dev:0 github.com/jspython-dev/jspython-cli,num_dependents_deps.dev:0 github.com/jsqldb/jsqldb-debug-client,num_dependents_deps.dev:0 github.com/jsqry/jsqry, +github.com/jsqu4re/antora_build, github.com/jsr107/jsr107spec,Google github.com/jsrails/core,num_dependents_deps.dev:0 github.com/jsravn/merlin,num_dependents_deps.dev:0 @@ -678702,7 +691112,11 @@ github.com/jsrun/docker-compose-remote-api,num_dependents_deps.dev:0 github.com/jsrun/express-send-stream,num_dependents_deps.dev:0 github.com/jsrun/terminal-docker,num_dependents_deps.dev:0 github.com/jsruvi/requirejs-i18-duplications-checker,num_dependents_deps.dev:0 +github.com/jsryudev/branch-maker, +github.com/jsryudev/deploy-firebase-functions, github.com/jsryudev/go-study,num_dependents_deps.dev:0 +github.com/jsryudev/pr-review-labeler, +github.com/jsryudev/release-branch-finder, github.com/jss367/polyplotter, github.com/jss367/pyxtend, github.com/jssdkcn/file-cloud-disk-uploader,num_dependents_deps.dev:0 @@ -678751,6 +691165,7 @@ github.com/jst-template-runner-custom/grunt-template-runner,num_dependents_deps. github.com/jsta/gssurgo, github.com/jsta/jspkg,num_dependents_deps.dev:0 github.com/jsta/nhdpy, +github.com/jstack-eu/vercel-action, github.com/jstacoder/django_postgres_extensions, github.com/jstacoder/flask-apps, github.com/jstacoder/flask-router, @@ -678792,6 +691207,7 @@ github.com/jstasiak/scripter,num_dependents_deps.dev:0 github.com/jstasiak/sectok,num_dependents_deps.dev:0 github.com/jstasiak/skiplistcollections, github.com/jstasiak/travis-solo, +github.com/jstastny/publish-gem-to-github, github.com/jstat/jstat,"criticality_score:0.485050,num_dependents_deps.dev:428" github.com/jstavanja/fake-promise-util,num_dependents_deps.dev:0 github.com/jstavel/edeposit.amqp.antivir, @@ -678838,6 +691254,7 @@ github.com/jstolp/telloedu,num_dependents_deps.dev:0 github.com/jstolwijk/flow-db,num_dependents_deps.dev:0 github.com/jstolwijk/spotify-global-shortcuts,num_dependents_deps.dev:0 github.com/jstone28/changelog,num_dependents_deps.dev:0 +github.com/jstone28/runner-workspace-cleaner, github.com/jstonge/tidygraphtool, github.com/jstonge/tidytxt, github.com/jstoolkit/dom-observer, @@ -679135,6 +691552,7 @@ github.com/jsumners/fastify-server-session,num_dependents_deps.dev:0 github.com/jsumners/gambler,num_dependents_deps.dev:0 github.com/jsumners/generator-ansible-bare,num_dependents_deps.dev:0 github.com/jsumners/get-module-file,num_dependents_deps.dev:0 +github.com/jsumners/gh-action-hugo-deploy, github.com/jsumners/goji,num_dependents_deps.dev:0 github.com/jsumners/gzinfo,num_dependents_deps.dev:0 github.com/jsumners/hapi-cas,num_dependents_deps.dev:0 @@ -679412,6 +691830,7 @@ github.com/jtadeulopes/meme,num_dependents_deps.dev:0 github.com/jtadmor/prop-map,num_dependents_deps.dev:0 github.com/jtadmor/react-custom-render,num_dependents_deps.dev:0 github.com/jtadmor/react-extend-props-component,num_dependents_deps.dev:0 +github.com/jtagcat/action-docker-ghpackages, github.com/jtaghiyar/kronos, github.com/jtagle2/apeps, github.com/jtagt/lavanode,num_dependents_deps.dev:0 @@ -679534,6 +691953,7 @@ github.com/jtconnors/maven-com.jtconnors.socket,num_dependents_deps.dev:0 github.com/jtcrowson/NgRx-MockStore,num_dependents_deps.dev:0 github.com/jtdaugherty/brick,criticality_score:0.546520 github.com/jtdaugherty/vty,criticality_score:0.508940 +github.com/jtdor/build-deb-action, github.com/jtdowney/b2sum-rs,num_dependents_deps.dev:0 github.com/jtdowney/chloride,num_dependents_deps.dev:0 github.com/jtdowney/fors,num_dependents_deps.dev:0 @@ -679591,11 +692011,14 @@ github.com/jthacker/PyMMonit, github.com/jthacker/ephemeral_postgres, github.com/jthacker/shelltest, github.com/jthacker/terseparse, +github.com/jthambly/quarkus-pom-action, +github.com/jthambly/update-quarkus, github.com/jthanwer/coriolis, github.com/jthawme/LifeRing,num_dependents_deps.dev:0 github.com/jthawme/vibrant-colour-detection,num_dependents_deps.dev:0 github.com/jthefang/jf_util, github.com/jthegedus/docsify-select,num_dependents_deps.dev:0 +github.com/jthegedus/github-action-awesome-lint, github.com/jthegedus/svelte-adapter-firebase,num_dependents_deps.dev:0 github.com/jtheriault/code-copter,num_dependents_deps.dev:0 github.com/jtheriault/code-copter-analyzer-jscs,num_dependents_deps.dev:0 @@ -679701,6 +692124,9 @@ github.com/jtmthf/node-json-min,num_dependents_deps.dev:0 github.com/jtmthf/normalize-in-js,num_dependents_deps.dev:0 github.com/jtmthf/react-any,num_dependents_deps.dev:0 github.com/jtmthf/react-router-match-async,num_dependents_deps.dev:0 +github.com/jtmullen/kicad-title-block-check-action, +github.com/jtmullen/mediawiki-edit-action, +github.com/jtmullen/submodule-branch-check-action, github.com/jtn1490/ez-migrate,num_dependents_deps.dev:0 github.com/jtneal/ng-micro-frontend, github.com/jtneal/ng-module-federation, @@ -679971,6 +692397,7 @@ github.com/ju-sh/verna, github.com/ju-takahashi/hr-management-server,num_dependents_deps.dev:0 github.com/ju1c3rsh/auto-plus1s,num_dependents_deps.dev:0 github.com/ju1i4n/ab-react-hook, +github.com/ju5t/docker-run-action, github.com/ju5td0m7m1nd/guidejs,num_dependents_deps.dev:0 github.com/ju99ernaut/grapesjs-component-code-editor,num_dependents_deps.dev:0 github.com/ju99ernaut/grapesjs-ga,num_dependents_deps.dev:0 @@ -680011,6 +692438,7 @@ github.com/juan-orca/bindmethods,num_dependents_deps.dev:0 github.com/juan-rss/juan-rss,num_dependents_deps.dev:0 github.com/juan-saavedra/create-react-app,num_dependents_deps.dev:1 github.com/juan083/coding-interview-by-go,num_dependents_deps.dev:0 +github.com/juan131/sealed-secrets-updater-action, github.com/juan267/convertloop-node,num_dependents_deps.dev:0 github.com/juanAraneta/prettier-config,num_dependents_deps.dev:0 github.com/juanalfe/create-react-app, @@ -680168,6 +692596,7 @@ github.com/juandroid007/nuuro,num_dependents_deps.dev:0 github.com/juandroid007/palacinke,num_dependents_deps.dev:0 github.com/juanduranc/Clean-Assist, github.com/juanduranc/broompy, +github.com/juanecabellob/pr-name, github.com/juanedomb/SATELLOGIC, github.com/juanedomb/SATELLOGICTEST, github.com/juanedomb/testSatelProjectRepo, @@ -680195,6 +692624,7 @@ github.com/juanescalante/npm_pkg_debut,num_dependents_deps.dev:0 github.com/juanesgarciag/npm_package,num_dependents_deps.dev:0 github.com/juanesp14/go-spotify,num_dependents_deps.dev:0 github.com/juanestebanj/easy-basic-access-and-api-key-auth,num_dependents_deps.dev:0 +github.com/juaneth/electron-forge-builder, github.com/juanfabrega/normalizr-plus,num_dependents_deps.dev:0 github.com/juanfabrega/vue-stripe-elements,num_dependents_deps.dev:0 github.com/juanfbages/citibike,num_dependents_deps.dev:0 @@ -680209,6 +692639,7 @@ github.com/juanfgarcia/pgnparser,num_dependents_deps.dev:0 github.com/juanfont/docker-machine-driver-vcd,num_dependents_deps.dev:0 github.com/juanfont/headscale,num_dependents_deps.dev:0 github.com/juanfont/vaccinatorplus,num_dependents_deps.dev:0 +github.com/juanformoso/action-send-mail, github.com/juanfran/emoji-data-css,num_dependents_deps.dev:36 github.com/juanfran/fly-imagemin,num_dependents_deps.dev:0 github.com/juanfran/gulp-browser-notification,num_dependents_deps.dev:0 @@ -680250,6 +692681,7 @@ github.com/juanhuttemann/nitr-agent,num_dependents_deps.dev:0 github.com/juanhuttemann/pouchdb-react-native, github.com/juanibiapina/antr,num_dependents_deps.dev:0 github.com/juanifioren/django-oidc-provider,criticality_score:0.417860 +github.com/juanigalan91/monorepolyser, github.com/juanigtorres/xmen-api,num_dependents_deps.dev:0 github.com/juanise/jvjr-docker-env,num_dependents_deps.dev:0 github.com/juanitoetc/nasa-outgassing-tml, @@ -680258,6 +692690,7 @@ github.com/juanitofatas/ojad,num_dependents_deps.dev:0 github.com/juaniviola/covid19-map-cli,num_dependents_deps.dev:0 github.com/juanjalvarez/ArrayCompareJS,num_dependents_deps.dev:0 github.com/juanjcsr/hotrod,num_dependents_deps.dev:0 +github.com/juanjo44/open-issue-course, github.com/juanjo78git/py6Nimmt, github.com/juanjoDiaz/jsonparse2,num_dependents_deps.dev:0 github.com/juanjoDiaz/removeNPMAbsolutePaths,num_dependents_deps.dev:0 @@ -680441,6 +692874,7 @@ github.com/juanwolf/blog,num_dependents_deps.dev:0 github.com/juanwolf/mysql-binlog-replicator,num_dependents_deps.dev:0 github.com/juanxcursed/gangster.css,num_dependents_deps.dev:0 github.com/juanxo/librato-alerts,num_dependents_deps.dev:0 +github.com/juanyaguaro-revstar/codepush-action, github.com/juaoantonio/libpythonpro, github.com/juaram2/bookmark,num_dependents_deps.dev:0 github.com/juareznasato/vuetify-date,num_dependents_deps.dev:0 @@ -680450,6 +692884,7 @@ github.com/juareznasato/vuetify-money,num_dependents_deps.dev:0 github.com/juareznasato/vuetify-number,num_dependents_deps.dev:0 github.com/juareznasato/vuetify-select-code,num_dependents_deps.dev:0 github.com/juareznasato/vuetify-simple-date,num_dependents_deps.dev:0 +github.com/juarezr/firebirdsql-github-action, github.com/juazasan/spaceinvaders,num_dependents_deps.dev:0 github.com/jub0bs/bnew,num_dependents_deps.dev:0 github.com/jub0bs/go-course-advanced,num_dependents_deps.dev:0 @@ -680497,6 +692932,7 @@ github.com/jubilee-works/timetree-sdk-js,num_dependents_deps.dev:0 github.com/jubileesoft/amsel,num_dependents_deps.dev:0 github.com/jubileesoft/ember-jubileesoft-ui,num_dependents_deps.dev:0 github.com/jubileesoft/ember-pixels2rem,num_dependents_deps.dev:0 +github.com/jubilyhealth/deploy-to-vercel-action, github.com/jubinpatel1992/express-redirects,num_dependents_deps.dev:0 github.com/jubinpatel1992/heroku-admin-util, github.com/jubinpatel1992/heroku-admin-util-plugin,num_dependents_deps.dev:0 @@ -680540,6 +692976,7 @@ github.com/jucrouzet/akamai-time-reference,num_dependents_deps.dev:0 github.com/jucrouzet/icecast.js,num_dependents_deps.dev:0 github.com/jucyai/prophetable, github.com/jucyai/red-panda, +github.com/judaew/luacheck-action, github.com/judah-b2/PyContacts, github.com/judah-firewood/grunt-freemarker,num_dependents_deps.dev:0 github.com/judah4/HSV-Color-Picker-Unity,criticality_score:0.329830 @@ -680596,7 +693033,9 @@ github.com/judev1/dbfn, github.com/judev1/discords, github.com/judev1/sqlitewrapper, github.com/judge0/judge0,criticality_score:0.345800 +github.com/judge2020/actions-laravel-nova-composer-login, github.com/judge2020/cloudflare-file-hosting,num_dependents_deps.dev:0 +github.com/judge2020/dispatch-action, github.com/judgegregg/bloodbowlreplayexplorer,num_dependents_deps.dev:0 github.com/judgekazz/expense_tracker,num_dependents_deps.dev:0 github.com/judgeu/go-config-comparision,num_dependents_deps.dev:0 @@ -680688,6 +693127,7 @@ github.com/juergberinger/cmdhelper, github.com/juergen-rocks/jython-maven-plugin,num_dependents_deps.dev:0 github.com/juergenH87/python-can-j1939, github.com/juergenhoetzel/restic,num_dependents_deps.dev:0 +github.com/juergenhoetzel/setup-eldev-emacs, github.com/juergenie/lilith-painter,num_dependents_deps.dev:0 github.com/juesato/gspeech-api, github.com/juesato/speech-to-text,num_dependents_deps.dev:0 @@ -680795,6 +693235,7 @@ github.com/jugmac00/Products.ZopeTree, github.com/jugmac00/flask-reuploaded, github.com/jugmac00/hibpcli, github.com/jugmac00/pyeucountrycodes, +github.com/jugmac00/will-it-build, github.com/jugnuagrawal/-agtech-crypt-utils,num_dependents_deps.dev:0 github.com/jugnuagrawal/express-mongoose-crud,num_dependents_deps.dev:0 github.com/jugnuagrawal/express-res-hook,num_dependents_deps.dev:0 @@ -680876,6 +693317,7 @@ github.com/juhotik/homebridge-weatherlink,num_dependents_deps.dev:0 github.com/juhovh/graphql-artisan,num_dependents_deps.dev:0 github.com/juhovh/metalsmith-downloader,num_dependents_deps.dev:0 github.com/juhovh/mocha-jenkins-reporter,num_dependents_deps.dev:16 +github.com/juhrlass/mqtt-action, github.com/juhsinto/aupubtoiletserver,num_dependents_deps.dev:0 github.com/juhuyoon/mvc-frameworks-npm-package,num_dependents_deps.dev:0 github.com/juhwon/create-react-app,num_dependents_deps.dev:0 @@ -680941,6 +693383,7 @@ github.com/juicer-io/react-juicer-feed, github.com/juicer/juicer, github.com/juicesharp/ftpUploadTask,num_dependents_deps.dev:0 github.com/juicestus/fred,num_dependents_deps.dev:0 +github.com/juicycleff/actions, github.com/juicycleff/casbin-mongodb-adapter,num_dependents_deps.dev:0 github.com/juicycleff/crystallize-grid-layout,num_dependents_deps.dev:0 github.com/juicycleff/flutter-unity-view-widget,criticality_score:0.384970 @@ -680959,6 +693402,8 @@ github.com/juicyfx/now-php,num_dependents_deps.dev:14 github.com/juicyfx/vercel-bref,num_dependents_deps.dev:0 github.com/juicyfx/vercel-php,"criticality_score:0.364080,num_dependents_deps.dev:0" github.com/juicyigor/perfect-scrollbar,num_dependents_deps.dev:0 +github.com/juicyjusung/simple-pr-labeler-action, +github.com/juicyjusung/team-labeler-action, github.com/juicymedialtd/WPQuery.js,num_dependents_deps.dev:0 github.com/juicymedialtd/simple-css-grid,num_dependents_deps.dev:0 github.com/juicyparts/flat,num_dependents_deps.dev:0 @@ -680975,6 +693420,7 @@ github.com/juijs/vue-stock,num_dependents_deps.dev:0 github.com/juijs/vue-uix,num_dependents_deps.dev:0 github.com/juiser/juiser,num_dependents_deps.dev:5 github.com/juissi999/juicycss,num_dependents_deps.dev:0 +github.com/juitnow/github-action-create-release, github.com/juitnow/juit-nativescript-barcodeview, github.com/juitnow/juit-nativescript-local-notifications, github.com/juitnow/juit-vite-plugin-vue-svg,num_dependents_deps.dev:0 @@ -681113,10 +693559,18 @@ github.com/jul11co/jul11co-utils,num_dependents_deps.dev:0 github.com/jul11co/websaver,num_dependents_deps.dev:0 github.com/jul13579/imagetimeline-vuejs,num_dependents_deps.dev:0 github.com/jula77/bookings,num_dependents_deps.dev:0 +github.com/julb/action-copy-docker-tag, +github.com/julb/action-post-googlechat-message, +github.com/julb/action-post-twitter-status, github.com/julb/alertmanager-gchat-integration, github.com/julb/go,num_dependents_deps.dev:0 github.com/julb/http-reqtrace,num_dependents_deps.dev:0 github.com/julb/kubernetes-configmap-sync, +github.com/julbme/gh-action-manage-branch, +github.com/julbme/gh-action-manage-label, +github.com/julbme/gh-action-manage-milestone, +github.com/julbme/gh-action-manage-tag, +github.com/julbme/gh-action-merge-branch, github.com/julbosch/palindrome,num_dependents_deps.dev:0 github.com/julbright/harper, github.com/julbright/hastur, @@ -681135,6 +693589,7 @@ github.com/julenpardo/Gitssue, github.com/jules-boogie/golang,num_dependents_deps.dev:0 github.com/jules-ch/wind-stats, github.com/jules-vernes/minitest-rails-assertions,num_dependents_deps.dev:0 +github.com/jules2689/adr-actions, github.com/jules2689/bootstrap_widgets,num_dependents_deps.dev:0 github.com/jules2689/chart_helpers,num_dependents_deps.dev:0 github.com/julesGoullee/garnet,num_dependents_deps.dev:0 @@ -681152,6 +693607,7 @@ github.com/julesfrancoise/xmmjs,num_dependents_deps.dev:0 github.com/julesgraus/forestguide,num_dependents_deps.dev:0 github.com/juleshyacinthe/cordova-plugin-apple-pay-stripe,num_dependents_deps.dev:0 github.com/juleskreutzer/lb4-extension-mqtt,num_dependents_deps.dev:0 +github.com/juleslasarte/tag-pr-from-workflow, github.com/julesontheroad/NSC_BUILDER,criticality_score:0.305200 github.com/julesrenaud/lifx-goal-light,num_dependents_deps.dev:0 github.com/julesterrien/redux-chain,num_dependents_deps.dev:0 @@ -681166,6 +693622,15 @@ github.com/juli-ai/reafy-cli, github.com/juli3nk/go-git,num_dependents_deps.dev:0 github.com/juli3nk/go-matrix,num_dependents_deps.dev:0 github.com/juli3nk/pbdeploy,num_dependents_deps.dev:0 +github.com/julia-actions/RegisterAction, +github.com/julia-actions/build-julia, +github.com/julia-actions/cache, +github.com/julia-actions/julia-buildpkg, +github.com/julia-actions/julia-docdeploy, +github.com/julia-actions/julia-fix-doctests, +github.com/julia-actions/julia-format, +github.com/julia-actions/julia-runtest, +github.com/julia-actions/setup-julia, github.com/julia-mareike/credit-card-generator, github.com/julia-stovbun/gotest,num_dependents_deps.dev:0 github.com/julia-vscode/julia-vscode,criticality_score:0.557960 @@ -681209,6 +693674,7 @@ github.com/julian-printemps/neopa-cli,num_dependents_deps.dev:0 github.com/julian-printemps/vue3-pagination,num_dependents_deps.dev:0 github.com/julian-risch/toxic-comment-collection, github.com/julian-zucker/socialchoice, +github.com/julian/rpds.py, github.com/julian1le9cuero/course-phones-review,num_dependents_deps.dev:0 github.com/julian3xl/nvidia-gpu-prometheus-exporter,num_dependents_deps.dev:0 github.com/julian4u0/qutil, @@ -681217,6 +693683,7 @@ github.com/julian7/sensu-base-checks,num_dependents_deps.dev:0 github.com/julianPescobar/colorgrab, github.com/julianYaman/discord-bot-dashboard,num_dependents_deps.dev:0 github.com/julianahrens/dwd-pollen-api, +github.com/julianahrens/latex-biber-action, github.com/julianamariemorales/julesmoduletest,num_dependents_deps.dev:0 github.com/julianamariemorales/nodemoduletest,num_dependents_deps.dev:0 github.com/julianandrews/goban-screenhack,num_dependents_deps.dev:0 @@ -681286,6 +693753,7 @@ github.com/juliandev/bookstore_oauth-api,num_dependents_deps.dev:0 github.com/juliandev/bookstore_oauth-go,num_dependents_deps.dev:0 github.com/juliandev/bookstore_users-api,num_dependents_deps.dev:0 github.com/juliandev/bookstore_utils-go,num_dependents_deps.dev:0 +github.com/juliandgon/github-action-aws-secrets-sync, github.com/juliandoucette/grunt-markdown-site,num_dependents_deps.dev:0 github.com/juliandramirez/react-native-user-identity,num_dependents_deps.dev:0 github.com/juliandreas/vue-styled-shadows,num_dependents_deps.dev:0 @@ -681305,6 +693773,7 @@ github.com/julianduque/tv-maze,num_dependents_deps.dev:0 github.com/juliandwain/xscrapers, github.com/julianfab/go-service,num_dependents_deps.dev:0 github.com/julianfaraway/LMP, +github.com/julianfbeck/gh-action-telegram-birthday-reminder, github.com/julianfrank/gokv,num_dependents_deps.dev:0 github.com/julianfrank/jffl4express,num_dependents_deps.dev:0 github.com/julianfrank/jfnodeinfo,num_dependents_deps.dev:0 @@ -681324,6 +693793,7 @@ github.com/juliangruber/a-native-module-without-prebuild,num_dependents_deps.dev github.com/juliangruber/abstract-chunk-transport,num_dependents_deps.dev:0 github.com/juliangruber/abstract-random-access,num_dependents_deps.dev:270 github.com/juliangruber/all-match,num_dependents_deps.dev:0 +github.com/juliangruber/approve-pull-request-action, github.com/juliangruber/appveyor-build-by-commit,num_dependents_deps.dev:0 github.com/juliangruber/appveyor-logs,num_dependents_deps.dev:0 github.com/juliangruber/appveyor-watch,num_dependents_deps.dev:0 @@ -681410,6 +693880,7 @@ github.com/juliangruber/events,num_dependents_deps.dev:0 github.com/juliangruber/fade,num_dependents_deps.dev:0 github.com/juliangruber/fetch-package-source,num_dependents_deps.dev:0 github.com/juliangruber/fill-colorcoded-bar,num_dependents_deps.dev:0 +github.com/juliangruber/find-pull-request-action, github.com/juliangruber/fix-ev,num_dependents_deps.dev:2 github.com/juliangruber/fix-orientation,num_dependents_deps.dev:0 github.com/juliangruber/foreverest,num_dependents_deps.dev:0 @@ -681501,6 +693972,7 @@ github.com/juliangruber/macrocomponent,num_dependents_deps.dev:0 github.com/juliangruber/maxilevel,num_dependents_deps.dev:0 github.com/juliangruber/me,num_dependents_deps.dev:0 github.com/juliangruber/memdb,num_dependents_deps.dev:102 +github.com/juliangruber/merge-pull-request-action, github.com/juliangruber/merkle-dir,num_dependents_deps.dev:0 github.com/juliangruber/min-wait, github.com/juliangruber/modp-groups,num_dependents_deps.dev:0 @@ -681529,6 +694001,7 @@ github.com/juliangruber/npm-local, github.com/juliangruber/npm-run-path-compat,num_dependents_deps.dev:0 github.com/juliangruber/nsq-stream,num_dependents_deps.dev:0 github.com/juliangruber/obj,num_dependents_deps.dev:8 +github.com/juliangruber/octokit-action, github.com/juliangruber/offline,num_dependents_deps.dev:0 github.com/juliangruber/offset-stream,num_dependents_deps.dev:3 github.com/juliangruber/on-enter,num_dependents_deps.dev:0 @@ -681563,6 +694036,7 @@ github.com/juliangruber/rating,num_dependents_deps.dev:0 github.com/juliangruber/react-level-count,num_dependents_deps.dev:0 github.com/juliangruber/react-level-list,num_dependents_deps.dev:0 github.com/juliangruber/react-level-value,num_dependents_deps.dev:0 +github.com/juliangruber/read-file-action, github.com/juliangruber/reconnect-core,num_dependents_deps.dev:1056 github.com/juliangruber/reconnect-engine,num_dependents_deps.dev:8 github.com/juliangruber/reconnect-net,num_dependents_deps.dev:190 @@ -681582,6 +694056,7 @@ github.com/juliangruber/shutup,num_dependents_deps.dev:8 github.com/juliangruber/silent-npm-registry-client,num_dependents_deps.dev:194 github.com/juliangruber/sillytest,num_dependents_deps.dev:0 github.com/juliangruber/sillytest2,num_dependents_deps.dev:0 +github.com/juliangruber/sleep-action, github.com/juliangruber/sortable-hash,num_dependents_deps.dev:6 github.com/juliangruber/span,num_dependents_deps.dev:3 github.com/juliangruber/speedometer-stream,num_dependents_deps.dev:0 @@ -681630,6 +694105,7 @@ github.com/juliangruber/travis-logs,num_dependents_deps.dev:0 github.com/juliangruber/travis-watch,num_dependents_deps.dev:0 github.com/juliangruber/ts,num_dependents_deps.dev:0 github.com/juliangruber/turn,num_dependents_deps.dev:0 +github.com/juliangruber/update-pull-request-branch-action, github.com/juliangruber/url-to-screenshot, github.com/juliangruber/util-promisify,num_dependents_deps.dev:9806 github.com/juliangruber/validimir,num_dependents_deps.dev:0 @@ -681673,6 +694149,7 @@ github.com/julianhyde/sqlline,"criticality_score:0.450370,num_dependents_deps.de github.com/julianhyde/steelwheels-data-hsqldb,num_dependents_deps.dev:0 github.com/julianhyde/toolbox,num_dependents_deps.dev:0 github.com/julianhyde/tpcds,num_dependents_deps.dev:0 +github.com/julianiag/workflow-trigger, github.com/julianiff/design-system,num_dependents_deps.dev:0 github.com/julianiff/living-styleguide,num_dependents_deps.dev:0 github.com/julianirwin/reglean, @@ -681841,6 +694318,9 @@ github.com/julianrubisch/express-asset-file-cache-middleware,num_dependents_deps github.com/julianrubisch/futurism,"criticality_score:0.402390,num_dependents_deps.dev:0" github.com/julianrubisch/pronto-standardrb,num_dependents_deps.dev:0 github.com/julians/nunjucks-loader,num_dependents_deps.dev:0 +github.com/juliansangillo/tag-version, +github.com/juliansangillo/version-composer, +github.com/juliansangillo/version-maestro, github.com/juliansantosinfo/JASCopyFile,num_dependents_deps.dev:0 github.com/juliansantosinfo/JASDateHour,num_dependents_deps.dev:0 github.com/juliansantosinfo/JASSimpleEmail,num_dependents_deps.dev:0 @@ -681878,6 +694358,7 @@ github.com/julianvollmer/football,num_dependents_deps.dev:0 github.com/julianwachholz/dj-config-url, github.com/julianwachholz/django-autocompletefilter, github.com/julianwachholz/django-guest-user, +github.com/julianwachholz/flake8-action, github.com/julianxhokaxhiu/gitbook-plugin-summary,num_dependents_deps.dev:0 github.com/julianxhokaxhiu/gulp-closurecompiler,num_dependents_deps.dev:0 github.com/julianxhokaxhiu/gulp-usemin-reloaded,num_dependents_deps.dev:0 @@ -681895,8 +694376,10 @@ github.com/juliasilge/tidytext,criticality_score:0.487480 github.com/juliastetskaya/project-lvl1-s192,num_dependents_deps.dev:0 github.com/juliastetskaya/project-lvl2-s193,num_dependents_deps.dev:0 github.com/juliastetskaya/project-lvl3-s194,num_dependents_deps.dev:0 +github.com/juliavader/hw-assign-weekly-reviewer, github.com/juliavorobeva/project,num_dependents_deps.dev:0 github.com/julie-ng/blocklift-js,num_dependents_deps.dev:0 +github.com/julie-ng/lowercase-linter, github.com/julie-ng/newtonjs-graph,num_dependents_deps.dev:0 github.com/julie-ng/standard-healthcheck,num_dependents_deps.dev:0 github.com/julie-ng/tidy-jsdoc, @@ -681917,6 +694400,7 @@ github.com/julien-c/masterofcoin,num_dependents_deps.dev:0 github.com/julien-c/mp4-convert,num_dependents_deps.dev:0 github.com/julien-c/simple-s3, github.com/julien-c/tokenizers,num_dependents_deps.dev:0 +github.com/julien-deramond/update-issue-body, github.com/julien-eric/settings,num_dependents_deps.dev:0 github.com/julien-f/csv2json,num_dependents_deps.dev:0 github.com/julien-f/dl-tiles,num_dependents_deps.dev:0 @@ -681980,6 +694464,7 @@ github.com/julien/bdd,num_dependents_deps.dev:0 github.com/julien/generator-phaser,num_dependents_deps.dev:0 github.com/julien/gulp-processhtml,num_dependents_deps.dev:0 github.com/julien/sencisho,num_dependents_deps.dev:0 +github.com/julien51/token-gated-commit-action, github.com/julien6387/supvisors, github.com/julienGautier77/visu, github.com/julienR2/clockmap,num_dependents_deps.dev:0 @@ -682074,6 +694559,7 @@ github.com/julienhenry/tree-sitter-souffle,num_dependents_deps.dev:0 github.com/julienkeutchayan/StochOptim, github.com/julienlevasseur/golibs,num_dependents_deps.dev:0 github.com/julienlevasseur/profiler,num_dependents_deps.dev:0 +github.com/julienloizelet/magento2-ddev-installation, github.com/julienma/generator-static-dockerfile,num_dependents_deps.dev:0 github.com/julienmalard/ennikkai,num_dependents_deps.dev:0 github.com/julienmalard/lassi-ilakkanangal,num_dependents_deps.dev:0 @@ -682142,6 +694628,8 @@ github.com/julieqiu/api-demo,num_dependents_deps.dev:0 github.com/julieqiu/changelog,num_dependents_deps.dev:0 github.com/julieqiu/demo,num_dependents_deps.dev:0 github.com/julieqiu/derrors,num_dependents_deps.dev:0 +github.com/julieqiu/gochecker, +github.com/julieqiu/govulncheck-action, github.com/julieqiu/modcache,num_dependents_deps.dev:0 github.com/julieqiu/pkgsite-demo,num_dependents_deps.dev:0 github.com/julietcetera/graphdb-js,num_dependents_deps.dev:0 @@ -682181,6 +694669,8 @@ github.com/julioE3274/tst-runner,num_dependents_deps.dev:0 github.com/julioacontreras/ncaptcha,num_dependents_deps.dev:0 github.com/julioacontreras/vue-draganddrop,num_dependents_deps.dev:0 github.com/julioakira/starwars-names,num_dependents_deps.dev:0 +github.com/julioarruda/FirstAction, +github.com/julioarruda/pushimagetoregistry, github.com/julioasotodv/spark-df-profiling, github.com/julioc98/cleanarch,num_dependents_deps.dev:0 github.com/julioc98/ideiasdefuturo,num_dependents_deps.dev:0 @@ -682202,6 +694692,7 @@ github.com/juliohm1978/python-juliohmtools, github.com/juliohsu/BomberNight, github.com/juliohurtado/platzom,num_dependents_deps.dev:0 github.com/juliojimenez/pre-plantuml,num_dependents_deps.dev:0 +github.com/juliojimenez/yamler, github.com/juliojordan/deja-vue,num_dependents_deps.dev:0 github.com/juliojordan/foo-component,num_dependents_deps.dev:0 github.com/juliojordan/r8y,num_dependents_deps.dev:0 @@ -682295,6 +694786,7 @@ github.com/juliusdejon/react-mobile-preview,num_dependents_deps.dev:0 github.com/juliusgromyko/angular-translate-directive,num_dependents_deps.dev:0 github.com/juliushaertl/nextcloud-vue-collections, github.com/juliushaertl/vue-richtext,num_dependents_deps.dev:0 +github.com/juliusiglesia/jacoco-report-publisher, github.com/juliusikkala/react-gambatte,num_dependents_deps.dev:0 github.com/juliusmh/python-brihome, github.com/juliussohn/react-youtube-background,num_dependents_deps.dev:0 @@ -682435,6 +694927,7 @@ github.com/julot/sphinxcontrib-translation-assistant, github.com/julouis/node-test-CLI,num_dependents_deps.dev:0 github.com/julouis/npx-card,num_dependents_deps.dev:0 github.com/julppu/rest-with-k8s,num_dependents_deps.dev:0 +github.com/julrocas/pr-size-labeler, github.com/julsemaan/anyfile-notepad,num_dependents_deps.dev:0 github.com/julsemaan/go-resque,num_dependents_deps.dev:0 github.com/julsemaan/golongpoll,num_dependents_deps.dev:0 @@ -682482,6 +694975,7 @@ github.com/jum/scs,num_dependents_deps.dev:0 github.com/jum/tinyftp,num_dependents_deps.dev:3 github.com/jumaevkova04/crud,num_dependents_deps.dev:0 github.com/jumaevkova04/http,num_dependents_deps.dev:0 +github.com/jumaevkova04/openapi2postman, github.com/jumaffre/cimetrics, github.com/jumakiwaka/AT-sms-gun,num_dependents_deps.dev:0 github.com/jumakiwaka/cheap-stocks-cli,num_dependents_deps.dev:0 @@ -682597,6 +695091,7 @@ github.com/jun-lu/pull-refresh,num_dependents_deps.dev:0 github.com/jun-lu/react-pull-refresh2,num_dependents_deps.dev:0 github.com/jun-lu/react-webpack-example,num_dependents_deps.dev:0 github.com/jun-sheaf/codemirror-latex-hint,num_dependents_deps.dev:0 +github.com/jun-shimoji/gha-sample, github.com/jun-y23/setlister,num_dependents_deps.dev:0 github.com/jun06t/echo,num_dependents_deps.dev:0 github.com/jun06t/go-modules-test,num_dependents_deps.dev:0 @@ -682608,6 +695103,7 @@ github.com/jun1st/msft-go,num_dependents_deps.dev:0 github.com/jun2900/digiformtest,num_dependents_deps.dev:0 github.com/jun2900/online-library,num_dependents_deps.dev:0 github.com/jun3372/validator,num_dependents_deps.dev:0 +github.com/jun3453/slack-pr-open-notification-action, github.com/jun50/yt-search, github.com/jun784/wabisabi, github.com/jun85664396/auto-web-crawler,num_dependents_deps.dev:0 @@ -682622,6 +695118,7 @@ github.com/junaid1460/hapi-decorators,num_dependents_deps.dev:0 github.com/junaid1460/hapiest,num_dependents_deps.dev:0 github.com/junaid1460/mongoose-annotations,num_dependents_deps.dev:0 github.com/junaid1460/simple-redis-cache,num_dependents_deps.dev:0 +github.com/junaid18183/platform-github-actions, github.com/junaid33/opensource.builders,criticality_score:0.451810 github.com/junaidnasir/sql-formatter-plus,num_dependents_deps.dev:0 github.com/junaidontable/baltoro.lib,num_dependents_deps.dev:0 @@ -682668,6 +695165,7 @@ github.com/jundong-gao/simple-node-setup,num_dependents_deps.dev:0 github.com/jundymek/free-proxy, github.com/june-www/core,num_dependents_deps.dev:0 github.com/june07/ansible-dynamic-inventory,num_dependents_deps.dev:0 +github.com/june07/brakecode-alert-github-action, github.com/june07/brakecode-node, github.com/june07/dillinger-commit-testing,num_dependents_deps.dev:0 github.com/june07/express-jwt-authz, @@ -682682,6 +695180,7 @@ github.com/june07/peertube-node,num_dependents_deps.dev:0 github.com/june07/ps-list,num_dependents_deps.dev:0 github.com/june1249/eland-plugins-mdm,num_dependents_deps.dev:0 github.com/june2/open-chat-server-sdk,num_dependents_deps.dev:0 +github.com/june21x/get-github-project-v2-metadata, github.com/june3474/skelpy, github.com/juneau001/javaee8-archetype,num_dependents_deps.dev:0 github.com/junebloom/fae, @@ -682738,6 +695237,7 @@ github.com/jungai/test_tailwind_plugin,num_dependents_deps.dev:0 github.com/jungamer/drawk, github.com/jungamer/kdata, github.com/jungang/xcom,num_dependents_deps.dev:0 +github.com/jungaretti/bacon-deploy-action, github.com/jungbin-eom/algorithm,num_dependents_deps.dev:0 github.com/jungbin-eom/go-basic,num_dependents_deps.dev:0 github.com/jungbin-eom/go_microservice,num_dependents_deps.dev:0 @@ -682751,6 +695251,7 @@ github.com/jungerm2/modularyze, github.com/junghans-schneider/extjs-dependencies,num_dependents_deps.dev:0 github.com/junghans-schneider/gulp-extjs,num_dependents_deps.dev:0 github.com/junghong91/myHooks,num_dependents_deps.dev:0 +github.com/junghoon-vans/varst-action, github.com/junghoon2/go,num_dependents_deps.dev:0 github.com/junghyun87/srt-to-vtt-bulk,num_dependents_deps.dev:0 github.com/jungju/casbin,num_dependents_deps.dev:0 @@ -682896,6 +695397,7 @@ github.com/junior-dev-struggle-bus/seattle-maps,num_dependents_deps.dev:0 github.com/junior-isabel/carousel,num_dependents_deps.dev:0 github.com/junior-isabel/drag-drop,num_dependents_deps.dev:0 github.com/junior/json-shaping,num_dependents_deps.dev:0 +github.com/junior/kubeval-helm-chart-action, github.com/junior/supper,num_dependents_deps.dev:0 github.com/junior201110/mongodbfn,num_dependents_deps.dev:0 github.com/junior209lsj/golang-tutorial,num_dependents_deps.dev:0 @@ -682958,6 +695460,7 @@ github.com/junit-team/junit5-samples,criticality_score:0.396830 github.com/junit-team/testng-engine,num_dependents_deps.dev:0 github.com/junitechnology/auth0,num_dependents_deps.dev:0 github.com/junitrunner/junitrunner,num_dependents_deps.dev:0 +github.com/juniuszhangserai/getDeploymentById, github.com/juniuszhou/substrate-pyton-api, github.com/junix/yxt_nlp_toolkit, github.com/junjettrasmonte/html-react-portal,num_dependents_deps.dev:0 @@ -683090,6 +695593,7 @@ github.com/junming4/gomitmproxy,num_dependents_deps.dev:0 github.com/junminhong/leetcode,num_dependents_deps.dev:0 github.com/junminhong/member-center,num_dependents_deps.dev:0 github.com/junminhong/ohi-chat,num_dependents_deps.dev:0 +github.com/junmo-kim/base-merger, github.com/junmocsq/jlib,num_dependents_deps.dev:0 github.com/junnetworks/house_administrator,num_dependents_deps.dev:0 github.com/junneyang/lets-go,num_dependents_deps.dev:0 @@ -683294,6 +695798,8 @@ github.com/jupiter/node-synchronized,num_dependents_deps.dev:0 github.com/jupiter/parquet2json,num_dependents_deps.dev:0 github.com/jupiter/redis-command-stream,num_dependents_deps.dev:0 github.com/jupiter/simple-mock, +github.com/jupiterbak/ayx-server-deploy, +github.com/jupiterbak/ayx-test-reporter, github.com/jupitercl/django-api-sbif, github.com/jupitercl/django-dpa-chile, github.com/jupiterjs/jquerymx,criticality_score:0.352430 @@ -683348,6 +695854,8 @@ github.com/jupyter-incubator/kernel_gateway, github.com/jupyter-incubator/nb2kg, github.com/jupyter-incubator/sparkmagic,criticality_score:0.456600 github.com/jupyter-lsp/jupyterlab-lsp, +github.com/jupyter-naas/docker-smart-tag-action, +github.com/jupyter-naas/get-chagelog-diff, github.com/jupyter-observablehq-bridge/job-client-py-graphql, github.com/jupyter-observablehq-bridge/job-client-py-redis, github.com/jupyter-scala/jupyter-scala,num_dependents_deps.dev:401 @@ -683407,6 +695915,10 @@ github.com/jupytercalpoly/jupyterlab-comments, github.com/jupytercalpoly/jupyterlab-interactive-dashboard-editor,num_dependents_deps.dev:0 github.com/jupytercalpoly/jupyterlab-richtext-mode,num_dependents_deps.dev:0 github.com/jupytercalpoly/jupyterlab-tabular-data-editor,num_dependents_deps.dev:0 +github.com/jupyterhub/action-k3s-helm, +github.com/jupyterhub/action-k8s-await-workloads, +github.com/jupyterhub/action-k8s-namespace-report, +github.com/jupyterhub/action-major-minor-tag-calculator, github.com/jupyterhub/batchspawner, github.com/jupyterhub/binderhub,criticality_score:0.589930 github.com/jupyterhub/chartpress, @@ -683428,6 +695940,7 @@ github.com/jupyterhub/nbserverproxy, github.com/jupyterhub/nullauthenticator, github.com/jupyterhub/oauthenticator,criticality_score:0.525840 github.com/jupyterhub/repo2docker,criticality_score:0.565920 +github.com/jupyterhub/repo2docker-action, github.com/jupyterhub/sxauthenticator, github.com/jupyterhub/systemdspawner, github.com/jupyterhub/the-littlest-jupyterhub,criticality_score:0.501080 @@ -683506,6 +696019,7 @@ github.com/jurasofish/sphinx-toggleprompt, github.com/jurassic-c/mongoose-rest-api,num_dependents_deps.dev:0 github.com/jurassic-park/m2s,num_dependents_deps.dev:0 github.com/jurassic-period/frontend-project-hexlet1,num_dependents_deps.dev:0 +github.com/jurassiscripts/setup-velociraptor, github.com/jurassix/http-benchmark, github.com/jurassix/joi-validation-strategy,num_dependents_deps.dev:2 github.com/jurassix/react-display-name,num_dependents_deps.dev:2350 @@ -683662,6 +696176,7 @@ github.com/jus158/array,num_dependents_deps.dev:0 github.com/jusahah/HoldemHandRanker,num_dependents_deps.dev:0 github.com/jusansilva/complete-line,num_dependents_deps.dev:0 github.com/jusansilva/daylast, +github.com/jusbrasil/github-action-s3cmd, github.com/jusbrasil/node-finagle,num_dependents_deps.dev:0 github.com/jusbrasil/oneformat,num_dependents_deps.dev:0 github.com/jusbrasil/react-metrics-router,num_dependents_deps.dev:0 @@ -683802,10 +696317,12 @@ github.com/just-containers/s6-overlay,criticality_score:0.441190 github.com/just-dandi/dandi,num_dependents_deps.dev:0 github.com/just-den/birthday-select,num_dependents_deps.dev:0 github.com/just-den/data-table-light,num_dependents_deps.dev:0 +github.com/just-dev-creator/install-paper, github.com/just-do-halee/optionee,num_dependents_deps.dev:0 github.com/just-do-halee/utils-plugs,num_dependents_deps.dev:0 github.com/just-do-halee/utils-results,num_dependents_deps.dev:0 github.com/just-do-halee/vep,num_dependents_deps.dev:0 +github.com/just-dodo/issue-to-notion, github.com/just-fine/cs,num_dependents_deps.dev:0 github.com/just-fine/fine.sh-cli,num_dependents_deps.dev:0 github.com/just-frame/invoicer-chapter2,num_dependents_deps.dev:0 @@ -683840,6 +696357,8 @@ github.com/just-paja/redux-entity-store, github.com/just-paja/redux-saga-job-queue,num_dependents_deps.dev:0 github.com/just-paja/redux-saga-restart,num_dependents_deps.dev:0 github.com/just-push-it/WinKey,num_dependents_deps.dev:0 +github.com/just-sultanov/setup-babashka, +github.com/just-sultanov/setup-cljstyle, github.com/just-team/ffmpeg-screen, github.com/just-team/ffmpeg-speed, github.com/just-team/jemitter, @@ -683924,6 +696443,8 @@ github.com/justafish/pr-deployment,num_dependents_deps.dev:0 github.com/justagist/panda_robot, github.com/justagist/pyLasaDataset, github.com/justahuman1/i3-grid, +github.com/justalemon/5desc, +github.com/justalemon/VersionPatcher, github.com/justalk/pornhub-api, github.com/justamad/PyMoCapViewer, github.com/justame/mobx-controller, @@ -684154,6 +696675,8 @@ github.com/justgeek/ionic-ng-select,num_dependents_deps.dev:0 github.com/justgeek/vue-generate-component,num_dependents_deps.dev:0 github.com/justgoofingaround/TOPSIS, github.com/justgook/development-server,num_dependents_deps.dev:0 +github.com/justgook/qmk-build, +github.com/justgook/setup-elm, github.com/justgook/stylus-iconfont,num_dependents_deps.dev:0 github.com/justgoscha/angular2-dropzone-wrapper-fork,num_dependents_deps.dev:0 github.com/justhackit/go-app-template,num_dependents_deps.dev:0 @@ -684242,6 +696765,7 @@ github.com/justin-rosecrans/npm-demo,num_dependents_deps.dev:0 github.com/justin-umesh/react16-form-validation, github.com/justin/fastlane-plugin-upload_symbols_to_hockey,num_dependents_deps.dev:0 github.com/justin0u0/goalgo,num_dependents_deps.dev:0 +github.com/justin0u0/setup-kubectl, github.com/justin1dennison/fooks,num_dependents_deps.dev:0 github.com/justin22/react-simple-drawer, github.com/justin713/gulp-premailer,num_dependents_deps.dev:0 @@ -684313,6 +696837,7 @@ github.com/justincampbell/url-shortener-go,num_dependents_deps.dev:0 github.com/justincampbell/url-shortener-grpc,num_dependents_deps.dev:0 github.com/justincardoza/dropbox-autoupload,num_dependents_deps.dev:0 github.com/justincase-jp/Febpop,num_dependents_deps.dev:0 +github.com/justincase-jp/vercel-preview-url-alias, github.com/justincaseof/daumhoch,num_dependents_deps.dev:0 github.com/justinccdev/jargparse, github.com/justincely/lightcurve_pipeline, @@ -684332,6 +696857,7 @@ github.com/justinchou/lvge-ranklist, github.com/justinchou/lvge-redis, github.com/justinchou/lvge-utils, github.com/justinchuby/cmu-courseapi-mongodb-graphql,num_dependents_deps.dev:0 +github.com/justinchuby/lintrunner-action, github.com/justinclagg/robotframework-pdflibrary,num_dependents_deps.dev:0 github.com/justinclayton/aws-nuke,num_dependents_deps.dev:0 github.com/justinclayton/serf,num_dependents_deps.dev:0 @@ -684347,6 +696873,7 @@ github.com/justincremer/discord-bot,num_dependents_deps.dev:0 github.com/justincremer/go-cron-yourself,num_dependents_deps.dev:0 github.com/justincremer/pron,num_dependents_deps.dev:0 github.com/justincremer/yahtzee,num_dependents_deps.dev:0 +github.com/justincy/npm-version-action, github.com/justindarc/fxos-net,num_dependents_deps.dev:0 github.com/justindarc/fxos-web-server,num_dependents_deps.dev:0 github.com/justindarner/gira,num_dependents_deps.dev:0 @@ -684412,6 +696939,7 @@ github.com/justinfreitag/node-redis-client,num_dependents_deps.dev:0 github.com/justinfreitag/node-redis-protocol,num_dependents_deps.dev:2 github.com/justinfreitag/node-resp,num_dependents_deps.dev:0 github.com/justinfrench/formtastic,num_dependents_deps.dev:618 +github.com/justinfrevert/madara-foundry-action, github.com/justinfx/fileseq, github.com/justinfx/gofileseq,num_dependents_deps.dev:0 github.com/justinfx/olric-nats-plugin,num_dependents_deps.dev:0 @@ -684426,6 +696954,7 @@ github.com/justinh5/angular-polygon-spinners,num_dependents_deps.dev:0 github.com/justinhandley/infusionsoft-javascript-api,num_dependents_deps.dev:0 github.com/justinhandley/redux-react-firebase-starter,num_dependents_deps.dev:0 github.com/justinhardin/p5js-diceroller,num_dependents_deps.dev:0 +github.com/justinharringa/actions-s3_website, github.com/justinhchae/pd-helper, github.com/justinhelmer/commander.js-error,num_dependents_deps.dev:4 github.com/justinhelmer/generator-universal-javascript-vue,num_dependents_deps.dev:0 @@ -684565,6 +697094,7 @@ github.com/justinlivi/dancing-sine,num_dependents_deps.dev:0 github.com/justinlivi/watercolor-sediment,num_dependents_deps.dev:0 github.com/justinlocsei/gready,num_dependents_deps.dev:0 github.com/justinludwig/powerline-svnstatus, +github.com/justinm/actions-ansi-to-html, github.com/justinm/cdk-constructs,num_dependents_deps.dev:0 github.com/justinm/grape_devise,num_dependents_deps.dev:0 github.com/justinm/json-views-express-middleware,num_dependents_deps.dev:0 @@ -684622,6 +697152,7 @@ github.com/justinmchase/hashicon-cli,num_dependents_deps.dev:0 github.com/justinmchase/jbang,num_dependents_deps.dev:0 github.com/justinmchase/paktc,num_dependents_deps.dev:2 github.com/justinmchase/uffda,num_dependents_deps.dev:0 +github.com/justinmcla/spo-file-upload, github.com/justinmeiners/lc3-vm,criticality_score:0.317640 github.com/justinmerrell/django-DevOps, github.com/justinmjc/algorithms,num_dependents_deps.dev:0 @@ -684654,6 +697185,7 @@ github.com/justinpchang/dext-search-plugin,num_dependents_deps.dev:0 github.com/justinpchang/dext-system-plugin,num_dependents_deps.dev:0 github.com/justinpotts/axl, github.com/justinr1234/react-throttle,num_dependents_deps.dev:0 +github.com/justinr636/github-action-slack-notify-build, github.com/justinrainbow/json-schema,criticality_score:0.575150 github.com/justinram11/serverless-aws-batch,num_dependents_deps.dev:0 github.com/justinrassier/postcss-elm-css-tailwind,num_dependents_deps.dev:0 @@ -684664,6 +697196,7 @@ github.com/justinribeiro/cypress-axe,num_dependents_deps.dev:0 github.com/justinribeiro/devtools-to-video,num_dependents_deps.dev:0 github.com/justinribeiro/ga-dnt-analytics,num_dependents_deps.dev:0 github.com/justinribeiro/html5-dragdroptouch-shim,num_dependents_deps.dev:0 +github.com/justinribeiro/lighthouse-action, github.com/justinribeiro/lite-youtube,num_dependents_deps.dev:0 github.com/justinribeiro/paper-snackbar,num_dependents_deps.dev:0 github.com/justinribeiro/share-to-mastodon,num_dependents_deps.dev:0 @@ -684812,6 +697345,9 @@ github.com/justinwyer/redact,num_dependents_deps.dev:0 github.com/justinxreese/bing-location,num_dependents_deps.dev:0 github.com/justinyaodu/LaTeXclippings, github.com/justinyaodu/eepyc, +github.com/justinyoo/github-actions-docker-sample, +github.com/justinyoo/github-issue-label-action, +github.com/justinyoo/github-pr-merge-action, github.com/justinzelinsky/apod-bg,num_dependents_deps.dev:0 github.com/justinzelinsky/gpio-components,num_dependents_deps.dev:0 github.com/justinzelinsky/hexify-string, @@ -684846,6 +697382,8 @@ github.com/justjanne/powerline-go,"criticality_score:0.498170,num_dependents_dep github.com/justjasongreen/predictive_punter, github.com/justjasongreen/punters_client, github.com/justjasongreen/racing_data, +github.com/justjavac/action-dvm-release, +github.com/justjavac/action-gh-push, github.com/justjavac/awesome-wechat-weapp,criticality_score:0.430460 github.com/justjavac/deno_plugin_num_cpus,num_dependents_deps.dev:0 github.com/justjavac/deno_plugin_starter,num_dependents_deps.dev:0 @@ -685141,6 +697679,7 @@ github.com/justuswilhelm/anonymijson,num_dependents_deps.dev:0 github.com/justuswilhelm/babble,num_dependents_deps.dev:0 github.com/justuswilhelm/beemodoro, github.com/justuswilhelm/hashprint, +github.com/justvanilla/shared-gha-cache-s3, github.com/justvanrossum/drawbot-skia, github.com/justvanrossum/fbdiff, github.com/justvanrossum/fontgoggles,criticality_score:0.342580 @@ -685337,6 +697876,11 @@ github.com/juzi5201314/rcnb-rs,num_dependents_deps.dev:0 github.com/juzibot/group-image-composer,num_dependents_deps.dev:0 github.com/juzibot/simple-qnamaker,num_dependents_deps.dev:0 github.com/juztcode/angular-auth,num_dependents_deps.dev:0 +github.com/juztcode/create-release-notes, +github.com/juztcode/generate-semver, +github.com/juztcode/gitter-github-action, +github.com/juztcode/pr-updater, +github.com/juztcode/repo-ditpatch-action, github.com/juztcode/sqlite-admin,num_dependents_deps.dev:0 github.com/juztcode/ts-collections,num_dependents_deps.dev:0 github.com/juztin/cli,num_dependents_deps.dev:0 @@ -685350,6 +697894,7 @@ github.com/juztin/statictls,num_dependents_deps.dev:0 github.com/juztinlazaro/test-ui,num_dependents_deps.dev:0 github.com/juzu/juzu,num_dependents_deps.dev:917 github.com/juzzlin/Heimer,criticality_score:0.367900 +github.com/jv-k/ai-to-pdf-action, github.com/jv-k/ver-bump,num_dependents_deps.dev:0 github.com/jv-k/watch-execute,num_dependents_deps.dev:0 github.com/jvaclavik/react-native-show-hide-toggle-box,num_dependents_deps.dev:0 @@ -685437,6 +697982,7 @@ github.com/jvanwyk1/test-css,num_dependents_deps.dev:0 github.com/jvarho/pylibscrypt, github.com/jvarness/hubot-barkeep,num_dependents_deps.dev:0 github.com/jvarness/hubot-yelp, +github.com/jvartanian/pipelines, github.com/jvartanian94/firebaseui-web,num_dependents_deps.dev:0 github.com/jvas28/grapesjs-echarts,num_dependents_deps.dev:0 github.com/jvasile/acme-rofl, @@ -685483,6 +698029,8 @@ github.com/jvehent/badcrypto,num_dependents_deps.dev:0 github.com/jvehent/heka,num_dependents_deps.dev:0 github.com/jveitchmichaelis/ina260, github.com/jveitchmichaelis/pca9632, +github.com/jveldboom/action-aws-apigw-oidc-request, +github.com/jveldboom/action-conventional-versioning, github.com/jvelezc/gridstackangularimproved,num_dependents_deps.dev:0 github.com/jvelezpo/react-native-text-hypertext,num_dependents_deps.dev:0 github.com/jveljan/aws-lambda-rollup,num_dependents_deps.dev:0 @@ -685494,6 +698042,7 @@ github.com/jvendrow/fnnls, github.com/jvennix-r7/jasmine-beforeSuite,num_dependents_deps.dev:0 github.com/jvennix-r7/jasmine-set,num_dependents_deps.dev:0 github.com/jvennix-r7/jasmine-sugar,num_dependents_deps.dev:0 +github.com/jveraduran/packer-github-actions, github.com/jverce/gitlab-sdk,num_dependents_deps.dev:0 github.com/jverce/salesforce-webhooks,num_dependents_deps.dev:0 github.com/jverdi/JVFloatLabeledTextField,criticality_score:0.405120 @@ -685628,6 +698177,7 @@ github.com/jvlad/Generator-pm.yeoman.js,num_dependents_deps.dev:0 github.com/jvlalves/dinamizesnipeitdataquest,num_dependents_deps.dev:0 github.com/jvlingam/SQLpandas, github.com/jvlingam/swapdate, +github.com/jvllmr/surrealdb-action, github.com/jvlsg/Worden, github.com/jvm-operators/abstract-operator,num_dependents_deps.dev:0 github.com/jvm-operators/operator-parent-pom,num_dependents_deps.dev:0 @@ -685659,6 +698209,7 @@ github.com/jvns/pandas-cookbook,criticality_score:0.330890 github.com/jvo203/fpzip-sys,num_dependents_deps.dev:0 github.com/jvo203/zfp-sys,num_dependents_deps.dev:0 github.com/jvo203/zfp-sys-cc,num_dependents_deps.dev:0 +github.com/jvo5610/terraform-pr-automation, github.com/jvoegele/gradle-android-plugin,num_dependents_deps.dev:0 github.com/jvoisin/snuffleupagus,criticality_score:0.428570 github.com/jvolker/Openframe-Processing,num_dependents_deps.dev:0 @@ -685758,6 +698309,7 @@ github.com/jwadhams/dotty-map,num_dependents_deps.dev:0 github.com/jwadhams/json-logic-js,"criticality_score:0.356030,num_dependents_deps.dev:348" github.com/jwadhwani/gc-trace-parser-csv,num_dependents_deps.dev:0 github.com/jwadhwani/simple-series-parallel,num_dependents_deps.dev:0 +github.com/jwage/easy-csv, github.com/jwage/purl,criticality_score:0.313800 github.com/jwaggie14/yahoo-draft-wizard, github.com/jwagner/normalmap.js,num_dependents_deps.dev:0 @@ -685797,6 +698349,11 @@ github.com/jwalton/chai-jest,num_dependents_deps.dev:0 github.com/jwalton/etcd3-ts,num_dependents_deps.dev:0 github.com/jwalton/gawk,num_dependents_deps.dev:0 github.com/jwalton/gchalk,num_dependents_deps.dev:7 +github.com/jwalton/gh-docker-logs, +github.com/jwalton/gh-ecr-login, +github.com/jwalton/gh-ecr-push, +github.com/jwalton/gh-find-current-pr, +github.com/jwalton/gh-for-each-pr, github.com/jwalton/go-supportscolor,num_dependents_deps.dev:21 github.com/jwalton/gulp-pug-lint2,num_dependents_deps.dev:0 github.com/jwalton/hrstopwatch,num_dependents_deps.dev:0 @@ -685981,6 +698538,7 @@ github.com/jwendell/engine-api,num_dependents_deps.dev:0 github.com/jwenjian/giki-cli,num_dependents_deps.dev:0 github.com/jwenjian/topa, github.com/jweny/pocassist,num_dependents_deps.dev:0 +github.com/jwenz723/github-app-installation-token, github.com/jwenz723/gocolor,num_dependents_deps.dev:0 github.com/jwepdx/express-helper,num_dependents_deps.dev:0 github.com/jwergieluk/openfigi, @@ -686066,6 +698624,7 @@ github.com/jwfriese/fleet,num_dependents_deps.dev:0 github.com/jwfu/gainz, github.com/jwfwessels/smooth-scroll-to,num_dependents_deps.dev:0 github.com/jwg4/calexicon, +github.com/jwg4/docker-python-poetry, github.com/jwg4/exact_cover, github.com/jwg4/flask-test-requests-client, github.com/jwg4/iberzetsn, @@ -686077,6 +698636,9 @@ github.com/jwg4/pyvirgo, github.com/jwg4/xudoku, github.com/jwgalley/aggnf, github.com/jwgalley/cmdfor, +github.com/jwgmeligmeyling/checkstyle-github-action, +github.com/jwgmeligmeyling/pmd-github-action, +github.com/jwgmeligmeyling/spotbugs-github-action, github.com/jwgoedert/lodown,num_dependents_deps.dev:0 github.com/jwh/raft-boltdb,num_dependents_deps.dev:0 github.com/jwhance/http-aws-es,num_dependents_deps.dev:0 @@ -686120,6 +698682,8 @@ github.com/jwickens/jest-serializers,num_dependents_deps.dev:0 github.com/jwickens/npm-api-cacher,num_dependents_deps.dev:0 github.com/jwickens/secrets-encrypt,num_dependents_deps.dev:0 github.com/jwicks/node-citygrid,num_dependents_deps.dev:0 +github.com/jwidauer/setup-conan, +github.com/jwidauer/setup-sonar-scanner, github.com/jwiebalk/hubot-jazzhands,num_dependents_deps.dev:0 github.com/jwiegley/alert,criticality_score:0.385980 github.com/jwiegley/category-theory,criticality_score:0.318150 @@ -686168,6 +698732,7 @@ github.com/jwilm/strava-rs,num_dependents_deps.dev:0 github.com/jwilm/uuidtoa,num_dependents_deps.dev:0 github.com/jwilm/vte,num_dependents_deps.dev:471 github.com/jwilner/grpcbreaker,num_dependents_deps.dev:0 +github.com/jwilner/pullquote, github.com/jwilner/rv,num_dependents_deps.dev:0 github.com/jwils0n/profanity-filter,num_dependents_deps.dev:0 github.com/jwilson64/ninja-proxy,num_dependents_deps.dev:0 @@ -686237,6 +698802,8 @@ github.com/jwkvam/spellrst, github.com/jwlarocque/svelte-dragdroplist,num_dependents_deps.dev:0 github.com/jwlarocque/which,num_dependents_deps.dev:0 github.com/jwlawrence/ember-tri-state,num_dependents_deps.dev:0 +github.com/jwlawson/actions-setup-bazel, +github.com/jwlawson/actions-setup-cmake, github.com/jwleddy/react-jqknob,num_dependents_deps.dev:0 github.com/jwlodek/clanimate, github.com/jwlodek/npdoc2md, @@ -686379,6 +698946,8 @@ github.com/jwrunge/svelte-modal,num_dependents_deps.dev:0 github.com/jwrunner/runner-ui,num_dependents_deps.dev:0 github.com/jws1033/fabcar-0706,num_dependents_deps.dev:0 github.com/jwshival/uno,num_dependents_deps.dev:0 +github.com/jwsi/secret-parser, +github.com/jwsi/submodule-checkout, github.com/jwstegemann/fritz2,"criticality_score:0.442360,num_dependents_deps.dev:0" github.com/jwt-dotnet/jwt,criticality_score:0.484870 github.com/jwt-scala/jwt-scala,num_dependents_deps.dev:410 @@ -686398,6 +698967,7 @@ github.com/jwu910/spotless,num_dependents_deps.dev:0 github.com/jwueller/canvas-long-shadow,num_dependents_deps.dev:0 github.com/jwuensche/autobahnkreuz,num_dependents_deps.dev:0 github.com/jwuensche/openmensa-rs,num_dependents_deps.dev:0 +github.com/jwulf/add-env-vars-action, github.com/jwulf/debug,num_dependents_deps.dev:0 github.com/jwulf/ember-monaco,num_dependents_deps.dev:0 github.com/jwulf/ghetto-monad,num_dependents_deps.dev:0 @@ -686645,6 +699215,7 @@ github.com/jxufeliujj/beego_blog,num_dependents_deps.dev:0 github.com/jxv/colorless-javascript,num_dependents_deps.dev:0 github.com/jxv/task-shift,num_dependents_deps.dev:0 github.com/jxv106/url-search,num_dependents_deps.dev:0 +github.com/jxw1102/action-functions-deploy, github.com/jxwang2010/WifiWizardExtend,num_dependents_deps.dev:0 github.com/jxwang2010/cordova-plugin-app-update-1,num_dependents_deps.dev:0 github.com/jxwolstenholme/btsmarthub_devicelist, @@ -686666,6 +699237,7 @@ github.com/jy0529/vite-plugin-dynamic-publicpath,num_dependents_deps.dev:0 github.com/jy7123943/bugcide_npm_package,num_dependents_deps.dev:0 github.com/jy7123943/bugcide_webpack_plugin,num_dependents_deps.dev:0 github.com/jy95/escape-path-with-spaces,num_dependents_deps.dev:0 +github.com/jy95/ghostscript-action, github.com/jy95/i18n-tools,num_dependents_deps.dev:0 github.com/jy95/mediaScan,num_dependents_deps.dev:0 github.com/jy95/path-dirnames,num_dependents_deps.dev:0 @@ -686694,6 +699266,7 @@ github.com/jycouet/VSTSExtensions,num_dependents_deps.dev:0 github.com/jycyunme/go-i18n,num_dependents_deps.dev:0 github.com/jyd519/minizip-sys,num_dependents_deps.dev:0 github.com/jyd519/node-zip,num_dependents_deps.dev:0 +github.com/jyeany/version-check-gradle, github.com/jyebe9034/go-scrapper,num_dependents_deps.dev:0 github.com/jyebe9034/url-checker,num_dependents_deps.dev:0 github.com/jyelewis/RPCAPI,num_dependents_deps.dev:0 @@ -686736,6 +699309,8 @@ github.com/jylopez/multiples-of,num_dependents_deps.dev:0 github.com/jylopez/partial-geometric-series,num_dependents_deps.dev:0 github.com/jylopez/rule-30,num_dependents_deps.dev:0 github.com/jylopez/string-to-hex-color,num_dependents_deps.dev:0 +github.com/jymartineau/keyword-release-action, +github.com/jymartineau/podcast-generator, github.com/jymfony/angular-universal-bridge,num_dependents_deps.dev:0 github.com/jymfony/jymfony,num_dependents_deps.dev:0 github.com/jymin6543/vue-version,num_dependents_deps.dev:0 @@ -686778,6 +699353,7 @@ github.com/jyotirmaybanerjee/react-duallist,num_dependents_deps.dev:0 github.com/jyotirmaybanerjee/tango-chart,num_dependents_deps.dev:0 github.com/jyotirmaybanerjee/tango-ui,num_dependents_deps.dev:0 github.com/jyotisham/jyotisha, +github.com/jyotishka7139/slack-test-report, github.com/jyotishkabiswas/ciril,num_dependents_deps.dev:0 github.com/jyotiska/minpubsub, github.com/jyotiska/prettytable,num_dependents_deps.dev:0 @@ -686949,9 +699525,11 @@ github.com/jzendo/jquery.cascadeSelect,num_dependents_deps.dev:0 github.com/jzendo/mTreeWalker,num_dependents_deps.dev:0 github.com/jzendo/promise-accessory,num_dependents_deps.dev:0 github.com/jzendo/trie,num_dependents_deps.dev:0 +github.com/jzeni/cloudformation-update-action, github.com/jzequn/react-sponge,num_dependents_deps.dev:0 github.com/jzes/datastructure,num_dependents_deps.dev:0 github.com/jzeuner/konbata, +github.com/jzeuzs/action-railway, github.com/jzferreira/pubsubc,num_dependents_deps.dev:0 github.com/jzgoda/mailgun-list-export,num_dependents_deps.dev:0 github.com/jzhang-0/Quantization, @@ -687011,7 +699589,9 @@ github.com/jzumbrun/supersequel,num_dependents_deps.dev:0 github.com/jzumer/pytwed, github.com/jzvelc/gulp-revsolve,num_dependents_deps.dev:0 github.com/jzvelc/signaller,num_dependents_deps.dev:0 +github.com/jzweifel/gatsby-cli-github-action, github.com/jzweifel/perigee,num_dependents_deps.dev:0 +github.com/jzweifel/pr-status-giphy-action, github.com/jzwlqx/containerd,num_dependents_deps.dev:0 github.com/jzwlqx/log-pilot,num_dependents_deps.dev:0 github.com/jzwlqx/terway,num_dependents_deps.dev:0 @@ -687063,6 +699643,7 @@ github.com/k-bu/devpi-rss, github.com/k-burt/angular-inject-graph,num_dependents_deps.dev:0 github.com/k-burt/gulp-angular-inject-graph,num_dependents_deps.dev:0 github.com/k-bx/github-agent,num_dependents_deps.dev:0 +github.com/k-chunghwan/jest-coverage-action, github.com/k-components/k-connection-alert-fi,num_dependents_deps.dev:0 github.com/k-components/k-dialog, github.com/k-components/k-flash,num_dependents_deps.dev:0 @@ -687128,6 +699709,7 @@ github.com/k-kinzal/helmfile,num_dependents_deps.dev:0 github.com/k-kinzal/inject-decorators,num_dependents_deps.dev:0 github.com/k-kinzal/lambda-logs,num_dependents_deps.dev:0 github.com/k-kinzal/npm-store,num_dependents_deps.dev:0 +github.com/k-kinzal/pr-action, github.com/k-kinzal/sbt-bin,num_dependents_deps.dev:0 github.com/k-kinzal/scala-bin,num_dependents_deps.dev:2 github.com/k-kinzal/scalajs-standalone-bin,num_dependents_deps.dev:0 @@ -687165,6 +699747,7 @@ github.com/k-motoyan/KnockoutValidationHx,num_dependents_deps.dev:0 github.com/k-nanri/gosample,num_dependents_deps.dev:0 github.com/k-nasa/contriview,num_dependents_deps.dev:0 github.com/k-nasa/discordcat,num_dependents_deps.dev:0 +github.com/k-nasa/gid, github.com/k-nasa/goku,num_dependents_deps.dev:0 github.com/k-nasa/lc,num_dependents_deps.dev:0 github.com/k-nasa/memo_command,num_dependents_deps.dev:0 @@ -687194,6 +699777,7 @@ github.com/k-okina/vue-vnode-component,num_dependents_deps.dev:0 github.com/k-okoli/learning-git,num_dependents_deps.dev:0 github.com/k-ori/jsx-tag-preprocessor,num_dependents_deps.dev:0 github.com/k-paxian/asset-redirect-webpack-plugin,num_dependents_deps.dev:0 +github.com/k-paxian/dart-package-publisher, github.com/k-phanudet/covid-patients-stats-api,num_dependents_deps.dev:0 github.com/k-phoen/dark,num_dependents_deps.dev:0 github.com/k-phoen/gostore,num_dependents_deps.dev:0 @@ -687346,6 +699930,7 @@ github.com/k0st1an/valve-monitor, github.com/k0st1an/yandex-kassa, github.com/k0st1an/yandex-pdd, github.com/k0st8/git-actions-golang-001,num_dependents_deps.dev:0 +github.com/k0staa/download-gdrive-file-action, github.com/k0sukey/YaTriple,num_dependents_deps.dev:0 github.com/k0sukey/alloy-smelter,num_dependents_deps.dev:0 github.com/k0sukey/gulp-tssfmt,num_dependents_deps.dev:0 @@ -687430,7 +700015,12 @@ github.com/k19810703/web-function-test,num_dependents_deps.dev:0 github.com/k19810703/whd-util,num_dependents_deps.dev:0 github.com/k1995/mysrv,num_dependents_deps.dev:0 github.com/k1LoW/awspec,criticality_score:0.469700 +github.com/k1LoW/gh-setup, +github.com/k1LoW/github-script-ruby, +github.com/k1LoW/gostyle-action, +github.com/k1LoW/octocov-action, github.com/k1LoW/serverless-s3-sync,num_dependents_deps.dev:4 +github.com/k1LoW/setup-tbls, github.com/k1LoW/tbls,"criticality_score:0.480850,num_dependents_deps.dev:0" github.com/k1dbl4ck/PowerBI-Angular2,num_dependents_deps.dev:0 github.com/k1dbl4ck/localstoragex,num_dependents_deps.dev:0 @@ -687489,6 +700079,7 @@ github.com/k265/aliyundrive-go,num_dependents_deps.dev:0 github.com/k26dr/student_assessment,num_dependents_deps.dev:0 github.com/k28/go-ondotori,num_dependents_deps.dev:0 github.com/k28/ondotori-ruby-client,num_dependents_deps.dev:0 +github.com/k2bd/advent-readme-stars, github.com/k2bd/aiogh, github.com/k2bd/firebasil, github.com/k2bd/pixii, @@ -687533,6 +700124,7 @@ github.com/k2snowman69/exec-if-exists,num_dependents_deps.dev:0 github.com/k2spam/vuem,num_dependents_deps.dev:0 github.com/k2tanaka/hipchat-api, github.com/k2tanaka/hipchat-client,num_dependents_deps.dev:0 +github.com/k2tzumi/runn-action, github.com/k2wanko/firestore-full-text-search,num_dependents_deps.dev:0 github.com/k2wanko/fly-vulcanize,num_dependents_deps.dev:0 github.com/k2wanko/generator-chromeapp-coffee,num_dependents_deps.dev:0 @@ -687590,6 +700182,7 @@ github.com/k3nn37h/winter-polaris-webvtt,num_dependents_deps.dev:0 github.com/k3nsei/angular2-in-viewport,num_dependents_deps.dev:0 github.com/k3nsei/file-chunks,num_dependents_deps.dev:0 github.com/k3nsei/ng-in-viewport, +github.com/k3nt0w/jest-github-action, github.com/k3oni/pydash-django-app, github.com/k3po/k3po,num_dependents_deps.dev:767 github.com/k3rn31/playground,num_dependents_deps.dev:0 @@ -687602,6 +700195,8 @@ github.com/k3rnel-err0r/antonioqfel, github.com/k3rnel-err0r/ke-cli-alerts, github.com/k3rnel-err0r/ke-cli-todo,num_dependents_deps.dev:0 github.com/k3rnel-err0r/ke-create-node-cli,num_dependents_deps.dev:0 +github.com/k3rnels-actions/pr-update, +github.com/k3rnels-actions/setup-tool-binary, github.com/k3rnerl-err0r/ke-cli-alerts,num_dependents_deps.dev:0 github.com/k3s-io/containerd,num_dependents_deps.dev:0 github.com/k3s-io/cri,num_dependents_deps.dev:0 @@ -687758,9 +700353,11 @@ github.com/k88hudson/yamscripts,num_dependents_deps.dev:0 github.com/k88t76/codearchives-server,num_dependents_deps.dev:0 github.com/k8gege/ladon,num_dependents_deps.dev:0 github.com/k8gege/ladongo,num_dependents_deps.dev:0 +github.com/k8s-actions/golang, github.com/k8s-at-home/charts,criticality_score:0.565010 github.com/k8s-at-home/gateway-admision-controller,num_dependents_deps.dev:0 github.com/k8s-at-home/library-charts,num_dependents_deps.dev:0 +github.com/k8s-at-home/renovate-helm-releases, github.com/k8s-autoops/admission-bootstrapper,num_dependents_deps.dev:0 github.com/k8s-autoops/enforce-auto-resources,num_dependents_deps.dev:0 github.com/k8s-autoops/enforce-deployment-max-pods,num_dependents_deps.dev:0 @@ -687774,6 +700371,7 @@ github.com/k8s-kollect/kollect,num_dependents_deps.dev:0 github.com/k8s-nova/hlease,num_dependents_deps.dev:0 github.com/k8s-practice/octopus,num_dependents_deps.dev:0 github.com/k8s-school/clouder,num_dependents_deps.dev:0 +github.com/k8s-school/golang-github-actions, github.com/k8s-service-bindings/implementation,num_dependents_deps.dev:0 github.com/k8s-service-bindings/service-binding-controller,num_dependents_deps.dev:0 github.com/k8s-service-bindings/spec,num_dependents_deps.dev:0 @@ -687782,6 +700380,7 @@ github.com/k8s-volume-copy/types,num_dependents_deps.dev:0 github.com/k8sbykeshed/k8s-service-lb-validator,num_dependents_deps.dev:0 github.com/k8sbykeshed/monad,num_dependents_deps.dev:0 github.com/k8scat/ForMaiR, +github.com/k8scat/action-mirror-git, github.com/k8scat/fxiaoke,num_dependents_deps.dev:0 github.com/k8scat/gigrator, github.com/k8scat/gotie,num_dependents_deps.dev:0 @@ -687903,6 +700502,7 @@ github.com/ka2n/sigil,num_dependents_deps.dev:0 github.com/ka3de/dependabot-test,num_dependents_deps.dev:0 github.com/ka3de/dependabot-test-lib,num_dependents_deps.dev:0 github.com/ka4ok85/watson-campaign-automation-spring,num_dependents_deps.dev:0 +github.com/ka7eh/no-weekend-merge, github.com/ka7eh/rust-geobuf,num_dependents_deps.dev:0 github.com/ka7eh/rust-mbtileserver,num_dependents_deps.dev:0 github.com/ka8725/migration_data,num_dependents_deps.dev:0 @@ -687948,6 +700548,7 @@ github.com/kaandedeoglu/KDCircularProgress,criticality_score:0.335230 github.com/kaandemir97/test_demirkaan97, github.com/kaanf/ionic,num_dependents_deps.dev:0 github.com/kaangokdemir/bulma-spacing,num_dependents_deps.dev:0 +github.com/kaangokdemir/github-version-bumper, github.com/kaangokdemir/json-bump,num_dependents_deps.dev:0 github.com/kaangokdemir/turkish-id-checker,num_dependents_deps.dev:0 github.com/kaaniboy/gsheetsdb,num_dependents_deps.dev:0 @@ -688008,6 +700609,7 @@ github.com/kaave/result,num_dependents_deps.dev:0 github.com/kaavee315/gocql,num_dependents_deps.dev:0 github.com/kaaveland/pyarrowfs-adlgen2, github.com/kaayso/create-new-kata,num_dependents_deps.dev:0 +github.com/kaazedev/go-coverage-report, github.com/kaazing/code.quality,num_dependents_deps.dev:0 github.com/kaazing/community,num_dependents_deps.dev:81 github.com/kaazing/gateway,num_dependents_deps.dev:113 @@ -688102,6 +700704,7 @@ github.com/kabuk-istanbul/name-the-color-stylus,num_dependents_deps.dev:0 github.com/kabukki/blih,num_dependents_deps.dev:0 github.com/kabukky/imaginary,num_dependents_deps.dev:0 github.com/kabulore/drawer,num_dependents_deps.dev:0 +github.com/kabute/popeye-github-actions, github.com/kabutz/dynamic-proxies-samples,num_dependents_deps.dev:0 github.com/kabyab/primelib, github.com/kabychow/gobert,num_dependents_deps.dev:0 @@ -688116,6 +700719,7 @@ github.com/kacecode/jsreport-gcp-storage,num_dependents_deps.dev:0 github.com/kacejot/json-patch,num_dependents_deps.dev:0 github.com/kacepe/homebridge-shelly,num_dependents_deps.dev:0 github.com/kacepe/ng2-ago,num_dependents_deps.dev:0 +github.com/kacey-lunacare/push-to-ecr, github.com/kach/nearley,"criticality_score:0.443960,num_dependents_deps.dev:0" github.com/kach/torchsaber, github.com/kachaMukabe/streak, @@ -688132,9 +700736,13 @@ github.com/kachayev/logfollow, github.com/kacheryhub/kachery-client, github.com/kacheryhub/kachery-daemon, github.com/kachick/abb,num_dependents_deps.dev:0 +github.com/kachick/action-parse-asdf-tool-versions, +github.com/kachick/action-update-dprint-plugins, github.com/kachick/adjustn,num_dependents_deps.dev:0 github.com/kachick/bmi,num_dependents_deps.dev:0 github.com/kachick/declare,num_dependents_deps.dev:0 +github.com/kachick/deploy-yard-to-pages, +github.com/kachick/elm-dependency-submission, github.com/kachick/eqq,num_dependents_deps.dev:8 github.com/kachick/family,num_dependents_deps.dev:0 github.com/kachick/hash-diff,num_dependents_deps.dev:0 @@ -688156,6 +700764,7 @@ github.com/kachick/striuct,num_dependents_deps.dev:0 github.com/kachick/struct-validatable,num_dependents_deps.dev:0 github.com/kachick/terminal-progress_bar,num_dependents_deps.dev:0 github.com/kachick/validation,num_dependents_deps.dev:2 +github.com/kachick/wait-other-jobs, github.com/kachkaev/graphql-type-regexp,num_dependents_deps.dev:0 github.com/kachkaev/humane-math,num_dependents_deps.dev:0 github.com/kachkaev/next-i18n,num_dependents_deps.dev:0 @@ -688220,6 +700829,7 @@ github.com/kadamwhite/require-context-hmr,num_dependents_deps.dev:0 github.com/kadamwhite/salticidae,num_dependents_deps.dev:0 github.com/kadamwhite/tokenize-markdown,num_dependents_deps.dev:0 github.com/kadamwhite/wordpress-rest-api,num_dependents_deps.dev:0 +github.com/kadaradam/notion-pr-link, github.com/kadarin123/KoreanReviewSummarizer, github.com/kadaster/nlmaps, github.com/kaddio/kaddio-money,num_dependents_deps.dev:0 @@ -688716,6 +701326,7 @@ github.com/kafji/lembaran,num_dependents_deps.dev:0 github.com/kafji/noship,num_dependents_deps.dev:0 github.com/kafka-dev/kafka,criticality_score:0.302370 github.com/kafka-finance/kafka-toolkit,num_dependents_deps.dev:0 +github.com/kafka-ops/julieops-github-action, github.com/kafka-owl/common,num_dependents_deps.dev:0 github.com/kafkaacademy/form-serialize-improved, github.com/kafkaesque-io/pulsar,num_dependents_deps.dev:0 @@ -688727,6 +701338,7 @@ github.com/kafkajs/zstd,num_dependents_deps.dev:0 github.com/kafkalm/gok,num_dependents_deps.dev:0 github.com/kafkas/firecode,num_dependents_deps.dev:0 github.com/kafkas/firetype, +github.com/kafkasl/delete_from_another_repo, github.com/kafkata/embedded-kafka,num_dependents_deps.dev:0 github.com/kafkata/testbench,num_dependents_deps.dev:0 github.com/kaflesudip/grabfeed, @@ -688846,6 +701458,7 @@ github.com/kagis/pgwire, github.com/kagiskz/pgwire,num_dependents_deps.dev:0 github.com/kagkarlsson/db-scheduler,"criticality_score:0.510880,num_dependents_deps.dev:25" github.com/kagkarlsson/micro-jdbc,num_dependents_deps.dev:8 +github.com/kagof/trello-link-github-action, github.com/kagol/ktools,num_dependents_deps.dev:0 github.com/kagonzalez84/oly-pdw-template-parser,num_dependents_deps.dev:0 github.com/kagonzalez84/serverless-before-local-run,num_dependents_deps.dev:0 @@ -688919,15 +701532,18 @@ github.com/kahnjw/wincast, github.com/kahole/edamagit,criticality_score:0.448540 github.com/kahoon/ksql,num_dependents_deps.dev:0 github.com/kahootali/golang-sample-app,num_dependents_deps.dev:0 +github.com/kahovka/bumpVersion, github.com/kahowane/generator-wp-skeletons,num_dependents_deps.dev:0 github.com/kahowell/pywebui, github.com/kahowell/sdl2-cffi, github.com/kahowell/sixoclock, +github.com/kahu-app/github-action, github.com/kahuang/dep,num_dependents_deps.dev:0 github.com/kahuang/migra, github.com/kahuang/mongodb_exporter,num_dependents_deps.dev:0 github.com/kahuang/qproxy,num_dependents_deps.dev:0 github.com/kahuang/schemainspect, +github.com/kahuang/semantic-version, github.com/kahuang/warmer,num_dependents_deps.dev:0 github.com/kahun/awesome-sysadmin,criticality_score:0.343580 github.com/kahunacohen/google-lyrics, @@ -688958,6 +701574,7 @@ github.com/kai-raschke/prodig-external-deps,num_dependents_deps.dev:0 github.com/kai-tub/bigearthnet_common, github.com/kai-tub/bigearthnet_gdf_builder, github.com/kai-tub/common_nb_preprocessors, +github.com/kai-tub/external-repo-sync-action, github.com/kai-wegner/AutoNode,num_dependents_deps.dev:0 github.com/kai-wegner/autoRemote.js,num_dependents_deps.dev:0 github.com/kai13xd/Freighter, @@ -689002,6 +701619,8 @@ github.com/kaicataldo/hyperterm-hybrid-reduced-contrast,num_dependents_deps.dev: github.com/kaicataldo/material.vim,criticality_score:0.308370 github.com/kaicataldo/prism-material-themes,num_dependents_deps.dev:0 github.com/kaicataldo/rubberducky,num_dependents_deps.dev:0 +github.com/kaichaosun/ga-replace-string, +github.com/kaichaosun/replace-string-in-file, github.com/kaichen/omniauth-qq-connect,num_dependents_deps.dev:0 github.com/kaichenkai/gopracticecode,num_dependents_deps.dev:0 github.com/kaichunlin/android-transition,num_dependents_deps.dev:0 @@ -689022,6 +701641,7 @@ github.com/kaidouji85/gbraver-burst-core,num_dependents_deps.dev:0 github.com/kaidouji85/sudenona,num_dependents_deps.dev:0 github.com/kaiec/fspdf, github.com/kaiehrhardt/cron-viewer,num_dependents_deps.dev:0 +github.com/kaiehrhardt/full-build-push-action, github.com/kaiekaie/handtrack.js-node, github.com/kaiete/InstantPalgrave,num_dependents_deps.dev:0 github.com/kaiete/textwrite,num_dependents_deps.dev:0 @@ -689387,6 +702007,7 @@ github.com/kaissaroj/react-nepali-datepicker,num_dependents_deps.dev:0 github.com/kaissaroj/videojs-dynamic-overlay,num_dependents_deps.dev:0 github.com/kaist-cs453-2019s-team7/cs453-team-project, github.com/kaist-irnlp/exobrain-entity-recognizer, +github.com/kaisugi/action-regex-match, github.com/kaisukez/use-key-down-once,num_dependents_deps.dev:0 github.com/kaitai-io/kaitai-struct-loader,num_dependents_deps.dev:0 github.com/kaitai-io/kaitai_struct,"criticality_score:0.475060,num_dependents_deps.dev:1" @@ -689579,6 +702200,7 @@ github.com/kajic/django-counter-field, github.com/kajic/django-model-changes, github.com/kajigga/go-example-app,num_dependents_deps.dev:0 github.com/kajikaji0725/gakujo_slack,num_dependents_deps.dev:0 +github.com/kajirikajiri/GithubIssueToNotion, github.com/kajisha/rspec-traveling,num_dependents_deps.dev:0 github.com/kajitiluna/twinsqla, github.com/kajj8808/gostudy,num_dependents_deps.dev:0 @@ -689699,6 +702321,7 @@ github.com/kakkarja/TeleTVG, github.com/kakkarott/blas-react-native,num_dependents_deps.dev:0 github.com/kakke18/isucon7-qualify,num_dependents_deps.dev:0 github.com/kakkireniv/ngx-mask, +github.com/kakkoyun/action-jsonnetfmt, github.com/kakkoyun/json-logic-js,num_dependents_deps.dev:0 github.com/kakkoyun/thanos,num_dependents_deps.dev:0 github.com/kakkun61/elm-license-checker,num_dependents_deps.dev:0 @@ -689978,6 +702601,8 @@ github.com/kalfian/savetagram,num_dependents_deps.dev:0 github.com/kalfonso/proglog,num_dependents_deps.dev:0 github.com/kalgan/vue-cli-plugin-bundle-sw,num_dependents_deps.dev:0 github.com/kalgurn/kubeconfig-manager,num_dependents_deps.dev:0 +github.com/kalgurn/merge-pr-action, +github.com/kalgurn/update-project-item-status, github.com/kalgynirae/slideception, github.com/kalgynirae/voidpop, github.com/kalharbi/irjs-apps,num_dependents_deps.dev:0 @@ -689991,6 +702616,8 @@ github.com/kaliSaada/react-native-kali-components,num_dependents_deps.dev:0 github.com/kaliber-scala/jira-exception-processor,num_dependents_deps.dev:0 github.com/kaliber-scala/play-s3,num_dependents_deps.dev:0 github.com/kaliber-scala/scala-mailer,num_dependents_deps.dev:0 +github.com/kaliber5/action-get-release, +github.com/kaliber5/action-update-release, github.com/kaliber5/ecsy-babylon,num_dependents_deps.dev:0 github.com/kaliber5/ember-bootstrap,"criticality_score:0.586390,num_dependents_deps.dev:6" github.com/kaliber5/ember-bootstrap-changeset-validations,num_dependents_deps.dev:0 @@ -690060,9 +702687,11 @@ github.com/kalikaneko/leap-api-schema,num_dependents_deps.dev:0 github.com/kalikaneko/pyopenlibrary, github.com/kalikaneko/snowflake-bootstrap,num_dependents_deps.dev:0 github.com/kalikaneko/ungog, +github.com/kalikiana/isotovideo-action, github.com/kalikivayi/fizzbuzz,num_dependents_deps.dev:0 github.com/kaliklipper/python-state-machine, github.com/kalilab/hippounit, +github.com/kalilistic/DalamudPluginDeploy, github.com/kalimah-apps/vue-braille,num_dependents_deps.dev:0 github.com/kalimdorjs/machinelearn-gpu,num_dependents_deps.dev:0 github.com/kalimdorjs/machinelearn-node,num_dependents_deps.dev:0 @@ -690170,6 +702799,7 @@ github.com/kalmbach/bury,num_dependents_deps.dev:4 github.com/kalmecak/go-error-logger,num_dependents_deps.dev:0 github.com/kalmecak/moment-business-days,num_dependents_deps.dev:22 github.com/kalmhq/kalm,criticality_score:0.394860 +github.com/kalmhq/kalm-deploy-action, github.com/kalmi/pb,num_dependents_deps.dev:0 github.com/kalmiallc/jsf-common,num_dependents_deps.dev:0 github.com/kalmis/gollp,num_dependents_deps.dev:0 @@ -690431,6 +703061,7 @@ github.com/kamataryo/symbol-function,num_dependents_deps.dev:0 github.com/kamataryo/utf8fy,num_dependents_deps.dev:0 github.com/kamataryo/vargraph,num_dependents_deps.dev:0 github.com/kamataryo/w3diff,num_dependents_deps.dev:0 +github.com/kamataryo/whoami-action, github.com/kamataryo/wwwdiff,num_dependents_deps.dev:0 github.com/kamataryo/xcm,num_dependents_deps.dev:0 github.com/kamatera/docker-machine-driver-kamatera,num_dependents_deps.dev:0 @@ -690510,6 +703141,7 @@ github.com/kameshRavi/react-taggle-input,num_dependents_deps.dev:0 github.com/kameshchauhan/openfaas-dependency,num_dependents_deps.dev:0 github.com/kameshk61/kamesh-custom-db,num_dependents_deps.dev:0 github.com/kameshpv/censorify,num_dependents_deps.dev:0 +github.com/kameshsampath/antora-site-action, github.com/kameshsampath/civo-to-local,num_dependents_deps.dev:0 github.com/kameshsampath/gloo-fruits-api,num_dependents_deps.dev:0 github.com/kameshsampath/gloo-jsongenerator,num_dependents_deps.dev:0 @@ -690546,6 +703178,7 @@ github.com/kamiazya/ngx-speech-recognition,num_dependents_deps.dev:0 github.com/kamiazya/ngx-speech-synthesis,num_dependents_deps.dev:0 github.com/kamiazya/py-mailcatcher, github.com/kamiazya/rediagram,num_dependents_deps.dev:12 +github.com/kamiazya/setup-graphviz, github.com/kamiazya/ts-graphviz,num_dependents_deps.dev:0 github.com/kamiazya/typedoc-plugin-mermaid,num_dependents_deps.dev:0 github.com/kamiazya/typedoc-plugin-nomnoml,num_dependents_deps.dev:0 @@ -690643,6 +703276,7 @@ github.com/kamil16345/dogspedia,num_dependents_deps.dev:0 github.com/kamil16345/mathquiz,num_dependents_deps.dev:0 github.com/kamil1b/git-taxbreak, github.com/kamil4521/sleep-async,num_dependents_deps.dev:2 +github.com/kamil467/Release-Summary-GitHub-Action, github.com/kamil5b/gograph,num_dependents_deps.dev:0 github.com/kamil5b/golinkedlist,num_dependents_deps.dev:0 github.com/kamil5b/knngo,num_dependents_deps.dev:0 @@ -690661,6 +703295,8 @@ github.com/kamilchm/echo,num_dependents_deps.dev:0 github.com/kamilchm/go2nix,num_dependents_deps.dev:0 github.com/kamilchm/hopper,num_dependents_deps.dev:0 github.com/kamilchm/swagger-to-graphql,num_dependents_deps.dev:0 +github.com/kamilchodola/wait-for-workflow-action, +github.com/kamilchulakov/helios-security-action, github.com/kamilglod/aurelia-redux,num_dependents_deps.dev:0 github.com/kamilglod/i18n-webpack-plugin,num_dependents_deps.dev:0 github.com/kamilglod/i18next-loader,num_dependents_deps.dev:0 @@ -690736,6 +703372,7 @@ github.com/kamilsk/algobox,num_dependents_deps.dev:0 github.com/kamilsk/breaker,num_dependents_deps.dev:0 github.com/kamilsk/golangci-lint,num_dependents_deps.dev:0 github.com/kamilsk/retry,criticality_score:0.326840 +github.com/kamilswiec/external-svc-monitor, github.com/kamilswiec/promadg,num_dependents_deps.dev:0 github.com/kamilwaheed/hapi-boom-codes,num_dependents_deps.dev:0 github.com/kamilwaheed/url-signer,num_dependents_deps.dev:0 @@ -690750,6 +703387,7 @@ github.com/kamilyrb/bookstore_utils-go,num_dependents_deps.dev:0 github.com/kamilziajka/caller-source-location, github.com/kamilziajka/react-render-static,num_dependents_deps.dev:0 github.com/kamimura/py-sion, +github.com/kamina7/docker-swarm-ssh-deploy-action, github.com/kaminaly/auto-viewport,num_dependents_deps.dev:0 github.com/kaminaly/create-react-app,num_dependents_deps.dev:0 github.com/kaminaly/grunt-exports2json,num_dependents_deps.dev:0 @@ -690889,6 +703527,7 @@ github.com/kamranahmedse/developer-roadmap,criticality_score:0.526450 github.com/kamranahmedse/driver.js,"criticality_score:0.412180,num_dependents_deps.dev:102" github.com/kamranahmedse/express-api-problem, github.com/kamranahmedse/git-standup,"criticality_score:0.420580,num_dependents_deps.dev:0" +github.com/kamranahmedse/github-pages-blog-action, github.com/kamranahmedse/githunt,criticality_score:0.307690 github.com/kamranahmedse/itomate, github.com/kamranahmedse/jquery-toast-plugin,num_dependents_deps.dev:2 @@ -690902,6 +703541,7 @@ github.com/kamranayub/cypress-browser-permissions,num_dependents_deps.dev:0 github.com/kamranayub/gatsby-remark-typedoc-symbol-links,num_dependents_deps.dev:0 github.com/kamranayub/gatsby-source-typedoc,num_dependents_deps.dev:0 github.com/kamranayub/remark-typedoc-symbol-links,num_dependents_deps.dev:0 +github.com/kamranayub/wait-for-netlify-action, github.com/kamrancode/react-native-material-textinput,num_dependents_deps.dev:0 github.com/kamrik/cordova-api-example,num_dependents_deps.dev:0 github.com/kamrinkennedy/lodown,num_dependents_deps.dev:0 @@ -690912,6 +703552,7 @@ github.com/kamry-bowman/cadence-big-calendar,num_dependents_deps.dev:0 github.com/kamry-bowman/kam-es-lint,num_dependents_deps.dev:0 github.com/kamry-bowman/react-big-calendar,num_dependents_deps.dev:0 github.com/kamry-bowman/useAutoScroll,num_dependents_deps.dev:0 +github.com/kams-mash/gh-secrets-scanner-action, github.com/kamsar/generator-habitat, github.com/kamshak/angular2-jwt, github.com/kamsteegsoftware/react-native-alternate-icons,num_dependents_deps.dev:0 @@ -690923,6 +703564,7 @@ github.com/kamui/nanoc-fuel,num_dependents_deps.dev:0 github.com/kamui/rack-accept_headers,num_dependents_deps.dev:0 github.com/kamui/retriable,"criticality_score:0.408230,num_dependents_deps.dev:3114" github.com/kamuiroeru/sekigae, +github.com/kamuridesu/badges-action-markdown, github.com/kamushadenes/cefevent, github.com/kamushadenes/graphql,num_dependents_deps.dev:0 github.com/kamushadenes/tracker17, @@ -690962,6 +703604,7 @@ github.com/kana-sama/readmanga,num_dependents_deps.dev:0 github.com/kana/vim-flavor,num_dependents_deps.dev:0 github.com/kanade2010/tools,num_dependents_deps.dev:0 github.com/kanadeko/Kuro,num_dependents_deps.dev:0 +github.com/kanadgupta/glitch-sync, github.com/kanai-yuki/clean_archi_goapi,num_dependents_deps.dev:0 github.com/kanai-yuki/converter,num_dependents_deps.dev:0 github.com/kanai-yuki/goapp_init,num_dependents_deps.dev:0 @@ -691068,6 +703711,7 @@ github.com/kane-thornwyrd/kmonads,num_dependents_deps.dev:0 github.com/kane-thornwyrd/kpr,num_dependents_deps.dev:0 github.com/kane-thornwyrd/monads,num_dependents_deps.dev:0 github.com/kanecrow/pokemonappgo,num_dependents_deps.dev:0 +github.com/kaneda-fr/dokku-deploy-github-action, github.com/kaneda/hubot-slothme,num_dependents_deps.dev:0 github.com/kanedatc/roll,num_dependents_deps.dev:0 github.com/kanedo/checkout_code, @@ -691149,7 +703793,11 @@ github.com/kang36897/table-on-canvas,num_dependents_deps.dev:0 github.com/kang3q/typescript-lib-skeleton,num_dependents_deps.dev:0 github.com/kanga333/books,num_dependents_deps.dev:0 github.com/kanga333/cepan, +github.com/kanga333/comment-hider, +github.com/kanga333/config-value-exporter, +github.com/kanga333/json-array-builder, github.com/kanga333/misc,num_dependents_deps.dev:0 +github.com/kanga333/variable-mapper, github.com/kangabru/prefix-parser,num_dependents_deps.dev:0 github.com/kangaechu/goradiru,num_dependents_deps.dev:0 github.com/kangaechu/radiorenamer,num_dependents_deps.dev:0 @@ -691232,6 +703880,7 @@ github.com/kangkang520/yizhi-html-parser,num_dependents_deps.dev:0 github.com/kangkang520/yizhi-jsx,num_dependents_deps.dev:0 github.com/kangkang520/yizhi-types,num_dependents_deps.dev:0 github.com/kangkang66/go-lru,num_dependents_deps.dev:0 +github.com/kangketikonlen/base-tagging, github.com/kangkk/kangkk-iframe, github.com/kangkona/wuzz,num_dependents_deps.dev:0 github.com/kangks/cdk-constructs,num_dependents_deps.dev:0 @@ -691361,6 +704010,7 @@ github.com/kannancet/act_as_buddy,num_dependents_deps.dev:0 github.com/kannangce/j-s-exp,num_dependents_deps.dev:0 github.com/kannanloganathan/grunt-run-java,num_dependents_deps.dev:0 github.com/kannansel/goebpf,num_dependents_deps.dev:0 +github.com/kannansuresh/jekyll-blog-archive-workflow, github.com/kannarao/simple-cyberplat, github.com/kannibalox/PTPAPI, github.com/kannibalox/PtpUploader, @@ -691462,6 +704112,7 @@ github.com/kant2002/gulp-tsc, github.com/kant2002/ko-swipe,num_dependents_deps.dev:0 github.com/kant2002/node-rfidreader,num_dependents_deps.dev:0 github.com/kantai/ledgerjs,num_dependents_deps.dev:0 +github.com/kantakumari/custom-actions-2, github.com/kantal/thebigselector, github.com/kantanand/angular-multi-module,num_dependents_deps.dev:0 github.com/kantaraviteja/ds-in-js,num_dependents_deps.dev:0 @@ -691533,6 +704184,7 @@ github.com/kanweiwei/slate,num_dependents_deps.dev:2 github.com/kanweiwei/slatets,num_dependents_deps.dev:2 github.com/kanweiwei/swagger-codegen-next,num_dependents_deps.dev:0 github.com/kanwhoa/gulp-stream-limiter,num_dependents_deps.dev:0 +github.com/kanxiaoxi/podcast-generator, github.com/kanyesthaker/glo,num_dependents_deps.dev:0 github.com/kanyuan/pre-commit-eslint,num_dependents_deps.dev:0 github.com/kanyuanzhi/klearn, @@ -691540,6 +704192,7 @@ github.com/kanyukaaa/gitbook-plugin-adhoc,num_dependents_deps.dev:0 github.com/kanzanio/kanzan,num_dependents_deps.dev:0 github.com/kanzelm3/angular-video-bg,num_dependents_deps.dev:0 github.com/kanzetu/go-utils,num_dependents_deps.dev:0 +github.com/kanzihuang/mirror-release-action, github.com/kanzitelli/cli-rn,num_dependents_deps.dev:0 github.com/kanzitelli/react-native-photo-library-assets,num_dependents_deps.dev:0 github.com/kanziw/eximbay,num_dependents_deps.dev:0 @@ -691668,6 +704321,7 @@ github.com/kaoslabsinc/django-io, github.com/kaoslabsinc/django-serve-spa, github.com/kaosrq/homebridge-filesensor,num_dependents_deps.dev:0 github.com/kaou1610/tfs-03,num_dependents_deps.dev:0 +github.com/kaovilai/fork-sync, github.com/kaovilai/noobaa-operator,num_dependents_deps.dev:0 github.com/kaoyaya/fe-eolinker-api-generator, github.com/kaoyaya/fe-utils,num_dependents_deps.dev:0 @@ -691835,7 +704489,15 @@ github.com/kapoorlab/vollseg, github.com/kapoorlabs/kiara,num_dependents_deps.dev:0 github.com/kapoq/nyan,num_dependents_deps.dev:0 github.com/kaporzhu/afinder, +github.com/kapost/ansible-lint, +github.com/kapost/kap-docker, +github.com/kapost/kap-gh-team, +github.com/kapost/kap-helm, +github.com/kapost/kubectl-aws-action, github.com/kapost/react-component-slider,num_dependents_deps.dev:0 +github.com/kapost/slack-notification, +github.com/kapost/terraform-linter, +github.com/kapost/yaml-linter, github.com/kapot65/python-df-parser, github.com/kapouer/bundledom,num_dependents_deps.dev:0 github.com/kapouer/cache-debounce,num_dependents_deps.dev:0 @@ -692059,6 +704721,8 @@ github.com/karamata/react-native-edinnova-realm-path,num_dependents_deps.dev:0 github.com/karambafe/match-media-breakpoint,num_dependents_deps.dev:0 github.com/karambafe/vue-tabs-with-active-line, github.com/karambir252/findcrashedcodedeveloper, +github.com/karamchandanid/sfdc-credentials-auth, +github.com/karamchandanid/sfdx-setup, github.com/karamel29/go-courses,num_dependents_deps.dev:0 github.com/karampok/i3-bar,num_dependents_deps.dev:0 github.com/karan-avenueastaffing/hello-world,num_dependents_deps.dev:0 @@ -692081,12 +704745,16 @@ github.com/karan95/reactx-select,num_dependents_deps.dev:0 github.com/karanOO89/karan_LHL, github.com/karanba/MetinAnaliz, github.com/karanbirsingh7/go-greenlight,num_dependents_deps.dev:0 +github.com/karancode/funghaction, +github.com/karancode/kustomize-github-action, +github.com/karancode/yamllint-github-action, github.com/karandesai-96/yolog, github.com/karandit/terramake,num_dependents_deps.dev:0 github.com/karandpr/cordova-plugin-android-rootbeer,num_dependents_deps.dev:0 github.com/karandpr/cordova-plugin-android-safetynet,num_dependents_deps.dev:0 github.com/karangejo/marine-ui-react,num_dependents_deps.dev:0 github.com/karangejo/moonphases-react,num_dependents_deps.dev:0 +github.com/karangejo/sobelow-umbrella-action, github.com/karangoe/fractalpaths, github.com/karangoyal7/TOPSIS-Karan-101803135, github.com/karanhudia/angular-dropdown-component,num_dependents_deps.dev:0 @@ -692210,6 +704878,7 @@ github.com/karcass-ts/container,num_dependents_deps.dev:4 github.com/karcass-ts/migration-commands,num_dependents_deps.dev:0 github.com/karcass-ts/template-reducer,num_dependents_deps.dev:0 github.com/karcheba1/vcfempy, +github.com/karcherm/action-install-jw, github.com/karclouds/Angular5-Toaster,num_dependents_deps.dev:0 github.com/karczews/RxBroadcastReceiver,num_dependents_deps.dev:0 github.com/karczews/UtilsVerifier,num_dependents_deps.dev:0 @@ -692299,6 +704968,7 @@ github.com/kareemkibue/k2-react-translate,num_dependents_deps.dev:0 github.com/kareemkibue/k2-react-utils,num_dependents_deps.dev:0 github.com/kareemkibue/kk-react-utils,num_dependents_deps.dev:0 github.com/kareemkibue/media-queries,num_dependents_deps.dev:0 +github.com/kareemradwan/actions.serverless-with-python-requirements-signle-function, github.com/kareemsaf/BUILTKILLER, github.com/kareemsaf/Speak, github.com/kareemsaf/dgn2, @@ -692673,6 +705343,7 @@ github.com/karlbalagtey/revealLoader,num_dependents_deps.dev:0 github.com/karlbalagtey/touchLoader,num_dependents_deps.dev:0 github.com/karlbateman/nero,num_dependents_deps.dev:0 github.com/karlbateman/trident,num_dependents_deps.dev:0 +github.com/karlbeecken/co2-twitter-bio, github.com/karlbeecken/icedata,num_dependents_deps.dev:0 github.com/karlbeecken/wa-me,num_dependents_deps.dev:0 github.com/karlbeecken/wa-me-generator, @@ -692689,6 +705360,7 @@ github.com/karlch/vimiv-qt, github.com/karlcoelho/dubai-npm,num_dependents_deps.dev:0 github.com/karlcoelho/justyo,num_dependents_deps.dev:0 github.com/karlcow/shoki, +github.com/karlderkaefer/github-action-checkbox-trigger, github.com/karlderkaefer/go-template-project,num_dependents_deps.dev:0 github.com/karldoenitz/karlooper, github.com/karldoenitz/tigo,num_dependents_deps.dev:0 @@ -692773,6 +705445,7 @@ github.com/karlll/gerrit-label,num_dependents_deps.dev:0 github.com/karlll/siffror.js,num_dependents_deps.dev:0 github.com/karlll/str2hash,num_dependents_deps.dev:0 github.com/karlludwigweise/fetch,num_dependents_deps.dev:0 +github.com/karlludwigweise/git-subtree, github.com/karlludwigweise/jwt,num_dependents_deps.dev:0 github.com/karlludwigweise/localstorage,num_dependents_deps.dev:0 github.com/karlludwigweise/node-database-migration,num_dependents_deps.dev:0 @@ -692815,6 +705488,8 @@ github.com/karloespiritu/random-prop-obj,num_dependents_deps.dev:0 github.com/karloespiritu/random-uniq,num_dependents_deps.dev:2 github.com/karloespiritu/random-uniq-array,num_dependents_deps.dev:0 github.com/karloku/mongoengine-embedded, +github.com/karlonovak/amazon-ecr-login, +github.com/karlonovak/configure-aws-credentials, github.com/karlos1337/arxios,num_dependents_deps.dev:0 github.com/karlos545/nuxt-contentful,num_dependents_deps.dev:0 github.com/karloscarweber/Quickbase-Javascript-SDK,num_dependents_deps.dev:0 @@ -693079,6 +705754,8 @@ github.com/karnith/sails-generate-angular-gulp,num_dependents_deps.dev:0 github.com/karnith/sails-generate-angular-gws,num_dependents_deps.dev:0 github.com/karnith/sails-generate-bower-gulp,num_dependents_deps.dev:0 github.com/karniv00l/mlg-converter,num_dependents_deps.dev:0 +github.com/karniv00l/platformio-remote-test-action, +github.com/karniv00l/platformio-run-action, github.com/karno/reqwest-oauth1,num_dependents_deps.dev:0 github.com/karnowski/pairhost,num_dependents_deps.dev:0 github.com/karnprem90/moduledepe,num_dependents_deps.dev:0 @@ -693091,6 +705768,7 @@ github.com/karnthis/purify-int,num_dependents_deps.dev:0 github.com/karnwatcharasupat/latte, github.com/karo-dc/nativescript-cryptography,num_dependents_deps.dev:0 github.com/karo-io/satsuma,num_dependents_deps.dev:0 +github.com/karol-brejna-i/webpage-screenshot-action, github.com/karol-f/vue-custom-element,num_dependents_deps.dev:66 github.com/karol-gruszczyk/graphene-extenstions, github.com/karol-kokoszka/qoslimiter,num_dependents_deps.dev:0 @@ -693376,6 +706054,7 @@ github.com/kartik4949/deepops, github.com/kartikagarwal1993/cordova-plugin-packageinfo,num_dependents_deps.dev:0 github.com/kartikarora8/Topsis-Kartik-101917070, github.com/kartikayyer/Clement, +github.com/kartikcho/octorelease-couscous, github.com/kartikey406/testingpythonsdk, github.com/kartikeytiwari37/Toposis, github.com/kartikgill/taco-box, @@ -693474,6 +706153,9 @@ github.com/kartverket/Geonorge.SharedPartials,num_dependents_deps.dev:0 github.com/kartverket/Geonorge.WebComponents,num_dependents_deps.dev:0 github.com/kartverket/felleskomponenter,num_dependents_deps.dev:0 github.com/kartverket/midgard, +github.com/kartverket/nacho-skip, +github.com/kartverket/pharos, +github.com/kartverket/skip-security-scans, github.com/kartwutian/b-helper,num_dependents_deps.dev:0 github.com/karudedios/FunctionalProgrammingUtilities,num_dependents_deps.dev:0 github.com/karudedios/Querier.js,num_dependents_deps.dev:0 @@ -693494,6 +706176,7 @@ github.com/karupanerura/logz-elasticsearch,num_dependents_deps.dev:0 github.com/karuppiah7890/cayaml,num_dependents_deps.dev:0 github.com/karuppiah7890/container-world,num_dependents_deps.dev:0 github.com/karuppiah7890/easy-pdf-merge,num_dependents_deps.dev:4 +github.com/karuppiah7890/ec2-github-runner, github.com/karuppiah7890/grpc-demo,num_dependents_deps.dev:0 github.com/karuppiah7890/helm-schema-gen,num_dependents_deps.dev:0 github.com/karuppiah7890/mozaik-ext-githubcontributions,num_dependents_deps.dev:0 @@ -693650,6 +706333,7 @@ github.com/kashy750/RecoSystem, github.com/kashy750/python_package, github.com/kashyapchhatbar/CLASHChimeras, github.com/kashyaprahul94/go-boilerplate,num_dependents_deps.dev:0 +github.com/kasi1975/kasicontaineraction, github.com/kasia-website/duration,num_dependents_deps.dev:0 github.com/kasimsiddiqui/Rest-Friend,num_dependents_deps.dev:0 github.com/kasimsiddiqui/greet-name,num_dependents_deps.dev:0 @@ -693673,6 +706357,9 @@ github.com/kaskadi/express-kaskadi-verify,num_dependents_deps.dev:0 github.com/kaskadi/kaskadi-cli,num_dependents_deps.dev:0 github.com/kaskadi/mws-client,num_dependents_deps.dev:0 github.com/kaskar2008/BaseModelTS,num_dependents_deps.dev:0 +github.com/kaskar2008/action-auto-bump-version, +github.com/kaskar2008/action-pr-description-replace, +github.com/kaskar2008/action-release-to-telegram, github.com/kaskar2008/js-simple-events,num_dependents_deps.dev:0 github.com/kaskar2008/js-step-system,num_dependents_deps.dev:0 github.com/kaskar2008/node-tgbot-sdk,num_dependents_deps.dev:0 @@ -693733,6 +706420,8 @@ github.com/kasperhesthaven/gulp-dart-scss,num_dependents_deps.dev:0 github.com/kasperhesthaven/gulp-html-minimizer,num_dependents_deps.dev:0 github.com/kasperhesthaven/gulp-ttf-to-woff,num_dependents_deps.dev:0 github.com/kasperhesthaven/gulp-ttf-to-woff2,num_dependents_deps.dev:0 +github.com/kasperhesthaven/setup-editorconfig-checker, +github.com/kasperhesthaven/setup-resharper-clt, github.com/kasperisager/babel-plugin-transform-inline-hjson,num_dependents_deps.dev:0 github.com/kasperisager/babel-plugin-transform-inline-html,num_dependents_deps.dev:0 github.com/kasperisager/babel-plugin-transform-inline-json,num_dependents_deps.dev:0 @@ -693820,6 +706509,7 @@ github.com/kasselTrankos/copyfilemon-brunch, github.com/kasselTrankos/esnode,num_dependents_deps.dev:0 github.com/kasselTrankos/funcpine,num_dependents_deps.dev:0 github.com/kassenaerztliche-bundesvereinigung/mioparser, +github.com/kassett/kassett-actions, github.com/kassi-tech/thread-bus,num_dependents_deps.dev:0 github.com/kassio/neoterm,criticality_score:0.434840 github.com/kassiomaia/rollup-wrapper, @@ -693835,6 +706525,7 @@ github.com/kaste/mockito-python, github.com/kaste/ndb-x, github.com/kaste/pytest-beds, github.com/kaste/pytest-mockito, +github.com/kaste/upgrade-messages-test-action, github.com/kastenhq/kubestr,num_dependents_deps.dev:0 github.com/kastenhq/stow,num_dependents_deps.dev:0 github.com/kastenpotential/hello-go,num_dependents_deps.dev:0 @@ -693860,6 +706551,7 @@ github.com/kastraio/koa-next-app,num_dependents_deps.dev:0 github.com/kastriotcunaku/ngx-kc-notification,num_dependents_deps.dev:0 github.com/kastriotcunaku/ngx-kc-selectbox,num_dependents_deps.dev:0 github.com/kastsiushkin/ui-kit,num_dependents_deps.dev:0 +github.com/kasuboski/dev-to-stats-action, github.com/kasuboski/resume,num_dependents_deps.dev:0 github.com/kasuganosora/node-rssparser2,num_dependents_deps.dev:0 github.com/kasuganosora/nodeBtcchinaapi,num_dependents_deps.dev:0 @@ -694008,8 +706700,10 @@ github.com/katallaxie/serverless-dart,num_dependents_deps.dev:0 github.com/katallaxie/vue-cli-plugin-github-amplify,num_dependents_deps.dev:0 github.com/katalog/study,num_dependents_deps.dev:0 github.com/katalogos/csi-based-tool-provider,num_dependents_deps.dev:0 +github.com/katalon-studio/katalon-studio-github-action, github.com/katalon-studio/katalon-studio-platform,num_dependents_deps.dev:0 github.com/katalon-studio/katalon-wrapper,num_dependents_deps.dev:0 +github.com/katalon-studio/report-uploader, github.com/katalon-studio/testops-api-js,num_dependents_deps.dev:22 github.com/katalon-studio/testops-commons-java,num_dependents_deps.dev:0 github.com/katalon-studio/testops-commons-python, @@ -694065,6 +706759,7 @@ github.com/kataw/kataw,num_dependents_deps.dev:0 github.com/katbug/dnd_simulator,num_dependents_deps.dev:0 github.com/katbyte/terrafmt,num_dependents_deps.dev:0 github.com/katcipis/jtoh,num_dependents_deps.dev:0 +github.com/katcosgrove/jfrogcli-action, github.com/katcy/react-simple-otp,num_dependents_deps.dev:0 github.com/kate-ivanova/hoodies-react-scripts,num_dependents_deps.dev:0 github.com/kate-simonova/homework-pkg, @@ -694083,12 +706778,14 @@ github.com/kategengler/ember-feature-flags,num_dependents_deps.dev:0 github.com/kategengler/ember-try,num_dependents_deps.dev:0 github.com/kategengler/ember-try-config,num_dependents_deps.dev:0 github.com/kategengler/errational,num_dependents_deps.dev:0 +github.com/kategengler/put-built-npm-package-contents-on-branch, github.com/kategengler/wicked-good-stacktracelimit,num_dependents_deps.dev:0 github.com/kateinoigakukun/JavaScriptKit,num_dependents_deps.dev:0 github.com/kateinoigakukun/wasminspect-agent.js, github.com/katelindt/project,num_dependents_deps.dev:0 github.com/katellaco/botanalytics,num_dependents_deps.dev:0 github.com/katelovescode/aphorism,num_dependents_deps.dev:0 +github.com/kateluu-comdev/githubactions, github.com/katemihalikova/asgardia-calendar-converter,num_dependents_deps.dev:0 github.com/katemihalikova/ion-datetime-picker,num_dependents_deps.dev:0 github.com/katemihalikova/ion-datetime-picker-calendar-asgardia,num_dependents_deps.dev:0 @@ -694130,6 +706827,8 @@ github.com/kates/grunt-lexicon,num_dependents_deps.dev:0 github.com/katesclau/event-store-node,num_dependents_deps.dev:0 github.com/katesclau/telegramsvc,num_dependents_deps.dev:0 github.com/katespaghetti/react-image-rotate-crop,num_dependents_deps.dev:0 +github.com/katexochen/go-action, +github.com/katexochen/go-tidy-check, github.com/kateyurasova/cypress-testrail-logs-screenshots,num_dependents_deps.dev:0 github.com/kathan/file-agent,num_dependents_deps.dev:0 github.com/kathan/file-agent-workflow,num_dependents_deps.dev:0 @@ -694235,6 +706934,7 @@ github.com/kato-im/kato-rb,num_dependents_deps.dev:0 github.com/kato/kato-client-js,num_dependents_deps.dev:0 github.com/kato/kato-node,num_dependents_deps.dev:0 github.com/kato/kato-ui,num_dependents_deps.dev:0 +github.com/katoahq/setup-katoa, github.com/katoid/angular-grid-layout, github.com/katojunya/hey,num_dependents_deps.dev:0 github.com/katomaso/django-invoice, @@ -694305,6 +707005,7 @@ github.com/katsuyoshi/iut,num_dependents_deps.dev:0 github.com/katsyoshi/itamae-plugin-recipe-plenv,num_dependents_deps.dev:0 github.com/katta/jabfinder,num_dependents_deps.dev:0 github.com/kattaris/errhand,num_dependents_deps.dev:0 +github.com/kattecon/gh-app-access-token-gen, github.com/katthjul/igata, github.com/kattni/pelican-lunr, github.com/kattrali/webkitten,num_dependents_deps.dev:0 @@ -694318,6 +707019,7 @@ github.com/kattzhang/LazyLoad,num_dependents_deps.dev:0 github.com/kattzhang/r-charts,num_dependents_deps.dev:0 github.com/katuhito/pythonpook, github.com/katunch/swisscom-sms-api,num_dependents_deps.dev:0 +github.com/katungi/Ruby-Gemer, github.com/katusiky/migrate-mongoose-custom, github.com/katutoshi/go-training,num_dependents_deps.dev:0 github.com/katuulajoel/app-bootstrap-cli,num_dependents_deps.dev:0 @@ -694348,6 +707050,7 @@ github.com/katyo/marklit,num_dependents_deps.dev:0 github.com/katyo/msdfgen-rs,num_dependents_deps.dev:0 github.com/katyo/node-rsa,num_dependents_deps.dev:0 github.com/katyo/oboe-rs,num_dependents_deps.dev:272 +github.com/katyo/publish-crates, github.com/katyo/react-bootstrap-datetime,num_dependents_deps.dev:0 github.com/katyo/snabbdom,num_dependents_deps.dev:0 github.com/katyo/snabbdom-edge,num_dependents_deps.dev:0 @@ -694390,6 +707093,7 @@ github.com/kauandotnet/nest7-access-control,num_dependents_deps.dev:0 github.com/kauanslr/MultiSelect,num_dependents_deps.dev:0 github.com/kaubry/serato_tools,num_dependents_deps.dev:0 github.com/kaueDM/formik-enhancer,num_dependents_deps.dev:0 +github.com/kaueDM/multimerge, github.com/kaueDM/quickdash,num_dependents_deps.dev:0 github.com/kaueDM/remaster,num_dependents_deps.dev:0 github.com/kaueDM/rnboost,num_dependents_deps.dev:0 @@ -694440,6 +707144,7 @@ github.com/kaushik94/southparkjs,num_dependents_deps.dev:0 github.com/kaushikappani/oddoreven,num_dependents_deps.dev:0 github.com/kaushikb11/videoflow-factory, github.com/kaushikdeb/woodenlog-practice,num_dependents_deps.dev:0 +github.com/kaushikenterpriseorg/wordpress-azure-appservice-javascript-action, github.com/kaushikgub/go-bill,num_dependents_deps.dev:0 github.com/kaushikmehta/lotide,num_dependents_deps.dev:0 github.com/kaushiknishant/go-microservices,num_dependents_deps.dev:0 @@ -694454,6 +707159,7 @@ github.com/kaushikthedeveloper/DoubleBackPress,num_dependents_deps.dev:0 github.com/kaushikthedeveloper/SquareLayout,num_dependents_deps.dev:0 github.com/kaushikwavhal/yarnworkspacetest,num_dependents_deps.dev:0 github.com/kaushnian/tetris-petris,num_dependents_deps.dev:0 +github.com/kausko/GitHits, github.com/kaustavdm/gitbook-plugin-bulk-redirect,num_dependents_deps.dev:0 github.com/kaustavha/jade-stylus-coffeescript-seed,num_dependents_deps.dev:0 github.com/kaustavha/kafka-node--light,num_dependents_deps.dev:0 @@ -694463,6 +707169,8 @@ github.com/kaustubh-sadekar/githubActions, github.com/kaustubh03/monochroma,num_dependents_deps.dev:0 github.com/kaustubh03/overhauljs,num_dependents_deps.dev:0 github.com/kaustubh03/supscroll,num_dependents_deps.dev:0 +github.com/kaustubhgupta/PortfolioFy, +github.com/kaustubhgupta/readme-projects-display, github.com/kaustubhhiware/urlparamify,num_dependents_deps.dev:0 github.com/kaustubhkhare19/ngx-group-by-alphabetes,num_dependents_deps.dev:0 github.com/kaustubhmote/pulseplot, @@ -694545,6 +707253,7 @@ github.com/kavi-saralweb/chai-jsonlogic,num_dependents_deps.dev:0 github.com/kavi-saralweb/jsonlogic, github.com/kavi4/measure-units,num_dependents_deps.dev:0 github.com/kavi4/measure-units-okei,num_dependents_deps.dev:0 +github.com/kaviadigdarshan/whatsapp-actions, github.com/kaviarjs/apollo-bundle,num_dependents_deps.dev:0 github.com/kaviarjs/apollo-security-bundle,num_dependents_deps.dev:0 github.com/kaviarjs/core,num_dependents_deps.dev:0 @@ -694664,6 +707373,7 @@ github.com/kawamataryo/8bitdo_zero2, github.com/kawamataryo/alfred-imagemin,num_dependents_deps.dev:0 github.com/kawamataryo/alfred-my-qiita-post,num_dependents_deps.dev:0 github.com/kawamataryo/alfred-zenn-posts,num_dependents_deps.dev:0 +github.com/kawamataryo/lapras-card-readme, github.com/kawamataryo/vue-word-highlighter,num_dependents_deps.dev:0 github.com/kawamou/cgo-study,num_dependents_deps.dev:0 github.com/kawamou/go-cleanarchitecture-restapi,num_dependents_deps.dev:0 @@ -694761,10 +707471,12 @@ github.com/kawasima/waitt,num_dependents_deps.dev:0 github.com/kawasin73/nested_csv, github.com/kawatapw/hanayo,num_dependents_deps.dev:0 github.com/kawatzaki/dr.amaton-run-script-os, +github.com/kawax/composer-update-action, github.com/kawaz/babel-polyfill-webpacked,num_dependents_deps.dev:0 github.com/kawaz/go-zunproxy,num_dependents_deps.dev:0 github.com/kawaz/oreore-authority,num_dependents_deps.dev:0 github.com/kawaz/unbreaker,num_dependents_deps.dev:0 +github.com/kawazoi/aws-cdk-github-actions, github.com/kawhi66/arwen,num_dependents_deps.dev:0 github.com/kawhi66/next-wrapper,num_dependents_deps.dev:0 github.com/kawhi66/npm-analyzer,num_dependents_deps.dev:0 @@ -694778,6 +707490,7 @@ github.com/kawkab-oss/stcpay-node, github.com/kawmarco/jsonsubset, github.com/kawmra/typed-j,num_dependents_deps.dev:0 github.com/kawmra/typist-json,num_dependents_deps.dev:0 +github.com/kawnkush/VansahIntegration, github.com/kawogi/rust-mcp3208,num_dependents_deps.dev:0 github.com/kawoka/dirdesc,num_dependents_deps.dev:0 github.com/kawoou/jquery-korean-pron,num_dependents_deps.dev:0 @@ -694910,6 +707623,7 @@ github.com/kayneb/babel-plugin-transform-es2015-modules-amd-if-required,num_depe github.com/kayneb/namespace-imports-loader,num_dependents_deps.dev:0 github.com/kaynenotkanye/tfvars-transform,num_dependents_deps.dev:0 github.com/kaynz/cordova-plugin-build-increment,num_dependents_deps.dev:0 +github.com/kayo-almeida/envs-to-file, github.com/kayo5994/csslint,num_dependents_deps.dev:0 github.com/kayo5994/gulp-file-sync,num_dependents_deps.dev:0 github.com/kayodebristol/create-sp-vanilla-js,num_dependents_deps.dev:0 @@ -694921,6 +707635,7 @@ github.com/kayoshi/icore-table,num_dependents_deps.dev:0 github.com/kayoshi/react-calendar-timeline,num_dependents_deps.dev:0 github.com/kaypee90/imcsv, github.com/kaypler/go-learn,num_dependents_deps.dev:0 +github.com/kayqueGovetri/action-test, github.com/kayran/jstdd,num_dependents_deps.dev:0 github.com/kayrasolutions/kayra-aem-experience-framework,num_dependents_deps.dev:0 github.com/kayrasolutions/kayra-aem-foundation,num_dependents_deps.dev:0 @@ -694994,6 +707709,7 @@ github.com/kazah96/component-kit,num_dependents_deps.dev:0 github.com/kazakami/nene-engine.ts,num_dependents_deps.dev:0 github.com/kazakova-liza/frontend-project-lvl1,num_dependents_deps.dev:0 github.com/kazakova-liza/frontend-project-lvl2,num_dependents_deps.dev:0 +github.com/kazamori/backlog-github-integration-action, github.com/kazamori/go-sql-executor,num_dependents_deps.dev:0 github.com/kazamori/graphql-schema-tree,num_dependents_deps.dev:0 github.com/kazandjiev/node-resemble.js,num_dependents_deps.dev:0 @@ -695064,7 +707780,9 @@ github.com/kazijawad/react-use-scroll-snap,num_dependents_deps.dev:0 github.com/kazikai/date-timestamp,num_dependents_deps.dev:0 github.com/kazikai/presentation,num_dependents_deps.dev:0 github.com/kazikai/xssjs,num_dependents_deps.dev:0 +github.com/kazimanzurrashid/aws-lambda-update-action, github.com/kazimanzurrashid/aws-scheduler-go,num_dependents_deps.dev:0 +github.com/kazimanzurrashid/aws-static-web-app-update-action, github.com/kazimcabitas/jquery-elevatezoom, github.com/kazimirovic/bencode, github.com/kazimsarikaya/go-zfs,num_dependents_deps.dev:0 @@ -695077,6 +707795,7 @@ github.com/kazinov/cradle-auditify,num_dependents_deps.dev:0 github.com/kazinov/csv-to-json-stream,num_dependents_deps.dev:0 github.com/kazk/xid-rs,num_dependents_deps.dev:0 github.com/kazkansouh/odd-hash, +github.com/kazkansouh/reviewdog-action-prettier, github.com/kazkansouh/wordlist-knife, github.com/kazkimatz/cld2,num_dependents_deps.dev:0 github.com/kazlauskis/Leaflet.GridRef,num_dependents_deps.dev:0 @@ -695124,6 +707843,8 @@ github.com/kazu69/hexo-tag-hatenabookmark,num_dependents_deps.dev:0 github.com/kazu69/miniflux,num_dependents_deps.dev:0 github.com/kazu69/page-data,num_dependents_deps.dev:0 github.com/kazu69/page-data-cli,num_dependents_deps.dev:0 +github.com/kazu728/recently-read-book, +github.com/kazu728/staled-notion-task-actions, github.com/kazuakiishiguro/cream-merkle-tree,num_dependents_deps.dev:0 github.com/kazuakiishiguro/libcream,num_dependents_deps.dev:0 github.com/kazuaking/iconik,num_dependents_deps.dev:0 @@ -695227,6 +707948,8 @@ github.com/kazushisan/hyperterm-horizon,num_dependents_deps.dev:0 github.com/kazusman/pytba-calendar, github.com/kazuto28/novel_dl, github.com/kazuto28/youtube-dl-server, +github.com/kazutoiris/spinalhdl-action, +github.com/kazutoiris/yosys-action, github.com/kazutoyo/html2canvas, github.com/kazuya-s/simpleforce,num_dependents_deps.dev:0 github.com/kazuya-utsunomiya/vue-swipe-menu,num_dependents_deps.dev:0 @@ -695356,6 +708079,7 @@ github.com/kbarbounakis/most-xml,num_dependents_deps.dev:0 github.com/kbarbounakis/themost,num_dependents_deps.dev:2 github.com/kbarbounakis/themost-memory,num_dependents_deps.dev:0 github.com/kbarbounakis/themost-redis,num_dependents_deps.dev:0 +github.com/kbarendrecht/deptrac-baseline-progress-action, github.com/kbariotis/gatsby-plugin-paginate,num_dependents_deps.dev:0 github.com/kbariotis/mailgunee,num_dependents_deps.dev:0 github.com/kbariotis/throw.js,num_dependents_deps.dev:6 @@ -695374,6 +708098,7 @@ github.com/kbaseIncubator/jsonrpcbase, github.com/kbaseIncubator/kbase-ui-components,num_dependents_deps.dev:0 github.com/kbaseIncubator/kbase-ui-lib,num_dependents_deps.dev:0 github.com/kbaseIncubator/narrative-utils,num_dependents_deps.dev:0 +github.com/kbaseapps/kb_sdk_actions, github.com/kbaseincubator/kbase-css,num_dependents_deps.dev:0 github.com/kbasten/landsatmtlparser, github.com/kbatch-dev/kbatch, @@ -695492,6 +708217,11 @@ github.com/kbrandwijk/qewl,num_dependents_deps.dev:0 github.com/kbrandwijk/qewl-mock,num_dependents_deps.dev:0 github.com/kbrandwijk/react-native-vector-icons-slds,num_dependents_deps.dev:0 github.com/kbrashears5/aws-helpers-npm,num_dependents_deps.dev:0 +github.com/kbrashears5/github-action-auto-create-collabs, +github.com/kbrashears5/github-action-file-sync, +github.com/kbrashears5/github-action-release-maker, +github.com/kbrashears5/github-action-repo-settings-sync, +github.com/kbrashears5/github-action-repo-sync, github.com/kbrashears5/homebridge-schedule,num_dependents_deps.dev:0 github.com/kbrashears5/typescript-aws-apigateway-helper,num_dependents_deps.dev:0 github.com/kbrashears5/typescript-aws-cloudwatch-helper,num_dependents_deps.dev:0 @@ -695515,6 +708245,7 @@ github.com/kbravh/kbravh,num_dependents_deps.dev:0 github.com/kbravh/multi-class,num_dependents_deps.dev:0 github.com/kbravh/notion-node,num_dependents_deps.dev:0 github.com/kbravh/tweet-to-markdown,num_dependents_deps.dev:0 +github.com/kbredemeier/who_is_flakiest_gh_action, github.com/kbredies/gratopy, github.com/kbremner/grunt-dropbox,num_dependents_deps.dev:0 github.com/kbrew-dev/kbrew,num_dependents_deps.dev:0 @@ -695636,6 +708367,7 @@ github.com/kc596/node-fast-expo,num_dependents_deps.dev:0 github.com/kc596/priorityworkerpool,num_dependents_deps.dev:0 github.com/kc7bfi/wsrpc-core,num_dependents_deps.dev:0 github.com/kc7bfi/wsrpc-maven-plugin,num_dependents_deps.dev:0 +github.com/kc8/get_git_release, github.com/kc8/piawaredump1090wrapper, github.com/kc9wwh/macOSUpgrade,criticality_score:0.385130 github.com/kcNL/eslint,num_dependents_deps.dev:0 @@ -695669,6 +708401,8 @@ github.com/kccarbone/node-consolog,num_dependents_deps.dev:0 github.com/kccarbone/pi-gadgets,num_dependents_deps.dev:0 github.com/kcchy/qcloud-sdk-go,num_dependents_deps.dev:0 github.com/kccsairc/multiarow, +github.com/kceb/git-message-action, +github.com/kceb/pull-request-url-action, github.com/kcelebi/riscv-assembler, github.com/kcerdena/aws_sso, github.com/kcfe/dobux,num_dependents_deps.dev:0 @@ -695720,9 +708454,11 @@ github.com/kcharvey/satchmo-nogroth, github.com/kcharwood/homebridge-rachio-platform,num_dependents_deps.dev:0 github.com/kcharwood/homebridge-suncalc,num_dependents_deps.dev:0 github.com/kcharwood/homebridge-weather-station,num_dependents_deps.dev:0 +github.com/kchason/case-validation-action, github.com/kchawla-pi/united-states-of-browsers, github.com/kchen0x/hexo-reference,num_dependents_deps.dev:0 github.com/kchen0x/markdownlint-cli,num_dependents_deps.dev:0 +github.com/kcheriyath/csvlinter, github.com/kcherkashin/generator-shower,num_dependents_deps.dev:0 github.com/kcherkashin/gulp-fixmyjs,num_dependents_deps.dev:0 github.com/kchetan92/grunt-getsave-asyc,num_dependents_deps.dev:0 @@ -695784,9 +708520,11 @@ github.com/kcinnick/posh, github.com/kciomek/polyrun,num_dependents_deps.dev:0 github.com/kcisneros/palindrome_gem,num_dependents_deps.dev:0 github.com/kciter/Floaty,criticality_score:0.363720 +github.com/kciter/aws-ecr-action, github.com/kciter/dead-toast,num_dependents_deps.dev:0 github.com/kciter/qart.js,num_dependents_deps.dev:18 github.com/kciter/react-barcode,num_dependents_deps.dev:0 +github.com/kciter/terraform-apply-for-aws-action, github.com/kciter/vue-ime-model,num_dependents_deps.dev:0 github.com/kcivey/dc-council-lims-js,num_dependents_deps.dev:0 github.com/kcivey/dc-elected-officials,num_dependents_deps.dev:0 @@ -695799,6 +708537,7 @@ github.com/kcjervis/data,num_dependents_deps.dev:0 github.com/kcjervis/kc-calculator,num_dependents_deps.dev:0 github.com/kcjonson/indigo,num_dependents_deps.dev:0 github.com/kcjonson/react-native-cascade,num_dependents_deps.dev:0 +github.com/kcjpop/coverage-comments, github.com/kcjpop/hubot-gitter,num_dependents_deps.dev:0 github.com/kck501/go-starter,num_dependents_deps.dev:0 github.com/kckeiks/gopigeon,num_dependents_deps.dev:0 @@ -696011,7 +708750,19 @@ github.com/kddeisz/prettier-plugin-ini,num_dependents_deps.dev:6 github.com/kddeisz/prettier-plugin-xml,num_dependents_deps.dev:0 github.com/kddeisz/prettier-ruby,num_dependents_deps.dev:0 github.com/kddeisz/ripperjs,num_dependents_deps.dev:0 +github.com/kddeisz/vernacular, +github.com/kddeisz/vernacular-ast, github.com/kddi-research-wot/ito,num_dependents_deps.dev:0 +github.com/kddnewton/attribute_extras, +github.com/kddnewton/bundler-console, +github.com/kddnewton/fast_underscore, +github.com/kddnewton/hollaback, +github.com/kddnewton/humidifier, +github.com/kddnewton/minitest-keyword, +github.com/kddnewton/preval, +github.com/kddnewton/ragel-bitmap, +github.com/kddnewton/snip_snip, +github.com/kddnewton/thor-hollaback, github.com/kde15/mvsc,num_dependents_deps.dev:0 github.com/kde713/iamporter-python, github.com/kde713/jsonql-sqlalchemy, @@ -696097,6 +708848,7 @@ github.com/kdheepak/almond, github.com/kdheepak/ewspy, github.com/kdheepak/iou, github.com/kdheepak/pandasplexos, +github.com/kdheepak/panvimdoc, github.com/kdheepak/taskwarrior-tui,"criticality_score:0.326980,num_dependents_deps.dev:0" github.com/kdheepak/zip, github.com/kdheepak89/fono, @@ -696171,6 +708923,7 @@ github.com/kdorichev/joshuaproject, github.com/kdparker/JSAMF,num_dependents_deps.dev:0 github.com/kdpisda/python-pay-ccavenue, github.com/kdpross/patternmatchvsvisitor,num_dependents_deps.dev:0 +github.com/kdpuvvadi/release-info, github.com/kdrag0n/fastboot.js,num_dependents_deps.dev:0 github.com/kdrag0n/pyrobud, github.com/kdrakon/scala-aws-params-reader,num_dependents_deps.dev:0 @@ -696196,6 +708949,9 @@ github.com/kdt0928/go-study-system-programming,num_dependents_deps.dev:0 github.com/kdthanvi/pkgx,num_dependents_deps.dev:0 github.com/kdu-insight-centre-nuig/textcat,num_dependents_deps.dev:0 github.com/kdubb/miami-vice,num_dependents_deps.dev:0 +github.com/kdubroff/gitflow_release_action, +github.com/kdubroff/merge_feature_branch, +github.com/kdubroff/pr_notify, github.com/kdudkov/goatak,num_dependents_deps.dev:0 github.com/kduffie/braid-server,num_dependents_deps.dev:0 github.com/kdunee/pyembeddedfhir, @@ -696254,6 +709010,7 @@ github.com/ke-zhang-rd/followed, github.com/ke-zhang-rd/inherit, github.com/ke2low/lotide,num_dependents_deps.dev:0 github.com/keLearnWriteHuangBook/JS-editor,num_dependents_deps.dev:0 +github.com/keabarnes/forgotten-issue-finder, github.com/keabraekman/summer,num_dependents_deps.dev:0 github.com/keacloud/new-call-center, github.com/keaderzyp/datetime,num_dependents_deps.dev:0 @@ -696287,6 +709044,7 @@ github.com/keans/lmnotify, github.com/keans/powerstrip, github.com/keans/pushno, github.com/keanulee/good-map,num_dependents_deps.dev:0 +github.com/keanuplayz/TravBotGH, github.com/keanuplayz/discord.js-lavalink-lib, github.com/keanuplayz/discord.js-lavalink-musicbot,num_dependents_deps.dev:0 github.com/kearabiloe/klippiesncola, @@ -696430,6 +709188,7 @@ github.com/kedoska/52-deck,num_dependents_deps.dev:0 github.com/kedoska/engine-blackjack,num_dependents_deps.dev:0 github.com/kedoska/engine-slot,num_dependents_deps.dev:0 github.com/kedoska/exp2slack,num_dependents_deps.dev:0 +github.com/kedoska/invoke-paragon-action, github.com/kedoska/resty,num_dependents_deps.dev:0 github.com/kedpter/dt_test, github.com/kedpter/face_recognition_service, @@ -696497,6 +709256,7 @@ github.com/keegancsmith/go-bindata,num_dependents_deps.dev:0 github.com/keegancsmith/presentations,num_dependents_deps.dev:0 github.com/keegancsmith/sqlf,num_dependents_deps.dev:2 github.com/keegandonley/SBIBD,num_dependents_deps.dev:0 +github.com/keegandonley/append-sha, github.com/keegandonley/generate-react-library,num_dependents_deps.dev:0 github.com/keegandonley/lsMock,num_dependents_deps.dev:0 github.com/keegandonley/postcss-reset-scrollbar,num_dependents_deps.dev:0 @@ -696625,6 +709385,7 @@ github.com/keep-network/sortition-pools,num_dependents_deps.dev:48 github.com/keep-network/tbtc,num_dependents_deps.dev:0 github.com/keep-network/tbtc.js,num_dependents_deps.dev:0 github.com/keep-observer/keepObserver,num_dependents_deps.dev:0 +github.com/keep-starknet-strange/starknet-foundry-compatibility-tests, github.com/keep-yukap/ky-cli,num_dependents_deps.dev:0 github.com/keep2zero/oneline-cli,num_dependents_deps.dev:0 github.com/keep2zero/vue-layer,num_dependents_deps.dev:0 @@ -696647,6 +709408,10 @@ github.com/keepassium/KeePassium,criticality_score:0.319580 github.com/keepassx/keepassx,criticality_score:0.332000 github.com/keepassxreboot/keepassxc,criticality_score:0.639570 github.com/keepassxreboot/keepassxc-browser,criticality_score:0.508500 +github.com/keepbang/bump-tag-version, +github.com/keepbang/issue-approval, +github.com/keepbang/nexus-version-checker, +github.com/keepbang/nexus-version-update, github.com/keepchen/simditor,num_dependents_deps.dev:0 github.com/keepchen/simple-uploader,num_dependents_deps.dev:0 github.com/keepcosmos/beanmother,num_dependents_deps.dev:0 @@ -696705,6 +709470,7 @@ github.com/keera-studios/SDL2_gfx,Google github.com/keeratita/omise-nodejs,num_dependents_deps.dev:0 github.com/keeratita/omise-react-native,num_dependents_deps.dev:0 github.com/keermanish/react-page-maker,num_dependents_deps.dev:0 +github.com/keeroll/variable-substitution, github.com/keeross/adonis-ally-spotify,num_dependents_deps.dev:0 github.com/keeross/adonis-logger-logdna,num_dependents_deps.dev:0 github.com/keeross/yandex.delivery.js,num_dependents_deps.dev:0 @@ -696778,6 +709544,8 @@ github.com/kefaise/kefaise-flux,num_dependents_deps.dev:0 github.com/kefaise/test-dome,num_dependents_deps.dev:0 github.com/kefala/handler,num_dependents_deps.dev:0 github.com/kefan-lin/7days-golang,num_dependents_deps.dev:0 +github.com/kefasjw/lcov-pull-request-report, +github.com/kefasjw/redoc-cli-github-action, github.com/kefengteng/golang,num_dependents_deps.dev:0 github.com/kefir500/bluprint,num_dependents_deps.dev:0 github.com/kefir500/ghstats, @@ -696799,7 +709567,10 @@ github.com/kefniark/Fatina-Plugin-Animator, github.com/kefniark/Kaaya,num_dependents_deps.dev:0 github.com/kefniark/jil,num_dependents_deps.dev:0 github.com/kefranabg/readme-md-generator,"criticality_score:0.312130,num_dependents_deps.dev:0" +github.com/kefranabg/s3-sync-action, github.com/keftcha/ccv,num_dependents_deps.dev:0 +github.com/keg-hub/tap-build-action, +github.com/keg-hub/tap-task-action, github.com/kegaretail/react-native-emdk,num_dependents_deps.dev:0 github.com/kegaretail/react-native-rabbitmq,num_dependents_deps.dev:0 github.com/kegato/letsencrypt-inwx,num_dependents_deps.dev:0 @@ -696821,6 +709592,7 @@ github.com/kehers/passport-slack,num_dependents_deps.dev:0 github.com/kehers/paystack,num_dependents_deps.dev:0 github.com/kehindeadewusi/rpssl-go-backend,num_dependents_deps.dev:0 github.com/kehlert/ellp,num_dependents_deps.dev:0 +github.com/kehoecj/validate-configs-action, github.com/kehoffman3/astrodust, github.com/kehonng/xxojserver,num_dependents_deps.dev:0 github.com/kehr/upcloud, @@ -697047,6 +709819,7 @@ github.com/keindev/string-lookup-manager,num_dependents_deps.dev:0 github.com/keindev/tasktree,num_dependents_deps.dev:4 github.com/keinding/golang_learn,num_dependents_deps.dev:0 github.com/keinewaste/keinewaste-sdk,num_dependents_deps.dev:0 +github.com/keingsw/spec-generator-github-actions, github.com/keinos/go-getkeypushed,num_dependents_deps.dev:0 github.com/keinos/go-items,num_dependents_deps.dev:0 github.com/keinou/fullcycle,num_dependents_deps.dev:0 @@ -697057,6 +709830,7 @@ github.com/keiohta/tf2rl, github.com/keioqu/go-learning-project,num_dependents_deps.dev:0 github.com/keiouu/Tikapot-3.0, github.com/keiqu/inka, +github.com/keiranlovett/rss-feed-to-markdown, github.com/keiranmraine/pidlock, github.com/keirantai/nodejs-fastload,num_dependents_deps.dev:0 github.com/keirbowden/LDNSCall2020Plugin,num_dependents_deps.dev:0 @@ -697134,7 +709908,10 @@ github.com/keisukeyamashita/go-httpstat,num_dependents_deps.dev:0 github.com/keisukeyamashita/go-vcl,num_dependents_deps.dev:0 github.com/keisukeyamashita/i,num_dependents_deps.dev:0 github.com/keita-higuchi/htmltoc,num_dependents_deps.dev:0 +github.com/keita-hino/get-billing-for-github-actions, +github.com/keita-hino/get-node-version-from-volta, github.com/keita-hino/sample_wasm_app,num_dependents_deps.dev:0 +github.com/keita-hino/vue-tsc-action, github.com/keitaisozaki/react-line-share-btn,num_dependents_deps.dev:0 github.com/keitakn/aws-rekognition-sandbox,num_dependents_deps.dev:0 github.com/keitakun/kooper,num_dependents_deps.dev:0 @@ -697157,6 +709934,7 @@ github.com/keitaroinc/enabler,num_dependents_deps.dev:0 github.com/keitarou/ncu-to-cw,num_dependents_deps.dev:0 github.com/keitaroyam/servalcat, github.com/keitaylor0606/golang,num_dependents_deps.dev:0 +github.com/keith-gamble/upload-to-latest-release, github.com/keith-miller/proto-converter,num_dependents_deps.dev:0 github.com/keith-turner/deriggy,num_dependents_deps.dev:0 github.com/keith-turner/ecoji,num_dependents_deps.dev:0 @@ -697176,6 +709954,7 @@ github.com/keithagy/goshoppinglist,num_dependents_deps.dev:0 github.com/keithagy/goshoppinglistcli,num_dependents_deps.dev:0 github.com/keithalpichi/lvlup, github.com/keithalpichi/polyglotpt,num_dependents_deps.dev:0 +github.com/keithalpichi/slack-action, github.com/keithalpichi/unitconverter,num_dependents_deps.dev:0 github.com/keithalucas/replica-grpc-error,num_dependents_deps.dev:0 github.com/keithamus/NobleClass,num_dependents_deps.dev:0 @@ -697253,7 +710032,9 @@ github.com/keithkml/friedrich-mini-split-remote,num_dependents_deps.dev:0 github.com/keithknox/jquery.linkit,num_dependents_deps.dev:0 github.com/keithkoslowsky/fsl-async,num_dependents_deps.dev:0 github.com/keithlayne/ansi_codes,num_dependents_deps.dev:0 +github.com/keithlayne/simplecov-reporter-action, github.com/keithlee96/object-set-js,num_dependents_deps.dev:0 +github.com/keithmattix/meshery-smi-conformance-action, github.com/keithmccall/react-native-color-lens,num_dependents_deps.dev:0 github.com/keithmccall/react-scroll-into-center,num_dependents_deps.dev:0 github.com/keithmchd48/starwars-names,num_dependents_deps.dev:0 @@ -697283,9 +710064,11 @@ github.com/keithrz/osm2geojson,num_dependents_deps.dev:0 github.com/keithrz/osm2geojsonstream, github.com/keithsharp/rsmqctl, github.com/keithstric/cloud-sockets,num_dependents_deps.dev:0 +github.com/keiththompson/detected-changes-action, github.com/keithvongola/lerna_demo,num_dependents_deps.dev:0 github.com/keithwachira/go-taskq,num_dependents_deps.dev:0 github.com/keithweaver/Sign-in-with-Blockstack-react,num_dependents_deps.dev:0 +github.com/keithweaver/aws-s3-github-action, github.com/keithweaver/finder-react,num_dependents_deps.dev:0 github.com/keithweaver/react-stripe-connect-form,num_dependents_deps.dev:0 github.com/keithweaver/weav,num_dependents_deps.dev:0 @@ -697360,7 +710143,9 @@ github.com/keke-li/log,num_dependents_deps.dev:0 github.com/keke1008/hookmap,num_dependents_deps.dev:0 github.com/keke78ui9/test_node_pkg,num_dependents_deps.dev:0 github.com/kekecone/go-kincone,num_dependents_deps.dev:0 +github.com/kekedaine/github-action-json-property-by-lodash, github.com/kekedaine/km-log4js-logstash-tcp, +github.com/kekedaine/telegram-action, github.com/kekee000/fonteditor-core,num_dependents_deps.dev:244 github.com/kekee000/fonteditor-ttf,num_dependents_deps.dev:22 github.com/kekee000/node-etpl,num_dependents_deps.dev:0 @@ -697382,6 +710167,7 @@ github.com/kekek/gobyexample,num_dependents_deps.dev:0 github.com/kekek/gommon,num_dependents_deps.dev:0 github.com/kekekekule/Differential-equations-project, github.com/kekemonbs/softserve_golang,num_dependents_deps.dev:0 +github.com/kekeniker/action-spa, github.com/kekeniker/marco,num_dependents_deps.dev:0 github.com/kekeqy/ke-db, github.com/kekeqy/ke-rtsp, @@ -697522,6 +710308,7 @@ github.com/kelindar/rand,num_dependents_deps.dev:0 github.com/kelindar/smutex,num_dependents_deps.dev:0 github.com/kelindar/talaria,num_dependents_deps.dev:0 github.com/kelindar/tile,num_dependents_deps.dev:0 +github.com/kelindi/estuary-uploader-action, github.com/kelion/cerebro-caniuse, github.com/kelion/cerebro-devdocs,num_dependents_deps.dev:0 github.com/kelion/cerebro-emoj,num_dependents_deps.dev:0 @@ -697560,6 +710347,7 @@ github.com/keller-mark/vueplotlib,num_dependents_deps.dev:0 github.com/keller-mark/window-pixi,num_dependents_deps.dev:2 github.com/keller/async-fns,num_dependents_deps.dev:0 github.com/keller0/xing,num_dependents_deps.dev:0 +github.com/keller00/spotify-tracks-archiver-action, github.com/keller00/tox-external-wheels, github.com/keller35/ssh2-sftp-client,num_dependents_deps.dev:0 github.com/keller35/taobao-openapi,num_dependents_deps.dev:0 @@ -697773,6 +710561,7 @@ github.com/kelsadita/jsdiff-cli,num_dependents_deps.dev:0 github.com/kelsayed/mqtt-ocf,num_dependents_deps.dev:0 github.com/kelseasy/web-ext-types, github.com/kelsey-griffin/lotide,num_dependents_deps.dev:0 +github.com/kelsey-sorrels/pixiebot, github.com/kelseyhightower/confd,criticality_score:0.302390 github.com/kelseyhightower/envconfig,criticality_score:0.421430 github.com/kelseyhightower/kubernetes-the-hard-way,criticality_score:0.456640 @@ -697785,6 +710574,7 @@ github.com/kelsi2/lotide,num_dependents_deps.dev:0 github.com/kelsin/kapit,num_dependents_deps.dev:0 github.com/kelsin/nodebb-plugin-sso-bnet,num_dependents_deps.dev:0 github.com/kelsin/stale-multi-cache,num_dependents_deps.dev:0 +github.com/kelson-dev/publish-nuget-fixed, github.com/kelson-martins/anchor-wordpress,num_dependents_deps.dev:0 github.com/kelson-martins/gomodoro,num_dependents_deps.dev:0 github.com/kelsoncm/django-theme-adminlte3, @@ -697869,6 +710659,7 @@ github.com/kelvinsjk/math-edu-plus,num_dependents_deps.dev:0 github.com/kelvinss/node-eval-interpolation-sandbox,num_dependents_deps.dev:0 github.com/kelvinst/yafr,num_dependents_deps.dev:0 github.com/kelvintarry/pg-howmodwork,num_dependents_deps.dev:0 +github.com/kelvintaywl/action-jsonresume-export, github.com/kelvintaywl/code_comment, github.com/kelvintaywl/jsonresume-validator, github.com/kelvintaywl/pulpfiction, @@ -697917,6 +710708,7 @@ github.com/kemar/jquery.countdown,num_dependents_deps.dev:0 github.com/kemar/namida,num_dependents_deps.dev:0 github.com/kemargrant/xdex,num_dependents_deps.dev:0 github.com/kemaswill/rocket, +github.com/kemayo/actions-recent-changelog, github.com/kemayo/hubot-deviantart,num_dependents_deps.dev:0 github.com/kemayo/hubot-phabricator,num_dependents_deps.dev:0 github.com/kemayo/maphilight,"criticality_score:0.325950,num_dependents_deps.dev:0" @@ -698173,6 +710965,15 @@ github.com/kemitix/ugiggle,num_dependents_deps.dev:12 github.com/kemitix/wiser-assertions,num_dependents_deps.dev:0 github.com/kemo14331/Python-NBS, github.com/kemo94/coffeetask,num_dependents_deps.dev:0 +github.com/kemocade/Kemocade.Actions.VRChatDataTracker, +github.com/kemocade/Kemocade.Unity.Coverage.Action, +github.com/kemocade/Kemocade.Vrc.Api.Tracker.Action, +github.com/kemocade/Kemocade.Vrc.Group.Maker.Action, +github.com/kemocade/Kemocade.Vrc.Group.Tracker.Action, +github.com/kemocade/Kemocade.Vrc.Role.Tracker.Action, +github.com/kemocade/Kemocade.Vrc.Tracker, +github.com/kemocade/Kemocade.Vrc.Tracker.Action, +github.com/kemocade/Kemocade.Vrc.World.Tracker.Action, github.com/kemokemo/furit,num_dependents_deps.dev:0 github.com/kemokemo/fyne-app,num_dependents_deps.dev:0 github.com/kemokemo/golang-sketchbook,num_dependents_deps.dev:0 @@ -698181,6 +710982,7 @@ github.com/kemokemo/miniweb,num_dependents_deps.dev:0 github.com/kemper0530/go-handson-lambda,num_dependents_deps.dev:0 github.com/kemplaw/go-study,num_dependents_deps.dev:0 github.com/kempoo/knob, +github.com/kemsakurai/action-pmd, github.com/kemsakurai/mezzanine-pubsubhubbub-pub, github.com/kemskems/cloudinary-cli-upload,num_dependents_deps.dev:0 github.com/kemsty2/projet_rh,num_dependents_deps.dev:0 @@ -698202,6 +711004,9 @@ github.com/ken-fyfe/lotide,num_dependents_deps.dev:0 github.com/ken-lee-pushpay/react-native-fullscreenvideo-player, github.com/ken-lee-pushpay/react-native-video, github.com/ken-lee-pushpay/react-native-youtube,num_dependents_deps.dev:0 +github.com/ken-matsui/misleading-name-check, +github.com/ken-matsui/notify-slack, +github.com/ken-matsui/slack-cleaner, github.com/ken-nakanishi/nftopt, github.com/ken-nakanishi/qupy, github.com/ken-oyWs2vlG/altered-base,num_dependents_deps.dev:2 @@ -698276,6 +711081,7 @@ github.com/kenangundogan/fontisto,num_dependents_deps.dev:0 github.com/kenangundogan/madosel,num_dependents_deps.dev:0 github.com/kenangunen/item-flowing,num_dependents_deps.dev:0 github.com/kenanhh/q,num_dependents_deps.dev:0 +github.com/kenaniah/diesel-cli-action, github.com/kenaniah/ruby-lexer,num_dependents_deps.dev:0 github.com/kenaniah/ruby-parser,num_dependents_deps.dev:0 github.com/kenaniah/sequel-through,num_dependents_deps.dev:0 @@ -698329,6 +711135,7 @@ github.com/kenbonilla/create-react-app,num_dependents_deps.dev:0 github.com/kenborge/grunt-angular-json,num_dependents_deps.dev:0 github.com/kenbunji/estat, github.com/kencckw/redux-saga-jwt,num_dependents_deps.dev:0 +github.com/kenchan0130/actions-system-info, github.com/kenchan0130/babel-preset-google-apps-script,num_dependents_deps.dev:0 github.com/kenchan0130/markdown-to-atlassian-wiki-markup,num_dependents_deps.dev:0 github.com/kenchan0130/markdown-to-atlassian-wiki-markup-cli,num_dependents_deps.dev:0 @@ -698508,6 +711315,7 @@ github.com/kenhkan/nohoarder,num_dependents_deps.dev:14 github.com/kenhkan/uuid-time-uri,num_dependents_deps.dev:0 github.com/kenhkelly/vegeta,num_dependents_deps.dev:0 github.com/kenhoff/gifbot,num_dependents_deps.dev:0 +github.com/kenhowardpdx/auto-merge-action, github.com/kenhowardpdx/ecommerce-ratings,num_dependents_deps.dev:0 github.com/kenhowardpdx/wiredin-node,num_dependents_deps.dev:0 github.com/kenhua-l/web-setup-npm,num_dependents_deps.dev:0 @@ -698525,6 +711333,8 @@ github.com/kenichi-odo/vue-simple-flux,num_dependents_deps.dev:0 github.com/kenichi-ogawa-1988/dry-dry,num_dependents_deps.dev:0 github.com/kenichi-ogawa-1988/serverless-python-requirements-common-copy,num_dependents_deps.dev:0 github.com/kenichi-ogawa-1988/validate_aws_sns_message, +github.com/kenichiro-kimura/action-soracom-configure-orbit, +github.com/kenichiro-kimura/action-soracom-upload-soralet, github.com/kenichishibata31/ftp,num_dependents_deps.dev:0 github.com/kenichishibata31/node-init,num_dependents_deps.dev:0 github.com/kenichishibata31/sftp,num_dependents_deps.dev:0 @@ -698552,6 +711362,8 @@ github.com/kenj4242/super-simple-node-config,num_dependents_deps.dev:0 github.com/kenjdavidson/react-native-bluetooth-classic,num_dependents_deps.dev:0 github.com/kenje4090/plot,num_dependents_deps.dev:0 github.com/kenji-getpowered/hain-plugin-google-map,num_dependents_deps.dev:0 +github.com/kenji-miyake/setup-git-cliff, +github.com/kenji-miyake/setup-sd, github.com/kenji7157/iamhappy,num_dependents_deps.dev:0 github.com/kenji7157/starting_golang,num_dependents_deps.dev:0 github.com/kenjiO/hotbits,num_dependents_deps.dev:0 @@ -698593,7 +711405,9 @@ github.com/kenjones-cisco/pm2-queue-agent,num_dependents_deps.dev:0 github.com/kenju/2djs,num_dependents_deps.dev:0 github.com/kenju/artillery-engine-grpc,num_dependents_deps.dev:0 github.com/kenju/artillery-plugin-loadbalancer,num_dependents_deps.dev:0 +github.com/kenju/github-actions-artillery, github.com/kenju/go-awssh,num_dependents_deps.dev:0 +github.com/kenju/kubernetes-action, github.com/kenju/radiosonde2terraform,num_dependents_deps.dev:0 github.com/kenju/service-mesh-patterns,num_dependents_deps.dev:0 github.com/kenju/yalogger,num_dependents_deps.dev:0 @@ -698940,6 +711754,7 @@ github.com/kennydude/fdoc.js,num_dependents_deps.dev:0 github.com/kennydude/t5,num_dependents_deps.dev:0 github.com/kennydude/tumblr-backup,num_dependents_deps.dev:0 github.com/kennydude/whattheforms,num_dependents_deps.dev:0 +github.com/kennyevil/remote-workflow-control, github.com/kennygperez/muonium,num_dependents_deps.dev:0 github.com/kennygrant/stripe-go,num_dependents_deps.dev:0 github.com/kennyh7279/go-playground,num_dependents_deps.dev:0 @@ -698962,6 +711777,7 @@ github.com/kennylajara/runup, github.com/kennylavender/next-compose-hocs,num_dependents_deps.dev:0 github.com/kennyledet/Algorithm-Implementations,criticality_score:0.426460 github.com/kennylixi/telebot,num_dependents_deps.dev:0 +github.com/kennylouie/dkr_pub, github.com/kennym/ideone-ruby-api,num_dependents_deps.dev:0 github.com/kennym/jquery-lottery,num_dependents_deps.dev:0 github.com/kennym/react-native-device-identifier, @@ -699229,6 +712045,8 @@ github.com/kenta7777/gols,num_dependents_deps.dev:0 github.com/kentaasvang/boa, github.com/kentagoto/hanspe_check,num_dependents_deps.dev:0 github.com/kentagoto/wgetool,num_dependents_deps.dev:0 +github.com/kentahikaru/github-action-vagrant--vagrantfile-from-repository, +github.com/kentakozuka/github-ai-review, github.com/kentalee/ddns,num_dependents_deps.dev:0 github.com/kentalee/errors,num_dependents_deps.dev:0 github.com/kentalee/eventbus,num_dependents_deps.dev:0 @@ -699244,10 +712062,15 @@ github.com/kentang2017/kinliuren, github.com/kentang2017/kinqimen, github.com/kentang2017/kintaiyi, github.com/kentang2017/taixuanshifa, +github.com/kentaro-m/add-an-issue-reference-action, +github.com/kentaro-m/auto-assign-action, github.com/kentaro-m/blackfriday-confluence,num_dependents_deps.dev:2 github.com/kentaro-m/md2confl,num_dependents_deps.dev:0 github.com/kentaro-m/mkissue,num_dependents_deps.dev:0 +github.com/kentaro-m/qr-code-commenter-action, github.com/kentaro-m/semantic-release-sample,num_dependents_deps.dev:0 +github.com/kentaro-m/task-completed-checker-action, +github.com/kentaro-m/waiting-for-review-labeler, github.com/kentaro0919/tokima, github.com/kentaro5/go-typescript-board,num_dependents_deps.dev:0 github.com/kentaromiura/IOC,num_dependents_deps.dev:0 @@ -699376,6 +712199,7 @@ github.com/kentik/patricia,num_dependents_deps.dev:4 github.com/kentik/pkg,num_dependents_deps.dev:0 github.com/kentik/terraform-provider-kentik-cloudexport,num_dependents_deps.dev:0 github.com/kentik/terraform-provider-kentik-synthetics,num_dependents_deps.dev:0 +github.com/kentik/update-and-push-action, github.com/kentkartmobile/react-native-closest-screen, github.com/kentliau/dot-compiler,num_dependents_deps.dev:0 github.com/kentliau/gulp-dot-precompiler,num_dependents_deps.dev:0 @@ -699502,6 +712326,8 @@ github.com/keonjeo/a1,num_dependents_deps.dev:0 github.com/keonjeo/dochub,num_dependents_deps.dev:0 github.com/keosariel/supabase-client, github.com/keotl/jivago, +github.com/keowu/RDTSC_Calculator, +github.com/keowu/spotify-ads-cracker, github.com/kep-w/ec-logstash, github.com/kep-w/py-file-updown, github.com/kep-w/python-elk-kafka, @@ -699562,6 +712388,7 @@ github.com/keplersj/starstuff-scripts,num_dependents_deps.dev:0 github.com/keplersj/starstuff-style,num_dependents_deps.dev:0 github.com/keplersj/stylelint-config-starstuff,num_dependents_deps.dev:0 github.com/keplersj/uri-path-breakdown,num_dependents_deps.dev:2 +github.com/keploy/testGPT, github.com/keplr-team/eslint-config-backend-node,num_dependents_deps.dev:0 github.com/keplr-team/go-onfleet,num_dependents_deps.dev:0 github.com/keplr-team/graphql-changes-slack-notifier,num_dependents_deps.dev:0 @@ -699745,6 +712572,7 @@ github.com/kerfed/kerfed-api-python, github.com/kergoth/beets-kergoth, github.com/kerhong/endianrw,num_dependents_deps.dev:0 github.com/kerhong/toml-loader,num_dependents_deps.dev:0 +github.com/kerhub/saved-replies, github.com/keriehr/lodown,num_dependents_deps.dev:0 github.com/kerighan/convectors, github.com/kerighan/dikt, @@ -699888,6 +712716,7 @@ github.com/keroxp/upi,num_dependents_deps.dev:0 github.com/keroxp/upk,num_dependents_deps.dev:0 github.com/kerphi/node-inotifywait,num_dependents_deps.dev:2 github.com/kerphi/node-monitor-pid,num_dependents_deps.dev:0 +github.com/kerraform/setup-tfnotify, github.com/kerrexwong/ExtendedMatTable, github.com/kerrgrah/game-of-life-v2,num_dependents_deps.dev:0 github.com/kerrgrah/game-of-life-v2-server,num_dependents_deps.dev:0 @@ -699925,6 +712754,7 @@ github.com/kerrypf/beaf-scripts,num_dependents_deps.dev:0 github.com/kerrypf/create-beaf-app,num_dependents_deps.dev:0 github.com/kerryritter/nest-rest-framework,num_dependents_deps.dev:0 github.com/kerryrodden/tiny-tfidf,num_dependents_deps.dev:0 +github.com/kerrys-learning-lab/check-repo-settings-action, github.com/kerryspchang/WITT, github.com/kerryspchang/shell-local-plugin,num_dependents_deps.dev:0 github.com/kerrytazi/jstransformer-uglify-es,num_dependents_deps.dev:0 @@ -699934,6 +712764,7 @@ github.com/kerspoon/packageSettings,num_dependents_deps.dev:0 github.com/kersten/node-dyndns-client,num_dependents_deps.dev:0 github.com/kersten/translate.me,num_dependents_deps.dev:0 github.com/kersvers/eslint-config,num_dependents_deps.dev:0 +github.com/kersvers/s3-sync-with-cloudfront-invalidation, github.com/kerti/balances,num_dependents_deps.dev:0 github.com/kertof/Twitter-Timeline-Cleaner,num_dependents_deps.dev:0 github.com/kertof/passport-openid-oauth2,num_dependents_deps.dev:0 @@ -700242,6 +713073,7 @@ github.com/kestereverts/co-express-router,num_dependents_deps.dev:0 github.com/kestereverts/duwww,num_dependents_deps.dev:0 github.com/kestereverts/maildrop-alias,num_dependents_deps.dev:0 github.com/kestereverts/tlsa,num_dependents_deps.dev:0 +github.com/kestra-io/deploy-action, github.com/kestra-io/kestra,num_dependents_deps.dev:0 github.com/kestra-io/plugin-aws,num_dependents_deps.dev:0 github.com/kestra-io/plugin-crypto,num_dependents_deps.dev:0 @@ -700256,6 +713088,7 @@ github.com/kestra-io/plugin-singer,num_dependents_deps.dev:0 github.com/kestra-io/storage-gcs,num_dependents_deps.dev:0 github.com/kestra-io/storage-minio,num_dependents_deps.dev:0 github.com/kestra-io/terraform-provider-kestra,num_dependents_deps.dev:0 +github.com/kestra-io/validate-action, github.com/kestraa/rabbit-move-messages,num_dependents_deps.dev:0 github.com/kestred/combine-proc-macro,num_dependents_deps.dev:0 github.com/kestrelcjx/foo,num_dependents_deps.dev:0 @@ -700288,6 +713121,7 @@ github.com/ketana/yarpc-go,num_dependents_deps.dev:0 github.com/ketanbhatt/node-metainspector,num_dependents_deps.dev:0 github.com/ketanbodarya/react-debounce-throttling, github.com/ketanbshah/aiohttp_google_auth_backend, +github.com/ketangit/tfsec-action, github.com/ketanip/analytics-backend,num_dependents_deps.dev:0 github.com/ketankr9/cses-cli,num_dependents_deps.dev:0 github.com/ketankr9/panel-indicator, @@ -700486,6 +713320,7 @@ github.com/kevalbhatt/react-structured-query-search,num_dependents_deps.dev:0 github.com/kevalbhatt/slush-react-webpack-hmr,num_dependents_deps.dev:0 github.com/kevalbhatt/timezone-picker,num_dependents_deps.dev:0 github.com/kevalii/thunk-dict, +github.com/kevalvavaliya/golang-labs, github.com/kevalvc/Video-Subtitle-Downloader, github.com/kevana/dkron,num_dependents_deps.dev:0 github.com/kevana/pageload-tools,num_dependents_deps.dev:0 @@ -700609,6 +713444,8 @@ github.com/kevin-coelho/ArrayStream,num_dependents_deps.dev:0 github.com/kevin-coelho/RedisClient, github.com/kevin-coelho/webp-convert,num_dependents_deps.dev:0 github.com/kevin-cuiym/go-workspace,num_dependents_deps.dev:0 +github.com/kevin-david/promote-play-release, +github.com/kevin-david/zipalign-sign-android-release, github.com/kevin-dengkai/gomodone,num_dependents_deps.dev:0 github.com/kevin-hanselman/dud,num_dependents_deps.dev:0 github.com/kevin-hao/common-tools,num_dependents_deps.dev:0 @@ -700625,6 +713462,7 @@ github.com/kevin-leptons/bsc_util,num_dependents_deps.dev:0 github.com/kevin-leptons/fx-doc, github.com/kevin-leptons/fx_doc_host,num_dependents_deps.dev:0 github.com/kevin-leptons/mediatool,num_dependents_deps.dev:0 +github.com/kevin-leptons/ssh_action, github.com/kevin-leptons/tinybird, github.com/kevin-leptons/trop_async_router,num_dependents_deps.dev:0 github.com/kevin-leptons/trop_atom_parser,num_dependents_deps.dev:0 @@ -700641,6 +713479,7 @@ github.com/kevin-leptons/trop_seed,num_dependents_deps.dev:0 github.com/kevin-lesenechal/freebj,num_dependents_deps.dev:0 github.com/kevin-lii/dropclone,num_dependents_deps.dev:0 github.com/kevin-lozoya/Platzom,num_dependents_deps.dev:0 +github.com/kevin-manatal/empty-translation-tags-detection-action, github.com/kevin-marshall/wixgem,num_dependents_deps.dev:0 github.com/kevin-montrose/Jil,criticality_score:0.341270 github.com/kevin-pirate/axios-pirate,num_dependents_deps.dev:0 @@ -700801,6 +713640,7 @@ github.com/kevinberonilla/visualforce-webegin,num_dependents_deps.dev:0 github.com/kevinberonilla/webegin,num_dependents_deps.dev:0 github.com/kevinbgreene/async-scope,num_dependents_deps.dev:0 github.com/kevinbgreene/just-maybe,num_dependents_deps.dev:0 +github.com/kevinbioj/swarm-deploy-action, github.com/kevinbirch/string-template-maven-plugin,num_dependents_deps.dev:0 github.com/kevinborras/datatables-with-go,num_dependents_deps.dev:0 github.com/kevinboudot/timaline,num_dependents_deps.dev:0 @@ -700875,6 +713715,10 @@ github.com/kevinchevallier/ng-cpf-cnpj,num_dependents_deps.dev:0 github.com/kevinchiuu/lotide, github.com/kevinchrist20/botanic-zoo-api, github.com/kevincloud/javaperks-auth-api,num_dependents_deps.dev:0 +github.com/kevincobain2000/action-cache-http, +github.com/kevincobain2000/action-camo-purge, +github.com/kevincobain2000/action-coveritup, +github.com/kevincobain2000/action-gobrew, github.com/kevincobain2000/gobrew,num_dependents_deps.dev:0 github.com/kevincobain2000/json-to-html-table,num_dependents_deps.dev:0 github.com/kevincobain2000/node-edict,num_dependents_deps.dev:0 @@ -700968,6 +713812,7 @@ github.com/kevinfiol/etto,num_dependents_deps.dev:0 github.com/kevinfiol/otto,num_dependents_deps.dev:0 github.com/kevinfiol/typeok,num_dependents_deps.dev:0 github.com/kevinfjiang/FuncNotify, +github.com/kevinfjiang/coverage-badge, github.com/kevinflou/vue-tagsinput,num_dependents_deps.dev:0 github.com/kevinforrestconnors/objdem, github.com/kevinfrei/build-tools,num_dependents_deps.dev:0 @@ -701044,6 +713889,7 @@ github.com/kevinhu/blog-theme, github.com/kevinhu/cancer_data, github.com/kevinhu/gatsby-theme-novela,num_dependents_deps.dev:0 github.com/kevinhu/many, +github.com/kevinhwang/action-github-tag-release, github.com/keviniteaal/cordova-plugin-fcm,num_dependents_deps.dev:0 github.com/kevinjacksonm/trials, github.com/kevinjalbert/git_statistics,num_dependents_deps.dev:0 @@ -701232,6 +714078,7 @@ github.com/kevinoo/cip-library,num_dependents_deps.dev:0 github.com/kevinorriss/reactjs-chatroom,num_dependents_deps.dev:0 github.com/kevinorriss/reactjs-component-calculator,num_dependents_deps.dev:0 github.com/kevinorriss/reactjs-metronome,num_dependents_deps.dev:0 +github.com/kevinpainchaud/simple-ftp-deploy-action, github.com/kevinpapst/kimai2,criticality_score:0.527260 github.com/kevinpark1217/Robinhood-1099-Parser, github.com/kevinparkerson/postmonger,num_dependents_deps.dev:0 @@ -701266,11 +714113,13 @@ github.com/kevinpollet/optional.ts,num_dependents_deps.dev:0 github.com/kevinpollet/pika-plugin-pkg-node,num_dependents_deps.dev:0 github.com/kevinpollet/seel, github.com/kevinpollet/tsconfig,num_dependents_deps.dev:0 +github.com/kevinpollet/typescript-container-action-template, github.com/kevinponce/poopy-di-scoop,num_dependents_deps.dev:0 github.com/kevinponce/poopy-di-scoop-cms,num_dependents_deps.dev:0 github.com/kevinpoot/gutenberg-autofill, github.com/kevinprotoss/js-xlsx,num_dependents_deps.dev:0 github.com/kevinpthorne/pi_shiftreg, +github.com/kevinpthorne/setup-antlr4, github.com/kevinptt0323/ptt-client,num_dependents_deps.dev:0 github.com/kevinptt0323/ptt-ws-proxy,num_dependents_deps.dev:0 github.com/kevinqqnj/cordova-template-vuetify-webpack,num_dependents_deps.dev:0 @@ -701292,6 +714141,7 @@ github.com/kevinresol/react-native-sinch-verification,num_dependents_deps.dev:0 github.com/kevinreynolds/vue-doc-preview,num_dependents_deps.dev:0 github.com/kevinrf/node-grecom,num_dependents_deps.dev:0 github.com/kevinrieger/spectre-social-login,num_dependents_deps.dev:0 +github.com/kevinrobayna/shipit, github.com/kevinroberts/city-timezones,num_dependents_deps.dev:0 github.com/kevinrodrigues/array-helper,num_dependents_deps.dev:0 github.com/kevinrodriguez-io/pigment,num_dependents_deps.dev:0 @@ -701300,6 +714150,7 @@ github.com/kevinrodriguez-io/react-native-get-google-font,num_dependents_deps.de github.com/kevinrpb/expressive-web-components,num_dependents_deps.dev:0 github.com/kevinsamyn/sportmonks-soccer,num_dependents_deps.dev:0 github.com/kevinsawade/optional_imports, +github.com/kevinsawade/python-todo-to-issue, github.com/kevinsawicki/Android_Pusher,num_dependents_deps.dev:0 github.com/kevinsawicki/coffeestack,num_dependents_deps.dev:8 github.com/kevinsawicki/electabul,num_dependents_deps.dev:0 @@ -701421,6 +714272,7 @@ github.com/kevintowe/nx-new-name,num_dependents_deps.dev:0 github.com/kevintraver/bundler-commentator,num_dependents_deps.dev:0 github.com/kevintroyt/keysmith,num_dependents_deps.dev:0 github.com/kevintuhumury/cameraplus,num_dependents_deps.dev:0 +github.com/kevintyj/prlint, github.com/kevinu2/gohangout,num_dependents_deps.dev:0 github.com/kevinu2/ngo,num_dependents_deps.dev:0 github.com/kevinu2/nset-cli,num_dependents_deps.dev:0 @@ -701558,6 +714410,7 @@ github.com/kevmannn/nm-go,num_dependents_deps.dev:0 github.com/kevmannn/shot-put,num_dependents_deps.dev:0 github.com/kevmarchant/winston-formatted,num_dependents_deps.dev:0 github.com/kevmegforest/pyenergir, +github.com/kevmo314/clang-format-action-1, github.com/kevmo314/filnux,num_dependents_deps.dev:0 github.com/kevmo314/paillier-pure,num_dependents_deps.dev:0 github.com/kevmodrome/elderjs-plugin-google-fonts,num_dependents_deps.dev:0 @@ -701579,6 +714432,7 @@ github.com/kevnz/sequelize-mock,num_dependents_deps.dev:0 github.com/kevnz/slush-test,num_dependents_deps.dev:0 github.com/kevnz/ymd,num_dependents_deps.dev:0 github.com/kevocam/ran-msn,num_dependents_deps.dev:0 +github.com/kevocde/github-action-push-to-another-repository, github.com/kevoese/react-animated-progress-bar,num_dependents_deps.dev:0 github.com/kevoese/react-component-slider,num_dependents_deps.dev:0 github.com/kevoese/react-typewriter-effect,num_dependents_deps.dev:0 @@ -701897,6 +714751,7 @@ github.com/kevva/xdg-trash,num_dependents_deps.dev:24 github.com/kevva/xdg-trashdir,num_dependents_deps.dev:1098 github.com/kevva/zipy,num_dependents_deps.dev:0 github.com/kevvor/react-native-ui-kit,num_dependents_deps.dev:0 +github.com/kevvurs/action-hugo, github.com/kevwan/evio,num_dependents_deps.dev:0 github.com/kevwil/easyhttp,num_dependents_deps.dev:0 github.com/kevwil/pipecleaner,num_dependents_deps.dev:0 @@ -701940,6 +714795,7 @@ github.com/kewbish/zoomy, github.com/kewcapital/wfs,num_dependents_deps.dev:0 github.com/kewcapital/wfs-local,num_dependents_deps.dev:0 github.com/kewde/node-shadowcash,num_dependents_deps.dev:0 +github.com/kewisch/action-web-ext, github.com/kewisch/pyamo, github.com/kewisch/sepa.js,num_dependents_deps.dev:0 github.com/kewitz/cli-espn,num_dependents_deps.dev:0 @@ -702098,6 +714954,7 @@ github.com/keydunov/gatsby-plugin-snowplow-tracker,num_dependents_deps.dev:0 github.com/keyfox/pochi,num_dependents_deps.dev:0 github.com/keyfoxth/eslint-config-x,num_dependents_deps.dev:0 github.com/keyfoxth/eslint-plugin-url,num_dependents_deps.dev:0 +github.com/keygun-development/FlowCheck, github.com/keyguru/keyhook,num_dependents_deps.dev:0 github.com/keyhash/node-cryptonight-old-hardware,num_dependents_deps.dev:0 github.com/keyhenge/plucker,num_dependents_deps.dev:0 @@ -702111,6 +714968,7 @@ github.com/keyiflerolsun/TRSehirler, github.com/keyiflerolsun/pyHES, github.com/keyiflerolsun/pyTrendyol, github.com/keyiiiii/pagination-object-generator,num_dependents_deps.dev:0 +github.com/keyiiiii/reviews-ranking, github.com/keyiis/mnode,num_dependents_deps.dev:0 github.com/keyiis/node-mm,num_dependents_deps.dev:0 github.com/keyiis/node-multi,num_dependents_deps.dev:0 @@ -702130,6 +714988,7 @@ github.com/keyko-io/web3-monitoring-schemas,num_dependents_deps.dev:0 github.com/keylase/ipaddr-linux,num_dependents_deps.dev:0 github.com/keylase/node-xkeys,num_dependents_deps.dev:0 github.com/keylase/nvidia-patch,criticality_score:0.382420 +github.com/keylightberlin/pagerduty-downtime-incident, github.com/keylightberlin/zuora-typescript-client,num_dependents_deps.dev:0 github.com/keylime/keylime, github.com/keylitestrep/projectoption1,num_dependents_deps.dev:0 @@ -702194,6 +715053,7 @@ github.com/keyserfaty/micro-require,num_dependents_deps.dev:0 github.com/keyserfaty/utils,num_dependents_deps.dev:0 github.com/keyserfaty/vrouter,num_dependents_deps.dev:0 github.com/keysh/rollup-plugin-generate-declarations,num_dependents_deps.dev:0 +github.com/keysight-eggplant/eggplant-github-action, github.com/keysight/argus, github.com/keysinandy/bangle,num_dependents_deps.dev:0 github.com/keysinandy/weri,num_dependents_deps.dev:0 @@ -702317,6 +715177,7 @@ github.com/kezoponk/IPhonePasscode.js,num_dependents_deps.dev:0 github.com/kezoponk/scroller.js,num_dependents_deps.dev:0 github.com/kezziny/node-red-flow,num_dependents_deps.dev:0 github.com/kezziny/node-red-yeelight,num_dependents_deps.dev:0 +github.com/kf-liu/date-box, github.com/kf-webb/mydev-censorify,num_dependents_deps.dev:0 github.com/kf3225/til,num_dependents_deps.dev:0 github.com/kf5/react-native-kf5sdk, @@ -702371,6 +715232,7 @@ github.com/kfdm/thehitlist, github.com/kfdm/wanikani, github.com/kfdykme/kfmd,num_dependents_deps.dev:0 github.com/kfdykme/kfmd-kotlin, +github.com/kfear1337/CodeQL, github.com/kfei/code2html, github.com/kfei/stresser, github.com/kfelter/go-service-with-grafana-example,num_dependents_deps.dev:0 @@ -702425,9 +715287,11 @@ github.com/kfiroo/materializer,num_dependents_deps.dev:0 github.com/kfiroo/node-simple-dependency-injector,num_dependents_deps.dev:0 github.com/kfiroo/react-native-cached-image,"criticality_score:0.333530,num_dependents_deps.dev:0" github.com/kfiroo/sendbird-nodejs,num_dependents_deps.dev:0 +github.com/kfirosb/aws-parameter-store-action, github.com/kfirprods/react-interactive-list,num_dependents_deps.dev:0 github.com/kfirstri/telegraf,num_dependents_deps.dev:0 github.com/kfirufk/tux-pgx-scan,num_dependents_deps.dev:0 +github.com/kfischer-okarin/download-dragonruby, github.com/kfischer-okarin/tensai,num_dependents_deps.dev:0 github.com/kfischer-okarin/tensai-pddl,num_dependents_deps.dev:0 github.com/kfish610/bs-readline,num_dependents_deps.dev:0 @@ -702553,6 +715417,7 @@ github.com/kghost/concordance-comparator,num_dependents_deps.dev:0 github.com/kght6123/homebridge-temper,num_dependents_deps.dev:0 github.com/kgi-corporation/node-ws-engine-request,num_dependents_deps.dev:0 github.com/kgibm/containerdiagoperator,num_dependents_deps.dev:0 +github.com/kgierke/portainer-stack-deployment, github.com/kgierke/scss-toolbox,num_dependents_deps.dev:0 github.com/kgilden/fullcalendar-vue,num_dependents_deps.dev:0 github.com/kgiusti/ombt, @@ -702596,6 +715461,7 @@ github.com/kgori/treeCl, github.com/kgori/tree_distance, github.com/kgoryunov/import-sort-style-eslint-typescript-hero,num_dependents_deps.dev:0 github.com/kgp004/learning-git,num_dependents_deps.dev:0 +github.com/kgpl/gh-pylint, github.com/kgrajan12/gorm,num_dependents_deps.dev:0 github.com/kgram/equation-parser,num_dependents_deps.dev:0 github.com/kgram/equation-resolver, @@ -702916,6 +715782,7 @@ github.com/kh80/sendgmail,num_dependents_deps.dev:0 github.com/kha-white/manga-ocr, github.com/kha26/mysqlnodequery,num_dependents_deps.dev:0 github.com/kha7iq/pingme,num_dependents_deps.dev:0 +github.com/kha7iq/pingme-action, github.com/kha7iq/subvars,num_dependents_deps.dev:0 github.com/khaago/editorjs-html-parser,num_dependents_deps.dev:0 github.com/khaago/lethe,num_dependents_deps.dev:0 @@ -702938,6 +715805,7 @@ github.com/khadkakrishna/acmepy, github.com/khadron/gulp-rev-stamp,num_dependents_deps.dev:0 github.com/khaeransori/next-bunyan,num_dependents_deps.dev:0 github.com/khaeransori/next-pino,num_dependents_deps.dev:0 +github.com/khaeru/coverage-gh, github.com/khaeru/genno, github.com/khaeru/py, github.com/khaeru/py-gdx, @@ -702973,6 +715841,7 @@ github.com/khaizbt/learn_golangv2,num_dependents_deps.dev:0 github.com/khaizbt/pemrogramangolangdasar,num_dependents_deps.dev:0 github.com/khaja-xcode/debug,num_dependents_deps.dev:0 github.com/khaja-xcode/helloworldtesting,num_dependents_deps.dev:0 +github.com/khajavi/generate-github-app-token, github.com/khajer/rider.js,num_dependents_deps.dev:0 github.com/khajvahmac/awilix,num_dependents_deps.dev:0 github.com/khakestani/liferay-react-runtime-localization,num_dependents_deps.dev:0 @@ -702999,6 +715868,7 @@ github.com/khaledalam/instagrammer,num_dependents_deps.dev:0 github.com/khaledalam/ml-image-searcher,num_dependents_deps.dev:0 github.com/khaledalyawad/gulp-task-loader-with-params,num_dependents_deps.dev:0 github.com/khaledalyawad/mr-json2json,num_dependents_deps.dev:0 +github.com/khaledez/configure-docker-host, github.com/khaledez/txkv,num_dependents_deps.dev:0 github.com/khaledghobashy/uraeus, github.com/khaledghobashy/uraeus-nmbd-python, @@ -703033,6 +715903,7 @@ github.com/khalidabuhakmeh/ConsoleTables,criticality_score:0.354360 github.com/khalidabuhakmeh/witch-doctor,num_dependents_deps.dev:0 github.com/khalidawwad/gosearch,num_dependents_deps.dev:0 github.com/khalidelboray/cv-aid, +github.com/khalidey/merge-checker, github.com/khalidhoffman/kdev-utils,num_dependents_deps.dev:0 github.com/khalidhoffman/php2pug,num_dependents_deps.dev:0 github.com/khalidhoffman/pug-bem-lexer,num_dependents_deps.dev:0 @@ -703140,6 +716011,7 @@ github.com/khan/wonder-blocks,num_dependents_deps.dev:4 github.com/khan019950/angular-mentions,num_dependents_deps.dev:0 github.com/khan1507017/redis-app,num_dependents_deps.dev:0 github.com/khan4019/tree-grid-directive,num_dependents_deps.dev:0 +github.com/khanabid20/keyword-release-action, github.com/khanakia/dig,num_dependents_deps.dev:0 github.com/khanakia/gowire,num_dependents_deps.dev:0 github.com/khanakia/jgo,num_dependents_deps.dev:0 @@ -703169,6 +716041,7 @@ github.com/khangmo/zenrin,num_dependents_deps.dev:0 github.com/khangta/packaging_tutorial, github.com/khangvu07031996/recover-phonenumber,num_dependents_deps.dev:0 github.com/khangvu07031996/validate_phone_number,num_dependents_deps.dev:0 +github.com/khanh-bnm/go-build-actions, github.com/khanh-nguyen-code/my-collection, github.com/khanh-nguyen-code/nn-module, github.com/khanh111/node-thebluealliance,num_dependents_deps.dev:0 @@ -703246,6 +716119,7 @@ github.com/khanrc/sconf, github.com/khanrizwan/paho.mqtt.golang,num_dependents_deps.dev:0 github.com/khanshamshad32/Carousel,num_dependents_deps.dev:0 github.com/khanshamshad32/ImageView,num_dependents_deps.dev:0 +github.com/khanshifaul/NuxtPagesAction, github.com/khantext/cvsser, github.com/khantext/naddrtools, github.com/khantzawhein/ssl-checker,num_dependents_deps.dev:0 @@ -703287,6 +716161,7 @@ github.com/kharioki/learn-storybook-design-system,num_dependents_deps.dev:0 github.com/kharioki/storybook-outline-addon,num_dependents_deps.dev:0 github.com/kharioki/use-togg,num_dependents_deps.dev:0 github.com/kharism/microservice_simple,num_dependents_deps.dev:0 +github.com/kharkevich/issue-ops-approval, github.com/kharkevich/letsencrypt-pritunl, github.com/kharkevich/letsencrypt-proxmox, github.com/kharland/go-chart,num_dependents_deps.dev:0 @@ -703354,6 +716229,7 @@ github.com/khdlr/augmax, github.com/khdoba2000/rest-api-bookstore,num_dependents_deps.dev:0 github.com/kheachang/lotide, github.com/khechoomian/golang-replacer,num_dependents_deps.dev:0 +github.com/kheeklab/ansible-builder-action, github.com/kheftel/ts-utils,num_dependents_deps.dev:0 github.com/kheidrich/ng-face-detection,num_dependents_deps.dev:0 github.com/kheina-com/kh-common, @@ -703366,6 +716242,7 @@ github.com/khellang/Scrutor,criticality_score:0.407120 github.com/khelll/feedlr,num_dependents_deps.dev:0 github.com/khelsabeck/easy_patterns, github.com/khemritolya/allfarbe,num_dependents_deps.dev:0 +github.com/khengyun/readme-scholar-activity, github.com/khenidak/london,num_dependents_deps.dev:0 github.com/khenlevy/react-here-maps,num_dependents_deps.dev:0 github.com/khenlevy/react-select-plus,num_dependents_deps.dev:0 @@ -703378,6 +716255,8 @@ github.com/khensolomon/ttfmeta,num_dependents_deps.dev:0 github.com/khepin/1,num_dependents_deps.dev:0 github.com/khepin/rr-dumpserver,num_dependents_deps.dev:0 github.com/kherP/css-style-inject, +github.com/kherP/gajira-find-issue-key, +github.com/kherP/jira-custom-field, github.com/kherP/swagger-codegen-openapi,num_dependents_deps.dev:0 github.com/kherP/swagger-to-mock,num_dependents_deps.dev:0 github.com/khera-shanu/asha, @@ -703410,6 +716289,7 @@ github.com/khevamann/CordovaAppleMusic,num_dependents_deps.dev:0 github.com/khevamann/cordova-silent-mode,num_dependents_deps.dev:0 github.com/khex/nodetask,num_dependents_deps.dev:0 github.com/khezen/bunyancat,num_dependents_deps.dev:0 +github.com/khezen/cmtpr, github.com/khezen/iotest,num_dependents_deps.dev:0 github.com/khezen/maildesk, github.com/khezen/module-discovery,num_dependents_deps.dev:0 @@ -703459,6 +716339,7 @@ github.com/khilnani/mpx, github.com/khilnani/soundclouder.js, github.com/khilnani/spidey.py, github.com/khilnani/webpagetest.py, +github.com/khimananda/slack-approval, github.com/khimaros/ambit, github.com/khimsh/is_isbn, github.com/khiner/create-react-app,num_dependents_deps.dev:0 @@ -703491,6 +716372,7 @@ github.com/khit9/JojofyJS,num_dependents_deps.dev:0 github.com/khituras/elasticsearch-mapper-preanalyzed,num_dependents_deps.dev:0 github.com/khizaruddins/automate-django, github.com/khizmax/libcds,criticality_score:0.357530 +github.com/khj809/github-action-cache-local-fs, github.com/khjabir/create-next-typescript-app,num_dependents_deps.dev:0 github.com/khjabir/leaflet-wrapper,num_dependents_deps.dev:0 github.com/khjabir/npm-test,num_dependents_deps.dev:0 @@ -703563,6 +716445,7 @@ github.com/khoazero123/localtunnel-client,num_dependents_deps.dev:0 github.com/khoazero123/localtunnel-server,num_dependents_deps.dev:0 github.com/khoazero123/node-gdrive,num_dependents_deps.dev:0 github.com/khoazero123/node-red-contrib-blynk-api,num_dependents_deps.dev:0 +github.com/khoazero123/ssh-key-action, github.com/khoda81/tankwar, github.com/khodadadi/node-json-socket-enhanced,num_dependents_deps.dev:0 github.com/khodemobin/go_web_app_mux,num_dependents_deps.dev:0 @@ -703660,6 +716543,7 @@ github.com/khorolets/borsh-py, github.com/khorolets/near-ledger-rs,num_dependents_deps.dev:0 github.com/khorolets/react-infinity-scroll,num_dependents_deps.dev:0 github.com/khorramk/building_blocks,num_dependents_deps.dev:0 +github.com/khorramk/laravel-deploy, github.com/khorsolutions/dockclam,num_dependents_deps.dev:0 github.com/khorsolutions/goclam,num_dependents_deps.dev:0 github.com/khorud/Skreep, @@ -703685,6 +716569,8 @@ github.com/khpark0203/go,num_dependents_deps.dev:0 github.com/khphillips/vuex-gitstore, github.com/khrapovs/hcl-model, github.com/khrees2412/fs-scrapper, +github.com/khrist14n/has-path-changes-action, +github.com/khrist14n/test_action_hola, github.com/khriztianmoreno/khriztianmoreno,num_dependents_deps.dev:0 github.com/khriztianmoreno/storybook-addon-raw-styled-component,num_dependents_deps.dev:0 github.com/khrlimam/mtcnn-pytorch, @@ -703781,6 +716667,7 @@ github.com/khrykin/sequelize-file,num_dependents_deps.dev:4 github.com/khrynczenko/compimg, github.com/khrystoph/goutils,num_dependents_deps.dev:0 github.com/khs000/whoami,num_dependents_deps.dev:0 +github.com/khs1994-docker/actions-setup-lnmp, github.com/khs1994-docker/lnmp,criticality_score:0.530750 github.com/khs1994-php/tencent-ai-node,num_dependents_deps.dev:0 github.com/khs1994/tencent-ai-js, @@ -703810,6 +716697,16 @@ github.com/khuey/futures-checkout,num_dependents_deps.dev:0 github.com/khuey/lazy-init,num_dependents_deps.dev:14 github.com/khufkens/daymetpy, github.com/khughitt/labnote, +github.com/khulnasoft-lab/oss-chain-bench-action, +github.com/khulnasoft-lab/tracker-action, +github.com/khulnasoft-lab/vul-issue-action, +github.com/khulnasoft-labs/awesome-linter, +github.com/khulnasoft-labs/make-sbom-action, +github.com/khulnasoft-labs/tfsecurity-action, +github.com/khulnasoft-labs/tfsecurity-pr-commenter-action, +github.com/khulnasoft-labs/tfsecurity-sarif-action, +github.com/khulnasoft/actions, +github.com/khulnasoft/govulncheck-action, github.com/khunafin/magazine,num_dependents_deps.dev:0 github.com/khundman/marve, github.com/khunfloat/pythaiterminology, @@ -703821,6 +716718,7 @@ github.com/khuram-masood/grunt-sound-spritesheet,num_dependents_deps.dev:0 github.com/khuranamanik/manik-dialogflow,num_dependents_deps.dev:0 github.com/khurramijazm/npmFileSearch,num_dependents_deps.dev:0 github.com/khurramjaved96/experiment, +github.com/khurrumqureshi/npm-package-update-sync-latest, github.com/khursani8/ujian,num_dependents_deps.dev:0 github.com/khurshid-h/go-porterstemmer,num_dependents_deps.dev:0 github.com/khusainovrm/nuxt-module-test,num_dependents_deps.dev:0 @@ -703894,6 +716792,7 @@ github.com/kiali/demos,num_dependents_deps.dev:0 github.com/kiali/k-charted,num_dependents_deps.dev:1 github.com/kiali/kiali,"criticality_score:0.643570,num_dependents_deps.dev:1" github.com/kiali/kiali-client-python, +github.com/kiali/kiali-epic-action, github.com/kiali/kiali-ui,num_dependents_deps.dev:0 github.com/kiali/swsui, github.com/kialo/mongodb_exporter,num_dependents_deps.dev:0 @@ -703908,6 +716807,7 @@ github.com/kiamco/test-package,num_dependents_deps.dev:0 github.com/kian8017/api.fwysa,num_dependents_deps.dev:0 github.com/kiancchen/go-binding,num_dependents_deps.dev:0 github.com/kiancchen/unirest-go,num_dependents_deps.dev:0 +github.com/kiancross/checkstyle-annotations-action, github.com/kiancross/pixy, github.com/kiancyc/express-function,num_dependents_deps.dev:0 github.com/kianenigma/abrio-cli, @@ -703917,6 +716817,7 @@ github.com/kianian9/masih,num_dependents_deps.dev:0 github.com/kianiomid/go-grpc-notification,num_dependents_deps.dev:0 github.com/kianjay/golang_practice,num_dependents_deps.dev:0 github.com/kianjones9/godo,num_dependents_deps.dev:0 +github.com/kiankd/python-lint-action, github.com/kianmeng/txt2ebook, github.com/kianoosh76/react-modern-calendar-datepicker, github.com/kianooshaz/bookstore-api,num_dependents_deps.dev:0 @@ -703925,6 +716826,8 @@ github.com/kianwilcox/raskell,num_dependents_deps.dev:0 github.com/kianxineki/automatic_web_generator, github.com/kiaonline/youCover,num_dependents_deps.dev:0 github.com/kiarash8/fetchomech,num_dependents_deps.dev:0 +github.com/kiarashvosough1999/build-docC-static-site, +github.com/kiarashvosough1999/docC-github-pages-deploy, github.com/kiarashws/reformact,num_dependents_deps.dev:0 github.com/kiarsy/Kafka-Gateway,num_dependents_deps.dev:0 github.com/kiasaki/eth-lang,num_dependents_deps.dev:0 @@ -703955,6 +716858,7 @@ github.com/kibalabs/core-js,num_dependents_deps.dev:18 github.com/kibalabs/core-py, github.com/kibalabs/core-react, github.com/kibalabs/everypage,num_dependents_deps.dev:0 +github.com/kibalabs/github-action-create-annotations, github.com/kibalabs/ui-react, github.com/kibeDaniel/Testing-and-Test-driven-development,num_dependents_deps.dev:0 github.com/kiberlom/spider,num_dependents_deps.dev:0 @@ -703985,6 +716889,7 @@ github.com/kibertoad/storage-fs,num_dependents_deps.dev:0 github.com/kibertoad/swagger-inputs-validator,num_dependents_deps.dev:0 github.com/kibertoad/toad-scheduler,num_dependents_deps.dev:18 github.com/kibertoad/validation-utils, +github.com/kibertoad/wait-action, github.com/kibertoad/zoology,num_dependents_deps.dev:16 github.com/kiberzauras/asset-warmer,num_dependents_deps.dev:0 github.com/kibettheophilus/golang-playground,num_dependents_deps.dev:0 @@ -704002,6 +716907,7 @@ github.com/kibumh/cppstl,num_dependents_deps.dev:0 github.com/kibumh/pcontainer,num_dependents_deps.dev:0 github.com/kic68/downdetector-exporter,num_dependents_deps.dev:0 github.com/kic68/nuki-exporter,num_dependents_deps.dev:0 +github.com/kicaj29/github-action-docker-auto-release-milestone, github.com/kican/kpanel,num_dependents_deps.dev:0 github.com/kiccer/math.js,num_dependents_deps.dev:2 github.com/kiccer/scroll-sync,num_dependents_deps.dev:0 @@ -704225,6 +717131,7 @@ github.com/kiegroup/drools,"criticality_score:0.673190,num_dependents_deps.dev:4 github.com/kiegroup/droolsjbpm-build-bootstrap,num_dependents_deps.dev:120471 github.com/kiegroup/droolsjbpm-integration,num_dependents_deps.dev:36251 github.com/kiegroup/droolsjbpm-knowledge,"Google,num_dependents_deps.dev:45545" +github.com/kiegroup/github-action-build-chain, github.com/kiegroup/jbpm,"criticality_score:0.602080,num_dependents_deps.dev:112455" github.com/kiegroup/jbpm-work-items,num_dependents_deps.dev:539 github.com/kiegroup/kie-cloud-operator,num_dependents_deps.dev:0 @@ -704247,6 +717154,7 @@ github.com/kiegroup/optaplanner,"criticality_score:0.624210,num_dependents_deps. github.com/kiegroup/optaplanner-wb,num_dependents_deps.dev:11 github.com/kiegroup/package-json-treatment-tool,num_dependents_deps.dev:0 github.com/kiegroup/rhpam-kogito-operator,num_dependents_deps.dev:0 +github.com/kielabokkie/ssh-key-and-known-hosts-action, github.com/kielan/react-menu-simple,num_dependents_deps.dev:0 github.com/kielek/scope,num_dependents_deps.dev:0 github.com/kieler/elkjs,"criticality_score:0.364390,num_dependents_deps.dev:10" @@ -704268,9 +717176,11 @@ github.com/kienerj/molecule-slide-generator, github.com/kienleholdings/prettier,num_dependents_deps.dev:0 github.com/kienleholdings/typescript,num_dependents_deps.dev:0 github.com/kienleholdings/zephyr,num_dependents_deps.dev:0 +github.com/kienlv58/appgallery-deply-action, github.com/kienlv58/react-native-zss-rich-text-editor,num_dependents_deps.dev:0 github.com/kiennguyen294/go-basic,num_dependents_deps.dev:0 github.com/kiennh/toml,num_dependents_deps.dev:0 +github.com/kiennt/actions-npm-package-remove, github.com/kiennt/tnx,num_dependents_deps.dev:0 github.com/kiennt2/node-magento2,num_dependents_deps.dev:0 github.com/kiennt2/swagger-ts-client,num_dependents_deps.dev:0 @@ -704364,6 +717274,7 @@ github.com/kig/quickgres,num_dependents_deps.dev:0 github.com/kig/rope.js,num_dependents_deps.dev:0 github.com/kiganix/eu-regions,num_dependents_deps.dev:0 github.com/kiganix/rippleeffect,num_dependents_deps.dev:0 +github.com/kigary/update-pr-from-branch-name, github.com/kigawas/ecies-ed25519-wasm,num_dependents_deps.dev:0 github.com/kigawas/eciesjs,num_dependents_deps.dev:0 github.com/kigawas/python-bip44, @@ -704433,6 +717344,7 @@ github.com/kije/gatsby-plugin-realfavicongenerator,num_dependents_deps.dev:0 github.com/kije/rustdash,num_dependents_deps.dev:0 github.com/kije/three-d-gltf-import,num_dependents_deps.dev:0 github.com/kije/webpack-fallback-directory-resolver-plugin,num_dependents_deps.dev:0 +github.com/kijimaD/StaleFile, github.com/kijimaD/textlint-plugin-org,num_dependents_deps.dev:0 github.com/kijk2869/discodo, github.com/kijk2869/discodo.js,num_dependents_deps.dev:0 @@ -704442,6 +717354,7 @@ github.com/kijowski/tslint-plugin-blank-line,num_dependents_deps.dev:0 github.com/kijowski/uuaf,num_dependents_deps.dev:0 github.com/kik4/abreact,num_dependents_deps.dev:0 github.com/kik4/array-compressor,num_dependents_deps.dev:0 +github.com/kik4/simple-vercel-deploy, github.com/kikar/html-errors,num_dependents_deps.dev:0 github.com/kikar/zmanim,num_dependents_deps.dev:0 github.com/kikeh/PP6Generator, @@ -704530,6 +717443,7 @@ github.com/kikwit/generator-kikwit,num_dependents_deps.dev:0 github.com/kikwit/kikwit,num_dependents_deps.dev:0 github.com/kiky7/algorithm_re,num_dependents_deps.dev:0 github.com/kikyo91/Ecocyc-Database-Parsing, +github.com/kikyous/template-action, github.com/kil0ba/Vue-3-Socket.io,num_dependents_deps.dev:0 github.com/kilazi/capacitor-firebase-userid,num_dependents_deps.dev:0 github.com/kilazi/capacitor-motion, @@ -704542,6 +717456,7 @@ github.com/kildevaeld/gcron,num_dependents_deps.dev:0 github.com/kildevaeld/lint-config, github.com/kildevaeld/use-async,num_dependents_deps.dev:0 github.com/kildo162/nats-proxy,num_dependents_deps.dev:0 +github.com/kildom/zerotier-management-action, github.com/kileras/karma-closure,num_dependents_deps.dev:0 github.com/kilerd/envir, github.com/kilerd/got, @@ -704610,6 +717525,7 @@ github.com/kiliaosi/aaptjs3,num_dependents_deps.dev:0 github.com/kiliaosi/dep-copy-file,num_dependents_deps.dev:0 github.com/kilic/bls12-381,num_dependents_deps.dev:170 github.com/kilicmu/tinyTemplateEngine,num_dependents_deps.dev:0 +github.com/kiliczsh/codebase-scanner, github.com/kiliczsh/turkishbanks,num_dependents_deps.dev:0 github.com/kilik52/hupun-open-api-nodejs-sdk,num_dependents_deps.dev:0 github.com/kilik52/semanticdb-common-lib,num_dependents_deps.dev:0 @@ -704808,6 +717724,7 @@ github.com/killface-org/vigenere-stream,num_dependents_deps.dev:0 github.com/killfill/amqp-watcher,num_dependents_deps.dev:0 github.com/killfill/node-simple-proxy,num_dependents_deps.dev:0 github.com/killfrog47/rrproject,num_dependents_deps.dev:0 +github.com/killgallic/docker-action, github.com/killhamster/WHAPI, github.com/killi8n/billboard-hot-100,num_dependents_deps.dev:0 github.com/killi8n/google-place-search,num_dependents_deps.dev:0 @@ -704971,6 +717888,7 @@ github.com/kilork/ordered-parallel-iterator,num_dependents_deps.dev:0 github.com/kilork/sql-script-parser,num_dependents_deps.dev:0 github.com/kilpatrick/num-format,num_dependents_deps.dev:0 github.com/kilpatrick/typecheck-extended,num_dependents_deps.dev:0 +github.com/kilpillc/action-caprover, github.com/kilpkonn/gtm-enhanced,num_dependents_deps.dev:0 github.com/kilroybot/cliroy, github.com/kilroybot/kilroy, @@ -705110,6 +718028,7 @@ github.com/kimetrica/django-binary-database-files, github.com/kimfiedler/install-and-require,num_dependents_deps.dev:0 github.com/kimfiedler/jay-cli,num_dependents_deps.dev:0 github.com/kimfiedler/react-use-iframe-content-height,num_dependents_deps.dev:0 +github.com/kimgault/github-tag-action, github.com/kimgea/django-ordered-field, github.com/kimgeonhee317/leetcode-golang,num_dependents_deps.dev:0 github.com/kimgr/asn1ate, @@ -705245,6 +718164,7 @@ github.com/kimochg/react-yelling,num_dependents_deps.dev:0 github.com/kimochg/wxml-tags,num_dependents_deps.dev:0 github.com/kimochi-project/mochiswap-sdk,num_dependents_deps.dev:0 github.com/kimohashem/fusion-tables,num_dependents_deps.dev:0 +github.com/kimohy/coverage-comment, github.com/kimolalekan/QR-Delight,num_dependents_deps.dev:0 github.com/kimolalekan/react-device-frame, github.com/kimolalekan/react-devices,num_dependents_deps.dev:0 @@ -705308,6 +718228,7 @@ github.com/kimtony/eos-go,num_dependents_deps.dev:0 github.com/kimtree/hyapi, github.com/kimtuan1102/nestjs-kafka,num_dependents_deps.dev:0 github.com/kimtuan1102/zalo-messenger-sdk,num_dependents_deps.dev:0 +github.com/kimuchanman/sparse-checkout, github.com/kimulaco/amp-custom, github.com/kimulaco/anlz,num_dependents_deps.dev:0 github.com/kimulaco/css-triangle,num_dependents_deps.dev:0 @@ -705365,6 +718286,9 @@ github.com/kimziv/granax,num_dependents_deps.dev:2 github.com/kimziv/hsv3,num_dependents_deps.dev:0 github.com/kimziv/kadence,num_dependents_deps.dev:0 github.com/kin-sdk/react-native-kin-sdk, +github.com/kin/gh-action-autoarchive-stale-cards-for-column, +github.com/kin/gh-action-get-linked-issues, +github.com/kin/gh-action-move-issues-to-column, github.com/kin29/business-card,num_dependents_deps.dev:0 github.com/kin3tics/subsonicjs,num_dependents_deps.dev:0 github.com/kin9-0rz/get-next-version-cli,num_dependents_deps.dev:0 @@ -705442,6 +718366,7 @@ github.com/kinda/kinda-web-ui,num_dependents_deps.dev:0 github.com/kindacoder/native-mathjax,num_dependents_deps.dev:0 github.com/kindaidensan/umr,num_dependents_deps.dev:0 github.com/kindaidensan/user-manager-server,num_dependents_deps.dev:0 +github.com/kindaninja/retag-image-ghcr, github.com/kinday/oboe-promise,num_dependents_deps.dev:0 github.com/kinday/postcss-axis,num_dependents_deps.dev:0 github.com/kinday/postcss-content-width-unit,num_dependents_deps.dev:0 @@ -705846,6 +718771,7 @@ github.com/kingstonlabs/lanthanum, github.com/kingstonsoftware/shovel,num_dependents_deps.dev:0 github.com/kingstonsoftware/transposer-lib,num_dependents_deps.dev:0 github.com/kingstuffy/sails-generate-integration-test,num_dependents_deps.dev:0 +github.com/kingtelepuz5/git-actions, github.com/kingthomasc/python-purify, github.com/kingttx/capstone,num_dependents_deps.dev:0 github.com/kingvid-chan/css-id-replace-loader,num_dependents_deps.dev:0 @@ -706102,6 +719028,7 @@ github.com/kipprice/markdown-matrix,num_dependents_deps.dev:0 github.com/kipr/node-boyd,num_dependents_deps.dev:0 github.com/kipr/node-daylite,num_dependents_deps.dev:0 github.com/kipraske/grunt-wordpress-git-hash-versioning,num_dependents_deps.dev:0 +github.com/kiprasmel/git-publish-generated-branch, github.com/kiprasmel/npx-ecute,num_dependents_deps.dev:0 github.com/kiprotect/go-helpers,num_dependents_deps.dev:0 github.com/kiprotect/kodex,num_dependents_deps.dev:0 @@ -706355,6 +719282,7 @@ github.com/kirill-malyhin/autonumeric-vue,num_dependents_deps.dev:0 github.com/kirill-mozes/go_tasks,num_dependents_deps.dev:0 github.com/kirill-samylin/stream-console,num_dependents_deps.dev:0 github.com/kirill-scherba/bslice,num_dependents_deps.dev:0 +github.com/kirill-scherba/publish-rsync, github.com/kirill-scherba/teonet-go,num_dependents_deps.dev:0 github.com/kirill-scherba/teoweb,num_dependents_deps.dev:0 github.com/kirill-scherba/teowebrtc,num_dependents_deps.dev:3 @@ -706420,6 +719348,7 @@ github.com/kirillovmr/python-pipeline, github.com/kirillpisarev/react-native-app-version,num_dependents_deps.dev:0 github.com/kirillpisarev/react-native-key-value-storage,num_dependents_deps.dev:0 github.com/kirillpisarev/react-native-yandex-ads,num_dependents_deps.dev:0 +github.com/kirillplatonov/action-standard, github.com/kirillplatonov/dirty-forms,num_dependents_deps.dev:0 github.com/kirillradaev/lighthouse-web-notes,num_dependents_deps.dev:0 github.com/kirillrdy/caramel,num_dependents_deps.dev:0 @@ -706467,6 +719396,7 @@ github.com/kirinmurphy/codethings-next-router-addons,num_dependents_deps.dev:0 github.com/kirinmurphy/codethings-react-ui,num_dependents_deps.dev:0 github.com/kirinnee/DotNetCore-Intergtaion-Test-Generator,num_dependents_deps.dev:0 github.com/kirinnee/Netlify-Deploy,num_dependents_deps.dev:0 +github.com/kirinnee/atomici-action, github.com/kirinnee/semantic-generator,num_dependents_deps.dev:0 github.com/kirinnee/tslib-rimage,num_dependents_deps.dev:0 github.com/kirinnee/tslib.animate,num_dependents_deps.dev:0 @@ -706532,6 +719462,7 @@ github.com/kirk91/bolt,num_dependents_deps.dev:0 github.com/kirk91/stats,num_dependents_deps.dev:0 github.com/kirkBurleson/kpg,num_dependents_deps.dev:0 github.com/kirkBurleson/raydiff,num_dependents_deps.dev:0 +github.com/kirkalynsantos/diggity-action, github.com/kirkbrauer/descanso,num_dependents_deps.dev:0 github.com/kirkbrauer/opaqueid,num_dependents_deps.dev:0 github.com/kirkbrauer/typeorm-graphql-pagination,num_dependents_deps.dev:0 @@ -706644,6 +719575,7 @@ github.com/kis9a/goreleaser-hello-world,num_dependents_deps.dev:0 github.com/kis9a/kis9a,num_dependents_deps.dev:0 github.com/kis9a/sar,num_dependents_deps.dev:0 github.com/kisChang/fastdfs-client,num_dependents_deps.dev:0 +github.com/kisaan-pk/slack-action, github.com/kisakov/grepity,num_dependents_deps.dev:0 github.com/kisaku1978/npm_sample,num_dependents_deps.dev:0 github.com/kisamoto/brokerapi,num_dependents_deps.dev:0 @@ -706688,11 +719620,14 @@ github.com/kisenka/webpack-toolkit,num_dependents_deps.dev:10 github.com/kisexp/fastpool,num_dependents_deps.dev:0 github.com/kishan041/demo-custom-module,num_dependents_deps.dev:0 github.com/kishan267/npmpackage,num_dependents_deps.dev:0 +github.com/kishan73/go-action-new, github.com/kishaningithub/csvdiff,num_dependents_deps.dev:0 github.com/kishaningithub/hugo-creative-portfolio-theme,criticality_score:0.354230 github.com/kishaningithub/kafka-console-avro-without-schema-registry,num_dependents_deps.dev:0 github.com/kishaningithub/memory-eater,num_dependents_deps.dev:0 github.com/kishaningithub/randomtext,num_dependents_deps.dev:0 +github.com/kishaningithub/setup-python-amazon-linux, +github.com/kishaningithub/setup-tf-summarize, github.com/kishaningithub/shopify-csv-download,num_dependents_deps.dev:0 github.com/kishaningithub/slow-http,num_dependents_deps.dev:0 github.com/kishanio/CCAvenue-Ruby-Gem,num_dependents_deps.dev:0 @@ -706711,6 +719646,7 @@ github.com/kishansakhiya/logic-tactics,num_dependents_deps.dev:0 github.com/kishek/json-ld-types,num_dependents_deps.dev:0 github.com/kishikawakatsumi/KeychainAccess,criticality_score:0.354100 github.com/kishikawakatsumi/UICKeyChainStore,criticality_score:0.363120 +github.com/kishikawakatsumi/xcresulttool, github.com/kishimoto-banana/altena, github.com/kishimy/sibedge-create-react, github.com/kishimy/uikit, @@ -706725,6 +719661,7 @@ github.com/kishor98100/idea-native-digital-clock,num_dependents_deps.dev:0 github.com/kishor98100/react-native-text-editor,num_dependents_deps.dev:0 github.com/kishor98100/vertical-marquee-view,num_dependents_deps.dev:0 github.com/kishore-devaraj/scrolling-linechart, +github.com/kishore-km/ts-kishore, github.com/kishore-s-gowda/fastreport, github.com/kishorearora/mypack,num_dependents_deps.dev:0 github.com/kishorecherukuror/anagram_find,num_dependents_deps.dev:0 @@ -706745,6 +719682,7 @@ github.com/kishoreprabhu/check-data-type,num_dependents_deps.dev:0 github.com/kishoreprabhu/object-formdata-convertor,num_dependents_deps.dev:0 github.com/kishoreprabhu/strip-tags,num_dependents_deps.dev:0 github.com/kishoreprabhu/touch-detector,num_dependents_deps.dev:0 +github.com/kishoreraju2/Oracle-function-actions, github.com/kishorevaishnav/ace,num_dependents_deps.dev:0 github.com/kishorevaishnav/go-bindata,num_dependents_deps.dev:0 github.com/kishorevaishnav/graphql,num_dependents_deps.dev:0 @@ -706752,6 +719690,7 @@ github.com/kishorevarma/formsy-bulma-components, github.com/kishorevarma/imdb-top-250,num_dependents_deps.dev:0 github.com/kishoreyarram/react-test,num_dependents_deps.dev:0 github.com/kishoreyuvan/ember-key-navigation, +github.com/kishorikumar/synopsys-unified, github.com/kishorpokharel/go-context,num_dependents_deps.dev:0 github.com/kishorsharma/currying-workshopper,num_dependents_deps.dev:0 github.com/kishorsharma/dynamic-react-ab,num_dependents_deps.dev:0 @@ -706795,6 +719734,7 @@ github.com/kislball/goocord,num_dependents_deps.dev:0 github.com/kislball/makicss,num_dependents_deps.dev:0 github.com/kislenko-artem/dataclasses-ujson, github.com/kislerdm/gbqschema_converter, +github.com/kislerdm/pyarch, github.com/kislerdm/terraform-provider-awsamplify,num_dependents_deps.dev:0 github.com/kislovskij/gatsby-source-smartrecruiters,num_dependents_deps.dev:0 github.com/kislyuk/aegea, @@ -707005,8 +719945,11 @@ github.com/kita127/kita127-blog,num_dependents_deps.dev:0 github.com/kita127/stdedit,num_dependents_deps.dev:0 github.com/kita99/terraform-provider-kubeseal,num_dependents_deps.dev:0 github.com/kita99/terraform-provider-sealedsecrets,num_dependents_deps.dev:0 +github.com/kitabisa/docker-slim-action, +github.com/kitabisa/gokart-action, github.com/kitabisa/moosend-go-client,num_dependents_deps.dev:0 github.com/kitabisa/mubeng,num_dependents_deps.dev:0 +github.com/kitabisa/oas-sink-action, github.com/kitabisa/perkakas,num_dependents_deps.dev:0 github.com/kitabisa/sangu-bni,num_dependents_deps.dev:0 github.com/kitabisa/sangu-bri,num_dependents_deps.dev:0 @@ -707014,6 +719957,7 @@ github.com/kitabisa/sangu-dana,num_dependents_deps.dev:0 github.com/kitabisa/sangu-espay,num_dependents_deps.dev:0 github.com/kitabisa/sangu-flip,num_dependents_deps.dev:0 github.com/kitabisa/sangu-jenius,num_dependents_deps.dev:0 +github.com/kitabisa/sonarqube-action, github.com/kitabisa/ssb,num_dependents_deps.dev:0 github.com/kitabisa/teler,"criticality_score:0.387920,num_dependents_deps.dev:0" github.com/kitabsawti/react-native-track-player,num_dependents_deps.dev:0 @@ -707082,6 +720026,7 @@ github.com/kitchun0402/WebScraping_Instagram_igenemy, github.com/kitchun0402/WebScraping_Instagram_igpicker, github.com/kitconcept/angular-medium-editor,num_dependents_deps.dev:0 github.com/kitconcept/bobtemplates.kitconcept, +github.com/kitconcept/docker-stack-deploy, github.com/kitconcept/kitconcept.contentcreator, github.com/kitconcept/kitconcept.glossary, github.com/kitconcept/kitconcept.recipe.solr, @@ -707108,6 +720053,8 @@ github.com/kitecs/uni-firebase-user,num_dependents_deps.dev:0 github.com/kitehood/mega-node-module,num_dependents_deps.dev:0 github.com/kitei/kitei-lessio,num_dependents_deps.dev:0 github.com/kitei/kitei-policy,num_dependents_deps.dev:0 +github.com/kitek/dartanalyzer-annotations-action, +github.com/kitek/decode-base64-into-file-action, github.com/kitemao/ascii-text,num_dependents_deps.dev:0 github.com/kitemao/grunt-brand-log,num_dependents_deps.dev:0 github.com/kitengo/create-react-app,num_dependents_deps.dev:0 @@ -707197,6 +720144,7 @@ github.com/kitsuyui/bamboo-crawler, github.com/kitsuyui/cachepot, github.com/kitsuyui/cmd_cache,num_dependents_deps.dev:0 github.com/kitsuyui/dict_zip, +github.com/kitsuyui/happy-commit, github.com/kitsuyui/invisible,num_dependents_deps.dev:0 github.com/kitsuyui/myip,num_dependents_deps.dev:0 github.com/kitsuyui/ninja-star,num_dependents_deps.dev:0 @@ -707211,6 +720159,7 @@ github.com/kitt1987/superblock,num_dependents_deps.dev:0 github.com/kitt3911/crocser,num_dependents_deps.dev:0 github.com/kittBoy/kitt,num_dependents_deps.dev:0 github.com/kittaakos/stackoverflow-47210046,num_dependents_deps.dev:0 +github.com/kittaakos/upload-artifact-as-is, github.com/kitten/babel-plugin-modular-graphql,num_dependents_deps.dev:0 github.com/kitten/bs-flow-parser,num_dependents_deps.dev:0 github.com/kitten/gatsby-theme-docs-system,num_dependents_deps.dev:0 @@ -707348,6 +720297,7 @@ github.com/kiven-man/go-crontab-v1-,num_dependents_deps.dev:0 github.com/kiven1989/c-logg,num_dependents_deps.dev:0 github.com/kiviev/abono_transportes_web_scraping, github.com/kiviev/security_home_bot,num_dependents_deps.dev:0 +github.com/kiview/code-sign-action, github.com/kivikakk/comrak,"criticality_score:0.413700,num_dependents_deps.dev:30" github.com/kivikakk/diesel_ltree,num_dependents_deps.dev:0 github.com/kivikakk/lavender,num_dependents_deps.dev:0 @@ -707509,6 +720459,7 @@ github.com/kiwitcms/github-app, github.com/kiwitcms/github-marketplace, github.com/kiwitcms/junit-plugin,num_dependents_deps.dev:0 github.com/kiwitcms/junit.xml-plugin, +github.com/kiwitcms/phpunit-plugin, github.com/kiwitcms/python-social-auth-kerberos, github.com/kiwitcms/robotframework-plugin, github.com/kiwitcms/tap-plugin, @@ -707585,6 +720536,7 @@ github.com/kiyor/freegeoip,num_dependents_deps.dev:0 github.com/kiyor/ini,num_dependents_deps.dev:0 github.com/kiyor/kubetail,num_dependents_deps.dev:0 github.com/kiyor/terminal,num_dependents_deps.dev:0 +github.com/kiyosoft/action-set-json-field, github.com/kiyotd/torigoedesign-utils,num_dependents_deps.dev:0 github.com/kiyui/vuex-listener, github.com/kiyutink/bp-cli,num_dependents_deps.dev:0 @@ -707922,6 +720874,7 @@ github.com/kjport3/go-language,num_dependents_deps.dev:0 github.com/kjpranata/mytesting,num_dependents_deps.dev:0 github.com/kjprice/android-download-via-qr,num_dependents_deps.dev:0 github.com/kjprice/grunt-android-download-via-qr,num_dependents_deps.dev:0 +github.com/kjranyone/eks-private-docker, github.com/kjrb/npm-deployer-git-tagger,num_dependents_deps.dev:0 github.com/kjrocker/redux-promise-dispatch,num_dependents_deps.dev:0 github.com/kjroshan/react-lib-datepicker,num_dependents_deps.dev:0 @@ -708013,6 +720966,7 @@ github.com/kkachhawaha/planner,num_dependents_deps.dev:0 github.com/kkachhawaha/plugin-planner,num_dependents_deps.dev:0 github.com/kkachniarz220/ngb-confirmation-modal,num_dependents_deps.dev:0 github.com/kkaczmarzyk/calendar,num_dependents_deps.dev:0 +github.com/kkaczynski/base64Secret-toFile-action, github.com/kkaefer/DEPRECATED-node-zlib,num_dependents_deps.dev:0 github.com/kkaefer/chrono.js,num_dependents_deps.dev:0 github.com/kkaefer/node-morton,num_dependents_deps.dev:0 @@ -708022,6 +720976,7 @@ github.com/kkaffes/vhive,num_dependents_deps.dev:0 github.com/kkage/zivx,num_dependents_deps.dev:0 github.com/kkagura/vue-color-picker,num_dependents_deps.dev:0 github.com/kkak10/create-react-mole,num_dependents_deps.dev:0 +github.com/kkak10/pr-number-action, github.com/kkakroo/ang-donut,num_dependents_deps.dev:0 github.com/kkalamarski/redshift,num_dependents_deps.dev:0 github.com/kkamara/users-api,num_dependents_deps.dev:0 @@ -708444,6 +721399,7 @@ github.com/kktjs/create-kkt,num_dependents_deps.dev:0 github.com/kktjs/kkt,num_dependents_deps.dev:0 github.com/kktjs/kkt-next,num_dependents_deps.dev:0 github.com/kktjs/kkt-ssr,num_dependents_deps.dev:0 +github.com/kktjs/npm-publish, github.com/kktk-KO/daeman, github.com/kktk-KO/pytranspose, github.com/kktk-KO/sixelplot, @@ -708469,6 +721425,7 @@ github.com/kkung/cfanalyze, github.com/kkuramitsu/kogi, github.com/kkuriata/firebase-migrations,num_dependents_deps.dev:0 github.com/kkuriata/import-blacklist-extended,num_dependents_deps.dev:0 +github.com/kkurno/action-markdown-reader, github.com/kkurno/gtagjs,num_dependents_deps.dev:0 github.com/kkurri/user-demo,num_dependents_deps.dev:0 github.com/kkuzar/prhfi-bis,num_dependents_deps.dev:0 @@ -708607,6 +721564,7 @@ github.com/klajd/angular-component-tasks,num_dependents_deps.dev:0 github.com/klajd/angular-outsideclick,num_dependents_deps.dev:0 github.com/klajd/angular-virtual-repeat,num_dependents_deps.dev:0 github.com/klajdicaushi/create-react-app,num_dependents_deps.dev:0 +github.com/klakegg/actions-hugo, github.com/klakegg/pkix-ocsp,num_dependents_deps.dev:158 github.com/klalka-dev/wdio-testrail-reporter,num_dependents_deps.dev:0 github.com/klambycom/react-waveform,num_dependents_deps.dev:0 @@ -708718,6 +721676,7 @@ github.com/klaufel/figma-tokens,num_dependents_deps.dev:0 github.com/klaufel/pattern-library-skeleton,num_dependents_deps.dev:0 github.com/klaufel/polygoncss,num_dependents_deps.dev:0 github.com/klauke-enterprises/antonia,num_dependents_deps.dev:0 +github.com/klauke-enterprises/plantuml-action, github.com/klaundal/pyAMPS, github.com/klaus/wuzz,num_dependents_deps.dev:0 github.com/klaus/zipkin-go-opentracing,num_dependents_deps.dev:0 @@ -708958,6 +721917,7 @@ github.com/kleinron/smart-replacer,num_dependents_deps.dev:0 github.com/kleinsea/image-rotation,num_dependents_deps.dev:0 github.com/kleisauke/wasm-vips,num_dependents_deps.dev:0 github.com/kleister/kleister-go,num_dependents_deps.dev:0 +github.com/kleithor/auto-tags, github.com/kleiton0x00/ppmap,num_dependents_deps.dev:0 github.com/klejejs/python-thermia-online-api, github.com/klem4/panacea, @@ -709347,6 +722307,7 @@ github.com/kloshih/activesync, github.com/kloshih/begin,num_dependents_deps.dev:0 github.com/kloshih/keyvalues,num_dependents_deps.dev:0 github.com/kloshih/reflecter, +github.com/klotztech/keycloak-config-action, github.com/klouddy/node-box,num_dependents_deps.dev:0 github.com/kloudfuse/datadog-agent,num_dependents_deps.dev:0 github.com/kloudless/authenticator.js,num_dependents_deps.dev:0 @@ -709358,6 +722319,8 @@ github.com/kloudless/kloudless-python, github.com/kloudsoftware/eisen,num_dependents_deps.dev:0 github.com/kloudtek/elogging-log4j2,num_dependents_deps.dev:0 github.com/kloudtek/genesis-templating,num_dependents_deps.dev:1 +github.com/kloudtek/kt-gh-action-npm, +github.com/kloudtek/kt-ghaction-sh, github.com/kloudtrader-github/Susie,num_dependents_deps.dev:0 github.com/kloudyuk/crawl,num_dependents_deps.dev:0 github.com/kloudyuk/logger,num_dependents_deps.dev:0 @@ -709414,6 +722377,7 @@ github.com/kltm/bbopx-js,num_dependents_deps.dev:0 github.com/kltm/pup-tent,num_dependents_deps.dev:0 github.com/klucsik/link-crab, github.com/kluddizz/dash-design,num_dependents_deps.dev:0 +github.com/kludge-cs/gitcord-release-changelogger, github.com/kludge-cs/utils,num_dependents_deps.dev:0 github.com/klueless-io/handlebars-helpers,num_dependents_deps.dev:4 github.com/klueless-io/k_builder,num_dependents_deps.dev:0 @@ -709444,6 +722408,7 @@ github.com/klummy/generator-flagae,num_dependents_deps.dev:0 github.com/klunwebale/goprogamming,num_dependents_deps.dev:0 github.com/klusignolo/tkstyles, github.com/kluslulu/instascan2,num_dependents_deps.dev:0 +github.com/klustair/kubeaudit-action, github.com/klutchdev/beakerjs, github.com/klutchdev/cra-template-klutch-dev,num_dependents_deps.dev:0 github.com/klutchdev/klutch-carousel, @@ -709636,6 +722601,8 @@ github.com/kmanc/cryptopals, github.com/kmanc/py_actors, github.com/kmandov/d3-horizon-chart,num_dependents_deps.dev:0 github.com/kmani314/quaver,num_dependents_deps.dev:0 +github.com/kmanimaran/list-folder-action, +github.com/kmanimaran/yaml-replacement-action, github.com/kmanion/senpai,num_dependents_deps.dev:0 github.com/kmanktelow/km-npm-test,num_dependents_deps.dev:0 github.com/kmanley/ego,num_dependents_deps.dev:0 @@ -709690,6 +722657,7 @@ github.com/kmcallister/syscall.rs,num_dependents_deps.dev:3 github.com/kmcallister/tunapanel,num_dependents_deps.dev:0 github.com/kmcallister/vgrs,num_dependents_deps.dev:0 github.com/kmcaloon/gatsby-plugin-groq,num_dependents_deps.dev:0 +github.com/kmccanless/aws-sam-ruby-action, github.com/kmcclosk/compose-io-tools,num_dependents_deps.dev:0 github.com/kmccullen97/md-calc,num_dependents_deps.dev:0 github.com/kmcgill88/admob_flutter,criticality_score:0.341530 @@ -709722,6 +722690,7 @@ github.com/kmckee/dashdate,num_dependents_deps.dev:0 github.com/kmconner/kubectl-install-cert,num_dependents_deps.dev:0 github.com/kmcos/kmcos, github.com/kmcquade/DogeMachine-utils, +github.com/kmcquade/bandit-report-artifacts-json, github.com/kmcquade/kinnaird-utils, github.com/kmcquade/zap-automation-renderer, github.com/kmcquade/zap-cli-v2, @@ -710082,6 +723051,7 @@ github.com/kmulqueen/gobnb,num_dependents_deps.dev:0 github.com/kmulqueen/gowebservice,num_dependents_deps.dev:0 github.com/kmulvey/bootstrap-csslint,num_dependents_deps.dev:0 github.com/kmulvey/elastic,num_dependents_deps.dev:0 +github.com/kmulvey/govulncheck-action, github.com/kmulvey/grunt-beaker,num_dependents_deps.dev:0 github.com/kmulvey/grunt-bustr,num_dependents_deps.dev:0 github.com/kmulvey/imageconvert,num_dependents_deps.dev:0 @@ -710119,6 +723089,8 @@ github.com/kmyr/utfhate, github.com/kn-bibs/dotplot, github.com/kn-xu/js-smart-sort,num_dependents_deps.dev:0 github.com/kn/slack, +github.com/kn0pee/changelog-generator, +github.com/kn0pee/quack-cicd, github.com/kn0wn/vue-cosha,num_dependents_deps.dev:0 github.com/kn100/eufyextractor,num_dependents_deps.dev:0 github.com/kn1cht/textlint-rule-preset-ja-engineering-paper,num_dependents_deps.dev:0 @@ -710134,6 +723106,7 @@ github.com/kn4rfy/react-native-speech-notification,num_dependents_deps.dev:0 github.com/kn4ts/gotuto,num_dependents_deps.dev:0 github.com/kn9ts/dumb-passwords,num_dependents_deps.dev:380 github.com/kn9ts/stupid-passwords,num_dependents_deps.dev:0 +github.com/knabben/gql-pull, github.com/knabben/istio-jot-provider,num_dependents_deps.dev:0 github.com/knaccc/subaddress-js,num_dependents_deps.dev:0 github.com/knack-ux/knack-ux,num_dependents_deps.dev:2 @@ -710186,6 +723159,7 @@ github.com/knampun/maneeschool, github.com/knanao/authenticate,num_dependents_deps.dev:0 github.com/knanao/leetcode,num_dependents_deps.dev:0 github.com/knanao/pnumber,num_dependents_deps.dev:0 +github.com/knanao/preview-cloudrun, github.com/knangunu/abl-logger,num_dependents_deps.dev:0 github.com/knanil/chilled,num_dependents_deps.dev:0 github.com/knanil/dashed,num_dependents_deps.dev:0 @@ -710366,6 +723340,7 @@ github.com/kneefer/ngx-translate-resx-http-loader,num_dependents_deps.dev:0 github.com/kneeki/jsonresume-theme-Dave,num_dependents_deps.dev:0 github.com/kneeki/jsonresume-theme-Kate,num_dependents_deps.dev:0 github.com/kneeki/strokegapicons,num_dependents_deps.dev:0 +github.com/kneemaa/github-action-rotate-aws-secrets, github.com/kneerunjun/colormyprompt, github.com/kneetech/knee, github.com/knegusen/generator-wallaby-webpack-react, @@ -710593,6 +723568,7 @@ github.com/knksmith57/node-before-every-install,num_dependents_deps.dev:0 github.com/knksmith57/node-express-after-end, github.com/knksmith57/resolve-npm-dependency-graph.registry-loader,num_dependents_deps.dev:0 github.com/knktc/django-qingstor-storage, +github.com/knl/niv-updater-action, github.com/knlambert/sql-collection, github.com/knledg/distraught,num_dependents_deps.dev:0 github.com/knledg/elm-dom-ports,num_dependents_deps.dev:0 @@ -710721,6 +723697,7 @@ github.com/knonginda/test-base-style,num_dependents_deps.dev:0 github.com/knoopx/headbang,num_dependents_deps.dev:0 github.com/knoorsesv/noorse-components,num_dependents_deps.dev:0 github.com/knoova/input-fields,num_dependents_deps.dev:0 +github.com/knope-dev/action, github.com/knopkem/dicom-dimse-native,num_dependents_deps.dev:0 github.com/knopkem/dicomweb-archive,num_dependents_deps.dev:0 github.com/knopkem/dicomweb-pacs,num_dependents_deps.dev:0 @@ -710831,6 +723808,7 @@ github.com/knowitall/openregex,"Google,num_dependents_deps.dev:25" github.com/knowitall/openregex-scala,num_dependents_deps.dev:3 github.com/knowitall/reverb-core,num_dependents_deps.dev:6 github.com/knowitall/taggers,num_dependents_deps.dev:0 +github.com/knowl-doc/knowl-ai-code-docs, github.com/knowlearning/fill-text,num_dependents_deps.dev:0 github.com/knowlecules/edge-server,num_dependents_deps.dev:0 github.com/knowlecules/media-server,num_dependents_deps.dev:0 @@ -710944,6 +723922,7 @@ github.com/knowsuchagency/dmp-cli, github.com/knowsuchagency/klaxon, github.com/knowsuchagency/ninjadog, github.com/knowsuchagency/orkestra, +github.com/knowsuchagency/poetry-install, github.com/knowsuchagency/shell-utils, github.com/knowsys/rulewerk,num_dependents_deps.dev:5 github.com/knowsys/vlog4j,num_dependents_deps.dev:0 @@ -710985,10 +723964,12 @@ github.com/knqyf263/pet,"criticality_score:0.425880,num_dependents_deps.dev:0" github.com/knqyf263/playground,num_dependents_deps.dev:0 github.com/knqyf263/stargz-registry,num_dependents_deps.dev:0 github.com/knqyf263/trivy,num_dependents_deps.dev:0 +github.com/knqyf263/trivy-issue-action, github.com/knqyf263/utern,"criticality_score:0.302920,num_dependents_deps.dev:0" github.com/knreise/KNReiseAPI,num_dependents_deps.dev:0 github.com/knreise/L.TileLayer.Kartverket,num_dependents_deps.dev:0 github.com/knreise/Leaflet.knreise-markers,num_dependents_deps.dev:0 +github.com/knrg2812/git-version, github.com/knroy/celery-rmq, github.com/knroy/django-pds, github.com/knrt10/cloudinary-cli,num_dependents_deps.dev:0 @@ -711000,6 +723981,7 @@ github.com/knrz/CSV.js,num_dependents_deps.dev:104 github.com/knrz/DB.js,num_dependents_deps.dev:0 github.com/knrz/Model.js,num_dependents_deps.dev:0 github.com/knrz/Quandl-Ruby,num_dependents_deps.dev:0 +github.com/knrzyr/unity-test-runner-mute-activate, github.com/knsd/daemonize,num_dependents_deps.dev:3 github.com/knsd/from-ascii,num_dependents_deps.dev:3 github.com/knsd/tokio-ping,num_dependents_deps.dev:0 @@ -711115,6 +724097,7 @@ github.com/knyzorg/messenger-events, github.com/knz/cockroach,num_dependents_deps.dev:0 github.com/knz/errors,num_dependents_deps.dev:0 github.com/knz/go-libedit,num_dependents_deps.dev:65 +github.com/ko-build/setup-ko, github.com/ko-gyeongtae/backend-virtualcurrency-server,num_dependents_deps.dev:0 github.com/ko-han/goutils,num_dependents_deps.dev:0 github.com/ko-han/python-ctools, @@ -711137,6 +724120,7 @@ github.com/ko1/ractor-lvar,num_dependents_deps.dev:0 github.com/ko1/ractor-tvar,num_dependents_deps.dev:0 github.com/ko2-srls/HeatTemplateValidator, github.com/ko28/melon-api, +github.com/ko3ak81/AWS-CLI-EB-CLI, github.com/ko90thu/py_myanmar_numbers, github.com/koa-framework/koa-framework,num_dependents_deps.dev:0 github.com/koa-grace/grace-consolidate,num_dependents_deps.dev:0 @@ -711492,6 +724476,7 @@ github.com/kobezzza/NeJS,num_dependents_deps.dev:0 github.com/kobezzza/SweetHelpers,num_dependents_deps.dev:0 github.com/kobezzza/enchanted-curly,num_dependents_deps.dev:0 github.com/kobezzza/eslint-plugin-enchanted-curly,num_dependents_deps.dev:6 +github.com/kobi-lemberg/github-maven-step, github.com/kobi86/checkurl,num_dependents_deps.dev:0 github.com/kobibarhanin/gitsy, github.com/kobibarhanin/igit, @@ -711519,7 +724504,9 @@ github.com/kobinpy/wsgicli, github.com/kobionic/cli,num_dependents_deps.dev:0 github.com/kobisasson/skinjs,num_dependents_deps.dev:0 github.com/kobit-develop/jsx-presentation,num_dependents_deps.dev:0 +github.com/kobiton/execute-appium-test-github-action, github.com/kobiton/samples,num_dependents_deps.dev:0 +github.com/kobiton/upload-mobile-app-github-action, github.com/kobkrit/reds-thai,num_dependents_deps.dev:0 github.com/kobkrit/redsip,num_dependents_deps.dev:0 github.com/koblas/graphql,num_dependents_deps.dev:0 @@ -711541,6 +724528,7 @@ github.com/koboriakira/todoist-to-markdown, github.com/koboriakira/translate_comment_out, github.com/kobra-dev/js-regression,num_dependents_deps.dev:0 github.com/kobra-dev/react-firebase-auth-hooks,num_dependents_deps.dev:0 +github.com/kobrikx/test, github.com/kobs30/saiwebsocket,num_dependents_deps.dev:0 github.com/kobshobe/agin,num_dependents_deps.dev:0 github.com/kobsio/app,num_dependents_deps.dev:0 @@ -711549,7 +724537,9 @@ github.com/kobsio/kobs,num_dependents_deps.dev:0 github.com/kobsy/juniter,num_dependents_deps.dev:0 github.com/kobtea/dummy_exporter,num_dependents_deps.dev:0 github.com/kobtea/iapetus,num_dependents_deps.dev:0 +github.com/kobtea/release-tag-action, github.com/kobtea/sample-github-actions,num_dependents_deps.dev:0 +github.com/kobtea/setup-jsonnet-action, github.com/kobus-v-schoor/dotgit, github.com/kobus-v-schoor/lxc-butler, github.com/kobusgrobler/fileswitcher-maven-plugin,num_dependents_deps.dev:0 @@ -711642,6 +724632,8 @@ github.com/kockatykalendar/python, github.com/kockicica/generator-quark-module,num_dependents_deps.dev:0 github.com/kockpit/ember-gantt,num_dependents_deps.dev:0 github.com/kocokolo/mousetrap,num_dependents_deps.dev:0 +github.com/koconder/actions-google-calendar, +github.com/koconder/no-out-of-hours-merge, github.com/kocun/eslint-config-ku-dev, github.com/kocun/eslint-config-ku-dev-,num_dependents_deps.dev:0 github.com/kocyigitkim/fastapi-client,num_dependents_deps.dev:0 @@ -711703,6 +724695,7 @@ github.com/koddr/sweetconfirm.js,num_dependents_deps.dev:0 github.com/koddr/tutorial-go-fiber-rest-api,num_dependents_deps.dev:0 github.com/koddr/vue-goodshare,"criticality_score:0.330660,num_dependents_deps.dev:0" github.com/koddr/yandex-music-desktop,num_dependents_deps.dev:0 +github.com/koddsson/action, github.com/koddsson/ahsay-python-api, github.com/koddsson/althingi,num_dependents_deps.dev:0 github.com/koddsson/alvarpid,num_dependents_deps.dev:0 @@ -711816,11 +724809,13 @@ github.com/kodergarten/gg,num_dependents_deps.dev:0 github.com/koderhut/safenotes,num_dependents_deps.dev:0 github.com/koderlife/karrier,num_dependents_deps.dev:0 github.com/kodermax/aws-cacheable-response, +github.com/kodermax/kubectl-aws-eks, github.com/kodermax/next-css,num_dependents_deps.dev:0 github.com/kodermax/react-mapbox-wrapper,num_dependents_deps.dev:0 github.com/kodermax/react-toolbox,num_dependents_deps.dev:0 github.com/kodermax/russian-toolbox-loader,num_dependents_deps.dev:0 github.com/koderover/zadig,num_dependents_deps.dev:0 +github.com/kodertroop/do-space-sync-action, github.com/kodesam/ip-address-management-ipam-,num_dependents_deps.dev:0 github.com/kodesam/multus-cni,num_dependents_deps.dev:0 github.com/kodesam/sriov-cni,num_dependents_deps.dev:0 @@ -711884,6 +724879,7 @@ github.com/koding/qfunction,num_dependents_deps.dev:0 github.com/koding/record-shortcuts, github.com/koding/shortcuts,num_dependents_deps.dev:0 github.com/kodingbug/golang-microservices,num_dependents_deps.dev:0 +github.com/kodingdotninja/chakra-icons, github.com/kodingdotninja/create-chakraicon,num_dependents_deps.dev:0 github.com/kodingdotninja/eslint-config-kdnj,num_dependents_deps.dev:0 github.com/kodinge/latest-indonesia-earthquake, @@ -711992,6 +724988,7 @@ github.com/koenpunt/node-useragent-parser,num_dependents_deps.dev:1 github.com/koenpunt/superagent-use,num_dependents_deps.dev:2 github.com/koenrad/android-style-logging,num_dependents_deps.dev:0 github.com/koenrh/delete-tweets,criticality_score:0.357140 +github.com/koenrh/dnscontrol-action, github.com/koenvanderlinden/ng2-file-upload,num_dependents_deps.dev:0 github.com/koenvanzuijlen/giantbomb-show-dl, github.com/koenverburg/vaccine-notifier,num_dependents_deps.dev:0 @@ -712018,7 +725015,9 @@ github.com/koesie10/dnscontrol,num_dependents_deps.dev:0 github.com/koesie10/fsuipc-node,num_dependents_deps.dev:0 github.com/koesie10/imgproxy,num_dependents_deps.dev:0 github.com/koesie10/journalbeat,num_dependents_deps.dev:0 +github.com/koesie10/setup-msfs-sdk, github.com/koesie10/ts-grpc-protoc-gen,num_dependents_deps.dev:0 +github.com/koesterlab/setup-slurm-action, github.com/koesterlab/yte, github.com/koestler/dnsdock,num_dependents_deps.dev:0 github.com/koestler/go-image-server,num_dependents_deps.dev:0 @@ -712075,6 +725074,7 @@ github.com/kofalt/go-memoize,num_dependents_deps.dev:1 github.com/kofalt/gorethink,num_dependents_deps.dev:0 github.com/kofalt/jwt-go,num_dependents_deps.dev:0 github.com/kofeinstyle/node-transmission,num_dependents_deps.dev:0 +github.com/kofemann/action-create-certificate, github.com/koffeine/class-256.js,num_dependents_deps.dev:0 github.com/koffeine/eslint-config,num_dependents_deps.dev:0 github.com/koffeine/eslint-config-koffeine,num_dependents_deps.dev:0 @@ -712205,6 +725205,7 @@ github.com/kognise/bootstrap-next, github.com/kognise/frozone,num_dependents_deps.dev:0 github.com/kognise/git-yoink,num_dependents_deps.dev:0 github.com/kognise/neocel,num_dependents_deps.dev:0 +github.com/kognise/neocities-deploy-action, github.com/kognise/p2psc,num_dependents_deps.dev:0 github.com/kognise/repl.it-api, github.com/kognise/s1-connect, @@ -712236,6 +725237,7 @@ github.com/kogosoftwarellc/react-selectize2,num_dependents_deps.dev:0 github.com/kogosoftwarellc/run-cucumber,num_dependents_deps.dev:0 github.com/kogosoftwarellc/run-react-native,num_dependents_deps.dev:0 github.com/kogsio/utilities,num_dependents_deps.dev:0 +github.com/koh-sh/codebuild-multirunner, github.com/koh110/japanese-date,num_dependents_deps.dev:0 github.com/koh110/outerclick,num_dependents_deps.dev:0 github.com/koh110/rcmd,num_dependents_deps.dev:0 @@ -712253,6 +725255,7 @@ github.com/kohbanye/light-up-solver,num_dependents_deps.dev:0 github.com/kohbis/dimg,num_dependents_deps.dev:0 github.com/kohbis/hexo-tag-speakerdeck,num_dependents_deps.dev:0 github.com/kohchihao/nusbuses-api,num_dependents_deps.dev:0 +github.com/kohchihao/tele-status, github.com/kohded/cra-template-js, github.com/kohded/cra-template-ts, github.com/kohei-sato-1221/crypto-trading-golang,num_dependents_deps.dev:0 @@ -712266,6 +725269,7 @@ github.com/koheimorii/go-json-parser,num_dependents_deps.dev:0 github.com/koheimukai/react-media-query,num_dependents_deps.dev:0 github.com/koheimukai/react-responsive,num_dependents_deps.dev:0 github.com/koheing/gin-sample,num_dependents_deps.dev:0 +github.com/koheing/set-masked-env, github.com/koheing/svelte-virtual-infinite-list,num_dependents_deps.dev:0 github.com/koher/swifpy, github.com/kohesive/chillambda,num_dependents_deps.dev:1 @@ -712289,6 +725293,7 @@ github.com/kohkubo/go_test,num_dependents_deps.dev:0 github.com/kohlbacherlab/pysbml4j, github.com/kohler/click,criticality_score:0.586490 github.com/kohler/gifsicle,criticality_score:0.343100 +github.com/kohlerdominik/docker-run-action, github.com/kohlmannj/HTMLHint,num_dependents_deps.dev:0 github.com/kohlmannj/IntersectionObserver,num_dependents_deps.dev:0 github.com/kohlmannj/aphrodite-jss, @@ -712326,6 +725331,8 @@ github.com/kohofinancial/errors,num_dependents_deps.dev:0 github.com/kohofinancial/kexperiments, github.com/kohpai/est,num_dependents_deps.dev:0 github.com/kohrongying/pokeipsum,num_dependents_deps.dev:0 +github.com/kohrongying/py-lambda-action, +github.com/kohrongying/readme-the-rss, github.com/kohs100/dlcache-go,num_dependents_deps.dev:0 github.com/kohs100/heartjump-go,num_dependents_deps.dev:0 github.com/kohsuke/args4j,criticality_score:0.368690 @@ -712373,6 +725380,7 @@ github.com/koinos/koinos-types-golang,num_dependents_deps.dev:1 github.com/koinos/koinos-util-golang,num_dependents_deps.dev:0 github.com/koinotice/wedex,num_dependents_deps.dev:0 github.com/koiralamandip/MenuBar_webModule,num_dependents_deps.dev:0 +github.com/koiralaprt/sonarscan, github.com/koirikivi/brainfuck, github.com/koirikivi/mocktail, github.com/koirikivi/stupidity, @@ -712480,6 +725488,7 @@ github.com/kojoru/ng-bs-daterangepicker,num_dependents_deps.dev:0 github.com/kojunhyun/Binarized_Neural_Network-tensorflow_keras, github.com/kok-stack/event-gateway,num_dependents_deps.dev:0 github.com/kok-stack/native-kubelet,num_dependents_deps.dev:0 +github.com/kok-xiong/bitly-shortener-action, github.com/kok32gold/directory-traversal-js,num_dependents_deps.dev:0 github.com/kok42/genetic-search, github.com/koka-lang/koka,criticality_score:0.560790 @@ -712500,6 +725509,8 @@ github.com/kokellab/dscience, github.com/kokes/smda,num_dependents_deps.dev:0 github.com/kokeshii/scriptkit, github.com/koketani/playground-oss,num_dependents_deps.dev:0 +github.com/koki-develop/hub-purge-action, +github.com/koki-develop/push-pocket-action, github.com/koki-ogura/lsd-bme280,num_dependents_deps.dev:0 github.com/koki-ogura/lsd-mcp3425,num_dependents_deps.dev:0 github.com/koki-sato/tinet-rb,num_dependents_deps.dev:0 @@ -712539,6 +725550,7 @@ github.com/koko-u/snippetbox,num_dependents_deps.dev:0 github.com/kokocares/keywords-client, github.com/kokog78/ibello-api,num_dependents_deps.dev:0 github.com/kokog78/ibello-gradle-plugin,num_dependents_deps.dev:0 +github.com/kokoichi206/action-URL-watcher, github.com/kokoichi206/go-web-app,num_dependents_deps.dev:0 github.com/kokokele/cherry,num_dependents_deps.dev:0 github.com/kokokele/getLocalIP,num_dependents_deps.dev:0 @@ -712712,6 +725724,7 @@ github.com/kolesa-team/monstache,num_dependents_deps.dev:0 github.com/kolesnik-tim/generator-nick,num_dependents_deps.dev:0 github.com/kolesnikdmitriy/algorithms,num_dependents_deps.dev:0 github.com/kolesnikdmitriy/item,num_dependents_deps.dev:0 +github.com/kolesnikov-pasha/github-pr-linker, github.com/kolesnikovav/vuetify-numeric,num_dependents_deps.dev:0 github.com/kolesnikovav/vuetify-toolkit,num_dependents_deps.dev:0 github.com/kolesnikovde/d-heap,num_dependents_deps.dev:1 @@ -712884,6 +725897,7 @@ github.com/kolofordjango/kolo, github.com/kolohelios/react-native-local-api,num_dependents_deps.dev:0 github.com/kolohelios/react-native-recoil-flipper-client,num_dependents_deps.dev:0 github.com/kolohelios/react-native-wifi-tools,num_dependents_deps.dev:0 +github.com/kolok/deploy-to-scalingo, github.com/kolomied/awesome-cdk,criticality_score:0.385740 github.com/kolomied/cdk-sqlserver-seeder,num_dependents_deps.dev:0 github.com/kolomied/cdk-stepfunctions-patterns,num_dependents_deps.dev:0 @@ -712924,6 +725938,7 @@ github.com/kolowy/logmanager,num_dependents_deps.dev:0 github.com/koloyyee/gobook,num_dependents_deps.dev:0 github.com/koloyyee/learngobytest,num_dependents_deps.dev:0 github.com/koloyyee/pwgen,num_dependents_deps.dev:0 +github.com/kolpav/purge-artifacts-action, github.com/kolpax/exec-stream,num_dependents_deps.dev:0 github.com/kolplattformen/api-hooks,num_dependents_deps.dev:0 github.com/kolplattformen/curriculum, @@ -713067,6 +726082,7 @@ github.com/komapijs/komapi,num_dependents_deps.dev:0 github.com/komapijs/komapi-passport,num_dependents_deps.dev:0 github.com/komapper/komapper,num_dependents_deps.dev:189 github.com/komarekj/React-Shopify-Auth-Hook,num_dependents_deps.dev:0 +github.com/komarnitskyi/action-mattermost-notification, github.com/komarnitskyi/postcss-content-entity,num_dependents_deps.dev:0 github.com/komarov-fl/all-purpose-migrations,num_dependents_deps.dev:0 github.com/komarov-fl/exec-note,num_dependents_deps.dev:0 @@ -713128,6 +726144,7 @@ github.com/komish/demo-multiverse-operator,num_dependents_deps.dev:0 github.com/komish/preflight,num_dependents_deps.dev:0 github.com/komish/test-crane,num_dependents_deps.dev:0 github.com/komissarex/snaql-migration, +github.com/komiya-atsushi/action-enforce-timeout-minutes, github.com/komiya-atsushi/lz4-ruby,num_dependents_deps.dev:2 github.com/komiya-atsushi/node-marisa-trie,num_dependents_deps.dev:0 github.com/komiya-atsushi/typeorm-logger-adaptor,num_dependents_deps.dev:0 @@ -713193,6 +726210,7 @@ github.com/komoot/leaflet.photon,num_dependents_deps.dev:0 github.com/komoot/photon,criticality_score:0.522690 github.com/komoot/typeahead-address-photon, github.com/komoot/yamlcf, +github.com/komorebitech/read-files-action, github.com/komosa/cf,num_dependents_deps.dev:0 github.com/komoto48g/mwxlib, github.com/kompa3/npm-bug-6575-gyp-module,num_dependents_deps.dev:0 @@ -713267,6 +726285,7 @@ github.com/konan8205/xingapi-rs,num_dependents_deps.dev:0 github.com/konanc-config/konanc-config, github.com/konanzheng/text-split,num_dependents_deps.dev:0 github.com/konapun/orbital-frame,num_dependents_deps.dev:0 +github.com/konarshankar07/magento2-static-test-action, github.com/konas/twless, github.com/konatsup/compe,num_dependents_deps.dev:0 github.com/konawasabi/kobushi-trackviewer, @@ -713356,6 +726375,7 @@ github.com/konevov/module02,num_dependents_deps.dev:0 github.com/konexmedia/fastbill, github.com/konexmedia/living,num_dependents_deps.dev:0 github.com/konexmedia/mandatory,num_dependents_deps.dev:4 +github.com/konfer-be/action-create-release-from-tag, github.com/konfer-be/cliam,num_dependents_deps.dev:0 github.com/konfer-be/kbox,num_dependents_deps.dev:0 github.com/konfer-be/kem,num_dependents_deps.dev:0 @@ -713469,6 +726489,7 @@ github.com/kongnet/skybase-template,num_dependents_deps.dev:0 github.com/kongnet/skyrts,num_dependents_deps.dev:0 github.com/kongo09/dell-printer, github.com/kongo09/hhs-vertretungsplan, +github.com/kongo2002/flcheck-action, github.com/kongou-ae/redpen-validator,num_dependents_deps.dev:0 github.com/kongpf8848/rxjava2-math,num_dependents_deps.dev:0 github.com/kongqingtian/mysql-qp,num_dependents_deps.dev:0 @@ -713512,6 +726533,8 @@ github.com/konishchevdmitry/server-metrics,num_dependents_deps.dev:0 github.com/konitter/gulp-combine-media-queries,num_dependents_deps.dev:6 github.com/konitter/gulp-styledocco,num_dependents_deps.dev:0 github.com/koniyan/go-astits,num_dependents_deps.dev:0 +github.com/konjoinfinity/mark-discussion-comment-answer, +github.com/konjoinfinity/random-unicode-text-generator, github.com/konjoot/jasmine-sugar,num_dependents_deps.dev:0 github.com/konk353535/rai-checkout,num_dependents_deps.dev:0 github.com/konkers/usb2snes-rs,num_dependents_deps.dev:0 @@ -713619,6 +726642,8 @@ github.com/konradmalik/mlfix, github.com/konradmalik/py4envi, github.com/konradmy/typedb-query-builder, github.com/konradovsky/Scroll_Top,num_dependents_deps.dev:0 +github.com/konradpabjan/actions-add-new-issue-to-column, +github.com/konradpabjan/move-labeled-or-milestoned-issue, github.com/konradpodgorski/grunt-decompress,num_dependents_deps.dev:0 github.com/konrads/go-rate-limiter,num_dependents_deps.dev:0 github.com/konrads/go-tagged-articles,num_dependents_deps.dev:0 @@ -713645,6 +726670,7 @@ github.com/konsorten/ktn-build-info,num_dependents_deps.dev:0 github.com/konsorten/sevdesk-voucher-upload,num_dependents_deps.dev:0 github.com/konsorten/sevdesk-voucher-upload-cli,num_dependents_deps.dev:0 github.com/konstaniliya/project,num_dependents_deps.dev:0 +github.com/konstankinollc/diff-actor, github.com/konstantgr/cst_geometry_manager, github.com/konstantin-hatvan/traceability-tool,num_dependents_deps.dev:0 github.com/konstantin-hatvan/tracey-plugin-breadcrumbs,num_dependents_deps.dev:0 @@ -713746,6 +726772,7 @@ github.com/konstellation-io/kwc,num_dependents_deps.dev:0 github.com/konstellation/konstellation,num_dependents_deps.dev:0 github.com/konstellio/konstellio,num_dependents_deps.dev:4 github.com/konstellio/littletravis,num_dependents_deps.dev:0 +github.com/konstfish/quartz-build-action, github.com/konstkonst55/project,num_dependents_deps.dev:0 github.com/konstructorjs/assets,num_dependents_deps.dev:0 github.com/konstructorjs/error,num_dependents_deps.dev:0 @@ -713760,6 +726787,7 @@ github.com/konstructorjs/marko,num_dependents_deps.dev:0 github.com/konstructorjs/router,num_dependents_deps.dev:0 github.com/konstructorjs/static,num_dependents_deps.dev:0 github.com/konstrukthub/kitchen-sink,num_dependents_deps.dev:0 +github.com/konstruktoid/action-pylint, github.com/konstruktoid/hardening,criticality_score:0.393010 github.com/konstsem/project-lvl1-s208,num_dependents_deps.dev:0 github.com/konstsem/project-lvl2-s225, @@ -713856,6 +726884,7 @@ github.com/kontextr/ktxtr-eslint-config,num_dependents_deps.dev:0 github.com/kontextr/ktxtr-eslint-plugins,num_dependents_deps.dev:0 github.com/kontheocharis/notion_scheduler, github.com/kontheocharis/powar, +github.com/kontial/github-action-sftp, github.com/kontiko/Kerbal-Extension-Manager, github.com/kontinue/hello-world,num_dependents_deps.dev:0 github.com/kontinuity/react-native-agenda,num_dependents_deps.dev:0 @@ -713877,6 +726906,7 @@ github.com/kontraster/kontraster-cli,num_dependents_deps.dev:0 github.com/kontrollanten/algolia-places-react,num_dependents_deps.dev:0 github.com/kontrollanten/babel-plugin-preact-fragment,num_dependents_deps.dev:0 github.com/kontrollanten/electron-context-menu-handler,num_dependents_deps.dev:0 +github.com/kontrolplane/pull-request-title-validator, github.com/kontron/python-aardvark, github.com/kontron/python-ipmi, github.com/kontsevoye/ym-api,num_dependents_deps.dev:0 @@ -713955,6 +726985,7 @@ github.com/kooksee/uscoin,num_dependents_deps.dev:0 github.com/kooksee/usmint,num_dependents_deps.dev:0 github.com/kookyleo/calculagraph,num_dependents_deps.dev:0 github.com/kookyleo/parser4curls,num_dependents_deps.dev:0 +github.com/kool-dev/action, github.com/kool79/appium-xcuitest-driver,num_dependents_deps.dev:0 github.com/koola/pix-diff,num_dependents_deps.dev:2 github.com/koola/pix-shot,num_dependents_deps.dev:0 @@ -713988,6 +727019,7 @@ github.com/koomox/ext,num_dependents_deps.dev:0 github.com/koomox/goproxy,num_dependents_deps.dev:0 github.com/koon64/nginx-conf-gen,num_dependents_deps.dev:0 github.com/koonchen/dubbo-go,num_dependents_deps.dev:0 +github.com/koonchen/hugo-article-from-issue-action, github.com/koonuf/net-ticks,num_dependents_deps.dev:0 github.com/koonuf/parallel-io,num_dependents_deps.dev:0 github.com/koonuf/quick-src,num_dependents_deps.dev:0 @@ -714161,6 +727193,8 @@ github.com/kootstra/robotframework-allurereport, github.com/kooyooha/kv-ui-multiend,num_dependents_deps.dev:0 github.com/koozaki/romaji-conv,num_dependents_deps.dev:0 github.com/koozz/mgit,num_dependents_deps.dev:0 +github.com/koozz/opa-action, +github.com/koozz/yamllint-action, github.com/kop/node-12factor-config,num_dependents_deps.dev:0 github.com/kop/node-twelve-config, github.com/kop/node-twelve-factor-config,num_dependents_deps.dev:0 @@ -714194,6 +727228,8 @@ github.com/kopeio/networking,num_dependents_deps.dev:0 github.com/kopenkinda/create-react-app,num_dependents_deps.dev:0 github.com/kopenkinda/data-structures,num_dependents_deps.dev:0 github.com/kopenkinda/steam-2fa-cli, +github.com/kopepasah/setup-pantheon-terminus, +github.com/kopepasah/setup-secure-shell, github.com/kopera/react-native-dnssd,num_dependents_deps.dev:0 github.com/kopernio/pytest-hoverfly-wrapper, github.com/kopertop/MultiProcSysLogHandler, @@ -714289,6 +727325,7 @@ github.com/korakot/icut, github.com/korakot/luangpor, github.com/korakot/nb2, github.com/korakot/wy, +github.com/koraktor/gallerist, github.com/koraktor/geist,num_dependents_deps.dev:0 github.com/koraktor/mavanagaiata,num_dependents_deps.dev:0 github.com/koraktor/metior,num_dependents_deps.dev:0 @@ -714296,6 +727333,7 @@ github.com/koraktor/rbzip2,num_dependents_deps.dev:24 github.com/koraktor/rubikon,num_dependents_deps.dev:0 github.com/koraktor/silo,num_dependents_deps.dev:0 github.com/koraktor/steam-condenser,num_dependents_deps.dev:0 +github.com/koraktor/steam-condenser-php, github.com/koral--/ReLinker,num_dependents_deps.dev:11 github.com/koral--/android-gif-drawable,"criticality_score:0.423950,num_dependents_deps.dev:22" github.com/koral--/android-gradle-localization-plugin,num_dependents_deps.dev:0 @@ -714304,11 +727342,16 @@ github.com/koral--/mockwebserverplus,num_dependents_deps.dev:0 github.com/koralpc/shapley-bootstrapping, github.com/koramit/Palitday,num_dependents_deps.dev:0 github.com/korandiz/v4l,num_dependents_deps.dev:1 +github.com/korandoru/hawkeye, +github.com/korandoru/setup-zig, github.com/koranus/PixelFrame,num_dependents_deps.dev:0 github.com/korasinski/pyNetia, github.com/koraybolat/v-mask-tr,num_dependents_deps.dev:0 github.com/koraygocmen/image,num_dependents_deps.dev:0 github.com/korayguclu/yahoo-dl,num_dependents_deps.dev:0 +github.com/koraykoska/retag-docker-image, +github.com/koraykoska/s3-upload-github-action, +github.com/koraykoska/secure-actions-webhook, github.com/koraykupe/vue2-scrollspy,num_dependents_deps.dev:0 github.com/koraykural/papara-wrapper,num_dependents_deps.dev:0 github.com/koraysels/node-red-contrib-array-grouper,num_dependents_deps.dev:0 @@ -714329,6 +727372,7 @@ github.com/korbinzhao/generator-reactwebpack4typescript,num_dependents_deps.dev: github.com/korbinzhao/generator-vuemultipage,num_dependents_deps.dev:0 github.com/korbinzhao/generator-vueui,num_dependents_deps.dev:0 github.com/korbinzhao/mxgraph-editor, +github.com/korbit-ai/korbit-mentor-action, github.com/korbster/discoruns, github.com/korc/onefile-websrv,num_dependents_deps.dev:0 github.com/korc/pr-dnsd,num_dependents_deps.dev:0 @@ -714347,12 +727391,15 @@ github.com/korczis/microscratch,num_dependents_deps.dev:0 github.com/korczis/peg-loader,num_dependents_deps.dev:0 github.com/korczis/peg-parser,num_dependents_deps.dev:0 github.com/kord-network/kord.js,num_dependents_deps.dev:2 +github.com/kordamp/desktoppanefx, github.com/kordamp/enforcer-gradle-plugin,num_dependents_deps.dev:0 github.com/kordamp/ezmorph,num_dependents_deps.dev:0 +github.com/kordamp/gipsy, github.com/kordamp/gm,num_dependents_deps.dev:0 github.com/kordamp/gum,num_dependents_deps.dev:0 github.com/kordamp/ikonli,"criticality_score:0.423990,num_dependents_deps.dev:52" github.com/kordamp/jipsy,num_dependents_deps.dev:4 +github.com/kordamp/json-lib, github.com/kordamp/kordamp-parent,num_dependents_deps.dev:0 github.com/kordamp/pomchecker,num_dependents_deps.dev:0 github.com/kordero/hubot-worklist,num_dependents_deps.dev:0 @@ -714413,6 +727460,8 @@ github.com/koregvg/xssfw,num_dependents_deps.dev:0 github.com/korelinv/PromiseMe,num_dependents_deps.dev:0 github.com/korelinv/cukejs,num_dependents_deps.dev:0 github.com/korelinv/read-dirs,num_dependents_deps.dev:0 +github.com/korelstar/phplint-problem-matcher, +github.com/korelstar/xmllint-problem-matcher, github.com/korenev6052/ndse-1,num_dependents_deps.dev:0 github.com/korenyushkin/synquelize,num_dependents_deps.dev:0 github.com/korero/corpora-ccp,Google @@ -714540,6 +727589,7 @@ github.com/korney197823/frontend-project-lvl1,num_dependents_deps.dev:0 github.com/kornia/kornia,criticality_score:0.536530 github.com/kornia/kornia-rs, github.com/kornicameister/asyncpg-migrate, +github.com/kornicameister/gh-secrets-action, github.com/kornicameister/loguru-mypy, github.com/kornienko199004/project-lvl1-s224,num_dependents_deps.dev:0 github.com/kornienko199004/project-lvl2-s245,num_dependents_deps.dev:0 @@ -714604,6 +727654,7 @@ github.com/korosuke613/playground,num_dependents_deps.dev:0 github.com/korosuke613/tempura,num_dependents_deps.dev:0 github.com/korosuke613/trekin,num_dependents_deps.dev:0 github.com/korosuke613/zenn-metadata-updater,num_dependents_deps.dev:0 +github.com/korosuke613/zenn-metadata-updater-action, github.com/korovkin/forever,num_dependents_deps.dev:0 github.com/korovkin/parallel,num_dependents_deps.dev:0 github.com/korpiq/python-datafaser, @@ -714648,6 +727699,7 @@ github.com/korrelate/phoenix-rb,num_dependents_deps.dev:0 github.com/korriganed/broceliande,num_dependents_deps.dev:0 github.com/korrosivesec/cetus-cearcher, github.com/korroz/biew,num_dependents_deps.dev:0 +github.com/korsakjakub/gpt-storify, github.com/korsback/go_api_test,num_dependents_deps.dev:0 github.com/korsbo/Latexify.jl,criticality_score:0.510600 github.com/korservick/zoom-proxy,num_dependents_deps.dev:0 @@ -714655,6 +727707,7 @@ github.com/korshunov/dummy-corsproxy, github.com/korshunov/json2text,num_dependents_deps.dev:0 github.com/korsmed/afinn, github.com/korsvanloon/schema-generate,num_dependents_deps.dev:0 +github.com/korthout/backport-action, github.com/korthout/cantis,num_dependents_deps.dev:0 github.com/kortina/mixpanel-python, github.com/kortirso/moex_api,num_dependents_deps.dev:0 @@ -714823,7 +727876,9 @@ github.com/koskenni/twol, github.com/koslab/platocdp.newsportlet, github.com/koslab/platocdp.timesheet, github.com/kosletr/seham,num_dependents_deps.dev:0 +github.com/kosli-dev/setup-cli-action, github.com/koslib/ga-dtfy,num_dependents_deps.dev:0 +github.com/koslib/helm-eks-action, github.com/koslibpro/django-traffic, github.com/koslo/node-red-contrib-time-controller,num_dependents_deps.dev:0 github.com/kosma/gitlab-art, @@ -714872,6 +727927,7 @@ github.com/kospiotr/swagger-spec-generator,num_dependents_deps.dev:0 github.com/kospiotr/webix-state-renderer,num_dependents_deps.dev:0 github.com/kosprov/jargon2-api,num_dependents_deps.dev:4 github.com/kosprov/jargon2-backends,num_dependents_deps.dev:14 +github.com/kosratdev/larave-deploy-migrate, github.com/koss-lebedev/bootstrap-duration-picker,num_dependents_deps.dev:0 github.com/koss-lebedev/gitfix,num_dependents_deps.dev:0 github.com/koss-lebedev/paysimple-ruby,num_dependents_deps.dev:0 @@ -714948,6 +728004,7 @@ github.com/kostachirkin/issue_trackers_module,num_dependents_deps.dev:0 github.com/kostajh/pyac, github.com/kostalavista/crybi-modules,num_dependents_deps.dev:0 github.com/kostaleonard/adjutant, +github.com/kostaleonard/backseat-driver-action, github.com/kostaleonard/dogwood, github.com/kostaleonard/mlops, github.com/kostamiron/goutils,num_dependents_deps.dev:0 @@ -715020,6 +728077,7 @@ github.com/kostyaesmukov/smtp_to_telegram,num_dependents_deps.dev:0 github.com/kostyaev/simple_camera, github.com/kostyantyn/PredictionIO-NodeJS-Client,num_dependents_deps.dev:0 github.com/kostyantyn/hydra_attribute,num_dependents_deps.dev:0 +github.com/kostyaten/ssh-server-deploy, github.com/kostyay/zapdriver,num_dependents_deps.dev:0 github.com/kosua20/MIDIVisualizer,criticality_score:0.329690 github.com/kosuha606/js-virtual-model,num_dependents_deps.dev:0 @@ -715059,9 +728117,18 @@ github.com/kot0/tools,num_dependents_deps.dev:0 github.com/kot13/tic-tac-toe-minimax,num_dependents_deps.dev:0 github.com/kot83/megumin.py, github.com/kotAPI/vue-scout,num_dependents_deps.dev:0 +github.com/kota-yata/ipfs-action, github.com/kota-yata/iso-639-1-jp,num_dependents_deps.dev:0 github.com/kota-yata/neornd,num_dependents_deps.dev:0 github.com/kota-yata/percom,num_dependents_deps.dev:0 +github.com/kota65535/github-asdf-parse-action, +github.com/kota65535/github-git-config-action, +github.com/kota65535/github-openvpn-connect-action, +github.com/kota65535/github-template-rename-action, +github.com/kota65535/github-template-sync-action, +github.com/kota65535/github-terraform-plan-comment-action, +github.com/kota65535/github-terraform-plan-slack-action, +github.com/kota65535/github-workflow-dispatch-slack-action, github.com/kota65535/openapi-merger,num_dependents_deps.dev:0 github.com/kota7/episodescript, github.com/kota7/gdriveaudio, @@ -715099,6 +728166,7 @@ github.com/kotarac/slicica,num_dependents_deps.dev:0 github.com/kotarac/totp,num_dependents_deps.dev:0 github.com/kotarella1110/cordova-plugin-webpack,num_dependents_deps.dev:0 github.com/kotarella1110/eslint-plugin-react-form-fields,num_dependents_deps.dev:0 +github.com/kotarella1110/pr-voyager, github.com/kotarella1110/typesafe-storage,num_dependents_deps.dev:0 github.com/kotarella1110/use-custom-compare,num_dependents_deps.dev:0 github.com/kotarella1110/use-simple-infinite-scroll,num_dependents_deps.dev:0 @@ -715284,6 +728352,7 @@ github.com/kotoo/glitchbitch,num_dependents_deps.dev:0 github.com/kotori-y/Scopy, github.com/kotori-y/pysmash, github.com/kotorieclair/kss-jade-react-generator,num_dependents_deps.dev:0 +github.com/kotorkovsciy/github-set-proxy-conf-angular, github.com/kotovalexarian/digest-blake2b.rb,num_dependents_deps.dev:0 github.com/kotovalexarian/digest-keccak.rb,num_dependents_deps.dev:0 github.com/kotovalexarian/protoloop,num_dependents_deps.dev:0 @@ -715384,6 +728453,7 @@ github.com/kouhin/with-query,num_dependents_deps.dev:2 github.com/kouhirose/gacha,num_dependents_deps.dev:0 github.com/kouhot/simple-react-native-emoji,num_dependents_deps.dev:0 github.com/kouichi-c/hello-wasm,num_dependents_deps.dev:0 +github.com/kouki-dan/git-issue-release, github.com/kouki-dan/next-page-to-firebase-rewrite-rule,num_dependents_deps.dev:0 github.com/koukikitamura/autify-cli,num_dependents_deps.dev:0 github.com/koukikitamura/styled-modal-react,num_dependents_deps.dev:0 @@ -715572,6 +728642,7 @@ github.com/kovacszsolt/icon-font-generator,num_dependents_deps.dev:0 github.com/kovadarra/pupquiz, github.com/kovah/corporatelorem,num_dependents_deps.dev:0 github.com/kovah/devlorem,num_dependents_deps.dev:0 +github.com/kovalchukum/podcast-generator, github.com/kovalenkong/roman-nums, github.com/kovalev-alexey/images-compression,num_dependents_deps.dev:0 github.com/kovalev-sergey/breezart-client,num_dependents_deps.dev:0 @@ -715590,6 +728661,7 @@ github.com/kovarp/hellofront,num_dependents_deps.dev:0 github.com/kovarp/jquery.cookieBar,num_dependents_deps.dev:0 github.com/kovarp/utilities,num_dependents_deps.dev:0 github.com/kovart/sticksy,num_dependents_deps.dev:0 +github.com/kovatoch/podcast-generator, github.com/kovaveikko/react-radio-select,num_dependents_deps.dev:0 github.com/kovboyjder/eslint-no-bad-naming,num_dependents_deps.dev:0 github.com/kovboyjder/ui5-middleware-code-coverage,num_dependents_deps.dev:0 @@ -715646,7 +728718,9 @@ github.com/kowa1ski/kowa1ski-Platsom,num_dependents_deps.dev:0 github.com/kowainik/learn4haskell,criticality_score:0.303190 github.com/kowainik/relude,criticality_score:0.372480 github.com/kowainik/stan,criticality_score:0.341140 +github.com/kowainik/stan-action, github.com/kowainik/summoner,criticality_score:0.427460 +github.com/kowalczyk-krzysztof/ssl-certificate-check, github.com/kowalevski/formik-ui,num_dependents_deps.dev:0 github.com/kowalpy/Robot-Framework-JMeter-Library, github.com/kowalski50/cplx-alert, @@ -715659,6 +728733,7 @@ github.com/kown7/rmtoo, github.com/kownacki/module-available,num_dependents_deps.dev:18 github.com/kownacki/true-typeof,num_dependents_deps.dev:0 github.com/kowoohyuk/range-slider,num_dependents_deps.dev:0 +github.com/kowsheek/aws-security-group-action, github.com/kowy/goodb,num_dependents_deps.dev:0 github.com/koxa/onemodel, github.com/koxa/universalmodel,num_dependents_deps.dev:0 @@ -715672,6 +728747,7 @@ github.com/koxudaxi/py-data-api, github.com/koxudaxi/pydantic-collection, github.com/koyadovic/diainjector, github.com/koyashiro/postgres-playground,num_dependents_deps.dev:0 +github.com/koyashiro/vpm-repos-gen-action, github.com/koyeb/koyeb-api-client-go,num_dependents_deps.dev:0 github.com/koyeb/koyeb-cli,num_dependents_deps.dev:0 github.com/koyeb/kreconciler,num_dependents_deps.dev:0 @@ -715741,6 +728817,7 @@ github.com/kozakana/hugo-lunr-index,num_dependents_deps.dev:0 github.com/kozakdenys/qr-code-styling,num_dependents_deps.dev:2 github.com/kozakl/js-net, github.com/kozakl/js-vimeo,num_dependents_deps.dev:0 +github.com/kozakl/launch-url-action, github.com/kozakl/node-utils,num_dependents_deps.dev:0 github.com/kozakl/react-components,num_dependents_deps.dev:0 github.com/kozakl/react-hooks,num_dependents_deps.dev:0 @@ -715860,6 +728937,7 @@ github.com/kpawlik/pgweb,num_dependents_deps.dev:0 github.com/kpaxqin/redux-action-tools,num_dependents_deps.dev:4 github.com/kpaxqin/redux-promise-thunk,num_dependents_deps.dev:0 github.com/kpbird/pcache,num_dependents_deps.dev:0 +github.com/kpbode/command-exists, github.com/kpbode/kickstart-ts, github.com/kpccoil/shake-to-scroll,num_dependents_deps.dev:0 github.com/kpchee/frr_exporter,num_dependents_deps.dev:0 @@ -715949,6 +729027,8 @@ github.com/kpedrozag/myfirstpkg, github.com/kpekarov/django-bootstrap-email, github.com/kpelelis/babel-plugin-remote-import,num_dependents_deps.dev:0 github.com/kpelzel/grpckrb,num_dependents_deps.dev:0 +github.com/kpenfound/action-homebrew-bump-formula, +github.com/kpenfound/automerge-action, github.com/kpeng/node-ringbuffer,num_dependents_deps.dev:0 github.com/kpeng2019/LAS, github.com/kperch/node-open-pixel-control,num_dependents_deps.dev:0 @@ -715964,6 +729044,8 @@ github.com/kpeu3i/radio-streamer,num_dependents_deps.dev:0 github.com/kpfaulkner/ddlog,num_dependents_deps.dev:0 github.com/kpfaulkner/gobot,num_dependents_deps.dev:0 github.com/kpfaulkner/mcstress,num_dependents_deps.dev:0 +github.com/kpfaulkner/precious, +github.com/kpfaulkner/releasemonitor, github.com/kpfefferle/ember-cli-deploy-aws-pack,num_dependents_deps.dev:0 github.com/kpfefferle/ember-cli-deploy-cloudfront,num_dependents_deps.dev:0 github.com/kpfefferle/ember-cli-fill-murray, @@ -715991,6 +729073,7 @@ github.com/kpherox/twitter-user-crawler,num_dependents_deps.dev:0 github.com/kphongph/level-logdb,num_dependents_deps.dev:0 github.com/kphongph/leveldb-index,num_dependents_deps.dev:0 github.com/kphretiq/quartermaster, +github.com/kphrx/docker-buildx-imagetools-action, github.com/kphungry/react-native-MultiTapComponent,num_dependents_deps.dev:0 github.com/kpi-intelligence/handsontable-key-value,num_dependents_deps.dev:0 github.com/kpi-io/kpi-node,num_dependents_deps.dev:0 @@ -716045,6 +729128,7 @@ github.com/kplindegaard/smbus2,Google github.com/kplxq/talos,num_dependents_deps.dev:0 github.com/kpm-at-hfi/node-red-contrib-azure-iot-edge-kpm,num_dependents_deps.dev:0 github.com/kpm-at-hfi/pt2,num_dependents_deps.dev:0 +github.com/kpm-tools/shortcut-action, github.com/kpman/git-gan,num_dependents_deps.dev:0 github.com/kpman/newsroom,num_dependents_deps.dev:0 github.com/kpman/react-redux-sweetalert,num_dependents_deps.dev:0 @@ -716096,6 +729180,7 @@ github.com/kpressouyre/nornir_akamai, github.com/kprestel/pytest-docker-db, github.com/kprimice/react-native-sensor-manager,num_dependents_deps.dev:0 github.com/kprince/gowechat,num_dependents_deps.dev:0 +github.com/kpritam/slack-job-status-action, github.com/kpriyacdac/censorify,num_dependents_deps.dev:0 github.com/kpriyacdac/kpriyamodule,num_dependents_deps.dev:0 github.com/kpriyacdac/sammodule,num_dependents_deps.dev:0 @@ -716126,6 +729211,7 @@ github.com/kpture/kpture-proxy,num_dependents_deps.dev:0 github.com/kpture/kpture-server,num_dependents_deps.dev:0 github.com/kpu/kenlm,criticality_score:0.531620 github.com/kpu/lazy,Google +github.com/kpucynski/action-ha-config-check, github.com/kpuda/learning_git,num_dependents_deps.dev:0 github.com/kpudlik/ngx-reactive-decorators,num_dependents_deps.dev:0 github.com/kpulkit29/Flash-Loader,num_dependents_deps.dev:0 @@ -716137,6 +729223,7 @@ github.com/kpumuk/sphinx,num_dependents_deps.dev:0 github.com/kpuputti/node-exec-all,num_dependents_deps.dev:0 github.com/kpurdon/apir,num_dependents_deps.dev:0 github.com/kpurdon/iapap,num_dependents_deps.dev:0 +github.com/kpurdon/openapi-generator-action, github.com/kputnam/piggly,num_dependents_deps.dev:0 github.com/kpvarma/handy-css-rails,num_dependents_deps.dev:2 github.com/kpym/gm,num_dependents_deps.dev:0 @@ -716570,6 +729657,7 @@ github.com/krancour/brigade,num_dependents_deps.dev:0 github.com/krancour/go-parrot,num_dependents_deps.dev:0 github.com/krande/adapy, github.com/krandom/react-checkbox,num_dependents_deps.dev:0 +github.com/krane/action, github.com/krane/cli,num_dependents_deps.dev:0 github.com/krane/common,num_dependents_deps.dev:0 github.com/krane/krane,num_dependents_deps.dev:0 @@ -716698,6 +729786,7 @@ github.com/krasovsky22/experiment-css-responsive-plane,num_dependents_deps.dev:0 github.com/krasovsky22/experiment-loading,num_dependents_deps.dev:0 github.com/krasovsky22/experiment-page-not-found,num_dependents_deps.dev:0 github.com/krasovsky22/experiment-parallax-depth-card,num_dependents_deps.dev:0 +github.com/krassdanke/mongosh-command-action, github.com/krasserm/streamz,criticality_score:0.331960 github.com/krasserp/r-script-forge, github.com/krassowski/data-vault, @@ -716741,6 +729830,7 @@ github.com/krateng/proxymloxy, github.com/krateng/stapomog, github.com/krateng/vermeer, github.com/krateng/yeonji, +github.com/krateoplatformops/helm-values-validator-action, github.com/kratiahuja/broccoli-tslinter,num_dependents_deps.dev:12 github.com/kratiahuja/ember-cli-string-module-loader,num_dependents_deps.dev:0 github.com/kratiahuja/ember-fast-load-initializer,num_dependents_deps.dev:0 @@ -716842,11 +729932,15 @@ github.com/krcurtis/yagdspy, github.com/krdev/checkstyle,num_dependents_deps.dev:0 github.com/krdev/pop3sclient,num_dependents_deps.dev:0 github.com/krdlab/daab-session,num_dependents_deps.dev:0 +github.com/krdlab/setup-haxe, github.com/krdln/command-macros,num_dependents_deps.dev:0 github.com/krdln/fomat-macros,num_dependents_deps.dev:3 github.com/krdln/whiteread,num_dependents_deps.dev:0 github.com/kre8-kubernetes/kre8,num_dependents_deps.dev:0 +github.com/kreait/clock-php, +github.com/kreait/firebase-bundle, github.com/kreait/firebase-php,criticality_score:0.579010 +github.com/kreait/firebase-tokens-php, github.com/kreait/laravel-firebase,criticality_score:0.389330 github.com/kreait/slack-spring-boot-starter,num_dependents_deps.dev:14 github.com/krealseu/actix-loginmanager,num_dependents_deps.dev:0 @@ -716882,6 +729976,7 @@ github.com/kreedz/myshowsapi, github.com/kreeeeeeeees/mypromises6,num_dependents_deps.dev:0 github.com/kreeger/python-rdio, github.com/kreejzak/vue-tailwind-components,num_dependents_deps.dev:0 +github.com/kreemer/backlog-action, github.com/kreezii/jsgam,num_dependents_deps.dev:0 github.com/kreezii/pixi-dragonbones,num_dependents_deps.dev:0 github.com/kreezii/pixi5-dragonbones,num_dependents_deps.dev:0 @@ -717014,9 +730109,12 @@ github.com/krhythm53/krhythm,num_dependents_deps.dev:0 github.com/kriasoft/aspnet-starter-kit,num_dependents_deps.dev:0 github.com/kriasoft/babel-starter-kit,num_dependents_deps.dev:0 github.com/kriasoft/bundle-webpack-plugin,num_dependents_deps.dev:0 +github.com/kriasoft/check-version, github.com/kriasoft/cloudflare-ips,num_dependents_deps.dev:0 github.com/kriasoft/create-data-api,num_dependents_deps.dev:0 +github.com/kriasoft/create-dns-record, github.com/kriasoft/create-hyperapp-starter, +github.com/kriasoft/delete-dns-record, github.com/kriasoft/envars,num_dependents_deps.dev:0 github.com/kriasoft/graphql-starter-kit,num_dependents_deps.dev:0 github.com/kriasoft/hyperapp-render, @@ -717066,6 +730164,7 @@ github.com/kricsleo/hexo-elasticsearch,num_dependents_deps.dev:0 github.com/kricsleo/hexo-generate-json,num_dependents_deps.dev:0 github.com/kricsleo/k-waterfall,num_dependents_deps.dev:0 github.com/kriden/grunt-razorscript,num_dependents_deps.dev:0 +github.com/krider2010/slack-bot-action, github.com/kridt/rainbow,num_dependents_deps.dev:0 github.com/kriechi/garbo,num_dependents_deps.dev:0 github.com/kriechi/git-monitor,num_dependents_deps.dev:0 @@ -717202,6 +730301,7 @@ github.com/kris7ian/tswrangler, github.com/kris8976/learning-git,num_dependents_deps.dev:0 github.com/krisHanJinBo/NB-cli,num_dependents_deps.dev:0 github.com/krisalay/defyne,num_dependents_deps.dev:0 +github.com/krisalay/export-env, github.com/krisalay/multi-proto-grpc-server, github.com/krisalay/thynogger, github.com/krisanalfa/myriad-font,num_dependents_deps.dev:0 @@ -717218,6 +730318,7 @@ github.com/kriscatdog/go-catdog,num_dependents_deps.dev:0 github.com/kriscfoster/ts-schedule,num_dependents_deps.dev:0 github.com/krischer/django-plugins, github.com/krischer/mtspec, +github.com/krisciu/prompt-llama, github.com/krisdages/aurelia-bootstrap,num_dependents_deps.dev:0 github.com/krisdages/aurelia-store, github.com/krisdages/aurelia-table,num_dependents_deps.dev:0 @@ -717774,6 +730875,7 @@ github.com/kristofferh/passwordless-sequelize,num_dependents_deps.dev:0 github.com/kristofferkarlsson93/nodeJs-DependencyLoader,num_dependents_deps.dev:0 github.com/kristofferostlund/recommendli,num_dependents_deps.dev:0 github.com/kristofferostlund/tiny-eventer,num_dependents_deps.dev:0 +github.com/kristoffervfs/semver, github.com/kristofgilicze/github-calendar-web-component,num_dependents_deps.dev:0 github.com/kristofmic/api-limiter,num_dependents_deps.dev:0 github.com/kristofmic/node-env-conf,num_dependents_deps.dev:0 @@ -717910,6 +731012,8 @@ github.com/kriztyahn/react-shopping-cart,num_dependents_deps.dev:0 github.com/krizz/imposm3,num_dependents_deps.dev:0 github.com/krizzdewizz/node-icy-rip,num_dependents_deps.dev:0 github.com/krizzu/adbs,num_dependents_deps.dev:0 +github.com/krizzu/eslint-check-action, +github.com/krizzu/issue-triage-action, github.com/krk/nrf51822,num_dependents_deps.dev:0 github.com/krk/rayon-attr,num_dependents_deps.dev:0 github.com/krkd/async_ttl, @@ -718017,9 +731121,13 @@ github.com/kroegerama/magic-catalogs,num_dependents_deps.dev:0 github.com/kroegerama/openapi-kgen,num_dependents_deps.dev:0 github.com/kroegerama/recycler-swipe-stack,num_dependents_deps.dev:0 github.com/kroepke/luna,num_dependents_deps.dev:0 +github.com/kroese/gitlab-sync, +github.com/kroese/increment, +github.com/kroese/set-variable, github.com/krofdrakula/game-base,num_dependents_deps.dev:0 github.com/krofdrakula/preact-perf-profiler,num_dependents_deps.dev:0 github.com/kroger/devise-bootstrap5,num_dependents_deps.dev:0 +github.com/krogon/semver-release-action, github.com/krohak/CDRT, github.com/krohling/scriptly,num_dependents_deps.dev:0 github.com/kroid/node-injector,num_dependents_deps.dev:0 @@ -718116,6 +731224,7 @@ github.com/kroogs/arcus,num_dependents_deps.dev:0 github.com/kroogs/omniduck,num_dependents_deps.dev:0 github.com/kroogs/xom,num_dependents_deps.dev:0 github.com/kroogs/yaemit,num_dependents_deps.dev:0 +github.com/kroominator/rsync-deployments-simply-com, github.com/kroonprins/mocker,num_dependents_deps.dev:0 github.com/krooq/arty,num_dependents_deps.dev:0 github.com/kropatschek/Homebridge-Controls-Garage-Door-Opener,num_dependents_deps.dev:0 @@ -718256,6 +731365,7 @@ github.com/krujos/scaleover-plugin,num_dependents_deps.dev:0 github.com/krukas/Trionyx, github.com/krukas/Trionyx-Accounts, github.com/krukas/Trionyx-Invoices, +github.com/krukmat/setup-pmd, github.com/krumbot/react-responsive-image-carousel,num_dependents_deps.dev:0 github.com/krumedia/markdown-toc-cli,num_dependents_deps.dev:0 github.com/krumio/cur-ver,num_dependents_deps.dev:0 @@ -718461,6 +731571,7 @@ github.com/krystal/terraform-provider-katapult,num_dependents_deps.dev:0 github.com/krystalcampioni/vue-hotel-datepicker,"criticality_score:0.530340,num_dependents_deps.dev:0" github.com/krystalcampioni/vue-number-input-spinner,num_dependents_deps.dev:0 github.com/krystalgamer/krystal, +github.com/krystalgamer/setup-psptoolchain, github.com/krystalics/krysta,num_dependents_deps.dev:0 github.com/krystalmadrinan-401-advanced-javascript/notes,num_dependents_deps.dev:0 github.com/krystalmejia24/go-crawl,num_dependents_deps.dev:0 @@ -718597,6 +731708,8 @@ github.com/krzywyjez/bonkers-monkey,num_dependents_deps.dev:0 github.com/krzyzanowskim/CryptoSwift,criticality_score:0.534210 github.com/krzyzanowskim/OpenSSL,criticality_score:0.485450 github.com/ks-htk/adventofcode15,num_dependents_deps.dev:0 +github.com/ks-keshava-rao/Jira-description, +github.com/ks-keshava-rao/add-reviewers, github.com/ks-labs/indicative-vue, github.com/ks-no/fiks-digisos-klient,num_dependents_deps.dev:0 github.com/ks-no/fiks-dokumentlager-klient,num_dependents_deps.dev:2 @@ -718617,11 +731730,13 @@ github.com/ks-shim/klay,num_dependents_deps.dev:0 github.com/ks-shim/klay4py, github.com/ks07/alive-pension,num_dependents_deps.dev:0 github.com/ks07/aoe2-ai-fmt, +github.com/ks2211/eks-helm-deploy-action, github.com/ks38/project,num_dependents_deps.dev:0 github.com/ks3sdk/ks3-java-sdk,num_dependents_deps.dev:0 github.com/ks3sdk/ks3-nodejs-sdk,num_dependents_deps.dev:2 github.com/ks3sdklib/aws-sdk-go,num_dependents_deps.dev:2 github.com/ks6088ts/graphql-server-go,num_dependents_deps.dev:0 +github.com/ks6088ts/handson-github-actions, github.com/ks6088ts/newsly-backend,num_dependents_deps.dev:0 github.com/ks6088ts/rest-go,num_dependents_deps.dev:0 github.com/ks6088ts/sandbox-rust,num_dependents_deps.dev:0 @@ -718714,6 +731829,7 @@ github.com/ksbag20/learning-git,num_dependents_deps.dev:0 github.com/ksbg/edpoints, github.com/ksbg/equidistantpoints, github.com/ksbg/sparklanes, +github.com/ksbneo/aws-sam-deploy-action, github.com/ksbulgakov/project-lvl2-s297,num_dependents_deps.dev:0 github.com/ksbulgakov/project-lvl3-s322,num_dependents_deps.dev:0 github.com/ksc-fe/intact-angular,num_dependents_deps.dev:0 @@ -718733,6 +731849,7 @@ github.com/kscarlett/nginx-log-generator,num_dependents_deps.dev:0 github.com/kscarlett/terraform-provider-humid,num_dependents_deps.dev:0 github.com/kscarrot/tdd-lang,num_dependents_deps.dev:0 github.com/ksceriath/json-diff,num_dependents_deps.dev:0 +github.com/kschaer/actions-metrics-otlp, github.com/kschat/trampoline-ts,num_dependents_deps.dev:0 github.com/kschiess/parslet,"criticality_score:0.391610,num_dependents_deps.dev:1744" github.com/kschingiz/artillery-engine-meteor,num_dependents_deps.dev:0 @@ -718876,6 +731993,7 @@ github.com/ksheedlo/readwrite-gif,num_dependents_deps.dev:0 github.com/ksheedlo/simple-keystone-client,num_dependents_deps.dev:0 github.com/ksheedlo/typie,num_dependents_deps.dev:0 github.com/kshehadeh/decay, +github.com/kshehadeh/jekyll-s3-action, github.com/kshehadeh/pyfluence, github.com/kshenoy/vim-signature,criticality_score:0.353070 github.com/ksher-solutions/payment_sdk,num_dependents_deps.dev:0 @@ -718985,6 +732103,8 @@ github.com/ksinica/joy4,num_dependents_deps.dev:0 github.com/ksinn/python-telegram-bot-pagination, github.com/ksirirux/react-native-tags-input,num_dependents_deps.dev:0 github.com/ksirrah13/lending-club-automator,num_dependents_deps.dev:0 +github.com/ksivamuthu/actions-setup-gh-cli, +github.com/ksivamuthu/aws-copilot-github-action, github.com/ksivvi0/statusdetector,num_dependents_deps.dev:0 github.com/ksjdragon/squish, github.com/ksjogo/azure-functions-typescript,num_dependents_deps.dev:0 @@ -718997,6 +732117,8 @@ github.com/ksk001100/ruget,num_dependents_deps.dev:0 github.com/ksk001100/seahorse,num_dependents_deps.dev:0 github.com/kska32/start-mongodb,num_dependents_deps.dev:0 github.com/kskels/pipelines-demos,num_dependents_deps.dev:0 +github.com/kskitek/coverdiff, +github.com/kskitek/screeps-pusher, github.com/ksktada/study,num_dependents_deps.dev:0 github.com/kskull41196/react-native-toast,num_dependents_deps.dev:0 github.com/kskumgk63/kubectl-secret-data,num_dependents_deps.dev:0 @@ -719046,9 +732168,13 @@ github.com/ksliu25/noawsalbumart,num_dependents_deps.dev:0 github.com/ksloan/moment-mini,num_dependents_deps.dev:690 github.com/ksloan/whaatch,num_dependents_deps.dev:0 github.com/ksloveyuan/channelx,num_dependents_deps.dev:0 +github.com/ksm2/archive-action, github.com/ksm2/lohnsteuer,num_dependents_deps.dev:0 github.com/ksm2/metagram,num_dependents_deps.dev:0 github.com/ksm2/protokollant,num_dependents_deps.dev:0 +github.com/ksm2/protokollant-action, +github.com/ksm2/run-protokollant-action, +github.com/ksm2/setup-protokollant-action, github.com/ksm2/spiderette,num_dependents_deps.dev:0 github.com/ksm2/svg-parse,num_dependents_deps.dev:0 github.com/ksm5611/lotide,num_dependents_deps.dev:0 @@ -719110,6 +732236,8 @@ github.com/ksob/winci,num_dependents_deps.dev:0 github.com/ksob/winci-updater,num_dependents_deps.dev:0 github.com/ksobue/rserve-js,num_dependents_deps.dev:0 github.com/ksocha/cypress-circleci-reporter,num_dependents_deps.dev:0 +github.com/ksoclabs/guard-action, +github.com/ksoclabs/image-scan-action, github.com/ksofa2/dbcl, github.com/ksofa2/httpdummy, github.com/ksoft-si/ksoft.js,num_dependents_deps.dev:0 @@ -719458,6 +732586,7 @@ github.com/kszucs/epos, github.com/kszucs/pandahouse, github.com/kszucs/proxo, github.com/kszw/xname, +github.com/kt10001/issue_label, github.com/kt3k/17,num_dependents_deps.dev:0 github.com/kt3k/19,num_dependents_deps.dev:0 github.com/kt3k/52deco,num_dependents_deps.dev:0 @@ -719512,6 +732641,7 @@ github.com/kt3k/lepont-async-storage,num_dependents_deps.dev:0 github.com/kt3k/lepont-permissions-android,num_dependents_deps.dev:0 github.com/kt3k/lepont-platform,num_dependents_deps.dev:0 github.com/kt3k/lepont-share,num_dependents_deps.dev:0 +github.com/kt3k/license_checker_github_action, github.com/kt3k/localsd,num_dependents_deps.dev:0 github.com/kt3k/macha,num_dependents_deps.dev:0 github.com/kt3k/matango,num_dependents_deps.dev:0 @@ -719543,6 +732673,7 @@ github.com/kt3k/tee_async_iterable,num_dependents_deps.dev:0 github.com/kt3k/through1,num_dependents_deps.dev:0 github.com/kt3k/todo-md,num_dependents_deps.dev:0 github.com/kt3k/todomvc-test,num_dependents_deps.dev:0 +github.com/kt3k/update-pr-description, github.com/kt3k/view-todo,num_dependents_deps.dev:0 github.com/kt3k/vinyl-accumulate,num_dependents_deps.dev:0 github.com/kt3k/vinyl-fork,num_dependents_deps.dev:0 @@ -719605,6 +732736,7 @@ github.com/ktbartholomew/jekyll-audit,num_dependents_deps.dev:0 github.com/ktbyers/netmiko,criticality_score:0.603350 github.com/ktbyers/nornir_netmiko, github.com/ktbyers/nxapi_plumbing, +github.com/ktcar214/arch-makepkg-action, github.com/ktcf/tf2-waste,num_dependents_deps.dev:0 github.com/ktchrn/amlc, github.com/ktcunreal/torii,num_dependents_deps.dev:0 @@ -719680,6 +732812,8 @@ github.com/kthorp/pyfao56, github.com/kthrdei/nw-ssh, github.com/kthrdei/restapi-echo-server, github.com/kthrdei/snmp-agent, +github.com/ktht/aspell, +github.com/ktht/latex-action, github.com/kthxat/filament,num_dependents_deps.dev:0 github.com/kthyng/tabs, github.com/kthyng/xcmocean, @@ -719754,6 +732888,7 @@ github.com/ktomala/tcutils, github.com/ktomecki/custom-item-select,num_dependents_deps.dev:0 github.com/ktomecki/react-my-hooks,num_dependents_deps.dev:0 github.com/ktomecki/react-water-progressbar,num_dependents_deps.dev:0 +github.com/ktomk/run-travis-yml, github.com/ktonal/h5mapper, github.com/ktonal/mimikit, github.com/ktong/nilgo,num_dependents_deps.dev:0 @@ -719813,6 +732948,7 @@ github.com/ktr0731/evans,"criticality_score:0.467430,num_dependents_deps.dev:4" github.com/ktr0731/gcli,num_dependents_deps.dev:0 github.com/ktr0731/ghq,num_dependents_deps.dev:0 github.com/ktr0731/go-fuzzyfinder,num_dependents_deps.dev:6 +github.com/ktr0731/godoc-action, github.com/ktr0731/grpc-test,num_dependents_deps.dev:0 github.com/ktr0731/itunes-cli,num_dependents_deps.dev:0 github.com/ktraff/practice-problems-builder, @@ -720060,6 +733196,7 @@ github.com/kuangyh/yuhengio,num_dependents_deps.dev:0 github.com/kuanhuayu/requireclass,num_dependents_deps.dev:0 github.com/kuanpern/jupyterlab-snippets-multimenus,num_dependents_deps.dev:0 github.com/kuantal/Multiple-circular-player,num_dependents_deps.dev:0 +github.com/kuanyi-ng/update-flutter-packages, github.com/kuanyui/moe-theme.el,criticality_score:0.313070 github.com/kuasha420/barikoi-unified, github.com/kuasha420/complex-query-builder,num_dependents_deps.dev:0 @@ -720118,6 +733255,7 @@ github.com/kubastick/guffer,num_dependents_deps.dev:0 github.com/kubaszostak/xname,num_dependents_deps.dev:0 github.com/kubatatami/JsonCallbacks,num_dependents_deps.dev:0 github.com/kubauk/gmails, +github.com/kubawich/flutter-sematics-coverage, github.com/kubawolanin/generator-openhab,num_dependents_deps.dev:0 github.com/kubawolanin/local-alias,num_dependents_deps.dev:0 github.com/kubawolanin/python-reaperdaw, @@ -720125,6 +733263,7 @@ github.com/kubawolanin/sentiment-polish,num_dependents_deps.dev:0 github.com/kubax2000/bootstrap-toasts-js,num_dependents_deps.dev:0 github.com/kubax2000/goment,num_dependents_deps.dev:0 github.com/kubax2000/react-form-inputs-validator,num_dependents_deps.dev:0 +github.com/kubbot/auto-translate-readme, github.com/kube-HPC/bull.hkube,num_dependents_deps.dev:0 github.com/kube-HPC/config.hkube,num_dependents_deps.dev:2 github.com/kube-HPC/hkube.debbuging-python-api, @@ -720173,7 +733312,9 @@ github.com/kubecc-io/kubecc,num_dependents_deps.dev:0 github.com/kubechain/kubechain,num_dependents_deps.dev:0 github.com/kubecost/cluster-turndown,num_dependents_deps.dev:0 github.com/kubecost/cost-model,"criticality_score:0.474680,num_dependents_deps.dev:0" +github.com/kubecost/cost-prediction-action, github.com/kubecost/kubectl-cost,num_dependents_deps.dev:0 +github.com/kubecub/github-label-syncer, github.com/kubecube-io/kubecube,num_dependents_deps.dev:0 github.com/kubedb-client/java,num_dependents_deps.dev:1 github.com/kubedb/apimachinery,num_dependents_deps.dev:0 @@ -720282,6 +733423,7 @@ github.com/kubeform/provider-vsphere-api,num_dependents_deps.dev:0 github.com/kubeform/provider-vultr-api,num_dependents_deps.dev:0 github.com/kubeform/provider-wavefront-api,num_dependents_deps.dev:0 github.com/kubeform/terraform-provider-hcloud,num_dependents_deps.dev:0 +github.com/kubefy-com/devenv-action, github.com/kubegene/kubegene,num_dependents_deps.dev:0 github.com/kubegrid/kubegrid-sdk-node, github.com/kubeitron/soda-api,num_dependents_deps.dev:0 @@ -720626,6 +733768,8 @@ github.com/kubernetes/utils,num_dependents_deps.dev:22823 github.com/kubernetes/website,"criticality_score:0.845100,num_dependents_deps.dev:0" github.com/kubesail/deploy-node-app, github.com/kubesail/deploy-to-kube,num_dependents_deps.dev:0 +github.com/kubescape/github-action, +github.com/kubeservice-stack/repos-mirror-action, github.com/kubeshield/bpf-opa-demo,num_dependents_deps.dev:0 github.com/kubeshield/identity-server,num_dependents_deps.dev:0 github.com/kubeshop/kubetest,num_dependents_deps.dev:0 @@ -720636,6 +733780,12 @@ github.com/kubeshop/kubtest-executor-postman,num_dependents_deps.dev:0 github.com/kubeshop/kubtest-executor-template,num_dependents_deps.dev:0 github.com/kubeshop/kubtest-operator,num_dependents_deps.dev:0 github.com/kubeshop/kusk,num_dependents_deps.dev:0 +github.com/kubeshop/monokle-action, +github.com/kubeshop/setup-testkube, +github.com/kubeshop/testkube-cloud-action, +github.com/kubeshop/testkube-docker-action, +github.com/kubeshop/testkube-run-action, +github.com/kubeshop/tracetest-github-action, github.com/kubesphere-sigs/ks,num_dependents_deps.dev:0 github.com/kubesphere/alert,num_dependents_deps.dev:0 github.com/kubesphere/api,num_dependents_deps.dev:0 @@ -720672,6 +733822,8 @@ github.com/kubevault/csi-driver,num_dependents_deps.dev:0 github.com/kubevault/installer,num_dependents_deps.dev:0 github.com/kubevault/unsealer,num_dependents_deps.dev:0 github.com/kubevault/vault_exporter,num_dependents_deps.dev:0 +github.com/kubevela/vela-upload-release-asset, +github.com/kubevious/cli, github.com/kubevious/helpers,num_dependents_deps.dev:0 github.com/kubevious/kubevious,criticality_score:0.401180 github.com/kubevious/kubik,num_dependents_deps.dev:0 @@ -720718,6 +733870,7 @@ github.com/kubic-project/caasp-init,num_dependents_deps.dev:0 github.com/kubicle/nice-emitter,num_dependents_deps.dev:0 github.com/kubicorn/kubicorn,"criticality_score:0.319400,num_dependents_deps.dev:7" github.com/kubicue/uh-oh-cli,num_dependents_deps.dev:0 +github.com/kubikobot/delete-comment, github.com/kubikvid/pylint-relative-imports, github.com/kubil6y/go-auth-example,num_dependents_deps.dev:0 github.com/kubilaycaglayan/kubilay,num_dependents_deps.dev:0 @@ -720739,6 +733892,7 @@ github.com/kubism/backup-operator,num_dependents_deps.dev:0 github.com/kubism/eslint-config-kubism,num_dependents_deps.dev:0 github.com/kubistmi/goopenweather,num_dependents_deps.dev:0 github.com/kubitre/diplom,num_dependents_deps.dev:0 +github.com/kubitre/proto_action, github.com/kubiuks/alife,num_dependents_deps.dev:0 github.com/kubiuks/alife_web,num_dependents_deps.dev:0 github.com/kubk/eslint-plugin-mobx-computed-getters, @@ -720746,6 +733900,11 @@ github.com/kubk/gauge-chart-js,num_dependents_deps.dev:0 github.com/kubk/payeer-node,num_dependents_deps.dev:0 github.com/kublikon/gog,num_dependents_deps.dev:0 github.com/kublikon/thanos,num_dependents_deps.dev:0 +github.com/kubmeta/github-action-get-previous-tag, +github.com/kubmeta/release-drafter, +github.com/kubmeta/slack, +github.com/kubmeta/slack-approval, +github.com/kubmeta/team-membership, github.com/kubo/plthook,Google github.com/kubo/rust-oracle,num_dependents_deps.dev:1 github.com/kubode/RxEventBus,num_dependents_deps.dev:0 @@ -720869,6 +734028,8 @@ github.com/kudago/oembed-js,num_dependents_deps.dev:0 github.com/kudago/smart-app-banner,num_dependents_deps.dev:0 github.com/kudago/sticky,num_dependents_deps.dev:0 github.com/kudago/swiper-fullscreen,num_dependents_deps.dev:0 +github.com/kudaliar032/hello-world-docker-action, +github.com/kudaliar032/tendang-action, github.com/kudane/react-native-custom-theming,num_dependents_deps.dev:0 github.com/kudane/react-native-customizing-theme,num_dependents_deps.dev:0 github.com/kudapara/omniauth-progic_id,num_dependents_deps.dev:0 @@ -720920,6 +734081,7 @@ github.com/kudoochui/kudosserver,num_dependents_deps.dev:0 github.com/kudorori/mongoose2gql,num_dependents_deps.dev:0 github.com/kudorori/npm-stdev-merge,num_dependents_deps.dev:0 github.com/kudorori/react-query-api,num_dependents_deps.dev:0 +github.com/kudos-ink/approve, github.com/kudos/hostr-cli,num_dependents_deps.dev:0 github.com/kudos/koa-websocket,num_dependents_deps.dev:78 github.com/kudos/node-passwords, @@ -720940,6 +734102,7 @@ github.com/kuebk/node-uriparser,num_dependents_deps.dev:0 github.com/kuebk/node-zookeeper,num_dependents_deps.dev:4 github.com/kueckermann/ctxjs, github.com/kuehnelbs/node-red-contrib-nextcloud,num_dependents_deps.dev:0 +github.com/kuelumbus/github-bumpversion-action, github.com/kuelumbus/rdkit-pypi, github.com/kuenishi/baccounts,num_dependents_deps.dev:0 github.com/kuenishi/dstat-viz, @@ -720997,6 +734160,8 @@ github.com/kuhlmeye/owlib,num_dependents_deps.dev:0 github.com/kuhlmeye/vjlib,num_dependents_deps.dev:0 github.com/kuhn-he/elastic-job-lite-spring-boot-starter,num_dependents_deps.dev:0 github.com/kuhn-he/saas-datasource-spring-boot-starter,num_dependents_deps.dev:0 +github.com/kuhnchris/gh-export-godot-project, +github.com/kuhnroyal/flutter-fvm-config-action, github.com/kuhnroyal/mat-datetimepicker,num_dependents_deps.dev:17 github.com/kuhnza/angular-google-places-autocomplete,num_dependents_deps.dev:0 github.com/kuhnza/bindroid,num_dependents_deps.dev:0 @@ -721091,6 +734256,7 @@ github.com/kujtimiihoxha/go-watcher,num_dependents_deps.dev:0 github.com/kujtimiihoxha/gong,num_dependents_deps.dev:0 github.com/kujtimiihoxha/jennifer,num_dependents_deps.dev:0 github.com/kujtimiihoxha/todo-issue,num_dependents_deps.dev:0 +github.com/kuju63/coverage-comment, github.com/kujukuju/NotShitWebAudio,num_dependents_deps.dev:0 github.com/kujyp/dockerfile_bakery, github.com/kuka/autocad-colors-index,num_dependents_deps.dev:0 @@ -721111,6 +734277,7 @@ github.com/kuking/dontdoit,num_dependents_deps.dev:0 github.com/kukinsula/playground,num_dependents_deps.dev:0 github.com/kukiron/eslint-config-latest,num_dependents_deps.dev:0 github.com/kukiron/print-loader,num_dependents_deps.dev:0 +github.com/kukiron/wait-for-netlify-deploy, github.com/kukkar/common-golang,num_dependents_deps.dev:0 github.com/kukkar/mta-hosting-optimizer,num_dependents_deps.dev:0 github.com/kukko/YouTube-Data-API,num_dependents_deps.dev:0 @@ -721216,6 +734383,9 @@ github.com/kuldip-barot/anncorra, github.com/kulek1/multiple-bundles-webpack-plugin,num_dependents_deps.dev:0 github.com/kulek1/naudiodon-lame,num_dependents_deps.dev:0 github.com/kulelikule/available-image,num_dependents_deps.dev:0 +github.com/kuler90/activate-unity, +github.com/kuler90/build-unity, +github.com/kuler90/setup-unity, github.com/kulerbox/generator-geni,num_dependents_deps.dev:0 github.com/kulesa/webpack-anybar,num_dependents_deps.dev:0 github.com/kuleuven/terratest,num_dependents_deps.dev:0 @@ -721354,7 +734524,9 @@ github.com/kumar303/mohawk, github.com/kumar303/nose-nicedots, github.com/kumar529/ng2-fab-speed-dial,num_dependents_deps.dev:0 github.com/kumar935/FormField,num_dependents_deps.dev:0 +github.com/kumarabd/publish-release-to-another-action, github.com/kumarabd/service-template,num_dependents_deps.dev:0 +github.com/kumarabd/trigger-remote-action, github.com/kumarabhishek/react-accessible-ui,num_dependents_deps.dev:0 github.com/kumarabhishek/react-mql,num_dependents_deps.dev:0 github.com/kumarabie/cloudevents,num_dependents_deps.dev:0 @@ -721399,7 +734571,9 @@ github.com/kumarpankaj18/spring-batch-excel,num_dependents_deps.dev:0 github.com/kumarranjansingh/angular-gantt-chart,num_dependents_deps.dev:0 github.com/kumarsandeep91/renthobo,num_dependents_deps.dev:0 github.com/kumarsaras/covaxinate,num_dependents_deps.dev:0 +github.com/kumarshivam12/Aws-ElasticBeanstalk, github.com/kumarstack55/python-mechsouplite, +github.com/kumarsunil0007/build-ios-action, github.com/kumarsuraj9450/scalecol, github.com/kumarvaibhav45/shadowEffects,num_dependents_deps.dev:0 github.com/kumarvaradarajulu/prboard, @@ -721524,6 +734698,7 @@ github.com/kummahiih/python-domain-equations, github.com/kummahiih/python-inverse-spectrogram, github.com/kummahiih/python-yaastar, github.com/kummercompany/induccionbe,num_dependents_deps.dev:0 +github.com/kumojin/action-helm-for-eks, github.com/kumoonio/uikit, github.com/kumori-systems/acs-client,num_dependents_deps.dev:4 github.com/kumori-systems/admission-client,num_dependents_deps.dev:0 @@ -721627,6 +734802,7 @@ github.com/kunalkushwaha/ltag,num_dependents_deps.dev:0 github.com/kunall17/react-native-markdown-editor,num_dependents_deps.dev:0 github.com/kunalmestri9/radixtool,num_dependents_deps.dev:0 github.com/kunalnagar/jquery.peekABar,num_dependents_deps.dev:0 +github.com/kunalnagarco/action-cve, github.com/kunalnagarco/healthie,num_dependents_deps.dev:0 github.com/kunalnagarco/javascript,num_dependents_deps.dev:0 github.com/kunalnagarco/react-component-library,num_dependents_deps.dev:0 @@ -721667,6 +734843,7 @@ github.com/kundigo/react-native-telephone-input,num_dependents_deps.dev:0 github.com/kundinos/nanostores,num_dependents_deps.dev:0 github.com/kundinos/react-hooks,num_dependents_deps.dev:0 github.com/kundkingan/firebase-auth-node, +github.com/kundkingan/sonarcloud-github-action, github.com/kundo/nameko-query, github.com/kunerd/clerk,num_dependents_deps.dev:0 github.com/kung-foo/dep,num_dependents_deps.dev:0 @@ -721705,6 +734882,7 @@ github.com/kunickiaj/beer-review, github.com/kunicmarko20/ghnotifier, github.com/kunigaku/cstub,num_dependents_deps.dev:0 github.com/kunigaku/jpfund, +github.com/kunihiko-t/review-request-action, github.com/kuniiskywalker/array-divide-equally,num_dependents_deps.dev:0 github.com/kuniiskywalker/faviconer, github.com/kunik/country-detector,num_dependents_deps.dev:0 @@ -721715,6 +734893,7 @@ github.com/kunimitaiyoh/commander.js,num_dependents_deps.dev:0 github.com/kunit/geolite2lookup,num_dependents_deps.dev:0 github.com/kunitoki/django-custard, github.com/kunitoki/django-formaldehyde, +github.com/kunitsuinc/ccc-actions, github.com/kunjee17/awesome-fable,criticality_score:0.322490 github.com/kunkalabs/typed-object,num_dependents_deps.dev:0 github.com/kunkkaliu/create-cms-app,num_dependents_deps.dev:0 @@ -721821,6 +735000,7 @@ github.com/kunzeng/TSGD, github.com/kunzeng/tadam, github.com/kunzese/gke-exporter,num_dependents_deps.dev:0 github.com/kunzese/golang-github-webhook-example,num_dependents_deps.dev:0 +github.com/kunzese/insert-between-markers, github.com/kunzfw/go-onebot,num_dependents_deps.dev:0 github.com/kuochaoyi/echo,num_dependents_deps.dev:0 github.com/kuochaoyi/gorbac,num_dependents_deps.dev:0 @@ -721863,6 +735043,8 @@ github.com/kupibilet-frontend/versionize,num_dependents_deps.dev:0 github.com/kupibiletdev/eslint-config-kupibilet,num_dependents_deps.dev:0 github.com/kupibiletdev/react-router-component, github.com/kupibiletdev/stylelint-config-kupibilet,num_dependents_deps.dev:0 +github.com/kupns-aka-kupa/setup-eigen3, +github.com/kupns-aka-kupa/setup-nanoflann, github.com/kupolak/textstat,num_dependents_deps.dev:0 github.com/kupoman/panda3d-lion-render, github.com/kuppilisatishkumar/Censorify,num_dependents_deps.dev:0 @@ -722031,6 +735213,8 @@ github.com/kurkle/rollup-plugin-chartjs-globals,num_dependents_deps.dev:0 github.com/kurko/ember-json-api, github.com/kurko/ember-localstorage-adapter,num_dependents_deps.dev:0 github.com/kurko/ember-sync,num_dependents_deps.dev:0 +github.com/kurkop/flyway-postgres-action, +github.com/kurkop/push-docker-gcr, github.com/kurky91/garaio-reusable-controls-react,num_dependents_deps.dev:0 github.com/kurky91/sp-dev-fx-controls-react,num_dependents_deps.dev:0 github.com/kurl-eng/project,num_dependents_deps.dev:0 @@ -722038,6 +735222,7 @@ github.com/kurlov/aiohttp-sendgrid, github.com/kurlp00/dota2-web-api-wrapper,num_dependents_deps.dev:0 github.com/kurly09/github, github.com/kurly09/rr,num_dependents_deps.dev:0 +github.com/kurnev/match-against-glob-action, github.com/kurnia123/go-say-hello,num_dependents_deps.dev:0 github.com/kurniawanew/pfm-kambing,num_dependents_deps.dev:0 github.com/kurniawano/DWDocumentDB, @@ -722049,6 +735234,7 @@ github.com/kuro-daei/json2dom,num_dependents_deps.dev:0 github.com/kuro-daei/scroll-y-stop,num_dependents_deps.dev:0 github.com/kuro56900/sidebar-js,num_dependents_deps.dev:0 github.com/kurobato/code,num_dependents_deps.dev:0 +github.com/kurocha/setup-cpp, github.com/kuroda/mail-iso-2022-jp,num_dependents_deps.dev:0 github.com/kuroda/mini_auth,num_dependents_deps.dev:0 github.com/kuroda/vue-data-scooper,num_dependents_deps.dev:0 @@ -722090,6 +735276,7 @@ github.com/kuroljov/niqtime,num_dependents_deps.dev:0 github.com/kuroljov/triematch,num_dependents_deps.dev:0 github.com/kurollo/nestjs-class-validator,num_dependents_deps.dev:0 github.com/kuromiy/TypeFileDB,num_dependents_deps.dev:0 +github.com/kuromt/diff-notebooks, github.com/kurone-kito/dantalion,num_dependents_deps.dev:0 github.com/kurone-kito/jsonresume-theme-japanese-cv-style,num_dependents_deps.dev:0 github.com/kurone-kito/jsonresume-theme-japanese-cv-style-docx,num_dependents_deps.dev:0 @@ -722147,6 +735334,8 @@ github.com/kursat/react-json-view,num_dependents_deps.dev:0 github.com/kursion/broffeact, github.com/kursion/dbfeazy,num_dependents_deps.dev:0 github.com/kursion/twitchist, +github.com/kurt-ikhoka/gha-semantic-version, +github.com/kurt-mueller-osumc/dnanexus-build-applet-action, github.com/kurt-stolle/game-server-query, github.com/kurt-stolle/nodebb-plugin-exclserver,num_dependents_deps.dev:0 github.com/kurt-stolle/primid,num_dependents_deps.dev:0 @@ -722202,6 +735391,7 @@ github.com/kurtlocker/remote-sync,num_dependents_deps.dev:0 github.com/kurtlocker/sheets-api,num_dependents_deps.dev:0 github.com/kurtloong/acreath-starter-threadpool,num_dependents_deps.dev:0 github.com/kurtmarcink/node-jambase,num_dependents_deps.dev:0 +github.com/kurtmc/github-action-python-versioner, github.com/kurtmckee/feedparser,criticality_score:0.521130 github.com/kurtmckee/fru-tool, github.com/kurtmckee/listparser, @@ -722250,6 +735440,9 @@ github.com/kurtwarwick-new/homebridge-mi-kettle, github.com/kurtwarwick-new/node-apple-tv-mqtt-bridge,num_dependents_deps.dev:0 github.com/kurtymckurt/TestPojo,num_dependents_deps.dev:0 github.com/kuru-project/tamaki-currency,num_dependents_deps.dev:0 +github.com/kuruk-mm/test-reporting, +github.com/kuruk-mm/unity-builder, +github.com/kuruk-mm/unity-return-license, github.com/kurumiimari/gohan,num_dependents_deps.dev:0 github.com/kurumiimari/shakedex,num_dependents_deps.dev:0 github.com/kurumkan/gen-random-colors,num_dependents_deps.dev:0 @@ -722268,6 +735461,7 @@ github.com/kurusugawa-computer/annofabapi-3dpc-extensions, github.com/kurusugawa-computer/annowork-api-python-client, github.com/kurusugawa-computer/annowork-cli, github.com/kurusugawa-computer/m3u8tool, +github.com/kurusunagisa/rim-actions, github.com/kurybr/code-education-lessons,num_dependents_deps.dev:0 github.com/kurzdigital/keycloak-admin-wrapper,num_dependents_deps.dev:0 github.com/kurzdor/rhenium-cli,num_dependents_deps.dev:0 @@ -722297,6 +735491,7 @@ github.com/kusanagi/katana-sdk-node,num_dependents_deps.dev:0 github.com/kusanagi/kusanagi-sdk-go,num_dependents_deps.dev:0 github.com/kusanagi/kusanagi-sdk-python, github.com/kusano/krkrsvchk,num_dependents_deps.dev:0 +github.com/kusaridev/guac-ingest, github.com/kusege/go-example,num_dependents_deps.dev:0 github.com/kush-agra/react-horizontal-datepicker,num_dependents_deps.dev:0 github.com/kush-desai-i4/pdfkit,num_dependents_deps.dev:0 @@ -722381,6 +735576,9 @@ github.com/kusti8/proton-native,"criticality_score:0.311790,num_dependents_deps. github.com/kusti8/proton-native-cli,num_dependents_deps.dev:0 github.com/kustom666/Demacia,num_dependents_deps.dev:0 github.com/kustom666/cathodic,num_dependents_deps.dev:0 +github.com/kustomize-everything/action-env-build-and-deploy, +github.com/kustomize-everything/action-promote, +github.com/kustomize-everything/action-yaml-linter, github.com/kusut/loud, github.com/kuszaj/Flask-GzipBomb, github.com/kuszaj/claptcha, @@ -722497,6 +735695,8 @@ github.com/kuuyee/filebrowser,num_dependents_deps.dev:0 github.com/kuvalda989/prom-exporter,num_dependents_deps.dev:0 github.com/kuvam/etime,num_dependents_deps.dev:0 github.com/kuvam/isync,num_dependents_deps.dev:0 +github.com/kuvaus/changelog-releasenotes-action, +github.com/kuvaus/dependabot-group-merge-approve-action, github.com/kuveytturk/boa,num_dependents_deps.dev:0 github.com/kuviman/glitchcat,num_dependents_deps.dev:0 github.com/kuvinodms/vsts-pypi-demo, @@ -722641,6 +735841,7 @@ github.com/kuzzmi/runn,num_dependents_deps.dev:0 github.com/kuzzmi/rutracker-cli,num_dependents_deps.dev:0 github.com/kuzznya/exposer,num_dependents_deps.dev:0 github.com/kv-design/kv-design,num_dependents_deps.dev:12 +github.com/kv109/action-ready-for-review, github.com/kv109/hash-msg-npm,num_dependents_deps.dev:0 github.com/kv4sha/hyper-tab-number,num_dependents_deps.dev:0 github.com/kv6737/missingValues, @@ -722719,6 +735920,7 @@ github.com/kvchen/hasspad, github.com/kvchen/mizzen,num_dependents_deps.dev:0 github.com/kvclone/types,num_dependents_deps.dev:0 github.com/kvclone/volume-source,num_dependents_deps.dev:0 +github.com/kvcpr/decode-base64-into-file-action, github.com/kvcvc/isic,num_dependents_deps.dev:0 github.com/kvdheijden/transip-ddns-client, github.com/kvdi/kvdi,num_dependents_deps.dev:0 @@ -722727,6 +735929,7 @@ github.com/kvdmolen/vue-lang,num_dependents_deps.dev:0 github.com/kvdmolen/vue-scrollspy,num_dependents_deps.dev:0 github.com/kvdroid/Kvdroid, github.com/kvelaro/rtmssx300,num_dependents_deps.dev:0 +github.com/kvendingoldo/semver-action, github.com/kvendrik/fetch-restful,num_dependents_deps.dev:0 github.com/kvendrik/intercom-react,num_dependents_deps.dev:0 github.com/kvendrik/jest-lite,num_dependents_deps.dev:0 @@ -722893,6 +736096,9 @@ github.com/kvzhkv/relax-on-couch,num_dependents_deps.dev:0 github.com/kw/metis-python, github.com/kw09SpringYoung/my-pages, github.com/kw09SpringYoung/yc-pages, +github.com/kw214/aliyun-ecs-action, +github.com/kw214/gitee-pages, +github.com/kw214/heroku-deploy, github.com/kw77/acl-certauth,num_dependents_deps.dev:0 github.com/kw77/hertz-timer,num_dependents_deps.dev:0 github.com/kwaak/react-native-android-blurryoverlay, @@ -722973,6 +736179,9 @@ github.com/kwantam/fffft,num_dependents_deps.dev:0 github.com/kwantec/rest-guard,num_dependents_deps.dev:0 github.com/kwantz/golang,num_dependents_deps.dev:0 github.com/kwantz/golang-restful-api,num_dependents_deps.dev:0 +github.com/kwanwooi25/extract-issue-numbers, +github.com/kwanwooi25/jira-release, +github.com/kwanwooi25/pr-to-right-branch, github.com/kwar0715/amobile-ui,num_dependents_deps.dev:0 github.com/kwar0715/jsAD,num_dependents_deps.dev:0 github.com/kwarchalowski/tvpVODdownloader,num_dependents_deps.dev:0 @@ -723166,7 +736375,9 @@ github.com/kwmcbride/kipet, github.com/kwmsmith/ozymandias, github.com/kwmt/golang-samples,num_dependents_deps.dev:0 github.com/kwmx/WebOSRemote-CLI,num_dependents_deps.dev:0 +github.com/kwnath/shopify-theme-kit-action, github.com/kwnccc/swfobject,num_dependents_deps.dev:0 +github.com/kwnetzwelt/gameci-unity-test-runner, github.com/kwnetzwelt/unity-solution,num_dependents_deps.dev:0 github.com/kwngo/outcry, github.com/kwo/carlopress,num_dependents_deps.dev:0 @@ -723299,6 +736510,7 @@ github.com/kxbrand/fis3-parser-freemarker,num_dependents_deps.dev:0 github.com/kxbrand/kxbrand,num_dependents_deps.dev:0 github.com/kxbrand/kxless,num_dependents_deps.dev:0 github.com/kxbui/ngx-imagely,num_dependents_deps.dev:0 +github.com/kxcdev/ocaml-general-gha, github.com/kxepal/aiocouchdb, github.com/kxepal/setuptools-changelog, github.com/kxepal/setuptools-pkg, @@ -723331,6 +736543,7 @@ github.com/kxxoling/flask-shellplus, github.com/kxxoling/markdown2pdf, github.com/kxxoling/o3o.py, github.com/kxxoling/waifu-cli, +github.com/kxxt/chatgpt-action, github.com/kxytechnologies/kxy-datasets, github.com/kxytechnologies/kxy-python, github.com/kxz/interstat, @@ -723354,6 +736567,7 @@ github.com/ky23/ant-hill,num_dependents_deps.dev:0 github.com/ky61k105/react-microservices,num_dependents_deps.dev:0 github.com/ky64/simple-websocket,num_dependents_deps.dev:0 github.com/kyaEH/NodeJS-BasicXSSClientServer,num_dependents_deps.dev:0 +github.com/kyagi/shamshir, github.com/kyaido/eslint-plugin-literal-blacklist,num_dependents_deps.dev:4 github.com/kyalsinlinlett/go-lessons,num_dependents_deps.dev:0 github.com/kyalsinlinlett/go-restapi,num_dependents_deps.dev:0 @@ -723366,6 +736580,8 @@ github.com/kyan001/PyConsoleCMDTools, github.com/kyan001/PyConsoleIOTools, github.com/kyan001/ping3, github.com/kyan54/iview,num_dependents_deps.dev:0 +github.com/kyanagimoto/assignee4label, +github.com/kyanagimoto/get-latest-version, github.com/kyani-inc/gotenberg,num_dependents_deps.dev:0 github.com/kyanit-project/kyanitapi, github.com/kyanit-project/kyanitctl, @@ -723419,10 +736635,13 @@ github.com/kybernetwork/deribit-api,num_dependents_deps.dev:0 github.com/kybernetwork/reserve-data,num_dependents_deps.dev:0 github.com/kybernetwork/reserve-stats,num_dependents_deps.dev:0 github.com/kybernetwork/wallet-cache,num_dependents_deps.dev:0 +github.com/kyberorg/harbor-scan-report, github.com/kyberorg/honeypot,num_dependents_deps.dev:0 github.com/kyberorg/mvc-tools,num_dependents_deps.dev:0 github.com/kyberorg/selenoid-api-proxy,num_dependents_deps.dev:0 github.com/kyberorg/vson,num_dependents_deps.dev:0 +github.com/kyberorg/wait_for_harbor, +github.com/kyberorg/wait_for_new_version, github.com/kybetter/ace-mock,num_dependents_deps.dev:0 github.com/kybetter/lernarepo1,num_dependents_deps.dev:0 github.com/kybetter/lernarepo2,num_dependents_deps.dev:0 @@ -723511,6 +736730,8 @@ github.com/kyknow/nestjs-rabbitmq,num_dependents_deps.dev:0 github.com/kyknow/nestjs-redis,num_dependents_deps.dev:0 github.com/kyknow/nestjs-sequelize,num_dependents_deps.dev:0 github.com/kyknow/vue-access,num_dependents_deps.dev:0 +github.com/kykrueger/zenodo-new-version, +github.com/kykrueger/zenodo-publish, github.com/kykub/klib,num_dependents_deps.dev:0 github.com/kykungz/itermy,num_dependents_deps.dev:0 github.com/kykungz/swagger-to-ts,num_dependents_deps.dev:0 @@ -723536,6 +736757,7 @@ github.com/kyle-ruan/promise-cache-fn,num_dependents_deps.dev:0 github.com/kyle-ruan/react-algolia,num_dependents_deps.dev:0 github.com/kyle-ruan/react-fragment,num_dependents_deps.dev:0 github.com/kyle-ruan/splitio-react,num_dependents_deps.dev:0 +github.com/kyle-seongwoo-jun/bundletool-action, github.com/kyle-silver/persichetti,num_dependents_deps.dev:0 github.com/kyle-ssg/react-native-app-id,num_dependents_deps.dev:0 github.com/kyle-ssg/react-native-common-elements,num_dependents_deps.dev:0 @@ -723544,6 +736766,7 @@ github.com/kyle-ssg/react-native-simple-drawer,num_dependents_deps.dev:0 github.com/kyle-ssg/react-native-simple-expand,num_dependents_deps.dev:0 github.com/kyle-ssg/react-native-simple-svg, github.com/kyle-wang/slgfov,num_dependents_deps.dev:0 +github.com/kyle-west/action-review-rotation, github.com/kyle-west/clone-lite-cli,num_dependents_deps.dev:0 github.com/kyle-west/dragon-router,num_dependents_deps.dev:0 github.com/kyle-west/perf-test,num_dependents_deps.dev:0 @@ -723607,6 +736830,7 @@ github.com/kylebgorman/wikipron, github.com/kylebittinger/brocc, github.com/kylebittinger/q2-brocc, github.com/kylebittinger/unassigner, +github.com/kylebjordahl/replace-workflow-deployment, github.com/kylebrain/networking-final-project, github.com/kylebrowning/APNSwift,criticality_score:0.349200 github.com/kylebuch8/cp-base-element,num_dependents_deps.dev:0 @@ -723623,6 +736847,7 @@ github.com/kylebystrom/pawpyseed, github.com/kylec725/graytorrent,num_dependents_deps.dev:0 github.com/kylecarbs/goveralls,num_dependents_deps.dev:0 github.com/kylecaston/checkenv, +github.com/kylechou0755/pytester-cov, github.com/kylecoberly/simple-sheets,num_dependents_deps.dev:0 github.com/kylecoberly/simple-sheets-reader,num_dependents_deps.dev:0 github.com/kylecoberly/simple-sheets-writer,num_dependents_deps.dev:0 @@ -723699,6 +736924,8 @@ github.com/kyleget/whateverscript,num_dependents_deps.dev:0 github.com/kylegk/sse-rest-server,num_dependents_deps.dev:0 github.com/kylegoetz/ifttt-webhooks-connector,num_dependents_deps.dev:0 github.com/kylegordon/pypollen, +github.com/kylegrabfelder/generate-oas-sdk-js, +github.com/kylegrabfelder/sdk-generation-action, github.com/kylegrantlucas/go-httpbin,num_dependents_deps.dev:0 github.com/kylegrantlucas/react-fish,num_dependents_deps.dev:0 github.com/kylegrantlucas/resume-exporter,num_dependents_deps.dev:0 @@ -723739,6 +736966,7 @@ github.com/kylejlin/three-clashlike-controls,num_dependents_deps.dev:0 github.com/kylejlin/tyson,num_dependents_deps.dev:0 github.com/kylejlin/wasm-add,num_dependents_deps.dev:0 github.com/kylejlin/xiter,num_dependents_deps.dev:0 +github.com/kylejrp/action-nodejs-package-info, github.com/kylejune/fh-cards,num_dependents_deps.dev:0 github.com/kylejusticemagnuson/pyti, github.com/kylekarpack/ngx-auto-validate,num_dependents_deps.dev:0 @@ -723747,8 +736975,26 @@ github.com/kylekarpack/react-goodreads-shelf,num_dependents_deps.dev:0 github.com/kylekarpack/react-librarything-shelf,num_dependents_deps.dev:0 github.com/kylekarpack/wp-to-md,num_dependents_deps.dev:0 github.com/kylekatarnls/angular-momentum,num_dependents_deps.dev:0 +github.com/kylekatarnls/business-day, +github.com/kylekatarnls/business-time, +github.com/kylekatarnls/carbonite, +github.com/kylekatarnls/coffeescript, +github.com/kylekatarnls/csrfprotect, +github.com/kylekatarnls/enhanced-period, +github.com/kylekatarnls/js-transformer-php-wrap, +github.com/kylekatarnls/less, github.com/kylekatarnls/momentum,num_dependents_deps.dev:0 +github.com/kylekatarnls/multi-tester, github.com/kylekatarnls/node-sass-tilde-importer,num_dependents_deps.dev:0 +github.com/kylekatarnls/nodejs-php-fallback, +github.com/kylekatarnls/php-easy-doc, +github.com/kylekatarnls/producthunt, +github.com/kylekatarnls/react, +github.com/kylekatarnls/sbp, +github.com/kylekatarnls/simple-cli, +github.com/kylekatarnls/stylus, +github.com/kylekatarnls/uglify, +github.com/kylekatarnls/update-helper, github.com/kylekatarnls/vicopo,num_dependents_deps.dev:0 github.com/kylekelly1/lodown,num_dependents_deps.dev:0 github.com/kyleking/calcipy, @@ -723856,6 +737102,7 @@ github.com/kyleshrives/battery-callback,num_dependents_deps.dev:0 github.com/kyleslight/LiKy,num_dependents_deps.dev:0 github.com/kyleslight/react-model-taro,num_dependents_deps.dev:0 github.com/kylesliu/awesome-golang-algorithm,criticality_score:0.353200 +github.com/kylesoskin/email-validation-github-action, github.com/kylessmith/SomVarIUS, github.com/kylessmith/ailist, github.com/kylessmith/dynamicTreeCut, @@ -724020,6 +737267,7 @@ github.com/kynthus/htnscala,num_dependents_deps.dev:0 github.com/kynthus/unixista,num_dependents_deps.dev:0 github.com/kyo-ago/chrome-tab-captureVisibleTab-full,num_dependents_deps.dev:0 github.com/kyo-ago/fixtsconfig,num_dependents_deps.dev:0 +github.com/kyo-ago/git-rev-parse-action, github.com/kyo-ago/networksetup-proxy,num_dependents_deps.dev:0 github.com/kyo-ago/node-hue-remote,num_dependents_deps.dev:0 github.com/kyo-ago/react-loading-bar,num_dependents_deps.dev:0 @@ -724063,6 +737311,7 @@ github.com/kyoh86/generator-license-full,num_dependents_deps.dev:0 github.com/kyoh86/git-branches,num_dependents_deps.dev:0 github.com/kyoh86/git-statuses,num_dependents_deps.dev:0 github.com/kyoh86/git-vertag,num_dependents_deps.dev:0 +github.com/kyoh86/git-vertag-action, github.com/kyoh86/gogh,num_dependents_deps.dev:0 github.com/kyoh86/gordon,num_dependents_deps.dev:0 github.com/kyoh86/hoge,num_dependents_deps.dev:0 @@ -724086,11 +737335,13 @@ github.com/kyomic/fileuploader,num_dependents_deps.dev:0 github.com/kyoml/kyoml, github.com/kyomotoi/go-atri,num_dependents_deps.dev:0 github.com/kyoncy/eslint-plugin-jsx-dollar,num_dependents_deps.dev:0 +github.com/kyoncy/issue-comment-actions, github.com/kyoncy/quill-linkify,num_dependents_deps.dev:0 github.com/kyoncy/react-markdown-heading,num_dependents_deps.dev:0 github.com/kyongki/ddb_query_insight_proxy,num_dependents_deps.dev:0 github.com/kyonli/remote-deploy,num_dependents_deps.dev:0 github.com/kyonli/remote-log,num_dependents_deps.dev:0 +github.com/kyontan/slack-notify-action, github.com/kyonzz/perfect-scrollbar,num_dependents_deps.dev:0 github.com/kyonzz/react-datepicker, github.com/kyonzz/react-dnd-html5-backend,num_dependents_deps.dev:0 @@ -724121,6 +737372,7 @@ github.com/kyoukaya/genshindaily,num_dependents_deps.dev:0 github.com/kyouko-taiga/Flask-SocketAPI, github.com/kyouko-taiga/petri-js,num_dependents_deps.dev:0 github.com/kyoungrok0517/ingredients, +github.com/kyoyadmoon/milestone-actions, github.com/kyoyadmoon/react-native-icon-checkbox,num_dependents_deps.dev:0 github.com/kyper-data/python-highcharts, github.com/kypertech/devshare,num_dependents_deps.dev:2 @@ -724237,6 +737489,7 @@ github.com/kyso-io/client,num_dependents_deps.dev:0 github.com/kyso-io/jupyterlab-kyso,num_dependents_deps.dev:0 github.com/kyso-io/kyso-auth-popup,num_dependents_deps.dev:0 github.com/kyso-io/kyso-client,num_dependents_deps.dev:0 +github.com/kyso-io/push-action, github.com/kyso84/quicklib,num_dependents_deps.dev:6 github.com/kysonic/gulp-auto-transaltor,num_dependents_deps.dev:0 github.com/kysonic/xhr,num_dependents_deps.dev:0 @@ -724255,6 +737508,7 @@ github.com/kytos/kytos, github.com/kytos/kytos-utils, github.com/kytos/python-openflow, github.com/kytrinyx/configlet,num_dependents_deps.dev:0 +github.com/kytta/zola-build-pages, github.com/kytwb/ah-cloudinary-plugin,num_dependents_deps.dev:0 github.com/kyu08/todo-cli,num_dependents_deps.dev:0 github.com/kyu9341/line-controller.js,num_dependents_deps.dev:0 @@ -724325,6 +737579,8 @@ github.com/kyuuseiryuu/v2ray-tools,num_dependents_deps.dev:0 github.com/kyuvie/Calculator, github.com/kyuwoo-choi/chrome-performance-video,num_dependents_deps.dev:0 github.com/kyuwoo-choi/npmtest,num_dependents_deps.dev:0 +github.com/kyverno/action-install-chainsaw, +github.com/kyverno/action-install-cli, github.com/kyverno/kyverno,"criticality_score:0.547150,num_dependents_deps.dev:0" github.com/kyverno/policy-reporter,num_dependents_deps.dev:0 github.com/kyverno/policy-reporter-kyverno-plugin,num_dependents_deps.dev:0 @@ -724340,6 +737596,7 @@ github.com/kyxiao/jquery-steps-theme,num_dependents_deps.dev:0 github.com/kyythane/svelte-reactive-dnd,num_dependents_deps.dev:0 github.com/kyzas/plazy, github.com/kyzas/scake, +github.com/kyze8439690/action-release-releaseapk, github.com/kyzhouhzau/fennlp, github.com/kyzima-spb/adminlte-base, github.com/kyzima-spb/authlib-database, @@ -724372,6 +737629,7 @@ github.com/kzantow/typewebjest, github.com/kzar/webext-messaging, github.com/kzbandai/playground,num_dependents_deps.dev:0 github.com/kzcheng/lotide,num_dependents_deps.dev:0 +github.com/kzdjs/pr-commit-messages-action, github.com/kzdv/overflight-api,num_dependents_deps.dev:0 github.com/kzdv/types,num_dependents_deps.dev:0 github.com/kzelda/xlsx-sql,num_dependents_deps.dev:0 @@ -724389,6 +737647,7 @@ github.com/kzhang7/multi-tenant-dust-makara-helpers,num_dependents_deps.dev:0 github.com/kzhang7/multi-tenant-engine-munger,num_dependents_deps.dev:0 github.com/kzhao0986/x2apic-rs,num_dependents_deps.dev:0 github.com/kzhao1228/pystage_apt, +github.com/kzhou57/apache-jmeter-action, github.com/kzhrk/ariaset,num_dependents_deps.dev:0 github.com/kzhrk/vue-kindly-select,num_dependents_deps.dev:0 github.com/kzhrk/wrap-with-tag,num_dependents_deps.dev:0 @@ -724406,6 +737665,7 @@ github.com/kzjr-ui/kzjr_ui,num_dependents_deps.dev:0 github.com/kzk-maeda/gotp,num_dependents_deps.dev:0 github.com/kzka90/talkbot,num_dependents_deps.dev:0 github.com/kzkn/aspnet_password_hasher,num_dependents_deps.dev:0 +github.com/kzkn/simplecov-resultset-diff-action, github.com/kzkr/pageprogress,num_dependents_deps.dev:0 github.com/kzkzgit/emojineer, github.com/kzl_knight/easy_celery, @@ -724441,6 +737701,9 @@ github.com/kzozulya1/smartit_word_counter_demo,num_dependents_deps.dev:0 github.com/kzra/pykrev, github.com/kzraryan-mu/kzr_snowflake, github.com/kzrfaisal/angular-file-uploader,num_dependents_deps.dev:0 +github.com/kzrnm/fix-mingw, +github.com/kzrnm/get-net-sdk-project-versions-action, +github.com/kzscisoft/install-spack, github.com/kzthrk/japan_address, github.com/kztka/voicetotext, github.com/kzulfazriawan/kommand, @@ -724494,6 +737757,7 @@ github.com/l-jw/random,num_dependents_deps.dev:0 github.com/l-lin/angular-datatables,"criticality_score:0.470020,num_dependents_deps.dev:1" github.com/l-lin/font-awesome-animation,"criticality_score:0.321130,num_dependents_deps.dev:0" github.com/l-lin/generator-linangular,num_dependents_deps.dev:0 +github.com/l-lin/spectral-comment-action, github.com/l-lin/tcli,num_dependents_deps.dev:0 github.com/l-ll/alloy-crop-vue,num_dependents_deps.dev:0 github.com/l-ll/qrcode-vue,num_dependents_deps.dev:2 @@ -724793,13 +738057,17 @@ github.com/l8js/l8,num_dependents_deps.dev:0 github.com/l8nite/matheval,num_dependents_deps.dev:0 github.com/l8on/affiance,num_dependents_deps.dev:0 github.com/l979295897/luhaipeng,num_dependents_deps.dev:0 +github.com/lBeJIuk/adip, github.com/lBeJIuk/gulp-timemanager,num_dependents_deps.dev:0 github.com/lBeJIuk/karma-hint,num_dependents_deps.dev:0 +github.com/lBeJIuk/scp_action, github.com/lBodia/Form-Ajax,num_dependents_deps.dev:0 github.com/lBodia/Instagram-Crawling,num_dependents_deps.dev:0 github.com/lBroth/xpay-nexi-js,num_dependents_deps.dev:0 github.com/lGatl/gat-ui-react,num_dependents_deps.dev:0 github.com/lHersey/with-rn-get-social,num_dependents_deps.dev:0 +github.com/lNEWBEEl/echorandomnum, +github.com/lNEWBEEl/echotime, github.com/lRomul/argus, github.com/lRomul/rosny, github.com/lSoleyl/mp3tag,num_dependents_deps.dev:0 @@ -724817,6 +738085,7 @@ github.com/lVlyke/lithium-ngx-virtual-scroll,num_dependents_deps.dev:0 github.com/lVlyke/ngx-cordova-native-http,num_dependents_deps.dev:0 github.com/lVlyke/ngxs-synchronizers,num_dependents_deps.dev:0 github.com/lZiMUl/Mcbbsmis, +github.com/la-cc/gh-action-hello-world, github.com/la-guirlande/module-client, github.com/la-haute-societe/air-compiler,num_dependents_deps.dev:0 github.com/la-haute-societe/deployator,num_dependents_deps.dev:0 @@ -724959,6 +738228,8 @@ github.com/lab259/http-redigo-service,num_dependents_deps.dev:0 github.com/lab360-ch/verdaccio-gitlab-ci,num_dependents_deps.dev:0 github.com/lab37/utils-go,num_dependents_deps.dev:0 github.com/lab403/MapController,num_dependents_deps.dev:0 +github.com/lab42/Helm, +github.com/lab42/conventional-commit, github.com/lab42/graphql,num_dependents_deps.dev:0 github.com/lab42/middleware,num_dependents_deps.dev:0 github.com/lab42/user,num_dependents_deps.dev:0 @@ -724999,6 +738270,7 @@ github.com/labaneilers/grunt-npm-helper,num_dependents_deps.dev:0 github.com/labaneilers/hashly,num_dependents_deps.dev:0 github.com/labapart/cross_sysroot, github.com/labapart/gattlib,criticality_score:0.378810 +github.com/labarak/sputnik-action, github.com/labaran1/Hooks-form-validation,num_dependents_deps.dev:0 github.com/labarilem/npmfix,num_dependents_deps.dev:0 github.com/labarilem/spam-keypress,num_dependents_deps.dev:0 @@ -725036,6 +738308,7 @@ github.com/labcolab/colab,num_dependents_deps.dev:0 github.com/labd-dev/heatmap,num_dependents_deps.dev:0 github.com/labd/amplience-go-sdk,num_dependents_deps.dev:0 github.com/labd/aws-es-query, +github.com/labd/changie-release-action, github.com/labd/commercetools-go-sdk,num_dependents_deps.dev:1 github.com/labd/commercetools-python-sdk, github.com/labd/commercetools-utilities-javascript,num_dependents_deps.dev:0 @@ -725110,8 +738383,10 @@ github.com/labkode/restic,num_dependents_deps.dev:0 github.com/labkomp/labkomp-npm,num_dependents_deps.dev:0 github.com/lablabs/cloudflare-exporter,num_dependents_deps.dev:0 github.com/lablabs/prometheus-alert-overrider,num_dependents_deps.dev:0 +github.com/lablabs/setup-terraform-docs, github.com/lablayers/hubot-guru,num_dependents_deps.dev:0 github.com/lablayers/passport-deviantart,num_dependents_deps.dev:0 +github.com/lablnet/create-branch-from-tag, github.com/lablup/aiodataloader-ng, github.com/lablup/aiotusclient, github.com/lablup/backend.ai, @@ -725182,6 +738457,11 @@ github.com/labradorcouk/yaddb,num_dependents_deps.dev:0 github.com/labri-progress/naturalness-java,num_dependents_deps.dev:0 github.com/labri-progress/naturalness-js, github.com/labria/erlgen,num_dependents_deps.dev:0 +github.com/labring-actions/Pull-Request-Comments-hidden-tags, +github.com/labring-actions/sealos-cherry-pick, +github.com/labring/gh-rebot, +github.com/labring/robot, +github.com/labring/sealos-action, github.com/labrixdigital/cloudwatch, github.com/labrixdigital/pymeli, github.com/labrosse/dmsuite, @@ -725308,6 +738588,7 @@ github.com/lacepek/react-svelte,num_dependents_deps.dev:0 github.com/lacewingio/libfrosty, github.com/lacework/conntrack,num_dependents_deps.dev:0 github.com/lacework/go-sdk,num_dependents_deps.dev:0 +github.com/lacework/lw-scanner-action, github.com/lacework/pcap,num_dependents_deps.dev:0 github.com/lacework/python-sdk, github.com/lacework/react-widgets,num_dependents_deps.dev:0 @@ -725322,6 +738603,7 @@ github.com/lachenmayer/midi-messages,num_dependents_deps.dev:0 github.com/lacherogwu/npm-autofs, github.com/lachesis/scallion,criticality_score:0.405750 github.com/lachezargrigorov/node-db-logger,num_dependents_deps.dev:0 +github.com/lachhebo/breaktime, github.com/lachhebo/pyclustertend, github.com/lachholden/up2ynab, github.com/lachie-young/learn-go,num_dependents_deps.dev:0 @@ -725409,6 +738691,7 @@ github.com/lachrist/virtual-proxy,num_dependents_deps.dev:6 github.com/lachrist/volothamp,num_dependents_deps.dev:0 github.com/lachstec/lux-blog,num_dependents_deps.dev:0 github.com/lachstr/html2ical,num_dependents_deps.dev:0 +github.com/lachupacabra/action-sqlfluff, github.com/laci009/cassandra-modelgen,num_dependents_deps.dev:0 github.com/lacides/ember-cli-fixture-loader,num_dependents_deps.dev:0 github.com/lacinoire/worflowy-cli,num_dependents_deps.dev:0 @@ -725568,6 +738851,7 @@ github.com/ladderio/ngx-tribute,num_dependents_deps.dev:0 github.com/ladderok34/lightweight-react-modal,num_dependents_deps.dev:0 github.com/ladderwinner/tracker,num_dependents_deps.dev:0 github.com/laddge/reclip, +github.com/laddge/webnotify, github.com/laddspencer/twitch-auth,num_dependents_deps.dev:0 github.com/ladeiko/async-lazystream, github.com/ladeiko/async-zip-stream,num_dependents_deps.dev:0 @@ -725624,8 +738908,10 @@ github.com/ladisk/uff_widget, github.com/ladislaogarcia/bmimetypes,num_dependents_deps.dev:0 github.com/ladislaogarcia/generator-marionette-bootstrap,num_dependents_deps.dev:0 github.com/ladislas/unsplash-cli,num_dependents_deps.dev:0 +github.com/ladislas14/kubernetes-action, github.com/ladislav-zezula/CascLib,criticality_score:0.390580 github.com/ladislav-zezula/StormLib,criticality_score:0.429460 +github.com/ladjeek-actions/action-telegram, github.com/ladjrong/tayy2, github.com/ladjs/agenda,num_dependents_deps.dev:0 github.com/ladjs/api,num_dependents_deps.dev:0 @@ -725693,6 +738979,7 @@ github.com/laduke/zerotier-central-client,num_dependents_deps.dev:0 github.com/laduke/zerotier-service,num_dependents_deps.dev:0 github.com/ladutsko/isbn-core,num_dependents_deps.dev:0 github.com/ladval/golang,num_dependents_deps.dev:0 +github.com/ladvivek7/Az_Pipeline, github.com/ladvood/even-fibonacci-numbers,num_dependents_deps.dev:0 github.com/ladvood/multiples-of-3-and-5,num_dependents_deps.dev:0 github.com/lady-pandas/sklearn-ts, @@ -725820,6 +739107,7 @@ github.com/lafeillou/yofc-element-selector,num_dependents_deps.dev:0 github.com/lafeillou/yofc-react-native-vector-icons,num_dependents_deps.dev:0 github.com/lafeillou/yofc-react-native-wheel-picker,num_dependents_deps.dev:0 github.com/lafeillou/yofc-vue-pdfjs,num_dependents_deps.dev:0 +github.com/lafernando/github-action-bash, github.com/lafeychine/slides-viewer, github.com/laffed/rn-boiler,num_dependents_deps.dev:0 github.com/laffra/auger, @@ -725949,6 +739237,7 @@ github.com/lagerspetz/getopt-scala,num_dependents_deps.dev:0 github.com/laget-se/eslint-config-lagetse,num_dependents_deps.dev:0 github.com/laget-se/narp, github.com/laget-se/node-gettext-json,num_dependents_deps.dev:0 +github.com/laget-se/publish-nuget, github.com/laget-se/react-gettext-parser,num_dependents_deps.dev:0 github.com/lageto-net/monero-rpc,num_dependents_deps.dev:0 github.com/laggingreflex/1nstall,num_dependents_deps.dev:0 @@ -726066,6 +739355,7 @@ github.com/lago-project/lago, github.com/lagom/lagom,"criticality_score:0.580190,num_dependents_deps.dev:25992" github.com/lagom/lagom-akka-discovery-service-locator,num_dependents_deps.dev:0 github.com/lagom/sbt-lagom-descriptor-generator,num_dependents_deps.dev:1 +github.com/lagonapp/github-action, github.com/lagoon-road/lr-main,num_dependents_deps.dev:0 github.com/lagoon-road/lr-server-renderer,num_dependents_deps.dev:0 github.com/lagoon-road/lr-server-router,num_dependents_deps.dev:0 @@ -726085,6 +739375,8 @@ github.com/lagrangemartin/huffman,num_dependents_deps.dev:0 github.com/lagranges/people_also_ask, github.com/lagranovskiy/j316-notificator,num_dependents_deps.dev:0 github.com/lagranovskiy/j316-translator,num_dependents_deps.dev:0 +github.com/lagren/docker-gcr-action, +github.com/lagren/setup-task, github.com/lagren/tlsguard,num_dependents_deps.dev:0 github.com/lagun4ik/flyingSquare, github.com/lagun4ik/node-runas-win,num_dependents_deps.dev:0 @@ -726164,6 +739456,7 @@ github.com/lai323/bytecodec,num_dependents_deps.dev:0 github.com/lai323/idict,num_dependents_deps.dev:0 github.com/lai323/readygo,num_dependents_deps.dev:0 github.com/laianliu/epf-gislib, +github.com/laiba-dev/flutter-autograding, github.com/laibin-wang/socket-heart,num_dependents_deps.dev:0 github.com/laibulle/phoenix-rs,num_dependents_deps.dev:0 github.com/laibulle/saphyr, @@ -726222,6 +739515,7 @@ github.com/laimonassutkus/GitDependencyPython, github.com/lain-dono/pixi,num_dependents_deps.dev:0 github.com/lain-dono/reui,num_dependents_deps.dev:0 github.com/lain-dono/vue-dnd,num_dependents_deps.dev:0 +github.com/lainNao/branch-script-diff-check, github.com/laincarl/origamiboat-boot,num_dependents_deps.dev:0 github.com/laincarl/origamiboat-ui,num_dependents_deps.dev:0 github.com/lainchan/lainchan,criticality_score:0.366010 @@ -726236,6 +739530,7 @@ github.com/laineus/phavuer,num_dependents_deps.dev:0 github.com/laineus/tile-extrude-webpack-plugin,num_dependents_deps.dev:0 github.com/laineus/vue-scroll-hook,num_dependents_deps.dev:0 github.com/laineus/vue3-smooth-scroll,num_dependents_deps.dev:0 +github.com/laingcc/json-to-variables, github.com/laingocbao/qor,num_dependents_deps.dev:0 github.com/lainiwa/my-ip, github.com/lainlee/singleton-helper,num_dependents_deps.dev:0 @@ -726284,6 +739579,7 @@ github.com/laissonsilveira/inject-fingerprint,num_dependents_deps.dev:0 github.com/laistomazz/font-awesome-picker,num_dependents_deps.dev:0 github.com/laithmohammed1993/baghdad, github.com/laithmohammed1993/react-ideas,num_dependents_deps.dev:0 +github.com/laithrafid/s3cmd, github.com/laithshadeed/dir-walk,num_dependents_deps.dev:0 github.com/laithyounes/react-date-range-picker,num_dependents_deps.dev:0 github.com/laitingyou/cache,num_dependents_deps.dev:0 @@ -726576,6 +739872,7 @@ github.com/laktek/punch-thirdparty-snippets-helper,num_dependents_deps.dev:0 github.com/laktek/really-simple-color-picker,num_dependents_deps.dev:0 github.com/laktek/todo,num_dependents_deps.dev:0 github.com/lakto/horo,num_dependents_deps.dev:0 +github.com/lakuapik/gh-actions-http-status, github.com/lakuapik/js-holiday-id,num_dependents_deps.dev:0 github.com/lakunle12/second-repo,num_dependents_deps.dev:0 github.com/lakwet/voracious_sort,num_dependents_deps.dev:0 @@ -726952,6 +740249,7 @@ github.com/lambci/lambci,"criticality_score:0.337480,num_dependents_deps.dev:0" github.com/lambci/sync-threads, github.com/lambcode/obsidian-journal-helper,num_dependents_deps.dev:0 github.com/lambda-cdm/react-material-dashboard, +github.com/lambda-curry/Rancher-CLI, github.com/lambda-direct/datalayer,num_dependents_deps.dev:0 github.com/lambda-direct/datalayer-js-app, github.com/lambda-direct/gocast-stock-calc,num_dependents_deps.dev:0 @@ -727182,7 +740480,10 @@ github.com/laminalfalah/backend-framework,num_dependents_deps.dev:12 github.com/laminar-protocol/flowchain.js,num_dependents_deps.dev:0 github.com/laminar-protocol/laminar-chain.js,num_dependents_deps.dev:62 github.com/laminar-protocol/orml.js,num_dependents_deps.dev:0 +github.com/laminas/automatic-releases, +github.com/laminas/laminas-ci-matrix-action, github.com/laminas/laminas-code,criticality_score:0.570060 +github.com/laminas/laminas-continuous-integration-action, github.com/laminas/laminas-eventmanager,criticality_score:0.462340 github.com/laminas/laminas-zendframework-bridge,criticality_score:0.345540 github.com/laminediabson/censorify,num_dependents_deps.dev:0 @@ -727273,6 +740574,7 @@ github.com/lampaa/com.lampa.startapp,num_dependents_deps.dev:0 github.com/lampaa/imageLib,num_dependents_deps.dev:0 github.com/lampaa/nvidia-smi-rest,num_dependents_deps.dev:0 github.com/lampajr/PTDC, +github.com/lampajr/backporting, github.com/lampajr/jsonrpc-lib,num_dependents_deps.dev:2 github.com/lampajr/toolscip,num_dependents_deps.dev:0 github.com/lampajr/wscip,num_dependents_deps.dev:0 @@ -727335,6 +740637,8 @@ github.com/lamualfa/uniserv,num_dependents_deps.dev:0 github.com/lamualfa/uniserval,num_dependents_deps.dev:0 github.com/lamuses/health-analyst,num_dependents_deps.dev:0 github.com/lamvd0101/react-native-video-editor, +github.com/lamw/create-vsphere-tag-action, +github.com/lamw/deploy-vm-from-content-library-action, github.com/lamw/ghettoVCB,criticality_score:0.375150 github.com/lamw/vghetto-scripts,criticality_score:0.366540 github.com/lamxtyler/discovery,num_dependents_deps.dev:0 @@ -727360,6 +740664,7 @@ github.com/lana/resty-middleware,num_dependents_deps.dev:0 github.com/lanaco/lnc-react-ui,num_dependents_deps.dev:0 github.com/lanalabs/pylana, github.com/lanandra/learn-go,num_dependents_deps.dev:0 +github.com/lananovikova10/writerside-docker-action, github.com/lanastasov/add-zero-to-chapters-subfolder,num_dependents_deps.dev:0 github.com/lanastasov/columnize,num_dependents_deps.dev:0 github.com/lanastasov/gosnippets,num_dependents_deps.dev:0 @@ -727427,6 +740732,7 @@ github.com/lancer-kit/sql-migrate,num_dependents_deps.dev:0 github.com/lancer-kit/uwe,num_dependents_deps.dev:0 github.com/lancer05/logger,num_dependents_deps.dev:0 github.com/lancer07/vue-qr-poster, +github.com/lancer26/fetch-pr-comment, github.com/lancer8883/bild,num_dependents_deps.dev:0 github.com/lancerael/d-theia,num_dependents_deps.dev:0 github.com/lancerushing/gofish,num_dependents_deps.dev:0 @@ -727544,6 +740850,7 @@ github.com/landawn/abacus-query,num_dependents_deps.dev:1 github.com/landawn/abacus-util,num_dependents_deps.dev:1 github.com/landawn/abacus-web,num_dependents_deps.dev:0 github.com/landawn/streamex,num_dependents_deps.dev:0 +github.com/landeholt/dd2482-course-automation, github.com/landeiro/PJsonCouch,num_dependents_deps.dev:0 github.com/landengit/babel-plugin-remove-plume2-debug,num_dependents_deps.dev:0 github.com/lander2k2/django-designer, @@ -727618,8 +740925,14 @@ github.com/landn172/postcss-rpxtorem,num_dependents_deps.dev:0 github.com/landn172/tw-component,num_dependents_deps.dev:0 github.com/landn172/typings,num_dependents_deps.dev:0 github.com/landn172/webpack-miniapp-vue, +github.com/lando/code-sign-action, github.com/lando/lando,criticality_score:0.660810 github.com/lando/leia,num_dependents_deps.dev:0 +github.com/lando/notarize-action, +github.com/lando/pkg-action, +github.com/lando/run-leia-action, +github.com/lando/setup-lando, +github.com/lando/transfer-issue-action, github.com/landonconover/landonconover-npm,num_dependents_deps.dev:0 github.com/landonconover/npmmoduledemo,num_dependents_deps.dev:0 github.com/landonmarder/validations,num_dependents_deps.dev:0 @@ -727655,8 +740968,10 @@ github.com/landscapeio/pylint-celery, github.com/landscapeio/pylint-common, github.com/landscapeio/requirements-detector, github.com/landstorm/yggdrasil,num_dependents_deps.dev:0 +github.com/landtechnologies/k8s-toolbox, github.com/landtechnologies/promise-domain-monkeypatch,num_dependents_deps.dev:0 github.com/landvibe/react-controlled,num_dependents_deps.dev:0 +github.com/landx-id/github-repository-sync-action, github.com/landy2014/fis3-prepackager-seajs-combine,num_dependents_deps.dev:0 github.com/landy2014/gulp-json-to-map, github.com/landy2014/khf,num_dependents_deps.dev:0 @@ -727834,6 +741149,8 @@ github.com/langri-sha/screeps-webpack-plugin,num_dependents_deps.dev:0 github.com/langrind/ccjtools, github.com/langrind/mavometer, github.com/langrind/uqtie, +github.com/langroodi/doxygenize, +github.com/langroodi/tagize, github.com/langsamu/sparql-blockly,num_dependents_deps.dev:0 github.com/langsci/langscikw, github.com/langsci/pypi, @@ -727961,9 +741278,14 @@ github.com/lannonbr/aws-cdk-scheduled-lambda, github.com/lannonbr/cosi-temp,num_dependents_deps.dev:0 github.com/lannonbr/gatsby-remark-vscode-embed,num_dependents_deps.dev:0 github.com/lannonbr/gatsby-theme-github-stats,num_dependents_deps.dev:0 +github.com/lannonbr/issue-label-manager-action, +github.com/lannonbr/lifx-trigger-action, github.com/lannonbr/netlify-bulb,num_dependents_deps.dev:0 github.com/lannonbr/netlify_deploy,num_dependents_deps.dev:0 github.com/lannonbr/npx-card,num_dependents_deps.dev:0 +github.com/lannonbr/puppeteer-screenshot-action, +github.com/lannonbr/repo-permission-check-action, +github.com/lannonbr/vsce-action, github.com/lannonbr/vsmarketplace-api,num_dependents_deps.dev:0 github.com/lannparty/blind-day,num_dependents_deps.dev:0 github.com/lannparty/k8s-cluster-update-controller,num_dependents_deps.dev:0 @@ -728091,6 +741413,7 @@ github.com/lany44/lv-tree,num_dependents_deps.dev:0 github.com/lany9527/wx-resource, github.com/lany9527/wxResource,num_dependents_deps.dev:0 github.com/lanyanxiang/interactive-blocks, +github.com/lanye74/action-build-typescript, github.com/lanyerzz/-types,num_dependents_deps.dev:0 github.com/lanyonm/hubot-rekognition,num_dependents_deps.dev:0 github.com/lanyuankun/zlq2020-generator,num_dependents_deps.dev:0 @@ -728148,8 +741471,10 @@ github.com/laohu-aileen/aileen-httpd,num_dependents_deps.dev:0 github.com/laohu-aileen/aileen-orm,num_dependents_deps.dev:0 github.com/laohuaishu/common-dlock,num_dependents_deps.dev:0 github.com/laohyx/java-usaddress,num_dependents_deps.dev:0 +github.com/laojianzi/github-actions, github.com/laojianzi/mdavatar,num_dependents_deps.dev:0 github.com/laojianzi/mdclubgo,num_dependents_deps.dev:0 +github.com/laojianzi/setup-gitea, github.com/laokiea/kafetcher,num_dependents_deps.dev:0 github.com/laola2013/koa-helper,num_dependents_deps.dev:0 github.com/laola2013/koa-state-helper, @@ -728390,7 +741715,9 @@ github.com/laptransang/javascript-client,num_dependents_deps.dev:0 github.com/laptransang/react-modal-api,num_dependents_deps.dev:0 github.com/laptransang/react-router-guard,num_dependents_deps.dev:0 github.com/lapubell/tux-playground,num_dependents_deps.dev:0 +github.com/laputacloudco/helm-deploy-action, github.com/laputacloudco/minecraft-operator,num_dependents_deps.dev:0 +github.com/laputansoft/github-tag-action, github.com/lapwinglabs/allogator,num_dependents_deps.dev:0 github.com/lapwinglabs/bare-auth,num_dependents_deps.dev:0 github.com/lapwinglabs/bare-auth-facebook,num_dependents_deps.dev:0 @@ -728587,6 +741914,7 @@ github.com/lariDevOps/api-client,num_dependents_deps.dev:0 github.com/laribee/dopecukes,num_dependents_deps.dev:0 github.com/laricoDGT/lstyle,num_dependents_deps.dev:0 github.com/larics/assisi-python, +github.com/laridae-migrations/laridae-action, github.com/larien/aprenda-go-com-testes,num_dependents_deps.dev:0 github.com/larien/learn-go-with-tests,num_dependents_deps.dev:0 github.com/larikhide/personal-blog,num_dependents_deps.dev:0 @@ -728716,6 +742044,7 @@ github.com/larryc5/sleep,num_dependents_deps.dev:0 github.com/larryc5/static-spa,num_dependents_deps.dev:0 github.com/larryc5/taskdo, github.com/larryc5/url-query-parser,num_dependents_deps.dev:0 +github.com/larrycai/hello-action, github.com/larrycai/mkbok, github.com/larrycai/pbn2html, github.com/larrycai/xin2pbn, @@ -728743,8 +742072,10 @@ github.com/larryhengl/myvariantjs,num_dependents_deps.dev:0 github.com/larryhou/gocache,num_dependents_deps.dev:0 github.com/larryhou/sockopt,num_dependents_deps.dev:0 github.com/larryhou/unity-gocache,num_dependents_deps.dev:0 +github.com/larryjoelane/delete-release-action, github.com/larrykevin/random-messages, github.com/larrykkk/larrykk-vue-tinymce,num_dependents_deps.dev:0 +github.com/larrylawl/auto-github-issue-labeller-action, github.com/larrymyers/darksky,num_dependents_deps.dev:0 github.com/larrymyers/dropwizard-smtp-appender,num_dependents_deps.dev:0 github.com/larrymyers/hapi-bunyan-plugin,num_dependents_deps.dev:0 @@ -728912,6 +742243,7 @@ github.com/larsno/esdoc-tripleslash-plugin,num_dependents_deps.dev:0 github.com/larsno/evconfig,num_dependents_deps.dev:0 github.com/larsnystrom/module-style,num_dependents_deps.dev:0 github.com/larsol/googlepubsubemulator,num_dependents_deps.dev:0 +github.com/larsoner/circleci-artifacts-redirector-action, github.com/larsoner/flake8-array-spacing, github.com/larsonjj/generator-neopolitan,num_dependents_deps.dev:0 github.com/larsonjj/generator-pistacheo,num_dependents_deps.dev:0 @@ -728949,6 +742281,7 @@ github.com/larsrollik/rpi_camera_colony, github.com/larsrollik/templatepy, github.com/larsrollik/timefrequency, github.com/larsselstad/httpd-php-switcher,num_dependents_deps.dev:0 +github.com/larssieboy18/close-label, github.com/larssl780/soccer, github.com/larssl780/thin_wrappers, github.com/larssont/pyombi, @@ -729090,6 +742423,7 @@ github.com/laserdisc-io/log-effect,num_dependents_deps.dev:124 github.com/laserdisc-io/mysql-binlog-stream,num_dependents_deps.dev:0 github.com/laserdisc-io/tamer,num_dependents_deps.dev:0 github.com/laserdisc-io/zio-oci-objectstorage,num_dependents_deps.dev:0 +github.com/laserflare/lfm-update-action, github.com/lasergoat/homepress,num_dependents_deps.dev:0 github.com/laserkelvin/PySpecTools, github.com/laserkelvin/astrochem_embedding, @@ -729121,6 +742455,7 @@ github.com/lasicol/node-sync-menu,num_dependents_deps.dev:0 github.com/lasigeBioTM/DiShIn, github.com/lasigeBioTM/merpy, github.com/lasircc/jsondesign, +github.com/lasith-kg/dispatch-workflow, github.com/lask0v/learning-git,num_dependents_deps.dev:0 github.com/laskos/react-sortable-grid,num_dependents_deps.dev:0 github.com/laskoviymishka/cqrs-eventsource, @@ -729382,6 +742717,7 @@ github.com/lateefj/trigr,num_dependents_deps.dev:0 github.com/latel/logline,num_dependents_deps.dev:0 github.com/latelierco/vue-application-insights,num_dependents_deps.dev:0 github.com/latelierco/vue-signalr,num_dependents_deps.dev:0 +github.com/latency-lingo/github-action, github.com/latency4j/repo,num_dependents_deps.dev:0 github.com/latenighttales/alcali, github.com/latensified/glitch-time,num_dependents_deps.dev:0 @@ -729480,6 +742816,9 @@ github.com/latte97/requests,num_dependents_deps.dev:0 github.com/lattebank/analytics.js-integration,num_dependents_deps.dev:0 github.com/lattebank/facade,num_dependents_deps.dev:0 github.com/lattecake/consul-kv-client,num_dependents_deps.dev:0 +github.com/lattepress/WordPress-Site-Deploy, +github.com/lattepress/wp-deployer-action, +github.com/latteproj/WeComBot-action, github.com/lattesir/1inch,num_dependents_deps.dev:0 github.com/lattesir/gasprice-estimator,num_dependents_deps.dev:0 github.com/lattesir/uxapi, @@ -729491,6 +742830,7 @@ github.com/lattice-boot/core,num_dependents_deps.dev:0 github.com/lattice-boot/redis,num_dependents_deps.dev:0 github.com/lattice-boot/transfer,num_dependents_deps.dev:0 github.com/lattice-boot/typeorm,num_dependents_deps.dev:0 +github.com/latticehr/action-aws-iam-authenticator, github.com/latticehr/apex,num_dependents_deps.dev:0 github.com/latticehr/relay-compiler-language-js-only-flow,num_dependents_deps.dev:0 github.com/latticejs/lattice,num_dependents_deps.dev:0 @@ -729509,6 +742849,7 @@ github.com/latysheff/smpp-gateway,num_dependents_deps.dev:0 github.com/latysheff/sms-3gpp,num_dependents_deps.dev:0 github.com/lau-bel/npx-card,num_dependents_deps.dev:0 github.com/lau/calendar,criticality_score:0.309770 +github.com/lauchacarro/Azure-Storage-Action, github.com/lauchacarro/actionNetCore.js,num_dependents_deps.dev:0 github.com/lauchacarro/gh-action-netcore.js,num_dependents_deps.dev:0 github.com/laudeon/asyncable,num_dependents_deps.dev:0 @@ -729524,6 +742865,7 @@ github.com/lauevrar77/laizy, github.com/lauff/ioBroker.rct,num_dependents_deps.dev:0 github.com/lauft/timew-report, github.com/laugh12321/meaning, +github.com/laughface809/asana-tix, github.com/laughface809/compare-persistent,num_dependents_deps.dev:0 github.com/laughface809/ui,num_dependents_deps.dev:0 github.com/laughing001/react-native-tcharts,num_dependents_deps.dev:0 @@ -729554,6 +742896,7 @@ github.com/laukatu/strapi-provider-upload-bunnycdn, github.com/laukhin/asyncpgx, github.com/laukik/encryptojs,num_dependents_deps.dev:0 github.com/laukik/logjs,num_dependents_deps.dev:0 +github.com/laukstein/do-spaces, github.com/laukvik/LaukvikCSV,num_dependents_deps.dev:0 github.com/laukvik/Smartflow,num_dependents_deps.dev:0 github.com/laul7klau/grpc,num_dependents_deps.dev:0 @@ -729570,6 +742913,9 @@ github.com/launay12u/hyper-command-gifs,num_dependents_deps.dev:0 github.com/launch-io/launch.io, github.com/launchableinc/nose-launchable, github.com/launchableinc/nose-reorder, +github.com/launchableinc/record-build-action, +github.com/launchableinc/record-build-and-test-results-action, +github.com/launchableinc/record-test-results-to-build-action, github.com/launchacademy/extraterrestrial,num_dependents_deps.dev:0 github.com/launchacademy/spaced-cadet, github.com/launchbadge/babel-preset-launchbadge,num_dependents_deps.dev:0 @@ -729600,6 +742946,8 @@ github.com/launchdarkly/api-client-typescript,num_dependents_deps.dev:0 github.com/launchdarkly/electron-client,num_dependents_deps.dev:0 github.com/launchdarkly/electron-client-sdk, github.com/launchdarkly/eventsource,num_dependents_deps.dev:25 +github.com/launchdarkly/find-code-references, +github.com/launchdarkly/find-code-references-in-pull-request, github.com/launchdarkly/gatsby-plugin-launchdarkly,num_dependents_deps.dev:0 github.com/launchdarkly/git-flag-parser,num_dependents_deps.dev:0 github.com/launchdarkly/go-configtypes,num_dependents_deps.dev:0 @@ -730060,6 +743408,7 @@ github.com/lawchihon/videojs-dailymotion,num_dependents_deps.dev:0 github.com/lawcia/go-docker-helloworld,num_dependents_deps.dev:0 github.com/lawenlerk/easy-head,num_dependents_deps.dev:0 github.com/lawerencem/raspberrypi-python-tm1637, +github.com/lawgdev/action, github.com/lawgimenez/automouse-go,num_dependents_deps.dev:0 github.com/lawgimenez/rnandroidxmlparser,num_dependents_deps.dev:0 github.com/lawgsy/cerebro-screenshot,num_dependents_deps.dev:0 @@ -730290,8 +743639,10 @@ github.com/layer-devops/sanic,num_dependents_deps.dev:0 github.com/layer-pack/layer-pack, github.com/layer1capital/easy-jsonrpc,num_dependents_deps.dev:0 github.com/layer2lib/js-layer2lib,num_dependents_deps.dev:0 +github.com/layer5io/getnighthawk, github.com/layer5io/gokit,num_dependents_deps.dev:0 github.com/layer5io/gowrk2,num_dependents_deps.dev:0 +github.com/layer5io/helm-chart-releaser, github.com/layer5io/layer5-istio-adapter,num_dependents_deps.dev:0 github.com/layer5io/learn-layer5,num_dependents_deps.dev:20 github.com/layer5io/meshery,"criticality_score:0.671470,num_dependents_deps.dev:0" @@ -730309,12 +743660,17 @@ github.com/layer5io/meshery-nsx-sm,num_dependents_deps.dev:0 github.com/layer5io/meshery-octarine,num_dependents_deps.dev:0 github.com/layer5io/meshery-operator,num_dependents_deps.dev:0 github.com/layer5io/meshery-osm,num_dependents_deps.dev:0 +github.com/layer5io/meshery-smi-conformance-action, +github.com/layer5io/meshery-smp-action, github.com/layer5io/meshery-traefik-mesh,num_dependents_deps.dev:0 github.com/layer5io/meshkit,num_dependents_deps.dev:0 github.com/layer5io/meshsync,num_dependents_deps.dev:0 github.com/layer5io/nighthawk-go,num_dependents_deps.dev:0 github.com/layer5io/service-mesh-performance,num_dependents_deps.dev:1 github.com/layer5io/service-mesh-performance-specification,num_dependents_deps.dev:0 +github.com/layer5io/trigger-remote-provider-action, +github.com/layer5labs/cypress-test-summary, +github.com/layer5labs/meshmap-snapshot, github.com/layer7be/elixir-vuemaker,num_dependents_deps.dev:0 github.com/layer7be/gulp-vuemaker,num_dependents_deps.dev:0 github.com/layerJS/layerJS,criticality_score:0.310500 @@ -730426,7 +743782,10 @@ github.com/laysent/silk-sdk,num_dependents_deps.dev:0 github.com/laysent/some-codemod,num_dependents_deps.dev:0 github.com/laysent/webpack-require-performance-plugin,num_dependents_deps.dev:0 github.com/laysi/go-ecpay-sdk,num_dependents_deps.dev:0 +github.com/laytan/setup-odin, github.com/layumi/Person_reID_baseline_pytorch,criticality_score:0.327910 +github.com/layux/action-ftp, +github.com/layux/archived-action-interpolate-env, github.com/layverns/lnpm-public,num_dependents_deps.dev:0 github.com/layverns/lnpm-scoped-public,num_dependents_deps.dev:0 github.com/layyne/gol-ang,num_dependents_deps.dev:0 @@ -730567,6 +743926,8 @@ github.com/lazopm/peitho,num_dependents_deps.dev:0 github.com/lazopm/react-static-content,num_dependents_deps.dev:0 github.com/lazorfuzz/liowebrtc,num_dependents_deps.dev:0 github.com/lazorfuzz/react-liowebrtc,num_dependents_deps.dev:0 +github.com/lazuee/github-fresh-commit, +github.com/lazuee/github-tracker, github.com/lazurey/desensitize-it,num_dependents_deps.dev:0 github.com/lazurite-app/generic-midi-controller,num_dependents_deps.dev:0 github.com/lazurite-app/launch-control-xl,num_dependents_deps.dev:0 @@ -730575,6 +743936,11 @@ github.com/lazutkin/gulp-yml,num_dependents_deps.dev:0 github.com/lazutkin/ho-interval,num_dependents_deps.dev:0 github.com/lazutkin/memory-stream,num_dependents_deps.dev:0 github.com/lazutkin/mongoose-acl,num_dependents_deps.dev:0 +github.com/lazy-actions/gitrivy, +github.com/lazy-actions/lgtm-image-action, +github.com/lazy-actions/pip-audit-action, +github.com/lazy-actions/slatify, +github.com/lazy-actions/tweet-action, github.com/lazy-b/l-form,num_dependents_deps.dev:0 github.com/lazy-b/lazyb-eslint-config, github.com/lazy-b/lazyb-stylelint-config, @@ -730817,12 +744183,14 @@ github.com/lbenie/yify-api,num_dependents_deps.dev:0 github.com/lbenini/bot-telegram,num_dependents_deps.dev:0 github.com/lbenini/node-frotz,num_dependents_deps.dev:0 github.com/lbenitez000/trparse, +github.com/lber19535/github-actions-hexo, github.com/lbernardo/common_http,num_dependents_deps.dev:0 github.com/lbertenasco/ap-cordova-plugin-openwith,num_dependents_deps.dev:0 github.com/lbertenasco/ap-ng2-fullcalendar,num_dependents_deps.dev:0 github.com/lbertenasco/bonded-stealth-tx,num_dependents_deps.dev:8 github.com/lbertenasco/contract-utils,num_dependents_deps.dev:6 github.com/lbertenasco/ng-emoji-picker,num_dependents_deps.dev:0 +github.com/lbertenasco/s3-deploy, github.com/lbertenasco/safe-smart-swap,num_dependents_deps.dev:0 github.com/lbfalvy/pro-ui,num_dependents_deps.dev:0 github.com/lbfalvy/react-await,num_dependents_deps.dev:0 @@ -730839,6 +744207,7 @@ github.com/lbiragnet/covid_dashboard_lbiragnet, github.com/lbitencourt/carambola,num_dependents_deps.dev:0 github.com/lbitonti/deltaspike-dbunit,num_dependents_deps.dev:0 github.com/lbitonti/liquibase-hana,num_dependents_deps.dev:0 +github.com/lbj91/notion-sdk-ts, github.com/lbj96347/Alimama-Auto-Login, github.com/lbj96347/urlcode-json, github.com/lbke/operation-name-mock-link,num_dependents_deps.dev:0 @@ -730898,6 +744267,7 @@ github.com/lboehm/ui5-semver, github.com/lbohlmann/homebridge-lightify-tunablewhite-e14,num_dependents_deps.dev:0 github.com/lbolla/fbcli, github.com/lbolla/yamlenv, +github.com/lbonanomi/nutrition-label, github.com/lbonn/i3-focus-last,num_dependents_deps.dev:0 github.com/lbonn/i3-quickterm, github.com/lbordowitz/OpenForecast,num_dependents_deps.dev:1 @@ -730977,6 +744347,7 @@ github.com/lbsfei/nodetest,num_dependents_deps.dev:0 github.com/lbslogics/capacitor-background-fetch, github.com/lbsonley/gatsby-theme-technical-blog,num_dependents_deps.dev:0 github.com/lbsonley/react-cosha,num_dependents_deps.dev:0 +github.com/lbssousa/latex-music-action, github.com/lbsyzfs/experimental-clash,num_dependents_deps.dev:0 github.com/lbt/air,num_dependents_deps.dev:0 github.com/lbt/channels-mqtt-proxy, @@ -731027,6 +744398,7 @@ github.com/lbwa/tslang-utils,num_dependents_deps.dev:0 github.com/lbwa/v-access,num_dependents_deps.dev:0 github.com/lbwa/vas.js,num_dependents_deps.dev:0 github.com/lbwa/vue-lazing, +github.com/lbwa/yuque-sync, github.com/lbydev/go-leetcode,num_dependents_deps.dev:0 github.com/lbydev/go-with-tests,num_dependents_deps.dev:0 github.com/lbyxiafei/bonbon, @@ -731151,6 +744523,7 @@ github.com/lcdsantos/jQuery-Selectric,"criticality_score:0.325040,num_dependents github.com/lcdsantos/jquery-drawsvg,num_dependents_deps.dev:0 github.com/lcdsantos/menuspy,num_dependents_deps.dev:0 github.com/lcdsmao/jettheme,num_dependents_deps.dev:0 +github.com/lcdsmao/update-branch, github.com/lcepy/glob-proxy,num_dependents_deps.dev:0 github.com/lceric/raw-edit-loader, github.com/lceric/scan-page-resources,num_dependents_deps.dev:0 @@ -731299,6 +744672,9 @@ github.com/lcoder/wbfresh,num_dependents_deps.dev:0 github.com/lcoderfit/introduction-to-algotithms,num_dependents_deps.dev:0 github.com/lcoenen/OpenRide-shared,num_dependents_deps.dev:0 github.com/lcoenen/catnapify,num_dependents_deps.dev:0 +github.com/lcollins/checkstyle-github-action, +github.com/lcollins/pmd-github-action, +github.com/lcollins/spotbugs-github-action, github.com/lcolok/IOS,num_dependents_deps.dev:0 github.com/lcolok/imaex, github.com/lcolok/texttojsxbin,num_dependents_deps.dev:0 @@ -731516,8 +744892,11 @@ github.com/ldej/api-ldej-nl,num_dependents_deps.dev:0 github.com/ldej/go-acapy-client,num_dependents_deps.dev:0 github.com/ldej/go-training,num_dependents_deps.dev:0 github.com/ldej/swagger-go-example,num_dependents_deps.dev:0 +github.com/ldellisola/verify-nuget-package-version, github.com/ldelossa/goblog,num_dependents_deps.dev:0 github.com/ldelossa/responserecorder,num_dependents_deps.dev:0 +github.com/ldeluigi/markdown-docs, +github.com/ldeluigi/mtg-fetch-action, github.com/ldeluigi/untitled-goose-framework,num_dependents_deps.dev:0 github.com/ldenblyd/react-thumbnails-video-preview,num_dependents_deps.dev:0 github.com/ldeng7/go-leetcode,num_dependents_deps.dev:0 @@ -731567,6 +744946,7 @@ github.com/ldiary/pytest-testbook, github.com/ldicocco/formik, github.com/ldicocco/rsl10-pac,num_dependents_deps.dev:0 github.com/ldiebold/melody-maker,num_dependents_deps.dev:0 +github.com/ldiego73/eslint-report-action, github.com/ldiego73/micro-lambda-api,num_dependents_deps.dev:0 github.com/ldilley/minestat,num_dependents_deps.dev:0 github.com/ldilov/node-inotify,num_dependents_deps.dev:0 @@ -731689,6 +745069,7 @@ github.com/ldx/python-ebtables, github.com/ldx/python-iptables,criticality_score:0.402090 github.com/ldxldx/generator-ldxProject,num_dependents_deps.dev:0 github.com/ldy105cn/xorm,num_dependents_deps.dev:0 +github.com/ldybyz/wake_okteto, github.com/ldziewa/log4js-slack,num_dependents_deps.dev:0 github.com/ldziewa/node-ts-app,num_dependents_deps.dev:0 github.com/ldziewa/node-ts-architecture-module,num_dependents_deps.dev:0 @@ -731709,6 +745090,7 @@ github.com/le-yams/maven-flatjarszip-plugin,num_dependents_deps.dev:0 github.com/le-yams/myt-predicates,num_dependents_deps.dev:0 github.com/le-yams/nbmongo,num_dependents_deps.dev:0 github.com/le-yams/service-provider-processor,num_dependents_deps.dev:0 +github.com/le0nidas/ktlint-pr-comments, github.com/le0nik/bundle-marked-loader,num_dependents_deps.dev:0 github.com/le0nik/decorate-with-options,num_dependents_deps.dev:0 github.com/le0nik/eslint-config-le0nik,num_dependents_deps.dev:0 @@ -731723,6 +745105,7 @@ github.com/le0pard/omniauth-yammer,num_dependents_deps.dev:0 github.com/le0pard/pgtune,criticality_score:0.299960 github.com/le0pard/storybook-addon-root-attribute,num_dependents_deps.dev:0 github.com/le0pard/webp-ffi,num_dependents_deps.dev:2 +github.com/le0tan/markbind-deploy-gh-pages, github.com/le0tk0k/blog-server,num_dependents_deps.dev:0 github.com/le0x99/DailyTrends, github.com/le0x99/OSMEvolution, @@ -731832,6 +745215,9 @@ github.com/leadream/juuust-icon,num_dependents_deps.dev:0 github.com/leadream/juuust-react-icon,num_dependents_deps.dev:0 github.com/leadream/juuust-vue-icon,num_dependents_deps.dev:0 github.com/leadream/vuepress-theme-juuust,num_dependents_deps.dev:0 +github.com/leadsforce/action-cleanup-package, +github.com/leadsforce/action_build_monorepo, +github.com/leadsforce/action_deploy_monorepo, github.com/leadsimple/create-react-app,num_dependents_deps.dev:0 github.com/leadsolution/sdk,num_dependents_deps.dev:0 github.com/leadstoloyals/node-agcod,num_dependents_deps.dev:0 @@ -731912,8 +745298,12 @@ github.com/leafle/newman-reporter-teamcity,num_dependents_deps.dev:0 github.com/leaflet-extras/RTree,num_dependents_deps.dev:16 github.com/leaflet-extras/leaflet-map,num_dependents_deps.dev:0 github.com/leaflet-extras/leaflet-providers,"criticality_score:0.522190,num_dependents_deps.dev:6" +github.com/leafney/dingtalk-action, github.com/leafney/enterbj_print,num_dependents_deps.dev:0 github.com/leafney/rose,num_dependents_deps.dev:0 +github.com/leafo/gh-actions-lua, +github.com/leafo/gh-actions-luarocks, +github.com/leafo/gh-actions-openresty, github.com/leafo/lapis,criticality_score:0.485380 github.com/leafo/lessphp,criticality_score:0.308930 github.com/leafo/magick,criticality_score:0.304230 @@ -731986,6 +745376,7 @@ github.com/leahcimic/scraper.js,num_dependents_deps.dev:0 github.com/leahcimic/scraperjs-queue-bull, github.com/leahcimic/scraperjs-urlcache-redis,num_dependents_deps.dev:0 github.com/leahjlou/react-filter-builder,num_dependents_deps.dev:0 +github.com/leahlundqvist/get-release, github.com/leahlundqvist/hookhawk,num_dependents_deps.dev:0 github.com/leahlundqvist/xnap, github.com/leahneukirchen/mblaze,criticality_score:0.380820 @@ -732020,6 +745411,8 @@ github.com/lealone/Lealone,criticality_score:0.314100 github.com/leam-tech/renovation-core,num_dependents_deps.dev:0 github.com/leamas/ddupdate, github.com/lean-data-science/jupyterlab-credentialstore,num_dependents_deps.dev:0 +github.com/lean-delivery/substitute-env-vars, +github.com/lean-delivery/substitute-env-vars-action, github.com/lean-delivery/tf-readme-validator, github.com/lean-stack/es-backend,num_dependents_deps.dev:0 github.com/lean-stack/generator-lean,num_dependents_deps.dev:0 @@ -732072,6 +745465,7 @@ github.com/leancloud/okhttp,num_dependents_deps.dev:2 github.com/leancloud/okio,num_dependents_deps.dev:8 github.com/leancloud/ticket,criticality_score:0.418060 github.com/leancloud/use-resource,num_dependents_deps.dev:0 +github.com/leancodepl/dart-problem-matcher, github.com/leancodepl/ts-routes,num_dependents_deps.dev:0 github.com/leandcesar/tmdb-python, github.com/leander-technologies/tiny,num_dependents_deps.dev:0 @@ -732100,6 +745494,7 @@ github.com/leandreaci/andromeda-ui,num_dependents_deps.dev:0 github.com/leandreck/spring-typescript-services,num_dependents_deps.dev:0 github.com/leandrino/pexels-wrapper,num_dependents_deps.dev:0 github.com/leandrino/spotify-wrapper, +github.com/leandro-hermes/action-upload-file, github.com/leandro-hermes/lhn-libraries,num_dependents_deps.dev:0 github.com/leandro-hermes/mat-alert,num_dependents_deps.dev:0 github.com/leandro-hl/data, @@ -732111,6 +745506,7 @@ github.com/leandro-lugaresi/go-gitlab,num_dependents_deps.dev:0 github.com/leandro-mancini/feature-flags,num_dependents_deps.dev:0 github.com/leandro-mancini/globus-style,num_dependents_deps.dev:0 github.com/leandro-mancini/globus7-angular,num_dependents_deps.dev:0 +github.com/leandro-melloni/exec-terraform, github.com/leandro4j/uptime,num_dependents_deps.dev:0 github.com/leandroBorgesFerreira/LoadingButtonAndroid,criticality_score:0.332940 github.com/leandroarndt/djangospam, @@ -732245,12 +745641,14 @@ github.com/leanhubIo/mongoose-nest,num_dependents_deps.dev:0 github.com/leanhubIo/swot-home,num_dependents_deps.dev:0 github.com/leaniterationsllc/generator-lean-react,num_dependents_deps.dev:0 github.com/leanix-public/leanix-js,num_dependents_deps.dev:0 +github.com/leanix/github-actions-store-leanix-plugin, github.com/leanix/import-sort-style, github.com/leanix/leanix-k8s-connector,num_dependents_deps.dev:0 github.com/leanix/leanix-metrics-sdk-java,num_dependents_deps.dev:0 github.com/leanix/leanix-reporting,num_dependents_deps.dev:0 github.com/leanix/leanix-reporting-cli,num_dependents_deps.dev:0 github.com/leanix/leanix-sdk-java,num_dependents_deps.dev:0 +github.com/leanix/nx-affected-dependencies-action, github.com/leanjaxrs/swagger-codegen-jaxrs-lean,num_dependents_deps.dev:0 github.com/leanjs/leanjs,num_dependents_deps.dev:0 github.com/leanjscom/react-compose-component,num_dependents_deps.dev:0 @@ -732700,6 +746098,9 @@ github.com/lecnim/cutest.py, github.com/lecnim/watchers.py, github.com/lecodeur/grunt-keaton,num_dependents_deps.dev:0 github.com/lecogiteur/csvbang,num_dependents_deps.dev:0 +github.com/lecole/sk-destroy-action, +github.com/lecole/sk-preview-action, +github.com/leconio/synology-uploader-action, github.com/lecoqjacob/ts-auto-mock,num_dependents_deps.dev:0 github.com/lecoselol/node-telegram-sio-bot,num_dependents_deps.dev:0 github.com/lecoueyl/mijin, @@ -732851,6 +746252,7 @@ github.com/leduyptit/mongoose-paginate-nodejs,num_dependents_deps.dev:0 github.com/leduyptit/vue-export-excel,num_dependents_deps.dev:0 github.com/leduyptit/vue-gallery-lightbox,num_dependents_deps.dev:0 github.com/leduyptit/vuejs-notification,num_dependents_deps.dev:0 +github.com/ledwindra/continuous-integration-stata, github.com/ledyba/illmatic-scheduling,num_dependents_deps.dev:0 github.com/ledyx/ngx-bulma-pagination,num_dependents_deps.dev:0 github.com/lee-alexander/fusionjs,num_dependents_deps.dev:0 @@ -732862,7 +746264,12 @@ github.com/lee-chase/gulp-index,num_dependents_deps.dev:0 github.com/lee-chase/stylelint-plugin-carbon-tokens,num_dependents_deps.dev:0 github.com/lee-devopa/nativescript-image-filters,num_dependents_deps.dev:0 github.com/lee-dohm/atom-linguist,num_dependents_deps.dev:0 +github.com/lee-dohm/calculate-dates-and-times, +github.com/lee-dohm/close-matching-issues, github.com/lee-dohm/endokken,num_dependents_deps.dev:0 +github.com/lee-dohm/last-assigned, +github.com/lee-dohm/select-matching-issues, +github.com/lee-dohm/team-rotation, github.com/lee-elenbaas/logentriesrus,num_dependents_deps.dev:0 github.com/lee-hodg/coin-clicker, github.com/lee-houghton/dusterjs,num_dependents_deps.dev:0 @@ -732987,6 +746394,7 @@ github.com/leeching/watermarkit,num_dependents_deps.dev:0 github.com/leechongyan/studtor_backend,num_dependents_deps.dev:0 github.com/leechsien/angular-option-tree,num_dependents_deps.dev:0 github.com/leechuanjun/TLTestModule,num_dependents_deps.dev:0 +github.com/leechungkyu/send-to-slack-action, github.com/leechunhoe/nav32x,num_dependents_deps.dev:0 github.com/leechy/angular-google-maps,num_dependents_deps.dev:0 github.com/leechy/imgsupport, @@ -733210,6 +746618,7 @@ github.com/leelachesszero/lczero-server,num_dependents_deps.dev:0 github.com/leelai/react-native-aloha-test,num_dependents_deps.dev:0 github.com/leelai/react-native-rsa-native,num_dependents_deps.dev:0 github.com/leelam666/golang-test,num_dependents_deps.dev:0 +github.com/leelaprakash/gh-actions-automation-ecs-central, github.com/leelaprasadv/pactum-swagger-coverage,num_dependents_deps.dev:0 github.com/leeleeEcho/nakedsurf,num_dependents_deps.dev:0 github.com/leeleoo/chinese-regions-arr-js,num_dependents_deps.dev:0 @@ -733251,6 +746660,7 @@ github.com/leemcdonald-au/SimpleCLI,num_dependents_deps.dev:0 github.com/leemcdonald-au/SimpleFork,num_dependents_deps.dev:0 github.com/leemcdonald-au/SimpleHeaders,num_dependents_deps.dev:0 github.com/leemcdonald-au/SimpleRequest,num_dependents_deps.dev:0 +github.com/leemeador/ready-for-review-pr, github.com/leemengtaiwan/datascience_toolkits, github.com/leemengtaiwan/ml-applications, github.com/leemengtaiwan/ml-apps, @@ -733416,6 +746826,7 @@ github.com/leeruniek/redux-collections,num_dependents_deps.dev:0 github.com/leeruniek/webclient-ui,num_dependents_deps.dev:0 github.com/leesHome/npm-package,num_dependents_deps.dev:0 github.com/leesaenz/lee-fs-utility-debugger,num_dependents_deps.dev:0 +github.com/leesalminen/ipfs-action, github.com/leesama/openapi-generate-config,num_dependents_deps.dev:0 github.com/leesander1/leesander1,num_dependents_deps.dev:0 github.com/leesanel/go-example,num_dependents_deps.dev:0 @@ -733579,6 +746990,8 @@ github.com/lefinal/masc-server,num_dependents_deps.dev:0 github.com/lefit-front/le-ui,num_dependents_deps.dev:0 github.com/lefizzy/react-openpoetry,num_dependents_deps.dev:0 github.com/leflambeur/go-archivist,num_dependents_deps.dev:0 +github.com/leflambeur/publish-sbom, +github.com/leflambeur/rkvst-sbom, github.com/lefnire/derby-auth,num_dependents_deps.dev:0 github.com/lefootballroi/django-huluku, github.com/leforestier/jailconf, @@ -733859,6 +747272,7 @@ github.com/legersky/flexrilog, github.com/legesher/tree-sitter-legesher-python,num_dependents_deps.dev:0 github.com/legetech/lego-lib,num_dependents_deps.dev:0 github.com/legetech/mongo-filter-builder,num_dependents_deps.dev:0 +github.com/legetz/setup-pmd, github.com/leggedrobotics/darknet_ros,criticality_score:0.345810 github.com/leggett/simplify,criticality_score:0.353740 github.com/leggettc18/grindlists,num_dependents_deps.dev:0 @@ -734185,6 +747599,8 @@ github.com/leighmcculloch/tldr,num_dependents_deps.dev:0 github.com/leighmcculloch/vangen,num_dependents_deps.dev:0 github.com/leighmcculloch/xdrpp--stc,num_dependents_deps.dev:0 github.com/leighmck/statechart, +github.com/leigholiver/commit-with-deploy-key, +github.com/leigholiver/enforce-terraform-fmt, github.com/leighs-hammer/browsersync-themekit,num_dependents_deps.dev:0 github.com/leighs-hammer/cra-sass,num_dependents_deps.dev:0 github.com/leighs-hammer/react-folder-structure,num_dependents_deps.dev:0 @@ -734521,6 +747937,8 @@ github.com/leksar/react-d3-templates,num_dependents_deps.dev:0 github.com/leksiq/node-func-overload,num_dependents_deps.dev:0 github.com/leksss/hw-test,num_dependents_deps.dev:0 github.com/leksyib/react-native-video-component,num_dependents_deps.dev:0 +github.com/lekterable/branchlint-action, +github.com/lekterable/inclusive-organization-action, github.com/lekterable/is-regexy,num_dependents_deps.dev:0 github.com/lekterable/perfekt,num_dependents_deps.dev:0 github.com/lektor/lektor,criticality_score:0.552330 @@ -734578,6 +747996,7 @@ github.com/lele85/karma-electron-launcher,num_dependents_deps.dev:0 github.com/lelea2/lambda-scaffolding-generator,num_dependents_deps.dev:0 github.com/lelebus/wcms,num_dependents_deps.dev:0 github.com/lelehouse/barrel-vue,num_dependents_deps.dev:0 +github.com/leleliu008/github-actions-vagrant, github.com/lelemita/nomadcoin,num_dependents_deps.dev:0 github.com/lelenanam/zap,num_dependents_deps.dev:0 github.com/leleofg/cubos-cli,num_dependents_deps.dev:0 @@ -734634,6 +748053,7 @@ github.com/leluxnet/shelly,num_dependents_deps.dev:0 github.com/lelylan/lelylan-node,num_dependents_deps.dev:0 github.com/lelylan/simple-oauth2,"criticality_score:0.497360,num_dependents_deps.dev:150" github.com/lem-project/lem,criticality_score:0.408330 +github.com/lem-project/setup-lem, github.com/lema229/treeselect-aops,num_dependents_deps.dev:0 github.com/lemaire31/react-native-pos-stripe-terminal, github.com/lemaire31/react-native-print-star,num_dependents_deps.dev:0 @@ -734731,6 +748151,7 @@ github.com/lemmycaution/dem,num_dependents_deps.dev:0 github.com/lemmycaution/json-schema-helpers,num_dependents_deps.dev:0 github.com/lemnis/get-pseudo-content,num_dependents_deps.dev:0 github.com/lemnis/style-element-instance,num_dependents_deps.dev:0 +github.com/lemniskett/android-kernel-actions, github.com/lemnissp/vue-multiselect,num_dependents_deps.dev:0 github.com/lemnos/chrome-session-dump,num_dependents_deps.dev:0 github.com/lemo-yxk/debug_charts,num_dependents_deps.dev:0 @@ -734821,6 +748242,7 @@ github.com/lemonabc/svgfont,num_dependents_deps.dev:2 github.com/lemonade-command/lemonade,num_dependents_deps.dev:0 github.com/lemonadee71/component.js,num_dependents_deps.dev:0 github.com/lemonadezZ/ab-ble-gateway-sdk-nodejs,num_dependents_deps.dev:0 +github.com/lemonarc/jekyll-action, github.com/lemonase/youtube-meme-api,num_dependents_deps.dev:0 github.com/lemonce/auxin,num_dependents_deps.dev:0 github.com/lemonce/cas-client,num_dependents_deps.dev:0 @@ -734965,6 +748387,8 @@ github.com/lemontree2015/skynet.common,num_dependents_deps.dev:0 github.com/lemontree2015/skynet.common.min,num_dependents_deps.dev:0 github.com/lemontv/bencode,num_dependents_deps.dev:0 github.com/lemonwan/go-study,num_dependents_deps.dev:0 +github.com/lemonxah/cargo_semver_update, +github.com/lemonxah/cargo_semver_update_and_tag, github.com/lemonxah/d3ne-rs,num_dependents_deps.dev:0 github.com/lemonxah/funlib,num_dependents_deps.dev:0 github.com/lemonxah/querylib,num_dependents_deps.dev:0 @@ -735277,6 +748701,7 @@ github.com/lenovo/xclarity_client,num_dependents_deps.dev:0 github.com/lenoxys/eufy-security-client,num_dependents_deps.dev:0 github.com/lenpayne/battlesnake-golang,num_dependents_deps.dev:0 github.com/lenqwang/vue-cli-plugin-multiple-page,num_dependents_deps.dev:0 +github.com/lenra-io/create-or-update-pr-action, github.com/lenrsmith/ember-ghost-w3css-blog-template,num_dependents_deps.dev:0 github.com/lenrsmith/empress-blog-w3css-blog-template,num_dependents_deps.dev:0 github.com/lens-app/eslint-config-lens,num_dependents_deps.dev:0 @@ -735334,6 +748759,7 @@ github.com/lentiummmx/node-estafeta,num_dependents_deps.dev:0 github.com/lento234/plotenv, github.com/lentoo/taro-skeleton,num_dependents_deps.dev:0 github.com/lentrush/project,num_dependents_deps.dev:0 +github.com/lentryd/VDocs, github.com/lentryd/netschoolapi,num_dependents_deps.dev:0 github.com/lentryd/vi-sgo, github.com/lents/cordova-plugin-background-geolocation,num_dependents_deps.dev:0 @@ -735856,6 +749282,7 @@ github.com/leominov/ansible-coverage-callback, github.com/leomleao/homebridge-mqtt-gpio,num_dependents_deps.dev:0 github.com/leomoyses/iugu-node-sdk,num_dependents_deps.dev:0 github.com/leomp12/console-files,num_dependents_deps.dev:0 +github.com/leomp12/gcp-vms-cd, github.com/leomp12/nodejs-rest-auto-router,num_dependents_deps.dev:0 github.com/leomunozr/setup-react-project,num_dependents_deps.dev:0 github.com/leomuona/maibb-server,num_dependents_deps.dev:0 @@ -735869,6 +749296,7 @@ github.com/leon-b/write-docker-actions,num_dependents_deps.dev:0 github.com/leon-barrett/cdbd,num_dependents_deps.dev:0 github.com/leon-barrett/mtbl-rs,num_dependents_deps.dev:0 github.com/leon-barrett/mtbl-sys,num_dependents_deps.dev:1 +github.com/leon-barth/replace-action, github.com/leon-developer-br/react-mui-toolkit,num_dependents_deps.dev:0 github.com/leon-do/goCMS,num_dependents_deps.dev:0 github.com/leon-domingo/mydict, @@ -736009,6 +749437,8 @@ github.com/leonardo-modules/leonardo-system, github.com/leonardo-modules/leonardo-team, github.com/leonardo-modules/leonardo-translations, github.com/leonardo-modules/python-app-loader, +github.com/leonardo-ornelas/check-PR-base-branch-action, +github.com/leonardo-souza-dev/stryker-dotnet-action, github.com/leonardo404-code/simple-web-application,num_dependents_deps.dev:0 github.com/leonardoARoman/how-to-npm,num_dependents_deps.dev:0 github.com/leonardoaj/name2gender-br, @@ -736036,6 +749466,7 @@ github.com/leonardocamelo/minitootip,num_dependents_deps.dev:0 github.com/leonardocamelo/timjs,num_dependents_deps.dev:0 github.com/leonardoce/minimal-app,num_dependents_deps.dev:0 github.com/leonardochaia/angular-simple-oidc,num_dependents_deps.dev:0 +github.com/leonardochaia/dotnet-affected-action, github.com/leonardochaia/generator-hubular,num_dependents_deps.dev:0 github.com/leonardochaia/hubot-botframework-skype,num_dependents_deps.dev:0 github.com/leonardochaia/hubular,num_dependents_deps.dev:0 @@ -736089,6 +749520,7 @@ github.com/leonardokl/tts,num_dependents_deps.dev:0 github.com/leonardoks16/astrid-client,num_dependents_deps.dev:0 github.com/leonardoleenen/rnc-main-lib,num_dependents_deps.dev:0 github.com/leonardolessa/generator-chimp,num_dependents_deps.dev:0 +github.com/leonardoli2022/actions.notify, github.com/leonardom/bookshelf-transient,num_dependents_deps.dev:0 github.com/leonardomartelli/passwordmaker_package, github.com/leonardommfontoura/go-go-go,num_dependents_deps.dev:0 @@ -736282,6 +749714,7 @@ github.com/leonhfr/akin,num_dependents_deps.dev:0 github.com/leonhfr/anki-connect-go,num_dependents_deps.dev:0 github.com/leonhfr/pickpocket,num_dependents_deps.dev:0 github.com/leonhfr/seadog, +github.com/leonhfr/tinysearch-action, github.com/leonhooijer/zadok,num_dependents_deps.dev:0 github.com/leonid-pishchulin/poseval,Google github.com/leonid-shevtsov/headless,num_dependents_deps.dev:12 @@ -736385,6 +749818,7 @@ github.com/leonplata/cobre-virtual-list, github.com/leonpuchinger/url_shortener_gcp,num_dependents_deps.dev:0 github.com/leonrinkel/reimagined-umbrella,num_dependents_deps.dev:0 github.com/leonrodenburg/ali-cli, +github.com/leonschiphol/schipholchangesets, github.com/leonschloemmer/FirebaseMessaging,num_dependents_deps.dev:0 github.com/leonschloemmer/FirebasePhoneAuth,num_dependents_deps.dev:0 github.com/leonsenft/path_to_regexp,Google @@ -736393,8 +749827,11 @@ github.com/leonsk32/japanese-numeral-utils,num_dependents_deps.dev:0 github.com/leonsmith/dnstest, github.com/leonsmith/pydig, github.com/leonsomed/rapify,num_dependents_deps.dev:0 +github.com/leonstafford/a11y-friendly-badges, github.com/leonstafford/wp2static,criticality_score:0.497430 +github.com/leonsteinhaeuser/git-tag-bump, github.com/leonsteinhaeuser/procroute,num_dependents_deps.dev:0 +github.com/leonsteinhaeuser/project-beta-automations, github.com/leonsting/react-pdf,num_dependents_deps.dev:0 github.com/leonsting/react-pdf-view, github.com/leonsting/use-scroll,num_dependents_deps.dev:0 @@ -736449,6 +749886,8 @@ github.com/leopf/srvsyn,num_dependents_deps.dev:0 github.com/leophant/leophant,num_dependents_deps.dev:0 github.com/leophant/leophant-mysql,num_dependents_deps.dev:0 github.com/leophant/leophant-postgresql,num_dependents_deps.dev:0 +github.com/leopic/gh-action-event-notifier, +github.com/leopic/gh-action-open-pr-slack-parser, github.com/leopic/makeAppIcon,num_dependents_deps.dev:0 github.com/leopiccionia/vue-redux,num_dependents_deps.dev:0 github.com/leopiccionia/vue-sanitize-directive,num_dependents_deps.dev:0 @@ -736571,6 +750010,7 @@ github.com/leosykes117/golb,num_dependents_deps.dev:0 github.com/leota/ts-pkg-sample,num_dependents_deps.dev:0 github.com/leotac/joypy, github.com/leotads/der_pdf,num_dependents_deps.dev:0 +github.com/leotaku/elisp-check, github.com/leotaku/kojirou,num_dependents_deps.dev:0 github.com/leotaku/linch,num_dependents_deps.dev:0 github.com/leotaku/maiden,num_dependents_deps.dev:0 @@ -736675,6 +750115,7 @@ github.com/leozhao0709/web_arc,num_dependents_deps.dev:0 github.com/leozide/leocad,criticality_score:0.419060 github.com/leozin00/components-lib,num_dependents_deps.dev:0 github.com/leozin00/myvillage-qrcode,num_dependents_deps.dev:0 +github.com/leozusa/Glitch-Merge-To-Main, github.com/leozz37/gin-app-template,num_dependents_deps.dev:0 github.com/leozz37/gin-serverless-container-template,num_dependents_deps.dev:0 github.com/leozz37/glucose-db-save,num_dependents_deps.dev:0 @@ -736837,6 +750278,7 @@ github.com/lerayne/anrom-jive-osapi-picker, github.com/lerayne/jive-tile-place-picker,num_dependents_deps.dev:0 github.com/lerayne/redux-ssr,num_dependents_deps.dev:0 github.com/lercher/gotools,num_dependents_deps.dev:0 +github.com/lerebear/sizeup-action, github.com/lerepo/workspace-tools,num_dependents_deps.dev:0 github.com/lerer00/latude-contracts,num_dependents_deps.dev:0 github.com/lerer00/react-vertical-record,num_dependents_deps.dev:0 @@ -736885,6 +750327,7 @@ github.com/lerouxrgd/ngt-rs,num_dependents_deps.dev:0 github.com/lerouxrgd/recloser,num_dependents_deps.dev:0 github.com/lerouxrgd/rsgen-avro,num_dependents_deps.dev:0 github.com/lerouxrgd/streamlet,num_dependents_deps.dev:0 +github.com/leroy-merlin-br/action-s3-cache, github.com/leroy-merlin-br/backyard,num_dependents_deps.dev:0 github.com/leroy-merlin-br/backyard-ui,num_dependents_deps.dev:0 github.com/leroy-merlin-br/boreal,num_dependents_deps.dev:0 @@ -736915,6 +750358,7 @@ github.com/lerpinglemur/imagepicker,num_dependents_deps.dev:0 github.com/lerpinglemur/imagewrap,num_dependents_deps.dev:0 github.com/lerpinglemur/lemur-fetch,num_dependents_deps.dev:0 github.com/lerpinglemur/objecty,num_dependents_deps.dev:0 +github.com/lerppana/blender_portable, github.com/lerrua/remote-jobs-brazil,criticality_score:0.426330 github.com/lerrua/tapioca-google, github.com/lerrua/tapioca-linkedin, @@ -737167,6 +750611,7 @@ github.com/lestoni/term-slides,num_dependents_deps.dev:0 github.com/lestoni/text-kenya,num_dependents_deps.dev:0 github.com/lestoni/unvowel,num_dependents_deps.dev:0 github.com/lestravo/asani-search-navbar,num_dependents_deps.dev:0 +github.com/lestravo/s3-upload-github-action, github.com/lestrrat-go/backoff,num_dependents_deps.dev:427 github.com/lestrrat-go/codegen,num_dependents_deps.dev:0 github.com/lestrrat-go/echo-middleware-jwx,num_dependents_deps.dev:0 @@ -737207,6 +750652,7 @@ github.com/let-codes/let-eslint-config, github.com/let-codes/let-rules,num_dependents_deps.dev:0 github.com/let-codes/let-stylelint,num_dependents_deps.dev:0 github.com/let-sh/example,num_dependents_deps.dev:0 +github.com/let-sh/nomad-deploy-result-action, github.com/let-unimi/liblet, github.com/let00/gatsby-source-amazon-paapi,num_dependents_deps.dev:0 github.com/let4be/crusty,num_dependents_deps.dev:0 @@ -737243,6 +750689,7 @@ github.com/lethe3000/ctable, github.com/lethe3000/django_xworkflows, github.com/lethe3000/go-common,num_dependents_deps.dev:0 github.com/lethe3000/v4docker, +github.com/letheanVPN/gitinspector-action, github.com/letheanmovement/lethean-gui-miner,num_dependents_deps.dev:0 github.com/letheed/divrem,num_dependents_deps.dev:1 github.com/letheed/numeral,num_dependents_deps.dev:0 @@ -737325,6 +750772,7 @@ github.com/letry/promise-event-emitter,num_dependents_deps.dev:0 github.com/letry/promisify-event-emitter,num_dependents_deps.dev:0 github.com/lets-blade/blade,criticality_score:0.370440 github.com/lets-cli/lets,num_dependents_deps.dev:0 +github.com/lets-cli/lets-action, github.com/lets-fiware/Cesium-JapanGSI, github.com/lets-fiware/ngsi-go,num_dependents_deps.dev:0 github.com/lets-mica/mica,"criticality_score:0.324220,num_dependents_deps.dev:193" @@ -737609,6 +751057,7 @@ github.com/levelkdev/token-price-oracles,num_dependents_deps.dev:2 github.com/levelrin/JavaClearHttp,num_dependents_deps.dev:0 github.com/levelrin/JavaSingleValue,num_dependents_deps.dev:0 github.com/levels3d/offblast,num_dependents_deps.dev:0 +github.com/levelsoftware/branch-name, github.com/levelup/Android-HttpClient,num_dependents_deps.dev:0 github.com/levelup/Android-oEmbed,num_dependents_deps.dev:0 github.com/levelup/Expandable-RecyclerView,num_dependents_deps.dev:0 @@ -737634,6 +751083,8 @@ github.com/levensailor/phonescrape, github.com/levensailor/reportcard, github.com/levensailor/ucbox, github.com/levenson79/Soft352, +github.com/leventeBajczi/github-pages-deploy-action-winfix, +github.com/leventeBajczi/intellij-idea-format, github.com/leventebalogh/lightningbox,num_dependents_deps.dev:0 github.com/leventecsordas/react-toolkit,num_dependents_deps.dev:0 github.com/leventekk/gulp-image64,num_dependents_deps.dev:0 @@ -737692,11 +751143,13 @@ github.com/leviable/noso-go,num_dependents_deps.dev:0 github.com/leviable/pe-go,num_dependents_deps.dev:0 github.com/leviable/reeeeeeeeee, github.com/leviante/sleepybork,num_dependents_deps.dev:0 +github.com/leviat-tech/github-action-push-to-aws, github.com/leviat-tech/postal, github.com/leviathan1995/face_classifier, github.com/leviathantech/redux-property-graph,num_dependents_deps.dev:0 github.com/levibeach/grid,num_dependents_deps.dev:0 github.com/levibit/is-cyclic,num_dependents_deps.dev:0 +github.com/levibostian/action-hide-sensitive-inputs, github.com/levibostian/bash-reminder,num_dependents_deps.dev:0 github.com/levibostian/dollabill-apple,num_dependents_deps.dev:0 github.com/levibostian/dotenv,num_dependents_deps.dev:0 @@ -737728,7 +751181,12 @@ github.com/levidurfee/plot-tracker,num_dependents_deps.dev:0 github.com/leviero/node-logs, github.com/leviethung2103/greenlab_ai_utils, github.com/levieu/custom-config-xml,num_dependents_deps.dev:0 +github.com/levifussell/bump-unity-bundle-version, github.com/levigo/filetype-analyzer,num_dependents_deps.dev:0 +github.com/levigo/github-action-chrome-webstore-publish, +github.com/levigo/github-action-glix, +github.com/levigo/github-action-jira-bulk-update, +github.com/levigo/github-action-jira-fixversion, github.com/levigo/jadice-barcode,num_dependents_deps.dev:0 github.com/levigo/jbig2-imageio,num_dependents_deps.dev:11 github.com/levigo/recordmapper,num_dependents_deps.dev:0 @@ -737833,8 +751291,11 @@ github.com/levmorozov/mii-table,num_dependents_deps.dev:0 github.com/levmorozov/modal-1k,num_dependents_deps.dev:0 github.com/levoai/levo-commons, github.com/levon-gevorgyan/simple_robomaster, +github.com/levon-ideationai/actions, github.com/levon1991/hw-otus,num_dependents_deps.dev:0 github.com/levon2111/unsplash_api, +github.com/levonet/action-restore-branch, +github.com/levonet/clover-diff-action, github.com/levonet/enb-markdown,num_dependents_deps.dev:0 github.com/levonet/grapesjs-plugin-page-break,num_dependents_deps.dev:0 github.com/levong-dev/websocket-chat,num_dependents_deps.dev:0 @@ -737881,7 +751342,9 @@ github.com/lewagon/nbresult, github.com/lewagon/omniauth-kitt,num_dependents_deps.dev:0 github.com/lewagon/rails-templates,criticality_score:0.434760 github.com/lewagon/setup,criticality_score:0.468060 +github.com/lewagon/wait-on-check-action, github.com/lewallep/donefirst,num_dependents_deps.dev:0 +github.com/lewandy/vue-s3-deployer, github.com/lewandy/vue-visibility,num_dependents_deps.dev:0 github.com/lewang/flx,criticality_score:0.337020 github.com/lewapkon/twitch-clips-poster,num_dependents_deps.dev:0 @@ -737915,6 +751378,7 @@ github.com/lewie9021/webpack-configurator,num_dependents_deps.dev:152 github.com/lewinfox/rmsfact, github.com/lewinz/go-base,num_dependents_deps.dev:0 github.com/lewinz/golang_utils,num_dependents_deps.dev:0 +github.com/lewis-card/ec2-github-runner-lewis-test, github.com/lewis-catley/workshop-go-mock,num_dependents_deps.dev:0 github.com/lewis-ing/vue-keycloak-js,num_dependents_deps.dev:0 github.com/lewis-kori/vue-google-translate,num_dependents_deps.dev:0 @@ -737988,6 +751452,7 @@ github.com/lewisinc/tickers,num_dependents_deps.dev:0 github.com/lewisjared/credkeep, github.com/lewisjared/postgrest-request,num_dependents_deps.dev:0 github.com/lewisjkl/kafkakit,num_dependents_deps.dev:0 +github.com/lewisjkl/merge-pr-action, github.com/lewisjnewman/micro-blogging,num_dependents_deps.dev:0 github.com/lewiskyo/go_codes,num_dependents_deps.dev:0 github.com/lewiskyo/gopl,num_dependents_deps.dev:0 @@ -738268,11 +751733,13 @@ github.com/leyle/go-api-starter,num_dependents_deps.dev:0 github.com/leylines/leylines-server,num_dependents_deps.dev:0 github.com/leylines/leylinesMap,num_dependents_deps.dev:0 github.com/leylines/leylinesjs,num_dependents_deps.dev:0 +github.com/leylmordor/conftest-dev, github.com/leyluiaa/feed-read,num_dependents_deps.dev:0 github.com/leyluiaa/feed-read-parser, github.com/leynier/aioqvapay, github.com/leynier/color-differences-analyzer, github.com/leynier/inferfuzzy, +github.com/leynier/pr-compliance-action, github.com/leynier/unasync-cli, github.com/leypoldt/lib-demo,num_dependents_deps.dev:0 github.com/leyra/minify,num_dependents_deps.dev:0 @@ -738689,9 +752156,13 @@ github.com/lgc202/algorithm,num_dependents_deps.dev:0 github.com/lgcavalheiro/gulp-mammoth,num_dependents_deps.dev:0 github.com/lgd8981289/Ale,num_dependents_deps.dev:0 github.com/lgdd/generator-liferay-elm,num_dependents_deps.dev:0 +github.com/lgdd/get-liferay-info-action, github.com/lgdd/go-gh-actions,num_dependents_deps.dev:0 +github.com/lgdd/liferay-build-action, +github.com/lgdd/liferay-cloud-upgrade-action, github.com/lgdd/liferay-dropzone-themelet,num_dependents_deps.dev:0 github.com/lgdd/liferay-healthcheck,num_dependents_deps.dev:0 +github.com/lgdd/liferay-upgrade-action, github.com/lgdd/sign-in-modal-themelet,num_dependents_deps.dev:0 github.com/lgdd/widget-ctrl-lite-themelet,num_dependents_deps.dev:0 github.com/lgdelacruz92/dnscontainer,num_dependents_deps.dev:0 @@ -738709,9 +752180,11 @@ github.com/lgedeon33/gb-price-module,num_dependents_deps.dev:0 github.com/lgee1981/angular-tour-of-heroes,num_dependents_deps.dev:0 github.com/lgeerligs/statesegmentation, github.com/lgehring/bl-predictor, +github.com/lgeiger/black-action, github.com/lgeiger/electron-abi,num_dependents_deps.dev:0 github.com/lgeiger/escape-carriage,num_dependents_deps.dev:174 github.com/lgeiger/node-abi,num_dependents_deps.dev:31762 +github.com/lgeiger/pyflakes-action, github.com/lgellis/STEM-twitter-wall, github.com/lgensinger/activity-calendar,num_dependents_deps.dev:0 github.com/lgensinger/bubble-chart,num_dependents_deps.dev:0 @@ -738791,6 +752264,7 @@ github.com/lgmaj/ng-alchemy,num_dependents_deps.dev:0 github.com/lgmoneda/time-robust-forest, github.com/lgmoraes/Atom_webatlas,num_dependents_deps.dev:0 github.com/lgmoraes/Font_webatlas,num_dependents_deps.dev:0 +github.com/lgmorand/github-action-hello, github.com/lgmrain/co-readdir,num_dependents_deps.dev:0 github.com/lgmys/paylane-client,num_dependents_deps.dev:0 github.com/lgmys/stripe_wh_verify,num_dependents_deps.dev:0 @@ -738879,6 +752353,7 @@ github.com/lgulich/dotfile_manager, github.com/lgulich/lgshell, github.com/lguychard/sourcegraph-configurable-references,num_dependents_deps.dev:0 github.com/lguychard/sourcegraph-string-references,num_dependents_deps.dev:0 +github.com/lgvalle/create-release-action, github.com/lgvaz/fastcook, github.com/lgvaz/faststyle, github.com/lgvaz/lazylabel, @@ -738925,6 +752400,7 @@ github.com/lhammarstrom/react-skeleton-splash,num_dependents_deps.dev:0 github.com/lhandel/react-native-card-flip,num_dependents_deps.dev:0 github.com/lhandel/react-native-card-stack-swiper,num_dependents_deps.dev:0 github.com/lhanscom/ngx-csv,num_dependents_deps.dev:0 +github.com/lhansford/bugsnag-report-build-action, github.com/lhansford/eslint-config-lukehansford-react,num_dependents_deps.dev:0 github.com/lhansford/measure-fns,num_dependents_deps.dev:0 github.com/lhansford/playtime,num_dependents_deps.dev:0 @@ -738994,6 +752470,7 @@ github.com/lhl09120/react-native-image-sequence,num_dependents_deps.dev:0 github.com/lhl09120/react-native-swiper,num_dependents_deps.dev:0 github.com/lhl09120/vue-autoload-script-style-loader,num_dependents_deps.dev:0 github.com/lhl2617/go-mtd-abi,num_dependents_deps.dev:0 +github.com/lhl2617/vsce-version-check-action, github.com/lhlGitHub/lhlltsn,num_dependents_deps.dev:0 github.com/lhlong/vietnamese-fullname-generator, github.com/lhlyu/create-app,num_dependents_deps.dev:0 @@ -739029,6 +752506,7 @@ github.com/lholmquist/generator-cordova-plugin,num_dependents_deps.dev:0 github.com/lholmquist/generator-express-minimal,num_dependents_deps.dev:0 github.com/lholmquist/generator-safari-push,num_dependents_deps.dev:0 github.com/lholmquist/node-builtins,num_dependents_deps.dev:0 +github.com/lholmquist/release-please-action, github.com/lholmquist/swapi-node,num_dependents_deps.dev:0 github.com/lholznagel/aws-codebuild-status,num_dependents_deps.dev:0 github.com/lholznagel/loggify,num_dependents_deps.dev:0 @@ -739041,7 +752519,10 @@ github.com/lhopki01/git-mass-sync,num_dependents_deps.dev:0 github.com/lhorak/node-red-contrib-flexitimer,num_dependents_deps.dev:0 github.com/lhorie/bundle-analyzer,num_dependents_deps.dev:4 github.com/lhorie/mithril.js,num_dependents_deps.dev:12 +github.com/lhotari/action-upterm, github.com/lhotari/akka-http-health,num_dependents_deps.dev:0 +github.com/lhotari/gh-actions-artifact-client, +github.com/lhoyong/android-compose-metrics-action, github.com/lhpalacio/nestjs-problem-details,num_dependents_deps.dev:0 github.com/lhqing/ALLCools, github.com/lhqing/cemba_data, @@ -739057,6 +752538,8 @@ github.com/lhs168/react-native-cachedimage,num_dependents_deps.dev:0 github.com/lhs168/react-native-umsocial,num_dependents_deps.dev:0 github.com/lhsribas/residency-prediction-backend,num_dependents_deps.dev:0 github.com/lhstock/vue-valender-view,num_dependents_deps.dev:0 +github.com/lhstrh/action-repo-semver, +github.com/lhsystems/terraform-ansible-inventory, github.com/lht102/ctrade,num_dependents_deps.dev:0 github.com/lhuet/tarifbleu-node,num_dependents_deps.dev:0 github.com/lhuet/teleinfo-node,num_dependents_deps.dev:0 @@ -739113,6 +752596,7 @@ github.com/li-qiuli/epub-list,num_dependents_deps.dev:0 github.com/li-shuaishuai/lss.base.css,num_dependents_deps.dev:0 github.com/li-shuaishuai/react-cli,num_dependents_deps.dev:0 github.com/li-shuaishuai/webpack-server-qrcode,num_dependents_deps.dev:0 +github.com/li-sumup/actions-assigner, github.com/li-xianfeng/wepy-plugin-autoprefixer,num_dependents_deps.dev:0 github.com/li-xianfeng/zz-swipe,num_dependents_deps.dev:0 github.com/li-xiaojun/XPopup,criticality_score:0.340190 @@ -739706,7 +753190,9 @@ github.com/liatrio/confluence-api, github.com/liatrio/grafeas-elasticsearch,num_dependents_deps.dev:0 github.com/liatrio/rode-api,num_dependents_deps.dev:0 github.com/liatrio/rode-collector-sonarqube,num_dependents_deps.dev:0 +github.com/liatrio/run-gatling, github.com/liatrio/springtrader,num_dependents_deps.dev:0 +github.com/liatrio/terraform-change-pr-commenter, github.com/liatrio/terraform-provider-harbor,num_dependents_deps.dev:0 github.com/liazylee/drf-jwt-wechat, github.com/lib-monkey/lib-monkey,num_dependents_deps.dev:0 @@ -739869,6 +753355,7 @@ github.com/libertylocked/xrandom,num_dependents_deps.dev:0 github.com/libertymutual/chatpickle, github.com/libertymutual/react-responsive,num_dependents_deps.dev:0 github.com/libertypie/wallet-Provider,num_dependents_deps.dev:0 +github.com/libertyy/py3-bandit-check, github.com/liberumchain/chain3go-master,num_dependents_deps.dev:0 github.com/liberxue/cachex,num_dependents_deps.dev:0 github.com/libery/think-swagger-controller,num_dependents_deps.dev:0 @@ -739983,6 +753470,8 @@ github.com/libjpeg-turbo/libjpeg-turbo,criticality_score:0.615480 github.com/libjxl/libjxl,num_dependents_deps.dev:0 github.com/libkeepass/pykeepass, github.com/libktx/ktx,"criticality_score:0.463170,num_dependents_deps.dev:27" +github.com/liblaf/install-action, +github.com/liblaf/template, github.com/libllc/nfetch,num_dependents_deps.dev:0 github.com/liblouis/js-build,num_dependents_deps.dev:0 github.com/liblouis/liblouis-js,num_dependents_deps.dev:0 @@ -740190,6 +753679,7 @@ github.com/librajt/shtml2html,num_dependents_deps.dev:0 github.com/libraminh/generator-ConstructFrontend,num_dependents_deps.dev:0 github.com/libraminh/generator-minhle-vue-starter,num_dependents_deps.dev:0 github.com/libraminh/minhle-libs,num_dependents_deps.dev:0 +github.com/librarian/yc-github-runner, github.com/librarianjs/1-to-2,num_dependents_deps.dev:0 github.com/librarianjs/fs-data, github.com/librarianjs/fs-storage, @@ -740205,6 +753695,7 @@ github.com/librarianjs/mysql-data,num_dependents_deps.dev:0 github.com/librarianjs/mysql-meta,num_dependents_deps.dev:0 github.com/librarianjs/mysql-storage,num_dependents_deps.dev:0 github.com/libraries/prettylist, +github.com/librariesio/bibliothecary, github.com/librariesio/depper,num_dependents_deps.dev:0 github.com/librariesio/libhub,num_dependents_deps.dev:0 github.com/librariesio/librarian-cli,num_dependents_deps.dev:0 @@ -740235,11 +753726,17 @@ github.com/librato/statsd-librato-backend,num_dependents_deps.dev:0 github.com/librato/watchconf,num_dependents_deps.dev:0 github.com/libratom/libratom, github.com/libre-code/intercept-extension-telemetry,num_dependents_deps.dev:0 +github.com/libre-devops/azure-function-app-deployment-gh-action, +github.com/libre-devops/azure-packer-gh-action, +github.com/libre-devops/azure-pulumi-gh-action, +github.com/libre-devops/azure-terraform-gh-action, github.com/libre-informatique/EPTEmulator,num_dependents_deps.dev:0 github.com/libre-informatique/EveConnector,num_dependents_deps.dev:0 github.com/libre-org/atom,num_dependents_deps.dev:46 github.com/libreact/use-observable,num_dependents_deps.dev:0 github.com/librechat201X/vexui,num_dependents_deps.dev:0 +github.com/librecores/ci-action, +github.com/librecores/ci-fusesoc-action, github.com/librecores/eda-container-wrapper, github.com/librecores/eda-log-parser, github.com/librecores/lcci-python, @@ -740302,6 +753799,7 @@ github.com/libscie/api,num_dependents_deps.dev:0 github.com/libscie/credit-roll,num_dependents_deps.dev:0 github.com/libscie/design-library,num_dependents_deps.dev:0 github.com/libscie/libscieverse,num_dependents_deps.dev:0 +github.com/libsdl-org/setup-sdl, github.com/libsemigroups/libsemigroups_pybind11, github.com/libsgh/nic,num_dependents_deps.dev:0 github.com/libsgh/tieba-api,num_dependents_deps.dev:0 @@ -740468,10 +753966,15 @@ github.com/licatajustin/scooby-doo-client,num_dependents_deps.dev:0 github.com/liccampanavd/vd-multiselect,num_dependents_deps.dev:0 github.com/licebeam/sequence,num_dependents_deps.dev:0 github.com/license-project/generator,num_dependents_deps.dev:0 +github.com/licensebat/licensebat-action, github.com/licensee/licensee,criticality_score:0.535540 github.com/licenserc/licenserc.js,num_dependents_deps.dev:0 github.com/licenses/lice, github.com/licenses/lice-js,num_dependents_deps.dev:0 +github.com/licenseware/generate-password-and-hash, +github.com/licenseware/helm-cli, +github.com/licenseware/send-email-notification, +github.com/licenseware/unique-elbv2-listener-rule-priority, github.com/licensezero/cli,num_dependents_deps.dev:0 github.com/licensezero/example-l0-nc-package,num_dependents_deps.dev:0 github.com/licensezero/example-licensezero-package,num_dependents_deps.dev:0 @@ -740573,6 +754076,7 @@ github.com/licong-chen/session-tracking,num_dependents_deps.dev:0 github.com/licong96/lc-city-selector,num_dependents_deps.dev:0 github.com/licop/LUI,num_dependents_deps.dev:0 github.com/licorm/lotide,num_dependents_deps.dev:0 +github.com/licy183/android-emulator-runner, github.com/licyeus/angular-mapbox,num_dependents_deps.dev:0 github.com/lidad/simple-mobile-rem,num_dependents_deps.dev:0 github.com/lidall/splunk_handler, @@ -740711,6 +754215,7 @@ github.com/lieldulev/gazzilion.js,num_dependents_deps.dev:0 github.com/lieldulev/swagger-to-locustfile,num_dependents_deps.dev:0 github.com/lienbcn/gulp-ng-html2js,num_dependents_deps.dev:0 github.com/lienbcn/yakuza,num_dependents_deps.dev:0 +github.com/lienminhquang/telegram_action, github.com/lienren/mysql-helper,num_dependents_deps.dev:0 github.com/lienren/timing,num_dependents_deps.dev:0 github.com/liepang/react-adal,num_dependents_deps.dev:0 @@ -740851,8 +754356,10 @@ github.com/lifeart/ember-template-lint-typed-templates,num_dependents_deps.dev:0 github.com/lifeart/ember-vue-components,num_dependents_deps.dev:0 github.com/lifeart/glimmer-composition-api,num_dependents_deps.dev:0 github.com/lifeart/hooked-components, +github.com/lifeart/jest-lcov-reporter, github.com/lifeart/vscode-ember,num_dependents_deps.dev:0 github.com/lifebeyondfife/npm-rescue,num_dependents_deps.dev:0 +github.com/lifebit-ai/action-cloudos-cli, github.com/lifeblood123/libiary,num_dependents_deps.dev:0 github.com/lifebot-api/lifebot-node,num_dependents_deps.dev:0 github.com/lifebyspot/ts-transform-inject-environment-variables,num_dependents_deps.dev:0 @@ -740988,6 +754495,7 @@ github.com/lifeomic/tslint-no-index-signature-access,num_dependents_deps.dev:0 github.com/lifeomic/twilio-webhook-validator-koa,num_dependents_deps.dev:0 github.com/lifeonmarspt/certbot-route53, github.com/lifeonmarspt/letsencrypt-route53, +github.com/lifepal/markdown-to-html, github.com/lifepillar/drupid,num_dependents_deps.dev:0 github.com/lifepillar/vim-colortemplate,criticality_score:0.300060 github.com/lifepillar/vim-mucomplete,criticality_score:0.324570 @@ -741177,6 +754685,7 @@ github.com/light0x00/jsonx,num_dependents_deps.dev:0 github.com/light0x00/parser-generator,num_dependents_deps.dev:2 github.com/light4/scrapy-save-statistics, github.com/light4/scrapy-status-mailer, +github.com/light5551/first_github_action_publish, github.com/light87/react-multiselect,num_dependents_deps.dev:0 github.com/light94/rename-notes, github.com/lightColour/bbplus-element, @@ -741204,6 +754713,7 @@ github.com/lightbend/genjavadoc,num_dependents_deps.dev:0 github.com/lightbend/kafka-lag-exporter,criticality_score:0.448950 github.com/lightbend/kafka-streams-query,num_dependents_deps.dev:0 github.com/lightbend/kafka-streams-scala,num_dependents_deps.dev:0 +github.com/lightbend/kalix-action, github.com/lightbend/microprofile-reactive-streams,num_dependents_deps.dev:0 github.com/lightbend/mima,"criticality_score:0.476100,num_dependents_deps.dev:0" github.com/lightbend/paradox,num_dependents_deps.dev:1 @@ -741358,6 +754868,7 @@ github.com/lightkurve/lightkurve, github.com/lightlink-io/java,num_dependents_deps.dev:0 github.com/lightlink-io/npm,num_dependents_deps.dev:0 github.com/lightly-ai/lightly,criticality_score:0.306320 +github.com/lightlytics/publisher, github.com/lightmonk1911/project-lvl1-s320,num_dependents_deps.dev:0 github.com/lightness/github-repo-tools,num_dependents_deps.dev:0 github.com/lightness/type-comparator,num_dependents_deps.dev:0 @@ -741526,6 +755037,8 @@ github.com/lightspeedworks/merge-light, github.com/lightspeedworks/promise-light,num_dependents_deps.dev:0 github.com/lightstar/golib,num_dependents_deps.dev:0 github.com/lightstep/babel-plugin-transform-node-env-inline-and-fold,num_dependents_deps.dev:0 +github.com/lightstep/lightstep-action-predeploy, +github.com/lightstep/lightstep-action-snapshot, github.com/lightstep/lightstep-benchmarks,num_dependents_deps.dev:0 github.com/lightstep/lightstep-cs-examples,num_dependents_deps.dev:0 github.com/lightstep/lightstep-metrics-java,num_dependents_deps.dev:51 @@ -741734,6 +755247,7 @@ github.com/lihongbj/goautoneg,num_dependents_deps.dev:0 github.com/lihongkun/rebatis,num_dependents_deps.dev:0 github.com/lihongmi/rice-rename,num_dependents_deps.dev:0 github.com/lihongxun945/jquery-weui,num_dependents_deps.dev:2 +github.com/lihop/setup-godot, github.com/lihp1603/learngolang-demo,num_dependents_deps.dev:0 github.com/lihroff/asc2,num_dependents_deps.dev:0 github.com/lihroff/de-slash,num_dependents_deps.dev:0 @@ -741857,6 +755371,7 @@ github.com/lijinke666/antd-form-has-error-hoc,num_dependents_deps.dev:0 github.com/lijinke666/babel-plugin-array-last-index,num_dependents_deps.dev:0 github.com/lijinke666/bookmark,num_dependents_deps.dev:0 github.com/lijinke666/dawdler,num_dependents_deps.dev:0 +github.com/lijinke666/ding-talk-pr-notify, github.com/lijinke666/health-sign,num_dependents_deps.dev:0 github.com/lijinke666/photo-magician,num_dependents_deps.dev:2 github.com/lijinke666/rc-button,num_dependents_deps.dev:0 @@ -741967,6 +755482,8 @@ github.com/likeastore/seismo-node-client,num_dependents_deps.dev:0 github.com/likebike/fasteval,num_dependents_deps.dev:2 github.com/likebike/kerr,num_dependents_deps.dev:0 github.com/likebike/stacked,num_dependents_deps.dev:0 +github.com/likec4/actions, +github.com/likec4/actions-export, github.com/likecoin/blockies,num_dependents_deps.dev:0 github.com/likecoin/likechain,num_dependents_deps.dev:0 github.com/likecoin/likecoin-chain-tx-indexer,num_dependents_deps.dev:0 @@ -742466,6 +755983,7 @@ github.com/limeihong-hue/123,num_dependents_deps.dev:0 github.com/limejs/lime, github.com/limejs/lime-cli,num_dependents_deps.dev:0 github.com/limejump/mpan, +github.com/limelight-development/db-processor, github.com/limelights/pyow, github.com/limelights/react-dejt,num_dependents_deps.dev:0 github.com/limelights/react-puregrids,num_dependents_deps.dev:0 @@ -742644,6 +756162,7 @@ github.com/limitlis/matilde,num_dependents_deps.dev:0 github.com/limitra/jvm-sdk-core,num_dependents_deps.dev:7 github.com/limitra/jvm-sdk-database,num_dependents_deps.dev:0 github.com/limitra/jvm-sdk-web,num_dependents_deps.dev:0 +github.com/limitusus/json-syntax-check, github.com/limitzhang87/bigcache,num_dependents_deps.dev:0 github.com/limix/CellRegMap, github.com/limix/bgen-reader-py, @@ -742671,6 +756190,7 @@ github.com/limix/pus, github.com/limix/scipy-sugar, github.com/limix/struct-lmm, github.com/limjcst/ads-evt, +github.com/limjh16/jekyll-action-ts, github.com/limjian/coding_practice,num_dependents_deps.dev:0 github.com/limjoe/express-csv,num_dependents_deps.dev:0 github.com/limjoonae/go-module,num_dependents_deps.dev:0 @@ -742866,6 +756386,8 @@ github.com/linanqiu/redcarb, github.com/linanqiu/ssol-api,num_dependents_deps.dev:0 github.com/linariaplug/craco-linaria3,num_dependents_deps.dev:0 github.com/linaro-its/aws2-wrap, +github.com/linaro-its/directory-push-and-pop, +github.com/linaro-its/merge-test-branch, github.com/linaro-website/jumbo-jekyll-theme,num_dependents_deps.dev:0 github.com/linaro/squadplugins, github.com/linaro/test-definitions, @@ -742927,8 +756449,10 @@ github.com/lincenying/lcy-scroll-bar,num_dependents_deps.dev:0 github.com/lincenying/slush-cooking-lcy-vue2,num_dependents_deps.dev:0 github.com/lincenying/vue2-log,num_dependents_deps.dev:0 github.com/lincerossa/jvibes,num_dependents_deps.dev:0 +github.com/linch90/publish-nuget, github.com/linchangshu0/gowatchdog,num_dependents_deps.dev:0 github.com/linchaonan2010/django-access-log, +github.com/linchar/github-action-to-otlp, github.com/linchen2chris/date-input,num_dependents_deps.dev:0 github.com/linchen2chris/search-dropdown,num_dependents_deps.dev:0 github.com/linchenhuicn/react-native-sqlcipher,num_dependents_deps.dev:0 @@ -743102,6 +756626,7 @@ github.com/lindgrenj6/availability-dummy,num_dependents_deps.dev:0 github.com/lindgrenj6/sources-api-client-internal-go,num_dependents_deps.dev:0 github.com/lindgrenj6/superkey_cleaner,num_dependents_deps.dev:0 github.com/lindi564/arlindd-use-fetch,num_dependents_deps.dev:0 +github.com/lindluni/actions-variable-groups, github.com/lindluni/support-gmail,num_dependents_deps.dev:0 github.com/lindomar-oliveira/cra-template-ts-prettier-eslint-airbnb,num_dependents_deps.dev:0 github.com/lindomar-oliveira/react-dropdown-cascade,num_dependents_deps.dev:0 @@ -743229,6 +756754,7 @@ github.com/linea-it/dblinea, github.com/linea-it/des-process, github.com/lineageosmod/android_prebuilts_go_linux-x86,num_dependents_deps.dev:0 github.com/linealnan/ng-logger,num_dependents_deps.dev:0 +github.com/linear-b/gitstream-github-action, github.com/linear/linear,num_dependents_deps.dev:0 github.com/linearapp/linear-import,num_dependents_deps.dev:0 github.com/linears-io/react-router,num_dependents_deps.dev:0 @@ -743500,6 +757026,7 @@ github.com/linhaobin/react-script-hb,num_dependents_deps.dev:0 github.com/linhaosheng/gospire,num_dependents_deps.dev:0 github.com/linhaotxl/twm-weapp,num_dependents_deps.dev:0 github.com/linharesh/provbug, +github.com/linhbn123/rebase-pull-requests, github.com/linhd-postdata/averell, github.com/linhd-postdata/horace, github.com/linhd-postdata/spacy-affixes, @@ -743524,6 +757051,7 @@ github.com/linhntaim/vue-utils,num_dependents_deps.dev:0 github.com/linhoi/mq,num_dependents_deps.dev:0 github.com/linhpn96/VNnum2words,num_dependents_deps.dev:0 github.com/linhthi/http-go-server,num_dependents_deps.dev:0 +github.com/linhtnlK/katalon-studio-github-action, github.com/linhtv97/native-lib,num_dependents_deps.dev:0 github.com/linhuaqing0928/golang-algorithm,num_dependents_deps.dev:0 github.com/linhuaqing0928/golang-demo,num_dependents_deps.dev:0 @@ -743587,6 +757115,7 @@ github.com/link-team/mini-sticky,num_dependents_deps.dev:0 github.com/link-time/ktor-onelogin-saml,num_dependents_deps.dev:0 github.com/link-time/upm-maven-plugin,num_dependents_deps.dev:0 github.com/link-u/cradle_exporter,num_dependents_deps.dev:0 +github.com/link-u/execute-on-separated-ubuntu, github.com/link-u/mrtg_exporter,num_dependents_deps.dev:0 github.com/link00000000/node-mojang-api,num_dependents_deps.dev:0 github.com/link00000000/wsl-http-proxy, @@ -743795,6 +757324,7 @@ github.com/linkingpaths/skra-geo,num_dependents_deps.dev:0 github.com/linkingthing/pg-ha,num_dependents_deps.dev:0 github.com/linkinkov/react-image-lightbox,num_dependents_deps.dev:0 github.com/linkinmjs/udemy-golang,num_dependents_deps.dev:0 +github.com/linkinn/slack-msg-action, github.com/linkinpark342/midentify-py, github.com/linkinstars/baileys,num_dependents_deps.dev:0 github.com/linkinstars/gu,num_dependents_deps.dev:0 @@ -743980,6 +757510,7 @@ github.com/lino79/kinkajou-kinkajou,num_dependents_deps.dev:0 github.com/lino79/kinkajou-linear-progress,num_dependents_deps.dev:0 github.com/lino79/kinkajou-svg-icon,num_dependents_deps.dev:0 github.com/lino79/kinkajou-tools,num_dependents_deps.dev:6 +github.com/linode/action-linode-cli, github.com/linode/arpproxy,num_dependents_deps.dev:0 github.com/linode/dhcpd-unnumbered,num_dependents_deps.dev:0 github.com/linode/docker-machine-driver-linode,num_dependents_deps.dev:0 @@ -744149,6 +757680,7 @@ github.com/linshenqi/sptty.swagger,num_dependents_deps.dev:0 github.com/linshenqi/traefik_body_converter,num_dependents_deps.dev:0 github.com/linshfu/error-message,num_dependents_deps.dev:0 github.com/linshfu/quick-select,num_dependents_deps.dev:0 +github.com/linshiyonghu12138/local-docker-build, github.com/linshuizhaoying/randomCaddress,num_dependents_deps.dev:0 github.com/linshuizhaoying/randomCname,num_dependents_deps.dev:0 github.com/linshuliang/tb-paddle, @@ -744187,6 +757719,7 @@ github.com/linssenste/pyride, github.com/linstula/bootstrap-for-ember,num_dependents_deps.dev:0 github.com/linstula/ember-cli-static-pages,num_dependents_deps.dev:0 github.com/linstula/ember-page-object,num_dependents_deps.dev:0 +github.com/linsyking/metrics, github.com/lint-deps/lint-deps, github.com/lint-dev/lint, github.com/lint-fengfeng/react-2-lib-cli, @@ -744194,6 +757727,7 @@ github.com/lint-md/ast-plugin,num_dependents_deps.dev:4 github.com/lint-md/cli, github.com/lint-md/eslint-plugin, github.com/lint-md/eslint-plugin-lint-md,num_dependents_deps.dev:0 +github.com/lint-md/github-action, github.com/lint-md/lint-md,num_dependents_deps.dev:0 github.com/lintan/wechat_spider_mysql,num_dependents_deps.dev:0 github.com/lintangtimur/SintakParser, @@ -744233,6 +757767,7 @@ github.com/linthtml/linthtml-config-recommended,num_dependents_deps.dev:2 github.com/lintianzhi/form-upload,num_dependents_deps.dev:0 github.com/lintianzhi/qnz,num_dependents_deps.dev:0 github.com/lintingweihs/shikebag,num_dependents_deps.dev:0 +github.com/lintje/action, github.com/lintmouse/MolarJS, github.com/linto-ai/WebVoiceSDK,num_dependents_deps.dev:0 github.com/linto-ai/linto-skill-calendar,num_dependents_deps.dev:0 @@ -744264,6 +757799,7 @@ github.com/lints1995/lints-pack,num_dependents_deps.dev:0 github.com/lintuming/houter, github.com/lintuming/react-shallow-hooks,num_dependents_deps.dev:0 github.com/linucc/esi-include-webpack-plugin,num_dependents_deps.dev:0 +github.com/linus-amg/uxthings-update-action, github.com/linus-k519/intcode,num_dependents_deps.dev:0 github.com/linus-k519/logo,num_dependents_deps.dev:0 github.com/linus/discogs,num_dependents_deps.dev:0 @@ -744403,6 +757939,9 @@ github.com/linuxchip/FirstNPMTry,num_dependents_deps.dev:0 github.com/linuxchristian/pyW215, github.com/linuxdaemon/imgurpython, github.com/linuxdaemon/speccy-parser, +github.com/linuxdeepin/action-cppcheck, +github.com/linuxdeepin/action-organization-manager, +github.com/linuxdeepin/action-sync, github.com/linuxdeepin/aptly,num_dependents_deps.dev:0 github.com/linuxdeepin/dde-api,num_dependents_deps.dev:0 github.com/linuxdeepin/dde-daemon,num_dependents_deps.dev:0 @@ -744454,6 +757993,7 @@ github.com/linuxgoose/crane,num_dependents_deps.dev:0 github.com/linuxguy467/utils,num_dependents_deps.dev:0 github.com/linuxha/node-red-contrib-mytimeout,num_dependents_deps.dev:0 github.com/linuxhw/hw-probe,criticality_score:0.336260 +github.com/linuxias/Android-test-result-printer, github.com/linuxias/C_CodeGen, github.com/linuxing3/gridsome.org,num_dependents_deps.dev:0 github.com/linuxing3/vue-cli-plugin-vuex-module-generator,num_dependents_deps.dev:0 @@ -744526,6 +758066,7 @@ github.com/linuxsuren/ks,num_dependents_deps.dev:0 github.com/linuxsuren/mirrors,num_dependents_deps.dev:0 github.com/linuxsuren/net-proxy,num_dependents_deps.dev:0 github.com/linuxsuren/octant-ks-devops,num_dependents_deps.dev:0 +github.com/linuxuserin/create-tor-address, github.com/linuxwacom/input-wacom,criticality_score:0.600020 github.com/linuxwhatelse/mapper, github.com/linuxwhatelse/mjs, @@ -744763,6 +758304,7 @@ github.com/lionelhe/cordova-plugin-uid,num_dependents_deps.dev:0 github.com/lionell/netoi-check, github.com/lionellbriones/logging,num_dependents_deps.dev:0 github.com/lionello/onedrive-cli, +github.com/lionelrrivas/github-issue-creator, github.com/lioneltay/dnd,num_dependents_deps.dev:0 github.com/lioneltay/graphql-tekk,num_dependents_deps.dev:0 github.com/lioneltay/micropackage,num_dependents_deps.dev:0 @@ -744858,6 +758400,7 @@ github.com/liorchen/async-itunes-app-scraper, github.com/liorchen/exit-intent, github.com/liorchen/google-play-scraper, github.com/liorcohen5/replay-monitor, +github.com/liorfrank/npm_audit_action, github.com/liorgrossman/darkness,criticality_score:0.433260 github.com/liorheber/retable,num_dependents_deps.dev:0 github.com/lioric/go-cloud,num_dependents_deps.dev:0 @@ -744893,6 +758436,7 @@ github.com/lip2up/voice-player, github.com/lipan-sudo/PexpectLibrary, github.com/lipangit/JiaoZiVideoPlayer,"criticality_score:0.387810,num_dependents_deps.dev:0" github.com/lipangit/jiecaovideoplayer,num_dependents_deps.dev:0 +github.com/lipanpan-hub/test-composite-action, github.com/lipanski/hexagonly,num_dependents_deps.dev:0 github.com/lipanski/httpal,num_dependents_deps.dev:0 github.com/lipanski/mockito,"criticality_score:0.530180,num_dependents_deps.dev:2" @@ -745079,6 +758623,80 @@ github.com/liqueurdetoile/blob-compare,num_dependents_deps.dev:0 github.com/liqueurdetoile/dotobjectarray,num_dependents_deps.dev:0 github.com/liqueurdetoile/elementify,num_dependents_deps.dev:0 github.com/liqueurdetoile/fetch-mock-fixtures,num_dependents_deps.dev:0 +github.com/liquibase-github-actions/calculate-checksum, +github.com/liquibase-github-actions/change-exec-listener, +github.com/liquibase-github-actions/changelog-command-step, +github.com/liquibase-github-actions/changelog-sync, +github.com/liquibase-github-actions/changelog-sync-sql, +github.com/liquibase-github-actions/changelog-sync-to-tag, +github.com/liquibase-github-actions/changelog-sync-to-tag-sql, +github.com/liquibase-github-actions/checks-bulk-set, +github.com/liquibase-github-actions/checks-copy, +github.com/liquibase-github-actions/checks-customize, +github.com/liquibase-github-actions/checks-delete, +github.com/liquibase-github-actions/checks-disable, +github.com/liquibase-github-actions/checks-enable, +github.com/liquibase-github-actions/checks-reset, +github.com/liquibase-github-actions/checks-run, +github.com/liquibase-github-actions/checks-show, +github.com/liquibase-github-actions/clear-checksums, +github.com/liquibase-github-actions/db-doc, +github.com/liquibase-github-actions/deactivate-changelog, +github.com/liquibase-github-actions/diff, +github.com/liquibase-github-actions/diff-changelog, +github.com/liquibase-github-actions/diff-output-control, +github.com/liquibase-github-actions/drop-all, +github.com/liquibase-github-actions/execute-sql, +github.com/liquibase-github-actions/flow, +github.com/liquibase-github-actions/flow-validate, +github.com/liquibase-github-actions/future-rollback-count-sql, +github.com/liquibase-github-actions/future-rollback-from-tag-sql, +github.com/liquibase-github-actions/future-rollback-sql, +github.com/liquibase-github-actions/generate-changelog, +github.com/liquibase-github-actions/history, +github.com/liquibase-github-actions/init-copy, +github.com/liquibase-github-actions/init-hub, +github.com/liquibase-github-actions/init-project, +github.com/liquibase-github-actions/init-start-h2, +github.com/liquibase-github-actions/list-locks, +github.com/liquibase-github-actions/lock-service-command-step, +github.com/liquibase-github-actions/mark-next-changeset-ran, +github.com/liquibase-github-actions/mark-next-changeset-ran-sql, +github.com/liquibase-github-actions/migrate, +github.com/liquibase-github-actions/migrate-sql, +github.com/liquibase-github-actions/output-writer-command-step, +github.com/liquibase-github-actions/pre-compare-command-step, +github.com/liquibase-github-actions/register-changelog, +github.com/liquibase-github-actions/release-locks, +github.com/liquibase-github-actions/rollback, +github.com/liquibase-github-actions/rollback-count, +github.com/liquibase-github-actions/rollback-count-sql, +github.com/liquibase-github-actions/rollback-one-changeset, +github.com/liquibase-github-actions/rollback-one-changeset-sql, +github.com/liquibase-github-actions/rollback-one-update, +github.com/liquibase-github-actions/rollback-one-update-sql, +github.com/liquibase-github-actions/rollback-sql, +github.com/liquibase-github-actions/rollback-to-date, +github.com/liquibase-github-actions/rollback-to-date-sql, +github.com/liquibase-github-actions/set-contexts, +github.com/liquibase-github-actions/set-labels, +github.com/liquibase-github-actions/snapshot, +github.com/liquibase-github-actions/snapshot-reference, +github.com/liquibase-github-actions/status, +github.com/liquibase-github-actions/sync-hub, +github.com/liquibase-github-actions/tag, +github.com/liquibase-github-actions/tag-exists, +github.com/liquibase-github-actions/unexpected-changesets, +github.com/liquibase-github-actions/update, +github.com/liquibase-github-actions/update-count, +github.com/liquibase-github-actions/update-count-sql, +github.com/liquibase-github-actions/update-one-changeset, +github.com/liquibase-github-actions/update-one-changeset-sql, +github.com/liquibase-github-actions/update-sql, +github.com/liquibase-github-actions/update-testing-rollback, +github.com/liquibase-github-actions/update-to-tag, +github.com/liquibase-github-actions/update-to-tag-sql, +github.com/liquibase-github-actions/validate, github.com/liquibase/liquibase,criticality_score:0.711000 github.com/liquibase/liquibase-cache,num_dependents_deps.dev:0 github.com/liquibase/liquibase-cassandra,num_dependents_deps.dev:0 @@ -745086,6 +758704,7 @@ github.com/liquibase/liquibase-compat,num_dependents_deps.dev:0 github.com/liquibase/liquibase-cosmosdb,num_dependents_deps.dev:0 github.com/liquibase/liquibase-db2i,num_dependents_deps.dev:0 github.com/liquibase/liquibase-filechangelog,num_dependents_deps.dev:0 +github.com/liquibase/liquibase-github-action, github.com/liquibase/liquibase-gradle-plugin,num_dependents_deps.dev:0 github.com/liquibase/liquibase-groovy-dsl,num_dependents_deps.dev:5 github.com/liquibase/liquibase-hanadb,num_dependents_deps.dev:0 @@ -745162,6 +758781,7 @@ github.com/liquidcarrot/repository,num_dependents_deps.dev:0 github.com/liquidconcept/gcalmapper,num_dependents_deps.dev:0 github.com/liquidcowgithub/gulp-ng-scaffold,num_dependents_deps.dev:0 github.com/liquidctl/liquidctl,criticality_score:0.504500 +github.com/liquiddevelopmentnet/copyright-check-action, github.com/liquiddevelopmentnet/tossip, github.com/liquidg3/altair,num_dependents_deps.dev:0 github.com/liquidg3/boom,num_dependents_deps.dev:0 @@ -745172,6 +758792,7 @@ github.com/liquidise/cloud_vision_gem,num_dependents_deps.dev:0 github.com/liquidity-network/eslint-config-liquidity,num_dependents_deps.dev:0 github.com/liquidity-network/invoice-generation,num_dependents_deps.dev:0 github.com/liquidity-network/liquidity-sdk,num_dependents_deps.dev:0 +github.com/liquidkey/ms-teams-deploy-card, github.com/liquidliang/digue,num_dependents_deps.dev:0 github.com/liquidliang/gulp-git-mtime,num_dependents_deps.dev:0 github.com/liquidliang/gulp-markdown-index,num_dependents_deps.dev:0 @@ -745201,6 +758822,7 @@ github.com/liquidweb/node-stormondemand,num_dependents_deps.dev:0 github.com/liquidweb/woocommerce-custom-orders-table,criticality_score:0.421340 github.com/liquidx/quickelement,num_dependents_deps.dev:0 github.com/liquidx/webviewscreensaver,criticality_score:0.313900 +github.com/liquidz/babashka-test-action, github.com/liquidz/vim-iced,criticality_score:0.461280 github.com/liquigraph/liquigraph,num_dependents_deps.dev:9 github.com/liquigraph/trinity,num_dependents_deps.dev:3 @@ -745214,6 +758836,7 @@ github.com/liqweed/grunt-svninfo,num_dependents_deps.dev:0 github.com/liqwid/localforage-indexes,num_dependents_deps.dev:0 github.com/liqwid/localforage-lru-driver,num_dependents_deps.dev:0 github.com/liqyu/generator,num_dependents_deps.dev:0 +github.com/lira92/flunt.br, github.com/liradb2000/markdown-it-katex,num_dependents_deps.dev:0 github.com/liradb2000/markdown-it-litegraph,num_dependents_deps.dev:0 github.com/liradb2000/markdown-it-mermaid,num_dependents_deps.dev:0 @@ -745247,6 +758870,8 @@ github.com/lirantal/dockly,"criticality_score:0.381620,num_dependents_deps.dev:0 github.com/lirantal/eslint-plugin-security,num_dependents_deps.dev:0 github.com/lirantal/express-version-request,num_dependents_deps.dev:0 github.com/lirantal/express-version-route,num_dependents_deps.dev:0 +github.com/lirantal/github-action-new-dependencies-advisor, +github.com/lirantal/github-action-pr-title-update-branch, github.com/lirantal/githubs-api,num_dependents_deps.dev:0 github.com/lirantal/gulp-mraudit,num_dependents_deps.dev:0 github.com/lirantal/is-website-vulnerable,"criticality_score:0.401850,num_dependents_deps.dev:0" @@ -745320,7 +758945,10 @@ github.com/lirix360/readmangagrabber,num_dependents_deps.dev:0 github.com/lirl-cn/custom-filter,num_dependents_deps.dev:0 github.com/lirl-cn/rc-antd-tags,num_dependents_deps.dev:0 github.com/lirl-cn/rc-custom-table,num_dependents_deps.dev:0 +github.com/lirlia/check-all-ci-completion-action, +github.com/lirlia/github-comment-notifier-to-slack, github.com/lirlia/go-microsoft-tutorial,num_dependents_deps.dev:0 +github.com/lirlia/tbls-spanner, github.com/lirlocker/create-react-app,num_dependents_deps.dev:0 github.com/lirm/aeron-go,num_dependents_deps.dev:0 github.com/lirmm/waves-galaxy, @@ -745499,6 +759127,7 @@ github.com/lishukan/directsql, github.com/lishunan246/generator-lishunan,num_dependents_deps.dev:0 github.com/lishuncai/lsc_calendar,num_dependents_deps.dev:0 github.com/lishuoleo/qa-model-deployment, +github.com/lisilinhart/emoji-pr-title, github.com/lisin-ilia/project,num_dependents_deps.dev:0 github.com/lisitsky/goveralls,num_dependents_deps.dev:0 github.com/lisiur/alfred-toolkit,num_dependents_deps.dev:0 @@ -745525,6 +759154,7 @@ github.com/liske/python-apds9960, github.com/liske/python-pytest-reportinfra, github.com/liskin/arbtt-chart, github.com/liskin/foursquare-swarm-ical, +github.com/liskin/gh-problem-matcher-wrap, github.com/liskin/strava-gear, github.com/liskin/strava-offline, github.com/liskl/batrium-udp2http-bridge,num_dependents_deps.dev:0 @@ -745644,6 +759274,7 @@ github.com/listen-y/go,num_dependents_deps.dev:0 github.com/listen1/listen1_chrome_extension,criticality_score:0.474530 github.com/listen1/listen1_desktop,criticality_score:0.390540 github.com/listen321/code,num_dependents_deps.dev:0 +github.com/listendev/action, github.com/listener-js/cli, github.com/listener-js/component, github.com/listener-js/join,num_dependents_deps.dev:0 @@ -745850,6 +759481,9 @@ github.com/litements/litedict, github.com/litements/litequeue, github.com/litements/litext, github.com/litements/sqlite_uuid, +github.com/litencatt/gallery-fake, +github.com/litencatt/notion-db-auto-relator, +github.com/litencatt/notion-db-pages-payload-for-slack, github.com/litengfu/vuepress-theme-daily-record,num_dependents_deps.dev:0 github.com/litenkod/frontis,num_dependents_deps.dev:0 github.com/litenull/lefnire.js,num_dependents_deps.dev:0 @@ -745930,6 +759564,7 @@ github.com/litespeed-js/ls-view-text-resize,num_dependents_deps.dev:0 github.com/litespeedtech/lsquic,criticality_score:0.495680 github.com/litespeedtech/openlitespeed,criticality_score:0.419890 github.com/litesync/better-sqlite3,num_dependents_deps.dev:0 +github.com/litetex/pull-detached-remote, github.com/litetex/release-notes-displayer,num_dependents_deps.dev:0 github.com/litethink/golang-example,num_dependents_deps.dev:0 github.com/litethink/huobiapi,num_dependents_deps.dev:0 @@ -746045,6 +759680,7 @@ github.com/litmuschaos/chaos-operator,num_dependents_deps.dev:1 github.com/litmuschaos/chaos-runner,num_dependents_deps.dev:0 github.com/litmuschaos/chaos-scheduler,num_dependents_deps.dev:0 github.com/litmuschaos/charthub.litmuschaos.io,num_dependents_deps.dev:0 +github.com/litmuschaos/github-chaos-actions, github.com/litmuschaos/litmus,"criticality_score:0.591730,num_dependents_deps.dev:0" github.com/litmuschaos/litmus-e2e,num_dependents_deps.dev:0 github.com/litmuschaos/litmus-go,num_dependents_deps.dev:0 @@ -746124,6 +759760,7 @@ github.com/little-core-labs/base64-wasm,num_dependents_deps.dev:0 github.com/little-core-labs/chromafi,num_dependents_deps.dev:2 github.com/little-core-labs/date-input-polyfill,num_dependents_deps.dev:0 github.com/little-core-labs/eslint-config-12core,num_dependents_deps.dev:0 +github.com/little-core-labs/get-git-tag, github.com/little-core-labs/gqlr,num_dependents_deps.dev:0 github.com/little-core-labs/hypercore-block-progress,num_dependents_deps.dev:0 github.com/little-core-labs/hypercore-indexed-file,num_dependents_deps.dev:0 @@ -746131,6 +759768,7 @@ github.com/little-core-labs/hypercore-multipart,num_dependents_deps.dev:0 github.com/little-core-labs/hypercore-upload-server,num_dependents_deps.dev:0 github.com/little-core-labs/hyperdrive-daemon-client-graphql,num_dependents_deps.dev:0 github.com/little-core-labs/hyperepg,num_dependents_deps.dev:0 +github.com/little-core-labs/install-terraform, github.com/little-core-labs/little-process-box,num_dependents_deps.dev:0 github.com/little-core-labs/map-extend,num_dependents_deps.dev:2 github.com/little-core-labs/mediaxml,num_dependents_deps.dev:0 @@ -746139,6 +759777,7 @@ github.com/little-core-labs/nanochrome,num_dependents_deps.dev:0 github.com/little-core-labs/nanoprocess,num_dependents_deps.dev:6 github.com/little-core-labs/nanoresource-pool,num_dependents_deps.dev:0 github.com/little-core-labs/nanoresource-ready,num_dependents_deps.dev:0 +github.com/little-core-labs/netrc-creds, github.com/little-core-labs/npt-timecode,num_dependents_deps.dev:2 github.com/little-core-labs/pkg-node,num_dependents_deps.dev:0 github.com/little-core-labs/pkg-packager-appdmg,num_dependents_deps.dev:2 @@ -746232,6 +759871,7 @@ github.com/littlebobbytablez/gogen,num_dependents_deps.dev:0 github.com/littlebobbytablez/txtstore,num_dependents_deps.dev:0 github.com/littleboycoding/fire,num_dependents_deps.dev:0 github.com/littleboyfury/reformat-markdown-table,num_dependents_deps.dev:0 +github.com/littleboyfury/ssh-docker-run, github.com/littlebutt/Arcapi, github.com/littlechad/react-hashtags,num_dependents_deps.dev:0 github.com/littlechad/sails-pagination,num_dependents_deps.dev:0 @@ -746587,6 +760227,7 @@ github.com/liudingxi-lemi/qisi-cli,num_dependents_deps.dev:0 github.com/liudingxi-lemi/qisi-tool,num_dependents_deps.dev:0 github.com/liudingyuan/dora-cli,num_dependents_deps.dev:0 github.com/liudonghua123/browserify-ip,num_dependents_deps.dev:0 +github.com/liudonghua123/delete-release-action, github.com/liudonghua123/gatsby-remark-flowchart,num_dependents_deps.dev:0 github.com/liudonghua123/gatsby-remark-flowchat,num_dependents_deps.dev:0 github.com/liudonghua123/gatsby-remark-sequence,num_dependents_deps.dev:0 @@ -746982,6 +760623,9 @@ github.com/liushaozhen/clearmodules,num_dependents_deps.dev:0 github.com/liushaozhen/npmtest,num_dependents_deps.dev:0 github.com/liushaozhen/react-clipboard,num_dependents_deps.dev:0 github.com/liushaozhen/ticket-message,num_dependents_deps.dev:0 +github.com/liusheng/cce-cluster-credentials, +github.com/liusheng/oos-packages-check, +github.com/liusheng/swr-login, github.com/liusheng11/firstPlug,num_dependents_deps.dev:0 github.com/liushengjianying/ts-axios,num_dependents_deps.dev:0 github.com/liushenglan/jntable,num_dependents_deps.dev:0 @@ -747471,6 +761115,7 @@ github.com/live2o3/chua,num_dependents_deps.dev:0 github.com/live2o3/live2o3,num_dependents_deps.dev:0 github.com/live4dreamch/socket_backend,num_dependents_deps.dev:0 github.com/live4dreamch/softdev_backend,num_dependents_deps.dev:0 +github.com/live627/check-pr-signoff-action, github.com/live627/livedate,num_dependents_deps.dev:0 github.com/live627/remu,num_dependents_deps.dev:0 github.com/liveNetworks/lnComponents,num_dependents_deps.dev:0 @@ -747765,6 +761410,7 @@ github.com/livetribe/vanity,num_dependents_deps.dev:0 github.com/livetribe/yama,num_dependents_deps.dev:0 github.com/liveu/cesorify,num_dependents_deps.dev:0 github.com/livewatch-monitoring/livewatch-javascript-client,num_dependents_deps.dev:0 +github.com/livewing/lcov-job-summary, github.com/livewire/livewire,criticality_score:0.681210 github.com/livewire/sortable,num_dependents_deps.dev:0 github.com/livewire/turbolinks,num_dependents_deps.dev:0 @@ -747880,6 +761526,7 @@ github.com/liwuyao/vue-slide-bar,num_dependents_deps.dev:0 github.com/lix-it/pout,num_dependents_deps.dev:0 github.com/lix-pm/haxeshim, github.com/lix-pm/lix,num_dependents_deps.dev:0 +github.com/lix-pm/setup-lix, github.com/lix-pm/switchx,num_dependents_deps.dev:0 github.com/lix059/generator-fullstack-koa-vue,num_dependents_deps.dev:0 github.com/lix059/generator-fullstack-vue,num_dependents_deps.dev:0 @@ -748048,6 +761695,7 @@ github.com/liyan0411/aj-cli,num_dependents_deps.dev:0 github.com/liyan0411/plus-ui,num_dependents_deps.dev:0 github.com/liyan0411/showToast,num_dependents_deps.dev:0 github.com/liyanbing/go-cache,num_dependents_deps.dev:0 +github.com/liyanchang/default-branch-migration, github.com/liyandalmllml/simplean.js,num_dependents_deps.dev:0 github.com/liyando/react-native-ui-stepper-input,num_dependents_deps.dev:0 github.com/liyanfeng123/golang-promotion,num_dependents_deps.dev:0 @@ -748208,6 +761856,7 @@ github.com/lizc2003/gossr,num_dependents_deps.dev:0 github.com/lizc2003/hdwallet,num_dependents_deps.dev:0 github.com/lizec123/webhook,num_dependents_deps.dev:0 github.com/lizeeco/chronopost,num_dependents_deps.dev:0 +github.com/lizefield/notify-release-to-slack, github.com/lizenghua/lzh-cli,num_dependents_deps.dev:0 github.com/lizeyan/TaskScheduler, github.com/lizeyan/itchatsh, @@ -748229,10 +761878,13 @@ github.com/lizheming/Simple2Canvas,num_dependents_deps.dev:0 github.com/lizheming/anu, github.com/lizheming/babel-preset-think-node,num_dependents_deps.dev:2 github.com/lizheming/chimee-plugin-controlbar,num_dependents_deps.dev:0 +github.com/lizheming/doumark-action, github.com/lizheming/drone-render,num_dependents_deps.dev:0 github.com/lizheming/drone-wechat,num_dependents_deps.dev:0 +github.com/lizheming/github-translate-action, github.com/lizheming/hexo-generator-hexo2firekylin,num_dependents_deps.dev:0 github.com/lizheming/iput,num_dependents_deps.dev:0 +github.com/lizheming/issues-translate-action, github.com/lizheming/push2firekylin,num_dependents_deps.dev:0 github.com/lizheming/react-unslider,num_dependents_deps.dev:0 github.com/lizheming/srun-cli,num_dependents_deps.dev:0 @@ -748303,6 +761955,7 @@ github.com/liziqiang0523/clog, github.com/liziqiao/cloudgo-io,num_dependents_deps.dev:0 github.com/liziwei01/go-liziwei01-appui,num_dependents_deps.dev:0 github.com/liziwei01/go-liziwei01-library,num_dependents_deps.dev:0 +github.com/liziwl/git-push-action, github.com/liziwl/gitbook-footer,num_dependents_deps.dev:0 github.com/liziwork/li-ui, github.com/liziyan/dt-antd, @@ -748410,11 +762063,17 @@ github.com/ljharb/Promise.allSettled,num_dependents_deps.dev:0 github.com/ljharb/String.prototype.matchAll,num_dependents_deps.dev:688 github.com/ljharb/System.global,num_dependents_deps.dev:9852 github.com/ljharb/array-includes,num_dependents_deps.dev:173 +github.com/ljharb/array-map, +github.com/ljharb/asynciterator.prototype, github.com/ljharb/aud,num_dependents_deps.dev:6 github.com/ljharb/big-integer-max,num_dependents_deps.dev:0 github.com/ljharb/big-integer-min,num_dependents_deps.dev:0 github.com/ljharb/call-bind,num_dependents_deps.dev:333568 +github.com/ljharb/camelize, +github.com/ljharb/can-merge, +github.com/ljharb/concat-map, github.com/ljharb/daytime, +github.com/ljharb/define-data-property, github.com/ljharb/define-properties,num_dependents_deps.dev:272599 github.com/ljharb/document.contains,num_dependents_deps.dev:1566 github.com/ljharb/es-abstract,num_dependents_deps.dev:356019 @@ -748429,9 +762088,11 @@ github.com/ljharb/find-value-location,num_dependents_deps.dev:0 github.com/ljharb/find-value-locations, github.com/ljharb/function.prototype.name,num_dependents_deps.dev:0 github.com/ljharb/functions-have-names,num_dependents_deps.dev:54 +github.com/ljharb/get-dep-tree, github.com/ljharb/get-intrinsic,num_dependents_deps.dev:336192 github.com/ljharb/get-nans,num_dependents_deps.dev:0 github.com/ljharb/global-cache,num_dependents_deps.dev:1472 +github.com/ljharb/gopd, github.com/ljharb/has-bigints,num_dependents_deps.dev:185522 github.com/ljharb/has-package-exports,num_dependents_deps.dev:0 github.com/ljharb/has-strict-mode,num_dependents_deps.dev:0 @@ -748439,6 +762100,7 @@ github.com/ljharb/has-symbols,num_dependents_deps.dev:4649 github.com/ljharb/has-template-literals,num_dependents_deps.dev:0 github.com/ljharb/html-element-map,num_dependents_deps.dev:3720 github.com/ljharb/internal-slot,num_dependents_deps.dev:184886 +github.com/ljharb/intl-fallback-symbol, github.com/ljharb/is-arguments,num_dependents_deps.dev:416 github.com/ljharb/is-arrow-function,num_dependents_deps.dev:952 github.com/ljharb/is-bigint,num_dependents_deps.dev:60 @@ -748458,23 +762120,31 @@ github.com/ljharb/is-symbol,num_dependents_deps.dev:10470 github.com/ljharb/istanbul-merge,num_dependents_deps.dev:0 github.com/ljharb/iterate-iterator,num_dependents_deps.dev:7062 github.com/ljharb/iterate-value,num_dependents_deps.dev:6978 +github.com/ljharb/iterator.prototype, github.com/ljharb/jest-wrap,num_dependents_deps.dev:0 +github.com/ljharb/js-traverse, github.com/ljharb/json-file-plus, +github.com/ljharb/json-stable-stringify, +github.com/ljharb/jsonify, github.com/ljharb/list-exports,num_dependents_deps.dev:0 github.com/ljharb/listify,num_dependents_deps.dev:1486 +github.com/ljharb/lockfile-info, github.com/ljharb/ls-engines,num_dependents_deps.dev:0 +github.com/ljharb/ls-publishers, github.com/ljharb/make-arrow-function,num_dependents_deps.dev:0 github.com/ljharb/make-async-function,num_dependents_deps.dev:0 github.com/ljharb/make-async-generator-function,num_dependents_deps.dev:0 github.com/ljharb/make-generator-function,num_dependents_deps.dev:0 github.com/ljharb/map.prototype.tojson,num_dependents_deps.dev:0 github.com/ljharb/mocha-wrap,num_dependents_deps.dev:0 +github.com/ljharb/mock-property, github.com/ljharb/node-comments,num_dependents_deps.dev:0 github.com/ljharb/node-daytime,num_dependents_deps.dev:0 github.com/ljharb/node-is-arrow-function,num_dependents_deps.dev:0 github.com/ljharb/node-json-file,num_dependents_deps.dev:40 github.com/ljharb/npm-deprecations,num_dependents_deps.dev:0 github.com/ljharb/npm-lockfile,num_dependents_deps.dev:8 +github.com/ljharb/npmignore, github.com/ljharb/object-is,num_dependents_deps.dev:50 github.com/ljharb/object-keys,num_dependents_deps.dev:327897 github.com/ljharb/object.assign,num_dependents_deps.dev:238209 @@ -748485,11 +762155,23 @@ github.com/ljharb/promiseback,num_dependents_deps.dev:584 github.com/ljharb/publishers,num_dependents_deps.dev:0 github.com/ljharb/qs,"criticality_score:0.549940,num_dependents_deps.dev:645816" github.com/ljharb/regexp.escape,num_dependents_deps.dev:0 +github.com/ljharb/repo-report, +github.com/ljharb/resumer, +github.com/ljharb/safe-array-concat, github.com/ljharb/safe-publish-latest,num_dependents_deps.dev:6 +github.com/ljharb/safe-regex-test, +github.com/ljharb/scorecard-cli, +github.com/ljharb/set-function-length, +github.com/ljharb/set-function-name, github.com/ljharb/set-tojson,num_dependents_deps.dev:0 +github.com/ljharb/shell-quote, github.com/ljharb/side-channel,num_dependents_deps.dev:249626 github.com/ljharb/simd,num_dependents_deps.dev:2 +github.com/ljharb/stop-iteration-iterator, github.com/ljharb/string-at,num_dependents_deps.dev:140 +github.com/ljharb/tape, +github.com/ljharb/through, +github.com/ljharb/typed-array-buffer, github.com/ljharb/uglify-register,num_dependents_deps.dev:0 github.com/ljharb/unbox-primitive,num_dependents_deps.dev:185024 github.com/ljharb/util.promisify,num_dependents_deps.dev:111864 @@ -748535,6 +762217,7 @@ github.com/ljmerza/py-our-groceries, github.com/ljmerza/react-jspanel4,num_dependents_deps.dev:0 github.com/ljmf00/owlbot,num_dependents_deps.dev:0 github.com/ljmf00/searchflix,num_dependents_deps.dev:0 +github.com/ljmf00/setup-lua, github.com/ljmocic/rp-starter,num_dependents_deps.dev:0 github.com/ljmsc/bx,num_dependents_deps.dev:0 github.com/ljmsc/wal,num_dependents_deps.dev:0 @@ -748618,6 +762301,7 @@ github.com/ljybill/miniprogram-custom-navigation-bar,num_dependents_deps.dev:0 github.com/ljybill/miniprogram-custom-tab-bar, github.com/ljybill/npm-test,num_dependents_deps.dev:0 github.com/ljylhm/ljyTools,num_dependents_deps.dev:0 +github.com/ljyunxinHub/passport-ci-action, github.com/lk-architecture/kinesis-router, github.com/lk-architecture/lk-collection-convexpress,num_dependents_deps.dev:0 github.com/lk-architecture/lk-dispatch,num_dependents_deps.dev:0 @@ -748710,8 +762394,10 @@ github.com/lkiarest/multi-page-webpack-plugin,num_dependents_deps.dev:0 github.com/lkiarest/rollup-plugin-web-worker-loader,num_dependents_deps.dev:0 github.com/lkiarest/validator,num_dependents_deps.dev:0 github.com/lkiarest/vue-ueditor,num_dependents_deps.dev:0 +github.com/lkiesow/matrix-notification, github.com/lkiesow/python-apereocla, github.com/lkiesow/python-feedgen,criticality_score:0.381690 +github.com/lkiesow/setup-lxc-container, github.com/lkilcher/dolfyn, github.com/lkilcher/pyDictH5, github.com/lkilcommons/geospacepy-lite, @@ -748789,6 +762475,7 @@ github.com/lkrotowski/oppa, github.com/lkrych/get_some_exercise,num_dependents_deps.dev:0 github.com/lks-go/exchange-rates,num_dependents_deps.dev:0 github.com/lks-go/terra,num_dependents_deps.dev:0 +github.com/lks21c/s3-sync-action, github.com/lkschubert8/hiccough, github.com/lkshakya/mediasite, github.com/lkshamus/complete-me,num_dependents_deps.dev:0 @@ -748846,6 +762533,7 @@ github.com/ll929/WxJsBarcode,num_dependents_deps.dev:0 github.com/ll929/postcss-pxtoany,num_dependents_deps.dev:0 github.com/ll931217/vue-treeview,num_dependents_deps.dev:0 github.com/llSourcell/sirajcoin,num_dependents_deps.dev:0 +github.com/llabbasmkhll/microscope-action, github.com/llacroix/couchappjs,num_dependents_deps.dev:0 github.com/llacroix/couchdb-rev,num_dependents_deps.dev:0 github.com/llacroix/errormatorjs,num_dependents_deps.dev:0 @@ -748872,6 +762560,7 @@ github.com/llafuente/noboxout-orm,num_dependents_deps.dev:0 github.com/llafuente/node-expressionist,num_dependents_deps.dev:0 github.com/llafuente/utilitario,num_dependents_deps.dev:0 github.com/llagong/filstem,num_dependents_deps.dev:0 +github.com/llaine/hans-landa, github.com/llali/generator-azuredatastudio,num_dependents_deps.dev:0 github.com/llali/generator-sqlops,num_dependents_deps.dev:0 github.com/llamadeus/keyval-server,num_dependents_deps.dev:0 @@ -749013,6 +762702,7 @@ github.com/llf137224350/lin-component,num_dependents_deps.dev:0 github.com/llf137224350/lottery-turntable,num_dependents_deps.dev:0 github.com/llf137224350/lottery-turntable-for-wx-miniprogram, github.com/llftt/utils,num_dependents_deps.dev:0 +github.com/llgava/loom-action, github.com/llgcode/draw2d,"criticality_score:0.366160,num_dependents_deps.dev:347" github.com/llgtfoo/ll-tpl-cli, github.com/llgtools/l,num_dependents_deps.dev:0 @@ -749081,6 +762771,7 @@ github.com/lllamnyp/typedhelm,num_dependents_deps.dev:0 github.com/llldar/pretty-jcal,num_dependents_deps.dev:0 github.com/llldar/react-use-hoverintent,num_dependents_deps.dev:0 github.com/llleon/leetgo,num_dependents_deps.dev:0 +github.com/lllggghhhaaa/WaxDotnetVersionFinder, github.com/lllggghhhaaa/logger-nodejs,num_dependents_deps.dev:0 github.com/llljjjjjj/work-wechat,num_dependents_deps.dev:0 github.com/lllllinli/Validate,num_dependents_deps.dev:0 @@ -749571,6 +763262,7 @@ github.com/llqgithub/smart-api,num_dependents_deps.dev:0 github.com/llqi/oh-my-box,num_dependents_deps.dev:0 github.com/llr-online/bindpyrame, github.com/llrpjs/llrpjs,num_dependents_deps.dev:0 +github.com/llschuster-kollex/upload-artifact, github.com/lltk/lltk, github.com/lltwox/project-cluster,num_dependents_deps.dev:0 github.com/lltwox/project-config,num_dependents_deps.dev:0 @@ -749607,6 +763299,7 @@ github.com/lluisemper/video-preview,num_dependents_deps.dev:0 github.com/lluismnd/cordova-brother-printer,num_dependents_deps.dev:0 github.com/lluistfc/connected-react-router, github.com/llukang/frontend-developer-helper,num_dependents_deps.dev:0 +github.com/llun/feeds, github.com/llun/gulp-spawn-xcodebuild,num_dependents_deps.dev:0 github.com/llun/le-challenge-cloudflare,num_dependents_deps.dev:0 github.com/llun/le-challenge-s3,num_dependents_deps.dev:0 @@ -749638,6 +763331,7 @@ github.com/llwwns/leetcode-downloader,num_dependents_deps.dev:0 github.com/llxdaxia/RestHttp,num_dependents_deps.dev:0 github.com/llxff/upholsterer,num_dependents_deps.dev:0 github.com/llxlr/diracnet, +github.com/llxlr/fuck-deploy, github.com/llxlr/lipsum.js, github.com/llxp/chain-factory, github.com/llxwj/cobra,num_dependents_deps.dev:0 @@ -749750,6 +763444,8 @@ github.com/lmangani/cqlsh-node,num_dependents_deps.dev:0 github.com/lmangani/elasql,num_dependents_deps.dev:0 github.com/lmangani/elasticwatch-js,num_dependents_deps.dev:0 github.com/lmangani/fastify-gundb,num_dependents_deps.dev:0 +github.com/lmangani/flux-github-action, +github.com/lmangani/go-release-action, github.com/lmangani/gun-cassandra,num_dependents_deps.dev:0 github.com/lmangani/gun-elastic,num_dependents_deps.dev:0 github.com/lmangani/hyper-lru,num_dependents_deps.dev:0 @@ -749806,6 +763502,7 @@ github.com/lmas/feedloggr2,num_dependents_deps.dev:0 github.com/lmas/opensimplex,Google github.com/lmas3009/ImgDesign,num_dependents_deps.dev:0 github.com/lmas3009/LoginForm,num_dependents_deps.dev:0 +github.com/lmasaya/pagerduty-notifier-action, github.com/lmatte7/gomesh,num_dependents_deps.dev:0 github.com/lmatte7/meshtastic-go,num_dependents_deps.dev:0 github.com/lmatteis/access2couch,num_dependents_deps.dev:0 @@ -750047,6 +763744,7 @@ github.com/lmmx/range-streams, github.com/lmmx/refactory, github.com/lmn9898/oracle-orm-zn,num_dependents_deps.dev:0 github.com/lmnguyenbt/angular-example,num_dependents_deps.dev:0 +github.com/lmnleaf/codeowner-reviewer-check, github.com/lmnogueira/live-rails-api,num_dependents_deps.dev:0 github.com/lmnsg/RMBtoUpper,num_dependents_deps.dev:0 github.com/lmoe/node-denon-client,num_dependents_deps.dev:0 @@ -750159,6 +763857,8 @@ github.com/lnashier/go-ml,num_dependents_deps.dev:0 github.com/lnashier/testify,num_dependents_deps.dev:0 github.com/lnattrass/cookiejar,num_dependents_deps.dev:0 github.com/lnaundorf/pimatic-mpower,num_dependents_deps.dev:0 +github.com/lnavarrocarter/actions-rules-repository, +github.com/lnavarrocarter/aws-sam-deploy-action, github.com/lnawrot/record-page,num_dependents_deps.dev:0 github.com/lnb283/programming-language,num_dependents_deps.dev:0 github.com/lnbits/conduct, @@ -750253,6 +763953,7 @@ github.com/lnquy/gopsutil,num_dependents_deps.dev:0 github.com/lnquy/samsa,num_dependents_deps.dev:0 github.com/lnquy065/react-katar,num_dependents_deps.dev:0 github.com/lnquy065/super-lang-editor,num_dependents_deps.dev:0 +github.com/lnschroeder/export-mermaid-erdiagram-action, github.com/lnshi/node-cayley,num_dependents_deps.dev:0 github.com/lnsoft/cordova-plugin-lnsoft-facerecognition,num_dependents_deps.dev:0 github.com/lnsp/go-prompt,num_dependents_deps.dev:0 @@ -750279,6 +763980,8 @@ github.com/lnwu/normalize.css,num_dependents_deps.dev:0 github.com/lnwu/template-generator, github.com/lnxjedi/go-fswatch,num_dependents_deps.dev:0 github.com/lnxjedi/gopherbot,num_dependents_deps.dev:3 +github.com/lnxpy/kavenegar-action, +github.com/lnxpy/pypi-stats-viewer, github.com/lnyarl/grunt-deadlink,num_dependents_deps.dev:0 github.com/lnyielea/webpack-file-map-plugin,num_dependents_deps.dev:0 github.com/lnys/gelf-cli,num_dependents_deps.dev:0 @@ -750321,6 +764024,7 @@ github.com/loa/temovex-exporter,num_dependents_deps.dev:0 github.com/load0ne/easy-sprite,num_dependents_deps.dev:0 github.com/load0ne/vanilla-component,num_dependents_deps.dev:0 github.com/load28/kkfc,num_dependents_deps.dev:0 +github.com/loadbalancerorg/polaris-action, github.com/loadchange/Rhone, github.com/loadchange/gwm,num_dependents_deps.dev:0 github.com/loadcoder/chart-extensions,num_dependents_deps.dev:5 @@ -750331,6 +764035,7 @@ github.com/loaderjs/loader-core,num_dependents_deps.dev:0 github.com/loaderjs/loader-css,num_dependents_deps.dev:0 github.com/loadfive/Knwl.js,num_dependents_deps.dev:0 github.com/loadflux/loadrush,num_dependents_deps.dev:0 +github.com/loadfms/serverleta, github.com/loadguard/runner, github.com/loadimpact/ember-cli-promise-polyfill, github.com/loadimpact/har-to-k6,num_dependents_deps.dev:0 @@ -750377,9 +764082,11 @@ github.com/loadingio/zmgr,num_dependents_deps.dev:0 github.com/loadingwyn/react-imageViewer,num_dependents_deps.dev:0 github.com/loadkpi/google_mobile_friendly,num_dependents_deps.dev:0 github.com/loadlab/javascript,num_dependents_deps.dev:0 +github.com/loadmill/1kWords, github.com/loadmill/express-loadmill,num_dependents_deps.dev:0 github.com/loadmill/har-recorder,num_dependents_deps.dev:0 github.com/loadmill/loadmill-node,num_dependents_deps.dev:0 +github.com/loadmill/run-test-plan-action, github.com/loadofearth/pydownsongs, github.com/loadoff/go-exclart,num_dependents_deps.dev:0 github.com/loadoff/lockload,num_dependents_deps.dev:0 @@ -750435,6 +764142,7 @@ github.com/loarca/osu-map-dl,num_dependents_deps.dev:0 github.com/loatheb/fetch-helper,num_dependents_deps.dev:0 github.com/loatheb/is-native-module,num_dependents_deps.dev:0 github.com/loawingr/read-js,num_dependents_deps.dev:0 +github.com/lob/action_sam_jackson, github.com/lob/aws-creds,num_dependents_deps.dev:0 github.com/lob/calipers,num_dependents_deps.dev:0 github.com/lob/create-boom-error,num_dependents_deps.dev:0 @@ -750527,6 +764235,9 @@ github.com/localForage-extensions/localForage-plugin-boilerplate,num_dependents_ github.com/localForage-extensions/localForage-removeItems,num_dependents_deps.dev:2 github.com/localForage/localForage,"criticality_score:0.497700,num_dependents_deps.dev:5138" github.com/localSummer/proxy-axios,num_dependents_deps.dev:0 +github.com/localazy/download, +github.com/localazy/tag, +github.com/localazy/upload, github.com/localboy/django-integer-enum, github.com/localcover/public-migratex,num_dependents_deps.dev:0 github.com/localdevices/ODMax, @@ -750577,6 +764288,7 @@ github.com/localstack/aws-sam-cli-local, github.com/localstack/awscli-local, github.com/localstack/azure-cli-local, github.com/localstack/localstack,"criticality_score:0.640100,num_dependents_deps.dev:0" +github.com/localstack/localstack-github-actions-login, github.com/localstack/localstack-lang-sdk-tests,num_dependents_deps.dev:0 github.com/localstack/localstack-plugin-loader, github.com/localstack/localstack-python-client, @@ -750584,6 +764296,7 @@ github.com/localstack/localstack-serverless,num_dependents_deps.dev:0 github.com/localstack/plux, github.com/localstack/pulumi-local, github.com/localstack/serverless-localstack,criticality_score:0.395780 +github.com/localstack/setup-localstack, github.com/localstack/verdin, github.com/localstack/warrant, github.com/localtoast/Whoisjs,num_dependents_deps.dev:0 @@ -750622,6 +764335,7 @@ github.com/localvoid/tagged-template-scanner,num_dependents_deps.dev:0 github.com/localvoid/tscss,num_dependents_deps.dev:0 github.com/localvore-today/react-mapbox-autocomplete,num_dependents_deps.dev:0 github.com/localxpose/node-localxpose,num_dependents_deps.dev:0 +github.com/localytics/cogito-rb, github.com/localytics/exploranda,num_dependents_deps.dev:0 github.com/localytics/lambda-slack-router,num_dependents_deps.dev:0 github.com/localytics/localytics-cordova,num_dependents_deps.dev:0 @@ -750658,6 +764372,7 @@ github.com/locator-kn/ark-trip,num_dependents_deps.dev:0 github.com/locator-kn/ark-user,num_dependents_deps.dev:0 github.com/locator-kn/ms-utilities,num_dependents_deps.dev:0 github.com/locavel/base-component,num_dependents_deps.dev:0 +github.com/locaweb/ftp-deploy, github.com/locaweb/heartcheck-webservice,num_dependents_deps.dev:0 github.com/locaweb/locawebstyle,"criticality_score:0.403430,num_dependents_deps.dev:0" github.com/locaweb/metrux,num_dependents_deps.dev:0 @@ -750690,6 +764405,7 @@ github.com/locie/energy_plus_wrapper, github.com/locie/triflow, github.com/lociii/pydigitalstrom, github.com/locize/android-string-resource,num_dependents_deps.dev:2 +github.com/locize/download, github.com/locize/fluent-translation-parser,num_dependents_deps.dev:0 github.com/locize/fluent_conv,num_dependents_deps.dev:2 github.com/locize/gettext-converter,num_dependents_deps.dev:0 @@ -750892,6 +764608,7 @@ github.com/loderunner/go-sqlite3,num_dependents_deps.dev:0 github.com/loderunner/scrt,num_dependents_deps.dev:0 github.com/loderunner/vue-env-plugin,num_dependents_deps.dev:0 github.com/lodestar-cli/lodestar,num_dependents_deps.dev:0 +github.com/lodestar-cli/lodestar-action, github.com/lodestarjs/lodestar-ractive,num_dependents_deps.dev:0 github.com/lodestarjs/lodestar-router,num_dependents_deps.dev:0 github.com/lodestreams/waveform-samples-generator,num_dependents_deps.dev:0 @@ -750925,6 +764642,7 @@ github.com/lodossDev/sfdx-login,num_dependents_deps.dev:0 github.com/lodossDev/sfdx-profiles-splitter,num_dependents_deps.dev:0 github.com/lodosstm/exposetoweb,num_dependents_deps.dev:0 github.com/lodosstm/yandex-checkout-node,num_dependents_deps.dev:0 +github.com/lodotek/helmfile-render, github.com/lodr/offliner,num_dependents_deps.dev:0 github.com/lodsve/lodsve-dependencies,num_dependents_deps.dev:0 github.com/lodsve/lodsve-framework,num_dependents_deps.dev:18 @@ -750947,6 +764665,7 @@ github.com/loehnertz/hexo-custom-fields,num_dependents_deps.dev:0 github.com/loehx/dependence,num_dependents_deps.dev:0 github.com/loehx/redux-defmap,num_dependents_deps.dev:0 github.com/loehx/redux-jedi,num_dependents_deps.dev:0 +github.com/loeken/github-action-get-latest-release, github.com/loeken/node-http-signature,num_dependents_deps.dev:0 github.com/loeksnokes/prefcode,num_dependents_deps.dev:0 github.com/loeksnokes/thompsoncalculator,num_dependents_deps.dev:0 @@ -750975,6 +764694,7 @@ github.com/lofar-astron/lofar-antenna-positions, github.com/lofgrenfredrik/labb,num_dependents_deps.dev:0 github.com/lofi-with-discord/flowyplay, github.com/lofiencier/Evy,num_dependents_deps.dev:0 +github.com/lofoyet/await-check-suites, github.com/lofreer/aorm, github.com/lofreer/aorm2,num_dependents_deps.dev:0 github.com/lofreer/egg-aorm,num_dependents_deps.dev:0 @@ -750986,6 +764706,7 @@ github.com/lofreer/simple-editor,num_dependents_deps.dev:0 github.com/loft-br/finance-drive-utils, github.com/loft-br/finance-google-utils, github.com/loft-br/multistep-form,num_dependents_deps.dev:0 +github.com/loft-br/very_good_coverage, github.com/loft-br/xgboost-survival-embeddings, github.com/loft-sh/api,num_dependents_deps.dev:0 github.com/loft-sh/apiserver,num_dependents_deps.dev:1 @@ -751119,6 +764840,7 @@ github.com/loganintech/gitpub,num_dependents_deps.dev:0 github.com/loganjanderson/bottega-devcamp-js-footer,num_dependents_deps.dev:0 github.com/loganjspears/chess,num_dependents_deps.dev:0 github.com/logankeenan/immutable-model,num_dependents_deps.dev:0 +github.com/logankilpatrick/SlackAndStackOverflowIntegration, github.com/logankimmel/guestbook,num_dependents_deps.dev:0 github.com/logankoester/action_pusher,num_dependents_deps.dev:0 github.com/logankoester/freshbooks-cli-config,num_dependents_deps.dev:0 @@ -751239,6 +764961,7 @@ github.com/logentries/lecli, github.com/logentries/leexportpy, github.com/logep/vue-common-select,num_dependents_deps.dev:0 github.com/logerzhu/simple-graphql,num_dependents_deps.dev:0 +github.com/logesh-kumar/fancy-echo, github.com/logesh-kumar/starwars-names,num_dependents_deps.dev:0 github.com/logesh4cspl/lg-custom-alert,num_dependents_deps.dev:0 github.com/logeshkrish/authtest,num_dependents_deps.dev:0 @@ -751372,6 +765095,7 @@ github.com/logicalhq/commitlint-config,num_dependents_deps.dev:0 github.com/logicalhq/eslint-config,num_dependents_deps.dev:0 github.com/logicalhq/stylelint-config,num_dependents_deps.dev:0 github.com/logically-js/logically-js,num_dependents_deps.dev:0 +github.com/logicallyabstract/dotenv-cloud-run-action, github.com/logicallyabstract/register-wc,num_dependents_deps.dev:0 github.com/logicallyabstract/simple-dev-server,num_dependents_deps.dev:0 github.com/logicallyabstract/simple-test-runner,num_dependents_deps.dev:0 @@ -751436,6 +765160,7 @@ github.com/logicatcore/binary_tree, github.com/logicbox-com-au/refinerycms-recommendations,num_dependents_deps.dev:0 github.com/logicbox/jquery-simplyscroll,num_dependents_deps.dev:0 github.com/logicco/mongoose-objectid-middleware,num_dependents_deps.dev:0 +github.com/logickoder/google-drive-upload, github.com/logiclinegmbh/formsy-material-ui,num_dependents_deps.dev:0 github.com/logiclinegmbh/material-ui,num_dependents_deps.dev:0 github.com/logiclinegmbh/material-ui-image,num_dependents_deps.dev:0 @@ -751488,7 +765213,11 @@ github.com/logie17/ontic,num_dependents_deps.dev:0 github.com/logie17/swig-i18n, github.com/logigator/logigator-shared-comps,num_dependents_deps.dev:0 github.com/logigator/logigator-simulation,num_dependents_deps.dev:0 +github.com/logikal-code/pip-install, github.com/logikal-code/pyorbs, +github.com/logikal-io/install-hadoop, +github.com/logikal-io/make-orb, +github.com/logikal-io/run-logikal-playbook, github.com/logikaljay/create-bundle,num_dependents_deps.dev:0 github.com/logikaljay/dead-majors,num_dependents_deps.dev:0 github.com/logikaljay/feigned,num_dependents_deps.dev:0 @@ -751649,7 +765378,10 @@ github.com/logrusorgru/aurora,criticality_score:0.379020 github.com/logrusorgru/find_n_biggest_numbers_in_text,num_dependents_deps.dev:0 github.com/logscl/nicobot-persistence-api,num_dependents_deps.dev:0 github.com/logself1988/SerialTool, +github.com/logseq/graph-validator, github.com/logseq/logseq,criticality_score:0.543060 +github.com/logseq/publish-spa, +github.com/logseq/rdf-export, github.com/logshero/logzio-nodejs,num_dependents_deps.dev:0 github.com/logship/py-logging-logship, github.com/logsign/go-syslog,num_dependents_deps.dev:0 @@ -751868,6 +765600,7 @@ github.com/loiccoyle/pyaccelerator, github.com/loiccoyle/rofi-tpb, github.com/loiccoyle/thqm, github.com/loiccoyle/tinyticker, +github.com/loicdiridollou/dyn-badge-action, github.com/loicdtx/landsat-espa-util, github.com/loicdtx/landsat-extract-gee, github.com/loicdurand/ld-components,num_dependents_deps.dev:0 @@ -752023,6 +765756,7 @@ github.com/lokeshmaram/palindrome.go,num_dependents_deps.dev:0 github.com/lokeshnit/bull-queue-viewer,num_dependents_deps.dev:0 github.com/lokeshpathrabe/worker-util,num_dependents_deps.dev:0 github.com/lokeshrana9999/react-helmet-with-placement-prop, +github.com/lokeshsynopsys/repo, github.com/lokeshthegenius/generator-node-express-ts,num_dependents_deps.dev:0 github.com/lokeshthegenius/splitipy, github.com/lokewei/react-draggable-custom,num_dependents_deps.dev:14 @@ -752075,6 +765809,8 @@ github.com/lokkasio/arlement,num_dependents_deps.dev:0 github.com/lokkasio/elte,num_dependents_deps.dev:0 github.com/lokkasio/worky-turkey,num_dependents_deps.dev:0 github.com/lokkersp/plugin-sdk,num_dependents_deps.dev:0 +github.com/lokkju/github-action-plantuml, +github.com/lokkju/github-action-sbt, github.com/lokkju/pyspatialite, github.com/lokks307-dev/go-util,num_dependents_deps.dev:0 github.com/lokks307/go-util,num_dependents_deps.dev:0 @@ -752112,6 +765848,7 @@ github.com/loksland/storymode,num_dependents_deps.dev:0 github.com/loksly/expresshelper,num_dependents_deps.dev:0 github.com/loksonarius/bedrock-server-versions,num_dependents_deps.dev:0 github.com/loksonarius/mcsm,num_dependents_deps.dev:0 +github.com/lokst/setup-circleci, github.com/lokstory/leetcode-test-go,num_dependents_deps.dev:0 github.com/loksundar/partial_multiple_correlation, github.com/lokt02/CryptoKuznechik,num_dependents_deps.dev:0 @@ -752144,6 +765881,7 @@ github.com/lol-russo/hyperterm-flat-ui,num_dependents_deps.dev:0 github.com/lol-russo/react-pictograms,num_dependents_deps.dev:0 github.com/lol1408/Vs,num_dependents_deps.dev:0 github.com/lol768/jQuery-QueryBuilder, +github.com/lol768/upload-to-release, github.com/lolPants/4chimg,num_dependents_deps.dev:0 github.com/lolPants/Blister.js, github.com/lolPants/batch-dl,num_dependents_deps.dev:0 @@ -752306,6 +766044,7 @@ github.com/lomaka1313/AesUtil, github.com/lomaka1313/express-admin,num_dependents_deps.dev:0 github.com/lomaka1313/nodebb-theme-slick,num_dependents_deps.dev:0 github.com/lomanic/gopsutil,num_dependents_deps.dev:0 +github.com/lomar92/github-actions-packer, github.com/lomax715/bitmap-transformer,num_dependents_deps.dev:0 github.com/lombardc/tetris_game, github.com/lombardi-zz/ppm,num_dependents_deps.dev:0 @@ -752330,6 +766069,7 @@ github.com/lomo321/getObjectType,num_dependents_deps.dev:0 github.com/lomoalbert/socksmitm,num_dependents_deps.dev:0 github.com/lomocc/ali-oss-ghr,num_dependents_deps.dev:0 github.com/lomocc/box-react, +github.com/lomocc/create-release, github.com/lomocc/json-parse.macro, github.com/lomocc/method,num_dependents_deps.dev:0 github.com/lomocc/ms-report-table,num_dependents_deps.dev:0 @@ -752348,6 +766088,7 @@ github.com/lompeboer/wh-webhook,num_dependents_deps.dev:0 github.com/lomsansnom/json_node_server,num_dependents_deps.dev:0 github.com/lomsansnom/node-localstack,num_dependents_deps.dev:0 github.com/lomtalay/MappingGuide,num_dependents_deps.dev:0 +github.com/lomy79/maven-version-bump-action, github.com/lon-yang/angular2-ace,num_dependents_deps.dev:0 github.com/lon-yang/angular2-semantic-ui,num_dependents_deps.dev:0 github.com/lon-yang/angularx-semantic-ui,num_dependents_deps.dev:0 @@ -752451,6 +766192,8 @@ github.com/lonetwin/expyre, github.com/lonetwin/supycache, github.com/lonewolf045/dropdown,num_dependents_deps.dev:0 github.com/lonewolf045/image-slider,num_dependents_deps.dev:0 +github.com/lonewolfworks/aws-codeartifact-mvn-login, +github.com/lonewolfworks/wolkezeug, github.com/lonfee88/json-stream-watchdog,num_dependents_deps.dev:0 github.com/long-in/gdcli,num_dependents_deps.dev:0 github.com/long-lazuli/chpm,num_dependents_deps.dev:0 @@ -752531,6 +766274,8 @@ github.com/longdw/cordova-plugin-telerik-imagepicker2,num_dependents_deps.dev:0 github.com/longears/python-tent-client, github.com/longears/shadowbox,num_dependents_deps.dev:0 github.com/longevityframework/longevity,num_dependents_deps.dev:0 +github.com/longfangsong/acquire-lock-with-issue, +github.com/longfangsong/another-criterion-compare-action, github.com/longfangsong/leetcode-answers,num_dependents_deps.dev:0 github.com/longfangsong/nostdhf,num_dependents_deps.dev:0 github.com/longfangsong/school-calendar-react,num_dependents_deps.dev:0 @@ -752866,6 +766611,7 @@ github.com/lonnblad/terraform-provider-aws,num_dependents_deps.dev:0 github.com/lonnelars/verifier-and-challenge,num_dependents_deps.dev:0 github.com/lonnen/corsica-flickr,num_dependents_deps.dev:0 github.com/lonnen/mset,num_dependents_deps.dev:0 +github.com/lonnen/sync-wiki-to-branch-action, github.com/lonnen/veritas, github.com/lonng/nano,"criticality_score:0.319420,num_dependents_deps.dev:11" github.com/lonng/nanoserver,num_dependents_deps.dev:0 @@ -752909,6 +766655,7 @@ github.com/lontten/lorm,num_dependents_deps.dev:0 github.com/lonwi/cordova-plugin-zendesk-sdk, github.com/lonycc/jandan-cli,num_dependents_deps.dev:0 github.com/lonycc/jandan-py, +github.com/lonychen2/action-phpcs-code-review, github.com/lonyele/JSNetworkX,num_dependents_deps.dev:0 github.com/lonysutrisno/kuncie,num_dependents_deps.dev:0 github.com/lonysutrisno/tokenomy,num_dependents_deps.dev:0 @@ -753404,6 +767151,7 @@ github.com/loomchild/maligna,num_dependents_deps.dev:0 github.com/loomchild/reload, github.com/loomchild/segment,"Google,num_dependents_deps.dev:96" github.com/loomchild/webflow-alpinejs,num_dependents_deps.dev:0 +github.com/loomchild/webflow-get, github.com/loomhq/ElectronMacOSClickThrough,num_dependents_deps.dev:0 github.com/loomhq/import-sort-style-loom,num_dependents_deps.dev:0 github.com/loomhq/lock-exec,num_dependents_deps.dev:0 @@ -753578,8 +767326,10 @@ github.com/loopsupport/cache_json,num_dependents_deps.dev:0 github.com/looptic/looptic,num_dependents_deps.dev:0 github.com/looptic/looptic-functions,num_dependents_deps.dev:0 github.com/loopwerk/eslint-config-loopwerk,num_dependents_deps.dev:0 +github.com/loopwerk/tag-changelog, github.com/loopyme/Task-Graph, github.com/loopyme/knight-bus, +github.com/looqbox/yarn-action-chromium, github.com/loose-dev/react-async-view,num_dependents_deps.dev:0 github.com/loosebazooka/actions-build-info,num_dependents_deps.dev:0 github.com/loosechainsaw/Slack,num_dependents_deps.dev:0 @@ -753718,6 +767468,7 @@ github.com/loque/peranta,num_dependents_deps.dev:0 github.com/loque/peranta-electron,num_dependents_deps.dev:0 github.com/loque/peranta-worker,num_dependents_deps.dev:0 github.com/loquiry/vue-record-audio,num_dependents_deps.dev:0 +github.com/loqusion/aur-publish-action, github.com/lora-net/node-red-contrib-loracloud-utils,num_dependents_deps.dev:0 github.com/lora-payload-magician/adeunis-pulse,num_dependents_deps.dev:0 github.com/lora-payload-magician/nkewatteco-pulsesenso,num_dependents_deps.dev:0 @@ -753986,6 +767737,7 @@ github.com/lorena-ssi/substrate-lib,num_dependents_deps.dev:8 github.com/lorena-ssi/terminal,num_dependents_deps.dev:0 github.com/lorena-ssi/wallet-lib,num_dependents_deps.dev:2 github.com/lorenaaraujo/cypher,num_dependents_deps.dev:0 +github.com/lorenalexm/action-dokku-push, github.com/lorenanicole/chicago-pyladies-digest, github.com/lorenaramonda/gulp-made-easy,num_dependents_deps.dev:0 github.com/lorenaramonda/reset.scss,num_dependents_deps.dev:0 @@ -754158,6 +767910,9 @@ github.com/loris/api-query-params,num_dependents_deps.dev:22 github.com/lorisercole/thermocepstrum, github.com/lorislab-archived/corn,num_dependents_deps.dev:0 github.com/lorislab/argocd-helm-vault,num_dependents_deps.dev:0 +github.com/lorislab/changelog-action, +github.com/lorislab/install-changelog-action, +github.com/lorislab/install-samo-action, github.com/lorislab/jel-quarkus-jpa,num_dependents_deps.dev:0 github.com/lorislab/quarkus-barn,num_dependents_deps.dev:40 github.com/lorislab/quarkus-hibernate-types,num_dependents_deps.dev:0 @@ -754166,6 +767921,7 @@ github.com/lorislab/quarkus-reactive-jms-tx,num_dependents_deps.dev:0 github.com/lorislab/quarkus-testcontainers,num_dependents_deps.dev:2 github.com/lorislab/quarkus-vertx-web-server,num_dependents_deps.dev:0 github.com/lorislab/samo,num_dependents_deps.dev:0 +github.com/lorislab/samo-action, github.com/lorislab/treasure,num_dependents_deps.dev:0 github.com/lorislab/vertx-sql-mapper,num_dependents_deps.dev:0 github.com/lorislab/wildfly-maven-plugin,num_dependents_deps.dev:0 @@ -754273,6 +768029,8 @@ github.com/losinggeneration/goat,num_dependents_deps.dev:0 github.com/losingkeys/generator-jshint,num_dependents_deps.dev:0 github.com/losingle/lets-chat-qcloud,num_dependents_deps.dev:0 github.com/losipiuk/ircmdbot, +github.com/losisin/helm-docs-github-action, +github.com/losisin/helm-values-schema-json-action, github.com/losizm/little-cli,num_dependents_deps.dev:0 github.com/losizm/little-config,num_dependents_deps.dev:0 github.com/losizm/little-io,num_dependents_deps.dev:0 @@ -754309,6 +768067,7 @@ github.com/lost-osiris/webplatform-backend, github.com/lost-osiris/webplatform-cli, github.com/lost-osiris/webplatform-frontend, github.com/lost-osiris/webplatform-ui,num_dependents_deps.dev:0 +github.com/lost-pixel/lost-pixel, github.com/lost222/jwtgprcconsul,num_dependents_deps.dev:0 github.com/lost222/pushservice,num_dependents_deps.dev:0 github.com/lostVkng/smodels,num_dependents_deps.dev:0 @@ -754338,6 +768097,7 @@ github.com/lostfictions/twoot,num_dependents_deps.dev:0 github.com/lostfields/python-panasonic-comfort-cloud, github.com/lostghost/examplegolibrary,num_dependents_deps.dev:0 github.com/losthanKKK/homeServer,num_dependents_deps.dev:0 +github.com/lostick/path-filtering-action, github.com/lostinaurora/codepractice,num_dependents_deps.dev:0 github.com/lostinbrittany/granite-fate-roller,num_dependents_deps.dev:0 github.com/lostinbrittany/granite-lit-bootstrap,num_dependents_deps.dev:0 @@ -754527,6 +768287,9 @@ github.com/lotrekagency/vue-dark-mode-switcher,num_dependents_deps.dev:0 github.com/lotrekagency/vue-piuma, github.com/lotrez/nyaasiscrapper,num_dependents_deps.dev:0 github.com/lots0logs/create-divi-extension,num_dependents_deps.dev:0 +github.com/lots0logs/gh-action-auto-merge, +github.com/lots0logs/gh-action-conditional-failure, +github.com/lots0logs/gh-action-get-changed-files, github.com/lots0logs/nodebb-theme-antergos,num_dependents_deps.dev:0 github.com/lotsabackscatter/vaadin-blueimp-gallery,num_dependents_deps.dev:0 github.com/lotsabackscatter/vaadin-cesium-component,num_dependents_deps.dev:0 @@ -754600,6 +768363,7 @@ github.com/louh/fake-terminal, github.com/louh/geoyaml, github.com/louh/gulp-entity-convert,num_dependents_deps.dev:0 github.com/louib/confirm, +github.com/louib/flatpak-action, github.com/louib/panbuild,num_dependents_deps.dev:0 github.com/louie007/loopback-component-fixturing,num_dependents_deps.dev:0 github.com/louie007/loopback-paginator-mixin,num_dependents_deps.dev:0 @@ -754619,6 +768383,7 @@ github.com/louis-bompart/refactored-happiness,num_dependents_deps.dev:0 github.com/louis-bompart/sfdx-js,num_dependents_deps.dev:0 github.com/louis-dresbach/nscb,num_dependents_deps.dev:0 github.com/louis-forite/dynamo-ast,num_dependents_deps.dev:0 +github.com/louis-l/caprover-action, github.com/louis-lau/ducky-api-client-angular,num_dependents_deps.dev:0 github.com/louis-ni/leetcode,num_dependents_deps.dev:0 github.com/louis-pvs/mrcw,num_dependents_deps.dev:0 @@ -754644,6 +768409,7 @@ github.com/louis61619/learn-cli,num_dependents_deps.dev:0 github.com/louis700/drawJs,num_dependents_deps.dev:0 github.com/louis70109/GitHub_Action_Python_Example, github.com/louis70109/line-notify, +github.com/louis70109/line-notify-action, github.com/louis77/pg2sqlite,num_dependents_deps.dev:0 github.com/louisLouL/louisPy, github.com/louisabraham/algnuth, @@ -754709,6 +768475,7 @@ github.com/louisgv/react-scroll-bottom-hook,num_dependents_deps.dev:0 github.com/louisgv/wtf-is,num_dependents_deps.dev:0 github.com/louishamilton/golang-react-mongo,num_dependents_deps.dev:0 github.com/louishawkins/node-runscope,num_dependents_deps.dev:0 +github.com/louishuyng/generatenpmrc, github.com/louisinger/merkle-tree-supply-chain,num_dependents_deps.dev:0 github.com/louisjacksonrees/firstLetters,num_dependents_deps.dev:0 github.com/louisjordan/md2impress, @@ -754758,6 +768525,7 @@ github.com/louisremi/jquery-smartresize,num_dependents_deps.dev:0 github.com/louisremi/jquery.wheel.js,num_dependents_deps.dev:0 github.com/louisrli/grabrc-client, github.com/louisronron/ColorEx, +github.com/louisroyer-gh-actions/busted, github.com/louissaadgo/ecom-backend,num_dependents_deps.dev:0 github.com/louissaadgo/school-lunch,num_dependents_deps.dev:0 github.com/louissayers/louissayers,num_dependents_deps.dev:0 @@ -754907,6 +768675,7 @@ github.com/lovasoa/reliability-compute,num_dependents_deps.dev:0 github.com/lovasoa/salesman.js,num_dependents_deps.dev:0 github.com/lovasoa/samsung-email-password-decrypt,num_dependents_deps.dev:0 github.com/lovasoa/seamcarving,num_dependents_deps.dev:0 +github.com/lovasoa/setup-emscripten, github.com/lovasoa/sql.js,num_dependents_deps.dev:0 github.com/lovasoa/ssimd,num_dependents_deps.dev:0 github.com/lovasoa/tidy-html5,num_dependents_deps.dev:0 @@ -754918,6 +768687,15 @@ github.com/lovata/eslint-config-lovata,num_dependents_deps.dev:0 github.com/lovata/oc-shopaholic-js-helper,num_dependents_deps.dev:0 github.com/lovato/hooks4git, github.com/love-YY/Car,num_dependents_deps.dev:0 +github.com/love-actions/love-actions-android, +github.com/love-actions/love-actions-core, +github.com/love-actions/love-actions-ios, +github.com/love-actions/love-actions-linux, +github.com/love-actions/love-actions-macos-appstore, +github.com/love-actions/love-actions-macos-portable, +github.com/love-actions/love-actions-test, +github.com/love-actions/love-actions-windows, +github.com/love-actions/xcode-notarizer, github.com/love-adela/daumdict, github.com/love-fay/fay-react-lib,num_dependents_deps.dev:0 github.com/love-fay/fay-react-material-ui,num_dependents_deps.dev:0 @@ -755160,6 +768938,7 @@ github.com/lovego/xiaomei,num_dependents_deps.dev:0 github.com/lovego/xlsx,num_dependents_deps.dev:0 github.com/lovegreen1321/onionscan,num_dependents_deps.dev:0 github.com/loveholidays/firestore-gorilla-sessions,num_dependents_deps.dev:0 +github.com/loveholidays/gitops-action-yaml-updater, github.com/loveholidays/immutable-lite,num_dependents_deps.dev:0 github.com/loveholidays/react-ui-showcase,num_dependents_deps.dev:0 github.com/loveindent/arangomigration,num_dependents_deps.dev:0 @@ -755175,6 +768954,7 @@ github.com/loveky/yapi.js,num_dependents_deps.dev:0 github.com/lovel29/discord-bot-mo,num_dependents_deps.dev:0 github.com/lovelace-ed/benvolio,num_dependents_deps.dev:0 github.com/lovelace-ed/lovelace,num_dependents_deps.dev:0 +github.com/lovelaced/bamboohr-attendance-action, github.com/lovelaced/glitzz,num_dependents_deps.dev:0 github.com/lovelife10000/L-download-images,num_dependents_deps.dev:0 github.com/lovelife10000/behappy,num_dependents_deps.dev:0 @@ -755203,6 +768983,7 @@ github.com/lovell/petra,num_dependents_deps.dev:0 github.com/lovell/sharp,"criticality_score:0.678960,num_dependents_deps.dev:5016" github.com/lovell/shorter,num_dependents_deps.dev:2 github.com/lovell/uk-postcode,num_dependents_deps.dev:0 +github.com/lovellfelix/minio-deploy-action, github.com/lovelly/flag-parse,num_dependents_deps.dev:0 github.com/lovelly/go-micro,num_dependents_deps.dev:0 github.com/lovelly/kcp-go,num_dependents_deps.dev:0 @@ -755214,6 +768995,7 @@ github.com/lovelope/r-cli,num_dependents_deps.dev:0 github.com/lovelope/rollup-plugin-cpy,num_dependents_deps.dev:0 github.com/loveloper44/class-validator-message-formatter,num_dependents_deps.dev:0 github.com/loveloper44/nest-graceful,num_dependents_deps.dev:0 +github.com/loveloper44/render-json-action, github.com/lovelts/allocate-time,num_dependents_deps.dev:0 github.com/lovely-cups/lotide,num_dependents_deps.dev:0 github.com/lovely-libras/redux-genie,num_dependents_deps.dev:0 @@ -755447,6 +769229,7 @@ github.com/lowewenzel/react-native-stabilized-view, github.com/lowewenzel/use-autocomplete,num_dependents_deps.dev:0 github.com/lowfront/lit-console,num_dependents_deps.dev:0 github.com/lowfront/twined-components,num_dependents_deps.dev:0 +github.com/lowg6/action-html-to-markdown, github.com/lowik/bourbon-sass-loader,num_dependents_deps.dev:0 github.com/lowik/eslint-config-evenium,num_dependents_deps.dev:0 github.com/lowik/stripe.js,num_dependents_deps.dev:0 @@ -755454,6 +769237,7 @@ github.com/lowik/superagent-nock,num_dependents_deps.dev:0 github.com/lowitea/jeevez,num_dependents_deps.dev:0 github.com/lowjiajin/snowfall, github.com/lowjiansheng/python-bittrex-websocket-aio, +github.com/lowkey-who/pulumi-actions, github.com/lowkh/gocicddemo,num_dependents_deps.dev:0 github.com/lowkh/gohellorun4,num_dependents_deps.dev:0 github.com/lowkh/helloworld1,num_dependents_deps.dev:0 @@ -755473,6 +769257,8 @@ github.com/lowlighter/rakun,num_dependents_deps.dev:0 github.com/lowline-js/difference,num_dependents_deps.dev:2 github.com/lowline-js/without,num_dependents_deps.dev:0 github.com/lowliness9/bypassav,num_dependents_deps.dev:0 +github.com/lowlydba/tsqllint-action, +github.com/lowlydba/tsqlt-installer, github.com/lowmess/eslint-config-lowmess,num_dependents_deps.dev:0 github.com/lowmess/gatsby-plugin-gauges,num_dependents_deps.dev:0 github.com/lowmess/hero-patterns,num_dependents_deps.dev:0 @@ -755495,8 +769281,12 @@ github.com/lowol/mongoose-query-paginate,num_dependents_deps.dev:0 github.com/lowol/mongoose-schema-formatdate,num_dependents_deps.dev:0 github.com/lowops/database,num_dependents_deps.dev:0 github.com/lowops/kit,num_dependents_deps.dev:0 +github.com/lowply/auto-closer, github.com/lowply/azure-dns-manager,num_dependents_deps.dev:0 +github.com/lowply/build-hugo, +github.com/lowply/deploy-firebase, github.com/lowply/ghe,num_dependents_deps.dev:0 +github.com/lowply/issue-from-template, github.com/lowply/lacrosse,num_dependents_deps.dev:0 github.com/lowprivshighhopes/evilginx2,num_dependents_deps.dev:0 github.com/lowsprofile/jaysn,num_dependents_deps.dev:0 @@ -755520,6 +769310,7 @@ github.com/loxley/halonadm, github.com/loxodon/smexbound,num_dependents_deps.dev:0 github.com/loxt/go-blog-app,num_dependents_deps.dev:0 github.com/loxygenK/oxidizer, +github.com/loxygenK/taskonfirm, github.com/loxygenk/asnman,num_dependents_deps.dev:0 github.com/loxygenk/viece,num_dependents_deps.dev:0 github.com/loy124/LoyHooks,num_dependents_deps.dev:0 @@ -755578,6 +769369,7 @@ github.com/loymax/posthtml-prefix-ngclass,num_dependents_deps.dev:0 github.com/loz/has_strong_policy,num_dependents_deps.dev:0 github.com/lozaeric/dupin,num_dependents_deps.dev:0 github.com/lozanotek/mvcturbine,num_dependents_deps.dev:0 +github.com/lozdan/upload-google-play, github.com/lozinsky/cname-webpack-plugin,num_dependents_deps.dev:0 github.com/lozinsky/typescript-babel-jest,num_dependents_deps.dev:22 github.com/lozjackson/ember-auto-save,num_dependents_deps.dev:0 @@ -755667,6 +769459,7 @@ github.com/lpcruz/dev-note,num_dependents_deps.dev:0 github.com/lpcustom/angular2-jsonapi,num_dependents_deps.dev:0 github.com/lpdig/macaw,num_dependents_deps.dev:0 github.com/lpe234/strings_pkg, +github.com/lpeabody/drupal-security-action, github.com/lpeano/openshift-custom-threshold-annotations,num_dependents_deps.dev:0 github.com/lpearson05/telemetry-events-quantify,num_dependents_deps.dev:0 github.com/lpegoraro/password-manager,num_dependents_deps.dev:0 @@ -755686,7 +769479,14 @@ github.com/lpenz/atdtool, github.com/lpenz/docker-debian-releases,num_dependents_deps.dev:0 github.com/lpenz/ftpsmartsync, github.com/lpenz/ftpsync, +github.com/lpenz/ghaction-cmake, +github.com/lpenz/ghaction-packagecloud, +github.com/lpenz/ghaction-pytest-cov, +github.com/lpenz/ghaction-python-stdeb, +github.com/lpenz/ghaction-rust-coverage, +github.com/lpenz/ghaction-version-gen, github.com/lpenz/ogle,num_dependents_deps.dev:0 +github.com/lpenz/omnilint, github.com/lpenz/rust-sourcebundler,num_dependents_deps.dev:0 github.com/lpenz/sqrid,num_dependents_deps.dev:0 github.com/lpenz/watchng, @@ -755769,6 +769569,7 @@ github.com/lpk3nny/virtualbone,num_dependents_deps.dev:0 github.com/lplnufpi/vislparser, github.com/lpltk/pydriver, github.com/lplus/parcel-plugin-phtml,num_dependents_deps.dev:0 +github.com/lpm0073/aws-ecr-create, github.com/lpmatos/gen,num_dependents_deps.dev:0 github.com/lpmatos/gitlab-ci-lint,num_dependents_deps.dev:0 github.com/lpmatos/gitlabrc, @@ -755929,6 +769730,8 @@ github.com/lquiroli/android-menupager,num_dependents_deps.dev:0 github.com/lquixada/cross-cookie,num_dependents_deps.dev:0 github.com/lquixada/cross-fetch,"criticality_score:0.481060,num_dependents_deps.dev:32316" github.com/lr04d/403go,num_dependents_deps.dev:0 +github.com/lr0pb/deploy-pages, +github.com/lr0pb/generate-release, github.com/lr1994/react-cli-webpack4,num_dependents_deps.dev:0 github.com/lr2021/recruit-backend,num_dependents_deps.dev:0 github.com/lr5420511/array-queryable,num_dependents_deps.dev:0 @@ -755937,6 +769740,7 @@ github.com/lr5420511/element-solution,num_dependents_deps.dev:0 github.com/lr5420511/new-promiseify,num_dependents_deps.dev:0 github.com/lr5420511/vue-animate,num_dependents_deps.dev:0 github.com/lra/mackup,criticality_score:0.592860 +github.com/lra/setup-kubeval, github.com/lra/terrasql,num_dependents_deps.dev:0 github.com/lrama1/backbone-jquery-spring-plugin,num_dependents_deps.dev:0 github.com/lramac3/Word-Guess-CLI,num_dependents_deps.dev:0 @@ -756014,6 +769818,7 @@ github.com/lricoy/proxy-cache,num_dependents_deps.dev:0 github.com/lricoy/starwars-names,num_dependents_deps.dev:0 github.com/lriecken/gmiparser,num_dependents_deps.dev:0 github.com/lriecken/quetsch,num_dependents_deps.dev:0 +github.com/lriesebos/nix-develop-command, github.com/lrills/helm-unittest,num_dependents_deps.dev:0 github.com/lrills/polyfill-exports,num_dependents_deps.dev:0 github.com/lrills/thenifiedly,num_dependents_deps.dev:6 @@ -756025,6 +769830,7 @@ github.com/lrivallain/VcdExtMessageWorker, github.com/lrivallain/kvcd, github.com/lrivallain/vcdextproxy, github.com/lrivallain/vmdcli, +github.com/lrivallain/vro-package-diff-action, github.com/lrivallain/vro_package_diff, github.com/lriverawong/gdeck,num_dependents_deps.dev:0 github.com/lrk/hubeau-api-client, @@ -756118,6 +769924,7 @@ github.com/lrsjng/scar,num_dependents_deps.dev:0 github.com/lrsjng/uniq,num_dependents_deps.dev:0 github.com/lrsp/ornate,num_dependents_deps.dev:0 github.com/lrstanley/girc,num_dependents_deps.dev:14 +github.com/lrstanley/helm-version-updater, github.com/lrstanley/vault-unseal,num_dependents_deps.dev:0 github.com/lrswcg/example,num_dependents_deps.dev:0 github.com/lrth06/editor-to-jsx, @@ -756160,6 +769967,7 @@ github.com/ls-age/svelte-preprocess-filter,num_dependents_deps.dev:6 github.com/ls-age/svelte-preprocess-less,num_dependents_deps.dev:0 github.com/ls-age/svelte-preprocess-sass,num_dependents_deps.dev:0 github.com/ls-age/xml,num_dependents_deps.dev:0 +github.com/ls-lint/action, github.com/ls-simon-peter-damian/beamer,num_dependents_deps.dev:0 github.com/ls0f/phone, github.com/ls0f/pwm, @@ -756176,6 +769984,8 @@ github.com/lsa2127291/cz-custom-enhanced,num_dependents_deps.dev:0 github.com/lsa2127291/rxjs-webworker,num_dependents_deps.dev:0 github.com/lsabbagh/concatenater,num_dependents_deps.dev:0 github.com/lsabbagh/faxios,num_dependents_deps.dev:0 +github.com/lsacera/KiuwanBaselineAction, +github.com/lsacera/KiuwanDeliveryAction, github.com/lsaffre/commondata-be, github.com/lsaffre/commondata-ee, github.com/lsagetlethias/eslint-config,num_dependents_deps.dev:0 @@ -756261,6 +770071,7 @@ github.com/lsdriscoll/matt-daemon,num_dependents_deps.dev:0 github.com/lsds/kungfu,num_dependents_deps.dev:0 github.com/lse/pygments-tiger, github.com/lsegal/cppgo,num_dependents_deps.dev:0 +github.com/lsegal/github-release-from-changelog-action, github.com/lsegal/gorb,num_dependents_deps.dev:0 github.com/lsegal/ripper18,num_dependents_deps.dev:2 github.com/lsegal/yard,"criticality_score:0.589050,num_dependents_deps.dev:498" @@ -756290,6 +770101,7 @@ github.com/lsepi/bv1d4411i7wd,num_dependents_deps.dev:0 github.com/lsepi/go-language-design-pattern,num_dependents_deps.dev:0 github.com/lsert/myHooks, github.com/lsert/react-transform-children-function,num_dependents_deps.dev:0 +github.com/lsetiawan/py-github-actions-starter, github.com/lsfgrd/ngx-typed-form-class,num_dependents_deps.dev:0 github.com/lsflk/gig,num_dependents_deps.dev:0 github.com/lsflk/gig-scripts,num_dependents_deps.dev:0 @@ -756420,6 +770232,7 @@ github.com/lsner/my-utils,num_dependents_deps.dev:0 github.com/lsner/public-utils, github.com/lsnow99/dudu,num_dependents_deps.dev:0 github.com/lsnow99/oruga, +github.com/lsnow99/porter-update-action, github.com/lsoaresesilva/programming-monitor,num_dependents_deps.dev:0 github.com/lsochanowski/aquarea2mqtt,num_dependents_deps.dev:0 github.com/lsochanowski/go-netdicom,num_dependents_deps.dev:0 @@ -756610,6 +770423,7 @@ github.com/lsy357/golang,num_dependents_deps.dev:0 github.com/lsycxyj/gulp-mocker,num_dependents_deps.dev:0 github.com/lsycxyj/vue-l-carousel,num_dependents_deps.dev:0 github.com/lsycxyj/vue-l-lazyload,num_dependents_deps.dev:0 +github.com/lsynopsys/synopsys-action, github.com/lsytj0413/ena,num_dependents_deps.dev:0 github.com/lsytj0413/myinctl,num_dependents_deps.dev:0 github.com/lsyxiaopang/auto-Dataconsuming, @@ -756622,6 +770436,7 @@ github.com/lt0/gmplayer,num_dependents_deps.dev:0 github.com/lt0/sysmon,num_dependents_deps.dev:0 github.com/lt20kmph/pmail, github.com/lt94/movie-searcher, +github.com/ltDino/android-get-version-action, github.com/ltacker/react-native-caffe2, github.com/ltacker/react-native-web3,num_dependents_deps.dev:0 github.com/ltacker/request-chain-storage,num_dependents_deps.dev:0 @@ -756650,6 +770465,7 @@ github.com/ltchurch88t/Smooth-Nav,num_dependents_deps.dev:0 github.com/ltdai010/validation,num_dependents_deps.dev:0 github.com/ltdangkhoa/vbiz_fetcher, github.com/ltdangkhoa/vbiz_parser, +github.com/lte-deankier/get-build-number, github.com/lteacher/auto-delegate,num_dependents_deps.dev:0 github.com/lteacher/grunt-sf-jedi, github.com/lteacher/mysql-query-wrapper,num_dependents_deps.dev:0 @@ -756683,6 +770499,7 @@ github.com/ltetzlaff/node-lru-native,num_dependents_deps.dev:0 github.com/ltetzlaff/preact-scrollchor,num_dependents_deps.dev:0 github.com/ltetzlaff/sqipify,num_dependents_deps.dev:0 github.com/ltetzlaff/sqipify-cli, +github.com/ltetzlaff/swift-api-diff, github.com/ltetzlaff/ts-xxhash,num_dependents_deps.dev:0 github.com/ltetzlaff/tslint-lt,num_dependents_deps.dev:0 github.com/ltetzlaff/video-to-images,num_dependents_deps.dev:0 @@ -756826,6 +770643,7 @@ github.com/lttr/string-transformations,num_dependents_deps.dev:0 github.com/ltucker/giblets, github.com/ltung/ion-dynamic-tree-list,num_dependents_deps.dev:0 github.com/ltv/Leaflet.glify,num_dependents_deps.dev:0 +github.com/ltv/bizfly-kube, github.com/ltv/env,num_dependents_deps.dev:0 github.com/ltv/gql,num_dependents_deps.dev:0 github.com/ltv/moleculer-db-adapter-knex,num_dependents_deps.dev:0 @@ -756835,6 +770653,7 @@ github.com/ltv/moleculer-graphql-server,num_dependents_deps.dev:0 github.com/ltv/moleculer-postgraphile,num_dependents_deps.dev:0 github.com/ltv/moleculer-s3,num_dependents_deps.dev:0 github.com/ltv/release-notes,num_dependents_deps.dev:0 +github.com/ltv/standard-version-action, github.com/ltv/storage,num_dependents_deps.dev:0 github.com/ltv/vn-address,num_dependents_deps.dev:0 github.com/ltv/webpack-moleculer-service-plugin,num_dependents_deps.dev:0 @@ -756941,6 +770760,7 @@ github.com/luangm/learn4js,num_dependents_deps.dev:0 github.com/luangm/learn4ts, github.com/luangm/tensor4js,num_dependents_deps.dev:0 github.com/luangm/tensor4ts, +github.com/luangong/setup-install4j, github.com/luangtatipsy/go-by-example,num_dependents_deps.dev:0 github.com/luanguimaraesla/freegrow,num_dependents_deps.dev:0 github.com/luanguimaraesla/gabby, @@ -756975,6 +770795,7 @@ github.com/luanpc3297/training-golang,num_dependents_deps.dev:0 github.com/luanpcweb/golang-cobra-example,num_dependents_deps.dev:0 github.com/luanphandinh/pits,num_dependents_deps.dev:0 github.com/luanpotter/audioplayers,criticality_score:0.542350 +github.com/luanpotter/changes-requested, github.com/luanpotter/console-parser,num_dependents_deps.dev:0 github.com/luanpotter/endless-bitset,num_dependents_deps.dev:0 github.com/luanpotter/formulae,num_dependents_deps.dev:0 @@ -757054,6 +770875,7 @@ github.com/lubc/create-react-app,num_dependents_deps.dev:0 github.com/lubczanska/tudu, github.com/luben/tokio-serde-bincode,num_dependents_deps.dev:3 github.com/luben/zstd-jni,criticality_score:0.539070 +github.com/luber/github-tag-action-new, github.com/luberda-molinet/FFImageLoading,criticality_score:0.468810 github.com/lubert/chess.ts,num_dependents_deps.dev:0 github.com/lubert/node-uci-engine,num_dependents_deps.dev:0 @@ -757109,6 +770931,7 @@ github.com/lubtd/cosmos-sdk,num_dependents_deps.dev:0 github.com/lubu12/async-api-queue,num_dependents_deps.dev:0 github.com/lubu12/aws-cognito-ops,num_dependents_deps.dev:0 github.com/lubu12/cas-common-lib,num_dependents_deps.dev:0 +github.com/lubu12/copy-files-to-repository, github.com/lubu12/mailchimp-import,num_dependents_deps.dev:0 github.com/lubu12/mongodb-ops,num_dependents_deps.dev:0 github.com/lubudack/emputility, @@ -757174,6 +770997,8 @@ github.com/lucacasonato/workerkit,num_dependents_deps.dev:0 github.com/lucachaco/easy-config,num_dependents_deps.dev:0 github.com/lucachaco/easy-node-config, github.com/lucachaco/words-to-date-es,num_dependents_deps.dev:0 +github.com/lucacome/docker-image-update-checker, +github.com/lucacome/draft-release, github.com/lucacri/homebridge-http-simple-switch,num_dependents_deps.dev:0 github.com/lucacri/homebridge-http-temperature-humidity,num_dependents_deps.dev:0 github.com/lucactt/gameboy,num_dependents_deps.dev:0 @@ -757234,6 +771059,7 @@ github.com/lucaisfirst/learngo,num_dependents_deps.dev:0 github.com/lucajoos/compulsion,num_dependents_deps.dev:0 github.com/lucajoos/compulsion-http,num_dependents_deps.dev:0 github.com/lucajoos/onceupon.js, +github.com/lucajoos/pull-request-issue-automation, github.com/lucakiebel/ListX, github.com/lucakiebel/Warframe.js,num_dependents_deps.dev:0 github.com/lucakiebel/appid,num_dependents_deps.dev:0 @@ -757352,6 +771178,7 @@ github.com/lucas-flowers/snutree, github.com/lucas-fsousa/pyroutines, github.com/lucas-gustavoc/my-own-sass-gridsystem,num_dependents_deps.dev:0 github.com/lucas-hello/learngo,num_dependents_deps.dev:0 +github.com/lucas-im/github-action-cherry-pick, github.com/lucas-inacio/gochart,num_dependents_deps.dev:0 github.com/lucas-issa/react-sticky-hierarchical,num_dependents_deps.dev:0 github.com/lucas-issa/simple-react-dropzone,num_dependents_deps.dev:0 @@ -757363,6 +771190,7 @@ github.com/lucas-miranda/tree_decorator,num_dependents_deps.dev:0 github.com/lucas-nac/age-of-decentralization-server,num_dependents_deps.dev:0 github.com/lucas-paiva98/eslint-plugin-bad-smells,num_dependents_deps.dev:0 github.com/lucas-pichette/hackerrank-leetcode,num_dependents_deps.dev:0 +github.com/lucas-reap-hk/gpt-review-3.5, github.com/lucas-santos/devdistr,num_dependents_deps.dev:0 github.com/lucas-stellet/grpc-master-class,num_dependents_deps.dev:0 github.com/lucas-tortora/test_wiki_packages,num_dependents_deps.dev:0 @@ -757418,6 +771246,9 @@ github.com/lucasbauche/MyAngularLibrary,num_dependents_deps.dev:0 github.com/lucasbecker/lucasbecker,num_dependents_deps.dev:0 github.com/lucasbedout/pywesome, github.com/lucasbeef/parsehub-plaid,num_dependents_deps.dev:0 +github.com/lucasbento/auto-close-issues, +github.com/lucasbento/core-workflow-apply-version-label, +github.com/lucasbento/core-workflow-create-version-label, github.com/lucasbento/create-graphql,num_dependents_deps.dev:0 github.com/lucasbento/get-ios-devices,num_dependents_deps.dev:0 github.com/lucasbento/is-package-dep,num_dependents_deps.dev:0 @@ -757571,6 +771402,7 @@ github.com/lucasfcosta/wifi-scanner,num_dependents_deps.dev:0 github.com/lucasfcosta/wikilinks,num_dependents_deps.dev:0 github.com/lucasfcosta/wren-8080,num_dependents_deps.dev:0 github.com/lucasfdsilva/http-ruby-gem,num_dependents_deps.dev:0 +github.com/lucasfe/version_code_generator, github.com/lucasfeijo/react-native-reply,num_dependents_deps.dev:0 github.com/lucasfeliciano/fetch-everywhere,num_dependents_deps.dev:262 github.com/lucasfeliciano/grunt-localstack,num_dependents_deps.dev:0 @@ -757655,6 +771487,7 @@ github.com/lucashusted/py_rdpackages, github.com/lucashusted/pystout, github.com/lucashusted/pytrendex, github.com/lucasjans/SpotifyBar,num_dependents_deps.dev:0 +github.com/lucasjinreal/arxiv_action, github.com/lucasjohannson/lotide, github.com/lucask07/thunderboard-reader, github.com/lucask1/gameswithgo,num_dependents_deps.dev:0 @@ -757732,6 +771565,11 @@ github.com/lucasmedeirosleite/mongoid-followit,num_dependents_deps.dev:0 github.com/lucasmelin/contra-rotor, github.com/lucasmelin/gitfix, github.com/lucasmelin/molting, +github.com/lucasmelin/molting-release-action, +github.com/lucasmelin/omg.lol-gh-status-sync-action, +github.com/lucasmelin/setup-nomad, +github.com/lucasmelin/setup-waypoint, +github.com/lucasmellos/istio-action, github.com/lucasmendesl/validator,num_dependents_deps.dev:0 github.com/lucasmenendez/gop2p,num_dependents_deps.dev:0 github.com/lucasmenendez/selectable, @@ -757756,6 +771594,7 @@ github.com/lucasmonteverde/mailrender,num_dependents_deps.dev:0 github.com/lucasmonteverde/passport-wrike,num_dependents_deps.dev:0 github.com/lucasmotta/duo-ractive,num_dependents_deps.dev:0 github.com/lucasmotta/gulp-minstache,num_dependents_deps.dev:0 +github.com/lucasmotta/pull-request-sticky-header, github.com/lucasmotta/react-accelerometer,num_dependents_deps.dev:0 github.com/lucasmotta/relayout,num_dependents_deps.dev:0 github.com/lucasmotta/sass-glob-importer,num_dependents_deps.dev:2 @@ -757778,6 +771617,7 @@ github.com/lucasnaja/who-does-not-follow-me,num_dependents_deps.dev:0 github.com/lucasnbsb/generator-unb-servicos,num_dependents_deps.dev:0 github.com/lucasnevespereira/eemigonotes,num_dependents_deps.dev:0 github.com/lucasnevespereira/onboarding-plugin,num_dependents_deps.dev:0 +github.com/lucasnlm/ktlint-action, github.com/lucasnocete/log4js-logentries-appender,num_dependents_deps.dev:0 github.com/lucasnoga/corpos-christie,num_dependents_deps.dev:0 github.com/lucasoares/simple-supplier-processor,num_dependents_deps.dev:0 @@ -757796,6 +771636,7 @@ github.com/lucaspetti/spotify_timeline_csv_parser,num_dependents_deps.dev:0 github.com/lucaspiller/brauchbar,num_dependents_deps.dev:0 github.com/lucaspiller/offline-geocoder,num_dependents_deps.dev:0 github.com/lucaspiller/plain-david,num_dependents_deps.dev:0 +github.com/lucaspinheirogit/list-from-string-array-action, github.com/lucaspiressimao/react-native-filipeta,num_dependents_deps.dev:0 github.com/lucaspiressimao/react-native-plugpag-wrapper,num_dependents_deps.dev:0 github.com/lucaspiressimao/regexter,num_dependents_deps.dev:0 @@ -757837,9 +771678,11 @@ github.com/lucasrouckhout/mcstat,num_dependents_deps.dev:0 github.com/lucasrpb/com-github-lucasrpb-drivers-cassandra,num_dependents_deps.dev:0 github.com/lucasrpb/com-github-lucasrpb-oauth2,num_dependents_deps.dev:0 github.com/lucasrpb/com-github-lucasrpb-utils,num_dependents_deps.dev:0 +github.com/lucasruy/sync-branch-action, github.com/lucass-work/gopengl2,num_dependents_deps.dev:0 github.com/lucass-work/tickcontroller,num_dependents_deps.dev:0 github.com/lucassabreu/clockify-cli,num_dependents_deps.dev:0 +github.com/lucassabreu/comment-coverage-clover, github.com/lucassabreu/gh-collab-manager,num_dependents_deps.dev:0 github.com/lucassaid/ncached, github.com/lucassaid/react-native-cool-speedometer,num_dependents_deps.dev:0 @@ -757847,6 +771690,7 @@ github.com/lucassaldanha/playdoh,num_dependents_deps.dev:0 github.com/lucassaldanha/pokename,num_dependents_deps.dev:0 github.com/lucassantoss1701/studies_go,num_dependents_deps.dev:0 github.com/lucassaraiva019/devbook-arango,num_dependents_deps.dev:0 +github.com/lucassarcanjo/heroku-deploy, github.com/lucasscariot/rest-endpoint,num_dependents_deps.dev:0 github.com/lucasscesar/stylelint-html-formatter,num_dependents_deps.dev:2 github.com/lucassel/bitchbetterhavemymoney, @@ -757906,6 +771750,7 @@ github.com/lucasvallenet/js-custom-events,num_dependents_deps.dev:0 github.com/lucasvallenet/js-scrollevents,num_dependents_deps.dev:0 github.com/lucasvallenet/js-stick-it, github.com/lucasvanhalst/hubot-remind,num_dependents_deps.dev:0 +github.com/lucasvanmol/status-badges, github.com/lucasvazq/cushead, github.com/lucasvellido/kubernetes-fullcycle,num_dependents_deps.dev:0 github.com/lucasventurasc/ngx-accordion-table,num_dependents_deps.dev:0 @@ -758004,6 +771849,7 @@ github.com/lucca-cardial/vue-discover,num_dependents_deps.dev:0 github.com/luccabb/flask_kanban, github.com/luccagdias/kattis-problems-solution,num_dependents_deps.dev:0 github.com/luccagdias/learning-go,num_dependents_deps.dev:0 +github.com/luccas-freitas/delete-older-releases, github.com/luccascosta/react-data-components-bulma,num_dependents_deps.dev:0 github.com/luccascosta/react-identity-component,num_dependents_deps.dev:0 github.com/luccascosta/smile-toggle,num_dependents_deps.dev:0 @@ -758113,6 +771959,7 @@ github.com/lucee/osgi-bundle-xml-xerces,num_dependents_deps.dev:0 github.com/lucee/osgi-bundle-xmlbeans,num_dependents_deps.dev:0 github.com/lucee/osgi-bundle-xmpcore,num_dependents_deps.dev:0 github.com/lucee/osgi-bundle-zip4j,num_dependents_deps.dev:0 +github.com/lucee/script-runner, github.com/lucefer/assign-loader,num_dependents_deps.dev:0 github.com/lucefer/continue-assign-parser,num_dependents_deps.dev:0 github.com/lucefer/ellipsis-plus,num_dependents_deps.dev:0 @@ -758127,6 +771974,7 @@ github.com/lucent-sea/Remotely,criticality_score:0.421510 github.com/luceole/angular-ckeditor,num_dependents_deps.dev:0 github.com/luceracloud/body-checker,num_dependents_deps.dev:0 github.com/lucerion/jsregexp,num_dependents_deps.dev:0 +github.com/lucetre/build-deploy-gh-pages, github.com/lucets/client, github.com/lucets/luce,num_dependents_deps.dev:16 github.com/lucets/message-hooks,num_dependents_deps.dev:4 @@ -758147,6 +771995,8 @@ github.com/luchaoet/random-rule-string,num_dependents_deps.dev:0 github.com/luchaoet/react-components,num_dependents_deps.dev:0 github.com/luchaoqun125/react-ant-screw,num_dependents_deps.dev:0 github.com/lucharo/nb2medium, +github.com/lucharo/rmarkdown-action, +github.com/luchees/cfn-lint-action, github.com/luchen29/golang_microservice_improving,num_dependents_deps.dev:0 github.com/luchenatwork/Fontello-Batch-CLI,num_dependents_deps.dev:4 github.com/luchenatwork/Fontello-Offline-CLI,num_dependents_deps.dev:0 @@ -758155,6 +772005,8 @@ github.com/luchenhua/goginprom,num_dependents_deps.dev:0 github.com/luchenqun/fisco-sdk-js,num_dependents_deps.dev:0 github.com/luchenwei9266/dytt-reptitle,num_dependents_deps.dev:0 github.com/luchev/parallel-bfs,num_dependents_deps.dev:0 +github.com/luchihoratiu/debug-via-ssh, +github.com/luchihoratiu/notify-via-slack, github.com/luchininaanna/go-course,num_dependents_deps.dev:0 github.com/luchkonikita/nano-charts,num_dependents_deps.dev:0 github.com/luchkonikita/yet-another-autocomplete,num_dependents_deps.dev:0 @@ -758231,6 +772083,7 @@ github.com/lucianobarauna/v-gradientbutton,num_dependents_deps.dev:0 github.com/lucianobenjota/golangoss,num_dependents_deps.dev:0 github.com/lucianobustos/express-swagger-generator,num_dependents_deps.dev:0 github.com/lucianodltec/monaco-editor-vue, +github.com/lucianogorza/comment-test-coverage, github.com/lucianoiam/pyardourclient, github.com/lucianojsjr/auto-report,num_dependents_deps.dev:0 github.com/lucianokrebs/gobyexamplecodealong,num_dependents_deps.dev:0 @@ -758252,6 +772105,7 @@ github.com/lucianotavernard/eslint-config-tavernard,num_dependents_deps.dev:0 github.com/lucianovidiufilote/vue-timeline,num_dependents_deps.dev:0 github.com/lucianovilasboas/br_loterias, github.com/lucianovilasboas/nd_metrics, +github.com/lucianposton/repoman-ebuild-qa-action, github.com/lucianw/mpromise,num_dependents_deps.dev:0 github.com/lucid-kv/ts-sdk,num_dependents_deps.dev:0 github.com/lucid-services/serviser,num_dependents_deps.dev:0 @@ -758646,6 +772500,7 @@ github.com/luckyadogun/dictionaryIO, github.com/luckyape/vuex-access-gate,num_dependents_deps.dev:0 github.com/luckyatum/au-components,num_dependents_deps.dev:0 github.com/luckybet100/protoc-gen-go-utils,num_dependents_deps.dev:0 +github.com/luckybl0ck/github-openvpn-connect-action, github.com/luckybots/tengi, github.com/luckyboys/gobyexample,num_dependents_deps.dev:0 github.com/luckybroman5/nodefed,num_dependents_deps.dev:0 @@ -758948,6 +772803,10 @@ github.com/luddites-me/generator,num_dependents_deps.dev:0 github.com/luddites-me/ts-tools,num_dependents_deps.dev:0 github.com/luddo9p/RafTimeout,num_dependents_deps.dev:0 github.com/luddo9p/delay, +github.com/ludeeus/action-accesscontrol, +github.com/ludeeus/action-eventdata, +github.com/ludeeus/action-push, +github.com/ludeeus/action-shellcheck, github.com/ludeeus/addonupdater, github.com/ludeeus/adguard, github.com/ludeeus/aiogithubapi, @@ -758957,6 +772816,7 @@ github.com/ludeeus/brewdog, github.com/ludeeus/colorlog,num_dependents_deps.dev:0 github.com/ludeeus/custom-component-store, github.com/ludeeus/customjson, +github.com/ludeeus/dockerfile-updater, github.com/ludeeus/furystoolbox, github.com/ludeeus/ghlocalapi, github.com/ludeeus/googledevices, @@ -758977,6 +772837,7 @@ github.com/ludeeus/pyuptimerobot, github.com/ludeeus/queueman, github.com/ludeeus/reporeleaser, github.com/ludeeus/sampleclient, +github.com/ludeeus/setup-homeassistant, github.com/ludei/atomic-plugins-ads,num_dependents_deps.dev:0 github.com/ludei/atomic-plugins-facebook,num_dependents_deps.dev:0 github.com/ludei/atomic-plugins-gamecenter,num_dependents_deps.dev:0 @@ -759213,6 +773074,7 @@ github.com/luffyzc/nativescript-wechat-login-knotes,num_dependents_deps.dev:0 github.com/lufia/graphitemetrictest,num_dependents_deps.dev:0 github.com/lufia/iostat,num_dependents_deps.dev:168 github.com/lufia/plan9stats,num_dependents_deps.dev:0 +github.com/lufia/setup-plan9port, github.com/lufia/zipcode,num_dependents_deps.dev:0 github.com/lufias/LeafletPlayback,num_dependents_deps.dev:0 github.com/lufinkey/BrowserCommand,num_dependents_deps.dev:0 @@ -759336,6 +773198,7 @@ github.com/luigi2p/leetcodelogbylui,num_dependents_deps.dev:0 github.com/luigiandrea/gopearls,num_dependents_deps.dev:0 github.com/luigiaxl/axios-error-class,num_dependents_deps.dev:0 github.com/luigiaxl/visionize-header-light,num_dependents_deps.dev:0 +github.com/luigibertaco/dynamic-template-action, github.com/luigibertaco/leadsf,num_dependents_deps.dev:0 github.com/luigicrs/golang,num_dependents_deps.dev:0 github.com/luigidgt/vizcarracosas,num_dependents_deps.dev:0 @@ -759436,6 +773299,7 @@ github.com/luis-patvillaruz/wired-node-modules,num_dependents_deps.dev:0 github.com/luis-silva/cproxy,num_dependents_deps.dev:0 github.com/luis-zepeda/firebaseHelper, github.com/luis-zepeda/thermodynamics, +github.com/luis12391/action-update-card-merge, github.com/luis5tb/bgp-agent, github.com/luis815/qroria,num_dependents_deps.dev:0 github.com/luisAyuso/rgraph,num_dependents_deps.dev:0 @@ -759531,6 +773395,7 @@ github.com/luisespino/data-structures,num_dependents_deps.dev:0 github.com/luisesteban91/curso_go_api_twiter,num_dependents_deps.dev:0 github.com/luisez1988/FRAKE, github.com/luisf543678/api-with-go-users-data,num_dependents_deps.dev:0 +github.com/luisfalconmx/action-repository-vars, github.com/luisfalconmx/webkit-cli,num_dependents_deps.dev:0 github.com/luisfarzati/angulartics,num_dependents_deps.dev:4 github.com/luisfarzati/express-babelify-middleware,num_dependents_deps.dev:0 @@ -759563,6 +773428,8 @@ github.com/luisferupm/NAM_Adapter,num_dependents_deps.dev:0 github.com/luisflahan4051/matrices,num_dependents_deps.dev:0 github.com/luisflorido/react-native-alert-utils,num_dependents_deps.dev:0 github.com/luisfnicolau/GQLBuilder,num_dependents_deps.dev:0 +github.com/luisfontes19/npm-audit-action, +github.com/luisfontes19/slither-static-analysis-action, github.com/luisfpg/ng-swagger-gen,num_dependents_deps.dev:0 github.com/luisfpinto/ReactNativeLocalization,num_dependents_deps.dev:0 github.com/luisfrocha/vue-hexgrid,num_dependents_deps.dev:0 @@ -759574,9 +773441,13 @@ github.com/luisgasco/REECapi, github.com/luisgbr1el/biomas,num_dependents_deps.dev:0 github.com/luisggc/fconcrete, github.com/luisggc/outlookmail, +github.com/luisgj/monorepo-merge, github.com/luisglopez7777/random-luis-nicknames,num_dependents_deps.dev:0 github.com/luisgomez231997/community,num_dependents_deps.dev:0 github.com/luisgomez29/antpack-go,num_dependents_deps.dev:0 +github.com/luisgreen/amplify_deployment, +github.com/luisgreen/amplify_stop_jobs, +github.com/luisgreen/release-downloader, github.com/luisgs7/golang-get-started,num_dependents_deps.dev:0 github.com/luisgserrano/react-dark-mode,num_dependents_deps.dev:0 github.com/luisguilherme/framboise, @@ -759695,6 +773566,7 @@ github.com/luismsgomes/toolwrapper, github.com/luismsgomes/uctools, github.com/luismsmendonca/apice, github.com/luismsmendonca/fitacola, +github.com/luisnquin/setup-gofumpt, github.com/luisnvf7/ReactNativeComponents,num_dependents_deps.dev:0 github.com/luisolive/nomcad,num_dependents_deps.dev:0 github.com/luisoliveira/heimdall,num_dependents_deps.dev:0 @@ -759750,6 +773622,7 @@ github.com/luisreinoso/ngx-changelog,num_dependents_deps.dev:0 github.com/luisremis/scaling-fiesta, github.com/luisriscado/orglr-maven-parent,num_dependents_deps.dev:0 github.com/luisrivas/react-router-dynamic-breadcrumbs-component,num_dependents_deps.dev:0 +github.com/luisrjaeger/approved-event-checker, github.com/luisrpp/python-simproc-sp, github.com/luisrudge/generator-simple-angular-app,num_dependents_deps.dev:0 github.com/luisrudge/generator-simple-aspnet,num_dependents_deps.dev:0 @@ -759805,6 +773678,8 @@ github.com/luixiao1223/bookshare,num_dependents_deps.dev:0 github.com/luixlacrux/axios-json-mock,num_dependents_deps.dev:0 github.com/luixlacrux/spotify-finder,num_dependents_deps.dev:0 github.com/luixmartins/testing-upload-pip-packages, +github.com/luiyen/llm-code-review, +github.com/luiz-albertoni/action-json-table-format-validation, github.com/luiz-alves-playkids/electron-poc,num_dependents_deps.dev:0 github.com/luiz-araujo/me,num_dependents_deps.dev:0 github.com/luiz-filipe/bb-routemap,num_dependents_deps.dev:0 @@ -759847,6 +773722,7 @@ github.com/luizbills/stats.js.hx,num_dependents_deps.dev:0 github.com/luizbills/string-map.js, github.com/luizbills/vector2d,num_dependents_deps.dev:0 github.com/luizbim/project-provision,num_dependents_deps.dev:0 +github.com/luizbon/delete-preview-packages, github.com/luizbranco/alarm,num_dependents_deps.dev:0 github.com/luizcanet/es-carousel,num_dependents_deps.dev:0 github.com/luizcanet/modnes-data-cotroller,num_dependents_deps.dev:0 @@ -759874,6 +773750,8 @@ github.com/luizeduard0/reax-avatar,num_dependents_deps.dev:0 github.com/luizeduardocardozo/fullcycle-go-grpc-example,num_dependents_deps.dev:0 github.com/luizeqs/html,num_dependents_deps.dev:0 github.com/luizfar/lohengrin,num_dependents_deps.dev:0 +github.com/luizfelipelaviola/get-package-info, +github.com/luizfelipelaviola/parse-plain-dotenv, github.com/luizfelipesalg/dicio,num_dependents_deps.dev:0 github.com/luizfer/feathers-rabbit-consume,num_dependents_deps.dev:0 github.com/luizfer/julian-date,num_dependents_deps.dev:0 @@ -759886,6 +773764,7 @@ github.com/luizfilipezs/dark-theme-switcher,num_dependents_deps.dev:0 github.com/luizfilipezs/easy-coding,num_dependents_deps.dev:0 github.com/luizfilipezs/http-service-ts,num_dependents_deps.dev:0 github.com/luizfilipezs/lets-debug, +github.com/luizfonseca/github-actions-rubocop, github.com/luizfonseca/imagery,num_dependents_deps.dev:0 github.com/luizfsnunes/assis,num_dependents_deps.dev:0 github.com/luizgamabh/acct-cli,num_dependents_deps.dev:0 @@ -759916,6 +773795,8 @@ github.com/luizjr92/bad-server,num_dependents_deps.dev:0 github.com/luizjr92/react-windows-xp,num_dependents_deps.dev:0 github.com/luizjr92/stock-value,num_dependents_deps.dev:0 github.com/luizkowalski/mousetrapjs,num_dependents_deps.dev:0 +github.com/luizm/action-sh-checker, +github.com/luizmiranda7/elixir-pre-steps, github.com/luizotavioautomacao/nt-f4br1c,num_dependents_deps.dev:0 github.com/luizotavioautomacao/nt-fabric,num_dependents_deps.dev:0 github.com/luizotavioautomacao/xlsx-style-correct,num_dependents_deps.dev:0 @@ -759976,6 +773857,7 @@ github.com/lujiannt/ztt-kernel,num_dependents_deps.dev:3 github.com/lujianxiang102233/data-formater-select,num_dependents_deps.dev:0 github.com/lujiatao2/ims-be-dubbo,num_dependents_deps.dev:0 github.com/lujiatao2/testauto, +github.com/lujiaying/FTP-Deploy-Action-Python, github.com/lujinda/gjson,num_dependents_deps.dev:0 github.com/lujinda/gops,num_dependents_deps.dev:0 github.com/lujinda/gore,num_dependents_deps.dev:0 @@ -760011,8 +773893,10 @@ github.com/luk-/npm-error-handler,num_dependents_deps.dev:0 github.com/luk-ai/lukai,num_dependents_deps.dev:0 github.com/luk-f/pyCFOF, github.com/luk-f/pyhaversine, +github.com/luk-schweizer/jest-code-coverage-badge-action, github.com/luk112233/data-model-mapper,num_dependents_deps.dev:0 github.com/luk1790/rDate,num_dependents_deps.dev:0 +github.com/luk3sands/github-action-readme-reddit-meme, github.com/luk3skyw4lker/bit-macros, github.com/luk3skyw4lker/codebank-go,num_dependents_deps.dev:0 github.com/luk3skyw4lker/heatmap-pkg,num_dependents_deps.dev:0 @@ -760046,6 +773930,8 @@ github.com/lukaaash/sftp-ws,num_dependents_deps.dev:2 github.com/lukaaash/vfs,num_dependents_deps.dev:0 github.com/lukabratos/focus-ios,num_dependents_deps.dev:0 github.com/lukabuz/validator,num_dependents_deps.dev:0 +github.com/lukacat10/Flake8, +github.com/lukacat10/create-release, github.com/lukad/brainfuckrb,num_dependents_deps.dev:0 github.com/lukadev-0/discord-interactive,num_dependents_deps.dev:0 github.com/lukadisanto/react-native-secure-storage,num_dependents_deps.dev:0 @@ -760084,6 +773970,7 @@ github.com/lukas-linhart/testutils, github.com/lukas-mertens/bootstrap-waitingfor,num_dependents_deps.dev:0 github.com/lukas-reineke/protractor-xray-reporter,num_dependents_deps.dev:0 github.com/lukas-reineke/protractor-zephyr-reporter,num_dependents_deps.dev:0 +github.com/lukas-ruzicka/testflight-feedback, github.com/lukas-schardt/apostrophe-basic-auth,num_dependents_deps.dev:0 github.com/lukas-smiga/rpi-cui-poc,num_dependents_deps.dev:0 github.com/lukas-tr/vue-transition-collection,num_dependents_deps.dev:0 @@ -760098,11 +773985,14 @@ github.com/lukas2005/fusebase-controlpanel,num_dependents_deps.dev:0 github.com/lukas2005/mcbuilder,num_dependents_deps.dev:0 github.com/lukasPan/jest-reporter-simple-dispatcher, github.com/lukasValentin/OBIA4RTM, +github.com/lukasa1993/android-upload-google-play, +github.com/lukasa1993/android-version-code-update, github.com/lukasa1993/homebridge-sonoff-outlet-tasmota-http,num_dependents_deps.dev:0 github.com/lukasa1993/homebridge-tasmota-http-dimmer,num_dependents_deps.dev:0 github.com/lukasa1993/homebridge-tasmota-http-led-strip,num_dependents_deps.dev:0 github.com/lukasa1993/node-pushnotifications, github.com/lukasa1993/scope-check,num_dependents_deps.dev:0 +github.com/lukasa1993/secret-file-action, github.com/lukasanukvari/pyxcelframe, github.com/lukasanukvari/unfollowery, github.com/lukasaric/jsend-axios,num_dependents_deps.dev:0 @@ -760130,6 +774020,7 @@ github.com/lukasbestle/newdb,num_dependents_deps.dev:0 github.com/lukasbk/ErrorPro, github.com/lukasbraach/convexqr,num_dependents_deps.dev:0 github.com/lukasbuenger/immutable-treeutils,num_dependents_deps.dev:0 +github.com/lukascaska/datadog-actions-metrics, github.com/lukascer/alphabet-calculator,num_dependents_deps.dev:0 github.com/lukascivil/jsondiffer,num_dependents_deps.dev:0 github.com/lukascorona/cra-template-typescript-redux-sauce, @@ -760213,6 +774104,7 @@ github.com/lukasmatta/cbfjs,num_dependents_deps.dev:0 github.com/lukasmoellerch/k3stest,num_dependents_deps.dev:0 github.com/lukasmoellerch/playground-hook,num_dependents_deps.dev:0 github.com/lukasmoellerch/prism-svelte-renderer,num_dependents_deps.dev:0 +github.com/lukasmwerner/prettier_action_java, github.com/lukasniemeier-zalando/log4j2-json-layout,num_dependents_deps.dev:0 github.com/lukasnunesj/lukasnunesj,num_dependents_deps.dev:0 github.com/lukasolson/backbone-super,num_dependents_deps.dev:0 @@ -760422,6 +774314,7 @@ github.com/luke-john/swm-glamor-prefixer,num_dependents_deps.dev:0 github.com/luke-john/swm-grid,num_dependents_deps.dev:0 github.com/luke-jr/bfgminer,criticality_score:0.500970 github.com/luke-lang/luke, +github.com/luke-m/s3-cp-action, github.com/luke-rmaki/eslint-config-rmaki,num_dependents_deps.dev:0 github.com/luke-segars/runner,num_dependents_deps.dev:0 github.com/luke-simth/create-react-app,num_dependents_deps.dev:0 @@ -760430,6 +774323,9 @@ github.com/luke-titley/usd-rs,num_dependents_deps.dev:0 github.com/luke-wilson/basic-react-timepicker,num_dependents_deps.dev:0 github.com/luke-wilson/bootstrap-datetimepicker,num_dependents_deps.dev:0 github.com/luke-wilson/vue-bootstrap-datetimepicker,num_dependents_deps.dev:0 +github.com/luke142367/Docker-Lint-Action, +github.com/luke142367/cpp-evaluation-action, +github.com/luke142367/please-action, github.com/luke14free/bulldog, github.com/luke14free/lucius-ltv, github.com/luke14free/pm-prophet, @@ -760600,6 +774496,7 @@ github.com/lukecampbell/usher, github.com/lukecarr/c9h,num_dependents_deps.dev:0 github.com/lukecarr/fastify-c9h,num_dependents_deps.dev:0 github.com/lukecarr/joodle,num_dependents_deps.dev:0 +github.com/lukecarr/nightly-check, github.com/lukecarr/ollivander,num_dependents_deps.dev:0 github.com/lukecarrier/terraform-provider-merge,num_dependents_deps.dev:0 github.com/lukecavabarrett/python-hydra, @@ -760879,6 +774776,7 @@ github.com/lukegre/fetch-data, github.com/lukegre/pyseaflux, github.com/lukegre/seaflux, github.com/lukegrecki/sudoku-cli, +github.com/lukegriffith/tf-config-docs, github.com/lukehaas/Scrollify,"criticality_score:0.415520,num_dependents_deps.dev:0" github.com/lukehaas/Shapely,num_dependents_deps.dev:0 github.com/lukehansell-hx/grunt-poly-browserify,num_dependents_deps.dev:0 @@ -760888,6 +774786,7 @@ github.com/lukehansell/hova,num_dependents_deps.dev:0 github.com/lukehansell/next-mdx-blog,num_dependents_deps.dev:0 github.com/lukehansell/react-google-ad,num_dependents_deps.dev:0 github.com/lukehansell/react-interactjs,num_dependents_deps.dev:0 +github.com/lukeharback/s3-cloudfront-deploy, github.com/lukehatcher/algo-sorter, github.com/lukeheath/generator-unicorn,num_dependents_deps.dev:0 github.com/lukeheath/machinepack-wepay,num_dependents_deps.dev:0 @@ -760898,8 +774797,13 @@ github.com/lukehedger/slush-bayse,num_dependents_deps.dev:0 github.com/lukehedger/sulk,num_dependents_deps.dev:0 github.com/lukeherczeg/WizardvsWorld, github.com/lukeheuer/ocache,num_dependents_deps.dev:0 +github.com/lukehinds/gh-action-http-post, github.com/lukehinds/gitget,num_dependents_deps.dev:0 +github.com/lukehinds/http-post-action, +github.com/lukehinds/label-pr-size, +github.com/lukehinds/simple-http-action, github.com/lukehinds/testrepo,num_dependents_deps.dev:0 +github.com/lukehinds/workflow-agent, github.com/lukehoban/es6features,criticality_score:0.313410 github.com/lukehoban/pulumi-package-aws-apigateway,num_dependents_deps.dev:0 github.com/lukehorvat/23andme, @@ -760936,6 +774840,7 @@ github.com/lukehsiao/talk-timer,num_dependents_deps.dev:0 github.com/lukehutch/fast-classpath-scanner,num_dependents_deps.dev:2778 github.com/lukeic/lugen,num_dependents_deps.dev:0 github.com/lukejacksonn/Actuate,num_dependents_deps.dev:0 +github.com/lukejacksonn/chattery, github.com/lukejacksonn/es-react,num_dependents_deps.dev:0 github.com/lukejacksonn/fb-sdk,num_dependents_deps.dev:0 github.com/lukejacksonn/gitinit,num_dependents_deps.dev:0 @@ -761011,6 +774916,7 @@ github.com/lukekarrys/surge-teardown-branches,num_dependents_deps.dev:0 github.com/lukekarrys/webtask-require-version,num_dependents_deps.dev:0 github.com/lukekh/SPyQR, github.com/lukekhamilton/goadventures,num_dependents_deps.dev:0 +github.com/lukekortunov/php-composer-install-and-cache, github.com/lukekowalski/humble-grid,num_dependents_deps.dev:0 github.com/lukekrikorian/rigby,num_dependents_deps.dev:0 github.com/lukekroon/ngx-mat-dynamic-table,num_dependents_deps.dev:0 @@ -761090,6 +774996,7 @@ github.com/lukemnet/react-twitch-ext-onauthorized,num_dependents_deps.dev:0 github.com/lukemnet/tridi,num_dependents_deps.dev:0 github.com/lukemnet/twitch-ebs-tools,num_dependents_deps.dev:0 github.com/lukemorales/eslint-config-lukemorales,num_dependents_deps.dev:0 +github.com/lukemorcom/react-deploy-to-s3-action-npm, github.com/lukemorton/gatsby,num_dependents_deps.dev:0 github.com/lukemorton/markedly,num_dependents_deps.dev:0 github.com/lukemorton/upcoming, @@ -761120,6 +775027,7 @@ github.com/lukeparser/lukeparser, github.com/lukeparser/pybison, github.com/lukepatrick/postgraphile-upsert-plugin,num_dependents_deps.dev:0 github.com/lukepighetti/fluro,criticality_score:0.421570 +github.com/lukepistrol/xcodebuild-docc-action, github.com/lukepolo/laracart,criticality_score:0.440920 github.com/lukepolo/vuex-progress,num_dependents_deps.dev:0 github.com/lukepur/data-resolver,num_dependents_deps.dev:4 @@ -761164,6 +775072,7 @@ github.com/lukescott/gulp-ng-templatecache,num_dependents_deps.dev:0 github.com/lukescott/minimatch-capture,num_dependents_deps.dev:32 github.com/lukesh/karma-lifx-reporter,num_dependents_deps.dev:0 github.com/lukeshay/blockchain,num_dependents_deps.dev:0 +github.com/lukeshay/setup-task, github.com/lukeshin/hiturl,num_dependents_deps.dev:0 github.com/lukeshin/job-scrapper,num_dependents_deps.dev:0 github.com/lukeshin/learngo,num_dependents_deps.dev:0 @@ -761246,9 +775155,11 @@ github.com/lukevmorris/nextjs-auth0,num_dependents_deps.dev:0 github.com/lukevp/quill-fire,num_dependents_deps.dev:0 github.com/lukew3/canvasTodoist, github.com/lukew3/ghlog, +github.com/lukew3/json-fill-erb-action, github.com/lukew3/logbook, github.com/lukew3/mathgenerator, github.com/lukew3/ttbot, +github.com/lukew3/validate-json-resume-action, github.com/lukew3/vid2slides, github.com/lukew3/worksheetgen, github.com/lukewaite/logstash-input-cloudwatch-logs,num_dependents_deps.dev:0 @@ -761327,6 +775238,10 @@ github.com/lukix/declarative-canvas,num_dependents_deps.dev:0 github.com/lukix/genemo,num_dependents_deps.dev:0 github.com/lukix/input-reader,num_dependents_deps.dev:0 github.com/lukiya/oauth2go,num_dependents_deps.dev:1 +github.com/lukka/get-cmake, +github.com/lukka/run-cmake, +github.com/lukka/run-vcpkg, +github.com/lukka/set-shell-env, github.com/lukkigi/parqet-to-ynab,num_dependents_deps.dev:0 github.com/lukkystunt/nativescript-mpesa,num_dependents_deps.dev:0 github.com/lukluk/ecommerce-scraper,num_dependents_deps.dev:0 @@ -761410,6 +775325,7 @@ github.com/lulu70/react-hover-animation,num_dependents_deps.dev:0 github.com/lulucas/bui,num_dependents_deps.dev:0 github.com/luludarcy/graphRL, github.com/luludarcy/graphRLnx, +github.com/luludotdev/discord-welcome-action, github.com/lulueller/extract-links-from-md,num_dependents_deps.dev:0 github.com/lulueller/roman-arabic-converter,num_dependents_deps.dev:0 github.com/luluiscute7/wonderwall-stories, @@ -761468,6 +775384,7 @@ github.com/lumavate-team/lumavate-go-common,num_dependents_deps.dev:0 github.com/lumaxis-demo/tranquil-turtle, github.com/lumaxis-test-org/test, github.com/lumaxis/hestfisk, +github.com/lumaxis/shellcheck-problem-matchers, github.com/lumberj/superagent-requestid,num_dependents_deps.dev:0 github.com/lumberj/unicorn-metrics,num_dependents_deps.dev:0 github.com/lumberjack3/catan_source, @@ -761562,6 +775479,7 @@ github.com/luminocean/bilidown,num_dependents_deps.dev:0 github.com/luminoctum/athena-harp, github.com/luminoctum/braintuner, github.com/luminol-io/evermore-installer,num_dependents_deps.dev:0 +github.com/luminos-company/portami, github.com/luminos-software/react-native-auto-stylesheet,num_dependents_deps.dev:0 github.com/luminos-software/react-native-play-sound,num_dependents_deps.dev:0 github.com/luminous-patterns/angular-environment-config,num_dependents_deps.dev:0 @@ -761571,6 +775489,7 @@ github.com/luminrobotics/ros-blessed, github.com/luminrobotics/tfjs, github.com/luminsmart/liquid,num_dependents_deps.dev:0 github.com/luminsmart/opentsdb-goclient,num_dependents_deps.dev:0 +github.com/luminsports/github-action-php-cs-fixer, github.com/luminum-solutions/drf-nested-decorator, github.com/luminuous/ui,num_dependents_deps.dev:0 github.com/luminus-framework/luminus,criticality_score:0.461720 @@ -761607,6 +775526,7 @@ github.com/lumphe/ftp-ts, github.com/lumpy-turnips/minty,num_dependents_deps.dev:0 github.com/lumuy/aoc,num_dependents_deps.dev:0 github.com/lumyjuwon/KoreaNewsCrawler, +github.com/lumynou5/github-release-action, github.com/lun-go/go-athena,num_dependents_deps.dev:0 github.com/luna-cy/go-office,num_dependents_deps.dev:0 github.com/luna-duclos/kubeaudit,num_dependents_deps.dev:0 @@ -761654,6 +775574,8 @@ github.com/lunaris-studios/paradigm,num_dependents_deps.dev:208 github.com/lunarmayor/react-native-open-settings,num_dependents_deps.dev:0 github.com/lunarmodules/LDoc,criticality_score:0.385040 github.com/lunarmodules/Penlight,criticality_score:0.467410 +github.com/lunarmodules/busted, +github.com/lunarmodules/luacheck, github.com/lunarnuts/go-course,num_dependents_deps.dev:0 github.com/lunaroyster/latex-whiteboard,num_dependents_deps.dev:0 github.com/lunaroyster/vue-wikitext,num_dependents_deps.dev:0 @@ -761702,6 +775624,7 @@ github.com/lunatech-labs/scala-slack-client,num_dependents_deps.dev:0 github.com/lunatic-cat/pg_exec_array_params,num_dependents_deps.dev:0 github.com/lunatic-cat/webpacker-remote,num_dependents_deps.dev:0 github.com/lunatic-coding/center-js,num_dependents_deps.dev:0 +github.com/lunatic-fox/eps2img, github.com/lunatic-solutions/as-lunatic,num_dependents_deps.dev:0 github.com/lunaticmonk/great-circle-distance,num_dependents_deps.dev:0 github.com/lunaticmonk/lookns, @@ -761970,6 +775893,7 @@ github.com/luochen1990/rainbow,"criticality_score:0.365300,num_dependents_deps.d github.com/luochen1990/tableau-inspect,num_dependents_deps.dev:0 github.com/luochongfei/auto-release-demo, github.com/luochongfei/goods-attr,num_dependents_deps.dev:0 +github.com/luochongfei/up2qn, github.com/luochuanyuewu/golang123,num_dependents_deps.dev:0 github.com/luocong2016/vant-theme-generator,num_dependents_deps.dev:0 github.com/luodaoyi/hello-wasm,num_dependents_deps.dev:0 @@ -762019,6 +775943,7 @@ github.com/luojinghui/LDialog,num_dependents_deps.dev:0 github.com/luojinghui/launch-app,num_dependents_deps.dev:0 github.com/luojinghui/rn-video-player,num_dependents_deps.dev:0 github.com/luojinxu520/qiniu-mithril,num_dependents_deps.dev:0 +github.com/luojiyin1987/article-webpage-to-markdown-action, github.com/luojunbang/lo-utils,num_dependents_deps.dev:0 github.com/luojunbin/nearly,num_dependents_deps.dev:0 github.com/luojunbin/node-client-upload,num_dependents_deps.dev:0 @@ -762057,12 +775982,14 @@ github.com/luongvanphuc/ng-lazy-image,num_dependents_deps.dev:0 github.com/luongvantuananh/emoji_vietnamese, github.com/luontola/gobbler,num_dependents_deps.dev:0 github.com/luontola/specsy,num_dependents_deps.dev:0 +github.com/luooooob/create-my-awesome, github.com/luoos/lite-gcsfuse-demo,num_dependents_deps.dev:0 github.com/luop90/node-steam-mobile-confirmations,num_dependents_deps.dev:0 github.com/luop90/process-array,num_dependents_deps.dev:0 github.com/luoqi14/lq-component,num_dependents_deps.dev:0 github.com/luoqilei/generator-lql-vue,num_dependents_deps.dev:0 github.com/luoqing/go-framework-learn,num_dependents_deps.dev:0 +github.com/luoqiz/docker-images-latest-version, github.com/luoqpolyvi/xappconfig,num_dependents_deps.dev:0 github.com/luoquanquan/bundle-learn,num_dependents_deps.dev:0 github.com/luoquanquan/react-webuploader,num_dependents_deps.dev:0 @@ -762697,6 +776624,7 @@ github.com/luukdv/parallax-background,num_dependents_deps.dev:0 github.com/luukdv/prlx, github.com/luukdv/react-goo,num_dependents_deps.dev:0 github.com/luukk/pretty-commit,num_dependents_deps.dev:0 +github.com/luukkemp/deployment-status-update, github.com/luukrijnbende/piumino,num_dependents_deps.dev:0 github.com/luukschipperheyn/jspm-package-test,num_dependents_deps.dev:0 github.com/luukuton/rulebook,num_dependents_deps.dev:0 @@ -762714,6 +776642,7 @@ github.com/luv-sic/mobx-mini,num_dependents_deps.dev:0 github.com/luv-sic/relax,num_dependents_deps.dev:0 github.com/luvaas/ip-geolocate,num_dependents_deps.dev:0 github.com/luventa/electron-suites,num_dependents_deps.dev:0 +github.com/luvies/action-yarn-publish, github.com/luvies/cors-proxy,num_dependents_deps.dev:0 github.com/luvies/express-ts-base,num_dependents_deps.dev:0 github.com/luvies/format-list,num_dependents_deps.dev:0 @@ -762811,6 +776740,7 @@ github.com/luxas/deklarative,num_dependents_deps.dev:0 github.com/luxas/deklarative-api-runtime,num_dependents_deps.dev:0 github.com/luxas/ignite,num_dependents_deps.dev:0 github.com/luxas/zapr,num_dependents_deps.dev:0 +github.com/luxass/action-trending, github.com/luxation/go-mongo,num_dependents_deps.dev:0 github.com/luxbe/sledo, github.com/luxbet/ember-cli-llama-table, @@ -763061,6 +776991,7 @@ github.com/luzlab/ajv-formats,num_dependents_deps.dev:0 github.com/luzlab/ajv-formats-draft2019, github.com/luzlab/ejson-extras#v1.0.12, github.com/luzlab/superagent-nock,num_dependents_deps.dev:0 +github.com/luzlab/testrail-createTestrun-action, github.com/luzmcosta/hyper-typist,num_dependents_deps.dev:0 github.com/luzmcosta/on3,num_dependents_deps.dev:0 github.com/luzou0526/autoDiscoverySample,num_dependents_deps.dev:0 @@ -763080,6 +777011,7 @@ github.com/lv-e/encoder-lvcode,num_dependents_deps.dev:0 github.com/lv-e/encoder-lvproject,num_dependents_deps.dev:0 github.com/lv-e/encoder-png,num_dependents_deps.dev:0 github.com/lv-e/lv-cli,num_dependents_deps.dev:0 +github.com/lv-lifeng/eye, github.com/lv10/amazonapi, github.com/lv10/bestbuyapi, github.com/lv10/sqlalchemy-vertica, @@ -763128,6 +777060,7 @@ github.com/lvegerano/ember-sortablejs,num_dependents_deps.dev:0 github.com/lvegerano/getem,num_dependents_deps.dev:0 github.com/lvegerano/hapi-jwt,num_dependents_deps.dev:0 github.com/lvegerano/hapi-sql,num_dependents_deps.dev:0 +github.com/lvegerano/label-required-approvals, github.com/lvelours/payline,num_dependents_deps.dev:0 github.com/lvendrame/askAllQuestions,num_dependents_deps.dev:0 github.com/lvendrame/dev-util,num_dependents_deps.dev:0 @@ -763169,6 +777102,7 @@ github.com/lvidarte/dotenv-yaml,num_dependents_deps.dev:0 github.com/lvidarte/node-reverse-wstunnel,num_dependents_deps.dev:0 github.com/lvieirajr/mongorest, github.com/lviggiano/owner,"criticality_score:0.450700,num_dependents_deps.dev:372" +github.com/lvignoli/typst-action, github.com/lvikng56/deepgrampy, github.com/lvillani/ansible-tools, github.com/lvillani/borg-hive,num_dependents_deps.dev:0 @@ -763312,6 +777246,7 @@ github.com/lvxunDev/yunhetong-sdk-java,num_dependents_deps.dev:0 github.com/lvyahui8/feego-common,num_dependents_deps.dev:26 github.com/lvyahui8/spring-boot-data-aggregator,num_dependents_deps.dev:41 github.com/lvyanyang/xci-framework,num_dependents_deps.dev:2 +github.com/lvyingde51/rain-test-hello-world-docker-action, github.com/lvyuang/ekuaibao-website.yaml-generator,num_dependents_deps.dev:0 github.com/lvyuang/lerna-repo,num_dependents_deps.dev:0 github.com/lvyuang/lvquan-npm-test,num_dependents_deps.dev:0 @@ -763333,6 +777268,7 @@ github.com/lvyue/picture-dimension,num_dependents_deps.dev:0 github.com/lvyue/typescript-boilerplate,num_dependents_deps.dev:0 github.com/lvyueyang/vue-picker,num_dependents_deps.dev:0 github.com/lvyueyang/vue-pop,num_dependents_deps.dev:0 +github.com/lvyufeng/action-kaggle-gpu-test, github.com/lvyulong/common-css,num_dependents_deps.dev:0 github.com/lvyulong/vue-axios-resource,num_dependents_deps.dev:0 github.com/lvyulong/vue-routes-design,num_dependents_deps.dev:0 @@ -763425,6 +777361,7 @@ github.com/lwansbrough/react-native-google-analytics,num_dependents_deps.dev:0 github.com/lwansbrough/react-native-markdown,num_dependents_deps.dev:0 github.com/lwansbrough/react-native-multipeer,num_dependents_deps.dev:0 github.com/lwansbrough/react-native-progress-bar,num_dependents_deps.dev:0 +github.com/lwasyl/ftl-tests-results-action, github.com/lwazevedo/amazing-time-picker,num_dependents_deps.dev:0 github.com/lwbco/django-influxdb-tagged-metrics, github.com/lwbjing/tmdjs, @@ -763503,7 +777440,9 @@ github.com/lwh9346/minecraftautoupdaterv2,num_dependents_deps.dev:0 github.com/lwhite1/tablesaw,num_dependents_deps.dev:1 github.com/lwhiteley/AngularLogExtender,num_dependents_deps.dev:0 github.com/lwhiteley/cc,num_dependents_deps.dev:0 +github.com/lwhiteley/commit-environment, github.com/lwhiteley/country-states,num_dependents_deps.dev:0 +github.com/lwhiteley/dependent-jobs-result-check, github.com/lwhiteley/eslint-output,num_dependents_deps.dev:0 github.com/lwhiteley/feathers-alive-ready,num_dependents_deps.dev:0 github.com/lwhiteley/feathers-lowdb,num_dependents_deps.dev:0 @@ -763515,6 +777454,7 @@ github.com/lwhiteley/gravatar-api,num_dependents_deps.dev:0 github.com/lwhiteley/init-env,num_dependents_deps.dev:0 github.com/lwhiteley/itypeof,num_dependents_deps.dev:6 github.com/lwhiteley/magnet-to-torrent,num_dependents_deps.dev:0 +github.com/lwhiteley/match-comment-phrase-action, github.com/lwhiteley/mongoose-blob-store,num_dependents_deps.dev:0 github.com/lwhiteley/node-encapsulation,num_dependents_deps.dev:0 github.com/lwhiteley/node-snipcart-api,num_dependents_deps.dev:0 @@ -763526,6 +777466,8 @@ github.com/lwhiteley/react-native-foursquare-api,num_dependents_deps.dev:0 github.com/lwhiteley/react-native-gravatar,num_dependents_deps.dev:0 github.com/lwhiteley/react-push-menu,num_dependents_deps.dev:0 github.com/lwhiteley/remarkable-codegroup,num_dependents_deps.dev:0 +github.com/lwhiteley/slack-merge-queue, +github.com/lwille/action-zeebe-deploy, github.com/lwille/node-gphoto2,"criticality_score:0.320310,num_dependents_deps.dev:0" github.com/lwindolf/liferea,criticality_score:0.544070 github.com/lwinmoehein/go-basic,num_dependents_deps.dev:0 @@ -763557,6 +777499,11 @@ github.com/lwmqn/util,num_dependents_deps.dev:0 github.com/lwneal/imutil, github.com/lwngt/firebase-idtoken-getter,num_dependents_deps.dev:0 github.com/lwnmengjing/aescbc,num_dependents_deps.dev:0 +github.com/lwnmengjing/aws-ecr-create, +github.com/lwnmengjing/dep-gradle-monorepo, +github.com/lwnmengjing/deploy-to-istio, +github.com/lwnmengjing/eks-istio-action, +github.com/lwnmengjing/endpoint-discover, github.com/lwoerdeman/typescript-angular-ynab,num_dependents_deps.dev:0 github.com/lwoggardner/empathy,num_dependents_deps.dev:0 github.com/lwoggardner/rfuse,num_dependents_deps.dev:30 @@ -763565,6 +777512,8 @@ github.com/lwoggardner/zkruby,num_dependents_deps.dev:0 github.com/lwoites/picklejs,num_dependents_deps.dev:0 github.com/lwoites/picklify, github.com/lwojciechowski/callbag-websocket,num_dependents_deps.dev:0 +github.com/lwojcik/github-action-deploy-static-site, +github.com/lwojcik/github-action-feed-to-social-media, github.com/lwolf/kube-cleanup-operator,criticality_score:0.399750 github.com/lwoodson/redisqs,num_dependents_deps.dev:0 github.com/lwoodson/serverless-s3obj, @@ -763720,6 +777669,7 @@ github.com/lxfriday/size-transformer,num_dependents_deps.dev:0 github.com/lxfriday/smooth-scroll-to,num_dependents_deps.dev:0 github.com/lxfu/antF,num_dependents_deps.dev:0 github.com/lxfu/signature-canvas,num_dependents_deps.dev:0 +github.com/lxfu1/surge-preview, github.com/lxg/l10n,num_dependents_deps.dev:0 github.com/lxg/l10n-cldr,num_dependents_deps.dev:0 github.com/lxg/l10n-tools,num_dependents_deps.dev:0 @@ -763898,11 +777848,13 @@ github.com/lxzh/secrash,num_dependents_deps.dev:0 github.com/lxzhu/annie-node-utils,num_dependents_deps.dev:0 github.com/lxzhu/annie-node-webapp-user,num_dependents_deps.dev:0 github.com/lxzhu/smash,num_dependents_deps.dev:0 +github.com/lxzxl/bark-action, github.com/lxzxl/generator-vue-ts,num_dependents_deps.dev:0 github.com/lxzxl/koa-i18next-detector,num_dependents_deps.dev:2 github.com/lxzxl/koa-i18next-middleware,num_dependents_deps.dev:0 github.com/lxzxl/react-bulma-notification,num_dependents_deps.dev:0 github.com/lxzxl/react-native-signature-panel,num_dependents_deps.dev:0 +github.com/lxzxl/wxpusher-action, github.com/lxzy-yun/react-scale-box,num_dependents_deps.dev:0 github.com/ly-android/react-native-imagebutton, github.com/ly-components/generator-lingyu-react-component, @@ -764054,6 +778006,7 @@ github.com/lyceum28nsk/ev3robot,num_dependents_deps.dev:0 github.com/lych77/evon,num_dependents_deps.dev:0 github.com/lychee-eng/parenchyma,num_dependents_deps.dev:0 github.com/lycheeverse/lychee,num_dependents_deps.dev:0 +github.com/lycheeverse/lychee-action, github.com/lycheng/golang-challenge,num_dependents_deps.dev:0 github.com/lychyi/github-compare-changelog-generator,num_dependents_deps.dev:0 github.com/lycis/crirm, @@ -764144,6 +778097,7 @@ github.com/lydell/tiny-decoders,num_dependents_deps.dev:0 github.com/lydell/urix,num_dependents_deps.dev:241874 github.com/lydell/vim-like-key-notation,num_dependents_deps.dev:0 github.com/lydell/yaba,num_dependents_deps.dev:0 +github.com/lydemann/mergequeue-labeler, github.com/lyderic/tools,num_dependents_deps.dev:0 github.com/lydev/elBucket,num_dependents_deps.dev:0 github.com/lydia07/mdsearch, @@ -764292,6 +778246,8 @@ github.com/lyj289/BaiduMapLib,num_dependents_deps.dev:0 github.com/lyjia/zog,num_dependents_deps.dev:0 github.com/lyka3156/lyk-gulp-pages,num_dependents_deps.dev:0 github.com/lykahb/neotools, +github.com/lykahb/paths-filter, +github.com/lykahb/pr-comment-changes-breakdown, github.com/lyken17/mxbox, github.com/lykenware/flashback,num_dependents_deps.dev:0 github.com/lykenware/gll,num_dependents_deps.dev:0 @@ -764395,6 +778351,8 @@ github.com/lyleg/snappyshot, github.com/lylejohnson/fxruby,num_dependents_deps.dev:0 github.com/lylek/json-patterns-ruby,num_dependents_deps.dev:0 github.com/lyleluo/servicecomputing,num_dependents_deps.dev:0 +github.com/lyleokoth/github-action-template, +github.com/lyleokoth/pytest-coverage-ytest, github.com/lyleshaw/python-wechaty-puppet-itchat, github.com/lylex/buntdb,num_dependents_deps.dev:0 github.com/lylex/jaeger,num_dependents_deps.dev:0 @@ -764617,6 +778575,9 @@ github.com/lyptt/rusty-pipe,num_dependents_deps.dev:0 github.com/lyptt/struct,num_dependents_deps.dev:0 github.com/lyptt/xcodegen,num_dependents_deps.dev:0 github.com/lyqeyes/socket.io-custom-parser,num_dependents_deps.dev:0 +github.com/lyqht/article-badge-counter-workflow, +github.com/lyqht/deepl-translate-github-action, +github.com/lyqht/generate-supabase-db-types-github-action, github.com/lyquocphong/animation_bar,num_dependents_deps.dev:0 github.com/lyr-2000/goutil,num_dependents_deps.dev:0 github.com/lyr-7d1h/terraform-provider-k3s,num_dependents_deps.dev:0 @@ -764770,6 +778731,7 @@ github.com/lyttonlee/vue-qn-md-editorvue,num_dependents_deps.dev:0 github.com/lytup/atmosphere-js,num_dependents_deps.dev:0 github.com/lytup/cli,num_dependents_deps.dev:0 github.com/lytup/lytup-cli, +github.com/lyubick/action-YAML-schema-validator, github.com/lyubo-slavilov/drawdown-bake,num_dependents_deps.dev:0 github.com/lyubo-slavilov/drawdown-parser,num_dependents_deps.dev:0 github.com/lyubo-slavilov/drawdown-svg-render,num_dependents_deps.dev:0 @@ -764809,6 +778771,7 @@ github.com/lyutkin/dimmer,num_dependents_deps.dev:0 github.com/lyutkin/formey,num_dependents_deps.dev:0 github.com/lyutkin/turbo-scss,num_dependents_deps.dev:0 github.com/lyuts/vim-rtags,criticality_score:0.308360 +github.com/lyuwen/build-latex-action, github.com/lyuzashi/serverless-plugin-build-create-react-app,num_dependents_deps.dev:0 github.com/lyvly-living/eslint-config-lyvly,num_dependents_deps.dev:0 github.com/lyvly-living/mock-mongo,num_dependents_deps.dev:0 @@ -764853,8 +778816,11 @@ github.com/lyz-code/yamlfix, github.com/lyz1948/nutjs,num_dependents_deps.dev:0 github.com/lyz1948/ynuts,num_dependents_deps.dev:0 github.com/lyz1991/GestureLock,num_dependents_deps.dev:0 +github.com/lyzcoote/telegram-action, github.com/lyzerk/fabric-history,num_dependents_deps.dev:0 github.com/lyzh945/lazyvpn, +github.com/lyzhang1999/action-electron-builder, +github.com/lyzhang1999/npm-publish, github.com/lyzhelloworld/go-logger,num_dependents_deps.dev:0 github.com/lyzhelloworld/qq-robot,num_dependents_deps.dev:0 github.com/lyzidiamond/help-scout-assignees,num_dependents_deps.dev:0 @@ -765400,6 +779366,9 @@ github.com/m-r-r/GET.js,num_dependents_deps.dev:0 github.com/m-r-r/atcrashes, github.com/m-r-r/helianto,num_dependents_deps.dev:0 github.com/m-r-r/stdio_logger,num_dependents_deps.dev:0 +github.com/m-radmacher/That-Changed, +github.com/m-radmacher/nupkg-doctor, +github.com/m-radmacher/osiris, github.com/m-radzikowski/aws-sdk-client-mock,num_dependents_deps.dev:0 github.com/m-radzikowski/omnigraffle-stencil, github.com/m-ramp/async-key-mutex,num_dependents_deps.dev:0 @@ -765410,6 +779379,7 @@ github.com/m-rinaldi/local_vec,num_dependents_deps.dev:0 github.com/m-rinaldi/maze_gen,num_dependents_deps.dev:0 github.com/m-rinaldi/random_variable,num_dependents_deps.dev:0 github.com/m-rinaldi/small_vec,num_dependents_deps.dev:0 +github.com/m-ringler/get-xpath, github.com/m-ripper/vuex-multi-history#readme, github.com/m-rom/message-bus-async,num_dependents_deps.dev:0 github.com/m-rossi/hdf5widget, @@ -765493,6 +779463,7 @@ github.com/m-zajac/json2go,num_dependents_deps.dev:0 github.com/m-zayan/fdir, github.com/m00ga/typecheck, github.com/m00nk/js-file-uploader,num_dependents_deps.dev:0 +github.com/m00nl1ght-dev/steam-workshop-deploy, github.com/m00nst3r/react-infinite-dropdown,num_dependents_deps.dev:0 github.com/m00nst3r/tree-methods,num_dependents_deps.dev:0 github.com/m00p1ng/macos-battery-level,num_dependents_deps.dev:0 @@ -765585,6 +779556,7 @@ github.com/m0ppers/wuerfler,num_dependents_deps.dev:0 github.com/m0r0zzz/msikeyboard, github.com/m0rand/project,num_dependents_deps.dev:0 github.com/m0ren/httpao,num_dependents_deps.dev:0 +github.com/m0rff/action-reviewdog-phpstan, github.com/m0rg0t/js-url-downloader,num_dependents_deps.dev:0 github.com/m0rgan01/go-sand-box,num_dependents_deps.dev:0 github.com/m0rjc/CdiSettingsTool,num_dependents_deps.dev:0 @@ -765603,6 +779575,7 @@ github.com/m0t0k1ch1/metamask-login-sample,num_dependents_deps.dev:0 github.com/m0t0k1ch1/slackbot,num_dependents_deps.dev:0 github.com/m0thm4n/peer-to-peer,num_dependents_deps.dev:0 github.com/m0thm4n/spotify-bot,num_dependents_deps.dev:0 +github.com/m0un10/setup-tofu, github.com/m0ush/rps,num_dependents_deps.dev:0 github.com/m0v0nage/ngx-swiper,num_dependents_deps.dev:0 github.com/m0x72/gulp-vows,num_dependents_deps.dev:0 @@ -765672,6 +779645,7 @@ github.com/m18ru/ts-fs,num_dependents_deps.dev:0 github.com/m18ru/ts-pfy,num_dependents_deps.dev:8 github.com/m18ru/tslint-config-m18,num_dependents_deps.dev:0 github.com/m1911star/sdk-sa-node,num_dependents_deps.dev:0 +github.com/m19c/action-lerna, github.com/m19c/type-cfg,num_dependents_deps.dev:0 github.com/m19t12/bendercoder, github.com/m19t12/bottle-sitemap, @@ -765691,6 +779665,8 @@ github.com/m1dsummer/whitedew-pixiv-plugin,num_dependents_deps.dev:0 github.com/m1dugh/crawler,num_dependents_deps.dev:0 github.com/m1el/better-cmp,num_dependents_deps.dev:0 github.com/m1entus/MZFormSheetPresentationController,criticality_score:0.324870 +github.com/m1ga/titanium-android-build, +github.com/m1ga/titanium-install, github.com/m1ghtfr3e/ANF-Feed-Reader, github.com/m1ghtfr3e/RiseupMail, github.com/m1ghtfr3e/SearchSort, @@ -765701,6 +779677,7 @@ github.com/m1ghtfr3e/tarpy, github.com/m1gnus/RSArmageddon, github.com/m1griffin/arrayfunc, github.com/m1griffin/bytesfunc, +github.com/m1guelpf/action-new-deployment, github.com/m1guelpf/npm-card,num_dependents_deps.dev:0 github.com/m1guelpf/passport-makerlog-oauth2,num_dependents_deps.dev:0 github.com/m1guelpf/ray-js,num_dependents_deps.dev:0 @@ -765721,6 +779698,7 @@ github.com/m1lt0n/dead_simple_authorization,num_dependents_deps.dev:0 github.com/m1m0r1/galgo, github.com/m1m1nx/eslint-config-clp,num_dependents_deps.dev:0 github.com/m1m3-50/shiny_cli_utils,num_dependents_deps.dev:0 +github.com/m1ner79/Github-Twittction, github.com/m1neska/bf-go,num_dependents_deps.dev:0 github.com/m1noon/vault-ethereum,num_dependents_deps.dev:0 github.com/m1ome/buffalo,num_dependents_deps.dev:0 @@ -765784,6 +779762,7 @@ github.com/m2dsupsdlclass/lectures-labs,criticality_score:0.298670 github.com/m2f/firebaseui-web,num_dependents_deps.dev:0 github.com/m2fw/generator-m2fw, github.com/m2fw/m2fw, +github.com/m2ga-azure/prepackaged-jenkinsfile-runner, github.com/m2git/domainjs,num_dependents_deps.dev:0 github.com/m2infsys/mbmd-forms,num_dependents_deps.dev:0 github.com/m2lab/snowpack-plugin-relative-css-urls,num_dependents_deps.dev:0 @@ -765864,6 +779843,8 @@ github.com/m3hm3t/go-retry-library,num_dependents_deps.dev:0 github.com/m3kka/gulp-babelcache,num_dependents_deps.dev:0 github.com/m3m12g/goardanfinal,num_dependents_deps.dev:0 github.com/m3ng9i/ran,num_dependents_deps.dev:0 +github.com/m3ntorship/action-dockerhub-cleanup, +github.com/m3ntorship/deploy-action, github.com/m3ntorship/posts-client,num_dependents_deps.dev:0 github.com/m3nu/upodder, github.com/m3o/distributed-api,num_dependents_deps.dev:0 @@ -765883,6 +779864,8 @@ github.com/m3talstorm/ymi.js,num_dependents_deps.dev:0 github.com/m3tior/pyside2-style-test, github.com/m3tler/learning-git,num_dependents_deps.dev:0 github.com/m3ttiw/orange_cb_recsys, +github.com/m3y/random-wait-action, +github.com/m3y/rust-just-action, github.com/m3yevn/apprag,num_dependents_deps.dev:0 github.com/m3yevn/react-xper-ui,num_dependents_deps.dev:0 github.com/m41na/webjar-archetype,num_dependents_deps.dev:0 @@ -765956,6 +779939,7 @@ github.com/m4n3z40/react-slicker,num_dependents_deps.dev:0 github.com/m4ns0ur/covid,num_dependents_deps.dev:0 github.com/m4ns0ur/ray-tracing,num_dependents_deps.dev:0 github.com/m4ntis/oxynth,num_dependents_deps.dev:0 +github.com/m4nu56/postgresql-action, github.com/m4nuC/async-busboy,num_dependents_deps.dev:66 github.com/m4nuC/parse-this,num_dependents_deps.dev:0 github.com/m4nuC/reactive-form,num_dependents_deps.dev:0 @@ -765982,6 +779966,8 @@ github.com/m4rw3r/chomp,num_dependents_deps.dev:14 github.com/m4rw3r/crustate,num_dependents_deps.dev:0 github.com/m4rw3r/debugtrace_rs,num_dependents_deps.dev:18 github.com/m4rx9/mmfinder, +github.com/m4s-b3n/terraform-all-in-one, +github.com/m4s-b3n/tflint-all-in-one, github.com/m4s0/tickets,num_dependents_deps.dev:0 github.com/m4ss1m0g/mediatr-ts,num_dependents_deps.dev:0 github.com/m4theushw/ra-order-buttons,num_dependents_deps.dev:0 @@ -766006,6 +779992,7 @@ github.com/m4xg4rc1a/goprogram_init,num_dependents_deps.dev:0 github.com/m4xp1/SwipePicker,num_dependents_deps.dev:0 github.com/m4yers/crutch, github.com/m4yers/iterm-theme-generator, +github.com/m50/setup-sfdx-action, github.com/m50d/paperdoll,num_dependents_deps.dev:38 github.com/m50d/plus-minus-zero,num_dependents_deps.dev:0 github.com/m50d/tierney,num_dependents_deps.dev:0 @@ -766203,6 +780190,7 @@ github.com/m9s/xmc1000,num_dependents_deps.dev:0 github.com/mAAdhaTTah/bookshelf-bind-all,num_dependents_deps.dev:0 github.com/mAAdhaTTah/brookjs,num_dependents_deps.dev:0 github.com/mAAdhaTTah/chai-kefir,num_dependents_deps.dev:0 +github.com/mAAdhaTTah/combine-dependabot-prs, github.com/mAAdhaTTah/pipe-dom, github.com/mAAdhaTTah/react-testing-kit,num_dependents_deps.dev:0 github.com/mAAdhaTTah/wordpress-github-sync,criticality_score:0.355960 @@ -766393,6 +780381,7 @@ github.com/maT7ew/TaStyTabs,num_dependents_deps.dev:0 github.com/maYunLaoXi/dan-cli, github.com/maYunLaoXi/f-com,num_dependents_deps.dev:0 github.com/maYunLaoXi/yung,num_dependents_deps.dev:0 +github.com/maZahaca/bday-action, github.com/maa105/global-tunnel,num_dependents_deps.dev:0 github.com/maa105/node-http-ntlm,num_dependents_deps.dev:40 github.com/maa105/node-slowloris, @@ -766430,12 +780419,15 @@ github.com/maackle/scuttle-playbook,num_dependents_deps.dev:0 github.com/maacpiash/spongemockify,num_dependents_deps.dev:0 github.com/maacpiash/vardict,num_dependents_deps.dev:0 github.com/maads/ember-cli-md5,num_dependents_deps.dev:0 +github.com/maael/confirm-checks-action, github.com/maael/electron-jade-protocol,num_dependents_deps.dev:0 github.com/maael/html-chain,num_dependents_deps.dev:0 github.com/maael/node-ann,num_dependents_deps.dev:0 github.com/maael/node-data-preprocessing,num_dependents_deps.dev:0 github.com/maael/reading-estimate,num_dependents_deps.dev:0 +github.com/maael/slack-deploy-message-action, github.com/maael/slug-title,num_dependents_deps.dev:0 +github.com/maael/template-repository-usage-action, github.com/maael/validity-float,num_dependents_deps.dev:0 github.com/maael/validity-number,num_dependents_deps.dev:0 github.com/maael/word-frequency,num_dependents_deps.dev:0 @@ -766480,8 +780472,16 @@ github.com/maargenton/fileutil,num_dependents_deps.dev:0 github.com/maargenton/go-errors,num_dependents_deps.dev:0 github.com/maargenton/go-testpredicate,num_dependents_deps.dev:0 github.com/maariaantonina/id-generator,num_dependents_deps.dev:0 +github.com/maaroen/buildkit-build-push-action, github.com/maarsej/rockitman,num_dependents_deps.dev:0 github.com/maarteNNNN/cli-builder,num_dependents_deps.dev:0 +github.com/maarten-boot/gh-action-rl-scanner-composite-dev, +github.com/maarten-boot/gh-action-rl-scanner-only-dev, +github.com/maarten-boot/gh-action-rl-scanner-simple-test, +github.com/maarten-boot/rl-scanner-action, +github.com/maarten-boot/rl-scanner-docker-action, +github.com/maarten-boot/test-gh-action-rl-scanner-cloud-composite-dev, +github.com/maarten-boot/test-gh-action-rl-scanner-cloud-only-dev, github.com/maarten-dp/arcade-curtains, github.com/maarten-dp/cereal-lazer, github.com/maarten-dp/fast-alchemy, @@ -766550,6 +780550,7 @@ github.com/maateusilva/heimdall-js,num_dependents_deps.dev:0 github.com/maateusilva/hmac-js,num_dependents_deps.dev:0 github.com/maatheusgouveia/datasmart-utils, github.com/maatheusgouveia/dsutils,num_dependents_deps.dev:0 +github.com/maathor/driftctl-newrelic-action, github.com/maathor/terraform-new-relic-event-action,num_dependents_deps.dev:0 github.com/maawz/crud,num_dependents_deps.dev:0 github.com/maaxg/rn-glitch-effect,num_dependents_deps.dev:0 @@ -766618,6 +780619,8 @@ github.com/mabiloft/sequelastic,num_dependents_deps.dev:0 github.com/mablay/allrun,num_dependents_deps.dev:0 github.com/mablay/readahead, github.com/mableteam/makeplans,num_dependents_deps.dev:0 +github.com/mablhq/github-run-tests-action, +github.com/mablhq/setup-mabl-cli, github.com/mablin7/preact-gestures,num_dependents_deps.dev:0 github.com/mablin7/yeoman-test-helpers,num_dependents_deps.dev:0 github.com/mably/lnd,num_dependents_deps.dev:0 @@ -766625,6 +780628,7 @@ github.com/mabmab159/random-messages-mabmab159,num_dependents_deps.dev:0 github.com/maboelnour/bodytrace,num_dependents_deps.dev:0 github.com/maboesanman/cargo-llvm-codecov-converter,num_dependents_deps.dev:0 github.com/maboesanman/cozal,num_dependents_deps.dev:0 +github.com/maboesanman/rust-codecov, github.com/maboesanman/source-map-url-cli,num_dependents_deps.dev:0 github.com/maboiteaspam/cline-parser, github.com/maboiteaspam/cluc,num_dependents_deps.dev:0 @@ -766815,12 +780819,14 @@ github.com/macarro/imputena, github.com/macarthuror/parse-smtp-template,num_dependents_deps.dev:0 github.com/macarthy/heka,num_dependents_deps.dev:0 github.com/macat/gobble-rename,num_dependents_deps.dev:0 +github.com/macauley/action-homebrew-bump-cask, github.com/macaullyjamesmuir/chainable-keyword,num_dependents_deps.dev:0 github.com/macaullyjamesmuir/mapping,num_dependents_deps.dev:0 github.com/macaw-email/macaw,num_dependents_deps.dev:6 github.com/macaw-interactive/umbrella-for-sitecore-jss,num_dependents_deps.dev:0 github.com/macb/consul-template,num_dependents_deps.dev:0 github.com/macbre/3pc,num_dependents_deps.dev:0 +github.com/macbre/actions-index-digest, github.com/macbre/analyze-css,"criticality_score:0.409260,num_dependents_deps.dev:74" github.com/macbre/elasticsearch-query, github.com/macbre/index-digest, @@ -766832,6 +780838,7 @@ github.com/macbre/optimist-config-file,num_dependents_deps.dev:26 github.com/macbre/phantomas,"criticality_score:0.524320,num_dependents_deps.dev:28" github.com/macbre/phantomas-python, github.com/macbre/phantomas-reporter-elasticsearch,num_dependents_deps.dev:0 +github.com/macbre/push-to-ghcr, github.com/macbre/sql-metadata, github.com/macbre/tap-eater,num_dependents_deps.dev:18 github.com/macbre/tap-producer,num_dependents_deps.dev:30 @@ -767093,7 +781100,15 @@ github.com/machine-drivers/docker-machine-driver-xhyve,criticality_score:0.35122 github.com/machine-drivers/machine,num_dependents_deps.dev:0 github.com/machine-lang/greeting,num_dependents_deps.dev:0 github.com/machine-learning-apps/Issue-Label-Bot,criticality_score:0.331500 +github.com/machine-learning-apps/actions-app-token, +github.com/machine-learning-apps/actions-argo, +github.com/machine-learning-apps/actions-chatops, +github.com/machine-learning-apps/gke-argo, +github.com/machine-learning-apps/gke-kubeconfig, +github.com/machine-learning-apps/gpr-docker-publish, github.com/machine-learning-apps/mdparse, +github.com/machine-learning-apps/pr-comment, +github.com/machine-learning-apps/wandb-action, github.com/machine-learning-tools/keras-grid-search-cacheable, github.com/machine-rally-developers/sidedoc,num_dependents_deps.dev:0 github.com/machine-report/goth,num_dependents_deps.dev:0 @@ -767211,7 +781226,9 @@ github.com/machty/emblem.js,"criticality_score:0.339830,num_dependents_deps.dev: github.com/machuanjia/timma-flex,num_dependents_deps.dev:0 github.com/machuga/keep-trying,num_dependents_deps.dev:0 github.com/machulav/cloudwatch-to-slack-sender, +github.com/machulav/ec2-github-runner, github.com/machvee/anear-js-api,num_dependents_deps.dev:0 +github.com/machycek/wait-for-vercel-preview, github.com/machyve/xhyve,criticality_score:0.386870 github.com/machzqcq/logstash-output-solr_post,num_dependents_deps.dev:0 github.com/machzqcq/saucelabs,num_dependents_deps.dev:0 @@ -767224,6 +781241,7 @@ github.com/maciej-gurban/responsive-bootstrap-toolkit,num_dependents_deps.dev:0 github.com/maciej-ka/array-tap,num_dependents_deps.dev:0 github.com/maciej-poleski/sr,num_dependents_deps.dev:0 github.com/maciej-sz/jp-freeze,num_dependents_deps.dev:0 +github.com/maciej-zieniewicz/service-composite-action, github.com/maciej/bitset,num_dependents_deps.dev:0 github.com/maciej/csvutil,num_dependents_deps.dev:0 github.com/maciejbudzyn/syslog-py, @@ -767432,6 +781450,8 @@ github.com/mackyson/reactpractice,num_dependents_deps.dev:0 github.com/maclachm/geojsonValidator,num_dependents_deps.dev:0 github.com/maclandrol/FisherExact, github.com/maclandrol/smexplainer, +github.com/maclarel/actions-set-secret, +github.com/maclarel/github-actions-delete-abandoned-branches, github.com/macleanpinto/yahoo-finance,num_dependents_deps.dev:0 github.com/maclema/rtlamr,num_dependents_deps.dev:0 github.com/maclennann/hubot-chartroom,num_dependents_deps.dev:0 @@ -767449,6 +781469,7 @@ github.com/maclover7/switchpoint,num_dependents_deps.dev:0 github.com/maclover7/wmata,num_dependents_deps.dev:0 github.com/maclovin/go-games,num_dependents_deps.dev:0 github.com/maclun/node-sass, +github.com/macmade/action-xcodebuild, github.com/macmagic/api-rest-with-go,num_dependents_deps.dev:0 github.com/macmarico/react-native-star-rating-bar-graph, github.com/macmcclain/stitch-cli,num_dependents_deps.dev:0 @@ -767464,6 +781485,7 @@ github.com/macmotp/sirius,num_dependents_deps.dev:0 github.com/macmowl/CLI-nager,num_dependents_deps.dev:0 github.com/macmowl/npx-card,num_dependents_deps.dev:0 github.com/macneib/livedb-rethink,num_dependents_deps.dev:0 +github.com/macnev2013/manual-approval, github.com/macnibblet/node-dota2,num_dependents_deps.dev:0 github.com/macnie/quill-image-extend-module,num_dependents_deps.dev:0 github.com/macno/packtag,num_dependents_deps.dev:0 @@ -767553,6 +781575,7 @@ github.com/macprog-guy/mserv-validate,num_dependents_deps.dev:0 github.com/macprog-guy/recase-keys,num_dependents_deps.dev:0 github.com/macprog-guy/subcast,num_dependents_deps.dev:0 github.com/macprog-guy/yzal,num_dependents_deps.dev:0 +github.com/macqueenism/required-task-checker-action, github.com/macrael/pullyou, github.com/macrael/webnull, github.com/macrat/AsyncMark,num_dependents_deps.dev:0 @@ -767627,6 +781650,8 @@ github.com/macshi/generatephonenumber,num_dependents_deps.dev:0 github.com/macsim1982/scroll-ios,num_dependents_deps.dev:0 github.com/macsko/todolist,num_dependents_deps.dev:0 github.com/macsnoeren/python-p2p-network, +github.com/macstadium/orka-actions-down, +github.com/macstadium/orka-actions-up, github.com/macstadium/packer-plugin-macstadium-orka,num_dependents_deps.dev:0 github.com/macstr1k3r/http-request-methods, github.com/macthecadillac/atree,num_dependents_deps.dev:0 @@ -767722,6 +781747,7 @@ github.com/mad-skull/EasyDSA, github.com/mad-tinkerer/python-rdm6300, github.com/mad48/flipping-cards,num_dependents_deps.dev:0 github.com/mad48/react-flipping-cards,num_dependents_deps.dev:0 +github.com/mad9000/actions-find-and-replace-string, github.com/madTeddy/sphinxsharp, github.com/madTeddy/sphinxsharp-pro, github.com/mada4586/create-react-app,num_dependents_deps.dev:0 @@ -767908,6 +781934,7 @@ github.com/maddumajohnerick/cheers-alert,num_dependents_deps.dev:0 github.com/maddumajohnerick/emote-icons,num_dependents_deps.dev:0 github.com/maddumajohnerick/st-components,num_dependents_deps.dev:0 github.com/maddy2get/express-brute-sequelize,num_dependents_deps.dev:0 +github.com/maddygoround/secretduty, github.com/maddygoround/superauth, github.com/maddymakesgames/slashy,num_dependents_deps.dev:0 github.com/maddyscout/jquery.maskedinput,num_dependents_deps.dev:0 @@ -768080,6 +782107,7 @@ github.com/madelyneriksen/dashml, github.com/madelyneriksen/topix, github.com/madelynkasula/meetup_wrapper,num_dependents_deps.dev:0 github.com/madenginex/stepik-go,num_dependents_deps.dev:0 +github.com/madeofpendletonwool/spin-and-network, github.com/madeofpeople/metalsmith-packagejson,num_dependents_deps.dev:0 github.com/madeofpeople/metalsmith-swig-helpers, github.com/madeofpeople/mop-styleguide-template,num_dependents_deps.dev:0 @@ -768109,6 +782137,7 @@ github.com/madewithkoji/koji-vcc, github.com/madewithlove/auth-manager,num_dependents_deps.dev:0 github.com/madewithlove/classnames-components,num_dependents_deps.dev:0 github.com/madewithlove/eslint-config-madewithlove,num_dependents_deps.dev:0 +github.com/madewithlove/htaccess-cli-github-action, github.com/madewithlove/injest,num_dependents_deps.dev:0 github.com/madewithlove/margaret-fetcher,num_dependents_deps.dev:0 github.com/madewithlove/mson-to-schemas,num_dependents_deps.dev:0 @@ -768184,6 +782213,10 @@ github.com/madhawa-se/cordova-plugin-fcm-with-dependecy-updated-headup,num_depen github.com/madhawa-se/quick_wordpress,num_dependents_deps.dev:0 github.com/madhawav/YOLO3-4-Py, github.com/madhead/aws-junit5,num_dependents_deps.dev:24 +github.com/madhead/check-gradle-version, +github.com/madhead/intellij-http-client-action, +github.com/madhead/read-java-properties, +github.com/madhead/semver-utils, github.com/madhephaestus/SimplePacketComsJava,num_dependents_deps.dev:0 github.com/madhephaestus/SimplePacketComsJava-HID,num_dependents_deps.dev:0 github.com/madhive/go-swagger,num_dependents_deps.dev:0 @@ -768458,6 +782491,7 @@ github.com/madoublet/static-kit,num_dependents_deps.dev:0 github.com/madox2/react-element-size,num_dependents_deps.dev:0 github.com/madox2/react-tagcloud,num_dependents_deps.dev:2 github.com/madpah/requirements-parser, +github.com/madpah/serializable, github.com/madphysicist/haggis, github.com/madphysicist/imprint, github.com/madphysicist/puzzle-solvers, @@ -768595,6 +782629,7 @@ github.com/madworx/robotframework-kicadlibrary, github.com/madx/elfi,num_dependents_deps.dev:0 github.com/madx/majora,num_dependents_deps.dev:0 github.com/madx/windsock, +github.com/madxcompany/commit-to-notion, github.com/madxiii/todo-app,num_dependents_deps.dev:0 github.com/madxmike/fletch,num_dependents_deps.dev:0 github.com/madxor/deep-freeze-node2,num_dependents_deps.dev:0 @@ -769398,10 +783433,12 @@ github.com/mafredri/cdp,"criticality_score:0.365290,num_dependents_deps.dev:60" github.com/mafredri/chi,num_dependents_deps.dev:0 github.com/mafredri/lcm,num_dependents_deps.dev:0 github.com/mafredri/zsh-async,criticality_score:0.338160 +github.com/mafreud/flutter-sortify, github.com/mafrosis/dictdiffer, github.com/mafrosis/jira-offline, github.com/maftouni/Patient_Aware_Splitter, github.com/mafuentes22/qvd-reader,num_dependents_deps.dev:0 +github.com/maful/github-actions-mailgun, github.com/mafulong/godal,num_dependents_deps.dev:0 github.com/mafumafuultu/DnD.js,num_dependents_deps.dev:0 github.com/mafumafuultu/fairy.css,num_dependents_deps.dev:0 @@ -769463,6 +783500,7 @@ github.com/magcore/stalker-apps-extra,num_dependents_deps.dev:0 github.com/magda-io/ci-utils,num_dependents_deps.dev:0 github.com/magdaddy/ableton-link-rs,num_dependents_deps.dev:0 github.com/magdanowak/vroom, +github.com/magdemajt/trigger-webhook, github.com/magdev/gnu-terry-pratchett,num_dependents_deps.dev:0 github.com/magdev/harp-openshift,num_dependents_deps.dev:0 github.com/magdev/node-mashape-tools,num_dependents_deps.dev:0 @@ -769506,6 +783544,7 @@ github.com/mageddo/mustache-layout,num_dependents_deps.dev:0 github.com/mageddo/spring-projects,num_dependents_deps.dev:0 github.com/magederek/algogo,num_dependents_deps.dev:0 github.com/magefile/mage,"criticality_score:0.505700,num_dependents_deps.dev:1580" +github.com/magefile/mage-action, github.com/magefree/mage,criticality_score:0.645750 github.com/magelanLab/parcel-plugin-bundle-manifest,num_dependents_deps.dev:0 github.com/magellantoo/magellantoo.github.io,num_dependents_deps.dev:0 @@ -769702,6 +783741,7 @@ github.com/magic003/http-parser-rs,num_dependents_deps.dev:0 github.com/magic003/omnitoken,num_dependents_deps.dev:0 github.com/magic1122/openshift-labs,num_dependents_deps.dev:0 github.com/magic53/gsync,num_dependents_deps.dev:0 +github.com/magic7s/expose-jwt-action, github.com/magic8bot/adapters,num_dependents_deps.dev:0 github.com/magic8bot/db,num_dependents_deps.dev:0 github.com/magic8bot/fixedset,num_dependents_deps.dev:0 @@ -769837,6 +783877,8 @@ github.com/magiceddy/orbitdb-tokenStore,num_dependents_deps.dev:0 github.com/magiceden/magiceden-python, github.com/magicfun1241/fhttp,num_dependents_deps.dev:0 github.com/magicfun1241/roxy,num_dependents_deps.dev:0 +github.com/magicgh/mdbook-katex-action, +github.com/magicgh/mdbook-mermaid-action, github.com/magicgrl111/getscript-promise,num_dependents_deps.dev:0 github.com/magichair/passport-title-generator,num_dependents_deps.dev:0 github.com/magichougit/mine_leetcode_golang,num_dependents_deps.dev:0 @@ -770013,6 +784055,8 @@ github.com/magicmark/personal-website-v2,num_dependents_deps.dev:0 github.com/magicmark/wafflebot,num_dependents_deps.dev:0 github.com/magicmarvman/swot-node,num_dependents_deps.dev:0 github.com/magicmau/generator-gulp-typescript-sass,num_dependents_deps.dev:0 +github.com/magicmemories/eks-helm-deploy, +github.com/magicmemories/workflow-template, github.com/magicmonkey/go-streamdeck,num_dependents_deps.dev:0 github.com/magicmonkey/l8js,num_dependents_deps.dev:0 github.com/magicmonkey/lifxjs,num_dependents_deps.dev:0 @@ -770032,6 +784076,7 @@ github.com/magicray/BasicPaxos, github.com/magicray/kvlog, github.com/magicray/main-server, github.com/magicsea/go-shadowsocks2,num_dependents_deps.dev:0 +github.com/magicsk/tag-changelog-multiline, github.com/magicsky/grunt-cmd-nice,num_dependents_deps.dev:0 github.com/magicsky/gulp-cmd-nice,num_dependents_deps.dev:0 github.com/magicsky/nodechalk, @@ -770060,6 +784105,7 @@ github.com/magicspon/tailwind-easing-gradients,num_dependents_deps.dev:0 github.com/magicspon/tailwind-not-last-child, github.com/magicsuny/nodejs,num_dependents_deps.dev:0 github.com/magictoolbox/eslint-config-magictoolbox,num_dependents_deps.dev:0 +github.com/magicwallet/r2-upload, github.com/magicwantabstract/snake,num_dependents_deps.dev:0 github.com/magicwantabstract/task-tracker,num_dependents_deps.dev:0 github.com/magicwarms/fibergov1,num_dependents_deps.dev:0 @@ -770098,6 +784144,9 @@ github.com/maginga/example,num_dependents_deps.dev:0 github.com/magiq-tests/magiq-tests,num_dependents_deps.dev:0 github.com/magirui/golearn,num_dependents_deps.dev:0 github.com/magishift/magishift.core,num_dependents_deps.dev:10 +github.com/magisteriis/download-league-of-legends-data-dragon, +github.com/magisteriis/download-legends-of-runeterra-data-dragon, +github.com/magisteriis/setup-league-client, github.com/magisters-org/vue-smooth-scrollbar,num_dependents_deps.dev:0 github.com/magistral-io/MagistralPython, github.com/magistrser/recursive-cancelable-promise,num_dependents_deps.dev:0 @@ -770237,6 +784286,10 @@ github.com/magneticio/vamp-sdk-go,num_dependents_deps.dev:0 github.com/magneticio/vamp-workflow-agent,num_dependents_deps.dev:0 github.com/magnetik/node-earl,num_dependents_deps.dev:0 github.com/magnetik/node-webid,num_dependents_deps.dev:0 +github.com/magnetikonline/action-aws-iam-assume-role, +github.com/magnetikonline/action-golang-cache, +github.com/magnetikonline/action-node-modules-cache, +github.com/magnetikonline/action-slack-workflow-start-finish, github.com/magnetikonline/aws-lambda-proxy-response, github.com/magnetikonline/awslambdaproxyresponse,num_dependents_deps.dev:0 github.com/magnetikonline/funcqueue,num_dependents_deps.dev:0 @@ -770288,6 +784341,7 @@ github.com/magniff/watch, github.com/magnifi/json-gql, github.com/magnificat/ditty,num_dependents_deps.dev:0 github.com/magnificat/ditty-to-pdf,num_dependents_deps.dev:0 +github.com/magnificode-ltd/chatgpt-code-reviewer, github.com/magnis89/project,num_dependents_deps.dev:0 github.com/magniteengineering/go-pingdom,num_dependents_deps.dev:0 github.com/magnnus/create-autots-lib,num_dependents_deps.dev:0 @@ -770522,6 +784576,7 @@ github.com/mahaplatform/redux-local-storage, github.com/mahaplatform/redux-rubberstamp,num_dependents_deps.dev:0 github.com/mahaplatform/shipit-maha,num_dependents_deps.dev:0 github.com/mahaplatform/shipit-roles,num_dependents_deps.dev:2 +github.com/maharishi-coder/Duplicate-Line-Remover-Action, github.com/maharmstone/btrfs,criticality_score:0.489380 github.com/mahasak/bear-cache,num_dependents_deps.dev:0 github.com/mahasak/gget-cli,num_dependents_deps.dev:0 @@ -770609,6 +784664,7 @@ github.com/mahendrabagul/envoy-xds-demo,num_dependents_deps.dev:0 github.com/mahendrabagul/k8s-informers,num_dependents_deps.dev:0 github.com/mahendrabagul/mahendrabagul,num_dependents_deps.dev:0 github.com/mahendrabagul/number-formatter,num_dependents_deps.dev:0 +github.com/mahendrabishnoi2/go-github-action, github.com/mahendrafathan/order-service,num_dependents_deps.dev:0 github.com/mahendrafathan13/goapp-scylla,num_dependents_deps.dev:0 github.com/mahendragohel/graphql-java-schema-generator,num_dependents_deps.dev:0 @@ -770681,6 +784737,10 @@ github.com/maheshmahadevan/express-conditional-request,num_dependents_deps.dev:0 github.com/maheshmb2007/number-formatter,num_dependents_deps.dev:0 github.com/maheshnanaware/hyperledger2020,num_dependents_deps.dev:0 github.com/maheshrapelli141/es-chat-component,num_dependents_deps.dev:0 +github.com/maheshrayas/action-coverage-badge, +github.com/maheshrayas/action-pr-comment-delete, +github.com/maheshrayas/action-release-notifier, +github.com/maheshrjl/pocketcasts-readme, github.com/maheshsasidharan/CommonFactory,num_dependents_deps.dev:0 github.com/maheshsenni/react-treelist,num_dependents_deps.dev:0 github.com/maheshsgr/CVD-SharedPreference-NSUserDetails,num_dependents_deps.dev:0 @@ -770911,6 +784971,7 @@ github.com/mahyari/ng2-popover, github.com/mahyarmadad/nextjs-orgchart,num_dependents_deps.dev:0 github.com/mahyess/django-admin-mazer, github.com/mai-kuraki/googleFeedback,num_dependents_deps.dev:0 +github.com/mai-space/action-sshpass-rsync, github.com/mai1346/invpy, github.com/maia-miller/react-decision-tree, github.com/maia-s/iderive,num_dependents_deps.dev:0 @@ -771091,6 +785152,7 @@ github.com/maicki/why-did-you-update,num_dependents_deps.dev:16 github.com/maicodio/ngm-carousel,num_dependents_deps.dev:0 github.com/maicoin/max-exchange-api-node,num_dependents_deps.dev:0 github.com/maicol-dg/generator-skull, +github.com/maicol07/github-changelog-action, github.com/maicol07/inertia-mithril,num_dependents_deps.dev:0 github.com/maicolsantos/react-native-shadow-style,num_dependents_deps.dev:0 github.com/maicolsantos/typeActionsRedux,num_dependents_deps.dev:0 @@ -771140,6 +785202,7 @@ github.com/maidsafe/message_filter,num_dependents_deps.dev:25 github.com/maidsafe/mpid_messaging,num_dependents_deps.dev:2 github.com/maidsafe/nat_traversal,num_dependents_deps.dev:13 github.com/maidsafe/parsec,"criticality_score:0.323400,num_dependents_deps.dev:0" +github.com/maidsafe/pr_size_checker, github.com/maidsafe/qjsonrpc,num_dependents_deps.dev:0 github.com/maidsafe/qp2p,num_dependents_deps.dev:1 github.com/maidsafe/resource_proof,num_dependents_deps.dev:8 @@ -771222,6 +785285,7 @@ github.com/maierfelix/pokerare,num_dependents_deps.dev:0 github.com/maierfelix/tolw,num_dependents_deps.dev:0 github.com/maierfelix/webgpu,num_dependents_deps.dev:0 github.com/maierfelix/yue,num_dependents_deps.dev:0 +github.com/maierj/fastlane-action, github.com/maiernte/gitbook-plugin-huahe,num_dependents_deps.dev:0 github.com/maiers/pdfkit-commonmark,num_dependents_deps.dev:0 github.com/maierson/one, @@ -771268,6 +785332,8 @@ github.com/maijz128/ExpressionCalculator,num_dependents_deps.dev:0 github.com/maijz128/shpnode,num_dependents_deps.dev:0 github.com/maik97/trucks-and-drones, github.com/maik97/wacky-rl, +github.com/maikebing/influxdb-action, +github.com/maikebing/rt-thread_linux_env, github.com/maikelboogerd/eventcore-kafka, github.com/maikelboogerd/eventcore-sqs, github.com/maikelbos0/VDT, @@ -771292,6 +785358,7 @@ github.com/maikkoko/eslint-config, github.com/maikkoko/messenger-ui-kit,num_dependents_deps.dev:0 github.com/maikkoko/react-img-load,num_dependents_deps.dev:0 github.com/maiklam/auto-complete,num_dependents_deps.dev:0 +github.com/maikmb/github-actions-pr-close-work-item, github.com/maikomjames/bilu, github.com/maikonf/f2c-maikonf,num_dependents_deps.dev:0 github.com/maikro-v/jsftp-utils,num_dependents_deps.dev:0 @@ -771304,6 +785371,8 @@ github.com/maikudou/import-sorter,num_dependents_deps.dev:0 github.com/maikudou/iso639-js,num_dependents_deps.dev:0 github.com/maikudou/node-typograph,num_dependents_deps.dev:0 github.com/maikuroashi/mongodb-datasource,num_dependents_deps.dev:0 +github.com/maikuru/downstream-version-automerge, +github.com/maikvortx/github-action-slack-notify-deployment, github.com/maikwolf/luxafor,num_dependents_deps.dev:0 github.com/mail-in-a-box/mailinabox,criticality_score:0.580980 github.com/mail-ru-im/bot-golang,num_dependents_deps.dev:0 @@ -771316,6 +785385,7 @@ github.com/mailbots/mailbots-sdk-js,num_dependents_deps.dev:0 github.com/mailboxer/mailboxer,criticality_score:0.553370 github.com/mailboxvalidator-nodejs/MailboxValidator,num_dependents_deps.dev:0 github.com/mailboy/email-router,num_dependents_deps.dev:0 +github.com/mailchain/copybara-action, github.com/mailchain/http-helpers-angular,num_dependents_deps.dev:0 github.com/mailchain/mailchain,num_dependents_deps.dev:0 github.com/mailchain/mailchain-connector-imap,num_dependents_deps.dev:0 @@ -771468,6 +785538,12 @@ github.com/main--/rust-integer-atomics,num_dependents_deps.dev:1 github.com/main--/rust-intervaltree,num_dependents_deps.dev:5 github.com/main--/rust-lz-fear,num_dependents_deps.dev:4 github.com/main--/rust-timerfd,num_dependents_deps.dev:10 +github.com/main-quest/actions.clean-permissions, +github.com/main-quest/actions.dbd.be.dockerbuild, +github.com/main-quest/actions.gsutil, +github.com/main-quest/actions.gsutil.artifact.bucketname, +github.com/main-quest/actions.gsutil.artifact.get, +github.com/main-quest/actions.gsutil.artifact.put, github.com/mainTao/express-request-rate-limit,num_dependents_deps.dev:0 github.com/mainTao/spider-download,num_dependents_deps.dev:0 github.com/mainak-shil/rn-dropdown-picker,num_dependents_deps.dev:0 @@ -771511,6 +785587,8 @@ github.com/mainjs-public/reactjs-image-finder,num_dependents_deps.dev:0 github.com/mainjzb/mapleqqbotplug,num_dependents_deps.dev:0 github.com/mainleau/deceit.js,num_dependents_deps.dev:0 github.com/mainlymortal/tibellus,num_dependents_deps.dev:0 +github.com/mainmatter/continue-on-error-comment, +github.com/mainmatter/ember-asset-size-action, github.com/mainmeta-nmg/mm-coinselect,num_dependents_deps.dev:0 github.com/mainmeta-nmg/passport-oauth2-dotwallet,num_dependents_deps.dev:0 github.com/mainnet-cash/mainnet-go-generated,num_dependents_deps.dev:0 @@ -771598,6 +785676,8 @@ github.com/maisge/myqq, github.com/maishede/calwindirsize,num_dependents_deps.dev:0 github.com/maisie-dev/searchstring, github.com/maisiesadler/ImgServer,num_dependents_deps.dev:0 +github.com/maisiesadler/dotnet-package-compare, +github.com/maisiesadler/lively, github.com/maisiesadler/theilliminationgameapi,num_dependents_deps.dev:0 github.com/maisnamraju/mattermost-plugin-trello,num_dependents_deps.dev:0 github.com/maisonhenrique/image-processing-package, @@ -771826,6 +785906,7 @@ github.com/majkelx/astwro, github.com/majkelx/teda, github.com/majkilde/str_util, github.com/majkilde/universalid, +github.com/majkrzak/create-release, github.com/majlanky/couch-slacker,num_dependents_deps.dev:0 github.com/majloe3jlo/coinconverter,num_dependents_deps.dev:0 github.com/majn/telegram-purple,criticality_score:0.485690 @@ -771856,7 +785937,11 @@ github.com/major-mann/uri-hmac-sign,num_dependents_deps.dev:0 github.com/major/MySQLTuner-perl,criticality_score:0.447340 github.com/major/arksearch, github.com/major/supernova, +github.com/major0/gh-artifact-cleanup, +github.com/major0/gh-comment-action, +github.com/major0/gh-ecs-runner, github.com/major1201/virtparade, +github.com/majora2007/dotnet-bump-version, github.com/majorcadevs/mdbackup, github.com/majorcob/musedirect,num_dependents_deps.dev:0 github.com/majorcool/beautiful-audio-player,num_dependents_deps.dev:0 @@ -771968,6 +786053,7 @@ github.com/makarimachmad/makarimappstore,num_dependents_deps.dev:0 github.com/makarimachmad/makarimwebappbwa,num_dependents_deps.dev:0 github.com/makarkul/gopl.io,num_dependents_deps.dev:0 github.com/makaroni4/img-lint,num_dependents_deps.dev:0 +github.com/makaroni4/prcop, github.com/makarov-roman/mobx-reactive-forms, github.com/makarski/fsnotify,num_dependents_deps.dev:0 github.com/makarski/gcaler,num_dependents_deps.dev:0 @@ -772194,7 +786280,10 @@ github.com/makeproaudio/makehaus-js,num_dependents_deps.dev:0 github.com/makeproaudio/parameters-js,num_dependents_deps.dev:0 github.com/makeprogress/experiments,num_dependents_deps.dev:2 github.com/makeprogress/react-experiment,num_dependents_deps.dev:0 +github.com/maker2413/OrgPublish, +github.com/maker2413/OrgRoamPublish, github.com/maker2413/notes,num_dependents_deps.dev:0 +github.com/maker2413/weblorg-action, github.com/makerGeek/rest-auth-multitoken, github.com/makera/react-share,num_dependents_deps.dev:0 github.com/makerbot/ReplicatorG,criticality_score:0.358120 @@ -772334,7 +786423,9 @@ github.com/makeworld-the-better-one/go-gemini,num_dependents_deps.dev:0 github.com/makeworld-the-better-one/go-isemoji,num_dependents_deps.dev:0 github.com/makeworld-the-better-one/lannet,num_dependents_deps.dev:0 github.com/makeworld-the-better-one/md2gemini, +github.com/makeworld-the-better-one/vale-action, github.com/makezi/eslint-config-makezi,num_dependents_deps.dev:0 +github.com/makgig-fm/helm-release-nexus, github.com/makgyver/PRL, github.com/makgyver/pyros, github.com/makgyver/rectorch, @@ -772558,6 +786649,8 @@ github.com/mako-tos/gatsby-images-microcms,num_dependents_deps.dev:0 github.com/mako-tos/gatsby-transformer-for-microcms,num_dependents_deps.dev:0 github.com/makoConstruct/jostletree.rs,num_dependents_deps.dev:0 github.com/makoConstruct/toasts,num_dependents_deps.dev:0 +github.com/makocchi-git/actions-k8s-manifests-validate-conftest, +github.com/makocchi-git/actions-k8s-manifests-validate-kubeval, github.com/makometr/go-tasks-2,num_dependents_deps.dev:0 github.com/makoni/node-couchdb-mover,num_dependents_deps.dev:0 github.com/makoq/golang,num_dependents_deps.dev:0 @@ -772624,6 +786717,7 @@ github.com/makrjs/makr,num_dependents_deps.dev:0 github.com/makryl/ABigImage, github.com/makryl/jquery-asynclink,num_dependents_deps.dev:0 github.com/maks-sh/scikit-uplift, +github.com/maks-stupak/gh-action-bump-version, github.com/maks/MGit,criticality_score:0.394850 github.com/maks/hairlip,num_dependents_deps.dev:0 github.com/maks/mkslogger, @@ -772736,6 +786830,7 @@ github.com/maktarsis/re-space,num_dependents_deps.dev:0 github.com/maktarsis/routeshub,num_dependents_deps.dev:0 github.com/maktouch/router,num_dependents_deps.dev:0 github.com/maktwin/await-map-stream,num_dependents_deps.dev:0 +github.com/maku693/action-puppeteer-script, github.com/maku693/firebase-admin-go,num_dependents_deps.dev:0 github.com/maku693/go-nova,num_dependents_deps.dev:0 github.com/makubi/avrohugger-maven-plugin,num_dependents_deps.dev:0 @@ -772802,6 +786897,7 @@ github.com/malacca/react-navigation-header,num_dependents_deps.dev:0 github.com/malacca/rn-rename,num_dependents_deps.dev:0 github.com/malachheb/calamum,num_dependents_deps.dev:0 github.com/malachheb/liblvm,num_dependents_deps.dev:0 +github.com/malachi-constant/issue-minimum-response, github.com/malachimda101/search-react-input,num_dependents_deps.dev:0 github.com/malacozooklubba/mozaik-ext-embed,num_dependents_deps.dev:0 github.com/maladie/control-plane,num_dependents_deps.dev:0 @@ -773000,6 +787096,7 @@ github.com/maleficarum/particle-firmeware-update-js,num_dependents_deps.dev:0 github.com/malegender/react-dropdown-tree-select, github.com/malei0311/gulp-file-additional,num_dependents_deps.dev:0 github.com/maleja111/maleja,num_dependents_deps.dev:0 +github.com/malekelthomas/app-yaml-env-compiler, github.com/malekim/v-idle,num_dependents_deps.dev:0 github.com/malekim/v3confirm, github.com/malekim/viston,num_dependents_deps.dev:0 @@ -773018,6 +787115,8 @@ github.com/malept/crypto-hash,num_dependents_deps.dev:101 github.com/malept/electron-installer-flatpak,num_dependents_deps.dev:0 github.com/malept/eslint-config,num_dependents_deps.dev:0 github.com/malept/flatpak-bundler,num_dependents_deps.dev:128 +github.com/malept/github-action-dependabolt, +github.com/malept/github-action-gh-pages, github.com/malept/rust-commoncrypto,num_dependents_deps.dev:244 github.com/malept/sumchecker,num_dependents_deps.dev:5330 github.com/malept/thermite,num_dependents_deps.dev:16 @@ -773099,6 +787198,7 @@ github.com/maliMirkec/hexo-theme-sb,num_dependents_deps.dev:0 github.com/maliMirkec/starter-project,num_dependents_deps.dev:0 github.com/maliMirkec/starter-project-cli,num_dependents_deps.dev:0 github.com/maliaoMJ/pdfmake-for-chinese-fonts,num_dependents_deps.dev:0 +github.com/malice-labs/fork-sentry, github.com/malice-plugins/fileinfo,num_dependents_deps.dev:0 github.com/malicemarie/monster,num_dependents_deps.dev:0 github.com/malicialab/avclass, @@ -773321,6 +787421,7 @@ github.com/malmaud/TensorFlow.jl,criticality_score:0.460120 github.com/malmaud/einindex, github.com/malmgrek/haplopy, github.com/malmostad/siteseeker_normalizer,num_dependents_deps.dev:0 +github.com/malmstein/sync-action, github.com/malmstroem/appliapps, github.com/malmstroem/iportal, github.com/malmyros/http-status-codes-js,num_dependents_deps.dev:0 @@ -773422,6 +787523,7 @@ github.com/malthe/ts-postgres,num_dependents_deps.dev:0 github.com/maltose-lab/http,num_dependents_deps.dev:0 github.com/maltose-lab/poem,num_dependents_deps.dev:0 github.com/maltose-lab/reset,num_dependents_deps.dev:0 +github.com/maltoze/get-version-action, github.com/maltron/survey-demo,num_dependents_deps.dev:0 github.com/maltsev/gulp-htmlnano,num_dependents_deps.dev:0 github.com/maltsev/htmlnano,num_dependents_deps.dev:0 @@ -773521,6 +787623,7 @@ github.com/mamal72/ice-cli,num_dependents_deps.dev:0 github.com/mamal72/ifexpr,num_dependents_deps.dev:0 github.com/mamal72/iranian-calendar-events,num_dependents_deps.dev:2 github.com/mamal72/isitup,num_dependents_deps.dev:0 +github.com/mamal72/minio-perfect-deploy-action, github.com/mamal72/node-yahoo-weather,num_dependents_deps.dev:0 github.com/mamal72/react-github,num_dependents_deps.dev:0 github.com/mamal72/react-optimistic-ui-hook,num_dependents_deps.dev:0 @@ -773540,6 +787643,7 @@ github.com/maman/react-router-legacy,num_dependents_deps.dev:0 github.com/maman/webpack-flush-chunks,num_dependents_deps.dev:0 github.com/mamane19/spenn-node,num_dependents_deps.dev:0 github.com/mamanico1/go-rest-api,num_dependents_deps.dev:0 +github.com/mamaoag/sync-repo-to-codecommit, github.com/mamapitufo/martinez,num_dependents_deps.dev:0 github.com/mamapitufo/zed,num_dependents_deps.dev:0 github.com/mamarildon/npm-currency-converter,num_dependents_deps.dev:0 @@ -773554,8 +787658,10 @@ github.com/mamayu/goquery,num_dependents_deps.dev:0 github.com/mamba-in/el-upload-repackage, github.com/mamba-org/gator,num_dependents_deps.dev:0 github.com/mamba-org/mamba,criticality_score:0.521050 +github.com/mamba-org/provision-with-micromamba, github.com/mamba-org/quetz-frontend, github.com/mamba-org/quetz-theme, +github.com/mamba-org/setup-micromamba, github.com/mamba1202/lunzi,num_dependents_deps.dev:0 github.com/mamba2017/concurrent-chat-server,num_dependents_deps.dev:0 github.com/mamba2017/go-,num_dependents_deps.dev:0 @@ -773610,7 +787716,10 @@ github.com/mamerisawesome/gyakujinton, github.com/mamerisawesome/localtunnel,num_dependents_deps.dev:0 github.com/mamerisawesome/rainbow-bridge-logger, github.com/mamerisawesome/seos, +github.com/mamezou-tech/buildpacks-action, +github.com/mamezou-tech/monorepo-update-checker, github.com/mamezou-tech/sbgraph,num_dependents_deps.dev:0 +github.com/mamezou-tech/setup-helmfile, github.com/mami-project/trafic,num_dependents_deps.dev:0 github.com/mamift/icon-transformer,num_dependents_deps.dev:0 github.com/mamilla11/brain-games, @@ -773650,6 +787759,8 @@ github.com/mammut-io/mammut-py, github.com/mammuth/ha-linux-sensors,num_dependents_deps.dev:0 github.com/mammutmedia/parse-server-sqs-push-queue,num_dependents_deps.dev:0 github.com/mammutmw/ramverk1,num_dependents_deps.dev:0 +github.com/mammutmw/usc-gha, +github.com/mammutmw/usc-rotate-keys-gha, github.com/mamoe/kotlin-jvm-blocking-bridge,num_dependents_deps.dev:8 github.com/mamoe/mirai,"criticality_score:0.630210,num_dependents_deps.dev:58" github.com/mamoe/mirai-console,criticality_score:0.498390 @@ -773739,9 +787850,14 @@ github.com/managedbyq/mbq.metrics, github.com/managedbyq/mbq.pubsub, github.com/managedbyq/mbq.ranch, github.com/managedbyq/mbq.tokens, +github.com/managedcode/MAUIAppVersion, +github.com/managedkaos/keyword-releaser, +github.com/managedkaos/merge-pull-request, +github.com/managedkaos/print-env, github.com/managef/ui,num_dependents_deps.dev:0 github.com/manageiq/manageiq-pods,num_dependents_deps.dev:0 github.com/management-events/ng2-grid,num_dependents_deps.dev:0 +github.com/managemy-lease/action-aws-ses-template-uploader, github.com/manahl/arctic, github.com/manahl/feedback_tool, github.com/manahl/hubot-servicenow-tickets,num_dependents_deps.dev:0 @@ -773754,6 +787870,7 @@ github.com/manahter/dirio, github.com/manahyper/cr401,num_dependents_deps.dev:0 github.com/manaka-club/manaka-club,num_dependents_deps.dev:0 github.com/manakor/connect-parse,num_dependents_deps.dev:0 +github.com/manala/github-action-manala, github.com/manalishah/NLTKRest,num_dependents_deps.dev:0 github.com/manalotoj/al-file-system-watcher,num_dependents_deps.dev:0 github.com/manalotoj/alfilesservice,num_dependents_deps.dev:0 @@ -773769,6 +787886,7 @@ github.com/manan10101996/shelf,num_dependents_deps.dev:0 github.com/manan5439/rail-fence-v2,num_dependents_deps.dev:0 github.com/manan5439/stellar-coin,num_dependents_deps.dev:0 github.com/mananapr/akari, +github.com/manang/commitizen-check, github.com/manangupta657/ckEditor,num_dependents_deps.dev:0 github.com/manankalra/generator-leanapps-android-starter, github.com/manankumawat/freshers-bootcamp,num_dependents_deps.dev:0 @@ -773779,6 +787897,7 @@ github.com/mananwalia959/bookings-app,num_dependents_deps.dev:0 github.com/mananwalia959/go-todos-app,num_dependents_deps.dev:0 github.com/manapaho/generator-angular-website,num_dependents_deps.dev:0 github.com/manaphp/manaphp,criticality_score:0.375630 +github.com/manarbenkraouda/lcov-reporter-action, github.com/manas-bagai/manas-bagai-freshers-bootcamp,num_dependents_deps.dev:0 github.com/manas-chaudhari/android-mvvm,num_dependents_deps.dev:0 github.com/manas1316am/phypi, @@ -773846,6 +787965,7 @@ github.com/manatlan/vbuild, github.com/manatlan/wuy, github.com/manatlan/wyc, github.com/manattan/isucon-practice,num_dependents_deps.dev:0 +github.com/manattan/marp-cli-action, github.com/manavk-p/pkcs7,num_dependents_deps.dev:0 github.com/manavp1996/mediumapi,num_dependents_deps.dev:0 github.com/manavrawat10/LiveScoreNotification, @@ -774013,6 +788133,7 @@ github.com/manekinekko/angular2-dependencies-graph,num_dependents_deps.dev:8 github.com/manekinekko/angular2-speech-engine,num_dependents_deps.dev:0 github.com/manekinekko/angular2-universal-microsite-preview,num_dependents_deps.dev:0 github.com/manekinekko/bitandbang,num_dependents_deps.dev:0 +github.com/manekinekko/github-action-issues-notifier, github.com/manekinekko/google-actions-learn-angular,num_dependents_deps.dev:0 github.com/manekinekko/google-actions-reader, github.com/manekinekko/google-actions-rxjs, @@ -774020,6 +788141,7 @@ github.com/manekinekko/google-actions-server, github.com/manekinekko/google-actions-starter,num_dependents_deps.dev:0 github.com/manekinekko/google-actions-twitter,num_dependents_deps.dev:0 github.com/manekinekko/hexa,num_dependents_deps.dev:0 +github.com/manekinekko/hue-action, github.com/manekinekko/klingon,num_dependents_deps.dev:0 github.com/manekinekko/swa-emulator,num_dependents_deps.dev:0 github.com/manekinekko/viz.js, @@ -774027,6 +788149,7 @@ github.com/manekiswap/sdk,num_dependents_deps.dev:0 github.com/manekshms/ng-chalk-app,num_dependents_deps.dev:0 github.com/manekshms/relational-algebra-evaluator,num_dependents_deps.dev:0 github.com/manelcecs/node-server-spa,num_dependents_deps.dev:0 +github.com/manele-se/code-smell-tool, github.com/manelet/react-donut-svg,num_dependents_deps.dev:0 github.com/manelet/str, github.com/manelferreira/serverless-sequelize-migrations,num_dependents_deps.dev:0 @@ -774049,6 +788172,7 @@ github.com/manerfan/alfred-timestamp,num_dependents_deps.dev:0 github.com/manerfan/avatar-gm,num_dependents_deps.dev:0 github.com/manesioz/rilly, github.com/manesioz/secure-graphene, +github.com/maness-dev/GoActionLab, github.com/manetoso/bella-olonge-components,num_dependents_deps.dev:0 github.com/maneuver-agency/iubenda-nuxt-module, github.com/maneuver-agency/node-harvest-api,num_dependents_deps.dev:0 @@ -774085,6 +788209,7 @@ github.com/manga-download/hakuneko,criticality_score:0.537900 github.com/manga-py/img2pdf, github.com/manga-py/manga-py,criticality_score:0.425010 github.com/manga-py/manga-rs,num_dependents_deps.dev:0 +github.com/manga-raiku/changelog-generator, github.com/manga109/manga109api, github.com/mangaba-labs/ape-finance-scrapper,num_dependents_deps.dev:0 github.com/mangadex-network/mangadex-at-cloud, @@ -774183,6 +788308,8 @@ github.com/mangroveorg/mangrove, github.com/mangroves-fe/field-mask,num_dependents_deps.dev:0 github.com/mangroves-fe/jamcaa-helper,num_dependents_deps.dev:0 github.com/mangroves-fe/jest-docker-mysql,num_dependents_deps.dev:0 +github.com/mangs/simple-release-notes-action, +github.com/mangs/super-cache-action, github.com/mangstadt/ez-vcard,"criticality_score:0.322790,num_dependents_deps.dev:8" github.com/mangstadt/vinnie,num_dependents_deps.dev:74 github.com/mangudai/mangudai,num_dependents_deps.dev:0 @@ -774225,6 +788352,7 @@ github.com/mani-96/ngx-accordion-from-object,num_dependents_deps.dev:0 github.com/mani-mka/first,num_dependents_deps.dev:0 github.com/mani-rsg/Redux-template-generator-React,num_dependents_deps.dev:0 github.com/mani-s17/angularjs-datetime-picker,num_dependents_deps.dev:0 +github.com/mani-sh-reddy/calver-increment, github.com/mani-src/npipes, github.com/mani-vardhan-kasthuri/go-playground,num_dependents_deps.dev:0 github.com/mani1986/mm-graphql-tools,num_dependents_deps.dev:0 @@ -774282,6 +788410,7 @@ github.com/manicphase/nanotubes,num_dependents_deps.dev:0 github.com/manicprone/joint-kit,num_dependents_deps.dev:0 github.com/manicprone/joint-normalizer,num_dependents_deps.dev:0 github.com/manicprone/vuestrap-client-auth-support,num_dependents_deps.dev:0 +github.com/manics/action-binderbadge, github.com/manics/fs-omero-pyfs, github.com/manics/jupyter-notebookparams, github.com/manics/jupyter-offlinenotebook,num_dependents_deps.dev:0 @@ -774301,6 +788430,7 @@ github.com/manidlou/gulp-bracks, github.com/manidlou/node-klaw-sync,num_dependents_deps.dev:3076 github.com/manidlou/node-mkp,num_dependents_deps.dev:0 github.com/manidlou/nodejs-bracks-parser, +github.com/manifest-cyber/manifest-github-action, github.com/manifest/flax-extra, github.com/manifest/machine-learning-toolset, github.com/manifest/redex, @@ -774326,6 +788456,7 @@ github.com/manifoldco/mercury,num_dependents_deps.dev:0 github.com/manifoldco/mui-core,num_dependents_deps.dev:0 github.com/manifoldco/node-signature,num_dependents_deps.dev:0 github.com/manifoldco/promptui,criticality_score:0.436700 +github.com/manifoldco/protoc-ts, github.com/manifoldco/python-manifoldco-signature, github.com/manifoldco/pytill, github.com/manifoldco/react-select-zero,num_dependents_deps.dev:0 @@ -774339,6 +788470,7 @@ github.com/manifoldfinance/add-ethereum-chain, github.com/manifoldfinance/ghch, github.com/manifoldfinance/libcaller,num_dependents_deps.dev:0 github.com/manifoldfinance/manifold-sdk, +github.com/manifoldfinance/slither-action, github.com/manifoldfinance/tscli, github.com/manifoldjs/ManifoldCordova,num_dependents_deps.dev:0 github.com/manifoldjs/ManifoldJS,num_dependents_deps.dev:0 @@ -774394,6 +788526,7 @@ github.com/manikyabard/transfertab, github.com/manikyak/tiny,num_dependents_deps.dev:0 github.com/manilion/structs,num_dependents_deps.dev:0 github.com/manim-kindergarten/ManimGL-MathJax, +github.com/manim-kindergarten/manim_action_renderer, github.com/manimall/react-phone-input-2,num_dependents_deps.dev:0 github.com/manimanis/tnalgo, github.com/manimaul/jacuzzi,num_dependents_deps.dev:0 @@ -774409,6 +788542,7 @@ github.com/maniospas/gnn-test, github.com/maniospas/pyfop, github.com/manipise/godatastructure,num_dependents_deps.dev:0 github.com/manipuladordedados/pdiary, +github.com/manis404/md-html-action, github.com/manisandro/gImageReader,criticality_score:0.456490 github.com/manisenkov/advent-of-code,num_dependents_deps.dev:0 github.com/manish-drake/core,num_dependents_deps.dev:0 @@ -774427,6 +788561,8 @@ github.com/manishaggarwalm/react-redux-saga-boilerplate,num_dependents_deps.dev: github.com/manishagrawal-datascience/Genetic-Algorithm, github.com/manishajhunjhunwala/multipath-quic-acn-project,num_dependents_deps.dev:0 github.com/manishajmera/firstNodeModule,num_dependents_deps.dev:0 +github.com/manishankar2/EmberS3Deploy, +github.com/manishasodekar/ios-build-action-xcode-select, github.com/manishbalyan/tiny_npm,num_dependents_deps.dev:0 github.com/manishbasnet/shared-common,num_dependents_deps.dev:0 github.com/manishbasnet089/collections-js,num_dependents_deps.dev:0 @@ -774493,6 +788629,7 @@ github.com/manishsaraan/mongodb-service,num_dependents_deps.dev:0 github.com/manishsaraan/number-formatter-module,num_dependents_deps.dev:0 github.com/manishsaraan/starwars-names,num_dependents_deps.dev:0 github.com/manishsarswa/gofr,num_dependents_deps.dev:0 +github.com/manishsat/ado-download-artifact, github.com/manishsingh10895/ets-cli,num_dependents_deps.dev:0 github.com/manishsingh10895/ngrex,num_dependents_deps.dev:0 github.com/manishsingh10895/rust-cli-pika,num_dependents_deps.dev:0 @@ -774528,6 +788665,7 @@ github.com/manixx22/pnmTest,num_dependents_deps.dev:0 github.com/maniyarpayal/react-native_datetimepicker,num_dependents_deps.dev:0 github.com/maniyedidi/react-json-to-excel,num_dependents_deps.dev:0 github.com/maniyedidi/react-read-less-more,num_dependents_deps.dev:0 +github.com/manjaro-hyprland/kernel-info, github.com/manjaroman/audiostems, github.com/manjericao/ArchUnitNode,num_dependents_deps.dev:0 github.com/manjesh23/infocyteapiquery, @@ -774553,6 +788691,9 @@ github.com/manjudr/csvpars,num_dependents_deps.dev:0 github.com/manjudr/telemetry-lib,num_dependents_deps.dev:0 github.com/manjunath-nm89/Hacker-ToDo-List,num_dependents_deps.dev:0 github.com/manjunathjidagi/asteroid-db,num_dependents_deps.dev:0 +github.com/manjunathsb10/chatgpt-code-review-action, +github.com/manjunathsb100/chatgpt-code-review-action, +github.com/manjunathsb50/chatgpt-code-review-action, github.com/manjureddy7/comp-lib, github.com/manjurulcis/ng4-validation,num_dependents_deps.dev:0 github.com/manjurulcis/ngx-resource-core,num_dependents_deps.dev:0 @@ -774693,6 +788834,7 @@ github.com/mannyyang/player-kit,num_dependents_deps.dev:0 github.com/mannyyang/vuetable-3, github.com/mano92fuentesjimenez/clean-html,num_dependents_deps.dev:0 github.com/mano92fuentesjimenez/export-netcdf,num_dependents_deps.dev:0 +github.com/manoadamro/rust-release, github.com/manobi/fityme,num_dependents_deps.dev:0 github.com/manobi/lazy-loadable, github.com/manobi/native-lazy-load-boilerplate,num_dependents_deps.dev:0 @@ -774700,6 +788842,7 @@ github.com/manodeep/Corrfunc, github.com/manodeep/astro3D, github.com/manodj-sfdc/travis-central-test,num_dependents_deps.dev:0 github.com/manoelcampos/JavaXml2Lua,num_dependents_deps.dev:0 +github.com/manoelcampos/asciidoctor-ghpages-action, github.com/manoelcampos/cloudsim-plus,num_dependents_deps.dev:0 github.com/manoelcampos/cloudsim-plus-automation,num_dependents_deps.dev:0 github.com/manoelcampos/java-gossip-simulator,num_dependents_deps.dev:0 @@ -774754,6 +788897,7 @@ github.com/manoj10101996/ngx-tags-input-box, github.com/manoj97738/rulesengine,num_dependents_deps.dev:0 github.com/manojVivek/react-pefetcher,num_dependents_deps.dev:0 github.com/manojVivek/react-prefetcher, +github.com/manojVivek/repo-file-sync-action, github.com/manojap/pexelsbot, github.com/manojap/unsplashbot, github.com/manojap/vue-css-loader,num_dependents_deps.dev:0 @@ -774772,10 +788916,12 @@ github.com/manojchrsya/fastify-console,num_dependents_deps.dev:0 github.com/manojdcoder/nativescript-dropbox,num_dependents_deps.dev:0 github.com/manojdcoder/nativescript-mrz-reader,num_dependents_deps.dev:0 github.com/manojdcoder/nativescript-vector-icons,num_dependents_deps.dev:0 +github.com/manojdotwork/publish-terraform-modules, github.com/manojkarthick/PCRegression, github.com/manojkarthick/brew-compat, github.com/manojkarthick/expenses,num_dependents_deps.dev:0 github.com/manojkarthick/git-trend, +github.com/manojkarthick/macos-universal-binary-action, github.com/manojkarthick/pqrs,num_dependents_deps.dev:0 github.com/manojkarthick/reddsaver,num_dependents_deps.dev:0 github.com/manojkumarmc/swagger-restify-express,num_dependents_deps.dev:0 @@ -774862,6 +789008,7 @@ github.com/manosbatsis/corda-testacles,num_dependents_deps.dev:135 github.com/manosbatsis/kotlin-utils,num_dependents_deps.dev:322 github.com/manosbatsis/kotlinpoet-utils,num_dependents_deps.dev:2 github.com/manosbatsis/partiture,num_dependents_deps.dev:22 +github.com/manosbatsis/setup-corda5-cli-action, github.com/manosbatsis/vaultaire,num_dependents_deps.dev:108 github.com/manoshiro/meta2,num_dependents_deps.dev:0 github.com/manosim/gitify,criticality_score:0.451240 @@ -774888,6 +789035,7 @@ github.com/manovotny/extract-mdx-metadata,num_dependents_deps.dev:0 github.com/manovotny/get-git-date,num_dependents_deps.dev:0 github.com/manovotny/git-jiggy,num_dependents_deps.dev:0 github.com/manovotny/github-actions-experiments,num_dependents_deps.dev:0 +github.com/manovotny/github-releases-for-automated-package-publishing-action, github.com/manovotny/prettier-config-get-off-my-lawn,num_dependents_deps.dev:0 github.com/manovotny/remark-excerpt,num_dependents_deps.dev:2 github.com/manovotny/remark-mdx-metadata,num_dependents_deps.dev:6 @@ -774934,6 +789082,7 @@ github.com/manrueda/babel-plugin-inline-json-import,num_dependents_deps.dev:0 github.com/manrueda/deno-prebuilt,num_dependents_deps.dev:0 github.com/manrueda/icns-lib,num_dependents_deps.dev:0 github.com/manrueda/jfrog-npm-login,num_dependents_deps.dev:0 +github.com/manrueda/lighthouse-report-action, github.com/manrueda/manrueda-card,num_dependents_deps.dev:0 github.com/manrueda/veracode-cli,num_dependents_deps.dev:0 github.com/mansakondo/koto,num_dependents_deps.dev:0 @@ -774966,6 +789115,7 @@ github.com/mansona/ember-html-excerpt, github.com/mansona/lint-to-the-future, github.com/mansona/lint-to-the-future-ember-template,num_dependents_deps.dev:0 github.com/mansona/linter-openapi,num_dependents_deps.dev:0 +github.com/mansona/npm-lockfile-version, github.com/mansong1/go-imageclassifierapi,num_dependents_deps.dev:0 github.com/mansoor-s/Firefly, github.com/mansoor-s/firefly-handlebars, @@ -774987,6 +789137,7 @@ github.com/manstegling/inheritables,num_dependents_deps.dev:0 github.com/manstegling/ziploq,num_dependents_deps.dev:0 github.com/manstetten/hptcad, github.com/mansu1101/node-notification-service,num_dependents_deps.dev:0 +github.com/mansueli/Supa-Backup, github.com/mansuf/discord-ext-music, github.com/mansuf/mangabat-dl, github.com/mansuf/mangadex-downloader, @@ -775017,6 +789168,8 @@ github.com/manther/enumb,num_dependents_deps.dev:0 github.com/manther/lru-cache,num_dependents_deps.dev:0 github.com/manther/radix-sort,num_dependents_deps.dev:0 github.com/manthey/girder-client-mount, +github.com/mantichor/agent, +github.com/mantichor/portainer-action, github.com/manticore-projects/jsqlformatter,num_dependents_deps.dev:0 github.com/manticoresoftware/manticoresearch,criticality_score:0.539790 github.com/manticoresoftware/manticoresearch-python, @@ -775261,6 +789414,7 @@ github.com/manuelddahmen/empty3,num_dependents_deps.dev:0 github.com/manuelddahmen/plantgrowth,num_dependents_deps.dev:0 github.com/manueldeveloper/cordova-plugin-speech-recognizer,num_dependents_deps.dev:0 github.com/manueldeveloper/cordova-plugin-volume-buttons,num_dependents_deps.dev:0 +github.com/manueldevjour/github-activity-readme, github.com/manuele99/gjson,num_dependents_deps.dev:0 github.com/manuelep/mptools, github.com/manuelep/py4geo, @@ -775285,6 +789439,7 @@ github.com/manuelmauro/algonaut,num_dependents_deps.dev:0 github.com/manuelmauro/algonaut-crate-reservations,num_dependents_deps.dev:0 github.com/manuelmauro/algorand-rs,num_dependents_deps.dev:0 github.com/manuelmeister/figma-export,num_dependents_deps.dev:0 +github.com/manuelmeister/require-approved-pull-request-action, github.com/manuelmhtr/BSplineANN,num_dependents_deps.dev:0 github.com/manuelmhtr/countries-and-timezones,num_dependents_deps.dev:16 github.com/manuelmhtr/countries-db,num_dependents_deps.dev:0 @@ -775439,6 +789594,7 @@ github.com/manul228/list,num_dependents_deps.dev:0 github.com/manumanoj0010/countrydetails, github.com/manumartor/node_autoupg,num_dependents_deps.dev:0 github.com/manumathew23/ip-country-search, +github.com/manumena/gh-action-fork, github.com/manumiranda/twitch-api,num_dependents_deps.dev:0 github.com/manumorante/sass.at-break,num_dependents_deps.dev:0 github.com/manunit/maxxa,num_dependents_deps.dev:0 @@ -775450,6 +789606,10 @@ github.com/manupp94/Gen_Prime,num_dependents_deps.dev:0 github.com/manupsunny/PinLock,num_dependents_deps.dev:0 github.com/manuraffl30/MR_Package, github.com/manuraffl30/RA_Rechner, +github.com/manusa/actions-publish-docker, +github.com/manusa/actions-setup-microshift, +github.com/manusa/actions-setup-minikube, +github.com/manusa/actions-setup-openshift, github.com/manusa/electronim,num_dependents_deps.dev:0 github.com/manusa/jopisoft,num_dependents_deps.dev:0 github.com/manusa/presentations,num_dependents_deps.dev:0 @@ -775637,6 +789797,8 @@ github.com/manyoption/nestjs-decorators, github.com/manyosit/smileconnect-client,num_dependents_deps.dev:0 github.com/manyrdz/eureka-flexbox,num_dependents_deps.dev:0 github.com/manyrdz/firebase-glacier, +github.com/manyuanrong/setup-lean-cli, +github.com/manyuanrong/setup-ossutil, github.com/manywho/awsinventory,num_dependents_deps.dev:0 github.com/manywho/oscap-json,num_dependents_deps.dev:0 github.com/manywho/react-file-upload,num_dependents_deps.dev:0 @@ -775659,6 +789821,7 @@ github.com/manzinello/mailgo,"criticality_score:0.514850,num_dependents_deps.dev github.com/manzinello/milk,num_dependents_deps.dev:0 github.com/manzinello/xcassets,num_dependents_deps.dev:0 github.com/manzonif/apollo-upload-angular-link-http,num_dependents_deps.dev:0 +github.com/manzoorwanijk/action-deploy-to-repo, github.com/manzt/higlass-unix-time-track,num_dependents_deps.dev:0 github.com/manzt/napari-dzi-zarr, github.com/manzt/napari-lazy-openslide, @@ -775727,6 +789890,7 @@ github.com/maolion/uniapp-spa,num_dependents_deps.dev:0 github.com/maolion/uniapp-web,num_dependents_deps.dev:0 github.com/maolion/weboot,num_dependents_deps.dev:0 github.com/maolion/wivi,num_dependents_deps.dev:0 +github.com/maolonglong/actions-starcharts, github.com/maolonglong/blockchain-tutorial,num_dependents_deps.dev:0 github.com/maolonglong/bpool,num_dependents_deps.dev:0 github.com/maolonglong/brainfuck,num_dependents_deps.dev:0 @@ -775768,6 +789932,7 @@ github.com/maoqide/kubeutil,num_dependents_deps.dev:0 github.com/maoqinqin/colors,num_dependents_deps.dev:0 github.com/maorRoz/maor-modal,num_dependents_deps.dev:0 github.com/maorbarel/v-linkify,num_dependents_deps.dev:0 +github.com/maordavidov/create-sync-pr, github.com/maordavidov/generator-dotnet-core,num_dependents_deps.dev:0 github.com/maorhayoun/express-validator-config,num_dependents_deps.dev:0 github.com/maorhayoun/nconf-remote-http,num_dependents_deps.dev:0 @@ -775778,6 +789943,8 @@ github.com/maormoshe/PracticalAngular1Exam,num_dependents_deps.dev:0 github.com/maoruibin001/Black-Technology,num_dependents_deps.dev:0 github.com/maoryosef/npmr, github.com/maoschanz/drawing,criticality_score:0.461510 +github.com/maoserr/chrome_extension_publish, +github.com/maoserr/firefox_extension_publish, github.com/maoshuyu/fis-sm,num_dependents_deps.dev:0 github.com/maoshuyu/sm-command-img,num_dependents_deps.dev:0 github.com/maosjun/apiProject,num_dependents_deps.dev:0 @@ -776436,6 +790603,7 @@ github.com/maplebed/go.uuid,num_dependents_deps.dev:0 github.com/mapleby/maple-electron-router, github.com/maplechori/jstata,num_dependents_deps.dev:0 github.com/mapledyne/skytap, +github.com/mapleeit/actions-setup-knative, github.com/mapleeit/commitlint-plugin-references,num_dependents_deps.dev:0 github.com/maplegend/homebridge-modbus, github.com/mapleincode/configw, @@ -776987,6 +791155,7 @@ github.com/marcanpilami/django-oidc, github.com/marcanthonyconcepcion/marcgolangtestdrivendevelopmentdemo,num_dependents_deps.dev:0 github.com/marcanthonyconcepcion/marcgorestapidemo,num_dependents_deps.dev:0 github.com/marcantoine/ra-data-graphql-prisma,num_dependents_deps.dev:0 +github.com/marcantondahmen/release-notes-action, github.com/marcantonio/scutil,num_dependents_deps.dev:0 github.com/marcanuy/cedict_utils, github.com/marcanuy/django-dynamic-breadcrumbs, @@ -777067,6 +791236,7 @@ github.com/marcbuils/gulp-i18n-gspreadsheet,num_dependents_deps.dev:0 github.com/marcbuils/gulp-phonegap-build,num_dependents_deps.dev:0 github.com/marcbuils/nativescript-dev-cucumber,num_dependents_deps.dev:0 github.com/marcbux/Hi-WAY,num_dependents_deps.dev:2 +github.com/marccampbell/hugo-linkcheck-action, github.com/marccampbell/mongoose-admin,num_dependents_deps.dev:0 github.com/marccampbell/node-autocomplete,num_dependents_deps.dev:0 github.com/marccarre/cassandra-utils,num_dependents_deps.dev:0 @@ -777089,6 +791259,8 @@ github.com/marcdiethelm/xtc,num_dependents_deps.dev:0 github.com/marcdjulien/spotify-terminal, github.com/marcdomain/cucumberjs-server-test,num_dependents_deps.dev:0 github.com/marcdomain/customise-links,num_dependents_deps.dev:0 +github.com/marcdomain/notify-status, +github.com/marcdomain/set-variables, github.com/marcdubs/many-cloud,num_dependents_deps.dev:0 github.com/marce-ldv/react-visibility-sensor, github.com/marceickhoff/laravel-mix-clean-css,num_dependents_deps.dev:0 @@ -777320,6 +791492,7 @@ github.com/marcelmay/lib-mobi,num_dependents_deps.dev:0 github.com/marcelmay/oozie-prometheus-job-event-listener,num_dependents_deps.dev:0 github.com/marcelmay/wire-maven-plugin,num_dependents_deps.dev:0 github.com/marcelmiguel/gofpdf,num_dependents_deps.dev:0 +github.com/marcelmmc/dcml_corpus_workflow, github.com/marcelmokos/eslint-config-with-prettier,num_dependents_deps.dev:0 github.com/marcelmokos/react-intl-with-data-message-id, github.com/marcelmokos/redux-create,num_dependents_deps.dev:0 @@ -777373,6 +791546,7 @@ github.com/marceloboeira/arnode,num_dependents_deps.dev:0 github.com/marceloboeira/aws-lambda-datadog,num_dependents_deps.dev:0 github.com/marceloborgesp/todogo,num_dependents_deps.dev:0 github.com/marceloburegio/cordova-plugin-zxing,num_dependents_deps.dev:0 +github.com/marcelocaj/github-action-git-crypt-unlock, github.com/marcelocanales/ng-knife, github.com/marcelocantos/flac,num_dependents_deps.dev:0 github.com/marcelocantos/frozen,num_dependents_deps.dev:0 @@ -777566,6 +791740,7 @@ github.com/marchah/sea-ports,num_dependents_deps.dev:0 github.com/marchanbbb/something,num_dependents_deps.dev:0 github.com/marchaos/react-virtualized-sticky-tree,num_dependents_deps.dev:0 github.com/marcharper/python-ternary,criticality_score:0.386080 +github.com/marchbold/copy-release-to-repository-action, github.com/marchel2/generator-durandal2,num_dependents_deps.dev:0 github.com/marchella2/belajar-golang,num_dependents_deps.dev:0 github.com/marchellodev/sharic,num_dependents_deps.dev:0 @@ -777945,6 +792120,7 @@ github.com/marcocaldera/cf-adman-common,num_dependents_deps.dev:0 github.com/marcocamma/datastorage, github.com/marcocamma/trx, github.com/marcocanc/node-od11,num_dependents_deps.dev:0 +github.com/marcocarvalho/team-membership, github.com/marcocastignoli/ciffi-js,num_dependents_deps.dev:0 github.com/marcocastignoli/distributed-database-explorer,num_dependents_deps.dev:0 github.com/marcocastrocarreon/go_echomon,num_dependents_deps.dev:0 @@ -777968,6 +792144,7 @@ github.com/marcocor/tagme-python, github.com/marcocrasso/conductor-exporter,num_dependents_deps.dev:0 github.com/marcocspc/URNAI-Tools, github.com/marcocspc/sshman, +github.com/marcodallasanta/ssh-scp-deploy, github.com/marcodama7/posty,num_dependents_deps.dev:0 github.com/marcodama7/tactilelayouts,num_dependents_deps.dev:0 github.com/marcodave/is-deep-subset,num_dependents_deps.dev:0 @@ -777993,6 +792170,7 @@ github.com/marcodpt/vue-tree-nav,num_dependents_deps.dev:0 github.com/marcoesposito1988/dependency_runner,num_dependents_deps.dev:0 github.com/marcoesposito1988/trackingmore-python, github.com/marcof90/platzom,num_dependents_deps.dev:0 +github.com/marcofaggian/action-download-multiple-artifacts, github.com/marcofavorito/micrograd-js,num_dependents_deps.dev:0 github.com/marcofavorito/yarllib, github.com/marcoferrer/kroto-plus,num_dependents_deps.dev:0 @@ -778001,6 +792179,8 @@ github.com/marcofranssen/go-enum-tutorial,num_dependents_deps.dev:0 github.com/marcofranssen/gothermostat,num_dependents_deps.dev:0 github.com/marcofranssen/grunt-dotnet-codecoverage,num_dependents_deps.dev:0 github.com/marcofranssen/grunt-dotnet-mspec,num_dependents_deps.dev:0 +github.com/marcofranssen/setup-iamlive, +github.com/marcofranssen/setup-kubectl, github.com/marcofranssen/socket.io-memcached,num_dependents_deps.dev:0 github.com/marcofucci/cineworld-node,num_dependents_deps.dev:0 github.com/marcofucci/django-inline-orderable, @@ -778089,6 +792269,7 @@ github.com/marcombo/programacion-en-go,num_dependents_deps.dev:0 github.com/marcomedina/random-spanish-words,num_dependents_deps.dev:0 github.com/marcomessa/tailwind-modal,num_dependents_deps.dev:0 github.com/marcomessa/toggler,num_dependents_deps.dev:0 +github.com/marcomicera/xelatex-action, github.com/marcominetti/acorn-babel,num_dependents_deps.dev:0 github.com/marcominetti/brackets,num_dependents_deps.dev:0 github.com/marcominetti/cWinPerfCounter,num_dependents_deps.dev:0 @@ -778108,6 +792289,7 @@ github.com/marcominetti/sysconf,num_dependents_deps.dev:0 github.com/marcominetti/tty.js, github.com/marcomontalbano/contentful-migration-tool,num_dependents_deps.dev:0 github.com/marcomontalbano/figma-export,num_dependents_deps.dev:0 +github.com/marcomontalbano/figma-export-pdfs-action, github.com/marcomontalbano/figma-exporter,num_dependents_deps.dev:6 github.com/marcomontalbano/html-miner,num_dependents_deps.dev:0 github.com/marcomontalbano/jquery-jcreate,num_dependents_deps.dev:0 @@ -778151,6 +792333,7 @@ github.com/marcoonroad/sporadic,num_dependents_deps.dev:0 github.com/marcoose/grunt-pseudolocalize, github.com/marcop135/bullframe.css,num_dependents_deps.dev:0 github.com/marcopaganini/bitrot,num_dependents_deps.dev:0 +github.com/marcopaganini/check-trailing-spaces, github.com/marcopaganini/netbackup,num_dependents_deps.dev:0 github.com/marcopaganini/quotes-exporter,num_dependents_deps.dev:0 github.com/marcopaganini/smartcollector,num_dependents_deps.dev:0 @@ -778226,6 +792409,7 @@ github.com/marcoroganovic/async-request,num_dependents_deps.dev:0 github.com/marcoroganovic/rooter.js,num_dependents_deps.dev:0 github.com/marcorosa/_42, github.com/marcorossi5/DUNEdn, +github.com/marcoroth/dependabot-bump-together-action, github.com/marcoroth/railsbytes,num_dependents_deps.dev:0 github.com/marcoroth/rubocop-cable_ready,num_dependents_deps.dev:0 github.com/marcoroth/rubocop-stimulus_reflex,num_dependents_deps.dev:0 @@ -778247,6 +792431,7 @@ github.com/marcos0x/react-native-wkwebview,num_dependents_deps.dev:0 github.com/marcos30004347/kubernetes-posts,num_dependents_deps.dev:0 github.com/marcosaguilar592/goinit,num_dependents_deps.dev:0 github.com/marcosandrejorge/sweet-alert-vuetify, +github.com/marcosanson/mina-action, github.com/marcosansoni/simple-react-time-picker,num_dependents_deps.dev:0 github.com/marcosap/go-rest,num_dependents_deps.dev:0 github.com/marcosartori/go-github-selfupdate,num_dependents_deps.dev:0 @@ -778289,6 +792474,7 @@ github.com/marcoschwartz/aREST-dummy,num_dependents_deps.dev:0 github.com/marcoschwartz/node-aREST,num_dependents_deps.dev:0 github.com/marcoschwartz/pi-aREST,num_dependents_deps.dev:0 github.com/marcoschwartz/svd-xbee,num_dependents_deps.dev:0 +github.com/marcosconceicao/tigergraph-github-action, github.com/marcoscv-work/mac-lateral-control-menu-themelet,num_dependents_deps.dev:0 github.com/marcosdefontes/tueble,num_dependents_deps.dev:0 github.com/marcosdy/lambda-poc,num_dependents_deps.dev:0 @@ -778464,6 +792650,7 @@ github.com/marcqualie/hiptask,num_dependents_deps.dev:0 github.com/marcradziwill/npm-marcradziwill,num_dependents_deps.dev:0 github.com/marcradziwill/rwill-perf,num_dependents_deps.dev:0 github.com/marcransome/Yakr,num_dependents_deps.dev:0 +github.com/marcransome/remove-ansi-colors, github.com/marcransome/spfy,num_dependents_deps.dev:0 github.com/marcrd/smash-ultimate-assets,num_dependents_deps.dev:0 github.com/marcreichel/angular-carousel,num_dependents_deps.dev:0 @@ -778624,7 +792811,11 @@ github.com/marcuslilja/eslint-config-flair,num_dependents_deps.dev:0 github.com/marcuslilja/stylus-jiggers,num_dependents_deps.dev:0 github.com/marcuslilja/stylus-mq,num_dependents_deps.dev:0 github.com/marcuslimdw/lambdachain, +github.com/marcuslindblom/imagekit, github.com/marcuslindblom/legendary-pancake,num_dependents_deps.dev:0 +github.com/marcuslindblom/security-headers, +github.com/marcuslindblom/w3cvalidator, +github.com/marcuslindblom/yellow-lab-tools, github.com/marcuslindfeldt/react-web-tabs,num_dependents_deps.dev:0 github.com/marcusljx/proto,num_dependents_deps.dev:0 github.com/marcuslongwell/react-state-machine,num_dependents_deps.dev:0 @@ -778698,6 +792889,7 @@ github.com/marcuswhybrow/lojects-dynamodb,num_dependents_deps.dev:0 github.com/marcuswhybrow/nextjs-manifest,num_dependents_deps.dev:0 github.com/marcuswhybrow/strfix,num_dependents_deps.dev:0 github.com/marcuswubi/js-validation-kit,num_dependents_deps.dev:0 +github.com/marcusziade/MoodLint, github.com/marcuxyz/curlify2, github.com/marcuxyz/flore, github.com/marcuxyz/mvc_flask, @@ -779039,7 +793231,10 @@ github.com/mariamayy/webservices_golang,num_dependents_deps.dev:0 github.com/mariamheikal/NodeJS-SDK-,num_dependents_deps.dev:0 github.com/mariamkhmaladze/kg_mariamkhmaladze_2022,num_dependents_deps.dev:0 github.com/mariamrf/murl, +github.com/mariamrf/py-lambda-action, +github.com/mariamrf/py-package-publish-action, github.com/marian-babik/psconfig-client, +github.com/marian-code/python-lint-annotate, github.com/marian-code/ssh-utilities, github.com/marian-code/wikipedia-music-tags, github.com/marian-cojoc-ro/async-log,num_dependents_deps.dev:0 @@ -779146,8 +793341,10 @@ github.com/mariegrosjean/First-CLI-node.js,num_dependents_deps.dev:0 github.com/mariembenslama/golang,num_dependents_deps.dev:0 github.com/marier-nico/event-processor, github.com/marier-nico/pg, +github.com/marier-nico/pr-bump, github.com/marier-nico/venv-wrapper,num_dependents_deps.dev:0 github.com/marieroald/matcouply, +github.com/marigbede/variable-substitution, github.com/marigenhq/genome-py, github.com/marigenhq/genome-reader, github.com/marihachi/EmeraldScript,num_dependents_deps.dev:0 @@ -779332,6 +793529,7 @@ github.com/marioagarcia/marios-weather-app,num_dependents_deps.dev:0 github.com/marioalvial/kealth,num_dependents_deps.dev:0 github.com/marioavs/mdcweb-extension,num_dependents_deps.dev:0 github.com/marioblue/z-admin-pagination,num_dependents_deps.dev:0 +github.com/mariobodemann/slack, github.com/marioboley/alloy-ml, github.com/marioboley/realkd.py, github.com/mariobp/ComponenteX,num_dependents_deps.dev:0 @@ -779587,6 +793785,7 @@ github.com/mariotaddeucci/b3api,num_dependents_deps.dev:0 github.com/mariotaddeucci/packages, github.com/mariotaddeucci/sqlpipe, github.com/mariotaku/nk-spritegen, +github.com/mariotaku/raspbian-sysroot-action, github.com/mariotataje/tb2-api-go,num_dependents_deps.dev:0 github.com/mariotoffia/goasciidoc,num_dependents_deps.dev:0 github.com/mariotoffia/gocm,num_dependents_deps.dev:0 @@ -779642,6 +793841,7 @@ github.com/marissen/stylelint-config,num_dependents_deps.dev:0 github.com/marisusis/logistic-curve,num_dependents_deps.dev:0 github.com/mariten/kanatools-java,num_dependents_deps.dev:0 github.com/maritime-web/arcticweb-usermanual,num_dependents_deps.dev:0 +github.com/maritimeconnectivity/latex-action-mscgen, github.com/maritims/norwegian-ssn-validator,num_dependents_deps.dev:0 github.com/maritimusj/jobs,num_dependents_deps.dev:0 github.com/maritome/cypress-msteams-reporter,num_dependents_deps.dev:0 @@ -779652,6 +793852,7 @@ github.com/mariumaz/discover-go,num_dependents_deps.dev:0 github.com/marius-bronner/typemail,num_dependents_deps.dev:0 github.com/marius-ionescu/react-js-spatial-navigation,num_dependents_deps.dev:0 github.com/marius-ionescu/react-sanitized,num_dependents_deps.dev:0 +github.com/marius-mather/black-check, github.com/marius-ponmersi/project,num_dependents_deps.dev:0 github.com/marius-t/gulp-jade2,num_dependents_deps.dev:0 github.com/marius-wieschollek/csv-hero, @@ -779905,6 +794106,7 @@ github.com/mark-rahal/exact-generator,num_dependents_deps.dev:0 github.com/mark-rolich/Magnifier.js,num_dependents_deps.dev:0 github.com/mark-rolich/RulersGuides.js,num_dependents_deps.dev:0 github.com/mark-ruddy/nasa_api,num_dependents_deps.dev:0 +github.com/mark-ruddy/pytest_django_action, github.com/mark-sch/evcc,num_dependents_deps.dev:0 github.com/mark-sch/evcc-config,num_dependents_deps.dev:0 github.com/mark-shbt/definitely-not-wordle, @@ -779918,6 +794120,7 @@ github.com/mark-wade/homebridge-hive,num_dependents_deps.dev:0 github.com/mark-way2b1/hs1-to-hex,num_dependents_deps.dev:0 github.com/mark-way2b1/stackos,num_dependents_deps.dev:0 github.com/mark-xcode/test,num_dependents_deps.dev:0 +github.com/mark0smith/hexo-action, github.com/mark1626/ntheory,num_dependents_deps.dev:0 github.com/mark170620/qr_decode_api,num_dependents_deps.dev:0 github.com/mark1890/platzom,num_dependents_deps.dev:0 @@ -779944,6 +794147,7 @@ github.com/markab-io/orbital, github.com/markab-io/orbital-api, github.com/markab-io/orbital-templates,num_dependents_deps.dev:0 github.com/markab-io/react-services,num_dependents_deps.dev:0 +github.com/markable-dev/simple-cicd-action, github.com/markablov/megaraid_info,num_dependents_deps.dev:0 github.com/markablov/win_ioctl,num_dependents_deps.dev:0 github.com/markabrahams/node-asn1-ber, @@ -780034,6 +794238,7 @@ github.com/markbattistella/docsify-autoHeaders,num_dependents_deps.dev:0 github.com/markbattistella/docsify-charty,num_dependents_deps.dev:0 github.com/markbattistella/docsify-sidebarFooter,num_dependents_deps.dev:0 github.com/markbattistella/markdown-safe-link,num_dependents_deps.dev:0 +github.com/markbattistella/markdown-safe-link-action, github.com/markbdaniels/image-steam-client,num_dependents_deps.dev:0 github.com/markbegma/homebridge-hdl-buspro,num_dependents_deps.dev:0 github.com/markbentivegna/MLFairnessPipeline, @@ -780226,6 +794431,7 @@ github.com/markdstevens/webpack-bundle-size-limit-plugin,num_dependents_deps.dev github.com/markdturner/ng-computus,num_dependents_deps.dev:0 github.com/markduck/markduck,num_dependents_deps.dev:0 github.com/markdyousef/zen-editor,num_dependents_deps.dev:0 +github.com/markebert/FRC-actions, github.com/markediez/clilib, github.com/markedjs/html-differ,num_dependents_deps.dev:0 github.com/markedjs/marked,"criticality_score:0.706270,num_dependents_deps.dev:34872" @@ -780233,6 +794439,10 @@ github.com/markedjs/marked-custom-heading-id, github.com/markedjs/marked-gfm-heading-id, github.com/markedmondson1234/gago,num_dependents_deps.dev:0 github.com/markeganfuller/pytextgraph, +github.com/markelliot/autorelease, +github.com/markelliot/autosquash, +github.com/markelliot/update-gradle-deps, +github.com/markelliot/update-yarn-deps, github.com/markelog/adit, github.com/markelog/dbuilder,num_dependents_deps.dev:0 github.com/markelog/docker-ip,num_dependents_deps.dev:0 @@ -780304,6 +794514,7 @@ github.com/markevans/treehouse-react,num_dependents_deps.dev:0 github.com/markevans/treehouse-router,num_dependents_deps.dev:0 github.com/markexin/guard,num_dependents_deps.dev:0 github.com/markeyev/pymhelper, +github.com/markeytos/code-sign-action, github.com/markeyys/npm-sg-carplate,num_dependents_deps.dev:0 github.com/markfasheh/duperemove,criticality_score:0.496070 github.com/markfinger/assembla, @@ -780359,6 +794570,7 @@ github.com/markgarrigan/ng-circular-progress,num_dependents_deps.dev:0 github.com/markgdev/OctopusAgile, github.com/markgemmill/kapow, github.com/markgenuine/telegram-bot-api,num_dependents_deps.dev:0 +github.com/markgilbert-git/file-changes-action, github.com/markgillam/go-url-shortener,num_dependents_deps.dev:0 github.com/markgillnz/fhir-resource-generator,num_dependents_deps.dev:0 github.com/markgoho/ngx-emojione,num_dependents_deps.dev:0 @@ -780489,6 +794701,7 @@ github.com/markjen/square-connect-node-sdk,num_dependents_deps.dev:0 github.com/markjfisher/elder-scrolls-legends-sdk-java,num_dependents_deps.dev:0 github.com/markjfisher/tesl-java-sdk,num_dependents_deps.dev:0 github.com/markjforte2000/k8supgradeexample,num_dependents_deps.dev:0 +github.com/markjivko/push-to-github, github.com/markjjackson/tree-data-structure,num_dependents_deps.dev:0 github.com/markjoshwel/datim, github.com/markjoshwel/pymtheg, @@ -780502,6 +794715,7 @@ github.com/markkho/msdm, github.com/markknol/hx-quicksettings,num_dependents_deps.dev:0 github.com/markkohdev/python-env, github.com/markkong318/child-subshell,num_dependents_deps.dev:0 +github.com/markkong318/slack-notification-github-action, github.com/markkorput/aframe-echo-component,num_dependents_deps.dev:0 github.com/markkorput/py2030, github.com/markkorput/pyOmxSync, @@ -780902,6 +795116,8 @@ github.com/markpasc/termtool, github.com/markpash/flowlat,num_dependents_deps.dev:0 github.com/markpash/logibat,num_dependents_deps.dev:0 github.com/markpash/tailscale-sidecar,num_dependents_deps.dev:0 +github.com/markpatterson27/markdown-to-output, +github.com/markpatterson27/points-bar, github.com/markpbaggett/pyrepox, github.com/markpenaranda/ngx-countdown-timer,num_dependents_deps.dev:0 github.com/markpenaranda/ngx-str-pipe,num_dependents_deps.dev:0 @@ -781288,6 +795504,7 @@ github.com/markwillis82/node-threadHandler, github.com/markwillis82/passport-socket.io,num_dependents_deps.dev:0 github.com/markwillis82/todolist,num_dependents_deps.dev:0 github.com/markwillis82/urlTester,num_dependents_deps.dev:0 +github.com/markwilson/html2pdf, github.com/markwilson/logo-generator-webpack-plugin,num_dependents_deps.dev:0 github.com/markwilson/publictweetstream-node,num_dependents_deps.dev:0 github.com/markwinds/godaemon,num_dependents_deps.dev:0 @@ -781398,9 +795615,11 @@ github.com/marlin-dev/startapp, github.com/marlin-fs/marlin-python-client, github.com/marlincq/go-util,num_dependents_deps.dev:0 github.com/marlinprotocol/ctl2,num_dependents_deps.dev:0 +github.com/marlisumarli/sync-github-to-notion, github.com/marlls1989/arv,num_dependents_deps.dev:0 github.com/marlls1989/immutable_string,num_dependents_deps.dev:0 github.com/marlls1989/labeledgraph,num_dependents_deps.dev:0 +github.com/marlluslustosa/actions-example, github.com/marlo22/react-sticky-mouse-tooltip,num_dependents_deps.dev:0 github.com/marlomgirardi/eslint-config,num_dependents_deps.dev:0 github.com/marlomgirardi/react-search,num_dependents_deps.dev:0 @@ -781414,6 +795633,7 @@ github.com/marlon360/express-queue,num_dependents_deps.dev:0 github.com/marlon360/mime-wrapper,num_dependents_deps.dev:0 github.com/marlon360/nifty-uploader,num_dependents_deps.dev:0 github.com/marlonandresbt/ejercicio_grupal_1,num_dependents_deps.dev:0 +github.com/marlonapp/safe-update-action, github.com/marlonbarcarol/enigma-engine, github.com/marlonbarcarol/ts-template, github.com/marloncepeda/scrapgoo,num_dependents_deps.dev:0 @@ -781438,6 +795658,7 @@ github.com/marlonschlosshauer/pepita,num_dependents_deps.dev:0 github.com/marlonschlosshauer/pepita-remover,num_dependents_deps.dev:0 github.com/marloscarmo/transl,num_dependents_deps.dev:0 github.com/marlosirapuan/cra-template-typescript-standard-prettier,num_dependents_deps.dev:0 +github.com/marlosirapuan/dokku-deploy-github-action, github.com/marlospomin/mango,num_dependents_deps.dev:0 github.com/marlospomin/sight,num_dependents_deps.dev:0 github.com/marlospomin/smoothie,num_dependents_deps.dev:0 @@ -781475,6 +795696,7 @@ github.com/marmelab/coPostgresQuery,num_dependents_deps.dev:0 github.com/marmelab/comfygure,num_dependents_deps.dev:0 github.com/marmelab/gql-profiler,num_dependents_deps.dev:0 github.com/marmelab/graphql-schema-from-json,num_dependents_deps.dev:0 +github.com/marmelab/greenframe-action, github.com/marmelab/gremlins.js,"criticality_score:0.386290,num_dependents_deps.dev:14" github.com/marmelab/json-graphql-server,"criticality_score:0.356350,num_dependents_deps.dev:8" github.com/marmelab/koa-multifetch,num_dependents_deps.dev:0 @@ -781520,6 +795742,7 @@ github.com/marmooo/kifu-viewer,num_dependents_deps.dev:0 github.com/marmooo/onkun, github.com/marmooo/spelling-variants-ja,num_dependents_deps.dev:0 github.com/marmooo/yomi-dict,num_dependents_deps.dev:0 +github.com/marmorag/action-install-gh-release, github.com/marmorkuchen/jw2html, github.com/marmos91/winston-decorator,num_dependents_deps.dev:0 github.com/marmoset-gang/quote-bot,num_dependents_deps.dev:0 @@ -781561,11 +795784,20 @@ github.com/maroba/ipysketch, github.com/maroba/manati, github.com/maroba/multipoles, github.com/maroba/physix, +github.com/marocchino/checkbox-action, +github.com/marocchino/on_artifact, github.com/marocchino/postcss-kebab-case-selector,num_dependents_deps.dev:0 +github.com/marocchino/ruby-check-action, github.com/marocchino/selector-normalizer,num_dependents_deps.dev:0 +github.com/marocchino/setup-ecs-cli, +github.com/marocchino/setup-terraform, +github.com/marocchino/sticky-pull-request-comment, +github.com/marocchino/tool-versions-action, +github.com/marocchino/validate-dependabot, github.com/marocraft/trackntrace,num_dependents_deps.dev:0 github.com/maroda/aslsp,num_dependents_deps.dev:0 github.com/marodriguezvi/mycalculator,num_dependents_deps.dev:0 +github.com/marojor/hugo-broken-link-checker, github.com/maronato/logspout-loki,num_dependents_deps.dev:0 github.com/maroofi/csvtool, github.com/marook/gulp-watch-task,num_dependents_deps.dev:0 @@ -781640,6 +795872,7 @@ github.com/marpple/FxJS-DOM,num_dependents_deps.dev:0 github.com/marpple/FxSQL,num_dependents_deps.dev:0 github.com/marpple/FxSVG, github.com/marpple/MQL,num_dependents_deps.dev:0 +github.com/marpple/changelog-action, github.com/marpple/fxdom,num_dependents_deps.dev:0 github.com/marpple/partial.js,num_dependents_deps.dev:0 github.com/marpple/partial.py, @@ -782083,6 +796316,7 @@ github.com/marti1125/culqi-rust,num_dependents_deps.dev:0 github.com/martiL/2d-transformation-solver,num_dependents_deps.dev:0 github.com/martialbe/openccgo,num_dependents_deps.dev:0 github.com/martialghy/little_owl, +github.com/martialonline/workflow-status, github.com/martialonso/modbus-tcp-java,num_dependents_deps.dev:0 github.com/martialonso/simple-net-handler,num_dependents_deps.dev:0 github.com/martialonso/simple-net-protocol-server,num_dependents_deps.dev:0 @@ -782212,6 +796446,7 @@ github.com/martin-helmich/go-varnish-client,num_dependents_deps.dev:0 github.com/martin-helmich/kubernetes-crd-example,num_dependents_deps.dev:0 github.com/martin-helmich/prometheus-nginxlog-exporter,"criticality_score:0.386060,num_dependents_deps.dev:0" github.com/martin-juul/nativescript-astreamer,num_dependents_deps.dev:0 +github.com/martin-key/actions-setup-keychain, github.com/martin-magakian/barnes,num_dependents_deps.dev:0 github.com/martin-majlis/MailGunV3, github.com/martin-majlis/Wikipedia-API, @@ -782225,6 +796460,7 @@ github.com/martin-przystalka/Arbo,num_dependents_deps.dev:0 github.com/martin-przystalka/Cigam,num_dependents_deps.dev:0 github.com/martin-sit/filesplit,num_dependents_deps.dev:0 github.com/martin-sit/proxyscrape,num_dependents_deps.dev:0 +github.com/martin-slater/jekyll-build-action, github.com/martin-stepwolf/60-days-of-code,num_dependents_deps.dev:0 github.com/martin-stone/hsv-alpha-color-picker-android,Google github.com/martin-sucha/justamodel, @@ -782315,6 +796551,7 @@ github.com/martinbean/bootstrap-3-card,num_dependents_deps.dev:0 github.com/martinbean/netlify-plugin-amp-server-side-rendering,num_dependents_deps.dev:0 github.com/martinbechtle/bybit-api,num_dependents_deps.dev:0 github.com/martinbeck/pluribum, +github.com/martinbeentjes/npm-get-version-action, github.com/martinbenes1996/CzechTVSrt, github.com/martinbenes1996/chunkbuster_scraper,num_dependents_deps.dev:0 github.com/martinbenes1996/covid19czechia, @@ -782354,6 +796591,9 @@ github.com/martincjespersen/DaAnonymization, github.com/martinclaus/myturtle, github.com/martinclehman/lambdata-martinclehman, github.com/martincolts/my-encrypter-middleware,num_dependents_deps.dev:0 +github.com/martincostello/rebaser, +github.com/martincostello/update-dotnet-sdk, +github.com/martincostello/update-static-assets, github.com/martincrxz/apns-proxy,num_dependents_deps.dev:0 github.com/martincyoung/terminal_banner, github.com/martindale/confluence,num_dependents_deps.dev:0 @@ -782445,6 +796685,7 @@ github.com/martinfjant/test,num_dependents_deps.dev:0 github.com/martinfleis/clustergram, github.com/martinfleis/greedy, github.com/martinfoakes/foakes-resume,num_dependents_deps.dev:0 +github.com/martinformi/oasdiff-action, github.com/martinfrancois/BoxplotFX,num_dependents_deps.dev:0 github.com/martinfrancois/wdio-mobile-utils, github.com/martingabelmann/ScanLHA, @@ -782460,6 +796701,7 @@ github.com/martingreilinger/ppjg,num_dependents_deps.dev:0 github.com/martingronlund/html-to-anything,num_dependents_deps.dev:0 github.com/martingronlund/nxtpression,num_dependents_deps.dev:0 github.com/martingronlund/thundler,num_dependents_deps.dev:0 +github.com/martingrosche/notion-2-issue, github.com/martinguilhem/twittor,num_dependents_deps.dev:0 github.com/martinhaagmans/ngsscriptlibrary, github.com/martinhackl/use-validation-form,num_dependents_deps.dev:0 @@ -782623,6 +796865,7 @@ github.com/martinkunc/jsgather,num_dependents_deps.dev:0 github.com/martinlabs/generator-martinlabs,num_dependents_deps.dev:0 github.com/martinlackner/abcvoting, github.com/martinlackner/apportionment, +github.com/martinlarka/amplify-cli-action, github.com/martinlarsalbert/motion-to-acceleration, github.com/martinlarsalbert/pyscores2, github.com/martinlarsalbert/research_jupyter_templates, @@ -782695,6 +796938,7 @@ github.com/martinmicunda/ionic-photo-gallery,num_dependents_deps.dev:0 github.com/martinmicunda/mm-mongoose-connection,num_dependents_deps.dev:0 github.com/martinmicunda/mm-node-logger,num_dependents_deps.dev:0 github.com/martinmicunda/mm-node-mailer,num_dependents_deps.dev:0 +github.com/martinmiglio/s3-upload, github.com/martinmilo/react-modulox,num_dependents_deps.dev:0 github.com/martinmoene/optional-lite,criticality_score:0.395750 github.com/martinmoene/span-lite,criticality_score:0.326840 @@ -782799,9 +797043,12 @@ github.com/martinrusev/imbox,criticality_score:0.375520 github.com/martinrusev/solid-node,num_dependents_deps.dev:0 github.com/martinrusso28/go-error_handling,num_dependents_deps.dev:0 github.com/martins-finance/venus-js,num_dependents_deps.dev:0 +github.com/martins-vds/export-secrets-action, +github.com/martins-vds/extract-text-from-labels-action, github.com/martins1930/gradle_plugins,num_dependents_deps.dev:0 github.com/martins1930/jettyMulti,num_dependents_deps.dev:0 github.com/martinsadw/device-mockup,num_dependents_deps.dev:0 +github.com/martinsam16/aci-deploy, github.com/martinsbalodis/css-selector,num_dependents_deps.dev:0 github.com/martinsbalodis/web-scraper-chrome-extension,num_dependents_deps.dev:0 github.com/martinsbicudo/next-global-components,num_dependents_deps.dev:0 @@ -782878,6 +797125,7 @@ github.com/martinus/differential-evolution-rs,num_dependents_deps.dev:0 github.com/martinus/nanobench,criticality_score:0.324610 github.com/martinus/robin-hood-hashing,criticality_score:0.462640 github.com/martinusiron/evermos,num_dependents_deps.dev:0 +github.com/martinusso/action-slack-notify, github.com/martinusso/zx,num_dependents_deps.dev:0 github.com/martinv13/go-shiny,num_dependents_deps.dev:0 github.com/martinv13/node-shiny-proxy,num_dependents_deps.dev:0 @@ -783305,6 +797553,7 @@ github.com/marvink/accordion-light-module-magnolia,num_dependents_deps.dev:0 github.com/marvinkassabian/get-function-arguments,num_dependents_deps.dev:0 github.com/marvinkite/antlr4,num_dependents_deps.dev:0 github.com/marvinklein/react-infinite-editable-list, +github.com/marvinkome/codepush-action, github.com/marvinkome/spotify-sdk,num_dependents_deps.dev:0 github.com/marvinlabs/grunt-wpca,num_dependents_deps.dev:0 github.com/marvinody/mercari, @@ -783315,6 +797564,9 @@ github.com/marvinosswald/angular-oauth2-oidc,num_dependents_deps.dev:0 github.com/marvinosswald/homebridge-amqp, github.com/marvinosswald/itan-store,num_dependents_deps.dev:0 github.com/marvinpfoertner/cholupdates, +github.com/marvinpinto/action-automatic-releases, +github.com/marvinpinto/action-inject-ssm-secrets, +github.com/marvinpinto/action-keybase-notifications, github.com/marvinpinto/charlesbot, github.com/marvinpinto/charlesbot-broadcast-message, github.com/marvinpinto/charlesbot-jira, @@ -783334,6 +797586,7 @@ github.com/marvinroger/node-rcswitch,num_dependents_deps.dev:0 github.com/marvinroger/node-red-contrib-homie,num_dependents_deps.dev:0 github.com/marvinroger/node-systeo-transdev-idf,num_dependents_deps.dev:0 github.com/marvinroger/zetta-lumi-aqara-driver,num_dependents_deps.dev:0 +github.com/marvinscham/get-league-patch, github.com/marvinscharle/mock-cwd,num_dependents_deps.dev:0 github.com/marvinscharle/signature_pad,num_dependents_deps.dev:0 github.com/marvinschopf/academic-tld,num_dependents_deps.dev:0 @@ -783343,6 +797596,8 @@ github.com/marvinschopf/fs-await-exists,num_dependents_deps.dev:0 github.com/marvinschopf/gimmefive,num_dependents_deps.dev:0 github.com/marvinschopf/github-file-exists,num_dependents_deps.dev:0 github.com/marvinschopf/google-safe-browsing,num_dependents_deps.dev:0 +github.com/marvinschopf/install-gcc-arm-none-eabi, +github.com/marvinschopf/install-yotta, github.com/marvinschopf/js-org-validate,num_dependents_deps.dev:0 github.com/marvinschopf/native-countdown,num_dependents_deps.dev:0 github.com/marvinschopf/openthesaurus,num_dependents_deps.dev:0 @@ -783386,6 +797641,7 @@ github.com/marvtdawson/hgm-network-connection-auth,num_dependents_deps.dev:0 github.com/marvynpannetier/iotassignment1,num_dependents_deps.dev:0 github.com/marwaRaboudi/DTF,num_dependents_deps.dev:0 github.com/marwaRaboudi/map,num_dependents_deps.dev:0 +github.com/marwaha-raghav/ssh-agent-ansible, github.com/marwahaha/friendlog,num_dependents_deps.dev:0 github.com/marwan-at-work/authproxy,num_dependents_deps.dev:0 github.com/marwan-at-work/cli,num_dependents_deps.dev:0 @@ -783493,6 +797749,7 @@ github.com/maryrosecook/coquette,num_dependents_deps.dev:0 github.com/maryrosecook/gitlet,num_dependents_deps.dev:0 github.com/maryrosecook/isla,num_dependents_deps.dev:0 github.com/maryrosecook/sunlit,num_dependents_deps.dev:0 +github.com/marysaka/action-equals, github.com/maryshrives/print-number-module,num_dependents_deps.dev:0 github.com/marysieek/react-native-emojis,num_dependents_deps.dev:0 github.com/marysmirnova/crossing-lines,num_dependents_deps.dev:0 @@ -783554,6 +797811,7 @@ github.com/mas99001/grunt-html-split,num_dependents_deps.dev:0 github.com/mas99001/grunt-split-partials,num_dependents_deps.dev:0 github.com/mas99001/grunt-test-akp,num_dependents_deps.dev:0 github.com/masa-4/jojo_api,num_dependents_deps.dev:0 +github.com/masa-iwasaki/setup-rbenv, github.com/masa-su/pixyz,criticality_score:0.298310 github.com/masa-sumimoto/wara,num_dependents_deps.dev:0 github.com/masa16/holiday_japan,num_dependents_deps.dev:2 @@ -783577,6 +797835,7 @@ github.com/masad-frost/unicount, github.com/masadcv/PROPEL, github.com/masadcv/PyTorchHaarFeatures, github.com/masadcv/torchmaxflow, +github.com/masaditya/test-autograde, github.com/masaeedu/do,num_dependents_deps.dev:6 github.com/masaeedu/fp, github.com/masagroup/soft.go,num_dependents_deps.dev:0 @@ -783586,6 +797845,7 @@ github.com/masahide/mysql-audit-proxy,num_dependents_deps.dev:0 github.com/masahiko-ofgp/onigiri,num_dependents_deps.dev:0 github.com/masahikosawada/phint,num_dependents_deps.dev:0 github.com/masahiro331/go-blockcompresser,num_dependents_deps.dev:0 +github.com/masahiro331/go-commitlinter, github.com/masahiro331/go-ext4-filesystem,num_dependents_deps.dev:0 github.com/masahiro331/go-mvn-version,num_dependents_deps.dev:21 github.com/masahiro331/go-vmdk-parser,num_dependents_deps.dev:0 @@ -783703,7 +797963,9 @@ github.com/maschinenlesbareregierung/aowatch-client,num_dependents_deps.dev:0 github.com/maschinenstadt/lib.js,num_dependents_deps.dev:0 github.com/maschmid/eventing-sinkbinding-nouri-reproducer,num_dependents_deps.dev:0 github.com/maschmid/kafkachannel-subscription-ready-before-partition-consumers-started,num_dependents_deps.dev:0 +github.com/masci/datadog, github.com/masci/django-appengine-toolkit, +github.com/masci/elastic-logs, github.com/masci/go-datadog-api,num_dependents_deps.dev:0 github.com/mascii/node-nfcpy-id,num_dependents_deps.dev:0 github.com/masciugo/genealogy,num_dependents_deps.dev:0 @@ -783715,6 +797977,7 @@ github.com/maseb/thicket-zmq-fiber,num_dependents_deps.dev:0 github.com/maseek/highlight.js-cli,num_dependents_deps.dev:0 github.com/maseh87/c3-chart,num_dependents_deps.dev:0 github.com/maseiler/avh-booking-system,num_dependents_deps.dev:0 +github.com/maselious/helm, github.com/masell/cyuuid, github.com/masell/stupid, github.com/masenf/isilon-machinedb, @@ -783834,6 +798097,7 @@ github.com/maskedcoder/little-template,num_dependents_deps.dev:0 github.com/maskedeken/gost-plugin,num_dependents_deps.dev:0 github.com/maskerade/cdk-apex-cname,num_dependents_deps.dev:0 github.com/maskerade/cdk-jsii-demo01, +github.com/maskerade/cfn-guard-action, github.com/maskimko/3ff,num_dependents_deps.dev:0 github.com/maskimko/CliQrGradlePlugin,num_dependents_deps.dev:0 github.com/maskimko/DependencyPublisher,num_dependents_deps.dev:0 @@ -784002,6 +798266,7 @@ github.com/masoud-moeini/GoTo-Pagination, github.com/masoud-moghini/js-kuknos-sdk,num_dependents_deps.dev:0 github.com/masoudir/mavros_python_examples, github.com/masoudir/simple_udp_proxy, +github.com/masoudkarimif/gh-action-lambda-update-slack, github.com/masoudmanson/pod-async,num_dependents_deps.dev:0 github.com/masoudmanson/pod-async-ws-only,num_dependents_deps.dev:0 github.com/masoudmanson/pod-chat,num_dependents_deps.dev:2 @@ -784202,6 +798467,7 @@ github.com/master-atul/scrapper-x,num_dependents_deps.dev:0 github.com/master-atul/seekable-timer,num_dependents_deps.dev:0 github.com/master-coder-ll/v2ray-web-manager,"criticality_score:0.315920,num_dependents_deps.dev:0" github.com/master-cool/js-util,num_dependents_deps.dev:0 +github.com/master-editor/airaction, github.com/master-g/i18n,num_dependents_deps.dev:0 github.com/master-g/protoc-gen-bean,num_dependents_deps.dev:0 github.com/master-g/texturepacker,num_dependents_deps.dev:0 @@ -784295,6 +798561,7 @@ github.com/masterik/create-react-app,num_dependents_deps.dev:0 github.com/masteris777/go-watchfile,num_dependents_deps.dev:0 github.com/masteris777/green-red-cache,num_dependents_deps.dev:0 github.com/masteris777/params-js, +github.com/masterjanic/docker-compose-ssh-deployment, github.com/masterjanic/node-labymod,num_dependents_deps.dev:0 github.com/masterjefferson/agent-finder, github.com/masterkain/Rubywpa,num_dependents_deps.dev:0 @@ -784438,7 +798705,9 @@ github.com/masushin/extrom, github.com/masuta16/Raizen_ANP_Challenge2022, github.com/masuta16/calculaHash, github.com/masutaka/cobra-sandbox,num_dependents_deps.dev:0 +github.com/masutaka/github-actions-all-in-one-project, github.com/masutaka/github-nippou,num_dependents_deps.dev:0 +github.com/masutaka/tfupdate-github-actions, github.com/masuyama13/music-length-calculator,num_dependents_deps.dev:0 github.com/masv3971/humantouch,num_dependents_deps.dev:0 github.com/masvis/openvpn-cli-wrapper, @@ -784600,6 +798869,7 @@ github.com/matanasow/NgTestLib,num_dependents_deps.dev:0 github.com/matandro/RNAsfbinv, github.com/matang28/ng2-fiix-layout,num_dependents_deps.dev:0 github.com/matankb/fetch-reject,num_dependents_deps.dev:0 +github.com/matankdr/github-docker-sbt, github.com/matanmarkind/active_standby,num_dependents_deps.dev:0 github.com/matanmazor/preRNG, github.com/matannoam/SimpleQuery, @@ -784636,6 +798906,8 @@ github.com/matcha-tools/graphql-matcha,num_dependents_deps.dev:0 github.com/matcha440/express-gateway-test-tools, github.com/matcha440/hello-node-pipelines,num_dependents_deps.dev:0 github.com/matchabot/matcha-bot, +github.com/matchai/bird-box, +github.com/matchai/heads-up, github.com/matchai/spacefish,criticality_score:0.461020 github.com/matchai/ts-quick,num_dependents_deps.dev:0 github.com/matchai/waka-box,criticality_score:0.332720 @@ -784691,6 +798963,7 @@ github.com/matchtune-sdk/python-sdk, github.com/matchup-ir/mrank,num_dependents_deps.dev:0 github.com/matchup-ir/whooshy, github.com/matclab/pytest-tblineinfo, +github.com/matco/action-connectiq-tester, github.com/matco/basic-table,num_dependents_deps.dev:0 github.com/matco/basic-tools,num_dependents_deps.dev:0 github.com/matcool/anvil-parser, @@ -784705,6 +798978,7 @@ github.com/matdieuhau999/udp,num_dependents_deps.dev:0 github.com/matdombrock/SteelSky, github.com/matdombrock/lifx-zero,num_dependents_deps.dev:0 github.com/matdombrock/verbose-zero,num_dependents_deps.dev:0 +github.com/matdurand/conventional-version-bump-check, github.com/matdurand/enhance-ga-workflow-yaml,num_dependents_deps.dev:0 github.com/matdurand/gcp-tools,num_dependents_deps.dev:0 github.com/matdurand/go-import-checks,num_dependents_deps.dev:0 @@ -784855,6 +799129,7 @@ github.com/mateogianolio/sshync,num_dependents_deps.dev:0 github.com/mateogianolio/vectorious,"criticality_score:0.392650,num_dependents_deps.dev:0" github.com/mateoguaman/httprequests, github.com/mateoguzman/nsp-formatter-teamcity,num_dependents_deps.dev:0 +github.com/mateoguzmana/semantic-pr-composer, github.com/mateoholman/react-welcome-user,num_dependents_deps.dev:0 github.com/mateom24/ecatholic,num_dependents_deps.dev:0 github.com/mateom24/imagecreator,num_dependents_deps.dev:0 @@ -784874,6 +799149,7 @@ github.com/mateors/mcb,num_dependents_deps.dev:0 github.com/mateors/msql,num_dependents_deps.dev:0 github.com/mateosilguero/consistencss,num_dependents_deps.dev:0 github.com/mateosss/matter,criticality_score:0.311780 +github.com/mateothegreat/action-release, github.com/mateothegreat/discord-bot-javascript-evaluator,num_dependents_deps.dev:0 github.com/mateothegreat/ng-commons-lib,num_dependents_deps.dev:0 github.com/mateothegreat/ngxux-mat-dialog,num_dependents_deps.dev:0 @@ -785124,6 +799400,7 @@ github.com/mateumann/clouseau,num_dependents_deps.dev:0 github.com/mateus-araujo/cep-address-finder,num_dependents_deps.dev:0 github.com/mateus4k/currency-to-float,num_dependents_deps.dev:0 github.com/mateusKoppe/generator-batangularjs,num_dependents_deps.dev:0 +github.com/mateusabelli/pr-tracker, github.com/mateusamin/requests-aws-iam-auth, github.com/mateusamin/x,num_dependents_deps.dev:0 github.com/mateusbello/cordova-plugin-fastrde-injectview,num_dependents_deps.dev:0 @@ -785137,6 +799414,7 @@ github.com/mateuscalza/foreground,num_dependents_deps.dev:0 github.com/mateuscalza/gradient-partitioner,num_dependents_deps.dev:0 github.com/mateuscalza/stormbox,num_dependents_deps.dev:0 github.com/mateuscalza/websystem,num_dependents_deps.dev:0 +github.com/mateuschaves/notify-ms-teams-github-fix, github.com/mateuscomp/bot_ai, github.com/mateusconstanzo/e2ejs,num_dependents_deps.dev:0 github.com/mateusdeitos/codegen,num_dependents_deps.dev:0 @@ -785220,6 +799498,7 @@ github.com/mateuszdyminski/operator,num_dependents_deps.dev:0 github.com/mateuszdyminski/png2jpeg,num_dependents_deps.dev:0 github.com/mateuszdyminski/stocks,num_dependents_deps.dev:0 github.com/mateuszgachowski/Carpet.js,num_dependents_deps.dev:0 +github.com/mateuszgachowski/human-readable-id-action, github.com/mateuszgachowski/nuxt-ioc,num_dependents_deps.dev:0 github.com/mateuszgiza/rust-sdl2-extras,num_dependents_deps.dev:0 github.com/mateuszjanczak/payment-qr-code,num_dependents_deps.dev:0 @@ -785244,6 +799523,7 @@ github.com/mateuszmigas/composite-viewer-2d,num_dependents_deps.dev:0 github.com/mateuszmigas/react-dropdown,num_dependents_deps.dev:0 github.com/mateuszmigas/react-union-state,num_dependents_deps.dev:0 github.com/mateuszobara/css-shapes,num_dependents_deps.dev:0 +github.com/mateuszokroj1/VCPKG-package-builder, github.com/mateuszos/ngx-wysiwyg-markdown-editor,num_dependents_deps.dev:0 github.com/mateuszroth/create-react-app-perf,num_dependents_deps.dev:0 github.com/mateuszsikora/ohm-loader,num_dependents_deps.dev:0 @@ -785259,6 +799539,7 @@ github.com/mateutek/homebridge-xiaomi-gateway,num_dependents_deps.dev:0 github.com/matevip/matecloud,num_dependents_deps.dev:124 github.com/matevzmihalic/docpad-plugin-fontface,num_dependents_deps.dev:0 github.com/matevzmihalic/mqttpackets,num_dependents_deps.dev:0 +github.com/matevzsemprimoznik/portainer-actions, github.com/matewhoy/random-messages-npm, github.com/matewka/gulp-uglicssy,num_dependents_deps.dev:0 github.com/matewka/uglicssy,num_dependents_deps.dev:0 @@ -785454,6 +799735,7 @@ github.com/mathealgou/power_terminal, github.com/mathec-x/express-router-framework,num_dependents_deps.dev:0 github.com/mathec-x/react-pwa-app,num_dependents_deps.dev:0 github.com/mathehertogh/adeles, +github.com/mathematic-inc/setup-buf, github.com/mathematicalmichael/cafelytics, github.com/mathematicalmichael/mud, github.com/mathematicalmichael/mud-examples, @@ -785485,6 +799767,7 @@ github.com/matheus-rocha/golang,num_dependents_deps.dev:0 github.com/matheus-vieira/request-files,num_dependents_deps.dev:0 github.com/matheus23/elm-default-tailwind-modules,num_dependents_deps.dev:0 github.com/matheus23/elm-tailwind-modules,num_dependents_deps.dev:0 +github.com/matheus23/md-spellcheck-action, github.com/matheusAle/vuex-tools, github.com/matheusBizutti/rx-http,num_dependents_deps.dev:0 github.com/matheusMelchiades/react-native-template,num_dependents_deps.dev:0 @@ -785549,6 +799832,8 @@ github.com/matheushr97/golang-clean-architecture,num_dependents_deps.dev:0 github.com/matheushrt/carbon-telegram-bot, github.com/matheusiacono/libzera,num_dependents_deps.dev:0 github.com/matheusiacono/life-snakes,num_dependents_deps.dev:0 +github.com/matheusjardimb/i18next-resources-validator-action, +github.com/matheusjardimb/js-exact-dependency-action, github.com/matheusjerico/golang-course,num_dependents_deps.dev:0 github.com/matheuskolln/scrapinsta, github.com/matheuskuster/react-cep-promise,num_dependents_deps.dev:0 @@ -785591,6 +799876,7 @@ github.com/matheusphalves/generic-web-server, github.com/matheuspiaui/api-ecb,num_dependents_deps.dev:0 github.com/matheuspiaui/broderagem,num_dependents_deps.dev:0 github.com/matheuspiaui/netlify-cms,num_dependents_deps.dev:0 +github.com/matheuspiment/list-pr-files, github.com/matheuspiment/sigaa-egressos,num_dependents_deps.dev:0 github.com/matheuspoleza/angular-register,num_dependents_deps.dev:0 github.com/matheuspoleza/grunt-single-test,num_dependents_deps.dev:0 @@ -785612,8 +799898,11 @@ github.com/matheusrabelo/pimage,num_dependents_deps.dev:0 github.com/matheusrabelo/tabler-components,num_dependents_deps.dev:0 github.com/matheusrabelo/wora, github.com/matheusramos/ultratest,num_dependents_deps.dev:0 +github.com/matheusraz/check-existing-tag-action, +github.com/matheusraz/ref-sha, github.com/matheusrocha-mb/goproject,num_dependents_deps.dev:0 github.com/matheusrod92/redux-packish,num_dependents_deps.dev:0 +github.com/matheusrosmano/artifact-remove, github.com/matheusroversi/omdb-wrapper,num_dependents_deps.dev:0 github.com/matheusroversi/spotify-wrapper,num_dependents_deps.dev:0 github.com/matheusrsilva/superlogica_node,num_dependents_deps.dev:0 @@ -785635,7 +799924,9 @@ github.com/matheussl/django-ios-notification, github.com/matheussll/react-native-radio-stream,num_dependents_deps.dev:0 github.com/matheust3/mtNEATpy, github.com/matheusvanzan/chromepy, +github.com/matheusvanzan/sshpass-action, github.com/matheusvanzan/whatspy, +github.com/matheusvellone/labels-as-parameters, github.com/matheusviegas/software-delivery-maven-plugin,num_dependents_deps.dev:0 github.com/matheuswhite/bluebees, github.com/matheusxaviersi/thread-js,num_dependents_deps.dev:0 @@ -785844,6 +800135,7 @@ github.com/mathiasbynens/windows-874,num_dependents_deps.dev:22 github.com/mathiasbynens/wtf-8, github.com/mathiasbynens/x-mac-cyrillic,num_dependents_deps.dev:22 github.com/mathiascorona/layout_k360,num_dependents_deps.dev:0 +github.com/mathiascouste/qglwebrunner-action, github.com/mathiasdonoso/consultasaludcl,num_dependents_deps.dev:0 github.com/mathiasdonoso/gitnore,num_dependents_deps.dev:0 github.com/mathiasertl/django-ca, @@ -785899,6 +800191,7 @@ github.com/mathiasvr/ascii-pixels,num_dependents_deps.dev:2 github.com/mathiasvr/audio-oscilloscope,num_dependents_deps.dev:0 github.com/mathiasvr/cache-storage-chunk-store,num_dependents_deps.dev:0 github.com/mathiasvr/chop-stream,num_dependents_deps.dev:18 +github.com/mathiasvr/command-output, github.com/mathiasvr/danish-ssn,num_dependents_deps.dev:0 github.com/mathiasvr/ebml-block,num_dependents_deps.dev:34 github.com/mathiasvr/matroska-subtitles,num_dependents_deps.dev:0 @@ -785915,6 +800208,9 @@ github.com/mathics/Mathics,criticality_score:0.582880 github.com/mathieu-anderson/is-vegan, github.com/mathieu-aubin/xtinypng-cli,num_dependents_deps.dev:0 github.com/mathieu-bour/dotenv-to-yaml,num_dependents_deps.dev:0 +github.com/mathieu-bour/setup-gcloud, +github.com/mathieu-bour/setup-sentry-cli, +github.com/mathieu-bour/square, github.com/mathieu-ferraton/velero,num_dependents_deps.dev:0 github.com/mathieu-lemay/pipeline-runner, github.com/mathieu/changelog-cli, @@ -785939,6 +800235,7 @@ github.com/mathieudutour/eslint-config-sketch,num_dependents_deps.dev:0 github.com/mathieudutour/eslint-plugin-no-not-accumulator-reassign,num_dependents_deps.dev:4 github.com/mathieudutour/gatsby-digital-garden,num_dependents_deps.dev:4 github.com/mathieudutour/gatsby-n-roamresearch,num_dependents_deps.dev:0 +github.com/mathieudutour/github-tag-action, github.com/mathieudutour/go-to-sleep,num_dependents_deps.dev:0 github.com/mathieudutour/jest-pixel-perfect,num_dependents_deps.dev:0 github.com/mathieudutour/js-fatigue,num_dependents_deps.dev:0 @@ -786133,6 +800430,7 @@ github.com/mathnet/mathnet-symbolics,criticality_score:0.337650 github.com/mathnogueira/imdb-api,num_dependents_deps.dev:0 github.com/mathnogueira/react-masked-input-text,num_dependents_deps.dev:0 github.com/mathnogueira/react-native-cardview28,num_dependents_deps.dev:0 +github.com/mathnogueira/user-blocklist, github.com/mathnuts/suptitles,num_dependents_deps.dev:0 github.com/mathoj/webkit,num_dependents_deps.dev:0 github.com/matholum/npm-openssl-selfsigned, @@ -786164,6 +800462,7 @@ github.com/mathren/compare_workdir_MESA, github.com/mathriddle/ColabTurtlePlus, github.com/mathrithms/BunnyCDN-Python-Lib, github.com/mathrithms/Django-Hexadecimal-Field, +github.com/mathrix-education/sonar-scanner, github.com/mathrobin/codepostaux,num_dependents_deps.dev:0 github.com/mathrobin/numero-securitesociale,num_dependents_deps.dev:0 github.com/mathroule/cellartracker, @@ -786205,7 +800504,9 @@ github.com/mathy/mathy_pydoc, github.com/mathyingzhou/yingbox, github.com/mathysjtaljaard/go-training,num_dependents_deps.dev:0 github.com/mathyslv/nestjs-sequelize-pagination,num_dependents_deps.dev:0 +github.com/mathze/workflow-dispatch-action, github.com/mati-dev/react-mail-feedback,num_dependents_deps.dev:0 +github.com/mati1/regex-file-content-match, github.com/mati1979/spring-soy-view,num_dependents_deps.dev:0 github.com/matiNap/react-native-simple,num_dependents_deps.dev:0 github.com/matianfu/impress,num_dependents_deps.dev:0 @@ -786218,6 +800519,7 @@ github.com/matias-hhh/carma,num_dependents_deps.dev:0 github.com/matias-hhh/flaksi,num_dependents_deps.dev:0 github.com/matias-kovero/svelte-spotify-web-playback,num_dependents_deps.dev:0 github.com/matias-kovero/tarkov,num_dependents_deps.dev:0 +github.com/matias-martini/flake8-pr-comments-action, github.com/matias-pierobon/ionic-featurer,num_dependents_deps.dev:0 github.com/matias2588/angular2-select,num_dependents_deps.dev:0 github.com/matias2588/ng2-drag-drop,num_dependents_deps.dev:0 @@ -786275,6 +800577,7 @@ github.com/matiasmenker/styled-react-autocomplete,num_dependents_deps.dev:0 github.com/matiasnamendola/amount-ts,num_dependents_deps.dev:0 github.com/matiasngf/limbsGenerator, github.com/matiasniz/platzitraductor,num_dependents_deps.dev:0 +github.com/matiasnu/github-action-ssh-docker-compose, github.com/matiasow/cardamom,num_dependents_deps.dev:0 github.com/matiasow/xsr,num_dependents_deps.dev:0 github.com/matiassingers/airport-lookup,num_dependents_deps.dev:0 @@ -786363,13 +800666,17 @@ github.com/maticzav/ink-table,num_dependents_deps.dev:82 github.com/maticzav/label-sync,num_dependents_deps.dev:0 github.com/maticzav/nookies,"criticality_score:0.514330,num_dependents_deps.dev:56" github.com/maticzav/prisma-faker,num_dependents_deps.dev:0 +github.com/maticzav/resk, github.com/maticzav/semantha,num_dependents_deps.dev:0 github.com/maticzav/sponsorsme,num_dependents_deps.dev:0 github.com/matidiaz00/auto-sprite,num_dependents_deps.dev:0 github.com/matidiaz00/extended-build-manager-webpack-plugin,num_dependents_deps.dev:0 github.com/matids/react-mini-feedback,num_dependents_deps.dev:0 github.com/matiere-noire/redux-websocket-autoreconnect,num_dependents_deps.dev:0 +github.com/matievisthekat/poop-stats, +github.com/matievisthekat/poopmap-bio, github.com/matievisthekat/spotify-oauth-refresher,num_dependents_deps.dev:0 +github.com/matifali/update-coder-template, github.com/matihaure/go,num_dependents_deps.dev:0 github.com/matija077/minus5,num_dependents_deps.dev:0 github.com/matijabogdanovic/aiohttp-openapi, @@ -786379,6 +800686,7 @@ github.com/matijakolaric-com/django-music-publisher, github.com/matijakrajnik/fynegoroutines,num_dependents_deps.dev:0 github.com/matijakrajnik/rgb_go_selenium,num_dependents_deps.dev:0 github.com/matijapretnar/eff,criticality_score:0.371010 +github.com/matijavibe/build-rpm, github.com/matijs/click-handler, github.com/matijs/eslint-plugin-this,num_dependents_deps.dev:0 github.com/matijs/fauxcus,num_dependents_deps.dev:0 @@ -786398,6 +800706,7 @@ github.com/matinhimself/trie,num_dependents_deps.dev:0 github.com/matiniiuu/go-grpc,num_dependents_deps.dev:0 github.com/matinrezakhani/datepicker-jalali-react,num_dependents_deps.dev:0 github.com/matinwood/godm,num_dependents_deps.dev:0 +github.com/matinzd/cafebazaar-release, github.com/matinzd/react-native-audio-streamer,num_dependents_deps.dev:0 github.com/matinzd/react-native-rtmpview,num_dependents_deps.dev:0 github.com/matinzd/rn-bottom-sheet,num_dependents_deps.dev:0 @@ -786442,6 +800751,7 @@ github.com/matiu/blockextractor,num_dependents_deps.dev:0 github.com/matiu/dolar-blue, github.com/matiu/entongue,num_dependents_deps.dev:0 github.com/matiu/generate-wallet, +github.com/matiuhart/vaultwarden-replace-secrets-action, github.com/matiullah-karimi/ngx-modal-bootstrap,num_dependents_deps.dev:0 github.com/matiush-tejn/backend-project-lvl1,num_dependents_deps.dev:0 github.com/matiussmith12/learning-golang,num_dependents_deps.dev:0 @@ -786531,6 +800841,10 @@ github.com/matkor/ecoaliface, github.com/matkrin/mulfile, github.com/matkrzy/react-context-factory,num_dependents_deps.dev:0 github.com/matkrzy/react-css-theming,num_dependents_deps.dev:0 +github.com/matlab-actions/run-build, +github.com/matlab-actions/run-command, +github.com/matlab-actions/run-tests, +github.com/matlab-actions/setup-matlab, github.com/matlab2tikz/matlab2tikz,criticality_score:0.327070 github.com/matlapo/binstore,num_dependents_deps.dev:0 github.com/matlin/node-university-domains,num_dependents_deps.dev:0 @@ -786549,6 +800863,7 @@ github.com/matloff/pydsm, github.com/matloob/regexp,num_dependents_deps.dev:0 github.com/matloob/schmutzie_dog_names,num_dependents_deps.dev:0 github.com/matm/jwt-go,num_dependents_deps.dev:0 +github.com/matmair/PanelizePublic, github.com/matmalkowski/create-react-resume,num_dependents_deps.dev:0 github.com/matmalkowski/docz-knobs,num_dependents_deps.dev:0 github.com/matmalkowski/package-version-suffix,num_dependents_deps.dev:0 @@ -786570,6 +800885,7 @@ github.com/matmanjs/mock-with, github.com/matmanjs/record-interaction-for-html, github.com/matmanjs/web-crawl-util,num_dependents_deps.dev:0 github.com/matmar10/abi-to-yargs,num_dependents_deps.dev:0 +github.com/matmar10/add-issues-to-project, github.com/matmar10/angular-auth-bearer-token,num_dependents_deps.dev:0 github.com/matmar10/angular-error-stack,num_dependents_deps.dev:0 github.com/matmar10/blockscore-id-doc-types,num_dependents_deps.dev:0 @@ -786577,9 +800893,11 @@ github.com/matmar10/grunt-bower-update-main,num_dependents_deps.dev:0 github.com/matmar10/grunt-env-config-to-file,num_dependents_deps.dev:0 github.com/matmar10/grunt-heroku-branch,num_dependents_deps.dev:0 github.com/matmar10/grunt-konphyg,num_dependents_deps.dev:0 +github.com/matmar10/heroku-review-app, github.com/matmar10/jasmine-cucumber-steps,num_dependents_deps.dev:0 github.com/matmar10/json-settings-schema,num_dependents_deps.dev:0 github.com/matmar10/just-api,num_dependents_deps.dev:0 +github.com/matmar10/prcolinter, github.com/matmar10/protractor-cucumber-mink,num_dependents_deps.dev:0 github.com/matmar10/sequelize-lazy-migrations,num_dependents_deps.dev:0 github.com/matmar10/simple-open-exchange-rates,num_dependents_deps.dev:0 @@ -786651,8 +800969,11 @@ github.com/matomo-org/matomo-nodejs-tracker,num_dependents_deps.dev:10 github.com/matomo-org/matomo-sdk-ios,criticality_score:0.452700 github.com/matomo-org/referrer-spam-list,criticality_score:0.385360 github.com/matomo-org/searchengine-and-social-list,num_dependents_deps.dev:0 +github.com/matootie/dokube, +github.com/matootie/github-docker, github.com/matoous/ezmail,num_dependents_deps.dev:0 github.com/matoous/go-nanoid,"criticality_score:0.343930,num_dependents_deps.dev:16" +github.com/matoous/golangci-lint-action, github.com/matoous/linkfix,num_dependents_deps.dev:0 github.com/matoous/mailback,num_dependents_deps.dev:0 github.com/matoous/mnemoname,num_dependents_deps.dev:0 @@ -786723,6 +801044,7 @@ github.com/matricks/teeworlds,criticality_score:0.310330 github.com/matrinos/iot-cadence-go-core,num_dependents_deps.dev:0 github.com/matriphe/font-linux,num_dependents_deps.dev:0 github.com/matriphe/github-stats,num_dependents_deps.dev:0 +github.com/matriphe/laravel-pkg-test-action, github.com/matriphe/matriphe-scss,num_dependents_deps.dev:0 github.com/matrism/shahrul_testnodejs,num_dependents_deps.dev:0 github.com/matrix-discord/matrix-discord-parser,num_dependents_deps.dev:0 @@ -786866,6 +801188,7 @@ github.com/matryer/moq,"criticality_score:0.423110,num_dependents_deps.dev:79" github.com/matryer/thru,num_dependents_deps.dev:0 github.com/matryer/xbar,num_dependents_deps.dev:0 github.com/matryx/vuethereum,num_dependents_deps.dev:0 +github.com/matryxxx02/vault-action, github.com/mats16/cdk-ses-helpers,num_dependents_deps.dev:0 github.com/mats16/cdk-ses-smtp-secret,num_dependents_deps.dev:0 github.com/mats68/create-react-app,num_dependents_deps.dev:0 @@ -786879,6 +801202,8 @@ github.com/matsadler/clacks,num_dependents_deps.dev:0 github.com/matsadler/halton,num_dependents_deps.dev:0 github.com/matsadler/mini-unit,num_dependents_deps.dev:0 github.com/matsadler/path-template,num_dependents_deps.dev:0 +github.com/matsavage/DND-5e-LaTeX-Action, +github.com/matsavage/dnd-latex-action, github.com/matsbauer/PySynonym, github.com/matschaffer/capybara_rails,num_dependents_deps.dev:0 github.com/matschaffer/ec2manage,num_dependents_deps.dev:0 @@ -786914,6 +801239,7 @@ github.com/matssom/accessible-reset,num_dependents_deps.dev:0 github.com/matssom/amidst,num_dependents_deps.dev:0 github.com/matssom/svelte-storable,num_dependents_deps.dev:0 github.com/matst80/TinyCMS,num_dependents_deps.dev:0 +github.com/matst80/slask-action, github.com/matsu-chara/gitbook-plugin-tut-to-scala,num_dependents_deps.dev:0 github.com/matsu-chara/hubot-downloads-from-flurry,num_dependents_deps.dev:0 github.com/matsu-chara/hubot-feed-from-feedly,num_dependents_deps.dev:0 @@ -786928,6 +801254,7 @@ github.com/matsubara0507/go-etcd-sandbox,num_dependents_deps.dev:0 github.com/matsubara0507/html-to-mrkdwn-go,num_dependents_deps.dev:0 github.com/matsubo/spike-ruby,num_dependents_deps.dev:0 github.com/matsubo/web_update_checker,num_dependents_deps.dev:0 +github.com/matsubo/write-code-and-create-pr-from-issue-by-chatgpt, github.com/matsuby/easydot,num_dependents_deps.dev:0 github.com/matsuei/golangatcoder,num_dependents_deps.dev:0 github.com/matsuhav/charm,num_dependents_deps.dev:0 @@ -786986,11 +801313,13 @@ github.com/matszpk/godec64,num_dependents_deps.dev:0 github.com/matt-/NativeModule,num_dependents_deps.dev:0 github.com/matt-/jedi-mind-tricks,num_dependents_deps.dev:0 github.com/matt-42/lithium,criticality_score:0.345890 +github.com/matt-FFFFFF/simple-semver, github.com/matt-allan/laravel-code-style,criticality_score:0.348140 github.com/matt-allan/rollup-plugin-terser, github.com/matt-allan/rollup-plugin-uglify, github.com/matt-auckland/ngx-i18n-report,num_dependents_deps.dev:0 github.com/matt-bailey/generator-bones,num_dependents_deps.dev:0 +github.com/matt-ball/newman-action, github.com/matt-ball/newman-reporter-csv, github.com/matt-ball/postman-cli,num_dependents_deps.dev:0 github.com/matt-bendel/react-info-carousel,num_dependents_deps.dev:0 @@ -787140,9 +801469,11 @@ github.com/matt-tingen/jest-macros,num_dependents_deps.dev:0 github.com/matt-tingen/react-hooks, github.com/matt-tingen/util,num_dependents_deps.dev:0 github.com/matt-usurp/genie, +github.com/matt-usurp/npm-publish, github.com/matt-usurp/pilgrim,num_dependents_deps.dev:0 github.com/matt-usurp/remedy,num_dependents_deps.dev:0 github.com/matt-usurp/tagged-types,num_dependents_deps.dev:0 +github.com/matt-usurp/validate-semver, github.com/matt-ward/node-dyno-to-csv,num_dependents_deps.dev:0 github.com/matt-ward/node-protector,num_dependents_deps.dev:0 github.com/matt-way/block-one,num_dependents_deps.dev:0 @@ -787194,6 +801525,7 @@ github.com/mattak/siga,num_dependents_deps.dev:0 github.com/mattak/stonk,num_dependents_deps.dev:0 github.com/mattalco/cordova-privacy-screen-plugin-mra,num_dependents_deps.dev:0 github.com/mattallty/Caporal.js,"criticality_score:0.430770,num_dependents_deps.dev:188" +github.com/mattallty/jest-github-action, github.com/mattallty/micromist,num_dependents_deps.dev:982 github.com/mattallty/muguet,num_dependents_deps.dev:0 github.com/mattandy/c,num_dependents_deps.dev:0 @@ -787217,6 +801549,7 @@ github.com/mattaylor/emoosc,num_dependents_deps.dev:0 github.com/mattaylor/jsref, github.com/mattaylor/loopback-connector-orientdb,num_dependents_deps.dev:0 github.com/mattaylor/node-red-contrib-madlib,num_dependents_deps.dev:0 +github.com/mattbailey/actions-hugo, github.com/mattbailey/manage-t1,num_dependents_deps.dev:0 github.com/mattbailey/pure,num_dependents_deps.dev:0 github.com/mattbailey/reviewdog,num_dependents_deps.dev:0 @@ -787349,6 +801682,7 @@ github.com/mattboldt/typed.js,"criticality_score:0.401160,num_dependents_deps.de github.com/mattboran/SelectiveSwiftLinter, github.com/mattboran/hue-cli, github.com/mattboran/hue_py, +github.com/mattborghi/merge-upstream, github.com/mattbornski/cardinality,num_dependents_deps.dev:0 github.com/mattbornski/libphonenumber,num_dependents_deps.dev:10 github.com/mattbornski/tzwhere,num_dependents_deps.dev:0 @@ -787459,6 +801793,7 @@ github.com/mattcui/ibm-global-search-client,num_dependents_deps.dev:0 github.com/mattcwilde/pyslime, github.com/mattcwilde/vetrr, github.com/mattd3v/jscaldav,num_dependents_deps.dev:0 +github.com/mattd3v/mkd2xml, github.com/mattdamon108/go-graphql-api-boilerplate,num_dependents_deps.dev:0 github.com/mattdamon108/gw,num_dependents_deps.dev:0 github.com/mattdamon108/hoodux,num_dependents_deps.dev:0 @@ -787474,6 +801809,11 @@ github.com/mattdanielmurphy/fractionize,num_dependents_deps.dev:0 github.com/mattdanielmurphy/pirateer, github.com/mattdanielmurphy/variable-reference-lister,num_dependents_deps.dev:0 github.com/mattdavis0351/lab-creator,num_dependents_deps.dev:0 +github.com/mattdavis0351/packet-create-ansible-inventory, +github.com/mattdavis0351/packet-create-device, +github.com/mattdavis0351/packet-create-device-batch, +github.com/mattdavis0351/packet-create-project, +github.com/mattdavis0351/packet-create-user-ssh-key, github.com/mattdavis90/base10, github.com/mattdavis90/node-red-contrib-tado-client,num_dependents_deps.dev:0 github.com/mattdavis90/node-tado-client, @@ -787814,6 +802154,7 @@ github.com/mattdsteele/gulp-dart-sass,num_dependents_deps.dev:14 github.com/mattdsteele/java-properties,num_dependents_deps.dev:2356 github.com/mattdsteele/joy-con-element, github.com/mattdsteele/paprika-api,num_dependents_deps.dev:0 +github.com/mattdsteele/particle-action, github.com/mattdsteele/prettify-theme-monokai,num_dependents_deps.dev:0 github.com/mattdsteele/stencil-wrapped-angularjs-example, github.com/mattdttam/react-native-android-hikvideo-matt,num_dependents_deps.dev:0 @@ -787861,6 +802202,7 @@ github.com/matteo-hertel/generator-polymer-init-polymer-3-element,num_dependents github.com/matteo-hertel/party-parrot,num_dependents_deps.dev:0 github.com/matteo-hertel/sandbox,num_dependents_deps.dev:0 github.com/matteo-rigon/vue-screen,num_dependents_deps.dev:0 +github.com/matteo4diani/poetry-semantic-release, github.com/matteoagosti/hubot-dropbox-notifier,num_dependents_deps.dev:0 github.com/matteoagosti/hubot-mail-notifier,num_dependents_deps.dev:0 github.com/matteoagosti/node-request-caching,num_dependents_deps.dev:0 @@ -787960,6 +802302,7 @@ github.com/matteomattei/react-autosuggest,num_dependents_deps.dev:0 github.com/matteomenapace/emoji-data-2016,num_dependents_deps.dev:0 github.com/matteomeneghetti/pycuteweb, github.com/matteomessmer/colored-grid,num_dependents_deps.dev:0 +github.com/matteopic/therion-container, github.com/matteoraf/chartist-js,num_dependents_deps.dev:0 github.com/matteoraf/chartist-plugin-legend,num_dependents_deps.dev:0 github.com/matteoraf/chartist-plugin-tooltip,num_dependents_deps.dev:0 @@ -788135,6 +802478,10 @@ github.com/matterport/Mask_RCNN,criticality_score:0.474850 github.com/mattersolutions/matter-kit,num_dependents_deps.dev:0 github.com/matterway/redux-devtools, github.com/matterway/verdaccio-auth0-ui,num_dependents_deps.dev:0 +github.com/mattes/cached-docker-build-action, +github.com/mattes/gce-cloudsql-proxy-action, +github.com/mattes/gce-deploy-action, +github.com/mattes/gce-docker-push-action, github.com/mattes/geonames-postal-codes-import-nodejs,num_dependents_deps.dev:0 github.com/mattes/google-cloud-kms-csr,num_dependents_deps.dev:0 github.com/mattes/google_cloud_run,num_dependents_deps.dev:0 @@ -788230,6 +802577,7 @@ github.com/mattgrill/NPM-Doctor,num_dependents_deps.dev:0 github.com/mattgrill/nubi,num_dependents_deps.dev:0 github.com/mattgrill/qs-constructor, github.com/mattgrill/uniquify,num_dependents_deps.dev:0 +github.com/mattgrul/satis-to-artifact-action, github.com/mattgstevens/crypto-address-checker,num_dependents_deps.dev:0 github.com/matth/chart-topper,num_dependents_deps.dev:0 github.com/matth/growl-atom,num_dependents_deps.dev:0 @@ -788237,6 +802585,7 @@ github.com/matth3wga0/react-data-component,num_dependents_deps.dev:0 github.com/matthagy/scalaps, github.com/matthamil/WebGLStarterKit,num_dependents_deps.dev:0 github.com/matthamil/eslint-config-react-native-ts,num_dependents_deps.dev:0 +github.com/matthamil/labeler, github.com/matthamil/rn-logger,num_dependents_deps.dev:0 github.com/mattharden/bat,num_dependents_deps.dev:0 github.com/mattharris5/homebridge-readablehttp,num_dependents_deps.dev:0 @@ -788313,6 +802662,7 @@ github.com/matthew-matvei/node-fswin,num_dependents_deps.dev:0 github.com/matthew-page-bbc/audio-capture,num_dependents_deps.dev:0 github.com/matthew-palmer/osrs_highscores, github.com/matthew-palmer/rpg_namer, +github.com/matthew-petrie/shopify-theme-actions, github.com/matthew-plusprogramming/QuickSearch, github.com/matthew-renodin/express-turtle-parser,num_dependents_deps.dev:0 github.com/matthew-sessions/lambdata, @@ -788432,6 +802782,7 @@ github.com/matthewfeickert/heputils, github.com/matthewfeickert/maxborn, github.com/matthewfeickert/pydistcore, github.com/matthewferderber/djs-cc,num_dependents_deps.dev:0 +github.com/matthewferry/create-a-project, github.com/matthewferry/postcss-comment-annotation,num_dependents_deps.dev:0 github.com/matthewfl/jsonapi-node,num_dependents_deps.dev:2 github.com/matthewfleming/aussie-date-formatter,num_dependents_deps.dev:0 @@ -788586,6 +802937,7 @@ github.com/matthewmaclay/testnp,num_dependents_deps.dev:0 github.com/matthewmain/EvolveJS,num_dependents_deps.dev:0 github.com/matthewmatician/xml-flow,num_dependents_deps.dev:4 github.com/matthewmazurek/Matrix2D,num_dependents_deps.dev:0 +github.com/matthewmcintyre/eas-update-qr-commenter, github.com/matthewmckenna/jobnotify, github.com/matthewmcneely/dgraph-docker-helper,num_dependents_deps.dev:0 github.com/matthewmcneely/ginprom,num_dependents_deps.dev:0 @@ -789034,6 +803386,8 @@ github.com/matthieu-vergne/filter-support,num_dependents_deps.dev:0 github.com/matthieu-vergne/flat-map-support,num_dependents_deps.dev:0 github.com/matthieu-vergne/heterogeneous-map,num_dependents_deps.dev:0 github.com/matthieu-vergne/multi-map,num_dependents_deps.dev:0 +github.com/matthieuEv/Auto-Tag-Commit, +github.com/matthieuEv/Github-Action-Tag, github.com/matthieua/WOW,"criticality_score:0.416530,num_dependents_deps.dev:6" github.com/matthieuauger/gatsby-theme-meetup,num_dependents_deps.dev:0 github.com/matthieubosquet/jwt-d, @@ -789160,6 +803514,7 @@ github.com/mattiacoll/js-marquee,num_dependents_deps.dev:0 github.com/mattiacoll/m-utils,num_dependents_deps.dev:0 github.com/mattiacoll/matt-utils, github.com/mattiacoppini/hello-world-action,num_dependents_deps.dev:0 +github.com/mattiacorraditb/data-factory-deploy-action, github.com/mattiaerli97/stringjs, github.com/mattiaerre/apod-graphistry-falcor-routes,num_dependents_deps.dev:0 github.com/mattiaerre/dir-to-object,num_dependents_deps.dev:20 @@ -789444,6 +803799,7 @@ github.com/mattkimber/timberwolfs_roads,num_dependents_deps.dev:0 github.com/mattkimber/timberwolfs_tracks,num_dependents_deps.dev:0 github.com/mattkime/grunt-helloworld,num_dependents_deps.dev:0 github.com/mattkingshott/iodine,num_dependents_deps.dev:0 +github.com/mattkinnersley/github-asana-action, github.com/mattkirwan/dynamodb-aggregator,num_dependents_deps.dev:0 github.com/mattkirwan/validate-kinesis-event,num_dependents_deps.dev:0 github.com/mattkjames7/Arase, @@ -789756,6 +804112,8 @@ github.com/mattnick89/arangosdk,num_dependents_deps.dev:0 github.com/mattnick89/aws-timestream-easy,num_dependents_deps.dev:0 github.com/mattnick89/editorjsparser,num_dependents_deps.dev:0 github.com/mattnick89/lambda-simple-event,num_dependents_deps.dev:0 +github.com/mattnite/setup-gyro, +github.com/mattnotmitt/doxygen-action, github.com/mattnull/getJSON,num_dependents_deps.dev:0 github.com/mattnull/node-googlecontacts,num_dependents_deps.dev:5 github.com/mattnull/node-meerkat,num_dependents_deps.dev:0 @@ -789846,6 +804204,7 @@ github.com/mattpodwysocki/bitandbang,num_dependents_deps.dev:0 github.com/mattpodwysocki/win-getevent,num_dependents_deps.dev:0 github.com/mattpodwysocki/win-unc-perf,num_dependents_deps.dev:0 github.com/mattpolito/required_options,num_dependents_deps.dev:0 +github.com/mattpolzin/swift-codecov-action, github.com/mattpowell/commonjs-soy,num_dependents_deps.dev:0 github.com/mattpowell/gulp-commonjs-soy,num_dependents_deps.dev:0 github.com/mattpowell/gulp-haschanged-deps,num_dependents_deps.dev:0 @@ -790194,6 +804553,7 @@ github.com/mattwills8/gulp-mtime-correction,num_dependents_deps.dev:0 github.com/mattwilson1024/mocklify,num_dependents_deps.dev:0 github.com/mattwilson1024/ngx-url-state,num_dependents_deps.dev:0 github.com/mattwilson1024/npm-test-1,num_dependents_deps.dev:0 +github.com/mattwithoos/kusteval, github.com/mattwolf-corporation/ip6_lambda-calculus-in-js,num_dependents_deps.dev:0 github.com/mattwondra/console.loggins,num_dependents_deps.dev:0 github.com/mattwondra/react-pinboard,num_dependents_deps.dev:0 @@ -790238,6 +804598,7 @@ github.com/mattyowl/RSSMOSPipeline, github.com/mattyowl/bengali_letters, github.com/mattywong/react-yup,num_dependents_deps.dev:0 github.com/mattzahel/v-toggle-switch,num_dependents_deps.dev:0 +github.com/mattzcarey/code-review-gpt, github.com/mattzeunert/glasswing, github.com/mattzeunert/grunt-svg-cleaner,num_dependents_deps.dev:0 github.com/mattzeunert/javascript-breakpoint-collection,num_dependents_deps.dev:0 @@ -790278,6 +804639,7 @@ github.com/matuszeman/bb-dic,num_dependents_deps.dev:0 github.com/matuszeman/bb-service,num_dependents_deps.dev:0 github.com/matuszeman/bb-service-message,num_dependents_deps.dev:0 github.com/matuszeman/bb-service-seneca,num_dependents_deps.dev:0 +github.com/matuszewskijan/pullwise-action, github.com/matutter/aioredis-rpc, github.com/matutter/arg-to-object,num_dependents_deps.dev:0 github.com/matutter/dockerfilejs,num_dependents_deps.dev:2 @@ -790319,6 +804681,7 @@ github.com/maty21/json-server-extension,num_dependents_deps.dev:0 github.com/maty21/jsonschema-validator-default,num_dependents_deps.dev:6 github.com/maty21/mockery-partial,num_dependents_deps.dev:0 github.com/matyama/imfun, +github.com/matyas-igor/pr-number-action, github.com/matyas-igor/react-small-virtual-list,num_dependents_deps.dev:0 github.com/matyas-olah-globant/bookstore_backend_m,num_dependents_deps.dev:0 github.com/matyasbohacek/strings-translate, @@ -790378,6 +804741,7 @@ github.com/matzf/scion,num_dependents_deps.dev:0 github.com/matzhaugen/analytic_shrinkage, github.com/matzhouse/gor,num_dependents_deps.dev:0 github.com/matzhouse/radix,num_dependents_deps.dev:0 +github.com/matzkoh/check-node-version, github.com/matzkoh/koa-glitch-keepalive,num_dependents_deps.dev:0 github.com/matzkoh/niconizer,num_dependents_deps.dev:0 github.com/matzkoh/niconizer-slack,num_dependents_deps.dev:0 @@ -790413,6 +804777,7 @@ github.com/maueki/embed_staticfile.rs,num_dependents_deps.dev:0 github.com/maueki/include_dir.rs,num_dependents_deps.dev:0 github.com/maufarinelli/react-multiselect-dropdown-button,num_dependents_deps.dev:0 github.com/maufl/pymaxcul, +github.com/maufrontier/puppeteer-headful-with-commands, github.com/maugenst/cct-lce,num_dependents_deps.dev:0 github.com/maugenst/listtojson,num_dependents_deps.dev:12 github.com/maugenst/openui5.node.example,num_dependents_deps.dev:0 @@ -790426,6 +804791,7 @@ github.com/maugonsal/cordova-survey-monkey,num_dependents_deps.dev:0 github.com/maugou/react-admin-movable-image-input, github.com/mauhiz/jspc-maven-plugin,num_dependents_deps.dev:0 github.com/mauhr1987/platzom,num_dependents_deps.dev:0 +github.com/maui-actions/apple-provisioning, github.com/mauicv/gerel, github.com/mauidude/go-readability,num_dependents_deps.dev:0 github.com/mauilion/echo-server,num_dependents_deps.dev:0 @@ -790434,6 +804800,7 @@ github.com/maulal/mgob,num_dependents_deps.dev:0 github.com/maulana20/museum-id,num_dependents_deps.dev:0 github.com/maulanaahmadarif/vue-otp-field,num_dependents_deps.dev:0 github.com/maulanakurnia/convertWebP,num_dependents_deps.dev:0 +github.com/maulanardy/codeql-sample-action, github.com/maulanasatyaadi/parse-base64-image,num_dependents_deps.dev:0 github.com/maulanay85/go-micro-product,num_dependents_deps.dev:0 github.com/maulayyacyber/nuxt-vue-multiselect,num_dependents_deps.dev:0 @@ -790493,6 +804860,7 @@ github.com/maurermax/public-voter,num_dependents_deps.dev:0 github.com/maurermax/riak-bucket-cleanup,num_dependents_deps.dev:0 github.com/maurermax/riak-bucket-exporter, github.com/maurermax/riak-mock-server,num_dependents_deps.dev:0 +github.com/maurete/ansible-action, github.com/mauri1789/aws-testsuite, github.com/mauri870/vuex-router-sync-fullpath,num_dependents_deps.dev:0 github.com/mauriballes/django-up, @@ -790700,6 +805068,8 @@ github.com/mauro-midolo/WakeOnLanHTTPRest,num_dependents_deps.dev:0 github.com/mauro-moreira/ddpgportfolio-colab, github.com/mauro0x52/service-component,num_dependents_deps.dev:0 github.com/mauro3/Parameters.jl,criticality_score:0.435100 +github.com/mauroalderete/action-assign-labels, +github.com/mauroalderete/action-verify-labels, github.com/mauroarias/etcsoft-parent,num_dependents_deps.dev:0 github.com/mauroavargas/crud-golang,num_dependents_deps.dev:0 github.com/maurobio/cornpy, @@ -790761,11 +805131,15 @@ github.com/maury91/asyncArray,num_dependents_deps.dev:0 github.com/maury91/polymer-global-variables,num_dependents_deps.dev:0 github.com/maurycyp/leveldb-cli, github.com/maurycyp/vincenty, +github.com/maus007/locize-translation-check-action, +github.com/maus007/telegram-notification-with-topic, github.com/mausamyede/embedded-keycloak,num_dependents_deps.dev:0 github.com/mauscoelho/component-lib,num_dependents_deps.dev:0 github.com/maust/prometheus-spring-boot,num_dependents_deps.dev:0 github.com/mautematico/redis-fifo,num_dependents_deps.dev:0 +github.com/mautic/api-library, github.com/mautic/mautic,criticality_score:0.774220 +github.com/mautic/recommended-project, github.com/mautini/schemaorg-java,num_dependents_deps.dev:0 github.com/mautrix/facebook, github.com/mautrix/go,num_dependents_deps.dev:3 @@ -790878,6 +805252,7 @@ github.com/mavickers/vue-toolkit,num_dependents_deps.dev:0 github.com/mavidser/i2a, github.com/mavidser/tt, github.com/maviek/avul.js,num_dependents_deps.dev:0 +github.com/mavieth/linode-authenticator, github.com/mavieth/pugit,num_dependents_deps.dev:0 github.com/mavihq/fanavagateway,num_dependents_deps.dev:0 github.com/mavihq/persian,num_dependents_deps.dev:0 @@ -790936,6 +805311,8 @@ github.com/mavric/apso,num_dependents_deps.dev:0 github.com/mavriq/django-dbrouter, github.com/mavrix93/LightCurvesClassifier, github.com/mavrorivero/react-roomiebot-ros,num_dependents_deps.dev:0 +github.com/mavrosxristoforos/get-xml-info, +github.com/mavrosxristoforos/jxb, github.com/mavunda/golang-angular,num_dependents_deps.dev:1 github.com/mawais54013/Solar-System,num_dependents_deps.dev:0 github.com/mawalu/cat-cjdroute,num_dependents_deps.dev:0 @@ -790990,6 +805367,7 @@ github.com/mawni/gulp-bracks,num_dependents_deps.dev:0 github.com/mawni/node-klaw-sync,num_dependents_deps.dev:0 github.com/mawni/nodejs-bracks-parser,num_dependents_deps.dev:0 github.com/mawoka-myblock/m3o-py, +github.com/mawosoft/dotnet-dependency-alert, github.com/mawrkus/champoo,num_dependents_deps.dev:0 github.com/mawrkus/enlighten-me,num_dependents_deps.dev:0 github.com/mawrkus/holded-client,num_dependents_deps.dev:0 @@ -791003,6 +805381,7 @@ github.com/mawuliadjei/benfords_law, github.com/mawwlle/go-sandbox,num_dependents_deps.dev:0 github.com/mawwlle/pet-projects,num_dependents_deps.dev:0 github.com/mawww/kakoune,criticality_score:0.669820 +github.com/max-abe-king/td-wf-actions, github.com/max-arnold/python-block-disposable-email, github.com/max-arnold/python-mpns, github.com/max-barry/generator-deploy,num_dependents_deps.dev:0 @@ -791102,6 +805481,7 @@ github.com/max-zinn/pdf-bunny,num_dependents_deps.dev:0 github.com/max/next-sass,num_dependents_deps.dev:0 github.com/max/node-alfalfabet,num_dependents_deps.dev:0 github.com/max/node-alfupperbet,num_dependents_deps.dev:0 +github.com/max/secret-scan, github.com/max/whoami,num_dependents_deps.dev:0 github.com/max0ne/albert_cli,num_dependents_deps.dev:0 github.com/max0ne/kubectl-imp,num_dependents_deps.dev:0 @@ -791126,6 +805506,7 @@ github.com/max255/node-red-contrib-xiaomi-gateway,num_dependents_deps.dev:0 github.com/max2k1/go-isatty,num_dependents_deps.dev:0 github.com/max3-05/node-ciks,num_dependents_deps.dev:0 github.com/max3-2/itsh5py, +github.com/max3nn/action-full-deploy, github.com/max5962/essence, github.com/max71211/converter-service,num_dependents_deps.dev:0 github.com/max75025/httprouter,num_dependents_deps.dev:0 @@ -791149,8 +805530,10 @@ github.com/maxalencar/applepay,num_dependents_deps.dev:0 github.com/maxali/fej,num_dependents_deps.dev:0 github.com/maxall41/ModalSquared.js,num_dependents_deps.dev:0 github.com/maxaltena/eslint-config-maxaltena,num_dependents_deps.dev:0 +github.com/maxam2017/productive-box, github.com/maxamillion/loopabull, github.com/maxan98/logrusr,num_dependents_deps.dev:0 +github.com/maxandersen/jbang-issuelabeler, github.com/maxandriani/ngx-google-analytics,num_dependents_deps.dev:0 github.com/maxandriani/ngx-hotjar,num_dependents_deps.dev:0 github.com/maxant/genericconnector,num_dependents_deps.dev:9 @@ -791183,6 +805566,7 @@ github.com/maxbachmann/RapidFuzz, github.com/maxbachmann/cydifflib, github.com/maxbachmann/lektor-JSminify, github.com/maxbachmann/lektor-SCSScompile, +github.com/maxbachmann/python-levenshtein, github.com/maxbachmann/rapidfuzz_capi, github.com/maxbaki/nativescript-camera-plus,num_dependents_deps.dev:0 github.com/maxbaki/nativescript-cardio-custom,num_dependents_deps.dev:0 @@ -791261,6 +805645,8 @@ github.com/maxchehab/term.js,num_dependents_deps.dev:0 github.com/maxchehab/ts-loader,num_dependents_deps.dev:0 github.com/maxchehab/with-blog,num_dependents_deps.dev:0 github.com/maxchehab/zipcodes2016,num_dependents_deps.dev:0 +github.com/maxcheremisin/github-commit-to-trello-card, +github.com/maxchistt/action-publish-nuget, github.com/maxchou415/NTU-StudentID-Lookup,num_dependents_deps.dev:0 github.com/maxcleme/beadcolors,num_dependents_deps.dev:0 github.com/maxcliff/caps-npm,num_dependents_deps.dev:0 @@ -791302,6 +805688,8 @@ github.com/maxdavidson/structly,num_dependents_deps.dev:0 github.com/maxdavidson/tiny-sha1,num_dependents_deps.dev:0 github.com/maxdavidson/typescript-library-boilerplate,num_dependents_deps.dev:0 github.com/maxday/express-env-config,num_dependents_deps.dev:0 +github.com/maxday/quarkus-dockerize-action, +github.com/maxday/quarkus-native-build-docker-action, github.com/maxdelemos/agm-direction,num_dependents_deps.dev:0 github.com/maxdemarzi/neography,"criticality_score:0.313850,num_dependents_deps.dev:8" github.com/maxdesiatov/gatsby-remark-codemirror,num_dependents_deps.dev:0 @@ -791370,6 +805758,10 @@ github.com/maxencemeloni/express-jwt-role-check,num_dependents_deps.dev:0 github.com/maxencerb/Mclrr_Security, github.com/maxent-ai/autobots, github.com/maxep/MXParallaxHeader,criticality_score:0.311610 +github.com/maxep/appetize-upload-action, +github.com/maxep/pod-repo-push-action, +github.com/maxep/spm-lcov-action, +github.com/maxep/xcodebuild-lcov-action, github.com/maxerbox/Gridsome-source-netlify-cms, github.com/maxerbox/command-caching-fisherman,num_dependents_deps.dev:0 github.com/maxerbox/command-loader-fisherman,num_dependents_deps.dev:0 @@ -791420,8 +805812,12 @@ github.com/maxgalli/ntupro, github.com/maxgaurav/indexeddb-orm,num_dependents_deps.dev:0 github.com/maxgfeller/attr-bind-change, github.com/maxgfr/api-money-node-sdk,num_dependents_deps.dev:0 +github.com/maxgfr/github-change-json, +github.com/maxgfr/github-commit-push-file, +github.com/maxgfr/github-multi-deployments, github.com/maxgherman/TypeIOC,num_dependents_deps.dev:0 github.com/maxgoedjen/secretive,criticality_score:0.326730 +github.com/maxgoedjen/xchequer, github.com/maxgraey/atom-dark-fusion-syntax,num_dependents_deps.dev:0 github.com/maxgraey/binding.js,num_dependents_deps.dev:0 github.com/maxgraf96/bachelorarbeit, @@ -791439,6 +805835,7 @@ github.com/maxguzenski/react-easy-style,num_dependents_deps.dev:0 github.com/maxgy/hi-lo,num_dependents_deps.dev:0 github.com/maxh/highlights-scraper,num_dependents_deps.dev:0 github.com/maxh/react-native-fittedtext,num_dependents_deps.dev:0 +github.com/maxhall/deploy-to-vercel-action, github.com/maxhallinan/binzerch,num_dependents_deps.dev:0 github.com/maxhallinan/brunfaick,num_dependents_deps.dev:0 github.com/maxhallinan/flattin,num_dependents_deps.dev:0 @@ -791466,6 +805863,7 @@ github.com/maxharris9/octify-aabb,num_dependents_deps.dev:0 github.com/maxharris9/octree,num_dependents_deps.dev:0 github.com/maxhebditch/tidyfasta, github.com/maxhedt/ng-animated-border,num_dependents_deps.dev:0 +github.com/maxheld83/pandoc-action, github.com/maxhermez/crawler_routine_manager,num_dependents_deps.dev:0 github.com/maxhermez/mongohandles,num_dependents_deps.dev:0 github.com/maxhha/mail-rnd-test-task,num_dependents_deps.dev:0 @@ -791537,12 +805935,15 @@ github.com/maxiaochuan/mxcins-bedrock,num_dependents_deps.dev:0 github.com/maxiaochuan/mxcins-library, github.com/maxiaochuan/mxcins-tools,num_dependents_deps.dev:0 github.com/maxiaodong97/react-native-barcode-reader,num_dependents_deps.dev:0 +github.com/maxiaowei0216/push-message, github.com/maxiappleton/javascript,num_dependents_deps.dev:0 github.com/maxiberta/django-asterisk, github.com/maxibor/bamAlignCleaner, +github.com/maxibor/conda-package-publish-action, github.com/maxibor/pydamage, github.com/maxibor/sam2lca, github.com/maxibor/sourcepredict, +github.com/maxice8/eu4-mod-zip, github.com/maxicms/postcss-b64i,num_dependents_deps.dev:0 github.com/maxicus/ib-tws-api,num_dependents_deps.dev:0 github.com/maxid/bolt,num_dependents_deps.dev:0 @@ -791590,6 +805991,10 @@ github.com/maxim-kuderko/fast-random,num_dependents_deps.dev:0 github.com/maxim-kuderko/graceful-shutdown,num_dependents_deps.dev:0 github.com/maxim-kuderko/plutos,num_dependents_deps.dev:0 github.com/maxim-kuderko/service-template,num_dependents_deps.dev:0 +github.com/maxim-lobanov/setup-android-tools, +github.com/maxim-lobanov/setup-cocoapods, +github.com/maxim-lobanov/setup-xamarin, +github.com/maxim-lobanov/setup-xcode, github.com/maxim-lobanov/test-repo,num_dependents_deps.dev:0 github.com/maxim-nazarenko/go-blueprints-book-examples,num_dependents_deps.dev:0 github.com/maxim-nazarenko/tf-module-update,num_dependents_deps.dev:0 @@ -791629,6 +806034,9 @@ github.com/maximaximum/gulp-vb2ts,num_dependents_deps.dev:0 github.com/maximbaz/cerebro-pass, github.com/maximbaz/dotfiles,criticality_score:0.337030 github.com/maximbaz/yubikey-touch-detector,num_dependents_deps.dev:1 +github.com/maximbircu/kscript-action, +github.com/maximbircu/pull-request-assistant, +github.com/maximbircu/pull-request-checkstyle, github.com/maximdanilchenko/aiochclient, github.com/maximdanilchenko/aiohttp-apispec, github.com/maximdanilchenko/async-pq, @@ -791696,6 +806104,7 @@ github.com/maximekl/django2-url-robots, github.com/maximelafarie/browizard, github.com/maximelafarie/browser-spector,num_dependents_deps.dev:0 github.com/maximelafarie/ngx-smart-modal,"criticality_score:0.343600,num_dependents_deps.dev:0" +github.com/maximelafarie/spamtoberfest, github.com/maximelebonniec/test_github_action,num_dependents_deps.dev:0 github.com/maximelebreton/sass-modern-mq,num_dependents_deps.dev:0 github.com/maximelenoir/hourglass,num_dependents_deps.dev:0 @@ -791715,6 +806124,7 @@ github.com/maximeq/three-js-mesh-world-normal-material,num_dependents_deps.dev:0 github.com/maximeq/three-js-rgba-packing,num_dependents_deps.dev:0 github.com/maximeshr/micro-bunyan-request,num_dependents_deps.dev:0 github.com/maximesimoncelli/basscss-responsive-flex,num_dependents_deps.dev:0 +github.com/maximeverreault/setup-fmt, github.com/maximevw/autolog,num_dependents_deps.dev:1 github.com/maximgladkov/hubot-whosonstaging,num_dependents_deps.dev:0 github.com/maximhan/cloud-config-client,num_dependents_deps.dev:0 @@ -791781,6 +806191,7 @@ github.com/maximilianhurl/bravado-django-test-client, github.com/maximilianhurl/django-mail-templated, github.com/maximilianhurl/google-geocoding-cli, github.com/maximilianoh/react-color-hook,num_dependents_deps.dev:0 +github.com/maximilianone/add-task-issue-labels, github.com/maximilianopizarro/open-toolchain-guestbook,num_dependents_deps.dev:0 github.com/maximilianschmid/modelizer,num_dependents_deps.dev:0 github.com/maximilianschmitt/cssman,num_dependents_deps.dev:0 @@ -791856,7 +806267,9 @@ github.com/maximobelen/key-listener,num_dependents_deps.dev:0 github.com/maximobelen/shapes.js,num_dependents_deps.dev:0 github.com/maximodleon/sabichoso,num_dependents_deps.dev:0 github.com/maximodleon/wikipediajs,num_dependents_deps.dev:0 +github.com/maximohub/sync-merge-upstream-repo, github.com/maximousblk/maximousblk,num_dependents_deps.dev:0 +github.com/maximousblk/setup-deno, github.com/maximov-ru/webcamjs,num_dependents_deps.dev:0 github.com/maximpyshko/neconfig,num_dependents_deps.dev:0 github.com/maximsan/cra-js,num_dependents_deps.dev:0 @@ -791868,6 +806281,7 @@ github.com/maximsmol/nodevk,num_dependents_deps.dev:0 github.com/maximsmol/webShortener,num_dependents_deps.dev:0 github.com/maximthomas/blazewall,num_dependents_deps.dev:0 github.com/maximthomas/gortas,num_dependents_deps.dev:0 +github.com/maximtop/filters-pr-checker, github.com/maximtretjakov/go-tutorial,num_dependents_deps.dev:0 github.com/maximtrp/lastfm-cli-scrobbler, github.com/maximtrp/mchmm, @@ -791937,6 +806351,10 @@ github.com/maxiruani/cli-server,num_dependents_deps.dev:0 github.com/maxiruani/express-svelte,num_dependents_deps.dev:0 github.com/maxisam/angular-bootstrap-affix,num_dependents_deps.dev:0 github.com/maxisam/angular2-clipboard,num_dependents_deps.dev:0 +github.com/maxisam/changed-files-labeler, +github.com/maxisam/check-report, +github.com/maxisam/create-summary-check-status, +github.com/maxisam/dotnet-format-plus, github.com/maxisam/ngx-bowser,num_dependents_deps.dev:0 github.com/maxisam/ngx-clipboard,"criticality_score:0.482880,num_dependents_deps.dev:4" github.com/maxisam/ngx-mat-popover,num_dependents_deps.dev:0 @@ -791944,6 +806362,8 @@ github.com/maxisam/ngx-no-animation-for-dinosaur,num_dependents_deps.dev:0 github.com/maxisam/ngx-progressive-image-loader,num_dependents_deps.dev:0 github.com/maxisam/ngx-trim,num_dependents_deps.dev:0 github.com/maxisam/ngx-window-token,num_dependents_deps.dev:194 +github.com/maxisam/path-labeler, +github.com/maxisam/repo-dispatch, github.com/maxisi/gwaxion, github.com/maxisi/ringdown, github.com/maxisme/appserver,num_dependents_deps.dev:0 @@ -792011,7 +806431,16 @@ github.com/maxklenk/angular-chart,num_dependents_deps.dev:0 github.com/maxklenk/angular-circular-navigation,num_dependents_deps.dev:0 github.com/maxknee/hexo-render-pug,num_dependents_deps.dev:0 github.com/maxkolb/ngx-splitinput,num_dependents_deps.dev:0 +github.com/maxkomarychev/merge-pal-action, github.com/maxkomarychev/mioc,num_dependents_deps.dev:0 +github.com/maxkomarychev/oction-create-deployment, +github.com/maxkomarychev/oction-create-deployment-status, +github.com/maxkomarychev/oction-create-issue, +github.com/maxkomarychev/oction-create-release, +github.com/maxkomarychev/oction-lock-issue, +github.com/maxkomarychev/oction-merge-pull-request, +github.com/maxkomarychev/oction-unlock-issue, +github.com/maxkomarychev/pr-updater-action, github.com/maxkomarychev/react-native-ultimate-config,num_dependents_deps.dev:0 github.com/maxkonovalov/MKRingProgressView,criticality_score:0.376250 github.com/maxkordiyak/react-native-dropdown-autocomplete,num_dependents_deps.dev:0 @@ -792038,6 +806467,7 @@ github.com/maxkrieger/aframe-draw-component,num_dependents_deps.dev:0 github.com/maxkrieger/aframe-react-canvas,num_dependents_deps.dev:0 github.com/maxkrieger/aframe-textwrap-component,num_dependents_deps.dev:0 github.com/maxkrivich/SlowLoris, +github.com/maxkruger/get-version-action, github.com/maxkruse/discordbonker,num_dependents_deps.dev:0 github.com/maxkruse/go-oppai,num_dependents_deps.dev:0 github.com/maxkruse/oppai5,num_dependents_deps.dev:0 @@ -792079,6 +806509,7 @@ github.com/maxlabelle/filepreview,num_dependents_deps.dev:0 github.com/maxlambrecht/rust-spiffe,num_dependents_deps.dev:0 github.com/maxlandon/gonsole,num_dependents_deps.dev:0 github.com/maxlandon/readline,num_dependents_deps.dev:0 +github.com/maxlap/activerecord_where_assoc, github.com/maxlapides/dovetailer, github.com/maxlapides/html-email-generator,num_dependents_deps.dev:0 github.com/maxlath/blue-cot,num_dependents_deps.dev:0 @@ -792147,6 +806578,7 @@ github.com/maxleiko/ts-injector,num_dependents_deps.dev:0 github.com/maxleiko/wsmsgbroker,num_dependents_deps.dev:0 github.com/maxleiko/wsmsgbroker-java,num_dependents_deps.dev:0 github.com/maxlem/QtQmlViewport, +github.com/maxletourneur/gcs-bucket-sync-action, github.com/maxlibin/bs-react-animate-height,num_dependents_deps.dev:0 github.com/maxlibin/bs-react-image-upload,num_dependents_deps.dev:0 github.com/maxlibin/lite-flag-icon-css,num_dependents_deps.dev:0 @@ -792164,6 +806596,7 @@ github.com/maxludovicohofer/bopjs,num_dependents_deps.dev:0 github.com/maxlun86/ml-ng2-grid,num_dependents_deps.dev:0 github.com/maxluster/chromatic-sass,num_dependents_deps.dev:0 github.com/maxluster/create-react-app,num_dependents_deps.dev:0 +github.com/maxlxq/blog-deploy, github.com/maxlyth/homebridge-modelightingv1,num_dependents_deps.dev:0 github.com/maxm/webledger,num_dependents_deps.dev:0 github.com/maxm1960/project,num_dependents_deps.dev:0 @@ -792197,6 +806630,7 @@ github.com/maxmarinich/vanilla-swipe,num_dependents_deps.dev:28 github.com/maxmastalerz/strapi-provider-upload-aws-s3-cloudfront, github.com/maxmati/react-bootstrap-datetimepicker,num_dependents_deps.dev:0 github.com/maxmaximov/debug-decorator,num_dependents_deps.dev:0 +github.com/maxmazzeschi/ovpn3-connect-action, github.com/maxmcd/archiver,num_dependents_deps.dev:0 github.com/maxmcd/bramble,num_dependents_deps.dev:0 github.com/maxmcd/dag,num_dependents_deps.dev:0 @@ -792241,6 +806675,7 @@ github.com/maxmill/rain-util-http,num_dependents_deps.dev:0 github.com/maxmill/rain-util-postgres,num_dependents_deps.dev:0 github.com/maxmill/semblance-ui,num_dependents_deps.dev:0 github.com/maxmillion18/frhdtools, +github.com/maxmilton/action-setup-playwright, github.com/maxmilton/git-ref,num_dependents_deps.dev:0 github.com/maxmilton/solid-router,num_dependents_deps.dev:0 github.com/maxmilton/stage1,num_dependents_deps.dev:0 @@ -792404,6 +806839,7 @@ github.com/maxogden/git-command-stats,num_dependents_deps.dev:0 github.com/maxogden/git-side-band-message,num_dependents_deps.dev:42 github.com/maxogden/github-oauth,num_dependents_deps.dev:7 github.com/maxogden/gititude,num_dependents_deps.dev:0 +github.com/maxogden/google-calendar-import, github.com/maxogden/google-cloud-storage,num_dependents_deps.dev:0 github.com/maxogden/google-drive-blobs,num_dependents_deps.dev:0 github.com/maxogden/google-spreadsheets-key-parser,num_dependents_deps.dev:0 @@ -792548,6 +806984,7 @@ github.com/maxplanck-ie/HiCAssembler, github.com/maxpleaner/animation-loader,num_dependents_deps.dev:0 github.com/maxpleaner/slim-lang-loader,num_dependents_deps.dev:0 github.com/maxpleaner/static_dom,num_dependents_deps.dev:0 +github.com/maxplumley/chatgpt-review-action, github.com/maxpmaxp/pdfreader, github.com/maxpoint/spylon, github.com/maxpoint/spylon-kernel, @@ -792572,6 +807009,7 @@ github.com/maxpowel/python-distributed-lock, github.com/maxpowel/transcoder,num_dependents_deps.dev:0 github.com/maxpowel/user_manager, github.com/maxpresman/django-rethinkdb-sessions, +github.com/maxprilutskiy/change-report, github.com/maxprogram/bloctree,num_dependents_deps.dev:0 github.com/maxprogram/grand-central-express,num_dependents_deps.dev:0 github.com/maxprogram/grand-central-junction, @@ -792691,6 +807129,7 @@ github.com/maxsumrall/pathdb,num_dependents_deps.dev:0 github.com/maxsupermanhd/go-mc-ms-auth,num_dependents_deps.dev:0 github.com/maxsuren/enckey, github.com/maxswa/osrs-json-hiscores,num_dependents_deps.dev:0 +github.com/maxsxu/action-labeler, github.com/maxtaco/coffee-script,num_dependents_deps.dev:198 github.com/maxtaco/emergency-dns-server,num_dependents_deps.dev:0 github.com/maxtaco/iced-db,num_dependents_deps.dev:0 @@ -792844,6 +807283,7 @@ github.com/maxwellium/what-the-pug-cli,num_dependents_deps.dev:0 github.com/maxwellm/portfoliowebsite,num_dependents_deps.dev:0 github.com/maxwellmri/bem,num_dependents_deps.dev:0 github.com/maxwellmri/serve,num_dependents_deps.dev:0 +github.com/maxwellpeterson/exif-gps-action, github.com/maxwells-daemons/argsearch, github.com/maxwells-daemons/pytorch-adaptive-computation-time, github.com/maxwells-daemons/reason,num_dependents_deps.dev:0 @@ -793085,6 +807525,7 @@ github.com/mayavera/depmat,num_dependents_deps.dev:0 github.com/mayavera/keyboard-cat,num_dependents_deps.dev:0 github.com/mayavera/lock-diff,num_dependents_deps.dev:0 github.com/mayavera/react-conway,num_dependents_deps.dev:0 +github.com/maybe-hello-world/pyproject-check-version, github.com/maybe9210/nomad-coin,num_dependents_deps.dev:0 github.com/maybebot/vuetify-extend-test,num_dependents_deps.dev:0 github.com/maybeec/lexeme,num_dependents_deps.dev:0 @@ -793158,6 +807599,7 @@ github.com/mayinbun/ngx-fragments, github.com/mayinbun/urling, github.com/mayinghan/address_mapper,num_dependents_deps.dev:0 github.com/mayitbe65/go_learning,num_dependents_deps.dev:0 +github.com/mayitbeegh/github-tag-action, github.com/mayk93/HostedOn,num_dependents_deps.dev:0 github.com/mayk93/node-ws-status,num_dependents_deps.dev:0 github.com/maykinayki/mn-accordion,num_dependents_deps.dev:0 @@ -793270,6 +807712,7 @@ github.com/maystar/I2C_HD77480_LCD, github.com/mayswind/AriaNg,criticality_score:0.372020 github.com/mayswind/angular-bittorrent-peerid,num_dependents_deps.dev:0 github.com/mayswind/ezbookkeeping,num_dependents_deps.dev:0 +github.com/maytan-cogo/ec2-github-runner, github.com/maytech/api-client-java,num_dependents_deps.dev:0 github.com/maytechnet/fabio,num_dependents_deps.dev:0 github.com/mayteio/use-pusher,num_dependents_deps.dev:6 @@ -793315,6 +807758,7 @@ github.com/mayurkhairnar2525/golang_assignments,num_dependents_deps.dev:0 github.com/mayurkharat03/mayur,num_dependents_deps.dev:0 github.com/mayurmate149/LG_Crud_Package, github.com/mayurpunjabi/AIPackage, +github.com/mayurrawte/github-angular-actions, github.com/mayurrawte/instascrapy,num_dependents_deps.dev:0 github.com/mayurtailor009/strophejs-plugin-stream-management,num_dependents_deps.dev:0 github.com/mayurtikundi12/SHUKSHMA,num_dependents_deps.dev:0 @@ -793436,6 +807880,7 @@ github.com/mazipan/nodejs-jakarta-api,num_dependents_deps.dev:0 github.com/mazipan/normalize.preprocessor,num_dependents_deps.dev:0 github.com/mazipan/nuxt-storage,num_dependents_deps.dev:0 github.com/mazipan/preact-script2,num_dependents_deps.dev:0 +github.com/mazipan/psi-gh-action, github.com/mazipan/quran-offline,criticality_score:0.321540 github.com/mazipan/react-simplert,num_dependents_deps.dev:0 github.com/mazipan/simple-ampify,num_dependents_deps.dev:0 @@ -793517,6 +807962,7 @@ github.com/mb1986/dto_derive,num_dependents_deps.dev:0 github.com/mb21/JSONedit,num_dependents_deps.dev:0 github.com/mb21/markdown-it-bracketed-spans,num_dependents_deps.dev:0 github.com/mb21/markdown-it-pandoc,num_dependents_deps.dev:0 +github.com/mb2dev/github-action-comment-pull-request, github.com/mb3online/jest-speck-plugin,num_dependents_deps.dev:0 github.com/mb3online/react-style-manager,num_dependents_deps.dev:0 github.com/mb3online/slugizoid,num_dependents_deps.dev:0 @@ -793549,6 +807995,7 @@ github.com/mback2k/swampdragon-live, github.com/mbaczun/producer-consumer,num_dependents_deps.dev:0 github.com/mbad0la/Architect,num_dependents_deps.dev:0 github.com/mbadolato/iTerm2-Color-Schemes,criticality_score:0.522850 +github.com/mbadr2200/Parse-Cloud-Code-Deploy, github.com/mbaechler/proxy-servlet,num_dependents_deps.dev:0 github.com/mbaertschi/node-vcr, github.com/mbaertschi/npm-node-boilerplate, @@ -793611,6 +808058,7 @@ github.com/mbaraa/console_games,num_dependents_deps.dev:0 github.com/mbaraa/dsc_logo_generator,num_dependents_deps.dev:0 github.com/mbaraa/lazy_brightness,num_dependents_deps.dev:0 github.com/mbaraa/ligma,num_dependents_deps.dev:0 +github.com/mbaraa/rex-action, github.com/mbaraa/shortsninja,num_dependents_deps.dev:0 github.com/mbaraa/useless,num_dependents_deps.dev:0 github.com/mbarajas/interview-questions,num_dependents_deps.dev:0 @@ -793764,6 +808212,7 @@ github.com/mbejda/ngdeploy,num_dependents_deps.dev:0 github.com/mbejda/placeholder-cli,num_dependents_deps.dev:0 github.com/mbejda/plotlychartexport,num_dependents_deps.dev:0 github.com/mbektimirov/jenkins-anybar,num_dependents_deps.dev:0 +github.com/mbelanger-ledger/esy-action-clean, github.com/mbell8903/passport-auth-token,num_dependents_deps.dev:0 github.com/mbell8903/passport-custom,num_dependents_deps.dev:104 github.com/mbelling/rpi-ws281x-java,num_dependents_deps.dev:0 @@ -793778,6 +808227,7 @@ github.com/mbello/memory-tempfile, github.com/mbello/odoo-find-runbot-instance, github.com/mbello/pdflatex, github.com/mbello/pycorreios3, +github.com/mbenachour/spiceai-runtime-aci, github.com/mbenadda/django-cas-mb, github.com/mbenadda/python-cas, github.com/mbenbernard/contracts, @@ -793997,6 +808447,7 @@ github.com/mbmccormick/automatic-node,num_dependents_deps.dev:0 github.com/mbmccormick/fitbit-node,num_dependents_deps.dev:0 github.com/mbmccormick/passport-fitbit,num_dependents_deps.dev:0 github.com/mbmccormick/tripit-node,num_dependents_deps.dev:0 +github.com/mbmcmullen27/azure-secrets, github.com/mbmgfnbk/Iridium-Engine, github.com/mbmgfnbk/ikaheca, github.com/mbmlabs/banishbot-node,num_dependents_deps.dev:0 @@ -794029,6 +808480,7 @@ github.com/mboersma/aks-engine,num_dependents_deps.dev:0 github.com/mboersma/confd,num_dependents_deps.dev:0 github.com/mbogdan0/divdrag,num_dependents_deps.dev:0 github.com/mbogdan0/react-photo-gallery,num_dependents_deps.dev:0 +github.com/mbogh/test-ssl-action, github.com/mbogner/gochain,num_dependents_deps.dev:0 github.com/mbogochow/CouchUtil,num_dependents_deps.dev:0 github.com/mbogokennedy/ckeditor-build-amelia,num_dependents_deps.dev:0 @@ -794170,7 +808622,9 @@ github.com/mbourqui/django-publications-bootstrap, github.com/mbovel/ts-pubsub,num_dependents_deps.dev:0 github.com/mbovel/ts-tree,num_dependents_deps.dev:0 github.com/mbovel/ts-tree-ui,num_dependents_deps.dev:0 +github.com/mbovo/action-helm-artifactory, github.com/mbovo/pdh, +github.com/mbowman100/swagger-validator-action, github.com/mboxtael/hulivida-migration-tool,num_dependents_deps.dev:0 github.com/mboyar/simple-rest-api-app,num_dependents_deps.dev:0 github.com/mbpictures/jquery-postify,num_dependents_deps.dev:0 @@ -794352,6 +808806,7 @@ github.com/mbroadst/thinkagain,num_dependents_deps.dev:12 github.com/mbroadst/thinky-rest,num_dependents_deps.dev:0 github.com/mbrobbel/dqcsim-openqasm,num_dependents_deps.dev:0 github.com/mbrobbel/narrow,num_dependents_deps.dev:0 +github.com/mbrobbel/rustfmt-check, github.com/mbroersen/jeloquent,num_dependents_deps.dev:0 github.com/mbrookes/formsy-material-ui,num_dependents_deps.dev:4 github.com/mbrookes/git-pull-request,num_dependents_deps.dev:0 @@ -794360,7 +808815,11 @@ github.com/mbrostami/gcron,num_dependents_deps.dev:0 github.com/mbrostami/go-prompt,num_dependents_deps.dev:0 github.com/mbrostami/gorp,num_dependents_deps.dev:0 github.com/mbroton/ez-transfer, +github.com/mbround18/auto, github.com/mbround18/image-to-tile,num_dependents_deps.dev:0 +github.com/mbround18/install-jq, +github.com/mbround18/setup-osxcross, +github.com/mbround18/trunk-rs, github.com/mbrown333/panasonic-scanner-fzn1,num_dependents_deps.dev:0 github.com/mbrowne/babel-plugin-pure-static-props, github.com/mbrowne/bound-decorator,num_dependents_deps.dev:38 @@ -794438,6 +808897,7 @@ github.com/mbullington/goal,num_dependents_deps.dev:0 github.com/mbullington/ui_builder, github.com/mbullington/ui_builder.js,num_dependents_deps.dev:0 github.com/mbullington/yellowstone,num_dependents_deps.dev:0 +github.com/mbund/canvas-submit-action, github.com/mbungeapp/mbunge-core,num_dependents_deps.dev:0 github.com/mbunity/datalog,num_dependents_deps.dev:0 github.com/mbunse/socket_client_server, @@ -794456,6 +808916,7 @@ github.com/mburger-stsci/nexoclom, github.com/mburger-stsci/solarsystemMB, github.com/mburns/nomic,num_dependents_deps.dev:0 github.com/mburr-salesforce/sfdx-repl, +github.com/mbursi/jekyll-build-only-action, github.com/mburszley/bandwidth-monitor, github.com/mburszley/sqlite3-header,num_dependents_deps.dev:0 github.com/mburtka/ts-validate,num_dependents_deps.dev:0 @@ -794603,6 +809064,7 @@ github.com/mcampa/phoenix-client,num_dependents_deps.dev:100 github.com/mcampo/cg-cli,num_dependents_deps.dev:0 github.com/mcampo/serialdevice,num_dependents_deps.dev:0 github.com/mcanam/iblize,num_dependents_deps.dev:0 +github.com/mcandeia/json-schema-validator, github.com/mcandmc/m-cli,num_dependents_deps.dev:0 github.com/mcandre/accio,num_dependents_deps.dev:0 github.com/mcandre/docker-rustup,num_dependents_deps.dev:0 @@ -794789,10 +809251,12 @@ github.com/mcbarlowe/nba_parser, github.com/mcbarlowe/nba_scraper, github.com/mcbattirola/ptbr-js,num_dependents_deps.dev:0 github.com/mcbeet/beet, +github.com/mcbeet/check-commands, github.com/mcbeet/lectern, github.com/mcbeet/mecha, github.com/mcbenjemaa/basic-prom-exporter,num_dependents_deps.dev:0 github.com/mcbenjemaa/daemonjob-operator,num_dependents_deps.dev:0 +github.com/mcblair/configure-aws-profile-action, github.com/mcbobke/mcadminbot, github.com/mcbp/React-Particle-Backgrounds,num_dependents_deps.dev:0 github.com/mcbr1d3rr/palindrome,num_dependents_deps.dev:0 @@ -795002,6 +809466,7 @@ github.com/mceloud/go-prompt,num_dependents_deps.dev:0 github.com/mceloud/gojenkins,num_dependents_deps.dev:0 github.com/mcemilg/noize, github.com/mcendon/ion-currencymask,num_dependents_deps.dev:0 +github.com/mcenv/setup-minecraft, github.com/mceoin/react-o-nator,num_dependents_deps.dev:0 github.com/mcerdeira/hubot-game-title,num_dependents_deps.dev:0 github.com/mcereijo/httpzer,num_dependents_deps.dev:0 @@ -795143,7 +809608,9 @@ github.com/mchandleraz/react-native-avroutepicker, github.com/mchandramouli/blobs,num_dependents_deps.dev:25 github.com/mchangrh/deamp, github.com/mchangrh/discord-shadowban,num_dependents_deps.dev:0 +github.com/mchangrh/factorio-mod-upload, github.com/mchangrh/node-google-calendar,num_dependents_deps.dev:0 +github.com/mchangrh/s3cmd-sync, github.com/mchangrh/url-rinse,num_dependents_deps.dev:0 github.com/mchaov/JSEventsManager,num_dependents_deps.dev:0 github.com/mchapman/forms-angular,num_dependents_deps.dev:0 @@ -795334,6 +809801,7 @@ github.com/mckoss/dawg,num_dependents_deps.dev:0 github.com/mckoss/labs,num_dependents_deps.dev:0 github.com/mckoyd/wolf-queue,num_dependents_deps.dev:0 github.com/mckoyd/wolf-stack,num_dependents_deps.dev:0 +github.com/mckrava/standard-version-release-notes, github.com/mcku/UI-Dropdown,num_dependents_deps.dev:0 github.com/mcku/UI-Transition,num_dependents_deps.dev:0 github.com/mclaeysb/geojson-polygon-self-intersections,num_dependents_deps.dev:94 @@ -795401,6 +809869,7 @@ github.com/mcmacker4/telegram-lib,num_dependents_deps.dev:0 github.com/mcmackety/gitkit,num_dependents_deps.dev:0 github.com/mcmakler/components,num_dependents_deps.dev:0 github.com/mcmakler/design-guide,num_dependents_deps.dev:0 +github.com/mcmarkj/1password-actions, github.com/mcmartins/francy,num_dependents_deps.dev:0 github.com/mcmartins/gap-lint,num_dependents_deps.dev:0 github.com/mcmartins/jsondbfs,num_dependents_deps.dev:0 @@ -795789,6 +810258,7 @@ github.com/mcpherrinm/goertzel,num_dependents_deps.dev:0 github.com/mcpherrinm/hue,num_dependents_deps.dev:0 github.com/mcpherrinm/kcapi-sys,num_dependents_deps.dev:0 github.com/mcpherrinm/spectrogram,num_dependents_deps.dev:0 +github.com/mcpierce/github-commit-timestamp-tagger, github.com/mcpm/mcpm,num_dependents_deps.dev:0 github.com/mcpowell87/coding-puzzles,num_dependents_deps.dev:0 github.com/mcqn/node-red-contrib-nfc,num_dependents_deps.dev:0 @@ -795874,6 +810344,7 @@ github.com/mcrowson/flask-sessionstore, github.com/mcroydon/hashmoji, github.com/mcroydon/roadtrip, github.com/mcrute/pydora, +github.com/mcruzdev/fmtok8s-ci, github.com/mcrvaz/boleto-brasileiro-validator,num_dependents_deps.dev:0 github.com/mcrwayfun/7days-golang,num_dependents_deps.dev:0 github.com/mcrwayfun/go-leet-code,num_dependents_deps.dev:0 @@ -796051,6 +810522,7 @@ github.com/md-extensions/mdl-compat,num_dependents_deps.dev:0 github.com/md-habibullah-au7/python_project, github.com/md-y/mangadex-full-api,num_dependents_deps.dev:0 github.com/md1512/genetic_planner,num_dependents_deps.dev:0 +github.com/md1810/terraform-destroy-on-action, github.com/md18733515033/go-study,num_dependents_deps.dev:0 github.com/md2k/amazon-vpc-cni-k8s,num_dependents_deps.dev:0 github.com/md2k/m3u8,num_dependents_deps.dev:0 @@ -796079,6 +810551,7 @@ github.com/mdahiemstra/react-native-flic-nonpbf,num_dependents_deps.dev:0 github.com/mdahlgrengadd/theme-LaTeX,num_dependents_deps.dev:0 github.com/mdahlstrand/sgcss,num_dependents_deps.dev:0 github.com/mdahlstrand/sgcss-theme-default,num_dependents_deps.dev:0 +github.com/mdahmenzpf/sync-fork, github.com/mdai/mdai-client-py, github.com/mdaif/python-rest-model, github.com/mdaines/viz.js,num_dependents_deps.dev:576 @@ -796094,6 +810567,7 @@ github.com/mdamien/pinmyreqs, github.com/mdamt/angular-simple-webrtc,num_dependents_deps.dev:0 github.com/mdamt/idup,num_dependents_deps.dev:0 github.com/mdanalysis/MDAnalysisData, +github.com/mdanics/Setup-Neo4j, github.com/mdanielolsson/kubectl-tbac,num_dependents_deps.dev:0 github.com/mdaniline/spring-autoproperties,num_dependents_deps.dev:0 github.com/mdanilov/esrlabs-auto-update, @@ -796184,6 +810658,7 @@ github.com/mdb/node-slack-integrator, github.com/mdb/phl-geocode,num_dependents_deps.dev:0 github.com/mdb/phl-pac-complaints,num_dependents_deps.dev:0 github.com/mdb/terraputs,num_dependents_deps.dev:0 +github.com/mdb571/wa-action, github.com/mdbarr/barrkeep,num_dependents_deps.dev:0 github.com/mdbarr/codemirror-json-lint,num_dependents_deps.dev:0 github.com/mdbarr/dapper,num_dependents_deps.dev:0 @@ -796277,6 +810752,9 @@ github.com/mdebbar/eslint-plugin-full-import,num_dependents_deps.dev:0 github.com/mdebbar/mobx-cache, github.com/mdebelle/websocket,num_dependents_deps.dev:0 github.com/mdeboer/hyperterm-dark-fusion-vibrancy,num_dependents_deps.dev:0 +github.com/mdecoleman/cloudformation-changeset, +github.com/mdecoleman/pr-branch-name, +github.com/mdecoleman/slack-job-status-notifier, github.com/mdedetrich/akka-http-webjars,num_dependents_deps.dev:0 github.com/mdedetrich/akka-streams-json,num_dependents_deps.dev:47 github.com/mdedetrich/censored-raw-header,num_dependents_deps.dev:0 @@ -796296,7 +810774,9 @@ github.com/mdefy/ngx-markdown-editor,num_dependents_deps.dev:0 github.com/mdeg/dexparser,num_dependents_deps.dev:0 github.com/mdegans/substream, github.com/mdegaris/go-learning,num_dependents_deps.dev:0 +github.com/mdegis/bandit-action, github.com/mdehoog/Semantic-UI-Calendar,num_dependents_deps.dev:0 +github.com/mdehoog/configure-aws-credentials-with-tags, github.com/mdehoog/ember-data-has-many-query,num_dependents_deps.dev:0 github.com/mdehoog/ember-routable-components-shim,num_dependents_deps.dev:0 github.com/mdehoog/mongo-go-driver,num_dependents_deps.dev:0 @@ -796314,6 +810794,7 @@ github.com/mdekstrand/intercalate,num_dependents_deps.dev:0 github.com/mdekstrand/mailmerge,num_dependents_deps.dev:0 github.com/mdekstrand/node-ant-runner,num_dependents_deps.dev:0 github.com/mdekstrand/run-and-slack,num_dependents_deps.dev:0 +github.com/mdelapenya/backport-github-action, github.com/mdelapenya/captain,num_dependents_deps.dev:0 github.com/mdelapenya/dgt,num_dependents_deps.dev:0 github.com/mdelapenya/probot-paths-labeller,num_dependents_deps.dev:0 @@ -796322,9 +810803,12 @@ github.com/mdelder/failover,num_dependents_deps.dev:0 github.com/mdelder/multicluster-keycloak-operator,num_dependents_deps.dev:0 github.com/mdelete/node-tesseract-native,num_dependents_deps.dev:2 github.com/mdelgadov/ngx-animate,num_dependents_deps.dev:0 +github.com/mdelillo/ssh-server-action, github.com/mdeljavan/math-string,num_dependents_deps.dev:0 github.com/mdeljs/mdel-models,num_dependents_deps.dev:0 github.com/mdeljs/mdel-react,num_dependents_deps.dev:0 +github.com/mdellabani/pr-size-checker, +github.com/mdellabani/pull-request-stats, github.com/mdelotavo/multitool, github.com/mdeltito/node-concept2,num_dependents_deps.dev:0 github.com/mdeltito/node-csafe,num_dependents_deps.dev:0 @@ -796424,6 +810908,7 @@ github.com/mdgeek/jquery-qrcode,num_dependents_deps.dev:0 github.com/mdghayman/Scarecrow, github.com/mdgis/datatools, github.com/mdgoldberg/pfr, +github.com/mdgreenwald/mozilla-sops-action, github.com/mdgriffin/pogo-slider,num_dependents_deps.dev:0 github.com/mdgriffith/elm-optimize-level-2, github.com/mdgriffith/elm-ui,criticality_score:0.432200 @@ -796479,6 +810964,7 @@ github.com/mdiblasio/autocharles, github.com/mdiblasio/funniest, github.com/mdiblasio/quickp, github.com/mdickers47/mtool,num_dependents_deps.dev:0 +github.com/mdickey-ghec-diamond/ZD1385239-fluffy-potato-public, github.com/mdickin/assertchain-jasmine,num_dependents_deps.dev:0 github.com/mdickin/httpClientFactory,num_dependents_deps.dev:6 github.com/mdickin/vscode-markdown-shortcuts,num_dependents_deps.dev:0 @@ -796670,6 +811156,7 @@ github.com/mdobson/game-of-life,num_dependents_deps.dev:0 github.com/mdobson/gistify,num_dependents_deps.dev:0 github.com/mdobson/node-pebble,num_dependents_deps.dev:0 github.com/mdobson/splunkstorm2,num_dependents_deps.dev:0 +github.com/mdobson/trigger-circleci-pipeline-action, github.com/mdobson/zetta-apigee-driver,num_dependents_deps.dev:0 github.com/mdobson/zetta-device-log-stream,num_dependents_deps.dev:0 github.com/mdobson/zetta-gmail-driver,num_dependents_deps.dev:0 @@ -796818,6 +811305,7 @@ github.com/mdrx-io/generator-ts-exe,num_dependents_deps.dev:0 github.com/mds001/bachome-bbmd,num_dependents_deps.dev:0 github.com/mds3dstn71/alys,num_dependents_deps.dev:0 github.com/mdsabo/fred-rs,num_dependents_deps.dev:0 +github.com/mdsadiq/lighthouse-compare, github.com/mdsamdsa/zigbee-gw-client,num_dependents_deps.dev:0 github.com/mdsanima/mdsanima, github.com/mdsauce/nethelp,num_dependents_deps.dev:0 @@ -796918,6 +811406,7 @@ github.com/mdvanes/thumbnail-webpack-plugin,num_dependents_deps.dev:0 github.com/mdvanes/typescript-batch-compiler,num_dependents_deps.dev:0 github.com/mdvorak/ilo4-metrics-exporter,num_dependents_deps.dev:0 github.com/mdvorak/resource-router,num_dependents_deps.dev:0 +github.com/mdvorak/update-action-readme, github.com/mdvorscak/cloakjs,num_dependents_deps.dev:0 github.com/mdvorscak/jasmine-ts-async,num_dependents_deps.dev:0 github.com/mdvorscak/ls-map-wrap,num_dependents_deps.dev:0 @@ -796952,6 +811441,7 @@ github.com/mdwhatcott/testing,num_dependents_deps.dev:0 github.com/mdwhatcott/tomato,num_dependents_deps.dev:0 github.com/mdwhatcott/workout,num_dependents_deps.dev:0 github.com/mdwheele/express-rickroll-middleware,num_dependents_deps.dev:0 +github.com/mdwhitten/gitflow-finish-action, github.com/mdwp/scrivito-accessible-accordion,num_dependents_deps.dev:0 github.com/mdwp/scrivito-adv-button,num_dependents_deps.dev:0 github.com/mdwp/scrivito-areachart,num_dependents_deps.dev:0 @@ -797145,7 +811635,9 @@ github.com/meagar/senv,num_dependents_deps.dev:0 github.com/meagar/snake,num_dependents_deps.dev:0 github.com/meagar/sorts,num_dependents_deps.dev:0 github.com/meagar/twitter-bootstrap-form-builder,num_dependents_deps.dev:0 +github.com/meagerfindings/PR-required-tasks, github.com/meagerframework/meager-node,num_dependents_deps.dev:0 +github.com/meaghanfitzgerald/ava-docs-translate, github.com/meain/counterer, github.com/meain/gloc,num_dependents_deps.dev:0 github.com/meain/mpb, @@ -797172,6 +811664,7 @@ github.com/mealleader/textrank,num_dependents_deps.dev:0 github.com/mealprime/recipe-ingredient-parser, github.com/mealsharing/flexibility,num_dependents_deps.dev:0 github.com/mean-cloud/meancloud-cli,num_dependents_deps.dev:0 +github.com/mean-dao/aws-webdeploy, github.com/mean-expert-official/boot-script,num_dependents_deps.dev:0 github.com/mean-expert-official/fireloop.io,num_dependents_deps.dev:0 github.com/mean-expert-official/loopback-component-realtime,num_dependents_deps.dev:4 @@ -797410,6 +811903,7 @@ github.com/mebusy/gowebfront,num_dependents_deps.dev:0 github.com/meby-bot/mevylogs,num_dependents_deps.dev:0 github.com/mebyus/chubster,num_dependents_deps.dev:0 github.com/mebyus/ffd,num_dependents_deps.dev:0 +github.com/mebyz/ambient-build, github.com/mebyz/haxe3,num_dependents_deps.dev:0 github.com/mec07/cloudwatchwriter,num_dependents_deps.dev:0 github.com/mec07/neterror,num_dependents_deps.dev:0 @@ -797440,6 +811934,7 @@ github.com/mechamobau/beer-api-go,num_dependents_deps.dev:0 github.com/mechamobau/simplestorage,num_dependents_deps.dev:0 github.com/mechanica/MPQ,num_dependents_deps.dev:0 github.com/mechanica/PNG,num_dependents_deps.dev:0 +github.com/mechanical-ink/allo-allo, github.com/mechanical-turk/generator-vulcanjs,num_dependents_deps.dev:0 github.com/mechanical-turk/statically-typed-graphql,num_dependents_deps.dev:0 github.com/mechanical-turk/vulcanjs-cli,num_dependents_deps.dev:0 @@ -797486,6 +811981,7 @@ github.com/mechio/takana,num_dependents_deps.dev:0 github.com/mechio/takana-client,num_dependents_deps.dev:0 github.com/mechiru/adstxt,num_dependents_deps.dev:0 github.com/mechiru/authorized-buyers-proto,num_dependents_deps.dev:0 +github.com/mechiru/chatwork, github.com/mechiru/chatwork-rs,num_dependents_deps.dev:0 github.com/mechiru/default-ext,num_dependents_deps.dev:0 github.com/mechiru/gcemeta,num_dependents_deps.dev:2 @@ -797545,6 +812041,8 @@ github.com/medall1st/go-collections,num_dependents_deps.dev:0 github.com/medallia/Word2VecJava,num_dependents_deps.dev:0 github.com/medallia/hipchat-notifier,num_dependents_deps.dev:0 github.com/medallia/merci,num_dependents_deps.dev:0 +github.com/medallyon/Push-To-EsoUI, +github.com/medallyon/update-package-version-on-release, github.com/medamine980/easy-deployer, github.com/medanat/dispatcher-middleware,num_dependents_deps.dev:0 github.com/medanat/eslint-config,num_dependents_deps.dev:0 @@ -797911,6 +812409,7 @@ github.com/medicalphysics/OpenDXMC, github.com/medicast/cordova-plugin-maplauncher,num_dependents_deps.dev:0 github.com/medicast/feature-manager,num_dependents_deps.dev:0 github.com/medicast/truevaultjs,num_dependents_deps.dev:0 +github.com/medici-tech/slither-action, github.com/mediciaai/mediciasafely-cli, github.com/medicinaesolutions/react-native-custom-forms,num_dependents_deps.dev:0 github.com/medicinaesolutions/react-native-matomo, @@ -798045,6 +812544,7 @@ github.com/medikoo/tape-index,num_dependents_deps.dev:0 github.com/medikoo/time-uuid,num_dependents_deps.dev:27 github.com/medikoo/timers-ext,num_dependents_deps.dev:27864 github.com/medikoo/type,num_dependents_deps.dev:283022 +github.com/medikoo/uni-global, github.com/medikoo/url3,num_dependents_deps.dev:20 github.com/medikoo/webmake-coffee,num_dependents_deps.dev:0 github.com/medikoo/webmake-yaml,num_dependents_deps.dev:0 @@ -798256,6 +812756,7 @@ github.com/medxfactor/muxifier,num_dependents_deps.dev:0 github.com/medxfactor/muxify,num_dependents_deps.dev:0 github.com/medyagh/gopogh,num_dependents_deps.dev:0 github.com/medyagh/goprettyorgohome,num_dependents_deps.dev:0 +github.com/medyagh/setup-minikube, github.com/medyanova-em/library,num_dependents_deps.dev:0 github.com/medyasun/py-modeler, github.com/medymik/configo,num_dependents_deps.dev:0 @@ -798281,11 +812782,14 @@ github.com/medzin/vault,num_dependents_deps.dev:0 github.com/medzuslovjansky/steen-utils,num_dependents_deps.dev:0 github.com/medzz123/dirtxt,num_dependents_deps.dev:0 github.com/meeDamian/country-emoji,num_dependents_deps.dev:6 +github.com/meeDamian/github-release, github.com/meeDamian/google-search-cli, github.com/meeDamian/mee,num_dependents_deps.dev:0 github.com/meeDamian/net-test, github.com/meeDamian/savepass,num_dependents_deps.dev:0 github.com/meeDamian/svg-square-grid-generator, +github.com/meeDamian/sync-readme, +github.com/meeDamian/tag-suggestions, github.com/meeDamian/toggl-cli,num_dependents_deps.dev:0 github.com/meeb/django-cachekiller, github.com/meeb/django-distill, @@ -798335,6 +812839,7 @@ github.com/meehow/node-validate-email-dns,num_dependents_deps.dev:0 github.com/meehow/wspost,num_dependents_deps.dev:0 github.com/meejah/carml, github.com/meejah/txtorcon, +github.com/meekdenzo/vrd, github.com/meekgeek/mxmlc,num_dependents_deps.dev:0 github.com/meeki007/node-red-contrib-ads1x15-raspi,num_dependents_deps.dev:0 github.com/meeki007/node-red-contrib-ads1x15_i2c,num_dependents_deps.dev:0 @@ -798366,6 +812871,7 @@ github.com/meenah-imam/hwn, github.com/meenakshisl/network-project,num_dependents_deps.dev:0 github.com/meenasrik/makelink,num_dependents_deps.dev:0 github.com/meenie/grunt-dev-server,num_dependents_deps.dev:0 +github.com/meenzen/streamlabs.socketclient, github.com/meepen/steam-friends,num_dependents_deps.dev:0 github.com/meepen/vtflib.js,num_dependents_deps.dev:0 github.com/meepobrother/b2b-shop,num_dependents_deps.dev:0 @@ -798463,6 +812969,8 @@ github.com/meerasndr/advent-of-code,num_dependents_deps.dev:0 github.com/meerasndr/cryptopals-go,num_dependents_deps.dev:0 github.com/meerasndr/golang-benchmarks-practice,num_dependents_deps.dev:0 github.com/meerasolution/react-native-ms-upi-payment,num_dependents_deps.dev:0 +github.com/meercodeio/app-center-create-configuration, +github.com/meercodeio/meercode-custom-variable, github.com/meerita/utilcss,num_dependents_deps.dev:0 github.com/meerk40t/Silence, github.com/meerk40t/meerk40t, @@ -798496,9 +813004,11 @@ github.com/mees-/path-to-matcher,num_dependents_deps.dev:0 github.com/meesalakr/test_npm,num_dependents_deps.dev:0 github.com/meesayen/eslint-config-paprika,num_dependents_deps.dev:0 github.com/meescode/mmjs,num_dependents_deps.dev:0 +github.com/meese-enterprises/gatsby-publish-without-jekyll, github.com/meesha7/daylio-parser, github.com/meeshh/batmansay,num_dependents_deps.dev:0 github.com/meeshh/fluidifyt,num_dependents_deps.dev:0 +github.com/meeshkan/action, github.com/meeshkan/daemonocle, github.com/meeshkan/dependency-detector, github.com/meeshkan/express-middleware,num_dependents_deps.dev:0 @@ -798539,6 +813049,7 @@ github.com/meetalva/video-player,num_dependents_deps.dev:0 github.com/meetamastani1/repooo,num_dependents_deps.dev:0 github.com/meetcircle/paint,num_dependents_deps.dev:0 github.com/meetcircle/pushy,num_dependents_deps.dev:0 +github.com/meetcshah19/wait-for-vercel-preview, github.com/meetdave3/node-ccavenue,num_dependents_deps.dev:0 github.com/meetearnest/autopublish,num_dependents_deps.dev:0 github.com/meetearnest/eslint-config-earnest,num_dependents_deps.dev:0 @@ -798829,6 +813340,7 @@ github.com/megamark16/django-live-support, github.com/megamayoy/image-uploader-service,num_dependents_deps.dev:0 github.com/megamaz/NoodleExtensions-python, github.com/megamaz/beatsaver-python, +github.com/megamegax/slack_action, github.com/megaminxdude/golang-vue-test,num_dependents_deps.dev:0 github.com/megamsys/heka,num_dependents_deps.dev:0 github.com/megamsys/megam_api.rs,num_dependents_deps.dev:0 @@ -798882,6 +813394,7 @@ github.com/megaproaktiv/cit,num_dependents_deps.dev:0 github.com/megaprog/bean-proxy,num_dependents_deps.dev:0 github.com/megaprokoli/vmtlib, github.com/megarohas/jackdaw_helper,num_dependents_deps.dev:0 +github.com/megasanjay/upload-to-zenodo, github.com/megaserg/geographiclib-cython-bindings, github.com/megashrieks/code-runner,num_dependents_deps.dev:0 github.com/megasmack/jquery.deorphan.js,num_dependents_deps.dev:0 @@ -799006,6 +813519,8 @@ github.com/megmore/es-helper,num_dependents_deps.dev:0 github.com/megmore/eslint-config,num_dependents_deps.dev:0 github.com/megmore/lang-adapter,num_dependents_deps.dev:0 github.com/megmore/scss-helper,num_dependents_deps.dev:0 +github.com/mego22/actions-git-sha, +github.com/mego22/actions-workflow-pipeline, github.com/megorich/hebei,num_dependents_deps.dev:0 github.com/megos/eslint-config-megos,num_dependents_deps.dev:0 github.com/megoth/minimalist,num_dependents_deps.dev:0 @@ -799188,6 +813703,7 @@ github.com/meherett/pytest-solidity, github.com/meherett/python-hdwallet, github.com/meherett/pyxdc, github.com/meherett/shuttle, +github.com/mehernosh/automerge-base2head, github.com/mehetett/bip32key, github.com/mehfuzh/lighter,num_dependents_deps.dev:0 github.com/mehikmat/PyHadoop, @@ -799392,6 +813908,7 @@ github.com/meifamily/ptt-alertor,num_dependents_deps.dev:1 github.com/meifangqi/test_sample, github.com/meigo/svelte-video-player,num_dependents_deps.dev:0 github.com/meihaoyidian/tm-pip-tools, +github.com/meihei3/makefile-build-target-finder, github.com/meihuanyu/fx-form,num_dependents_deps.dev:0 github.com/meihuanyu/react-free-form,num_dependents_deps.dev:0 github.com/meijer3/mapbox-imdf,num_dependents_deps.dev:0 @@ -799584,6 +814101,7 @@ github.com/meisterplayer/player-html5player,num_dependents_deps.dev:0 github.com/meisterplayer/ui-debugoverlay,num_dependents_deps.dev:0 github.com/meisterplayer/ui-message,num_dependents_deps.dev:0 github.com/meisterplayer/ui-standardui,num_dependents_deps.dev:0 +github.com/meisyal/sastrawi-ruby, github.com/meitianyitan/cross-webpack,num_dependents_deps.dev:0 github.com/meitianyitan/docm,num_dependents_deps.dev:32 github.com/meitianyitan/jtlib, @@ -799872,6 +814390,7 @@ github.com/melgrove/basejs,num_dependents_deps.dev:0 github.com/melgrove/json2markup,num_dependents_deps.dev:0 github.com/melgrove/type,num_dependents_deps.dev:0 github.com/melgrove/unreduce,num_dependents_deps.dev:0 +github.com/melheffe/rails_version_tagger, github.com/melhorenvio/bootstrap,num_dependents_deps.dev:0 github.com/meli-dario-buitrago/daily-reminder,num_dependents_deps.dev:0 github.com/meli/xdg-utils,num_dependents_deps.dev:1 @@ -799903,6 +814422,7 @@ github.com/meliodaseren/gogopower,num_dependents_deps.dev:0 github.com/meliorence/react-native-render-html,criticality_score:0.492280 github.com/meliorence/react-native-snap-carousel,criticality_score:0.405400 github.com/melioristic/hevapy, +github.com/melipass/lastfm-to-markdown, github.com/melis-wallet/melis-api-js,num_dependents_deps.dev:0 github.com/melis-wallet/melis-fork-claimer,num_dependents_deps.dev:0 github.com/melisa92/pdft-gen,num_dependents_deps.dev:0 @@ -799966,6 +814486,7 @@ github.com/mellanox/k8s-rdma-shared-dev-plugin,num_dependents_deps.dev:0 github.com/mellanox/mlxdevm-go,num_dependents_deps.dev:0 github.com/mellanox/network-operator,num_dependents_deps.dev:0 github.com/mellanox/sriovnet,num_dependents_deps.dev:9 +github.com/mellemhere/homeassistant-entity-action, github.com/mellenaj/react-mui-simple-form-validation,num_dependents_deps.dev:0 github.com/mellertson/hitbtc, github.com/mellesies/cmh, @@ -800215,6 +814736,13 @@ github.com/meltygroup/pasee, github.com/meltyness/art_benchmarks,num_dependents_deps.dev:0 github.com/meluleki071213/filemonitorservice,num_dependents_deps.dev:0 github.com/melusc/cli-interval, +github.com/melusina-org/asdf-operate, +github.com/melusina-org/gha-install-macports, +github.com/melusina-org/make-common-lisp-program, +github.com/melusina-org/run-common-lisp-program, +github.com/melusina-org/setup-common-lisp, +github.com/melusina-org/setup-macports, +github.com/melusina-org/setup-quicklisp, github.com/melvey/generator-bookshelf,num_dependents_deps.dev:0 github.com/melvey/generator-react-webpack-base,num_dependents_deps.dev:0 github.com/melvey/validate-gitlab-ci,num_dependents_deps.dev:0 @@ -800276,6 +814804,7 @@ github.com/melwyn95/sudokusolver,num_dependents_deps.dev:0 github.com/melwynfurtado/postcode-validator, github.com/melxx001/iisconfig2json,num_dependents_deps.dev:0 github.com/melzak252/goapp,num_dependents_deps.dev:0 +github.com/mem-dixy/celestine, github.com/mem-labs/mem-node, github.com/mem-memov/buildsystemswithgo,num_dependents_deps.dev:0 github.com/mem-memov/clew,num_dependents_deps.dev:0 @@ -800347,6 +814876,7 @@ github.com/memes/pi,num_dependents_deps.dev:0 github.com/memesterhub/beaucli, github.com/memetics19/gitfun, github.com/memetolsen/node-red-grovepi-nodes,num_dependents_deps.dev:0 +github.com/memew1se/github-to-notion, github.com/memex/trails,num_dependents_deps.dev:0 github.com/memexapp/memex-js-sdk,num_dependents_deps.dev:0 github.com/memeyou/node-mcxnow,num_dependents_deps.dev:0 @@ -800367,6 +814897,7 @@ github.com/memgraph/rsmgclient,num_dependents_deps.dev:0 github.com/memiah/simple-lightbox-accessible,num_dependents_deps.dev:0 github.com/memiiso/pyliquibase, github.com/memikequinn/git-lfs,num_dependents_deps.dev:0 +github.com/memiks/treble-build-github-actions, github.com/memir0/spot,num_dependents_deps.dev:0 github.com/memkind/memkind, github.com/memlab/swing-shortcut-manager,num_dependents_deps.dev:0 @@ -800522,6 +815053,8 @@ github.com/mendersoftware/mender,"criticality_score:0.578710,num_dependents_deps github.com/mendersoftware/mender-artifact,num_dependents_deps.dev:0 github.com/mendersoftware/mender-cli,num_dependents_deps.dev:0 github.com/mendersoftware/mender-connect,num_dependents_deps.dev:0 +github.com/mendersoftware/mender-gh-action-create-deployment, +github.com/mendersoftware/mender-gh-action-upload-artifact, github.com/mendersoftware/mender-stress-test-client,num_dependents_deps.dev:0 github.com/mendersoftware/mendertesting,num_dependents_deps.dev:0 github.com/mendersoftware/progressbar,num_dependents_deps.dev:5 @@ -800533,6 +815066,7 @@ github.com/mendersoftware/workflows,num_dependents_deps.dev:0 github.com/mendes2713/btdb-search,num_dependents_deps.dev:0 github.com/mendes2713/idope-search,num_dependents_deps.dev:0 github.com/mendes2713/search-torrent,num_dependents_deps.dev:0 +github.com/mendesfabio/dune-upload, github.com/mendesfelipe87/react-chartjs-3,num_dependents_deps.dev:0 github.com/mendesjorge/slogle,num_dependents_deps.dev:0 github.com/mendessoares/mminte, @@ -800544,6 +815078,7 @@ github.com/mendhak/angular-performance,num_dependents_deps.dev:0 github.com/mendhak/gpslogger,criticality_score:0.483500 github.com/mendhak/gradle-crowdin-plugin,num_dependents_deps.dev:0 github.com/mendhak/node-hashcat,num_dependents_deps.dev:0 +github.com/mendhak/steam-github-profile-status, github.com/mendheakshay/helloworld-test,num_dependents_deps.dev:0 github.com/mendismenon/reactTableExactMatch,num_dependents_deps.dev:0 github.com/mendix/Cordova-sqlite-storage-pgb,num_dependents_deps.dev:0 @@ -801088,6 +815623,7 @@ github.com/mepyyeti/billinfo,num_dependents_deps.dev:0 github.com/mepyyeti/speedup_mortgage,num_dependents_deps.dev:0 github.com/meqaio/swagger_meqa,num_dependents_deps.dev:0 github.com/meqif/rust-utp,num_dependents_deps.dev:23 +github.com/mer-team/rabbitmq-mng-action, github.com/meracan/s3-netcdf, github.com/merajcal/smart-shortcutkey-js-library,num_dependents_deps.dev:0 github.com/merajsahebdar/buttress-client-go,num_dependents_deps.dev:0 @@ -801151,12 +815687,14 @@ github.com/mercafacil/graphql-db-multi-tenancy,num_dependents_deps.dev:0 github.com/mercafacil/kafka-client,num_dependents_deps.dev:0 github.com/mercafacil/kafka-graphql,num_dependents_deps.dev:0 github.com/mercanuis/varnish,num_dependents_deps.dev:0 +github.com/mercari/Whitesource-Scan-Action, github.com/mercari/certificate-expiry-monitor-controller,num_dependents_deps.dev:0 github.com/mercari/coredns,num_dependents_deps.dev:0 github.com/mercari/datastore,num_dependents_deps.dev:0 github.com/mercari/eslint-config-mercari, github.com/mercari/extract-primitives,num_dependents_deps.dev:0 github.com/mercari/gaurun,num_dependents_deps.dev:0 +github.com/mercari/github-app-token-generator, github.com/mercari/github-token-app, github.com/mercari/go-bps,num_dependents_deps.dev:0 github.com/mercari/go-circuitbreaker,num_dependents_deps.dev:0 @@ -801181,6 +815719,7 @@ github.com/mercari/wrench,num_dependents_deps.dev:0 github.com/mercari/yo,num_dependents_deps.dev:0 github.com/mercateo/json-schema,num_dependents_deps.dev:0 github.com/mercedesb/react-use-fetch-api,num_dependents_deps.dev:0 +github.com/mercedesbenzio/detect-action, github.com/mercedesbenzio/iframe-hash-manager,num_dependents_deps.dev:0 github.com/mercedesbenzio/ts-spec-bootstrapper,num_dependents_deps.dev:0 github.com/merces/pev,criticality_score:0.470390 @@ -801199,6 +815738,7 @@ github.com/merchii/rack-alive,num_dependents_deps.dev:0 github.com/merchii/rack-iframe,num_dependents_deps.dev:0 github.com/merchii/yaml2env,num_dependents_deps.dev:0 github.com/merchise/xoutil, +github.com/merchstack/set-action-dependabot-secret, github.com/merciba/ecrit,num_dependents_deps.dev:0 github.com/merciba/orequire,num_dependents_deps.dev:0 github.com/merciba/overture,num_dependents_deps.dev:0 @@ -801294,6 +815834,7 @@ github.com/merge-api/react-merge-link, github.com/merge-api/vue-merge-link,num_dependents_deps.dev:0 github.com/merge/skulls,criticality_score:0.381030 github.com/mergeability/mergeable,"criticality_score:0.653480,num_dependents_deps.dev:0" +github.com/mergebase/mergebase-scan-action, github.com/mergeforward/store, github.com/mergerine/github-mergerine,num_dependents_deps.dev:0 github.com/mergermarket/acuris-aws-es-connection,num_dependents_deps.dev:0 @@ -801346,6 +815887,7 @@ github.com/merielleimpreso/aloemobileapp-encrypt,num_dependents_deps.dev:0 github.com/meriemf/lotide,num_dependents_deps.dev:0 github.com/merighifacundo/aws_dynamo_copy_table, github.com/merighifacundo/connect-modrewrite, +github.com/merighifacundo/node-version-updater, github.com/merighifacundo/runtastic.command.line,num_dependents_deps.dev:0 github.com/merigor/pyxidoc, github.com/merijnponzo/ponzo-vanilla,num_dependents_deps.dev:0 @@ -801387,6 +815929,7 @@ github.com/merkely-development/reporter,num_dependents_deps.dev:0 github.com/merkely-development/watcher,num_dependents_deps.dev:0 github.com/merkenich/restful-fluency,num_dependents_deps.dev:0 github.com/merkez/ipfilter,num_dependents_deps.dev:0 +github.com/merkez/notifyme, github.com/merkle-open/eslint-config, github.com/merkle-open/frontend-defaults, github.com/merkle-open/generator-nitro, @@ -801585,6 +816128,7 @@ github.com/mertonium/nextrip-node,num_dependents_deps.dev:0 github.com/mertozylmz/react-native-flash,num_dependents_deps.dev:0 github.com/mertsalik/metabasepy, github.com/mertsaygi/fastly-cli, +github.com/mertssmnoglu/greeting-action, github.com/mertturkman/ordergrpc,num_dependents_deps.dev:0 github.com/mertuner/earnings-calendar-yahoo,num_dependents_deps.dev:0 github.com/mertushka/haxball.js,num_dependents_deps.dev:0 @@ -802134,6 +816678,9 @@ github.com/meta-utils/events, github.com/meta-utils/types, github.com/meta1-blockchain/meta1-python-testnet, github.com/meta1-blockchain/meta1js,num_dependents_deps.dev:0 +github.com/metaDAOproject/anchor-test, +github.com/metaDAOproject/setup-anchor, +github.com/metaDAOproject/setup-solana, github.com/metaa/cookiebox,num_dependents_deps.dev:0 github.com/metaa/cookiebox.js, github.com/metaa/css-query,num_dependents_deps.dev:0 @@ -802514,6 +817061,15 @@ github.com/metal3-io/baremetal-operator,num_dependents_deps.dev:4 github.com/metal3-io/cluster-api-provider-metal3,num_dependents_deps.dev:0 github.com/metal3-io/hardware-classification-controller,num_dependents_deps.dev:0 github.com/metal3-io/ip-address-manager,num_dependents_deps.dev:0 +github.com/metal3-io/ironic-client,num_dependents_deps.dev:0 +github.com/metal3-io/ironic-image,num_dependents_deps.dev:0 +github.com/metal3-io/ironic-ipa-downloader,num_dependents_deps.dev:0 +github.com/metal3-io/mariadb-image,num_dependents_deps.dev:0 +github.com/metal3-io/metal3-dev-env,num_dependents_deps.dev:0 +github.com/metal3-io/metal3-docs,num_dependents_deps.dev:0 +github.com/metal3-io/metal3-io.github.io,num_dependents_deps.dev:0 +github.com/metal3-io/project-infra,num_dependents_deps.dev:0 +github.com/metal3-io/utility-images,num_dependents_deps.dev:0 github.com/metal3d/knotter,num_dependents_deps.dev:0 github.com/metal3d/python-libquvi, github.com/metal3d/rethinkmodel, @@ -802541,6 +817097,7 @@ github.com/metalabdesign/waygate,num_dependents_deps.dev:0 github.com/metalabdesign/webpack-polyfill,num_dependents_deps.dev:0 github.com/metalabdesign/wysihtml5,num_dependents_deps.dev:0 github.com/metalbass/django3-collectionfield, +github.com/metalbear-co/sccache-action, github.com/metalblueberry/go-plotly,num_dependents_deps.dev:0 github.com/metalblueberry/halite-bot,num_dependents_deps.dev:0 github.com/metalblueberry/mdt,num_dependents_deps.dev:0 @@ -802674,6 +817231,7 @@ github.com/metaodi/sruthi, github.com/metaodi/swissparlpy, github.com/metaopt/MetaOptim, github.com/metaory/d2.stat,num_dependents_deps.dev:0 +github.com/metaory/github-readme-topics-action, github.com/metaory/meta-aws-bastion-ssh,num_dependents_deps.dev:0 github.com/metaory/meta-mount,num_dependents_deps.dev:0 github.com/metapages/metaframe-hook, @@ -802862,6 +817420,7 @@ github.com/metatoaster/mtj.jibber, github.com/metatoaster/psrv, github.com/metatribal/xmlToJSON,num_dependents_deps.dev:2 github.com/metatron-app/metatron-discovery,criticality_score:0.460980 +github.com/metatypedev/ghjk, github.com/metatypedev/typegraph, github.com/metauro/events-await,num_dependents_deps.dev:0 github.com/metauro/fastify-plus,num_dependents_deps.dev:0 @@ -802887,6 +817446,7 @@ github.com/metbosch/homebridge-http-temperature,num_dependents_deps.dev:0 github.com/metbril/pymindergas, github.com/metcalf/envconfig,num_dependents_deps.dev:0 github.com/metcalf/throttled,num_dependents_deps.dev:0 +github.com/metcalfc/changelog-generator, github.com/mete-work/Joi,num_dependents_deps.dev:0 github.com/mete-work/egg-koa-session-auth,num_dependents_deps.dev:0 github.com/mete-work/egg-minio,num_dependents_deps.dev:0 @@ -803010,6 +817570,7 @@ github.com/meteora-digital/throttled-animation-frame,num_dependents_deps.dev:0 github.com/meteora-digital/tween,num_dependents_deps.dev:0 github.com/meteorbites/json-to-plantuml,num_dependents_deps.dev:0 github.com/meteorcloudy/my_tests,num_dependents_deps.dev:0 +github.com/meteorengineer/setup-meteor, github.com/meteorhacks/comet-agent,num_dependents_deps.dev:0 github.com/meteorhacks/histo-utils,num_dependents_deps.dev:0 github.com/meteorhacks/js-pipes,num_dependents_deps.dev:0 @@ -803126,7 +817687,12 @@ github.com/metinsenturk/flat_table, github.com/metinsimsek61/smskDB,num_dependents_deps.dev:0 github.com/metio/reguloj,num_dependents_deps.dev:0 github.com/metio/yosql,num_dependents_deps.dev:1608 +github.com/metis-data/metis-analysis, +github.com/metis-data/metis-slow-queries-log, +github.com/metis-data/sequelize-migrations-validator, +github.com/metis-data/sql-migrations-validator, github.com/metis-data/sqlalchemy_collector, +github.com/metis-data/test-queries-analyzer, github.com/metis-labs/metis-server,num_dependents_deps.dev:0 github.com/metisadmin/metis-base,num_dependents_deps.dev:0 github.com/metisadmin/metis-canvas,num_dependents_deps.dev:0 @@ -803336,6 +817902,9 @@ github.com/metricfu/metric_fu,num_dependents_deps.dev:12 github.com/metricfu/roodi,num_dependents_deps.dev:2 github.com/metricmike/django-iprestrict, github.com/metricminer-msr/metricminer2,num_dependents_deps.dev:0 +github.com/metrico/clickhouse-server-action, +github.com/metrico/loki-action, +github.com/metrico/opensearch-action, github.com/metricq/aiocouch, github.com/metricq/metricq-python, github.com/metricrule/metricrule-python-agent, @@ -803361,6 +817930,7 @@ github.com/metriculous-ml/metriculous, github.com/metriczulu/ensemblizer, github.com/metriczulu/tuneRs, github.com/metriczulu/wordvecpy, +github.com/metril/gitlab-runner-action, github.com/metrilyx/metrilyx-cacher,num_dependents_deps.dev:0 github.com/metrink/croquet,num_dependents_deps.dev:0 github.com/metriql/lookml-generator, @@ -803389,6 +817959,7 @@ github.com/metronical/metron,num_dependents_deps.dev:0 github.com/metronical/proto,num_dependents_deps.dev:0 github.com/metronlab/bow,num_dependents_deps.dev:0 github.com/metronlab/genius,num_dependents_deps.dev:0 +github.com/metrue/finetune, github.com/metrue/fx,"criticality_score:0.476730,num_dependents_deps.dev:0" github.com/metrue/go-ssh-client,num_dependents_deps.dev:1 github.com/metrue/metrue.github.io,num_dependents_deps.dev:0 @@ -803516,6 +818087,7 @@ github.com/meviktor/newsapi-n,num_dependents_deps.dev:0 github.com/mevinoth/r-tiny-tabs,num_dependents_deps.dev:0 github.com/mevinoth/slim-ui,num_dependents_deps.dev:0 github.com/mevinoth/vue-tiny-tabs,num_dependents_deps.dev:0 +github.com/mevisoft/action-pull-request, github.com/mevlanaayas/django-teams, github.com/mevoid/myfirstdemo,num_dependents_deps.dev:0 github.com/mevolt/project,num_dependents_deps.dev:0 @@ -803605,6 +818177,7 @@ github.com/meyer9/lyre,num_dependents_deps.dev:0 github.com/meyer9/micro-session,num_dependents_deps.dev:0 github.com/meyer9/postqueue,num_dependents_deps.dev:0 github.com/meyerd/pimatic-homegear,num_dependents_deps.dev:0 +github.com/meyerkev/update-tag, github.com/meyermarcel/icm,num_dependents_deps.dev:0 github.com/meyers007/colabext, github.com/meyers007/mangorest, @@ -803690,6 +818263,8 @@ github.com/mezereon-co/bigcommerce-stencil-lifestyle,num_dependents_deps.dev:0 github.com/mezereon-co/bigcommerce-stencil-roots,num_dependents_deps.dev:0 github.com/mezereon-co/bigcommerce-stencil-vault,num_dependents_deps.dev:0 github.com/mezgoodle/Caesar-and-Vigenere-ciphers,num_dependents_deps.dev:0 +github.com/mezgoodle/auto-formatter, +github.com/mezgoodle/format-repo, github.com/mezgoodle/sync-folders, github.com/mezhevykh223571/grid,num_dependents_deps.dev:0 github.com/mezhevykh223571/localStorage-wrapper,num_dependents_deps.dev:0 @@ -803735,6 +818310,7 @@ github.com/mfaisalkhatri/ConfigReader,num_dependents_deps.dev:0 github.com/mfaishaladiyatma/tesgits,num_dependents_deps.dev:0 github.com/mfaishalakbar/fscchan-js,num_dependents_deps.dev:0 github.com/mfaizanse/kyma,num_dependents_deps.dev:0 +github.com/mfaizanse/wait-for-git-commit-status-action, github.com/mfaizfatah/stockbit,num_dependents_deps.dev:0 github.com/mfaizfatah/story-tales,num_dependents_deps.dev:0 github.com/mfalade/glitzer, @@ -803911,6 +818487,8 @@ github.com/mfine15/csync,num_dependents_deps.dev:0 github.com/mfine2/vmgr, github.com/mfinelli/gulp-bankrupt,num_dependents_deps.dev:0 github.com/mfinelli/koa-uncapitalize,num_dependents_deps.dev:0 +github.com/mfinelli/setup-imagemagick, +github.com/mfinelli/setup-shfmt, github.com/mfinzi/equivariant-MLP, github.com/mfischersw/DiagramDigitizer, github.com/mfish33/image-sizer,num_dependents_deps.dev:0 @@ -804148,6 +818726,7 @@ github.com/mfyuce/netas-olap-dbapi, github.com/mfyz/angular-bootstrap-boilerplate,num_dependents_deps.dev:0 github.com/mg-javascript/stocky, github.com/mg-javascript/trell, +github.com/mg-smartrent/github-actions-maven-release, github.com/mg/ngScrollSpy,num_dependents_deps.dev:0 github.com/mg/react-autoid,num_dependents_deps.dev:0 github.com/mg/react-m,num_dependents_deps.dev:0 @@ -804253,6 +818832,7 @@ github.com/mgattozzi/terminator,num_dependents_deps.dev:0 github.com/mgattozzi/uglify-hs,num_dependents_deps.dev:0 github.com/mgattozzi/wasm-add,num_dependents_deps.dev:0 github.com/mgattuso/gtt.email-auth,num_dependents_deps.dev:0 +github.com/mgattuso/publish-nuget, github.com/mgautam98/ChitraPy, github.com/mgauthier/timekit,num_dependents_deps.dev:0 github.com/mgavaghan/geodesy,num_dependents_deps.dev:0 @@ -804588,6 +819168,7 @@ github.com/mgibby91/lotide,num_dependents_deps.dev:0 github.com/mgibeau/applights-sdk,num_dependents_deps.dev:0 github.com/mgibeau/gitlab-npm-audit-parser,num_dependents_deps.dev:0 github.com/mgibeau/gitlab-sast-nodejs,num_dependents_deps.dev:0 +github.com/mgibeau/semantic-release-expo-github-action, github.com/mgid/vue-tables-2,num_dependents_deps.dev:0 github.com/mgieles/limepy, github.com/mgierok/monujo,num_dependents_deps.dev:0 @@ -804631,6 +819212,7 @@ github.com/mglagola/markg-cli, github.com/mglagola/validate-env, github.com/mglaman/drupal-check,criticality_score:0.433270 github.com/mglaman/ng-github,num_dependents_deps.dev:0 +github.com/mglaman/phpstan-drupal, github.com/mgland/iutest, github.com/mgledi/DRUMS,num_dependents_deps.dev:0 github.com/mgleeming/phosphomatics-api-wrapper, @@ -804727,6 +819309,7 @@ github.com/mgoldchild/nmv,num_dependents_deps.dev:0 github.com/mgoldsborough/grunt-contrib-nodemon,num_dependents_deps.dev:0 github.com/mgolkardev/react-native-jalali-date-picker-rtl, github.com/mgoltzsche/cache-provisioner,num_dependents_deps.dev:0 +github.com/mgoltzsche/conventional-release, github.com/mgoltzsche/helm-kustomize-plugin,num_dependents_deps.dev:0 github.com/mgoltzsche/image-registry-operator,num_dependents_deps.dev:0 github.com/mgoltzsche/k8storagex,num_dependents_deps.dev:0 @@ -804823,6 +819406,7 @@ github.com/mgrbot/mgrbot-event,num_dependents_deps.dev:0 github.com/mgrcto/angular-odata-v4_01, github.com/mgrcto/angular-odata4_01-es5,num_dependents_deps.dev:0 github.com/mgreasly/PreactGetJsonData,num_dependents_deps.dev:0 +github.com/mgreau/log4shell-cpatch, github.com/mgree/ffs,num_dependents_deps.dev:0 github.com/mgreenbe/parsemath,num_dependents_deps.dev:0 github.com/mgreenbe/rehype-math,num_dependents_deps.dev:0 @@ -804865,8 +819449,11 @@ github.com/mgrush/rn-materials,num_dependents_deps.dev:0 github.com/mgrush/webapp-layer,num_dependents_deps.dev:0 github.com/mgrush/webapp-select,num_dependents_deps.dev:0 github.com/mgrware/atozfunc,num_dependents_deps.dev:0 +github.com/mgrybyk/allure-report-branch-action, github.com/mgrybyk/chartist-plugin-slicedonutmargin,num_dependents_deps.dev:0 github.com/mgrybyk/expect-webdriverio,num_dependents_deps.dev:4 +github.com/mgrybyk/git-commit-pull-push-action, +github.com/mgrybyk/html-trend-report-action, github.com/mgrybyk/mocha-qtest-mapping-reporter,num_dependents_deps.dev:0 github.com/mgrybyk/node-pinset,num_dependents_deps.dev:0 github.com/mgrzesiuk/qiskit-utils, @@ -804977,6 +819564,8 @@ github.com/mgvjet/adogis,num_dependents_deps.dev:0 github.com/mgw2168/customresource,num_dependents_deps.dev:0 github.com/mgw2168/dbcluster-operator,num_dependents_deps.dev:0 github.com/mgw2168/dmp-operator,num_dependents_deps.dev:0 +github.com/mgwalker/action-htmlproofer, +github.com/mgwalker/action-no-root-relative-links, github.com/mgwalker/cli-position,num_dependents_deps.dev:2 github.com/mgwalker/cooger-style,num_dependents_deps.dev:0 github.com/mgwalker/hubot-slack-reading-list,num_dependents_deps.dev:0 @@ -805018,6 +819607,7 @@ github.com/mh-mobile/scshot,num_dependents_deps.dev:0 github.com/mh-salari/davat, github.com/mh-superbox/unipi-control, github.com/mh35/bnicovideo,num_dependents_deps.dev:0 +github.com/mh4647/replace-action-z, github.com/mh4gf/notion-deglacer,num_dependents_deps.dev:0 github.com/mh5001/khet,num_dependents_deps.dev:0 github.com/mh61503891/electron-temaki-sushi,num_dependents_deps.dev:0 @@ -805204,6 +819794,7 @@ github.com/mhassan1/redis-memory-server,num_dependents_deps.dev:0 github.com/mhaupt63/ChangePointDetector, github.com/mhauru/abeliantensors, github.com/mhauru/ncon, +github.com/mhausenblas/mkdocs-deploy-gh-pages, github.com/mhawkshaw/homebridge-enviroplus,num_dependents_deps.dev:0 github.com/mhayes/patterntap-gem,num_dependents_deps.dev:0 github.com/mhayes/vue-twentytwenty,num_dependents_deps.dev:2 @@ -805294,10 +819885,25 @@ github.com/mheadd/openfec,num_dependents_deps.dev:0 github.com/mheadd/phl-property,num_dependents_deps.dev:0 github.com/mheap/action-guard,num_dependents_deps.dev:0 github.com/mheap/action-run,num_dependents_deps.dev:0 +github.com/mheap/auto-close-org-issues-action, +github.com/mheap/cascading-merge-action, github.com/mheap/convert-action,num_dependents_deps.dev:0 +github.com/mheap/debug-artifact, +github.com/mheap/frontmatter-json-schema-action, +github.com/mheap/github-action-heroku-logs, +github.com/mheap/github-action-hold-your-horses, +github.com/mheap/github-action-issue-management, +github.com/mheap/github-action-issue-to-jira, +github.com/mheap/github-action-pr-heroku-review-app, +github.com/mheap/github-action-required-labels, github.com/mheap/github-show-actions,num_dependents_deps.dev:0 +github.com/mheap/markdown-meta-action, github.com/mheap/passport-offline,num_dependents_deps.dev:0 +github.com/mheap/phpunit-matcher-action, github.com/mheap/problem-matcher,num_dependents_deps.dev:0 +github.com/mheap/require-checklist-action, +github.com/mheap/reviewed-by-trailer-action, +github.com/mheap/submodule-sync-action, github.com/mheap/trello-cli,"criticality_score:0.306350,num_dependents_deps.dev:0" github.com/mheath/noaa,num_dependents_deps.dev:0 github.com/mheaus/eslint-config-mheaus,num_dependents_deps.dev:0 @@ -805407,12 +820013,14 @@ github.com/mhib/combusken,num_dependents_deps.dev:0 github.com/mhib/pairing_heap,num_dependents_deps.dev:0 github.com/mhibbins/hemiplasytool, github.com/mhiew/material-calendarview,num_dependents_deps.dev:0 +github.com/mhiew/redoc-lint-github-action, github.com/mhiguera/adapt,num_dependents_deps.dev:0 github.com/mhiguera/bracket,num_dependents_deps.dev:0 github.com/mhiguera/eob,num_dependents_deps.dev:0 github.com/mhiguera/koth,num_dependents_deps.dev:0 github.com/mhiguera/specific,num_dependents_deps.dev:0 github.com/mhiguera/tailed-mongo,num_dependents_deps.dev:0 +github.com/mhillerstrom/gh-action-bump-version-plus, github.com/mhils/backports.socketpair, github.com/mhils/github-stats,num_dependents_deps.dev:0 github.com/mhils/native_web_app, @@ -805462,6 +820070,7 @@ github.com/mhipo1364/pars-green, github.com/mhipszki/eslint-summary-formatter,num_dependents_deps.dev:0 github.com/mhirochika/earthquaked,num_dependents_deps.dev:0 github.com/mhisham/vue-timepickr,num_dependents_deps.dev:0 +github.com/mhitza/flake8-jupyter-notebook, github.com/mhjabreel/tnet, github.com/mhjadav/gatsby-themes,num_dependents_deps.dev:0 github.com/mhjadav/react-dates-cleartrip,num_dependents_deps.dev:0 @@ -805649,6 +820258,8 @@ github.com/mhr320/Wmt2Ics, github.com/mhrabiee/ladder-sass,num_dependents_deps.dev:0 github.com/mhradek/aurkitu,num_dependents_deps.dev:0 github.com/mhretab/ember-cli-image-cropper,num_dependents_deps.dev:0 +github.com/mhriemers/metatrader-compile, +github.com/mhriemers/setup-metatrader, github.com/mhrimaz/AwesomeJavaFX,criticality_score:0.359980 github.com/mhristof/alfred-boxpn,num_dependents_deps.dev:0 github.com/mhristof/alfred-meme,num_dependents_deps.dev:0 @@ -805814,6 +820425,7 @@ github.com/mi-g/firefox-addons-add-update-version,num_dependents_deps.dev:0 github.com/mi-g/jocly,num_dependents_deps.dev:0 github.com/mi-g/mp4-mjpeg,num_dependents_deps.dev:0 github.com/mi-g/weh,num_dependents_deps.dev:0 +github.com/mi-kas/kover-report, github.com/mi-lad/stui, github.com/mi-pyt-ghia/petrnymsa, github.com/mi-sec/geonet,num_dependents_deps.dev:0 @@ -805841,6 +820453,7 @@ github.com/mi92/batchdist, github.com/miLibris/flask-rest-jsonapi,criticality_score:0.397020 github.com/miLibris/node-ectrender,num_dependents_deps.dev:0 github.com/miNsu01/skku_stat_m01,num_dependents_deps.dev:0 +github.com/miRoox/wolfram-action, github.com/miZyind/eslint-plugin-mizyind,num_dependents_deps.dev:0 github.com/miZyind/nestjs-xion,num_dependents_deps.dev:0 github.com/miZyind/next-composer,num_dependents_deps.dev:0 @@ -806049,6 +820662,7 @@ github.com/mic92/whois42d,num_dependents_deps.dev:0 github.com/micaderito/Trida-pizarron,num_dependents_deps.dev:0 github.com/micado-eu/klaro,num_dependents_deps.dev:0 github.com/micado-scale/micado-parser, +github.com/micael-grilo/airflow-dags-test-action, github.com/micaeldekleyn/dynamo-record,num_dependents_deps.dev:0 github.com/micaeldekleyn/middy-request-validator,num_dependents_deps.dev:0 github.com/micaelillos/genMath,num_dependents_deps.dev:0 @@ -806153,6 +820767,7 @@ github.com/micaleel/lights3, github.com/micaleel/recsets, github.com/micaleel/rskit, github.com/micalevisk/inquirer-fs-selector,num_dependents_deps.dev:0 +github.com/micalevisk/last-issue-action, github.com/micalgenus/aws-sdk-js-mfa,num_dependents_deps.dev:0 github.com/micalgenus/gatsby-plugin-github-avatar,num_dependents_deps.dev:0 github.com/micamust/lodown,num_dependents_deps.dev:0 @@ -806276,6 +820891,7 @@ github.com/michael-ciniawsky/posthtml-tidy, github.com/michael-ciniawsky/posthtml-use,num_dependents_deps.dev:0 github.com/michael-ciniawsky/posthtml-w3c, github.com/michael-cowan/molgif, +github.com/michael-crawford/open-issue, github.com/michael-diggin/proglog,num_dependents_deps.dev:0 github.com/michael-diggin/yass,num_dependents_deps.dev:0 github.com/michael-disalvo/kg_michael-disalvo_2023,num_dependents_deps.dev:0 @@ -806393,6 +821009,7 @@ github.com/michael-spengler/api-collector,num_dependents_deps.dev:0 github.com/michael-spengler/configuration-reader,num_dependents_deps.dev:8 github.com/michael-spengler/decentralized-finance,num_dependents_deps.dev:0 github.com/michael-spengler/decentralized-politics,num_dependents_deps.dev:0 +github.com/michael-spengler/github-action-cicd, github.com/michael-spengler/hello-world-npm-package,num_dependents_deps.dev:0 github.com/michael-spengler/nlp-trainer, github.com/michael-spengler/nlp-with-actions, @@ -806506,6 +821123,7 @@ github.com/michaelaye/spicer, github.com/michaelaye/venim, github.com/michaelb/shogai,num_dependents_deps.dev:0 github.com/michaelbaamonde/terminus,num_dependents_deps.dev:0 +github.com/michaelbammeke/cf-stack-drift, github.com/michaelbarton/scaffolder,num_dependents_deps.dev:4 github.com/michaelbats/TLModels,num_dependents_deps.dev:0 github.com/michaelbaudino/addic7ed-ruby,num_dependents_deps.dev:0 @@ -806600,6 +821218,8 @@ github.com/michaelclapham/idt-go,num_dependents_deps.dev:0 github.com/michaelcolenso/steve,num_dependents_deps.dev:0 github.com/michaelconnor00/gbdx-task-template, github.com/michaelcontento/babel-preset-modern-node,num_dependents_deps.dev:4 +github.com/michaelcontento/credly-import-action, +github.com/michaelcontento/credly2hugo-action, github.com/michaelcontento/eslint-config-michaelcontento,num_dependents_deps.dev:0 github.com/michaelcontento/mocca,num_dependents_deps.dev:0 github.com/michaelcontento/redux-log-slow-reducers,num_dependents_deps.dev:0 @@ -806728,6 +821348,7 @@ github.com/michaelficarra/purescript-confusables,num_dependents_deps.dev:0 github.com/michaelficarra/samevalueset,num_dependents_deps.dev:0 github.com/michaelficarra/unicode-confusables-data,num_dependents_deps.dev:0 github.com/michaelficarra/us-states,num_dependents_deps.dev:0 +github.com/michaelfindlater/get-container-mtu, github.com/michaelfitzhavey/dx-tools,num_dependents_deps.dev:0 github.com/michaelfitzhavey/lottie-player-vue,num_dependents_deps.dev:0 github.com/michaelfitzhavey/vue-json-tree-view,num_dependents_deps.dev:2 @@ -806803,6 +821424,9 @@ github.com/michaelhenkel/scriptor,num_dependents_deps.dev:0 github.com/michaelhenkel/validator,num_dependents_deps.dev:0 github.com/michaelhenry/ImageViewer.swift,criticality_score:0.319210 github.com/michaelhenry/codebehind, +github.com/michaelhenry/create-report, +github.com/michaelhenry/deploy-to-cocoapods-github-action, +github.com/michaelhenry/swifty-code-coverage, github.com/michaelherold/pyIsEmail, github.com/michaelhgchen/create-react-app,num_dependents_deps.dev:0 github.com/michaelhly/0x-exchange-events,num_dependents_deps.dev:0 @@ -807132,6 +821756,7 @@ github.com/michaelpeterswa/audiohub,num_dependents_deps.dev:0 github.com/michaelpeterswa/conceal, github.com/michaelpeterswa/darkthyme, github.com/michaelpeterswa/qsml, +github.com/michaelpeterswa/rust-wasm-pack-action, github.com/michaelpettorosso/homebridge-connect-my-pool,num_dependents_deps.dev:0 github.com/michaelpettorosso/homebridge-russound-rio,num_dependents_deps.dev:0 github.com/michaelpettorosso/russound-rio,num_dependents_deps.dev:0 @@ -807381,6 +822006,7 @@ github.com/michaelversus/insomnia-plugin-multiple-requests,num_dependents_deps.d github.com/michaelvillar/dynamics.js,num_dependents_deps.dev:104 github.com/michaelvillar/proxy-web,num_dependents_deps.dev:0 github.com/michaelvillar/timer-app,criticality_score:0.360490 +github.com/michaelw90/PHP-Lint, github.com/michaelwarmke/leet,num_dependents_deps.dev:0 github.com/michaelwayman/node-sass-chokidar,"criticality_score:0.368830,num_dependents_deps.dev:44" github.com/michaelwenk/nmr-correlation,num_dependents_deps.dev:0 @@ -807437,12 +822063,15 @@ github.com/michagrandel/servertools, github.com/michail-nikolaev/task-force-arma-3-radio,criticality_score:0.464080 github.com/michailRemmele/flyer-engine,num_dependents_deps.dev:0 github.com/michailpanagiotis/sequelize-transactional-tests,num_dependents_deps.dev:0 +github.com/michakfromparis/action-firebase-node, github.com/michakrapp/tr-commons,num_dependents_deps.dev:0 github.com/michal-choluj/express-async-await,num_dependents_deps.dev:0 github.com/michal-choluj/express-promisify-router, +github.com/michal-duda-sonarsource/actions, github.com/michal-filip/angular-chunk-loader,num_dependents_deps.dev:0 github.com/michal-franc/cir,num_dependents_deps.dev:0 github.com/michal-franc/rgt,num_dependents_deps.dev:0 +github.com/michal-h21/make4ht-action, github.com/michal-h21/vim-zettel,criticality_score:0.324060 github.com/michal-kocarek/testing-library-spy,num_dependents_deps.dev:0 github.com/michal-nemec/junior_python_dev_oleksandr_leiko, @@ -807633,6 +822262,7 @@ github.com/michaltjanas/nagios-check-graylog2,num_dependents_deps.dev:0 github.com/michaltk/bunyan-middleware,num_dependents_deps.dev:0 github.com/michalurbanski/importantnotes,num_dependents_deps.dev:0 github.com/michalusio/Parser,num_dependents_deps.dev:0 +github.com/michalvankodev/copy-issue-labels, github.com/michalvich/node-deezer-api-client,num_dependents_deps.dev:0 github.com/michalvichy/width-checker,num_dependents_deps.dev:0 github.com/michalvvv/angular-window,num_dependents_deps.dev:0 @@ -807680,6 +822310,7 @@ github.com/michchan/fund-price-monitor-lib, github.com/michchan/react-router-advanced,num_dependents_deps.dev:0 github.com/michchan/simply-utils,num_dependents_deps.dev:0 github.com/michchan/webpack-config-aws-cdk,num_dependents_deps.dev:0 +github.com/michcio1234/heroku-run, github.com/michcioperz/ddg,num_dependents_deps.dev:0 github.com/michcioperz/gulp-csso-usage,num_dependents_deps.dev:0 github.com/michdr/yasod, @@ -807792,6 +822423,7 @@ github.com/michelle/rework-matches,num_dependents_deps.dev:0 github.com/michelle/rework-unique,num_dependents_deps.dev:0 github.com/michelle0606/npm-demo,num_dependents_deps.dev:0 github.com/michelleamesquita/git-test-ci,num_dependents_deps.dev:0 +github.com/michelleamesquita/sast-validator, github.com/michelleamesquita/sonar-cloud,num_dependents_deps.dev:0 github.com/michellebu/reference, github.com/michellekoegelenberg/myfirstblockchain,num_dependents_deps.dev:0 @@ -807802,6 +822434,9 @@ github.com/michellocana/ednaldo,num_dependents_deps.dev:0 github.com/michellocana/progressive-webp-loader,num_dependents_deps.dev:0 github.com/michellocana/vdeps,num_dependents_deps.dev:0 github.com/michelmany/vue-sreveal,num_dependents_deps.dev:0 +github.com/michelmelo/laravel-phpunit-action, +github.com/michelmelo/merge-branch, +github.com/michelmelo/slim-phpunit-action, github.com/michelonsouza/encrypt-storage,num_dependents_deps.dev:0 github.com/micheloss/go_raw,num_dependents_deps.dev:0 github.com/michelp/mmparse, @@ -807831,7 +822466,9 @@ github.com/michgonch/sure,num_dependents_deps.dev:0 github.com/michi1129/a-tour-of-go,num_dependents_deps.dev:0 github.com/michi88/encrypted,num_dependents_deps.dev:0 github.com/michibDe/iobroker.humiditysensor,num_dependents_deps.dev:0 +github.com/michidk/run-komac, github.com/michidk/ve-shader,num_dependents_deps.dev:0 +github.com/michidk/winget-updater, github.com/michiel-van-den-anker/plugin-axios,num_dependents_deps.dev:0 github.com/michiel-van-den-anker/plugin-change-flags,num_dependents_deps.dev:0 github.com/michiel/d3-minimap,num_dependents_deps.dev:0 @@ -807927,10 +822564,16 @@ github.com/michiya/django-pyodbc-azure, github.com/michjs/mich,num_dependents_deps.dev:0 github.com/michlee1337/vm-translator,num_dependents_deps.dev:0 github.com/michmakarov/mak_common,num_dependents_deps.dev:0 +github.com/michmich112/extract-version, +github.com/michmich112/get-actions-dir-path, +github.com/michmich112/version-bumper, github.com/michnovka/ccxt-trading-cp,num_dependents_deps.dev:0 github.com/michoelchaikin/keepass-http-client,num_dependents_deps.dev:0 github.com/michogar/CordovaConfigWebpackPlugin,num_dependents_deps.dev:0 github.com/michplunkett/spotifyfm,num_dependents_deps.dev:0 +github.com/michpohl/action-concatenate-strings, +github.com/michpohl/expose-android-build.gradle-version-code-and-name, +github.com/michpohl/expose-artifacts, github.com/michr-cri/TypeIO, github.com/michr-cri/backend-middleware,num_dependents_deps.dev:0 github.com/michr-cri/uniloc,num_dependents_deps.dev:0 @@ -808006,6 +822649,8 @@ github.com/mickael-menu/zk,num_dependents_deps.dev:0 github.com/mickael2054/IReadiTunes, github.com/mickael9/fac, github.com/mickael9/factoirc, +github.com/mickaelandrieu/phpqa-ga, +github.com/mickaelandrieu/psalm-ga, github.com/mickaelchanrion/rolly,num_dependents_deps.dev:0 github.com/mickaelftw/StrawpollJS,num_dependents_deps.dev:0 github.com/mickaellherminez/example-node-modules,num_dependents_deps.dev:0 @@ -808042,6 +822687,8 @@ github.com/mickelson/attract,criticality_score:0.425900 github.com/mickelsonm/confidant-client,num_dependents_deps.dev:0 github.com/mickelsonmichael/react-from-scratch,num_dependents_deps.dev:0 github.com/mickem/aws-stepfunction-test,num_dependents_deps.dev:0 +github.com/mickem/clean-after-action, +github.com/mickem/gh-action-bump-maven-version, github.com/mickem/json-protobuf, github.com/mickem/lua-protobuf, github.com/mickem/md-protobuf, @@ -808059,6 +822706,8 @@ github.com/mickeycj/estream, github.com/mickeyckm/python-hoiio, github.com/mickeydarrenlau/ytvid, github.com/mickeygo/go-g7,num_dependents_deps.dev:0 +github.com/mickeygoussetorg/get-a-dad-joke, +github.com/mickeygoussetorg/trigger-jenkins-job, github.com/mickeyhead7/image-component,num_dependents_deps.dev:0 github.com/mickeyhead7/react-image-lazyload,num_dependents_deps.dev:0 github.com/mickeyhioe/nodebb-plugin-cards-fullname,num_dependents_deps.dev:0 @@ -808083,6 +822732,7 @@ github.com/mickeymond/ucc-sdk,num_dependents_deps.dev:0 github.com/mickeyperlstein/whatever, github.com/mickeystone/golang-channel-test,num_dependents_deps.dev:0 github.com/mickeyzhou/slush-pandora-tool,num_dependents_deps.dev:0 +github.com/mickfeech/firestore-emulator-action, github.com/mickfeech/hubot-spotify-web-api,num_dependents_deps.dev:0 github.com/mickfeech/peloton,num_dependents_deps.dev:0 github.com/mickgiles/homebridge-vesync,num_dependents_deps.dev:0 @@ -808317,6 +822967,8 @@ github.com/micnil/json-diff,num_dependents_deps.dev:0 github.com/micnil/vscode-diff,num_dependents_deps.dev:0 github.com/micnncim/action-label-syncer,num_dependents_deps.dev:0 github.com/micnncim/action-labels,num_dependents_deps.dev:0 +github.com/micnncim/action-lgtm-reaction, +github.com/micnncim/action-stardust, github.com/micnncim/atomic,num_dependents_deps.dev:0 github.com/micnncim/badger,num_dependents_deps.dev:0 github.com/micnncim/go-secretresolver,num_dependents_deps.dev:0 @@ -808753,8 +823405,10 @@ github.com/microcipcip/styled-components-media-query,num_dependents_deps.dev:0 github.com/microcipcip/vue-use-collection,num_dependents_deps.dev:0 github.com/microcipcip/vue-use-kit,num_dependents_deps.dev:0 github.com/microcisco/mongoose-script,num_dependents_deps.dev:0 +github.com/microcks/import-github-action, github.com/microcks/microcks,"criticality_score:0.493530,num_dependents_deps.dev:0" github.com/microcks/microcks-cli,num_dependents_deps.dev:0 +github.com/microcks/test-github-action, github.com/microclimates/generator-edge,num_dependents_deps.dev:0 github.com/microclimates/homie-device,num_dependents_deps.dev:0 github.com/microclimates/iot-edge,num_dependents_deps.dev:0 @@ -809075,6 +823729,7 @@ github.com/microsoft/AirSim-NeurIPS2019-Drone-Racing, github.com/microsoft/Analysis-Services,criticality_score:0.413540 github.com/microsoft/ApplicationInsights-dotnet,criticality_score:0.593920 github.com/microsoft/ApplicationInspector,criticality_score:0.388740 +github.com/microsoft/ApplicationInspector-Action, github.com/microsoft/AttackSurfaceAnalyzer,criticality_score:0.379610 github.com/microsoft/Azure-Kinect-Sensor-SDK,criticality_score:0.396060 github.com/microsoft/AzureNotebooks,criticality_score:0.407890 @@ -809103,6 +823758,7 @@ github.com/microsoft/DefinitelyTyped-tools, github.com/microsoft/DesktopBridgeToUWP-Samples,criticality_score:0.332970 github.com/microsoft/Detours,criticality_score:0.387860 github.com/microsoft/DevSkim,criticality_score:0.431260 +github.com/microsoft/DevSkim-Action, github.com/microsoft/DirectML,criticality_score:0.301160 github.com/microsoft/DirectX-Graphics-Samples,criticality_score:0.497480 github.com/microsoft/DirectX-Specs,criticality_score:0.366090 @@ -809149,6 +823805,7 @@ github.com/microsoft/OMS-Agent-for-Linux,criticality_score:0.447040 github.com/microsoft/OpenAPI.NET,criticality_score:0.404890 github.com/microsoft/Oryx,criticality_score:0.447710 github.com/microsoft/PQCrypto-SIDH,Google +github.com/microsoft/PR-Metrics, github.com/microsoft/PTVS,criticality_score:0.555660 github.com/microsoft/PartsUnlimited,criticality_score:0.369310 github.com/microsoft/PowerApps-Samples,criticality_score:0.399270 @@ -809167,6 +823824,7 @@ github.com/microsoft/RTVS,criticality_score:0.359990 github.com/microsoft/Reactors,criticality_score:0.414750 github.com/microsoft/Reporting-Services,criticality_score:0.329510 github.com/microsoft/ReportingServicesTools,criticality_score:0.448750 +github.com/microsoft/RichCodeNavIndexer, github.com/microsoft/RockPaperScissorsLizardSpock,criticality_score:0.358380 github.com/microsoft/RoslynClrHeapAllocationAnalyzer,criticality_score:0.312290 github.com/microsoft/RulesEngine,criticality_score:0.346750 @@ -809222,11 +823880,15 @@ github.com/microsoft/acc-vm-engine,num_dependents_deps.dev:0 github.com/microsoft/accessibility-announcer,num_dependents_deps.dev:0 github.com/microsoft/accessibility-insights-for-android-service,num_dependents_deps.dev:0 github.com/microsoft/ace, +github.com/microsoft/action-armttk, +github.com/microsoft/action-publish-symbols, +github.com/microsoft/action-python, github.com/microsoft/adatest, github.com/microsoft/adx-query-charts,num_dependents_deps.dev:0 github.com/microsoft/ai-edu,criticality_score:0.403410 github.com/microsoft/ai-python, github.com/microsoft/ailab,criticality_score:0.361490 +github.com/microsoft/android-app-size-diff, github.com/microsoft/angular-react,num_dependents_deps.dev:4 github.com/microsoft/antares, github.com/microsoft/api-guidelines,criticality_score:0.353100 @@ -809301,6 +823963,7 @@ github.com/microsoft/crawler-dashboard,num_dependents_deps.dev:0 github.com/microsoft/customvision-tfjs,num_dependents_deps.dev:0 github.com/microsoft/customvision-tfjs-node,num_dependents_deps.dev:0 github.com/microsoft/data-protection-mapping-project,Google +github.com/microsoft/databricks-import-notebook, github.com/microsoft/debugpy,criticality_score:0.501690 github.com/microsoft/deployr-cli, github.com/microsoft/dicom-client-python, @@ -809348,6 +824011,7 @@ github.com/microsoft/git,num_dependents_deps.dev:0 github.com/microsoft/glTF-SDK,criticality_score:0.348280 github.com/microsoft/globe,num_dependents_deps.dev:0 github.com/microsoft/goodpoints, +github.com/microsoft/gpt-review, github.com/microsoft/graspologic, github.com/microsoft/hat, github.com/microsoft/hi-ml, @@ -809355,6 +824019,8 @@ github.com/microsoft/hivedscheduler,num_dependents_deps.dev:0 github.com/microsoft/hummingbird,criticality_score:0.457210 github.com/microsoft/hyperspace,num_dependents_deps.dev:0 github.com/microsoft/idevice-app-launcher,num_dependents_deps.dev:0 +github.com/microsoft/infersharpaction, +github.com/microsoft/install-databricks-cli, github.com/microsoft/interpret,num_dependents_deps.dev:0 github.com/microsoft/iqsharp, github.com/microsoft/iron-go,num_dependents_deps.dev:0 @@ -809378,6 +824044,7 @@ github.com/microsoft/mariadb-connector-j,num_dependents_deps.dev:0 github.com/microsoft/maro,criticality_score:0.385210 github.com/microsoft/mgl,num_dependents_deps.dev:0 github.com/microsoft/mi-module-zoo, +github.com/microsoft/microsoft-partner-center-github-action, github.com/microsoft/microsoft-ui-xaml,criticality_score:0.571270 github.com/microsoft/microsoft.github.io,criticality_score:0.335470 github.com/microsoft/mimalloc,criticality_score:0.475080 @@ -809395,6 +824062,7 @@ github.com/microsoft/mssql-django, github.com/microsoft/mssql-docker,criticality_score:0.450710 github.com/microsoft/msticnb, github.com/microsoft/msticpy,criticality_score:0.437810 +github.com/microsoft/msvc-code-analysis-action, github.com/microsoft/mu,criticality_score:0.387390 github.com/microsoft/mu_pip_build, github.com/microsoft/mu_pip_environment, @@ -809431,6 +824099,7 @@ github.com/microsoft/p-profiler,num_dependents_deps.dev:0 github.com/microsoft/painless-config-as-code,num_dependents_deps.dev:8 github.com/microsoft/parallax-loader,num_dependents_deps.dev:0 github.com/microsoft/perfview,criticality_score:0.545730 +github.com/microsoft/playwright-github-action, github.com/microsoft/playwright-java,num_dependents_deps.dev:8 github.com/microsoft/playwright-pytest, github.com/microsoft/playwright-sharp,criticality_score:0.392060 @@ -809438,16 +824107,21 @@ github.com/microsoft/plcrashreporter,criticality_score:0.492450 github.com/microsoft/powerapps-tools,criticality_score:0.524030 github.com/microsoft/powerbi-client-angular,num_dependents_deps.dev:0 github.com/microsoft/powerbi-client-react,num_dependents_deps.dev:0 +github.com/microsoft/powerplatform-actions, github.com/microsoft/powerquery-formatter,num_dependents_deps.dev:0 github.com/microsoft/powerquery-language-services,num_dependents_deps.dev:0 github.com/microsoft/praxxis, github.com/microsoft/privGAN, github.com/microsoft/protein-sequence-models, github.com/microsoft/prv_accountant, +github.com/microsoft/ps-docs, +github.com/microsoft/ps-rule, +github.com/microsoft/psscriptanalyzer-action, github.com/microsoft/ptgnn, github.com/microsoft/pxt-calliope, github.com/microsoft/pxt-mkc,num_dependents_deps.dev:0 github.com/microsoft/pybryt, +github.com/microsoft/pybryt-action, github.com/microsoft/pylance-release,criticality_score:0.422060 github.com/microsoft/python-language-server,criticality_score:0.410030 github.com/microsoft/python-program-analysis,num_dependents_deps.dev:0 @@ -809477,15 +824151,22 @@ github.com/microsoft/responsibleaitoolbox-genbit, github.com/microsoft/reverse-proxy,criticality_score:0.429550 github.com/microsoft/rnx-kit, github.com/microsoft/rushstack,"criticality_score:0.684680,num_dependents_deps.dev:5184" +github.com/microsoft/sarif-actions, github.com/microsoft/sarif-js-sdk,num_dependents_deps.dev:0 github.com/microsoft/sarif-python-om, github.com/microsoft/sarif-tools, github.com/microsoft/satcheljs,num_dependents_deps.dev:0 +github.com/microsoft/scala-style-download, github.com/microsoft/scalar,criticality_score:0.522310 +github.com/microsoft/scalastyle-validate, github.com/microsoft/scenepic, github.com/microsoft/screenshots-diff-toolkit,num_dependents_deps.dev:0 +github.com/microsoft/security-devops-action, github.com/microsoft/service-fabric,criticality_score:0.457080 github.com/microsoft/service-fabric-services-and-actors-dotnet,criticality_score:0.345120 +github.com/microsoft/setup-kiota, +github.com/microsoft/setup-msbuild, +github.com/microsoft/setup-msstore-cli, github.com/microsoft/sharepoint-recurring-events,num_dependents_deps.dev:0 github.com/microsoft/snmalloc,criticality_score:0.467120 github.com/microsoft/snocat,num_dependents_deps.dev:0 @@ -809496,6 +824177,7 @@ github.com/microsoft/sql-server-samples,"criticality_score:0.525530,num_dependen github.com/microsoft/sql-spark-connector,num_dependents_deps.dev:0 github.com/microsoft/sqlworkshops,criticality_score:0.354540 github.com/microsoft/statopt, +github.com/microsoft/store-submission, github.com/microsoft/subseasonal_data, github.com/microsoft/subseasonal_toolkit, github.com/microsoft/surface-duo-compose-samples,num_dependents_deps.dev:0 @@ -809530,6 +824212,7 @@ github.com/microsoft/vcpkg,criticality_score:0.781580 github.com/microsoft/verona,"criticality_score:0.395630,num_dependents_deps.dev:0" github.com/microsoft/vision-ai-developer-kit, github.com/microsoft/vision-datasets, +github.com/microsoft/vs-intellicode, github.com/microsoft/vs-mef,criticality_score:0.352420 github.com/microsoft/vs-streamjsonrpc,criticality_score:0.461610 github.com/microsoft/vs-threading,criticality_score:0.502740 @@ -809565,6 +824248,7 @@ github.com/microsoft/vscode-tools-for-ai,criticality_score:0.353220 github.com/microsoft/vscode-tslint,criticality_score:0.315260 github.com/microsoft/vscode-vsce,criticality_score:0.563700 github.com/microsoft/vstest,criticality_score:0.615950 +github.com/microsoft/vstest-action, github.com/microsoft/vsts-cd-manager, github.com/microsoft/vswhere,criticality_score:0.334390 github.com/microsoft/waterfall_ax, @@ -809682,6 +824366,7 @@ github.com/miczone/gorush,num_dependents_deps.dev:0 github.com/mid0111/gulp-personium,num_dependents_deps.dev:0 github.com/mid0111/hubot-jenkins-job-status-change,num_dependents_deps.dev:0 github.com/mid0111/kintone-vue-component,num_dependents_deps.dev:0 +github.com/mida-hub/reviewer-slack-notice, github.com/midaas-telemetry/modbus,num_dependents_deps.dev:0 github.com/midaef/emmet-server,num_dependents_deps.dev:0 github.com/midaef/fibonacci-service,num_dependents_deps.dev:0 @@ -809851,6 +824536,7 @@ github.com/midlyjs/midly-router,num_dependents_deps.dev:0 github.com/midnattssol/lindworm, github.com/midneit/go-blablacar,num_dependents_deps.dev:0 github.com/midnight-coding/grunt-cache-killer,num_dependents_deps.dev:0 +github.com/midnight-madman/setup-geckodriver, github.com/midnight-repo/ZAPY, github.com/midnight-repo/httprobe, github.com/midnight-repo/stdin_processor, @@ -809962,6 +824648,7 @@ github.com/midwayjs/midway-boilerplate,num_dependents_deps.dev:0 github.com/midwayjs/midway-component,num_dependents_deps.dev:46 github.com/midwayjs/midway-faas,num_dependents_deps.dev:1574 github.com/midwayjs/midway-faas-examples,num_dependents_deps.dev:0 +github.com/midwayjs/midway-fc-deploy-action, github.com/midwayjs/midway-serverless-examples,num_dependents_deps.dev:0 github.com/midwayjs/mininm,num_dependents_deps.dev:0 github.com/midwayjs/module-hook,num_dependents_deps.dev:12 @@ -810032,8 +824719,10 @@ github.com/mier85/jsonrpc,num_dependents_deps.dev:0 github.com/mier85/sarama,num_dependents_deps.dev:0 github.com/mieradi/rds-react-sdk,num_dependents_deps.dev:0 github.com/mierak/react-virtualized-grid,num_dependents_deps.dev:0 +github.com/miere/action-rust-aws-lambda, github.com/miere/mu-rs,num_dependents_deps.dev:0 github.com/miermans/monopolion-evaluator, +github.com/miermontoto/waka-readme-stats, github.com/mies-co/next-extensions,num_dependents_deps.dev:0 github.com/mies/packer,num_dependents_deps.dev:0 github.com/miesil/ng2-dragula, @@ -810102,6 +824791,7 @@ github.com/mig-hub/rack-golem,num_dependents_deps.dev:0 github.com/mig-hub/sequel-crushyform,num_dependents_deps.dev:0 github.com/mig-hub/stash_magic,num_dependents_deps.dev:0 github.com/mig-hub/yamlade,num_dependents_deps.dev:0 +github.com/mig4/setup-bats, github.com/mig82/kony-sdk-extensions,num_dependents_deps.dev:0 github.com/mig82/py-gitkeep, github.com/mig82/viskit,num_dependents_deps.dev:0 @@ -810131,6 +824821,7 @@ github.com/migesok/jaxb-java-time-adapters,num_dependents_deps.dev:30 github.com/migetman9/file_sort, github.com/migg24/connect-livereload-https,num_dependents_deps.dev:0 github.com/migg24/git-keeper,num_dependents_deps.dev:0 +github.com/miggene/cocos-build, github.com/migger/minio-maven-wagon,num_dependents_deps.dev:0 github.com/miggiboy/ss-select,num_dependents_deps.dev:0 github.com/miggy97/metrica-verso,num_dependents_deps.dev:0 @@ -810322,6 +825013,7 @@ github.com/miguelaeh/jwt-simple-error-identify,num_dependents_deps.dev:0 github.com/miguelahonen/go,num_dependents_deps.dev:0 github.com/miguelalarcos/msdp,num_dependents_deps.dev:0 github.com/miguelalvescosta/react-native-dial-menu,num_dependents_deps.dev:0 +github.com/miguelampudia/open-issue, github.com/miguelangel1100685/hello-world,num_dependents_deps.dev:0 github.com/miguelangeltorresfp/react-css-spinner-tutorial,num_dependents_deps.dev:0 github.com/miguelao/shapedetection-polyfill,num_dependents_deps.dev:0 @@ -810375,11 +825067,16 @@ github.com/migueleci/XGBfnc, github.com/migueleci/node_classification, github.com/migueleliasweb/echo,num_dependents_deps.dev:0 github.com/migueleliasweb/go-github-mock,num_dependents_deps.dev:0 +github.com/miguelemosreverte/OpenAPI_linter, github.com/miguelemosreverte/ReactComponentGenerator,num_dependents_deps.dev:0 github.com/miguelemosreverte/geofire-js,num_dependents_deps.dev:0 +github.com/miguelemosreverte/github-docker-sbt, +github.com/miguelemosreverte/hello-world-javascript-action, +github.com/miguelemosreverte/protobuf2openapi, github.com/miguelespinoza/react-native-nearby,num_dependents_deps.dev:0 github.com/miguelff/clickhouse-go,num_dependents_deps.dev:0 github.com/miguelfg/django-sponsors, +github.com/miguelfito/github-bump-and-tag-action, github.com/miguelfrancisco85/homebridge-ssh-castellano,num_dependents_deps.dev:0 github.com/miguelfreitas/twister-core,criticality_score:0.473430 github.com/miguelgf/pypendency-flask, @@ -810670,6 +825367,7 @@ github.com/miguelsm/react-shadow-dom-retarget-events, github.com/miguelsmuller/generator-crow, github.com/miguelsolano/nest-graphql,num_dependents_deps.dev:0 github.com/miguelsotobaez/node-quake3-rcon-e,num_dependents_deps.dev:0 +github.com/miguelteixeiraa/action-run-in-background, github.com/migueltorrescosta/informathion, github.com/miguelverdugo/speXtra, github.com/miguelvr/dropblock, @@ -810711,6 +825409,7 @@ github.com/mihaeu/dephpend,criticality_score:0.345660 github.com/mihaeu/md2confluence,num_dependents_deps.dev:0 github.com/mihagrgicjelen/python-constant, github.com/mihai-dinculescu/cargo-wipe,num_dependents_deps.dev:0 +github.com/mihai-dinculescu/redis-action, github.com/mihai-dinu/sherry,num_dependents_deps.dev:0 github.com/mihai-tudor/lets-test,num_dependents_deps.dev:0 github.com/mihai/hubot-currency,num_dependents_deps.dev:0 @@ -810742,6 +825441,7 @@ github.com/mihailj/genhttplogs,num_dependents_deps.dev:0 github.com/mihailomat/vue-international-phone-input,num_dependents_deps.dev:0 github.com/mihailpozarski/chilean-rutify,num_dependents_deps.dev:0 github.com/mihailradkov/test-travis-stages,num_dependents_deps.dev:0 +github.com/mihailsah/custom-actions-test-news, github.com/mihailsitnic/mob-menu,num_dependents_deps.dev:0 github.com/mihailv/bossconf, github.com/mihaimaruseac/hindent,criticality_score:0.403460 @@ -810818,6 +825518,9 @@ github.com/mihilbabin/booking_automation,num_dependents_deps.dev:0 github.com/mihilbabin/guesty_api,num_dependents_deps.dev:0 github.com/mihilmy/cw-logger,num_dependents_deps.dev:0 github.com/mihilmy/dynamodb-adapters,num_dependents_deps.dev:0 +github.com/mihinduranasinghe/WSO2-APIManager-Cloud-CICD, +github.com/mihinduranasinghe/WSO2-APIManager-Cloud-CICD-Beta, +github.com/mihinduranasinghe/open-issue-reusable, github.com/mihir-kanzariya/apefinance-sdk,num_dependents_deps.dev:0 github.com/mihir-kanzariya/apefinance-toolkit,num_dependents_deps.dev:0 github.com/mihir-kanzariya/apefinance-uikit,num_dependents_deps.dev:0 @@ -810894,6 +825597,7 @@ github.com/mihxil/json,num_dependents_deps.dev:9 github.com/mihxil/math,num_dependents_deps.dev:149 github.com/mihxil/svg-objects,num_dependents_deps.dev:0 github.com/mihxil/util,num_dependents_deps.dev:75 +github.com/mihyaeru21/action-sorbet, github.com/mihyaeru21/google-home-player,num_dependents_deps.dev:0 github.com/mihyaeru21/wifc,num_dependents_deps.dev:0 github.com/miiCard/api-wrappers-ruby,num_dependents_deps.dev:0 @@ -810944,6 +825648,7 @@ github.com/mijabi/assemble-repeat-xtimes,num_dependents_deps.dev:0 github.com/mijabi/handlebars-helper-do-once-in-times,num_dependents_deps.dev:0 github.com/mijabi/handlebars-helper-is-exp,num_dependents_deps.dev:0 github.com/mijado/ioBroker.lgtv12,num_dependents_deps.dev:0 +github.com/mijailr/arch-makepkg-action, github.com/mijailr/terraform-cloud,num_dependents_deps.dev:3 github.com/mijak99/persistent-react-entities,num_dependents_deps.dev:0 github.com/mijara/ezrpy, @@ -811110,9 +825815,15 @@ github.com/mikaelsrozee/restful-go,num_dependents_deps.dev:0 github.com/mikaelsvensson/devtools,num_dependents_deps.dev:0 github.com/mikaeltw/fnnlsEigen, github.com/mikaelv/spark-lite,num_dependents_deps.dev:0 +github.com/mikaelvesavuori/a11ytester-action, +github.com/mikaelvesavuori/documentarian-action, +github.com/mikaelvesavuori/dorametrix-action, github.com/mikaelvesavuori/figmagic,"criticality_score:0.409990,num_dependents_deps.dev:0" +github.com/mikaelvesavuori/figmagic-action, +github.com/mikaelvesavuori/license-compliance-action, github.com/mikaelvesavuori/remotecacher,num_dependents_deps.dev:0 github.com/mikaelvesavuori/reqperformer,num_dependents_deps.dev:0 +github.com/mikaelvesavuori/standardlint-action, github.com/mikaelvesavuori/triplecheck-broker, github.com/mikaelvesavuori/triplecheck-cli,num_dependents_deps.dev:0 github.com/mikaelwikman/hashrules,num_dependents_deps.dev:0 @@ -811201,6 +825912,7 @@ github.com/mikcsabee/stylelint-junit-formatter2,num_dependents_deps.dev:0 github.com/mikcsabee/texmex.js, github.com/mikdatdogru/md-datetime-picker,num_dependents_deps.dev:0 github.com/mike-3/test-pakage,num_dependents_deps.dev:0 +github.com/mike-500/action-autotag, github.com/mike-allison/KODataTable,num_dependents_deps.dev:0 github.com/mike-allison/angular-lodash-string,num_dependents_deps.dev:0 github.com/mike-allison/angular-tablescroll,num_dependents_deps.dev:0 @@ -811280,9 +825992,12 @@ github.com/mike-marcacci/fs-capacitor,num_dependents_deps.dev:8430 github.com/mike-marcacci/gandhi,num_dependents_deps.dev:0 github.com/mike-marcacci/node-redlock,"criticality_score:0.365920,num_dependents_deps.dev:404" github.com/mike-marcacci/objectpath,num_dependents_deps.dev:56 +github.com/mike-mckay/github-action-custom-vars, github.com/mike-mendoza/py_banshee, github.com/mike-munchdev/sequelize-auto, github.com/mike-munchdev/vue-currency-input,num_dependents_deps.dev:0 +github.com/mike-neck/action-pixela-increment, +github.com/mike-neck/detect-newer-action, github.com/mike-neck/http-spec-runner,num_dependents_deps.dev:0 github.com/mike-neck/junit-starter,num_dependents_deps.dev:0 github.com/mike-neck/ktcheck,num_dependents_deps.dev:0 @@ -811496,6 +826211,7 @@ github.com/mikeal/bent,"criticality_score:0.438590,num_dependents_deps.dev:764" github.com/mikeal/bitandbang,num_dependents_deps.dev:0 github.com/mikeal/broquire,num_dependents_deps.dev:2 github.com/mikeal/brotli-max,num_dependents_deps.dev:0 +github.com/mikeal/bundle-size-action, github.com/mikeal/bundle-sync,num_dependents_deps.dev:0 github.com/mikeal/bytesish,num_dependents_deps.dev:1192 github.com/mikeal/byteslice,num_dependents_deps.dev:0 @@ -811580,12 +826296,14 @@ github.com/mikeal/multihasher,num_dependents_deps.dev:0 github.com/mikeal/node-meatspace,num_dependents_deps.dev:0 github.com/mikeal/node-utils,num_dependents_deps.dev:3 github.com/mikeal/npmetrics,num_dependents_deps.dev:0 +github.com/mikeal/npx, github.com/mikeal/oauth-sign,num_dependents_deps.dev:406346 github.com/mikeal/occupy,num_dependents_deps.dev:0 github.com/mikeal/okdone,num_dependents_deps.dev:0 github.com/mikeal/pdf2zip,num_dependents_deps.dev:0 github.com/mikeal/peer-call,num_dependents_deps.dev:0 github.com/mikeal/promwrap,num_dependents_deps.dev:0 +github.com/mikeal/publish-to-github-action, github.com/mikeal/pull-gharchive-minimized,num_dependents_deps.dev:0 github.com/mikeal/pull-meetup,num_dependents_deps.dev:0 github.com/mikeal/pushdb,num_dependents_deps.dev:0 @@ -811639,6 +826357,7 @@ github.com/mikearnaldi/matechs-effect,num_dependents_deps.dev:302 github.com/mikearnaldi/next-flexible-routes,num_dependents_deps.dev:0 github.com/mikeasilva/csv2sqlite, github.com/mikeattara/cra-template-dux,num_dependents_deps.dev:0 +github.com/mikeattara/mark-prs-as-deployed, github.com/mikeaustin/impulse-js,num_dependents_deps.dev:0 github.com/mikeaustin71/errorprefixexamples,num_dependents_deps.dev:0 github.com/mikeaustin71/errpref,num_dependents_deps.dev:0 @@ -811781,6 +826500,7 @@ github.com/mikecud/rxjs-subscribetap,num_dependents_deps.dev:0 github.com/mikecui426/ZabbixQywechat, github.com/mikecules/MarkdownBSCodeTabs, github.com/miked0004/atlantis,num_dependents_deps.dev:0 +github.com/miked49er/rsync-deployments, github.com/mikedamage/1pif-to-keepass,num_dependents_deps.dev:0 github.com/mikedamage/character-roller,num_dependents_deps.dev:0 github.com/mikedamage/wallpaper-shuffle,num_dependents_deps.dev:0 @@ -811831,6 +826551,7 @@ github.com/mikedilger/solvent,num_dependents_deps.dev:1 github.com/mikedilger/textnonce,num_dependents_deps.dev:51 github.com/mikedingjan/django-svg-icons, github.com/mikedll/gscan8,num_dependents_deps.dev:0 +github.com/mikedloss/create-update-comment, github.com/mikedmcfarland/node-i3finder,num_dependents_deps.dev:0 github.com/mikedmcfarland/projgen,num_dependents_deps.dev:0 github.com/mikedombo/JSONSchema2PoPo2, @@ -811877,6 +826598,7 @@ github.com/mikeerickson/validatorjs,criticality_score:0.425400 github.com/mikeerickson/vue-messenger,num_dependents_deps.dev:0 github.com/mikeerickson/vue-taggable-select2,num_dependents_deps.dev:0 github.com/mikeerickson/vue-toolbar-button,num_dependents_deps.dev:0 +github.com/mikeesto/heroku-awake, github.com/mikeesto/sparkledown,num_dependents_deps.dev:0 github.com/mikeesto/use-wake-lock,num_dependents_deps.dev:0 github.com/mikeestrada/store-cli,num_dependents_deps.dev:0 @@ -811904,6 +826626,7 @@ github.com/mikefowler/instajam,num_dependents_deps.dev:0 github.com/mikefowler/mincer-ember-hbs-engine, github.com/mikefrancis/brewdog.js,num_dependents_deps.dev:0 github.com/mikefrancis/googlemap,num_dependents_deps.dev:0 +github.com/mikefrancis/vercel-cypress, github.com/mikefrey/deopt,num_dependents_deps.dev:0 github.com/mikefrey/grunt-exorcise,num_dependents_deps.dev:0 github.com/mikefrey/hapi-dust,num_dependents_deps.dev:0 @@ -811961,6 +826684,7 @@ github.com/mikeham98/react-awesome-calendar,num_dependents_deps.dev:0 github.com/mikeham98/react-awesome-component-carousel,num_dependents_deps.dev:0 github.com/mikeham98/react-awesome-image-carousel,num_dependents_deps.dev:0 github.com/mikeharder/npmjs-test,num_dependents_deps.dev:0 +github.com/mikehardy/buildcache-action, github.com/mikehardy/google-analytics-java,num_dependents_deps.dev:2 github.com/mikehardy/jcenterizer,num_dependents_deps.dev:0 github.com/mikehardy/jetifier,num_dependents_deps.dev:4214 @@ -812200,6 +826924,7 @@ github.com/mikemackintosh/titan-tools, github.com/mikemadden42/github_status,num_dependents_deps.dev:0 github.com/mikemadden42/stats,num_dependents_deps.dev:0 github.com/mikemadden42/units,num_dependents_deps.dev:0 +github.com/mikemahoney218/upload-to-drat-repo, github.com/mikemajesty/BootstrapDualList,num_dependents_deps.dev:0 github.com/mikemajesty/Chocobo-Date-Range-Picker,num_dependents_deps.dev:0 github.com/mikemajesty/Vue-Dual-List,num_dependents_deps.dev:0 @@ -812259,6 +826984,7 @@ github.com/mikemintang/gonews,num_dependents_deps.dev:0 github.com/mikemintz/react-rethinkdb, github.com/mikemintz/rethinkdb-websocket-client,num_dependents_deps.dev:4 github.com/mikemintz/rethinkdb-websocket-server,num_dependents_deps.dev:0 +github.com/mikemjharris/action-aws-cli, github.com/mikemnd/primeng,num_dependents_deps.dev:0 github.com/mikemodder/anpan,num_dependents_deps.dev:0 github.com/mikemonteith/react-native-android-checkbox,num_dependents_deps.dev:0 @@ -812268,6 +826994,7 @@ github.com/mikemunsie/ember-export-sass-variables,num_dependents_deps.dev:0 github.com/mikemurray/kis,num_dependents_deps.dev:0 github.com/mikemurray/sew,num_dependents_deps.dev:0 github.com/mikemuzzy/pgx,num_dependents_deps.dev:0 +github.com/mikemyl/action-clean, github.com/mikenerone/configurate, github.com/mikengu/mikengu,num_dependents_deps.dev:0 github.com/mikenicholson/passport-jwt,"criticality_score:0.354640,num_dependents_deps.dev:0" @@ -812276,6 +827003,7 @@ github.com/mikenikles/html2react,num_dependents_deps.dev:0 github.com/mikenikles/jscodeshift-ava-to-jest,num_dependents_deps.dev:0 github.com/mikenikles/plop-helper-git-config,num_dependents_deps.dev:0 github.com/mikenomitch/find_by_shortcut,num_dependents_deps.dev:0 +github.com/mikenomitch/nomad-jwt-auth, github.com/mikenorthorp/gulp-shopify-upload,num_dependents_deps.dev:0 github.com/mikenthiwa/api-set-up,num_dependents_deps.dev:0 github.com/mikenunez/django-ga-simpletag, @@ -812329,8 +827057,12 @@ github.com/mikepenz/FastAdapter,"criticality_score:0.584810,num_dependents_deps. github.com/mikepenz/HoloKitKatDrawer,num_dependents_deps.dev:0 github.com/mikepenz/MaterialDrawer,"criticality_score:0.651740,num_dependents_deps.dev:1" github.com/mikepenz/StoryBlok-Android-SDK,num_dependents_deps.dev:0 +github.com/mikepenz/action-junit-report, github.com/mikepenz/businesscard,num_dependents_deps.dev:0 +github.com/mikepenz/gradle-dependency-submission, github.com/mikepenz/itemanimators,num_dependents_deps.dev:0 +github.com/mikepenz/release-changelog-builder-action, +github.com/mikepenz/xray-action, github.com/mikepenzin/timeago,num_dependents_deps.dev:0 github.com/mikeperri/api-wrapper,num_dependents_deps.dev:2 github.com/mikeperri/karma-longest-reporter,num_dependents_deps.dev:0 @@ -812572,6 +827304,7 @@ github.com/mikespook/gobot,num_dependents_deps.dev:0 github.com/mikespook/gorbac,num_dependents_deps.dev:1 github.com/mikespook/mmark,num_dependents_deps.dev:0 github.com/mikesposito/tunnelify,num_dependents_deps.dev:0 +github.com/mikesprague/teams-incoming-webhook-action, github.com/mikespub/fgcp-client-api, github.com/mikespub/gcf-cors-proxy,num_dependents_deps.dev:0 github.com/mikesson/apigee-mint-node,num_dependents_deps.dev:0 @@ -812684,6 +827417,7 @@ github.com/mikeunge/happy-fetch,num_dependents_deps.dev:0 github.com/mikeunge/tbm,num_dependents_deps.dev:0 github.com/mikevalstar/medusajs,num_dependents_deps.dev:0 github.com/mikevansighem/thea, +github.com/mikeve97/pr-checklist, github.com/mikevel2955/gandalf,num_dependents_deps.dev:0 github.com/mikevercoelen/colonize,num_dependents_deps.dev:0 github.com/mikevercoelen/dj-tools,num_dependents_deps.dev:0 @@ -812747,6 +827481,8 @@ github.com/mikeyamadeo/react-space,num_dependents_deps.dev:0 github.com/mikeyamadeo/react-txt,num_dependents_deps.dev:0 github.com/mikeyamadeo/redux-axios-api-middleware,num_dependents_deps.dev:0 github.com/mikeyangyo/cdk-changelog-slack-notify,num_dependents_deps.dev:0 +github.com/mikeyaworski/chrome-addon, +github.com/mikeyaworski/firefox-addon, github.com/mikeybotlist-cf/mikeybotlist-api,num_dependents_deps.dev:0 github.com/mikeybrin/cardinal-commerce-songbird-staging, github.com/mikeybyker/angular2-zxcvbn,num_dependents_deps.dev:0 @@ -812843,6 +827579,7 @@ github.com/mikhalevich/filesharing-file-service,num_dependents_deps.dev:0 github.com/mikhalevich/filesharing-history-service,num_dependents_deps.dev:0 github.com/mikhalevich/filesharing-tg-service,num_dependents_deps.dev:0 github.com/mikhalevich/filesharing-web-service,num_dependents_deps.dev:0 +github.com/mikhalkovnik/unity-request-activation-file, github.com/mikheyevav/ziviz, github.com/mikhtonyuk/pyhk2, github.com/miki151/keeperrl,criticality_score:0.508720 @@ -813015,6 +827752,7 @@ github.com/miklevin/ohawf, github.com/miklosaubert/nanook, github.com/miklosme/cypress-shared-webpack, github.com/miklosme/gren,num_dependents_deps.dev:0 +github.com/miklosn/github-action-rotate-gcp-key, github.com/miklosn/node-pow-argon2, github.com/miklschmidt/capacitor.js,num_dependents_deps.dev:0 github.com/miklschmidt/node-nw-snapshot,num_dependents_deps.dev:0 @@ -813051,6 +827789,7 @@ github.com/mikolajb/pqt,num_dependents_deps.dev:0 github.com/mikolajb/wallpaper-switch,num_dependents_deps.dev:0 github.com/mikolajdobrucki/css-variables-grid,num_dependents_deps.dev:0 github.com/mikolajgasior/go-cli,num_dependents_deps.dev:0 +github.com/mikolajkosmal/helm, github.com/mikolajkosmal/python_video_thumbnail, github.com/mikolajmitura/java-properties-to-json,num_dependents_deps.dev:7 github.com/mikolajmitura/java-utils,num_dependents_deps.dev:0 @@ -813540,6 +828279,7 @@ github.com/mikroskeem/go-doh-client,num_dependents_deps.dev:0 github.com/mikroskeem/gohipku,num_dependents_deps.dev:0 github.com/mikroskeem/golang-blake2s,num_dependents_deps.dev:0 github.com/mikroskeem/mcping,num_dependents_deps.dev:0 +github.com/mikroskeem/vault-action, github.com/mikrostew/good-morning,num_dependents_deps.dev:0 github.com/mikrostew/htmlbars-comment-redactor,num_dependents_deps.dev:0 github.com/mikrostew/yaml-fromat,num_dependents_deps.dev:0 @@ -813594,6 +828334,7 @@ github.com/mikulatomas/dutch-concepts, github.com/mikulatomas/fcapsy, github.com/mikulatomas/fcapsy_experiments, github.com/mikulatomas/fuzzycorr, +github.com/mikulicf/wails-build-action, github.com/mikulskibartosz/check-engine, github.com/mikumaycry/akari,num_dependents_deps.dev:0 github.com/mikunalpha/paws,num_dependents_deps.dev:0 @@ -813627,6 +828368,7 @@ github.com/mikya-fff/goonlinechatdemo,num_dependents_deps.dev:0 github.com/mikyaj/ngx-rough-notation,num_dependents_deps.dev:0 github.com/mikyas1/bookstore_oauth-go,num_dependents_deps.dev:0 github.com/mikyas1/scada_go-local-sql,num_dependents_deps.dev:0 +github.com/mikybars/build-alfred-workflow, github.com/mikydna/sports,num_dependents_deps.dev:0 github.com/mikykonst/nativescript-appurl-handler,num_dependents_deps.dev:0 github.com/mikykonst/react-native-swipe-item,num_dependents_deps.dev:0 @@ -813713,6 +828455,7 @@ github.com/milan-hwj/eslint-scanner,num_dependents_deps.dev:0 github.com/milan-hwj/judgment, github.com/milan-hwj/less-tree-extra,num_dependents_deps.dev:0 github.com/milan-hwj/webpack-dev-code-loader,num_dependents_deps.dev:0 +github.com/milan-lakhani/action-hosting-deploy-withFuntions, github.com/milan-mooibroek/npm-string-code-from-number,num_dependents_deps.dev:0 github.com/milan-zededa/eve,num_dependents_deps.dev:0 github.com/milan090/react-inscribe,num_dependents_deps.dev:0 @@ -813724,6 +828467,7 @@ github.com/milanasync/react-native-auth-screens,num_dependents_deps.dev:0 github.com/milanasync/rn-create, github.com/milanbalazs/detti_db_server, github.com/milanboers/rurel,num_dependents_deps.dev:0 +github.com/milancermak/cairo-format-action, github.com/milancio42/joinkit,num_dependents_deps.dev:0 github.com/milandebuck/laravel-fetch-wrapper,num_dependents_deps.dev:0 github.com/milandebuck/vue-dynamic-forms, @@ -813755,6 +828499,7 @@ github.com/milankinen/promised-routes,num_dependents_deps.dev:0 github.com/milankinen/react-reactive-toolkit,num_dependents_deps.dev:0 github.com/milankinen/relei,num_dependents_deps.dev:0 github.com/milankinen/stanga,num_dependents_deps.dev:0 +github.com/milankomaj/releases-x, github.com/milankorsos/test-grid,num_dependents_deps.dev:0 github.com/milankragujevic/primewire-client,num_dependents_deps.dev:0 github.com/milankragujevic/samsung-tv-auth,num_dependents_deps.dev:0 @@ -813771,6 +828516,7 @@ github.com/milanmeu/aionanoleaf, github.com/milanmeu/aiosenz, github.com/milanmeu/pyrituals, github.com/milanmisak/go-colorful,num_dependents_deps.dev:0 +github.com/milanmk/actions-file-deployer, github.com/milannankov/gulp-vscode-snippet-formatter,num_dependents_deps.dev:0 github.com/milannankov/nativescript-radio,num_dependents_deps.dev:0 github.com/milano-slesarik/django-drfxios, @@ -813829,6 +828575,9 @@ github.com/mildrenben/component-river,num_dependents_deps.dev:0 github.com/mildrenben/jsPDF,num_dependents_deps.dev:0 github.com/mildrenben/useDragScroll,num_dependents_deps.dev:0 github.com/mildrenben/weightedDice,num_dependents_deps.dev:0 +github.com/mildronize/actions-az-webapp-swap, +github.com/mildronize/actions-get-azure-credential, +github.com/mildronize/actions-get-secret-sops, github.com/mildronize/basic-react-store,num_dependents_deps.dev:0 github.com/mildronize/lightjs,num_dependents_deps.dev:0 github.com/mildronize/mildjs,num_dependents_deps.dev:0 @@ -814055,6 +828804,7 @@ github.com/militu/workstation-cli, github.com/miljan-aleksic/lump,num_dependents_deps.dev:0 github.com/miljan-fsd/parcel-react-app,num_dependents_deps.dev:0 github.com/miljank/django-portmaster, +github.com/miljann995/sql-action, github.com/miljantekic/Loki,num_dependents_deps.dev:0 github.com/miljimo/dispatchers, github.com/miljimo/events, @@ -814354,6 +829104,7 @@ github.com/milooy/remote-or-flexible-work-company-in-korea,criticality_score:0.3 github.com/milos-matijasevic/go-matcher,num_dependents_deps.dev:0 github.com/milos-v/jsonresume-theme-dark-classy-edit,num_dependents_deps.dev:0 github.com/milos01/rate-limter-spring-boot-starter,num_dependents_deps.dev:0 +github.com/miloserdow/capistrano-deploy, github.com/milosgajdos/go-estimate,num_dependents_deps.dev:0 github.com/milosgajdos/gosom,num_dependents_deps.dev:0 github.com/milosgajdos/netscrape,num_dependents_deps.dev:0 @@ -814417,6 +829168,7 @@ github.com/miltonbo/dashboard-style-airframe,num_dependents_deps.dev:0 github.com/miltoncandelero/pixi-webfont-loader,num_dependents_deps.dev:0 github.com/miltoncandelero/tweedle.js,num_dependents_deps.dev:0 github.com/miltondl96/reacttt,num_dependents_deps.dev:0 +github.com/miltonhit/amazon-ecs-deploy-task-definition, github.com/miltonio/milton2,num_dependents_deps.dev:107 github.com/miltonvelillac/clone-data,num_dependents_deps.dev:0 github.com/milu-buet/django-bKash, @@ -814435,6 +829187,7 @@ github.com/milvergithub/mdata-table,num_dependents_deps.dev:0 github.com/milvergithub/ngm-popover,num_dependents_deps.dev:0 github.com/milvergithub/ngx-popover-image,num_dependents_deps.dev:0 github.com/milvus-io/bootcamp,criticality_score:0.350040 +github.com/milvus-io/hero-bot, github.com/milvus-io/milvus,"criticality_score:0.563680,num_dependents_deps.dev:0" github.com/milvus-io/milvus-sdk-go,num_dependents_deps.dev:0 github.com/milvus-io/milvus-sdk-java,num_dependents_deps.dev:0 @@ -814698,6 +829451,7 @@ github.com/mincebert/bleWeatherStation, github.com/mincebert/deepops, github.com/minch/buoy_data,num_dependents_deps.dev:0 github.com/minch/constantize,num_dependents_deps.dev:0 +github.com/minchao/cfn-nag-action, github.com/minchao/go-apple-music,num_dependents_deps.dev:0 github.com/minchao/go-cwb,num_dependents_deps.dev:0 github.com/minchao/go-epa,num_dependents_deps.dev:0 @@ -814706,6 +829460,8 @@ github.com/minchao/go-realworld,num_dependents_deps.dev:0 github.com/minchao/hnc-operator,num_dependents_deps.dev:0 github.com/minchao/keto,num_dependents_deps.dev:0 github.com/minchao/oathkeeper,num_dependents_deps.dev:0 +github.com/minchao/setup-gator, +github.com/minchao/setup-go-swagger, github.com/minchenkov/node-html-encoder,num_dependents_deps.dev:45 github.com/minchenkov/node-soap-client,num_dependents_deps.dev:0 github.com/minchenkov/simple-xml-writer,num_dependents_deps.dev:0 @@ -814778,6 +829534,9 @@ github.com/minddistrict/js.qrious, github.com/minddistrict/js.trix, github.com/minddistrict/js.uuid, github.com/minddocdev/accesscontrol,num_dependents_deps.dev:0 +github.com/minddocdev/docker-publish-action, +github.com/minddocdev/mou-release-action, +github.com/minddocdev/mou-version-action, github.com/minddocdev/nest-express-winston,num_dependents_deps.dev:0 github.com/minddust/bootstrap-progressbar,num_dependents_deps.dev:0 github.com/mindearth/mobilkit, @@ -814941,6 +829700,7 @@ github.com/mindsdb/mindsdb_sql, github.com/mindsdb/mindsdb_streams, github.com/mindsect/censorify99999,num_dependents_deps.dev:0 github.com/mindsect/kookycensor17,num_dependents_deps.dev:0 +github.com/mindsers/changelog-reader-action, github.com/mindskip/xzs,criticality_score:0.395330 github.com/mindslave/fit-backend,num_dependents_deps.dev:0 github.com/mindsmash/mindsmash-ui,num_dependents_deps.dev:0 @@ -815022,6 +829782,7 @@ github.com/minehp/iviTest, github.com/mineichen/minfac,num_dependents_deps.dev:0 github.com/mineichen/simple_lines,num_dependents_deps.dev:0 github.com/mineiros-io/vue-drift-widget, +github.com/mineko-io/action-gitbook-sync-dir, github.com/mineko-io/lambda-basics,num_dependents_deps.dev:0 github.com/mineko-io/lambda-edge-root-doc,num_dependents_deps.dev:0 github.com/minekube/brigodier,num_dependents_deps.dev:1 @@ -815063,6 +829824,7 @@ github.com/minesaner/create-react-app,num_dependents_deps.dev:0 github.com/minesaner/icrawl, github.com/minesaner/ramap, github.com/minestarnl/qlab.js,num_dependents_deps.dev:0 +github.com/minesunny/postgresql-action, github.com/minesweeper/mines,num_dependents_deps.dev:0 github.com/minetakaki/go-utils,num_dependents_deps.dev:0 github.com/minetest-j45/go_hash,num_dependents_deps.dev:0 @@ -815195,6 +829957,7 @@ github.com/mingjiezhao/LDA_final_project_SP2019, github.com/mingjingc/ethereum-sync,num_dependents_deps.dev:0 github.com/mingju0421/SimpleTime,num_dependents_deps.dev:0 github.com/mingju0421/ft-components,num_dependents_deps.dev:0 +github.com/mingjun97/file-regex-replace, github.com/mingkaic/onnxds, github.com/mingkhuang/go-concurrency-limits,num_dependents_deps.dev:0 github.com/mingkid/gdb-adapter,num_dependents_deps.dev:0 @@ -815262,6 +830025,7 @@ github.com/mingwheel/palindrome,num_dependents_deps.dev:0 github.com/mingxiaguo/english,num_dependents_deps.dev:0 github.com/mingxiaodong/hipims_io_python, github.com/mingxiaodong/hydro-raster, +github.com/mingxiaoyu/package-flippy-openwrt, github.com/mingxin-yang/react-native-cropper-page,num_dependents_deps.dev:0 github.com/mingxinstar/react-hls,num_dependents_deps.dev:4 github.com/mingyangya/easy-websocket-npm, @@ -815299,6 +830063,8 @@ github.com/minhbkpro/clear-ui,num_dependents_deps.dev:0 github.com/minhchi3103/nuxt-client-error,num_dependents_deps.dev:0 github.com/minhchi3103/nuxt-global-var,num_dependents_deps.dev:0 github.com/minhchiencktv/my-package,num_dependents_deps.dev:0 +github.com/minhchienwikipedia/deploygate-upload-app, +github.com/minhchienwikipedia/get-pr-info, github.com/minhchienwikipedia/react-native-component-kits,num_dependents_deps.dev:0 github.com/minhdang900/pdfparser-si, github.com/minhdanh/ctrlcb,num_dependents_deps.dev:0 @@ -815408,6 +830174,7 @@ github.com/minhvu2510/lab-cicd-golang,num_dependents_deps.dev:0 github.com/minhwalker/store_items-api,num_dependents_deps.dev:0 github.com/minhwalker/store_oauth-api,num_dependents_deps.dev:0 github.com/minhwalker/store_utils-go,num_dependents_deps.dev:0 +github.com/mini-bomba/create-github-release, github.com/mini-cloud/whips,num_dependents_deps.dev:0 github.com/mini-cloud/wrip,num_dependents_deps.dev:0 github.com/mini-eggs/Gulg,num_dependents_deps.dev:0 @@ -815501,11 +830268,13 @@ github.com/minichate/ember-mixpanel,num_dependents_deps.dev:0 github.com/minichate/jscs-ember-deprecations,num_dependents_deps.dev:0 github.com/minichate/point, github.com/minichiello/PyOpenGraph, +github.com/minicli/action-contributors, github.com/miniclip/gonsul,num_dependents_deps.dev:0 github.com/minicloud/minicloud,num_dependents_deps.dev:0 github.com/minicloud/minicloud-storage,num_dependents_deps.dev:0 github.com/minicloudsky/golangstudy,num_dependents_deps.dev:0 github.com/miniconfig/python-openevse-wifi, +github.com/minicreative/build-publish-jekyll, github.com/minid33/multipart-download,num_dependents_deps.dev:0 github.com/minidns/minidns,num_dependents_deps.dev:736 github.com/minidonut/cmdconfig,num_dependents_deps.dev:0 @@ -815605,6 +830374,7 @@ github.com/minimaxir/textgenrnn,criticality_score:0.305710 github.com/minimaxir/twcloud, github.com/miniminelp/mcscriptstudiocode,num_dependents_deps.dev:0 github.com/minimist3/minimist3,num_dependents_deps.dev:0 +github.com/minimistjs/minimist, github.com/minimit/xtend,num_dependents_deps.dev:0 github.com/minimit/xtend-library,num_dependents_deps.dev:0 github.com/minimit/xtend-magento,num_dependents_deps.dev:0 @@ -815705,6 +830475,7 @@ github.com/minirobotdan/mongo-populate,num_dependents_deps.dev:0 github.com/minirom/photo-viewer,num_dependents_deps.dev:0 github.com/miniscruff/bouncy,num_dependents_deps.dev:0 github.com/miniscruff/changie,num_dependents_deps.dev:0 +github.com/miniscruff/changie-action, github.com/miniscruff/hashversion-python, github.com/miniscruff/igloo,num_dependents_deps.dev:0 github.com/miniscruff/python-command-center, @@ -815718,6 +830489,7 @@ github.com/ministre/go-owrt-wizard,num_dependents_deps.dev:0 github.com/ministre/ping-checker,num_dependents_deps.dev:0 github.com/ministry-of-silly-code/experiment_buddy, github.com/ministryofjustice/analytics-platform-restarter,num_dependents_deps.dev:0 +github.com/ministryofjustice/ansible-playbook-with-keyvault-action, github.com/ministryofjustice/awsbuilder, github.com/ministryofjustice/awsjump, github.com/ministryofjustice/bai2, @@ -815771,6 +830543,8 @@ github.com/ministryofjustice/openregister-client, github.com/ministryofjustice/opg-data,num_dependents_deps.dev:0 github.com/ministryofjustice/opg-digideps,num_dependents_deps.dev:0 github.com/ministryofjustice/opg-performance-analytics, +github.com/ministryofjustice/opg-repository-scanner, +github.com/ministryofjustice/opg-repository-scanner-amalgamation, github.com/ministryofjustice/opg-sirius-lpa-dashboard,num_dependents_deps.dev:0 github.com/ministryofjustice/opg-sirius-user-management,num_dependents_deps.dev:0 github.com/ministryofjustice/opg-sirius-workflow,num_dependents_deps.dev:0 @@ -815780,6 +830554,7 @@ github.com/ministryofjustice/postcodeinfo-client-python, github.com/ministryofjustice/python-fly, github.com/ministryofjustice/salt_shaker, github.com/ministryofjustice/sheffield-digital-studio,num_dependents_deps.dev:0 +github.com/ministryofjustice/terraform-action, github.com/ministryofjusticecz/frontend,num_dependents_deps.dev:0 github.com/ministryofprogramming/gettext-nunjucks,num_dependents_deps.dev:4 github.com/ministryofpromise/tlp, @@ -815845,6 +830620,7 @@ github.com/minlare/webpack-plugin-output-files,num_dependents_deps.dev:0 github.com/minlau/mdb-tool,num_dependents_deps.dev:0 github.com/minlaxz/imzmqx, github.com/minlaxz/logxs, +github.com/minlaxz/my-action, github.com/minlaxz/py-laxz, github.com/minlia-projects/cloud-starter-context,num_dependents_deps.dev:0 github.com/minlia-projects/cloud-starter-data,num_dependents_deps.dev:0 @@ -815931,6 +830707,7 @@ github.com/minogin/vector,num_dependents_deps.dev:2 github.com/minogin/vue-drag-resize-rotate,num_dependents_deps.dev:0 github.com/minoic/glgf,num_dependents_deps.dev:0 github.com/minoic/go-fitz,num_dependents_deps.dev:0 +github.com/minoic/markdown-auto-catalog, github.com/minoic/regcmd,num_dependents_deps.dev:0 github.com/minojiro/gh-lang-colors,num_dependents_deps.dev:0 github.com/minoku/FixQueue, @@ -815987,6 +830764,7 @@ github.com/minosss/shayin,num_dependents_deps.dev:0 github.com/minosss/tsconfig, github.com/minotar/imgd,num_dependents_deps.dev:0 github.com/minotaurrr/use-geo-location,num_dependents_deps.dev:0 +github.com/minova-afis/Dependency-Check_Action, github.com/minqi/PyMDP, github.com/minqidev/s4u-adodb-client, github.com/minrk/allthekernels, @@ -816121,6 +830899,7 @@ github.com/mintshell/mintshell,num_dependents_deps.dev:4 github.com/mintshrm/grunt-fsmdjson,num_dependents_deps.dev:0 github.com/mintshrm/grunt-svg-modify,num_dependents_deps.dev:0 github.com/mintswap/mintswap-lib,num_dependents_deps.dev:0 +github.com/mintsweet/auto-cherry-pick, github.com/mintsweet/cncolor,num_dependents_deps.dev:0 github.com/mintsweet/egg-audit-log,num_dependents_deps.dev:0 github.com/mintsweet/mints,num_dependents_deps.dev:0 @@ -816265,6 +831044,7 @@ github.com/mioying/miotools, github.com/mioyuan/Fanart.tv-API,num_dependents_deps.dev:0 github.com/mip-project/mip-cli,num_dependents_deps.dev:0 github.com/mip-project/mip-component-validator,num_dependents_deps.dev:0 +github.com/miparnisari/action-pagerduty-alert, github.com/miparnisari/arg.js,num_dependents_deps.dev:0 github.com/mipatterson/typedoc-plugin-markdown-pages,num_dependents_deps.dev:0 github.com/mipatterson/typedoc-plugin-pages,num_dependents_deps.dev:0 @@ -816304,6 +831084,7 @@ github.com/mipli/septem,num_dependents_deps.dev:0 github.com/mipli/sgf-parser,num_dependents_deps.dev:0 github.com/mipmip/bitbar_gitlab,num_dependents_deps.dev:0 github.com/mipmip/cerebro-open-in-iterm,num_dependents_deps.dev:0 +github.com/mipmip/github-action-markdown-link-extract-to-json, github.com/mipos-mx/gocore,num_dependents_deps.dev:0 github.com/mipselqq/balaboba,num_dependents_deps.dev:0 github.com/mipstian/catch,criticality_score:0.352310 @@ -816367,6 +831148,7 @@ github.com/miraage/create-react-app,num_dependents_deps.dev:0 github.com/miraage/react-modular,num_dependents_deps.dev:0 github.com/miraage/riot-api-node,num_dependents_deps.dev:0 github.com/miraage/spa-forge,num_dependents_deps.dev:0 +github.com/miraai/read-helm-chart-yaml, github.com/mirabalj/fastorm,num_dependents_deps.dev:0 github.com/mirabalj/sequelize-paginate-cursor,num_dependents_deps.dev:0 github.com/mirabeau-nl/ceddl4j,num_dependents_deps.dev:0 @@ -816691,6 +831473,7 @@ github.com/mirkar/gocookbook,num_dependents_deps.dev:0 github.com/mirkesin/golang_assignment_one,num_dependents_deps.dev:0 github.com/mirkesin/golang_assignment_two,num_dependents_deps.dev:0 github.com/mirkesin/golang_midterm,num_dependents_deps.dev:0 +github.com/mirko-felice/list-files-action, github.com/mirko1593/adt,num_dependents_deps.dev:0 github.com/mirko1593/version,num_dependents_deps.dev:0 github.com/mirkobronzi/bert_reranker, @@ -816804,6 +831587,7 @@ github.com/mirrexagon/rust-sunvox-sys,num_dependents_deps.dev:0 github.com/mirrh/clitr,num_dependents_deps.dev:0 github.com/mirri66/pyrank, github.com/mirri66/xgbmagic, +github.com/mirromutth/mysql-action, github.com/mirromutth/r2dbc-mysql,num_dependents_deps.dev:6 github.com/mirror-kt/hetero-container,num_dependents_deps.dev:0 github.com/mirror-media/elemental, @@ -816825,6 +831609,8 @@ github.com/mirror/tclap,"project=envoy,dependency=true" github.com/mirror520/sms,num_dependents_deps.dev:0 github.com/mirror520/tiwengo,num_dependents_deps.dev:0 github.com/mirroraculous/mirroraculous,num_dependents_deps.dev:0 +github.com/mirrorcult/RSIDiffBot, +github.com/mirrorfm/csv-contribution-action, github.com/mirrorfm/trackfilter, github.com/mirrorhanyu/GitDatabase, github.com/mirrorjs/mirror,"criticality_score:0.332540,num_dependents_deps.dev:6" @@ -816907,6 +831693,7 @@ github.com/mirza99/routing,num_dependents_deps.dev:0 github.com/mirzaahmedov/golang,num_dependents_deps.dev:0 github.com/mirzaakhena/gogen,num_dependents_deps.dev:0 github.com/mirzaakhena/zapp,num_dependents_deps.dev:0 +github.com/mirzakhany/install-helm-action, github.com/mirzakhany/pkg,num_dependents_deps.dev:0 github.com/mirzalazuardi/permutation_combination,num_dependents_deps.dev:0 github.com/mirzalikic/react-cookie-notice,num_dependents_deps.dev:0 @@ -816932,6 +831719,7 @@ github.com/misaelbs/react-smart-layout,num_dependents_deps.dev:0 github.com/misaeldossantos/fluid-form,num_dependents_deps.dev:0 github.com/misaeldossantos/react-native-scroll-to-element, github.com/misaeldossantos/react-smart-layout, +github.com/misaelnieto/web_to_pdf_action, github.com/misak1/m-log,num_dependents_deps.dev:0 github.com/misak1/m-path,num_dependents_deps.dev:0 github.com/misak1/m-require,num_dependents_deps.dev:0 @@ -817072,6 +831860,7 @@ github.com/miser/plugboard,num_dependents_deps.dev:0 github.com/miser/react-table-header-fixed,num_dependents_deps.dev:0 github.com/miser/vue-collapse,num_dependents_deps.dev:0 github.com/miserenkov/clean-webpack-plugin,num_dependents_deps.dev:0 +github.com/miserenkov/get-changed-packages, github.com/miserlou/unzip-response-es5,num_dependents_deps.dev:0 github.com/misery/CustomUrlAvatar, github.com/misery/ExtendedApproval, @@ -817099,6 +831888,9 @@ github.com/misfr/validators,num_dependents_deps.dev:0 github.com/misgnome/samlhbuck_palindrome,num_dependents_deps.dev:0 github.com/misgorod/tucktuck-pull,num_dependents_deps.dev:0 github.com/mish-tv/cache,num_dependents_deps.dev:0 +github.com/misha-brt/create-pull-request, +github.com/misha-brt/create-release, +github.com/misha-brt/keep-a-changelog-new-release, github.com/misha-marinenko-official/torDB,num_dependents_deps.dev:0 github.com/misha/vue-declassify,num_dependents_deps.dev:0 github.com/misha130/datepicker-ionic2,num_dependents_deps.dev:0 @@ -817108,6 +831900,7 @@ github.com/misha130/ionic2-numericpicker,num_dependents_deps.dev:0 github.com/misha130/ngx-drag-and-drop-lists,num_dependents_deps.dev:0 github.com/misha98857/ng-lightning, github.com/mishabelokon/react-native-scroll-indicator,num_dependents_deps.dev:0 +github.com/mishabruml/supersnyk, github.com/mishadev/cq-dispatcher,num_dependents_deps.dev:0 github.com/mishadev/cqrs-actions,num_dependents_deps.dev:0 github.com/mishadev/i18n-dreamhost,num_dependents_deps.dev:0 @@ -817142,6 +831935,7 @@ github.com/mishantrop/reactScrollbar,num_dependents_deps.dev:0 github.com/mishanya/mishanya-sortable-table,num_dependents_deps.dev:0 github.com/mishaor/apilii,num_dependents_deps.dev:0 github.com/mishaoz/misha,num_dependents_deps.dev:0 +github.com/mishapos/static-web-apps-deploy, github.com/mishas/prometheus_amqp_proxy,num_dependents_deps.dev:0 github.com/mishaszu/NodeTee,num_dependents_deps.dev:0 github.com/mishaszu/b-pipe,num_dependents_deps.dev:0 @@ -817153,6 +831947,7 @@ github.com/mishaszu/orbx-enum,num_dependents_deps.dev:0 github.com/mishaszu/screeps-rookie,num_dependents_deps.dev:0 github.com/mishaszu/shpakjs,num_dependents_deps.dev:0 github.com/mishaszu/siskinjs, +github.com/mishavoloshchuk/github-action-push-to-another-repository, github.com/mishazawa/webpack-pre-post-plugin,num_dependents_deps.dev:0 github.com/mishazenin/analytics,num_dependents_deps.dev:0 github.com/mishazenin/dogmatest,num_dependents_deps.dev:0 @@ -817207,6 +832002,7 @@ github.com/mishioo/zeetoo, github.com/mishk0/slack-bot-api,"criticality_score:0.355520,num_dependents_deps.dev:0" github.com/mishk0/swiped,num_dependents_deps.dev:0 github.com/mishkamashka/dungeon,num_dependents_deps.dev:0 +github.com/mishkeTz/get-vercel-preview-url-by-project-id, github.com/mishkinf/api-know,num_dependents_deps.dev:0 github.com/mishkinf/mobservable-api,num_dependents_deps.dev:0 github.com/mishkinf/mobx-api,num_dependents_deps.dev:0 @@ -817240,6 +832036,7 @@ github.com/mishzztg/lab2go,num_dependents_deps.dev:0 github.com/misi/passport-ssp,num_dependents_deps.dev:0 github.com/misialq/openerz-api, github.com/misidoro/starwars-names,num_dependents_deps.dev:0 +github.com/misiekhardcore/infra-report-action, github.com/misikch/simple-go-gallery,num_dependents_deps.dev:0 github.com/misilva73/dtw_som, github.com/misilva73/extendedMD, @@ -817272,6 +832069,7 @@ github.com/miskun/qtc-sdk-node, github.com/miskun/targz,num_dependents_deps.dev:306 github.com/misl/json-merge,num_dependents_deps.dev:0 github.com/misl/openapi-validator-maven-plugin,num_dependents_deps.dev:0 +github.com/mislav/bump-homebrew-formula-action, github.com/mislav/rspec-rails-mocha,num_dependents_deps.dev:0 github.com/mislav/will_paginate,"criticality_score:0.451420,num_dependents_deps.dev:1030" github.com/mislavcimpersak/awesome-dev-fun,criticality_score:0.316100 @@ -817532,6 +832330,7 @@ github.com/misterdai/mongoose-validator-all,num_dependents_deps.dev:0 github.com/misterdev/webpack-reporter-plugin,num_dependents_deps.dev:0 github.com/misterdev/webpack-scaffold-vue,num_dependents_deps.dev:0 github.com/misterdjules/node-asm-ref,num_dependents_deps.dev:0 +github.com/mistereechapman/update-branch-protection, github.com/misterfaradey/assisted_team_test,num_dependents_deps.dev:0 github.com/misterfifths/jutil,num_dependents_deps.dev:0 github.com/misterfish/fish-lib-node,num_dependents_deps.dev:0 @@ -817943,6 +832742,8 @@ github.com/mitchellrstack/modulous-two,num_dependents_deps.dev:0 github.com/mitchellsimoens/biz-carderator,num_dependents_deps.dev:0 github.com/mitchellsimoens/brackets-file-tree-exclude,num_dependents_deps.dev:0 github.com/mitchellsimoens/gimbal-react,num_dependents_deps.dev:0 +github.com/mitchellsimoens/gpr-pr-version-bump, +github.com/mitchellsimoens/gpr-pr-version-cleanup, github.com/mitchellsimoens/mitchellsimoens-card,num_dependents_deps.dev:0 github.com/mitchellsimoens/pre-prompt,num_dependents_deps.dev:0 github.com/mitchellsimoens/react-idispatcher,num_dependents_deps.dev:0 @@ -817955,6 +832756,7 @@ github.com/mitchellst/object-html-scrubber,num_dependents_deps.dev:0 github.com/mitchellsullivan/react-admin-data-jhipster, github.com/mitchelltesla/ethereum_2.0,num_dependents_deps.dev:0 github.com/mitchellvanw/react-highlightable,num_dependents_deps.dev:0 +github.com/mitchfen/cleanup-untagged-container-images, github.com/mitchins/micropython-wifimanager, github.com/mitchjeitani/catacomb, github.com/mitchlloyd/ember-autosave,num_dependents_deps.dev:0 @@ -818000,6 +832802,7 @@ github.com/mitchreece/prompt-theme,num_dependents_deps.dev:0 github.com/mitchreece/stylelint-config-base,num_dependents_deps.dev:0 github.com/mitchreece/theme-variables,num_dependents_deps.dev:0 github.com/mitchreece/vscode-theme,num_dependents_deps.dev:0 +github.com/mitchspano/sfdx-scan-pull-request, github.com/mitchsw/nycbike,num_dependents_deps.dev:0 github.com/mitchsw/redisgraph-go,num_dependents_deps.dev:0 github.com/mitchwadair/tesjs,num_dependents_deps.dev:0 @@ -818247,12 +833050,14 @@ github.com/mitre/lingvo,num_dependents_deps.dev:0 github.com/mitre/manx,num_dependents_deps.dev:0 github.com/mitre/node-qme,num_dependents_deps.dev:0 github.com/mitre/pydecipher, +github.com/mitre/saf_action, github.com/mitre/sandcat,num_dependents_deps.dev:0 github.com/mitre/stix2patterns_translator, github.com/mitre/stixmarx, github.com/mitre/thumbtack, github.com/mitre/thumbtack-client, github.com/mitre/tmnt, +github.com/mitre/xccdf-validate-action, github.com/mitreid-connect/OpenID-Connect-Java-Spring-Server,"criticality_score:0.424170,num_dependents_deps.dev:240" github.com/mitreid-connect/json-web-key-generator,num_dependents_deps.dev:0 github.com/mitrid-labs/mitrid-core,num_dependents_deps.dev:0 @@ -818359,6 +833164,7 @@ github.com/mittalyashu/gistash,num_dependents_deps.dev:0 github.com/mittelholcz/contextfun, github.com/mittelholcz/hellopypa, github.com/mittnavnermike/gatsby-plugins,num_dependents_deps.dev:4 +github.com/mitto98/dependabot-automerge-action, github.com/mitto98/vue-formulate-vcalendar,num_dependents_deps.dev:0 github.com/mittonface/react-tinacms-strapi,num_dependents_deps.dev:0 github.com/mittonface/serverless-stack,num_dependents_deps.dev:0 @@ -818424,7 +833230,10 @@ github.com/miura1729/ytljit,num_dependents_deps.dev:0 github.com/miurahr/aqtinstall, github.com/miurahr/bcj-cffi, github.com/miurahr/gst-python-stubs, +github.com/miurahr/install-linuxdeploy-action, +github.com/miurahr/install-linuxdeployqt-action, github.com/miurahr/multivolume, +github.com/miurahr/omegat-stat, github.com/miurahr/picast, github.com/miurahr/ppmd, github.com/miurahr/py7zr, @@ -818910,6 +833719,7 @@ github.com/miya0001/password-field,num_dependents_deps.dev:0 github.com/miya0001/wp-angularjs,num_dependents_deps.dev:0 github.com/miyabi/react-native-passkit-wallet,num_dependents_deps.dev:0 github.com/miyabi/react-native-safe-area,num_dependents_deps.dev:0 +github.com/miyabin66/ganotify, github.com/miyabisun/conoha-cli,num_dependents_deps.dev:0 github.com/miyabisun/libvorbis-js,num_dependents_deps.dev:0 github.com/miyabyte/kratosv2httpresolver,num_dependents_deps.dev:0 @@ -818927,11 +833737,13 @@ github.com/miyagawa/hubot-incoming-sqs,num_dependents_deps.dev:0 github.com/miyagawa/hubot-lingr,num_dependents_deps.dev:0 github.com/miyagawa/hubot-standup,num_dependents_deps.dev:0 github.com/miyagawa/hubot-webhook,num_dependents_deps.dev:0 +github.com/miyajan/action-char-count, github.com/miyajan/garoon-rest,num_dependents_deps.dev:0 github.com/miyajan/garoon-soap,num_dependents_deps.dev:0 github.com/miyajan/jflint,num_dependents_deps.dev:0 github.com/miyajan/kintone-follow-people,num_dependents_deps.dev:0 github.com/miyajan/node-github-release,num_dependents_deps.dev:2 +github.com/miyajan/npm-audit-pr, github.com/miyajan/versioneye-api-client,num_dependents_deps.dev:0 github.com/miyajan/versioneye-slack,num_dependents_deps.dev:0 github.com/miyakawasaki/jcifsng,num_dependents_deps.dev:0 @@ -818992,6 +833804,7 @@ github.com/miyapub/raspbian,num_dependents_deps.dev:0 github.com/miyapub/timeapi,num_dependents_deps.dev:0 github.com/miyapub/udpmessager,num_dependents_deps.dev:0 github.com/miyapub/webframework,num_dependents_deps.dev:0 +github.com/miyataka/elasticsearch-github-actions, github.com/miyataka/fcmpush,num_dependents_deps.dev:0 github.com/miyataka/firebase_token_auth,num_dependents_deps.dev:0 github.com/miyataka/system-programming-in-golang,num_dependents_deps.dev:0 @@ -819015,6 +833828,7 @@ github.com/miyosuda/rodentia, github.com/miyouzi/aniGamerPlus,criticality_score:0.347880 github.com/miyoyo/flutterdoc,num_dependents_deps.dev:0 github.com/miyuchina/mistletoe, +github.com/miyucy/github-pr-release-action, github.com/miyucy/migemojs,num_dependents_deps.dev:0 github.com/miyucy/romkan,num_dependents_deps.dev:0 github.com/miyucy/ts-checker-webpack-plugin,num_dependents_deps.dev:0 @@ -819118,6 +833932,7 @@ github.com/mizuka-ninomae/thermo_beacon_ws08, github.com/mizuka-ninomae/zh06,num_dependents_deps.dev:0 github.com/mizuka-wu/Seed,num_dependents_deps.dev:0 github.com/mizuka-wu/el-table-draggable,num_dependents_deps.dev:0 +github.com/mizuka-wu/gitee-pages-action, github.com/mizuka-wu/json-schema-to-jsdoc,num_dependents_deps.dev:0 github.com/mizuka-wu/vmd-js,num_dependents_deps.dev:0 github.com/mizuka-wu/vue-pdfmake,num_dependents_deps.dev:0 @@ -819193,6 +834008,7 @@ github.com/mjacobus/koine-rest_client,num_dependents_deps.dev:0 github.com/mjaczynski/docloud-api,num_dependents_deps.dev:2 github.com/mjaczynski/docloud-cli,num_dependents_deps.dev:0 github.com/mjaczynski/under-maintenance,num_dependents_deps.dev:0 +github.com/mjad-org/kubectl-aws-iam, github.com/mjadobson/ckeditor5-s3-upload,num_dependents_deps.dev:0 github.com/mjadobson/ckeditor5-super-sub,num_dependents_deps.dev:0 github.com/mjago/CW,num_dependents_deps.dev:0 @@ -819206,6 +834022,8 @@ github.com/mjalas/file-structure-generator, github.com/mjalas/messaging-client, github.com/mjalas/pyprojectgen, github.com/mjam03/tennisim, +github.com/mjamaah/KubeApps, +github.com/mjamaah/kubectl, github.com/mjamado/insomnia-plugin-jwt,num_dependents_deps.dev:0 github.com/mjamado/multi-number-parse,num_dependents_deps.dev:2 github.com/mjamrozek/autobinder,num_dependents_deps.dev:0 @@ -819431,6 +834249,8 @@ github.com/mjem/carrie, github.com/mjem/globexc, github.com/mjenior/riptide, github.com/mjenssen/elm-format,num_dependents_deps.dev:0 +github.com/mjerem34/close-pull-requests-limit, +github.com/mjerem34/heroku_capture_pgdb, github.com/mjesuele/bitfinex-api-node,num_dependents_deps.dev:0 github.com/mjesuele/gemini-api-node,num_dependents_deps.dev:6 github.com/mjesuele/hitbtc-api-node,num_dependents_deps.dev:0 @@ -819682,6 +834502,7 @@ github.com/mjonss/parser,num_dependents_deps.dev:0 github.com/mjonss/tidb,num_dependents_deps.dev:0 github.com/mjoppich/pIMZ, github.com/mjordancodes/mjordancard,num_dependents_deps.dev:0 +github.com/mjorgegulab/mantis-bug-tracker-action, github.com/mjosephwarren/isit-code-warren,num_dependents_deps.dev:0 github.com/mjoshd/hyperhdr-py, github.com/mjoslyn/react-prismic-hocs,num_dependents_deps.dev:0 @@ -819727,6 +834548,7 @@ github.com/mjpsyapse/dropdown,num_dependents_deps.dev:0 github.com/mjpsyapse/menu,num_dependents_deps.dev:2 github.com/mjpsyapse/select,num_dependents_deps.dev:0 github.com/mjpsyapse/trigger,num_dependents_deps.dev:2 +github.com/mjr/github-actions-deploy-dokku, github.com/mjr/hyperline, github.com/mjr/juno-python, github.com/mjradwin/hebcal-es6,num_dependents_deps.dev:0 @@ -820181,6 +835003,7 @@ github.com/mk12/table-extract,num_dependents_deps.dev:0 github.com/mk12/wowcpe,num_dependents_deps.dev:0 github.com/mk1990/Properties2JsonPlugin,num_dependents_deps.dev:0 github.com/mk2/add-final-newline,num_dependents_deps.dev:0 +github.com/mk2/article-fetcher, github.com/mk2/mobx-method-decorators, github.com/mk2/seqqu,num_dependents_deps.dev:0 github.com/mk2/yabai,num_dependents_deps.dev:0 @@ -820212,6 +835035,7 @@ github.com/mkalioby/Python_Notifications, github.com/mkalioby/bpython-django, github.com/mkalioby/djangOK, github.com/mkalioby/django-mfa2, +github.com/mkalioby/django-passkeys, github.com/mkalioby/jsonLookup, github.com/mkalioby/notify-me, github.com/mkalioby/partialCopy, @@ -820277,6 +835101,7 @@ github.com/mkaspro/go-http,num_dependents_deps.dev:0 github.com/mkasumi/kasumimorita,num_dependents_deps.dev:0 github.com/mkatanski/StrapForms,num_dependents_deps.dev:0 github.com/mkatanski/grunt-produce,num_dependents_deps.dev:0 +github.com/mkatanski/release-files-action, github.com/mkatanski/strap-forms,num_dependents_deps.dev:0 github.com/mkatrenik/snowplow-enrich,num_dependents_deps.dev:0 github.com/mkatrenik/webpackrc,num_dependents_deps.dev:0 @@ -820819,6 +835644,7 @@ github.com/mklucz/drogi, github.com/mklucz/stapi-python, github.com/mklueh/gridsome-plugin-recommender,num_dependents_deps.dev:0 github.com/mklueh/gridsome-source-rest,num_dependents_deps.dev:0 +github.com/mkly/pr-poet, github.com/mkm1997/react-native-gmailtype-textinput,num_dependents_deps.dev:0 github.com/mkm29/gophercorn,num_dependents_deps.dev:0 github.com/mkm29/my-awesome-project,num_dependents_deps.dev:0 @@ -820932,6 +835758,7 @@ github.com/mkorakakis/drivelist-scanner,num_dependents_deps.dev:0 github.com/mkorenkov/django-sisyphus, github.com/mkorenkov/go-digest-request,num_dependents_deps.dev:0 github.com/mkorenkov/sisyphus, +github.com/mkoreo/pnpm-filter, github.com/mkorevec/strapi-provider-upload-wasabi-resize,num_dependents_deps.dev:0 github.com/mkorkmaz/flightradar24, github.com/mkorman9/agios, @@ -821017,14 +835844,20 @@ github.com/mkraemer67/plugml, github.com/mkraemer67/validatorbase,num_dependents_deps.dev:0 github.com/mkraft/PicasaWebAlbums,num_dependents_deps.dev:0 github.com/mkraft/fides,num_dependents_deps.dev:0 +github.com/mkrakowitzer/actions-gh-deploy, +github.com/mkrakowitzer/actions-ghsettings, +github.com/mkrakowitzer/actions-googledrive, +github.com/mkrakowitzer/actions-makepdfs, github.com/mkralla11/async_buf_reader_utils,num_dependents_deps.dev:0 github.com/mkralla11/quick_crawler,num_dependents_deps.dev:0 github.com/mkralla11/safe-redis-leader,num_dependents_deps.dev:0 github.com/mkramb/bower-clean,num_dependents_deps.dev:0 github.com/mkramb/create-react-app,num_dependents_deps.dev:0 github.com/mkramb/css-to-enum,num_dependents_deps.dev:0 +github.com/mkramb/giphy-action, github.com/mkramb/kubernetes-javascript-api,num_dependents_deps.dev:0 github.com/mkramb/ts-commander,num_dependents_deps.dev:0 +github.com/mkramb/yarn-action, github.com/mkrause/constructor.js,num_dependents_deps.dev:0 github.com/mkrause/lifecycle-loader,num_dependents_deps.dev:0 github.com/mkrause/lifecycle-rest,num_dependents_deps.dev:0 @@ -821069,6 +835902,7 @@ github.com/mkristian/rails-resty-gwt,num_dependents_deps.dev:0 github.com/mkrjhnsn/django-randomslugfield, github.com/mkrnr/plover_regenpfeifer, github.com/mkroening/async-copy-progress,num_dependents_deps.dev:0 +github.com/mkroening/rust-toolchain-toml, github.com/mkroetzsch/vlog4j,num_dependents_deps.dev:0 github.com/mkroli/dns4s,num_dependents_deps.dev:5 github.com/mkroman/evic,num_dependents_deps.dev:0 @@ -821112,6 +835946,7 @@ github.com/mkspcd/good-mail,num_dependents_deps.dev:0 github.com/mksvdmtr/db_updater,num_dependents_deps.dev:0 github.com/mktademicon/ademidentity,num_dependents_deps.dev:0 github.com/mktakuya/daisougen,num_dependents_deps.dev:0 +github.com/mktcode/consecutive-workflow-action, github.com/mktcode/vue-steemconnect,num_dependents_deps.dev:0 github.com/mktiti/ConstGeneratorMavenPlugin,num_dependents_deps.dev:0 github.com/mktj/parsecurrency,num_dependents_deps.dev:0 @@ -821126,7 +835961,9 @@ github.com/mkuchak/nuxt-hammer,num_dependents_deps.dev:0 github.com/mkuchak/vue-flow-form, github.com/mkuchenbecker/storage,num_dependents_deps.dev:0 github.com/mkuckro/lodown,num_dependents_deps.dev:0 +github.com/mkucmus/storefrontcloud-preview-deploy, github.com/mkuczera/react-native-haptic-feedback,num_dependents_deps.dev:2 +github.com/mkuczera/xcodebuild, github.com/mkuerbis/bcscanner,num_dependents_deps.dev:0 github.com/mkuettel/limited,num_dependents_deps.dev:0 github.com/mkujaggi/mongoid-autoincrement,num_dependents_deps.dev:0 @@ -821137,7 +835974,9 @@ github.com/mkulesh/microMathematics,criticality_score:0.359070 github.com/mkulke/osm-pbf2json,num_dependents_deps.dev:0 github.com/mkumary/my-header-npm,num_dependents_deps.dev:0 github.com/mkumatag/cluster-api-provider-ibmcloud,num_dependents_deps.dev:0 +github.com/mkumatag/container-image-updater-action, github.com/mkumatag/github-adm,num_dependents_deps.dev:0 +github.com/mkungla/actions-set-text-output, github.com/mkungla/aframe-resonance-audio-component,num_dependents_deps.dev:0 github.com/mkungla/bexp,num_dependents_deps.dev:0 github.com/mkungla/go-gitlab,num_dependents_deps.dev:0 @@ -821211,6 +836050,8 @@ github.com/mkxml/filesize-calculator,num_dependents_deps.dev:0 github.com/mkxml/react-update-helper, github.com/mkxzy/taobaoapi,num_dependents_deps.dev:0 github.com/mky-cyber/go-training,num_dependents_deps.dev:0 +github.com/mkyai/env-builder, +github.com/mkyai/zip-deploy, github.com/mkylemartin/essay_scorer, github.com/mkyung/chinese-telecode,num_dependents_deps.dev:0 github.com/mkyurchev/babel-plugin-transform-system-import-commonjs,num_dependents_deps.dev:2 @@ -821564,6 +836405,9 @@ github.com/mlfunston/node-red-contrib-broadlink-control,num_dependents_deps.dev: github.com/mlfunston/node-red-contrib-iata-bcbp,num_dependents_deps.dev:0 github.com/mlg-dev-rus/game-network-core-lib,num_dependents_deps.dev:0 github.com/mlg-lindou/akamai-edgeAuth-node,num_dependents_deps.dev:0 +github.com/mlg87/label-check-action, +github.com/mlg87/pr-reviewer-slack-notify-action, +github.com/mlg87/whitelist-domain-with-auth0-action, github.com/mlga/anywhere, github.com/mlga/protobuf3-models, github.com/mlga/schematics-proto3, @@ -821590,6 +836434,7 @@ github.com/mli/notedown, github.com/mliakos/text-extractor,num_dependents_deps.dev:0 github.com/mliarakos/lagom-js,num_dependents_deps.dev:114 github.com/mlibai/native.js,num_dependents_deps.dev:0 +github.com/mlibrary/deploy-to-kubernetes, github.com/mlibrary/lumberyard,num_dependents_deps.dev:0 github.com/mlichtblau/esper-language,num_dependents_deps.dev:0 github.com/mlichtblau/unicorn-adapter,num_dependents_deps.dev:0 @@ -821600,6 +836445,7 @@ github.com/mliebelt/pgn-writer, github.com/mliezun/grotsky,num_dependents_deps.dev:0 github.com/mlightner/engrel,num_dependents_deps.dev:0 github.com/mligor/hc,num_dependents_deps.dev:0 +github.com/mlilback/build-number, github.com/mlilius/js-dremio-sql-parser,num_dependents_deps.dev:0 github.com/mlimaloureiro/cli,num_dependents_deps.dev:0 github.com/mlimaloureiro/ec2scheduler, @@ -821913,6 +836759,7 @@ github.com/mlperf/training_results_v0.7,Google github.com/mlpinit/bootleg,num_dependents_deps.dev:0 github.com/mlpod/pickerUI, github.com/mlprajapati/atomic-react-comp,num_dependents_deps.dev:0 +github.com/mlqube/swarm-deploy-action, github.com/mlr-org/mlr,criticality_score:0.543410 github.com/mlr-org/mlr3,criticality_score:0.515550 github.com/mlraglin/DCiFR, @@ -821952,6 +836799,10 @@ github.com/mlsorensen/solaredge,num_dependents_deps.dev:0 github.com/mlsorensen/urtsi2,num_dependents_deps.dev:0 github.com/mlspec/githubactioncontexthelper, github.com/mlspec/mlspec-lib, +github.com/mlspec/mlspeclib-action-docker, +github.com/mlspec/mlspeclib-action-samples-package, +github.com/mlspec/mlspeclib-action-samples-process-data, +github.com/mlspec/mlspeclib-action-samples-train, github.com/mlsploit/mlsploit-py, github.com/mlssBin/plugnTest,num_dependents_deps.dev:0 github.com/mlswg/mls-implementations,num_dependents_deps.dev:0 @@ -821965,6 +836816,7 @@ github.com/mlucap/npm95,num_dependents_deps.dev:0 github.com/mlucap/owo-js,num_dependents_deps.dev:0 github.com/mlucascardoso/api-generator-cli,num_dependents_deps.dev:0 github.com/mlucascardoso/dotenv-json-complex,num_dependents_deps.dev:0 +github.com/mlucascardoso/git-flow-ci-cd-action, github.com/mlucascardoso/ui5-local-neo,num_dependents_deps.dev:0 github.com/mlucool/gulp-jsdoc3,num_dependents_deps.dev:18 github.com/mlucool/latency-monitor,num_dependents_deps.dev:436 @@ -822178,6 +837030,7 @@ github.com/mmacfadden/mutation-summary, github.com/mmach/justshareApi,num_dependents_deps.dev:0 github.com/mmach/justshare_components,num_dependents_deps.dev:0 github.com/mmachado53/color-replace-app-core,num_dependents_deps.dev:0 +github.com/mmachado53/google-play-next-version-code, github.com/mmachado53/wayak-pixels-selector,num_dependents_deps.dev:0 github.com/mmachatschek/caddy-supervisor,num_dependents_deps.dev:0 github.com/mmacheerpuppy/particles.js,num_dependents_deps.dev:0 @@ -822494,6 +837347,7 @@ github.com/mmcdole/gofeed,"criticality_score:0.423900,num_dependents_deps.dev:78 github.com/mmcdole/heyemoji,num_dependents_deps.dev:0 github.com/mmcelhan/df_fuzzy_merge, github.com/mmcelhan/us_calendar_source, +github.com/mmcesim/run-mmcesim-action, github.com/mmcfarland/ags-download,num_dependents_deps.dev:0 github.com/mmcglone/comp-check,num_dependents_deps.dev:0 github.com/mmcglone/comp-error,num_dependents_deps.dev:0 @@ -822668,6 +837522,7 @@ github.com/mmehdinasiri/react-datetime-picker,num_dependents_deps.dev:0 github.com/mmehedin/TextToVoice, github.com/mmeinardi-ganymede/sql-schema-builder, github.com/mmeinzer/chipate,num_dependents_deps.dev:0 +github.com/mmeisels/actions-email, github.com/mmeldo/townsquare-deck-helper,num_dependents_deps.dev:0 github.com/mmelean/lodown,num_dependents_deps.dev:0 github.com/mmelitzer/bpmn-js-exec,num_dependents_deps.dev:0 @@ -822696,6 +837551,9 @@ github.com/mmende/libphonenumber-geo-carrier,num_dependents_deps.dev:0 github.com/mmende/soundengine,num_dependents_deps.dev:0 github.com/mmende/spectro,num_dependents_deps.dev:0 github.com/mmendesas/walnutjs,num_dependents_deps.dev:0 +github.com/mmercan/actions-random-password-generator, +github.com/mmercan/actions-set-secret, +github.com/mmercan/actions-vulnerability-scanner, github.com/mmercan/ngx-datatable,num_dependents_deps.dev:0 github.com/mmercedes/sarama,num_dependents_deps.dev:0 github.com/mmercedes/slack,num_dependents_deps.dev:0 @@ -822755,6 +837613,7 @@ github.com/mmichaelb/gosharexserver_old,num_dependents_deps.dev:0 github.com/mmichaelb/protoc-gen-doc,num_dependents_deps.dev:0 github.com/mmichaelis/hamcrest-nextdeed,num_dependents_deps.dev:0 github.com/mmichailidis/AmqpRunner,num_dependents_deps.dev:0 +github.com/mmichailidis/sendgrid-mail-action, github.com/mmichelli/exifStream,num_dependents_deps.dev:0 github.com/mmichelli/sosi,num_dependents_deps.dev:0 github.com/mmichelsonIF/hearst_patterns_python, @@ -823037,6 +837896,7 @@ github.com/mmontagna/generic-encryptors, github.com/mmontagna/googleplay-api, github.com/mmontagna/nice-oom-daemon, github.com/mmontagna/zfs3backup, +github.com/mmontes11/diff-porcelain, github.com/mmontes11/echoperator,num_dependents_deps.dev:0 github.com/mmontes11/eslint-config-mmontes11-node,num_dependents_deps.dev:0 github.com/mmontes11/eslint-config-mmontes11-react,num_dependents_deps.dev:0 @@ -823065,6 +837925,7 @@ github.com/mmore500/opytional, github.com/mmore500/teeplot, github.com/mmorejon/microservices-docker-go-mongodb,"criticality_score:0.304820,num_dependents_deps.dev:0" github.com/mmorel-35/gojsondiff,num_dependents_deps.dev:0 +github.com/mmorenoregalado/action-branches-cleaner, github.com/mmoreti/agm-overlays,num_dependents_deps.dev:0 github.com/mmorga/generator-ramlapi,num_dependents_deps.dev:0 github.com/mmorga/grunt-json-schema-compose,num_dependents_deps.dev:0 @@ -823092,6 +837953,7 @@ github.com/mmouterde/grunt-madge, github.com/mmouterde/grunt-swagger-docs,num_dependents_deps.dev:0 github.com/mmouterde/mocha-sonarqube-reporter,num_dependents_deps.dev:0 github.com/mmouterde/node-spelling,num_dependents_deps.dev:0 +github.com/mmoyaferrer/set-github-variable, github.com/mmozuras/bootstrapped-socket-express,num_dependents_deps.dev:0 github.com/mmp-8001/subscene_api, github.com/mmp/pbrt-v3,criticality_score:0.423880 @@ -823137,6 +837999,7 @@ github.com/mmraff/untar-to-memory,num_dependents_deps.dev:0 github.com/mmraff/windows-knownfolders,num_dependents_deps.dev:0 github.com/mmraff/windows-localgroups,num_dependents_deps.dev:0 github.com/mmraff/windows-users,num_dependents_deps.dev:0 +github.com/mmrakt/update-chrome-extension-version-action, github.com/mmrath/gobase,num_dependents_deps.dev:0 github.com/mmrath/pure_decimal,num_dependents_deps.dev:0 github.com/mmrobins/graphiql-workspace,num_dependents_deps.dev:0 @@ -823281,6 +838144,7 @@ github.com/mnadel/pm5-book,num_dependents_deps.dev:0 github.com/mnaeem95/quokka-plugin-expect,num_dependents_deps.dev:0 github.com/mnahinkhan/hgfind, github.com/mnahinkhan/rnpfind, +github.com/mnahinkhan/writegood-action, github.com/mnahkies/ng-qrcode, github.com/mnahkies/node-etl-influx,num_dependents_deps.dev:0 github.com/mnahkies/node-storage-shim,num_dependents_deps.dev:12 @@ -823288,6 +838152,7 @@ github.com/mnahkies/persistent-storage,num_dependents_deps.dev:0 github.com/mnakhaev/golang-practice,num_dependents_deps.dev:0 github.com/mnakhaev/lenslocked.com,num_dependents_deps.dev:0 github.com/mnannola/ember-cli-aframe, +github.com/mnao305/chrome-extension-upload, github.com/mnao305/renovate-config, github.com/mnao305/vue-social-share-component,num_dependents_deps.dev:0 github.com/mnapoli/FrontYAML,criticality_score:0.373840 @@ -823310,7 +838175,9 @@ github.com/mnatsu31/flakestore,num_dependents_deps.dev:0 github.com/mnatsu31/superagent-jsonpx,num_dependents_deps.dev:0 github.com/mnauw/git-remote-hg, github.com/mnavada/mmiIsochrone, +github.com/mnavarrocarter/authorize-aws-security-group-ingress-action, github.com/mnavarrocarter/dinamico,num_dependents_deps.dev:0 +github.com/mnavarrocarter/packagist-update, github.com/mnb3000/AntTelegram,num_dependents_deps.dev:0 github.com/mnb3000/node-telegram-keyboard-wrapper,num_dependents_deps.dev:0 github.com/mnbb/cordova-plugin-fcm-with-translations, @@ -823333,6 +838200,7 @@ github.com/mnckapilan/rosetta_search, github.com/mnconfig/javascript,num_dependents_deps.dev:0 github.com/mnconsulting/vcs-getter,num_dependents_deps.dev:0 github.com/mnconsulting/vcs-hosted-k8s-helm-installer,num_dependents_deps.dev:0 +github.com/mncorreia/json-to-variables, github.com/mncrff/grunt-azure-deploy,num_dependents_deps.dev:0 github.com/mndarren/Speedup-Work-Lib, github.com/mndrake/euler-math, @@ -823498,6 +838366,8 @@ github.com/mnishant04/sravz,num_dependents_deps.dev:0 github.com/mnishizawa/go-wufoo-api-client,num_dependents_deps.dev:0 github.com/mnislam01/test_timer, github.com/mnit-rtmc/ntcip,num_dependents_deps.dev:0 +github.com/mnival/ssh-config-action, +github.com/mnival/ssh-remote-commands-action, github.com/mnixry/nonebot-plugin-filehost, github.com/mnixry/nonebot-plugin-gocqhttp, github.com/mnixry/nonebot-plugin-guild-patch, @@ -823519,6 +838389,7 @@ github.com/mnlwldr/ssh-merge-config,num_dependents_deps.dev:0 github.com/mnm1001/ex-table-column,num_dependents_deps.dev:0 github.com/mnm1992/iOSRatingScraper,num_dependents_deps.dev:0 github.com/mnm1992/iOSReviewFetcher,num_dependents_deps.dev:0 +github.com/mnmandahalf/check-ecr-image-exists, github.com/mnmelo/lazy_import, github.com/mnmkng/travis-test,num_dependents_deps.dev:0 github.com/mnmlstme/patternbook,num_dependents_deps.dev:0 @@ -823607,11 +838478,13 @@ github.com/mnpk/push-stars,num_dependents_deps.dev:0 github.com/mnpk/testbot,num_dependents_deps.dev:0 github.com/mnpopcenter/evernote-jeeves,num_dependents_deps.dev:0 github.com/mnpopcenter/stats_package_syntax_file_generator,num_dependents_deps.dev:0 +github.com/mnrendra/auto-nia, github.com/mnrendra/bino, github.com/mnrendra/include-css,num_dependents_deps.dev:0 github.com/mnrendra/lssync,num_dependents_deps.dev:0 github.com/mnrendra/npmVersion,num_dependents_deps.dev:0 github.com/mnrendra/rendra,num_dependents_deps.dev:0 +github.com/mnrendra/sign-commit, github.com/mnrgreg/homebridge-paradox-security-system,num_dependents_deps.dev:0 github.com/mnshkv/react-native-popup-navigation,num_dependents_deps.dev:0 github.com/mnsht/gradient-path,num_dependents_deps.dev:0 @@ -823740,6 +838613,7 @@ github.com/mo9mo9study/discord.db, github.com/moJiXiang/angular-pluggable, github.com/moT01/react-calendar-heatmap,num_dependents_deps.dev:0 github.com/moa-modules/moa-plugin-wechat,num_dependents_deps.dev:0 +github.com/moaabid/go-github-action, github.com/moaazsidat/plygrnd,num_dependents_deps.dev:0 github.com/moaazsidat/react-native-qrcode-scanner,"criticality_score:0.482250,num_dependents_deps.dev:0" github.com/moab-bot/jitools, @@ -823791,6 +838665,7 @@ github.com/moajs/rate-cache,num_dependents_deps.dev:0 github.com/moajs/res.api,num_dependents_deps.dev:0 github.com/moajs/wechat-share-express-middleware,num_dependents_deps.dev:0 github.com/moak/dotme,num_dependents_deps.dev:0 +github.com/moalamri/delete-action-workflow-runs, github.com/moaland/moaland-frontend,num_dependents_deps.dev:0 github.com/moallemi/gradle-advanced-build-version,num_dependents_deps.dev:0 github.com/moallemi/kotlin-date-extensions,num_dependents_deps.dev:0 @@ -823826,6 +838701,7 @@ github.com/moarwick/react-mt-svg-lines,num_dependents_deps.dev:0 github.com/moarwick/react-super-styled,num_dependents_deps.dev:0 github.com/moarwick/redux-easy-forms,num_dependents_deps.dev:0 github.com/moas/rpcviaredis, +github.com/moatazeldebsy/sauce-labs-app-automate-action, github.com/moatazelmasry2/softether.js,num_dependents_deps.dev:0 github.com/moatorres/typetags,num_dependents_deps.dev:0 github.com/moaxaca/async-redis,num_dependents_deps.dev:60 @@ -823850,6 +838726,7 @@ github.com/mob-sakai/git-snapshot,num_dependents_deps.dev:0 github.com/mob-sakai/ui,num_dependents_deps.dev:0 github.com/mob-sakai/unity-activate,num_dependents_deps.dev:0 github.com/mob-sakai/unity-changeset,num_dependents_deps.dev:0 +github.com/mob-sakai/unity-changeset-action, github.com/mob35/mob-calarea,num_dependents_deps.dev:0 github.com/mob35/nodetextbaht,num_dependents_deps.dev:0 github.com/mob41/broadlink-java-api,num_dependents_deps.dev:0 @@ -823865,6 +838742,7 @@ github.com/mobalt/pipeline-runner, github.com/mobarski/thorvald,num_dependents_deps.dev:0 github.com/mobayen/sureCuts,num_dependents_deps.dev:0 github.com/mobazha/openbazaar-go,num_dependents_deps.dev:0 +github.com/mobb-dev/action, github.com/mobbexco/nodejs, github.com/mobbit-frontend/generator-mobbit,num_dependents_deps.dev:0 github.com/mobdata/classification-banner,num_dependents_deps.dev:0 @@ -823985,6 +838863,7 @@ github.com/mobiledataanywhere/zlogger,num_dependents_deps.dev:0 github.com/mobiledev-111-118/soyfinance-sdk,num_dependents_deps.dev:0 github.com/mobiledev-111-118/soyfinance-uikit-test,num_dependents_deps.dev:0 github.com/mobiledevsistemasgalileo/orapool,num_dependents_deps.dev:0 +github.com/mobiledgex/deploy-app-action, github.com/mobiledgex/edge-mutiplay-node-server,num_dependents_deps.dev:0 github.com/mobiledgex/edgebox, github.com/mobileeventguide/ckeditor-base64image,num_dependents_deps.dev:0 @@ -824166,6 +839045,7 @@ github.com/mobizerg/nest-nodemailer,num_dependents_deps.dev:0 github.com/mobizerg/nest-sendgrid-mail,num_dependents_deps.dev:0 github.com/moblabpy/moblabpy, github.com/moble/MatchedFiltering, +github.com/moble/github-tag-action, github.com/moble/h5py_cache, github.com/moble/out_of_core_fft, github.com/moble/quaternion,criticality_score:0.398590 @@ -824302,6 +839182,7 @@ github.com/mocha-community/json-file-reporter,num_dependents_deps.dev:0 github.com/mocha-community/multi-reporter,num_dependents_deps.dev:0 github.com/mocha-community/renovate-config,num_dependents_deps.dev:0 github.com/mocha-parallel/mocha-parallel-tests,num_dependents_deps.dev:10 +github.com/mochaaP/neofetch-action, github.com/mochajs/contributors,num_dependents_deps.dev:0 github.com/mochajs/eslint-config-mocha,num_dependents_deps.dev:0 github.com/mochajs/karma-mocha,num_dependents_deps.dev:0 @@ -824503,6 +839384,7 @@ github.com/mockitoplus/mockitoplus,num_dependents_deps.dev:0 github.com/mockk/mockk,"criticality_score:0.564670,num_dependents_deps.dev:6120" github.com/mockko/livereload,num_dependents_deps.dev:4 github.com/mockoon/cli,num_dependents_deps.dev:0 +github.com/mockoon/cli-action, github.com/mockoon/commons,num_dependents_deps.dev:0 github.com/mockoon/commons-server,num_dependents_deps.dev:0 github.com/mockoon/mockoon,criticality_score:0.466850 @@ -824583,6 +839465,7 @@ github.com/modakanalytics/bigquery.almaren,num_dependents_deps.dev:0 github.com/modakanalytics/http.almaren,num_dependents_deps.dev:0 github.com/modakanalytics/jdbc.almaren,num_dependents_deps.dev:0 github.com/modakanalytics/neo4j.almaren,num_dependents_deps.dev:0 +github.com/modal-dsl/modal-action, github.com/modalnodes/mn-map,num_dependents_deps.dev:0 github.com/modamodamoda/StatiCTON,num_dependents_deps.dev:0 github.com/modamodamoda/curls,num_dependents_deps.dev:0 @@ -824621,8 +839504,10 @@ github.com/modeista/node-modeista-api-client,num_dependents_deps.dev:0 github.com/model-bakers/model_bakery,criticality_score:0.466080 github.com/model-card/model-card, github.com/model-checking/cbmc-viewer, +github.com/model-checking/kani-github-action, github.com/model-io/model.io, github.com/model-lib/paper-element,num_dependents_deps.dev:0 +github.com/model/static-web-apps-deploy, github.com/model4s/model4s,num_dependents_deps.dev:0 github.com/modelab/react-radial,num_dependents_deps.dev:0 github.com/modelair/modelair,num_dependents_deps.dev:0 @@ -824672,6 +839557,7 @@ github.com/modep-ai/modep-client, github.com/moderepo/node-device-lib,num_dependents_deps.dev:0 github.com/modern-classic/factor-plugin-storage-azure,num_dependents_deps.dev:0 github.com/modern-dev/daylight,num_dependents_deps.dev:0 +github.com/modern-dev/ftp-mirror, github.com/modern-dev/jsbn,num_dependents_deps.dev:0 github.com/modern-dev/jslong,num_dependents_deps.dev:0 github.com/modern-dev/namegen,num_dependents_deps.dev:0 @@ -824759,6 +839645,7 @@ github.com/moderntribe/bigcommerce-api-js,num_dependents_deps.dev:0 github.com/moderntribe/postcss-multi-selector-replace,num_dependents_deps.dev:0 github.com/moderntv/cadre,num_dependents_deps.dev:0 github.com/moderntv/errors_bundle,num_dependents_deps.dev:0 +github.com/modernweb-dev/check-html-links-action, github.com/modernweb-dev/rocket,num_dependents_deps.dev:70 github.com/modernweb-dev/storybook-prebuilt,num_dependents_deps.dev:2 github.com/modernweb-dev/web,"criticality_score:0.582190,num_dependents_deps.dev:744" @@ -825188,6 +840075,7 @@ github.com/modulz/modulz-css,num_dependents_deps.dev:0 github.com/modulz/prosemirror-history,num_dependents_deps.dev:0 github.com/modulz/radix,num_dependents_deps.dev:96 github.com/modulz/stitches,"criticality_score:0.420880,num_dependents_deps.dev:274" +github.com/modum-io/aws-ecs-deploy-service-by-template, github.com/modum-io/modblue,num_dependents_deps.dev:0 github.com/modum-io/node-bluetooth-hci-socket, github.com/modusbox/datasonnet-mapper,num_dependents_deps.dev:14 @@ -825337,6 +840225,7 @@ github.com/moeui/storage,num_dependents_deps.dev:0 github.com/moevis/dsn-parser, github.com/moevis/py2ifttt, github.com/moevm/gui-1h2018-28, +github.com/moevm/pull-requests-checker, github.com/moewiz/go-microservice,num_dependents_deps.dev:0 github.com/moews/dredge, github.com/moews/gaussbock, @@ -825393,6 +840282,8 @@ github.com/moficodes/restful-go-api,num_dependents_deps.dev:0 github.com/mofishteam/mofish-common-tool,num_dependents_deps.dev:0 github.com/moflo/parse-mongodb-export,num_dependents_deps.dev:0 github.com/moflo/tessel-digole12864,num_dependents_deps.dev:0 +github.com/mofmof/check-for-deployment-omissions, +github.com/mofmof/send-awesome-code-to-slack-action, github.com/mofodox/go-unit-test-demo,num_dependents_deps.dev:0 github.com/mofodox/gocicddemo,num_dependents_deps.dev:0 github.com/mofodox/gohellorun4,num_dependents_deps.dev:0 @@ -825501,6 +840392,7 @@ github.com/mogaika/god_of_war_browser,num_dependents_deps.dev:0 github.com/moge233/cc3220sf,num_dependents_deps.dev:0 github.com/moge233/cc3220sf-hal,num_dependents_deps.dev:0 github.com/mogebingxue/ytframework,num_dependents_deps.dev:0 +github.com/mogeko/latest-version, github.com/mogelbrod/apply-loader,num_dependents_deps.dev:20 github.com/mogelbrod/await-release,num_dependents_deps.dev:0 github.com/mogelbrod/widont,num_dependents_deps.dev:0 @@ -825655,6 +840547,7 @@ github.com/mohamedemad4/daisy,num_dependents_deps.dev:0 github.com/mohamedfasil/browserstorage-ttl, github.com/mohamedfasil/chi-square-p-value,num_dependents_deps.dev:0 github.com/mohamedfasil/cropper-react,num_dependents_deps.dev:0 +github.com/mohamedfasil/jira-release-notes, github.com/mohamedfasil/react-goals,num_dependents_deps.dev:0 github.com/mohamedfawzy/tgpl,num_dependents_deps.dev:0 github.com/mohamedhayibor/callback-chainer,num_dependents_deps.dev:0 @@ -825698,6 +840591,7 @@ github.com/mohammad-khooie/sequelize-easy-migrator,num_dependents_deps.dev:0 github.com/mohammad-quanit/go-rest-app,num_dependents_deps.dev:0 github.com/mohammad0-0ahmad/express-static-router,num_dependents_deps.dev:0 github.com/mohammad0-0ahmad/mongoose-auto-ts,num_dependents_deps.dev:0 +github.com/mohammad22/action-remote-github-app-token, github.com/mohammad3020/django-zibal, github.com/mohammad76/ibackupper, github.com/mohammadFeiz/aio-table,num_dependents_deps.dev:0 @@ -825775,6 +840669,7 @@ github.com/mohammdsmadi/react-native-image-slider,num_dependents_deps.dev:0 github.com/mohammdsmadi/react-native-swipeable,num_dependents_deps.dev:0 github.com/mohammed-Emad/particle-swarm-optimized-clustering, github.com/mohammed-almassri/api-route-name,num_dependents_deps.dev:0 +github.com/mohammed-atif/firebase-publish-react, github.com/mohammed-ayash/bad-words-ar,num_dependents_deps.dev:0 github.com/mohammed-io/frappe-gantt-react,num_dependents_deps.dev:0 github.com/mohammed-softordi/bootstrap-treeview,num_dependents_deps.dev:0 @@ -825796,6 +840691,7 @@ github.com/mohammedessehemy/learning-go,num_dependents_deps.dev:0 github.com/mohammedgqudah/Hyper.Mern,num_dependents_deps.dev:0 github.com/mohammedi-haroune/speedtest-monitor, github.com/mohammedibrahim/react-native-paytabs,num_dependents_deps.dev:0 +github.com/mohammedismayil/voilagithubaction_js, github.com/mohammedmanssour/fetch-http-wrapper,num_dependents_deps.dev:0 github.com/mohammedmanssour/ohdear-js-sdk,num_dependents_deps.dev:0 github.com/mohammedmatar/localize-router,num_dependents_deps.dev:0 @@ -825805,6 +840701,7 @@ github.com/mohammedriyaz/ngx-translate-mark-translatable-strings,num_dependents_ github.com/mohammedsafdari/ms-modal-library,num_dependents_deps.dev:0 github.com/mohammedtalhas/gocrud,num_dependents_deps.dev:0 github.com/mohammedtalhas/golang,num_dependents_deps.dev:0 +github.com/mohammedtigrini1/federated-graphql-inspector-action, github.com/mohammedubaid/ng2-image-hover-zoom,num_dependents_deps.dev:0 github.com/mohammedzamakhan/ngx-loadable,num_dependents_deps.dev:0 github.com/mohammedzee1000/ci-firewall,num_dependents_deps.dev:0 @@ -825812,6 +840709,7 @@ github.com/mohammedzee1000/standup,num_dependents_deps.dev:0 github.com/mohammedzihan/liveliness-detector,num_dependents_deps.dev:0 github.com/mohammer5/node-kraken-ws,num_dependents_deps.dev:0 github.com/mohamnag/broccoli-splitter,num_dependents_deps.dev:0 +github.com/mohan-13/issue-closed-notification-action, github.com/mohan-cao/owoify-js,num_dependents_deps.dev:0 github.com/mohan-chinnappan-n/sfbulk2, github.com/mohan-chinnappan-n/yeoman-generator-sfdx,num_dependents_deps.dev:0 @@ -825879,6 +840777,7 @@ github.com/mohanson/pywasm, github.com/mohanson/rotatefile,num_dependents_deps.dev:0 github.com/mohanson/tcp_tunnel,num_dependents_deps.dev:0 github.com/mohanson/tictoc,num_dependents_deps.dev:0 +github.com/mohanty-arpit/myfirst-github-action, github.com/mohanwu/eigenpip, github.com/moharnadreza/react-toast,num_dependents_deps.dev:0 github.com/moharnadreza/yoid,num_dependents_deps.dev:0 @@ -826041,6 +840940,7 @@ github.com/mohdrashid/socketchat, github.com/mohdsaqibhbi/How-to-build-Python-Package, github.com/mohdsaqibhbi/easy_images, github.com/mohdsaquib-cloud/auto-update-electron, +github.com/mohdshnz/ifttt-action, github.com/mohdtayyab/rbpf,num_dependents_deps.dev:0 github.com/mohdtorabi/lotide,num_dependents_deps.dev:0 github.com/mohdwaseem/ng-multi-select,num_dependents_deps.dev:0 @@ -826110,6 +841010,7 @@ github.com/mohism-framework/sloty, github.com/mohism-framework/utils,num_dependents_deps.dev:32 github.com/mohit-thakur-721/proator, github.com/mohit2152sharma/aqad-utilities, +github.com/mohit2152sharma/rewiser-gpt, github.com/mohit23x/react-native-sugar-style,num_dependents_deps.dev:0 github.com/mohit810/covi-helper-backend-code,num_dependents_deps.dev:0 github.com/mohit810/hackerrank-golang-solutions,num_dependents_deps.dev:0 @@ -826149,6 +841050,8 @@ github.com/mohitmayank/gst-states,num_dependents_deps.dev:0 github.com/mohitmayank/micro-helpers,num_dependents_deps.dev:0 github.com/mohitmilindthakur/jyotish,num_dependents_deps.dev:0 github.com/mohitmutha/react-tweet,num_dependents_deps.dev:0 +github.com/mohitnayar123/power-bi-utils, +github.com/mohitnayar123/power-bi-utils-assign-permissions-to-dataset, github.com/mohitp-cci/gitactions-demo,num_dependents_deps.dev:0 github.com/mohitp-cci/sementic-versioning-demo-2,num_dependents_deps.dev:0 github.com/mohitp98/getting-started-with-go,num_dependents_deps.dev:0 @@ -826282,6 +841185,7 @@ github.com/mohuacong/wic,num_dependents_deps.dev:0 github.com/mohuishou/blog-code,num_dependents_deps.dev:0 github.com/mohuishou/go-design-pattern,num_dependents_deps.dev:0 github.com/mohuishou/mohuishou,num_dependents_deps.dev:0 +github.com/mohuishou/notion-blog-actions, github.com/mohuishou/protoc-gen-go-gin,num_dependents_deps.dev:0 github.com/mohuishou/utools,num_dependents_deps.dev:0 github.com/mohuk/angular2-keycloak,num_dependents_deps.dev:0 @@ -826318,11 +841222,13 @@ github.com/moia-dev/scynamo,num_dependents_deps.dev:0 github.com/moia-dev/streamee,num_dependents_deps.dev:0 github.com/moia-dev/teleproto,num_dependents_deps.dev:0 github.com/moia-oss/aws-cfg-generator,num_dependents_deps.dev:0 +github.com/moia-oss/aws-codepipeline-trigger, github.com/moia-oss/bastion-host-forward,num_dependents_deps.dev:0 github.com/moia-oss/eslint-prettier-typescript-config,num_dependents_deps.dev:0 github.com/moia-oss/go-deploy-cfn,num_dependents_deps.dev:0 github.com/moia-oss/itkit,num_dependents_deps.dev:0 github.com/moia-oss/scynamo,num_dependents_deps.dev:0 +github.com/moia-oss/setup-eksctl, github.com/moiamoia/LoginInit,num_dependents_deps.dev:0 github.com/moiamoia/Uploader, github.com/moiamoia/dbfac,num_dependents_deps.dev:0 @@ -826352,6 +841258,7 @@ github.com/moigagoo/cliar, github.com/moigonzalez/local-perf-cli, github.com/moigonzalez/parrotify-cli,num_dependents_deps.dev:0 github.com/moigonzalez/psi-local-cli,num_dependents_deps.dev:0 +github.com/moikot/chart-publish-action, github.com/moikot/metalogin,num_dependents_deps.dev:0 github.com/moilandtoil/sealab-application,num_dependents_deps.dev:0 github.com/moilandtoil/sealab-postgres-triggers,num_dependents_deps.dev:0 @@ -826801,9 +841708,12 @@ github.com/mokeen/xdf-page,num_dependents_deps.dev:0 github.com/mokejp/holidays_jp, github.com/mokele/template-configuration,num_dependents_deps.dev:0 github.com/mokeoo/gitlab-webhook,num_dependents_deps.dev:0 +github.com/mokeseven7/buildphp, github.com/mokeseven7/gridsome-transformer-jsonapi,num_dependents_deps.dev:0 github.com/mokeseven7/laughing-tribble,num_dependents_deps.dev:0 +github.com/mokeseven7/pull-request, github.com/mokeseven7/serverless-website,num_dependents_deps.dev:0 +github.com/mokeseven7/service-test, github.com/mokesmokes/backo,num_dependents_deps.dev:53092 github.com/mokevnin/dotfiles,criticality_score:0.342660 github.com/mokeyish/QuickGraph.ts,num_dependents_deps.dev:0 @@ -826819,6 +841729,7 @@ github.com/mokha/corpona, github.com/mokha/semantics, github.com/mokhae/rtusensor,num_dependents_deps.dev:0 github.com/mokhan/minbox,num_dependents_deps.dev:0 +github.com/moki/markdown-translation-gha, github.com/moki/mokui,num_dependents_deps.dev:22 github.com/moki/react-component-boilerplate,num_dependents_deps.dev:0 github.com/moki0084/regular-mixin-redux,num_dependents_deps.dev:0 @@ -826849,6 +841760,7 @@ github.com/mokko-labs/react-native-swipeup-scrollview,num_dependents_deps.dev:0 github.com/moklick/cctv-everywhere,num_dependents_deps.dev:0 github.com/moklick/frontend-stuff,criticality_score:0.335760 github.com/moklick/generator-leaflet,num_dependents_deps.dev:0 +github.com/mokmok-dev/delete-actions-cache, github.com/mokojs/change-saved,num_dependents_deps.dev:0 github.com/mokojs/defaults,num_dependents_deps.dev:0 github.com/mokojs/validators,num_dependents_deps.dev:0 @@ -827029,6 +841941,8 @@ github.com/molenzwiebel/basie,num_dependents_deps.dev:0 github.com/molenzwiebel/evenin,num_dependents_deps.dev:0 github.com/molesoft/flat-er,num_dependents_deps.dev:0 github.com/molesoft/yaml-blaster,num_dependents_deps.dev:0 +github.com/moletti/molecule-action, +github.com/moletti/semantic-release-action, github.com/moleview/moleview, github.com/molflow/gofes,num_dependents_deps.dev:0 github.com/molforp/geon,num_dependents_deps.dev:0 @@ -827176,6 +842090,7 @@ github.com/moll/node-selenium-dom,num_dependents_deps.dev:0 github.com/moll/node-syslogh,num_dependents_deps.dev:0 github.com/moll/sh-chnode, github.com/moll/soul,num_dependents_deps.dev:0 +github.com/molleer/blame-alert, github.com/molleer/passport-gamma,num_dependents_deps.dev:0 github.com/molleindustria/p5.play,"criticality_score:0.309970,num_dependents_deps.dev:0" github.com/mollerdaniel/go-pingdom,num_dependents_deps.dev:0 @@ -827392,6 +842307,7 @@ github.com/momentfree/node-red-contrib-nextcloud-info,num_dependents_deps.dev:0 github.com/momentfree/node-red-contrib-process-list,num_dependents_deps.dev:0 github.com/momentfree/node-red-contrib-qrcode-generator,num_dependents_deps.dev:0 github.com/momenthana/school-info,num_dependents_deps.dev:0 +github.com/momentic-ai/run-tests, github.com/momentiris/hooks,num_dependents_deps.dev:0 github.com/momentohq/client-sdk-python, github.com/momentoscope/hextof-processor, @@ -827513,6 +842429,7 @@ github.com/momyc/pyramid-breve, github.com/momzor/cordova-brother-label-printer,num_dependents_deps.dev:0 github.com/mon/ifstools, github.com/mon/kbinxml, +github.com/mon231/apkpatcher, github.com/mon4ter/aiostaticmap, github.com/mon4ter/asyncmetrics, github.com/mon4ter/cuborg, @@ -827649,6 +842566,7 @@ github.com/monceeef/react-daterange-picker,num_dependents_deps.dev:0 github.com/moncho/device-init,num_dependents_deps.dev:0 github.com/moncho/dry,"criticality_score:0.402030,num_dependents_deps.dev:0" github.com/moncho/gobot,num_dependents_deps.dev:0 +github.com/monclubsportif/web-linter, github.com/monda00/awgo-sample-alfred-workflow,num_dependents_deps.dev:0 github.com/mondadori-digital/react-native-jointag, github.com/mondadori-digital/react-native-ump,num_dependents_deps.dev:0 @@ -827684,12 +842602,16 @@ github.com/mondeja/mkdocs-mdpo-plugin, github.com/mondeja/pgdoc-datatype-parser, github.com/mondeja/polf,num_dependents_deps.dev:2 github.com/mondeja/potojson, +github.com/mondeja/pr-linked-issues-action, github.com/mondeja/pre-commit-hooks, github.com/mondeja/pre-commit-po-hooks, github.com/mondeja/pymarketcap, github.com/mondeja/pytest-blender, +github.com/mondeja/remove-labels-gh-action, github.com/mondeja/repo-stream, github.com/mondeja/simple-icons-review-utils,num_dependents_deps.dev:0 +github.com/mondeja/solaris-vm-action, +github.com/mondeja/strip-gh-theme-links, github.com/mondeja/svg-path-bbox,num_dependents_deps.dev:10 github.com/mondeja/svg-path-segments,num_dependents_deps.dev:0 github.com/mondeja/waves, @@ -827702,6 +842624,7 @@ github.com/mondiniit/hello-gitmanu,num_dependents_deps.dev:0 github.com/mondo-mob/gae-node-nestjs,num_dependents_deps.dev:0 github.com/mondo-mob/generator-gae-node-nestjs,num_dependents_deps.dev:0 github.com/mondobrain/lupa,num_dependents_deps.dev:0 +github.com/mondoohq/actions, github.com/mondora-labs/meteor-wapi,num_dependents_deps.dev:0 github.com/mondora-labs/meteor-wapi-collection,num_dependents_deps.dev:0 github.com/mondora-labs/tcomb-conditional-forms,num_dependents_deps.dev:0 @@ -827720,6 +842643,7 @@ github.com/mondora/google-tag-manager-react-router-integrator, github.com/mondora/natsrouter,num_dependents_deps.dev:0 github.com/mondora/react-native-storage-wrapper,num_dependents_deps.dev:0 github.com/mondora/universal-thrift,num_dependents_deps.dev:0 +github.com/mondospedizioni/satis-build, github.com/mondosports/cordova-smart-adserver,num_dependents_deps.dev:0 github.com/mondragon365/go-api-basic-sample,num_dependents_deps.dev:0 github.com/mondrian-scwgs/csverve, @@ -828063,6 +842987,7 @@ github.com/mongodb-utils/oid-unique,num_dependents_deps.dev:0 github.com/mongodb-utils/oids-equal,num_dependents_deps.dev:0 github.com/mongodb/amboy,num_dependents_deps.dev:1 github.com/mongodb/anser,num_dependents_deps.dev:2 +github.com/mongodb/atlas-github-action, github.com/mongodb/atlas-osb,num_dependents_deps.dev:0 github.com/mongodb/bson-ruby,num_dependents_deps.dev:1262 github.com/mongodb/bson-rust,num_dependents_deps.dev:68 @@ -828128,6 +843053,7 @@ github.com/mongolab/mongoctl, github.com/mongolab/mongodb-uri-node,num_dependents_deps.dev:536 github.com/mongolass/mongolass,num_dependents_deps.dev:2 github.com/mongolass/mongolass-plugin-populate,num_dependents_deps.dev:14 +github.com/mongolyy/github-vulnerability-alert-list, github.com/mongomapper/mongomapper,criticality_score:0.520810 github.com/mongomock/mongomock,criticality_score:0.505120 github.com/mongoosastic/mongoosastic,"criticality_score:0.455530,num_dependents_deps.dev:0" @@ -828255,6 +843181,9 @@ github.com/monk-ee/sphinxcontrib-cloudformationyaml, github.com/monk-middlewares/monk-middleware-dereference,num_dependents_deps.dev:0 github.com/monk151947/infusion,num_dependents_deps.dev:0 github.com/monk2294/chart-lod,num_dependents_deps.dev:0 +github.com/monkb/hello-github-action, +github.com/monkb/jira-extract-issue-keys, +github.com/monkb/parse-jira-issue-keys-from-git-commits-when-pushed, github.com/monkberry/directives,num_dependents_deps.dev:0 github.com/monkberry/events,num_dependents_deps.dev:0 github.com/monkberry/monkberrify,num_dependents_deps.dev:0 @@ -828291,7 +843220,9 @@ github.com/monkey92t/redis,num_dependents_deps.dev:0 github.com/monkeyChuck/dva-native,num_dependents_deps.dev:0 github.com/monkeyDledger/cordova-plugin-screenrecord,num_dependents_deps.dev:0 github.com/monkeyWangs/doubanMovie-SSR,num_dependents_deps.dev:0 +github.com/monkeyWie/get-latest-release, github.com/monkeyWie/google-translate-api,num_dependents_deps.dev:0 +github.com/monkeyWie/maven-nexus-release, github.com/monkeyWie/proxyee,"criticality_score:0.384930,num_dependents_deps.dev:0" github.com/monkeyanator/tronner,num_dependents_deps.dev:0 github.com/monkeyandres/animeflv-scrapper,num_dependents_deps.dev:0 @@ -828341,6 +843272,7 @@ github.com/monkeysecurity/iampoliciesgonewild, github.com/monkeysforever/Mbedder, github.com/monkeysuffrage/nodekogiri,num_dependents_deps.dev:0 github.com/monkeythunder91/AU_atomicunit, +github.com/monkeytype-hub/monkeytype-readme, github.com/monkeywie/docker-web-terminal,num_dependents_deps.dev:0 github.com/monkeywie/gopeed-core,num_dependents_deps.dev:0 github.com/monkeywithawrench/hubot-ultimaker3-controller,num_dependents_deps.dev:0 @@ -828375,6 +843307,7 @@ github.com/monkybrain/monky-tools,num_dependents_deps.dev:0 github.com/monkybrain/pseudoscript,num_dependents_deps.dev:0 github.com/monkybrain/swish-payment,num_dependents_deps.dev:0 github.com/monkybrain/unicodify,num_dependents_deps.dev:0 +github.com/monlor/bark-action, github.com/monmanuela/reflective_listening, github.com/monmaru/go-linq,num_dependents_deps.dev:0 github.com/monmaru/handler,num_dependents_deps.dev:0 @@ -828383,6 +843316,7 @@ github.com/monmohan/samltools,num_dependents_deps.dev:0 github.com/monmush/react-simple-scheduler,num_dependents_deps.dev:0 github.com/monnetproject/bliss,num_dependents_deps.dev:12 github.com/monnetproject/framework,num_dependents_deps.dev:0 +github.com/mono-chrome/GPTReviewWorkflow, github.com/mono-company/bedrock,num_dependents_deps.dev:0 github.com/mono-company/bedrock-cli,num_dependents_deps.dev:0 github.com/mono-company/jungle-css, @@ -828507,6 +843441,7 @@ github.com/monoku/cordova-plugin-applepay,num_dependents_deps.dev:0 github.com/monoku/cordova-plugin-applepay-stripe, github.com/monoku/react-native-magtek,num_dependents_deps.dev:0 github.com/monoku/reactive-storage,num_dependents_deps.dev:0 +github.com/monoku/sync-branches-pr, github.com/monolambda/eslint-config,num_dependents_deps.dev:0 github.com/monolambda/node-s3-client,num_dependents_deps.dev:0 github.com/monolambda/s3, @@ -828596,6 +843531,10 @@ github.com/monopix/react-sharp-loader, github.com/monoplasty/vue-monoplasty-slide-verify,num_dependents_deps.dev:0 github.com/monopole/kustomize,num_dependents_deps.dev:0 github.com/monopole/mdrip,num_dependents_deps.dev:0 +github.com/monopolis-cloud/finish-monode-rollout, +github.com/monopolis-cloud/reconfigure-repo, +github.com/monopolis-cloud/start-monode-rollout, +github.com/monoposer/repo-trending-action, github.com/monora/rgl,"criticality_score:0.458400,num_dependents_deps.dev:400" github.com/monorepo-lab/bundle,num_dependents_deps.dev:0 github.com/monorepo-lab/mono-fixed,num_dependents_deps.dev:0 @@ -828675,6 +843614,12 @@ github.com/monrealis/skaitvardziai,num_dependents_deps.dev:0 github.com/monroy95/nit_dpi_validator, github.com/monrus/react-emitter,num_dependents_deps.dev:0 github.com/monry/accessor-utility-core,num_dependents_deps.dev:0 +github.com/monry/actions-add-issue-to-project, +github.com/monry/actions-delete-issue-from-project, +github.com/monry/actions-get-issue-id, +github.com/monry/actions-get-project-id, +github.com/monry/actions-get-project-item-id, +github.com/monry/actions-upm-publish, github.com/monry/canvas-resizer,num_dependents_deps.dev:0 github.com/monry/game-object-extension-component,num_dependents_deps.dev:0 github.com/mons54/dobble-generator,num_dependents_deps.dev:0 @@ -828699,6 +843644,8 @@ github.com/monsoonco/ember-cli-sift-and-list, github.com/monsoonconsulting/stylelint-magento-standard,num_dependents_deps.dev:0 github.com/monst3rsec/golang-monstersec-waves,num_dependents_deps.dev:0 github.com/monst3rsec/golang_warrior,num_dependents_deps.dev:0 +github.com/monstar-lab-oss/bugsnag-release-action, +github.com/monstar-lab-oss/sonarqube-github-action, github.com/monstar-lab/golang-docker-development-env,num_dependents_deps.dev:0 github.com/monstasat/fp-fetch,num_dependents_deps.dev:0 github.com/monster860/byond-parser,num_dependents_deps.dev:0 @@ -828816,6 +843763,7 @@ github.com/montagestudio/montage-data,num_dependents_deps.dev:0 github.com/montaguegabe/nand-js,num_dependents_deps.dev:0 github.com/montajs/cli,num_dependents_deps.dev:0 github.com/montajs/compiler,num_dependents_deps.dev:0 +github.com/montali/readme2tex-action, github.com/montanaflynn/Spellcheck-API,num_dependents_deps.dev:0 github.com/montanaflynn/aoot,num_dependents_deps.dev:0 github.com/montanaflynn/benchmarker,num_dependents_deps.dev:0 @@ -828923,6 +843871,7 @@ github.com/montmanu/restify-wetag,num_dependents_deps.dev:0 github.com/montmirail/convelio,num_dependents_deps.dev:0 github.com/montogeek/bambam-slack-integration,num_dependents_deps.dev:0 github.com/montogeek/cmd-enter,num_dependents_deps.dev:0 +github.com/montogeek/github-action-comment-artifacts, github.com/montogeek/remark-custom-blockquotes,num_dependents_deps.dev:0 github.com/montogeek/remark-extract-anchors,num_dependents_deps.dev:0 github.com/montogeek/remark-refractor,num_dependents_deps.dev:0 @@ -828940,6 +843889,7 @@ github.com/montrealist/2020-04-17-personal-npm-package,num_dependents_deps.dev:0 github.com/montrezorro/bootstrap-checkbox,num_dependents_deps.dev:0 github.com/montrol/montrol-client,num_dependents_deps.dev:0 github.com/montrosesoftware/DbAssist,num_dependents_deps.dev:0 +github.com/montudor/action-zip, github.com/montudor/django-oidc-user, github.com/montudor/py-actions, github.com/montudor/test-py-deploy, @@ -828988,6 +843938,8 @@ github.com/montzkie18/geojson-vt, github.com/montzkie18/react-localoader,num_dependents_deps.dev:0 github.com/montzkie18/redoop,num_dependents_deps.dev:0 github.com/montzkie18/redux-state-container,num_dependents_deps.dev:0 +github.com/monuelo/Dockerflow, +github.com/monuelo/PyPoetry, github.com/monukanyaldev/multiple-tag,num_dependents_deps.dev:0 github.com/monumentAI/monument_python, github.com/monumentjs/core,num_dependents_deps.dev:2 @@ -829001,6 +843953,7 @@ github.com/monumentum/obisidian,num_dependents_deps.dev:0 github.com/monumentum/ship-credential,num_dependents_deps.dev:0 github.com/monumentum/star-map,num_dependents_deps.dev:0 github.com/monumentum/static-gulp-configuration,num_dependents_deps.dev:0 +github.com/monun-docs/auto-contrib, github.com/monun/kommand,num_dependents_deps.dev:0 github.com/monun/tap,num_dependents_deps.dev:0 github.com/monupco/monupco-dotcloud-python, @@ -829093,6 +844046,7 @@ github.com/moodpulse/tcp-bridge,num_dependents_deps.dev:0 github.com/moodselah/delibee, github.com/moodybass/meshblu-connector-corsair,num_dependents_deps.dev:0 github.com/moodybass/meshblu-raspicam,num_dependents_deps.dev:0 +github.com/moodymatt/tx, github.com/moodyroto/grunt-handlebars-min,num_dependents_deps.dev:0 github.com/moodysalem/LatLongToTimezoneMaven,num_dependents_deps.dev:0 github.com/moodysalem/advanced-weth,num_dependents_deps.dev:0 @@ -829161,6 +844115,7 @@ github.com/mooli/zoet-rs,num_dependents_deps.dev:1 github.com/moollaza/svelte-zondicons,num_dependents_deps.dev:0 github.com/moolsbytheway/mf-dynamic-form,num_dependents_deps.dev:0 github.com/mooltiverse/nyx,num_dependents_deps.dev:57 +github.com/mooltiverse/nyx-github-action, github.com/moomalade/fsnotify,num_dependents_deps.dev:0 github.com/mooman219/fontdue,"criticality_score:0.321110,num_dependents_deps.dev:27" github.com/mooman219/storm,num_dependents_deps.dev:0 @@ -829312,12 +844267,16 @@ github.com/moonncat/base64tofile, github.com/moonou/element-address-provide,num_dependents_deps.dev:0 github.com/moonou/json-prefix,num_dependents_deps.dev:0 github.com/moonou/wepy-plugin-iconfont,num_dependents_deps.dev:0 +github.com/moonpathbg/mkdocs_builder, +github.com/moonpathbg/scp_uploader, github.com/moonprism/markdown.js,num_dependents_deps.dev:0 github.com/moonpyk/gitfetcher,num_dependents_deps.dev:0 github.com/moonpyk/gitpushall,num_dependents_deps.dev:0 github.com/moonpyk/node-ntp-client,num_dependents_deps.dev:278 github.com/moonpyk/node-xenvar,num_dependents_deps.dev:0 +github.com/moonrailgun/branch-filestorage-action, github.com/moonrailgun/chinese-address-generator,num_dependents_deps.dev:0 +github.com/moonrailgun/laf-storage-deploy-action, github.com/moonrailgun/mini-star,num_dependents_deps.dev:0 github.com/moonrailgun/react-native-style-block,num_dependents_deps.dev:0 github.com/moonrailgun/saucer,num_dependents_deps.dev:0 @@ -829325,6 +844284,13 @@ github.com/moonrailgun/snowpack-plugin-replace,num_dependents_deps.dev:14 github.com/moonrailgun/str2int,num_dependents_deps.dev:0 github.com/moonreach/nodepack,num_dependents_deps.dev:38 github.com/moonreplace/grunt-png8,num_dependents_deps.dev:0 +github.com/moonrepo/build-proto-plugin, +github.com/moonrepo/run-report-action, +github.com/moonrepo/setup-moon-action, +github.com/moonrepo/setup-proto, +github.com/moonrepo/setup-rust, +github.com/moonrepo/setup-toolchain, +github.com/moonrepo/tool-version-action, github.com/moonrhythm/bloomfilter,num_dependents_deps.dev:0 github.com/moonrhythm/gcshandler,num_dependents_deps.dev:0 github.com/moonrhythm/geth-proxy,num_dependents_deps.dev:0 @@ -829368,6 +844334,8 @@ github.com/moonstripe/react-ttp, github.com/moonstruck/mpyscm, github.com/moonsub-kim/crawl-data-slack,num_dependents_deps.dev:0 github.com/moonsub-kim/slack-remove-message,num_dependents_deps.dev:0 +github.com/moonswitch/release-qa-env, +github.com/moonswitch/select-qa-env, github.com/moontary/clitool,num_dependents_deps.dev:0 github.com/moontary/gowithtests,num_dependents_deps.dev:0 github.com/moonthug/d3-decompose,num_dependents_deps.dev:0 @@ -829585,6 +844553,8 @@ github.com/mooyoul/angulartics-facebook-pixel,num_dependents_deps.dev:0 github.com/mooyoul/angulartics-google-adwords-remarketing-tag,num_dependents_deps.dev:0 github.com/mooyoul/aws-cdk-ses-domain-identity,num_dependents_deps.dev:0 github.com/mooyoul/chai-image,num_dependents_deps.dev:0 +github.com/mooyoul/cloudwatch-logs-actions, +github.com/mooyoul/dynamodb-actions, github.com/mooyoul/geo-pattern,num_dependents_deps.dev:0 github.com/mooyoul/get-orientation,num_dependents_deps.dev:1060 github.com/mooyoul/hubot-naver-map,num_dependents_deps.dev:0 @@ -829602,6 +844572,7 @@ github.com/mooyoul/passport-encored-enertalk,num_dependents_deps.dev:0 github.com/mooyoul/phantom-memorymeter,num_dependents_deps.dev:0 github.com/mooyoul/serverless-cloudfront-lambdaedge-plugin,num_dependents_deps.dev:0 github.com/mooyoul/serverless-latest-layer-version,num_dependents_deps.dev:0 +github.com/mooyoul/tslint-actions, github.com/mooyoul/ui-state-loader,num_dependents_deps.dev:0 github.com/mooyoul/vuality,num_dependents_deps.dev:0 github.com/mooz/js2-mode,criticality_score:0.489560 @@ -829768,6 +844739,8 @@ github.com/mor7eza/go-rest-api,num_dependents_deps.dev:0 github.com/mora9715/django-celery-progressbar, github.com/mora9715/gearscore, github.com/moraOlivarez/demoNPM,num_dependents_deps.dev:0 +github.com/moractions/fake-packaging-action, +github.com/moractions/gh-test-fake-test, github.com/moradisten/KNN-LB, github.com/moradisten/ProximityForests-python, github.com/moraessena/go_quiz,num_dependents_deps.dev:0 @@ -829822,6 +844795,8 @@ github.com/moravcik/Leaflet.TextIcon,num_dependents_deps.dev:0 github.com/morawi-cg/morawi-missiontomars,num_dependents_deps.dev:0 github.com/morawskiOZ/react-native-hook-image-slider, github.com/moray95/netchk,num_dependents_deps.dev:0 +github.com/morbalint/git-merge-action, +github.com/morbatex/cargo_semver_update, github.com/morbatex/mobi-sys,num_dependents_deps.dev:0 github.com/morbec/bandsintownv3,num_dependents_deps.dev:0 github.com/morberg/altair_morberg, @@ -829912,6 +844887,7 @@ github.com/moredure/transformer,num_dependents_deps.dev:0 github.com/moredure/vuexi,num_dependents_deps.dev:0 github.com/moredure/xbytes,num_dependents_deps.dev:0 github.com/moredure/xstrings,num_dependents_deps.dev:0 +github.com/moreeyesplz/meep_scanner, github.com/morefigs/printstack, github.com/morefigs/pymba, github.com/morefigs/pyqt-helper, @@ -830006,9 +844982,11 @@ github.com/morfat/rest_utils, github.com/morficus/Backgrid-ResponsiveGrid,num_dependents_deps.dev:0 github.com/morficus/cypress-dotenv,num_dependents_deps.dev:0 github.com/morficus/grunt-transifex-keyvaluejson,num_dependents_deps.dev:0 +github.com/morficus/jira-fields-as-pr-labels, github.com/morficus/license-ls,num_dependents_deps.dev:0 github.com/morficus/version-file,num_dependents_deps.dev:0 github.com/morficus/vue-dullahan-validation,num_dependents_deps.dev:0 +github.com/morfien101/actions-authorized-user, github.com/morfien101/actions-testing,num_dependents_deps.dev:0 github.com/morfien101/chef-waiter,num_dependents_deps.dev:0 github.com/morfien101/go-parameterstorereader,num_dependents_deps.dev:0 @@ -830042,6 +845020,7 @@ github.com/morgangallant/prometheus-testing,num_dependents_deps.dev:0 github.com/morgangallant/scheduler,num_dependents_deps.dev:0 github.com/morganhein/autostart.sh,num_dependents_deps.dev:0 github.com/morganhein/garlic,num_dependents_deps.dev:0 +github.com/morganhein/pre-commit-action, github.com/morganhein/s3sync,num_dependents_deps.dev:0 github.com/morganherlocker/badblog,num_dependents_deps.dev:0 github.com/morganherlocker/bbox-intersect,num_dependents_deps.dev:18 @@ -830121,6 +845100,7 @@ github.com/morganjwilliams/pyrolite-meltsutil, github.com/morganmacarthur/go-book-price-api,num_dependents_deps.dev:0 github.com/morganmaccherone/matrx-grid,num_dependents_deps.dev:0 github.com/morganmaccherone/matrx-radar,num_dependents_deps.dev:0 +github.com/morganmcg1/check-for-new-commits, github.com/morganmcleod/ALMAFE-Lib, github.com/morganmora/icode-cli,num_dependents_deps.dev:0 github.com/morganney/Gister,num_dependents_deps.dev:0 @@ -830238,6 +845218,7 @@ github.com/moriczgergo/rominfo,num_dependents_deps.dev:0 github.com/moriczgergo/shdl,num_dependents_deps.dev:0 github.com/mories76/ardoq-client-go,num_dependents_deps.dev:0 github.com/mories76/terraform-provider-ardoq,num_dependents_deps.dev:0 +github.com/morigs/lint-api-docs-action, github.com/moriire/IPToolz, github.com/morikat/node-red-contrib-cloudfoundry,num_dependents_deps.dev:0 github.com/morikat/node-red-contrib-iremocon,num_dependents_deps.dev:0 @@ -830467,6 +845448,7 @@ github.com/moritzgloeckl/overleaf-sync, github.com/moritzgruber/jumpdir,num_dependents_deps.dev:0 github.com/moritzgvt/doho,num_dependents_deps.dev:0 github.com/moritzheiber/crowbar,num_dependents_deps.dev:0 +github.com/moritzheiber/ruby-versions-action, github.com/moritzjacobs/alium,num_dependents_deps.dev:0 github.com/moritzjacobs/mj-gulp-workflow,num_dependents_deps.dev:0 github.com/moritzkoerber/binary4fun, @@ -830643,6 +845625,7 @@ github.com/moroleandro/uber-stack,num_dependents_deps.dev:0 github.com/morongs/morong-lowercase,num_dependents_deps.dev:0 github.com/moronicgeek/SwaggerCloud,num_dependents_deps.dev:0 github.com/morooLee/wdio-slack-reporter,num_dependents_deps.dev:0 +github.com/moropo-com/action-trigger-test-run, github.com/morose66/react,num_dependents_deps.dev:0 github.com/moroshko/analyze-deps,num_dependents_deps.dev:0 github.com/moroshko/analyze-deps-cli,num_dependents_deps.dev:0 @@ -830706,6 +845689,7 @@ github.com/morphene/morphene-python, github.com/morpher-ru/morpher-ws3-js-client, github.com/morphesus/express-object-mapper,num_dependents_deps.dev:0 github.com/morphet81/botbuilder-wechat-connector,num_dependents_deps.dev:0 +github.com/morphet81/gcp-api-gateway-openapi-options, github.com/morphet81/js-utilities,num_dependents_deps.dev:0 github.com/morpheus-med/nodebb-theme-4dflow,num_dependents_deps.dev:0 github.com/morpheus-project/morpheus, @@ -830731,6 +845715,7 @@ github.com/morphizm/frontend-project-lvl2,num_dependents_deps.dev:0 github.com/morphizm/frontend-project-lvl3,num_dependents_deps.dev:0 github.com/morphizm/react-player,num_dependents_deps.dev:0 github.com/morphlang/tree-sitter-morph,num_dependents_deps.dev:0 +github.com/morpho-labs/foundry-docs-aws, github.com/morpho-matters/morpholib, github.com/morphocut/morphocut, github.com/morpht/sajari-configurator,num_dependents_deps.dev:0 @@ -830793,6 +845778,7 @@ github.com/morrisjdev/ng-metro4,num_dependents_deps.dev:0 github.com/morrisjdev/ng-sapphiredb,num_dependents_deps.dev:0 github.com/morrisjdev/ng-webworker-helper,num_dependents_deps.dev:0 github.com/morrisjs/morris.js,"criticality_score:0.352880,num_dependents_deps.dev:120" +github.com/morrislaptop/codeowners-check, github.com/morrislaptop/laravel-elixir-useref,num_dependents_deps.dev:0 github.com/morrislaptop/laravel-elixir6-nunjucks,num_dependents_deps.dev:0 github.com/morrislaptop/laravel-elixir6-wiredep,num_dependents_deps.dev:0 @@ -831061,6 +846047,7 @@ github.com/morzhanov/go-realworld,num_dependents_deps.dev:0 github.com/morzhanov/react-audio-comments,num_dependents_deps.dev:0 github.com/morzhanov/react-media-editor,num_dependents_deps.dev:0 github.com/morzzz007/boar-koa-server, +github.com/morzzz007/github-actions-jwt-generator, github.com/morzzz007/jira-spotlight,num_dependents_deps.dev:0 github.com/morzzz007/postcss-color-extended-keywords,num_dependents_deps.dev:0 github.com/morzzz007/react-tagging,num_dependents_deps.dev:0 @@ -831455,6 +846442,7 @@ github.com/mossblaser/recipe_grid, github.com/mossblaser/svgoutline, github.com/mossblaser/tiddlyserver, github.com/mossblaser/yarp, +github.com/mosserm/publish-bicep-files, github.com/mossjacob/lafomo, github.com/mossjacob/pyslingshot, github.com/mossjacob/torch-trainer, @@ -831489,6 +846477,8 @@ github.com/mostafacs/quarkus-temporal-extension,num_dependents_deps.dev:0 github.com/mostafaelganainy/dynamic-antd-forms, github.com/mostafaeslami/sms,num_dependents_deps.dev:0 github.com/mostafahussein/hubot-salt,num_dependents_deps.dev:0 +github.com/mostafahussein/setup-aws-iam-authenticator, +github.com/mostafahussein/workflow-watcher, github.com/mostafakazemi/vue-scrollto,num_dependents_deps.dev:0 github.com/mostafanamazy/dns,num_dependents_deps.dev:0 github.com/mostafanegim/kubernetes-workshop,num_dependents_deps.dev:0 @@ -831520,6 +846510,7 @@ github.com/mosteast/rolet,num_dependents_deps.dev:0 github.com/mosteast/serbot,num_dependents_deps.dev:0 github.com/mosteast/waitcha,num_dependents_deps.dev:0 github.com/mostela/nestjs-admin, +github.com/mosteo-actions/docker-run, github.com/mosteroid/gitlab-cli,num_dependents_deps.dev:0 github.com/mosteroid/gitlabctl,num_dependents_deps.dev:0 github.com/mostfunkyduck/kp,num_dependents_deps.dev:0 @@ -831544,6 +846535,7 @@ github.com/mostjs/sample,num_dependents_deps.dev:0 github.com/mostlygeek/Node-Simple-Cache,num_dependents_deps.dev:0 github.com/mostlygeek/etpi,num_dependents_deps.dev:0 github.com/mostlyserious/riak-js,num_dependents_deps.dev:12 +github.com/mostlytyped/s3-put-action, github.com/mostm/pyqiwi, github.com/mostm/pywow, github.com/mostshow/drfile,num_dependents_deps.dev:0 @@ -831817,6 +846809,7 @@ github.com/motorcyclets/loader,num_dependents_deps.dev:0 github.com/motorcyclets/motorcycle,num_dependents_deps.dev:16 github.com/motorcyclets/react-dom,num_dependents_deps.dev:0 github.com/motoreq/istate,num_dependents_deps.dev:0 +github.com/motorgarage/PHPAnalyseDog, github.com/motorin/grunt-files-list,num_dependents_deps.dev:0 github.com/motorin/grunt-php-to-json,num_dependents_deps.dev:0 github.com/motorina0/ssh2-sftp-client-fast,num_dependents_deps.dev:0 @@ -831827,6 +846820,8 @@ github.com/motorro/q-wrapped-request,num_dependents_deps.dev:0 github.com/motorro/room-populate,num_dependents_deps.dev:0 github.com/motortalk/phantom-cheerio, github.com/motortrak/popperupper,num_dependents_deps.dev:0 +github.com/motoyasu-yamada/elasticsearch-action-with-plugins, +github.com/motrixapp/action-electron-builder, github.com/motrixapp/node-multispinner,num_dependents_deps.dev:0 github.com/motro/aor-language-hebrew,num_dependents_deps.dev:0 github.com/motss/app-datepicker,"Google,num_dependents_deps.dev:0" @@ -832225,6 +847220,7 @@ github.com/moussetc/mattermost-plugin-spoiler,num_dependents_deps.dev:0 github.com/moust/cordova-plugin-videoplayer,num_dependents_deps.dev:0 github.com/moust/react-hopscotch,num_dependents_deps.dev:0 github.com/moustacheful/analog-reader,num_dependents_deps.dev:0 +github.com/moustacheful/github-api-exec-action, github.com/moustacheful/glimmer,num_dependents_deps.dev:0 github.com/moustacheful/heroku-mitosis,num_dependents_deps.dev:0 github.com/moustafahelmi96/react-native-dropdown,num_dependents_deps.dev:0 @@ -832341,6 +847337,7 @@ github.com/movielala/serverless-youtube-dl,num_dependents_deps.dev:0 github.com/moviemasher/angular-moviemasher,num_dependents_deps.dev:0 github.com/moviemasher/moviemasher.js,num_dependents_deps.dev:0 github.com/moviepilot/eslint-config-moviepilot,num_dependents_deps.dev:0 +github.com/moviestarplanet/embraceio-action, github.com/moviestoreguy/go-errors,num_dependents_deps.dev:0 github.com/moviestoreguy/retry,num_dependents_deps.dev:0 github.com/movieticket/reserve-api-abstract-client,num_dependents_deps.dev:52 @@ -832358,6 +847355,7 @@ github.com/movilizame/relational-pouch,num_dependents_deps.dev:0 github.com/movilizame/vue-jumper,num_dependents_deps.dev:0 github.com/movim/movim,criticality_score:0.516020 github.com/movingbrands/svelte-portable-text,num_dependents_deps.dev:0 +github.com/movingimage-evp/pr-notifier, github.com/movingobjects/bwco-asset-downloader,num_dependents_deps.dev:0 github.com/movingobjects/varyd-utils, github.com/movins/nutui,num_dependents_deps.dev:0 @@ -832555,6 +847553,7 @@ github.com/moxystudio/webpack-sane-compiler-reporter,num_dependents_deps.dev:6 github.com/moxystudio/yargs-get-help,num_dependents_deps.dev:0 github.com/moxystudio/yargs-promise-handler,num_dependents_deps.dev:0 github.com/moxystudio/yargs-unparser,num_dependents_deps.dev:0 +github.com/moy2010/meilisearch-github-action, github.com/moyasar/moyasar-node,num_dependents_deps.dev:0 github.com/moyasar/moyasar-python, github.com/moyen-blog/client-go,num_dependents_deps.dev:0 @@ -833207,6 +848206,7 @@ github.com/mozillasecurity/octo,num_dependents_deps.dev:0 github.com/mozillayvr/conf-free-api,num_dependents_deps.dev:0 github.com/mozillazg/PyShanb, github.com/mozillazg/aiobearychat, +github.com/mozillazg/alibabacloud-oidc-auth, github.com/mozillazg/baidu-pcs-python-sdk, github.com/mozillazg/bild.me-cli, github.com/mozillazg/bustard, @@ -833215,6 +848215,7 @@ github.com/mozillazg/go-pinyin,num_dependents_deps.dev:20 github.com/mozillazg/go-unidecode,num_dependents_deps.dev:93 github.com/mozillazg/jubi, github.com/mozillazg/kubectl-whoami,num_dependents_deps.dev:0 +github.com/mozillazg/mirror-hg-repo, github.com/mozillazg/pypinyin-dict, github.com/mozillazg/python-pinyin,criticality_score:0.395210 github.com/mozillazg/python-shanbay, @@ -833703,6 +848704,7 @@ github.com/mpetrovich/patternly-patterndoc, github.com/mpetrun5/aead-js, github.com/mpetrunic/fastify-sse-v2,num_dependents_deps.dev:0 github.com/mpetrunic/sov-minter-cli,num_dependents_deps.dev:0 +github.com/mpetrunic/swagger-cli-action, github.com/mpetruska/uk-modulo-scala,num_dependents_deps.dev:0 github.com/mpetuska/application.env, github.com/mpetuska/klip,num_dependents_deps.dev:0 @@ -833797,6 +848799,7 @@ github.com/mpirnat/pythonipsum, github.com/mpitutorial/mpitutorial,criticality_score:0.375180 github.com/mpivaa/allow,num_dependents_deps.dev:0 github.com/mpivaa/react-leaflet-wmts, +github.com/mpizenberg/elm-tooling-action, github.com/mpizenberg/visual-odometry-rs,num_dependents_deps.dev:0 github.com/mpizzaca/lotide,num_dependents_deps.dev:0 github.com/mpizzagalli/express-logger,num_dependents_deps.dev:0 @@ -833875,6 +848878,7 @@ github.com/mpmcli/mojito,num_dependents_deps.dev:0 github.com/mpmdean/pymcaspec, github.com/mpmeetpatel/use-utils,num_dependents_deps.dev:0 github.com/mpmunasinghe/product-microgateway,num_dependents_deps.dev:0 +github.com/mpmxyz/merge-json-with-template, github.com/mpnally/http-helper-functions,num_dependents_deps.dev:0 github.com/mpnally/pg-event-consumer,num_dependents_deps.dev:0 github.com/mpnally/pg-event-producer,num_dependents_deps.dev:0 @@ -833933,6 +848937,10 @@ github.com/mpobjects/mpo-oss-parent,num_dependents_deps.dev:0 github.com/mpobjects/mpo-qa-profiles,num_dependents_deps.dev:0 github.com/mpobjects/wicket4-webjars,num_dependents_deps.dev:0 github.com/mpobrien/node_mongo_hadoop, +github.com/mpoc/nexus-grader-config-test-action, +github.com/mpoc/nexus-update-notifier-action, +github.com/mpoc/nexus-validate-using-remote-schema-action, +github.com/mpoc/yaml-validation-action, github.com/mpociot/laravel-apidoc-generator,criticality_score:0.557350 github.com/mpociot/teamwork,criticality_score:0.379100 github.com/mpociot/ti-crittercism-hook,num_dependents_deps.dev:0 @@ -834049,6 +849057,7 @@ github.com/mprather1/sockbat,num_dependents_deps.dev:0 github.com/mprather1/undtgradt,num_dependents_deps.dev:0 github.com/mpratt/Embera,criticality_score:0.496590 github.com/mprelee/bucketstats, +github.com/mprencipe/waggers-action, github.com/mprevide/dojot-microservice-sdk-js,num_dependents_deps.dev:0 github.com/mpreziuso/google-mdi-fonts,num_dependents_deps.dev:0 github.com/mprinc/audio-commons-js,num_dependents_deps.dev:0 @@ -834297,6 +849306,7 @@ github.com/mr-karan/swiggy-analytics, github.com/mr-karan/webkin, github.com/mr-katsini/trek, github.com/mr-kelly/KSFramework,criticality_score:0.325680 +github.com/mr-linter/mr-linter-ga, github.com/mr-lixh/go-demo,num_dependents_deps.dev:0 github.com/mr-lixh/k8s-learn,num_dependents_deps.dev:0 github.com/mr-luke/przelewy24-js,num_dependents_deps.dev:0 @@ -834327,6 +849337,8 @@ github.com/mr-ristic/comment-box-react,num_dependents_deps.dev:0 github.com/mr-shabani/babel-plugin-as-macro,num_dependents_deps.dev:0 github.com/mr-shabani/json-scriptify,num_dependents_deps.dev:0 github.com/mr-sherman/govwa,num_dependents_deps.dev:0 +github.com/mr-sherman/sarif-to-csv, +github.com/mr-smithers-excellent/docker-build-push, github.com/mr-sonj/smailpro-temp-mail,num_dependents_deps.dev:0 github.com/mr-steveb/mathapp,num_dependents_deps.dev:0 github.com/mr-strawberry66/now-cli, @@ -834742,9 +849754,12 @@ github.com/mrchenhao/Toekn-generator,num_dependents_deps.dev:0 github.com/mrchenliang/lotide,num_dependents_deps.dev:0 github.com/mrchi/learn-golang,num_dependents_deps.dev:0 github.com/mrchief/array.partial,num_dependents_deps.dev:22 +github.com/mrchief/aws-creds-okta-action, github.com/mrchief/conventional-commits-pattern-filter, +github.com/mrchief/iglu-lint-action, github.com/mrchief/koa-chokidar,num_dependents_deps.dev:0 github.com/mrchief/npm-package-template,num_dependents_deps.dev:0 +github.com/mrchief/universal-changelog-action, github.com/mrchimp/hashy,num_dependents_deps.dev:0 github.com/mrchimp/mdr,num_dependents_deps.dev:0 github.com/mrchimp/rmd,num_dependents_deps.dev:0 @@ -834754,6 +849769,7 @@ github.com/mrchimp/videopopup, github.com/mrchrisadams/slack-timezoner, github.com/mrchristofferson/jamaicanizer,num_dependents_deps.dev:0 github.com/mrchristofferson/most-used-color,num_dependents_deps.dev:0 +github.com/mrcjkb/lua-typecheck-action, github.com/mrcl0/pvol, github.com/mrclay/minify,criticality_score:0.488480 github.com/mrcluc/react-native-accordion,num_dependents_deps.dev:0 @@ -834874,6 +849890,7 @@ github.com/mrdhira/arcana,num_dependents_deps.dev:0 github.com/mrdimaan/jsonts,num_dependents_deps.dev:0 github.com/mrdimosthenis/Synapses,num_dependents_deps.dev:0 github.com/mrdishant/gst-verification, +github.com/mrdivyansh/eslint-action, github.com/mrdivyansh/formsy-react-validations,num_dependents_deps.dev:0 github.com/mrdivyansh/react-simple-collapse,num_dependents_deps.dev:0 github.com/mrdivyansh/redux-action-watch,num_dependents_deps.dev:0 @@ -834886,6 +849903,7 @@ github.com/mrdon/flask, github.com/mrdoob/stats.js,"criticality_score:0.433400,num_dependents_deps.dev:114" github.com/mrdoob/texgen.js,num_dependents_deps.dev:0 github.com/mrdoob/three.js,"criticality_score:0.870630,num_dependents_deps.dev:1583" +github.com/mrdoodles/open-issue, github.com/mrdoomy/awesomehooks,num_dependents_deps.dev:0 github.com/mrdoomy/mdwrapper,num_dependents_deps.dev:0 github.com/mrdoomy/minimalgooglemapreact,num_dependents_deps.dev:0 @@ -835126,6 +850144,9 @@ github.com/mrgerpi/http_file,num_dependents_deps.dev:0 github.com/mrghg/py12box, github.com/mrginglymus/campl-ng,num_dependents_deps.dev:0 github.com/mrgloom/awesome-semantic-segmentation,criticality_score:0.325230 +github.com/mrgnlabs/anchor-build-action, +github.com/mrgnlabs/anchor-test-action, +github.com/mrgnlabs/test-bpf-action, github.com/mrgnou/css-quad, github.com/mrgnou/element-index,num_dependents_deps.dev:0 github.com/mrgnou/mouse-scroll-smoothing,num_dependents_deps.dev:0 @@ -835257,6 +850278,7 @@ github.com/mridevteam/validity_checks,num_dependents_deps.dev:0 github.com/mridgers/clink,criticality_score:0.344170 github.com/mridgway/hoist-non-react-statics,"criticality_score:0.433090,num_dependents_deps.dev:159084" github.com/mridpin/reggaetonizadol,num_dependents_deps.dev:0 +github.com/mridul-netizen/oppiabot, github.com/mridulganga/shortie,num_dependents_deps.dev:0 github.com/mridulnagpal/Leaflet.BlurredLocationDisplay,num_dependents_deps.dev:0 github.com/mridulrai/verloop,num_dependents_deps.dev:0 @@ -835279,6 +850301,7 @@ github.com/mrijken/pytest_nlcov, github.com/mrijken/subscribe, github.com/mrijken/toml-cli, github.com/mrijoo/Primbon-Scraper,num_dependents_deps.dev:0 +github.com/mrikirill/RNAppCenterCodePushAction, github.com/mrin9/RapiDoc,"criticality_score:0.527980,num_dependents_deps.dev:0" github.com/mrin9/RapiPdf,num_dependents_deps.dev:0 github.com/mrinal-shankar/Model-Performance, @@ -835310,6 +850333,7 @@ github.com/mripard/dma-heap,num_dependents_deps.dev:0 github.com/mrirecon/spreco, github.com/mristin/fastapi-icontract, github.com/mristin/icontract-hypothesis, +github.com/mristin/opinionated-commit-message, github.com/mristin/python-by-contract-corpus, github.com/mristin/rasaeco, github.com/mristin/swagger-ui-plugin-contracts,num_dependents_deps.dev:0 @@ -835339,6 +850363,7 @@ github.com/mritools/mrrt.utils, github.com/mritunjayemail-test/test1,num_dependents_deps.dev:0 github.com/mritunjaykumar/logger,num_dependents_deps.dev:0 github.com/mritunjaykumar/users-api,num_dependents_deps.dev:0 +github.com/mritunjaysharma394/autoCustomVision, github.com/mritunjaysharma394/policy-report-prototype,num_dependents_deps.dev:0 github.com/mritunjaysharma394/sedpy, github.com/mrityunjay38/iStatus,num_dependents_deps.dev:0 @@ -835487,6 +850512,7 @@ github.com/mrkishi/mailchimp-export,num_dependents_deps.dev:0 github.com/mrkiura/asgi-cors-middleware, github.com/mrkjffrsn/FakeExpress,num_dependents_deps.dev:0 github.com/mrkkrp/megaparsec,criticality_score:0.473690 +github.com/mrkkrp/ormolu-action, github.com/mrkkrp/req,criticality_score:0.422190 github.com/mrkl1/report,num_dependents_deps.dev:0 github.com/mrkl1/scan,num_dependents_deps.dev:0 @@ -835598,6 +850624,7 @@ github.com/mrliuc/dal-helper,num_dependents_deps.dev:0 github.com/mrliuc/tp-app,num_dependents_deps.dev:0 github.com/mrliuc/weixin-pay,num_dependents_deps.dev:0 github.com/mrliukang/healer,num_dependents_deps.dev:0 +github.com/mrllama123/env-mapper, github.com/mrloop/ember-retry, github.com/mrloop/qunit-retry,num_dependents_deps.dev:0 github.com/mrloop/race-cli,num_dependents_deps.dev:0 @@ -835723,6 +850750,7 @@ github.com/mrmilu/django-simple-api-auth-example, github.com/mrmilu/generator-react-mrmilu,num_dependents_deps.dev:0 github.com/mrmilu/webpartners-users, github.com/mrmin123/pyvisauto, +github.com/mrmineleung/cherry-pick-action, github.com/mrmins/EmojiRaiting,num_dependents_deps.dev:0 github.com/mrmint/react-infinite-calendar,num_dependents_deps.dev:0 github.com/mrmiroslav/goproxy,num_dependents_deps.dev:0 @@ -836026,6 +851054,8 @@ github.com/mroth/weightedrand,num_dependents_deps.dev:37 github.com/mrothNET/abswap,num_dependents_deps.dev:0 github.com/mrothNET/textfile.js, github.com/mrotteveel/jaybird-fbclient,num_dependents_deps.dev:0 +github.com/mrousavy/action-ktlint, +github.com/mrousavy/clang-format-action, github.com/mrousavy/maconvert,num_dependents_deps.dev:0 github.com/mrousavy/pipestate,num_dependents_deps.dev:0 github.com/mrousavy/react-native-admob-native-ads,num_dependents_deps.dev:0 @@ -836234,6 +851264,8 @@ github.com/mrsekut/mrsekut,num_dependents_deps.dev:0 github.com/mrselau/causal-order-broadcast,num_dependents_deps.dev:0 github.com/mrself/jstorage-adapter,num_dependents_deps.dev:0 github.com/mrself/ya-del,num_dependents_deps.dev:0 +github.com/mrsenko/rspec_key_value, +github.com/mrsenko/rspec_numbered_documentation, github.com/mrsepdiana/react-library-template,num_dependents_deps.dev:0 github.com/mrshafiqueqadri/react-native-auto-complete,num_dependents_deps.dev:0 github.com/mrshafiqueqadri/react-native-autocomplete-modal,num_dependents_deps.dev:0 @@ -836266,6 +851298,7 @@ github.com/mrshu/stemm-sk, github.com/mrshuhrat/leet_code-exercise,num_dependents_deps.dev:0 github.com/mrsilver512/express-user-impersonation,num_dependents_deps.dev:0 github.com/mrsimoes/lnsync, +github.com/mrsimpson/action-openfaas-build, github.com/mrsinham/awql,num_dependents_deps.dev:0 github.com/mrsinham/bat,num_dependents_deps.dev:0 github.com/mrsinham/elapsed,num_dependents_deps.dev:0 @@ -836680,12 +851713,14 @@ github.com/ms-ecology/ms-download,num_dependents_deps.dev:0 github.com/ms-fadaei/nuxt-browser-console,num_dependents_deps.dev:0 github.com/ms-iot/content,criticality_score:0.330940 github.com/ms-iot/node-wiring,num_dependents_deps.dev:0 +github.com/ms-jpq/auto-github-push, github.com/ms-jpq/chadtree,criticality_score:0.352230 github.com/ms-jpq/forechan, github.com/ms-jpq/gay, github.com/ms-jpq/markdown-live-preview, github.com/ms-jpq/sad,criticality_score:0.333140 github.com/ms-jpq/sortd, +github.com/ms-jpq/sync-dockerhub-readme, github.com/ms-jquery/ms-jquery-resize,num_dependents_deps.dev:0 github.com/ms-kalis/tree-table-vue,num_dependents_deps.dev:0 github.com/ms-kalis/webpackmonitor, @@ -836849,8 +851884,10 @@ github.com/msangel/strftime4j,num_dependents_deps.dev:0 github.com/msanguineti/fude,num_dependents_deps.dev:0 github.com/msanguineti/git-oneflow,num_dependents_deps.dev:0 github.com/msanguineti/terii,num_dependents_deps.dev:0 +github.com/msanjose/github-secret-updater, github.com/msank00/pysank, github.com/msansoni/neon-hello,num_dependents_deps.dev:0 +github.com/msansoni/runner-environment-action, github.com/msantam2/element-histories,num_dependents_deps.dev:0 github.com/msantang78/node-jimu,num_dependents_deps.dev:0 github.com/msanterre/fsnotify,num_dependents_deps.dev:0 @@ -836884,6 +851921,7 @@ github.com/msarsha/ng2-timeout-dialog,num_dependents_deps.dev:0 github.com/msartini/go-api,num_dependents_deps.dev:0 github.com/msartini/graphql-go,num_dependents_deps.dev:0 github.com/msasinowski/ngx-breadcrumbs,num_dependents_deps.dev:0 +github.com/msatbsx/ssh-and-run-your-script-on-remote-host, github.com/msathis/react-native-treeview,num_dependents_deps.dev:0 github.com/msathis/request-simple-ntlm,num_dependents_deps.dev:0 github.com/msathya09/k8s-deployment-strategies,num_dependents_deps.dev:0 @@ -836983,6 +852021,8 @@ github.com/mscharley/bs-auth0-js,num_dependents_deps.dev:0 github.com/mscharley/bs-auth0-session,num_dependents_deps.dev:0 github.com/mscharley/bs-material-ui-icons, github.com/mscharley/bs-querystringify,num_dependents_deps.dev:0 +github.com/mscharley/dependency-changesets-action, +github.com/mscharley/dot, github.com/mscharley/dsass,num_dependents_deps.dev:0 github.com/mscharley/generic-type-guard,num_dependents_deps.dev:2 github.com/mscharley/gog-backup,num_dependents_deps.dev:0 @@ -836992,12 +852032,14 @@ github.com/mscharley/ruby-blockcache,num_dependents_deps.dev:0 github.com/mscharley/rust-xoroshiro128,num_dependents_deps.dev:26 github.com/mscheepers/grunt-assert-command-line-tasks,num_dependents_deps.dev:0 github.com/mscheetz/btc-xpub-address,num_dependents_deps.dev:0 +github.com/mscheltienne/setup-psychopy, github.com/mschema/mschema-rpc,num_dependents_deps.dev:46 github.com/mschewe/readable_ident,num_dependents_deps.dev:0 github.com/mschez/cordova-plugin-locktask,num_dependents_deps.dev:0 github.com/mschez/react-side-bar,num_dependents_deps.dev:0 github.com/mschez/react-trip-animation,num_dependents_deps.dev:0 github.com/mschiaffino/sci-parser,num_dependents_deps.dev:0 +github.com/mschilde/auto-label-merge-conflicts, github.com/mschimk1/passport-chaincode,num_dependents_deps.dev:0 github.com/mschinis/ember-cli-segmentio, github.com/mschipperheyn/mm-loaders,num_dependents_deps.dev:0 @@ -837009,6 +852051,7 @@ github.com/mschlosser22/pearson-storybook,num_dependents_deps.dev:0 github.com/mschm/node-red-contrib-binary,num_dependents_deps.dev:0 github.com/mschm/node-red-contrib-homekit,num_dependents_deps.dev:0 github.com/mschmieder/python-kacl, +github.com/mschmitt/rsync-with-ssh-agent, github.com/mschmo/mendel,num_dependents_deps.dev:0 github.com/mschnee/mister,num_dependents_deps.dev:0 github.com/mschnee/ssm-env,num_dependents_deps.dev:0 @@ -837048,6 +852091,7 @@ github.com/mscook/BanzaiDB, github.com/mscook/GenomeBaser, github.com/mscook/SeqFindr, github.com/mscottnelson/json-literal-typer,num_dependents_deps.dev:0 +github.com/mscoutermarsh/cowsays-action, github.com/mscoutermarsh/dotfiles,criticality_score:0.376980 github.com/mscoutermarsh/scrum_yo,num_dependents_deps.dev:0 github.com/mscoutermarsh/tweet-characters-left,num_dependents_deps.dev:0 @@ -837188,6 +852232,9 @@ github.com/msfragala/ssws, github.com/msfragala/tillstand,num_dependents_deps.dev:0 github.com/msfragala/upprepa,num_dependents_deps.dev:0 github.com/msfrank/cifparser, +github.com/msftsettiy/azure-managedccf-add-member-action, +github.com/msftsettiy/azure-managedccf-deploy-app-action, +github.com/msftsettiy/azure-managedccf-submit-vote-action, github.com/msfukui/docker-loginex,num_dependents_deps.dev:0 github.com/msg-fabric/msg-fabric-core, github.com/msg-fabric/msg-fabric-oaas,num_dependents_deps.dev:0 @@ -837290,9 +852337,11 @@ github.com/msherry/nose-cprof, github.com/msherry/zipgun, github.com/mshez/eslint-config-shehzad, github.com/mshibl/Exif-Stripper,num_dependents_deps.dev:0 +github.com/mshick/add-pr-comment, github.com/mshick/arrivals-osx,num_dependents_deps.dev:0 github.com/mshick/catbox-multilevel,num_dependents_deps.dev:0 github.com/mshick/ez-config,num_dependents_deps.dev:2 +github.com/mshick/fast-envsubst, github.com/mshick/google-cloud-runtime-configuration-util,num_dependents_deps.dev:0 github.com/mshick/hapi-piggy,num_dependents_deps.dev:0 github.com/mshick/hapi-plugin-shim,num_dependents_deps.dev:0 @@ -837475,12 +852524,16 @@ github.com/mskcc/mimsi, github.com/mskec/react-native-mp-android-chart,num_dependents_deps.dev:0 github.com/mskelton/babel-config,num_dependents_deps.dev:0 github.com/mskelton/browserslist-config,num_dependents_deps.dev:0 +github.com/mskelton/changelog-reminder-action, github.com/mskelton/crumbs,num_dependents_deps.dev:0 github.com/mskelton/eslint-config,num_dependents_deps.dev:0 github.com/mskelton/eslint-plugin-sort,num_dependents_deps.dev:0 github.com/mskelton/generator-mskelton,num_dependents_deps.dev:0 +github.com/mskelton/macos-certs, github.com/mskelton/prettier-config,num_dependents_deps.dev:0 +github.com/mskelton/setup-yarn, github.com/mskelton/tsconfig,num_dependents_deps.dev:0 +github.com/mskelton/wait-for-netlify-action, github.com/mskelton/webpack-config,num_dependents_deps.dev:0 github.com/mskgmbh/elbfisch,num_dependents_deps.dev:0 github.com/mskgmbh/elbfisch.fx,num_dependents_deps.dev:0 @@ -837507,6 +852560,7 @@ github.com/mskoroglu/react-4,num_dependents_deps.dev:0 github.com/mskoroglu/swca,num_dependents_deps.dev:0 github.com/mskorokhodov/movajs,num_dependents_deps.dev:0 github.com/mskrha/gobgp,num_dependents_deps.dev:0 +github.com/mskri/check-uncommitted-changes-action, github.com/mskri/hex-opacity,num_dependents_deps.dev:0 github.com/mskri/monbot,num_dependents_deps.dev:0 github.com/mskrip/dhcpd-parser,num_dependents_deps.dev:0 @@ -837637,6 +852691,7 @@ github.com/msn0/vss-sdk-module,num_dependents_deps.dev:0 github.com/msn0/wilson-node,num_dependents_deps.dev:0 github.com/msn0/wilson-score-interval,num_dependents_deps.dev:0 github.com/msnh2012/Msnhnet,criticality_score:0.337850 +github.com/msnidal/gpt-review, github.com/msnijder30/JKik,num_dependents_deps.dev:0 github.com/msnraju/al-embed-file,num_dependents_deps.dev:0 github.com/msnraju/fluent-validation-rules,num_dependents_deps.dev:0 @@ -837644,6 +852699,7 @@ github.com/msnraju/generic-compiler,num_dependents_deps.dev:0 github.com/msnraju/lexer,num_dependents_deps.dev:0 github.com/msnraju/nav-tools,num_dependents_deps.dev:0 github.com/msnraju/regular-expressions,num_dependents_deps.dev:0 +github.com/msnyder-msft/i18n-auto-translation-action, github.com/msoap/byline,num_dependents_deps.dev:17 github.com/msoap/factorial-multi-language,num_dependents_deps.dev:0 github.com/msoap/go-carpet,num_dependents_deps.dev:0 @@ -837691,11 +852747,14 @@ github.com/msorri/tarjouspalvelu.js,num_dependents_deps.dev:0 github.com/msorvig/qt-quick-web-runtime,num_dependents_deps.dev:0 github.com/msorvig/qt-webassembly-app-debugger,num_dependents_deps.dev:0 github.com/msoto01/cockroachdb,num_dependents_deps.dev:0 +github.com/msouff/tethys-app-status, github.com/msoukharev/pydatamocker, github.com/msoulier/tcpproxy,num_dependents_deps.dev:0 github.com/msoulier/tftpy, github.com/msoute/vertx-deploy-mod,num_dependents_deps.dev:0 github.com/msoyks/js-math-solver,num_dependents_deps.dev:0 +github.com/msp-in/docker-run-action, +github.com/msp-in/vault-action, github.com/msp04/PyRecruiter, github.com/msp1974/wiserheatapiv2, github.com/msp432-rust/msp432p401r-hal,num_dependents_deps.dev:0 @@ -837732,6 +852791,7 @@ github.com/msrd0/bitmap-font,num_dependents_deps.dev:0 github.com/msrd0/cargo-doc2readme,num_dependents_deps.dev:0 github.com/msrd0/gotham_formdata,num_dependents_deps.dev:0 github.com/msrd0/gotham_restful,num_dependents_deps.dev:0 +github.com/msrd0/install-rlottie-action, github.com/msrd0/openapi_type,num_dependents_deps.dev:2 github.com/msrdinesh/starwars_names,num_dependents_deps.dev:0 github.com/msrexe/goreload,num_dependents_deps.dev:0 @@ -837770,6 +852830,9 @@ github.com/msrshahrukh101/for-ssh,num_dependents_deps.dev:0 github.com/msrst/matrix_viewer, github.com/msrumon/doggy-node,num_dependents_deps.dev:0 github.com/msrxthr/imgurwrap,num_dependents_deps.dev:0 +github.com/mss-boot-io/configmap-update, +github.com/mss-boot-io/dep-gradle-monorepo, +github.com/mss-boot-io/use-cmd-action, github.com/mssbase/idGenerator, github.com/msschambach/kangajs,num_dependents_deps.dev:0 github.com/msschwartz21/deltascope, @@ -837785,6 +852848,7 @@ github.com/mstab/grunt-msbuild,num_dependents_deps.dev:0 github.com/mstable/mStable-components,num_dependents_deps.dev:0 github.com/mstable/mstable-contracts,num_dependents_deps.dev:0 github.com/mstabrin/transphire, +github.com/mstachniuk/ci-skip, github.com/mstachniuk/graphql-schema-from-introspection-generator,num_dependents_deps.dev:0 github.com/mstackio/mstack-api,num_dependents_deps.dev:0 github.com/mstackio/mstack-cli,num_dependents_deps.dev:0 @@ -837874,9 +852938,12 @@ github.com/msthomaz/slush-simple-project, github.com/mstickel/openapi-docgen,num_dependents_deps.dev:0 github.com/mstijak/niml-node,num_dependents_deps.dev:0 github.com/mstiles92/stackmat,num_dependents_deps.dev:0 +github.com/mstimberg/github-calc-nep29, github.com/mstingl/djfapi, github.com/mstiri/p3270, github.com/mstk0751/msms,num_dependents_deps.dev:0 +github.com/mstksg/get-package, +github.com/mstksg/setup-stack, github.com/mstmvd/ngm-base,num_dependents_deps.dev:0 github.com/mstmvd/ngm-dynamic-form,num_dependents_deps.dev:0 github.com/mstmvd/ngm-grid,num_dependents_deps.dev:0 @@ -837961,6 +853028,7 @@ github.com/msu-coinlab/pymop, github.com/msu-netlab/DNS-Proxy, github.com/msu-netlab/dp,num_dependents_deps.dev:0 github.com/msu-video-group/erqa, +github.com/msudgh/actions-npm-check-updates, github.com/msudgh/hexo-breadcrumb,num_dependents_deps.dev:0 github.com/msudgh/icu-loader,num_dependents_deps.dev:0 github.com/msudgh/nowruz,num_dependents_deps.dev:0 @@ -838072,6 +853140,7 @@ github.com/msys-stackbox/adonis-amqp-eventbus,num_dependents_deps.dev:0 github.com/msys2/MINGW-packages,criticality_score:0.642300 github.com/msys2/MSYS2-packages,criticality_score:0.572920 github.com/msys2/msys2.github.io,criticality_score:0.438230 +github.com/msys2/setup-msys2, github.com/msywensky/nativescript-phone,num_dependents_deps.dev:0 github.com/msz/glimmer-application-pipeline,num_dependents_deps.dev:0 github.com/msz/hammox,criticality_score:0.358460 @@ -838079,6 +853148,7 @@ github.com/mszajna/klusk,num_dependents_deps.dev:0 github.com/mszcool/azuremsiandinstancemetadata,num_dependents_deps.dev:0 github.com/mszep/pandoc_resume,criticality_score:0.305810 github.com/mszewcz/safe-subscribe,num_dependents_deps.dev:0 +github.com/mszewczyk-ipwt/gcloud-sdk, github.com/mszewczyk/hello-mars,num_dependents_deps.dev:0 github.com/mszhangyi/infra,num_dependents_deps.dev:0 github.com/mszkb/logoutIdle, @@ -838109,6 +853179,7 @@ github.com/mt-inside/envbin,num_dependents_deps.dev:0 github.com/mt-inside/golang-graceful-shutdown,num_dependents_deps.dev:0 github.com/mt-inside/versions-over-ip,num_dependents_deps.dev:0 github.com/mt-it-factory/loopback-connector-vtiger,num_dependents_deps.dev:0 +github.com/mt-mods/mineunit-actions, github.com/mt-sre/reference-addon,num_dependents_deps.dev:0 github.com/mt-typescript/node-util,num_dependents_deps.dev:0 github.com/mt0erfztxt/nebula-test-fragment,num_dependents_deps.dev:0 @@ -838180,6 +853251,8 @@ github.com/mtanski/dbkit,num_dependents_deps.dev:0 github.com/mtanzim/vis-strong-go,num_dependents_deps.dev:0 github.com/mtao/pyeltopo, github.com/mtardugno/mypluralize,num_dependents_deps.dev:0 +github.com/mtardy/setup-bpftool, +github.com/mtardy/veristat-action, github.com/mtasa-typescript/mtasa-lua-types, github.com/mtasa-typescript/mtasa-lua-utils, github.com/mtasan/v-easy-chart,num_dependents_deps.dev:0 @@ -838204,6 +853277,7 @@ github.com/mtbottens/gatsby-directus,num_dependents_deps.dev:0 github.com/mtbrock/gclone, github.com/mtbrock/redis-decorators, github.com/mtbvang/sails-generate-reactjs-gulp,num_dependents_deps.dev:0 +github.com/mtchavez/airbrake-deploy, github.com/mtchavez/cuckoo,num_dependents_deps.dev:0 github.com/mtchavez/node-al-papi,num_dependents_deps.dev:0 github.com/mtchuikov/learngolang,num_dependents_deps.dev:0 @@ -838253,6 +853327,7 @@ github.com/mtfelian/types,num_dependents_deps.dev:0 github.com/mtfelian/utils,num_dependents_deps.dev:2 github.com/mtflud/homebridge-dchs220-siren,num_dependents_deps.dev:0 github.com/mtfoley/keurig,num_dependents_deps.dev:0 +github.com/mtfoley/pr-compliance-action, github.com/mtford90/operations.angular.js,num_dependents_deps.dev:0 github.com/mtford90/operations.js,num_dependents_deps.dev:0 github.com/mtford90/react-native-watch-connectivity,criticality_score:0.333520 @@ -838376,6 +853451,7 @@ github.com/mthomas/line-parser, github.com/mthomas/smartystreets, github.com/mthompsonc/library-project,num_dependents_deps.dev:0 github.com/mthomure/glimpse-project, +github.com/mthooyavan/code-reviewer, github.com/mthorley/zen-wifi-client, github.com/mthorning/go-sso,num_dependents_deps.dev:0 github.com/mthorning/react-clap-button,num_dependents_deps.dev:0 @@ -838425,6 +853501,7 @@ github.com/mtk72/palindrome,num_dependents_deps.dev:0 github.com/mtkcs/written-number-currency,num_dependents_deps.dev:0 github.com/mtkennerly/clingy, github.com/mtkennerly/dunamai, +github.com/mtkennerly/dunamai-action, github.com/mtkennerly/exesexe, github.com/mtkennerly/kelonio,num_dependents_deps.dev:0 github.com/mtkennerly/ludusavi,num_dependents_deps.dev:0 @@ -838438,6 +853515,7 @@ github.com/mtkopone/zhain,num_dependents_deps.dev:0 github.com/mtl-team/mtl-cli,num_dependents_deps.dev:0 github.com/mtl-team/mtl-core,num_dependents_deps.dev:0 github.com/mtl-team/mtl-dev,num_dependents_deps.dev:0 +github.com/mtl1979/dependencies-autoupdate, github.com/mtlam/PyPulse, github.com/mtli/HTML4Vision, github.com/mtli/linearlr, @@ -838522,6 +853600,7 @@ github.com/mtomsu/message-batcher,num_dependents_deps.dev:0 github.com/mtomsu/socket.io-emitter-promises,num_dependents_deps.dev:0 github.com/mtomwing/purplex, github.com/mtomwing/truthy, +github.com/mtoohey31/cache-flake-attrs, github.com/mtorpey/pypersist, github.com/mtorromeo/dephp, github.com/mtorromeo/gearman-worker-rs,num_dependents_deps.dev:0 @@ -838546,6 +853625,7 @@ github.com/mtourj/react-native-image-crop,num_dependents_deps.dev:0 github.com/mtourj/react-native-keyboard-aware-scroll-view,num_dependents_deps.dev:0 github.com/mtovmassian/typocase, github.com/mtoygar/ember-poller,num_dependents_deps.dev:0 +github.com/mtp1376/test-marketplace, github.com/mtp22peng/python_pack, github.com/mtp401/protoc-grpcio,num_dependents_deps.dev:18 github.com/mtpetros/create-react-app,num_dependents_deps.dev:0 @@ -838642,6 +853722,7 @@ github.com/mtslzr/boto3auth, github.com/mtslzr/octo-rs,num_dependents_deps.dev:0 github.com/mtslzr/olivia,num_dependents_deps.dev:0 github.com/mtsmachado8/extensions,num_dependents_deps.dev:0 +github.com/mtsmachado8/heroku-deploy, github.com/mtsmfm/activerecord-aws_data_service_mysql-adapter,num_dependents_deps.dev:0 github.com/mtsmfm/apollo-client,num_dependents_deps.dev:0 github.com/mtsmfm/atom-docker-linter,num_dependents_deps.dev:0 @@ -838854,6 +853935,7 @@ github.com/mua69/infoscreenservice,num_dependents_deps.dev:0 github.com/mua69/particlrpc,num_dependents_deps.dev:0 github.com/mua69/stakepoolinfoserver,num_dependents_deps.dev:0 github.com/mua69/stellarwallet,num_dependents_deps.dev:0 +github.com/muachilin/Pig, github.com/muadzICT/turf,num_dependents_deps.dev:0 github.com/muammar/mkchromecast,criticality_score:0.470170 github.com/muammar/ml4chem, @@ -838980,7 +854062,9 @@ github.com/muchlist/golang_pdf,num_dependents_deps.dev:0 github.com/muchlist/golang_whiteboard,num_dependents_deps.dev:0 github.com/muchlist/risa_restfull,num_dependents_deps.dev:0 github.com/muchlist/sagasql,num_dependents_deps.dev:0 +github.com/muchobien/configure-aws-secrets-manager, github.com/muchobien/porkbun-rs,num_dependents_deps.dev:0 +github.com/muchobien/scoped-env, github.com/muchobien/tailscale-ui,num_dependents_deps.dev:0 github.com/muchojp/NakaMetPy, github.com/muchrooms/esp8266.py, @@ -839110,7 +854194,9 @@ github.com/mudkipme/nodebb-theme-persona-52poke-forums, github.com/mudlabs/cardinal-direction,num_dependents_deps.dev:0 github.com/mudlabs/nativescript-eventify,num_dependents_deps.dev:0 github.com/mudlabs/nativescript-playground-bar,num_dependents_deps.dev:0 +github.com/mudlabs/npm-worker, github.com/mudlabs/short-scale-units,num_dependents_deps.dev:0 +github.com/mudlabs/simple-diff, github.com/mudlee/rust-multicodec,num_dependents_deps.dev:0 github.com/mudler/devbot,num_dependents_deps.dev:0 github.com/mudler/docker-companion,num_dependents_deps.dev:5 @@ -839122,6 +854208,7 @@ github.com/mudler/k8s-resource-scheduler,num_dependents_deps.dev:0 github.com/mudler/luet,num_dependents_deps.dev:0 github.com/mudler/luet-k8s,num_dependents_deps.dev:0 github.com/mudler/luet-makeiso,num_dependents_deps.dev:0 +github.com/mudler/poco-github-action, github.com/mudler/yip,num_dependents_deps.dev:0 github.com/mudongliang/youdao-python, github.com/mudoo/encrypt-loader,num_dependents_deps.dev:0 @@ -839210,6 +854297,7 @@ github.com/muesli/mastotool,num_dependents_deps.dev:0 github.com/muesli/obs-cli,num_dependents_deps.dev:0 github.com/muesli/pam-beacon,num_dependents_deps.dev:0 github.com/muesli/prism,num_dependents_deps.dev:0 +github.com/muesli/readme-scribe, github.com/muesli/reflow,num_dependents_deps.dev:203 github.com/muesli/sasquatch,num_dependents_deps.dev:4 github.com/muesli/smartcrop,"criticality_score:0.300250,num_dependents_deps.dev:199" @@ -839350,6 +854438,7 @@ github.com/mugi-uno/parcel-plugin-bundle-manifest,num_dependents_deps.dev:0 github.com/mugi111/mark-script,num_dependents_deps.dev:0 github.com/mugi111/react-github-repos,num_dependents_deps.dev:0 github.com/mugi111/swagger-md,num_dependents_deps.dev:0 +github.com/mugi111/tweet-trigger-release, github.com/mugifly/jquery-simple-datetimepicker,"criticality_score:0.342460,num_dependents_deps.dev:0" github.com/mugifly/node-dimora-client,num_dependents_deps.dev:0 github.com/mugifly/node-jobcan-client,num_dependents_deps.dev:0 @@ -839358,6 +854447,7 @@ github.com/mugioka/go-github-pr-commenter,num_dependents_deps.dev:0 github.com/mugioka/kubeutil,num_dependents_deps.dev:0 github.com/mugioka/simple-api-server,num_dependents_deps.dev:0 github.com/mugioka/xrequestid,num_dependents_deps.dev:0 +github.com/mugiseyebrows/cicd-shell-server, github.com/mugiseyebrows/event-loop, github.com/mugiseyebrows/mingw-to-msys, github.com/mugiseyebrows/mugi-cli, @@ -839407,11 +854497,13 @@ github.com/muhamad-rizki/rn-modal-filter-selectbox,num_dependents_deps.dev:0 github.com/muhamadazmy/libvirt-go,num_dependents_deps.dev:0 github.com/muhamadazmy/python-pygo, github.com/muhamedabdalla/privatetask,num_dependents_deps.dev:0 +github.com/muhamedzeema/appgallery-deply-action, github.com/muhammad-21/search,num_dependents_deps.dev:0 github.com/muhammad-21/wallet,num_dependents_deps.dev:0 github.com/muhammad-abubakkar/just-validation,num_dependents_deps.dev:0 github.com/muhammad-ahsan/soundex-py, github.com/muhammad-ali-jafari/cool_calculator,num_dependents_deps.dev:0 +github.com/muhammad-ali777/expo-github-action, github.com/muhammad-asad-26/react-native-datepicker,num_dependents_deps.dev:0 github.com/muhammad-d/wiki_app,num_dependents_deps.dev:0 github.com/muhammad-habib/angular-google-maps,num_dependents_deps.dev:0 @@ -839551,6 +854643,7 @@ github.com/muhfaris/belajar-traefik,num_dependents_deps.dev:0 github.com/muhfaris/lib-go,num_dependents_deps.dev:0 github.com/muhfaris/proxychecker,num_dependents_deps.dev:0 github.com/muhfaris/request,num_dependents_deps.dev:3 +github.com/muhfaris/request-action, github.com/muhfuhcaw/s3h,num_dependents_deps.dev:0 github.com/muhgumus/react-native-update-control,num_dependents_deps.dev:0 github.com/muhgumus/react-native-wordpress,num_dependents_deps.dev:0 @@ -839629,6 +854722,8 @@ github.com/mui-org/popper-core,num_dependents_deps.dev:0 github.com/mui-org/react-transition-group,num_dependents_deps.dev:45 github.com/mui-x/muix,num_dependents_deps.dev:0 github.com/mui/material-ui, +github.com/mui/material-ui-pickers, +github.com/mui/mui-x, github.com/muicss/hookahjs,num_dependents_deps.dev:0 github.com/muicss/johnnydepp, github.com/muicss/loadjs,num_dependents_deps.dev:562 @@ -839656,6 +854751,7 @@ github.com/muil-io/components,num_dependents_deps.dev:0 github.com/muil-io/muil-javascript,num_dependents_deps.dev:0 github.com/muingy/roboticswithgolang,num_dependents_deps.dev:0 github.com/muinmomin/gatsby-theme-novela,num_dependents_deps.dev:0 +github.com/muinmomin/webhook-action, github.com/muiplayer/hello-muiplayer,num_dependents_deps.dev:0 github.com/muir/date,num_dependents_deps.dev:0 github.com/muir/libschema,num_dependents_deps.dev:0 @@ -839683,6 +854779,7 @@ github.com/mujichOk/tenant-mongo,num_dependents_deps.dev:0 github.com/mujin/yaml,num_dependents_deps.dev:0 github.com/mujl/gomod_test,num_dependents_deps.dev:0 github.com/mujo-code/plugins,num_dependents_deps.dev:0 +github.com/mujo-code/puppeteer-headful, github.com/mujohn26/translate-api,num_dependents_deps.dev:0 github.com/mujtaba-ahmad/Angular2-Toaster,num_dependents_deps.dev:0 github.com/mujtaba-ahmad/ng2-spin-kit,num_dependents_deps.dev:0 @@ -839727,6 +854824,7 @@ github.com/mukesh-kumar1905/al,num_dependents_deps.dev:0 github.com/mukeshmandiwal/schar-name,num_dependents_deps.dev:0 github.com/mukeshmithrakumar/scientific, github.com/mukeshrawat02/json-content,num_dependents_deps.dev:0 +github.com/mukeshsolanki/bundletool-action, github.com/mukeshsolanki/dev-tools,num_dependents_deps.dev:0 github.com/mukeshsoni/babel-plugin-remove-data-test-id-attribute,num_dependents_deps.dev:0 github.com/mukeshsoni/bugsnag-browser-lite,num_dependents_deps.dev:0 @@ -839761,6 +854859,7 @@ github.com/mukkund1996/RPSGame, github.com/mukminjs/mukmin,num_dependents_deps.dev:0 github.com/mukos/methodic,num_dependents_deps.dev:0 github.com/mukprojects/ExclyCore,num_dependents_deps.dev:0 +github.com/mukrasr/version-checker, github.com/mukswilly/meek-crypto,num_dependents_deps.dev:0 github.com/mukswilly/meek-keygen,num_dependents_deps.dev:0 github.com/mukswilly/meektunnel,num_dependents_deps.dev:0 @@ -839798,6 +854897,7 @@ github.com/mukundan314/python-fastrand, github.com/mukundan314/uglipy, github.com/mukundbhudia/tweetgetter,num_dependents_deps.dev:0 github.com/mukundha/generator-apigee-seed,num_dependents_deps.dev:0 +github.com/mukunku/tag-exists-action, github.com/mukuve/ngx-forms,num_dependents_deps.dev:0 github.com/mukuve/test-package,num_dependents_deps.dev:0 github.com/mul14/cronode,num_dependents_deps.dev:0 @@ -839968,7 +855068,9 @@ github.com/mullwar/telebot,"criticality_score:0.319250,num_dependents_deps.dev:0 github.com/muloka/convert-google-directions,num_dependents_deps.dev:0 github.com/muloka/rite,num_dependents_deps.dev:0 github.com/mulondumuema/golang_basics,num_dependents_deps.dev:0 +github.com/mulp/tuist-action, github.com/mulpsy/css-art,num_dependents_deps.dev:0 +github.com/multani/git-changes-action, github.com/multani/jb.recipe.supervisor, github.com/multei/design,num_dependents_deps.dev:0 github.com/multei/openalpr,num_dependents_deps.dev:0 @@ -840042,6 +855144,7 @@ github.com/multik/multik,num_dependents_deps.dev:0 github.com/multilanguagexyz/django-weebly, github.com/multilayer-io/jupancon, github.com/multilingualjs/multilingual.js,num_dependents_deps.dev:0 +github.com/multilocale/snooze-issue-action, github.com/multimac/conventional, github.com/multimediatechnology/rade,num_dependents_deps.dev:0 github.com/multimeric/PipeChain, @@ -840072,6 +855175,7 @@ github.com/multirepo-demo/front.tools,num_dependents_deps.dev:0 github.com/multisanti64/go-vk,num_dependents_deps.dev:0 github.com/multiscale/muscle3, github.com/multiscale/ymmsl-python, +github.com/multisig-labs/foundry-test-action, github.com/multisolution/multipart-parser,num_dependents_deps.dev:0 github.com/multitheftauto/mtasa-blue,criticality_score:0.551330 github.com/multivacplatform/louvain,num_dependents_deps.dev:0 @@ -840110,6 +855214,7 @@ github.com/mumblepins/sheet-loader, github.com/mumblepins/signed-pickle, github.com/mumblepins/yaad, github.com/mumbotxyz/support,num_dependents_deps.dev:0 +github.com/mumianhua/trigger-pipeline-action, github.com/mumin91/cra-template-br,num_dependents_deps.dev:0 github.com/mumincelal/ngx-org-ui,num_dependents_deps.dev:0 github.com/muminoff/devon, @@ -840179,6 +855284,7 @@ github.com/mundophrase/node-cli,num_dependents_deps.dev:0 github.com/muneeb-ali/commontools, github.com/muneebalam/scrapenhl, github.com/muneebalam/scrapenhl2, +github.com/muneebmughal1/hello-world-action, github.com/muneebs/altair-redux,num_dependents_deps.dev:0 github.com/muneem4node/muneem,num_dependents_deps.dev:0 github.com/munen/is_association,num_dependents_deps.dev:0 @@ -840271,6 +855377,8 @@ github.com/munnerz/manifest-splitter,num_dependents_deps.dev:0 github.com/munnik/go-nmea,num_dependents_deps.dev:0 github.com/munntjlx/jqplay,num_dependents_deps.dev:0 github.com/munnyjs/munny,num_dependents_deps.dev:0 +github.com/muno92/gha-usage, +github.com/muno92/resharper_inspectcode, github.com/munogu/node-maildir-queue,num_dependents_deps.dev:0 github.com/munogu/node-service,num_dependents_deps.dev:0 github.com/munovv/go-url-crop,num_dependents_deps.dev:0 @@ -840348,6 +855456,7 @@ github.com/mupen64plus/mupen64plus-core,criticality_score:0.501390 github.com/muperro/tojson,num_dependents_deps.dev:0 github.com/mupic/webpack-exclude-entry,num_dependents_deps.dev:0 github.com/mupic/webpack-wordpress-entrypoints,num_dependents_deps.dev:0 +github.com/mupixa/deploy-lambda, github.com/mupperton/state-validator,num_dependents_deps.dev:0 github.com/mupsnc/bsimagepicker-msco,num_dependents_deps.dev:0 github.com/mupuri/go-tfdr,num_dependents_deps.dev:0 @@ -840480,6 +855589,7 @@ github.com/muratgu/kivaorg,num_dependents_deps.dev:0 github.com/muratgu/voipms,num_dependents_deps.dev:0 github.com/murathalici/prettier-config,num_dependents_deps.dev:0 github.com/murathasev/random-memes,num_dependents_deps.dev:0 +github.com/muratiger/invalidate-cloudfront-and-wait-for-completion-action, github.com/muratkaragozgil/netmera4j,num_dependents_deps.dev:0 github.com/muratmirgun/bix,num_dependents_deps.dev:0 github.com/muratmirgun/logger-go,num_dependents_deps.dev:0 @@ -840653,8 +855763,10 @@ github.com/murphypetercl/ansible-mdgen, github.com/murphyqm/pytesimal, github.com/murphyrandle/koa-response-censor,num_dependents_deps.dev:0 github.com/murphysean/secrethitler,num_dependents_deps.dev:0 +github.com/murphysecurity/actions, github.com/murpjack/mc-json-formatter,num_dependents_deps.dev:0 github.com/murraju/swift-manager,num_dependents_deps.dev:0 +github.com/murray-tait/action-slack, github.com/murray88/xlwt-fixed, github.com/murray91/busybeaver, github.com/murraycutforth/pyextrapolation, @@ -840674,6 +855786,7 @@ github.com/murrple-1/django-sqlite-file-cache, github.com/murrple-1/password-hashing-python, github.com/murrple-1/pdf-merger-python, github.com/murrple-1/quick-email-python, +github.com/murs313/request-review, github.com/murshidazher/eslint-config-react,num_dependents_deps.dev:0 github.com/murshidazher/prettier-config,num_dependents_deps.dev:0 github.com/murshidazher/react-play,num_dependents_deps.dev:0 @@ -840723,6 +855836,7 @@ github.com/musabgosset/angular-material-sidenav,num_dependents_deps.dev:0 github.com/musabkhunaijir/Hamzah.js,num_dependents_deps.dev:0 github.com/musafar006/dreamNav,num_dependents_deps.dev:0 github.com/musaffa/qalam,num_dependents_deps.dev:0 +github.com/musagen/setup-doctl, github.com/musaghauri/react-sticky-notes,num_dependents_deps.dev:0 github.com/musakui/create-vite,num_dependents_deps.dev:0 github.com/musakui/gl-canvas,num_dependents_deps.dev:0 @@ -840885,6 +855999,7 @@ github.com/musicglue/react-relax,num_dependents_deps.dev:0 github.com/musicglue/relax-form,num_dependents_deps.dev:0 github.com/musicglue/relax-modal,num_dependents_deps.dev:0 github.com/musicglue/wrap-async-context,num_dependents_deps.dev:0 +github.com/musichin/ktlint-check, github.com/musicin3d/hexo-writers,num_dependents_deps.dev:0 github.com/musicist288/karma-requirejs, github.com/musicmash/scratch,num_dependents_deps.dev:0 @@ -841007,6 +856122,7 @@ github.com/musoke/libads,num_dependents_deps.dev:0 github.com/musonza/chat,criticality_score:0.358310 github.com/musou1500/go-wiki,num_dependents_deps.dev:0 github.com/musou1500/sit,num_dependents_deps.dev:0 +github.com/musps/action-deployer-php, github.com/musps/react-formhandler,num_dependents_deps.dev:0 github.com/musps/test-travis-cache,num_dependents_deps.dev:0 github.com/musqqq/go_rest_api,num_dependents_deps.dev:0 @@ -841121,6 +856237,7 @@ github.com/musubu/node-opds-parser,num_dependents_deps.dev:0 github.com/musulton/confirm-data,num_dependents_deps.dev:0 github.com/musus/xmlrpc-node-wp,num_dependents_deps.dev:0 github.com/musx-admin/musx, +github.com/musyoka-morris/action-next-semver, github.com/musyoka-morris/dynamongo, github.com/musyoka-morris/fe, github.com/musyoka-morris/pymongoext, @@ -841212,6 +856329,7 @@ github.com/mutewinter/brunch-signature,num_dependents_deps.dev:0 github.com/mutewinter/cuesnap,num_dependents_deps.dev:0 github.com/mutewinter/digest-brunch,num_dependents_deps.dev:0 github.com/mutewinter/dot_vim,criticality_score:0.351400 +github.com/mutex-inc/emtux-actions, github.com/mutexcat/pineapple,num_dependents_deps.dev:0 github.com/muthiaaarr/exercise_1,num_dependents_deps.dev:0 github.com/muthu-tm/fab_insurance_example,num_dependents_deps.dev:0 @@ -841248,6 +856366,7 @@ github.com/mutnt/skywalker,num_dependents_deps.dev:0 github.com/mutnt/stringLike,num_dependents_deps.dev:0 github.com/mutnt/stylusVars, github.com/mutnt/thelpers,num_dependents_deps.dev:0 +github.com/mutoco/commit-build-artefacts-action, github.com/mutoe/leetcode,num_dependents_deps.dev:0 github.com/mutoe/webhooks,num_dependents_deps.dev:0 github.com/mutong772817723/single-app-cli,num_dependents_deps.dev:0 @@ -841304,6 +856423,8 @@ github.com/mutwo-org/mutwo.ext-zimmermann, github.com/muuki88/config4cli,num_dependents_deps.dev:0 github.com/muuki88/jama-osgi,num_dependents_deps.dev:5 github.com/muukii/NextGrowingTextView,criticality_score:0.308950 +github.com/muukii/actions-xcode-create-simulator, +github.com/muukii/actions-xcode-install-simulator, github.com/muukii/chglog,num_dependents_deps.dev:0 github.com/muukii/langstorage.js,num_dependents_deps.dev:0 github.com/muuknl/fluidcommand,num_dependents_deps.dev:0 @@ -841334,6 +856455,7 @@ github.com/muxache/netbox_api,num_dependents_deps.dev:0 github.com/muxe/conversational-machine,num_dependents_deps.dev:0 github.com/muxe/express-mjb,num_dependents_deps.dev:0 github.com/muxe/react-native-device-rotation,num_dependents_deps.dev:0 +github.com/muxee/clang-tidy-action, github.com/muxer-dev/event-schema,num_dependents_deps.dev:0 github.com/muxer-dev/lambda-utils,num_dependents_deps.dev:0 github.com/muxfd/multipath-udp,num_dependents_deps.dev:0 @@ -841604,6 +856726,7 @@ github.com/mvarrieur/stencil-redux,num_dependents_deps.dev:0 github.com/mvarshney/simjs-source,num_dependents_deps.dev:0 github.com/mvashwinkumar/npm-lib-boilerplate,num_dependents_deps.dev:0 github.com/mvashwinkumar/test,num_dependents_deps.dev:0 +github.com/mvasigh/dispatch-action, github.com/mvasigh/parcel-transform-remark,num_dependents_deps.dev:0 github.com/mvasigh/react-groove,num_dependents_deps.dev:0 github.com/mvasigh/react-image-markup,num_dependents_deps.dev:0 @@ -841831,6 +856954,7 @@ github.com/mvdwg/telling-stories-site,num_dependents_deps.dev:0 github.com/mvdwoord/PyGNS3, github.com/mveer1/golang-course,num_dependents_deps.dev:0 github.com/mvegter/node-zermelo,num_dependents_deps.dev:0 +github.com/mvegter/openapi-diff-action, github.com/mvel/mvel,criticality_score:0.488790 github.com/mvelezg99/m_stats, github.com/mvelikikh/putty-session-manager, @@ -842045,9 +857169,12 @@ github.com/mvits/react-native-spatial,num_dependents_deps.dev:0 github.com/mvj3/logpos,num_dependents_deps.dev:0 github.com/mvj3/normalize_nested_params,num_dependents_deps.dev:0 github.com/mvk/sshadder, +github.com/mvkaran/check-issue-assignees-commenters, github.com/mvkasatkin/forms,num_dependents_deps.dev:0 github.com/mvkasatkin/immutant,num_dependents_deps.dev:0 github.com/mvkasatkin/react-redux-services,num_dependents_deps.dev:0 +github.com/mvkvc/actions_mix_deps, +github.com/mvkvc/actions_mix_dialyzer, github.com/mvkvl/atlassian-status-page-java-api,num_dependents_deps.dev:0 github.com/mvl-at/rest,num_dependents_deps.dev:0 github.com/mvlabat/bevy_egui,num_dependents_deps.dev:0 @@ -842124,6 +857251,7 @@ github.com/mvoorberg/obj-assign,num_dependents_deps.dev:0 github.com/mvoorberg/x-assign, github.com/mvording/pwned,num_dependents_deps.dev:0 github.com/mvoss9000/unidiff,num_dependents_deps.dev:36 +github.com/mvp-projects/easy-cloud-cli, github.com/mvp-react/react-components,num_dependents_deps.dev:0 github.com/mvp/uhubctl,criticality_score:0.478570 github.com/mvp4g/iban4g,num_dependents_deps.dev:0 @@ -842188,6 +857316,7 @@ github.com/mvsoliveira/PCBpy, github.com/mvsowndapan/react-dnd-crop, github.com/mvt-project/mvt, github.com/mvtango/smalldata, +github.com/mvtavares/chatgpt-ts-action, github.com/mvtm-dn/cucumber-junit-formatter,num_dependents_deps.dev:0 github.com/mvtthew/go-api-crud-server,num_dependents_deps.dev:0 github.com/mvuherer/key-id,num_dependents_deps.dev:0 @@ -842471,6 +857600,7 @@ github.com/mwhamilton/outlook_emailer, github.com/mwhamilton/redshift_upload, github.com/mwhawkins/django-simplemfa, github.com/mwhipple/logman,num_dependents_deps.dev:0 +github.com/mwhitaker/dbt-action, github.com/mwhite/extensible, github.com/mwhite/pluggable,num_dependents_deps.dev:0 github.com/mwhite05/mum,num_dependents_deps.dev:0 @@ -842517,6 +857647,7 @@ github.com/mwiesenberger/simplesimdb, github.com/mwiesmueller/express-crypto,num_dependents_deps.dev:0 github.com/mwiesmueller/gulp-ng-pug-to-inline,num_dependents_deps.dev:0 github.com/mwiesmueller/ngx-http-crypt,num_dependents_deps.dev:0 +github.com/mwigginsdev/delete-oldest-workflow-runs, github.com/mwikstrom/app-history,num_dependents_deps.dev:0 github.com/mwikstrom/cqa,num_dependents_deps.dev:0 github.com/mwikstrom/firemob,num_dependents_deps.dev:0 @@ -842552,6 +857683,8 @@ github.com/mwilliamson/python-mammoth, github.com/mwilliamson/python-precisely, github.com/mwilliamson/python-tempman, github.com/mwilliamson/python-vendorize, +github.com/mwilliamson/setup-wabt-action, +github.com/mwilliamson/setup-wasmtime-action, github.com/mwilliamson/spur.py, github.com/mwilliamson/sqlexecutor, github.com/mwilliamson/starboard.py, @@ -842796,6 +857929,8 @@ github.com/mwylde/loopers,num_dependents_deps.dev:0 github.com/mwylde/rubybits,num_dependents_deps.dev:0 github.com/mwylde/rumble,num_dependents_deps.dev:0 github.com/mwylde/slinky,num_dependents_deps.dev:0 +github.com/mwznn/semver-gist, +github.com/mx-in/file-description-auto-generator, github.com/mx-inventor/synup,num_dependents_deps.dev:0 github.com/mx-psi/fa-scraper, github.com/mx-psi/fa-scrapper, @@ -842845,6 +857980,7 @@ github.com/mxck/eslint-config-pietile,num_dependents_deps.dev:0 github.com/mxck/react-native-material-menu,"criticality_score:0.331570,num_dependents_deps.dev:2" github.com/mxcl/PromiseKit,criticality_score:0.487610 github.com/mxcl/swift-sh,criticality_score:0.439070 +github.com/mxcl/xcodebuild, github.com/mxcz213/npm-publish-ts-demo,num_dependents_deps.dev:0 github.com/mxczpiscioneri/acsset,num_dependents_deps.dev:0 github.com/mxdi9i7/formio,num_dependents_deps.dev:0 @@ -842877,6 +858013,8 @@ github.com/mxhoncharov/cron_zone_converter,num_dependents_deps.dev:0 github.com/mxhoncharov/sidekiq_unique_digests_cleaner,num_dependents_deps.dev:0 github.com/mxi/sipper, github.com/mxiao08/ds4s,num_dependents_deps.dev:0 +github.com/mxie/close-outdated-issues-action, +github.com/mxie/pagerduty-oncall-action, github.com/mxii/gfr-orm,num_dependents_deps.dev:0 github.com/mxii/ng2-numeric-input,num_dependents_deps.dev:0 github.com/mxii/ng2-offclick,num_dependents_deps.dev:0 @@ -843005,6 +858143,7 @@ github.com/mxwxz/xxhash,num_dependents_deps.dev:0 github.com/mxxcc-main/mxxcc,num_dependents_deps.dev:0 github.com/mxxii/parseley,num_dependents_deps.dev:400 github.com/mxxii/selderee,num_dependents_deps.dev:794 +github.com/mxxlrfu/friendly-code-review-notifier, github.com/mxxn/mx-bitcoin-address,num_dependents_deps.dev:0 github.com/mxxo/dose2gmsh,num_dependents_deps.dev:0 github.com/mxxo/interakt,num_dependents_deps.dev:0 @@ -843041,6 +858180,7 @@ github.com/my-js-ventures/file-uploader,num_dependents_deps.dev:0 github.com/my-js-ventures/mocha-internal-promise-test,num_dependents_deps.dev:0 github.com/my-milk/baidupankey,num_dependents_deps.dev:0 github.com/my-mulch/big-box, +github.com/my-ninja/s3-upload-cloudfront-invalidation-google-closure, github.com/my-nodejs-practice/anyw,num_dependents_deps.dev:0 github.com/my-number/myna,num_dependents_deps.dev:0 github.com/my-number/streamsha,num_dependents_deps.dev:0 @@ -843080,6 +858220,7 @@ github.com/my9074/koa2-nginx,num_dependents_deps.dev:0 github.com/myAotuBest/template, github.com/myBingk/jtable,num_dependents_deps.dev:0 github.com/myCenter-Roblox/mycenter-npm,num_dependents_deps.dev:0 +github.com/myConsciousness/bluesky-post, github.com/myConsciousness/mac-battery-visitor, github.com/myDevicesIoT/Cayenne-MQTT-Python, github.com/myDevicesIoT/cayennejs,num_dependents_deps.dev:0 @@ -843286,6 +858427,13 @@ github.com/mychaelgo/gojek,num_dependents_deps.dev:0 github.com/mychaelgo/laio, github.com/mychewcents/e2e-encryption,num_dependents_deps.dev:0 github.com/mychiux413/create-multi-langs,num_dependents_deps.dev:0 +github.com/myci-actions/add-deb-repo, +github.com/myci-actions/add-pacman-repo, +github.com/myci-actions/append-to-path-windows, +github.com/myci-actions/checkout, +github.com/myci-actions/export-env-var, +github.com/myci-actions/export-env-var-powershell, +github.com/myci-actions/publish-nuget, github.com/mycicle/mychain,num_dependents_deps.dev:0 github.com/mycicle/yamlval, github.com/mycila/guice,num_dependents_deps.dev:238 @@ -843447,6 +858595,10 @@ github.com/mydatamyconsent/nodejs-sdk,num_dependents_deps.dev:0 github.com/mydataspace/mydataspace,num_dependents_deps.dev:0 github.com/mydataspace/pug-async,num_dependents_deps.dev:0 github.com/mydawn2/gmsm,num_dependents_deps.dev:0 +github.com/mydea/action-tag-date-version, +github.com/mydea/action-wait-for-api, +github.com/mydea/actions-ember-testing, +github.com/mydea/ember-cli-code-coverage-action, github.com/mydea/ember-cli-release-tag,num_dependents_deps.dev:0 github.com/mydea/ember-date-components,num_dependents_deps.dev:0 github.com/mydea/ember-indexeddb, @@ -843731,6 +858883,7 @@ github.com/mykiimike/jen,num_dependents_deps.dev:0 github.com/mykiimike/optimizeme,num_dependents_deps.dev:0 github.com/mykiimike/react-recycling,num_dependents_deps.dev:0 github.com/mykiimike/sysbeat,num_dependents_deps.dev:0 +github.com/mykiwi/cleanup-disabled-workflows, github.com/myklam/react-native-intents,num_dependents_deps.dev:0 github.com/myklt/myk-spa,num_dependents_deps.dev:0 github.com/mykolaharmash/git-jump,num_dependents_deps.dev:0 @@ -843746,6 +858899,7 @@ github.com/myl2017/gulu,num_dependents_deps.dev:0 github.com/myl2017/wheels,num_dependents_deps.dev:0 github.com/myl7/bangumirror,num_dependents_deps.dev:0 github.com/myl7/brotli-dec-wasm,num_dependents_deps.dev:0 +github.com/myl7/gravatar2twitter, github.com/myl7/mldown,num_dependents_deps.dev:0 github.com/myl7/mp3lify,num_dependents_deps.dev:0 github.com/myl7/savid,num_dependents_deps.dev:0 @@ -843897,6 +859051,7 @@ github.com/mymickey/upload-oss,num_dependents_deps.dev:0 github.com/mymikasa/mktmp,num_dependents_deps.dev:0 github.com/mymindstorm/matrix-appservice-mumble,num_dependents_deps.dev:0 github.com/mymindstorm/npm-license-generator,num_dependents_deps.dev:0 +github.com/mymindstorm/setup-emsdk, github.com/myminicommission/api,num_dependents_deps.dev:0 github.com/myminicommission/external-data-manager,num_dependents_deps.dev:0 github.com/myminicommission/go-bsdata,num_dependents_deps.dev:0 @@ -844137,6 +859292,7 @@ github.com/mypalmike/csplitb, github.com/myparcelbe/checkout,num_dependents_deps.dev:0 github.com/myparcelnl/delivery-options, github.com/myparcelnl/eslint-config,num_dependents_deps.dev:0 +github.com/mypchas6fans/action-check-domain, github.com/mypebble/backbone-superrouter,num_dependents_deps.dev:0 github.com/mypebble/django-datadog, github.com/mypebble/django-feature-flipper, @@ -844193,6 +859349,7 @@ github.com/myprivatealaska/bradfield-csi-ds,num_dependents_deps.dev:0 github.com/myprivatealaska/csi-networking,num_dependents_deps.dev:0 github.com/myprysm/generator-alfresco,num_dependents_deps.dev:0 github.com/myprysm/vertx-utils,num_dependents_deps.dev:14 +github.com/mypthub/mypthub-slack, github.com/mypurecloud/browserama,num_dependents_deps.dev:0 github.com/mypurecloud/genesys-cloud-client-auth,num_dependents_deps.dev:0 github.com/mypurecloud/genesys-cloud-webrtc-sdk,num_dependents_deps.dev:0 @@ -844226,6 +859383,7 @@ github.com/myrcutio/browser-scss,num_dependents_deps.dev:0 github.com/myrddraall/heroesbrowser-heroprotocol,num_dependents_deps.dev:0 github.com/myrddraall/heroesbrowser-mpq,num_dependents_deps.dev:0 github.com/myreach-sa/capacitor-native-share,num_dependents_deps.dev:0 +github.com/myrealtrip/github-slack-notify-action, github.com/myrefer/go-slack-interactive,num_dependents_deps.dev:0 github.com/myren-xyz/ffmpeg-service,num_dependents_deps.dev:0 github.com/myrfy001/piepicker, @@ -844262,8 +859420,12 @@ github.com/myrotvorets/eslint-config-myrotvorets-preact-ts,num_dependents_deps.d github.com/myrotvorets/eslint-config-myrotvorets-ts,num_dependents_deps.dev:0 github.com/myrotvorets/express-acceptsjson-middleware,num_dependents_deps.dev:0 github.com/myrotvorets/express-async-middleware-wrapper,num_dependents_deps.dev:0 +github.com/myrotvorets/info-from-package-json-action, +github.com/myrotvorets/kubectl-action, github.com/myrotvorets/opentelemetry-plugin-knex,num_dependents_deps.dev:0 github.com/myrotvorets/promise-chunk,num_dependents_deps.dev:0 +github.com/myrotvorets/set-commit-status-action, +github.com/myrotvorets/trigger-repository-dispatch-action, github.com/myrovh/eslint-config-bigbrain,num_dependents_deps.dev:0 github.com/myrovh/license_counter,num_dependents_deps.dev:0 github.com/myrpg-fun/lizzi,num_dependents_deps.dev:0 @@ -844506,6 +859668,7 @@ github.com/mystor/slag,num_dependents_deps.dev:0 github.com/mystor/synstructure,"Google,num_dependents_deps.dev:7244" github.com/mystorp/node-zipfile-diff,num_dependents_deps.dev:0 github.com/mystorp/simplebuild, +github.com/mystral-ai/devtale, github.com/mystrdat/gonzo-tools,num_dependents_deps.dev:0 github.com/mystrdat/iddqd-tools,num_dependents_deps.dev:0 github.com/mystrdat/layout-tools,num_dependents_deps.dev:0 @@ -844690,6 +859853,7 @@ github.com/myusuf3/loading, github.com/myusuf3/octogit, github.com/myusuf3/racks, github.com/myusufcse/DashBoardPro, +github.com/myusufcse/microsoft-teams-message-bot, github.com/myusufirfanh/go-demo-service,num_dependents_deps.dev:0 github.com/myutex/kui.vue-modal, github.com/myuu222/myuugo,num_dependents_deps.dev:0 @@ -844756,6 +859920,7 @@ github.com/myyang/imbot,num_dependents_deps.dev:0 github.com/myyasuda/sphinx_materialdesign_theme, github.com/myyasuda/sphinxbootstrap4theme, github.com/myygunduz/pyqtCuWi, +github.com/myyk/git-democracy, github.com/myyra/ddns,num_dependents_deps.dev:0 github.com/myyrakle/REAL_JSP, github.com/myyrakle/actix-generator,num_dependents_deps.dev:0 @@ -844875,6 +860040,7 @@ github.com/mzane42/react-day-time-picker,num_dependents_deps.dev:0 github.com/mzane42/react-image-comparison-slider,num_dependents_deps.dev:0 github.com/mzanj/lodown,num_dependents_deps.dev:0 github.com/mzarnowski/microlibs,num_dependents_deps.dev:0 +github.com/mzbac/codeguard-gpt-action, github.com/mzbac/react-glamorous-tooltip,num_dependents_deps.dev:0 github.com/mzbac/react-glamorous-tour,num_dependents_deps.dev:0 github.com/mzbac/react-introjs, @@ -845002,6 +860168,7 @@ github.com/mztnnrt/ts-zoom,num_dependents_deps.dev:0 github.com/mzuccaroli/angular-browser-globals,num_dependents_deps.dev:0 github.com/mzuccaroli/angular-google-tag-manager,num_dependents_deps.dev:0 github.com/mzucker/noteshrink, +github.com/mzukovec/ec2-github-runner, github.com/mzulqarnain1/Flask-YAML-Fixtures, github.com/mzumi/gh-review,num_dependents_deps.dev:0 github.com/mzumi/mzumi,num_dependents_deps.dev:0 @@ -845042,6 +860209,7 @@ github.com/n-at/naive-ui-locale-ru,num_dependents_deps.dev:0 github.com/n-borisov-ms/test,num_dependents_deps.dev:0 github.com/n-bryant/classnames-helper,num_dependents_deps.dev:0 github.com/n-bryant/nb-material-theme,num_dependents_deps.dev:0 +github.com/n-creativesystem/envsubst-actions, github.com/n-creativesystem/fwncs-contrib,num_dependents_deps.dev:0 github.com/n-creativesystem/go-fwncs,num_dependents_deps.dev:0 github.com/n-creativesystem/go-rbns,num_dependents_deps.dev:0 @@ -845101,6 +860269,7 @@ github.com/n-lavrenko/react-native-maps-directions,num_dependents_deps.dev:0 github.com/n-magi/go-langmultithreadtest,num_dependents_deps.dev:0 github.com/n-makarin/booter-tools,num_dependents_deps.dev:0 github.com/n-makarin/clappr-audio-selector-plugin, +github.com/n-makoto/hatena-entry-poster, github.com/n-margalit/reporters,num_dependents_deps.dev:0 github.com/n-marshall/kolorwheel.js, github.com/n-marshall/roots,num_dependents_deps.dev:0 @@ -845121,6 +860290,7 @@ github.com/n-riesco/nel,num_dependents_deps.dev:36 github.com/n-riesco/simple-sm,num_dependents_deps.dev:0 github.com/n-riesco/v8stack,num_dependents_deps.dev:0 github.com/n-rook/winston-prometheus-transport,num_dependents_deps.dev:0 +github.com/n-ryu/test-reporter, github.com/n-s-f/dgraph, github.com/n-s-f/dwtviz, github.com/n-s-f/hmm, @@ -845138,6 +860308,7 @@ github.com/n-ts/DateNTime, github.com/n-ulricksen/nes-emulator,num_dependents_deps.dev:0 github.com/n-vitas/config,num_dependents_deps.dev:0 github.com/n-vlahovic/couchdb3, +github.com/n-vr/setup-platformio-action, github.com/n-wach/camino, github.com/n-warb/tiny,num_dependents_deps.dev:0 github.com/n-works/node,num_dependents_deps.dev:0 @@ -845165,6 +860336,7 @@ github.com/n0bisuke/qiita-analyzer,num_dependents_deps.dev:0 github.com/n0bisuke/skyway-webrtc-gateway-sdk-node.js,num_dependents_deps.dev:0 github.com/n0bl3/generator-express-plus-plus,num_dependents_deps.dev:0 github.com/n0bode/chidoc,num_dependents_deps.dev:0 +github.com/n0bra1n3r/repository-mirroring-action, github.com/n0ch4t/mrlog,num_dependents_deps.dev:0 github.com/n0ct3ri4/OpenCDN,num_dependents_deps.dev:0 github.com/n0ct3ri4/kaliscripter, @@ -845198,6 +860370,7 @@ github.com/n0name45/node-red-contrib-yandex-station-management,num_dependents_de github.com/n0ncetonic/amass,num_dependents_deps.dev:0 github.com/n0nick/shaft,num_dependents_deps.dev:0 github.com/n0nliner/netwbase, +github.com/n0npax/crystal-ball, github.com/n0npax/lime-comb, github.com/n0npax/sidecar_http_dispatcher,num_dependents_deps.dev:0 github.com/n0rad/bootstrap,num_dependents_deps.dev:0 @@ -845259,6 +860432,7 @@ github.com/n0x1s/getpw, github.com/n123al/oraclesql,num_dependents_deps.dev:0 github.com/n13org/hello-world-rubygems,num_dependents_deps.dev:0 github.com/n13org/jekyll-plugin-template,num_dependents_deps.dev:0 +github.com/n14s/github-mirror-action, github.com/n15g/coh-content-db,num_dependents_deps.dev:0 github.com/n15g/coh-content-db-homecoming,num_dependents_deps.dev:0 github.com/n15g/spring-boot-gae,num_dependents_deps.dev:0 @@ -845282,6 +860456,7 @@ github.com/n1crack/mselect,num_dependents_deps.dev:0 github.com/n1crack/vuefinder,num_dependents_deps.dev:0 github.com/n1ghtie/amp-inline-css-cli, github.com/n1ghtraven/instagrab,num_dependents_deps.dev:0 +github.com/n1hility/cancel-previous-runs, github.com/n1k0/NSMemcached, github.com/n1k0/backbone-events-standalone,num_dependents_deps.dev:278 github.com/n1k0/casperjs,num_dependents_deps.dev:2 @@ -845450,6 +860625,7 @@ github.com/n3tr/expo-instagram-story-circle,num_dependents_deps.dev:0 github.com/n3tr/hubot-gistme,num_dependents_deps.dev:0 github.com/n3tr/modal-container, github.com/n3tr/npm-template,num_dependents_deps.dev:0 +github.com/n3tuk/action-synchronise-upstream, github.com/n3utrino/gulp-angular-templatecache,num_dependents_deps.dev:0 github.com/n3v3rd1e/funwork,num_dependents_deps.dev:0 github.com/n3v3rd1e/react-elm,num_dependents_deps.dev:0 @@ -845501,10 +860677,12 @@ github.com/n4kz/react-native-pages,num_dependents_deps.dev:0 github.com/n4kz/stalin.js,num_dependents_deps.dev:0 github.com/n4kz/weaver, github.com/n4m1/projet_forum,num_dependents_deps.dev:0 +github.com/n4mespace/get-env-file-from-vault-action, github.com/n4mine/cacheserver,num_dependents_deps.dev:0 github.com/n4mine/gomodtest,num_dependents_deps.dev:0 github.com/n4mine/lttb-practice,num_dependents_deps.dev:0 github.com/n4mine/prometheus_remote_client_golang,num_dependents_deps.dev:0 +github.com/n4n0GH/pinata-manager, github.com/n4n3x/verretech-microservices,num_dependents_deps.dev:0 github.com/n4nagappan/castlog,num_dependents_deps.dev:0 github.com/n4o847/compile-time-typescript,num_dependents_deps.dev:0 @@ -845521,6 +860699,7 @@ github.com/n4y0n/node-xbee,num_dependents_deps.dev:0 github.com/n5a45m7/leetcode,num_dependents_deps.dev:0 github.com/n5ro/aframe-extras,criticality_score:0.412860 github.com/n5ro/aframe-physics-system,criticality_score:0.335650 +github.com/n6171028/julia-package-publish, github.com/n64dev/cen64,criticality_score:0.374640 github.com/n6g7/damn, github.com/n6g7/firebase-backup,num_dependents_deps.dev:0 @@ -845589,6 +860768,7 @@ github.com/n8jadams/smoothr,num_dependents_deps.dev:0 github.com/n8jhj/SoonQ, github.com/n8jhj/arbory, github.com/n8jhj/soon-kyoo, +github.com/n8maninger/action-golang-test, github.com/n8maninger/siad,num_dependents_deps.dev:0 github.com/n8maninger/us,num_dependents_deps.dev:0 github.com/n8n-io/n8n,"criticality_score:0.636310,num_dependents_deps.dev:199" @@ -845752,6 +860932,8 @@ github.com/nabedge/mixer2,num_dependents_deps.dev:0 github.com/nabedge/mixer2-cacheable,num_dependents_deps.dev:0 github.com/nabedge/mixer2-springmvc-archetype,num_dependents_deps.dev:0 github.com/nabeel-ahmad/express-mongoose-docs,num_dependents_deps.dev:0 +github.com/nabeel-shakeel/graphite-docker-action, +github.com/nabeel-shakeel/react-native-version, github.com/nabeelfahmi12/AutoNeuro-Documentation, github.com/nabeelfahmi12/pypi_vowel_check, github.com/nabeeln7/gateway,num_dependents_deps.dev:0 @@ -845763,6 +860945,7 @@ github.com/nabeelvalley/AngularDatetimePicker,num_dependents_deps.dev:0 github.com/nabeelvalley/AngularFileInput,num_dependents_deps.dev:0 github.com/nabeelvalley/project-init,num_dependents_deps.dev:0 github.com/nabeelvalley/startover,num_dependents_deps.dev:0 +github.com/nabeelvalley/twitter-bio-update, github.com/nabeen/gdwrap, github.com/nabeen/gswrap, github.com/nabehide/GoogleMyMaps, @@ -846087,6 +861270,7 @@ github.com/nadavspi/appendContent.js,num_dependents_deps.dev:0 github.com/nadavspi/fullPage.js,num_dependents_deps.dev:0 github.com/nadavspi/peekaboo.js,num_dependents_deps.dev:0 github.com/nadbm/react-datasheet,"criticality_score:0.360200,num_dependents_deps.dev:2" +github.com/nadbot/code-sign-action, github.com/nadchif/html-duration-picker.js,num_dependents_deps.dev:0 github.com/nadchif/soccer-jersey,num_dependents_deps.dev:0 github.com/naddeoa/automatonjs,num_dependents_deps.dev:0 @@ -846113,6 +861297,8 @@ github.com/nade-harlow/golangstack,num_dependents_deps.dev:0 github.com/nadeemc/archiver,num_dependents_deps.dev:0 github.com/nadeemc/ra-jsonapi-client,num_dependents_deps.dev:0 github.com/nadeemjamali/yadag,num_dependents_deps.dev:0 +github.com/nadeemjazmawe/Sign-action-signtool.exe, +github.com/nadeemjazmawe/inno-setup-action-cli, github.com/nadeemlab/SPT, github.com/nadeemlab/coincidencetest, github.com/nadeemramsing/express-init-routes,num_dependents_deps.dev:0 @@ -846120,6 +861306,8 @@ github.com/nadeemramsing/gulp-increment-version,num_dependents_deps.dev:0 github.com/nadeemramsing/mongoose-populate-helper,num_dependents_deps.dev:0 github.com/nadeemramsing/mrq-client-query,num_dependents_deps.dev:0 github.com/nadeemramsing/node-firebird,num_dependents_deps.dev:0 +github.com/nadeemyaseen-rs/github-org-member-contribution-action, +github.com/nadeemyaseen-rs/member_Allcommits_org_repo, github.com/nadeesha/breaktime, github.com/nadeesha/jest-snapper, github.com/nadeesha/pselect,num_dependents_deps.dev:0 @@ -846155,6 +861343,12 @@ github.com/nadilas/todo,num_dependents_deps.dev:0 github.com/nadileaf/download-crx,num_dependents_deps.dev:0 github.com/nadilk/x-mask,num_dependents_deps.dev:0 github.com/nadilk/xv-validation,num_dependents_deps.dev:0 +github.com/nadimrizk83/sncicd-apply-changes, +github.com/nadimrizk83/sncicd-install-app, +github.com/nadimrizk83/sncicd-instance-scan, +github.com/nadimrizk83/sncicd-publish-app, +github.com/nadimrizk83/sncicd-rollback-app, +github.com/nadimrizk83/sncicd-tests-run, github.com/nadimsheikh07/material-ui-admin,num_dependents_deps.dev:0 github.com/nadimsheikh07/material-ui-collapse-menu,num_dependents_deps.dev:0 github.com/nadimsheikh07/material-ui-group-checkbox,num_dependents_deps.dev:0 @@ -846171,6 +861365,7 @@ github.com/nadirbasalamah/protodemo,num_dependents_deps.dev:0 github.com/nadirberrara/minatopkg,num_dependents_deps.dev:0 github.com/nadirhamid/angular-selectbox,num_dependents_deps.dev:0 github.com/nadirhamid/cordova-plugin-sip,num_dependents_deps.dev:0 +github.com/nadirhamid/ecs-deploy, github.com/nadirhamid/mdDataTable,num_dependents_deps.dev:0 github.com/nadirizr/bitbucket_linter, github.com/nadirizr/dazel, @@ -846323,6 +861518,8 @@ github.com/nagarsuresh/ngx-mousetrap-angular,num_dependents_deps.dev:0 github.com/nagarsuresh/rxify-worker-angular,num_dependents_deps.dev:0 github.com/nagarwal26/project1, github.com/nagaseyami/saucenao-telegram-bot,num_dependents_deps.dev:0 +github.com/nagata-yoshiteru/action-latex, +github.com/nagata-yoshiteru/deploy-to-dropbox, github.com/nagataaaas/Iro, github.com/nagataaaas/Jusho, github.com/nagataaaas/defern, @@ -846513,6 +861710,10 @@ github.com/naholyr/punch-markdown-highlight, github.com/naholyr/punch-rss-generator,num_dependents_deps.dev:0 github.com/naholyr/show-time,num_dependents_deps.dev:0 github.com/naholyr/videocast,num_dependents_deps.dev:0 +github.com/nahsi/files-to-matrix, +github.com/nahsi/setup-cargo-dist, +github.com/nahsi/setup-hashi-tool, +github.com/nahsi/setup-ipfs, github.com/nahsorad/sort-files.js,num_dependents_deps.dev:0 github.com/nahtnam/jv,num_dependents_deps.dev:0 github.com/nahue-f/property-waterfall,num_dependents_deps.dev:0 @@ -846545,6 +861746,7 @@ github.com/naichazhenhaohe/Nei,num_dependents_deps.dev:0 github.com/naicode/express-jwt-axss,num_dependents_deps.dev:0 github.com/naicoi2006/cookiejar-browser,num_dependents_deps.dev:0 github.com/naidishuli/ncons,num_dependents_deps.dev:0 +github.com/naiduarvind/gha-honeymarker, github.com/naidukarthi2193/bookstore_backend,num_dependents_deps.dev:0 github.com/naiduprakash/prakash-react-form-validator,num_dependents_deps.dev:0 github.com/naiduprakash/react-beautiful-hooks,num_dependents_deps.dev:0 @@ -846560,6 +861762,7 @@ github.com/naiim-khaskhoussi/xlmg, github.com/naij/gulp-magix-combine,num_dependents_deps.dev:0 github.com/naij/gulp-magix-spmlog,num_dependents_deps.dev:0 github.com/naij/sugar-coat,num_dependents_deps.dev:0 +github.com/naijabx/update-formula-homebrew-action, github.com/naijopkr/get-prime-number, github.com/naikipl/react-native-buffer-image-size,num_dependents_deps.dev:0 github.com/naikus/svg-gauge,num_dependents_deps.dev:10 @@ -846671,6 +861874,8 @@ github.com/nairobi-gophers/fupisha,num_dependents_deps.dev:0 github.com/nairraghav/lists-library, github.com/nairraghav/ron-cipher, github.com/nais/aivenator,num_dependents_deps.dev:0 +github.com/nais/attest-sign, +github.com/nais/attestation, github.com/nais/babylon,num_dependents_deps.dev:0 github.com/nais/deploy,num_dependents_deps.dev:0 github.com/nais/device,num_dependents_deps.dev:0 @@ -846685,9 +861890,12 @@ github.com/nais/kolide-check-validator,num_dependents_deps.dev:0 github.com/nais/kolide-event-handler,num_dependents_deps.dev:0 github.com/nais/liberator,num_dependents_deps.dev:0 github.com/nais/naiserator,num_dependents_deps.dev:0 +github.com/nais/naislinter, github.com/nais/naisplater,num_dependents_deps.dev:0 github.com/nais/named,num_dependents_deps.dev:0 github.com/nais/outtune,num_dependents_deps.dev:0 +github.com/nais/salsa, +github.com/nais/salsa-registry, github.com/nais/sondr3-skeleton,num_dependents_deps.dev:0 github.com/nais/testapp,num_dependents_deps.dev:0 github.com/nais/tobac,num_dependents_deps.dev:0 @@ -846720,9 +861928,12 @@ github.com/naivenmt/datasets, github.com/naiveroboticist/dsigner, github.com/naiveroboticist/pdfrw_rotate, github.com/naivesound/expr.js,num_dependents_deps.dev:0 +github.com/naivesystems/googlecpp-action, github.com/naivetools/naive-model,num_dependents_deps.dev:0 github.com/naivetools/naive-route,num_dependents_deps.dev:0 github.com/naivewong/radix-priority-search-tree,num_dependents_deps.dev:0 +github.com/naiw1023/notify-telegram, +github.com/naiw1023/notify_telegram_pull_request, github.com/naiwupu/tgb,num_dependents_deps.dev:0 github.com/naixinxiaozi/alipay-spring-boot-starter,num_dependents_deps.dev:0 github.com/naixinxiaozi/editorbar-java-sdk,num_dependents_deps.dev:0 @@ -846940,6 +862151,7 @@ github.com/nakajijapan/podspec_bump,num_dependents_deps.dev:0 github.com/nakajima/rack-flash,num_dependents_deps.dev:4 github.com/nakajima/slidedown,num_dependents_deps.dev:0 github.com/nakajimakota/log-api,num_dependents_deps.dev:0 +github.com/nakajiss/DockerSeleniumAction, github.com/nakajmg/detect-css-colors,num_dependents_deps.dev:6 github.com/nakajmg/electron-search-text,num_dependents_deps.dev:0 github.com/nakajmg/gh-diff-html,num_dependents_deps.dev:0 @@ -846968,6 +862180,7 @@ github.com/nakamura5akihito/opensec-util,num_dependents_deps.dev:0 github.com/nakamura5akihito/six-oval,num_dependents_deps.dev:0 github.com/nakamura5akihito/six-util,num_dependents_deps.dev:0 github.com/nakamura5akihito/six-vuln,num_dependents_deps.dev:0 +github.com/nakamuraos/google-chat-notifications, github.com/nakandev/sphinxpapyrus-docxbuilder, github.com/nakanokurenai/certbot-dns-conoha, github.com/nakanokurenai/mongoose-auto-increment,num_dependents_deps.dev:0 @@ -847038,6 +862251,7 @@ github.com/nakulkundra/ngx-slick,num_dependents_deps.dev:0 github.com/nakulpathak3/personal-blog-gem,num_dependents_deps.dev:0 github.com/nakulrathore/HotSnackbar,num_dependents_deps.dev:0 github.com/nakulsapkal/lotide, +github.com/nakulshukla8/github-action-issue-to-jira, github.com/nakupanda/bootstrap3-dialog,"criticality_score:0.367710,num_dependents_deps.dev:0" github.com/nakusha/go_rest,num_dependents_deps.dev:0 github.com/nakusyat/react-sketch,num_dependents_deps.dev:0 @@ -847150,6 +862364,7 @@ github.com/namacha/python-magichue, github.com/namack/ember-summernote,num_dependents_deps.dev:0 github.com/namadnuno/Sample-JavaScript-Slider-ES2017,num_dependents_deps.dev:0 github.com/namadnuno/vue-attachment,num_dependents_deps.dev:0 +github.com/namaggarwal/clasp-token-action, github.com/namaggarwal/namantestpackage, github.com/namaggarwal/splitwise, github.com/namaggarwal/webauth-helpers,num_dependents_deps.dev:0 @@ -847308,6 +862523,7 @@ github.com/namespace-ee/drf-sideloading, github.com/namespace-ee/pyscard-json-rpc, github.com/namespace-ee/react-calendar-timeline,"criticality_score:0.460670,num_dependents_deps.dev:2" github.com/namespacedevs/inimus,num_dependents_deps.dev:0 +github.com/namespacelabs/breakpoint-action, github.com/nametacker/node-templater-mailer-microservice,num_dependents_deps.dev:0 github.com/nametacker/node-templater-mailer-microservice-client,num_dependents_deps.dev:0 github.com/nametaginc/nametag-js,num_dependents_deps.dev:0 @@ -847432,6 +862648,8 @@ github.com/namitos/rpc,num_dependents_deps.dev:0 github.com/namitos/schema,num_dependents_deps.dev:0 github.com/namitoyokota/npm-namito,num_dependents_deps.dev:0 github.com/namix-io/virtual-kubelet,num_dependents_deps.dev:0 +github.com/namiyousef/action-kaggle-gpu-test, +github.com/namiyousef/action-python-package-build, github.com/namjo/js-testlib,num_dependents_deps.dev:0 github.com/namjul/hans,num_dependents_deps.dev:0 github.com/namkai/create-react-app,num_dependents_deps.dev:0 @@ -847472,6 +862690,7 @@ github.com/namo-io/kit,num_dependents_deps.dev:0 github.com/namo-io/react-reactions,num_dependents_deps.dev:0 github.com/namoda378/transformer-yamljson,num_dependents_deps.dev:0 github.com/namonak/hackerrank,num_dependents_deps.dev:0 +github.com/namoscato/action-tinify, github.com/namoscato/angular-jasmine-boilerplate,num_dependents_deps.dev:0 github.com/namoscato/angular-multiselect,num_dependents_deps.dev:0 github.com/namoscato/html-to-mrkdwn,num_dependents_deps.dev:0 @@ -847495,6 +862714,7 @@ github.com/namratabhadauriya/gomodule,num_dependents_deps.dev:0 github.com/namreg/cadvisor,num_dependents_deps.dev:0 github.com/namreg/certstrap,num_dependents_deps.dev:0 github.com/namreg/goreleaser,num_dependents_deps.dev:0 +github.com/namse/aws-cloudformation-outputs-action, github.com/namshi/PhotoViewJS,num_dependents_deps.dev:0 github.com/namshi/cdnwhaaat,num_dependents_deps.dev:0 github.com/namshi/clusterjs,num_dependents_deps.dev:0 @@ -847586,6 +862806,7 @@ github.com/namvu9/keylime,num_dependents_deps.dev:0 github.com/namwkim/bubbleview,Google github.com/namwkim/storycurve, github.com/namyoungkim/nyflow, +github.com/nan-wang/jekyll4-deploy-gh-pages, github.com/nan-yu/application,num_dependents_deps.dev:0 github.com/nan21/nan21.dnet.core,num_dependents_deps.dev:5 github.com/nan21/nan21.dnet.core.i18n,num_dependents_deps.dev:0 @@ -847625,6 +862846,9 @@ github.com/nanangqq/react-naver-map,num_dependents_deps.dev:0 github.com/nanaouyang/dikskocgaix,num_dependents_deps.dev:0 github.com/nanaouyang/no-http,num_dependents_deps.dev:0 github.com/nanaouyang/sonajs,num_dependents_deps.dev:0 +github.com/nanasess/composer-installer-action, +github.com/nanasess/setup-chromedriver, +github.com/nanasess/setup-php, github.com/nanashake/go-errors,num_dependents_deps.dev:0 github.com/nanashake/go-mod-test,num_dependents_deps.dev:0 github.com/nanashake/mcbeam-plugins,num_dependents_deps.dev:0 @@ -847649,6 +862873,7 @@ github.com/nanato12/line-bot-sdk-rust,num_dependents_deps.dev:0 github.com/nanato12/line-bot-tool, github.com/nanato12/line-theme-editor, github.com/nanato12/mercaripy, +github.com/nanato12/pychecker, github.com/nanato12/pylinebot, github.com/nanato12/term-printer, github.com/nanayunn/grpc-mongo-crud,num_dependents_deps.dev:0 @@ -847884,6 +863109,7 @@ github.com/nanobowers/py2cr, github.com/nanobox-cc/nano-client, github.com/nanobox-io/nanobox,criticality_score:0.389770 github.com/nanobox-io/nanobox-cli,num_dependents_deps.dev:0 +github.com/nanobus/push-action, github.com/nanoc/nanoc,"criticality_score:0.600110,num_dependents_deps.dev:70" github.com/nanoc/nanoc-git,num_dependents_deps.dev:0 github.com/nanocloudx/drossel-datetime,num_dependents_deps.dev:0 @@ -847908,8 +863134,11 @@ github.com/nanoexpress/nanoexpress, github.com/nanoexpress/pro,num_dependents_deps.dev:0 github.com/nanoflite/no-ip-updater,num_dependents_deps.dev:0 github.com/nanoframework/Home,criticality_score:0.410160 +github.com/nanoframework/nanobuild, +github.com/nanoframework/nanodu, github.com/nanofuxion/arjs-react,num_dependents_deps.dev:0 github.com/nanogiants/easy-errors,num_dependents_deps.dev:0 +github.com/nanogiants/ios-build-action, github.com/nanogiants/nano-nodegen,num_dependents_deps.dev:0 github.com/nanogiants/nestjs-swagger-api-exception-decorator,num_dependents_deps.dev:0 github.com/nanograv/PINT, @@ -847977,11 +863206,13 @@ github.com/nanoporetech/tombo, github.com/nanoporetech/ts-argue,num_dependents_deps.dev:0 github.com/nanoporetech/ts-extended-types,num_dependents_deps.dev:0 github.com/nanoporetech/ts-runtime-typecheck, +github.com/nanopx/action-ovpn, github.com/nanopx/action-sendgrid-sync, github.com/nanopx/fireseeder,num_dependents_deps.dev:0 github.com/nanopx/gulp-esdoc,num_dependents_deps.dev:0 github.com/nanopx/simple-object-schema,num_dependents_deps.dev:0 github.com/nanorobocop/worldping,num_dependents_deps.dev:0 +github.com/nanos-world/nanos-store-action, github.com/nanosai/grid-ops-java,num_dependents_deps.dev:0 github.com/nanosai/mem-ops-java,num_dependents_deps.dev:1 github.com/nanosai/rion-ops-java,num_dependents_deps.dev:0 @@ -848008,8 +863239,10 @@ github.com/nanotexnolagiya/client-request-substitute, github.com/nanotexnolagiya/fop,num_dependents_deps.dev:0 github.com/nanots/guard,num_dependents_deps.dev:0 github.com/nanots/pubsub,num_dependents_deps.dev:0 +github.com/nanoufo/action-upload-artifacts-and-release-assets, github.com/nanoutils/nanoutils,num_dependents_deps.dev:0 github.com/nanov/node-fe1-fpe,num_dependents_deps.dev:0 +github.com/nanov94/jest-coverage-comment-diff, github.com/nanovazquez/exos,num_dependents_deps.dev:0 github.com/nanovazquez/redux-thunk-promise,num_dependents_deps.dev:0 github.com/nanovazquez/yargs-interactive,num_dependents_deps.dev:66 @@ -848130,12 +863363,14 @@ github.com/nanzhong/tester,num_dependents_deps.dev:0 github.com/nanzm/create-h5-app,num_dependents_deps.dev:0 github.com/nanzm/dora,num_dependents_deps.dev:0 github.com/nanzm/errlock,num_dependents_deps.dev:0 +github.com/nanzm/get-time-action, github.com/nanzm/postcss-px2rpx-transform, github.com/nanzm/sourcemap,num_dependents_deps.dev:0 github.com/nanzm/tiny-cli,num_dependents_deps.dev:0 github.com/nanzm/uty, github.com/nao-pon/flysystem-google-drive,criticality_score:0.334880 github.com/nao0x2c6/ppad, +github.com/nao1215/actions-hottest, github.com/nao1412/postcode,num_dependents_deps.dev:0 github.com/nao1412/timestables,num_dependents_deps.dev:0 github.com/nao1412/timestables-and-notice-board,num_dependents_deps.dev:0 @@ -848206,6 +863441,8 @@ github.com/naomei/class-namer,num_dependents_deps.dev:0 github.com/naomei/super-simple-emitter,num_dependents_deps.dev:0 github.com/naomei/walk,num_dependents_deps.dev:0 github.com/naomi-dev-com/golang_task,num_dependents_deps.dev:0 +github.com/naomi-lgbt/dependency-pin-check, +github.com/naomi-lgbt/eslint-disable-action, github.com/naomi-rc/2020-04-17-personal-npm-package,num_dependents_deps.dev:0 github.com/naomiaro/fade-curves,num_dependents_deps.dev:2 github.com/naomiaro/fade-maker,num_dependents_deps.dev:2 @@ -848230,6 +863467,7 @@ github.com/naomipol/dialog,num_dependents_deps.dev:0 github.com/naoned/angular-noty,num_dependents_deps.dev:0 github.com/naoned/naoned-cz-conventional-changelog,num_dependents_deps.dev:0 github.com/naoned/node-naoned-cli,num_dependents_deps.dev:0 +github.com/naoray/laravel-factory-prefill, github.com/naoredri/go-git,num_dependents_deps.dev:0 github.com/naorlivne/parse_it, github.com/naormatania/slack,num_dependents_deps.dev:0 @@ -848391,6 +863629,9 @@ github.com/nappjs/nappjs-graphql-api,num_dependents_deps.dev:0 github.com/nappjs/nappjs-jwt,num_dependents_deps.dev:0 github.com/nappjs/nappjs-rest-api,num_dependents_deps.dev:0 github.com/nappo/nappo, +github.com/napptive-actions/catalog-deploy-action, +github.com/napptive-actions/catalog-push-action, +github.com/napptive-actions/playground-github-action, github.com/napptive/nerrors,num_dependents_deps.dev:0 github.com/nappy-says/wallet,num_dependents_deps.dev:0 github.com/napramirez/simple-gitlab-api,num_dependents_deps.dev:0 @@ -848471,6 +863712,7 @@ github.com/narcisolato/go,num_dependents_deps.dev:0 github.com/narcispr/PyFreatboard, github.com/narcissujsk/openstackjsk,num_dependents_deps.dev:0 github.com/narco001/mockhs,num_dependents_deps.dev:0 +github.com/narcodico/base64-to-path, github.com/narcolepticsnowman/fntags,num_dependents_deps.dev:0 github.com/narcolepticsnowman/jpflat, github.com/narcolepticsnowman/redish,num_dependents_deps.dev:0 @@ -848633,6 +863875,10 @@ github.com/nariyu/gulp-dir-sync,num_dependents_deps.dev:0 github.com/nariyu/gulp-pngmin,num_dependents_deps.dev:0 github.com/nariyu/tempaa,num_dependents_deps.dev:0 github.com/narkane/talko-client,num_dependents_deps.dev:0 +github.com/narkdown/awesome-reading-list, +github.com/narkdown/notion2github, +github.com/narkdown/query-in-action, +github.com/narkdown/render-with-ejs, github.com/narkevicius/vatcher,num_dependents_deps.dev:0 github.com/narkhedegs/directory-to-tgz,num_dependents_deps.dev:0 github.com/narkhedek3/calender,num_dependents_deps.dev:0 @@ -848798,6 +864044,7 @@ github.com/narycc/autoTag,num_dependents_deps.dev:0 github.com/narzac/grunt-nghtml-uglify,num_dependents_deps.dev:0 github.com/narzac/nghtml-uglify,num_dependents_deps.dev:0 github.com/narze/100-days-of-code-ribbon,num_dependents_deps.dev:0 +github.com/narze/goragit, github.com/narze/skoy.js,num_dependents_deps.dev:0 github.com/narze/til-cli,num_dependents_deps.dev:0 github.com/narzod/dcb,num_dependents_deps.dev:0 @@ -848985,6 +864232,7 @@ github.com/nashirox/cinii-ruby,num_dependents_deps.dev:0 github.com/nashit93/nashit, github.com/nashlol/gst-go-binding,num_dependents_deps.dev:0 github.com/nashluffy/mtb-trails-api-golang,num_dependents_deps.dev:0 +github.com/nashmaniac/create-issue-action, github.com/nashmaniac/flask-helpers, github.com/nashory/irbench-python, github.com/nashrull/carapi,num_dependents_deps.dev:0 @@ -849014,6 +864262,7 @@ github.com/nasirhm/npm-nasirhussain,num_dependents_deps.dev:0 github.com/nasirkhan/laravel-starter,criticality_score:0.392120 github.com/nasirmamda/test-npm,num_dependents_deps.dev:0 github.com/nasirnooruddin/latest-indonesia-earthquake, +github.com/nasiruddinml/sonar-scan-action, github.com/nasiruddinml/sshmulti,num_dependents_deps.dev:0 github.com/nasjp/parabase,num_dependents_deps.dev:0 github.com/naskio/naskpy, @@ -849134,6 +864383,7 @@ github.com/nataliag26/course-phones-review,num_dependents_deps.dev:0 github.com/nataliazabelina/monitoring,num_dependents_deps.dev:0 github.com/natalidavid/lotide,num_dependents_deps.dev:0 github.com/natalieavramenko/project,num_dependents_deps.dev:0 +github.com/natalieb07/release-drafter, github.com/natalieg/softshadow,num_dependents_deps.dev:0 github.com/nataliehare/lodown,num_dependents_deps.dev:0 github.com/natalieklein/gpcsd, @@ -849172,6 +864422,7 @@ github.com/nataneb32/template-api,num_dependents_deps.dev:0 github.com/natanelia/dkrm-mongoose-paginate,num_dependents_deps.dev:0 github.com/natanfeitosa/pyfunctools, github.com/natanfudge/artifice,num_dependents_deps.dev:0 +github.com/natanlao/perl-critic-action, github.com/natanloterio/pomodoro-cli,num_dependents_deps.dev:0 github.com/natano/git-orm, github.com/natano/passta, @@ -849255,6 +864506,7 @@ github.com/nate-wilkins/box-maze,num_dependents_deps.dev:0 github.com/nate-wilkins/eslint-plugin-bdd,num_dependents_deps.dev:4 github.com/nate-wilkins/eslint-plugin-jsort,num_dependents_deps.dev:0 github.com/nateGeorge/download_yfinance_data, +github.com/natealcedo/pull-request-from-release-action, github.com/natebosch/vim-lsc,criticality_score:0.461890 github.com/natebrock/election-data,num_dependents_deps.dev:0 github.com/natebrock/electoral-votes,num_dependents_deps.dev:0 @@ -849400,6 +864652,7 @@ github.com/nater20k/brass-exchange-common,num_dependents_deps.dev:0 github.com/nateraw/BeautifulSauce, github.com/nateraw/encoded-video, github.com/nateraw/hf-hub-lightning, +github.com/nateraw/huggingface-sync-action, github.com/nateraw/huggingpics, github.com/naterayc/SCL014-md-links,num_dependents_deps.dev:0 github.com/naterchrdsn/snarl-wine-lookup,num_dependents_deps.dev:0 @@ -849442,6 +864695,10 @@ github.com/natescarlet/gotmpl,num_dependents_deps.dev:0 github.com/natescarlet/pixiv,num_dependents_deps.dev:0 github.com/natescarlet/qidian,num_dependents_deps.dev:0 github.com/natescarlet/snapshot,num_dependents_deps.dev:0 +github.com/natescherer/changelog-management-action, +github.com/natescherer/markdown-to-html-with-github-style-action, +github.com/natescherer/publish-powershell-action, +github.com/natescherer/update-powershell-metadata-action, github.com/nateshao/go-demo,num_dependents_deps.dev:0 github.com/nateshao/go-practice,num_dependents_deps.dev:0 github.com/nateshmbhat/pyYify, @@ -849706,6 +864963,7 @@ github.com/nathan818fr/async-loop,num_dependents_deps.dev:0 github.com/nathan818fr/gitmoji-cmd,num_dependents_deps.dev:0 github.com/nathan818fr/hipay-professional-sdk-js, github.com/nathan818fr/node-java-props,num_dependents_deps.dev:0 +github.com/nathan818fr/setup-java, github.com/nathan90/golang,num_dependents_deps.dev:0 github.com/nathanBrenner/react-data-explorer,num_dependents_deps.dev:0 github.com/nathanKith/package-manager,num_dependents_deps.dev:0 @@ -849843,10 +865101,12 @@ github.com/nathanchu/notion-react-renderer,num_dependents_deps.dev:0 github.com/nathanchu/to-logflare,num_dependents_deps.dev:0 github.com/nathanclark/ember-animejs,num_dependents_deps.dev:0 github.com/nathanclassen/mustache,num_dependents_deps.dev:0 +github.com/nathanclevenger/esbuild-http-import-action, github.com/nathandines/SPF2IP, github.com/nathandines/slack-userpass-auth,num_dependents_deps.dev:0 github.com/nathandunn/convert_uniprot_gmt,num_dependents_deps.dev:0 github.com/nathane-s/curso-golang,num_dependents_deps.dev:0 +github.com/nathane/styleci-action, github.com/nathanejohnson/pdnsprovider,num_dependents_deps.dev:0 github.com/nathanejohnson/vegeta,num_dependents_deps.dev:0 github.com/nathanejohnson/whichca,num_dependents_deps.dev:0 @@ -850144,7 +865404,12 @@ github.com/nathanfrancy/mybutler,num_dependents_deps.dev:0 github.com/nathanfrancy/safetext,num_dependents_deps.dev:0 github.com/nathanfrancy/safetext-cmd,num_dependents_deps.dev:0 github.com/nathangeffen/ziggie, +github.com/nathangiusti/PBIX-Deserializer, +github.com/nathangiusti/Power-BI-Pipeline-Deploy, +github.com/nathangiusti/Power-BI-VC-Utils, +github.com/nathangiusti/Power-BI-Workspace-Deploy, github.com/nathangiusti/PySense, +github.com/nathangiusti/TabularEditorDeploy, github.com/nathangoodchild/forms-project, github.com/nathangoulding/grpcli,num_dependents_deps.dev:0 github.com/nathangreene3/kmeans,num_dependents_deps.dev:0 @@ -850175,6 +865440,7 @@ github.com/nathanharper/babel-plugin-react-deferred-children,num_dependents_deps github.com/nathanharper/multi-react-select, github.com/nathanharper/react-multiselect,num_dependents_deps.dev:0 github.com/nathanhbsimmons/aca-dash,num_dependents_deps.dev:0 +github.com/nathanheffley/laravel-phpunit-action, github.com/nathanheffley/tailwindcss-card,num_dependents_deps.dev:0 github.com/nathanheffley/vue-portals,num_dependents_deps.dev:0 github.com/nathanhi/pyfatfs, @@ -850349,6 +865615,7 @@ github.com/nathanmarz/storm-contrib,criticality_score:0.299980 github.com/nathanmbicho/go-data-structures,num_dependents_deps.dev:0 github.com/nathanmckinney/nm510, github.com/nathanmckinney/uassist, +github.com/nathanmkaya/android-version-code-update, github.com/nathannaveen/leetcode-solutions,num_dependents_deps.dev:0 github.com/nathannaveen/leetcode-submissions,num_dependents_deps.dev:0 github.com/nathanoehlman/easymongoose-security,num_dependents_deps.dev:0 @@ -850516,6 +865783,7 @@ github.com/nathunsmitty/gulp-remark-handlebars,num_dependents_deps.dev:0 github.com/natiacostap/SCL009-md-links,num_dependents_deps.dev:0 github.com/natibekele/react-native-video-watermark,num_dependents_deps.dev:0 github.com/natichan/scl-2018-01-FE-markdown,num_dependents_deps.dev:0 +github.com/natiginfo/action-detekt-all, github.com/natiiix/easy_postgres, github.com/natim/elm-format-installer, github.com/natim/elm-lang, @@ -850801,6 +866069,9 @@ github.com/natsukagami/oppai-rs,num_dependents_deps.dev:0 github.com/natsukagami/rust-codeforces-api,num_dependents_deps.dev:0 github.com/natsukagami/themis-web-interface,num_dependents_deps.dev:0 github.com/natsukingdom/isucon10-qualifier-go,num_dependents_deps.dev:0 +github.com/natsuneko-laboratory/create-unitypackage, +github.com/natsuneko-laboratory/create-vpmpackage, +github.com/natsuneko-laboratory/get-meta-from-glob, github.com/natsunlee/pdsando, github.com/natsuokawai/data-structure-and-algorithm-go,num_dependents_deps.dev:0 github.com/natsuokawai/go_http,num_dependents_deps.dev:0 @@ -850821,6 +866092,9 @@ github.com/nattelog/master-password,num_dependents_deps.dev:0 github.com/natter1/gdef_reader, github.com/natter1/pyansystools, github.com/natter1/python_pptx_interface, +github.com/natterstefan/action-authorised-actor, +github.com/natterstefan/action-eligible-actor, +github.com/natterstefan/action-next-env, github.com/natterstefan/businesscard,num_dependents_deps.dev:0 github.com/natterstefan/editorjs-inline-tool,num_dependents_deps.dev:0 github.com/natterstefan/eslint-config-ns,num_dependents_deps.dev:0 @@ -851116,6 +866390,7 @@ github.com/navarasu/opencv-log, github.com/navarasu/serverless-ruby-gemfile,num_dependents_deps.dev:0 github.com/navarasu/serverless-ruby-layer,num_dependents_deps.dev:0 github.com/navarr/JapaneseNumerals.java,num_dependents_deps.dev:0 +github.com/navarr/phpcs-action, github.com/navarroaxel/npm-card,num_dependents_deps.dev:0 github.com/navarrojava/agsfy,num_dependents_deps.dev:0 github.com/navarrojava/cordova-broadcaster,num_dependents_deps.dev:0 @@ -851159,6 +866434,7 @@ github.com/naveen1100/modtest,num_dependents_deps.dev:0 github.com/naveen13/prompt-console,num_dependents_deps.dev:0 github.com/naveen16/Custom-Responses,num_dependents_deps.dev:0 github.com/naveen21f/nav-greeter,num_dependents_deps.dev:0 +github.com/naveen497/actions, github.com/naveen521kk/img2pdf, github.com/naveen521kk/manim-fontawesome, github.com/naveen521kk/manim-fonts, @@ -851178,6 +866454,7 @@ github.com/naveency/react-mdw-starter,num_dependents_deps.dev:0 github.com/naveengovind/gogo-dl,num_dependents_deps.dev:0 github.com/naveenjafer/bayes-classifier,num_dependents_deps.dev:0 github.com/naveenjafer/react-d3-treemap,num_dependents_deps.dev:0 +github.com/naveenk1223/action-pr-title, github.com/naveenkash/fluff-tail,num_dependents_deps.dev:0 github.com/naveenkash/private-local-storage,num_dependents_deps.dev:0 github.com/naveenkmavoor/extra-activities,num_dependents_deps.dev:0 @@ -851186,8 +866463,10 @@ github.com/naveenkumarn27/msg91-sdk,num_dependents_deps.dev:0 github.com/naveenkumarpg/gulpuix,num_dependents_deps.dev:0 github.com/naveenkumarpg/metahumans,num_dependents_deps.dev:0 github.com/naveenmavoor/extra-activities,num_dependents_deps.dev:0 +github.com/naveennaidu/tauri-action, github.com/naveennamani/pywin_contextmenu, github.com/naveenraina/vuejs-three-state-switch,num_dependents_deps.dev:0 +github.com/naveenrajm7/rpmbuild, github.com/naveenraju23/simpleshark, github.com/naveenrawat51/neon-light-button,num_dependents_deps.dev:0 github.com/naveenrobo/okshadow-js,num_dependents_deps.dev:0 @@ -851229,6 +866508,7 @@ github.com/naver/auto-async-wrap,num_dependents_deps.dev:0 github.com/naver/babel-plugin-no-side-effect-class-properties, github.com/naver/billboard.js,criticality_score:0.637220 github.com/naver/claf, +github.com/naver/d-day-labeler, github.com/naver/devcenter-open-project-migration, github.com/naver/egjs,criticality_score:0.443020 github.com/naver/egjs-axes, @@ -851259,11 +866539,13 @@ github.com/naver/mesh-simplifier, github.com/naver/naver-spring-batch-ex,num_dependents_deps.dev:0 github.com/naver/nbase-arc,num_dependents_deps.dev:1 github.com/naver/ngrinder,"criticality_score:0.562370,num_dependents_deps.dev:5" +github.com/naver/notify-pr-review, github.com/naver/passport-naver, github.com/naver/prototype-minify,num_dependents_deps.dev:16 github.com/naver/react-native-image-modifier,num_dependents_deps.dev:0 github.com/naver/roma, github.com/naver/rotatableview,num_dependents_deps.dev:0 +github.com/naver/simple-labeler, github.com/naver/smarteditor2,num_dependents_deps.dev:0 github.com/naver/spring-jdbc-plus,num_dependents_deps.dev:115 github.com/naver/storybook-addon-preview, @@ -851284,6 +866566,7 @@ github.com/navexplorer/subscriber,num_dependents_deps.dev:0 github.com/navi1995/Chrome-Webstore-Stats, github.com/navi2389/projecturokgit8,num_dependents_deps.dev:0 github.com/navi25/navi25, +github.com/navi86/helm, github.com/naviance/tslint-checkstyle-reporter,num_dependents_deps.dev:0 github.com/naviapps/create-nw-react-app,num_dependents_deps.dev:4 github.com/naviapps/nw-builder-webpack-plugin,num_dependents_deps.dev:0 @@ -851321,6 +866604,7 @@ github.com/navidshad/modular-rest-toolkit,num_dependents_deps.dev:0 github.com/navidshad/telegram-cms,num_dependents_deps.dev:0 github.com/navidshad/telegram-cms-commerce,num_dependents_deps.dev:0 github.com/navidshaikh/test-webhook,num_dependents_deps.dev:0 +github.com/navied/secure-webhook, github.com/naviens/django-fcm, github.com/navierr/coloriz,num_dependents_deps.dev:0 github.com/navigateconsulting/web-channel,num_dependents_deps.dev:0 @@ -851368,6 +866652,7 @@ github.com/navikt/fp-kontrakter,num_dependents_deps.dev:0 github.com/navikt/fp-uttak,num_dependents_deps.dev:0 github.com/navikt/frontendlogger, github.com/navikt/ft-kalkulus-frontend,num_dependents_deps.dev:0 +github.com/navikt/github-app-token-generator, github.com/navikt/helse-arbeidsgiver-felles-frontend,num_dependents_deps.dev:0 github.com/navikt/helse-biblioteker,num_dependents_deps.dev:0 github.com/navikt/helse-maksdato,num_dependents_deps.dev:0 @@ -851420,6 +866705,7 @@ github.com/navikt/textparser,num_dependents_deps.dev:4 github.com/navikt/tjenestespesifikasjoner,num_dependents_deps.dev:57 github.com/navikt/token-support,num_dependents_deps.dev:155 github.com/navikt/vault-jdbc,num_dependents_deps.dev:0 +github.com/navilan/slack-action-status, github.com/navinds25/go-template-http-srv,num_dependents_deps.dev:0 github.com/navinds25/golang_expts,num_dependents_deps.dev:0 github.com/navingenex/genex,num_dependents_deps.dev:0 @@ -851621,6 +866907,7 @@ github.com/nay/never_wastes,num_dependents_deps.dev:0 github.com/nay/record_with_operator,num_dependents_deps.dev:2 github.com/nayaabkhan/js18n,num_dependents_deps.dev:0 github.com/nayaabkhan/react-polyglot,num_dependents_deps.dev:224 +github.com/nayabatir1/pr-bot, github.com/nayafia/lemonade-stand,criticality_score:0.309990 github.com/nayafia/microgrants,criticality_score:0.340820 github.com/nayaknotnull/react-isomorphic-error-boundary,num_dependents_deps.dev:0 @@ -851760,6 +867047,7 @@ github.com/nazirov91/ra-strapi-rest,num_dependents_deps.dev:0 github.com/nazmizorlu/python-euromsg, github.com/nazmulsisil/nocognito,num_dependents_deps.dev:0 github.com/naznadmn/tagify-vue,num_dependents_deps.dev:0 +github.com/nazo6/gitea-action-rerun, github.com/nazo6/nvim-types, github.com/nazo6/react-component-library-boilerplate,num_dependents_deps.dev:0 github.com/nazoking/scim2-filter,num_dependents_deps.dev:0 @@ -851803,6 +867091,9 @@ github.com/nb7123/BaiduMapSDK,num_dependents_deps.dev:0 github.com/nbQA-dev/nbQA, github.com/nbaars/paseto4j,num_dependents_deps.dev:0 github.com/nbaars/pwnedpasswords4j,num_dependents_deps.dev:2 +github.com/nbadal/action-ktlint-setup, +github.com/nbadal/inspectcode-action, +github.com/nbadal/raygun-deploy, github.com/nbaghiro/api-boilerplate,num_dependents_deps.dev:0 github.com/nbah1990/goncanode,num_dependents_deps.dev:0 github.com/nbaksalyar/headcrab,num_dependents_deps.dev:0 @@ -851831,6 +867122,7 @@ github.com/nbar1/pluggable-slackbot,num_dependents_deps.dev:0 github.com/nbareil/go-yara,num_dependents_deps.dev:0 github.com/nbari/assemble,num_dependents_deps.dev:0 github.com/nbari/backup,num_dependents_deps.dev:0 +github.com/nbari/cargo-rpm-amd64-centos, github.com/nbari/compound_duration,num_dependents_deps.dev:0 github.com/nbari/cron-parser,num_dependents_deps.dev:0 github.com/nbari/dbpulse,num_dependents_deps.dev:0 @@ -851864,6 +867156,7 @@ github.com/nbauernfeind/scala-burst-trie,num_dependents_deps.dev:0 github.com/nbauernfeind/xmpp-alert,num_dependents_deps.dev:0 github.com/nbaugh1/scratch-react,num_dependents_deps.dev:0 github.com/nbayramberdiyev/money2Text,num_dependents_deps.dev:0 +github.com/nbaztec/add-pr-review-comment, github.com/nbaztec/meme-rs,num_dependents_deps.dev:0 github.com/nbb3210/AutoImportPlugin,num_dependents_deps.dev:0 github.com/nbb3210/auto-import-cli,num_dependents_deps.dev:0 @@ -851998,10 +867291,12 @@ github.com/nblackburn/devrant-api,num_dependents_deps.dev:0 github.com/nblackburn/devrant-bot,num_dependents_deps.dev:0 github.com/nblackburn/micro-match,num_dependents_deps.dev:0 github.com/nblagoev/pull-release-notes,num_dependents_deps.dev:0 +github.com/nblagoev/pull-release-notes-action, github.com/nblair/developer-tools,num_dependents_deps.dev:0 github.com/nblair/exchange-ws-client,num_dependents_deps.dev:0 github.com/nblair/pipeline,num_dependents_deps.dev:0 github.com/nblanco994/curso-platzi-npm, +github.com/nblfikr/base64-decode-to-file, github.com/nblib/log4go,num_dependents_deps.dev:0 github.com/nblock/beancount-nblock, github.com/nbltrust/hashkey-custody-sdk-nodejs, @@ -852034,6 +867329,7 @@ github.com/nbonamy/vue-hero-transition,num_dependents_deps.dev:0 github.com/nbonneau/express-voter,num_dependents_deps.dev:0 github.com/nbonneau/file-locator,num_dependents_deps.dev:0 github.com/nbonneau/ref-parser,num_dependents_deps.dev:0 +github.com/nborrmann/diff-poetry-lock, github.com/nbortolotti/gotflite,num_dependents_deps.dev:0 github.com/nbortolotti/tflitego,num_dependents_deps.dev:0 github.com/nbostech/wavelabs-android-client-api,num_dependents_deps.dev:0 @@ -852106,6 +867402,7 @@ github.com/nbrownus/ppunit,num_dependents_deps.dev:0 github.com/nbrownus/pushover-desktop-client,num_dependents_deps.dev:0 github.com/nbrownus/streamstash,num_dependents_deps.dev:0 github.com/nbrowser/nb-chan,num_dependents_deps.dev:0 +github.com/nbrugger-tgm/merge-pr-action, github.com/nbrx-ag/nuxt-i18n-composable,num_dependents_deps.dev:0 github.com/nbryan/deference,num_dependents_deps.dev:0 github.com/nbryans/notipymail, @@ -852196,6 +867493,8 @@ github.com/ncains/homebridge-petwalk,num_dependents_deps.dev:0 github.com/ncaio/mxmap,num_dependents_deps.dev:0 github.com/ncaldwell17/xTractr, github.com/ncallaway/bevy_prototype_networking_laminar,num_dependents_deps.dev:0 +github.com/ncalteen/branch-enforcement, +github.com/ncalteen/issueops-labeler, github.com/ncamacho/gitlab_clone,num_dependents_deps.dev:0 github.com/ncannasse/castle,criticality_score:0.336270 github.com/ncantor/capify-cloud,num_dependents_deps.dev:0 @@ -852387,10 +867686,14 @@ github.com/nci-ats/moxai,num_dependents_deps.dev:0 github.com/nci-gdc/buildjs,num_dependents_deps.dev:54 github.com/nci/gsky,num_dependents_deps.dev:0 github.com/ncimino/frame,num_dependents_deps.dev:0 +github.com/ncino/powermode-scan, +github.com/ncino/quack-scan, github.com/nciocpl/glossary-app,num_dependents_deps.dev:0 github.com/ncip48/go_server_uwu,num_dependents_deps.dev:0 github.com/ncip48/go_uwu,num_dependents_deps.dev:0 github.com/ncip48/ruangapi-nodejs,num_dependents_deps.dev:0 +github.com/ncipollo/release-action, +github.com/ncipollo/semantic-version-action, github.com/ncjain/learn-go,num_dependents_deps.dev:0 github.com/ncjllld/byase, github.com/ncjllld/byase_gui, @@ -852522,6 +867825,7 @@ github.com/ncrohn/scores,num_dependents_deps.dev:0 github.com/ncronquist/depinfo,num_dependents_deps.dev:0 github.com/ncrookston/timeline,num_dependents_deps.dev:0 github.com/ncrousset/drag-drop,num_dependents_deps.dev:0 +github.com/ncruces/go-coverage-report, github.com/ncruces/go-exiftool,num_dependents_deps.dev:0 github.com/ncruces/keyless,num_dependents_deps.dev:0 github.com/ncruces/rethinkraw,num_dependents_deps.dev:0 @@ -852565,6 +867869,7 @@ github.com/ncub8/reactroll, github.com/ncuesta/dropzonejs-rails,"criticality_score:0.338740,num_dependents_deps.dev:4" github.com/ncuesta/vh,num_dependents_deps.dev:0 github.com/ncuhome/N,num_dependents_deps.dev:0 +github.com/ncuhome/ali-oss-website-action, github.com/ncuhome/fighting, github.com/ncuhome/mincu, github.com/ncuhome/simple-migrate, @@ -852720,6 +868025,7 @@ github.com/ndelitski/prettify-docker-logs,num_dependents_deps.dev:0 github.com/ndelnano/recently-played-playlists, github.com/ndeloof/camaaloth,num_dependents_deps.dev:0 github.com/ndeloof/helm,num_dependents_deps.dev:0 +github.com/ndeloof/install-compose-action, github.com/ndelvalle/array-smooth,num_dependents_deps.dev:0 github.com/ndelvalle/array-windows,num_dependents_deps.dev:0 github.com/ndelvalle/bitcoin-vanity,num_dependents_deps.dev:0 @@ -852745,6 +868051,7 @@ github.com/ndency/gsx-json, github.com/ndenerserve/smartpi,num_dependents_deps.dev:0 github.com/ndenev/pam_groupmap,num_dependents_deps.dev:0 github.com/ndepaz/vuetifygentable,num_dependents_deps.dev:0 +github.com/ndepend/ndepend-action, github.com/ndepomereu/awake-file,num_dependents_deps.dev:0 github.com/ndeporzio/cosmicfish, github.com/nderjung/concourse-github-pr-comment-resource,num_dependents_deps.dev:0 @@ -853206,6 +868513,8 @@ github.com/nearform/fastify-secrets-gcp,num_dependents_deps.dev:0 github.com/nearform/fastify-secrets-hashicorp,num_dependents_deps.dev:0 github.com/nearform/gatsby,num_dependents_deps.dev:0 github.com/nearform/get-jwks,num_dependents_deps.dev:0 +github.com/nearform/github-action-notify-release, +github.com/nearform/github-action-notify-twitter, github.com/nearform/graphql-hooks,"criticality_score:0.481060,num_dependents_deps.dev:28" github.com/nearform/graphql-hooks-ssr,num_dependents_deps.dev:0 github.com/nearform/heap-profiler,num_dependents_deps.dev:2 @@ -853503,6 +868812,7 @@ github.com/nebtex/hashmap,num_dependents_deps.dev:0 github.com/nebtex/taurus,num_dependents_deps.dev:0 github.com/nebual/react-feature-toggles,num_dependents_deps.dev:0 github.com/nebula-byte/image-switcher,num_dependents_deps.dev:0 +github.com/nebula-dev/spaces-sync-action, github.com/nebula-orchestrator/nebula-python-sdk, github.com/nebula-plugins/gradle-dependency-lock-plugin,criticality_score:0.453820 github.com/nebula-plugins/gradle-java-cross-compile-plugin,num_dependents_deps.dev:0 @@ -853550,12 +868860,15 @@ github.com/nebulade/sensation,num_dependents_deps.dev:0 github.com/nebulade/supererror,num_dependents_deps.dev:4 github.com/nebulade/superlog,num_dependents_deps.dev:0 github.com/nebulak/redget, +github.com/nebularg/actions-discord-webhook, +github.com/nebularg/actions-luacheck, github.com/nebulasio/go-nebulas,"criticality_score:0.319230,num_dependents_deps.dev:0" github.com/nebulasio/neb.js,num_dependents_deps.dev:0 github.com/nebulasio/neb.py, github.com/nebulasio/web-wallet,criticality_score:0.313600 github.com/nebulastream/nebulastream-python-client, github.com/nebulax2014/epj,num_dependents_deps.dev:0 +github.com/nebulis-io/maturin-action, github.com/nebulon1234/bungee,num_dependents_deps.dev:0 github.com/nebulon1234/quickjs,num_dependents_deps.dev:0 github.com/nebulosa-studio/gitlab-voice,num_dependents_deps.dev:0 @@ -853637,9 +868950,12 @@ github.com/neckhair/springboard,num_dependents_deps.dev:0 github.com/neckjs/neck,num_dependents_deps.dev:0 github.com/neckjs/neck-server,num_dependents_deps.dev:0 github.com/neckknigh/oracle-instantclient,num_dependents_deps.dev:0 +github.com/necko-actions/format-smithy, +github.com/necko-actions/setup-smithy, github.com/neckro/octobot,num_dependents_deps.dev:0 github.com/neclepsio/imgui-go,num_dependents_deps.dev:0 github.com/neclepsio/math32,num_dependents_deps.dev:0 +github.com/necojackarc/auto-request-review, github.com/necojackarc/extensible-custom-error,num_dependents_deps.dev:0 github.com/necolas/dom-classlist,num_dependents_deps.dev:10 github.com/necolas/dom-closest,num_dependents_deps.dev:10201 @@ -853884,6 +869200,9 @@ github.com/neeler/use-permission,num_dependents_deps.dev:0 github.com/neeleshroy/ashtakoot,num_dependents_deps.dev:0 github.com/neeleshroy/sorting-js,num_dependents_deps.dev:0 github.com/neeleshsambhajiche/TravisCITryout,num_dependents_deps.dev:0 +github.com/neelix-io/create-experience-action, +github.com/neelix-io/practices-experience-action, +github.com/neelix-io/simple-net-experience-action, github.com/neelkamath/hclib, github.com/neelkamath/omni-chat-js,num_dependents_deps.dev:0 github.com/neelkandlikar/legaltechtools, @@ -853891,6 +869210,7 @@ github.com/neelkanthjdabhi/cli,num_dependents_deps.dev:0 github.com/neelkarma/threetwenty,num_dependents_deps.dev:0 github.com/neelradicalloop/npm-react-library,num_dependents_deps.dev:0 github.com/neelravi/aiida-champ, +github.com/neelravi/intel-oneapi-github-actions, github.com/neelrs/common-collection-operations,num_dependents_deps.dev:0 github.com/neelsomani/parallel-python-twitter, github.com/neeltom92/romannumerals,num_dependents_deps.dev:0 @@ -853937,6 +869257,7 @@ github.com/neerajpathak77/react-native-modal-dropdown,num_dependents_deps.dev:0 github.com/neerajpn47/em-net-http,num_dependents_deps.dev:0 github.com/neerajpn47/wbxml,num_dependents_deps.dev:0 github.com/neerajsoni/npm,num_dependents_deps.dev:0 +github.com/neerajsu/dependency-track-gh-action, github.com/neerav-dev/lotide,num_dependents_deps.dev:0 github.com/neeravkumar/marathonctl,num_dependents_deps.dev:0 github.com/neeravp/Samay,num_dependents_deps.dev:0 @@ -854016,6 +869337,8 @@ github.com/neflyte/gowait,num_dependents_deps.dev:0 github.com/neflyte/jake,num_dependents_deps.dev:0 github.com/neflyte/timetracker,num_dependents_deps.dev:0 github.com/neformal13/r-router,num_dependents_deps.dev:0 +github.com/nefrob/pr-description, +github.com/nefrob/sentry-release-deletion, github.com/neftaly/Facebook-Sound-Kit, github.com/neftaly/grunt-sri,num_dependents_deps.dev:0 github.com/neftaly/handlebars-helper-sri,num_dependents_deps.dev:0 @@ -854027,9 +869350,11 @@ github.com/neftaly/npm-subresource,num_dependents_deps.dev:0 github.com/neftx/generic-form,num_dependents_deps.dev:0 github.com/nefyodovka/cli,num_dependents_deps.dev:0 github.com/nefza/cordova-plugin-app-update,num_dependents_deps.dev:0 +github.com/neg-c/cmake-format-action, github.com/neg4n/next-hcaptcha,num_dependents_deps.dev:0 github.com/neg4n/si18n,num_dependents_deps.dev:0 github.com/neg4n/trickster,num_dependents_deps.dev:0 +github.com/neg4n/version-bump, github.com/negadive/peewee-utils, github.com/negamartin/midly,num_dependents_deps.dev:0 github.com/negamartin/osu-db,num_dependents_deps.dev:0 @@ -854143,6 +869468,7 @@ github.com/neguse/ld44,num_dependents_deps.dev:0 github.com/negusoft/holoaccent,num_dependents_deps.dev:0 github.com/negyxo/lite-store,num_dependents_deps.dev:0 github.com/negyxo/ts-lite-store, +github.com/negz/create-tag, github.com/negz/crossplane,num_dependents_deps.dev:0 github.com/negz/haproxy-docker-wrapper,num_dependents_deps.dev:0 github.com/negz/k8s-metadata-proxy,num_dependents_deps.dev:0 @@ -854222,6 +869548,7 @@ github.com/neighborly/go-errors,num_dependents_deps.dev:1 github.com/neighbourhoodie/couch-continuum,num_dependents_deps.dev:0 github.com/neighbourhoodie/neighbourhoodie-test-package,num_dependents_deps.dev:0 github.com/neighbourhoodie/nh-hapi-stripe-webhooks,num_dependents_deps.dev:0 +github.com/neightborhood/actions.notify, github.com/neighthan/auto-argparse, github.com/neighthan/cometml_api, github.com/neighthan/gpu-utils, @@ -854241,7 +869568,9 @@ github.com/neikvon/standard-version,num_dependents_deps.dev:0 github.com/neikvon/vue-role-manager, github.com/neikvon/vuer,num_dependents_deps.dev:0 github.com/neil-119/nativescript-rad-imagepicker,num_dependents_deps.dev:0 +github.com/neil-armstrong-instil/render-deployment-checker, github.com/neil-berg/blockchain,num_dependents_deps.dev:0 +github.com/neil-empey/changes, github.com/neil-ji/chameleon-clock,num_dependents_deps.dev:0 github.com/neil-lindquist/swank-client,num_dependents_deps.dev:0 github.com/neil-lobracco/alexa-rs,num_dependents_deps.dev:0 @@ -854285,6 +869614,7 @@ github.com/neilcarpenter/shu,num_dependents_deps.dev:0 github.com/neilcauldwell/hubot-nurph,num_dependents_deps.dev:0 github.com/neilcauldwell/hubot-twilio,num_dependents_deps.dev:0 github.com/neilcauldwell/hubot-twitter,num_dependents_deps.dev:0 +github.com/neildan/web_accessibility_evaluation_stats, github.com/neildanson/quake3_loader,num_dependents_deps.dev:0 github.com/neilernst/cliffsDelta, github.com/neilff/redux-ui-router,num_dependents_deps.dev:0 @@ -854368,6 +869698,8 @@ github.com/neilpa/phace,num_dependents_deps.dev:0 github.com/neilpa/yajsv,num_dependents_deps.dev:0 github.com/neilpanchal/hwinfo,num_dependents_deps.dev:0 github.com/neilpatel121/homebridge-skyq-tvremote,num_dependents_deps.dev:0 +github.com/neilpeterson/action-assign-blueprint, +github.com/neilpeterson/action-create-blueprint, github.com/neilpipi1985/react-canvas-gauge,num_dependents_deps.dev:0 github.com/neilpipi1985/react-touchscreen-keyboards,num_dependents_deps.dev:0 github.com/neilrackett/cordova-plugin-inapppurchase-sandbox,num_dependents_deps.dev:0 @@ -854457,6 +869789,7 @@ github.com/neizod/extmath, github.com/nejat/ts-gulp-tasks,num_dependents_deps.dev:0 github.com/nejckorasa/compare-utils,num_dependents_deps.dev:0 github.com/nejckorasa/instagram-analyzer, +github.com/nejcm/bundle-size-reporter-action, github.com/nejcm/configs,num_dependents_deps.dev:0 github.com/nejcm/docz-theme-extended,num_dependents_deps.dev:0 github.com/nejcm/js-helpers,num_dependents_deps.dev:0 @@ -854513,6 +869846,7 @@ github.com/nekgasov/up-levenshtein, github.com/nekijak/riot-simple-loader,num_dependents_deps.dev:0 github.com/nekijak/simple-tcpscan,num_dependents_deps.dev:0 github.com/nekiono/eslint-config-raven,num_dependents_deps.dev:0 +github.com/nekiro/ssh-job, github.com/nekitdev/braces.py, github.com/nekitdev/bulma.py, github.com/nekitdev/enums.py, @@ -854562,6 +869896,8 @@ github.com/nekochans/portfolio-backend,num_dependents_deps.dev:0 github.com/nekocode/use-shared-state, github.com/nekodex/slate,num_dependents_deps.dev:0 github.com/nekodjin/nkdbfi,num_dependents_deps.dev:0 +github.com/nekofar/action-usage-guard, +github.com/nekofar/create-github-release, github.com/nekofar/gulp-fontiran,num_dependents_deps.dev:0 github.com/nekoffski/triss,num_dependents_deps.dev:0 github.com/nekofurball/dbotcore,num_dependents_deps.dev:0 @@ -854622,6 +869958,7 @@ github.com/nekoumei/usbclassifier, github.com/nekovalue/unpckr,num_dependents_deps.dev:0 github.com/nekowheel/nekobox,num_dependents_deps.dev:0 github.com/nekowheel/nekocas,num_dependents_deps.dev:0 +github.com/nekowinston/setup-deno, github.com/nekoya/python-tcptest, github.com/nekoya/simpress, github.com/nekoyume/nekoyume, @@ -854659,6 +869996,7 @@ github.com/nektarai/postgres-migrations,num_dependents_deps.dev:0 github.com/nekto-nekto/tetuca,num_dependents_deps.dev:0 github.com/nektorandom/ckeditor5-build-classic,num_dependents_deps.dev:0 github.com/nektos/act,"criticality_score:0.561180,num_dependents_deps.dev:0" +github.com/nektro/actions-setup-zigmod, github.com/nektro/andesite,num_dependents_deps.dev:0 github.com/nektro/aquila,num_dependents_deps.dev:0 github.com/nektro/basalt,num_dependents_deps.dev:0 @@ -854729,8 +870067,10 @@ github.com/nelmio/NelmioSecurityBundle,criticality_score:0.441310 github.com/nelmio/alice,criticality_score:0.601040 github.com/nelo686/material,num_dependents_deps.dev:0 github.com/nelodev/random-pokemons,num_dependents_deps.dev:0 +github.com/nelonoel/branch-name, github.com/nelonoel/postcss-theme-ui,num_dependents_deps.dev:0 github.com/nelonoel/react-rellax,num_dependents_deps.dev:0 +github.com/nelonoel/surge-sh-teardown, github.com/neloreck/dreamstate, github.com/neloreck/redux-cbd,num_dependents_deps.dev:0 github.com/nelosan/yeoman-kotlin-clean, @@ -854767,6 +870107,7 @@ github.com/nelson-liu/word2color, github.com/nelsonagamata/nelsonagamata_palindrome,num_dependents_deps.dev:0 github.com/nelsonagamata/palindrome,num_dependents_deps.dev:0 github.com/nelsonatgithub/nlsn-delaunay-refine,num_dependents_deps.dev:0 +github.com/nelsoncanarinho/setup-sonar-action, github.com/nelsoncash/faded, github.com/nelsoncash/fog,num_dependents_deps.dev:0 github.com/nelsongomes/ts-openapi, @@ -854829,6 +870170,7 @@ github.com/nelsonic/terminate,num_dependents_deps.dev:0 github.com/nelsonic/time,num_dependents_deps.dev:0 github.com/nelsonic/uniki,num_dependents_deps.dev:10 github.com/nelsonic/who,num_dependents_deps.dev:0 +github.com/nelsonjchen/gh-pages-pelican-action, github.com/nelsonjchen/speedtest-rs,num_dependents_deps.dev:0 github.com/nelsonjohnstone/cmc_exporter,num_dependents_deps.dev:0 github.com/nelsonki/cronometronk,num_dependents_deps.dev:0 @@ -854960,6 +870302,7 @@ github.com/nemax68/node-red-contrib-openeyes-voipcmd,num_dependents_deps.dev:0 github.com/nemax68/node-red-contrib-openeyes-voipevent,num_dependents_deps.dev:0 github.com/nemca/dns-checker,num_dependents_deps.dev:0 github.com/nemcrunchers/mysql-crud,num_dependents_deps.dev:0 +github.com/nemeaXYZ/webp-optimizer, github.com/nemein/node-smsgw, github.com/nemequ/munit,criticality_score:0.312160 github.com/nemeria/node-mudnames,num_dependents_deps.dev:0 @@ -855022,6 +870365,7 @@ github.com/nemostein/scormint,num_dependents_deps.dev:0 github.com/nemosupremo/chi,num_dependents_deps.dev:0 github.com/nemosupremo/goavro,num_dependents_deps.dev:0 github.com/nemotoy/afug,num_dependents_deps.dev:0 +github.com/nemotoy/dockle-action, github.com/nemotoy/golang-playground,num_dependents_deps.dev:0 github.com/nemovsb/go2,num_dependents_deps.dev:0 github.com/nemovsb/go3,num_dependents_deps.dev:0 @@ -855066,6 +870410,7 @@ github.com/nenadjovanoski/vue-push-notification-preview, github.com/nenadom/interpolate-html-plugin,num_dependents_deps.dev:0 github.com/nenadom/watch-missing-node-modules-plugin,num_dependents_deps.dev:0 github.com/nenadpnc/cl-editor,num_dependents_deps.dev:0 +github.com/nenadz-qsense/kubernetes-action, github.com/nenanimalsya/cmtt-python-wrapper, github.com/nenanth/python_plot_wrappers, github.com/nenb/blossalg, @@ -855145,6 +870490,7 @@ github.com/neo-cord/rest,num_dependents_deps.dev:2 github.com/neo-cord/storage,num_dependents_deps.dev:0 github.com/neo-derek/open-env, github.com/neo-desktop/go-cbox-scraper,num_dependents_deps.dev:0 +github.com/neo-diego-beltran/request-reviewers, github.com/neo-fe/prettier-files,num_dependents_deps.dev:0 github.com/neo-fe/regex-validator,num_dependents_deps.dev:0 github.com/neo-fe/roseup,num_dependents_deps.dev:0 @@ -855235,6 +870581,7 @@ github.com/neo4j/docs-maven-plugin,num_dependents_deps.dev:0 github.com/neo4j/doctools,num_dependents_deps.dev:0 github.com/neo4j/ease-maven-plugin,num_dependents_deps.dev:0 github.com/neo4j/gdsclient, +github.com/neo4j/github-action-traceability, github.com/neo4j/graph-collections,num_dependents_deps.dev:0 github.com/neo4j/graph-data-science,num_dependents_deps.dev:10157 github.com/neo4j/graph-data-science-client, @@ -855285,6 +870632,7 @@ github.com/neoatlantis/node-ineffective-storage,num_dependents_deps.dev:0 github.com/neoatlantis/node-salsa20,num_dependents_deps.dev:0 github.com/neoatlantis/scutum,num_dependents_deps.dev:0 github.com/neoave/mrack, +github.com/neobaran/csac-action, github.com/neobaran/miniapp-color-thief,num_dependents_deps.dev:0 github.com/neobaran/tina-router-for-tt,num_dependents_deps.dev:0 github.com/neobernad/haplotype_plot, @@ -855296,7 +870644,10 @@ github.com/neobitcoin-official/neobitcoin-message,num_dependents_deps.dev:0 github.com/neobitcoin-official/neobitcoin-p2p,num_dependents_deps.dev:0 github.com/neoblackcap/conveyor, github.com/neoblackcap/ff,num_dependents_deps.dev:0 +github.com/neoblizz/rocm-setup, +github.com/neobrains/space-deployment-github-action, github.com/neocase/docker-go-starter-kit,num_dependents_deps.dev:0 +github.com/neochae1/upload-test-result, github.com/neochrome/jt,num_dependents_deps.dev:0 github.com/neochrome/lsdvol,num_dependents_deps.dev:0 github.com/neochrome/simple-fsm,num_dependents_deps.dev:0 @@ -855422,9 +870773,11 @@ github.com/neoeno/gulp-build-branch,num_dependents_deps.dev:0 github.com/neofinancial/awsx,num_dependents_deps.dev:0 github.com/neofinancial/ccscan,num_dependents_deps.dev:0 github.com/neofinancial/config-dug,num_dependents_deps.dev:0 +github.com/neofinancial/coverage-upload-action, github.com/neofinancial/eslint-config-neo,num_dependents_deps.dev:0 github.com/neofinancial/kinesis-logger,num_dependents_deps.dev:0 github.com/neofinancial/node-flinks, +github.com/neofinancial/ticket-check-action, github.com/neofonie/eslint-config-neofonie,num_dependents_deps.dev:0 github.com/neofonie/gonzo,num_dependents_deps.dev:0 github.com/neofonie/magnolia-frontend-scripts,num_dependents_deps.dev:0 @@ -855492,6 +870845,7 @@ github.com/neohed/super-swew,num_dependents_deps.dev:0 github.com/neohelden/neo-node,num_dependents_deps.dev:0 github.com/neohelden/neo_python_sdk, github.com/neohelden/node-red-context-redis,num_dependents_deps.dev:0 +github.com/neohelden/notary-action, github.com/neoid-gem/neoid,num_dependents_deps.dev:0 github.com/neoinsanity/cognate, github.com/neoinsanity/existenz, @@ -855590,6 +870944,7 @@ github.com/neolp/itmpmobx,num_dependents_deps.dev:0 github.com/neolp/itmpreact,num_dependents_deps.dev:0 github.com/neolp/itmpws,num_dependents_deps.dev:0 github.com/neolp/node-vcgencmd, +github.com/neolution-ch/action-release-notifier, github.com/neolwc/lim-it,num_dependents_deps.dev:0 github.com/neolwc/parse-mark,num_dependents_deps.dev:0 github.com/neolynx/git-tessera, @@ -855623,10 +870978,15 @@ github.com/neomura/c-tool-aseprite,num_dependents_deps.dev:0 github.com/neomura/famistudio-text-format-parser,num_dependents_deps.dev:0 github.com/neomura/js-command-line-helpers,num_dependents_deps.dev:0 github.com/neomura/png-to-phomemo-m110,num_dependents_deps.dev:0 +github.com/neomura/setup-aseprite-cli-action, +github.com/neomura/setup-avra-cli-action, github.com/neomura/specification,num_dependents_deps.dev:0 github.com/neomusic/react-bootstrap-navdropdown-active, github.com/neomusic/sacajawea,num_dependents_deps.dev:0 github.com/neomutt/neomutt,criticality_score:0.663600 +github.com/neon-actions/build, +github.com/neon-actions/pack, +github.com/neon-actions/publish, github.com/neon-bindings/cargo-cp-artifact,num_dependents_deps.dev:12 github.com/neon-bindings/create-neon,num_dependents_deps.dev:0 github.com/neon-bindings/create-neon-app,num_dependents_deps.dev:0 @@ -855645,6 +871005,9 @@ github.com/neonbjb/ocotillo, github.com/neonblack-at/vue-busy-state-mixin,num_dependents_deps.dev:0 github.com/neoncloth/mesa-js-client,num_dependents_deps.dev:0 github.com/neoncrisis/grunt-remove-plus-remove-empty,num_dependents_deps.dev:0 +github.com/neondatabase/create-branch-action, +github.com/neondatabase/delete-branch-action, +github.com/neondatabase/reset-branch-action, github.com/neondigital/draggable-helper,num_dependents_deps.dev:0 github.com/neondigital/vue-draggable-nested-tree,num_dependents_deps.dev:0 github.com/neondodongo/twitter-sdk-go,num_dependents_deps.dev:0 @@ -855670,6 +871033,7 @@ github.com/neonichu/linehere-stats,num_dependents_deps.dev:0 github.com/neonichu/shopping,num_dependents_deps.dev:0 github.com/neonichu/trumpify.js,num_dependents_deps.dev:0 github.com/neonicoo/tumor-evolution-modeling, +github.com/neonidian/teams-notify-build-status, github.com/neonightmare/homebridge-yamaha,num_dependents_deps.dev:0 github.com/neonima/ffw,num_dependents_deps.dev:0 github.com/neonious/lowjs,criticality_score:0.448280 @@ -855755,6 +871119,7 @@ github.com/neoscrib/2a,num_dependents_deps.dev:0 github.com/neoscript99/matrix-admin,num_dependents_deps.dev:0 github.com/neoscript99/oo-graphql-service,num_dependents_deps.dev:0 github.com/neoscript99/oo-rest-mobx, +github.com/neosec-com/kubectl-aws-eks, github.com/neoseele/tiddles,num_dependents_deps.dev:0 github.com/neosensory/neosensory-sdk-for-python, github.com/neosergio/random-address, @@ -855849,6 +871214,7 @@ github.com/neoul/libydb,num_dependents_deps.dev:0 github.com/neoul/open-gnmi,num_dependents_deps.dev:0 github.com/neoul/pyangexcel, github.com/neoul/yangtree,num_dependents_deps.dev:0 +github.com/neovasili/aws-codebuild, github.com/neovasili/tflens, github.com/neove/gitCmTest,num_dependents_deps.dev:0 github.com/neoverse/spunky,num_dependents_deps.dev:0 @@ -855895,11 +871261,13 @@ github.com/neoxelox/enum,num_dependents_deps.dev:0 github.com/neoxelox/zeus,num_dependents_deps.dev:0 github.com/neoxia/apoyo,num_dependents_deps.dev:0 github.com/neoxia/element-angular,num_dependents_deps.dev:0 +github.com/neoxia/is-workspace-affected, github.com/neoyewchuan/go-grpc-course,num_dependents_deps.dev:0 github.com/neoyewchuan/gowebdev,num_dependents_deps.dev:0 github.com/neoyewchuan/restdevgo,num_dependents_deps.dev:0 github.com/neoyl/agollolite,num_dependents_deps.dev:0 github.com/neoyung/irLib, +github.com/neoz-technologies/code-sign-action, github.com/neozaru/erc20-test-suite,num_dependents_deps.dev:0 github.com/neozenith/eslint-config,num_dependents_deps.dev:0 github.com/neozenith/invoke-common-tasks, @@ -856085,6 +871453,7 @@ github.com/nerd-coder/fastify-busboy-rx,num_dependents_deps.dev:0 github.com/nerd-coder/sharp-loader,num_dependents_deps.dev:0 github.com/nerd-coder/strapi-provider-upload-digitalocean,num_dependents_deps.dev:0 github.com/nerd-coder/webpack-node-externals,num_dependents_deps.dev:0 +github.com/nerd4ever/ssh-action, github.com/nerdDan/zipline-bitmex, github.com/nerdEd/habitat,num_dependents_deps.dev:0 github.com/nerdErg/AjaxAnywhere,num_dependents_deps.dev:0 @@ -856129,9 +871498,11 @@ github.com/nerdic-coder/react-native-wifi-reborn,num_dependents_deps.dev:0 github.com/nerdic-coder/stencil-cli,num_dependents_deps.dev:0 github.com/nerdic-coder/stencil-container,num_dependents_deps.dev:0 github.com/nerdify/dnic,num_dependents_deps.dev:0 +github.com/nerdify/envoyer-action, github.com/nerdify/micro-query,num_dependents_deps.dev:2 github.com/nerdify/node-tuc-promise,num_dependents_deps.dev:0 github.com/nerdify/p-reject-nullish,num_dependents_deps.dev:0 +github.com/nerdify/ping-action, github.com/nerdify/redis-cache,num_dependents_deps.dev:0 github.com/nerdify/styled-system-primitives,num_dependents_deps.dev:0 github.com/nerdify/tuc-promise, @@ -856178,6 +871549,7 @@ github.com/nerds-and-company/sasslint-webpack-plugin,num_dependents_deps.dev:0 github.com/nerds-and-company/stylelint-config,num_dependents_deps.dev:0 github.com/nerds-coding/nlpa, github.com/nerds-odd-e/react-native-odde-alipay,num_dependents_deps.dev:0 +github.com/nerds-run/odious-ado, github.com/nerds-ufes/polka, github.com/nerdshoredev/authenticate,num_dependents_deps.dev:0 github.com/nerdsofalltrades/gdpr-cookie-monster,num_dependents_deps.dev:0 @@ -856221,6 +871593,8 @@ github.com/nerdypepper/lotus,num_dependents_deps.dev:0 github.com/nerdypepper/pista,num_dependents_deps.dev:0 github.com/nerdypepper/xcursorlocate,num_dependents_deps.dev:0 github.com/nerdyredpanda/discordstatsbot,num_dependents_deps.dev:0 +github.com/nerdyscout/kicad-exports, +github.com/nerdyscout/oshwa-action, github.com/nereine/ecp,num_dependents_deps.dev:0 github.com/nerevu/cachebust-brunch,num_dependents_deps.dev:0 github.com/nerevu/ckanext-heroku, @@ -856259,6 +871633,7 @@ github.com/nerjs/nerjs-utils,num_dependents_deps.dev:0 github.com/nerjs/nlogs,num_dependents_deps.dev:0 github.com/nerjs/react-trc, github.com/nerjs/utils,num_dependents_deps.dev:0 +github.com/nermur/antora-lunr-site-action, github.com/nero-services/nero,num_dependents_deps.dev:0 github.com/neroben/go-fibonacci-series,num_dependents_deps.dev:0 github.com/neroben/prime_number,num_dependents_deps.dev:0 @@ -856610,6 +871985,7 @@ github.com/nestoralonso/ne-treeview,num_dependents_deps.dev:0 github.com/nestoralonso/srcmap-unpkg,num_dependents_deps.dev:0 github.com/nestordemeure/Simplers,num_dependents_deps.dev:0 github.com/nestordemeure/friedrich,num_dependents_deps.dev:0 +github.com/nestordgs-tw/issue-labels-to-level-release, github.com/nestordominguez/bookstore_users-api,num_dependents_deps.dev:0 github.com/nestoredduardo/chatbot,num_dependents_deps.dev:0 github.com/nestoredduardo/curso_golang_platzi,num_dependents_deps.dev:0 @@ -856664,6 +872040,7 @@ github.com/net-byte/tcptun,num_dependents_deps.dev:0 github.com/net-byte/vtun,num_dependents_deps.dev:0 github.com/net-commons/common-logging,criticality_score:0.309680 github.com/net-engine/activity_stream,num_dependents_deps.dev:0 +github.com/net-engine/github-repository-sync-action, github.com/net-engine/node-convert-to-pixels,num_dependents_deps.dev:0 github.com/net-engine/react-form-context-validation,num_dependents_deps.dev:0 github.com/net-engine/react-infinite-scroll,num_dependents_deps.dev:0 @@ -856767,6 +872144,7 @@ github.com/netbox-community/netbox,criticality_score:0.698490 github.com/netbox-community/netbox-animal-sounds, github.com/netbox-community/netbox-demo, github.com/netbox-community/netbox-docker,criticality_score:0.514150 +github.com/netbrain/free-disk-space-action, github.com/netbrain/gocv,num_dependents_deps.dev:0 github.com/netbrain/hyper-shift-insert,num_dependents_deps.dev:0 github.com/netbrick/chattycrow_nodejs,num_dependents_deps.dev:0 @@ -856811,6 +872189,7 @@ github.com/netcontrold/netcontrold-py, github.com/netconvdelivery/react-native-schedule-hours,num_dependents_deps.dev:0 github.com/netcracker-p2p-streaming/krakend,num_dependents_deps.dev:0 github.com/netcrazy/mysqldb-handler, +github.com/netcreaties/has-one-of-label, github.com/netcrest/pado,num_dependents_deps.dev:17 github.com/netdata/charts,num_dependents_deps.dev:0 github.com/netdata/custom-dashboard,num_dependents_deps.dev:0 @@ -856851,6 +872230,7 @@ github.com/netenglabs/suzieq,criticality_score:0.445770 github.com/netes/ember-unit-test-action-helper,num_dependents_deps.dev:0 github.com/netevert/hodl, github.com/netf/dagger,num_dependents_deps.dev:0 +github.com/netf/helm-eks-action, github.com/netfere/netfere-ts,num_dependents_deps.dev:0 github.com/netflame/scraprom, github.com/netfleetorg/netfleet-api,num_dependents_deps.dev:0 @@ -857153,6 +872533,7 @@ github.com/netnr/zoning,num_dependents_deps.dev:0 github.com/netoax/knot-cloud-sdk-js-amqp,num_dependents_deps.dev:0 github.com/netocodec/mycloud,num_dependents_deps.dev:0 github.com/netodeolino/ng-select-iic,num_dependents_deps.dev:0 +github.com/netodevel/conventional-commits-checker, github.com/netogallo/gulp-topological-pipe,num_dependents_deps.dev:0 github.com/netoguimaraes/bootstrap-grid-only,num_dependents_deps.dev:0 github.com/netoguimaraes/media-stream-merger,num_dependents_deps.dev:0 @@ -857299,6 +872680,7 @@ github.com/netsells/storybook-mockdate,num_dependents_deps.dev:0 github.com/netsells/storybook-nuxt-asyncdata,num_dependents_deps.dev:0 github.com/netsells/storybook-router,num_dependents_deps.dev:0 github.com/netsells/storycap-lazy-wait,num_dependents_deps.dev:0 +github.com/netsells/update-flutter-packages, github.com/netsells/vue-dom-listeners,num_dependents_deps.dev:0 github.com/netsells/vue-parallax,num_dependents_deps.dev:0 github.com/netsells/vue-set-timeout,num_dependents_deps.dev:0 @@ -857342,6 +872724,7 @@ github.com/netsoc/webspace-images,num_dependents_deps.dev:0 github.com/netsoc/webspaced,num_dependents_deps.dev:0 github.com/netsoft-ruidias/netsoft-hooks,num_dependents_deps.dev:0 github.com/netson/ahvl, +github.com/netsparker/Netsparker-Cloud-GitHub-Actions, github.com/netspi/aws_consoler, github.com/netspi/goddi,num_dependents_deps.dev:0 github.com/netspyer/simplerun, @@ -857401,6 +872784,7 @@ github.com/nettoolkit/ntk-client-java,num_dependents_deps.dev:0 github.com/nettpack/core,num_dependents_deps.dev:0 github.com/netty/netty,"criticality_score:0.824620,num_dependents_deps.dev:897540" github.com/netty/netty-build,num_dependents_deps.dev:0 +github.com/netty/netty-incubator-bom, github.com/netty/netty-incubator-codec-http3,num_dependents_deps.dev:0 github.com/netty/netty-incubator-codec-quic,num_dependents_deps.dev:0 github.com/netty/netty-incubator-h3spec-maven-plugin,num_dependents_deps.dev:0 @@ -857463,6 +872847,7 @@ github.com/netways/ido-cleanup,num_dependents_deps.dev:0 github.com/netways/notify-brevisone,num_dependents_deps.dev:0 github.com/netways/support-collector,num_dependents_deps.dev:0 github.com/netways/traefik-provider-openstack,num_dependents_deps.dev:0 +github.com/netwerk-digitaal-erfgoed/bikeshed-action, github.com/netwerk-digitaal-erfgoed/network-of-terms-catalog,num_dependents_deps.dev:0 github.com/netwide-assembler/nasm,criticality_score:0.483940 github.com/netwjx/grunt-ftpscript,num_dependents_deps.dev:0 @@ -857874,6 +873259,7 @@ github.com/neuroelectro/neuroelectro_org, github.com/neuroelf/isicarchive, github.com/neuroforgede/RESTful-stream.ts,num_dependents_deps.dev:0 github.com/neuroforgede/hetzner_set_dns_txt_record, +github.com/neurogenomics/rworkflows, github.com/neuroglia-io/js-framework,num_dependents_deps.dev:0 github.com/neurohotep/webpush-go,num_dependents_deps.dev:0 github.com/neuroidsolutions/react-neuroid,num_dependents_deps.dev:0 @@ -858065,6 +873451,7 @@ github.com/neutrinojs/babel-merge,num_dependents_deps.dev:260 github.com/neutrinojs/neutrino,"criticality_score:0.517510,num_dependents_deps.dev:1196" github.com/neutrinojs/webpack-chain,"criticality_score:0.427440,num_dependents_deps.dev:3464" github.com/neutrinolabs/xrdp,criticality_score:0.625620 +github.com/neutrinos-os/action-ratchet-check-dir, github.com/neutrium/math,num_dependents_deps.dev:6 github.com/neutrium/pipe,num_dependents_deps.dev:0 github.com/neutrium/quantity,num_dependents_deps.dev:2 @@ -858084,10 +873471,12 @@ github.com/neutronkit/neutron,num_dependents_deps.dev:0 github.com/neutrons/ipywe, github.com/neutrons/pystog, github.com/neutronstein/go-yaml,num_dependents_deps.dev:0 +github.com/neuvector/scan-action, github.com/neuvieme-page/vue-directive-observable,num_dependents_deps.dev:0 github.com/neuxbane/persegi,num_dependents_deps.dev:0 github.com/nev3rmi/fake_vn_user, github.com/nev64/gulp-babel-compile,num_dependents_deps.dev:0 +github.com/nev7n/wait_for_response, github.com/neva/ArcticWeb, github.com/nevace/xero-promise,num_dependents_deps.dev:0 github.com/nevadavid/nevnap,num_dependents_deps.dev:0 @@ -858103,6 +873492,7 @@ github.com/nevans/d_heap,num_dependents_deps.dev:0 github.com/nevans/net-sasl,num_dependents_deps.dev:0 github.com/nevans/resque-pool,"criticality_score:0.326100,num_dependents_deps.dev:8" github.com/nevarman/yet, +github.com/nevcodia/portainer-stack-deployment, github.com/nevech/cut-substring,num_dependents_deps.dev:0 github.com/nevech/express-rest-response,num_dependents_deps.dev:0 github.com/nevech/fsdk,num_dependents_deps.dev:0 @@ -858137,6 +873527,9 @@ github.com/neverendingqs-sandbox/nodejs-example,num_dependents_deps.dev:0 github.com/neverendingqs/barebones-test-npm-package,num_dependents_deps.dev:0 github.com/neverendingqs/calc-fsm-js,num_dependents_deps.dev:0 github.com/neverendingqs/cron-allowed-range,num_dependents_deps.dev:0 +github.com/neverendingqs/gh-action-node-bump-version-pr, +github.com/neverendingqs/gh-action-node-update-deps, +github.com/neverendingqs/gh-action-tag-on-npm-version, github.com/neverendingqs/netlify-deployment-hours-plugin,num_dependents_deps.dev:0 github.com/neverendingqs/openssl-self-signed-certificate,num_dependents_deps.dev:308 github.com/neverendingqs/publish-me-maybe,num_dependents_deps.dev:0 @@ -858291,6 +873684,7 @@ github.com/nevzatgunay/ng,num_dependents_deps.dev:0 github.com/nevzatgunay/react-loadist,num_dependents_deps.dev:0 github.com/nevzheng/hexlink,num_dependents_deps.dev:0 github.com/nevzorl/gamemax-paginator,num_dependents_deps.dev:0 +github.com/new-adventure-aerolite/hello-world-javascript-action, github.com/new-data-services/nds-laravel-elixir-tasks,num_dependents_deps.dev:0 github.com/new-eden-social/new-eden-social,num_dependents_deps.dev:0 github.com/new-fantastic/fantastic-css,num_dependents_deps.dev:0 @@ -858483,6 +873877,7 @@ github.com/newinternetboy/golang-datastructandalgorithm,num_dependents_deps.dev: github.com/newism/lerna,num_dependents_deps.dev:0 github.com/newity/crawler,num_dependents_deps.dev:0 github.com/newity/fastme,num_dependents_deps.dev:0 +github.com/newkdev/setup-depot-tools, github.com/newleaders/thincloud-authentication,num_dependents_deps.dev:0 github.com/newleaders/thincloud-postmark,num_dependents_deps.dev:0 github.com/newleaders/thincloud-test,num_dependents_deps.dev:0 @@ -858579,8 +873974,10 @@ github.com/newraina/typed-kit,num_dependents_deps.dev:0 github.com/newreleasesio/cli-go,num_dependents_deps.dev:0 github.com/newreleasesio/client-go,num_dependents_deps.dev:0 github.com/newrelic-experimental/gatsby-plugin-newrelic,num_dependents_deps.dev:0 +github.com/newrelic-experimental/gha-new-relic-exporter, github.com/newrelic-experimental/newrelic-webpack-plugin,num_dependents_deps.dev:0 github.com/newrelic-experimental/nri-cassandra-status-plugin,num_dependents_deps.dev:0 +github.com/newrelic-experimental/synthetics-sync, github.com/newrelic-forks/amazon-vpc-cni-k8s,num_dependents_deps.dev:0 github.com/newrelic-forks/autoscaler,num_dependents_deps.dev:0 github.com/newrelic-forks/cluster-api-provider-aws,num_dependents_deps.dev:0 @@ -858594,6 +873991,7 @@ github.com/newrelic-forks/windows_exporter,num_dependents_deps.dev:0 github.com/newrelic-platform/newrelic_f5_plugin,num_dependents_deps.dev:0 github.com/newrelic-platform/newrelic_plugin,num_dependents_deps.dev:0 github.com/newrelic/centurion,"criticality_score:0.313960,num_dependents_deps.dev:0" +github.com/newrelic/deployment-marker-action, github.com/newrelic/developer-toolkit,num_dependents_deps.dev:0 github.com/newrelic/gatsby-plugin-newrelic,num_dependents_deps.dev:0 github.com/newrelic/gatsby-theme-newrelic,num_dependents_deps.dev:0 @@ -858602,6 +874000,7 @@ github.com/newrelic/infra-identity-client-go,num_dependents_deps.dev:1 github.com/newrelic/infra-integrations-sdk,num_dependents_deps.dev:1 github.com/newrelic/infrastructure-agent,num_dependents_deps.dev:2 github.com/newrelic/infrastructure-publish-action,num_dependents_deps.dev:0 +github.com/newrelic/junit-reporter-action, github.com/newrelic/k8s-metadata-injection,num_dependents_deps.dev:0 github.com/newrelic/newrelic-airflow-plugin, github.com/newrelic/newrelic-cli,num_dependents_deps.dev:0 @@ -858670,12 +874069,15 @@ github.com/newrelic/nri-winservices,num_dependents_deps.dev:0 github.com/newrelic/opentelemetry-exporter-go,num_dependents_deps.dev:0 github.com/newrelic/opentelemetry-exporter-python, github.com/newrelic/proxy,num_dependents_deps.dev:0 +github.com/newrelic/repolinter-action, github.com/newrelic/rpm,num_dependents_deps.dev:18 github.com/newrelic/rpm_contrib,num_dependents_deps.dev:0 github.com/newrelic/sidecar,num_dependents_deps.dev:0 github.com/newrelic/statsd-infra-backend,num_dependents_deps.dev:0 github.com/newrelic/terraform-provider-newrelic,num_dependents_deps.dev:0 github.com/newrelic/tutone,num_dependents_deps.dev:0 +github.com/newrelic/validate-nerdpack-action, +github.com/newrelic/wiki-sync-action, github.com/newrelic/yakaa,num_dependents_deps.dev:308 github.com/newrelickk/logback-newrelic-appender,num_dependents_deps.dev:0 github.com/newren/git-filter-repo,criticality_score:0.431480 @@ -858819,6 +874221,7 @@ github.com/newtriks/generator-react-webpack,num_dependents_deps.dev:0 github.com/newtykins/8ball.js, github.com/newtykins/canvas-gif,num_dependents_deps.dev:0 github.com/newtykins/clapped, +github.com/newtykins/osu-profile, github.com/newtykins/owoifyx, github.com/newtykins/tipper, github.com/newubuntu/pm2-linealert, @@ -858964,6 +874367,7 @@ github.com/nexissis/ethercalc, github.com/nexiumapp/postbus,num_dependents_deps.dev:0 github.com/nexkonig/learning-git,num_dependents_deps.dev:0 github.com/nexmo-community/clientsdk-ui-js, +github.com/nexmo-community/nexmo-sms-action, github.com/nexmo-community/vonage-java-spring,num_dependents_deps.dev:0 github.com/nexmo-se/botbuilder-adapter-vonage,num_dependents_deps.dev:0 github.com/nexmo-se/botbuilder-adapter-vonage-js,num_dependents_deps.dev:0 @@ -858990,6 +874394,7 @@ github.com/nexonsu/telegram-go-chatbot,num_dependents_deps.dev:0 github.com/nexoscp/fixme.ts,num_dependents_deps.dev:0 github.com/nexosis/nexosisclient-py, github.com/nexryai/abh-checker,num_dependents_deps.dev:0 +github.com/nexryai/bluemoon, github.com/nexsodev/eslint-config,num_dependents_deps.dev:0 github.com/nexssp/ansi, github.com/nexssp/cache, @@ -859183,6 +874588,7 @@ github.com/nextdoorUncleLiu/element-rendering-webpack-loader, github.com/nextdoorUncleLiu/element-rendering-webpack-plugin, github.com/nextdots/file-status-handler,num_dependents_deps.dev:0 github.com/nexter21/myshadowizard,num_dependents_deps.dev:0 +github.com/nexterias/actions-vercel, github.com/nexteve/NetEaseMusic,num_dependents_deps.dev:0 github.com/nextfaze/FilePicker-Phonegap-iOS-Plugin,num_dependents_deps.dev:0 github.com/nextfaze/devmod,num_dependents_deps.dev:0 @@ -859197,6 +874603,8 @@ github.com/nextfortune/datatransformer, github.com/nextfortune/modelbricks, github.com/nextgenadarsh/nextgen-react-components,num_dependents_deps.dev:0 github.com/nextgenhealthcare/connect,criticality_score:0.384840 +github.com/nextgens/authenticode-sign-action, +github.com/nextgenthemes/action-wordpress-plugin-deploy, github.com/nextgenusfs/amptk, github.com/nextgenusfs/funannotate, github.com/nextgenusfs/gapmm2, @@ -859209,6 +874617,7 @@ github.com/nextgis/pygdal, github.com/nextglass/untappd-style-guide,num_dependents_deps.dev:0 github.com/nextgovbr/gitbook-plugin-theme-next,num_dependents_deps.dev:0 github.com/nextgraph/vx-components,num_dependents_deps.dev:0 +github.com/nexthink-cloud/aws-sigv4-action, github.com/nexthink/scala-parser-combinators-completion,num_dependents_deps.dev:0 github.com/nextindex/vue-simple-accordion,num_dependents_deps.dev:0 github.com/nextinq/date-utils,num_dependents_deps.dev:0 @@ -859306,6 +874715,7 @@ github.com/nexumAG/next-router,num_dependents_deps.dev:0 github.com/nexumAG/nx-kit, github.com/nexuni/Famcy, github.com/nexuni/FamcyTools, +github.com/nexus-actions/create-nexus-staging-repo, github.com/nexus-actions/create-nexus-staging-repo-sample,num_dependents_deps.dev:0 github.com/nexus-cmf/core,num_dependents_deps.dev:0 github.com/nexus-cmf/simple-filesystem-storage-backend,num_dependents_deps.dev:0 @@ -859365,6 +874775,9 @@ github.com/nexxy/hidstream,num_dependents_deps.dev:0 github.com/nexxy/nice-package,num_dependents_deps.dev:0 github.com/nexxy/riakstar,num_dependents_deps.dev:0 github.com/nexys-system/crypto,num_dependents_deps.dev:1 +github.com/nexys-system/gh-actions-docker-node, +github.com/nexys-system/gh-actions-docker-spa, +github.com/nexys-system/gh-actions-spa-test, github.com/nexys-system/mock-data,num_dependents_deps.dev:0 github.com/nexys-system/react-bootstrap-components,num_dependents_deps.dev:0 github.com/nexys-system/react-i18n,num_dependents_deps.dev:0 @@ -859414,6 +874827,7 @@ github.com/neyric/swf-lambda-decider-poller,num_dependents_deps.dev:0 github.com/neyric/webhookit,num_dependents_deps.dev:0 github.com/neyric/webhookit-packages,num_dependents_deps.dev:0 github.com/neyric/yproject,num_dependents_deps.dev:0 +github.com/neyron163/gajira-todo, github.com/neysidev/go-chat,num_dependents_deps.dev:0 github.com/neysofu/codegen-rs,num_dependents_deps.dev:0 github.com/neysofu/fasters,num_dependents_deps.dev:0 @@ -859451,8 +874865,11 @@ github.com/neztore/save-server,num_dependents_deps.dev:0 github.com/nezu-lab/nitro-sniper-in-go,num_dependents_deps.dev:0 github.com/nezullol/TerraTech-CS-Devcamp-JS-Footer,num_dependents_deps.dev:0 github.com/nf-core/rnaseq,criticality_score:0.585550 +github.com/nf-core/setup-nextflow, github.com/nf-core/tools, +github.com/nf-core/tower-action, github.com/nf-it/wefram, +github.com/nf-s/gcs-bucket-sync-action, github.com/nf/anus,num_dependents_deps.dev:0 github.com/nf/remotefix,num_dependents_deps.dev:0 github.com/nf/vanity,num_dependents_deps.dev:0 @@ -859550,10 +874967,12 @@ github.com/nfer/npm-check-unused,num_dependents_deps.dev:0 github.com/nfer/opn-browser-webpack-plugin,num_dependents_deps.dev:0 github.com/nfer/v-slide,num_dependents_deps.dev:0 github.com/nfer/vue-bulma-dialog,num_dependents_deps.dev:0 +github.com/nferch/setup-nomad, github.com/nferocious76/web-storage-manager,num_dependents_deps.dev:0 github.com/nferrara100/dependamerge,num_dependents_deps.dev:0 github.com/nferro/homebridge-http-json,num_dependents_deps.dev:0 github.com/nfgoto/golang-workshop,num_dependents_deps.dev:0 +github.com/nfhipona/guestbook-workflow, github.com/nfi-engineering/pcmiler, github.com/nficano/exhal, github.com/nficano/humps, @@ -859603,6 +875022,7 @@ github.com/nfl/react-metrics,num_dependents_deps.dev:6 github.com/nflaig/github-init-cli,num_dependents_deps.dev:0 github.com/nflaig/loopback4-cosmosdb-retry,num_dependents_deps.dev:0 github.com/nflaig/loopback4-migration,num_dependents_deps.dev:0 +github.com/nflaig/release-comment-on-pr, github.com/nfllab/fotafixer,num_dependents_deps.dev:0 github.com/nflorentin/vaporizer,num_dependents_deps.dev:0 github.com/nflow-js/nflow,num_dependents_deps.dev:0 @@ -859794,6 +875214,7 @@ github.com/nfront/use-scroll-position,num_dependents_deps.dev:0 github.com/nfs-ganesha/nfs-ganesha,criticality_score:0.651190 github.com/nfs-ganesha/ntirpc,Google github.com/nfs002/trading_strategy_optimisation_server,num_dependents_deps.dev:0 +github.com/nfsc-tommy/axios, github.com/nfseixas/cypress-vtex-utils,num_dependents_deps.dev:0 github.com/nfsi-canada/OBStools, github.com/nfsjfqfy/toPromise,num_dependents_deps.dev:0 @@ -860043,7 +875464,9 @@ github.com/ngaiwe/vue-onoff,num_dependents_deps.dev:0 github.com/ngaiwe/vue-progressbar,num_dependents_deps.dev:0 github.com/ngaiwe/vue-router-auto,num_dependents_deps.dev:0 github.com/ngakana/golang-basics,num_dependents_deps.dev:0 +github.com/ngalaiko/bazel-action, github.com/ngalaiko/miniboard,num_dependents_deps.dev:0 +github.com/ngalaiko/setup-hledger, github.com/ngallagher/simplexml,Google github.com/ngaller/sdata-node-client,num_dependents_deps.dev:0 github.com/ngallup/zeoliteclusterizer, @@ -860119,6 +875542,7 @@ github.com/ngdevelop-tech/ngx-fancy-logger,num_dependents_deps.dev:0 github.com/ngdinhtoan/go-bindata,num_dependents_deps.dev:0 github.com/ngduc/allspark,num_dependents_deps.dev:0 github.com/ngduc/api-now,num_dependents_deps.dev:0 +github.com/ngduc/clean-up-action, github.com/ngduc/create-react-form,num_dependents_deps.dev:0 github.com/ngduc/ez-form,num_dependents_deps.dev:0 github.com/ngduc/ez-formik,num_dependents_deps.dev:0 @@ -860136,6 +875560,7 @@ github.com/ngduc/react-setup,num_dependents_deps.dev:0 github.com/ngduc/react-tabulator,"criticality_score:0.377750,num_dependents_deps.dev:4" github.com/ngduc/ui-form-field, github.com/ngduc/uiform,num_dependents_deps.dev:0 +github.com/ngduc/vercel-deploy-action, github.com/ngdz/abpdz,num_dependents_deps.dev:0 github.com/ngdz/ngdz-file-icons, github.com/ngdz/ngdz-file-viewers,num_dependents_deps.dev:0 @@ -860176,8 +875601,11 @@ github.com/ngerakines/elasticservices,num_dependents_deps.dev:0 github.com/ngerakines/error,num_dependents_deps.dev:0 github.com/ngerakines/feature,num_dependents_deps.dev:0 github.com/ngerakines/maven-protobuf,num_dependents_deps.dev:0 +github.com/ngerakines/pr-has-issues-action, github.com/ngerakines/sslhound-matrix,num_dependents_deps.dev:0 github.com/ngergo6/hain-plugin-taskkill,num_dependents_deps.dev:0 +github.com/ngeri/prepare-signing, +github.com/ngeri/version-bump, github.com/ngerritsen/calcucli,num_dependents_deps.dev:0 github.com/ngerritsen/calculy,num_dependents_deps.dev:0 github.com/ngerritsen/containor,num_dependents_deps.dev:0 @@ -860335,6 +875763,7 @@ github.com/nginxinc/crossplane,criticality_score:0.320600 github.com/nginxinc/docker-nginx,criticality_score:0.486460 github.com/nginxinc/kubernetes-ingress,"criticality_score:0.555710,num_dependents_deps.dev:0" github.com/nginxinc/nginx-asg-sync,num_dependents_deps.dev:0 +github.com/nginxinc/nginx-for-azure-deploy-action, github.com/nginxinc/nginx-ingress-operator,num_dependents_deps.dev:0 github.com/nginxinc/nginx-ldap-auth,criticality_score:0.299780 github.com/nginxinc/nginx-ns1-gslb,num_dependents_deps.dev:0 @@ -860388,6 +875817,7 @@ github.com/ngmiller/mips-assembler, github.com/ngminhtrung/d3-brush-lite, github.com/ngmmartins/building-microservices,num_dependents_deps.dev:0 github.com/ngmmartins/go-course-udemy,num_dependents_deps.dev:0 +github.com/ngmy/phive-install-action, github.com/ngn-chassis/framework, github.com/ngn/apl,num_dependents_deps.dev:0 github.com/ngneat/bind-query-params, @@ -860471,6 +875901,9 @@ github.com/ngocluan1192/s3-dl,num_dependents_deps.dev:0 github.com/ngocngoan/djangorestframework-simplejwt-mongoengine, github.com/ngocnn1104/react-material-alert,num_dependents_deps.dev:0 github.com/ngocquang/react-curveto,num_dependents_deps.dev:0 +github.com/ngocquyhoang/laravel-deploy, +github.com/ngocsangyem/cypress-notify, +github.com/ngocsangyem/cypress-reporter, github.com/ngocsangyem/generator-ky,num_dependents_deps.dev:0 github.com/ngocsangyem/generator-yem,num_dependents_deps.dev:0 github.com/ngocsangyem/yem,num_dependents_deps.dev:0 @@ -860489,6 +875922,7 @@ github.com/ngoduyanh/glsl-intersect,num_dependents_deps.dev:0 github.com/ngoduykhanh/PowerDNS-Admin,criticality_score:0.490080 github.com/ngoduykhanh/wireguard-ui,num_dependents_deps.dev:0 github.com/ngoet/MarkdownDocs, +github.com/ngoishi/autoML, github.com/ngokevin/a-animation,num_dependents_deps.dev:0 github.com/ngokevin/aframe-mixinsheet,num_dependents_deps.dev:0 github.com/ngokevin/aframe-mss, @@ -860688,6 +876122,7 @@ github.com/ngs-lang/ngs,criticality_score:0.421450 github.com/ngs/aws1pif,num_dependents_deps.dev:0 github.com/ngs/draft-js-markdown-shortcuts-plugin,num_dependents_deps.dev:0 github.com/ngs/go-onepif,num_dependents_deps.dev:0 +github.com/ngs/go-release.action, github.com/ngs/hubot-browserstack,num_dependents_deps.dev:0 github.com/ngs/hubot-cloudfront,num_dependents_deps.dev:0 github.com/ngs/hubot-hotpepper,num_dependents_deps.dev:0 @@ -860873,6 +876308,7 @@ github.com/nguyenphutrong/array-combination,num_dependents_deps.dev:0 github.com/nguyenq/lept4j,num_dependents_deps.dev:65 github.com/nguyenq/tess4j,"criticality_score:0.427560,num_dependents_deps.dev:31" github.com/nguyenquangminh0711/ruby_jard,num_dependents_deps.dev:0 +github.com/nguyenquyhy/zip-release, github.com/nguyentaijs/basic_algorithm_and_structure,num_dependents_deps.dev:0 github.com/nguyentamphu/lcd_digit,num_dependents_deps.dev:0 github.com/nguyentantuan/go-rest-api,num_dependents_deps.dev:0 @@ -860942,6 +876378,9 @@ github.com/nguyenvanquanthinh97/golang,num_dependents_deps.dev:0 github.com/nguyenvantat1182002/pylite3, github.com/nguyenvantien2009/async-odoo-xmlrpc,num_dependents_deps.dev:0 github.com/nguyenvantuan2391996/back-end-chat-simple,num_dependents_deps.dev:0 +github.com/nguyenvanuyn96/str-find-action, +github.com/nguyenvanuyn96/str-find-and-replace-action, +github.com/nguyenvukhang/semver-increment, github.com/nguyenvulebinh/regtag, github.com/nguyenvulebinh/visen, github.com/nguyenvulong/actions-demo-go,num_dependents_deps.dev:0 @@ -860958,6 +876397,7 @@ github.com/ngvpn/edge,num_dependents_deps.dev:0 github.com/ngvpn/netstack,num_dependents_deps.dev:0 github.com/ngvpn/tunnel,num_dependents_deps.dev:0 github.com/ngwattcos/react-python,num_dependents_deps.dev:0 +github.com/ngworker/angular-versions-action, github.com/ngworker/lumberjack,num_dependents_deps.dev:0 github.com/ngworker/lumberjack-applicationinsights-driver,num_dependents_deps.dev:0 github.com/ngworker/ngworker,num_dependents_deps.dev:0 @@ -861139,11 +876579,13 @@ github.com/nhahn/organic_hash,num_dependents_deps.dev:0 github.com/nhaines-pro/python-crazyhusk, github.com/nhairs/domain-park, github.com/nhairs/nserver, +github.com/nhalase/create-google-application-credentials-json, github.com/nhalase/lorem-enhanced,num_dependents_deps.dev:0 github.com/nhalstead/exitplan,num_dependents_deps.dev:0 github.com/nhalstead/go-ssl-fingerprint,num_dependents_deps.dev:0 github.com/nhalstead/sprint,num_dependents_deps.dev:0 github.com/nhalstead/ssl-fingerprint,num_dependents_deps.dev:0 +github.com/nhalstead/validate-json-action, github.com/nham/rust-base58,num_dependents_deps.dev:13 github.com/nhamilakis/virtual-dataset, github.com/nhammond101/cloudfront-ip-ranges,num_dependents_deps.dev:0 @@ -861165,6 +876607,7 @@ github.com/nhanle020285/onebuild,num_dependents_deps.dev:264 github.com/nhanle020285/onecms,num_dependents_deps.dev:0 github.com/nhanle020285/onesystem,num_dependents_deps.dev:3160 github.com/nhanngo1/nodejs-endecrypt,num_dependents_deps.dev:0 +github.com/nhantrantrong/cypress-test-results, github.com/nhantranz/ucp9, github.com/nhants/id-card-model,num_dependents_deps.dev:0 github.com/nhants/id-card-model-testing,num_dependents_deps.dev:0 @@ -861193,6 +876636,7 @@ github.com/nharris85/evaluate-style,num_dependents_deps.dev:0 github.com/nharris85/node_acl_arangodb,num_dependents_deps.dev:0 github.com/nharris85/node_acl_dynamodb,num_dependents_deps.dev:0 github.com/nharris85/redux-async-actions,num_dependents_deps.dev:0 +github.com/nhartland/love-build, github.com/nharward/ghopac,num_dependents_deps.dev:0 github.com/nharward/nom-gzip,num_dependents_deps.dev:0 github.com/nhas/checkpoint-audit,num_dependents_deps.dev:0 @@ -861217,6 +876661,7 @@ github.com/nhatnhanchiha/bookstore_users-api,num_dependents_deps.dev:0 github.com/nhatnhanchiha/bookstore_utils-go,num_dependents_deps.dev:0 github.com/nhatsmrt/nn-toolbox, github.com/nhatsmrt/wiki-dpr, +github.com/nhattan/brakeman-linter-action, github.com/nhatthm/aferoassert,num_dependents_deps.dev:2 github.com/nhatthm/aferocopy,num_dependents_deps.dev:2 github.com/nhatthm/aferodog,num_dependents_deps.dev:0 @@ -861225,7 +876670,9 @@ github.com/nhatthm/clockdog,num_dependents_deps.dev:0 github.com/nhatthm/cobra-plugin,num_dependents_deps.dev:0 github.com/nhatthm/consoledog,num_dependents_deps.dev:0 github.com/nhatthm/expandog,num_dependents_deps.dev:0 +github.com/nhatthm/gherkin-lint-action, github.com/nhatthm/go-clock,num_dependents_deps.dev:8 +github.com/nhatthm/govanityrender-action, github.com/nhatthm/httpmock,num_dependents_deps.dev:4 github.com/nhatthm/moneyloverapi,num_dependents_deps.dev:0 github.com/nhatthm/moneylovercli-plugin-n26,num_dependents_deps.dev:0 @@ -861262,6 +876709,10 @@ github.com/nhducit/react-native-keyboard-aware-scrollview,num_dependents_deps.de github.com/nhduong29/boomerang,num_dependents_deps.dev:0 github.com/nhduong29/node-windows,num_dependents_deps.dev:0 github.com/nhduong29/react-pivot,num_dependents_deps.dev:0 +github.com/nhedger/get-sops-secret, +github.com/nhedger/package-vscode-extension, +github.com/nhedger/setup-exoscale, +github.com/nhedger/setup-sops, github.com/nhedlund/intrinio, github.com/nhedlund/primo, github.com/nheingit/proofofstake,num_dependents_deps.dev:0 @@ -861318,6 +876769,7 @@ github.com/nherment/seneca-workflow,num_dependents_deps.dev:0 github.com/nherment/termite,num_dependents_deps.dev:0 github.com/nherment/tornfish,num_dependents_deps.dev:0 github.com/nhero/cards,num_dependents_deps.dev:0 +github.com/nhevia/discord-styled-releases, github.com/nhevia/simple-docs,num_dependents_deps.dev:0 github.com/nheyn/async-dispatcher,num_dependents_deps.dev:0 github.com/nheyn/express-isomorphic-dispatcher,num_dependents_deps.dev:0 @@ -861374,6 +876826,7 @@ github.com/nhn/karma-webdriver-launcher,num_dependents_deps.dev:0 github.com/nhn/raphael,num_dependents_deps.dev:4 github.com/nhn/to-mark,num_dependents_deps.dev:336 github.com/nhn/toast-ui.date,num_dependents_deps.dev:0 +github.com/nhn/toast-ui.detect-runtime-error-actions, github.com/nhn/toast-ui.doc,num_dependents_deps.dev:0 github.com/nhn/toast-ui.react-chart, github.com/nhn/toast-ui.react-grid, @@ -861468,6 +876921,8 @@ github.com/nhoffman/mkvenv, github.com/nhoffman/rvenv, github.com/nhoizey/eleventy-plugin-images-responsiver,num_dependents_deps.dev:0 github.com/nhoizey/eleventy-plugin-link_to,num_dependents_deps.dev:0 +github.com/nhoizey/github-action-feed-to-mastodon, +github.com/nhoizey/github-action-jsonfeed-to-mastodon, github.com/nhoizey/images-responsiver,num_dependents_deps.dev:0 github.com/nhoizey/jekyll-cloudinary,num_dependents_deps.dev:0 github.com/nhoizey/jekyll-postfiles,num_dependents_deps.dev:0 @@ -861481,9 +876936,12 @@ github.com/nhojpatrick/nhojpatrick-pmd-ruleset,num_dependents_deps.dev:0 github.com/nhojpatrick/nhojpatrick-sortpom-sortorderfile,num_dependents_deps.dev:0 github.com/nhojpatrick/nhojpatrick-versions-ruleset,num_dependents_deps.dev:0 github.com/nholcomb/firstapp,num_dependents_deps.dev:0 +github.com/nholden/modified-file-filter-action, github.com/nholthaus/units,criticality_score:0.395510 github.com/nhomble/feed-cli,num_dependents_deps.dev:0 +github.com/nhomble/groupme-notify-action, github.com/nhomble/highlightjs-ocl,num_dependents_deps.dev:0 +github.com/nhomble/mia-action, github.com/nhonx/jsoform, github.com/nhonx/random_lib,num_dependents_deps.dev:0 github.com/nhood-org/gre-scraper,num_dependents_deps.dev:0 @@ -861498,6 +876956,10 @@ github.com/nhorro/videoanalytics, github.com/nhorvath/Pyrebase4, github.com/nhorvath/python-thermoworks-smoke, github.com/nhoss2/nodewiki,num_dependents_deps.dev:0 +github.com/nhost-actions/authenticate, +github.com/nhost-actions/configure-container-registry, +github.com/nhost-actions/install-nhost-cli, +github.com/nhost-actions/nhost-run-config-deploy, github.com/nhost/cli,num_dependents_deps.dev:0 github.com/nhost/hasura-backend-plus,"criticality_score:0.486630,num_dependents_deps.dev:0" github.com/nhost/hasura-storage,num_dependents_deps.dev:0 @@ -861861,6 +877323,7 @@ github.com/nibynic/ember-deep-buffered-proxy, github.com/nibynic/ember-form-builder, github.com/nibynic/ember-template-bread-crumbs, github.com/nibyou/bip-39-de,num_dependents_deps.dev:0 +github.com/nic-6443/action-tmate, github.com/nic-at/certbot-dns-rcode0, github.com/nic-dimmock/tiny,num_dependents_deps.dev:0 github.com/nic-hartley/httpserv,num_dependents_deps.dev:0 @@ -862054,6 +877517,7 @@ github.com/nichdiekuh/generator-marionette2,num_dependents_deps.dev:0 github.com/nichdiekuh/generator-mocha-amd2,num_dependents_deps.dev:0 github.com/nichdiekuh/node-mongo2influx,num_dependents_deps.dev:0 github.com/nichealpham/sandrasoft,num_dependents_deps.dev:0 +github.com/nichedao/action-update-version, github.com/nicheinc/expedite-tokens,num_dependents_deps.dev:0 github.com/nicheinc/node-can-do,num_dependents_deps.dev:0 github.com/nicheinc/sfdcclient,num_dependents_deps.dev:0 @@ -862064,6 +877528,7 @@ github.com/nichenqin/seact,num_dependents_deps.dev:0 github.com/nichenqin1001/lettering,num_dependents_deps.dev:0 github.com/nichenqin1001/loadbar,num_dependents_deps.dev:0 github.com/nichenqin1001/wall.js,num_dependents_deps.dev:0 +github.com/nichevision/sharefile-upload-artifact, github.com/nicho92/cardtrader-api-java,num_dependents_deps.dev:0 github.com/nicho92/mkm-api-java,num_dependents_deps.dev:0 github.com/nicho92/mtgstock-api-java,num_dependents_deps.dev:0 @@ -862182,6 +877647,7 @@ github.com/nicholasgasior/github-webhookd,num_dependents_deps.dev:0 github.com/nicholasgasior/go-cli,num_dependents_deps.dev:0 github.com/nicholasglazer/termi,num_dependents_deps.dev:0 github.com/nicholasglesmann/sfnick,num_dependents_deps.dev:0 +github.com/nicholasgriffintn/github-branch-deployment-action, github.com/nicholasgubbins/Serverless-Image-Resizer,num_dependents_deps.dev:0 github.com/nicholasguo/alieninvasion,num_dependents_deps.dev:0 github.com/nicholasimon/bulk_adwords_ad_creator_aug2021,num_dependents_deps.dev:0 @@ -862402,6 +877868,7 @@ github.com/nichtich/wikidata-taxonomy,num_dependents_deps.dev:0 github.com/nichtsen/lis,num_dependents_deps.dev:0 github.com/nichtsen/simpleauth,num_dependents_deps.dev:0 github.com/nichtsen/test-go,num_dependents_deps.dev:0 +github.com/nichuanfang/ssh-remote-action, github.com/nichujie/py-stock-crawler, github.com/nicify/nvtool,num_dependents_deps.dev:0 github.com/nicinabox/bicycle-tools,num_dependents_deps.dev:0 @@ -862443,6 +877910,10 @@ github.com/nick-codes/soldi.js,num_dependents_deps.dev:0 github.com/nick-dave-turner/react-charts-d3,num_dependents_deps.dev:0 github.com/nick-denry/Chimeverse,num_dependents_deps.dev:0 github.com/nick-denry/cordova-plugin-intent-list,num_dependents_deps.dev:0 +github.com/nick-fields/persist-action-data, +github.com/nick-fields/private-action-loader, +github.com/nick-fields/retry, +github.com/nick-fields/slacktion, github.com/nick-hill-dev/lib-ts-imageMaps,num_dependents_deps.dev:0 github.com/nick-invision/action-gen,num_dependents_deps.dev:0 github.com/nick-invision/agent-js-mocha,num_dependents_deps.dev:0 @@ -862489,6 +877960,7 @@ github.com/nick-youngblut/gtdb_to_taxdump, github.com/nick-youngblut/pushmsg, github.com/nick-youngblut/sgepy, github.com/nick-youngblut/traitar3, +github.com/nick-zh/composer, github.com/nick-zuchlewski/joystick,num_dependents_deps.dev:0 github.com/nick/duplicate-line-or-selection,num_dependents_deps.dev:0 github.com/nick/nick-babel-plugin-transform-remove-react-styl, @@ -862515,6 +877987,7 @@ github.com/nick121212/spa,num_dependents_deps.dev:0 github.com/nick138104/try,num_dependents_deps.dev:0 github.com/nick1821/go-mysql-excel-loader,num_dependents_deps.dev:0 github.com/nick212/cripto-currency-monitor,num_dependents_deps.dev:0 +github.com/nick22985/Dev-Stats, github.com/nick2324/arango-mongo-go,num_dependents_deps.dev:0 github.com/nick233333/go-cache,num_dependents_deps.dev:0 github.com/nick29581/libhoare,num_dependents_deps.dev:0 @@ -862550,9 +878023,13 @@ github.com/nickanna42/bellcurvejs,num_dependents_deps.dev:0 github.com/nickanna42/socketworker.io,num_dependents_deps.dev:0 github.com/nickapopolis/remove-shawn,num_dependents_deps.dev:0 github.com/nickarnold/mongo-roid,num_dependents_deps.dev:0 +github.com/nickatnight/add-pr-comment-action, github.com/nickatnight/container-kit,num_dependents_deps.dev:0 +github.com/nickatnight/export-version-file-action, github.com/nickatnight/konami-trix,num_dependents_deps.dev:0 github.com/nickatnight/py-clubhouse, +github.com/nickatnight/releases-action, +github.com/nickatnight/slack-code-coverage-action, github.com/nickav/pinkprint, github.com/nickav/prettier-plugin-pretty-imports,num_dependents_deps.dev:0 github.com/nickaversano/babel-plugin-implicit-this,num_dependents_deps.dev:0 @@ -862710,6 +878187,7 @@ github.com/nickderobertis/fin-model-course, github.com/nickderobertis/fitbit-downloader, github.com/nickderobertis/flexlate-dev, github.com/nickderobertis/github-secrets, +github.com/nickderobertis/github-topic-syncer, github.com/nickderobertis/nick-derobertis-site, github.com/nickderobertis/obj-cache, github.com/nickderobertis/pd-utils, @@ -862786,6 +878264,7 @@ github.com/nickelc/dbl-rs,num_dependents_deps.dev:0 github.com/nickelc/hpk,num_dependents_deps.dev:0 github.com/nickelc/modio-bot,num_dependents_deps.dev:0 github.com/nickelc/modio-rs,num_dependents_deps.dev:0 +github.com/nickelc/upload-to-modio, github.com/nickelghost/yuzu-cms,num_dependents_deps.dev:0 github.com/nickeljew/es6-docready,num_dependents_deps.dev:0 github.com/nickeljew/es6-dom,num_dependents_deps.dev:0 @@ -862881,6 +878360,8 @@ github.com/nickgraffis/tailwind-toast,num_dependents_deps.dev:0 github.com/nickgraffis/versionify,num_dependents_deps.dev:0 github.com/nickgraffis/vite-plugin-blurhash,num_dependents_deps.dev:0 github.com/nickgravelyn/seashell,num_dependents_deps.dev:0 +github.com/nickgronow/deploy-to-gcr, +github.com/nickgronow/kubectl, github.com/nickgros/react-jsonschema-form,num_dependents_deps.dev:0 github.com/nickguimond/ZAPI,num_dependents_deps.dev:0 github.com/nickguimond/babel-plugin-create-automation-page-objects,num_dependents_deps.dev:0 @@ -862904,6 +878385,8 @@ github.com/nickhil-tekwani/jstest,num_dependents_deps.dev:0 github.com/nickhough/js-toolbox,num_dependents_deps.dev:0 github.com/nickhow83/webpack-brand-loader,num_dependents_deps.dev:0 github.com/nickhsiaotw/ggcalendar,num_dependents_deps.dev:0 +github.com/nickhstr/action-setup-golangci-lint, +github.com/nickhstr/action-setup-mage, github.com/nickhuber/reverse-slowloris,num_dependents_deps.dev:0 github.com/nickhudkins/create-react-app,num_dependents_deps.dev:0 github.com/nickhudkins/generator-chalkboard,num_dependents_deps.dev:0 @@ -862987,6 +878470,7 @@ github.com/nicklanng/noderus,num_dependents_deps.dev:0 github.com/nicklanng/react-tape,num_dependents_deps.dev:0 github.com/nicklaros/booking-status,num_dependents_deps.dev:0 github.com/nicklasfrahm/file-secret-action,num_dependents_deps.dev:0 +github.com/nicklasfrahm/k3se, github.com/nicklasfrahm/mykilio,num_dependents_deps.dev:0 github.com/nicklasfrahm/scp-action,num_dependents_deps.dev:0 github.com/nicklasnygren/iter, @@ -863026,12 +878510,24 @@ github.com/nickleefly/level-todo,num_dependents_deps.dev:0 github.com/nickleefly/modulename,num_dependents_deps.dev:0 github.com/nickleefly/node-lcm,num_dependents_deps.dev:4 github.com/nickleefly/swipe,num_dependents_deps.dev:4 +github.com/nicklegan/github-enterprise-invitation-action, +github.com/nicklegan/github-enterprise-user-totals-report-action, +github.com/nicklegan/github-org-authorization-action, +github.com/nicklegan/github-org-code-frequency-action, +github.com/nicklegan/github-org-git-audit-log-for-members-action, +github.com/nicklegan/github-org-git-audit-log-for-repos-action, +github.com/nicklegan/github-org-member-contribution-action, +github.com/nicklegan/github-org-member-email-action, +github.com/nicklegan/github-org-repo-collaborator-action, +github.com/nicklegan/github-org-repo-metrics-action, +github.com/nicklegan/github-repo-branch-naming-policy-action, github.com/nickles-lee/PySkyscanner, github.com/nickli/amd2common,num_dependents_deps.dev:0 github.com/nickligit/xwebjs-lang,num_dependents_deps.dev:0 github.com/nicklima/axios-hook-library,num_dependents_deps.dev:0 github.com/nicklin99/create-mockjs-server,num_dependents_deps.dev:0 github.com/nicklin99/simple-md2vue-loader,num_dependents_deps.dev:0 +github.com/nicklinnell/dnsimple-create-record, github.com/nicklockwood/Euclid,criticality_score:0.304050 github.com/nicklockwood/FXForms,criticality_score:0.332180 github.com/nicklockwood/SwiftFormat,criticality_score:0.589240 @@ -863127,6 +878623,7 @@ github.com/nicknisi/grunt-bower-config,num_dependents_deps.dev:0 github.com/nicknisi/grunt-it,num_dependents_deps.dev:0 github.com/nicknisi/nicknisi,num_dependents_deps.dev:0 github.com/nicknovitski/docker-machine-driver-hyperkit,num_dependents_deps.dev:0 +github.com/nicknovitski/nix-develop, github.com/nickoala/aiy-voice-only, github.com/nickoala/judy, github.com/nickoala/telepot, @@ -863136,6 +878633,8 @@ github.com/nickoarg/django-oidc-provider, github.com/nickofolas/discord-rich-presence,num_dependents_deps.dev:0 github.com/nickofolas/pris,num_dependents_deps.dev:0 github.com/nickofthyme/EventSource,num_dependents_deps.dev:0 +github.com/nickofthyme/checkout-node-setup, +github.com/nickofthyme/object-remap, github.com/nickofthyme/storybook-addon-background-toggle,num_dependents_deps.dev:0 github.com/nickofthyme/storybook-addon-theme-toggle,num_dependents_deps.dev:0 github.com/nickogar97/binary-search-tree,num_dependents_deps.dev:0 @@ -863152,6 +878651,7 @@ github.com/nickoneill/btckeygenie,num_dependents_deps.dev:0 github.com/nickoneill/gozx,num_dependents_deps.dev:0 github.com/nickooms/masks-js,num_dependents_deps.dev:0 github.com/nickooms/tablet-drawing,num_dependents_deps.dev:0 +github.com/nickorlow/nws-pull-new-image, github.com/nickorsk2017/IWrappers,num_dependents_deps.dev:0 github.com/nickorsk2020/agave-react-UI,num_dependents_deps.dev:0 github.com/nickovic/rtamt, @@ -863332,6 +878832,7 @@ github.com/nickschot/lux-redis-cache,num_dependents_deps.dev:0 github.com/nickschot/lux-search,num_dependents_deps.dev:0 github.com/nickschot/lux-unless,num_dependents_deps.dev:0 github.com/nickschuch/focus,num_dependents_deps.dev:0 +github.com/nickscript0/flat, github.com/nicksellen/german,num_dependents_deps.dev:0 github.com/nicksellen/worldview,num_dependents_deps.dev:0 github.com/nicksen/classie,num_dependents_deps.dev:0 @@ -863399,6 +878900,8 @@ github.com/nickstaroba/proto-component-react-library-a,num_dependents_deps.dev:0 github.com/nickstefan/django-db-cascade, github.com/nickstefan/no-network-geocoder,num_dependents_deps.dev:0 github.com/nickstefan/parsexcel.js,num_dependents_deps.dev:0 +github.com/nicksteffens/action-append-deployed-revision-link, +github.com/nicksteffens/action-append-pr-revision, github.com/nickstenning/elasticbackup, github.com/nickstenning/honcho,"criticality_score:0.417290,num_dependents_deps.dev:0" github.com/nickstenning/negotiate, @@ -863539,6 +879042,9 @@ github.com/nickwinger/autoproperty,num_dependents_deps.dev:0 github.com/nickwinger/ng-swiss-army-knife,num_dependents_deps.dev:0 github.com/nickwinger/ngRxCrossTabCommunication,num_dependents_deps.dev:0 github.com/nickwongdev/aspectj-maven-plugin,num_dependents_deps.dev:8 +github.com/nickwph/apple-build-certificate-action, +github.com/nickwph/apple-provisioning-profile-action, +github.com/nickwph/firebase-app-distribution-action, github.com/nickwrightdev/colorado-14ers,num_dependents_deps.dev:0 github.com/nickwynja/mdx_poetic, github.com/nickwynja/whiskey, @@ -863603,6 +879109,7 @@ github.com/niclasgeiger/istio-workshop,num_dependents_deps.dev:0 github.com/niclashoyer/embedded-hal-sync-pins,num_dependents_deps.dev:0 github.com/niclaslind/black-hat-go,num_dependents_deps.dev:0 github.com/niclaslindstedt/nfo-cleaner,num_dependents_deps.dev:0 +github.com/nicledomaS/cmake_build_action, github.com/niclim/generic-component-library,num_dependents_deps.dev:0 github.com/niclin/bip44-ruby,num_dependents_deps.dev:0 github.com/niclin/sygna,num_dependents_deps.dev:0 @@ -863678,6 +879185,7 @@ github.com/nicoandra/MongooseQueue,num_dependents_deps.dev:0 github.com/nicoandresr/clmtrackr-smile-recognition,num_dependents_deps.dev:0 github.com/nicoandresr/floating-action-button,num_dependents_deps.dev:0 github.com/nicoandresr/gulp-tasks-azure-publish,num_dependents_deps.dev:0 +github.com/nicoandresr/jira-labels-sync-action, github.com/nicoandresr/js-aspect-ratio,num_dependents_deps.dev:0 github.com/nicoandresr/js-canvas,num_dependents_deps.dev:0 github.com/nicoandresr/js-canvas-filters,num_dependents_deps.dev:0 @@ -863794,6 +879302,7 @@ github.com/nicokaiser/koa-encrypted-session,num_dependents_deps.dev:0 github.com/nicokaiser/node-statsd-client-cached,num_dependents_deps.dev:0 github.com/nicokaiser/passport-apple,num_dependents_deps.dev:0 github.com/nicokaiser/wamp.io,num_dependents_deps.dev:0 +github.com/nicokempe/hetzner-cloud-deploy-action, github.com/nicokoch/reflink,num_dependents_deps.dev:1 github.com/nicokoch/secret-rs,num_dependents_deps.dev:0 github.com/nicokoenig/npx-card,num_dependents_deps.dev:0 @@ -864045,6 +879554,8 @@ github.com/nicolasdespres/youpy, github.com/nicolasdiazoff/hosty,num_dependents_deps.dev:0 github.com/nicolasdiazoff/seeder,num_dependents_deps.dev:0 github.com/nicolasdilley/gomela,num_dependents_deps.dev:0 +github.com/nicolasdonoso/build-action, +github.com/nicolasdonoso/build-ecr-repo, github.com/nicolasdutronc/shoppinglist-be,num_dependents_deps.dev:0 github.com/nicolasduval/cdl,num_dependents_deps.dev:0 github.com/nicolasespiau/app-error,num_dependents_deps.dev:0 @@ -864133,6 +879644,7 @@ github.com/nicolasparada/nakama,num_dependents_deps.dev:0 github.com/nicolasparada/node-httptools,num_dependents_deps.dev:0 github.com/nicolaspayot/bic,num_dependents_deps.dev:0 github.com/nicolaspayot/multiples,num_dependents_deps.dev:0 +github.com/nicolaspearson/docker.publish.github.action, github.com/nicolaspearson/grpc.boom,num_dependents_deps.dev:62 github.com/nicolaspearson/grpc.ts.health.check,num_dependents_deps.dev:44 github.com/nicolaspearson/grpc.ts.middleware,num_dependents_deps.dev:0 @@ -864241,6 +879753,7 @@ github.com/nicolo-scarpa-freelands-it/starwars-names_freelands,num_dependents_de github.com/nicolo/climacell-python, github.com/nicolodavis/boardgame.io,num_dependents_deps.dev:2 github.com/nicolomaioli/httpdump,num_dependents_deps.dev:0 +github.com/nicolonsky/WIF, github.com/nicolossus/neuromodels, github.com/nicoloval/NEMtropy, github.com/nicoloverardo/matrix_regression, @@ -864361,6 +879874,8 @@ github.com/nicovandenhooff/reddit-data-collector, github.com/nicovideo-comment/py-niconico-comment, github.com/nicovigil1/thesis_cloudfront,num_dependents_deps.dev:0 github.com/nicovillanueva/poormanslogging, +github.com/nicovince/lilypond-action, +github.com/nicovince/manage-release, github.com/nicovogelaar/postgres-test,num_dependents_deps.dev:0 github.com/nicoz/fill-seagal, github.com/nicr9/cloudctl,num_dependents_deps.dev:0 @@ -864400,6 +879915,7 @@ github.com/nicu-chiciuc/rainbowy.js,num_dependents_deps.dev:0 github.com/nicu/grel,num_dependents_deps.dev:0 github.com/nicu/local.dbstore,num_dependents_deps.dev:0 github.com/niculistana/foo-bar-component,num_dependents_deps.dev:0 +github.com/nicupavel/action-files-version-increment, github.com/nicwaller/yq, github.com/nicwest/go.uuid,num_dependents_deps.dev:0 github.com/nicwest/notsouid, @@ -864409,6 +879925,7 @@ github.com/nicx/node-tradfri-restapi, github.com/niczem/pouchwrapper, github.com/niczow/ninput, github.com/nid90/kawaii-blog-engine,num_dependents_deps.dev:0 +github.com/nida/go-release-action, github.com/nidagil/Js,num_dependents_deps.dev:0 github.com/nidayand/node-hoganas-energi,num_dependents_deps.dev:0 github.com/nidayand/node-red-contrib-norelite,num_dependents_deps.dev:0 @@ -864422,6 +879939,7 @@ github.com/nidayand/noreowfs,num_dependents_deps.dev:0 github.com/nidbCN/hexo-simpleIcons, github.com/nidbCN/nodebb-plugin-rainbows-cn,num_dependents_deps.dev:0 github.com/nidelva/butler, +github.com/niden/actions-memcached, github.com/nideveloper/CDK-SPA-Deploy,num_dependents_deps.dev:0 github.com/nideveloper/cdk-lambda-powertuner,num_dependents_deps.dev:0 github.com/nidhaloff/apigo, @@ -864572,6 +880090,7 @@ github.com/nielsboogaard/filepond-plugin-manage-metadata,num_dependents_deps.dev github.com/nielsboogaard/filepond-plugin-media-preview,num_dependents_deps.dev:0 github.com/nielsboogaard/gulp-task-metadata,num_dependents_deps.dev:0 github.com/nielsdejong/neodash,num_dependents_deps.dev:0 +github.com/nielsdelestinne/jekyll-build, github.com/nielse63/Chicago,num_dependents_deps.dev:0 github.com/nielse63/WebGL-Decorative-Backgrounds,num_dependents_deps.dev:0 github.com/nielse63/code-reviewer,num_dependents_deps.dev:0 @@ -864638,6 +880157,7 @@ github.com/nielsriekert/vanillelightbox,num_dependents_deps.dev:0 github.com/nielsrowinbik/material-styled-components,num_dependents_deps.dev:0 github.com/nielsrowinbik/react-hass-auth,num_dependents_deps.dev:0 github.com/nielssj/bbc-r1-tracklist-scrape,num_dependents_deps.dev:0 +github.com/nielstenboom/semantic-changelog-generator, github.com/nielstron/pyblnet, github.com/nielstron/pyernluefter, github.com/nielstron/pyfronius, @@ -864651,6 +880171,7 @@ github.com/nielsvaes/ez_utils, github.com/nielsvaes/p4cmd, github.com/nielsvaes/tangle, github.com/nielsvandepas/jump.js,num_dependents_deps.dev:0 +github.com/nielsvaneck/render-md-mermaid, github.com/nielsvanhooy/dashboard-api-python, github.com/nielsvissers/nhc2-coco, github.com/nielsvm/tagrenamer, @@ -864719,6 +880240,7 @@ github.com/nifcloud/nifcloud-cli, github.com/nifcloud/nifcloud-sdk-go,num_dependents_deps.dev:1 github.com/nifcloud/nifcloud-sdk-python, github.com/nifcloud/terraform-provider-nifcloud,num_dependents_deps.dev:0 +github.com/nifetency/nife-actions, github.com/nifex007/banquego,num_dependents_deps.dev:0 github.com/nifex007/name,num_dependents_deps.dev:0 github.com/nifey/epub2sphinx, @@ -864915,6 +880437,7 @@ github.com/nightcode/jbip39,num_dependents_deps.dev:0 github.com/nightcode/jcconnect,num_dependents_deps.dev:0 github.com/nightcode/jmilter,num_dependents_deps.dev:0 github.com/nightcode/yaranga,num_dependents_deps.dev:0 +github.com/nightcrawler-/action-release-apk, github.com/nightdvlpr/coolconsole,num_dependents_deps.dev:0 github.com/nightexcessive/modemscraper, github.com/nightf0rc3/awb-tracker,num_dependents_deps.dev:0 @@ -864926,6 +880449,7 @@ github.com/nightfallai/jenkins_test,num_dependents_deps.dev:0 github.com/nightfallai/nightfall-python-sdk, github.com/nightfallai/nightfall_cli,num_dependents_deps.dev:0 github.com/nightfallai/nightfall_code_scanner,num_dependents_deps.dev:0 +github.com/nightfallai/nightfall_dlp_action, github.com/nightfallai/nightfall_go_client,num_dependents_deps.dev:0 github.com/nightfallgt/ig-sniper,num_dependents_deps.dev:0 github.com/nightflash/react-native-redux-persist,num_dependents_deps.dev:0 @@ -865016,6 +880540,13 @@ github.com/nightshiftjs/nightshift-core,num_dependents_deps.dev:0 github.com/nightshiftjs/nightshift-dependency-injection,num_dependents_deps.dev:0 github.com/nightshiftjs/nightshift-error-handling,num_dependents_deps.dev:0 github.com/nightskylark/github-releases-slack-notifier,num_dependents_deps.dev:0 +github.com/nightstory/deployments-action, +github.com/nightstory/gcp-secrets-action, +github.com/nightstory/replace-env, +github.com/nightstory/setup-docker-remote, +github.com/nightstory/setup-task, +github.com/nightstory/setup-xcodegen, +github.com/nightstory/setup-yc, github.com/nightswapping/ng-image-upload,num_dependents_deps.dev:0 github.com/nightswapping/ng-responsive-image,num_dependents_deps.dev:0 github.com/nightswinger/vue-fomantic-ui,num_dependents_deps.dev:0 @@ -865071,6 +880602,7 @@ github.com/nigrosimone/ng-simple-state,num_dependents_deps.dev:0 github.com/nigth-mare/ipanel-cdn-py, github.com/nigulasikk/freeStylePlugin, github.com/nigulasikk/mdblog-cli,num_dependents_deps.dev:0 +github.com/nigzht/code-sign-action, github.com/nih-at/libzip,criticality_score:0.577840 github.com/nih-cfde/cfde-submit, github.com/nih-sparc/sparc-design-system-components,num_dependents_deps.dev:0 @@ -865232,6 +880764,7 @@ github.com/nijakanthan/foundation-package-generator,num_dependents_deps.dev:0 github.com/nijakanthan/universal-chat,num_dependents_deps.dev:0 github.com/nijeesh4all/snowfall,num_dependents_deps.dev:0 github.com/nijel/fakturace, +github.com/nijel/rabbitmq-action, github.com/nijel/thepay, github.com/nijel/utidylib, github.com/niji-commit/generator,num_dependents_deps.dev:0 @@ -865297,6 +880830,7 @@ github.com/nikael70/banco_go,num_dependents_deps.dev:0 github.com/nikael70/monitorando_sites_usando_go,num_dependents_deps.dev:0 github.com/nikaera/react-emoji-textarea,num_dependents_deps.dev:0 github.com/nikaera/serverless-amplify-auth,num_dependents_deps.dev:0 +github.com/nikaera/sync-zenn-with-dev-action, github.com/nikaia/bstalk,num_dependents_deps.dev:0 github.com/nikaia/dploybot,num_dependents_deps.dev:0 github.com/nikakoy131/react-audio-spectrum,num_dependents_deps.dev:0 @@ -865368,6 +880902,7 @@ github.com/nike-inc/cerberus-go-client,num_dependents_deps.dev:0 github.com/nike331185/random-string-module,num_dependents_deps.dev:0 github.com/nikeMadrid/remit,num_dependents_deps.dev:0 github.com/nikeee/advent-of-code-2019,num_dependents_deps.dev:0 +github.com/nikeee/docfx-action, github.com/nikeee/dot-language-server, github.com/nikeee/dot-language-support,num_dependents_deps.dev:0 github.com/nikeee/fritz-callmonitor,num_dependents_deps.dev:0 @@ -865376,6 +880911,7 @@ github.com/nikeee/node-pizza-voucher,num_dependents_deps.dev:0 github.com/nikeee/node-ts,num_dependents_deps.dev:6 github.com/nikeee/react-monaco-editor-ts,num_dependents_deps.dev:0 github.com/nikeee/send-me-a-file,num_dependents_deps.dev:0 +github.com/nikeee/setup-pandoc, github.com/nikegp/speedparser3, github.com/nikek/cerebral-view-riot,num_dependents_deps.dev:0 github.com/nikek/lingon-watch,num_dependents_deps.dev:0 @@ -865477,11 +881013,15 @@ github.com/nikhilJa1n/image_search, github.com/nikhilSriva/Dual-input-component-nativeWeb,num_dependents_deps.dev:0 github.com/nikhila05/Todo, github.com/nikhilag/gatsby-source-shopify,num_dependents_deps.dev:0 +github.com/nikhilaii93/pr-autobuild, github.com/nikhilaravi/autocomplete,num_dependents_deps.dev:0 github.com/nikhilaravi/fetch-wrapper,num_dependents_deps.dev:0 github.com/nikhilbaby/uno,num_dependents_deps.dev:0 +github.com/nikhilbadyal/ghaction-rm-releases, +github.com/nikhilbadyal/telegram-forwarder, github.com/nikhilbaisoya43/family,num_dependents_deps.dev:0 github.com/nikhilbhardwaj/NittResults,num_dependents_deps.dev:0 +github.com/nikhilbirmiwal/affected-targets-actions, github.com/nikhilchintawar/js-project-creator,num_dependents_deps.dev:0 github.com/nikhilchoudhary001/ibmassignment,num_dependents_deps.dev:0 github.com/nikhildodeja/printtwo,num_dependents_deps.dev:0 @@ -865630,7 +881170,9 @@ github.com/nikita-volkov/FuellSys,num_dependents_deps.dev:0 github.com/nikita-volkov/FuellTest,num_dependents_deps.dev:0 github.com/nikita-volkov/Fury,num_dependents_deps.dev:0 github.com/nikita-volkov/Robusta,num_dependents_deps.dev:0 +github.com/nikita-volkov/edit-cabal-version.github-action, github.com/nikita-volkov/hasql,criticality_score:0.420140 +github.com/nikita-volkov/yc-cli.github-action, github.com/nikita36078/J2ME-Loader,criticality_score:0.352190 github.com/nikita488/raven-formats, github.com/nikita5637/qask_libs,num_dependents_deps.dev:0 @@ -865699,6 +881241,8 @@ github.com/nikitaodnorob/react-material-notify,num_dependents_deps.dev:0 github.com/nikitapetaichuk/gopack_example,num_dependents_deps.dev:0 github.com/nikitapetaichuk/protobuf_example,num_dependents_deps.dev:0 github.com/nikitarub/js-iu7-logger,num_dependents_deps.dev:0 +github.com/nikitasavinov/checkstyle-action, +github.com/nikitasavinov/messagebird-sms-action, github.com/nikitasfrs/real-types,num_dependents_deps.dev:0 github.com/nikitasheremet/lotide,num_dependents_deps.dev:0 github.com/nikitasinha20/marvel_api_consumer,num_dependents_deps.dev:0 @@ -865810,6 +881354,7 @@ github.com/niklas-e/enhanced-js,num_dependents_deps.dev:0 github.com/niklas-e/json2caml,num_dependents_deps.dev:0 github.com/niklas-may/dropbox-trigger-netlify, github.com/niklas-may/gatsby-remark-dropbox-images,num_dependents_deps.dev:0 +github.com/niklas-weber/scan-log, github.com/niklas-wortmann/ngx-pact,num_dependents_deps.dev:0 github.com/niklas-wortmann/rxjs-web,num_dependents_deps.dev:0 github.com/niklas/rails-develotest,num_dependents_deps.dev:0 @@ -865845,6 +881390,7 @@ github.com/niklasfi/cronpp,num_dependents_deps.dev:0 github.com/niklasgrahl/js-mv,num_dependents_deps.dev:0 github.com/niklashaug/vue-carbonbadge, github.com/niklasi/cert-installer,num_dependents_deps.dev:0 +github.com/niklaskeerl/easy-wireguard-action, github.com/niklaskorz/hcloud-cloud-controller-manager,num_dependents_deps.dev:0 github.com/niklaskorz/react-sane-contenteditable,num_dependents_deps.dev:0 github.com/niklaskorz/tumblate,num_dependents_deps.dev:0 @@ -866135,6 +881681,7 @@ github.com/nikos-glikis/toortools-http,num_dependents_deps.dev:5 github.com/nikosEfthias/http-streamer,num_dependents_deps.dev:0 github.com/nikosEfthias/paypal,num_dependents_deps.dev:0 github.com/nikosNalmpantis/mercupy-parser, +github.com/nikosch86/github-action-eks-kubectl, github.com/nikosdouvlis/capacitor-navigationbar, github.com/nikosefthias/libtombala,num_dependents_deps.dev:0 github.com/nikosefthias/routerify-ws,num_dependents_deps.dev:0 @@ -866150,6 +881697,7 @@ github.com/nikospara/karma-file-correlator,num_dependents_deps.dev:0 github.com/nikospara/require-lazy,num_dependents_deps.dev:0 github.com/nikospara/require-lazy-bower,num_dependents_deps.dev:0 github.com/nikospara/require-lazy-grunt,num_dependents_deps.dev:0 +github.com/nikosportolos/dart_package, github.com/nikostoulas/fast-koa-router,num_dependents_deps.dev:0 github.com/nikostoulas/metamorphosi,num_dependents_deps.dev:0 github.com/nikostoulas/node-c,num_dependents_deps.dev:0 @@ -866366,6 +881914,7 @@ github.com/nikvolf/wasm-graph,num_dependents_deps.dev:0 github.com/nikwhite/mixture,num_dependents_deps.dev:0 github.com/nikwl/impeek, github.com/nikwl/kinect-toolbox, +github.com/nikwotton/Max-Commit-Count, github.com/niky1224/niky-test-1,num_dependents_deps.dev:0 github.com/nikym/go-todo,num_dependents_deps.dev:0 github.com/nil-build/babel-preset-packez,num_dependents_deps.dev:0 @@ -866452,6 +882001,7 @@ github.com/nileshkikani/react-native-timekeeper,num_dependents_deps.dev:0 github.com/nileshlaxmi/react-blocks,num_dependents_deps.dev:0 github.com/nileshmali/code-style,num_dependents_deps.dev:0 github.com/nileshmali/ioredis-in-memory,num_dependents_deps.dev:0 +github.com/nileshmali/setup-opencv-static, github.com/nileshpatel17/ng-multiselect-dropdown,num_dependents_deps.dev:2 github.com/nileshpatil47/wiki_fetch,num_dependents_deps.dev:0 github.com/nileshr/slack-log,num_dependents_deps.dev:0 @@ -866548,6 +882098,7 @@ github.com/nilp0inter/geoffrey-pytest, github.com/nilp0inter/geoffrey-snakefood, github.com/nilp0inter/geoffrey-todo, github.com/nilp0inter/pyagar, +github.com/nilp0inter/search-legal-headers, github.com/nilp0inter/streamdiffer, github.com/nilpath/esspired,num_dependents_deps.dev:0 github.com/nilpath/redux-postmessage-middleware,num_dependents_deps.dev:0 @@ -866566,6 +882117,7 @@ github.com/nilq/zub-vm,num_dependents_deps.dev:0 github.com/nils-bauer/pure-timeline,num_dependents_deps.dev:0 github.com/nils-braun/b2luigi, github.com/nils-braun/dask-sql, +github.com/nils-braun/pytest-benchmark-commenter, github.com/nils-christian/feature-gen,num_dependents_deps.dev:0 github.com/nils-christian/lijense,num_dependents_deps.dev:102 github.com/nils-christian/rapit,num_dependents_deps.dev:0 @@ -866626,6 +882178,7 @@ github.com/nilsmeyerkit/fiberoripy, github.com/nilsnh/converttt,num_dependents_deps.dev:0 github.com/nilsnh/hamstr,num_dependents_deps.dev:0 github.com/nilsnh/mysql-parse,num_dependents_deps.dev:0 +github.com/nilsonneto/sql_script_splitter, github.com/nilsreich/my-navbar,num_dependents_deps.dev:0 github.com/nilsreiter/cleartk-util,num_dependents_deps.dev:2 github.com/nilsreiter/commons,num_dependents_deps.dev:10 @@ -866766,6 +882319,7 @@ github.com/nimble0/plover_retro_text_transform, github.com/nimbleStalker/swipe-modal,num_dependents_deps.dev:0 github.com/nimbleape/callstats-kurento,num_dependents_deps.dev:0 github.com/nimbleapps/export_to_spreadsheet,num_dependents_deps.dev:0 +github.com/nimblehq/branch-tag-action, github.com/nimblehq/eslint-config-nimble,num_dependents_deps.dev:0 github.com/nimblehq/gin-templates,num_dependents_deps.dev:0 github.com/nimblehq/react-templates, @@ -867002,6 +882556,7 @@ github.com/ninegrid/is-genobj,num_dependents_deps.dev:0 github.com/ninegrid/stringsplz,num_dependents_deps.dev:0 github.com/ninegrid/term-pipe,num_dependents_deps.dev:0 github.com/ninehundred/basetoascii, +github.com/nineinchnick/block-commits-action, github.com/nineinchnick/distance-player,num_dependents_deps.dev:0 github.com/nineisprime/PAPER, github.com/ninejs/ninejs,num_dependents_deps.dev:0 @@ -867289,6 +882844,7 @@ github.com/ninofiliu/simple-speedtest,num_dependents_deps.dev:0 github.com/ninofiliu/social-choice,num_dependents_deps.dev:0 github.com/ninolin/safeMath,num_dependents_deps.dev:0 github.com/ninomae-makoto/googleappengine-go-vue,num_dependents_deps.dev:0 +github.com/ninosaurus/eslint-check, github.com/ninoseki/abuse_whois, github.com/ninoseki/aiodnsbl, github.com/ninoseki/censysx,num_dependents_deps.dev:0 @@ -867302,6 +882858,7 @@ github.com/ninoseki/niteru, github.com/ninoseki/playwright-har-tracer, github.com/ninoseki/whois-parser, github.com/ninostephen/bookings,num_dependents_deps.dev:0 +github.com/ninotosh/check-github-repo-latest-version, github.com/ninowalker/caipyrus, github.com/ninowalker/marx, github.com/ninowalker/voom, @@ -867317,6 +882874,7 @@ github.com/nint8835/embassy,num_dependents_deps.dev:0 github.com/nint8835/entgql-bug-repro,num_dependents_deps.dev:0 github.com/nint8835/gatsby-transformer-terraform,num_dependents_deps.dev:0 github.com/nint8835/jigsaw, +github.com/nint8835/nox-build-matrix, github.com/nint8835/parsley,num_dependents_deps.dev:0 github.com/nint8835/scribe,num_dependents_deps.dev:0 github.com/nint8835/tabbyj, @@ -867372,6 +882930,7 @@ github.com/nion-software/nionswift-usim, github.com/nion-software/nionui, github.com/nion-software/nionui-tool, github.com/nion-software/nionutils, +github.com/nionata/EzReleases, github.com/niondir/go-services,num_dependents_deps.dev:0 github.com/nionis/profam,num_dependents_deps.dev:0 github.com/nioperas06/bj_phone_number, @@ -867498,6 +883057,7 @@ github.com/niradler/gencode,num_dependents_deps.dev:0 github.com/niradler/getpipe,num_dependents_deps.dev:0 github.com/niradler/git-secrets,num_dependents_deps.dev:0 github.com/niradler/github-kit-cli,num_dependents_deps.dev:0 +github.com/niradler/hashnode-assets-backup, github.com/niradler/json-cli-tool,num_dependents_deps.dev:0 github.com/niradler/lambda-tool,num_dependents_deps.dev:0 github.com/niradler/loop-pipe,num_dependents_deps.dev:0 @@ -867541,6 +883101,7 @@ github.com/niranjan94/python-pentabarf-xml, github.com/niranjan94/vault-front,num_dependents_deps.dev:0 github.com/niranjan94/vault-psycopg2, github.com/nirantak/hue-api, +github.com/nirappdome/appdome_android_action, github.com/nirasan/go-basic-web-db-app,num_dependents_deps.dev:0 github.com/nirasan/syokuji-kijyun-2020,num_dependents_deps.dev:0 github.com/nirav24/gophercises-quiz,num_dependents_deps.dev:0 @@ -867602,6 +883163,7 @@ github.com/nirinasc/cordova-plugin-filepath,num_dependents_deps.dev:0 github.com/nirinasc/cordova-plugin-salesforce-mobile-sdk,num_dependents_deps.dev:0 github.com/nirinasp/angular-notifier,num_dependents_deps.dev:0 github.com/nirinasp/nforce,num_dependents_deps.dev:0 +github.com/nirinchev/verify-todo, github.com/nirix/blogaze,num_dependents_deps.dev:0 github.com/nirix/lab-twbs-theme,num_dependents_deps.dev:0 github.com/nirix/pacino,num_dependents_deps.dev:0 @@ -867748,6 +883310,7 @@ github.com/nisargsoni786/golang_prep,num_dependents_deps.dev:0 github.com/nisc/node-stupid,num_dependents_deps.dev:0 github.com/nischal-gsys/stayhome-sdk,num_dependents_deps.dev:0 github.com/nischalshrestha/pygradethis, +github.com/nischalstha9/issue-closer, github.com/nischay-dhiman/saferpay_ruby,num_dependents_deps.dev:0 github.com/nischayv/express-gen,num_dependents_deps.dev:0 github.com/nischayv/github-api-user,num_dependents_deps.dev:0 @@ -867861,11 +883424,13 @@ github.com/nishgaba-ai/unrealai, github.com/nishgowda/Aegis,num_dependents_deps.dev:0 github.com/nishgowda/AegisNet, github.com/nishi-yuki/pongdbot,num_dependents_deps.dev:0 +github.com/nishidayuya/codeclimate-test-reporter, github.com/nishidayuya/img_to_pdf,num_dependents_deps.dev:0 github.com/nishidayuya/webg,num_dependents_deps.dev:0 github.com/nishikawa-naonori/go,num_dependents_deps.dev:0 github.com/nishikawa7863/cpb-jsdoc-template,num_dependents_deps.dev:0 github.com/nishikawasasaki/go-check-plugins,num_dependents_deps.dev:0 +github.com/nishilcygbit/aws-ses-template-uploader, github.com/nishim/leetcode,num_dependents_deps.dev:0 github.com/nishimaki10/pandoc-mermaid-filter,num_dependents_deps.dev:0 github.com/nishio-dens/ng2-search-table,num_dependents_deps.dev:0 @@ -867881,6 +883446,7 @@ github.com/nishowsan/pyshort, github.com/nishowsan/python-electron, github.com/nishp1/json-function-loader,num_dependents_deps.dev:0 github.com/nishp1/seamless-immutable-json-loader,num_dependents_deps.dev:0 +github.com/nishtahir/upload-updraft, github.com/nishtha0801/golang,num_dependents_deps.dev:0 github.com/nishu195/nishant_miss_data_76, github.com/nishu195/nishant_outlier_76, @@ -867925,6 +883491,7 @@ github.com/nissehutt/node-svg-inliner,num_dependents_deps.dev:0 github.com/nissessenap/falcosidekick-tekton,num_dependents_deps.dev:0 github.com/nissessenap/pod-deleter,num_dependents_deps.dev:0 github.com/nisshiee/rxpr,num_dependents_deps.dev:0 +github.com/nisshii0313/action, github.com/nisshii0313/eslint-plugin-new-line-before-if,num_dependents_deps.dev:0 github.com/nissicreative/bootstrap4-utilities,num_dependents_deps.dev:0 github.com/nissicreative/csstools,num_dependents_deps.dev:0 @@ -867955,6 +883522,7 @@ github.com/nit22032002/Advance-LinkedList, github.com/nit567esh/dconnect, github.com/nit567esh/mailreport, github.com/nit567esh/pandas_to_snowflake, +github.com/nitaiapiiro/action, github.com/nitaigao/gulp-s3, github.com/nitaking/gitmoji-c,num_dependents_deps.dev:0 github.com/nitaking/react-hooks-logger,num_dependents_deps.dev:0 @@ -868153,6 +883721,9 @@ github.com/nitinpadgotra/express-server-logs,num_dependents_deps.dev:0 github.com/nitinreddy3/nkr_urlbuilder,num_dependents_deps.dev:0 github.com/nitinrgoyal/fieldset, github.com/nitinsaxena1710/chat_application_golang,num_dependents_deps.dev:0 +github.com/nitinses/semantic-version, +github.com/nitinses/semver-release-action, +github.com/nitinsh99/checkstyle-action, github.com/nitinsh99/ng2-toastr,num_dependents_deps.dev:0 github.com/nitinsutrave/node-jdbc,num_dependents_deps.dev:0 github.com/nitintutlani/angular-ui-router-menus,num_dependents_deps.dev:0 @@ -868293,6 +883864,7 @@ github.com/nitrocode/curl2.py, github.com/nitrocode/terraform-plan-applier,num_dependents_deps.dev:0 github.com/nitrocord/library, github.com/nitrodenov/otus,num_dependents_deps.dev:0 +github.com/nitrodeploy/nitrodeploy-github-action, github.com/nitrog0d/nitro-http-client,num_dependents_deps.dev:0 github.com/nitrog7/nl-fluid,num_dependents_deps.dev:0 github.com/nitrogen/nitrogen,criticality_score:0.507670 @@ -868422,6 +883994,8 @@ github.com/niuben/react-form-config,num_dependents_deps.dev:0 github.com/niuben/shell-deploy,num_dependents_deps.dev:0 github.com/niuben/webpack-config-generate, github.com/niuben/webtojson,num_dependents_deps.dev:0 +github.com/niubilitytools/publish-nuget, +github.com/niubilitytools/publish-to-nuget.org, github.com/niubx9977/go_learn_by_tour_golang,num_dependents_deps.dev:0 github.com/niuchuangnn/noise2sim, github.com/niudai/markdown-it-zhihu,num_dependents_deps.dev:0 @@ -868504,6 +884078,7 @@ github.com/nivinjoseph/n-web,num_dependents_deps.dev:0 github.com/nivinjoseph/nativescript-vue,num_dependents_deps.dev:0 github.com/nivinjoseph/vue,num_dependents_deps.dev:1 github.com/nivinjoseph/vue-loader,num_dependents_deps.dev:0 +github.com/nivisi/dart_pull_request_use_case_validator, github.com/nivite/ngsdk,num_dependents_deps.dev:0 github.com/nivite/nisdk,num_dependents_deps.dev:0 github.com/nivite/sdk,num_dependents_deps.dev:0 @@ -868562,6 +884137,7 @@ github.com/niwasawa/simplemaps,num_dependents_deps.dev:0 github.com/niwasawa/twitter-feed-nodejs,num_dependents_deps.dev:0 github.com/niwasawa/twitter-rss-feed-nodejs, github.com/niwasmala/alt-nodejs,num_dependents_deps.dev:0 +github.com/niwee-productions/actions-ssh-wireguard, github.com/niwho/utils,num_dependents_deps.dev:0 github.com/niwibe/bytehold, github.com/niwibe/django-logstream, @@ -868595,6 +884171,7 @@ github.com/nix-community/rnix-lsp,num_dependents_deps.dev:0 github.com/nix-community/rnix-parser,num_dependents_deps.dev:0 github.com/nix-community/vgo2nix,num_dependents_deps.dev:0 github.com/nix-dot-dev/nix.dev,criticality_score:0.360610 +github.com/nix-ocaml/nix-s3-action, github.com/nix-rust/nix,"criticality_score:0.625620,num_dependents_deps.dev:4058" github.com/nix23/gridifier,num_dependents_deps.dev:6 github.com/nix2io/cli, @@ -868610,7 +884187,11 @@ github.com/nixargh/python-consul, github.com/nixawk/pentest-wiki,criticality_score:0.301980 github.com/nixberg/chacha-rng-go,num_dependents_deps.dev:0 github.com/nixberg/xid-go,num_dependents_deps.dev:0 +github.com/nixbuild/nix-quick-install-action, +github.com/nixbuild/nixbuild-action, +github.com/nixel2007/branch-name, github.com/nixel2007/language-1c-bsl-utils,num_dependents_deps.dev:0 +github.com/nixel2007/sonarcloud-github-action, github.com/nixeljs/nixel,num_dependents_deps.dev:0 github.com/nixend/manny,num_dependents_deps.dev:21 github.com/nixer-io/nixer-spring-plugin,num_dependents_deps.dev:1 @@ -868678,6 +884259,7 @@ github.com/nizami-dev/gulp-ng-ui,num_dependents_deps.dev:0 github.com/nizami-dev/ng-ui,num_dependents_deps.dev:0 github.com/nizar-m/tox-local-hooks, github.com/nizarkardosh/gittest,num_dependents_deps.dev:0 +github.com/nizarmah/auto-minify, github.com/nizaroni/hackmd-to-html,num_dependents_deps.dev:0 github.com/nizarsq/Noto_Font-test_generator,num_dependents_deps.dev:0 github.com/nizig/ruco, @@ -869094,6 +884676,7 @@ github.com/njzjz/kconmd, github.com/njzjz/mddatasetbuilder, github.com/njzjz/pbsmonitor, github.com/njzjz/sitemap,num_dependents_deps.dev:0 +github.com/njzydark/action-electron-builder-pnpm, github.com/njzydark/chrome-extension-reloader-webpack-plugin,num_dependents_deps.dev:0 github.com/njzydark/mini-react-refresh-webpack-plugin,num_dependents_deps.dev:0 github.com/njzydark/project-template-cli,num_dependents_deps.dev:0 @@ -869118,6 +884701,8 @@ github.com/nk-components/time-now,num_dependents_deps.dev:16 github.com/nk-components/vue-mediator-mixin,num_dependents_deps.dev:0 github.com/nk-components/vue-resize-mixin,num_dependents_deps.dev:0 github.com/nk-gears/react-async-table, +github.com/nk-o/action-envato-ftp-deploy, +github.com/nk-o/action-wordpress-plugin-deploy, github.com/nk-o/conditionize,num_dependents_deps.dev:0 github.com/nk-o/configs,num_dependents_deps.dev:0 github.com/nk-o/flickr-justified-gallery,num_dependents_deps.dev:0 @@ -869383,6 +884968,7 @@ github.com/nknapp/trace-and-clarify-if-possible,num_dependents_deps.dev:30 github.com/nknapp/tree-from-paths,num_dependents_deps.dev:0 github.com/nknapp/tsql,num_dependents_deps.dev:0 github.com/nknapp/video-testdata-loader,num_dependents_deps.dev:0 +github.com/nknguyengl/totp-generator, github.com/nknorg/encrypted-stream,num_dependents_deps.dev:4 github.com/nknorg/nconnect,num_dependents_deps.dev:0 github.com/nknorg/ncp-js,num_dependents_deps.dev:6 @@ -869437,6 +885023,7 @@ github.com/nkomirisetti/is-not-ten-thousand,num_dependents_deps.dev:0 github.com/nkonev/r2dbc-migrate,num_dependents_deps.dev:37 github.com/nkonin/django_smsaero, github.com/nkoporec/ginker,num_dependents_deps.dev:0 +github.com/nkoppel/push-files-to-another-repository, github.com/nkordulla/FHR-DB, github.com/nkoriyama/aribb24,Google github.com/nkoshell/aio-nasa-tle-loader, @@ -869633,6 +885220,7 @@ github.com/nlakritz/fetch-outlook-mail,num_dependents_deps.dev:0 github.com/nlamirault/abraracourcix,num_dependents_deps.dev:0 github.com/nlamirault/bbox_exporter,num_dependents_deps.dev:0 github.com/nlamirault/docker-machine-parallels,num_dependents_deps.dev:0 +github.com/nlamirault/helm-kubeconform-action, github.com/nlamirault/helmsman,num_dependents_deps.dev:0 github.com/nlamirault/kylin, github.com/nlamirault/python-freeboxclient, @@ -869690,6 +885278,7 @@ github.com/nleguillarme/taxonerd, github.com/nlehuen/capisce,num_dependents_deps.dev:0 github.com/nleite/asset-cloud,num_dependents_deps.dev:0 github.com/nleiva/pipeline,num_dependents_deps.dev:0 +github.com/nlemeshko/actions-fortu-refresh, github.com/nlemoine/transmit-2-ssh-config,num_dependents_deps.dev:0 github.com/nleof/proxyload,num_dependents_deps.dev:0 github.com/nlepage/catption,num_dependents_deps.dev:7 @@ -870078,6 +885667,7 @@ github.com/nmasse-itix/3scale-loader,num_dependents_deps.dev:0 github.com/nmasse-itix/OpenShift-Demo-NodeJS,num_dependents_deps.dev:0 github.com/nmasse-itix/keycloak-client,num_dependents_deps.dev:0 github.com/nmasse-itix/wimip,num_dependents_deps.dev:0 +github.com/nmasur/latest-ecr-image-tag, github.com/nmasur/sgcontrol, github.com/nmaties/video-uploader-youtube,num_dependents_deps.dev:0 github.com/nmattela/akko-js,num_dependents_deps.dev:0 @@ -870088,6 +885678,7 @@ github.com/nmaupu/gotomation,num_dependents_deps.dev:0 github.com/nmaupu/mow.cli,num_dependents_deps.dev:0 github.com/nmaupu/vault-secret,num_dependents_deps.dev:0 github.com/nmaves/passport-slack-oauth2,num_dependents_deps.dev:0 +github.com/nmbgeek/github-action-get-latest-commit, github.com/nmblcdrs/mongo3-s3-streaming-backup,num_dependents_deps.dev:0 github.com/nmbooker/python-funbox, github.com/nmbradford/ngx-cytoscape,num_dependents_deps.dev:0 @@ -870096,6 +885687,7 @@ github.com/nmbrone/refova,num_dependents_deps.dev:0 github.com/nmcapule/blurbinator,num_dependents_deps.dev:0 github.com/nmcapule/metabox-go,num_dependents_deps.dev:0 github.com/nmcapule/pymachinery, +github.com/nmcc/actions-gitversion, github.com/nmcclain/glauth,num_dependents_deps.dev:0 github.com/nmcclain/ldap,num_dependents_deps.dev:3 github.com/nmcclain/notion-offliner,num_dependents_deps.dev:0 @@ -870155,10 +885747,14 @@ github.com/nmearl/cosmoscope, github.com/nmearl/ipygoldenlayout,num_dependents_deps.dev:0 github.com/nmearl/ipysplitpanes,num_dependents_deps.dev:0 github.com/nmearl/spectropy, +github.com/nmehmedrnd/sisense-publish-action-js, github.com/nmehta6/morpheus,num_dependents_deps.dev:0 github.com/nmeibergen/graphql-auth-user-directives, github.com/nmelo/homebridge-lifx,num_dependents_deps.dev:0 github.com/nmelv170/rg-rollup,num_dependents_deps.dev:0 +github.com/nmerget/download-gzip-artifact, +github.com/nmerget/npm-cache-action, +github.com/nmerget/upload-gzip-artifact, github.com/nmerouze/ratyo,num_dependents_deps.dev:0 github.com/nmertins/go-life,num_dependents_deps.dev:0 github.com/nmestrada/2020-04-17-personal-npm-package, @@ -870205,6 +885801,8 @@ github.com/nmihalyov/decliner,num_dependents_deps.dev:0 github.com/nmihalyov/prime-grid,num_dependents_deps.dev:0 github.com/nmilikic/angular-gridster2,num_dependents_deps.dev:0 github.com/nmiljkovic/pico-asm,num_dependents_deps.dev:0 +github.com/nmilon-cf/github-action-helm-wireguard, +github.com/nmittu/setup-dune, github.com/nmiyake/circleci-cli,num_dependents_deps.dev:0 github.com/nmiyake/cobra,num_dependents_deps.dev:0 github.com/nmiyake/dep,num_dependents_deps.dev:0 @@ -870236,6 +885834,7 @@ github.com/nmoadev/trellis-tessel,num_dependents_deps.dev:0 github.com/nmodi/wildcard-server-webpack-plugin,num_dependents_deps.dev:0 github.com/nmohamedtharik/react-native-search-bar,num_dependents_deps.dev:0 github.com/nmohoric/nypl-digital-collections, +github.com/nmoral/github-action-label-pull-request, github.com/nmoran/landscape-pdf, github.com/nmorel/gwt-jackson,num_dependents_deps.dev:404 github.com/nmorel/gwt-jackson-rest,num_dependents_deps.dev:6 @@ -870372,6 +885971,7 @@ github.com/nnanos/Plotting_funcs, github.com/nnanos/Time_Frequency_Analysis, github.com/nnanos/measure_speaker, github.com/nnansters/nannyml, +github.com/nnanto/schemacodeman, github.com/nnao45/dntk,num_dependents_deps.dev:0 github.com/nnao45/dummy-cargo-toml-creater,num_dependents_deps.dev:0 github.com/nnarain/gameboycore-python, @@ -870427,7 +886027,17 @@ github.com/nnhansg/unleashed-ruby,num_dependents_deps.dev:0 github.com/nnhien/uclacatalog, github.com/nnhjgg/map-export-image,num_dependents_deps.dev:0 github.com/nnhuyhoang/discord_bot,num_dependents_deps.dev:0 +github.com/nnhy/emqx-github-action, +github.com/nnhy/mysql-action, +github.com/nnhy/postgresql-action, +github.com/nnhy/redis-github-action, +github.com/nnhy/sqlserver-action, github.com/nnicandro/emacs-jupyter,criticality_score:0.324380 +github.com/nnichols/clojure-dependency-update-action, +github.com/nnichols/clojure-lint-action, +github.com/nnichols/clojure-vulnerability-check-action, +github.com/nnichols/leiningen-dependency-update-action, +github.com/nnichols/maven-version-bump-action, github.com/nnicora/sap-sdk-go,num_dependents_deps.dev:0 github.com/nnicora/terraform-provider-sap,num_dependents_deps.dev:0 github.com/nnikolov-dev/react-materialize-forms, @@ -870562,6 +886172,7 @@ github.com/no-more-dependencies/nmd-modal,num_dependents_deps.dev:0 github.com/no-more-dependencies/nmd-select,num_dependents_deps.dev:0 github.com/no-more-dependencies/nmd-template-engine,num_dependents_deps.dev:0 github.com/no-name-no-idea/go-example,num_dependents_deps.dev:0 +github.com/no-one-sec/github-action-secrets-stealer, github.com/no-plagiarism/LT3OpenCorpora, github.com/no-plagiarism/pymorphy3, github.com/no-plagiarism/pymorphy3-dicts, @@ -870583,6 +886194,7 @@ github.com/no0dles/abox-mongodb,num_dependents_deps.dev:0 github.com/no0dles/abox-validator,num_dependents_deps.dev:0 github.com/no0dles/daita, github.com/no0dles/hammerkit,num_dependents_deps.dev:0 +github.com/no0dles/hammerkit-github-action, github.com/no0dles/msg,num_dependents_deps.dev:2 github.com/no0dles/node-express-meta-validator,num_dependents_deps.dev:0 github.com/no0dles/strome.js,num_dependents_deps.dev:0 @@ -870683,6 +886295,7 @@ github.com/noah-huppert/prometheus-canary,num_dependents_deps.dev:0 github.com/noah-lnt/react-camera-media-stream, github.com/noah-lnt/react-export-csv,num_dependents_deps.dev:0 github.com/noah-potter/react-portal,num_dependents_deps.dev:0 +github.com/noah-software/django_action, github.com/noah-witt/binary-search-tree,num_dependents_deps.dev:0 github.com/noah-witt/dilbertapi,num_dependents_deps.dev:0 github.com/noah1984/isit-code-allenbc,num_dependents_deps.dev:0 @@ -870791,6 +886404,8 @@ github.com/noahpyn/backend-with-go,num_dependents_deps.dev:0 github.com/noahpyn/go-web-servers,num_dependents_deps.dev:0 github.com/noahrc/name-replace-loader,num_dependents_deps.dev:0 github.com/noahrc/toybox,num_dependents_deps.dev:0 +github.com/noahreinalter/Contributor_Submodules_Action, +github.com/noahreinalter/regex-match-file, github.com/noahrinehart/cmos,num_dependents_deps.dev:0 github.com/noahrinehart/image_colors,num_dependents_deps.dev:0 github.com/noahrinehart/lrg,num_dependents_deps.dev:0 @@ -870931,6 +886546,7 @@ github.com/nobari/Boomi,num_dependents_deps.dev:0 github.com/nobbb/nobbb-lib,num_dependents_deps.dev:0 github.com/nobbb/nobbb-parse-md,num_dependents_deps.dev:0 github.com/nobbb/nobbb-parse-org,num_dependents_deps.dev:0 +github.com/nobbs/action-mirror-action, github.com/nobbyclark/rembr-component,num_dependents_deps.dev:0 github.com/nobbyknox/center-text,num_dependents_deps.dev:0 github.com/nobbyknox/rabbitmq-client,num_dependents_deps.dev:0 @@ -870961,6 +886577,7 @@ github.com/nobitas/select-view,num_dependents_deps.dev:0 github.com/nobitex/coinaddrvalid, github.com/nobject/learn-go-practice,num_dependents_deps.dev:0 github.com/nobl/ioBroker.senec,num_dependents_deps.dev:0 +github.com/nobl9/nobl9-action, github.com/noblauch/offer-validator,num_dependents_deps.dev:0 github.com/noble-lab/crema, github.com/noble/bleno,criticality_score:0.355230 @@ -871053,6 +886670,7 @@ github.com/nobook/nobook-render-factory, github.com/noboomu/jsoniter,num_dependents_deps.dev:0 github.com/noboomu/proteus,num_dependents_deps.dev:0 github.com/noboru-i/node-kyouen,num_dependents_deps.dev:0 +github.com/noboru-i/riverpod_graph-action, github.com/noboruma/rclip,num_dependents_deps.dev:0 github.com/noboruma/spin-the-wheel,num_dependents_deps.dev:0 github.com/noborus/jpug-doc-tool,num_dependents_deps.dev:0 @@ -871070,6 +886688,7 @@ github.com/nobrainerlabs/spacedtime,num_dependents_deps.dev:0 github.com/nobrainr/axios-morphism,num_dependents_deps.dev:0 github.com/nobrainr/morphism,num_dependents_deps.dev:0 github.com/nobrainr/typescript-webpack-starter,num_dependents_deps.dev:0 +github.com/nobrayner/discord-webhook, github.com/nobrefelipe/vue-css-variable-parallax,num_dependents_deps.dev:0 github.com/nobrin/adleastcli, github.com/nobrin/omron-2jcie-bu01, @@ -871136,6 +886755,13 @@ github.com/nock/nock,"criticality_score:0.686000,num_dependents_deps.dev:1722" github.com/nock/propagate,num_dependents_deps.dev:1820 github.com/nocl1p/django-telegram-error-notifications, github.com/noclat/ntorres.com,num_dependents_deps.dev:0 +github.com/nocnoc-th-devops/github-actions-codeartifact-token, +github.com/nocnoc-th-devops/github-actions-create-dynamodb-table, +github.com/nocnoc-th-devops/github-actions-create-tag, +github.com/nocnoc-th-devops/github-actions-job-request, +github.com/nocnoc-th-devops/github-actions-line-replace-utils, +github.com/nocnoc-th-devops/yq-ntd, +github.com/nocnoc-thailand/install-aws-cli-action, github.com/nocobase/nocobase,num_dependents_deps.dev:4 github.com/nocodb/nocodb,num_dependents_deps.dev:0 github.com/nocodeapi/embed-instagram-feed,num_dependents_deps.dev:0 @@ -871162,6 +886788,7 @@ github.com/noctishsu/tslint-config-nineyi,num_dependents_deps.dev:0 github.com/noctuid/tdrop,criticality_score:0.312290 github.com/noctune/disjoint-borrow,num_dependents_deps.dev:0 github.com/noctune/radix-heap,num_dependents_deps.dev:0 +github.com/nocturlab/setup-vlang-action, github.com/nocturn9x/pycollections, github.com/nocturnalbadger/discord-cowsay,num_dependents_deps.dev:0 github.com/nocturneio/mongoose-errors-handler-i18n,num_dependents_deps.dev:0 @@ -872201,6 +887828,7 @@ github.com/nodef/food-e,num_dependents_deps.dev:0 github.com/nodef/food-ins,num_dependents_deps.dev:0 github.com/nodef/function-noop,num_dependents_deps.dev:0 github.com/nodef/geostorm-ost,num_dependents_deps.dev:0 +github.com/nodef/git-config.action, github.com/nodef/heroku-addonpool, github.com/nodef/heroku-clisetup, github.com/nodef/integer-extra,num_dependents_deps.dev:0 @@ -872212,6 +887840,7 @@ github.com/nodef/mycelium-device,num_dependents_deps.dev:0 github.com/nodef/mycelium-link,num_dependents_deps.dev:0 github.com/nodef/mycelium-query,num_dependents_deps.dev:0 github.com/nodef/myfitnesspal-foodcalories,num_dependents_deps.dev:0 +github.com/nodef/npm-config.action, github.com/nodef/number-extra,num_dependents_deps.dev:0 github.com/nodef/nutritionvalue-searchall, github.com/nodef/nvgraph.sh,num_dependents_deps.dev:0 @@ -872511,6 +888140,8 @@ github.com/nodenica/grunt-iojs-api-docs,num_dependents_deps.dev:0 github.com/nodenica/grunt-node-api-docs-responsive, github.com/nodenica/node-tuc,num_dependents_deps.dev:0 github.com/nodenica/tuc-cli,num_dependents_deps.dev:0 +github.com/nodenv/actions-node-version, +github.com/nodenv/actions-setup-nodenv, github.com/nodenv/devutil,num_dependents_deps.dev:0 github.com/nodenv/node-build,num_dependents_deps.dev:0 github.com/nodenv/node-build-jxcore,num_dependents_deps.dev:0 @@ -872783,6 +888414,7 @@ github.com/nodezoo/nodezoo-search,num_dependents_deps.dev:0 github.com/nodezoo/nodezoo-travis,num_dependents_deps.dev:0 github.com/nodezoo/nodezoo-updater,num_dependents_deps.dev:0 github.com/nodhy/inherits-class,num_dependents_deps.dev:0 +github.com/nodify-at/gpt-pull-bot, github.com/nodify-at/node-inspect-network,num_dependents_deps.dev:0 github.com/nodify-at/redux-mappers,num_dependents_deps.dev:0 github.com/noding-platform/di,num_dependents_deps.dev:0 @@ -872924,6 +888556,7 @@ github.com/noejon/tamagot-cli,num_dependents_deps.dev:0 github.com/noel-friedrich/neural, github.com/noel-friedrich/teleasy, github.com/noel-noel/generator-panache,num_dependents_deps.dev:0 +github.com/noel-rapido/test-actions, github.com/noelachi/kolla-lab,num_dependents_deps.dev:0 github.com/noelalfonsomiranda/react-browser-support-copy,num_dependents_deps.dev:0 github.com/noelalfonsomiranda/react-month-picker-calendar,num_dependents_deps.dev:0 @@ -872986,6 +888619,7 @@ github.com/noeltimothy/sqleye,num_dependents_deps.dev:0 github.com/noelwelsh/mads,num_dependents_deps.dev:0 github.com/noelyahan/stream-processor,num_dependents_deps.dev:0 github.com/noelzubin/auto-promised.js,num_dependents_deps.dev:0 +github.com/noelzubin/aws-ecs-run-task, github.com/noemaireamiot/react-selected-text-menu,num_dependents_deps.dev:0 github.com/noematics/gag,num_dependents_deps.dev:0 github.com/noematics/plite2,num_dependents_deps.dev:0 @@ -873289,6 +888923,7 @@ github.com/nofwl/genFile, github.com/nofwl/i18n,num_dependents_deps.dev:0 github.com/nofwl/nui,num_dependents_deps.dev:0 github.com/nofwl/nx,num_dependents_deps.dev:0 +github.com/nofx11/pycaret-git-actions, github.com/nofxx/georuby,num_dependents_deps.dev:5 github.com/nog/atcoder,num_dependents_deps.dev:0 github.com/nogahaskal/proto-generator,num_dependents_deps.dev:0 @@ -873323,6 +888958,7 @@ github.com/nogsantos/fn-cli,num_dependents_deps.dev:0 github.com/nogsantos/hash,num_dependents_deps.dev:0 github.com/nogsantos/js-base-lib,num_dependents_deps.dev:0 github.com/nogsantos/noggo,num_dependents_deps.dev:0 +github.com/nogsantos/ssh-scp-deploy, github.com/noguchidaisuke/clean-arch-by-budougumi-repository,num_dependents_deps.dev:0 github.com/noguchidaisuke/clean-architecture,num_dependents_deps.dev:0 github.com/noguchidaisuke/cron-libraries,num_dependents_deps.dev:0 @@ -873348,7 +888984,11 @@ github.com/nohestmm/SCL009-md-links,num_dependents_deps.dev:0 github.com/nohgijin/cmi-calendar,num_dependents_deps.dev:0 github.com/nohhyun/velero,num_dependents_deps.dev:0 github.com/nohj0518/hyeonjucoin-2021,num_dependents_deps.dev:0 +github.com/nohmad/aws-ssm-parameter-store-action, +github.com/nohmad/aws-ssm-send-command-action, +github.com/nohmad/elastic-beanstalk-action, github.com/nohmad/graql,num_dependents_deps.dev:0 +github.com/nohmad/lcov-report-action, github.com/nohmad/weekrun-calendar,num_dependents_deps.dev:0 github.com/nohmapp/npm-introspect,num_dependents_deps.dev:0 github.com/nohmapp/npm-landscape,num_dependents_deps.dev:0 @@ -873506,6 +889146,7 @@ github.com/nokacreative/generic-react-form,num_dependents_deps.dev:0 github.com/nokacreative/generic-react-table, github.com/nokacreative/noka-generic-react-table,num_dependents_deps.dev:0 github.com/nokamoto/egosla,num_dependents_deps.dev:0 +github.com/nokamoto/merge-conflict-action, github.com/nokamoto/webpush-protobuf-scala,num_dependents_deps.dev:0 github.com/nokamoto/webpush-scala,num_dependents_deps.dev:0 github.com/nokane/crave-time,num_dependents_deps.dev:0 @@ -873593,6 +889234,7 @@ github.com/nokute78/fluentbit-plugin-out-detail,num_dependents_deps.dev:0 github.com/nokute78/go-bit,num_dependents_deps.dev:0 github.com/nokwin/cra-redux-thunk,num_dependents_deps.dev:0 github.com/nokwin/react-native-whatsnew,num_dependents_deps.dev:0 +github.com/nokx-labs/layerstack-snapshot-action, github.com/nokxs/TestIo,num_dependents_deps.dev:0 github.com/nol13/fuzzball.js,num_dependents_deps.dev:74 github.com/nolanbconaway/binoculars, @@ -873683,6 +889325,7 @@ github.com/nolanrigo/project-configs,num_dependents_deps.dev:0 github.com/nolantait/organism-generators,num_dependents_deps.dev:0 github.com/nolar/kopf,criticality_score:0.464580 github.com/nolar/looptime, +github.com/nolar/setup-k3d-k3s, github.com/nolawnchairs/chromecast-js, github.com/nolawnchairs/js-logger,num_dependents_deps.dev:0 github.com/nolawnchairs/proper-name-case,num_dependents_deps.dev:0 @@ -873752,6 +889395,7 @@ github.com/nolimits4web/framework7-cli,num_dependents_deps.dev:0 github.com/nolimits4web/skeleton-elements, github.com/nolimits4web/ssr-window,num_dependents_deps.dev:5742 github.com/nolla123/char_utf8, +github.com/nolleh/jest-badge-deploy-action, github.com/nollety/joseki, github.com/nollety/tengen, github.com/nollety/ussa1976, @@ -873829,6 +889473,7 @@ github.com/nomadinteractive/generator-sequalize,num_dependents_deps.dev:0 github.com/nomadinteractive/nomad-codecheck,num_dependents_deps.dev:0 github.com/nomadinteractive/screenshot-tool,num_dependents_deps.dev:0 github.com/nomadmtb/twitchvod, +github.com/nomadops/artifactory-action, github.com/nomadovoip/winston-sms,num_dependents_deps.dev:0 github.com/nomadreservations/ngx-codemirror,num_dependents_deps.dev:0 github.com/nomadreservations/ngx-gallery,num_dependents_deps.dev:0 @@ -874073,6 +889718,7 @@ github.com/nomrik/create-react-app,num_dependents_deps.dev:0 github.com/noms-digital-studio/poll-endpoint-for,num_dependents_deps.dev:0 github.com/nomspace/nom,num_dependents_deps.dev:0 github.com/nomspace/nomspace, +github.com/nomuken/setup-packer, github.com/nomunomu0504/fluent-plugin-diskfree,num_dependents_deps.dev:0 github.com/nomuppets/apidoc-template-polished,num_dependents_deps.dev:0 github.com/nomuyoshi/go-learning,num_dependents_deps.dev:0 @@ -874144,6 +889790,8 @@ github.com/nondanee/puppeteer-electron,num_dependents_deps.dev:0 github.com/nondeterministic/scalajs-notifyjs,num_dependents_deps.dev:0 github.com/none-da/hello-universe-go-app,num_dependents_deps.dev:0 github.com/none-da/swappable-logging,num_dependents_deps.dev:0 +github.com/none0nfg/install-helm-action, +github.com/none0nfg/yaml-secrets-injector, github.com/none23/eslint-config-none23,num_dependents_deps.dev:6 github.com/none23/next-seo,num_dependents_deps.dev:0 github.com/none23/react-image-lightbox,num_dependents_deps.dev:0 @@ -874393,6 +890041,8 @@ github.com/noohkvm/reactjs-event-calendar,num_dependents_deps.dev:0 github.com/nooize/go-assist,num_dependents_deps.dev:0 github.com/nooize/go-str,num_dependents_deps.dev:0 github.com/nooize/ng-nx,num_dependents_deps.dev:0 +github.com/nookery/env-replace-action, +github.com/nookery/laravel-cp-env-action, github.com/nooks/clean-css,num_dependents_deps.dev:0 github.com/nooks/express-domain,num_dependents_deps.dev:0 github.com/nooks/joi-router,num_dependents_deps.dev:0 @@ -874427,6 +890077,7 @@ github.com/noonnightstorm/dd-avatar,num_dependents_deps.dev:0 github.com/noook/igdm-cli,num_dependents_deps.dev:0 github.com/noook/shlink-client,num_dependents_deps.dev:0 github.com/noook/vue-composition-paginate,num_dependents_deps.dev:0 +github.com/nooose/custom-slack-message, github.com/noootown/react-native-audio-maker,num_dependents_deps.dev:0 github.com/noop-cloud/noop-discovery,num_dependents_deps.dev:0 github.com/noop-cloud/noop-logic,num_dependents_deps.dev:0 @@ -874476,6 +890127,7 @@ github.com/noorzaie/vue-circular-count-down-timer,num_dependents_deps.dev:0 github.com/noos/grunt-aws-util,num_dependents_deps.dev:0 github.com/noos/grunt-jade-extract-coffeescript,num_dependents_deps.dev:0 github.com/noos/grunt-jade-filerev-usemin,num_dependents_deps.dev:0 +github.com/noose/kops, github.com/noosenergy/dash-mdc-neptune, github.com/noosenergy/noos-invoke, github.com/noosenergy/noos-python-kit, @@ -874515,6 +890167,7 @@ github.com/nopelluhh/gatsby-source-google-calendar,num_dependents_deps.dev:0 github.com/nophead/NopSCADlib,criticality_score:0.317890 github.com/nopid/wire,num_dependents_deps.dev:0 github.com/nopjmp/node-llsd,num_dependents_deps.dev:0 +github.com/noplanman/xec, github.com/noplay/json-api-doc, github.com/noplay/python-mysql-replication,criticality_score:0.476520 github.com/nopnop/docflux,num_dependents_deps.dev:0 @@ -874582,6 +890235,8 @@ github.com/noqqe/typist,num_dependents_deps.dev:0 github.com/noqqe/veilig,num_dependents_deps.dev:0 github.com/nor-ko-hi-jp/firex-store,num_dependents_deps.dev:0 github.com/nor-ko-hi-jp/stream-executor,num_dependents_deps.dev:0 +github.com/nora-soderlund/gajira-create, +github.com/nora-soderlund/jira-summary-action, github.com/norabal/norutil, github.com/noracorn/asin-scraper,num_dependents_deps.dev:0 github.com/noradaiko/pouchdb-adapter-react-native-sqlite,num_dependents_deps.dev:0 @@ -874625,7 +890280,10 @@ github.com/noralife/node-red-contrib-hello-world,num_dependents_deps.dev:0 github.com/norama/react-modern-calendar-datepicker,num_dependents_deps.dev:0 github.com/norangmangto/pypi-default, github.com/norato/storybook-snippets,num_dependents_deps.dev:0 +github.com/noraworld/git-flow-observer, +github.com/noraworld/github-to-qiita, github.com/noraworld/pokedex,num_dependents_deps.dev:0 +github.com/noraworld/release-menu, github.com/norayr93/cra-template-advanced, github.com/norbert-radyk/spoiwo,num_dependents_deps.dev:34 github.com/norbert-tasi/ngx-uikit,num_dependents_deps.dev:0 @@ -874667,6 +890325,7 @@ github.com/nordangaard/multicore,num_dependents_deps.dev:0 github.com/nordangaard/react-pipe,num_dependents_deps.dev:0 github.com/nordcloud/GNUI,num_dependents_deps.dev:0 github.com/nordcloud/assume-role-arn,num_dependents_deps.dev:0 +github.com/nordcloud/aws-assume-role, github.com/nordcloud/azure-devops-go-api,num_dependents_deps.dev:0 github.com/nordcloud/azure-tag-manager,num_dependents_deps.dev:0 github.com/nordcloud/cfn-datadog, @@ -874696,6 +890355,7 @@ github.com/nordible/react-typescript-tradingview-embed,num_dependents_deps.dev:0 github.com/nordible/sls-plugin-typescript-express, github.com/nordible/typescript-tradingview-embed,num_dependents_deps.dev:0 github.com/nordible/webStorage-Utilities,num_dependents_deps.dev:0 +github.com/nordic-game-lab/release-tag, github.com/nordic-institute/X-Road,criticality_score:0.552190 github.com/nordic-morning-se/eslint-config,num_dependents_deps.dev:0 github.com/nordic16/xcsr-git, @@ -874838,8 +890498,11 @@ github.com/noriaki/hypernova-react-redux,num_dependents_deps.dev:0 github.com/noriaki/react-timer-component,num_dependents_deps.dev:0 github.com/noriaki/renovate-config,num_dependents_deps.dev:0 github.com/noriapi/boundnum,num_dependents_deps.dev:0 +github.com/noriban/gh-create-release, +github.com/noriban/sign-android-release, github.com/norieldimatulac/check-tls-connection,num_dependents_deps.dev:0 github.com/norikra/norikra,criticality_score:0.366040 +github.com/norio-nomura/action-swiftlint, github.com/noriosuzuki/censortext,num_dependents_deps.dev:0 github.com/norioxkimura/launchpad-cli, github.com/noripyt/django-cachalot,criticality_score:0.465160 @@ -875051,6 +890714,7 @@ github.com/norouter/norouter,num_dependents_deps.dev:0 github.com/norrbom/docker-golang-oracle-primer,num_dependents_deps.dev:0 github.com/norrisja/algos, github.com/norrland/terraform-provider-glesys,num_dependents_deps.dev:0 +github.com/norschel/GitHubActions.HyperV, github.com/norse-rs/audir,num_dependents_deps.dev:0 github.com/norse-rs/audir-sles,num_dependents_deps.dev:20 github.com/norse-rs/pathbreaker,num_dependents_deps.dev:0 @@ -875129,6 +890793,8 @@ github.com/northernman54/homebridge-rtl, github.com/northernman54/homebridge-rtl_433,num_dependents_deps.dev:0 github.com/northerreese/bjr-devcamp-js-footer,num_dependents_deps.dev:0 github.com/northes/bilibili-av-bv,num_dependents_deps.dev:0 +github.com/northflank/deploy-docker-image-on-northflank-action, +github.com/northflank/deploy-to-northflank, github.com/northfoxz/spine-api, github.com/northfuse/ifit-rs,num_dependents_deps.dev:0 github.com/northfuse/keyrings.lastpass, @@ -875154,6 +890820,9 @@ github.com/northvolt/go-sapera,num_dependents_deps.dev:0 github.com/northvolt/gopcua,num_dependents_deps.dev:0 github.com/northvolt/kinesis-producer,num_dependents_deps.dev:0 github.com/northwalker/vue-hotel-datepicker,num_dependents_deps.dev:0 +github.com/northwang-lucky/auto-release, +github.com/northwang-personal/chatbot-webhook-client, +github.com/northwang-personal/dingtalk-notify, github.com/northwesternmutual/grammes,num_dependents_deps.dev:0 github.com/northwesternmutual/kanali-plugin-template,num_dependents_deps.dev:0 github.com/northwesternmutual/minikube,num_dependents_deps.dev:0 @@ -875162,6 +890831,7 @@ github.com/northwesternmutual/regent,num_dependents_deps.dev:0 github.com/northwind/excel.js,num_dependents_deps.dev:0 github.com/northworld/google_calendar,"criticality_score:0.376020,num_dependents_deps.dev:0" github.com/northy/katsuyou, +github.com/northy/pdf-to-markdown-workflow, github.com/nortikin/sverchok,criticality_score:0.564590 github.com/norton120/mediumMuncher, github.com/nortperm/otushw,num_dependents_deps.dev:0 @@ -875187,6 +890857,10 @@ github.com/norvig/paip-lisp,criticality_score:0.374580 github.com/norvig/pytudes,criticality_score:0.360110 github.com/norwae/circuit4stream,num_dependents_deps.dev:0 github.com/norwae/oriana,num_dependents_deps.dev:0 +github.com/norwd/fmtya, +github.com/norwd/ghtag, +github.com/norwd/golintr, +github.com/norwd/grawk, github.com/norwegian-cruise-line/bxslider-4,num_dependents_deps.dev:0 github.com/norwegianblockexchange/vault-btc,num_dependents_deps.dev:0 github.com/norwoodj/bastion-pod-ctl,num_dependents_deps.dev:0 @@ -875225,6 +890899,9 @@ github.com/nosarthur/keysteps, github.com/nosarthur/pourl, github.com/nosarthur/qurl, github.com/nosarthur/xyzt, +github.com/nosborn/github-action-markdown-cli, +github.com/nosborn/github-action-whitespace-linter, +github.com/nosborn/github-action-yamllint, github.com/nosborn/homebridge-platform-gira-homeserver,num_dependents_deps.dev:0 github.com/nosceon/titanite,num_dependents_deps.dev:0 github.com/nosch/generator-ng-scaffold,num_dependents_deps.dev:0 @@ -875594,6 +891271,7 @@ github.com/notary/paxios,num_dependents_deps.dev:0 github.com/notaryio/notary,num_dependents_deps.dev:0 github.com/notaryproject/containerd,num_dependents_deps.dev:0 github.com/notaryproject/notary,num_dependents_deps.dev:0 +github.com/notaryproject/notation-action, github.com/notaryproject/nv2,num_dependents_deps.dev:0 github.com/notasecret/peacemakr-go-sdk,num_dependents_deps.dev:0 github.com/notasmurf/pornhubpremium-api,num_dependents_deps.dev:0 @@ -875654,6 +891332,7 @@ github.com/noteScript/qc_ui,num_dependents_deps.dev:0 github.com/noteScript/re-pack,num_dependents_deps.dev:0 github.com/noteable-io/broadcaster, github.com/noteable-io/hypercorn, +github.com/noteable-io/run-notebook, github.com/notebaseapp/notebase-cli,num_dependents_deps.dev:0 github.com/notebird-app/breeze-chms,num_dependents_deps.dev:0 github.com/notebook-sharing-space/nbss-upload, @@ -875740,6 +891419,7 @@ github.com/notgull/tinydeque,num_dependents_deps.dev:0 github.com/notha99y/personalKB, github.com/nothead31/api-keychain, github.com/nothing49199/vue-replay,num_dependents_deps.dev:0 +github.com/nothingalike/sns-publish-topic, github.com/nothinggift/mk-sass-variables-loader,num_dependents_deps.dev:0 github.com/nothinggift/smooth-scrollbar,num_dependents_deps.dev:0 github.com/nothinginterested/null-ui,num_dependents_deps.dev:0 @@ -875820,6 +891500,7 @@ github.com/notifme/catcher, github.com/notifme/notifme-sdk,"criticality_score:0.325220,num_dependents_deps.dev:0" github.com/notifme/notifme-sdk-queue-rabbitmq,num_dependents_deps.dev:0 github.com/notifme/notifme-template,num_dependents_deps.dev:0 +github.com/notify-events/github-action, github.com/notify-events/node-red,num_dependents_deps.dev:0 github.com/notify-events/nodejs,num_dependents_deps.dev:0 github.com/notify-events/python, @@ -875866,6 +891547,7 @@ github.com/notiv-nt/svgsprite-plugin,num_dependents_deps.dev:0 github.com/notiv-nt/vite-plugin-vue-env,num_dependents_deps.dev:0 github.com/notixbit/paypal-basket,num_dependents_deps.dev:0 github.com/notixbit/shopify-collection-dsl,num_dependents_deps.dev:0 +github.com/notiz-dev/github-action-json-property, github.com/notiz-dev/ngx-gravatar-url,num_dependents_deps.dev:0 github.com/notiz-dev/ngx-tailwind,num_dependents_deps.dev:0 github.com/notiz-dev/prisma-dbml-generator,num_dependents_deps.dev:0 @@ -876165,6 +891847,7 @@ github.com/notoriousb1t/web-deploy-for-node,num_dependents_deps.dev:0 github.com/notovel2/node-masking,num_dependents_deps.dev:0 github.com/notp3rl/gron,num_dependents_deps.dev:0 github.com/notpaulmartin/mdparser,num_dependents_deps.dev:0 +github.com/notpeelz/action-gh-create-release, github.com/notpeter/apple-installer-checksums,criticality_score:0.380630 github.com/notpeter/benc, github.com/notpeter/edicat, @@ -876175,6 +891858,7 @@ github.com/notpeter/hubot-urban,num_dependents_deps.dev:0 github.com/notpeter/hubot-wolfram,num_dependents_deps.dev:0 github.com/notpeter/hubot-zerocater-lunch,num_dependents_deps.dev:0 github.com/notpeter/legiscrape, +github.com/notpresident35/copy_large_folder_to_another_repo_action, github.com/notpushkin/activate, github.com/notqmail/notqmail,criticality_score:0.372890 github.com/notquiteamonad/date_time,num_dependents_deps.dev:0 @@ -876193,6 +891877,7 @@ github.com/notrab/react-use-cart,num_dependents_deps.dev:0 github.com/notrab/vue-commercejs, github.com/notrabs/use-ammojs,num_dependents_deps.dev:0 github.com/notracking/hosts-blocklists,criticality_score:0.395710 +github.com/notrenderfarm/tflint-action, github.com/notreperkill/AdminControl, github.com/notresponding2u/chroma-wrapper,num_dependents_deps.dev:0 github.com/notriddle/quickersort,num_dependents_deps.dev:11 @@ -876209,6 +891894,7 @@ github.com/notronaldmcdonald/promptconv,num_dependents_deps.dev:0 github.com/notruth/rollup-plugin-regenerator, github.com/notryanb/nu_plugin_id3,num_dependents_deps.dev:0 github.com/notryanb/psql_connect,num_dependents_deps.dev:0 +github.com/nots-dev/setup-nots-cli, github.com/notsaf3/strip-js,num_dependents_deps.dev:0 github.com/notsag-dev/bukowski,num_dependents_deps.dev:0 github.com/notsag-dev/koch-curve,num_dependents_deps.dev:0 @@ -876220,6 +891906,7 @@ github.com/notsag/yaml-resume, github.com/notsambeck/pandabase, github.com/notshekhar/XML-parser,num_dependents_deps.dev:0 github.com/notshekhar/neuralnet,num_dependents_deps.dev:0 +github.com/notshriram/obama-medal-action, github.com/notslar-ralston/tqpy, github.com/notsobad-jp/sekki.js,num_dependents_deps.dev:0 github.com/notsofancyname/simplewebserver,num_dependents_deps.dev:0 @@ -876368,6 +892055,7 @@ github.com/novacrazy/rust-tribool,num_dependents_deps.dev:0 github.com/novacrazy/scriptor,num_dependents_deps.dev:0 github.com/novacrazy/serde_shims,num_dependents_deps.dev:0 github.com/novacrazy/trace-error,num_dependents_deps.dev:0 +github.com/novaday-co/localization_action, github.com/novadiscovery/nway,num_dependents_deps.dev:0 github.com/novaenext/ipipeline, github.com/novaeye/jquery-easyui-bower,num_dependents_deps.dev:0 @@ -876440,9 +892128,11 @@ github.com/novakov-alexey/http4s-spnego,num_dependents_deps.dev:0 github.com/noval102200/NovalIDE, github.com/novalabio/react-native-bitcoinjs-lib,num_dependents_deps.dev:0 github.com/novalabio/react-native-maps-super-cluster,num_dependents_deps.dev:0 +github.com/novalabsxyz/cargo-deb-amd64-ubuntu, github.com/novalagung/dasarpemrogramangolang,"criticality_score:0.389190,num_dependents_deps.dev:0" github.com/novalagung/dasarpemrogramangolang-example,num_dependents_deps.dev:0 github.com/novaleaf/xlib,num_dependents_deps.dev:2 +github.com/novalic/create-issue-action, github.com/novalina/passport-windowslive-contacts,num_dependents_deps.dev:0 github.com/novalina/passport-yahoo-contacts,num_dependents_deps.dev:0 github.com/novalinc/datepicker,num_dependents_deps.dev:0 @@ -876580,6 +892270,8 @@ github.com/noveogroup/passport-cas,num_dependents_deps.dev:0 github.com/noveogroup/task-executor,num_dependents_deps.dev:0 github.com/nover/generator-node-es6,num_dependents_deps.dev:0 github.com/nover/generator-node-module,num_dependents_deps.dev:0 +github.com/noverant/aws-cdk-github-actions, +github.com/noveto-com/s3-upload-sha256-action, github.com/novetta/adaptnlp, github.com/noveyak/protobuf.js,num_dependents_deps.dev:0 github.com/noviadi/card,num_dependents_deps.dev:0 @@ -876620,6 +892312,7 @@ github.com/novisci/kpipe-url,num_dependents_deps.dev:6 github.com/novisci/typesift,num_dependents_deps.dev:0 github.com/novisci/typestream,num_dependents_deps.dev:0 github.com/novisto/cache-money, +github.com/novisto/novisto-build-number-action, github.com/novistore/apollo-upload-client,num_dependents_deps.dev:0 github.com/novistore/extract-files,num_dependents_deps.dev:0 github.com/novitae/sterraxcyl, @@ -876638,6 +892331,7 @@ github.com/novocaine/sourcemapped-stacktrace,num_dependents_deps.dev:3528 github.com/novoda/bintray-release,criticality_score:0.428290 github.com/novoda/download-manager,criticality_score:0.355360 github.com/novoda/eslint-config-novoda,num_dependents_deps.dev:0 +github.com/novoda/github-slack-action, github.com/novoda/gradle-android-command-plugin,"criticality_score:0.331460,num_dependents_deps.dev:0" github.com/novoda/gradle-static-analysis-plugin,criticality_score:0.303960 github.com/novoda/merlin,"criticality_score:0.333730,num_dependents_deps.dev:0" @@ -876660,6 +892354,7 @@ github.com/novoid/move2archive, github.com/novoid/orgformat, github.com/novoid/vkl, github.com/novokhatskyioleksii/nodejs-golang,num_dependents_deps.dev:0 +github.com/novom/publish-with-tag-action, github.com/novom/react-native-set-version,num_dependents_deps.dev:0 github.com/novomatic-tech/ci-tools,num_dependents_deps.dev:0 github.com/novomatic-tech/helm-charts,num_dependents_deps.dev:0 @@ -876735,10 +892430,13 @@ github.com/nowaalex/af-react-table,num_dependents_deps.dev:0 github.com/nowaalex/af-tools,num_dependents_deps.dev:0 github.com/nowaalex/af-virtual-scroll,num_dependents_deps.dev:0 github.com/nowaalex/use-axios-progress-bar, +github.com/nowactions/envsubst, +github.com/nowactions/update-majorver, github.com/nowak-ninja/awscli-plugin-s3-proxy, github.com/nowakcasimir/discord-config, github.com/nowakcasimir/imgscan,num_dependents_deps.dev:0 github.com/nowakcasimir/node-applist,num_dependents_deps.dev:0 +github.com/nowakowskir/github-phpcs, github.com/nowakprojects/kt-time-traveler,num_dependents_deps.dev:0 github.com/nowamasa/formatjs,num_dependents_deps.dev:0 github.com/nowamasa/utc,num_dependents_deps.dev:0 @@ -876763,6 +892461,7 @@ github.com/nowcando/nowjs-react-tangram-map,num_dependents_deps.dev:0 github.com/nowcando/nowjs-web-telegram-api,num_dependents_deps.dev:0 github.com/nowdo-hq/revenuecat,num_dependents_deps.dev:0 github.com/nowdo-hq/transition,num_dependents_deps.dev:0 +github.com/noweh/post-tweet-v2-action, github.com/nowelium/node-bitmap,num_dependents_deps.dev:1570 github.com/nowelium/socket.io-store-memcached,num_dependents_deps.dev:0 github.com/nowellpoint/nowellpoint-mongodb-api,num_dependents_deps.dev:0 @@ -876857,10 +892556,15 @@ github.com/nowsecure/node-applesign,"criticality_score:0.314080,num_dependents_d github.com/nowsecure/node-fatmacho,num_dependents_deps.dev:6 github.com/nowsecure/node-macho-entitlements,num_dependents_deps.dev:0 github.com/nowsecure/node-nscrypto,num_dependents_deps.dev:0 +github.com/nowsecure/nowsecure-action, +github.com/nowsecure/nowsecure-sbom-action, github.com/nowsecure/nsq-bundle,num_dependents_deps.dev:0 github.com/nowsecure/owasp-password-strength-test, github.com/nowsecure/r2frida,criticality_score:0.422840 github.com/nowseemee/stencil-ds-plugins,num_dependents_deps.dev:0 +github.com/nowsprinting/check-version-format-action, +github.com/nowsprinting/create-unity-project-action, +github.com/nowsprinting/diff-pdf-action, github.com/nowswap/uniswap-sdk,num_dependents_deps.dev:0 github.com/nowycheung/favicons-webpack-plugin,num_dependents_deps.dev:0 github.com/nowzoo/ez-firebase-auth,num_dependents_deps.dev:0 @@ -877020,6 +892724,7 @@ github.com/nozo-moto/my-uuid,num_dependents_deps.dev:0 github.com/nozo-moto/search_engine,num_dependents_deps.dev:0 github.com/nozo-moto/string-replace-jsx,num_dependents_deps.dev:0 github.com/nozo-moto/twirp-go-typescript,num_dependents_deps.dev:0 +github.com/nozomi-nishinohara/actions-slack-notification, github.com/nozomi-nishinohara/jwt_validation,num_dependents_deps.dev:0 github.com/nozomiishii/nozomi-ui,num_dependents_deps.dev:0 github.com/nozomushimaoka/rtnorm-rust,num_dependents_deps.dev:0 @@ -877062,6 +892767,7 @@ github.com/nozzlegear/tsmatch,num_dependents_deps.dev:0 github.com/nozzlegear/typed-countries,num_dependents_deps.dev:0 github.com/nozzlegear/utilities.styl,num_dependents_deps.dev:0 github.com/nozzy123nozzy/tinycalltrace, +github.com/np-13/sonarscan-dotnet, github.com/np-8/dash-uploader, github.com/np-8/pathtub, github.com/np-8/venvlink, @@ -877069,6 +892775,10 @@ github.com/np-8/wakepy, github.com/np-at/atl_cache_warmer, github.com/np-at/awx_exporter, github.com/np-at/hm_wrapper, +github.com/np-guard/netpol-diff-gh-action, +github.com/np-guard/netpol-reports-gh-action, +github.com/np-guard/netpol-synthesis-gh-action, +github.com/np-guard/netpol-verify-gh-action, github.com/np-maintain/global-tunnel,num_dependents_deps.dev:880 github.com/np-maintain/simple-recaptcha-new,num_dependents_deps.dev:2 github.com/np-matt/npts,num_dependents_deps.dev:0 @@ -877085,7 +892795,9 @@ github.com/npackd/npackd,num_dependents_deps.dev:0 github.com/npagong/arcanys-angular-api,num_dependents_deps.dev:0 github.com/npal2/npal, github.com/npalethorpe/Cordova-Plugin-SystemBarDimmer,num_dependents_deps.dev:0 +github.com/npalm/action-app-token, github.com/npalm/action-docs,num_dependents_deps.dev:0 +github.com/npalm/action-docs-action, github.com/npalm/terraform-aws-gitlab-runner,criticality_score:0.513980 github.com/npankov/project-lvl1-s344,num_dependents_deps.dev:0 github.com/npanthi/ui_utility,num_dependents_deps.dev:0 @@ -877186,6 +892898,7 @@ github.com/npgsql/efcore.pg,criticality_score:0.581430 github.com/npgsql/npgsql,criticality_score:0.674470 github.com/npguru/SocialSharing-PhoneGap-Plugin,num_dependents_deps.dev:0 github.com/npguru/cordova-plugin-np-secure-storage,num_dependents_deps.dev:0 +github.com/npgy/cloudflared-ssh-action, github.com/nph278/pixelize, github.com/nphan24/complete-me,num_dependents_deps.dev:0 github.com/nphase/go-clustering-example,num_dependents_deps.dev:0 @@ -877830,6 +893543,7 @@ github.com/nrc/tuple-unwrap,num_dependents_deps.dev:0 github.com/nrc/xmas-elf,num_dependents_deps.dev:17 github.com/nrc/zero,num_dependents_deps.dev:37 github.com/nrcakurasov/test-package,num_dependents_deps.dev:0 +github.com/nrccua-walter-manger/pr-label-by-base, github.com/nrccua/aioradio, github.com/nrccua/datadog-http-handler, github.com/nrcharles/caelum, @@ -878061,6 +893775,7 @@ github.com/nrpatten/node-tip-bot,num_dependents_deps.dev:0 github.com/nrpatten/node-tipbot-api,num_dependents_deps.dev:0 github.com/nrpatten/wmic-sys-info,num_dependents_deps.dev:0 github.com/nrpope/lotide,num_dependents_deps.dev:0 +github.com/nrpx/action-find-linear-issue, github.com/nrsalinas/ackbar, github.com/nrsedat/eslint-plugin-require-jsdoc,num_dependents_deps.dev:6 github.com/nrser/babel-plugin-metalog,num_dependents_deps.dev:0 @@ -878085,6 +893800,7 @@ github.com/nrub/grunt-smarttext,num_dependents_deps.dev:0 github.com/nrudenko/anarcho, github.com/nrudenko/anarcho-gradle,num_dependents_deps.dev:0 github.com/nrudenko/gradle-android-cq-plugin,num_dependents_deps.dev:0 +github.com/nrukavkov/open-ports-check-action, github.com/nruneev/angular-form-fields,num_dependents_deps.dev:0 github.com/nruneev/angular-military-time,num_dependents_deps.dev:0 github.com/nruneev/angular-table,num_dependents_deps.dev:0 @@ -878135,6 +893851,7 @@ github.com/nrwl/nx-console,criticality_score:0.392070 github.com/nrwl/nx-examples,criticality_score:0.303340 github.com/nrwl/nx-go-project-graph-plugin,num_dependents_deps.dev:0 github.com/nrwl/nx-react-native,num_dependents_deps.dev:0 +github.com/nrwl/nx-set-shas, github.com/nrwl/webpack-plugin-critical,num_dependents_deps.dev:0 github.com/nrxus/faux,num_dependents_deps.dev:2 github.com/nryanov/Schemakeeper,"num_dependents_deps.dev:12,num_dependents_deps.dev:6" @@ -878233,6 +893950,7 @@ github.com/nsatter/sequelize-templates,num_dependents_deps.dev:0 github.com/nsaunders/demitasse,num_dependents_deps.dev:0 github.com/nsaunders/flare,num_dependents_deps.dev:0 github.com/nsaunders/hacss,num_dependents_deps.dev:0 +github.com/nsaunders/traffic-lite, github.com/nsavch/aio_dprcon, github.com/nsavch/python-dpcolors, github.com/nsavch/python-xonotic-db, @@ -878265,6 +893983,7 @@ github.com/nschejtman/py-v8n, github.com/nscheuner/aws_ip_count,num_dependents_deps.dev:0 github.com/nschlemm/django-themeswitch, github.com/nschloe/accupy, +github.com/nschloe/action-cached-lfs-checkout, github.com/nschloe/betterbib,criticality_score:0.416310 github.com/nschloe/betterspy, github.com/nschloe/colorio, @@ -878352,6 +894071,25 @@ github.com/nseps/gojenkins,num_dependents_deps.dev:0 github.com/nseps/libkv,num_dependents_deps.dev:0 github.com/nseps/libvirt-go,num_dependents_deps.dev:0 github.com/nserrino/simplepattern,num_dependents_deps.dev:0 +github.com/nservicebusextensions/newtonsoft.json.encryption, +github.com/nservicebusextensions/nservicebus.attachments, +github.com/nservicebusextensions/nservicebus.auditfilter, +github.com/nservicebusextensions/nservicebus.bond, +github.com/nservicebusextensions/nservicebus.handlerordering, +github.com/nservicebusextensions/nservicebus.hyperion, +github.com/nservicebusextensions/nservicebus.jil, +github.com/nservicebusextensions/nservicebus.json, +github.com/nservicebusextensions/nservicebus.messagepack, +github.com/nservicebusextensions/nservicebus.microsoftlogging, +github.com/nservicebusextensions/nservicebus.msgpack, +github.com/nservicebusextensions/nservicebus.protobufgoogle, +github.com/nservicebusextensions/nservicebus.protobufnet, +github.com/nservicebusextensions/nservicebus.serilog, +github.com/nservicebusextensions/nservicebus.sqlnative, +github.com/nservicebusextensions/nservicebus.utf8json, +github.com/nservicebusextensions/nservicebus.validation, +github.com/nservicebusextensions/nservicebus.wire, +github.com/nservicebusextensions/nservicebus.zeroformatter, github.com/nsetzer/mpgameserver, github.com/nsf/gocode,criticality_score:0.411150 github.com/nsf/imgui-rust,num_dependents_deps.dev:0 @@ -878359,6 +894097,7 @@ github.com/nsf/jsondiff,num_dependents_deps.dev:5 github.com/nsf/liquid,num_dependents_deps.dev:0 github.com/nsf/termbox,criticality_score:0.414100 github.com/nsf/termbox-go,"criticality_score:0.471760,num_dependents_deps.dev:2043" +github.com/nsfilho/esp8266-rtos-sdk, github.com/nsfilho/migration,num_dependents_deps.dev:0 github.com/nsfilho/rabbitmq,num_dependents_deps.dev:0 github.com/nsfilho/redis-connection,num_dependents_deps.dev:0 @@ -878383,6 +894122,7 @@ github.com/nsgonultas/fiit, github.com/nsgonultas/life, github.com/nsh87/ehrcorral, github.com/nsh87/regressors, +github.com/nshackerone-r/hello-world-docker-action, github.com/nshafer/django-brunch, github.com/nshafer/django-hashid-field,criticality_score:0.301300 github.com/nshahpazov/json-to-html-parser,num_dependents_deps.dev:0 @@ -878432,6 +894172,7 @@ github.com/nshntarora/simple-inline-styles,num_dependents_deps.dev:0 github.com/nshore/react-keenio,num_dependents_deps.dev:0 github.com/nshou/test_deps,num_dependents_deps.dev:0 github.com/nsi-iff/fluidity, +github.com/nsi-inco/copy-files-to-other-repositories, github.com/nsi88/adblockdetect,num_dependents_deps.dev:6 github.com/nsi88/avcodecs,num_dependents_deps.dev:0 github.com/nsidc/ol3-projection-switcher,num_dependents_deps.dev:0 @@ -878606,6 +894347,7 @@ github.com/nsouto/node-cratedb,num_dependents_deps.dev:0 github.com/nspaeth/cycle-web-extensions,num_dependents_deps.dev:0 github.com/nspcc-dev/dbft,num_dependents_deps.dev:1 github.com/nspcc-dev/fasthttp,num_dependents_deps.dev:0 +github.com/nspcc-dev/gh-push-to-neofs, github.com/nspcc-dev/neo-go,num_dependents_deps.dev:8 github.com/nspcc-dev/neo-go-sc-wrkshp,num_dependents_deps.dev:0 github.com/nspcc-dev/neofs-api-go,num_dependents_deps.dev:0 @@ -878660,6 +894402,7 @@ github.com/nsteiner/php-local,num_dependents_deps.dev:0 github.com/nstepien/iltorb,num_dependents_deps.dev:722 github.com/nsterg/go-servicebus-publisher,num_dependents_deps.dev:0 github.com/nstgt/bgpbully,num_dependents_deps.dev:0 +github.com/nsthompson/instruqt-converter-action, github.com/nstielau/autograph,num_dependents_deps.dev:0 github.com/nstielau/snap,num_dependents_deps.dev:0 github.com/nstkshkn/operations_proto,num_dependents_deps.dev:0 @@ -878873,6 +894616,7 @@ github.com/ntdalbec/type-scale,num_dependents_deps.dev:0 github.com/ntdaley/gulp-strip-ng-log,num_dependents_deps.dev:0 github.com/ntdaley/gulp-transform-js-ast,num_dependents_deps.dev:0 github.com/ntdb/react-weekday-picker,num_dependents_deps.dev:0 +github.com/ntdesmond/html2pdf-action, github.com/ntduycs/simple-etg,num_dependents_deps.dev:0 github.com/nteague22/webpack-ssr-razor-template-plugin,num_dependents_deps.dev:0 github.com/nteal/lodown,num_dependents_deps.dev:0 @@ -878959,6 +894703,7 @@ github.com/ntesmail/shark-angularjs,num_dependents_deps.dev:0 github.com/ntesmail/shark-ui, github.com/ntesmail/webpack-replace-chunkhash-contenthash, github.com/ntessore/Rmath-python, +github.com/ntessore/add-reviewed-by-action, github.com/ntessore/composition_stats, github.com/ntessore/convolvecl, github.com/ntessore/corfu, @@ -879002,6 +894747,7 @@ github.com/ntgussoni/react-slate-small-editor,num_dependents_deps.dev:0 github.com/nth-cloud/ng-mentions,num_dependents_deps.dev:0 github.com/nth-cloud/ng-toggle, github.com/nth-commit/pbt,num_dependents_deps.dev:0 +github.com/nthState/InclusiveCopywriting, github.com/nthachus/bootstrap24,num_dependents_deps.dev:0 github.com/nthachus/ffi_wide_char,num_dependents_deps.dev:0 github.com/nthachus/jquery-spellchecker,num_dependents_deps.dev:0 @@ -879115,6 +894861,7 @@ github.com/ntkog/koop-provider-geojson,num_dependents_deps.dev:0 github.com/ntkoso/redux-saga-fetcher,num_dependents_deps.dev:0 github.com/ntldrake/gitbook-plugin-cs,num_dependents_deps.dev:0 github.com/ntlf/node-scripts,num_dependents_deps.dev:0 +github.com/ntltd/release-generator, github.com/ntltd/strikethrough-js,num_dependents_deps.dev:0 github.com/ntlzz93/node-mailwizz-sdk,num_dependents_deps.dev:0 github.com/ntm-al/ntm-angular, @@ -879127,6 +894874,7 @@ github.com/ntnbrtnkv/run-in-browser,num_dependents_deps.dev:0 github.com/ntnbrtnkv/storybook-addon-react-context,num_dependents_deps.dev:0 github.com/ntnn/g10k,num_dependents_deps.dev:0 github.com/ntnn/paperwork.py, +github.com/ntno/setup-buildenv, github.com/ntns/excelize,num_dependents_deps.dev:0 github.com/ntns/xls,num_dependents_deps.dev:0 github.com/ntnu-ihb/fmi4j,num_dependents_deps.dev:2 @@ -879203,6 +894951,7 @@ github.com/ntreadway/responsive-sass,num_dependents_deps.dev:0 github.com/ntreeinc/apex-source-control,num_dependents_deps.dev:0 github.com/ntrinquier/sms-gateway-nodejs,num_dependents_deps.dev:0 github.com/ntropy-network/ntropy-sdk, +github.com/ntropy-network/pull-request-comment-trigger, github.com/ntropy-network/terraform-provider-slack,num_dependents_deps.dev:0 github.com/ntrp/nativescript-meteor-client,num_dependents_deps.dev:0 github.com/ntrrg/mage,num_dependents_deps.dev:0 @@ -879220,7 +894969,9 @@ github.com/ntsang168/couchtransform,num_dependents_deps.dev:0 github.com/ntsang168/wis-demo,num_dependents_deps.dev:0 github.com/ntsang168/wis-logger,num_dependents_deps.dev:0 github.com/ntsd/gauge-chart,num_dependents_deps.dev:0 +github.com/ntsd/github-profile-repositories, github.com/ntsd/hedera-go-examples,num_dependents_deps.dev:0 +github.com/ntsd/liquidjs-action, github.com/ntshcalleia/to-mp4,num_dependents_deps.dev:0 github.com/ntsim/react-boilerplate,num_dependents_deps.dev:0 github.com/ntsvetanov/ntsvetanov_test_pypi, @@ -879251,6 +895002,7 @@ github.com/nttdocomo/gemini,num_dependents_deps.dev:0 github.com/nttdocomo/rc-vtree,num_dependents_deps.dev:0 github.com/nttdocomo/regexstream,num_dependents_deps.dev:0 github.com/nttgin/BGPalerter,"criticality_score:0.494410,num_dependents_deps.dev:0" +github.com/nttld/setup-ndk, github.com/nttmcl/git-covdiff, github.com/nttpc/anymotion-cli, github.com/nttpc/anymotion-python-sdk, @@ -879301,6 +895053,7 @@ github.com/ntwcklng/str-reverse,num_dependents_deps.dev:0 github.com/ntwcklng/version-exists,num_dependents_deps.dev:2 github.com/ntwcklng/yarn-installed,num_dependents_deps.dev:0 github.com/ntwi/fabric,num_dependents_deps.dev:0 +github.com/ntwklr/nexus-helm-chart-releaser-action, github.com/ntxt/expressionsjs,num_dependents_deps.dev:0 github.com/ntzwrk/blockstack.ts,num_dependents_deps.dev:0 github.com/ntzwrk/skeleton,num_dependents_deps.dev:0 @@ -879533,9 +895286,13 @@ github.com/nucleome/nb-tools,num_dependents_deps.dev:0 github.com/nucleome/nucleserver,num_dependents_deps.dev:0 github.com/nucleos-io/proton-controller, github.com/nucleos-io/proton-service,num_dependents_deps.dev:0 +github.com/nucleos/symfony-console-action, github.com/nucleus-angular/nag-doc,num_dependents_deps.dev:0 github.com/nucleus-sh/nucleus-nodejs,num_dependents_deps.dev:0 github.com/nucleus-sh/nucleus-python, +github.com/nucleuscloud/deploy-action, +github.com/nucleuscloud/setup-neosync-cli-action, +github.com/nucleuscloud/setup-nucleus-cli-action, github.com/nucleuslabs/form-capacitor,num_dependents_deps.dev:0 github.com/nucleuslabs/immutability-helper, github.com/nucleuslabs/react-restfully, @@ -879710,6 +895467,7 @@ github.com/nujz/practise,num_dependents_deps.dev:0 github.com/nukappa/stimwrap, github.com/nukc/LoadMoreLayout,num_dependents_deps.dev:0 github.com/nukc/react-native-slide-panel,num_dependents_deps.dev:0 +github.com/nukdokplex/autohotkey-build, github.com/nuke-build/nuke,criticality_score:0.608520 github.com/nukedzn/eslint-config-nukedzn,num_dependents_deps.dev:0 github.com/nukedzn/node-informix,num_dependents_deps.dev:0 @@ -879888,6 +895646,7 @@ github.com/null2264/discord.py, github.com/null2264/i18n, github.com/null4bl3/awesome-banner,num_dependents_deps.dev:0 github.com/null4bl3/simple-banner,num_dependents_deps.dev:0 +github.com/null511/PixelGraph.GitHubAction, github.com/null93/deepest-common-folder,num_dependents_deps.dev:0 github.com/nullables/json-rpc-lib-binding,num_dependents_deps.dev:0 github.com/nullables/json-rpc-lib-client,num_dependents_deps.dev:0 @@ -880027,6 +895786,7 @@ github.com/nullstack/create-nullstatic-app,num_dependents_deps.dev:0 github.com/nullstack/nullstack,num_dependents_deps.dev:0 github.com/nullstalgia/classyclock,num_dependents_deps.dev:0 github.com/nullstone-io/module,num_dependents_deps.dev:0 +github.com/nullstone-io/setup-nullstone-action, github.com/nullstone-io/terraform-provider-ns,num_dependents_deps.dev:0 github.com/nullstyle/bat,num_dependents_deps.dev:0 github.com/nullstyle/framed-snappy,num_dependents_deps.dev:0 @@ -880093,6 +895853,7 @@ github.com/nulty/spage,num_dependents_deps.dev:0 github.com/nulvem/js-form,num_dependents_deps.dev:0 github.com/num-digits/num-digits,num_dependents_deps.dev:0 github.com/num13ru/eslint-plugin-change-detection-strategy,num_dependents_deps.dev:0 +github.com/num30/c4-render, github.com/num718/go-say-hello,num_dependents_deps.dev:0 github.com/num8er/express-access-token,num_dependents_deps.dev:0 github.com/num8er/express-admob-ssv,num_dependents_deps.dev:0 @@ -880187,6 +895948,7 @@ github.com/numberoverzero/grits, github.com/numberoverzero/jsonquery, github.com/numberoverzero/oga, github.com/numberoverzero/origami, +github.com/numberoverzero/rook-action, github.com/numberoverzero/snails, github.com/numbers/numbers.js,num_dependents_deps.dev:2 github.com/numbers1311407/backbone-getset,num_dependents_deps.dev:0 @@ -880243,6 +896005,7 @@ github.com/numeristical/splinecalib, github.com/numeristical/structureboost, github.com/numero33/react-table-util,num_dependents_deps.dev:0 github.com/numero33/react-visual-window,num_dependents_deps.dev:0 +github.com/numero33/size-branch-compare, github.com/numerodix/ansicolor, github.com/numerodix/deplint, github.com/numerodix/killdupes, @@ -880336,6 +896099,8 @@ github.com/numtel/progress-promise,num_dependents_deps.dev:4 github.com/numtel/sails-mysql-live-select,num_dependents_deps.dev:0 github.com/numtel/sails-postgresql-live-select,num_dependents_deps.dev:0 github.com/numtel/shadowstyles,num_dependents_deps.dev:0 +github.com/numtide/action-cli, +github.com/numtide/clean-git-action, github.com/numtide/devshell,num_dependents_deps.dev:0 github.com/numtide/go-nix,num_dependents_deps.dev:0 github.com/numtide/nar-serve,num_dependents_deps.dev:0 @@ -880458,6 +896223,7 @@ github.com/nuomijs/nuomi-request,num_dependents_deps.dev:0 github.com/nuomijs/nuomi-vue,num_dependents_deps.dev:0 github.com/nuomijs/nuomi-webpack-plugin,num_dependents_deps.dev:0 github.com/nuomiui/nuomi-cli,num_dependents_deps.dev:0 +github.com/nuonuonuonuoyan/scp-pushfile-ssh-remote, github.com/nuorder/bunyan-express-middleware,num_dependents_deps.dev:0 github.com/nuorder/bunyan-rabbitmq-stream,num_dependents_deps.dev:0 github.com/nuorder/event-source-journal,num_dependents_deps.dev:0 @@ -880517,6 +896283,7 @@ github.com/nurettin/jruby-poi,num_dependents_deps.dev:0 github.com/nurey/activerecord-testcase,num_dependents_deps.dev:0 github.com/nureynisow/passport-plm-oauth2,num_dependents_deps.dev:0 github.com/nurfan/david19bot,num_dependents_deps.dev:0 +github.com/nurgasemetey/leetcode-solved-problem-tracker, github.com/nurgeld/project-lvl1-s104,num_dependents_deps.dev:0 github.com/nurhanna/react-bootstrap-table,num_dependents_deps.dev:0 github.com/nuri1126/oca-gha-workshop,num_dependents_deps.dev:0 @@ -880586,6 +896353,9 @@ github.com/nurupo/vlc-pause-click-plugin,criticality_score:0.300940 github.com/nuryagdym/node-ftpsync,num_dependents_deps.dev:0 github.com/nurymsiyrbayev/hw2,num_dependents_deps.dev:0 github.com/nurzhan-saktaganov/react-rbac-guard,num_dependents_deps.dev:0 +github.com/nurzhanme/SharpmaidGithubAction, +github.com/nurzhanme/UmlGen, +github.com/nurzhanme/kotlinmaid-github-action, github.com/nusa-gr1/liedb,num_dependents_deps.dev:0 github.com/nusantara-cloud/multer-proxy-storage,num_dependents_deps.dev:0 github.com/nusantara-cloud/nc-image-picker,num_dependents_deps.dev:0 @@ -880755,6 +896525,7 @@ github.com/nutzam/nutzmore,"criticality_score:0.418410,num_dependents_deps.dev:1 github.com/nutzam/nutzwx,num_dependents_deps.dev:32 github.com/nutzam/ssdb4j,num_dependents_deps.dev:0 github.com/nuu-engineering/Cordage-UI,num_dependents_deps.dev:0 +github.com/nuuday/github-changelog-action, github.com/nuuday/odin-jss,num_dependents_deps.dev:0 github.com/nuuls/klogs,num_dependents_deps.dev:0 github.com/nuun-io/kernel,num_dependents_deps.dev:728 @@ -880784,6 +896555,8 @@ github.com/nuvi/draft-js-emoji-mart-plugin, github.com/nuvi/nuvi-daterange-picker,num_dependents_deps.dev:0 github.com/nuvi/nuvi-react-annotation,num_dependents_deps.dev:2 github.com/nuvipannu/ascii-heart,num_dependents_deps.dev:0 +github.com/nuvla/nuvla-create-nuvlabox-action, +github.com/nuvla/nuvla-deploy-app-action, github.com/nuvo/emq_exporter,num_dependents_deps.dev:0 github.com/nuvo/orca,num_dependents_deps.dev:0 github.com/nuvolo/sincronia,num_dependents_deps.dev:4 @@ -880807,6 +896580,9 @@ github.com/nuware/nitro,num_dependents_deps.dev:0 github.com/nuware/router,num_dependents_deps.dev:0 github.com/nuware/store,num_dependents_deps.dev:0 github.com/nuwave/lighthouse,criticality_score:0.641310 +github.com/nuwaycloud/action-linting, +github.com/nuwaycloud/shellcheck-action, +github.com/nuwaycloud/trivy-action, github.com/nuwcdivnpt/stigman-watcher,num_dependents_deps.dev:0 github.com/nuwe-io/js-eslint-config,num_dependents_deps.dev:0 github.com/nuweba/faasbenchmark,num_dependents_deps.dev:0 @@ -880989,6 +896765,7 @@ github.com/nuxt/loading-screen,num_dependents_deps.dev:752 github.com/nuxt/markdown,num_dependents_deps.dev:12 github.com/nuxt/modules,num_dependents_deps.dev:14 github.com/nuxt/now-builder,num_dependents_deps.dev:0 +github.com/nuxt/nuxt, github.com/nuxt/nuxt-cli,num_dependents_deps.dev:0 github.com/nuxt/nuxt-modules,num_dependents_deps.dev:0 github.com/nuxt/nuxt.js,"criticality_score:0.720830,num_dependents_deps.dev:39872" @@ -881098,6 +896875,8 @@ github.com/nvbn/upsearch, github.com/nvcexploder/hogwarts,num_dependents_deps.dev:0 github.com/nvcnvn/go.uuid,num_dependents_deps.dev:0 github.com/nvd/yelpster,num_dependents_deps.dev:0 +github.com/nvdaes/build-discussion, +github.com/nvdaes/get-repository-id, github.com/nvdaes/plover_spanish_mqd, github.com/nvdaes/plover_start_words, github.com/nvdaz/apollo-link-omit-typename,num_dependents_deps.dev:0 @@ -881108,11 +896887,16 @@ github.com/nvdnvd00/react-native-login-amazon, github.com/nvdunginest/emis-mui,num_dependents_deps.dev:0 github.com/nvdv/atq, github.com/nvdv/vprof,criticality_score:0.380920 +github.com/nventuro/unconditional-upload-cache, github.com/nverba/angular-pikaday,num_dependents_deps.dev:0 github.com/nverba/pikaday-angular,num_dependents_deps.dev:0 github.com/nverno/30-seconds-to-yas,num_dependents_deps.dev:0 github.com/nvest-solutions/android-extensions,num_dependents_deps.dev:0 github.com/nvest-solutions/html-to-pdf-convertor,num_dependents_deps.dev:0 +github.com/nvfp/Line-O-Saurus, +github.com/nvfp/demo-testing, +github.com/nvfp/gh-action-simple-release, +github.com/nvgoldin/codefresh-pipeline-runner, github.com/nvgordeev/super-simple-dev-server,num_dependents_deps.dev:0 github.com/nvgruel123/blockchain,num_dependents_deps.dev:0 github.com/nvgruel123/blockchian,num_dependents_deps.dev:0 @@ -881187,6 +896971,7 @@ github.com/nvigneux/nv-simple-toast-hook,num_dependents_deps.dev:0 github.com/nvigneux/use-nv-simple-toast, github.com/nvijayap/invoicer-chapter2,num_dependents_deps.dev:0 github.com/nvim-lua/completion-nvim,criticality_score:0.435910 +github.com/nvim-neorocks/luarocks-tag-release, github.com/nvim-telescope/telescope.nvim,criticality_score:0.448700 github.com/nvim-treesitter/nvim-treesitter,criticality_score:0.483990 github.com/nvinard/erzsol3Py, @@ -881244,6 +897029,7 @@ github.com/nvnmo/pychromepdf, github.com/nvogel/echo,num_dependents_deps.dev:0 github.com/nvoinov/grunt-remove,num_dependents_deps.dev:0 github.com/nvoronkin/babel-plugin-react-bootstrap,num_dependents_deps.dev:0 +github.com/nvoxland/jar-download-action, github.com/nvoynov/clerq,num_dependents_deps.dev:0 github.com/nvrenshiren/react-mapbox-ts,num_dependents_deps.dev:0 github.com/nvreynolds/factory_bro,num_dependents_deps.dev:0 @@ -881270,6 +897056,7 @@ github.com/nvthai/react-native-markdown-renderer,num_dependents_deps.dev:0 github.com/nvthai/react-native-swipe-list-view,num_dependents_deps.dev:0 github.com/nvthongswansea/gsclient-go,num_dependents_deps.dev:0 github.com/nvthongswansea/xtreme,num_dependents_deps.dev:0 +github.com/nvti/portainer-stack-deploy, github.com/nvuillam/generic-stdout-parser,num_dependents_deps.dev:0 github.com/nvuillam/markdown-table-formatter,num_dependents_deps.dev:0 github.com/nvuillam/mega-linter,num_dependents_deps.dev:0 @@ -881371,10 +897158,13 @@ github.com/nwehner/react_helmet_recaptcha_v3, github.com/nwehner/reactnativerecaptchav3,num_dependents_deps.dev:0 github.com/nwehr/expect,num_dependents_deps.dev:0 github.com/nweintraut/censorify,num_dependents_deps.dev:0 +github.com/nweldev/spreadsheet-sync, github.com/nwesterhausen/mcdata-to-json,num_dependents_deps.dev:0 github.com/nwesterhausen/pyblueiris, github.com/nwestfall/lambdaguardjunit,num_dependents_deps.dev:0 github.com/nwestfall/netsparkerscanrunner,num_dependents_deps.dev:0 +github.com/nwestfall/openapi-action, +github.com/nwestfall/sdelements-advsync, github.com/nwetzel22/modernWebDevBuild,num_dependents_deps.dev:0 github.com/nwfsc-data/PyICAM, github.com/nwfsc-fram/boatnet-module,num_dependents_deps.dev:4 @@ -881462,6 +897252,8 @@ github.com/nwmqpa/SSHWebSocket, github.com/nwmqpa/django-jet, github.com/nwmqpa/ecdb,num_dependents_deps.dev:0 github.com/nwmqpa/russd,num_dependents_deps.dev:0 +github.com/nwmqpa/rust-musl-builder, +github.com/nwmqpa/terraform-outputs, github.com/nwneisen/microservicesingo,num_dependents_deps.dev:0 github.com/nwneisen/plugin-post-suggestions,num_dependents_deps.dev:0 github.com/nwneisen/plugin-social-media,num_dependents_deps.dev:0 @@ -881508,6 +897300,7 @@ github.com/nwroyer/Python-Military-Symbols, github.com/nws-cip/zenconf, github.com/nwshane/latinize-georgian,num_dependents_deps.dev:0 github.com/nwtgck/actions-comment-run,criticality_score:0.317260 +github.com/nwtgck/actions-netlify, github.com/nwtgck/binconv-npm,num_dependents_deps.dev:0 github.com/nwtgck/digestream,num_dependents_deps.dev:0 github.com/nwtgck/fakelish-npm,num_dependents_deps.dev:0 @@ -881674,6 +897467,7 @@ github.com/nxtexe/zxing-qr-reader, github.com/nxtllc/phoneAuth,num_dependents_deps.dev:0 github.com/nxtlo/aiobungie, github.com/nxtlytics/cloud-lifecycle-controller,num_dependents_deps.dev:0 +github.com/nxtstep/check-pr-labels-on-push-action, github.com/nxtxiaolong/dfp-verify,num_dependents_deps.dev:0 github.com/nxu-lang/nxu,num_dependents_deps.dev:0 github.com/nxus/admin,num_dependents_deps.dev:4 @@ -881723,8 +897517,12 @@ github.com/nyaa/fixtures,num_dependents_deps.dev:0 github.com/nyaa/mobile_detect,num_dependents_deps.dev:0 github.com/nyaa/rails_doctor,num_dependents_deps.dev:0 github.com/nyaa/rudate,num_dependents_deps.dev:0 +github.com/nyaa8/package-info, +github.com/nyaa8/package-version, github.com/nyaapass/ymz-ui,num_dependents_deps.dev:0 +github.com/nyakaz73/aws-ecr-deploy, github.com/nyakaz73/datastructure_collection, +github.com/nyakaz73/heroku-django-deploy, github.com/nyakovenko/react-swiper,num_dependents_deps.dev:0 github.com/nyakto/2way-router,num_dependents_deps.dev:0 github.com/nyakto/grom,num_dependents_deps.dev:0 @@ -881748,6 +897546,8 @@ github.com/nyan2d/bolteo,num_dependents_deps.dev:0 github.com/nyan2d/ssocks,num_dependents_deps.dev:0 github.com/nyan2d/vacmanbot,num_dependents_deps.dev:0 github.com/nyan2d/xnotbox,num_dependents_deps.dev:0 +github.com/nyancatda/RenpyBuild, +github.com/nyancatda/RenpyLint, github.com/nyancatda/randomanimationphoto,num_dependents_deps.dev:0 github.com/nyancodeid/image-cache,num_dependents_deps.dev:0 github.com/nyancoins/nyantx,num_dependents_deps.dev:0 @@ -881892,6 +897692,7 @@ github.com/nylar/drs-sdk,num_dependents_deps.dev:0 github.com/nylar/elastic,num_dependents_deps.dev:0 github.com/nylar/go-sdl-examples,num_dependents_deps.dev:0 github.com/nylar357/hackutils,num_dependents_deps.dev:0 +github.com/nylas/build-dpkg-buster, github.com/nylas/components,num_dependents_deps.dev:0 github.com/nylas/mypy-tools, github.com/nylas/nylas-java,num_dependents_deps.dev:0 @@ -882147,6 +897948,7 @@ github.com/nyura123/firebase-nest-mobx-react,num_dependents_deps.dev:0 github.com/nyura123/mobx-firebase-store,num_dependents_deps.dev:0 github.com/nyura123/react-movable-block-editor,num_dependents_deps.dev:0 github.com/nyura95/awise-messenger,num_dependents_deps.dev:0 +github.com/nyurik/action-setup-postgis, github.com/nyurik/domain-validator,num_dependents_deps.dev:6 github.com/nyurik/leaflet-vega,num_dependents_deps.dev:0 github.com/nyurik/mw-graph-shared,num_dependents_deps.dev:0 @@ -882171,11 +897973,16 @@ github.com/nyuyzj/Smile-GAN, github.com/nyvi/spring-boot-starter-jdbc-helper,num_dependents_deps.dev:0 github.com/nywillb/cute-files,num_dependents_deps.dev:0 github.com/nyx-theme/hyper-nyx,num_dependents_deps.dev:0 +github.com/nyxb/conmitmoji, github.com/nyxiative/configr,num_dependents_deps.dev:1 github.com/nyxiative/paperscraper,num_dependents_deps.dev:0 github.com/nyxlang/string-utils,num_dependents_deps.dev:0 github.com/nyxnyx/gps_obd2_tracker, github.com/nyxnyx/onstar, +github.com/nyxssmith/IPYNB_to_MD, +github.com/nyxssmith/PresentTenseArgs, +github.com/nyxssmith/TODO_and_CommentedCode_Check, +github.com/nyxssmith/spellcheck-github-actions, github.com/nyxtom/anchor,num_dependents_deps.dev:0 github.com/nyxtom/database,num_dependents_deps.dev:0 github.com/nyxtom/dataminer,num_dependents_deps.dev:0 @@ -882225,6 +898032,7 @@ github.com/nzbin/photoviewer,num_dependents_deps.dev:0 github.com/nzbin/snack,num_dependents_deps.dev:0 github.com/nzbin/snack-helper,num_dependents_deps.dev:0 github.com/nzbin/three-dots,num_dependents_deps.dev:10 +github.com/nzbr/vlang-action, github.com/nzbullet/homebridge-homeqtt-alarm,num_dependents_deps.dev:0 github.com/nzdenek/phaser-pack-loader,num_dependents_deps.dev:0 github.com/nzfarmer1/mqtt-proxy,num_dependents_deps.dev:0 @@ -882306,6 +898114,7 @@ github.com/o-alquimista/feed-control,num_dependents_deps.dev:0 github.com/o-alquimista/nav-panel,num_dependents_deps.dev:0 github.com/o-bender/go-patterns,num_dependents_deps.dev:0 github.com/o-big/oconfig,num_dependents_deps.dev:0 +github.com/o-development/clone-to-solid-pod, github.com/o-development/json-ld-shex-mapper,num_dependents_deps.dev:0 github.com/o-development/o-dataset-pack,num_dependents_deps.dev:0 github.com/o-gi-s/wheelthrottle.js,num_dependents_deps.dev:0 @@ -882393,6 +898202,7 @@ github.com/o0y0o/type,num_dependents_deps.dev:0 github.com/o0y0o/use-reducer-x,num_dependents_deps.dev:0 github.com/o0y0o/web-scraper,num_dependents_deps.dev:2 github.com/o1-labs/snarky,criticality_score:0.326710 +github.com/o1-labs/wait-for-mina-network-action, github.com/o1111001/design-practice-2,num_dependents_deps.dev:0 github.com/o15y/staart-native,num_dependents_deps.dev:0 github.com/o15y/staart.css,num_dependents_deps.dev:0 @@ -882545,6 +898355,7 @@ github.com/oL-web/repetitive.js,num_dependents_deps.dev:0 github.com/oLiViAdOdArT/lodown,num_dependents_deps.dev:0 github.com/oNaiPs/gulp-metascript,num_dependents_deps.dev:0 github.com/oNaiPs/npm-install-changed,num_dependents_deps.dev:0 +github.com/oNaiPs/secrets-to-env-action, github.com/oOBoomberOo/Centrosome,num_dependents_deps.dev:0 github.com/oOBoomberOo/ribosome,num_dependents_deps.dev:0 github.com/oOBoomberOo/ribozyme,num_dependents_deps.dev:0 @@ -882616,6 +898427,7 @@ github.com/oak-database/oak-barrel,num_dependents_deps.dev:0 github.com/oak-database/oak-lite,num_dependents_deps.dev:0 github.com/oak-database/oak-meta,num_dependents_deps.dev:0 github.com/oak93/simple-normalizer,num_dependents_deps.dev:0 +github.com/oak9io/oak9.githubaction, github.com/oakalvo/create-react-app, github.com/oakanderson/academia,num_dependents_deps.dev:0 github.com/oakbani/f3Github, @@ -882681,6 +898493,7 @@ github.com/oakfusion/valter-project,num_dependents_deps.dev:0 github.com/oaki/functional-css,num_dependents_deps.dev:0 github.com/oaki/functional-css-converter,num_dependents_deps.dev:0 github.com/oakify/ngx-ackee-wrapper, +github.com/oaklees/docker-gitops-tag-action, github.com/oakmac/chessboardjs,"Google,num_dependents_deps.dev:0" github.com/oakmac/kidif.js,num_dependents_deps.dev:0 github.com/oakmac/parinfer,num_dependents_deps.dev:0 @@ -882760,6 +898573,7 @@ github.com/oandreazza/react-loading-shimmering,num_dependents_deps.dev:0 github.com/oandrew/osprey,num_dependents_deps.dev:0 github.com/oangeor/qrpc, github.com/oanguenot/webrtc-stats,num_dependents_deps.dev:0 +github.com/oanguin/auto-doc-github-action, github.com/oanhltko/sample,num_dependents_deps.dev:0 github.com/oanylund/left-expand-pattern-parser,num_dependents_deps.dev:0 github.com/oanylund/tagdoc-ui-components,num_dependents_deps.dev:0 @@ -882778,6 +898592,14 @@ github.com/oap-project/raydp, github.com/oap-project/recdp, github.com/oap-project/remote-shuffle, github.com/oap-project/velox, +github.com/oapi-codegen/chi-middleware, +github.com/oapi-codegen/echo-middleware, +github.com/oapi-codegen/fiber-middleware, +github.com/oapi-codegen/gin-middleware, +github.com/oapi-codegen/iris-middleware, +github.com/oapi-codegen/nethttp-middleware, +github.com/oapi-codegen/runtime, +github.com/oapi-codegen/testutil, github.com/oaqa/baseqa,num_dependents_deps.dev:0 github.com/oaqa/cse-framework,num_dependents_deps.dev:2 github.com/oaqa/helloqa,num_dependents_deps.dev:0 @@ -883079,6 +898901,7 @@ github.com/obartra/ssim, github.com/obartra/webp-jxr-middleware,num_dependents_deps.dev:0 github.com/obartra/webpjs,num_dependents_deps.dev:0 github.com/obase/java,num_dependents_deps.dev:14 +github.com/obasekietinosa/tweet-for-code-review-action, github.com/obastemur/ecma-parser,num_dependents_deps.dev:0 github.com/obastemur/mediaserver,num_dependents_deps.dev:2 github.com/obatfr/sweetalert2,num_dependents_deps.dev:0 @@ -883198,6 +899021,7 @@ github.com/oberzs/duku,num_dependents_deps.dev:0 github.com/obestwalter/i3configger, github.com/obestwalter/loslassa, github.com/obestwalter/tox-direct, +github.com/obetomuniz/ai-security-check-for-pull-requests-action, github.com/obetomuniz/slush-element,num_dependents_deps.dev:0 github.com/obetomuniz/tatooine,num_dependents_deps.dev:0 github.com/obeza/bis, @@ -883205,10 +899029,13 @@ github.com/obeza/colibri,num_dependents_deps.dev:0 github.com/obeza/cordova-plugin-crop-with-ratio,num_dependents_deps.dev:0 github.com/obf1313/image-list-resize,num_dependents_deps.dev:0 github.com/obff-development/obff-python, +github.com/obfu5c8/action-svu, github.com/obfu5c8/yarn-all-workspaces,num_dependents_deps.dev:0 github.com/obfuscar/obfuscar,criticality_score:0.367400 github.com/obfuscatedgenerated/CusTERM, +github.com/obfuscatedgenerated/no-repeat-json-action, github.com/obfuscatedgenerated/numpretty, +github.com/obfuscatedgenerated/setup-ducible, github.com/obfusk/active-dump,num_dependents_deps.dev:0 github.com/obfusk/apksigcopier, github.com/obfusk/apksigtool, @@ -883218,6 +899045,7 @@ github.com/obfusk/eft,num_dependents_deps.dev:0 github.com/obfusk/eftcmdr,num_dependents_deps.dev:0 github.com/obfusk/ghbak, github.com/obfusk/gitbak,num_dependents_deps.dev:0 +github.com/obfusk/gradle-update-action, github.com/obfusk/jiten, github.com/obfusk/kanjidraw, github.com/obfusk/m, @@ -883246,6 +899074,7 @@ github.com/obi-jan-kenobi/dackel,num_dependents_deps.dev:0 github.com/obi-jan-kenobi/property-check,num_dependents_deps.dev:0 github.com/obi-jan-kenobi/runicode,num_dependents_deps.dev:0 github.com/obi-ml-public/ehr_deidentification, +github.com/obi1kenobi/cargo-semver-checks-action, github.com/obi1kenobi/typing-copilot, github.com/obi4wan-b-v/ngx-graph,num_dependents_deps.dev:0 github.com/obiSerra/jsonresume-theme-paper-monofont,num_dependents_deps.dev:0 @@ -883459,6 +899288,8 @@ github.com/oblador/react-native-shimmer,num_dependents_deps.dev:0 github.com/oblador/react-native-store-review,num_dependents_deps.dev:0 github.com/oblador/react-native-vector-icons,"criticality_score:0.533320,num_dependents_deps.dev:1460" github.com/oblakotilo/node-plants,num_dependents_deps.dev:0 +github.com/oblakstudio/action-pack-wp-plugin, +github.com/oblakstudio/action-test-ddev-addon, github.com/oblakstudio/wpwebpack,num_dependents_deps.dev:0 github.com/oblalex/Wine-deamonizer, github.com/oblalex/candv, @@ -883550,6 +899381,8 @@ github.com/obradovic/google-domains, github.com/obradovic/gossip_girl, github.com/obraia/async-storage,num_dependents_deps.dev:0 github.com/obrassard/Bootshadow,num_dependents_deps.dev:0 +github.com/obrassard/action-dokku-push, +github.com/obrassard/action-sharepoint-publish, github.com/obrassard/functions-delegate,num_dependents_deps.dev:0 github.com/obrassard/generator-ts,num_dependents_deps.dev:0 github.com/obrassard/generator-tsproject,num_dependents_deps.dev:0 @@ -883621,6 +899454,7 @@ github.com/observatorycontrolsystem/ocs_archive, github.com/observeinc/glog,num_dependents_deps.dev:0 github.com/observeinc/gosnowflake,num_dependents_deps.dev:0 github.com/observeinc/ogl,num_dependents_deps.dev:0 +github.com/observer-actions/create-sbom, github.com/observermedia/django-wordpress-rest, github.com/observerss/aioutils, github.com/observerss/bsc, @@ -883631,6 +899465,8 @@ github.com/observerss/sinal2, github.com/observerss/tsc, github.com/observerss/whichip, github.com/observerss/yamo, +github.com/observian/littleci-littlecd-eks, +github.com/observian/observian--serverless-deploy, github.com/observing/argh,num_dependents_deps.dev:952 github.com/observing/creditcard,num_dependents_deps.dev:0 github.com/observing/devnull,num_dependents_deps.dev:11 @@ -883755,6 +899591,8 @@ github.com/obvibase/utils,num_dependents_deps.dev:0 github.com/obvious-ly-sh/api-ecoledirecte,num_dependents_deps.dev:0 github.com/obvious-ly-sh/reddit-s-api,num_dependents_deps.dev:0 github.com/obvious/node-bloomd, +github.com/obvious/token-weaver, +github.com/obvioussean/tasks-action, github.com/obviyus/spurdify, github.com/obvu/npm-file-storage,num_dependents_deps.dev:0 github.com/obvu/npm-vue-helpers,num_dependents_deps.dev:0 @@ -883811,6 +899649,7 @@ github.com/ocaml/ocaml-re,num_dependents_deps.dev:0 github.com/ocaml/ocaml.org,criticality_score:0.611130 github.com/ocaml/opam,criticality_score:0.713140 github.com/ocaml/opam-repository,criticality_score:0.769490 +github.com/ocaml/setup-ocaml, github.com/ocaml/tuareg,criticality_score:0.336600 github.com/ocamllabs/ocaml-ctypes,criticality_score:0.421550 github.com/ocamlmycaml/rust-annoy,num_dependents_deps.dev:0 @@ -883825,6 +899664,7 @@ github.com/ocassio/go-socks5-proxy,num_dependents_deps.dev:0 github.com/ocassio/jquery.alphanum,num_dependents_deps.dev:0 github.com/ocassio/testcafe-reporter-custom,num_dependents_deps.dev:0 github.com/ocastastudios/create-react-app,num_dependents_deps.dev:0 +github.com/ocavue/changelog-parser-action, github.com/ocavue/django-doc-view, github.com/ocavue/jest-puppeteer-istanbul,num_dependents_deps.dev:0 github.com/ocavue/jsonschemax, @@ -883998,6 +899838,7 @@ github.com/ocgi/sdk-examples,num_dependents_deps.dev:0 github.com/ochafik/es6-lenses,num_dependents_deps.dev:0 github.com/ochafik/jstyper,num_dependents_deps.dev:0 github.com/ochafik/nativelibs4java,num_dependents_deps.dev:560 +github.com/ochanje210/simple-s3-upload-action, github.com/ocharlie106/DeepObjs,num_dependents_deps.dev:0 github.com/ochenkai/my-leaflet-ckkit,num_dependents_deps.dev:0 github.com/ocherfas/public-proxy,num_dependents_deps.dev:0 @@ -884118,6 +899959,7 @@ github.com/oclif/test,num_dependents_deps.dev:650 github.com/oclif/tslint,num_dependents_deps.dev:0 github.com/oclint/oclint,criticality_score:0.471780 github.com/oclk/vue-codeditor,num_dependents_deps.dev:0 +github.com/oclyke-actions/run-mbed-jobs, github.com/oclyke-dev/blue-heron, github.com/oclyke-forks/xterm.js-mobile,num_dependents_deps.dev:0 github.com/ocmdev/rita,num_dependents_deps.dev:0 @@ -884880,6 +900722,9 @@ github.com/octod/postcss-brexit,num_dependents_deps.dev:0 github.com/octod/tiinvo,num_dependents_deps.dev:1 github.com/octodb/better-sqlite3,num_dependents_deps.dev:0 github.com/octodb/react-native-octodb,num_dependents_deps.dev:0 +github.com/octodemo-resources/github-commit-status, +github.com/octodemo/first-interaction-vulnerable, +github.com/octodemo/pr-gatekeeper, github.com/octodns/octodns,criticality_score:0.519310 github.com/octodns/octodns-azure, github.com/octodns/octodns-cloudflare, @@ -884957,6 +900802,7 @@ github.com/octokit/endpoint.js,num_dependents_deps.dev:9126 github.com/octokit/fixtures, github.com/octokit/fixtures-server,num_dependents_deps.dev:0 github.com/octokit/go-octokit,criticality_score:0.378290 +github.com/octokit/graphql-action, github.com/octokit/graphql-schema,num_dependents_deps.dev:0 github.com/octokit/graphql.js,"criticality_score:0.501200,num_dependents_deps.dev:5648" github.com/octokit/node-github,num_dependents_deps.dev:294 @@ -884981,6 +900827,7 @@ github.com/octokit/plugin-rest-endpoint-methods.js,num_dependents_deps.dev:9412 github.com/octokit/plugin-retry.js,num_dependents_deps.dev:688 github.com/octokit/plugin-scim.js,num_dependents_deps.dev:0 github.com/octokit/plugin-throttling.js,num_dependents_deps.dev:674 +github.com/octokit/request-action, github.com/octokit/request-error.js,num_dependents_deps.dev:12948 github.com/octokit/request.js,num_dependents_deps.dev:9002 github.com/octokit/rest.js,"criticality_score:0.695490,num_dependents_deps.dev:8162" @@ -885090,16 +900937,24 @@ github.com/octu0/chanque,num_dependents_deps.dev:0 github.com/octu0/concache,num_dependents_deps.dev:0 github.com/octu0/nats-relay,num_dependents_deps.dev:0 github.com/octu0/nats-wsmsg,num_dependents_deps.dev:0 +github.com/octue/check-semantic-version, +github.com/octue/create-push-subscription, github.com/octue/django-gcp, github.com/octue/django-twined, +github.com/octue/generate-pull-request-description, +github.com/octue/get-deployment-info, github.com/octue/octue-sdk-python, github.com/octue/twined, github.com/octylFractal/elivi-code-compressor,num_dependents_deps.dev:0 github.com/octylFractal/simple-maven-cache,num_dependents_deps.dev:0 github.com/ocudigital/permutate-array,num_dependents_deps.dev:0 +github.com/ocular-d/action-remark, +github.com/ocular-d/json-linter, github.com/ocular-d/markdown-oas,num_dependents_deps.dev:0 +github.com/ocular-d/md-linkcheck-action, github.com/ocular-d/ocld-writing,num_dependents_deps.dev:0 github.com/ocular-d/remark-preset-lint-ocular-d,num_dependents_deps.dev:0 +github.com/ocular-d/trailing-spaces, github.com/ocular-d/vale-bin,num_dependents_deps.dev:0 github.com/ocular-d/vuepress-plugin-anchor-toc,num_dependents_deps.dev:0 github.com/oculow/oculow-java-sdk,num_dependents_deps.dev:0 @@ -885151,6 +901006,9 @@ github.com/odalle/simple_shell_parser, github.com/odama626/dawei,num_dependents_deps.dev:0 github.com/odamilola36/golang_api,num_dependents_deps.dev:0 github.com/odanado/aws-kms-provider,num_dependents_deps.dev:0 +github.com/odanado/coverage-history-action, +github.com/odanado/deploy-to-netlify-action, +github.com/odanado/geth-action, github.com/odanado/pysfmt, github.com/odanado/solhint-config-prettier,num_dependents_deps.dev:0 github.com/odanado/vue-reactive-error-handler,num_dependents_deps.dev:0 @@ -885205,6 +901063,7 @@ github.com/oddbird/susy,"criticality_score:0.351020,num_dependents_deps.dev:16" github.com/oddbird/true,criticality_score:0.403830 github.com/oddbit-project/rick, github.com/oddbit-project/rick_db, +github.com/oddbit/firebase-bolt-action, github.com/oddbit/nexudus-js,num_dependents_deps.dev:0 github.com/oddbit/sonosjs,num_dependents_deps.dev:0 github.com/oddbit/tanam,num_dependents_deps.dev:0 @@ -885214,6 +901073,7 @@ github.com/oddcamp/js-utils,num_dependents_deps.dev:0 github.com/oddcamp/mrml-rails,num_dependents_deps.dev:0 github.com/oddcamp/sass-utils,num_dependents_deps.dev:0 github.com/oddcc/django-export-csv, +github.com/oddcc/issue-list-readme, github.com/oddcoder/rair,num_dependents_deps.dev:1 github.com/odddollar/language-benchmarks,num_dependents_deps.dev:0 github.com/odddollar/leafscript,num_dependents_deps.dev:0 @@ -885399,6 +901259,7 @@ github.com/odino/node-freshen-up,num_dependents_deps.dev:0 github.com/odino/odino.router,num_dependents_deps.dev:0 github.com/odino/the-conductor,num_dependents_deps.dev:0 github.com/odinodin/defangrefang, +github.com/odinr/action-npm-semver, github.com/odinr/bloc,num_dependents_deps.dev:0 github.com/odinr/codin,num_dependents_deps.dev:0 github.com/odinr/rollup,num_dependents_deps.dev:0 @@ -885443,6 +901304,7 @@ github.com/odlp/antifreeze,num_dependents_deps.dev:0 github.com/odlp/oops_a_rake,num_dependents_deps.dev:0 github.com/odlp/skippable,num_dependents_deps.dev:0 github.com/odmendoza/temperature_conversion, +github.com/odmincheg/backup-pgdb-to-do-action, github.com/odmishien/fucalc-ts,num_dependents_deps.dev:0 github.com/odmishien/gomah,num_dependents_deps.dev:0 github.com/odmishien/jongten, @@ -885685,6 +901547,9 @@ github.com/oeg-upm/PPool, github.com/oeg-upm/atmos-ld, github.com/oeg-upm/easysparql, github.com/oeg-upm/fuzzy-c-means, +github.com/oeg-upm/github-action-morph-kgc, +github.com/oeg-upm/github-action-pretty-yarrrml2rml, +github.com/oeg-upm/github-action-sparql, github.com/oeg-upm/morph-kgc, github.com/oeg-upm/pcake, github.com/oeg-upm/pretty-yarrrml2rml, @@ -885797,8 +901662,10 @@ github.com/oev-berlin/cdk-compliant-dynamodb, github.com/oeway/codex-chat-notebook, github.com/oeway/distributedAI, github.com/oeway/lutorpy, +github.com/oeway/npm-publish-action, github.com/oeway/pyotritonclient, github.com/oexplatform/oexchain,num_dependents_deps.dev:0 +github.com/oeyoews/action-learn, github.com/oezgurmakkurt/blasoxide,num_dependents_deps.dev:0 github.com/oezgurmakkurt/blasoxide-ref,num_dependents_deps.dev:0 github.com/oezgurmakkurt/blood,num_dependents_deps.dev:0 @@ -886097,6 +901964,7 @@ github.com/oflisback/markov-clustering,num_dependents_deps.dev:0 github.com/oflisback/react-favicon, github.com/oflisback/tone-detector,num_dependents_deps.dev:0 github.com/oflynned/Mongoize-ORM,num_dependents_deps.dev:0 +github.com/oflynned/android-version-bump, github.com/ofmiclee/wechat-platform,num_dependents_deps.dev:0 github.com/ofmlabs/aurora.js,num_dependents_deps.dev:0 github.com/ofmooseandmen/halo,num_dependents_deps.dev:0 @@ -886314,6 +902182,8 @@ github.com/ogoossens/fio-bank-payment-request,num_dependents_deps.dev:0 github.com/ogoossens/fio-bank-transaction-history, github.com/ogorun/de,num_dependents_deps.dev:0 github.com/ogorun/sunspot_activerecord,num_dependents_deps.dev:0 +github.com/ogotalski/check-run-action, +github.com/ogotalski/test-coverage-report, github.com/ogra/jsonfeed-generator,num_dependents_deps.dev:0 github.com/ogra1/fabrica,num_dependents_deps.dev:0 github.com/ogrady/InfoMarkJS,num_dependents_deps.dev:0 @@ -886671,12 +902541,14 @@ github.com/ohmygodvt95/framgia-rails-init,num_dependents_deps.dev:0 github.com/ohmyjersh/flazzle,num_dependents_deps.dev:0 github.com/ohmyjersh/redux-drive,num_dependents_deps.dev:0 github.com/ohmyjesus/go-golang,num_dependents_deps.dev:0 +github.com/ohmykreee/wolf-bites-tweets, github.com/ohmysmtp/ohmysmtp.js,num_dependents_deps.dev:0 github.com/ohmyvector/spotter-vector,num_dependents_deps.dev:0 github.com/ohmyzsh/ohmyzsh,criticality_score:0.711980 github.com/ohnaka0410/minimal-collapse,num_dependents_deps.dev:0 github.com/ohnaka0410/minimal-modal,num_dependents_deps.dev:0 github.com/ohnena/React_Hooks,num_dependents_deps.dev:0 +github.com/ohnogumi/auto-reviewers, github.com/ohnth/raith-common-rs,num_dependents_deps.dev:0 github.com/ohnx/basic-auth-connect,num_dependents_deps.dev:0 github.com/ohnx/homebridge-gpio-toggle,num_dependents_deps.dev:0 @@ -886734,6 +902606,10 @@ github.com/ohtsu/o2-chart-lib,num_dependents_deps.dev:0 github.com/ohtsu/o2-payment-stripe,num_dependents_deps.dev:0 github.com/ohtsu/o2-upload-to-fbs,num_dependents_deps.dev:0 github.com/ohuelab/QEPPI, +github.com/ohueter/aws-ecs-task-definition-set-container-name, +github.com/ohueter/aws-ecs-task-definition-set-container-property, +github.com/ohueter/aws-ecs-task-definition-set-environment, +github.com/ohueter/normalize-git-branch-name, github.com/ohwhen/react-native-ARCore,num_dependents_deps.dev:0 github.com/ohwhen/redux-ga-middleware,num_dependents_deps.dev:0 github.com/ohwhen/redux-pusher,num_dependents_deps.dev:0 @@ -886844,6 +902720,7 @@ github.com/oikumo/Naive-3D,num_dependents_deps.dev:0 github.com/oikumo/naive-tests,num_dependents_deps.dev:0 github.com/oil-lang/oil-rs,num_dependents_deps.dev:0 github.com/oilandsugar/tangea-logo,num_dependents_deps.dev:0 +github.com/oilbeater/smart-review, github.com/oilegor1029/gulp-text-to-typescript,num_dependents_deps.dev:0 github.com/oillamp/easy_npm,num_dependents_deps.dev:0 github.com/oilshell/oil,criticality_score:0.504500 @@ -886868,6 +902745,7 @@ github.com/oinopion/hurl, github.com/oinopion/sef, github.com/ointt/less-plugin-modular-scale,num_dependents_deps.dev:0 github.com/oinume/algo,num_dependents_deps.dev:0 +github.com/oinume/create-scheduled-milestone-action, github.com/oinume/failure,num_dependents_deps.dev:0 github.com/oinume/go-oauth2-client-sample,num_dependents_deps.dev:0 github.com/oinume/lekcije,num_dependents_deps.dev:0 @@ -887060,6 +902938,7 @@ github.com/ojkelly/go,num_dependents_deps.dev:0 github.com/ojkelly/wahn, github.com/ojkelly/wedgetail,num_dependents_deps.dev:0 github.com/ojn/hexo-start,num_dependents_deps.dev:0 +github.com/ojoanalogo/issuetron-3000, github.com/ojoklro/forum,num_dependents_deps.dev:0 github.com/ojongerius/engine-api,num_dependents_deps.dev:0 github.com/ojongerius/serverless-plugin-notification,num_dependents_deps.dev:0 @@ -887090,6 +902969,7 @@ github.com/ok-john/ast-example,num_dependents_deps.dev:0 github.com/ok-john/libvb,num_dependents_deps.dev:0 github.com/ok-john/recurse,num_dependents_deps.dev:0 github.com/ok-nick/LayoutUtil, +github.com/ok-nick/setup-aftman, github.com/ok0x/ethereum-chaindata-flashreader,num_dependents_deps.dev:0 github.com/ok111net/ok111net,num_dependents_deps.dev:0 github.com/ok111net/ruying, @@ -887147,6 +903027,8 @@ github.com/okaoka0709/snow-calendar,num_dependents_deps.dev:0 github.com/okaponta/go-practice,num_dependents_deps.dev:0 github.com/okapusta/go-todo-list,num_dependents_deps.dev:0 github.com/okaq/waka,num_dependents_deps.dev:0 +github.com/okar1/yc-cli-install, +github.com/okar1/yc-helm, github.com/okaris/NodeExceptionBot,num_dependents_deps.dev:0 github.com/okarmusk/scheta,num_dependents_deps.dev:0 github.com/okarmusk/svetovid,num_dependents_deps.dev:0 @@ -887157,6 +903039,7 @@ github.com/okasag/fitkit, github.com/okason97/DenseNet-Tensorflow2, github.com/okatechnology/eslint-config,num_dependents_deps.dev:0 github.com/okatechnology/stylelint-config,num_dependents_deps.dev:0 +github.com/okatsn/get-changelog, github.com/okatti-et14/goa,num_dependents_deps.dev:0 github.com/okaufmann/laravel-elixir-tslint,num_dependents_deps.dev:0 github.com/okaufmann/laravel-elixir-typescript,num_dependents_deps.dev:0 @@ -887209,6 +903092,7 @@ github.com/okcoker/inline-svg-template,num_dependents_deps.dev:0 github.com/okcoker/taggle.js,"criticality_score:0.323180,num_dependents_deps.dev:0" github.com/okcompute/es-ctags,num_dependents_deps.dev:0 github.com/okcompute/p4clean, +github.com/okcredit/changelog-creator-action, github.com/okcupid/mysql,num_dependents_deps.dev:0 github.com/okcupid/node-geom2d,num_dependents_deps.dev:0 github.com/okcwest/ok_hbase,num_dependents_deps.dev:0 @@ -887230,6 +903114,7 @@ github.com/oke-aditya/py_fresh, github.com/oke-aditya/pytorch_cnn_trainer, github.com/oke-aditya/pytorch_fasterrcnn, github.com/oke-py/kubectl-wait-sts-plugin,num_dependents_deps.dev:0 +github.com/oke-py/npm-audit-action, github.com/oke11o/walletsuro,num_dependents_deps.dev:0 github.com/okedo/chords-web-component,num_dependents_deps.dev:0 github.com/okeefem3/go-projects,num_dependents_deps.dev:0 @@ -887397,6 +903282,7 @@ github.com/okk0/webserver,num_dependents_deps.dev:0 github.com/okkam-it/jaob,num_dependents_deps.dev:0 github.com/okkam-it/okkam-awesome-utils,num_dependents_deps.dev:0 github.com/okke-formsma/vimeo-wrapper, +github.com/okkema/github-action-r2, github.com/okkema/worker,num_dependents_deps.dev:0 github.com/okken/cards, github.com/okken/flick, @@ -887561,6 +903447,7 @@ github.com/okotoki/cssed,num_dependents_deps.dev:0 github.com/okotoki/figma-messenger,num_dependents_deps.dev:0 github.com/okotoki/figma-mixpanel,num_dependents_deps.dev:0 github.com/okotoki/mixpanel-figma, +github.com/okp4/follow-contributor-action, github.com/okps123/baekjoon-cli,num_dependents_deps.dev:0 github.com/okpub/dekopon,num_dependents_deps.dev:0 github.com/okpy/jupyter-assignment, @@ -887661,18 +903548,32 @@ github.com/oktaysenkan/env2kube,num_dependents_deps.dev:0 github.com/oktaysenkan/node-initializer,num_dependents_deps.dev:0 github.com/oktaysenkan/triggerest,num_dependents_deps.dev:0 github.com/oktaysenkan/use-countries,num_dependents_deps.dev:0 +github.com/okteto/apply, +github.com/okteto/build, github.com/okteto/buildkit,num_dependents_deps.dev:0 github.com/okteto/catalog,num_dependents_deps.dev:0 +github.com/okteto/context, +github.com/okteto/create-namespace, +github.com/okteto/delete-namespace, github.com/okteto/deploy-preview,num_dependents_deps.dev:0 +github.com/okteto/deploy-stack, +github.com/okteto/destroy-pipeline, +github.com/okteto/destroy-preview, +github.com/okteto/destroy-stack, github.com/okteto/divert,num_dependents_deps.dev:0 github.com/okteto/go-getting-started,num_dependents_deps.dev:0 +github.com/okteto/login, +github.com/okteto/namespace, github.com/okteto/okteto,"criticality_score:0.536790,num_dependents_deps.dev:0" +github.com/okteto/pipeline, +github.com/okteto/push, github.com/okteto/react-oauth2-login,num_dependents_deps.dev:0 github.com/okteto/remote,num_dependents_deps.dev:0 github.com/okteto/supervisor,num_dependents_deps.dev:0 github.com/oktopriima/avenger,num_dependents_deps.dev:0 github.com/oktopusdgtl/bulma-components,num_dependents_deps.dev:0 github.com/oktopuz/jira-bulk-loader, +github.com/oktupol/rsync-onion, github.com/okturtles/pydnschain, github.com/oktykrk/ngx-dynamic-host,num_dependents_deps.dev:0 github.com/oktykrk/ngx-image-crop,num_dependents_deps.dev:0 @@ -887753,6 +903654,7 @@ github.com/okuryu/package-json-flatten,num_dependents_deps.dev:0 github.com/okurz/amqpclient, github.com/okushchenko/memkv,num_dependents_deps.dev:0 github.com/okutane/xls2csv-maven-plugin,num_dependents_deps.dev:0 +github.com/okuzawats/chatwork-messaging-action, github.com/okuznetsov/django-mongo-cache, github.com/okv/climbzilla-web,num_dependents_deps.dev:0 github.com/okv/conform.js,num_dependents_deps.dev:0 @@ -887820,6 +903722,8 @@ github.com/olaadapo/wellpvt, github.com/olaar09/HTMLInpuTtypes,num_dependents_deps.dev:0 github.com/olaar09/cssmodulejoin,num_dependents_deps.dev:0 github.com/olaar09/mapdtotoentity,num_dependents_deps.dev:0 +github.com/olabiniV2/Matrix-Message, +github.com/olabiniV2/repo-notifications-action, github.com/olabiranj/node-id, github.com/olabs-org/aagent-cli,num_dependents_deps.dev:0 github.com/olabs-org/aagent.js,num_dependents_deps.dev:0 @@ -887865,6 +903769,8 @@ github.com/olafurpg/monadic-html,num_dependents_deps.dev:0 github.com/olafurpg/sbt-big,num_dependents_deps.dev:0 github.com/olafurpg/sbt-docusaurus,num_dependents_deps.dev:0 github.com/olafurpg/scalafmt,num_dependents_deps.dev:156 +github.com/olafurpg/setup-gpg, +github.com/olafurpg/setup-scala, github.com/olafurpg/tiny-router,num_dependents_deps.dev:0 github.com/olafurpg/vork,num_dependents_deps.dev:1 github.com/olafurr/perf-orm,num_dependents_deps.dev:0 @@ -887947,6 +903853,7 @@ github.com/olamiko/bzip,num_dependents_deps.dev:0 github.com/olamilekan000/gcs-file-upload,num_dependents_deps.dev:0 github.com/olamothe/spritesmith,num_dependents_deps.dev:0 github.com/olamyy/arxivcli, +github.com/olance/isort-action, github.com/olancheg/ccpa-string-builder-js,num_dependents_deps.dev:0 github.com/olange/arcade, github.com/olange/data-scalars,num_dependents_deps.dev:0 @@ -888052,6 +903959,7 @@ github.com/olchern/frontend-project-lvl1,num_dependents_deps.dev:0 github.com/olchyk98/walker,num_dependents_deps.dev:0 github.com/olckara/init-actions,num_dependents_deps.dev:0 github.com/old-green-frog/trasher,num_dependents_deps.dev:0 +github.com/old-mibmo/uncrustify-check, github.com/old-pinky/AioPaperScroll-SDK, github.com/old-pinky/RichDaddy_SDK, github.com/old-traditional-healer/leetcode,num_dependents_deps.dev:0 @@ -888212,6 +904120,7 @@ github.com/oleg-cherednik/IconManager,num_dependents_deps.dev:0 github.com/oleg-cherednik/jackson-utils,num_dependents_deps.dev:0 github.com/oleg-cherednik/reflection-utils,num_dependents_deps.dev:0 github.com/oleg-cherednik/zip4jvm,num_dependents_deps.dev:0 +github.com/oleg-chibikov/pr-update-action, github.com/oleg-golovanov/planedict, github.com/oleg-golovanov/pyshtrih, github.com/oleg-golovanov/unilog, @@ -888332,6 +904241,7 @@ github.com/olegrumiancev/generator-spreactformfields,num_dependents_deps.dev:0 github.com/olegrumiancev/sp-react-formfields,num_dependents_deps.dev:0 github.com/olegruzhytskyi/flat-jsonapi-normalizr,num_dependents_deps.dev:0 github.com/olegruzhytskyi/next-routes,num_dependents_deps.dev:0 +github.com/olegs-repo/codeartifact-sts-login-action, github.com/olegshilov/gauge-element,num_dependents_deps.dev:0 github.com/olegsinyavskiy/sparse_rrt, github.com/olegskl/adana-format-text,num_dependents_deps.dev:0 @@ -888347,9 +904257,11 @@ github.com/olegsobchuk/taxviewer,num_dependents_deps.dev:0 github.com/olegstepura/typed-css-modules-loader,num_dependents_deps.dev:4 github.com/olegstotsky/static-server,num_dependents_deps.dev:0 github.com/olegsu/iris,num_dependents_deps.dev:0 +github.com/olegsu/semver-action, github.com/olegtaranenko/insistent-js,num_dependents_deps.dev:0 github.com/olegtaranenko/liquibase-js,num_dependents_deps.dev:0 github.com/olegtaranenko/sencha-touch-node, +github.com/olegtarasov/get-tag, github.com/olegtempl/bad-email-generator,num_dependents_deps.dev:0 github.com/olegtempl/cz-emoji,num_dependents_deps.dev:0 github.com/olegvanyagreatband/kpi-lab-1,num_dependents_deps.dev:0 @@ -888420,6 +904332,7 @@ github.com/oleics/node-yawatch,num_dependents_deps.dev:4 github.com/oleics/tinyforever,num_dependents_deps.dev:0 github.com/oleiman/sweet-contracts,num_dependents_deps.dev:2 github.com/olejandro/timeslib, +github.com/olejnjak/carthage-workaround, github.com/olekenneth/chains-amqp,num_dependents_deps.dev:0 github.com/olekenneth/chains-lirc,num_dependents_deps.dev:0 github.com/olekenneth/node-idevice-browser,num_dependents_deps.dev:0 @@ -888431,9 +904344,11 @@ github.com/olekhov/cd_server,num_dependents_deps.dev:0 github.com/olekoli/tinytoc,num_dependents_deps.dev:0 github.com/oleksandr-shevchenko/cordova-plugin-push-baidu,num_dependents_deps.dev:0 github.com/oleksandr-voronkov/ngx-currency,num_dependents_deps.dev:0 +github.com/oleksandr-zhyhalo/daily-build, github.com/oleksandrkrupnyk/go_practic,num_dependents_deps.dev:0 github.com/oleksii-git/gocourse,num_dependents_deps.dev:0 github.com/oleksii-git/write-docker-actions,num_dependents_deps.dev:0 +github.com/oleksiikutuzov/flipperzero-ufbt-action, github.com/oleksiitaran/write-docker-actions,num_dependents_deps.dev:0 github.com/oleksiitkachuk-sq/sq_alert_close, github.com/oleksiivelychko/computer-science,num_dependents_deps.dev:0 @@ -888441,6 +904356,8 @@ github.com/oleksiivelychko/gojwt,num_dependents_deps.dev:0 github.com/oleksiivelychko/gopkg,num_dependents_deps.dev:0 github.com/oleksis/myrich, github.com/oleksis/picta-dl, +github.com/oleksis/pyinstaller-manylinux, +github.com/oleksis/setup-mpdev, github.com/oleksis/todus, github.com/oleksis/youtube-dl-gui, github.com/oleksivio/telegram-bot-api,num_dependents_deps.dev:0 @@ -888466,6 +904383,7 @@ github.com/olemak/thwombly,num_dependents_deps.dev:0 github.com/olemartinruud/lightdm-webkit2-typescript,num_dependents_deps.dev:0 github.com/olemb/mido,Google github.com/olemola/vantage, +github.com/olemorud/gcc-problem-matcher, github.com/olemp/gulp-spcolor-stylus,num_dependents_deps.dev:0 github.com/olemp/jsom-ctx,num_dependents_deps.dev:10 github.com/olemp/msgraph-helper,num_dependents_deps.dev:0 @@ -888551,6 +904469,7 @@ github.com/oli-obk/rust-si,num_dependents_deps.dev:9 github.com/oli-ver/datatables-ssp-java,num_dependents_deps.dev:0 github.com/oli107/material-range-bar,num_dependents_deps.dev:0 github.com/oli415/ep_timestamp,num_dependents_deps.dev:0 +github.com/oli4jansen/knoma-create-indices-github-action, github.com/oliamb/logrx,num_dependents_deps.dev:0 github.com/olib963/avrocheck,num_dependents_deps.dev:0 github.com/olib963/javatest,num_dependents_deps.dev:27 @@ -888700,6 +904619,7 @@ github.com/olivelink/ctq, github.com/olivemz/news_app,num_dependents_deps.dev:0 github.com/oliver-anhuth/avl,num_dependents_deps.dev:0 github.com/oliver-bauer/gulp-gcloud-publish,num_dependents_deps.dev:0 +github.com/oliver-butterley/mark-pdf-action, github.com/oliver-giersch/closure,num_dependents_deps.dev:2 github.com/oliver-giersch/conquer-once,num_dependents_deps.dev:2 github.com/oliver-giersch/conquer-rs,num_dependents_deps.dev:0 @@ -888876,6 +904796,7 @@ github.com/oliverlukesch/shb-virtual-list,num_dependents_deps.dev:0 github.com/oliverlundquist/npm-package-school-101,num_dependents_deps.dev:0 github.com/oliverlundquist/redux-json-api,num_dependents_deps.dev:0 github.com/oliverm2112/sql-format-utils,num_dependents_deps.dev:0 +github.com/olivermarkrichman/aws-cloudformation-github-deploy, github.com/olivermathe/csfpr,num_dependents_deps.dev:0 github.com/olivermicke/env-validate,num_dependents_deps.dev:0 github.com/olivermking/simple-go-api,num_dependents_deps.dev:0 @@ -888886,6 +904807,7 @@ github.com/oliverne/easy-ecdsa,num_dependents_deps.dev:0 github.com/olivernn/davis.js,"Google,num_dependents_deps.dev:0" github.com/olivernn/json_tree,num_dependents_deps.dev:0 github.com/olivernn/lunr.js,"criticality_score:0.474630,num_dependents_deps.dev:2406" +github.com/olivernybroe/action-conflict-finder, github.com/oliveroneill/exponent-server-sdk-golang,num_dependents_deps.dev:0 github.com/oliverox/create-react-app,num_dependents_deps.dev:0 github.com/oliverox/react-cal,num_dependents_deps.dev:0 @@ -889049,6 +904971,8 @@ github.com/oliviermirat/ZebraZoom, github.com/oliviernt/bitandbang,num_dependents_deps.dev:0 github.com/oliviernt/promise-request,num_dependents_deps.dev:0 github.com/oliviernt/sv-number-generator,num_dependents_deps.dev:0 +github.com/olivierodo/Awesome-CV-action, +github.com/olivierodo/star-thankyou-action, github.com/olivierodo/winston-mqtt,num_dependents_deps.dev:0 github.com/olivierpascal/flexible-pwa-webpack-plugin,num_dependents_deps.dev:0 github.com/olivierpascal/flexible-webapp-webpack-plugin,num_dependents_deps.dev:0 @@ -889109,12 +905033,15 @@ github.com/oliwerhelsen/DigitalOcean-API-v2,num_dependents_deps.dev:0 github.com/oliwerhelsen/billogramapi,num_dependents_deps.dev:0 github.com/oliwerin/gulp-aemsync,num_dependents_deps.dev:0 github.com/oliwheeler/ardiffact, +github.com/olix0r/cargo-action-fmt, +github.com/olix0r/rustsecbot, github.com/olix0r/vtwt, github.com/olixao/dicioinformal, github.com/olixem/dotfiles,num_dependents_deps.dev:0 github.com/oliyg/juejinxiaoce,num_dependents_deps.dev:0 github.com/oliyg/viuer,num_dependents_deps.dev:0 github.com/oliyh/re-graph,criticality_score:0.394190 +github.com/olizilla/add-to-estuary, github.com/olizilla/all-relative,num_dependents_deps.dev:0 github.com/olizilla/asciify,num_dependents_deps.dev:140 github.com/olizilla/earthquake-emitter,num_dependents_deps.dev:0 @@ -889251,6 +905178,7 @@ github.com/olmero/rollbar-spring-boot-starter,num_dependents_deps.dev:0 github.com/olmero/spring-boot-starter-rollbar,num_dependents_deps.dev:0 github.com/olmesm/better-cypress-axe,num_dependents_deps.dev:0 github.com/olmesm/husky-talisman,num_dependents_deps.dev:0 +github.com/olmesm/infrastructure-diagram-action, github.com/olmokramer/backbone.jquery,num_dependents_deps.dev:0 github.com/olmokramer/scrollbar-width.js,num_dependents_deps.dev:140 github.com/olmokramer/slideshow.js,num_dependents_deps.dev:0 @@ -889512,6 +905440,7 @@ github.com/olympichek/ckeditor5-build-mich,num_dependents_deps.dev:0 github.com/olympicsoftware/eslint-config-olympic,num_dependents_deps.dev:0 github.com/olympicsoftware/oly-dialog,num_dependents_deps.dev:0 github.com/olympicsoftware/scrollbar-size,num_dependents_deps.dev:20 +github.com/olympix/integrated-security, github.com/olympos-labs/cjson,num_dependents_deps.dev:0 github.com/olympus-protocol/bip32-bls,num_dependents_deps.dev:0 github.com/olympus-protocol/bls-hd-key,num_dependents_deps.dev:0 @@ -889595,11 +905524,13 @@ github.com/omaflak/Filter-Library,num_dependents_deps.dev:0 github.com/omaflak/FingerprintDialog,num_dependents_deps.dev:0 github.com/omaflak/Pull-To-Refresh-Listview,num_dependents_deps.dev:0 github.com/omaflak/WebClient,num_dependents_deps.dev:0 +github.com/omagdy7/count_files, github.com/omahacodeschool/silicon-prairie-events,num_dependents_deps.dev:0 github.com/omahajs/applied,num_dependents_deps.dev:0 github.com/omahajs/eslint-config-omaha-prime-grade,num_dependents_deps.dev:0 github.com/omahajs/generator-omaha,num_dependents_deps.dev:0 github.com/omahaprogrammer/phc-format,num_dependents_deps.dev:0 +github.com/omahn/wireguard-ssh-github-action, github.com/omahoco/bitbucket-helper, github.com/omahoco/twilio-sendsms, github.com/omahoito/ep_gh_markdown,num_dependents_deps.dev:0 @@ -889611,6 +905542,7 @@ github.com/omair445/migration-difference-generator,num_dependents_deps.dev:0 github.com/omair445/request-limiter-node-js,num_dependents_deps.dev:0 github.com/omairapalacios/LIM011-fe-md-links,num_dependents_deps.dev:0 github.com/omairqazi/launchpadinfo, +github.com/omairvaiyani/ghact-uilicious, github.com/omakase-bar/SushiSwapJs,num_dependents_deps.dev:0 github.com/omakase-js/omakase,num_dependents_deps.dev:0 github.com/omakasecorp/gulp-jsxcs,num_dependents_deps.dev:0 @@ -889668,8 +905600,11 @@ github.com/omardoma/multer-drive,num_dependents_deps.dev:0 github.com/omarefg/gotutorial,num_dependents_deps.dev:0 github.com/omarefg/miru,num_dependents_deps.dev:0 github.com/omarefg/react-file-preview,num_dependents_deps.dev:0 +github.com/omarelghati/upload-s3-action, github.com/omarelsakka/itworx-cli,num_dependents_deps.dev:0 github.com/omarelsheekh/gin-example,num_dependents_deps.dev:0 +github.com/omaresmael/merge-base-branch, +github.com/omaresmael/update-pull-requests, github.com/omarestrella/ember-emoji,num_dependents_deps.dev:0 github.com/omarestrella/ember-xregexp, github.com/omarestrella/keystroke.js,num_dependents_deps.dev:0 @@ -889865,6 +905800,7 @@ github.com/omega-vr-ar/unity-tools,num_dependents_deps.dev:0 github.com/omega07/cwra,num_dependents_deps.dev:0 github.com/omega8cc/boa,criticality_score:0.502890 github.com/omegaatt36/line-verify-id-token,num_dependents_deps.dev:0 +github.com/omegaatt36/wakatime-sync, github.com/omegacen/coverage-fixpaths, github.com/omegacen/pylint-sonarjson, github.com/omegacen/python-compare-ast, @@ -889914,10 +905850,12 @@ github.com/omegion/db-backup,num_dependents_deps.dev:0 github.com/omegion/go-db-backup,num_dependents_deps.dev:0 github.com/omegion/go-ddclient,num_dependents_deps.dev:0 github.com/omegion/go-password,num_dependents_deps.dev:0 +github.com/omegion/helm-charts-docs, github.com/omegion/horul-editor,num_dependents_deps.dev:0 github.com/omegion/ssh-manager,num_dependents_deps.dev:0 github.com/omegion/vault-ssh,num_dependents_deps.dev:0 github.com/omegion/vault-unseal,num_dependents_deps.dev:0 +github.com/omegion/vault-unseal-action, github.com/omegion/vue-blog-placeholders,num_dependents_deps.dev:0 github.com/omeid/ace,num_dependents_deps.dev:0 github.com/omeid/fsnotify,num_dependents_deps.dev:0 @@ -889956,6 +905894,7 @@ github.com/omerbenamram/mft,num_dependents_deps.dev:0 github.com/omerbenamram/pyo3-file,num_dependents_deps.dev:0 github.com/omerbresinski/react-dirty-form,num_dependents_deps.dev:0 github.com/omerbyrk/gousbdrivedetector,num_dependents_deps.dev:0 +github.com/omercnet/assume-aws-role-from-gcp-action, github.com/omerdemirkan/axess,num_dependents_deps.dev:0 github.com/omerdn1/otter-api,num_dependents_deps.dev:0 github.com/omerdn1/worker-threads-crawler,num_dependents_deps.dev:0 @@ -890110,6 +906049,7 @@ github.com/ominestre/rummerf,num_dependents_deps.dev:0 github.com/ominestre/zugzug,num_dependents_deps.dev:0 github.com/ominibyte/richflow,num_dependents_deps.dev:0 github.com/ominiom/puremotion,num_dependents_deps.dev:0 +github.com/omio-labs/pr-reviewer-bot, github.com/omiologic/capsule9,num_dependents_deps.dev:0 github.com/omiologic/ng-capsule9,num_dependents_deps.dev:16 github.com/omiomi/omi-session,num_dependents_deps.dev:0 @@ -890135,6 +906075,7 @@ github.com/omit2c/Discord_Bot_IHK, github.com/omitakahiro/Hawkes, github.com/omitroom13/zia, github.com/omittones/refangular,num_dependents_deps.dev:0 +github.com/omitu-gd/k6-ci-action, github.com/omjokine/frominto_fi,num_dependents_deps.dev:0 github.com/omkar-salunke/yield_locus, github.com/omkar-tech/node-lib,num_dependents_deps.dev:0 @@ -890146,6 +906087,7 @@ github.com/omkarap55/three-Legacy-JSON-Loader,num_dependents_deps.dev:0 github.com/omkardusane/ssh_keygen,num_dependents_deps.dev:0 github.com/omkarendra/segmentation, github.com/omkarkhair/sp-jello,num_dependents_deps.dev:0 +github.com/omkarkhatavkar/wait-for-status-checks, github.com/omkarkirpan/abort-controller-x,num_dependents_deps.dev:0 github.com/omkarkirpan/tiny, github.com/omkarlanghe/go-rest-api-with-mongodb,num_dependents_deps.dev:0 @@ -890158,6 +906100,7 @@ github.com/omkarsingh1008/multi_label_loss_pypi, github.com/omkarsingh1008/preceptron_pypi, github.com/omkarsm/s3-copier,num_dependents_deps.dev:0 github.com/omkarswami/grunt-psi-html-report,num_dependents_deps.dev:0 +github.com/omkartapale/react-deployment-gh-pages, github.com/omkarudawant/CutoML, github.com/omkelderman/osu-node-api,num_dependents_deps.dev:0 github.com/omkumar01/csv_upload, @@ -890261,6 +906204,7 @@ github.com/omnidan/redux-ignore,num_dependents_deps.dev:42 github.com/omnidan/redux-recycle,num_dependents_deps.dev:2 github.com/omnidan/redux-undo,"criticality_score:0.364230,num_dependents_deps.dev:464" github.com/omnidoc/omnidoc, +github.com/omniedgeio/github-action, github.com/omnifaces/Exousia,num_dependents_deps.dev:40 github.com/omnifaces/arquillian-primefaces,num_dependents_deps.dev:0 github.com/omnifaces/eleos,num_dependents_deps.dev:20 @@ -890302,6 +906246,7 @@ github.com/omnious-dev/omnious-linter,num_dependents_deps.dev:0 github.com/omnious-dev/omnious-web-utils,num_dependents_deps.dev:0 github.com/omnious-dev/omniouskit,num_dependents_deps.dev:0 github.com/omnious/omnious-linter, +github.com/omniplatypus/reviewer-lottery, github.com/omniproc/o11n-deploy-maven-plugin,num_dependents_deps.dev:0 github.com/omniprojects/card-react,num_dependents_deps.dev:0 github.com/omniqlo/shogiboardjs,num_dependents_deps.dev:0 @@ -890400,6 +906345,7 @@ github.com/ompmega/react-uikit,num_dependents_deps.dev:0 github.com/omprakash1989/LilUrl, github.com/omprakash1989/pilote, github.com/ompugao/magicshelf,num_dependents_deps.dev:0 +github.com/ompugao/platex-action, github.com/ompugao/tot,num_dependents_deps.dev:0 github.com/ompurwar/rainbow_chalk,num_dependents_deps.dev:0 github.com/omretterry/ckeditor5-build-decoupled-document,num_dependents_deps.dev:0 @@ -890521,6 +906467,7 @@ github.com/omu/joker,num_dependents_deps.dev:0 github.com/omulet/react-native-radial-menu,num_dependents_deps.dev:0 github.com/omuni-ai/arv-reactcomponents,num_dependents_deps.dev:0 github.com/omurillol/learning-git,num_dependents_deps.dev:0 +github.com/omurilo/action-back4app, github.com/omuse-geoscience/omuse, github.com/omussell/go-by-example,num_dependents_deps.dev:0 github.com/omustardo/demos,num_dependents_deps.dev:0 @@ -890530,6 +906477,7 @@ github.com/omycli/npm,num_dependents_deps.dev:0 github.com/omycli/omycli,num_dependents_deps.dev:0 github.com/omyllymaki/tiny-dag, github.com/omysoul/omysoul,num_dependents_deps.dev:2 +github.com/omyto/collaborators-manager-action, github.com/omz/AppSales-Mobile,criticality_score:0.312010 github.com/omza/azurestoragewrap, github.com/omzlo/go-sscp,num_dependents_deps.dev:1 @@ -890555,6 +906503,8 @@ github.com/on3iro/vally,num_dependents_deps.dev:0 github.com/on4kjm/morserino_display,num_dependents_deps.dev:0 github.com/on7heroad/util,num_dependents_deps.dev:0 github.com/onBass-naga/schema2json-java,num_dependents_deps.dev:0 +github.com/onXmaps/jirafy-changelog, +github.com/onXmaps/jirafy-sync, github.com/onaci/Leaflet.glify.layer, github.com/onaci/cirrid,num_dependents_deps.dev:0 github.com/onaci/folium-glify-layer, @@ -890572,6 +906522,7 @@ github.com/onaio/gisida,num_dependents_deps.dev:0 github.com/onaio/gisida-react,num_dependents_deps.dev:0 github.com/onaio/js-tools,num_dependents_deps.dev:205 github.com/onaio/kujaku,num_dependents_deps.dev:0 +github.com/onaio/molecule-action, github.com/onaio/rapidpro-js,num_dependents_deps.dev:2 github.com/onaio/sre-tooling,num_dependents_deps.dev:0 github.com/onajebaxley/grunt-deploy-lambda,num_dependents_deps.dev:0 @@ -890626,6 +906577,7 @@ github.com/onca-vega/veza,num_dependents_deps.dev:0 github.com/oncase/pentaho-connections-deploy,num_dependents_deps.dev:0 github.com/oncase/pygoat, github.com/oncase/pyscora-wrangler, +github.com/oncase/scora-cleaner-gcr, github.com/once-ler/cassandra-udt-codec-helper-scala,num_dependents_deps.dev:0 github.com/once-ler/hl7-cassandra-adapter-scala,num_dependents_deps.dev:0 github.com/once-ler/react-nested-json-table,num_dependents_deps.dev:0 @@ -890642,6 +906594,7 @@ github.com/onchain-id/claim-generators,num_dependents_deps.dev:0 github.com/onchain-id/solidity,num_dependents_deps.dev:0 github.com/onchipuis/A-Connect, github.com/oncilla/grpc-experiments,num_dependents_deps.dev:0 +github.com/oncilla/pr-bouncer, github.com/onclave/NSGA-II,num_dependents_deps.dev:0 github.com/oncleben31/pypool-pump, github.com/oncleben31/vigilancemeteo, @@ -890810,6 +906763,7 @@ github.com/ondrs/node-sauto-api,num_dependents_deps.dev:0 github.com/ondrs/stringer.js,num_dependents_deps.dev:0 github.com/ondrui/project,num_dependents_deps.dev:0 github.com/ondryaso/pi-rc522,criticality_score:0.302230 +github.com/one-aalam/github-action-ssg-publish-drafts, github.com/one-acre-fund/axios-observable,num_dependents_deps.dev:0 github.com/one-acre-fund/gdrive-utils-js,num_dependents_deps.dev:0 github.com/one-acre-fund/generic-modal,num_dependents_deps.dev:0 @@ -890959,6 +906913,7 @@ github.com/oneapi-src/visual-process-discovery, github.com/oneapi-src/visual-quality-inspection, github.com/oneapi-src/voice-data-generation, github.com/oneassure-tech/onepipepy, +github.com/onebalaban/DependabotHelper, github.com/onebay/vite-plugin-imp,num_dependents_deps.dev:0 github.com/onebit0fme/django-loadjson, github.com/onebittech/echo-http-cache,num_dependents_deps.dev:0 @@ -891203,6 +907158,7 @@ github.com/oneislandearth/module-packer,num_dependents_deps.dev:0 github.com/oneislandearth/tessellation,num_dependents_deps.dev:0 github.com/oneislandearth/validator,num_dependents_deps.dev:0 github.com/oneislandearth/worker-module,num_dependents_deps.dev:0 +github.com/onejar99/gitbook-build-publish-action, github.com/onejgordon/react-life-timeline,num_dependents_deps.dev:0 github.com/onejstoolkit/gulp-onejs-compiler, github.com/onejstoolkit/onejs-compiler, @@ -891214,6 +907170,7 @@ github.com/onekeyhq/onekey-bridge,num_dependents_deps.dev:0 github.com/oneki/onekijs,num_dependents_deps.dev:0 github.com/onekiloparsec/AA.js,num_dependents_deps.dev:0 github.com/onekiloparsec/django-multipleselectionfield, +github.com/onekiloparsec/heroku-node-deploy-subfolder, github.com/onekiloparsec/vue-xeditable,num_dependents_deps.dev:0 github.com/onekit-cn/onekit_android,num_dependents_deps.dev:0 github.com/onekit-js/alipay2html,num_dependents_deps.dev:0 @@ -891503,6 +907460,8 @@ github.com/oney/graphql-mutate,num_dependents_deps.dev:0 github.com/oney/react-native-gcm-android,num_dependents_deps.dev:0 github.com/oney/react-native-webrtc,num_dependents_deps.dev:0 github.com/oney/sequelize-proxy,num_dependents_deps.dev:0 +github.com/oneyedev/aws-cloudfront-invalidation, +github.com/oneyedev/aws-fetch-env-file, github.com/onezerocompany/coding,num_dependents_deps.dev:0 github.com/onezerocompany/eslint-config-typescript,num_dependents_deps.dev:0 github.com/onezerocompany/prettier-config,num_dependents_deps.dev:0 @@ -891611,8 +907570,14 @@ github.com/onicagroup/cargoplane,num_dependents_deps.dev:0 github.com/onicagroup/onica-iotloader, github.com/onicagroup/runway,num_dependents_deps.dev:0 github.com/onicagroup/sailplane,num_dependents_deps.dev:0 +github.com/onichandame/docker-registry-sync-action, github.com/onichandame/math,num_dependents_deps.dev:0 +github.com/onichandame/nats-action, +github.com/onichandame/nats-client-action, github.com/onichandame/node-retry,num_dependents_deps.dev:0 +github.com/onichandame/node-test-action, +github.com/onichandame/pip-upload-action, +github.com/onichandame/python-test-action, github.com/onichandame/react-typeorm,num_dependents_deps.dev:0 github.com/onichandame/retry,num_dependents_deps.dev:0 github.com/onichandame/type-graphql-tag,num_dependents_deps.dev:0 @@ -891651,6 +907616,8 @@ github.com/onilpereyra/rd-startups,num_dependents_deps.dev:0 github.com/onilpereyra/zipcoderd,num_dependents_deps.dev:0 github.com/onimisionipe/distance-calculator,num_dependents_deps.dev:0 github.com/onimur/handle-path-oz,num_dependents_deps.dev:0 +github.com/onin-engineering/lokalise-download-action, +github.com/onin-engineering/lokalise-upload-action, github.com/onion2k/react-neon,num_dependents_deps.dev:0 github.com/onion4/SmartRunLibs,num_dependents_deps.dev:0 github.com/onion8513/verifier,num_dependents_deps.dev:0 @@ -891729,6 +907696,7 @@ github.com/onkbear/admin-lte-2-sass,num_dependents_deps.dev:0 github.com/onkbear/aws-iam-to-smtp,num_dependents_deps.dev:0 github.com/onkbear/gulp-append-query-string,num_dependents_deps.dev:0 github.com/onkelhoy/muiform,num_dependents_deps.dev:0 +github.com/onkube/action, github.com/onlabsorg/olo,num_dependents_deps.dev:0 github.com/onlabsorg/olodb,num_dependents_deps.dev:0 github.com/onlabsorg/olojs,num_dependents_deps.dev:0 @@ -891746,6 +907714,9 @@ github.com/onlicar/serverless-package-common,num_dependents_deps.dev:0 github.com/onlinbirdman/dollar-request,num_dependents_deps.dev:0 github.com/onlinbirdman/webpack-spritesmith,num_dependents_deps.dev:0 github.com/online-adventures/oh-my-rpg,num_dependents_deps.dev:0 +github.com/online-applications/grafana-action, +github.com/online-applications/slack-action, +github.com/online-applications/version-action, github.com/online-go/goban, github.com/online-go/gtp2ogs,num_dependents_deps.dev:0 github.com/online-go/online-go.com,criticality_score:0.435490 @@ -891865,12 +907836,15 @@ github.com/onlysomsubhra/trueafricansms,num_dependents_deps.dev:0 github.com/onlysuncolour/ymint,num_dependents_deps.dev:0 github.com/onlythor/bot_tools, github.com/onlyurei/knockout-spa,num_dependents_deps.dev:0 +github.com/onlyutkarsh/patch-files-action, github.com/onlywei/babel-plugin-import-bang-text,num_dependents_deps.dev:0 github.com/onlywei/babel-plugin-transform-import-bangtext-node, github.com/onlywei/force-number,num_dependents_deps.dev:0 github.com/onlywei/logwatcher,num_dependents_deps.dev:0 github.com/onmap/L10n-Gen,num_dependents_deps.dev:0 github.com/onmax/go-alastria,num_dependents_deps.dev:0 +github.com/onmax/issue-form-parser, +github.com/onmax/oai-createcompletion-githubaction, github.com/onmax/openapi-graph,num_dependents_deps.dev:0 github.com/onmax/openapi-graph-cli,num_dependents_deps.dev:0 github.com/onmax/openapi-graph-core, @@ -892027,6 +908001,7 @@ github.com/onpublico/android-sdk,num_dependents_deps.dev:0 github.com/onql/onql,num_dependents_deps.dev:0 github.com/onqtam/awesome-cmake,criticality_score:0.350710 github.com/onqtam/doctest,criticality_score:0.538280 +github.com/onramper/action-deploy-aws-static-site, github.com/onramper/adapters,num_dependents_deps.dev:0 github.com/onramper/small-open-datasets,num_dependents_deps.dev:0 github.com/onramper/widget,num_dependents_deps.dev:0 @@ -892052,6 +908027,7 @@ github.com/onroerenderfgoed/crabpy, github.com/onroerenderfgoed/housenum-be-r-parser, github.com/onrooby/outback,num_dependents_deps.dev:0 github.com/onrooby/seed_migrations,num_dependents_deps.dev:0 +github.com/onrunning/jira-pr-action, github.com/onrunning/on-ruby-linter,num_dependents_deps.dev:0 github.com/onsa/generator-ang-boot-sass,num_dependents_deps.dev:0 github.com/onsa/generator-boot-sass,num_dependents_deps.dev:0 @@ -892387,6 +908363,7 @@ github.com/onyxhat/checkup,num_dependents_deps.dev:0 github.com/onyxhat/dreamhost-dyndns,num_dependents_deps.dev:0 github.com/onyxhat/gor,num_dependents_deps.dev:0 github.com/onyxhat/pogo,num_dependents_deps.dev:0 +github.com/onyxmueller/build-tag-number, github.com/onyxprime/onyxprime-npx-card, github.com/onyxrev/currentsee,num_dependents_deps.dev:0 github.com/onyxware/kopiccino, @@ -892409,6 +908386,7 @@ github.com/ooade/react-mdl-css,num_dependents_deps.dev:0 github.com/ooade/react-rough,num_dependents_deps.dev:0 github.com/ooade/yooda,num_dependents_deps.dev:0 github.com/ooatamelbug/fcm-sender,num_dependents_deps.dev:0 +github.com/oobattousai/github-remove-artifact, github.com/oobohp/goback,num_dependents_deps.dev:0 github.com/ooby/oms-scraper,num_dependents_deps.dev:0 github.com/ooby/prand,num_dependents_deps.dev:0 @@ -892469,8 +908447,10 @@ github.com/oohlaf/python-whirlpool, github.com/oohlalog/oohlalog_log4j,num_dependents_deps.dev:0 github.com/oohlalog/oohlalog_winston,num_dependents_deps.dev:0 github.com/oohmygaud/palindrome,num_dependents_deps.dev:0 +github.com/oohnoitz/action-phpcs-wordpress, github.com/oohnoitz/node-gifsicle-stream,num_dependents_deps.dev:0 github.com/oohnoitz/node-mkvtools,num_dependents_deps.dev:0 +github.com/oohnoitz/pg-cli-action, github.com/oohyun15/scrapper-go,num_dependents_deps.dev:0 github.com/ooi1/starwars-names,num_dependents_deps.dev:0 github.com/ooibc88/fabricsharp,num_dependents_deps.dev:0 @@ -892486,9 +908466,13 @@ github.com/oojr/babel-plugin-import-css-to-radium,num_dependents_deps.dev:0 github.com/oojr/react-native-battery,num_dependents_deps.dev:0 github.com/oojr/remove-css-dots,num_dependents_deps.dev:0 github.com/ookami-kb/django-simple-helpdesk, +github.com/ookami-kb/gh-pr-project, +github.com/ookami-kb/gh-pr-size-watcher, github.com/ookami-kb/imbox, github.com/ookamicodes/anti-swear-words-packages,num_dependents_deps.dev:0 github.com/ookicent/dual-shock4-controller,num_dependents_deps.dev:0 +github.com/ookii-dialogs/ookii-dialogs-winforms, +github.com/ookii-dialogs/ookii-dialogs-wpf, github.com/ooknight/console-utils,num_dependents_deps.dev:0 github.com/ooknight/deploy-test,num_dependents_deps.dev:0 github.com/ooknight/universe-bom,num_dependents_deps.dev:0 @@ -892500,6 +908484,7 @@ github.com/ooktay/create-react-app,num_dependents_deps.dev:0 github.com/ookull/reflexec, github.com/ooleksolo/react-native-base-template,num_dependents_deps.dev:0 github.com/oolipo/react-native-yyimage,num_dependents_deps.dev:0 +github.com/ooliver1/triagecat, github.com/oolong-kt/oolong,num_dependents_deps.dev:0 github.com/oom-components/carousel, github.com/oom-components/page-loader,num_dependents_deps.dev:0 @@ -892527,6 +908512,7 @@ github.com/oonis/JFolderSync,num_dependents_deps.dev:0 github.com/oonne/gulp-asset-version,num_dependents_deps.dev:0 github.com/oonqt/go-tutorial,num_dependents_deps.dev:0 github.com/oonray/thanospush,num_dependents_deps.dev:0 +github.com/ooobii/exec-knime-hub-service, github.com/ooojerryooo/fabric-support-selfbuild-scc,num_dependents_deps.dev:0 github.com/ooojustin/mixer.py, github.com/ooola/go-ps,num_dependents_deps.dev:0 @@ -892679,6 +908665,7 @@ github.com/op8d/op8d_lexemizer,num_dependents_deps.dev:0 github.com/opa-oz/commit-msg,num_dependents_deps.dev:0 github.com/opa-oz/emoji-hash,num_dependents_deps.dev:0 github.com/opa-oz/format-hours,num_dependents_deps.dev:0 +github.com/opa-oz/plumber-action, github.com/opacam/Cohen3, github.com/opacam/client-for-tvdb, github.com/opacity/opacity-streamable,num_dependents_deps.dev:0 @@ -892753,6 +908740,11 @@ github.com/opbi/toolchain,num_dependents_deps.dev:0 github.com/opcm/pcm,criticality_score:0.546640 github.com/opcooc/opcooc-storage,num_dependents_deps.dev:4 github.com/opcooc/opcooc-storage-spring-boot-starter,num_dependents_deps.dev:0 +github.com/opcr-io/policy-build-action, +github.com/opcr-io/policy-login-action, +github.com/opcr-io/policy-logout-action, +github.com/opcr-io/policy-pull-action, +github.com/opcr-io/policy-push-action, github.com/opctim/grunt-better-css-clean, github.com/opctl/engine,num_dependents_deps.dev:0 github.com/opctl/opctl,num_dependents_deps.dev:0 @@ -893197,6 +909189,7 @@ github.com/open-policy-agent/opa-docker-authz,num_dependents_deps.dev:0 github.com/open-policy-agent/opa-envoy-plugin,num_dependents_deps.dev:0 github.com/open-policy-agent/opa-istio-plugin,num_dependents_deps.dev:0 github.com/open-policy-agent/opa-kube-scheduler,num_dependents_deps.dev:0 +github.com/open-policy-agent/setup-opa, github.com/open-power-workgroup/Hospital,criticality_score:0.315500 github.com/open-project-templates/nodejs-module-typescript,num_dependents_deps.dev:0 github.com/open-quantum-safe/liboqs,criticality_score:0.526610 @@ -893236,6 +909229,7 @@ github.com/open-rpc/schema-utils-js,num_dependents_deps.dev:32 github.com/open-rpc/server-js,num_dependents_deps.dev:4 github.com/open-rpc/typings,num_dependents_deps.dev:4 github.com/open-sauced/open-sauced,criticality_score:0.467500 +github.com/open-sauced/release, github.com/open-sauced/semantic-release-conventional-config,num_dependents_deps.dev:0 github.com/open-sauces/eslint-config-open-sauces,num_dependents_deps.dev:0 github.com/open-sauces/super-simple-flex-grid,num_dependents_deps.dev:2 @@ -893271,6 +909265,7 @@ github.com/open-source-miami/component-library,num_dependents_deps.dev:0 github.com/open-source-parsers/jsoncpp,criticality_score:0.603820 github.com/open-source-problem-solving/spotify-without-sirens,num_dependents_deps.dev:0 github.com/open-source-python/multiline, +github.com/open-source-srilanka/eks-helm-client-github-action, github.com/open-source-uc/Sincding,num_dependents_deps.dev:0 github.com/open-source-uc/login-uc,num_dependents_deps.dev:0 github.com/open-source-uc/validate-uc-number-js,num_dependents_deps.dev:0 @@ -893531,6 +909526,7 @@ github.com/openai/universe, github.com/openaircgn/openairmqttsimulator,num_dependents_deps.dev:0 github.com/openaire/openaire-funders-jaxb-model,num_dependents_deps.dev:0 github.com/openaire/vipe, +github.com/openalea/action-build-publish-anaconda, github.com/openalpr/openalpr,criticality_score:0.457970 github.com/openambitproject/openambit,criticality_score:0.395550 github.com/openameba/ameba-color-palette.css,num_dependents_deps.dev:0 @@ -893551,6 +909547,8 @@ github.com/openannotation/xpath-range, github.com/openanthem/nimbus-sass-module, github.com/openapi-contrib/json-schema-to-openapi-schema,num_dependents_deps.dev:0 github.com/openapi-contrib/openapi-schema-to-json-schema,num_dependents_deps.dev:216 +github.com/openapi-generators/openapi-python-client-action, +github.com/openapi-generators/openapitools-generator-action, github.com/openapi-it/OpenApi-NodeJS,num_dependents_deps.dev:0 github.com/openapi-js/core,num_dependents_deps.dev:0 github.com/openapi-js/json-schema-to-openapi-schema, @@ -893809,6 +909807,7 @@ github.com/openclimatedata/globalwarmingpotentials,num_dependents_deps.dev:0 github.com/openclimatedata/openscm, github.com/openclimatedata/pyhector, github.com/openclimatefix/graph_weather, +github.com/openclimatefix/merge-all-contributors, github.com/openclimatefix/metnet, github.com/openclimatefix/nowcasting_datamodel, github.com/openclimatefix/nowcasting_forecast, @@ -893909,6 +909908,7 @@ github.com/opencontainers/runtime-tools,"criticality_score:0.499590,num_dependen github.com/opencontainers/selinux,num_dependents_deps.dev:1714 github.com/opencontainers/specs,num_dependents_deps.dev:5 github.com/opencontainers/umoci,"criticality_score:0.451300,num_dependents_deps.dev:6" +github.com/opencontextinc/create-artifact-yaml, github.com/opencontrol/compliance-masonry,criticality_score:0.390660 github.com/opencooperativeecosystem/collaborate,num_dependents_deps.dev:0 github.com/opencooperativeecosystem/validate,num_dependents_deps.dev:0 @@ -894122,6 +910122,7 @@ github.com/opendns/hubot-zmachine,num_dependents_deps.dev:0 github.com/opendns/pyinvestigate, github.com/opendnssec/SoftHSMv2,criticality_score:0.542900 github.com/opendocsg/pdf2md, +github.com/opendocument-app/npmabot, github.com/opendocx/number-to-words,num_dependents_deps.dev:1 github.com/opendocx/opendocx,num_dependents_deps.dev:0 github.com/opendocx/opendocx-node,num_dependents_deps.dev:0 @@ -894192,6 +910193,40 @@ github.com/openedbox/react-native-picker,num_dependents_deps.dev:0 github.com/openedbox/react-native-wechat,num_dependents_deps.dev:0 github.com/openedoo/openedoo-script, github.com/openeducat/openeducat_erp,criticality_score:0.434700 +github.com/openedx-actions/tutor-enable-plugin-license-manager, +github.com/openedx-actions/tutor-k8s-configure-autoscaling-policy, +github.com/openedx-actions/tutor-k8s-configure-edx-admin, +github.com/openedx-actions/tutor-k8s-configure-edx-secret, +github.com/openedx-actions/tutor-k8s-configure-edx-set-theme, +github.com/openedx-actions/tutor-k8s-configure-jwt, +github.com/openedx-actions/tutor-k8s-configure-mongodb, +github.com/openedx-actions/tutor-k8s-configure-mysql, +github.com/openedx-actions/tutor-k8s-configure-redis, +github.com/openedx-actions/tutor-k8s-configure-ses, +github.com/openedx-actions/tutor-k8s-configure-smtp, +github.com/openedx-actions/tutor-k8s-deploy-tools, +github.com/openedx-actions/tutor-k8s-get-secret, +github.com/openedx-actions/tutor-k8s-init, +github.com/openedx-actions/tutor-plugin-build-backup, +github.com/openedx-actions/tutor-plugin-build-credentials, +github.com/openedx-actions/tutor-plugin-build-license-manager, +github.com/openedx-actions/tutor-plugin-build-mfe, +github.com/openedx-actions/tutor-plugin-build-openedx, +github.com/openedx-actions/tutor-plugin-build-openedx-add-requirement, +github.com/openedx-actions/tutor-plugin-build-openedx-add-theme, +github.com/openedx-actions/tutor-plugin-configure-courseware-mfe, +github.com/openedx-actions/tutor-plugin-enable-backup, +github.com/openedx-actions/tutor-plugin-enable-credentials, +github.com/openedx-actions/tutor-plugin-enable-discovery, +github.com/openedx-actions/tutor-plugin-enable-ecommerce, +github.com/openedx-actions/tutor-plugin-enable-forum, +github.com/openedx-actions/tutor-plugin-enable-k8s-deploy-tasks, +github.com/openedx-actions/tutor-plugin-enable-mfe, +github.com/openedx-actions/tutor-plugin-enable-notes, +github.com/openedx-actions/tutor-plugin-enable-s3, +github.com/openedx-actions/tutor-plugin-enable-xqueue, +github.com/openedx-actions/tutor-print-config, +github.com/openedx-actions/tutor-print-dump, github.com/openeemeter/eemeter, github.com/openeemeter/eeprivacy, github.com/openeemeter/eeweather, @@ -894410,6 +910445,7 @@ github.com/opengeospatial/teamengine,num_dependents_deps.dev:147 github.com/opengh/open-event,num_dependents_deps.dev:0 github.com/openghg/openghg, github.com/opengisch/QField,criticality_score:0.592870 +github.com/opengisch/clear-token, github.com/opengisch/fancyboxmd, github.com/opengisch/pgserviceparser, github.com/opengisch/pirogue, @@ -894418,6 +910454,7 @@ github.com/opengisch/pytransifex, github.com/opengisch/qdmtk, github.com/opengisch/qfieldcloud-sdk-python, github.com/opengisch/qgis-plugin-ci, +github.com/opengisch/qmlformat-lint-action, github.com/opengit/gitopenlib, github.com/openglobus/openglobus,num_dependents_deps.dev:0 github.com/opengm/opengm,criticality_score:0.318850 @@ -894433,6 +910470,7 @@ github.com/opengovsg/formsg-javascript-sdk,num_dependents_deps.dev:0 github.com/opengovsg/mockpass, github.com/opengovsg/mui-select-button,num_dependents_deps.dev:0 github.com/opengovsg/nodebb-plugin-whitelist-email-domains,num_dependents_deps.dev:0 +github.com/opengovsg/require-approvals-action, github.com/opengovsg/sgid-client,num_dependents_deps.dev:0 github.com/opengovsg/spcp-auth-client, github.com/opengraphica/opengraphica-text-editor,num_dependents_deps.dev:0 @@ -894492,6 +910530,7 @@ github.com/openhoat/wsem,num_dependents_deps.dev:0 github.com/openhood/rspec_sequel_matchers,num_dependents_deps.dev:0 github.com/openhood/sinatra_rake_tasks,num_dependents_deps.dev:0 github.com/openhost/openhost-jsdoc,num_dependents_deps.dev:0 +github.com/openhousepvt/slack, github.com/openhpc/ohpc,criticality_score:0.522200 github.com/openhpi/poseidon,num_dependents_deps.dev:0 github.com/openhsi/openhsi, @@ -894608,6 +910647,7 @@ github.com/openjfx/javafx-maven-plugin,num_dependents_deps.dev:0 github.com/openjny/hexo-katex-macros,num_dependents_deps.dev:0 github.com/openjournals/joss,criticality_score:0.573000 github.com/openjournals/joss-reviews,criticality_score:0.416270 +github.com/openjournals/openjournals-draft-action, github.com/openjs-foundation/cross-project-council,criticality_score:0.468290 github.com/openjson/openjson,num_dependents_deps.dev:2397 github.com/openjsse/openeddsa,num_dependents_deps.dev:0 @@ -894673,6 +910713,7 @@ github.com/openlawlibrary/taf, github.com/openlawnz/openlawnz-parsers,num_dependents_deps.dev:0 github.com/openlawteam/openlaw-client, github.com/openlawteam/openlaw-elements,num_dependents_deps.dev:0 +github.com/openlawteam/scalafmt-ci, github.com/openlawteam/snapshot-js-erc712,num_dependents_deps.dev:0 github.com/openlawteam/tribute-contracts,num_dependents_deps.dev:0 github.com/openlayers/babel-plugin-jsdoc-closure,num_dependents_deps.dev:0 @@ -895100,6 +911141,7 @@ github.com/openrm/krakend-bloomd,num_dependents_deps.dev:0 github.com/openrm/krakend-sentry,num_dependents_deps.dev:0 github.com/openrm/node-hato-sentry,num_dependents_deps.dev:0 github.com/openrndr/openrndr,"criticality_score:0.482040,num_dependents_deps.dev:787" +github.com/openrndr/setup-opengl, github.com/openrocket/openrocket,criticality_score:0.499380 github.com/openroomengine/tiny-redux-router,num_dependents_deps.dev:0 github.com/openroomengine/tiny-redux-sessions,num_dependents_deps.dev:0 @@ -895915,6 +911957,7 @@ github.com/opentmi/opentmi-jsclient,num_dependents_deps.dev:0 github.com/opentmi/pytest-opentmi, github.com/opentmi/robot-opentmi, github.com/opentmi/ykushjs,num_dependents_deps.dev:0 +github.com/opentofu/setup-opentofu, github.com/opentok/Opentok-Java-SDK,num_dependents_deps.dev:0 github.com/opentok/Opentok-Python-SDK, github.com/opentok/Opentok-Ruby-SDK,num_dependents_deps.dev:0 @@ -896106,6 +912149,7 @@ github.com/openvehicletracking/device-xtakip-impl,num_dependents_deps.dev:0 github.com/openvenues/libpostal,criticality_score:0.394050 github.com/openvenues/node-postal,num_dependents_deps.dev:4 github.com/openvenues/pypostal, +github.com/openvex/setup-vexctl, github.com/openvino/openvino-api,num_dependents_deps.dev:0 github.com/openvinotoolkit/anomalib, github.com/openvinotoolkit/cpu_extensions, @@ -896191,6 +912235,7 @@ github.com/openwebdigital/gulp-breadcrumb,num_dependents_deps.dev:0 github.com/openwebinars-django/pitble, github.com/openwebtech/passport-mastodon,num_dependents_deps.dev:0 github.com/openwebtech/passport-pocket2,num_dependents_deps.dev:0 +github.com/openwebuz/telegram-action, github.com/openwhalereef/sanic-amqp, github.com/openwhalereef/sanic-amqp-extension, github.com/openwhalereef/sanic-ext-base, @@ -896253,6 +912298,7 @@ github.com/openzeppelin/gsn-relayer,num_dependents_deps.dev:0 github.com/openzfs/zfs,criticality_score:0.735980 github.com/openzfsonosx/zfs,criticality_score:0.495470 github.com/openzfsonwindows/ZFSin,criticality_score:0.494740 +github.com/openzim/docker-publish-action, github.com/openzim/gutenberg, github.com/openzim/kolibri2zim, github.com/openzim/mwoffliner, @@ -896304,8 +912350,11 @@ github.com/openziti/fabric,num_dependents_deps.dev:0 github.com/openziti/foundation,num_dependents_deps.dev:0 github.com/openziti/sdk-golang,num_dependents_deps.dev:0 github.com/openziti/ziti,num_dependents_deps.dev:0 +github.com/openziti/ziti-mattermost-action-py, github.com/openziti/ziti-sdk-js,num_dependents_deps.dev:0 github.com/openziti/ziti-sdk-jvm,num_dependents_deps.dev:0 +github.com/openziti/ziti-webhook-action, +github.com/openziti/ziti-webhook-action-py, github.com/openzoom/deepzoom.py,Google github.com/openzoom/node-deepzoomtools,num_dependents_deps.dev:0 github.com/opeonikute/panda,num_dependents_deps.dev:0 @@ -896364,10 +912413,12 @@ github.com/operatorai/modelstore, github.com/operatorai/operator,num_dependents_deps.dev:0 github.com/operatorequals/covertutils, github.com/operatorequals/gatheros, +github.com/operatorequals/gitsign-action, github.com/operatorequals/httpimport, github.com/operatorjen/auto-tagify, github.com/operatr-io/kpow-streams-agent,num_dependents_deps.dev:0 github.com/opereto/pyopereto, +github.com/operous/test-ssh-action, github.com/operstagency/operst, github.com/operutka/borrow-owned,num_dependents_deps.dev:0 github.com/operutka/serde-lite,num_dependents_deps.dev:0 @@ -896397,6 +912448,11 @@ github.com/ophirbushi/roxanne,num_dependents_deps.dev:0 github.com/ophirh/publish-aws-lambda, github.com/ophite/redux-model-s, github.com/ophlr/reqe, +github.com/ophub/amlogic-s9xxx-armbian, +github.com/ophub/amlogic-s9xxx-openwrt, +github.com/ophub/delete-releases-workflows, +github.com/ophub/flippy-openwrt-actions, +github.com/ophub/rockchip-armbian, github.com/ophum/fastcgi-app-go-test,num_dependents_deps.dev:0 github.com/ophum/github-app-test,num_dependents_deps.dev:0 github.com/ophum/humbase,num_dependents_deps.dev:0 @@ -896449,6 +912505,7 @@ github.com/oplik0/cherrydoor, github.com/oplik0/nodebb-plugin-category-join-group,num_dependents_deps.dev:0 github.com/oplik0/nodebb-plugin-category-queue,num_dependents_deps.dev:0 github.com/oplik0/nodebb-plugin-two-way-block,num_dependents_deps.dev:0 +github.com/oplik0/openPGP-action, github.com/oplik0/passport-github-oauth2,num_dependents_deps.dev:0 github.com/oplinjie/rollup-plugin-add-git-msg,num_dependents_deps.dev:0 github.com/opllama-js/data-structs,num_dependents_deps.dev:0 @@ -896482,6 +912539,7 @@ github.com/opoloo/opoloo_assets,num_dependents_deps.dev:0 github.com/opoo/opoopress,num_dependents_deps.dev:20 github.com/opoopress/opoopress-theme-default,num_dependents_deps.dev:0 github.com/opositatest/design-tokens,num_dependents_deps.dev:0 +github.com/oposs/raku-container-action, github.com/opoto/leaflet.polyutils,num_dependents_deps.dev:0 github.com/opoupeney/dfg,num_dependents_deps.dev:0 github.com/opower/lotide,num_dependents_deps.dev:0 @@ -896494,6 +912552,7 @@ github.com/opper/jump, github.com/opper/pyserverpilot, github.com/oppewala/house-tracking,num_dependents_deps.dev:0 github.com/oppia/oppia,criticality_score:0.728840 +github.com/oppia/oppiabot, github.com/oppiesystems/short-node,num_dependents_deps.dev:0 github.com/oppnys/element-conf-form,num_dependents_deps.dev:0 github.com/oppnys/oppnys,num_dependents_deps.dev:0 @@ -896564,6 +912623,7 @@ github.com/oprogramador/vinberodb-test-helpers,num_dependents_deps.dev:0 github.com/oprometeumoderno/barbell, github.com/oprstchn/react-chart-editor,num_dependents_deps.dev:0 github.com/oprudkyi/js-error-alert,num_dependents_deps.dev:0 +github.com/oprypin/find-latest-tag, github.com/oprypin/markdown-callouts, github.com/oprypin/mkdocs-code-validator, github.com/oprypin/mkdocs-gen-files, @@ -896574,6 +912634,7 @@ github.com/oprypin/pytest-golden, github.com/oprypin/tag-cmp,num_dependents_deps.dev:0 github.com/ops-hero/trebuchet, github.com/ops-itop/k8s-ep-healthcheck,num_dependents_deps.dev:0 +github.com/ops18/terraform-github-actions, github.com/ops4j/org.ops4j.base,num_dependents_deps.dev:25317 github.com/ops4j/org.ops4j.mpjp,num_dependents_deps.dev:0 github.com/ops4j/org.ops4j.pax.cdi,num_dependents_deps.dev:69 @@ -896639,6 +912700,7 @@ github.com/opsee/graphql,num_dependents_deps.dev:0 github.com/opsep/opsep-python, github.com/opserver/Opserver,criticality_score:0.384290 github.com/opsforge/evala,num_dependents_deps.dev:0 +github.com/opsgang/ga-setup-minikube, github.com/opsgenie/kubernetes-event-exporter,"criticality_score:0.322780,num_dependents_deps.dev:0" github.com/opsgenie/logstash-output-opsgenie,num_dependents_deps.dev:0 github.com/opsgenie/oec-scripts,num_dependents_deps.dev:0 @@ -896661,6 +912723,8 @@ github.com/opsidian/parsley,num_dependents_deps.dev:0 github.com/opsigor/ops,num_dependents_deps.dev:0 github.com/opskumu/day,num_dependents_deps.dev:0 github.com/opskumu/helm-wrapper,num_dependents_deps.dev:0 +github.com/opslead/swarm-action, +github.com/opsless/ms-teams-github-actions, github.com/opslevel/kubectl-opslevel,num_dependents_deps.dev:0 github.com/opslevel/kubernetes-checks-demo,num_dependents_deps.dev:0 github.com/opslevel/opslevel-go,num_dependents_deps.dev:0 @@ -896689,12 +912753,18 @@ github.com/opsone/init-react-redux-app,num_dependents_deps.dev:0 github.com/opspec-io/sdk-js,num_dependents_deps.dev:0 github.com/opspec-pkgs/opencontainers.image.build,num_dependents_deps.dev:0 github.com/opspec-pkgs/postgresql.db.waitready,num_dependents_deps.dev:0 +github.com/opspresso/action-builder, +github.com/opspresso/action-docker, +github.com/opspresso/action-release, +github.com/opspresso/action-slack, +github.com/opspresso/action-version, github.com/opsramp/analytics-sdk, github.com/opsramp/service,num_dependents_deps.dev:0 github.com/opsrampjoe/react-date-range,num_dependents_deps.dev:0 github.com/opsschool/curriculum,criticality_score:0.321300 github.com/opstalent/redux-crud,num_dependents_deps.dev:0 github.com/opstalent/speedtest.net,num_dependents_deps.dev:0 +github.com/opstrace/algolia-docs-sync, github.com/opstrace/cortex-operator,num_dependents_deps.dev:0 github.com/opstrace/next-product-docs,num_dependents_deps.dev:0 github.com/opstrace/opstrace,"criticality_score:0.354250,num_dependents_deps.dev:0" @@ -896706,7 +912776,12 @@ github.com/opsway/goftp,num_dependents_deps.dev:0 github.com/opsway/praefectus,num_dependents_deps.dev:0 github.com/opsway/react-native-clevertap-inbox,num_dependents_deps.dev:0 github.com/opsway/react-native-paytm,num_dependents_deps.dev:0 +github.com/opszero/actions-cloudflare-dns, github.com/opszero/aws-lambda-go,num_dependents_deps.dev:0 +github.com/opt-nc/domaine-nc-action, +github.com/opt-nc/setup-duckdb-action, +github.com/opt-nc/tower-deploy-action, +github.com/opt-nc/yamlfixer-action, github.com/opt-systems/fonttech,num_dependents_deps.dev:0 github.com/opt-systems/optimus-micro-node,num_dependents_deps.dev:0 github.com/opt-tech/gtm-json-converter,num_dependents_deps.dev:0 @@ -896807,6 +912882,7 @@ github.com/optimistiCli/ishwest_py3_toolbox, github.com/optimisticben/op_exporter,num_dependents_deps.dev:0 github.com/optimisuke/tempura,num_dependents_deps.dev:0 github.com/optimization-js/optimization-js,num_dependents_deps.dev:0 +github.com/optimize-app/deploy-firebase-functions, github.com/optimizedoptions/BalanceEvolution, github.com/optimizely/agent,num_dependents_deps.dev:0 github.com/optimizely/android-sdk,"Google,num_dependents_deps.dev:16" @@ -896838,6 +912914,7 @@ github.com/optimizely/react-oui-icons,num_dependents_deps.dev:0 github.com/optimizely/sidedoor,num_dependents_deps.dev:0 github.com/optimizely/ssrm, github.com/optimizely/swift-sdk,Google +github.com/optimizely/upload-custom-code-action, github.com/optimizia/dato-plugin-repeater-fields,num_dependents_deps.dev:0 github.com/optimizory/vrest-ng-cli,num_dependents_deps.dev:0 github.com/optimumchaos/picsort,num_dependents_deps.dev:0 @@ -896975,6 +913052,7 @@ github.com/opxyc/secret,num_dependents_deps.dev:0 github.com/opyh/simple-relations,num_dependents_deps.dev:0 github.com/opz/DALP-core,num_dependents_deps.dev:0 github.com/opz/solidity-fixedpoint,num_dependents_deps.dev:0 +github.com/opzkit/govulncheck-action, github.com/oqhadev/waweb-phi,num_dependents_deps.dev:0 github.com/oqtane/oqtane.framework,criticality_score:0.514900 github.com/oqtavelabs/oqtave-charts,num_dependents_deps.dev:0 @@ -897010,10 +913088,16 @@ github.com/orYoffe/megaronk,num_dependents_deps.dev:0 github.com/orYoffe/react-native-template-react-native-web,num_dependents_deps.dev:2 github.com/ora-systems/ora-client-java,num_dependents_deps.dev:0 github.com/oraad/cordova-react-template,num_dependents_deps.dev:0 +github.com/oraad/get-tags-action, github.com/orabimad/orabimad-server,num_dependents_deps.dev:0 github.com/oracal/cineworld, github.com/orachide/rabbitmq-metrics-to-graphite, github.com/orachide/sql-feed-graphite, +github.com/oracle-actions/configure-kubectl-oke, +github.com/oracle-actions/get-ocir-repository, +github.com/oracle-actions/login-ocir, +github.com/oracle-actions/run-oci-cli-command, +github.com/oracle-actions/setup-java, github.com/oracle-commerce-cloud/Design-Code-Utility,num_dependents_deps.dev:0 github.com/oracle-commerce-cloud/create-occ-react-app,num_dependents_deps.dev:0 github.com/oracle-commerce-cloud/occ-webpack-build-plugin,num_dependents_deps.dev:0 @@ -897319,6 +913403,7 @@ github.com/orarr/questrar-test,num_dependents_deps.dev:0 github.com/oras-project/artifacts-spec,num_dependents_deps.dev:0 github.com/oras-project/oras,num_dependents_deps.dev:0 github.com/oras-project/oras-go,num_dependents_deps.dev:9 +github.com/oras-project/setup-oras, github.com/orasembrono/luas,num_dependents_deps.dev:0 github.com/orasik/doneapp,num_dependents_deps.dev:0 github.com/orasul/dbcli, @@ -897468,6 +913553,7 @@ github.com/orbitjs/orbit-jsonapi, github.com/orbitjs/orbit-local-storage,num_dependents_deps.dev:0 github.com/orbitjs/orbit-store,num_dependents_deps.dev:0 github.com/orbitjs/prettier-config,num_dependents_deps.dev:0 +github.com/orbitpages/semantic-release-conventional-action, github.com/orbitthemes/One-Col-Portfolio,num_dependents_deps.dev:0 github.com/orbitthemes/album,num_dependents_deps.dev:0 github.com/orbitthemes/album-plus,num_dependents_deps.dev:0 @@ -897558,6 +913644,10 @@ github.com/orcahealth/prim,num_dependents_deps.dev:0 github.com/orcaman/concurrent-map,"criticality_score:0.419170,num_dependents_deps.dev:306" github.com/orcaman/concurrent-map-benchmarks,num_dependents_deps.dev:0 github.com/orcasecurity/orca-toolbox, +github.com/orcasecurity/shiftleft-container-image-action, +github.com/orcasecurity/shiftleft-fs-action, +github.com/orcasecurity/shiftleft-iac-action, +github.com/orcasecurity/shiftleft-secrets-action, github.com/orcasgit/PushNotification,num_dependents_deps.dev:0 github.com/orcasgit/cordova-plugin-inappbrowser,num_dependents_deps.dev:0 github.com/orcasgit/django-fernet-fields, @@ -897719,6 +913809,7 @@ github.com/ordergroove/misc,num_dependents_deps.dev:2 github.com/ordergroove/sculptor,num_dependents_deps.dev:0 github.com/ordergroove/sculptorjs, github.com/orderingstack/pos-integrator-core, +github.com/orderlion/playwright-container, github.com/ordermentum/aba,num_dependents_deps.dev:0 github.com/ordermentum/asclepius-standard,num_dependents_deps.dev:0 github.com/ordermentum/assembly-payments-node,num_dependents_deps.dev:0 @@ -897902,6 +913993,7 @@ github.com/orestisioakeimidis/countries-states-json,num_dependents_deps.dev:0 github.com/orestisrodriguez/handsontable-multi-select,num_dependents_deps.dev:0 github.com/orestisrodriguez/transdis,num_dependents_deps.dev:0 github.com/orestonce/chessgame,num_dependents_deps.dev:0 +github.com/orestonce/install-qt-static, github.com/orestu/Cullinan, github.com/oretman/homebridge-mi-flora-care,num_dependents_deps.dev:0 github.com/orevenat/project-lvl1-s200,num_dependents_deps.dev:0 @@ -897909,6 +914001,7 @@ github.com/orevenat/project-lvl2-s393,num_dependents_deps.dev:0 github.com/orevron/react-diff-viewer,num_dependents_deps.dev:0 github.com/orf/HtmlToWord, github.com/orf/aio-pipes, +github.com/orf/cargo-bloat-action, github.com/orf/cel-rust,num_dependents_deps.dev:3 github.com/orf/cvsslib, github.com/orf/cyborg, @@ -897967,6 +914060,7 @@ github.com/org-metaeffekt/metaeffekt-dita,num_dependents_deps.dev:0 github.com/org-metalib/metalib-bom,num_dependents_deps.dev:0 github.com/org-metalib/pom-yml-maven-extension,num_dependents_deps.dev:0 github.com/org-nekhemievich/togakure,num_dependents_deps.dev:0 +github.com/org-not-included/dbt_table_diff, github.com/org-papaja/papaja,num_dependents_deps.dev:0 github.com/org-redtea/always-avatar,num_dependents_deps.dev:0 github.com/org-redtea/async-mirror,num_dependents_deps.dev:0 @@ -898036,6 +914130,7 @@ github.com/orgnizationteam/testmaven,num_dependents_deps.dev:0 github.com/orgoldfus/fomo,num_dependents_deps.dev:0 github.com/orgoldfus/sql2mongo,num_dependents_deps.dev:0 github.com/orgordin/vuejs-avataaars,num_dependents_deps.dev:0 +github.com/orgoro/coverage, github.com/orgpaket/paket,num_dependents_deps.dev:0 github.com/orgplace/orgui-react,num_dependents_deps.dev:0 github.com/orgplace/trafficquota,num_dependents_deps.dev:0 @@ -898092,6 +914187,7 @@ github.com/orhantoy/logtastic,num_dependents_deps.dev:0 github.com/orhantoy/ucfg,num_dependents_deps.dev:0 github.com/orhanveli/medium-editor-embed-button,num_dependents_deps.dev:0 github.com/orhun/git-cliff,num_dependents_deps.dev:0 +github.com/orhun/git-cliff-action, github.com/orhun/godsays,num_dependents_deps.dev:0 github.com/orhun/gpg-tui,num_dependents_deps.dev:0 github.com/orhun/i3-workspace-brightness,num_dependents_deps.dev:0 @@ -898329,6 +914425,7 @@ github.com/orijtech/ocjedis,num_dependents_deps.dev:0 github.com/orijtech/ocspymemcached,num_dependents_deps.dev:0 github.com/orijtech/otils,num_dependents_deps.dev:1 github.com/orijtech/sigchanyzer,num_dependents_deps.dev:0 +github.com/orijtech/staticmajor-action, github.com/orijtech/structslop,num_dependents_deps.dev:0 github.com/orijtech/test-gobencher,num_dependents_deps.dev:0 github.com/orijtech/tickeryzer,num_dependents_deps.dev:0 @@ -898636,6 +914733,7 @@ github.com/orm-backend/vue-md-form,num_dependents_deps.dev:0 github.com/orm-fux/ormfux-common-util,num_dependents_deps.dev:0 github.com/orm-fux/ormfux-simple-di,num_dependents_deps.dev:0 github.com/orm-fux/ormfux-simple-orm,num_dependents_deps.dev:0 +github.com/ormancicd/ormancicd-github-action, github.com/ormanli/mixingcheck,num_dependents_deps.dev:0 github.com/ormanli/sink,num_dependents_deps.dev:0 github.com/ormembaar/angry-purple-tiger,num_dependents_deps.dev:0 @@ -898827,6 +914925,7 @@ github.com/orouz/pictwist,num_dependents_deps.dev:0 github.com/orouz/route-link, github.com/orouz/tiny-ts-matcher,num_dependents_deps.dev:0 github.com/orozot/vue-component-analyzer,num_dependents_deps.dev:0 +github.com/orphan-oss/ognl, github.com/orpharion/cue-extensions,num_dependents_deps.dev:0 github.com/orphenxy/hooks-storage,num_dependents_deps.dev:0 github.com/orpheus92/cookiecutter,num_dependents_deps.dev:0 @@ -898835,6 +914934,7 @@ github.com/orphisAG/updateQuota,num_dependents_deps.dev:0 github.com/orpiske/isitfree,num_dependents_deps.dev:0 github.com/orql/orql-baas,num_dependents_deps.dev:0 github.com/orql/orql-parser,num_dependents_deps.dev:4 +github.com/orquestadev/orquesta-action, github.com/orrche/minecraft-wr25.org,num_dependents_deps.dev:0 github.com/orrche/oauthwr25provider,num_dependents_deps.dev:0 github.com/orrche/riksbanken,num_dependents_deps.dev:0 @@ -898919,6 +915019,8 @@ github.com/orta/react-storybooks-relay-container,num_dependents_deps.dev:0 github.com/orta/vscode-jest,num_dependents_deps.dev:0 github.com/orted-org/goss_go_client,num_dependents_deps.dev:0 github.com/ortega-dan/golang-panic-catcher,num_dependents_deps.dev:0 +github.com/ortega2247/pypi-upload-action, +github.com/ortegarenzy/eqela-build-action, github.com/ortelio/rapp-api-js, github.com/ortelius/compupdate, github.com/ortelius/image-scan,num_dependents_deps.dev:0 @@ -899031,9 +915133,12 @@ github.com/ory-am/go-iam,num_dependents_deps.dev:0 github.com/ory-am/herodot,num_dependents_deps.dev:0 github.com/ory-am/hydra,num_dependents_deps.dev:0 github.com/ory-am/hydra-js,num_dependents_deps.dev:0 +github.com/ory/actions, github.com/ory/analytics-go,num_dependents_deps.dev:77 +github.com/ory/build-buf-action, github.com/ory/cli,num_dependents_deps.dev:0 github.com/ory/client-go,num_dependents_deps.dev:0 +github.com/ory/closed-reference-notifier, github.com/ory/dockertest,"criticality_score:0.503280,num_dependents_deps.dev:375" github.com/ory/fosite,"criticality_score:0.572330,num_dependents_deps.dev:152" github.com/ory/fosite-example,num_dependents_deps.dev:0 @@ -899053,7 +915158,10 @@ github.com/ory/kratos,"criticality_score:0.595240,num_dependents_deps.dev:9" github.com/ory/kratos-client-go,num_dependents_deps.dev:5 github.com/ory/kratos-client-java,num_dependents_deps.dev:0 github.com/ory/kratos-selfservice-ui-react-native,num_dependents_deps.dev:0 +github.com/ory/label-sync-action, github.com/ory/ladon,criticality_score:0.363150 +github.com/ory/milestone-action, +github.com/ory/nancy-github-action, github.com/ory/nosurf,num_dependents_deps.dev:4 github.com/ory/oathkeeper,"criticality_score:0.564850,num_dependents_deps.dev:0" github.com/ory/oathkeeper-client-go,num_dependents_deps.dev:0 @@ -899068,6 +915176,7 @@ github.com/ory/sdk-js,num_dependents_deps.dev:0 github.com/ory/themes,num_dependents_deps.dev:0 github.com/ory/works,num_dependents_deps.dev:0 github.com/ory/x,num_dependents_deps.dev:271 +github.com/oryanmoshe/ecs-wait-action, github.com/oryanmoshe/escargot,num_dependents_deps.dev:0 github.com/oryba/astformula, github.com/oryba/uz-sdk, @@ -899185,6 +915294,7 @@ github.com/os-js/stylelint-config, github.com/os-pc/cloud-provider-rackspace,num_dependents_deps.dev:0 github.com/os-pc/gocloudlb,num_dependents_deps.dev:0 github.com/os-q/s12,num_dependents_deps.dev:0 +github.com/os-ucsd/acsweb-deploy-action, github.com/os/slacker, github.com/os33/color-thief,num_dependents_deps.dev:0 github.com/os33/ng2-tel-input,num_dependents_deps.dev:0 @@ -899218,6 +915328,7 @@ github.com/osak/akasha-chronik,num_dependents_deps.dev:0 github.com/osakanara/es6hello,num_dependents_deps.dev:0 github.com/osakpolor-onaiwu/destructo,num_dependents_deps.dev:0 github.com/osakunta/django-ilmo-app, +github.com/osala-eng/staticgen, github.com/osallou/cassiopee,num_dependents_deps.dev:0 github.com/osallou/herodote,num_dependents_deps.dev:0 github.com/osallou/herodote-cli,num_dependents_deps.dev:0 @@ -899293,6 +915404,8 @@ github.com/osbelmorell/resonance-react,num_dependents_deps.dev:0 github.com/osben/ionic-app-scripts,num_dependents_deps.dev:0 github.com/osben/ionic-v3,num_dependents_deps.dev:0 github.com/osbkit/minibroker,num_dependents_deps.dev:0 +github.com/osbm/huggingface-login, +github.com/osbm/kaggle-login, github.com/osbooster/test,num_dependents_deps.dev:0 github.com/osbridge/openconferenceware,num_dependents_deps.dev:0 github.com/osbuild/image-builder,num_dependents_deps.dev:0 @@ -899308,6 +915421,7 @@ github.com/osc/job-pod-reaper,num_dependents_deps.dev:0 github.com/osc/k8-ldap-configmap,num_dependents_deps.dev:0 github.com/osc/k8-namespace-reaper,num_dependents_deps.dev:0 github.com/osc707/11ty-simple-page-post-creator,num_dependents_deps.dev:0 +github.com/oscal-club/oscal-cli-action, github.com/oscalprab/angular-formio,num_dependents_deps.dev:0 github.com/oscalprab/formio.js,num_dependents_deps.dev:0 github.com/oscar-anton/loopback-component-push,num_dependents_deps.dev:0 @@ -899331,6 +915445,7 @@ github.com/oscar-stack/vagrant-hosts,criticality_score:0.301040 github.com/oscar0812/pokeapi-v2-java,num_dependents_deps.dev:0 github.com/oscar0812/pyOfferUp, github.com/oscar0812/pyfinviz, +github.com/oscar123mendoza/amazon-ecs-run-task, github.com/oscar1987121/maven-repo-index,num_dependents_deps.dev:0 github.com/oscar6echo/copy-git-repo, github.com/oscar6echo/ezaggrid, @@ -899466,6 +915581,7 @@ github.com/oscartbeaumont/vite-plugin-relay,num_dependents_deps.dev:0 github.com/oscartbeaumont/windows_mdm,num_dependents_deps.dev:0 github.com/oscartechnologies/vue-components,num_dependents_deps.dev:0 github.com/oscarteg/gatsby-themes,num_dependents_deps.dev:0 +github.com/oscarvantol/drastic-garnish, github.com/oscarvazquez/angularSkeleton, github.com/oscarvazquez/chavo, github.com/oscarvazquez/command_line_tool_demo, @@ -899515,6 +915631,7 @@ github.com/oschwald/go-pivotaltracker,num_dependents_deps.dev:0 github.com/oschwald/maxminddb-golang,"criticality_score:0.467800,num_dependents_deps.dev:872" github.com/oschwald/maxminddb-rust,num_dependents_deps.dev:3 github.com/oschweitzer/eslint-config-oschweitzer, +github.com/oschweitzer/ms-teams-deploy-card, github.com/oschweitzer/nestjs-woodcutter,num_dependents_deps.dev:0 github.com/oschweitzer/woodcutter,num_dependents_deps.dev:0 github.com/oschwengers/bakta, @@ -899743,7 +915860,10 @@ github.com/osiegmar/billomat4j,num_dependents_deps.dev:0 github.com/osiegmar/cloudwatch-mon-scripts-python, github.com/osiegmar/logback-awslogs-json-encoder,num_dependents_deps.dev:0 github.com/osiegmar/logback-gelf,num_dependents_deps.dev:1 +github.com/osiegmar/s3-publish-action, +github.com/osiegmar/s3-publisher-action, github.com/osievert/aglio-theme-otto,num_dependents_deps.dev:0 +github.com/osievert/pr-gate-all-reviewers, github.com/osifo/pagination,num_dependents_deps.dev:0 github.com/osikes/cordova-plugin-dynamic-applepay-stripe,num_dependents_deps.dev:0 github.com/osilkin98/pybry, @@ -899754,6 +915874,7 @@ github.com/osimloeff/PI-Web-API-Client-Python, github.com/osimono/pod-vis,num_dependents_deps.dev:0 github.com/osinakayah/kurepay-node,num_dependents_deps.dev:0 github.com/osindex/vue-hotel-datepicker,num_dependents_deps.dev:0 +github.com/osinfra-io/github-kitchen-terraform-action, github.com/osingcoin/osingswap-uikit,num_dependents_deps.dev:0 github.com/osingh444/olang,num_dependents_deps.dev:0 github.com/osinka/camel-beanstalk,num_dependents_deps.dev:0 @@ -899795,6 +915916,8 @@ github.com/osirixgrpc/pyosirix, github.com/osiro/netscape-cookies-exporter,num_dependents_deps.dev:0 github.com/osiset/basic_shopify_api, github.com/osiset/laravel-shopify,criticality_score:0.545700 +github.com/osism/ansible-lint-action, +github.com/osism/openstack-action, github.com/osism/python-osism, github.com/osisoft/OMF-Node-RED,num_dependents_deps.dev:0 github.com/osisoft/sample-ocs-sample_libraries-python, @@ -899887,7 +916010,10 @@ github.com/oskyk/cashaddress, github.com/oskyk/gitlab-cli, github.com/oskyk/pykeygen, github.com/oskyk/tezos-hd-util, +github.com/osl-incubator/gh-check-pr-is-updated, +github.com/osl-incubator/github-actions-chatgpt-pr-reviewer, github.com/osl-incubator/pydata_factory, +github.com/osl-incubator/semantic-release-pr-title-check, github.com/oslabs-beta/Aqls-client, github.com/oslabs-beta/Aqls-server, github.com/oslabs-beta/AtomicKafka, @@ -899930,6 +916056,7 @@ github.com/oslabs-beta/synapse,num_dependents_deps.dev:0 github.com/oslabs-beta/tulo-js,num_dependents_deps.dev:0 github.com/oslabs-beta/watchmo,num_dependents_deps.dev:0 github.com/oslandia/geo3dfeatures, +github.com/oslepov/helm-eks-action, github.com/oslllo/potrace,num_dependents_deps.dev:2 github.com/oslllo/svg-fixer,num_dependents_deps.dev:0 github.com/oslllo/svg2,num_dependents_deps.dev:2 @@ -899949,6 +916076,7 @@ github.com/oslokommune/origo-sdk-python, github.com/oslomarketsolutions/pre-commit-maven-plugin,num_dependents_deps.dev:0 github.com/oslomet-arx-as-a-service/ARXaaS,num_dependents_deps.dev:0 github.com/oslomet-arx-as-a-service/AaaS,num_dependents_deps.dev:0 +github.com/oslopride/sanity-mirror-dataset, github.com/osltd/oneshop-web.js,num_dependents_deps.dev:0 github.com/osltd/oneshop.js, github.com/osm-search/Nominatim,criticality_score:0.527490 @@ -899958,6 +916086,7 @@ github.com/osm-uk/taginfo-to-gsheet, github.com/osm-without-borders/cosmogony,num_dependents_deps.dev:0 github.com/osm/icka,num_dependents_deps.dev:0 github.com/osm2vectortiles/tileserver-vector,num_dependents_deps.dev:0 +github.com/osma/phpunit, github.com/osmancode/am4charts-labelBullet-overlap-buster, github.com/osmancuet09/english-to-bangla-date, github.com/osmandapp/OsmAnd,criticality_score:0.781990 @@ -900073,6 +916202,7 @@ github.com/ospatil/string-search,num_dependents_deps.dev:4 github.com/ospencer/vue-oxford,num_dependents_deps.dev:0 github.com/osperlabs/logbeam, github.com/ospet/schema2hapi,num_dependents_deps.dev:0 +github.com/ospfranco/gh-jester, github.com/ospfranco/link-preview-js,num_dependents_deps.dev:0 github.com/ospfranco/react-native-card-modal,num_dependents_deps.dev:0 github.com/ospfranco/react-native-link-preview,num_dependents_deps.dev:0 @@ -900118,9 +916248,11 @@ github.com/osrsbox/osrsbox-db, github.com/osrslogs/osrs-exchange,num_dependents_deps.dev:0 github.com/osrslogs/osrs-hiscores,num_dependents_deps.dev:0 github.com/oss-a-1/sqlitedb, +github.com/oss-actions/auto-semver, github.com/oss-ethinking/process-statsd,num_dependents_deps.dev:0 github.com/oss-review-toolkit/ort,"criticality_score:0.542870,num_dependents_deps.dev:0" github.com/oss-specs/specs,num_dependents_deps.dev:0 +github.com/oss-tooling/gh-license-audit-action, github.com/oss/shrunk, github.com/oss6/eslint-plugin-ng-extra,num_dependents_deps.dev:0 github.com/oss6/fold,num_dependents_deps.dev:0 @@ -900143,6 +916275,7 @@ github.com/ossan-engineer/use-simple-audio,num_dependents_deps.dev:0 github.com/ossan-engineer/use-strict-click-handler,num_dependents_deps.dev:0 github.com/ossas/sudokuMaker,num_dependents_deps.dev:0 github.com/osscameroon/cacho, +github.com/osscameroon/hostme.gh-action, github.com/osscar-org/appmode-jupyterlab,num_dependents_deps.dev:0 github.com/osscar-org/jupyterlab-cube,num_dependents_deps.dev:0 github.com/osscar-org/jupyterlab-hide-code,num_dependents_deps.dev:0 @@ -900167,11 +916300,15 @@ github.com/ossf/criticality_score,criticality_score:0.343920 github.com/ossf/package-analysis,num_dependents_deps.dev:0 github.com/ossf/package-feeds,num_dependents_deps.dev:0 github.com/ossf/scorecard,"criticality_score:0.345850,num_dependents_deps.dev:0" +github.com/ossf/scorecard-action, github.com/ossfriendly/open-source-supporters,criticality_score:0.355930 github.com/ossgang/ossgang-commons,num_dependents_deps.dev:2 github.com/ossgang/ossgang-spring-wonderland,num_dependents_deps.dev:0 github.com/ossia/score,criticality_score:0.546920 github.com/ossillate-inc/ossie-pypi, +github.com/ossillate-inc/packj-github-action, +github.com/ossillate-inc/packj-npm-registry-firewall-action, +github.com/ossillate-inc/packj.dev, github.com/ossilva/bookmark2fs,num_dependents_deps.dev:0 github.com/ossipoff/rtcmulticonnection-signalr,num_dependents_deps.dev:0 github.com/osskit/enforce-client-headers,num_dependents_deps.dev:0 @@ -900192,6 +916329,7 @@ github.com/ossplz/neoman,num_dependents_deps.dev:0 github.com/ossrapaport/passport-angellist-e_and_m,num_dependents_deps.dev:0 github.com/ossrs/go-oryx,num_dependents_deps.dev:0 github.com/ossrs/go-oryx-lib,num_dependents_deps.dev:0 +github.com/ossrs/k8s-set-context-action, github.com/ossrs/srs,"criticality_score:0.499430,num_dependents_deps.dev:0" github.com/ossslcc/cardif-template,num_dependents_deps.dev:0 github.com/osstech-jp/akerun-sum, @@ -900284,6 +916422,7 @@ github.com/ostinelli/syn,criticality_score:0.304610 github.com/ostis-dev/sc-core,num_dependents_deps.dev:0 github.com/ostis-dev/sc-network-js,num_dependents_deps.dev:0 github.com/ostis-dev/scs-js-editor,num_dependents_deps.dev:0 +github.com/ostk0069/github-discussions-notifier, github.com/ostlerdev/libraryd-npm,num_dependents_deps.dev:0 github.com/ostlerp/clean-combine-reducers,num_dependents_deps.dev:0 github.com/ostosh/isomorphic-fetch-extended, @@ -900912,6 +917051,7 @@ github.com/otomatik/generator-ymca, github.com/otomatikmuhendis/qualityc-module,num_dependents_deps.dev:0 github.com/otomato-gh/cargo-commentratio,num_dependents_deps.dev:0 github.com/otomato-gh/cf-left-pad,num_dependents_deps.dev:0 +github.com/otomato-gh/kubescape-action, github.com/otomer/algoritool,num_dependents_deps.dev:0 github.com/otomer/choox,num_dependents_deps.dev:0 github.com/otomer/comy,num_dependents_deps.dev:0 @@ -900969,6 +917109,7 @@ github.com/otp-js/otp-js,num_dependents_deps.dev:4 github.com/otrabalhador/dictable, github.com/otrabalhador/pyqybe, github.com/otraore/cachet-monitor,num_dependents_deps.dev:0 +github.com/otrebmuh/dv8-github-action, github.com/otremblay/jkl,num_dependents_deps.dev:0 github.com/otrianodev/gameoflife, github.com/otris/jsdoc-tsd, @@ -901032,8 +917173,11 @@ github.com/otthtml/codebank,num_dependents_deps.dev:0 github.com/ottijp/fir-rule-gen,num_dependents_deps.dev:0 github.com/otto-aa/solid-acl-parser,num_dependents_deps.dev:0 github.com/otto-aa/solid-local-pod,num_dependents_deps.dev:0 +github.com/otto-contentfactory/purge-workflow-runs, +github.com/otto-de/github-actions-wait, github.com/otto-de/lineup,num_dependents_deps.dev:0 github.com/otto-de/oauth-token-filter,num_dependents_deps.dev:0 +github.com/otto-de/purge-deprecated-workflow-runs, github.com/otto-de/pxdoppelganger,num_dependents_deps.dev:0 github.com/otto-de/turing-microservice,num_dependents_deps.dev:22 github.com/otto-de/yocto-httpd,num_dependents_deps.dev:0 @@ -901062,6 +917206,7 @@ github.com/ottogroup/dstoolbox, github.com/ottogroup/flink-spector,num_dependents_deps.dev:0 github.com/ottogroup/palladium, github.com/ottogroup/penelope,num_dependents_deps.dev:0 +github.com/ottojo/uberblatt-action, github.com/ottojs/otto, github.com/ottojs/otto-app,num_dependents_deps.dev:2 github.com/ottojs/otto-authentication,num_dependents_deps.dev:2 @@ -901113,6 +917258,7 @@ github.com/ottorun/pix-diff2, github.com/ottoswap/ottoswap-lib, github.com/ottoswap/ottoswap-toolkit,num_dependents_deps.dev:0 github.com/ottoszika/node-red-contrib-ewelink,num_dependents_deps.dev:0 +github.com/ottotech/go-fuzzing-test, github.com/ottotech/vwap,num_dependents_deps.dev:0 github.com/ottowayi/pycomm3, github.com/ottoyiu/django-cors-headers,Google @@ -901137,6 +917283,7 @@ github.com/otwdev/galaxylib,num_dependents_deps.dev:0 github.com/otwm/express-cache,num_dependents_deps.dev:0 github.com/otya128/winevdm,criticality_score:0.447240 github.com/otykier/TabularEditor,criticality_score:0.480720 +github.com/otymko/setup-onescript, github.com/otype/rup,num_dependents_deps.dev:0 github.com/otzhora/potator, github.com/ou-bing/parser,num_dependents_deps.dev:0 @@ -901542,6 +917689,7 @@ github.com/outcome-co/verdaccio-google-cloud-js,num_dependents_deps.dev:1 github.com/outcome-co/vuedts,num_dependents_deps.dev:0 github.com/outcome-co/webpack-remark-loader-js,num_dependents_deps.dev:0 github.com/outdead/discordant,num_dependents_deps.dev:0 +github.com/outdef/contract-vulnerability-action, github.com/outdooricon/bootstrap-flexbox-static,num_dependents_deps.dev:0 github.com/outdoorsy/ember-experiments,num_dependents_deps.dev:0 github.com/outdoorsy/fastboot-graceful-server,num_dependents_deps.dev:0 @@ -901711,9 +917859,11 @@ github.com/outsiderLazy/tiHelper,num_dependents_deps.dev:0 github.com/outsideris/involved,num_dependents_deps.dev:0 github.com/outsideris/jten,num_dependents_deps.dev:0 github.com/outsideris/passport-me2day,num_dependents_deps.dev:0 +github.com/outsideris/potential-conflicts-checker-action, github.com/outsideris/slack-invite-automation,criticality_score:0.388980 github.com/outsmartly/outsmartly, github.com/outsource-it-now/node-rbac, +github.com/outsparkled/pterodactyl-power-action, github.com/outsploiter/inshorts-api-golang-mongodb,num_dependents_deps.dev:0 github.com/outsrc/runhare-next,num_dependents_deps.dev:0 github.com/outsrc/runhare-node,num_dependents_deps.dev:0 @@ -901734,6 +917884,7 @@ github.com/outworkers/util,num_dependents_deps.dev:51 github.com/ouuan/fake-luogu-paintboard-server,num_dependents_deps.dev:0 github.com/ouuan/github-file-authors,num_dependents_deps.dev:0 github.com/ouuan/my-vscode-extensions,num_dependents_deps.dev:0 +github.com/ouuan/pkgbuild-action, github.com/ouvanous/n4store, github.com/ouven/akka-k8s-seednode,num_dependents_deps.dev:0 github.com/ouven/akka-visualmailbox,num_dependents_deps.dev:1 @@ -901764,10 +917915,14 @@ github.com/ouyecw/cooltree,num_dependents_deps.dev:0 github.com/ouyi/dashjson, github.com/ouzhou/postcss-px-to-viewport,num_dependents_deps.dev:0 github.com/ouzi-dev/avro-kedavro,num_dependents_deps.dev:0 +github.com/ouzi-dev/commit-status-updater, github.com/ouzi-dev/credstash-operator,num_dependents_deps.dev:0 +github.com/ouzi-dev/dind-action, +github.com/ouzi-dev/go-make-action, github.com/ouzu/cf-dns-updater,num_dependents_deps.dev:0 github.com/ov3rk1ll/parcel-plugin-bootstrap-vue-icons, github.com/ov3rk1ll/poeditor-cli,num_dependents_deps.dev:0 +github.com/ov7a/link-issue-action, github.com/ova2/angular-development-with-primeng,num_dependents_deps.dev:0 github.com/ova2/gulp-print-spacesavings,num_dependents_deps.dev:0 github.com/ovaar/node-pi-proximity,num_dependents_deps.dev:0 @@ -902067,6 +918222,7 @@ github.com/overrkill/create-a-react-component, github.com/overrkill/create-react-component,num_dependents_deps.dev:0 github.com/overscroll/overzine,num_dependents_deps.dev:0 github.com/oversecured/oversecured-bitrise-step,num_dependents_deps.dev:0 +github.com/oversecured/oversecured-github, github.com/overseer-monitoring/om, github.com/overseershenk/chess-bit-board,num_dependents_deps.dev:0 github.com/overseven/blockchain,num_dependents_deps.dev:0 @@ -902418,6 +918574,7 @@ github.com/ovotech/kiss,num_dependents_deps.dev:0 github.com/ovotech/laminar,num_dependents_deps.dev:20 github.com/ovotech/mantle,num_dependents_deps.dev:0 github.com/ovotech/meters4s,num_dependents_deps.dev:0 +github.com/ovotech/montecarlo-monitors-deploy, github.com/ovotech/natchez-extras,num_dependents_deps.dev:0 github.com/ovotech/pg-sql-migrate, github.com/ovotech/react-datepicker,num_dependents_deps.dev:0 @@ -902432,6 +918589,9 @@ github.com/ovowipokarpatski/git_test,num_dependents_deps.dev:0 github.com/ovpv/react-starred,num_dependents_deps.dev:0 github.com/ovr/react-native-status-bar-height,"criticality_score:0.344650,num_dependents_deps.dev:422" github.com/ovrclk/akash,num_dependents_deps.dev:0 +github.com/ovrclk/akash-ghaction-setup, +github.com/ovrclk/akash-ghaction-templated-sdl, +github.com/ovrclk/akash-ghaction-updatedeploy, github.com/ovrclk/akcmd,num_dependents_deps.dev:0 github.com/ovrclk/cosmos-circulating-supply,num_dependents_deps.dev:0 github.com/ovrclk/cosmos-sdk,num_dependents_deps.dev:0 @@ -902447,6 +918607,7 @@ github.com/ovrmrw/reactive-store,num_dependents_deps.dev:0 github.com/ovrmrw/rxjs-ajax-cancelable,num_dependents_deps.dev:0 github.com/ovrmrw/s3-bulk-downloader,num_dependents_deps.dev:0 github.com/ovrsea/aws-lambda-node-sentry-wrapper,num_dependents_deps.dev:0 +github.com/ovsen/action-deploy-aws-lambda, github.com/ovsexia/xtiper,num_dependents_deps.dev:0 github.com/ovsinc/errors,num_dependents_deps.dev:0 github.com/ovsinc/multilog,num_dependents_deps.dev:0 @@ -902544,6 +918705,7 @@ github.com/owen26/ngx-owl-carousel-es6,num_dependents_deps.dev:0 github.com/owen26/snowflakesjs,num_dependents_deps.dev:0 github.com/owen26/xn-snowflakes,num_dependents_deps.dev:0 github.com/owenallenaz/simple-domain,num_dependents_deps.dev:0 +github.com/owenandrews/countapi-action, github.com/owenbaoguojie/angular2.0,num_dependents_deps.dev:0 github.com/owenburton/mempool,num_dependents_deps.dev:0 github.com/owencalvin/RakkitQL,num_dependents_deps.dev:0 @@ -902596,6 +918758,8 @@ github.com/owenthewizard/stackblur,num_dependents_deps.dev:0 github.com/owentuz/lox-lang-go,num_dependents_deps.dev:0 github.com/owenversteeg/min,num_dependents_deps.dev:0 github.com/owenvoke/arionum-js, +github.com/owenvoke/composer-action, +github.com/owenvoke/phpunit-action, github.com/owenwaller/github-actions-demo,num_dependents_deps.dev:0 github.com/owenwe/dynamodb-utils,num_dependents_deps.dev:0 github.com/owenyang0/BookShelf,num_dependents_deps.dev:0 @@ -902685,6 +918849,7 @@ github.com/owlz/larissa_boost, github.com/owlz/sharePlayer, github.com/owlz/winevt, github.com/own2pwn/yoga-layout-prebuilt, +github.com/own3d/bunny-action, github.com/ownage-ltd/ether-router,num_dependents_deps.dev:0 github.com/ownage-ltd/femto-db,num_dependents_deps.dev:0 github.com/ownaginatious/amqp-client-cli, @@ -902834,6 +918999,7 @@ github.com/owtotwo/Offline-115, github.com/owtotwo/justone, github.com/owtotwo/justone-rs,num_dependents_deps.dev:0 github.com/owtotwo/knives, +github.com/owulveryck/action-owm2svg, github.com/owulveryck/gomarkablestream,num_dependents_deps.dev:0 github.com/owulveryck/gostreamplot,num_dependents_deps.dev:0 github.com/owulveryck/khappygo,num_dependents_deps.dev:0 @@ -902918,6 +919084,7 @@ github.com/oxidecomputer/smf,num_dependents_deps.dev:0 github.com/oxidecomputer/third-party-api-clients,num_dependents_deps.dev:2 github.com/oxidecomputer/usdt,num_dependents_deps.dev:1 github.com/oxidecomputer/zone,num_dependents_deps.dev:0 +github.com/oxidize-rb/cross-gem-action, github.com/oxidizer-rs/oxidizer,num_dependents_deps.dev:0 github.com/oxidizers/drdns,num_dependents_deps.dev:0 github.com/oxidizers/rmdb,num_dependents_deps.dev:0 @@ -902969,6 +919136,10 @@ github.com/oxplot/raspberrypi-archlinux-installer,num_dependents_deps.dev:0 github.com/oxplot/rssgen,num_dependents_deps.dev:0 github.com/oxplot/ssmenv,num_dependents_deps.dev:0 github.com/oxplot/ted2mkv, +github.com/oxr463/setup-cordova, +github.com/oxr463/setup-leiningen, +github.com/oxsecurity/megalinter, +github.com/oxsecurity/ox-security-scan, github.com/oxssy/oxssy,num_dependents_deps.dev:0 github.com/oxssy/oxssy-config,num_dependents_deps.dev:0 github.com/oxssy/oxssy-request,num_dependents_deps.dev:0 @@ -903014,6 +919185,9 @@ github.com/oxygenhq/oxygen-logger, github.com/oxygenjs/async,num_dependents_deps.dev:0 github.com/oxygenplug/tedious,num_dependents_deps.dev:0 github.com/oxygens/CachedPassthroughMirror,num_dependents_deps.dev:0 +github.com/oxygenxml/oxygen-script-comparison-action, +github.com/oxygenxml/oxygen-script-documentation-action, +github.com/oxygenxml/oxygen-scripting-validation-action, github.com/oxygine/oxygine-framework,criticality_score:0.304450 github.com/oxyii/react-native-default-locale,num_dependents_deps.dev:0 github.com/oxyii/react-native-web-router,num_dependents_deps.dev:0 @@ -903268,6 +919442,7 @@ github.com/ozanzgur/mlpl, github.com/ozars/cymove, github.com/ozawa-hi/agatereports, github.com/ozayduman/specification-builder,num_dependents_deps.dev:0 +github.com/ozaytsev86/create-env-file-action, github.com/ozbe/aws-vault-proxy,num_dependents_deps.dev:0 github.com/ozbe/rust-pocket,num_dependents_deps.dev:0 github.com/ozbe/weather.ozbe.io,num_dependents_deps.dev:0 @@ -903435,6 +919610,7 @@ github.com/oznakn/mongoose-plugin-deep-populate,num_dependents_deps.dev:0 github.com/oznakn/nest-redis-event-emitter, github.com/oznu/docker-homebridge,criticality_score:0.340260 github.com/oznu/ffmpeg-for-homebridge,num_dependents_deps.dev:0 +github.com/oznu/gh-wiki-edit-discord-notification, github.com/oznu/hap-client, github.com/oznu/homebridge-config-ui-x,"criticality_score:0.555520,num_dependents_deps.dev:0" github.com/oznu/homebridge-daikin-esp8266,num_dependents_deps.dev:0 @@ -903909,6 +920085,7 @@ github.com/p141592/stformatter, github.com/p147x/shibesbot,num_dependents_deps.dev:0 github.com/p14yground/go-github-selfupdate,num_dependents_deps.dev:0 github.com/p16/ReactMatrix,num_dependents_deps.dev:0 +github.com/p16i/github-action-yaspeller, github.com/p16n/pbdb,num_dependents_deps.dev:0 github.com/p16n/pblb,num_dependents_deps.dev:0 github.com/p16n/pbly,num_dependents_deps.dev:0 @@ -903941,6 +920118,7 @@ github.com/p1ho/site-validator-cli,num_dependents_deps.dev:0 github.com/p1llus/gomal,num_dependents_deps.dev:0 github.com/p1nchy/on-track_demo,num_dependents_deps.dev:0 github.com/p1ngu1n0/meiniu, +github.com/p1nkun1c0rns/prometheus-operator-lint-action, github.com/p1pchenk0/vue-handy-subscriptions,num_dependents_deps.dev:0 github.com/p1pchenk0/vue-mixed-props,num_dependents_deps.dev:0 github.com/p1pchenk0/vuex-multi-commit,num_dependents_deps.dev:0 @@ -904040,6 +920218,9 @@ github.com/p3g4asus/pygocomma, github.com/p3gleg/whaler,num_dependents_deps.dev:0 github.com/p3k/germknoedel,num_dependents_deps.dev:0 github.com/p3kb/paginate,num_dependents_deps.dev:0 +github.com/p3lim/license-year-updater, +github.com/p3lim/lua-doc-parser, +github.com/p3lim/toc-interface-updater, github.com/p3ls/go-ps,num_dependents_deps.dev:0 github.com/p3ls/goexpect,num_dependents_deps.dev:0 github.com/p3ls/lsports,num_dependents_deps.dev:0 @@ -904099,6 +920280,8 @@ github.com/p4lang/ptf, github.com/p4lang/tutorials,criticality_score:0.419920 github.com/p4networking/bfrt-perf,num_dependents_deps.dev:0 github.com/p4networking/proto,num_dependents_deps.dev:0 +github.com/p4p1/linkedin-marketing-workflow, +github.com/p4p1/tryhackme-badge-workflow, github.com/p4pupro/epic-react-spinners,num_dependents_deps.dev:0 github.com/p4r4n0y1ng/pyfgt, github.com/p4r4n0y1ng/pyfmg, @@ -904174,6 +920357,9 @@ github.com/p9c/qu,num_dependents_deps.dev:0 github.com/p9kim/grpc_startertemplate,num_dependents_deps.dev:0 github.com/pBread/Async-Cacher, github.com/pBread/Entity-Query, +github.com/pCYSl5EDgo/cat, +github.com/pCYSl5EDgo/create-unitypackage, +github.com/pCYSl5EDgo/setup-unity, github.com/pCYSl5EDgo/unitypackage,num_dependents_deps.dev:0 github.com/pCloud/pcloud-sdk-js, github.com/pDESy/pDESy, @@ -904296,10 +920482,12 @@ github.com/paallaire/debug-breakpoint-scss,num_dependents_deps.dev:0 github.com/paallaire/environment,num_dependents_deps.dev:0 github.com/paalolsen/OlsenFirstApp,num_dependents_deps.dev:0 github.com/paalolsen/npmtests,num_dependents_deps.dev:0 +github.com/paambaati/codeclimate-action, github.com/paambaati/express-api-helper, github.com/paambaati/grunt-obfuscator-redux,num_dependents_deps.dev:0 github.com/paambaati/mae, github.com/paambaati/node-liftbridge,num_dependents_deps.dev:0 +github.com/paambaati/tfc-output-action, github.com/paanSinghCoder/OutFrontJS,num_dependents_deps.dev:0 github.com/paangaflo/convert-values-properties,num_dependents_deps.dev:0 github.com/paapi-team/paapi-java-sdk,num_dependents_deps.dev:0 @@ -904358,6 +920546,7 @@ github.com/pabiagioli/webshooters,num_dependents_deps.dev:0 github.com/pabigot/buffer-layout,num_dependents_deps.dev:398 github.com/pabigot/eslint-plugin-pabigot,num_dependents_deps.dev:0 github.com/pabigot/test-error,num_dependents_deps.dev:0 +github.com/pabio/github-actions-starter, github.com/pabla/eslint-config,num_dependents_deps.dev:0 github.com/pablaber/beermapping,num_dependents_deps.dev:0 github.com/pablaber/peloton-client-node,num_dependents_deps.dev:0 @@ -904407,9 +920596,13 @@ github.com/pablo-moreno/python-aemet, github.com/pablo-moreno/spook, github.com/pablo-moreno/tw2gif, github.com/pablo-ruth/gohelm,num_dependents_deps.dev:0 +github.com/pablo-statsig/datadog, +github.com/pablo-statsig/gh-pr-content-checker, +github.com/pablo-statsig/validate-json-action, github.com/pablo/huawei-modem-python-api-client, github.com/pablo14/funPyModeling, github.com/pablo1v/adonis-node-websocket,num_dependents_deps.dev:0 +github.com/pablo1v/crowdin-updater, github.com/pablo1v/notore, github.com/pablo31/ill_be_back,num_dependents_deps.dev:0 github.com/pablo3443/gantt-elastic,num_dependents_deps.dev:0 @@ -904461,6 +920654,7 @@ github.com/pablofierro/react-drag-select,num_dependents_deps.dev:0 github.com/pablofloreshdz/go-utils,num_dependents_deps.dev:0 github.com/pablofuentes88/MATRICIntegrationDemo,num_dependents_deps.dev:0 github.com/pablofullana/solhint-watch,num_dependents_deps.dev:0 +github.com/pablogamboa/action-get-merged-pull-request, github.com/pablogamiz/safeevents-backend,num_dependents_deps.dev:0 github.com/pablogilvan/transaction,num_dependents_deps.dev:0 github.com/pabloh/sequel-force-hooks,num_dependents_deps.dev:0 @@ -904719,6 +920913,7 @@ github.com/pachyderm/jupyterlab-pachyderm, github.com/pachyderm/jupyterlab-pachyderm-theme, github.com/pachyderm/openshift-operator,num_dependents_deps.dev:0 github.com/pachyderm/pachyderm,"criticality_score:0.652790,num_dependents_deps.dev:16" +github.com/pachyderm/pachyderm-actions, github.com/pachyderm/pachyderm-mkdocs-theme, github.com/pachyderm/pfs,num_dependents_deps.dev:19 github.com/pachyderm/rust-pachyderm,num_dependents_deps.dev:0 @@ -904765,6 +920960,7 @@ github.com/packadic/framework,num_dependents_deps.dev:0 github.com/packadic/ghpages-theme,num_dependents_deps.dev:0 github.com/package-url/packageurl-java,num_dependents_deps.dev:102 github.com/package-url/packageurl-js,num_dependents_deps.dev:8 +github.com/package-url/packageurl-php, github.com/package-url/packageurl-python, github.com/packagecontrol/st_package_reviewer, github.com/packaged-ui/ckeditor5-editor-iframe, @@ -904784,6 +920980,7 @@ github.com/packagelib/avro-service-clients, github.com/packagelib/flask-avro, github.com/packagelib/pyramid-avro, github.com/packagely/sequential-request,num_dependents_deps.dev:0 +github.com/packagemap/packagemap-java-parser, github.com/packages-npm/gr-concat-string,num_dependents_deps.dev:0 github.com/packages-npm/js-utils,num_dependents_deps.dev:0 github.com/packagesmith/packagesmith, @@ -904831,6 +921028,7 @@ github.com/packetbroker/go-api,num_dependents_deps.dev:1 github.com/packetbroker/pb,num_dependents_deps.dev:0 github.com/packetcap/go-pcap,num_dependents_deps.dev:0 github.com/packetchaos/Navi, +github.com/packetcoders/action-setup-cache-python-poetry, github.com/packetcollision/cabot-alert-pushover, github.com/packetferret/cso_ansible_sdk, github.com/packetflinger/q2admind,num_dependents_deps.dev:0 @@ -904898,6 +921096,7 @@ github.com/packmate/assure,num_dependents_deps.dev:0 github.com/packmate/mail,num_dependents_deps.dev:0 github.com/packmate/route,num_dependents_deps.dev:0 github.com/packmule/packmule,num_dependents_deps.dev:0 +github.com/packocz/sfdx-code-review-action, github.com/packom/httpd-util,num_dependents_deps.dev:0 github.com/packom/i2cbus,num_dependents_deps.dev:0 github.com/packom/i2cbus-api,num_dependents_deps.dev:0 @@ -904934,6 +921133,7 @@ github.com/packtpublishing/hands-on-serverless-applications-with-go,num_dependen github.com/packtpublishing/hands-on-software-engineering-with-golang,num_dependents_deps.dev:0 github.com/packtpublishing/mastering-go,num_dependents_deps.dev:0 github.com/packtpublishing/mastering-go-second-edition,num_dependents_deps.dev:0 +github.com/packtracker/report, github.com/packtracker/webpack-plugin,num_dependents_deps.dev:2 github.com/packula/eslint-config,num_dependents_deps.dev:0 github.com/packula/jest-config, @@ -904997,6 +921197,7 @@ github.com/pacotei/flask-pwa, github.com/pacotei/flask-vuejs, github.com/pacowong/pypownet, github.com/pacoxu/corefile-migration,num_dependents_deps.dev:0 +github.com/pacoxu/github-repos-stats, github.com/pacproj/fabric-sdk-go,num_dependents_deps.dev:0 github.com/pacslab/pacs_locust, github.com/pacso/aoc_rb,num_dependents_deps.dev:0 @@ -905108,6 +921309,7 @@ github.com/padmalcom/jotts, github.com/padmalcom/text2numde, github.com/padmarajnidagundi/Cypress-POM-Ready-To-Use, github.com/padmarajnidagundi/Protractor-POM-Ready-To-Use,num_dependents_deps.dev:0 +github.com/padmashree12/github-workflow-try, github.com/padmec-reservoir/ELLIPTIc, github.com/padmec-reservoir/elliptic_meshql, github.com/padmec-reservoir/impress, @@ -905147,6 +921349,12 @@ github.com/padsbanger/mobx-toastr,num_dependents_deps.dev:0 github.com/paduel/darwinex_ticks, github.com/paduel/fhub, github.com/padunk/can,num_dependents_deps.dev:0 +github.com/padupe/action-compare-development-time, +github.com/padupe/action-compare-development-time-github-app, +github.com/padupe/action-content-change-validation, +github.com/padupe/action-generate-token-github-app, +github.com/padupe/action-validate-param-pr, +github.com/padurean/https-certificate-expiry-health-check-action, github.com/padurean/make-image-transparent,num_dependents_deps.dev:0 github.com/padurets/BuildString,num_dependents_deps.dev:0 github.com/padurets/all-object-keys-deep,num_dependents_deps.dev:0 @@ -905312,6 +921520,7 @@ github.com/pagekit/vue-event-manager,num_dependents_deps.dev:0 github.com/pagekit/vue-fields,num_dependents_deps.dev:0 github.com/pagekit/vue-resource,"criticality_score:0.353190,num_dependents_deps.dev:70" github.com/pagekite/upagekite, +github.com/pagely/action-deploy, github.com/pagemedias/jsontemplate,num_dependents_deps.dev:0 github.com/pagemedias/npm-aws-ssm-params,num_dependents_deps.dev:0 github.com/pagemodel/page-model-tools,num_dependents_deps.dev:4 @@ -905497,6 +921706,7 @@ github.com/pahud/gitpod-workspace,num_dependents_deps.dev:0 github.com/pai-eas/eas-java-sdk,num_dependents_deps.dev:0 github.com/paiakshay998/edtech_csf,num_dependents_deps.dev:0 github.com/paidgeek/myon,num_dependents_deps.dev:0 +github.com/paigejulianne/picoorm, github.com/paigelindahl/lotide,num_dependents_deps.dev:0 github.com/paigereeves/hoard-sys,num_dependents_deps.dev:0 github.com/paigewilliams/react-responsive-navbar,num_dependents_deps.dev:0 @@ -905542,6 +921752,7 @@ github.com/painterjs/painter-kernel,num_dependents_deps.dev:0 github.com/paintmeyellow/gotron,num_dependents_deps.dev:0 github.com/paintparty/rygb-js, github.com/paintthedream/react-input-mask-persian,num_dependents_deps.dev:0 +github.com/paion-data/github-actions-workflows, github.com/paip-web/sshyc, github.com/paipaoso/common,num_dependents_deps.dev:0 github.com/paipaoso/kube,num_dependents_deps.dev:0 @@ -905850,9 +922061,12 @@ github.com/pakuyuya/s3-web-browser,num_dependents_deps.dev:0 github.com/pakwheels/react-native-multi-validation,num_dependents_deps.dev:0 github.com/pakwoon/cli,num_dependents_deps.dev:0 github.com/pakyow/pakyow,"criticality_score:0.433710,num_dependents_deps.dev:4" +github.com/pal-paul/bigquery-service-action, +github.com/pal-paul/sa-key-rotation, github.com/pal03377/audiosynth,num_dependents_deps.dev:0 github.com/pal03377/svelte-sortablejs,num_dependents_deps.dev:0 github.com/palabin/dcount,num_dependents_deps.dev:0 +github.com/palacera/github-action-array-element-template, github.com/palaciodaniel/horse_race_with_go,num_dependents_deps.dev:0 github.com/paladin-privacy/auth,num_dependents_deps.dev:0 github.com/paladin-privacy/profiles,num_dependents_deps.dev:0 @@ -906166,6 +922380,8 @@ github.com/palewire/air-quality-index, github.com/palewire/cpi, github.com/palewire/django-postgres-copy, github.com/palewire/inciweb-wildfires, +github.com/palewire/install-python-pipenv-pipfile, +github.com/palewire/internet-archive-upload, github.com/palewire/nifc-wildfires, github.com/palewire/noaa-wildfires, github.com/palewire/nws-aurora, @@ -906298,6 +922514,9 @@ github.com/palletone/eth-adaptor,num_dependents_deps.dev:0 github.com/palletone/go-palletone,num_dependents_deps.dev:0 github.com/palletops/aws-instance-types,num_dependents_deps.dev:0 github.com/pallets-eco/flask-caching, +github.com/pallets-eco/flask-debugtoolbar, +github.com/pallets-eco/flask-session, +github.com/pallets-eco/flask-sqlalchemy, github.com/pallets/cachelib, github.com/pallets/click,criticality_score:0.626770 github.com/pallets/flask,criticality_score:0.696030 @@ -906359,6 +922578,7 @@ github.com/palmerabollo/rest-confidence-client,num_dependents_deps.dev:0 github.com/palmerabollo/rest-confidence-client-python, github.com/palmergs/go-logging,num_dependents_deps.dev:0 github.com/palmerhq/backpack,num_dependents_deps.dev:214 +github.com/palmerhq/changecast, github.com/palmerhq/create-react-app-typescript,num_dependents_deps.dev:0 github.com/palmerhq/cypress-image-snapshot,num_dependents_deps.dev:0 github.com/palmerhq/quill-mention,num_dependents_deps.dev:0 @@ -906474,6 +922694,7 @@ github.com/pamapa/oidc-client-react,num_dependents_deps.dev:0 github.com/pamapa/oidc-client-ts,num_dependents_deps.dev:0 github.com/pamarama360/ts-telegraf-decorators,num_dependents_deps.dev:0 github.com/pamarthidurgarao/icon,num_dependents_deps.dev:0 +github.com/pamasse/auto-state-issue, github.com/pambda/create-pambda-app,num_dependents_deps.dev:0 github.com/pambda/lambda-callbackify,num_dependents_deps.dev:0 github.com/pambda/lambda-terminator,num_dependents_deps.dev:8 @@ -906664,6 +922885,7 @@ github.com/pancaprima/galaxest, github.com/pancaprima/uncurl, github.com/pancasutresna/mongoose-path-tree,num_dependents_deps.dev:0 github.com/pancentric/django-imgix, +github.com/pancetta/github-action-benchmark, github.com/panchal999/vaccine-notifier, github.com/panchaldeep009/creative-infographics,num_dependents_deps.dev:0 github.com/panchalravi/hellomod,num_dependents_deps.dev:0 @@ -906730,6 +922952,7 @@ github.com/panda-suite/bitcoin-typings, github.com/panda-suite/pandacash-cli, github.com/panda-suite/pandacash-core,num_dependents_deps.dev:0 github.com/panda0603/eslint-plugin-compat-mod,num_dependents_deps.dev:0 +github.com/panda0603/lint-action, github.com/panda1986/goav,num_dependents_deps.dev:0 github.com/panda2134/open-python, github.com/panda3d/panda3d,criticality_score:0.599120 @@ -906777,6 +923000,7 @@ github.com/pandalone/pandalone, github.com/pandaman64/cargo-nix,num_dependents_deps.dev:0 github.com/pandaman64/effective-rust,num_dependents_deps.dev:0 github.com/pandaman64/fs-tracing,num_dependents_deps.dev:0 +github.com/pandaman64/isabelle-action, github.com/pandaman64/serde-query,num_dependents_deps.dev:1 github.com/pandaman64/sion-rs,num_dependents_deps.dev:0 github.com/pandaman64/task_scope,num_dependents_deps.dev:0 @@ -906962,6 +923186,7 @@ github.com/pandolajs/pandora-ui-wechat,num_dependents_deps.dev:0 github.com/pandolajs/paui,num_dependents_deps.dev:0 github.com/pandolajs/stylelint-config-pandora,num_dependents_deps.dev:0 github.com/pandolia/qqbot, +github.com/pandom/packer-github-actions, github.com/pandomic/serverless-offline-conditional-resources,num_dependents_deps.dev:0 github.com/pandomic/serverless-offline-variables,num_dependents_deps.dev:0 github.com/pandonetwork/pando,num_dependents_deps.dev:2 @@ -907044,6 +923269,7 @@ github.com/panels/server-bridge,num_dependents_deps.dev:0 github.com/panels/static,num_dependents_deps.dev:0 github.com/panels/ui-kit,num_dependents_deps.dev:0 github.com/panemu/tiwulfx-dock,num_dependents_deps.dev:0 +github.com/paneron/action-electron-builder, github.com/paneron/extension-aperis-site, github.com/paneron/extension-ics-codes, github.com/paneron/extension-iec60417-symbols, @@ -907074,6 +923300,9 @@ github.com/pangbox/pangfiles,num_dependents_deps.dev:0 github.com/pangdogs/core,num_dependents_deps.dev:0 github.com/pangduckwai/go-examples,num_dependents_deps.dev:0 github.com/pangduckwai/goegs,num_dependents_deps.dev:0 +github.com/pangeacyber/pangea-github-action-api, +github.com/pangeacyber/pangea-github-action-audit, +github.com/pangeacyber/pangea-github-action-vault, github.com/pangealab/helios,num_dependents_deps.dev:0 github.com/pangeamt/annotated_dataset, github.com/pangeamt/dkpro_cassis_tools, @@ -907154,6 +923383,7 @@ github.com/pangxiaolong/free-time-ui, github.com/pangxieju/consoleShow,num_dependents_deps.dev:0 github.com/pangxieju/electron-fix,num_dependents_deps.dev:0 github.com/pangyun/flumen, +github.com/pangzineng/Github-Action-One-Click-Docker, github.com/pangzineng/worker,num_dependents_deps.dev:0 github.com/panhaitao/gin-demo,num_dependents_deps.dev:0 github.com/panhaoyu/django-admin-object-button, @@ -907525,6 +923755,7 @@ github.com/pansicheng/pq,num_dependents_deps.dev:0 github.com/pansihub/pancli, github.com/pansinm/gulp-view-complete,num_dependents_deps.dev:0 github.com/pansj66/serverD, +github.com/pansong291/issue-interceptor-action, github.com/panstav/dependency-tree,num_dependents_deps.dev:0 github.com/panstav/dependency-tree-cli,num_dependents_deps.dev:0 github.com/panstav/for-each-elem,num_dependents_deps.dev:0 @@ -907638,11 +923869,18 @@ github.com/pantharshit00/oauth2-surf,num_dependents_deps.dev:0 github.com/pantharshit00/prisma-docs-generator, github.com/pantharshit00/recontrib,num_dependents_deps.dev:0 github.com/pantheogen/entheogen,num_dependents_deps.dev:0 +github.com/pantheon-systems/action-autotag, +github.com/pantheon-systems/action-package-updater, +github.com/pantheon-systems/action-wporg-validator, github.com/pantheon-systems/autotag,num_dependents_deps.dev:0 github.com/pantheon-systems/go-certauth,num_dependents_deps.dev:0 +github.com/pantheon-systems/phpcompatibility-action, github.com/pantheon-systems/pmr, github.com/pantheon-systems/redshirt-cli-wrapper,num_dependents_deps.dev:0 github.com/pantheon-systems/terminus,criticality_score:0.547160 +github.com/pantheon-systems/terminus-github-actions, +github.com/pantheon-systems/validate-readme-spacing, +github.com/pantheoncarl/pantheon-deploy, github.com/pantheonsh/ArrayThatStartsAnywhere,num_dependents_deps.dev:0 github.com/pantheonsh/google-searcher,num_dependents_deps.dev:0 github.com/pantheontechnologies/cnf-nsm,num_dependents_deps.dev:0 @@ -907888,6 +924126,8 @@ github.com/paolobarbolini/rusty-s3,num_dependents_deps.dev:0 github.com/paoloboni/binance-scala-client,num_dependents_deps.dev:0 github.com/paoloboni/spray-json-derived-codecs,num_dependents_deps.dev:0 github.com/paoloboni/telegram4s,num_dependents_deps.dev:0 +github.com/paolobrasolin/ctan-submit-action, +github.com/paolobrasolin/setup-texlive-action, github.com/paolocaminiti/dom2idom,num_dependents_deps.dev:0 github.com/paolocaminiti/incremental-dom-jsonml,num_dependents_deps.dev:0 github.com/paolocaminiti/incremental-dom-to-string,num_dependents_deps.dev:0 @@ -907915,6 +924155,7 @@ github.com/paolodenti/telegram-webhook-types,num_dependents_deps.dev:0 github.com/paolodm/angular-selectize,num_dependents_deps.dev:0 github.com/paolodm/chaos-donkey, github.com/paolodragone/pymzn, +github.com/paologallinaharbur/test-packages-action, github.com/paoloitaliani/content-extractor-pi, github.com/paoloitaliani/post-processor-pi, github.com/paolojoaquin/npm-random-messages, @@ -907929,7 +924170,10 @@ github.com/paolord/lemonshark,num_dependents_deps.dev:0 github.com/paolord/meathook,num_dependents_deps.dev:0 github.com/paolord/packet-filter,num_dependents_deps.dev:0 github.com/paolord/redis-work-queue,num_dependents_deps.dev:0 +github.com/paolorechia/fast-pytest-github-action, +github.com/paolorechia/pox, github.com/paolorechia/rest-api-client, +github.com/paolorevillosa/release-change-logs, github.com/paoloricciuti/react-sketch,num_dependents_deps.dev:0 github.com/paoloripamonti/face-recognition, github.com/paolorovella/hubot-save-links-tumblr,num_dependents_deps.dev:0 @@ -908267,6 +924511,7 @@ github.com/papnkukn/subsrt,num_dependents_deps.dev:0 github.com/papnkukn/vboxmanage-rest-api,num_dependents_deps.dev:0 github.com/papnkukn/xlsx2json,num_dependents_deps.dev:0 github.com/papo84/plogger,num_dependents_deps.dev:0 +github.com/papodaca/install-docker-action, github.com/papodaca/node-diff3-wrapper, github.com/papousek/gopay-django-api, github.com/papp-balazs/nixi,num_dependents_deps.dev:0 @@ -908305,10 +924550,12 @@ github.com/papucicumuci/apm,num_dependents_deps.dev:0 github.com/papucicumuci/radu-cli,num_dependents_deps.dev:0 github.com/papunmohanty/cloud-helper, github.com/papuruth/react-form,num_dependents_deps.dev:0 +github.com/paqato/docker-tag-action, github.com/paqmind/data-lens,num_dependents_deps.dev:0 github.com/paquette/ui,num_dependents_deps.dev:0 github.com/paquettepy/SquareCordovaIntegration,num_dependents_deps.dev:0 github.com/paquettg/php-html-parser,criticality_score:0.400090 +github.com/paquettg/string-encoder, github.com/paquolalab/dRFEtools, github.com/par-mais-tecnologia/clicksign-nodejs,num_dependents_deps.dev:0 github.com/par-mais-tecnologia/dynamito,num_dependents_deps.dev:0 @@ -908319,6 +924566,7 @@ github.com/par-mais-tecnologia/par-ui,num_dependents_deps.dev:0 github.com/par-mais-tecnologia/par-ui-material,num_dependents_deps.dev:0 github.com/par-mais-tecnologia/seneca-express-actions-transport,num_dependents_deps.dev:0 github.com/par-mais-tecnologia/sequelize,num_dependents_deps.dev:0 +github.com/par-tec/docker-push-gar-image, github.com/par2/lamana, github.com/parabirb/lrs14, github.com/parablesoft/email-modal,num_dependents_deps.dev:0 @@ -908436,6 +924684,7 @@ github.com/parafoxia/chatto, github.com/parafoxia/deputil, github.com/parafoxia/hikari-kasai, github.com/parafoxia/len8, +github.com/parafoxia/pip-install, github.com/parafoxia/vidyo, github.com/parafuzo/google-directions,num_dependents_deps.dev:0 github.com/parafuzo/zenvia,num_dependents_deps.dev:0 @@ -908559,6 +924808,7 @@ github.com/paramby/floatheader,num_dependents_deps.dev:0 github.com/paramdhal/gulpstart,num_dependents_deps.dev:0 github.com/paramedios/netap,num_dependents_deps.dev:0 github.com/parameswar-mondal/parameswar,num_dependents_deps.dev:0 +github.com/parameswaranvv/aws-java-cdk-github-actions, github.com/parameter-concern/pygidl, github.com/parameter1/base-cms,num_dependents_deps.dev:34 github.com/parameter1/google-ad-manager,num_dependents_deps.dev:12 @@ -908603,12 +924853,14 @@ github.com/paramsiddharth/imaginator,num_dependents_deps.dev:0 github.com/paramsiddharth/learning-go,num_dependents_deps.dev:0 github.com/paramsiddharth/statushttp,num_dependents_deps.dev:0 github.com/paramsingh/pylistenbrainz, +github.com/paramsinghvc/gh-action-bump-version, github.com/paramsinghvc/mason,num_dependents_deps.dev:0 github.com/paramsinghvc/react-anime,num_dependents_deps.dev:0 github.com/paramsinghvc/redux-hooks,num_dependents_deps.dev:0 github.com/paramsinghvc/redux-operation, github.com/paramt/VideoCloud, github.com/paramt/mishap, +github.com/paramt/url-checker, github.com/paramusio/go-zetka,num_dependents_deps.dev:0 github.com/paranauerj/caipirinha,num_dependents_deps.dev:0 github.com/parangat94/hybridbosse, @@ -908663,6 +924915,13 @@ github.com/parashardhapola/topacedo, github.com/parashuram-patil/click_demo, github.com/parasjuneja/helm-plugin-utils,num_dependents_deps.dev:0 github.com/parasoft/annotations,num_dependents_deps.dev:0 +github.com/parasoft/deploy-environment-action, +github.com/parasoft/destroy-environment-action, +github.com/parasoft/disconnect-server-action, +github.com/parasoft/execute-job-action, +github.com/parasoft/run-cpptest-action, +github.com/parasoft/run-dottest-action, +github.com/parasoft/run-jtest-action, github.com/parasol-tree/dew-ui,num_dependents_deps.dev:0 github.com/parasomn1a/algorithm,num_dependents_deps.dev:0 github.com/paraspawn/sellerapp-assignment,num_dependents_deps.dev:0 @@ -908706,6 +924965,7 @@ github.com/parcellab/sqs-consumer,num_dependents_deps.dev:0 github.com/parch-js/json-serializer,num_dependents_deps.dev:2 github.com/parch-js/orm,num_dependents_deps.dev:0 github.com/parch-js/rest-serializer,num_dependents_deps.dev:0 +github.com/parchlinux/build-action, github.com/parchments/money2uppercase,num_dependents_deps.dev:0 github.com/parck/nest4ts,num_dependents_deps.dev:0 github.com/parcoor/py-propagsim, @@ -908770,6 +925030,7 @@ github.com/parente/pyttsx, github.com/parentnode/parentnode-skin-default,num_dependents_deps.dev:0 github.com/parentpom/ppom,num_dependents_deps.dev:0 github.com/parentpom/ppom-portlek,num_dependents_deps.dev:0 +github.com/paresh-deshmukh/terraform-apply-for-aws-using-secrets-in-vault, github.com/paresharma/flagstrap,num_dependents_deps.dev:0 github.com/pareshkrc/common-js,num_dependents_deps.dev:0 github.com/pareshvpatil/redis-with-circuitbreaker,num_dependents_deps.dev:0 @@ -908961,6 +925222,8 @@ github.com/parker-codes/coda-js, github.com/parker-yang/cc-bravetroops,num_dependents_deps.dev:0 github.com/parker-yang/srv-bravetroops,num_dependents_deps.dev:0 github.com/parkeragee/machinepack-twilio,num_dependents_deps.dev:0 +github.com/parkerbxyz/guru-to-github, +github.com/parkerbxyz/suggest-changes, github.com/parkerd/statsd-zabbix-backend,num_dependents_deps.dev:0 github.com/parkerdan/rn-animate-alert,num_dependents_deps.dev:0 github.com/parkerdan/rn-font-scale,num_dependents_deps.dev:0 @@ -909006,6 +925269,7 @@ github.com/parkifast/mymappi-autocomplete-js,num_dependents_deps.dev:0 github.com/parkingboss/fast-fuzzy,num_dependents_deps.dev:0 github.com/parkingboss/parkingboss-api,num_dependents_deps.dev:4 github.com/parkingboss/parkingboss-utils,num_dependents_deps.dev:12 +github.com/parkingboss/slackbot-postmessage, github.com/parkingboss/svelte-storage,num_dependents_deps.dev:0 github.com/parkito/KaCopy,num_dependents_deps.dev:0 github.com/parkji/grunt-jasmine-webpack,num_dependents_deps.dev:0 @@ -909158,6 +925422,7 @@ github.com/parpeoficial/stackerjs-forklift,num_dependents_deps.dev:0 github.com/parpeoficial/stackerjs-http,num_dependents_deps.dev:0 github.com/parpeoficial/stackerjs-orm,num_dependents_deps.dev:0 github.com/parpeoficial/stackerjs-utils,num_dependents_deps.dev:6 +github.com/parrajustin/chart-releaser-action, github.com/parripandian/expression-rule-engine,num_dependents_deps.dev:0 github.com/parripandian/pcf-eureka-client,num_dependents_deps.dev:0 github.com/parris/iz,num_dependents_deps.dev:34 @@ -909697,6 +925962,7 @@ github.com/partletboost/partletboost, github.com/partlets/partlets, github.com/partmenu/logger,num_dependents_deps.dev:0 github.com/partmor/ezaero, +github.com/partnerhero/action-webhook-slack-notify, github.com/partnerhero/gapi-script, github.com/partnerjun/gan2chart,num_dependents_deps.dev:0 github.com/partnerlfx/hello-world,num_dependents_deps.dev:0 @@ -909718,6 +925984,7 @@ github.com/partoutx/sails-arangodb,num_dependents_deps.dev:0 github.com/partrickli/typescript-algorithms,num_dependents_deps.dev:0 github.com/partridgejiang/Kekule.js,num_dependents_deps.dev:0 github.com/partsjs/async,num_dependents_deps.dev:18 +github.com/partslogic/beanstalk-deploy, github.com/parttimenerd/cpuset, github.com/parttimenerd/temci, github.com/partumgmbh/eslint-config,num_dependents_deps.dev:0 @@ -909864,7 +926131,9 @@ github.com/pascalgn/autosetup,num_dependents_deps.dev:0 github.com/pascalgn/azure-sql-agent,num_dependents_deps.dev:0 github.com/pascalgn/build-cache-extension,num_dependents_deps.dev:0 github.com/pascalgn/for-each-branch,num_dependents_deps.dev:0 +github.com/pascalgn/npm-publish-action, github.com/pascalgn/properties-maven-extension,num_dependents_deps.dev:0 +github.com/pascalgn/size-label-action, github.com/pascalgn/yaml-crypt,num_dependents_deps.dev:0 github.com/pascalgrimaud/generator-jhipster-ci,num_dependents_deps.dev:0 github.com/pascalgrimaud/generator-jhipster-docker,num_dependents_deps.dev:0 @@ -909909,6 +926178,7 @@ github.com/pascallin/deco-brick-cli,num_dependents_deps.dev:0 github.com/pascallin/deco-brick-rpc,num_dependents_deps.dev:0 github.com/pascallin/gin-server,num_dependents_deps.dev:0 github.com/pascallin/thruster,num_dependents_deps.dev:0 +github.com/pascallj/cache-key-check, github.com/pascallohrer/filler-game-api,num_dependents_deps.dev:0 github.com/pascallohrer/fillergame,num_dependents_deps.dev:0 github.com/pascallouisperez/gorp,num_dependents_deps.dev:0 @@ -909930,6 +926200,7 @@ github.com/pascalsystem/callback-manager-ts,num_dependents_deps.dev:0 github.com/pascalsystem/loghistory,num_dependents_deps.dev:0 github.com/pascalsystem/multivalidator-ts,num_dependents_deps.dev:0 github.com/pascalsystem/mysql-sequence-ts, +github.com/pascalvaccaro/check-render-preview, github.com/pascalvb/frontend-stuff,num_dependents_deps.dev:0 github.com/pascalvgemert/vue-instant-page,num_dependents_deps.dev:0 github.com/pascalvgemert/vue-simple-validator,num_dependents_deps.dev:0 @@ -909943,6 +926214,7 @@ github.com/pasch13/pyMensa, github.com/paschalidi/cash-machine-problem,num_dependents_deps.dev:0 github.com/paschalidi/eslint-config-es6,num_dependents_deps.dev:0 github.com/paschalidi/shared-linter,num_dependents_deps.dev:0 +github.com/paschdan/helm-chart-release-to-repo-action, github.com/paschelino/luallafano,num_dependents_deps.dev:0 github.com/paschendale/geoserver-search-cache,num_dependents_deps.dev:0 github.com/pascollin/usbnetpower8800,num_dependents_deps.dev:0 @@ -910170,6 +926442,7 @@ github.com/passionate-engineer/liff-v2-sdk,num_dependents_deps.dev:0 github.com/passionblob/muix, github.com/passionke/pandasplit, github.com/passionke/starry,num_dependents_deps.dev:0 +github.com/passionkind/action-cloud-run, github.com/passionkind/fastbill-client,num_dependents_deps.dev:0 github.com/passionkind/probot-serverless-now,num_dependents_deps.dev:0 github.com/passionkind/stackdriver-logging-json,num_dependents_deps.dev:0 @@ -910292,6 +926565,7 @@ github.com/pastak/wemf,num_dependents_deps.dev:0 github.com/pastas/metran, github.com/pastas/pastas, github.com/pastas/pastastore, +github.com/pastaway2/food-selection, github.com/pastcompute/teuthis,num_dependents_deps.dev:0 github.com/pastdev/clconf,num_dependents_deps.dev:0 github.com/pastdev/com-pastdev-liferay-scripting,num_dependents_deps.dev:0 @@ -910343,6 +926617,7 @@ github.com/pastgift/sqlstring-sqlite-js, github.com/pastgift/ucloud-helper-js,num_dependents_deps.dev:0 github.com/pasties/validator,num_dependents_deps.dev:0 github.com/pasties/validator-web,num_dependents_deps.dev:0 +github.com/pastisprologue/bitwarden-github-action, github.com/pastjean/actix-web-requestid,num_dependents_deps.dev:0 github.com/pastjean/koa-prometheus,num_dependents_deps.dev:0 github.com/pastjean/pino-logdna-formatter,num_dependents_deps.dev:0 @@ -910373,6 +926648,7 @@ github.com/pastyman/alib-aquery,num_dependents_deps.dev:0 github.com/pastyman/alib-array,num_dependents_deps.dev:0 github.com/pastyman/alib-hashtable,num_dependents_deps.dev:0 github.com/pasuder/python-project-skeleton, +github.com/pasujemito/aws-s3-bucket-sync-action, github.com/pasupulaphani/angular-csrf-cross-domain,num_dependents_deps.dev:0 github.com/pasupulaphani/angular-gist-embed,num_dependents_deps.dev:0 github.com/pasupulaphani/angular-socialsharing,num_dependents_deps.dev:0 @@ -910409,6 +926685,7 @@ github.com/pasztorpisti/sql-migrate,num_dependents_deps.dev:0 github.com/paszymaja/stalin_sort, github.com/pat-flew/har-downloader,num_dependents_deps.dev:0 github.com/pat-project/web-sdk,num_dependents_deps.dev:0 +github.com/pat-s/always-upload-cache, github.com/pat/after_commit,num_dependents_deps.dev:3 github.com/pat/calendav,num_dependents_deps.dev:0 github.com/pat/combustion,"criticality_score:0.449870,num_dependents_deps.dev:2" @@ -910519,6 +926796,7 @@ github.com/patbuergin/angular-widget-grid,num_dependents_deps.dev:0 github.com/patburke/mercury-d3axis,num_dependents_deps.dev:0 github.com/patcable/boink,num_dependents_deps.dev:0 github.com/patceev/scala-binance-api,num_dependents_deps.dev:0 +github.com/patch-technology/action-haml-lint, github.com/patch-technology/patch-node,num_dependents_deps.dev:0 github.com/patchan/contrast-checker,num_dependents_deps.dev:0 github.com/patchapps/hash-that-tree,num_dependents_deps.dev:0 @@ -910676,6 +926954,7 @@ github.com/pathakdhruv/GalDynPsr, github.com/pathakdhruv/GalDynPsrFreq, github.com/pathakshashank17/google-err,num_dependents_deps.dev:0 github.com/pathakswetank/sportspy, +github.com/pathanafrojkhan/TestAction, github.com/patharanordev/pangpuriye, github.com/pathawks/jekyll-commonmark,num_dependents_deps.dev:54 github.com/pathawks/jekyll-smartify,num_dependents_deps.dev:0 @@ -910871,6 +927150,7 @@ github.com/patorjk/figlet.js,"criticality_score:0.447630,num_dependents_deps.dev github.com/patorjk/grunt-figlet,num_dependents_deps.dev:0 github.com/patorjk/mui-dt, github.com/patorma/golang,num_dependents_deps.dev:0 +github.com/patoroco/doorkeeper, github.com/patoroco/pyberdrola, github.com/patosai/grunt-image-autoresize,num_dependents_deps.dev:0 github.com/patosai/shp2json-js,num_dependents_deps.dev:0 @@ -910934,7 +927214,9 @@ github.com/patrick-fs/fullstory-javascript,num_dependents_deps.dev:0 github.com/patrick-gu/myth,num_dependents_deps.dev:0 github.com/patrick-gu/unused_rs,num_dependents_deps.dev:0 github.com/patrick-hudson/hyper-aww,num_dependents_deps.dev:0 +github.com/patrick-janeiro/helmsman-github-action, github.com/patrick-jones/react-datasheet-ex,num_dependents_deps.dev:0 +github.com/patrick-kidger/action_update_python_project, github.com/patrick-kidger/diffrax, github.com/patrick-kidger/equinox, github.com/patrick-kidger/mkdocs_include_exclude_files, @@ -911170,6 +927452,10 @@ github.com/patrickhulce/umzug-mongo,num_dependents_deps.dev:20 github.com/patrickhulce/webpack-alias-helper,num_dependents_deps.dev:0 github.com/patrickio/chanmerger,num_dependents_deps.dev:0 github.com/patrickiscoding/passwordvalidator,num_dependents_deps.dev:0 +github.com/patrickjahns/ansible-later-action, +github.com/patrickjahns/chlgr, +github.com/patrickjahns/dependabot-terraform-action, +github.com/patrickjahns/version-drafter-action, github.com/patrickjamesbeam/forcedhttpsbluemix,num_dependents_deps.dev:0 github.com/patrickjane/hss-server, github.com/patrickjane/hss-skill, @@ -911400,6 +927686,7 @@ github.com/patrickwalker/gopher-it,num_dependents_deps.dev:0 github.com/patrickwalker/mysql-events,num_dependents_deps.dev:0 github.com/patrickwest/EukRep, github.com/patrickwolleb/generator-koa-rest,num_dependents_deps.dev:0 +github.com/patrickwyler/gcs-bucket-sync-action, github.com/patrickxb/gulp-iced,num_dependents_deps.dev:0 github.com/patrickxchong/eleventy-plugin-svg-sprite,num_dependents_deps.dev:0 github.com/patrickxu1986/py_master, @@ -911439,6 +927726,7 @@ github.com/patrikmasiar/react-keyboard-key, github.com/patrikmolsson/mysql-node-migrator,num_dependents_deps.dev:0 github.com/patrikmuniak/kubernetes_tutorial,num_dependents_deps.dev:0 github.com/patrikniebur/vue-drag,num_dependents_deps.dev:0 +github.com/patriknyblad/add-pr-checks, github.com/patrikolin/bmr,num_dependents_deps.dev:0 github.com/patrikolin/bsp,num_dependents_deps.dev:0 github.com/patrikolin/butler-burton,num_dependents_deps.dev:0 @@ -911526,6 +927814,7 @@ github.com/patrislav1/vmake, github.com/patritech/lint,num_dependents_deps.dev:0 github.com/patrixr/capacitor.js,num_dependents_deps.dev:0 github.com/patrixr/functional-chain,num_dependents_deps.dev:0 +github.com/patrixr/jira-release-notes, github.com/patrixr/kankyo,num_dependents_deps.dev:0 github.com/patrixr/lodash-patterns,num_dependents_deps.dev:0 github.com/patrixr/pocket-cms,num_dependents_deps.dev:0 @@ -911550,6 +927839,8 @@ github.com/patrodyne/patrodyne-etl,num_dependents_deps.dev:0 github.com/patrodyne/patrodyne-scripting,num_dependents_deps.dev:0 github.com/patrodyne/patrodyne-site,num_dependents_deps.dev:0 github.com/patron-it/opencanary, +github.com/patrontech/devops-tf-cloud-run, +github.com/patrontech/devops-tf-cloud-update-var, github.com/patronus-checker/enchant-rs,num_dependents_deps.dev:0 github.com/patronus-checker/languagetool-rs,num_dependents_deps.dev:0 github.com/patrox/dw-archetype,num_dependents_deps.dev:0 @@ -911712,10 +928003,12 @@ github.com/patwritescode/fra,num_dependents_deps.dev:0 github.com/patwritescode/redux-form-yup,num_dependents_deps.dev:0 github.com/patwritescode/tinjector,num_dependents_deps.dev:0 github.com/patx/pickledb, +github.com/patxibocos/google-photos-exporter, github.com/patxibocos/matriz,num_dependents_deps.dev:0 github.com/patxoca/arv.autotest, github.com/patxoca/djira, github.com/patyk/streamshift, +github.com/patzick/action-get-comment-url, github.com/patzj/number-system,num_dependents_deps.dev:0 github.com/pau1m/web3-toolbox,num_dependents_deps.dev:0 github.com/paualberto/fuck-fl-studio,num_dependents_deps.dev:0 @@ -911866,10 +928159,12 @@ github.com/paul-wolf/strgen, github.com/paul-wolf/ukpc, github.com/paul-xia/log-for-browser,num_dependents_deps.dev:0 github.com/paul-xiao/pxui, +github.com/paul-ylz/generate-artifact-tag, github.com/paul/better_heroku,num_dependents_deps.dev:0 github.com/paul/mail2matrix,num_dependents_deps.dev:0 github.com/paul/progress_bar,"criticality_score:0.431430,num_dependents_deps.dev:6" github.com/paul1278/nicetables, +github.com/paul1k/check-pr-labels, github.com/paul1k/friendly-errors-plugin, github.com/paul42/feathers-swagger,num_dependents_deps.dev:0 github.com/paul90/wiki-plugin-activity,num_dependents_deps.dev:0 @@ -912006,6 +928301,7 @@ github.com/paulcbetts/toutsuite,num_dependents_deps.dev:52 github.com/paulcbetts/when,num_dependents_deps.dev:0 github.com/paulcbetts/xvfb-maybe,num_dependents_deps.dev:2 github.com/paulcbogdan/pickle_wrap, +github.com/paulcfx/github-javascript-action, github.com/paulchakravarti/gmail-sender, github.com/paulchakravarti/linx-server,num_dependents_deps.dev:0 github.com/paulchakravarti/pgwrap, @@ -912106,6 +928402,8 @@ github.com/pauldotknopf/hot-instance,num_dependents_deps.dev:0 github.com/pauldotknopf/react-aspnet-boilerplate, github.com/pauldowman/ec2onrails,num_dependents_deps.dev:0 github.com/pauldraper/game-plus,num_dependents_deps.dev:0 +github.com/pauldraper/workflow-dispatch, +github.com/pauldruziak/move-labeled-or-milestoned-pull-request, github.com/pauldub/active_delivery_rpush,num_dependents_deps.dev:0 github.com/pauldub/cog-rust,num_dependents_deps.dev:0 github.com/paulduthoit/haremq,num_dependents_deps.dev:0 @@ -912132,6 +928430,7 @@ github.com/pauleyj/jaxbee,num_dependents_deps.dev:0 github.com/paulfalgout/backbone-moment,num_dependents_deps.dev:0 github.com/paulfalgout/gulp-unwrapper,num_dependents_deps.dev:0 github.com/paulfalgout/marionette-v3-compat,num_dependents_deps.dev:0 +github.com/paulfantom/periodic-labeler, github.com/paulfariello/aparte,num_dependents_deps.dev:0 github.com/paulfariello/radicale-auth-sasl, github.com/paulfarino/css-helpers,num_dependents_deps.dev:0 @@ -912237,6 +928536,8 @@ github.com/paulholden2/onepoint-node-sdk, github.com/paulholden2/oracle_hcm,num_dependents_deps.dev:0 github.com/paulholden2/prontoforms,num_dependents_deps.dev:0 github.com/paulholden2/sharepoint,num_dependents_deps.dev:0 +github.com/paulholden2/smartsheet-add-row, +github.com/paulholden2/smartsheet-update-row, github.com/paulholden2/springcm,num_dependents_deps.dev:0 github.com/paulholden2/springcm-node-sdk, github.com/paulholden2/taleo,num_dependents_deps.dev:0 @@ -912259,10 +928560,12 @@ github.com/paulinalewand/migrated,num_dependents_deps.dev:0 github.com/paulinalewando/migrated, github.com/paulinapmk/cec_clustering, github.com/paulineeds/Node,num_dependents_deps.dev:0 +github.com/paulinev-kth/weekly_recap_mail, github.com/paulingham/goggle-box,num_dependents_deps.dev:0 github.com/paulinhoerry/spotify-wrapper,num_dependents_deps.dev:0 github.com/paulino/django-bootstrap-sidebar, github.com/paulinshek/cryptic-colab,num_dependents_deps.dev:0 +github.com/paulinthought/google-chat-release-notifier, github.com/pauliorandall/cookies,num_dependents_deps.dev:0 github.com/pauliorandall/firefly-go,num_dependents_deps.dev:0 github.com/pauliorandall/ranch-go,num_dependents_deps.dev:0 @@ -912341,6 +928644,7 @@ github.com/paulkinlan/topicdeck, github.com/paulkinlan/web-dev-deck,num_dependents_deps.dev:0 github.com/paulkjoseph/cordova-plugin-media-streaming-service,num_dependents_deps.dev:0 github.com/paulknysh/blackbox, +github.com/paulkoanui/github-cms-action, github.com/paulkoene/homebridge-riots,num_dependents_deps.dev:0 github.com/paulkoerbitz/quox,num_dependents_deps.dev:0 github.com/paulkoerbitz/resolve-types,num_dependents_deps.dev:0 @@ -912399,6 +928703,7 @@ github.com/paullouisageneau/libdatachannel,criticality_score:0.519000 github.com/paullouismas/advanced-configuration-management,num_dependents_deps.dev:0 github.com/paullouismas/better-json-serializer,num_dependents_deps.dev:0 github.com/paulloz/bip-boup,num_dependents_deps.dev:0 +github.com/paulloz/godot-action, github.com/paulm17/requests,num_dependents_deps.dev:0 github.com/paulmach/go.osm,num_dependents_deps.dev:0 github.com/paulmach/orb,"criticality_score:0.392950,num_dependents_deps.dev:103" @@ -912514,6 +928819,7 @@ github.com/paulnta/google-activity-parser,num_dependents_deps.dev:0 github.com/paulo-al-castro/mt5b3, github.com/paulo-al-castro/mt5se, github.com/paulo-coutinho/pygemstones, +github.com/paulo-ferraz-oliveira/parse-tool-versions, github.com/paulo-janrain/gojsonvalidator,num_dependents_deps.dev:0 github.com/paulo-jm/grunt-angular-module, github.com/paulo-lexapure/LexaPuretoolbox, @@ -912561,6 +928867,7 @@ github.com/paulocheque/fabric-scripts, github.com/paulocheque/grid.min,num_dependents_deps.dev:0 github.com/paulocheque/py-social, github.com/paulocheque/tornado-rest-handler, +github.com/pauloconnor/tflint-action, github.com/paulocsanz/arraystring,num_dependents_deps.dev:0 github.com/paulocsanz/voluntary-servitude,num_dependents_deps.dev:0 github.com/paulocsilvajr/controle_pessoal_de_financas,num_dependents_deps.dev:0 @@ -912571,6 +928878,7 @@ github.com/paulodavi/webapi-with-go,num_dependents_deps.dev:0 github.com/pauloddr/bind-callbacks,num_dependents_deps.dev:0 github.com/pauloddr/google-function-authorizer,num_dependents_deps.dev:0 github.com/pauloddr/google-function-resource,num_dependents_deps.dev:0 +github.com/paulodero/OData-Inspector, github.com/paulodiovani/foaas-client,num_dependents_deps.dev:0 github.com/paulodiovani/hubot-twilio-whatsapp,num_dependents_deps.dev:0 github.com/paulodiovani/sinos-river-level-twitter,num_dependents_deps.dev:0 @@ -912686,6 +928994,7 @@ github.com/paulopacitti/onsen, github.com/paulopacitti/super-base-64,num_dependents_deps.dev:0 github.com/paulopinda/pynbiobsp, github.com/paulopinda/pytmp, +github.com/paulopiriquito/k8s-from-secrets-vault, github.com/paulopontovaz/ptsv-csv-parser,num_dependents_deps.dev:0 github.com/paulopontovaz/pv-csv-parser,num_dependents_deps.dev:0 github.com/pauloportella/bundledash,num_dependents_deps.dev:0 @@ -912896,6 +929205,8 @@ github.com/paulsayantan/youtube-tui,num_dependents_deps.dev:0 github.com/paulsbond/modelcraft, github.com/paulscherrerinstitute/cbf, github.com/paulschick/python-vohlc, +github.com/paulschuberth/check-links-action, +github.com/paulschuberth/regex-extract-action, github.com/paulschwarz/bee,num_dependents_deps.dev:0 github.com/paulschwarz/spring-dotenv,num_dependents_deps.dev:0 github.com/paulscotti/inverted_encoding, @@ -913046,6 +929357,8 @@ github.com/paultyng/terraform-provider-datadog,num_dependents_deps.dev:0 github.com/paultyng/terraform-provider-huaweicloud,num_dependents_deps.dev:0 github.com/paultyng/terraform-provider-sql,num_dependents_deps.dev:0 github.com/paultyng/terraform-provider-unifi,num_dependents_deps.dev:0 +github.com/paulushcgcj/action-java-publish, +github.com/paulushcgcj/delete-github-package, github.com/paulushcgcj/helperjs2pojo,num_dependents_deps.dev:0 github.com/paulusmack/ppp,criticality_score:0.574740 github.com/paulvanbladel/aurelia-app-cli,num_dependents_deps.dev:0 @@ -913067,6 +929380,7 @@ github.com/paulvarache/shards,num_dependents_deps.dev:0 github.com/paulvitic/cqevm,num_dependents_deps.dev:0 github.com/paulvmoreau/ng2-ui-auth,num_dependents_deps.dev:0 github.com/paulvmoreau/ngx-scroll-to,num_dependents_deps.dev:0 +github.com/paulvollmer/action-golang-gosum, github.com/paulvollmer/dependabot-config-go,num_dependents_deps.dev:0 github.com/paulvollmer/docker-httpserver-healthcheck,num_dependents_deps.dev:0 github.com/paulvollmer/editorconfig-cli,num_dependents_deps.dev:0 @@ -913079,6 +929393,7 @@ github.com/paulvollmer/jsonlint,num_dependents_deps.dev:0 github.com/paulvollmer/mks,num_dependents_deps.dev:0 github.com/paulvollmer/robotstxt-datastore,num_dependents_deps.dev:0 github.com/paulvollmer/testtable.js,num_dependents_deps.dev:0 +github.com/paulvstrashnov/yandex-s3-upload-action, github.com/paulw11/homebridge-elkm1,num_dependents_deps.dev:0 github.com/paulw11/homebridge-wiser,num_dependents_deps.dev:0 github.com/paulwalczewski/react-svg-geo-map,num_dependents_deps.dev:0 @@ -913139,6 +929454,7 @@ github.com/paulyoung/noflo-gulp-mocha,num_dependents_deps.dev:0 github.com/paulyoung/noflo-gulp-util,num_dependents_deps.dev:0 github.com/paulyoung/tss,num_dependents_deps.dev:0 github.com/paulypeter/photography-toolbox,num_dependents_deps.dev:0 +github.com/paulz/prepare-macos, github.com/paulzi/access-by-path,num_dependents_deps.dev:0 github.com/paulzi/context-selector,num_dependents_deps.dev:0 github.com/paulzi/data-settings,num_dependents_deps.dev:0 @@ -913159,6 +929475,7 @@ github.com/paulzi/polyshim,num_dependents_deps.dev:2 github.com/paulzi/simple-svg-edit,num_dependents_deps.dev:0 github.com/paulzi/svg-text-to-path,num_dependents_deps.dev:0 github.com/paulzuradzki/cnnlite, +github.com/paunin/kops, github.com/paunzz/pyotify, github.com/pauperpythonistas/python-geomark, github.com/paupi-chill-e/SCL014-md-links,num_dependents_deps.dev:0 @@ -913365,6 +929682,7 @@ github.com/pavelpat/yased, github.com/pavelpichrt/camelcase-keys-all-env,num_dependents_deps.dev:0 github.com/pavelpiha/farf,num_dependents_deps.dev:0 github.com/pavelpipus/spreadsheetfns,num_dependents_deps.dev:0 +github.com/pavelpokutnev/asciidoctor-ghpages-action, github.com/pavelpower/chooser-js,num_dependents_deps.dev:0 github.com/pavelpower/enb-less,num_dependents_deps.dev:0 github.com/pavelpower/jspb,num_dependents_deps.dev:0 @@ -913374,7 +929692,12 @@ github.com/pavelpower/numnormalize,num_dependents_deps.dev:0 github.com/pavelrevak/mpytool, github.com/pavelrevak/pyswd, github.com/pavelronaldo/lab4_po,num_dependents_deps.dev:0 +github.com/pavelsaman/file-checksums, +github.com/pavelsaman/git-nth-last-tag, +github.com/pavelsaman/nr-send-test-results, +github.com/pavelsaman/send-mocha-test-results-to-nr, github.com/pavelsaman/useful,num_dependents_deps.dev:0 +github.com/pavelsaman/website-check, github.com/pavelshadrin/react-native-os-logger, github.com/pavelsl/autofill-event,num_dependents_deps.dev:0 github.com/pavelsof/asjp, @@ -913404,6 +929727,8 @@ github.com/pavelvlasov/vscode-yaml-tools,num_dependents_deps.dev:0 github.com/pavelvolek/redux-keen,num_dependents_deps.dev:0 github.com/pavelz/iris,num_dependents_deps.dev:0 github.com/pavelz/tiny-redis,num_dependents_deps.dev:0 +github.com/pavelzw/manim_community_renderer, +github.com/pavelzw/pytest-action, github.com/paventuri/node-oauth2orize-facebook,num_dependents_deps.dev:0 github.com/paver/paver,criticality_score:0.498770 github.com/pavetok/cases, @@ -913421,6 +929746,8 @@ github.com/pavex/react-ui-layout,num_dependents_deps.dev:0 github.com/pavex/react-ui-modal-window,num_dependents_deps.dev:0 github.com/pavhov/check-balanced-go,num_dependents_deps.dev:0 github.com/pavhov/clickhouse,num_dependents_deps.dev:0 +github.com/pavi2410/AIX-Action, +github.com/pavi2410/html-preview-action, github.com/paviad/ng2-charts7,num_dependents_deps.dev:0 github.com/paviasystems/headlight-client,num_dependents_deps.dev:0 github.com/paviasystems/headlight-node-sdk,num_dependents_deps.dev:0 @@ -913556,6 +929883,7 @@ github.com/pavoni/pyloopenergy, github.com/pavoni/pyroon, github.com/pavoni/pyvera, github.com/pavouk/lgi,criticality_score:0.481060 +github.com/pavpanchekha/setup-z3, github.com/pavulurigopal/terraform_hcl,num_dependents_deps.dev:0 github.com/pavvank/tb-carousel,num_dependents_deps.dev:0 github.com/pavvell/rxstream,num_dependents_deps.dev:0 @@ -913590,6 +929918,7 @@ github.com/pawan0446/learngit,num_dependents_deps.dev:0 github.com/pawan9124/tiny_exercise,num_dependents_deps.dev:0 github.com/pawanaichra/doe, github.com/pawanaichra/pip-test, +github.com/pawanbahuguna/action-logs, github.com/pawanbisht62/raspicam,num_dependents_deps.dev:0 github.com/pawangeek/indiapins, github.com/pawangspandey/accesscontrol-middleware,num_dependents_deps.dev:8 @@ -913707,6 +930036,7 @@ github.com/pawelpalka/sprity,num_dependents_deps.dev:0 github.com/pawelpalka/sprity-lwip,num_dependents_deps.dev:0 github.com/pawelprazak/java-extended,num_dependents_deps.dev:0 github.com/pawelprazak/pulumi-kind,num_dependents_deps.dev:0 +github.com/pawelros/gha-honeycomb-marker, github.com/pawelsalawa/sqlitestudio,criticality_score:0.401000 github.com/pawelsamsel/react-native-image-formats, github.com/pawelsikora/mkdocs-export-mermaid-to-svg, @@ -913759,6 +930089,7 @@ github.com/pawlik/fetcher,num_dependents_deps.dev:0 github.com/pawlo0/lean-react-app,num_dependents_deps.dev:0 github.com/pawmint/zabbix.js, github.com/pawn9527/accumulation,num_dependents_deps.dev:0 +github.com/pawndev/go-modfile-information, github.com/pawndev/locuplot, github.com/pawnhearts/aio_api_crawler, github.com/pawnhearts/django_react_admin, @@ -913893,6 +930224,7 @@ github.com/payburner/paybutton-js-react,num_dependents_deps.dev:0 github.com/paybygroup/baelish,num_dependents_deps.dev:0 github.com/paybyphone/kinchan,num_dependents_deps.dev:0 github.com/paycash-host/paycash,num_dependents_deps.dev:0 +github.com/paychant/action.k8s, github.com/paychex/adapter-mock, github.com/paychex/adapter-node, github.com/paychex/adapter-xhr, @@ -914518,12 +930850,35 @@ github.com/pbojinov/name-that-color,num_dependents_deps.dev:0 github.com/pbojinov/react-iframe-comm,num_dependents_deps.dev:0 github.com/pbojinov/recursive-key-replace,num_dependents_deps.dev:0 github.com/pbojinov/request-ip,"criticality_score:0.350120,num_dependents_deps.dev:1254" +github.com/pboling/anonymous_active_record, github.com/pboling/capistrano_mailer,num_dependents_deps.dev:0 +github.com/pboling/celluloid-io-pg-listener, github.com/pboling/csv_pirate,num_dependents_deps.dev:0 +github.com/pboling/debug_logging, +github.com/pboling/dry_views, +github.com/pboling/each_in_batches, github.com/pboling/exception_notification,num_dependents_deps.dev:0 github.com/pboling/flag_shih_tzu,criticality_score:0.387340 +github.com/pboling/humorous_log_formatter, +github.com/pboling/include_with_respect, github.com/pboling/js-cookie-calibre,num_dependents_deps.dev:0 +github.com/pboling/month-serializer, +github.com/pboling/qfill, +github.com/pboling/rack-insight, +github.com/pboling/rack-toolbar, +github.com/pboling/rails_env_local, +github.com/pboling/resque-unique_at_runtime, +github.com/pboling/resque-unique_by_arity, +github.com/pboling/resque-unique_in_queue, +github.com/pboling/rspec-block_is_expected, +github.com/pboling/rspec-pending_for, +github.com/pboling/rspec-stubbed_env, github.com/pboling/sanitize_email,num_dependents_deps.dev:0 +github.com/pboling/shiftable, +github.com/pboling/silent_stream, +github.com/pboling/stackable_flash, +github.com/pboling/status_tag, +github.com/pboling/strict_states, github.com/pbomb/flow-immutable-models,num_dependents_deps.dev:0 github.com/pbomb/hyper-night-owl,num_dependents_deps.dev:0 github.com/pbomb/koa-ws-socket,num_dependents_deps.dev:0 @@ -914606,6 +930961,7 @@ github.com/pbriones/service-credentials,num_dependents_deps.dev:0 github.com/pbriones/watson-dialog-wrapper,num_dependents_deps.dev:0 github.com/pbriones/watson-nlc-wrapper,num_dependents_deps.dev:0 github.com/pbriones/yelp-fusion-v3, +github.com/pbrisbin/setup-tool-action, github.com/pbrisk/corelibrary, github.com/pbrln/node-secure-password,num_dependents_deps.dev:0 github.com/pbrln/passwort,num_dependents_deps.dev:0 @@ -914645,6 +931001,7 @@ github.com/pbteja1998/mybit-ui-toolkit,num_dependents_deps.dev:0 github.com/pbtrader/hubot-headlines,num_dependents_deps.dev:0 github.com/pbtrader/hubot-headlines-package-test,num_dependents_deps.dev:0 github.com/pbucher/django-bootstrap-datepicker, +github.com/pbufio/pbuf-setup-action, github.com/pbugnion/gmaps,"criticality_score:0.328440,num_dependents_deps.dev:0" github.com/pbuk-uk/chesslike-board-js, github.com/pbuk-uk/mastermind-solver-js,num_dependents_deps.dev:0 @@ -914732,6 +931089,7 @@ github.com/pcarrier/node-murmur3,num_dependents_deps.dev:0 github.com/pcasanellasp/blockscss,num_dependents_deps.dev:0 github.com/pcasaretto/go-libsass,num_dependents_deps.dev:0 github.com/pcasaretto/go-octokit,num_dependents_deps.dev:0 +github.com/pcasteran/ghcr-cleaning-action, github.com/pcaston/pyopversion, github.com/pcat-team/pc-jquery,num_dependents_deps.dev:0 github.com/pcat-team/pcat-command-install,num_dependents_deps.dev:0 @@ -914785,6 +931143,7 @@ github.com/pcesarteixeira/TesteRelease,num_dependents_deps.dev:0 github.com/pceuropa/test, github.com/pcfreak30/grunt-task-bower-dependencies,num_dependents_deps.dev:0 github.com/pcfreak30/node-typewriter,num_dependents_deps.dev:0 +github.com/pcgeek86/publish-powershell-module-action, github.com/pcgeek86/trevor-py, github.com/pcgversion/react-native-signature-canvas-optimized,num_dependents_deps.dev:0 github.com/pch1024/debug-source-map,num_dependents_deps.dev:0 @@ -914806,6 +931165,7 @@ github.com/pchain-org/pchain,num_dependents_deps.dev:0 github.com/pchain-org/pweb3,num_dependents_deps.dev:79 github.com/pchain-org/pweb3j,num_dependents_deps.dev:43 github.com/pchaitat/invrcptexporter, +github.com/pchalupa/site-health-check, github.com/pchampin/coercible_errors,num_dependents_deps.dev:0 github.com/pchampin/ld-patch-py, github.com/pchampin/mownstr,num_dependents_deps.dev:12 @@ -914839,6 +931199,7 @@ github.com/pchiwan/nprogress,num_dependents_deps.dev:0 github.com/pchiwan/sense-hat-web-emu,num_dependents_deps.dev:0 github.com/pchlenski/misdeed, github.com/pchliang/cordova-plugin-pch-alipay,num_dependents_deps.dev:0 +github.com/pchmn/firebase-cli-github-action, github.com/pchmn/insomnia-plugin-sync-gist-multiprovider,num_dependents_deps.dev:0 github.com/pchmn/la-danze-ui,num_dependents_deps.dev:0 github.com/pchmn/ng-select-filtering,num_dependents_deps.dev:0 @@ -914857,6 +931218,7 @@ github.com/pchvramesh/ng-polymer-quickstart,num_dependents_deps.dev:0 github.com/pchvramesh/polymer-ng,num_dependents_deps.dev:0 github.com/pchw/node-voicetext, github.com/pchw/vainglory,num_dependents_deps.dev:0 +github.com/pchynoweth/action-get-npm-version, github.com/pchynoweth/svelte-assets-preprocessor,num_dependents_deps.dev:0 github.com/pchynoweth/svelte-sequential-preprocessor,num_dependents_deps.dev:0 github.com/pchynoweth/svelte-share-buttons-component,num_dependents_deps.dev:0 @@ -914874,6 +931236,8 @@ github.com/pcit-ce/towxml,num_dependents_deps.dev:0 github.com/pciutils/pciutils,Google github.com/pcj/gofortune,num_dependents_deps.dev:0 github.com/pcj/google-options,num_dependents_deps.dev:0 +github.com/pcjun97/action-setup-docker-host-ssh, +github.com/pcjun97/action-setup-tfswitch, github.com/pckg-app/frontend,num_dependents_deps.dev:0 github.com/pckg-app/frontend-dev,num_dependents_deps.dev:0 github.com/pckhib/home-connect-js,num_dependents_deps.dev:0 @@ -914944,6 +931308,8 @@ github.com/pcode-at/eslint-config-typescript,num_dependents_deps.dev:0 github.com/pcode-at/tsconfig,num_dependents_deps.dev:0 github.com/pcodk/dense-redux-actions,num_dependents_deps.dev:0 github.com/pcofilada/psgc, +github.com/pcolby/post-to-slack, +github.com/pcolby/tap-summary, github.com/pcole0083/number-formatter,num_dependents_deps.dev:0 github.com/pcollinsonline/ts-project-starter,num_dependents_deps.dev:0 github.com/pcolusso/medicare-provider-validator, @@ -915035,6 +931401,7 @@ github.com/pcuci/ranges,num_dependents_deps.dev:0 github.com/pcullin-ratio/webhose-nodejs,num_dependents_deps.dev:0 github.com/pculture/vidscraper, github.com/pcvg/postcss-disable-critical-plugin,num_dependents_deps.dev:0 +github.com/pcvg/remove-merged-branches, github.com/pcvg/zvezdochki,num_dependents_deps.dev:0 github.com/pcvonz/ng2-daterange-picker,num_dependents_deps.dev:0 github.com/pcvonz/tsl2591-rs,num_dependents_deps.dev:0 @@ -915058,6 +931425,7 @@ github.com/pczarn/gearley,num_dependents_deps.dev:6 github.com/pczarn/panini,num_dependents_deps.dev:1 github.com/pczarn/panini-snapshot,num_dependents_deps.dev:1 github.com/pczyk/mocky,num_dependents_deps.dev:0 +github.com/pd-rs/get-playdate-sdk, github.com/pd/httpie-esni-auth, github.com/pd/typed-json,num_dependents_deps.dev:0 github.com/pd/zscii,num_dependents_deps.dev:0 @@ -915091,6 +931459,8 @@ github.com/pdalinis/oktad,num_dependents_deps.dev:0 github.com/pdalpra/scalalint,num_dependents_deps.dev:0 github.com/pdalvi1893/my-emoji-project,num_dependents_deps.dev:0 github.com/pdamianik/folder-archiver-types,num_dependents_deps.dev:0 +github.com/pdamianik/release-tag-to-upload-url-action, +github.com/pdamianik/render-emojis-action, github.com/pdamoc/elm-ports-driver,num_dependents_deps.dev:0 github.com/pdamoc/pdicts, github.com/pdaniell/machine.js,num_dependents_deps.dev:0 @@ -915209,6 +931579,7 @@ github.com/pdesterlich/slugin,num_dependents_deps.dev:0 github.com/pdestrais/markdowntohtml-component-stencil,num_dependents_deps.dev:0 github.com/pdestrais/mdtohtml,num_dependents_deps.dev:0 github.com/pdeveltere/gedcom,num_dependents_deps.dev:0 +github.com/pdeveltere/kubectl-action, github.com/pdevine/engine-api,num_dependents_deps.dev:0 github.com/pdevine/go-asciisprite,num_dependents_deps.dev:0 github.com/pdevine/machine,num_dependents_deps.dev:0 @@ -915296,7 +931667,9 @@ github.com/pdlove/homebridge-wink, github.com/pdlove/react-native-snmp-native,num_dependents_deps.dev:0 github.com/pdm-project/pdm, github.com/pdm-project/pdm-venv, +github.com/pdm-project/setup-pdm, github.com/pdm-project/tox-pdm, +github.com/pdm-project/update-deps-action, github.com/pdmangel/node-red-contrib-openhab2,num_dependents_deps.dev:0 github.com/pdmccormick/sse,num_dependents_deps.dev:0 github.com/pdmlab/sourced-repo-mongo-ts,num_dependents_deps.dev:0 @@ -915341,6 +931714,7 @@ github.com/pdrb/nwscan, github.com/pdrb/papir, github.com/pdrb/randpw, github.com/pdrb/synping, +github.com/pdreker/elastic-ingest-test-action, github.com/pdrharris/pydictobject, github.com/pdrm83/py2opt, github.com/pdrm83/rotten_tomatoes_scraper, @@ -915473,8 +931847,15 @@ github.com/peacefultruth/butterfly,num_dependents_deps.dev:0 github.com/peacefultruth/freestyle,num_dependents_deps.dev:0 github.com/peacefultruth/hashtag,num_dependents_deps.dev:0 github.com/peacefultruth/react-geocode-earth-autocomplete,num_dependents_deps.dev:0 +github.com/peaceiris/actions-export-envs, github.com/peaceiris/actions-gh-pages,criticality_score:0.578220 +github.com/peaceiris/actions-github-app-token, +github.com/peaceiris/actions-github-pages, github.com/peaceiris/actions-hugo,criticality_score:0.428460 +github.com/peaceiris/actions-label-commenter, +github.com/peaceiris/actions-mdbook, +github.com/peaceiris/actions-pixela, +github.com/peaceiris/actions-suggest-related-links, github.com/peaceiris/actions-utils,num_dependents_deps.dev:0 github.com/peaceiris/hatena-intern-2020,num_dependents_deps.dev:0 github.com/peaceiris/hugo-mod-bulma,num_dependents_deps.dev:0 @@ -915606,6 +931987,7 @@ github.com/peakxie/utils,num_dependents_deps.dev:0 github.com/peaky76/pybet, github.com/peanut-cc/data-structure-and-algorithm,num_dependents_deps.dev:0 github.com/peanut-cc/screw,num_dependents_deps.dev:0 +github.com/peanut-lover/codepush-deployment-getting-action, github.com/peanut-pg/data-structure-and-algorithm,num_dependents_deps.dev:0 github.com/peanut996-im/peanut996.im,num_dependents_deps.dev:0 github.com/peanutYu/glede,num_dependents_deps.dev:0 @@ -915808,7 +932190,10 @@ github.com/peckhamdata/harry-plotter,num_dependents_deps.dev:0 github.com/peckhamdata/prg2tap, github.com/peckhamdata/prg2xex, github.com/peckinc/request-lite,num_dependents_deps.dev:0 +github.com/peckjon/github-to-guru, +github.com/peckjon/reject-pr-approval-from-committer, github.com/peckjon/sleepy_install, +github.com/peckjon/vulnerability-to-azure-board, github.com/pecko95/express-app-cli,num_dependents_deps.dev:0 github.com/peclik/clipboard_image_paste,criticality_score:0.322040 github.com/pecliu/gm-crypt,num_dependents_deps.dev:2 @@ -915978,6 +932363,7 @@ github.com/pedroalbanese/sm3sum,num_dependents_deps.dev:0 github.com/pedroalbanese/tiger,num_dependents_deps.dev:0 github.com/pedroalbanese/whirlpoolsum,num_dependents_deps.dev:0 github.com/pedroalefm/youtubeplayer-react-native,num_dependents_deps.dev:0 +github.com/pedroalejandropt/auto-semantic-version, github.com/pedroallenrevez/jisho-api, github.com/pedroalva/my-npx,num_dependents_deps.dev:0 github.com/pedroalva/npm-card,num_dependents_deps.dev:0 @@ -916111,6 +932497,7 @@ github.com/pedroladeira/db-engine,num_dependents_deps.dev:0 github.com/pedroladeira/db-query-parser,num_dependents_deps.dev:0 github.com/pedroladeira/react-generator,num_dependents_deps.dev:0 github.com/pedroladeira/tailwify,num_dependents_deps.dev:0 +github.com/pedrolamas/handlebars-action, github.com/pedrolarben/ADLStream, github.com/pedrolaxe/js-terminal,num_dependents_deps.dev:0 github.com/pedrolcn/cpf-wasm, @@ -916141,6 +932528,7 @@ github.com/pedromateoa/chalona-request,num_dependents_deps.dev:0 github.com/pedromateoa/chalona-sql,num_dependents_deps.dev:0 github.com/pedromateoa/chalona-table,num_dependents_deps.dev:0 github.com/pedromateoa/chalona-util,num_dependents_deps.dev:6 +github.com/pedromcunha/npm-publisher, github.com/pedromdev/cra-template-moon-route,num_dependents_deps.dev:0 github.com/pedromdev/cra-template-moon-route-typescript,num_dependents_deps.dev:0 github.com/pedromendonka/Vue-J7i18n,num_dependents_deps.dev:0 @@ -916733,13 +933121,16 @@ github.com/peilingjiang/RemoteCalibrator,num_dependents_deps.dev:0 github.com/peilingjiang/p5.bezier,num_dependents_deps.dev:0 github.com/peilinok/fabric-whiteboard,num_dependents_deps.dev:0 github.com/peilinok/screen-recorder,num_dependents_deps.dev:0 +github.com/peimanja/amtoolcm-github-actions, github.com/peimanja/artifactory_exporter,num_dependents_deps.dev:0 github.com/peimanja/aws_target_discovery, +github.com/peimanja/promtool-github-actions, github.com/peinan/peinan-utils-py, github.com/peinan/swpy, github.com/peiratis/pictl,num_dependents_deps.dev:0 github.com/peixian/gt-py, github.com/peixin/hexo-git-username-coauthor,num_dependents_deps.dev:0 +github.com/peixin/serverchan-action, github.com/peixoto3/python-criaenvio, github.com/peiying16/codec,num_dependents_deps.dev:0 github.com/peiying16/scroll-triggle-fn,num_dependents_deps.dev:0 @@ -917132,10 +933523,12 @@ github.com/pemrouz/xoox-flatten,num_dependents_deps.dev:0 github.com/pemrouz/xoox-map,num_dependents_deps.dev:0 github.com/pemrouz/xoox-transform,num_dependents_deps.dev:0 github.com/pemrouz/xoox-until,num_dependents_deps.dev:0 +github.com/pemtajo/badge-readme, github.com/pen-lang/pen,num_dependents_deps.dev:0 github.com/pen/fotolife,num_dependents_deps.dev:0 github.com/pen/jma-go,num_dependents_deps.dev:0 github.com/pen/split-slice-go,num_dependents_deps.dev:0 +github.com/penDerGraft/run-k8s-job, github.com/penMANship/paunie-palindrome,num_dependents_deps.dev:0 github.com/penafieljlm/slmndr,num_dependents_deps.dev:0 github.com/penalosa/epsilon,num_dependents_deps.dev:0 @@ -917144,6 +933537,7 @@ github.com/penance316/vue-regex-input,num_dependents_deps.dev:0 github.com/penance316/your-first-node-module,num_dependents_deps.dev:0 github.com/penartur/node-benchmark-pages,num_dependents_deps.dev:0 github.com/penartur/node-recursive-tree-copy,num_dependents_deps.dev:0 +github.com/penchef/slack-committer, github.com/pencil-js/canvas-gif-encoder,num_dependents_deps.dev:0 github.com/pencil-js/gif,num_dependents_deps.dev:0 github.com/pencil-js/image-manipulation,num_dependents_deps.dev:0 @@ -917418,6 +933812,7 @@ github.com/pengwynn/gowalla,num_dependents_deps.dev:0 github.com/pengwynn/octonaut,num_dependents_deps.dev:0 github.com/pengwynn/plancast,num_dependents_deps.dev:0 github.com/pengwynn/rdio-cli,num_dependents_deps.dev:0 +github.com/pengx17/logseq-publish, github.com/pengx17/monaco-yaml,num_dependents_deps.dev:0 github.com/pengx17/ng-monaco-editor,num_dependents_deps.dev:0 github.com/pengxAlone/pengx,num_dependents_deps.dev:0 @@ -917448,6 +933843,7 @@ github.com/pengxueshan/mxt-deploy-local-deliver,num_dependents_deps.dev:0 github.com/pengxueshan/mxt-preprocessor-autoprefixer,num_dependents_deps.dev:0 github.com/pengxueshan/mxt-spriter-csssprites,num_dependents_deps.dev:0 github.com/pengyan510/torcheck, +github.com/pengyanb/npm-versioning-action, github.com/pengyanb/react-drag-drop-resizable, github.com/pengyanb/react-native-pybwifiparam,num_dependents_deps.dev:0 github.com/pengyanb/web-component-wrapper,num_dependents_deps.dev:0 @@ -917531,6 +933927,7 @@ github.com/pennocktech/smtpdane,num_dependents_deps.dev:0 github.com/pennocktech/swallowjson,num_dependents_deps.dev:0 github.com/pennocktech/tabular,num_dependents_deps.dev:0 github.com/pennsignals/aptos, +github.com/pennsignals/publish_docker-compose, github.com/pennstate/additional-properties,num_dependents_deps.dev:0 github.com/pennstate/go-additional-properties,num_dependents_deps.dev:0 github.com/pennstate/go-healthcheck,num_dependents_deps.dev:0 @@ -917600,6 +933997,7 @@ github.com/pentasoft/s3-static-uploader,num_dependents_deps.dev:0 github.com/pentastory/messenger-ui,num_dependents_deps.dev:0 github.com/pentatester/telegram-rss, github.com/pentateu/mongoose-bird,num_dependents_deps.dev:0 +github.com/pentatonicfunk/action-gist-repo-sync, github.com/pentatonicfunk/i18n-wp-plugin,num_dependents_deps.dev:0 github.com/pentcloud/strapi-provider-email-pentcloud,num_dependents_deps.dev:0 github.com/pentcloud/strapi-provider-upload-s3,num_dependents_deps.dev:0 @@ -917717,6 +934115,7 @@ github.com/peopledrivemecrazy/chart.xkcd-svelte,num_dependents_deps.dev:0 github.com/peopledrivemecrazy/here-maps-svelte,num_dependents_deps.dev:0 github.com/peopledrivemecrazy/svelte-images,num_dependents_deps.dev:0 github.com/peopleforce/turbo, +github.com/peoplefund-tech/gitflow-automation, github.com/peoplefund-tech/markdown-it-wiki-toc, github.com/peoplefund-tech/peoplefund-style-lint-rule,num_dependents_deps.dev:0 github.com/peoplefund-tech/react-naver-login,num_dependents_deps.dev:0 @@ -917777,6 +934176,7 @@ github.com/pepe19000/NgxFixedSettingsBar,num_dependents_deps.dev:0 github.com/pepe19000/NgxFormValidations,num_dependents_deps.dev:0 github.com/pepe19000/NgxVideoListPlayer, github.com/pepe2k/u-boot_mod,criticality_score:0.386200 +github.com/pepeantonioGarcia/github-AwsSync, github.com/pepebecker/clivm,num_dependents_deps.dev:0 github.com/pepebecker/find-hanzi,num_dependents_deps.dev:0 github.com/pepebecker/hanzi-to-pinyin,num_dependents_deps.dev:4 @@ -917928,6 +934328,7 @@ github.com/peps1/srrup,num_dependents_deps.dev:0 github.com/peps84/polite-asset-loader,num_dependents_deps.dev:0 github.com/pepsin/MockKit,num_dependents_deps.dev:0 github.com/pepsizerosugar/newman-reporter-csvallinone,num_dependents_deps.dev:0 +github.com/pepusz/kubectl-verify-job, github.com/pepve/nostache,num_dependents_deps.dev:0 github.com/pepve/remote-filewatcher,num_dependents_deps.dev:0 github.com/pepve/zxcvbn-nl,num_dependents_deps.dev:0 @@ -917941,6 +934342,7 @@ github.com/pepzwee/node-adfly,num_dependents_deps.dev:0 github.com/pepzwee/node-imdb-scraper,num_dependents_deps.dev:0 github.com/pepzwee/node-steam-market-crawler,num_dependents_deps.dev:0 github.com/per000/fins, +github.com/per1234/artistic-style-action, github.com/per2plex/babel-project-relative-import,num_dependents_deps.dev:0 github.com/perGENIE/pergenie-cli, github.com/perNyfelt/SIEParser,num_dependents_deps.dev:0 @@ -918141,6 +934543,7 @@ github.com/perdian/devlauncher,num_dependents_deps.dev:0 github.com/perdian/flightsearch-api,num_dependents_deps.dev:0 github.com/perdian/macosappbundler-maven-plugin,num_dependents_deps.dev:0 github.com/perdixsw/django-tinycolorpicker, +github.com/perdoo/pull-request-update-body-action, github.com/perdugames/cacau,num_dependents_deps.dev:0 github.com/perdugames/eventbus,num_dependents_deps.dev:0 github.com/perdumonocle/actix-web-middleware-redirect-scheme,num_dependents_deps.dev:0 @@ -918346,6 +934749,7 @@ github.com/perfmjs/perfmjs-push-client,num_dependents_deps.dev:0 github.com/perfmjs/perfmjs-redis-cluster,num_dependents_deps.dev:0 github.com/perfomatixsolutions/TrendingAlgorithm,num_dependents_deps.dev:0 github.com/perforce/p4prometheus,num_dependents_deps.dev:0 +github.com/perforce/setup-p4, github.com/performanceArtist/async-joyride,num_dependents_deps.dev:0 github.com/performanceArtist/fp-ts-adt,num_dependents_deps.dev:0 github.com/performanceArtist/medium,num_dependents_deps.dev:0 @@ -918365,6 +934769,7 @@ github.com/performonkey/bloom,num_dependents_deps.dev:0 github.com/performonkey/file-move-loader,num_dependents_deps.dev:0 github.com/performonkey/svelte-custom-element-loader,num_dependents_deps.dev:0 github.com/performous/performous,criticality_score:0.450410 +github.com/perfovipin/import-codesign-certs, github.com/perfree/perfree-comment,num_dependents_deps.dev:0 github.com/perfting/setuptools, github.com/perftools/xhgui,criticality_score:0.596910 @@ -918453,6 +934858,7 @@ github.com/perjg/oled_ssd1306_i2c,num_dependents_deps.dev:0 github.com/perkbox/workos-rust,num_dependents_deps.dev:0 github.com/perkdrew/polyglot-microservices,num_dependents_deps.dev:0 github.com/perkeep/perkeep,"criticality_score:0.448510,num_dependents_deps.dev:0" +github.com/perkexchange/github-action, github.com/perki/readyness,num_dependents_deps.dev:4 github.com/perkinsjr/AreTheyUp,num_dependents_deps.dev:0 github.com/perkinsjr/IsSHA1,num_dependents_deps.dev:0 @@ -918466,6 +934872,8 @@ github.com/perkinslr/PyInABox, github.com/perkinslr/schemepy, github.com/perkthefox/pretty-box,num_dependents_deps.dev:0 github.com/perkuno/forward,num_dependents_deps.dev:0 +github.com/perl-actions/install-with-cpanm, +github.com/perl-actions/install-with-cpm, github.com/perl-carton/carton,criticality_score:0.344830 github.com/perl-catalyst/catalyst-runtime,criticality_score:0.409430 github.com/perl6/nqp,num_dependents_deps.dev:25 @@ -918513,7 +934921,9 @@ github.com/perlw/fhd,num_dependents_deps.dev:0 github.com/perlw/valkyr,num_dependents_deps.dev:0 github.com/perlyna/wechatpay,num_dependents_deps.dev:0 github.com/permafrost-dev/alpinejs-ray,num_dependents_deps.dev:0 +github.com/permafrost-dev/eslint-docker-ga, github.com/permafrost-dev/node-ray,num_dependents_deps.dev:0 +github.com/permafrost-dev/prettier-docker-ga, github.com/permafrost-dev/pretty-format,num_dependents_deps.dev:6 github.com/permafrost-dev/ray-proxy,num_dependents_deps.dev:0 github.com/permafrost-dev/vue-ray,num_dependents_deps.dev:0 @@ -918523,6 +934933,7 @@ github.com/permalinks/static-rewrite, github.com/permamodel/bmi-ilamb, github.com/permanentbelief/go-,num_dependents_deps.dev:0 github.com/permannur/systemstat,num_dependents_deps.dev:0 +github.com/permasigner/action, github.com/permazen/permazen,num_dependents_deps.dev:0 github.com/permeance/build-resources,num_dependents_deps.dev:0 github.com/permeance/liferay-clojure-integration,num_dependents_deps.dev:0 @@ -918869,6 +935280,7 @@ github.com/perushevandkhmelev-agency/react-native-material-textinput,num_depende github.com/perushevandkhmelev-agency/stylelint-config-pk-standard,num_dependents_deps.dev:0 github.com/perusio/drupal-with-nginx,criticality_score:0.321260 github.com/peruvianidol/mikeaparicio.com,num_dependents_deps.dev:0 +github.com/pervasive-cats/sonarcloud-scoverage-fix, github.com/pervasync/ionic-native-sync,num_dependents_deps.dev:0 github.com/pervasync/ionic-native-sync-demo,num_dependents_deps.dev:0 github.com/pervasync/react-native-form-generator2, @@ -919054,6 +935466,7 @@ github.com/petarmaric/version4plos, github.com/petarnenovpetrov/vizbacktrack,num_dependents_deps.dev:0 github.com/petarov/bulgarian-control-numbers,num_dependents_deps.dev:0 github.com/petarov/translitbg.js,num_dependents_deps.dev:0 +github.com/petarpetrovt/setup-sde, github.com/petarslavnic/angular-dragndrop,num_dependents_deps.dev:0 github.com/petarslavnic/react-drag-scroll,num_dependents_deps.dev:0 github.com/petarslavnic/react-pusher,num_dependents_deps.dev:0 @@ -919157,6 +935570,7 @@ github.com/petehayes102/rust-czmq,num_dependents_deps.dev:1 github.com/peteheaney/input-soft-limit, github.com/peteheist/irtt,num_dependents_deps.dev:0 github.com/petehouston/gitbook-plugin-google-adsense,num_dependents_deps.dev:0 +github.com/petehouston/github-actions-query-branch-name, github.com/petehouston/hotjs-cli,num_dependents_deps.dev:0 github.com/petehouston/mshot-cli,num_dependents_deps.dev:0 github.com/petehouston/node-proshot,num_dependents_deps.dev:0 @@ -919205,6 +935619,7 @@ github.com/petelliott/lightning-sys,num_dependents_deps.dev:0 github.com/petemacko/capacitor-pm-braintree,num_dependents_deps.dev:0 github.com/petemacko/capacitor-pm-storage-realm,num_dependents_deps.dev:0 github.com/petemacko/capacitor-pm-video-exoplayer, +github.com/petemcw/deploy-artifact-upload, github.com/petemill/dynamodb-copyregion,num_dependents_deps.dev:0 github.com/petemill/dynamodb-update-expression-builder,num_dependents_deps.dev:0 github.com/petemill/git-credentials-envvar,num_dependents_deps.dev:0 @@ -919214,6 +935629,8 @@ github.com/petemoore/jsonschema2go,num_dependents_deps.dev:0 github.com/petemoore/sha256,num_dependents_deps.dev:0 github.com/petemoore/taskcluster-client-go,num_dependents_deps.dev:0 github.com/petemounce/bunyan-elasticsearch,num_dependents_deps.dev:0 +github.com/petems/csv-to-md-table-action, +github.com/petems/image-resizer-gh-action, github.com/petems/petems-swap_file,Google github.com/petems/s3mini,num_dependents_deps.dev:0 github.com/peteole/telemetryProtocolClient,num_dependents_deps.dev:0 @@ -919230,10 +935647,28 @@ github.com/peter-donovan/klar,num_dependents_deps.dev:0 github.com/peter-eid/speakeasy,num_dependents_deps.dev:0 github.com/peter-emil/StorageBox, github.com/peter-evans/actions-git,num_dependents_deps.dev:0 +github.com/peter-evans/autopep8, +github.com/peter-evans/close-fork-pulls, +github.com/peter-evans/close-issue, +github.com/peter-evans/close-pull, +github.com/peter-evans/commit-comment, github.com/peter-evans/container-diff,num_dependents_deps.dev:0 github.com/peter-evans/container-structure-test,num_dependents_deps.dev:0 +github.com/peter-evans/create-issue-from-file, +github.com/peter-evans/create-or-update-comment, +github.com/peter-evans/create-or-update-project-card, github.com/peter-evans/create-pull-request,criticality_score:0.537600 +github.com/peter-evans/dockerhub-description, +github.com/peter-evans/duplicati-action, +github.com/peter-evans/enable-pull-request-automerge, +github.com/peter-evans/find-comment, +github.com/peter-evans/jira2md, +github.com/peter-evans/link-checker, +github.com/peter-evans/rebase, github.com/peter-evans/repository-dispatch,criticality_score:0.300740 +github.com/peter-evans/s3-backup, +github.com/peter-evans/sendgrid-action, +github.com/peter-evans/slash-command-dispatch, github.com/peter-f3/go-fuzz,num_dependents_deps.dev:0 github.com/peter-gergely-horvath/commandmosaic,num_dependents_deps.dev:17 github.com/peter-gergely-horvath/dyna4jdbc,num_dependents_deps.dev:0 @@ -919259,10 +935694,21 @@ github.com/peter-mouland/web-caddy,num_dependents_deps.dev:0 github.com/peter-mount/go-kernel,num_dependents_deps.dev:1 github.com/peter-mount/nre-feeds,num_dependents_deps.dev:0 github.com/peter-mount/retro-floppy-ui,num_dependents_deps.dev:0 +github.com/peter-murray/github-ip-allow-list-action, +github.com/peter-murray/github-security-report-action, github.com/peter-murray/hue-bridge-model,num_dependents_deps.dev:8 +github.com/peter-murray/inactive-users-action, +github.com/peter-murray/issue-body-parser-action, +github.com/peter-murray/issue-forms-body-parser, github.com/peter-murray/node-hue-api,"criticality_score:0.434330,num_dependents_deps.dev:12" github.com/peter-murray/node-hue-api-v2-shim,num_dependents_deps.dev:0 github.com/peter-murray/node-teamcity-api,num_dependents_deps.dev:0 +github.com/peter-murray/remove-labels-action, +github.com/peter-murray/reset-workspace-ownership-action, +github.com/peter-murray/setup-detekt, +github.com/peter-murray/terragrunt-github-action, +github.com/peter-murray/value-as-flag-action, +github.com/peter-murray/workflow-application-token-action, github.com/peter-olom/hookstate-persist,num_dependents_deps.dev:0 github.com/peter-olom/redux-easy-persist,num_dependents_deps.dev:0 github.com/peter-olom/rn-google-places-autocomplete,num_dependents_deps.dev:0 @@ -919391,6 +935837,8 @@ github.com/peterc23/grunt-prefix-css, github.com/petercb/aggravator, github.com/peterccliu/bgls,num_dependents_deps.dev:0 github.com/peterchang77/jarvis-core, +github.com/peterchanxyz/changelog-action, +github.com/peterchanxyz/slack-markdown-action, github.com/peterchappy/useDocumentTitle,num_dependents_deps.dev:0 github.com/peterchenhdu/hikrc-checkbox,num_dependents_deps.dev:0 github.com/peterchenhdu/pl-checkbox,num_dependents_deps.dev:0 @@ -919575,6 +936023,7 @@ github.com/peterhellberg/pinch,num_dependents_deps.dev:0 github.com/peterhellberg/riksteatern,num_dependents_deps.dev:0 github.com/peterhellberg/scb,num_dependents_deps.dev:0 github.com/peterhellberg/xip.name,num_dependents_deps.dev:0 +github.com/peterhenryd/write-discussions-to-repo-action, github.com/peterhenryfirst/send-logentries,num_dependents_deps.dev:0 github.com/peterhil/excelsior, github.com/peterhil/flask-bulbs, @@ -919602,6 +936051,7 @@ github.com/peterhoneder/offline-dependencies-js,num_dependents_deps.dev:0 github.com/peterhpchen/v-triangle,num_dependents_deps.dev:0 github.com/peterhry/CircleType,num_dependents_deps.dev:0 github.com/peterhs73/kad,num_dependents_deps.dev:0 +github.com/peterhs73/sphinx-docs-action, github.com/peterhudec/chromedriver_installer, github.com/peterhudec/foundation-sphinx-theme, github.com/peterhudec/liveandletdie, @@ -919612,6 +936062,7 @@ github.com/peteringram0/section-s,num_dependents_deps.dev:0 github.com/peteringram0/vue-ip,num_dependents_deps.dev:0 github.com/peterino/pmake, github.com/peteritdev/peters-globallib-v2,num_dependents_deps.dev:0 +github.com/peterix/xcode-notarize, github.com/peterj35/react-easily-carousel,num_dependents_deps.dev:0 github.com/peterjacobson/push-waffle,num_dependents_deps.dev:0 github.com/peterjamesmatthews/assuming, @@ -919626,6 +936077,8 @@ github.com/peterjc/flake8-sfs, github.com/peterjc/thapbi-pict, github.com/peterjcaulfield/raiden,num_dependents_deps.dev:0 github.com/peterjcaulfield/twkr,num_dependents_deps.dev:0 +github.com/peterjgrainger/action-changelog-reminder, +github.com/peterjgrainger/action-create-branch, github.com/peterjochum/wagtail-audio-embed, github.com/peterjoel/bind_match,num_dependents_deps.dev:0 github.com/peterjoel/lazy_concat,num_dependents_deps.dev:0 @@ -919682,6 +936135,7 @@ github.com/peterkhayes/pitchfinder, github.com/peterkhayes/pitchfinder.js,num_dependents_deps.dev:0 github.com/peterkhayes/restroom,num_dependents_deps.dev:0 github.com/peterkhayes/rolling-rate-limiter, +github.com/peterkimzz/aws-ssm-send-command, github.com/peterkimzz/force-ui,num_dependents_deps.dev:0 github.com/peterkimzz/rest-oauth2,num_dependents_deps.dev:0 github.com/peterkimzz/upbit-client,num_dependents_deps.dev:0 @@ -919692,6 +936146,7 @@ github.com/peterklingelhofer/lodown,num_dependents_deps.dev:0 github.com/peterknezek/scss-shortcuts,num_dependents_deps.dev:0 github.com/peterkozelj/devbox,num_dependents_deps.dev:0 github.com/peterkracik/convert-firebase-timestamp,num_dependents_deps.dev:0 +github.com/peterkrauz/search-pull-request-comments-action, github.com/peterkulik/ois_api_client, github.com/peterkuma/aquarius-time, github.com/peterkuma/bunyan-streams-config,num_dependents_deps.dev:0 @@ -919801,6 +936256,10 @@ github.com/petermyers/allow,num_dependents_deps.dev:0 github.com/peternann/voice-assistants-cli,num_dependents_deps.dev:0 github.com/peternaydenov/grunt-layered-themes,num_dependents_deps.dev:0 github.com/peternaydenov/layered-themes-3devices,num_dependents_deps.dev:0 +github.com/peternied/bake-time, +github.com/peternied/discerning-merger, +github.com/peternied/find-triggering-pr, +github.com/peternied/required-approval, github.com/peternijssen/python-jumbo-api, github.com/peternoordijk/preform,num_dependents_deps.dev:0 github.com/peternoordijk/rrxjs,num_dependents_deps.dev:0 @@ -919908,6 +936367,7 @@ github.com/peterrcook/particleflow,num_dependents_deps.dev:0 github.com/peterreisz/atomic-grid,num_dependents_deps.dev:0 github.com/peterreisz/gulp-wizard,num_dependents_deps.dev:0 github.com/peterreisz/laravel-elixir-ngtemplatecache,num_dependents_deps.dev:0 +github.com/peterrhodesdev/build-a-badge, github.com/peterrk/dsgo,num_dependents_deps.dev:0 github.com/peterrz/rn-search-filter,num_dependents_deps.dev:0 github.com/peters/manifestparser,num_dependents_deps.dev:0 @@ -919999,6 +936459,7 @@ github.com/peterstark72/skanetrafiken,num_dependents_deps.dev:0 github.com/peterstark72/smhi-nodejs,num_dependents_deps.dev:0 github.com/peterstarling/dotconfig,num_dependents_deps.dev:0 github.com/peterstarling/starling-ioc,num_dependents_deps.dev:0 +github.com/peterstockwell-sagov/gha-remove-artifacts, github.com/peterstrapp/hubot-sonarqube,num_dependents_deps.dev:0 github.com/peterstrapp/node-rcswitch,num_dependents_deps.dev:0 github.com/peterstrapp/node-red-contrib-deduplicate,num_dependents_deps.dev:0 @@ -920034,6 +936495,7 @@ github.com/peteruithoven/redis-pubsubber,num_dependents_deps.dev:0 github.com/peteruithoven/systemjs-debugger,num_dependents_deps.dev:0 github.com/peterupton/electron-sudo, github.com/peterupton/elevator,num_dependents_deps.dev:0 +github.com/peterus/platformio_dependabot, github.com/petervanderdoes/gitflow-avh,criticality_score:0.429220 github.com/petervanderdoes/gulp-flake8,num_dependents_deps.dev:0 github.com/petervanderdoes/gulp-isort,num_dependents_deps.dev:0 @@ -920081,6 +936543,7 @@ github.com/peterzatncs/change_log,num_dependents_deps.dev:0 github.com/peterzeller/antidote_ts_client_test,num_dependents_deps.dev:0 github.com/peterzeller/heimdall,num_dependents_deps.dev:0 github.com/peterzeller/java-smallcheck,num_dependents_deps.dev:0 +github.com/peterzepf/action-electron-builder, github.com/peterzernia/lets-fork,num_dependents_deps.dev:0 github.com/peterzernia/open-kitchen,num_dependents_deps.dev:0 github.com/peterzernia/project,num_dependents_deps.dev:0 @@ -920261,6 +936724,7 @@ github.com/petr-panteleyev/jpackage-maven-plugin,num_dependents_deps.dev:0 github.com/petr-panteleyev/ofx-parser,num_dependents_deps.dev:0 github.com/petr-panteleyev/parent-pom,num_dependents_deps.dev:0 github.com/petr-panteleyev/persistence-kt,num_dependents_deps.dev:0 +github.com/petr-pokorny-1/create-file-action, github.com/petr-pokorny-1/maplibre-gl-js,num_dependents_deps.dev:0 github.com/petr-ptacek/js-utils,num_dependents_deps.dev:0 github.com/petr-s/android-nmea-parser,num_dependents_deps.dev:0 @@ -920268,6 +936732,7 @@ github.com/petr-s/cleaREST, github.com/petra-stone/grunt-patternprimer,num_dependents_deps.dev:0 github.com/petrahq/petra-go,num_dependents_deps.dev:0 github.com/petrakan/coursera,num_dependents_deps.dev:0 +github.com/petrandr/duedate_reminders, github.com/petrarchy/arctype,num_dependents_deps.dev:0 github.com/petrasphere/gomicro,num_dependents_deps.dev:0 github.com/petraszd/postgres-db-diff, @@ -920351,6 +936816,7 @@ github.com/petrleocompel/homebridge-jablotron-mqtt, github.com/petrlr14/basic-tempalte-cra,num_dependents_deps.dev:0 github.com/petrlr14/create-react-app-extra-things,num_dependents_deps.dev:0 github.com/petrmiko/konteiner,num_dependents_deps.dev:0 +github.com/petrmo/PetrmoAction1, github.com/petrnymsa/jdog, github.com/petro-kushchak/homebridge-ch-ac-globals,num_dependents_deps.dev:0 github.com/petro-kushchak/homebridge-mi-humidifier-globals,num_dependents_deps.dev:0 @@ -920377,6 +936843,7 @@ github.com/petromoldovan/simple-react-native-checkbox,num_dependents_deps.dev:0 github.com/petronije2002/PqrUpload, github.com/petronz/logger-life,num_dependents_deps.dev:0 github.com/petroortep/PythonTrojanHorse, +github.com/petroprotsakh/opa-test-action, github.com/petrosDemetrakopoulos/SIR.js, github.com/petrosDemetrakopoulos/ethairballoons,num_dependents_deps.dev:0 github.com/petrosagg/escher,num_dependents_deps.dev:0 @@ -920547,6 +937014,7 @@ github.com/pex-gl/pex-renderer,num_dependents_deps.dev:0 github.com/pex-gl/pex-sys, github.com/pexacoin/rust-pexacoin,num_dependents_deps.dev:0 github.com/pexarkh/weathassembly,num_dependents_deps.dev:0 +github.com/pexcn/maximize-disk-space, github.com/pexea12/vue-image-lightbox,"criticality_score:0.387560,num_dependents_deps.dev:16" github.com/pexels/pexels-javascript,num_dependents_deps.dev:0 github.com/pexeso/ae-sdk-go,num_dependents_deps.dev:0 @@ -920566,6 +937034,7 @@ github.com/peymanfarajnezhad/InternetConnection,num_dependents_deps.dev:0 github.com/peymanmortazavi/MonkeyMaker-HockeyApp,num_dependents_deps.dev:0 github.com/peymanmortazavi/cmd-liner,num_dependents_deps.dev:0 github.com/peymanmortazavi/config-util,num_dependents_deps.dev:2 +github.com/peymanmortazavi/eks-helm-deploy, github.com/peymanslh/persian-gender-detection,num_dependents_deps.dev:0 github.com/peymil/jquery-fullscreen-select,num_dependents_deps.dev:0 github.com/peynman/vuetify-formjson,num_dependents_deps.dev:0 @@ -920582,6 +937051,7 @@ github.com/pezmaster31/bamtools,criticality_score:0.397560 github.com/pezra/rspec-mode,criticality_score:0.402720 github.com/pezza/advent-of-code,num_dependents_deps.dev:0 github.com/pezza/aoc2017,num_dependents_deps.dev:0 +github.com/pf-mahmoud/github-action-jira-release-notes, github.com/pf12345/dingtalkweui,num_dependents_deps.dev:0 github.com/pf12345/grunt-clear-css,num_dependents_deps.dev:0 github.com/pf4j/pf4j,criticality_score:0.512990 @@ -920621,12 +937091,15 @@ github.com/pfan123/gulp-svg-list,num_dependents_deps.dev:0 github.com/pfan123/pf-init,num_dependents_deps.dev:0 github.com/pfan123/sketch-transform,num_dependents_deps.dev:0 github.com/pfan123/svgo-icon,num_dependents_deps.dev:0 +github.com/pfandie/generate-changelog-action, github.com/pfandzelter/bibclean,num_dependents_deps.dev:0 github.com/pfandzelter/go-eat,num_dependents_deps.dev:0 github.com/pfandzelter/itc,num_dependents_deps.dev:0 github.com/pfandzelter/munchy,num_dependents_deps.dev:0 +github.com/pfandzelter/proof, github.com/pfangtoworld/pfang-npm-tools,num_dependents_deps.dev:0 github.com/pfangzhi/clash,num_dependents_deps.dev:0 +github.com/pfapi/redis-cluster-service, github.com/pfaraee/whisper,num_dependents_deps.dev:0 github.com/pfarcasanu/npm-react-calendar,num_dependents_deps.dev:0 github.com/pfarkya/mambaex, @@ -920662,6 +937135,7 @@ github.com/pfefferle/react-openwebicons,num_dependents_deps.dev:0 github.com/pfeiffer-dev/stock-report, github.com/pfeilbr/forceutl,num_dependents_deps.dev:0 github.com/pfelk/pfelk,criticality_score:0.469460 +github.com/pfeodrippe/babashka-docker-action, github.com/pferate/meetup-api, github.com/pferdinand/doxygen2md,num_dependents_deps.dev:0 github.com/pferdinand/gulp-amd-idfy,num_dependents_deps.dev:0 @@ -921239,6 +937713,7 @@ github.com/pgremo/eve2json,num_dependents_deps.dev:0 github.com/pgrest/pgrest, github.com/pgreyson/flow5,num_dependents_deps.dev:0 github.com/pgreze/android-reactions,num_dependents_deps.dev:0 +github.com/pgreze/kotlin-main-kts-run, github.com/pgreze/kotlin-process,num_dependents_deps.dev:0 github.com/pgreze/kounter,num_dependents_deps.dev:0 github.com/pgriess/http-content-negotiation-js,num_dependents_deps.dev:0 @@ -921247,6 +937722,10 @@ github.com/pgriess/node-strtok,num_dependents_deps.dev:2 github.com/pgriess/pyxstar, github.com/pgrimard/Skeleton,num_dependents_deps.dev:14 github.com/pgrimard/react-toggle-switch,num_dependents_deps.dev:4 +github.com/pgrimaud/action-lametric, +github.com/pgrimaud/action-shopify, +github.com/pgrimaud/action-shopify-cli, +github.com/pgrimaud/action-shopify-theme-check, github.com/pgrimaud/instagram-user-feed,criticality_score:0.465370 github.com/pgrippi/ember-cli-google-analytics,num_dependents_deps.dev:0 github.com/pgrit/SimpleImageIO, @@ -921359,6 +937838,7 @@ github.com/pguth/peertransfer,num_dependents_deps.dev:0 github.com/pguth/prependify,num_dependents_deps.dev:2 github.com/pguth/random-tree-names,num_dependents_deps.dev:0 github.com/pguth/yrn,num_dependents_deps.dev:0 +github.com/pguyot/arm-runner-action, github.com/pgvlas/react-cli,num_dependents_deps.dev:0 github.com/pgworm/afero_01,num_dependents_deps.dev:0 github.com/pgworm/appengine_01,num_dependents_deps.dev:0 @@ -921433,6 +937913,8 @@ github.com/pgxcentre/gwip, github.com/pgxn/pgxnclient, github.com/pgxs/copier,num_dependents_deps.dev:0 github.com/pgzip/pgzip, +github.com/ph-codific/pdf-generator, +github.com/ph-fritsche/action-dispatch, github.com/ph-fritsche/eslint-config,num_dependents_deps.dev:0 github.com/ph-fritsche/liform-material,num_dependents_deps.dev:0 github.com/ph-fritsche/liform-react-final,num_dependents_deps.dev:0 @@ -921604,6 +938086,7 @@ github.com/phala-network/chainbridge-substrate-events,num_dependents_deps.dev:0 github.com/phala-network/chainbridge-utils,num_dependents_deps.dev:0 github.com/phala-network/go-substrate-rpc-client,num_dependents_deps.dev:0 github.com/phalaaxx/gssh-go,num_dependents_deps.dev:0 +github.com/phalanks/envtest-action, github.com/phalapi/phalapi,"criticality_score:0.426870,num_dependents_deps.dev:0" github.com/phalasz/ferrarius,num_dependents_deps.dev:0 github.com/phalasz/ferrarius-monitor,num_dependents_deps.dev:0 @@ -921652,6 +938135,7 @@ github.com/phamdohung161/react-hw-swiper,num_dependents_deps.dev:0 github.com/phamdohung161/universal-boilerplate,num_dependents_deps.dev:0 github.com/phamdohung161/universal-core,num_dependents_deps.dev:0 github.com/phamdt/adminiutiae,num_dependents_deps.dev:0 +github.com/phamelink/check-valid-slides-action, github.com/phamhai998/leargolang,num_dependents_deps.dev:0 github.com/phamhongphuc1999/PColorLogging, github.com/phamhongphuc1999/PTokenQuery, @@ -921667,6 +938151,7 @@ github.com/phamngocduy98/npm-flashstore-admin,num_dependents_deps.dev:0 github.com/phamngocduy98/npm-flashstore-react,num_dependents_deps.dev:0 github.com/phamngocquy/Flask-MonitoringDashboard, github.com/phamquangsang/ImageFilter,num_dependents_deps.dev:0 +github.com/phamquyhai/kubernetes-action, github.com/phamr39/react-native-ble-manager-broadcast,num_dependents_deps.dev:0 github.com/phamthaibaoduy/prettier-config,num_dependents_deps.dev:0 github.com/phamthong/ali,num_dependents_deps.dev:0 @@ -921784,6 +938269,7 @@ github.com/phantomkid/go_interpreter,num_dependents_deps.dev:0 github.com/phantommachine/authconfig,num_dependents_deps.dev:0 github.com/phantommc/phantomweb,num_dependents_deps.dev:0 github.com/phantompunk/brief,num_dependents_deps.dev:0 +github.com/phantomstudios/appreciation-engine-whitelist, github.com/phantomstudios/asset-manager-core,num_dependents_deps.dev:0 github.com/phantomstudios/next-basic-auth,num_dependents_deps.dev:0 github.com/phantomstudios/react-gtm,num_dependents_deps.dev:0 @@ -921809,6 +938295,7 @@ github.com/phanxgames/redis-suspend,num_dependents_deps.dev:0 github.com/phanyzewski/color,num_dependents_deps.dev:0 github.com/phanyzewski/ndt7-client,num_dependents_deps.dev:0 github.com/phanyzewski/passenger-datadog-monitor,num_dependents_deps.dev:0 +github.com/phanyzewski/templated-action, github.com/phao5814/mongo-cursor-pagination, github.com/phaqui/svelte-calendar-resurrected,num_dependents_deps.dev:0 github.com/phar-io/manifest,criticality_score:0.331340 @@ -921841,12 +938328,14 @@ github.com/pharmer/cloud-controller-manager,num_dependents_deps.dev:0 github.com/pharmer/cluster-api,num_dependents_deps.dev:0 github.com/pharmer/pharmer,num_dependents_deps.dev:0 github.com/pharmer/pre-k,num_dependents_deps.dev:0 +github.com/pharmpy-dev-123/gha-python-import-time, github.com/pharo-project/pharo,criticality_score:0.683350 github.com/pharos/pharos.rb,num_dependents_deps.dev:0 github.com/pharosnet/vertx-context,num_dependents_deps.dev:0 github.com/pharrisee/automaton,num_dependents_deps.dev:0 github.com/pharrisee/csmm-golang-api-wrapper,num_dependents_deps.dev:0 github.com/pharrukh/gdpr-person-generator,num_dependents_deps.dev:0 +github.com/phartenfeller/cronicle-job-action, github.com/phartenfeller/currency-converter-wc,num_dependents_deps.dev:0 github.com/phartenfeller/gatsby-philipps-foam-theme,num_dependents_deps.dev:0 github.com/phartenfeller/gatsby-source-package-licenses,num_dependents_deps.dev:0 @@ -922124,6 +938613,7 @@ github.com/phedny/aws-sqs-processor,num_dependents_deps.dev:0 github.com/phedny/node-multichain,num_dependents_deps.dev:0 github.com/phedone/vue-histogram-slider,num_dependents_deps.dev:0 github.com/pheebs/persify,num_dependents_deps.dev:0 +github.com/pheel/path-watcher-action, github.com/pheelee/traefik-admin,num_dependents_deps.dev:0 github.com/pheeno/Ch-Drawer, github.com/pheeno/gulu,num_dependents_deps.dev:0 @@ -922644,6 +939134,8 @@ github.com/philhug/imaginary,num_dependents_deps.dev:0 github.com/philiWeitz/insomnia-data-generator-plugin,num_dependents_deps.dev:0 github.com/philiWeitz/react-native-location-switch,num_dependents_deps.dev:0 github.com/philib/cordova-plugin-ambientCoSpaces,num_dependents_deps.dev:0 +github.com/philibea/scaleway-containers-deploy, +github.com/philibea/scw-cli-action, github.com/philicevic/mix-glob,num_dependents_deps.dev:0 github.com/philicevic/mix-html-builder,num_dependents_deps.dev:0 github.com/philidem/fashion-model, @@ -922679,6 +939171,10 @@ github.com/philip-bui/react-native-accessible,num_dependents_deps.dev:0 github.com/philip-bui/react-native-animated-loading-button,num_dependents_deps.dev:0 github.com/philip-bui/react-native-pincode-input,num_dependents_deps.dev:0 github.com/philip-cdx/write-docker-actions,num_dependents_deps.dev:0 +github.com/philip-gai/kusto-script, +github.com/philip-gai/setup-aws-amplify-cli, +github.com/philip-gai/setup-kusto, +github.com/philip-gai/upgrade-gh-cli, github.com/philip-kio/SediPack, github.com/philip-peterson/arc_new_cyclic_n,num_dependents_deps.dev:0 github.com/philip-peterson/detect-object-cycles,num_dependents_deps.dev:0 @@ -922909,19 +939405,32 @@ github.com/philiprenich/grunt-sass-replace,num_dependents_deps.dev:0 github.com/philips-forks/notary,num_dependents_deps.dev:0 github.com/philips-internal/EagleVision, github.com/philips-labs/MkdocsExportPlugin, +github.com/philips-labs/action-delete-artifacts, +github.com/philips-labs/blackduck-scanner-action, +github.com/philips-labs/continuous-compliance-action, github.com/philips-labs/dct-notary-admin,num_dependents_deps.dev:0 github.com/philips-labs/ferrite,num_dependents_deps.dev:0 github.com/philips-labs/fluent-bit-out-hsdp,num_dependents_deps.dev:0 +github.com/philips-labs/github-action-repolinter, github.com/philips-labs/hs,num_dependents_deps.dev:0 +github.com/philips-labs/iam-service-login, github.com/philips-labs/siderite,num_dependents_deps.dev:0 +github.com/philips-labs/slsa-provenance-action, github.com/philips-labs/spiffe-vault,num_dependents_deps.dev:0 github.com/philips-labs/tabia,num_dependents_deps.dev:0 +github.com/philips-labs/tern-action, github.com/philips-labs/terraform-aws-github-runner,criticality_score:0.479900 github.com/philips-labs/terraform-backend-hsdp,num_dependents_deps.dev:0 github.com/philips-labs/terraform-hsdp-redis-service,num_dependents_deps.dev:0 +github.com/philips-labs/terraform-private-modules-action, +github.com/philips-software/Repo-Secret-Manager, +github.com/philips-software/SPDXMerge, github.com/philips-software/SmartSleep-Analyzer-ClientLibs,num_dependents_deps.dev:0 github.com/philips-software/TextSimilarityProcessor, +github.com/philips-software/app-token-action, +github.com/philips-software/blackduck-report-action, github.com/philips-software/dir-uploader,num_dependents_deps.dev:0 +github.com/philips-software/docker-ci-scripts, github.com/philips-software/functiondefextractor, github.com/philips-software/gautocloud-connectors,num_dependents_deps.dev:0 github.com/philips-software/gino-keva,num_dependents_deps.dev:0 @@ -922930,10 +939439,15 @@ github.com/philips-software/go-hsdp-signer,num_dependents_deps.dev:8 github.com/philips-software/logproxy,num_dependents_deps.dev:0 github.com/philips-software/npm-dependencies-extractor,num_dependents_deps.dev:0 github.com/philips-software/odin,num_dependents_deps.dev:0 +github.com/philips-software/post-to-medium-action, github.com/philips-software/protractor-junit-xml-plugin,num_dependents_deps.dev:0 github.com/philips-software/python_guardrails, github.com/philips-software/react-cross-client-router,num_dependents_deps.dev:0 github.com/philips-software/restdouble,num_dependents_deps.dev:0 +github.com/philips-software/run-windows-docker-container-action, +github.com/philips-software/sbom-tool-installer-action, +github.com/philips-software/sonar-scanner-action, +github.com/philips-software/spdx-action, github.com/philips-software/terraform-provider-hsdp,num_dependents_deps.dev:0 github.com/philips/bolt,num_dependents_deps.dev:0 github.com/philips/certificate-transparency-go,num_dependents_deps.dev:0 @@ -923127,6 +939641,7 @@ github.com/phillipssc/ioBroker.rtl_433,num_dependents_deps.dev:0 github.com/phillipuniverse/githook-maven-plugin,num_dependents_deps.dev:0 github.com/phillipwildhirt/font-caslon-antique,num_dependents_deps.dev:0 github.com/phillmac/orbit-db-managers,num_dependents_deps.dev:0 +github.com/phillmv/mawl, github.com/philloooo/pyttest, github.com/phillord/enum_meta,num_dependents_deps.dev:0 github.com/phillord/horned-owl,num_dependents_deps.dev:0 @@ -923283,7 +939798,10 @@ github.com/philschatz/puzzlescript-cli,num_dependents_deps.dev:0 github.com/philschatz/react-octicons,num_dependents_deps.dev:0 github.com/philschleier/go-amqp,num_dependents_deps.dev:0 github.com/philschmid/CRUD-Service-Vesper,num_dependents_deps.dev:0 +github.com/philschmid/blog-custom-github-action, +github.com/philschmid/download-release-assets, github.com/philschmid/express-gateway-jwt-header-auth,num_dependents_deps.dev:0 +github.com/philschmid/philschmid-ec2-github-runner, github.com/philschonholzer/eslint-prettier-init,num_dependents_deps.dev:0 github.com/philscott-dev/homebridge-stagg-ekg-plus,num_dependents_deps.dev:0 github.com/philshams/focus-time, @@ -923305,9 +939823,11 @@ github.com/philspitler/spitfire-express, github.com/philspitler/spitfire-mongo,num_dependents_deps.dev:0 github.com/philss/floki,criticality_score:0.554590 github.com/philss/formatted_url,num_dependents_deps.dev:0 +github.com/philss/rustler-precompiled-action, github.com/philsstein/hanabIRC, github.com/philsturgeon/awesome-earth,criticality_score:0.341430 github.com/philsturgeon/dbad,criticality_score:0.315080 +github.com/philsupertramp/chain-smoker-action, github.com/philsupertramp/dj-migration-test, github.com/philsupertramp/django-data-migration, github.com/philsupertramp/django_poller, @@ -923339,6 +939859,7 @@ github.com/philya/font-awesome-polymer-icons,num_dependents_deps.dev:0 github.com/philying/leetcode-practise,num_dependents_deps.dev:0 github.com/philzakoor/sentimentanalysis,num_dependents_deps.dev:0 github.com/philzon/helm-assert,num_dependents_deps.dev:0 +github.com/phimage/action-swift-cli-build, github.com/phimal/deepymod, github.com/phimar/hubot-bitbucket,num_dependents_deps.dev:0 github.com/phimuemue/rs_as_num,num_dependents_deps.dev:3 @@ -923347,6 +939868,7 @@ github.com/phin1x/go-ipp,num_dependents_deps.dev:0 github.com/phin1x/prometheus-cloudwatch-adapter,num_dependents_deps.dev:0 github.com/phinate/shml, github.com/phingofficial/phing,criticality_score:0.587680 +github.com/phingofficial/phing-github-action, github.com/phinguyen202/svg-sheet-music,num_dependents_deps.dev:0 github.com/phinnaeus/viper,num_dependents_deps.dev:0 github.com/phinney001/Toolkit,num_dependents_deps.dev:0 @@ -923384,6 +939906,7 @@ github.com/phiphamuet/swagger-node,num_dependents_deps.dev:0 github.com/phiphou/mbtiles2ungzpbf,num_dependents_deps.dev:0 github.com/phiphou/osm_tiles_calculator,num_dependents_deps.dev:0 github.com/phiphou/vine-backup,num_dependents_deps.dev:0 +github.com/phips28/gh-action-bump-version, github.com/phips28/react-native-kin,num_dependents_deps.dev:0 github.com/phipus/mkpy, github.com/phire0/Logger, @@ -923401,6 +939924,7 @@ github.com/phisgroup/labfis.py, github.com/phish108/cms,num_dependents_deps.dev:0 github.com/phish108/node-foobar,num_dependents_deps.dev:0 github.com/phish108/node-jose-tools,num_dependents_deps.dev:0 +github.com/phish108/release-check, github.com/phishai/phish-ai-api, github.com/phishdetect/phishdetect,num_dependents_deps.dev:0 github.com/phishdetect/phishdetect-node,num_dependents_deps.dev:0 @@ -923638,6 +940162,7 @@ github.com/phoemur/wgetter, github.com/phoenigore/homebridge-rf-chacon-dio,num_dependents_deps.dev:0 github.com/phoeninee/html-webpack-hot-plugin,num_dependents_deps.dev:0 github.com/phoenisx/annie,num_dependents_deps.dev:0 +github.com/phoenix-actions/test-reporting, github.com/phoenix-china/bucklescript-phx,num_dependents_deps.dev:0 github.com/phoenix-force/go,num_dependents_deps.dev:0 github.com/phoenix-force666/spring-cloud-legends,num_dependents_deps.dev:1 @@ -923660,6 +940185,7 @@ github.com/phoenix344/socks-router,num_dependents_deps.dev:0 github.com/phoenix344/socksv5, github.com/phoenix344/types,num_dependents_deps.dev:0 github.com/phoenix917/log,num_dependents_deps.dev:0 +github.com/phoenixTW/aws-terragrunt-github-actions, github.com/phoenixalgo/phoenix,num_dependents_deps.dev:0 github.com/phoenixalgo/phoenix-server,num_dependents_deps.dev:0 github.com/phoenixatom/dhivehi-avatar, @@ -923848,6 +940374,7 @@ github.com/phongnn/react-kho,num_dependents_deps.dev:0 github.com/phongphan/vue-barcode,num_dependents_deps.dev:0 github.com/phongsi/csv_db,num_dependents_deps.dev:0 github.com/phongvt3110/java-ici-lib,num_dependents_deps.dev:0 +github.com/phonito/phonito-scanner-action, github.com/phonkee/cmux,num_dependents_deps.dev:0 github.com/phonkee/django-wrapper-tag, github.com/phonkee/easyfab, @@ -923855,6 +940382,8 @@ github.com/phonkee/equalia,num_dependents_deps.dev:0 github.com/phonkee/go-retry,num_dependents_deps.dev:0 github.com/phonkee/treasure,num_dependents_deps.dev:0 github.com/phonkee/vcontext, +github.com/phonomenal/Deployment-Environment-Cleanup, +github.com/phonomenal/Get_Deployment_ID, github.com/phonon-framework/phonon,num_dependents_deps.dev:0 github.com/phonowell/coffee-ahk,num_dependents_deps.dev:0 github.com/phonowell/estus-flask,num_dependents_deps.dev:0 @@ -923944,6 +940473,7 @@ github.com/photon-sdk/react-native-icloudstore,num_dependents_deps.dev:0 github.com/photon-sdk/react-native-tcp,num_dependents_deps.dev:0 github.com/photon-sdk/rn-electrum-client,num_dependents_deps.dev:0 github.com/photonbit/is-this-necessary,num_dependents_deps.dev:0 +github.com/photonbit/mypy-imprecision-action, github.com/photonized/uOttawa-Gym-Scheduler, github.com/photonsh/photon-core,num_dependents_deps.dev:0 github.com/photonsh/photon-js,num_dependents_deps.dev:0 @@ -924006,6 +940536,14 @@ github.com/phovea/phovea_vis,num_dependents_deps.dev:0 github.com/phovea/phovea_vis_lineup,num_dependents_deps.dev:0 github.com/phoviApp/react-native-sketch-canvas,num_dependents_deps.dev:0 github.com/phoyu/configuration-interface,num_dependents_deps.dev:0 +github.com/php-actions/behat, +github.com/php-actions/composer, +github.com/php-actions/deploy-ssh, +github.com/php-actions/phpcs, +github.com/php-actions/phpmd, +github.com/php-actions/phpspec, +github.com/php-actions/phpstan, +github.com/php-actions/phpunit, github.com/php-amqp/php-amqp,criticality_score:0.467860 github.com/php-amqplib/RabbitMqBundle,criticality_score:0.342610 github.com/php-amqplib/php-amqplib,criticality_score:0.621500 @@ -924017,6 +940555,13 @@ github.com/php-coveralls/php-coveralls,criticality_score:0.524820 github.com/php-cpm/fancyui,num_dependents_deps.dev:0 github.com/php-cpm/node-ipip,num_dependents_deps.dev:0 github.com/php-cpm/pretty-bytes,num_dependents_deps.dev:0 +github.com/php-cs-fixer/accessibleobject, +github.com/php-cs-fixer/cli-executor, +github.com/php-cs-fixer/diff, +github.com/php-cs-fixer/php-cs-fixer, +github.com/php-cs-fixer/phpunit-constraint-isidenticalstring, +github.com/php-cs-fixer/phpunit-constraint-xmlmatchesxsd, +github.com/php-cs-fixer/shim, github.com/php-curl-class/php-curl-class,criticality_score:0.458320 github.com/php-ds/ext-ds,criticality_score:0.437860 github.com/php-ds/polyfill,criticality_score:0.316150 @@ -924036,6 +940581,7 @@ github.com/php-flasher/flasher-notyf-js,num_dependents_deps.dev:0 github.com/php-flasher/flasher-pnotify-js,num_dependents_deps.dev:0 github.com/php-flasher/flasher-sweet-alert-js,num_dependents_deps.dev:0 github.com/php-flasher/flasher-toastr-js,num_dependents_deps.dev:0 +github.com/php-ga/composer-require-checker-ga, github.com/php-gettext/Gettext,criticality_score:0.516210 github.com/php-http/HttplugBundle,criticality_score:0.513030 github.com/php-http/curl-client,criticality_score:0.459680 @@ -924055,6 +940601,8 @@ github.com/php-pm/php-pm,criticality_score:0.501870 github.com/php-school/cli-menu,criticality_score:0.430960 github.com/php-school/learn-you-php,criticality_score:0.333680 github.com/php-telegram-bot/core,criticality_score:0.500460 +github.com/php-telegram-bot/inline-keyboard-pagination, +github.com/php-telegram-bot/telegram-bot-manager, github.com/php-tmdb/api,criticality_score:0.440790 github.com/php-to-node/php-helper, github.com/php-translation/symfony-bundle,criticality_score:0.433590 @@ -924072,6 +940620,7 @@ github.com/php4world/layer,num_dependents_deps.dev:0 github.com/phpDocumentor/ReflectionCommon,criticality_score:0.313260 github.com/phpDocumentor/ReflectionDocBlock,criticality_score:0.528490 github.com/phpDocumentor/TypeResolver,criticality_score:0.487980 +github.com/phpDocumentor/phar-ga, github.com/phpDocumentor/phpDocumentor,criticality_score:0.608190 github.com/phpList/openapi-checker,num_dependents_deps.dev:0 github.com/phpList/phplist3,criticality_score:0.543630 @@ -924080,6 +940629,7 @@ github.com/phpMv/ubiquity,criticality_score:0.514160 github.com/phpactor/phpactor,criticality_score:0.542810 github.com/phpadminer/GV-UI,num_dependents_deps.dev:0 github.com/phpadminer/reef-UI,num_dependents_deps.dev:0 +github.com/phparkitect/arkitect-github-actions, github.com/phparkle/disable-scroll-wheel-zoom,num_dependents_deps.dev:0 github.com/phpb-com/short-duid,num_dependents_deps.dev:0 github.com/phpbb/phpbb,criticality_score:0.665720 @@ -924098,6 +940648,7 @@ github.com/phpcoder88/url-shortener,num_dependents_deps.dev:0 github.com/phpcr/phpcr,criticality_score:0.374430 github.com/phpdi/ant,num_dependents_deps.dev:1 github.com/phpdi/nb-sdk,num_dependents_deps.dev:0 +github.com/phpdocker-io/github-actions-delete-abandoned-branches, github.com/phpdocker-io/phpdocker.io,criticality_score:0.352010 github.com/phpdude/django-macros-url, github.com/phpdude/django-render, @@ -924108,6 +940659,7 @@ github.com/phpdude/stuff-proxy, github.com/phpecc/phpecc,criticality_score:0.439520 github.com/phpenv/phpenv,criticality_score:0.348610 github.com/phpepe/highcharts-regression,num_dependents_deps.dev:0 +github.com/phpfour/tag-and-release-v2, github.com/phpfs/cid_bot,num_dependents_deps.dev:0 github.com/phpgao/scrapy-random-useragent-pro, github.com/phphavok/cgroups_exporter,num_dependents_deps.dev:0 @@ -924163,6 +940715,8 @@ github.com/phpro/grumphp,criticality_score:0.610590 github.com/phpro/grunt-es3-safe-recast,num_dependents_deps.dev:0 github.com/phpro/soap-client,criticality_score:0.506780 github.com/phproberto/joomla-gulp,num_dependents_deps.dev:0 +github.com/phpscan/phpscan_action, +github.com/phpseclib/mcrypt_compat, github.com/phpseclib/phpseclib,criticality_score:0.670830 github.com/phpservermon/phpservermon,criticality_score:0.567740 github.com/phpspec/phpspec,criticality_score:0.615450 @@ -924180,6 +940734,8 @@ github.com/phpsysinfo/phpsysinfo,criticality_score:0.498000 github.com/phptuts/Svelte-Prism,num_dependents_deps.dev:0 github.com/phptuts/Svelte-PrismJS, github.com/phpunch/route-roam-api,num_dependents_deps.dev:0 +github.com/phpunitgoodpractices/phpunitgoodpractices, +github.com/phpunitgoodpractices/traits, github.com/phpusr/markdown-tree-parser, github.com/phpv8/v8js,criticality_score:0.418180 github.com/phpvirtualbox/phpvirtualbox,criticality_score:0.381570 @@ -924207,6 +940763,7 @@ github.com/phracker/MacOSX-SDKs,criticality_score:0.355450 github.com/phracturedblue/openrc-syslog-fs,num_dependents_deps.dev:0 github.com/phramos07/golang-channels-demo,num_dependents_deps.dev:0 github.com/phramz/go-go-gadgets,num_dependents_deps.dev:0 +github.com/phramz/webhug-action, github.com/phraniiac/quick_tree,num_dependents_deps.dev:0 github.com/phrase-loop-player/auditok, github.com/phrase-yourself/phrased-js,num_dependents_deps.dev:0 @@ -924221,6 +940778,7 @@ github.com/phrase/phrase-cli,num_dependents_deps.dev:0 github.com/phrase/phrase-go,num_dependents_deps.dev:0 github.com/phrase/phrase-python, github.com/phrase/react-i18next-phraseapp,num_dependents_deps.dev:0 +github.com/phrase/setup-cli, github.com/phrase/vue-i18n-phrase-in-context-editor, github.com/phrasemix/onde, github.com/phrearch/py-infinote, @@ -924362,6 +940920,22 @@ github.com/phudgins/markovinator,num_dependents_deps.dev:0 github.com/phuelsdunk/aptwe, github.com/phueper/js-joda-extra,num_dependents_deps.dev:0 github.com/phuesler/ain,num_dependents_deps.dev:76 +github.com/phug-php/ast, +github.com/phug-php/bemto, +github.com/phug-php/compiler, +github.com/phug-php/dependency-injection, +github.com/phug-php/dev-tool, +github.com/phug-php/event, +github.com/phug-php/formatter, +github.com/phug-php/js-transformer-filter, +github.com/phug-php/lexer, +github.com/phug-php/parser, +github.com/phug-php/phug, +github.com/phug-php/reader, +github.com/phug-php/renderer, +github.com/phug-php/tester, +github.com/phug-php/util, +github.com/phug-php/watcher, github.com/phugh/LIWCjs,num_dependents_deps.dev:0 github.com/phugh/LIWCjs-Dictionary,num_dependents_deps.dev:0 github.com/phugh/affectimo,num_dependents_deps.dev:0 @@ -924402,6 +940976,7 @@ github.com/phuihock/django-xfield, github.com/phuijse/P4J, github.com/phulas/x-ray-nightmare,num_dependents_deps.dev:0 github.com/phulsechinmay/pycosmos, +github.com/phulsechinmay/rewritable-pr-comment, github.com/phulst/node-tile38,num_dependents_deps.dev:0 github.com/phult/sam.io,num_dependents_deps.dev:0 github.com/phumoonlight/hellonpm,num_dependents_deps.dev:0 @@ -924459,7 +941034,10 @@ github.com/phuongdo/go-monit-log,num_dependents_deps.dev:0 github.com/phuongduyphan/pegjs-import-loader,num_dependents_deps.dev:0 github.com/phuongduyphan/pegjs-require-import,num_dependents_deps.dev:0 github.com/phuonghau98/stably-togo,num_dependents_deps.dev:0 +github.com/phuonghuynh/action-ghrelease, +github.com/phuonghuynh/code-sign-action, github.com/phuonghuynh/compressor,num_dependents_deps.dev:0 +github.com/phuonghuynh/configurator, github.com/phuonghuynh/gitflow-maven-plugin,num_dependents_deps.dev:0 github.com/phuonghuynh/hapi-decorating,num_dependents_deps.dev:0 github.com/phuonghuynh/named-mvn,num_dependents_deps.dev:0 @@ -924523,7 +941101,10 @@ github.com/phw/rust-discid-sys,num_dependents_deps.dev:0 github.com/phw/showdown-htmlescape,num_dependents_deps.dev:0 github.com/phw198/OutlookGoogleCalendarSync,criticality_score:0.392310 github.com/phwelo/pkulib,num_dependents_deps.dev:0 +github.com/phwes/simple_hello_world, github.com/phwoolcon/gin-utils,num_dependents_deps.dev:0 +github.com/phwt/major-tagging-action, +github.com/phwt/sonarqube-quality-gate-action, github.com/phx-vic/nj-select,num_dependents_deps.dev:0 github.com/phx/brutalist, github.com/phx/lilendian, @@ -924558,6 +941139,7 @@ github.com/phyloref/jphyloref,num_dependents_deps.dev:0 github.com/phyloref/phyx.js,num_dependents_deps.dev:0 github.com/phylos/vuenilla,num_dependents_deps.dev:0 github.com/phylp/saml20-maintained,num_dependents_deps.dev:0 +github.com/phylum-dev/phylum-analyze-pr-action, github.com/phylumjs/cli,num_dependents_deps.dev:0 github.com/phylumjs/command,num_dependents_deps.dev:0 github.com/phylumjs/core,num_dependents_deps.dev:0 @@ -924631,6 +941213,7 @@ github.com/phzwart/qlty, github.com/pi-base/compile,num_dependents_deps.dev:0 github.com/pi-base/core,num_dependents_deps.dev:0 github.com/pi-base/dev,num_dependents_deps.dev:0 +github.com/pi-chan/simplecov-report-group-action, github.com/pi-cubed/graphql-proxy,num_dependents_deps.dev:0 github.com/pi-cubed/graphql-proxy-client,num_dependents_deps.dev:0 github.com/pi-cubed/node-starter,num_dependents_deps.dev:0 @@ -924713,6 +941296,7 @@ github.com/piaoying/reference, github.com/piaoying/specCreator, github.com/piapip/microservice,num_dependents_deps.dev:0 github.com/piarsoft/universal-clone, +github.com/piartz/actions-version-scanning, github.com/piascikj/imdone,num_dependents_deps.dev:0 github.com/piascikj/sweet-repl,num_dependents_deps.dev:0 github.com/piatra/eslint-plugin-fetch,num_dependents_deps.dev:0 @@ -924930,6 +941514,8 @@ github.com/picon-software/eo-api,num_dependents_deps.dev:0 github.com/piconetworks/create-react-app,num_dependents_deps.dev:0 github.com/picopath/http-server,num_dependents_deps.dev:0 github.com/picorana/hyper-colour,num_dependents_deps.dev:0 +github.com/picosh/pgs-action, +github.com/picosh/scp-publish-action, github.com/picospuch/NullDuplexStream,num_dependents_deps.dev:0 github.com/picospuch/fora,num_dependents_deps.dev:0 github.com/picostack/pico,num_dependents_deps.dev:0 @@ -924981,6 +941567,8 @@ github.com/pid/puid,num_dependents_deps.dev:10 github.com/pid/speakingurl,"criticality_score:0.312930,num_dependents_deps.dev:530" github.com/pidaeus/pidaeus, github.com/pidah/simplecontract,num_dependents_deps.dev:0 +github.com/pidanmeng/changeset-action, +github.com/pidanmeng/force-sync-gitee-action, github.com/pidario/disposable,num_dependents_deps.dev:0 github.com/pidcodes/pidcodes.github.com,criticality_score:0.515900 github.com/piderman314/bardecoder,num_dependents_deps.dev:0 @@ -925130,6 +941718,7 @@ github.com/pienter-tech/gridsome-source-directus,num_dependents_deps.dev:0 github.com/pieper/dcmjs,num_dependents_deps.dev:0 github.com/pieper/step,num_dependents_deps.dev:0 github.com/piepin/password-generator,num_dependents_deps.dev:0 +github.com/pier-digital/heroku-deploy, github.com/pier1/eslint-config-pier1,num_dependents_deps.dev:0 github.com/pier4all/mongoose-versioned,num_dependents_deps.dev:0 github.com/pier5/stepped-process,num_dependents_deps.dev:0 @@ -925183,6 +941772,8 @@ github.com/pierlauro/protobufferize, github.com/pierlauro/pyjex, github.com/pierluigi-failla/pipesnake, github.com/pierluigi-giancola/react-storybook-library-test,num_dependents_deps.dev:0 +github.com/pierluigi/random-1on1-questions-action, +github.com/pierluigi/repository-secret-javascript-action, github.com/pierman1/pierrandomcolor2,num_dependents_deps.dev:0 github.com/piernczk/search-sort-rs,num_dependents_deps.dev:0 github.com/piero80/react-fullscreen-menu,num_dependents_deps.dev:0 @@ -925201,7 +941792,9 @@ github.com/pieroproietti/perrisbrewery,num_dependents_deps.dev:0 github.com/pieroribeiro/uutils,num_dependents_deps.dev:0 github.com/pierosaa/mycalculator,num_dependents_deps.dev:0 github.com/pierot/grunt-fabric-deploy,num_dependents_deps.dev:0 +github.com/pierotofy/issuewhiz, github.com/pierotofy/leaflet-measure-ex,num_dependents_deps.dev:0 +github.com/pierotofy/set-swap-space, github.com/pierotofy/vmem, github.com/pierotofy/webodm-posm-gcpi,num_dependents_deps.dev:0 github.com/pieroxy/lz-string,"criticality_score:0.327460,num_dependents_deps.dev:9236" @@ -925223,6 +941816,7 @@ github.com/pierrchen/oci-systemd-hook-go,num_dependents_deps.dev:0 github.com/pierrchen/toPinyin,num_dependents_deps.dev:0 github.com/pierre-dargham/generator-sage,num_dependents_deps.dev:0 github.com/pierre-emmanuelj/iptv-proxy,num_dependents_deps.dev:0 +github.com/pierre-ernst/Snyk-invite-user-issue-action, github.com/pierre-haessig/stodynprog, github.com/pierre-luc/AngularElasticSVGElements,num_dependents_deps.dev:0 github.com/pierre-luc/angularCubicColorPicker,num_dependents_deps.dev:0 @@ -925256,6 +941850,7 @@ github.com/pierreandrieu/bioconsertinc, github.com/pierreandrieu/corankco, github.com/pierreant-p/jinja-loader,num_dependents_deps.dev:0 github.com/pierreavn/angular-tabler-icons,num_dependents_deps.dev:0 +github.com/pierreavn/maryse-action, github.com/pierrebaudot/infotopopy, github.com/pierrebeaucamp/ando,num_dependents_deps.dev:0 github.com/pierrebeaucamp/proxii,num_dependents_deps.dev:0 @@ -925392,6 +941987,9 @@ github.com/pierrepln/test-semantic-version,num_dependents_deps.dev:0 github.com/pierrepo/PBxplore, github.com/pierrepo/autoclasswrapper, github.com/pierrepo/seq-to-first-iso, +github.com/pierreprinetti/action-ovh-dns, +github.com/pierreprinetti/action-ovh-dns-import, +github.com/pierreprinetti/backport, github.com/pierreprinetti/gateway,num_dependents_deps.dev:0 github.com/pierreroth64/cmetrix, github.com/pierreroth64/jest-dot-reporter,num_dependents_deps.dev:6 @@ -925409,6 +942007,7 @@ github.com/pierresh/morris.js,num_dependents_deps.dev:0 github.com/pierresouchay/consul-rust,num_dependents_deps.dev:0 github.com/pierrez/gostatic,num_dependents_deps.dev:0 github.com/pierrickMeignant/libraries,num_dependents_deps.dev:0 +github.com/pierrickdelrieu/scp-action, github.com/pierrickrouxel/ember-cli-bootstrap-colorpicker,num_dependents_deps.dev:0 github.com/pierrickrouxel/ember-strap,num_dependents_deps.dev:0 github.com/pierrickrouxel/loopback-connector-db2i,num_dependents_deps.dev:0 @@ -925418,6 +942017,7 @@ github.com/pierroberto/encrypt-phone-numbers,num_dependents_deps.dev:0 github.com/pierrotws/nwn,num_dependents_deps.dev:0 github.com/pierrybos/validar-documento,num_dependents_deps.dev:0 github.com/pierrybos/validate-document-checker,num_dependents_deps.dev:0 +github.com/piersb/copy-action-pb, github.com/piersdd/tesla-powerwall-json-py, github.com/piersfinlayson/rust-i2cdev,num_dependents_deps.dev:0 github.com/piersolenski/plop-pack-gatsby-starter, @@ -925473,6 +942073,7 @@ github.com/pieterv/react-layers,num_dependents_deps.dev:0 github.com/pietervandereems/cradle,num_dependents_deps.dev:0 github.com/pietervanheijningen/vuejs-auto-complete-without-autoclearing,num_dependents_deps.dev:0 github.com/pietervisser/monita,num_dependents_deps.dev:0 +github.com/pietervp/jira-status-pr-tag, github.com/pietgeursen/bamboo-rs,num_dependents_deps.dev:0 github.com/pietgeursen/bmp280-rs,num_dependents_deps.dev:0 github.com/pietgeursen/conways,num_dependents_deps.dev:0 @@ -925516,6 +942117,9 @@ github.com/pietrobarbiero/deep-topological-learning, github.com/pietrobarbiero/meco, github.com/pietrobarbiero/moea-feature-selection, github.com/pietrobarbiero/pytorch_explain, +github.com/pietrobolcato/action-clone-private-submodule, +github.com/pietrobolcato/action-read-yaml, +github.com/pietrobolcato/install-azure-cli-action, github.com/pietrobr/node-red-contrib-azure-iot-central,num_dependents_deps.dev:0 github.com/pietrobraione/jbse,Google github.com/pietrocarrara/gulia,num_dependents_deps.dev:0 @@ -925563,6 +942167,10 @@ github.com/pietrovismara/nodejs-translator,num_dependents_deps.dev:0 github.com/pietrovismara/rson,num_dependents_deps.dev:0 github.com/pietrovismara/scavenger,num_dependents_deps.dev:0 github.com/pietruszka/passport-universal-auth,num_dependents_deps.dev:0 +github.com/pietrzakadrian/easy-coding-standard-action, +github.com/pietrzakadrian/easy-coding-standard-github-action, +github.com/pietrzakadrian/ecs-action-1, +github.com/pietrzakadrian/rector-github-action, github.com/piets/homebridge-samsung-tizen, github.com/pietvanzoen/funkey,num_dependents_deps.dev:0 github.com/pietvanzoen/jasmine-promise-matchers,num_dependents_deps.dev:0 @@ -925735,6 +942343,7 @@ github.com/pih/pih-esm-root-config,num_dependents_deps.dev:0 github.com/piha/node-simple-settings,num_dependents_deps.dev:0 github.com/pihao/re,num_dependents_deps.dev:0 github.com/piharpi/jekyll-klise,criticality_score:0.358470 +github.com/pihart/pr-label-action, github.com/pihart/tex,num_dependents_deps.dev:0 github.com/pihart/ts,num_dependents_deps.dev:0 github.com/pihart/typedoc,num_dependents_deps.dev:0 @@ -925966,6 +942575,7 @@ github.com/pillarBoy/what-seed,num_dependents_deps.dev:0 github.com/pillargg/Twitch-Python, github.com/pillargg/pillar-api-wrapper, github.com/pillargg/pillar-queue-wrapper, +github.com/pillargg/sam-ots, github.com/pillargg/twitch_chat_analysis, github.com/pillargg/youtube-upload, github.com/pillarjs/cookies,"criticality_score:0.396380,num_dependents_deps.dev:26841" @@ -926065,6 +942675,7 @@ github.com/pilosa/picap,num_dependents_deps.dev:0 github.com/pilosa/pilosa,criticality_score:0.428450 github.com/pilosa/python-pilosa, github.com/pilosa/python-pilosa-roaring, +github.com/pilosus/action-pip-license-checker, github.com/pilosus/c3linear, github.com/pilosus/flask_prometheus_metrics, github.com/pilosus/piny, @@ -926079,6 +942690,7 @@ github.com/pilot-team/react-pilot-components,num_dependents_deps.dev:0 github.com/pilot114/my_docker,num_dependents_deps.dev:0 github.com/pilotak/python-mcp2221, github.com/pilotfish/pilotfish,num_dependents_deps.dev:0 +github.com/pilotgab/new-issue-action, github.com/pilotkid/Express-Mongo-Logger,num_dependents_deps.dev:0 github.com/pilotkid/vue-dist-live,num_dependents_deps.dev:0 github.com/pilotkid/vue-styleguidist-auto-sections,num_dependents_deps.dev:0 @@ -926088,6 +942700,7 @@ github.com/pilotniq/node-max17084,num_dependents_deps.dev:0 github.com/pilotniq/node-raspi-modbus-halfduplex,num_dependents_deps.dev:0 github.com/pilotpirxie/cryptolock,num_dependents_deps.dev:0 github.com/pilotschenck/pyzerto-unofficial, +github.com/pilou/rancher1-webhook, github.com/pilov-pa/js-di,num_dependents_deps.dev:0 github.com/pilov-pa/vue-js-di,num_dependents_deps.dev:0 github.com/pilseong/hotel,num_dependents_deps.dev:0 @@ -926425,12 +943038,15 @@ github.com/pine613/node-vimlint,num_dependents_deps.dev:0 github.com/pine613/noel,num_dependents_deps.dev:0 github.com/pine613/typescript-after-extends,num_dependents_deps.dev:0 github.com/pinealctx/neptune,num_dependents_deps.dev:0 +github.com/pineapple-lab/jira-issue-transitions, +github.com/pineapple-lab/link-to-jira-issues, github.com/pineappleDevsBr/dracula-core,num_dependents_deps.dev:0 github.com/pineappleaf/react-media-recorder,num_dependents_deps.dev:0 github.com/pineapplehq/django-requestlogs, github.com/pineapplehunter/tuat-feed, github.com/pineapplejs/PineappleJS,num_dependents_deps.dev:0 github.com/pineapplejs/random_number,num_dependents_deps.dev:0 +github.com/pineapplelol/emojify-pr-title, github.com/pineapplelol/readable-num,num_dependents_deps.dev:0 github.com/pineapplemachine/camel-to-kebab-js,num_dependents_deps.dev:4 github.com/pineapplemachine/csv-js,num_dependents_deps.dev:0 @@ -926592,6 +943208,7 @@ github.com/pingsutw/flyteplugins,num_dependents_deps.dev:0 github.com/pingswept/pysolar,criticality_score:0.430520 github.com/pingthingsio/comgo,num_dependents_deps.dev:0 github.com/pinguet62/dbunit-sql,num_dependents_deps.dev:0 +github.com/pinguet62/docker-image-serialization, github.com/pinguet62/java2typescript-maven-plugin,num_dependents_deps.dev:0 github.com/pinguet62/protractor-backend-mock-plugin,num_dependents_deps.dev:0 github.com/pinguet62/reactor-call-stack,num_dependents_deps.dev:0 @@ -926648,11 +943265,14 @@ github.com/pinicarus/piquouze,num_dependents_deps.dev:4 github.com/pinicarus/ravenwood,num_dependents_deps.dev:0 github.com/pinicarus/rw-body,num_dependents_deps.dev:0 github.com/pinicarus/rw-options,num_dependents_deps.dev:0 +github.com/pinio/draft-semver, github.com/pinittome/proxy,num_dependents_deps.dev:0 github.com/pinjollist/next-with-analytics,num_dependents_deps.dev:0 github.com/pink-pigs/common, github.com/pinkahd/ejs-loader,num_dependents_deps.dev:0 github.com/pinkahd/nx-event-bus,num_dependents_deps.dev:0 +github.com/pinkasey/cpanel-deploy-action, +github.com/pinkasey/cpanel-repository-action, github.com/pinkcao/vue-drag-resize-rotate, github.com/pinkd/errors,num_dependents_deps.dev:0 github.com/pinkd/go-lib,num_dependents_deps.dev:0 @@ -926699,6 +943319,7 @@ github.com/pinkstrings/eslint-config-pomo, github.com/pinkstrings/eslint-config-pomo-base,num_dependents_deps.dev:0 github.com/pinkumohikan/isucon-practice-20210710,num_dependents_deps.dev:0 github.com/pinkyjie/angular1-webpack-starter,num_dependents_deps.dev:0 +github.com/pinkynrg/setup-wireguard, github.com/pinkyo/validatorjs,num_dependents_deps.dev:0 github.com/pinlast/secure-aiohttp, github.com/pinmonl/pinmonl,num_dependents_deps.dev:0 @@ -926708,6 +943329,7 @@ github.com/pinn3/hyperscriptor,num_dependents_deps.dev:0 github.com/pinn3/redux-simple-logger,num_dependents_deps.dev:0 github.com/pinnackl/paper-paypal-component,num_dependents_deps.dev:0 github.com/pinnacle-customer/oidc-angular2-client,num_dependents_deps.dev:0 +github.com/pinnacle-labs/taqueria-github-action, github.com/pinnacle0/frontend-libraries,num_dependents_deps.dev:0 github.com/pinnaculum/galacteek, github.com/pinntech/gulp-node-slate,num_dependents_deps.dev:0 @@ -927036,6 +943658,8 @@ github.com/piotr-kalanski/kafka-admin-rest,num_dependents_deps.dev:0 github.com/piotr-kalanski/kafka-streams-app-framework,num_dependents_deps.dev:0 github.com/piotr-kalanski/spark-local,num_dependents_deps.dev:0 github.com/piotr-kalanski/sparkschema2class,num_dependents_deps.dev:0 +github.com/piotr-krusinski/action-google-artifact-registry, +github.com/piotr-krusinski/action-google-kubernetes-engine-deployment, github.com/piotr-machura/cnetworks,num_dependents_deps.dev:0 github.com/piotr-mroczek/jquery-tabledit,num_dependents_deps.dev:0 github.com/piotr-napadlek/generator-extjs-module,num_dependents_deps.dev:0 @@ -927055,6 +943679,7 @@ github.com/piotr-tarnowski/jackmods,num_dependents_deps.dev:0 github.com/piotr-tarnowski/jex,num_dependents_deps.dev:0 github.com/piotr-tarnowski/js-server-validators,num_dependents_deps.dev:0 github.com/piotr-tarnowski/xjc-plugins-base,num_dependents_deps.dev:0 +github.com/piotr-yuxuan/walter-ci, github.com/piotr1215/copilot-testing,num_dependents_deps.dev:0 github.com/piotr1215/go-sample-api,num_dependents_deps.dev:0 github.com/piotrb/mux_tf,num_dependents_deps.dev:0 @@ -927189,6 +943814,7 @@ github.com/piotrooo/interval-input,num_dependents_deps.dev:0 github.com/piotros/json-path-picker,num_dependents_deps.dev:0 github.com/piotrosmola/now-static-build-vuepress-docgen,num_dependents_deps.dev:0 github.com/piotrpalarz/vue-next-breakpoints,num_dependents_deps.dev:0 +github.com/piotrpawlaczek/python-blacken, github.com/piotrpietrzak/aprcalc,num_dependents_deps.dev:0 github.com/piotrpliszko/terminal-ui,num_dependents_deps.dev:0 github.com/piotrpolak/spring-boot-data-fixtures,num_dependents_deps.dev:0 @@ -927228,6 +943854,8 @@ github.com/pioug/gulp-expect-file, github.com/pioug/gulp-html-minifier-terser,num_dependents_deps.dev:0 github.com/pioug/gulp-preprocess, github.com/pioug/gulp-spawn, +github.com/pioug/la-cle, +github.com/pioug/le-slack-message, github.com/pioug/md-virtual-repeater,num_dependents_deps.dev:0 github.com/pioug/ng-annotate,num_dependents_deps.dev:0 github.com/pioug/ng-dependencies,num_dependents_deps.dev:0 @@ -927503,6 +944131,8 @@ github.com/pipauwel/IFCtoRDF,num_dependents_deps.dev:0 github.com/pipauwel/ifcParserLib,num_dependents_deps.dev:6 github.com/pipboy3000/count0.org,num_dependents_deps.dev:0 github.com/pipboy3000/eslint-plugin-no-hyogo-police,num_dependents_deps.dev:0 +github.com/pipe-cd/actions-event-register, +github.com/pipe-cd/actions-gh-release, github.com/pipe-cd/actions-plan-preview,num_dependents_deps.dev:0 github.com/pipe-cd/pipe,"criticality_score:0.604750,num_dependents_deps.dev:0" github.com/pipe-dream/core, @@ -927542,6 +944172,31 @@ github.com/pipeless/pipeless-node, github.com/pipeletteio/debug,num_dependents_deps.dev:0 github.com/pipeletteio/nop,num_dependents_deps.dev:0 github.com/pipeletteio/time-meter,num_dependents_deps.dev:0 +github.com/pipeline-components/alex, +github.com/pipeline-components/ansible-lint, +github.com/pipeline-components/awesome-lint, +github.com/pipeline-components/black, +github.com/pipeline-components/eslint, +github.com/pipeline-components/flake8, +github.com/pipeline-components/go-lint, +github.com/pipeline-components/hadolint, +github.com/pipeline-components/markdown-spellcheck, +github.com/pipeline-components/markdownlint, +github.com/pipeline-components/perl-critic, +github.com/pipeline-components/php-codesniffer, +github.com/pipeline-components/php-linter, +github.com/pipeline-components/php-security-checker, +github.com/pipeline-components/phpunit, +github.com/pipeline-components/python-safety, +github.com/pipeline-components/remark-lint, +github.com/pipeline-components/rubocop, +github.com/pipeline-components/shellcheck, +github.com/pipeline-components/stylelint, +github.com/pipeline-components/tslint, +github.com/pipeline-components/xmllint, +github.com/pipeline-components/yamllint, +github.com/pipeline-foundation/csabd, +github.com/pipeline-foundation/get-origin-def-branch, github.com/pipelined/audio,num_dependents_deps.dev:0 github.com/pipelined/example,num_dependents_deps.dev:0 github.com/pipelined/fileformat,num_dependents_deps.dev:0 @@ -927682,6 +944337,7 @@ github.com/piquette/finance-go,num_dependents_deps.dev:2 github.com/piraces/eleventy-plugin-pwa,num_dependents_deps.dev:0 github.com/piraces/guid,num_dependents_deps.dev:0 github.com/piraces/guid-ts, +github.com/piraces/kube-score-ga, github.com/pirackr/python_orgmode, github.com/piraeusdatastore/linstor-csi,num_dependents_deps.dev:0 github.com/piraeusdatastore/piraeus-ha-controller,num_dependents_deps.dev:0 @@ -927700,6 +944356,7 @@ github.com/piranha/keymage,num_dependents_deps.dev:0 github.com/piranha/nomad, github.com/piranha/opster, github.com/piranha/tnetstrings.js,num_dependents_deps.dev:0 +github.com/piranha/webhook-action, github.com/piranhacloud/piranha,num_dependents_deps.dev:3954 github.com/piranna/BarebonesOS-initramfs,num_dependents_deps.dev:0 github.com/piranna/BarebonesOS-linux,num_dependents_deps.dev:0 @@ -927823,6 +944480,7 @@ github.com/pirix-gh/eledoc, github.com/pirix-gh/ts-toolbelt,num_dependents_deps.dev:440 github.com/pirmd/epub,num_dependents_deps.dev:0 github.com/pirminkager/node-red-contrib-opcuacrawler,num_dependents_deps.dev:0 +github.com/piro0919/pr-message-to-slack, github.com/piro0919/react-comic-viewer,num_dependents_deps.dev:0 github.com/piro0919/react-router-dom-transition,num_dependents_deps.dev:0 github.com/piro0919/react-router-dom-transition2,num_dependents_deps.dev:0 @@ -928271,6 +944929,7 @@ github.com/pitronalldak/rc-phone-input,num_dependents_deps.dev:0 github.com/pitrou/pickle5-backport, github.com/pitrz/icefunprog, github.com/pitschbr/tedious-helper,num_dependents_deps.dev:0 +github.com/pitscher/ovh-deploy-hosting-action, github.com/pitschr/knx-link,num_dependents_deps.dev:0 github.com/pittachalk/sc3s, github.com/pittalamadhuri/loginradiusserver,num_dependents_deps.dev:0 @@ -928343,6 +945002,7 @@ github.com/piuccio/time-fn,num_dependents_deps.dev:0 github.com/piuccio/write-file-promise,num_dependents_deps.dev:2 github.com/piumaio/piuma,num_dependents_deps.dev:0 github.com/piumaz/angular-pull-to-refresh,num_dependents_deps.dev:0 +github.com/piumi/dbt-checkpoint, github.com/piumosso/UserStory,num_dependents_deps.dev:0 github.com/piumosso/grunt-ssi,num_dependents_deps.dev:0 github.com/piumosso/grunt-user-story,num_dependents_deps.dev:0 @@ -928430,6 +945090,7 @@ github.com/pivotal-sg/react-native-timer-display,num_dependents_deps.dev:0 github.com/pivotal/LicenseFinder,criticality_score:0.644850 github.com/pivotal/build-service-cli,num_dependents_deps.dev:0 github.com/pivotal/build-service-system,num_dependents_deps.dev:0 +github.com/pivotal/cacheable-flash, github.com/pivotal/cloud-service-broker,num_dependents_deps.dev:0 github.com/pivotal/docs-platform-automation,num_dependents_deps.dev:0 github.com/pivotal/gp-releng-libs,num_dependents_deps.dev:0 @@ -928470,6 +945131,7 @@ github.com/pivovarit/parallel-collectors,"criticality_score:0.333110,num_depende github.com/pivovarit/thread-factory,num_dependents_deps.dev:0 github.com/pivovarit/throwing-function,"criticality_score:0.321430,num_dependents_deps.dev:4" github.com/pivpn/pivpn,criticality_score:0.537920 +github.com/pivvenit/list-queued-deployments-action, github.com/piwheels/hostedpi, github.com/piwheels/piwheels, github.com/piwi/grunt-nunjucks-render,num_dependents_deps.dev:0 @@ -928613,6 +945275,7 @@ github.com/pixelfactoryio/goqonto,num_dependents_deps.dev:0 github.com/pixelfactoryio/privatebin-cli,num_dependents_deps.dev:0 github.com/pixelfantasy/tinymce-plugin-twigvariable,num_dependents_deps.dev:0 github.com/pixelfed/pixelfed,criticality_score:0.515250 +github.com/pixelfederation/gh-action-manifest-tool, github.com/pixelfelt/pixelfelt-sites,num_dependents_deps.dev:0 github.com/pixelfusion/front-end-scripts,num_dependents_deps.dev:0 github.com/pixelfusion/react-route-guard,num_dependents_deps.dev:0 @@ -928820,6 +945483,7 @@ github.com/pixore/subdivide,num_dependents_deps.dev:0 github.com/pixrr/grapesjs-mjml,num_dependents_deps.dev:0 github.com/pixrr/nuxt7,num_dependents_deps.dev:0 github.com/pixta-dev/eslint-config-pixta,num_dependents_deps.dev:0 +github.com/pixta-dev/repository-mirroring-action, github.com/pixtron/bybit-api,num_dependents_deps.dev:0 github.com/pixtron/electron-traywindow-positioner,num_dependents_deps.dev:0 github.com/pixtron/gricons,num_dependents_deps.dev:0 @@ -928962,6 +945626,7 @@ github.com/pj3677/yo-azurecli,num_dependents_deps.dev:0 github.com/pj4533/lightman,num_dependents_deps.dev:0 github.com/pj7810/hello-go-mod,num_dependents_deps.dev:0 github.com/pj7810/hellogomod,num_dependents_deps.dev:0 +github.com/pj8/github-backlog-sync, github.com/pj9039/example_pkg4, github.com/pjacferreira/flow-sequencer,num_dependents_deps.dev:0 github.com/pjacferreira/resmq,num_dependents_deps.dev:0 @@ -929154,6 +945819,7 @@ github.com/pjoc-team/go-options,num_dependents_deps.dev:0 github.com/pjoc-team/healthz,num_dependents_deps.dev:0 github.com/pjoc-team/locker,num_dependents_deps.dev:0 github.com/pjoc-team/pay-gateway,num_dependents_deps.dev:0 +github.com/pjoc-team/swagger-ui-action, github.com/pjoc-team/timer-proto,num_dependents_deps.dev:0 github.com/pjoc-team/tracing,num_dependents_deps.dev:0 github.com/pjoe/SPIRV-Tools.js,num_dependents_deps.dev:0 @@ -929293,6 +945959,8 @@ github.com/pkarl/greenhouseio,num_dependents_deps.dev:0 github.com/pkasila/gorm-crypto,num_dependents_deps.dev:0 github.com/pkaske/chart-elements,num_dependents_deps.dev:0 github.com/pkaske/upload-test-server,num_dependents_deps.dev:0 +github.com/pkautomation/ms-teams-deploy-card-pk, +github.com/pkautomation/test-reporter-pk, github.com/pkavajin/strfmt,num_dependents_deps.dev:0 github.com/pkavumba/html-annotator,num_dependents_deps.dev:0 github.com/pkazenas/jsonschema4s,num_dependents_deps.dev:0 @@ -929336,12 +946004,16 @@ github.com/pkerschbaum/gulp-tsb,num_dependents_deps.dev:0 github.com/pkesc/prometheus_lighthouse_exporter,num_dependents_deps.dev:0 github.com/pketh/random-unicode-emoji,num_dependents_deps.dev:0 github.com/pkfln/node-amx,num_dependents_deps.dev:0 +github.com/pkg-size/action, +github.com/pkg-src/github-action-git-bash, github.com/pkg/browser,"criticality_score:0.436270,num_dependents_deps.dev:900" github.com/pkg/errors,criticality_score:0.579000 github.com/pkg/profile,"criticality_score:0.368800,num_dependents_deps.dev:445" github.com/pkg/sftp,"criticality_score:0.549120,num_dependents_deps.dev:943" github.com/pkg/term,criticality_score:0.512750 github.com/pkg/xattr,num_dependents_deps.dev:89 +github.com/pkgacek/check-pr-description-for-jira-ticket, +github.com/pkgacek/update-package-version-on-release, github.com/pkgcloud/pkgcloud,"criticality_score:0.420000,num_dependents_deps.dev:84" github.com/pkgcloud/pkgcloud-cli, github.com/pkgcloud/pkgcloud-sync,num_dependents_deps.dev:0 @@ -929353,6 +946025,7 @@ github.com/pkgcore/pkgdev, github.com/pkgcore/pychroot, github.com/pkgcore/snakeoil, github.com/pkgdeps/escape-html-template-tag,num_dependents_deps.dev:0 +github.com/pkgdeps/git-tag-action, github.com/pkgdeps/update-github-actions-permissions,num_dependents_deps.dev:0 github.com/pkgjs/dependents,num_dependents_deps.dev:0 github.com/pkgjs/detect-node-support,num_dependents_deps.dev:0 @@ -929364,6 +946037,8 @@ github.com/pkgjs/util-parseargs, github.com/pkgjs/wiby,num_dependents_deps.dev:0 github.com/pkgms/go,num_dependents_deps.dev:0 github.com/pkgprateek/ecoclib, +github.com/pkgstore-archive/github-action-build-deb, +github.com/pkgstore/github-action-mirror, github.com/pkgw/bibtools, github.com/pkgw/cranko,num_dependents_deps.dev:0 github.com/pkgw/drorg,num_dependents_deps.dev:0 @@ -929464,6 +946139,7 @@ github.com/pknomad/notes-of-a-curious-se,num_dependents_deps.dev:0 github.com/pknut/sumfi, github.com/pkoch/awscli-sqsall, github.com/pkochubey/gulp-rev-simple-hash,num_dependents_deps.dev:0 +github.com/pkoehlers/openscad-build-action, github.com/pkoenig10/oidc-rp,num_dependents_deps.dev:0 github.com/pkolaczk/fclones,num_dependents_deps.dev:0 github.com/pkoli/xls2pojo-maven-plugin,num_dependents_deps.dev:0 @@ -929628,6 +946304,7 @@ github.com/pksurya/ng2test1,num_dependents_deps.dev:0 github.com/pkt-utils/sidecar,num_dependents_deps.dev:0 github.com/pktcjswo/color-scheme-fallback,num_dependents_deps.dev:0 github.com/pkteer/tpm-util,num_dependents_deps.dev:0 +github.com/pku-core/cos-action, github.com/pkuca/hn,num_dependents_deps.dev:0 github.com/pkuca/irc-server-scan,num_dependents_deps.dev:0 github.com/pkuczynski/webpack-plugin-react-intl,num_dependents_deps.dev:0 @@ -929645,6 +946322,7 @@ github.com/pkulev/xo1, github.com/pkulev/xo2, github.com/pkulev/xoinvader, github.com/pkuliuqiang/data-format-transformer,num_dependents_deps.dev:0 +github.com/pkumar001/kryptowire-analysis-action, github.com/pkumar0508/sarnrawrsaur,num_dependents_deps.dev:0 github.com/pkumar98/react-text-content-editable,num_dependents_deps.dev:0 github.com/pkumarmind/connect1auth,num_dependents_deps.dev:0 @@ -929662,6 +946340,7 @@ github.com/pkvach/eleventy-plugin-pwa,num_dependents_deps.dev:0 github.com/pkwagner/smartmeter2mqtt,num_dependents_deps.dev:0 github.com/pkware/aho-corasick,num_dependents_deps.dev:0 github.com/pkware/truth-android,num_dependents_deps.dev:0 +github.com/pkwenda/notion-site, github.com/pkwenda/share_shell,num_dependents_deps.dev:0 github.com/pkwiatek6/discrodbot,num_dependents_deps.dev:0 github.com/pkxjs/pkx,num_dependents_deps.dev:3 @@ -929675,11 +946354,19 @@ github.com/pl-Steve28-lq/Num2Kor, github.com/pl-Steve28-lq/PyNuna, github.com/pl-Steve28-lq/TypedTuples, github.com/pl-lang/jsplint,num_dependents_deps.dev:0 +github.com/pl-strflt/changelog-driven-release, +github.com/pl-strflt/docker-container-action, +github.com/pl-strflt/job-summary-url-action, +github.com/pl-strflt/junit-xml-to-html, +github.com/pl-strflt/rich-workflow-run, +github.com/pl-strflt/rust-sccache-action, github.com/pl0q1n/httparse,num_dependents_deps.dev:0 github.com/pl12133/citysdk,num_dependents_deps.dev:0 github.com/pl12133/css-object-loader,num_dependents_deps.dev:0 github.com/pl12133/partial-any,num_dependents_deps.dev:0 +github.com/pl247/container-app, github.com/pl2476/tools,num_dependents_deps.dev:0 +github.com/pl4nty/teams-deploy-tab, github.com/pl4y3r1/golangbook,num_dependents_deps.dev:0 github.com/pl4za/surprise-santa,num_dependents_deps.dev:0 github.com/pl8/pl8,num_dependents_deps.dev:0 @@ -929687,6 +946374,7 @@ github.com/pla2aroi/next-antd-dark-mode, github.com/pla2aroi/postcss-css-vars-to-less-antd,num_dependents_deps.dev:0 github.com/plaa/TimeShift-js,num_dependents_deps.dev:0 github.com/placardi/xynohm,num_dependents_deps.dev:0 +github.com/place-labs/orthograph-err, github.com/place1/inversify-stereotype-decorators,num_dependents_deps.dev:0 github.com/place1/kloudlib, github.com/place1/pulumi-htpasswd, @@ -929905,6 +946593,9 @@ github.com/planesticud/ubicaciones_crud,num_dependents_deps.dev:0 github.com/planet-221b/pureMVC, github.com/planet-ch/antd-multi-cascader,num_dependents_deps.dev:0 github.com/planet-ch/vue-sidemenu,num_dependents_deps.dev:0 +github.com/planet-code/release-tag-action, +github.com/planet-code/upload-to-release-action, +github.com/planet-fans/Github-Merge-Tag, github.com/planet-i/leetcode,num_dependents_deps.dev:0 github.com/planet-nine-app/node-planet-nine-gateway-framework,num_dependents_deps.dev:0 github.com/planet-nine-app/secp256k1-libraries,num_dependents_deps.dev:0 @@ -929993,6 +946684,9 @@ github.com/planetmarshall/pillow-jpls, github.com/planetmint/cryptoconditions, github.com/planetmint/planetmint-driver, github.com/planetnoobgothacked/testingthing,num_dependents_deps.dev:0 +github.com/planetoftheweb/copy-to-branches, +github.com/planetoftheweb/generate-thumbnails, +github.com/planetoftheweb/podcast-generator, github.com/planetrio/planetr-compose,num_dependents_deps.dev:0 github.com/planetruby/conferences,criticality_score:0.336910 github.com/planetsLightningArrester/2complement,num_dependents_deps.dev:0 @@ -930000,9 +946694,13 @@ github.com/planetsLightningArrester/console-super,num_dependents_deps.dev:0 github.com/planetsLightningArrester/ezFFT,num_dependents_deps.dev:0 github.com/planetsLightningArrester/printaeu,num_dependents_deps.dev:0 github.com/planetscale/cli,num_dependents_deps.dev:0 +github.com/planetscale/create-branch-action, +github.com/planetscale/create-branch-password-action, +github.com/planetscale/create-deploy-request-action, github.com/planetscale/planetscale-go,num_dependents_deps.dev:0 github.com/planetscale/planetscale-node, github.com/planetscale/planetscale-ruby,num_dependents_deps.dev:0 +github.com/planetscale/setup-pscale-action, github.com/planetscale/sql-proxy,num_dependents_deps.dev:0 github.com/planetscale/tengo,num_dependents_deps.dev:46 github.com/planetscale/vitess,num_dependents_deps.dev:0 @@ -930057,6 +946755,7 @@ github.com/planningcenter/javascript,num_dependents_deps.dev:0 github.com/planningcenter/react-trianglify,num_dependents_deps.dev:0 github.com/plano247/common,num_dependents_deps.dev:0 github.com/planser/ng-stubs,num_dependents_deps.dev:0 +github.com/plant-a-seed/ga-inventory, github.com/plant-ai-biophysics-lab/AgML, github.com/plant99/better-wget, github.com/plant99/felicette, @@ -930394,6 +947093,8 @@ github.com/platdot-network/platdot,num_dependents_deps.dev:0 github.com/plateaukao/CalliImageView,num_dependents_deps.dev:0 github.com/platehub/node-plate-api,num_dependents_deps.dev:0 github.com/platelminto/parse-torrent-title, +github.com/platenio/action-hugo-module-update, +github.com/platenio/action-netlify-toml-update-hugo, github.com/plateoapp/rich-text,num_dependents_deps.dev:0 github.com/plateui/plateui, github.com/platfarm-com/bracketslogger,num_dependents_deps.dev:0 @@ -930425,10 +947126,12 @@ github.com/platformbuilders/react-elements, github.com/platformbuilders/react-native-chatter,num_dependents_deps.dev:0 github.com/platformbuilders/react-native-ui,num_dependents_deps.dev:0 github.com/platformbuilders/react-ui,num_dependents_deps.dev:0 +github.com/platformbuilders/sonar-action, github.com/platformbuilders/use-notifications, github.com/platformbuilders/use-rating,num_dependents_deps.dev:0 github.com/platformbuilders/validations, github.com/platformdirs/platformdirs, +github.com/platformercloud/build-deploy-action, github.com/platformercloud/cli,num_dependents_deps.dev:0 github.com/platformio/platform-espressif32,criticality_score:0.505990 github.com/platformio/platformio-atom-ide,criticality_score:0.321240 @@ -930465,12 +947168,18 @@ github.com/platinprotocol/solidityGEO,num_dependents_deps.dev:0 github.com/platinum-fund/platinum-ui,num_dependents_deps.dev:0 github.com/platinumazure/eslint-plugin-qunit,num_dependents_deps.dev:10 github.com/platinumazure/qunit2-migrator,num_dependents_deps.dev:0 +github.com/platinummonkey/changed-files, github.com/platinummonkey/go-concurrency-limits,num_dependents_deps.dev:0 github.com/platinummonkey/python-wiremock, github.com/platinummonkey/rexpro-python, github.com/platinumthinker/pt_test,num_dependents_deps.dev:0 github.com/platipy/spyral, github.com/platipy/sugargame2, +github.com/platisd/bad-commit-message-blocker, +github.com/platisd/clang-tidy-pr-comments, +github.com/platisd/definition-of-done, +github.com/platisd/duplicate-code-detection-tool, +github.com/platisd/openai-pr-description, github.com/plato-app/es-math,num_dependents_deps.dev:0 github.com/plato-app/es-signal,num_dependents_deps.dev:0 github.com/plato-app/eslint-config-ts,num_dependents_deps.dev:0 @@ -930772,6 +947481,7 @@ github.com/playsignage/cordova-plugin-reboot,num_dependents_deps.dev:0 github.com/playsms/playsms,criticality_score:0.467620 github.com/playsthetic/airstorm, github.com/playteka/playteka, +github.com/playtheorygames/ai-code-buddies, github.com/playtocrazy/ecpay-aio-node,num_dependents_deps.dev:0 github.com/playtocrazy/ecpay-invoice-node,num_dependents_deps.dev:0 github.com/playtweed/tweed-names, @@ -930948,6 +947658,7 @@ github.com/plentz/lol_dba,"criticality_score:0.363660,num_dependents_deps.dev:0" github.com/pleo-io/babel-plugin-string-to-lingui,num_dependents_deps.dev:0 github.com/pleo-io/feign-jaxrs2,num_dependents_deps.dev:0 github.com/pleo-io/prop,num_dependents_deps.dev:0 +github.com/pleo-oss/assign-random-codeowners, github.com/pleomax00/wigzosdks,num_dependents_deps.dev:0 github.com/plepe/bbook,num_dependents_deps.dev:0 github.com/plepe/bbox-clip,num_dependents_deps.dev:0 @@ -931022,6 +947733,8 @@ github.com/pletessier/python-configuration-wrapper, github.com/pletessier/taranis, github.com/plethora/frontend-shared-components,num_dependents_deps.dev:0 github.com/pletisan/pyhosts, +github.com/plettich/action-codespell, +github.com/plettich/python_codespell_action, github.com/plety/hook-ui,num_dependents_deps.dev:0 github.com/pletzer/icqsol, github.com/pletzer/mint, @@ -931050,8 +947763,10 @@ github.com/plexoos/toufy, github.com/plexsysio/dlocker,num_dependents_deps.dev:0 github.com/plexsysio/go-msuite,num_dependents_deps.dev:0 github.com/plexsysio/taskmanager,num_dependents_deps.dev:1 +github.com/plexsystems/container-structure-test-action, github.com/plexsystems/imagesync,num_dependents_deps.dev:0 github.com/plexsystems/konstraint,num_dependents_deps.dev:0 +github.com/plexsystems/protolint-action, github.com/plexsystems/sinker,num_dependents_deps.dev:0 github.com/plexus/analects,num_dependents_deps.dev:0 github.com/plexus/chemacs,criticality_score:0.386760 @@ -931126,6 +947841,7 @@ github.com/plingply/ve-touch,num_dependents_deps.dev:0 github.com/plingply/vsui,num_dependents_deps.dev:0 github.com/plingply/vue-cut-picture,num_dependents_deps.dev:0 github.com/pliniker/bitmaptrie-rs,num_dependents_deps.dev:0 +github.com/plinioh/setup-binary-action, github.com/plinovodja/palindrome,num_dependents_deps.dev:0 github.com/plinss/flake8-literal, github.com/plinss/flake8-noqa, @@ -931142,6 +947858,8 @@ github.com/pliski/HuReS,num_dependents_deps.dev:0 github.com/plitex/git-subtree,num_dependents_deps.dev:0 github.com/plitex/kesen,num_dependents_deps.dev:0 github.com/pliusnovdmytro/contract,num_dependents_deps.dev:0 +github.com/plivo/actions-call, +github.com/plivo/actions-sms, github.com/plivo/goreq,num_dependents_deps.dev:0 github.com/plivo/plivo-android-sdk2-examples,num_dependents_deps.dev:0 github.com/plivo/plivo-go,num_dependents_deps.dev:18 @@ -931174,6 +947892,7 @@ github.com/pllee/luc-is,num_dependents_deps.dev:0 github.com/pllee/luc-object,num_dependents_deps.dev:0 github.com/pllee/vlug,num_dependents_deps.dev:0 github.com/plloi/tpsbot,num_dependents_deps.dev:0 +github.com/plm9606/automerge_actions, github.com/plmaheux/sails-hook-jobs,num_dependents_deps.dev:0 github.com/plmmilove/any-annotation-mybatis-plugin,num_dependents_deps.dev:0 github.com/plmok61/react-native-flip-component,num_dependents_deps.dev:0 @@ -931283,6 +948002,7 @@ github.com/plone/plone.z3cform, github.com/plone/plonecli, github.com/plone/plonetheme.classic, github.com/plone/plonetheme.ploneorg, +github.com/plone/setup-plone, github.com/plone/volto,num_dependents_deps.dev:0 github.com/plone/waitress_fastlisten, github.com/plone/zodbverify, @@ -931302,6 +948022,8 @@ github.com/ploomcake/ploomcake.installer, github.com/ploomcake/ploomcake.pa, github.com/ploomcake/ploomcake.theme, github.com/plootia/bfb-vote-collector,num_dependents_deps.dev:0 +github.com/plopcas/emoji-issue-classifier, +github.com/plopcas/hugo-s3-action, github.com/ploperations/puppet-runner,num_dependents_deps.dev:0 github.com/plopezlpz/go-awsv2-samples,num_dependents_deps.dev:0 github.com/plopezm/decorated-express,num_dependents_deps.dev:0 @@ -931555,6 +948277,7 @@ github.com/pltrdy/public_meetings, github.com/pltrdy/rouge, github.com/plu/modbus,num_dependents_deps.dev:0 github.com/plu/simctl,num_dependents_deps.dev:142 +github.com/plu5/automatic-releases-with-sha-action, github.com/plucky-ci/plucky-git,num_dependents_deps.dev:0 github.com/plucky-ci/plucky-loader,num_dependents_deps.dev:0 github.com/plucky-ci/plucky-mapper,num_dependents_deps.dev:6 @@ -931703,6 +948426,7 @@ github.com/plumatic/schema,criticality_score:0.418860 github.com/plumbblake/styled-components-feature-detection,num_dependents_deps.dev:0 github.com/plumber-cd/kubernetes-dynamic-reclaimable-pvc-controllers,num_dependents_deps.dev:0 github.com/plumber-cd/runtainer,num_dependents_deps.dev:0 +github.com/plumber-cd/setup-terraform-backend-git, github.com/plumberjs/mercator,num_dependents_deps.dev:42 github.com/plumberjs/plumber, github.com/plumberjs/plumber-all, @@ -931782,8 +948506,10 @@ github.com/plural4j/plural4j,num_dependents_deps.dev:0 github.com/pluralai/open-plural,num_dependents_deps.dev:0 github.com/pluralcom/eslint-config-plural,num_dependents_deps.dev:0 github.com/plurals/pluralize,criticality_score:0.453030 +github.com/pluralsh/chart-releaser, github.com/pluralsh/kubeflow-profile-controller,num_dependents_deps.dev:0 github.com/pluralsh/plural-operator,num_dependents_deps.dev:0 +github.com/pluralsh/setup-plural, github.com/pluralsight/PSOperations,criticality_score:0.315850 github.com/pluralsight/design-system,num_dependents_deps.dev:572 github.com/pluralsight/gcp-pubsub-lite,num_dependents_deps.dev:0 @@ -931824,6 +948550,7 @@ github.com/pluritech/ion-pluriutils,num_dependents_deps.dev:0 github.com/pluritech/ng-preparedates,num_dependents_deps.dev:0 github.com/pluritech/pagination,num_dependents_deps.dev:0 github.com/pluritech/server-service,num_dependents_deps.dev:0 +github.com/plurriel/files-sync-action, github.com/plus1tv/bibtex-bibjson, github.com/plus1tv/react-anime, github.com/plus1tv/redux-webmidi, @@ -931886,6 +948613,7 @@ github.com/plusmancn/so-log,num_dependents_deps.dev:0 github.com/plusmancn/weixin-sdk-plus, github.com/plusminus-software/plusminus-configs,num_dependents_deps.dev:0 github.com/plusminus-software/plusminus-parent,num_dependents_deps.dev:0 +github.com/plusmobileapps/kscript-action, github.com/plusn-nuri/glingjs,num_dependents_deps.dev:0 github.com/plusnew/cli,num_dependents_deps.dev:0 github.com/plusnew/core,num_dependents_deps.dev:0 @@ -931938,6 +948666,7 @@ github.com/plutonium-js/vanilla-background-image-switch,num_dependents_deps.dev: github.com/plutonium-js/vue-stagger,num_dependents_deps.dev:0 github.com/plutonyx/wisesight, github.com/plutotcool/configurations,num_dependents_deps.dev:0 +github.com/plutotcool/release, github.com/plutov/packagemain,num_dependents_deps.dev:0 github.com/plutov/paypal,"criticality_score:0.453730,num_dependents_deps.dev:0" github.com/plutov/paypal-go-sdk,num_dependents_deps.dev:0 @@ -931961,6 +948690,7 @@ github.com/plxidipeshp/sample-sdk-server-master,num_dependents_deps.dev:0 github.com/plxity/React-Dark-Theme,num_dependents_deps.dev:0 github.com/plxity/React-Pincode,num_dependents_deps.dev:0 github.com/ply-ct/ply,num_dependents_deps.dev:0 +github.com/ply-ct/ply-action, github.com/ply-ct/ply-movies,num_dependents_deps.dev:0 github.com/plyama/auth,num_dependents_deps.dev:0 github.com/plyara/plyara, @@ -931982,6 +948712,7 @@ github.com/plyom/mobile-preview,num_dependents_deps.dev:0 github.com/plyovchev/sorting-robot-go,num_dependents_deps.dev:0 github.com/plysytsya/ponstrans, github.com/plzhang4321/a-tour-of-go,num_dependents_deps.dev:0 +github.com/plzprayme/online-judge-directory-tree-to-readme, github.com/pm-coelho/spacemenu, github.com/pm-coelho/spacepass, github.com/pm-connect/mixpanel,num_dependents_deps.dev:0 @@ -932067,6 +948798,9 @@ github.com/pmagaz/create-reduxreducer,num_dependents_deps.dev:0 github.com/pmagaz/reddb,num_dependents_deps.dev:0 github.com/pmagaz/redux-req-middleware,num_dependents_deps.dev:0 github.com/pmagaz/rextore,num_dependents_deps.dev:0 +github.com/pmagentur/pm_docker_builder, +github.com/pmagentur/pm_php_cs_symphony, +github.com/pmagentur/pm_slack_notifier, github.com/pmaher86/blacksquare, github.com/pmahindrakar-oss/flytestdlib,num_dependents_deps.dev:0 github.com/pmahmud/blocky,num_dependents_deps.dev:0 @@ -932129,6 +948863,7 @@ github.com/pmanca/hubspot-api-wrapper,num_dependents_deps.dev:0 github.com/pmandera/semspaces, github.com/pmanent/opensub4j,num_dependents_deps.dev:0 github.com/pmanikas/vue-guitar-tuner,num_dependents_deps.dev:0 +github.com/pmanlukas/mention-external-collaborators, github.com/pmant/harmonyhubws,num_dependents_deps.dev:0 github.com/pmarathe25/ParaGraphs,num_dependents_deps.dev:0 github.com/pmarathe25/RBuild,num_dependents_deps.dev:0 @@ -932169,6 +948904,7 @@ github.com/pmatigakis/flask-uauth, github.com/pmatigakis/hackernewslib, github.com/pmatigakis/metricslib, github.com/pmatigakis/text-analysis-helpers, +github.com/pmatos/action-home-clean, github.com/pmatseykanets/gh-tools,num_dependents_deps.dev:0 github.com/pmatseykanets/mempool,num_dependents_deps.dev:0 github.com/pmatseykanets/test-gh-pr1,num_dependents_deps.dev:0 @@ -932198,6 +948934,7 @@ github.com/pmb0/nestjs-tsx-views,num_dependents_deps.dev:0 github.com/pmb0/nestjs-unleash,num_dependents_deps.dev:0 github.com/pmb399/REIXSAnalysis, github.com/pmb6tz/windows-desktop-switcher,criticality_score:0.340730 +github.com/pmbanugo/heroku-review-app-actions, github.com/pmbarrett314/curses-menu, github.com/pmbaumgartner/clabel, github.com/pmbaumgartner/spacy-html-tokenizer, @@ -932209,6 +948946,7 @@ github.com/pmbenjamin/random-quote,num_dependents_deps.dev:0 github.com/pmbio/mudata, github.com/pmbrull/levy, github.com/pmbrull/open-stats, +github.com/pmc-a/github-action-slack-notify-build, github.com/pmcalabrese/amazon-scraper, github.com/pmcalabrese/gulp-logwarn, github.com/pmcalabrese/gulp-renvy,num_dependents_deps.dev:0 @@ -932217,6 +948955,7 @@ github.com/pmcalabrese/node-scaffolder,num_dependents_deps.dev:0 github.com/pmcalmeida/preact-cli-svg-loader,num_dependents_deps.dev:0 github.com/pmcatominey/node-json-bigint-string,num_dependents_deps.dev:1 github.com/pmcatominey/terraform-provider-google,num_dependents_deps.dev:0 +github.com/pmcau/australianelectorates, github.com/pmcdowell-okta/okta2anything,num_dependents_deps.dev:0 github.com/pmcelhaney/flowchart,num_dependents_deps.dev:0 github.com/pmcgrath/echo,num_dependents_deps.dev:0 @@ -932234,6 +948973,7 @@ github.com/pmcmonagle/generator-phaser-alternative,num_dependents_deps.dev:0 github.com/pmcmonagle/generator-phaser-babel-webpack,num_dependents_deps.dev:0 github.com/pmd/build-tools,num_dependents_deps.dev:0 github.com/pmd/pmd,"criticality_score:0.810650,num_dependents_deps.dev:2050" +github.com/pmd/pmd-github-action, github.com/pmd/pmd-regression-tester,num_dependents_deps.dev:0 github.com/pmd5/UA,num_dependents_deps.dev:0 github.com/pmdartus/NanoCube, @@ -932252,6 +948992,7 @@ github.com/pmeier/light-the-torch, github.com/pmeier/pillow_affine, github.com/pmeier/pyimagetest, github.com/pmeier/pystiche, +github.com/pmeier/pytest-results-action, github.com/pmeier/pytorch-pip-shim, github.com/pmeier/pytorch_wheel_installer, github.com/pmeier/tox-ltt, @@ -932290,6 +949031,7 @@ github.com/pmezard/flac-1,num_dependents_deps.dev:0 github.com/pmezard/kingpin,num_dependents_deps.dev:0 github.com/pmezard/xz,num_dependents_deps.dev:0 github.com/pmfawkes/pm-xo-loader, +github.com/pmfs1/morning-insight, github.com/pmgexpo17/vue-actor-group,num_dependents_deps.dev:0 github.com/pmgo-professor-willow/pmgo-pokedex,num_dependents_deps.dev:0 github.com/pmgration/node-getcpids, @@ -932311,6 +949053,7 @@ github.com/pmidc-digit/punjab-infraops,num_dependents_deps.dev:0 github.com/pmikus/sys-info-suite, github.com/pmilitowski/xlsxstream,num_dependents_deps.dev:0 github.com/pmill/angular-toggle,num_dependents_deps.dev:0 +github.com/pmill/github-trello, github.com/pminervini/torch-norms, github.com/pminkov/kubeutils, github.com/pminos/morfologik-maven-plugin,num_dependents_deps.dev:0 @@ -932370,6 +949113,7 @@ github.com/pmmonier/random-number-csprng-with-exclusive-range, github.com/pmmonier/zipToTz,num_dependents_deps.dev:0 github.com/pmmp/PocketMine-MP,criticality_score:0.665480 github.com/pmmp/crasharchive,num_dependents_deps.dev:0 +github.com/pmmp/setup-php-action, github.com/pmmsc/nodebb-plugin-sso-qq,num_dependents_deps.dev:0 github.com/pmmsc/nodebb-plugin-sso-renren,num_dependents_deps.dev:0 github.com/pmmsc/nodebb-theme-aymanbu,num_dependents_deps.dev:0 @@ -932431,6 +949175,7 @@ github.com/pmoon00/homebridge-motionsensor-web,num_dependents_deps.dev:0 github.com/pmoons/yarnemia,num_dependents_deps.dev:0 github.com/pmoor/gletscher, github.com/pmorelli92/generetate-google-id-token,num_dependents_deps.dev:0 +github.com/pmorelli92/github-container-registry-build-push, github.com/pmorelli92/maybe,num_dependents_deps.dev:0 github.com/pmorgan3/keyv-mssql,num_dependents_deps.dev:0 github.com/pmorie/atomic-enterprise,num_dependents_deps.dev:0 @@ -932474,8 +949219,10 @@ github.com/pmq20/FormCore, github.com/pmq20/node-packer,criticality_score:0.333120 github.com/pmq20/ruby-packer,criticality_score:0.429140 github.com/pmqtt/IntelliType, +github.com/pmqueiroz/basecamp-ready-for-review, github.com/pmqueiroz/http-advices,num_dependents_deps.dev:0 github.com/pmqueiroz/mask-wizard,num_dependents_deps.dev:0 +github.com/pmqueiroz/readme-last-youtube-videos, github.com/pmrcunha/eslint-config-pmrcunha,num_dependents_deps.dev:0 github.com/pmrcunha/plang,num_dependents_deps.dev:0 github.com/pmret/hot-reload,num_dependents_deps.dev:0 @@ -932555,6 +949302,8 @@ github.com/pmwcs/pmwcs,num_dependents_deps.dev:80 github.com/pmwisdom/cordova-background-geolocation-services,num_dependents_deps.dev:0 github.com/pmwmedia/global-key-value-store,num_dependents_deps.dev:0 github.com/pmwmedia/tinylog,"criticality_score:0.394610,num_dependents_deps.dev:146" +github.com/pmxbot/chucknorris, +github.com/pmxbot/excuses, github.com/pmxbot/pmxbot, github.com/pmzi/chainer,num_dependents_deps.dev:0 github.com/pmzi/gomrok, @@ -932588,7 +949337,10 @@ github.com/pndgz/koa-router-loader,num_dependents_deps.dev:0 github.com/pndlm/pndlm-vue-redux,num_dependents_deps.dev:0 github.com/pndmix/tree-sitter-pdmsg,num_dependents_deps.dev:0 github.com/pndmix/tree-sitter-rampcode,num_dependents_deps.dev:0 +github.com/pndurette/ascii-reply, github.com/pndurette/gTTS,criticality_score:0.468890 +github.com/pndurette/gh-actions-auto-docs, +github.com/pndurette/gh-pages-url-shortener-action, github.com/pneff/wsgiservice, github.com/pnegahdar/gbin, github.com/pnegahdar/inenv, @@ -932674,6 +949426,7 @@ github.com/pnmartinez/simple_interpolation, github.com/pnmartinez/simpler_backtest, github.com/pnmcosta/agile_crm,num_dependents_deps.dev:0 github.com/pnmcosta/jquery-socialshare,num_dependents_deps.dev:0 +github.com/pnminh/first-github-action, github.com/pnn/koe,num_dependents_deps.dev:0 github.com/pnnl/HyperNetX, github.com/pnnl/SOSAT, @@ -932711,6 +949464,7 @@ github.com/pnordahl/rust-postal,num_dependents_deps.dev:0 github.com/pnorman/rolluptilelogs, github.com/pnorman/tilekiln, github.com/pnorman/tilesizer, +github.com/pnorton5432/setup-task, github.com/pnovotnak/daemonless,num_dependents_deps.dev:0 github.com/pnowak2/clean-architecture-test,num_dependents_deps.dev:0 github.com/pnowak2/todo-clean-architecture, @@ -932718,9 +949472,13 @@ github.com/pnowak2/todo-clean-architecture-cli,num_dependents_deps.dev:0 github.com/pnowosie/ifirma-api, github.com/pnowosie/sequential-guid,num_dependents_deps.dev:0 github.com/pnowy/NativeCriteria,num_dependents_deps.dev:6 +github.com/pnp-os/ondemand-size-limit-action, github.com/pnp/PnP,"criticality_score:0.633360,num_dependents_deps.dev:58" github.com/pnp/PnP-PowerShell,criticality_score:0.584770 github.com/pnp/PnP-Tools,criticality_score:0.405410 +github.com/pnp/action-cli-deploy, +github.com/pnp/action-cli-login, +github.com/pnp/action-cli-runscript, github.com/pnp/cli-microsoft365,"criticality_score:0.556230,num_dependents_deps.dev:0" github.com/pnp/generator-365,num_dependents_deps.dev:0 github.com/pnp/generator-microsoft365,num_dependents_deps.dev:0 @@ -932737,6 +949495,7 @@ github.com/pnp/sp-dev-solutions,criticality_score:0.445110 github.com/pnp/sp-js-provisioning,num_dependents_deps.dev:0 github.com/pnp/sp-starter-kit,criticality_score:0.459160 github.com/pnp/telemetry-js,num_dependents_deps.dev:22 +github.com/pnpm/action-setup, github.com/pnpm/assert-project,num_dependents_deps.dev:0 github.com/pnpm/check-package,num_dependents_deps.dev:448 github.com/pnpm/cmd-shim,num_dependents_deps.dev:1508 @@ -932864,9 +949623,16 @@ github.com/po45ke95/go-learn,num_dependents_deps.dev:0 github.com/po5i/ecuador-postal-codes,num_dependents_deps.dev:0 github.com/poacher2k/hexo-featured-image,num_dependents_deps.dev:0 github.com/poacpm/poac,criticality_score:0.462550 +github.com/poad/apple-provisioning-profiles-downloader, github.com/poad/appstore-connect-jwt-generator-cli,num_dependents_deps.dev:0 github.com/poad/appstore-connect-jwt-generator-core,num_dependents_deps.dev:0 +github.com/poad/aws-cloudformation-stack-status-checker, github.com/poad/aws-maven,num_dependents_deps.dev:0 +github.com/poad/get-aws-ssm-parameter, +github.com/poad/github-pull-request-auto-merge-enable-action, +github.com/poad/github-pull-requester, +github.com/poad/update-node-modules, +github.com/poad/xcode-build-number-auto-update, github.com/poalrom/grunt-prettier,num_dependents_deps.dev:0 github.com/poanetwork/blockscout,criticality_score:0.622850 github.com/poanetwork/eth-net-props,num_dependents_deps.dev:0 @@ -932988,6 +949754,7 @@ github.com/pocke/turl,num_dependents_deps.dev:0 github.com/pocke/www,num_dependents_deps.dev:0 github.com/pocke/xrandr-mirror,num_dependents_deps.dev:0 github.com/pocke/yudachi,num_dependents_deps.dev:0 +github.com/pocket-apps/action-setup-firebase, github.com/pocket-apps/eslint-config,num_dependents_deps.dev:0 github.com/pocket-apps/prettier-config,num_dependents_deps.dev:0 github.com/pocket-apps/tsconfig,num_dependents_deps.dev:0 @@ -933637,6 +950404,7 @@ github.com/pokerblow/poker,num_dependents_deps.dev:0 github.com/pokerpros/pot-odds-calculator,num_dependents_deps.dev:0 github.com/pokerregion/poker, github.com/pokerth/pokerth,criticality_score:0.370300 +github.com/poketapp/gh-action-aws-sam, github.com/poketo/lib,num_dependents_deps.dev:0 github.com/poketo/poketo, github.com/pokey/blind_files, @@ -933678,6 +950446,7 @@ github.com/poksme/react-redux-immutable,num_dependents_deps.dev:0 github.com/pokstad/go-bindata,num_dependents_deps.dev:0 github.com/pokt-foundation/pocket-dashboard,num_dependents_deps.dev:0 github.com/pokt-foundation/pocketui,num_dependents_deps.dev:0 +github.com/pokt-network/action-fail-on-found, github.com/pokt-network/amino-js, github.com/pokt-network/ed25519,num_dependents_deps.dev:2 github.com/pokt-network/json-rpc-pocket,num_dependents_deps.dev:0 @@ -933734,6 +950503,7 @@ github.com/polagoab/merge-properties-maven-plugin,num_dependents_deps.dev:0 github.com/polak0v/ReSuber, github.com/polakdominik/ngx-cropperjs-wrapper,num_dependents_deps.dev:0 github.com/polakowo/vectorbt, +github.com/polakowski/design-tokens-transform-action, github.com/polakowski/js-core-ext-array-reject,num_dependents_deps.dev:0 github.com/polambert/pynte, github.com/polamjag/internet-sampler,num_dependents_deps.dev:0 @@ -933754,6 +950524,7 @@ github.com/polarch/JSAmbisonics,num_dependents_deps.dev:0 github.com/polarch/Spherical-Harmonic-Transform-JS,num_dependents_deps.dev:2 github.com/polarfox-dex/polarfox-bridge,num_dependents_deps.dev:0 github.com/polariao/studymod,num_dependents_deps.dev:0 +github.com/polaris-dxz/performance-test-action, github.com/polaris-rbx/verify, github.com/polaris-team/dingtalk-sdk-golang,num_dependents_deps.dev:9 github.com/polaris1119/The-Golang-Standard-Library-by-Example,criticality_score:0.305010 @@ -933776,6 +950547,7 @@ github.com/polarismesh/polaris-controller,num_dependents_deps.dev:0 github.com/polarismesh/polaris-go,num_dependents_deps.dev:0 github.com/polariszz/socket-rpc,num_dependents_deps.dev:0 github.com/polarity/myfeed-scrape,num_dependents_deps.dev:0 +github.com/polarityio/polarity-integration-development-checklist, github.com/polarlights/asciidoctor-confluence_publisher,num_dependents_deps.dev:0 github.com/polarofficial/polar-ble-sdk,Google github.com/polarpanda611/container,num_dependents_deps.dev:0 @@ -933783,6 +950555,7 @@ github.com/polarpanda611/trinitygo,num_dependents_deps.dev:0 github.com/polarpiberry/SimpleVectorsJS, github.com/polarpiberry/simplegooglesheets,num_dependents_deps.dev:0 github.com/polarsh/concurrente_ta2,num_dependents_deps.dev:0 +github.com/polarsignals/gh-actions-ps-profiling, github.com/polarsignals/pprof-example-app-go,num_dependents_deps.dev:0 github.com/polarspetroll/gocolor,num_dependents_deps.dev:0 github.com/polarspetroll/gocrprice,num_dependents_deps.dev:0 @@ -933794,11 +950567,13 @@ github.com/polarspetroll/urlshortbot,num_dependents_deps.dev:0 github.com/polarstoat/bigint-factorial,num_dependents_deps.dev:0 github.com/polarwinkel/mdtex2html, github.com/polatengin/devopstips.cli,num_dependents_deps.dev:0 +github.com/polatengin/washington, github.com/polats/booter,num_dependents_deps.dev:0 github.com/polats/forge,num_dependents_deps.dev:0 github.com/polats/react-lowdb,num_dependents_deps.dev:0 github.com/polats/react-web3-auth,num_dependents_deps.dev:0 github.com/polats/sandbox,num_dependents_deps.dev:0 +github.com/polbatllo/peko-dump-action, github.com/polca/premise, github.com/polca/wurst, github.com/polcompballvalues/pcb-yagpdb-commands,num_dependents_deps.dev:0 @@ -933855,6 +950630,7 @@ github.com/policumbent/pyxbee, github.com/policyengine/openfisca-tools, github.com/policyengine/policyengine, github.com/policyengine/policyengine-core, +github.com/policyerorg/policyer-action, github.com/policyfly/vue-script-tsc,num_dependents_deps.dev:0 github.com/policygenius/athenaeum, github.com/policygenius/react-styleguidist,num_dependents_deps.dev:0 @@ -933881,6 +950657,7 @@ github.com/polimediaupv/paella-zoom-plugin,num_dependents_deps.dev:0 github.com/polimi-ispl/audio_feature_reconstruction,Google github.com/polimorfico/lola,num_dependents_deps.dev:0 github.com/polimorphic/time-selector,num_dependents_deps.dev:0 +github.com/polinaouk/setup-keyvault-secrets, github.com/polinom-io/eslint-config,num_dependents_deps.dev:0 github.com/polinom-io/generator-serverless-policy,num_dependents_deps.dev:0 github.com/polinom-io/ionic-native-mocks,num_dependents_deps.dev:0 @@ -933890,6 +950667,7 @@ github.com/polinome/jquery-pluploader,num_dependents_deps.dev:0 github.com/poliorcetics/cargo-intraconv,num_dependents_deps.dev:0 github.com/poliorcetics/growable-bitmap,num_dependents_deps.dev:0 github.com/poliquin/brazilnum, +github.com/polis-dev/.github, github.com/polis812/vuejs-datepicker, github.com/polishmatt/hi, github.com/polishmatt/neterr, @@ -933984,6 +950762,7 @@ github.com/polkovnik8976/backend-project-lvl1,num_dependents_deps.dev:0 github.com/polkovnikov-ph/apipub,num_dependents_deps.dev:0 github.com/polkovnikov-ph/express-ws-rpc,num_dependents_deps.dev:0 github.com/polkovnikov-phil/newpeg,num_dependents_deps.dev:0 +github.com/poll-github-repo/action, github.com/pollbox/Downsize,num_dependents_deps.dev:0 github.com/pollbox/lbsqq,num_dependents_deps.dev:0 github.com/pollbox/miperize,num_dependents_deps.dev:0 @@ -934310,6 +951089,7 @@ github.com/polydaedalus/platinum-uikit,num_dependents_deps.dev:0 github.com/polydawn/docket,num_dependents_deps.dev:0 github.com/polydex-fi/polydex-sdk,num_dependents_deps.dev:0 github.com/polydex-fi/polydex-toolkit,num_dependents_deps.dev:0 +github.com/polydice/erb-lint-problem-matchers-action, github.com/polydice/flavors,num_dependents_deps.dev:0 github.com/polydice/pasta-js,num_dependents_deps.dev:0 github.com/polydice/uid2,num_dependents_deps.dev:0 @@ -934422,7 +951202,9 @@ github.com/polygon-io/errands-go,num_dependents_deps.dev:0 github.com/polygon-io/errands-server,num_dependents_deps.dev:0 github.com/polygon-io/uuencode,num_dependents_deps.dev:0 github.com/polygon-io/xbrl-parser,num_dependents_deps.dev:0 +github.com/polygon-software/action-monday-state, github.com/polygon-software/clockify.js,num_dependents_deps.dev:0 +github.com/polygon-software/npm-version-date, github.com/polygonal/ds,criticality_score:0.311110 github.com/polygonjs/plugin-mapbox,num_dependents_deps.dev:0 github.com/polygonjs/plugin-occlusion,num_dependents_deps.dev:0 @@ -934522,6 +951304,8 @@ github.com/polyrize/static-srv,num_dependents_deps.dev:0 github.com/polys/git-version,num_dependents_deps.dev:0 github.com/polysantiago/spring-boot-rest-client,num_dependents_deps.dev:0 github.com/polyscone/knight,num_dependents_deps.dev:0 +github.com/polyseam/get-version-from-package-json, +github.com/polyseam/setup-cndi, github.com/polysemy-research/polysemy,criticality_score:0.387250 github.com/polysign/firepanda, github.com/polysquare/cmake-ast, @@ -934542,10 +951326,13 @@ github.com/polyswarm/polyswarm-client, github.com/polyswarm/polyswarm-transaction, github.com/polyswarm/polyswarmd-config, github.com/polyswarm/worker-registry,num_dependents_deps.dev:0 +github.com/polytech-com/release-changes-action, +github.com/polytechnic-templates/tectonic-action, github.com/polytomic/cron,num_dependents_deps.dev:0 github.com/polytomic/go-marketo,num_dependents_deps.dev:0 github.com/polytomic/go-sfdc,num_dependents_deps.dev:0 github.com/polytomic/gqlgen,num_dependents_deps.dev:0 +github.com/polytomic/terraform-export-gh-action, github.com/polytope/PolyTagsInput,num_dependents_deps.dev:0 github.com/polytypic/bacon.atom,num_dependents_deps.dev:0 github.com/polytypic/bacon.react,num_dependents_deps.dev:0 @@ -934634,6 +951421,7 @@ github.com/pomejs/pome-data-plugin,num_dependents_deps.dev:0 github.com/pomejs/pome-monitor,num_dependents_deps.dev:4 github.com/pomejs/pome-scale-plugin,num_dependents_deps.dev:0 github.com/pomek/container.js,num_dependents_deps.dev:0 +github.com/pomekhin/jest-github-action, github.com/pomelo-chuan/log-sync,num_dependents_deps.dev:0 github.com/pomelo-nwu/google-search-for-react,num_dependents_deps.dev:0 github.com/pomelo-nwu/watermark-for-react,num_dependents_deps.dev:0 @@ -934687,6 +951475,7 @@ github.com/pomment/frontend,num_dependents_deps.dev:0 github.com/pomment/sdk-html, github.com/pomment/webhook-telegram,num_dependents_deps.dev:0 github.com/pommes-public/pommesdispatch, +github.com/pommevilla/quarto-render, github.com/pomo-dev/cflib, github.com/pomo-mondreganto/goas,num_dependents_deps.dev:0 github.com/pomor/operatorip,num_dependents_deps.dev:0 @@ -934738,6 +951527,10 @@ github.com/pongo19/angular-dynamic-validation,num_dependents_deps.dev:0 github.com/pongsatt/go-dbevent,num_dependents_deps.dev:0 github.com/pongstr/loopback-component-passport,num_dependents_deps.dev:0 github.com/pongthep/atlas-metadata-extractor, +github.com/ponicode/azure-devops-npm-action, +github.com/ponicode/dogstring-action, +github.com/ponicode/squar_action, +github.com/ponicode/unit-testing-action, github.com/poniraq/autto_lang,num_dependents_deps.dev:0 github.com/poniraq/fancy-platform,num_dependents_deps.dev:0 github.com/poniraq/jojo-mock,num_dependents_deps.dev:0 @@ -934745,6 +951538,8 @@ github.com/ponjs/uni-ajax,num_dependents_deps.dev:0 github.com/ponjs/uni-clipboard,num_dependents_deps.dev:0 github.com/ponjs/uni-encrypt,num_dependents_deps.dev:0 github.com/ponkio-o/gosample,num_dependents_deps.dev:0 +github.com/ponkio-o/select-target-action, +github.com/ponkio-o/set-terraform-matrix, github.com/ponko2/botkit-heroku-keepalive,num_dependents_deps.dev:0 github.com/ponko2/botkit-script-loader,num_dependents_deps.dev:0 github.com/ponko2/eslint-config-ponko2,num_dependents_deps.dev:0 @@ -934793,6 +951588,10 @@ github.com/ponteineptique/mufidecode, github.com/ponteineptique/nlp-pie-taggers, github.com/ponteineptique/pyperseus-treebank, github.com/ponteineptique/tarte, +github.com/pontem-network/get-aptos, +github.com/pontem-network/get-dove, +github.com/pontem-network/get-solc, +github.com/pontem-network/tag-crate-version, github.com/pontem-network/tools,num_dependents_deps.dev:0 github.com/pontino/ngx-translate-messageformat-compiler-ivy,num_dependents_deps.dev:0 github.com/pontiussoftware/smb-nio,num_dependents_deps.dev:0 @@ -934899,6 +951698,9 @@ github.com/poohvpn/pooh,num_dependents_deps.dev:0 github.com/poohvpn/quic-go,num_dependents_deps.dev:0 github.com/poohvpn/tproxy,num_dependents_deps.dev:0 github.com/poohvpn/xor,num_dependents_deps.dev:0 +github.com/pooi/check-code-changed, +github.com/pooi/coverage-badge, +github.com/pooi/coverage-comment, github.com/pooja-gulshetty/kmf-go-backend,num_dependents_deps.dev:0 github.com/pooja-solaikannu/jubilant-garbanzo, github.com/poojaagicha/trial1, @@ -935002,6 +951804,7 @@ github.com/pooriaacademy/event-driven-design-golang,num_dependents_deps.dev:0 github.com/pooriaacademy/golang-repositories,num_dependents_deps.dev:0 github.com/pooriaacademy/golang-stripe-quick-start-backend,num_dependents_deps.dev:0 github.com/pooriaahmadi/poglog,num_dependents_deps.dev:0 +github.com/pooriaghaedi/amazon-ecs-deploy-task-definition, github.com/pooriamo/array-nest, github.com/poorlydefinedbehaviour/data-structures-and-algorithms,num_dependents_deps.dev:0 github.com/poormi/areaSelect,num_dependents_deps.dev:0 @@ -935293,6 +952096,7 @@ github.com/popovmp/micro-tester,num_dependents_deps.dev:0 github.com/popovmp/mocha-tiny,num_dependents_deps.dev:0 github.com/popovmp/nedb-service,num_dependents_deps.dev:0 github.com/popovmp/request-service,num_dependents_deps.dev:0 +github.com/popovoleksandr/ipfs-pinata-deploy-action, github.com/popovous/rabbitmq-healthcheck,num_dependents_deps.dev:0 github.com/popox/file-upload,num_dependents_deps.dev:0 github.com/popox/generator-webapp, @@ -935564,6 +952368,7 @@ github.com/porpoise/porpoise-router,num_dependents_deps.dev:0 github.com/porpoise/reporpoise,num_dependents_deps.dev:0 github.com/porpoise/style-wrap,num_dependents_deps.dev:0 github.com/porras/mrproper,num_dependents_deps.dev:0 +github.com/porrige51122/Kiuwan-Local-Analysis-Action, github.com/porrporporrpor/covid-summary,num_dependents_deps.dev:0 github.com/pors/reactionic,num_dependents_deps.dev:0 github.com/porsager/bss,num_dependents_deps.dev:0 @@ -935605,6 +952410,9 @@ github.com/porscheinformatik/weblate-spring,num_dependents_deps.dev:0 github.com/porscheinformatik/zanata-spring,num_dependents_deps.dev:0 github.com/porschuetz/typescript-zepto-components,num_dependents_deps.dev:0 github.com/porshkevich/certbot-dns-onecloud, +github.com/port-labs/cookiecutter-gha, +github.com/port-labs/port-github-action, +github.com/port-labs/port-sender, github.com/port-zero/lens, github.com/port-zero/lens_bson, github.com/port-zero/lens_csv, @@ -935630,6 +952438,7 @@ github.com/portainer/libhelm,num_dependents_deps.dev:0 github.com/portainer/libhttp,num_dependents_deps.dev:1 github.com/portainer/portainer,"criticality_score:0.636800,num_dependents_deps.dev:0" github.com/portainer/portainer-compose,criticality_score:0.322950 +github.com/portal-hq/nitro-cli-action, github.com/portal-js/portal.js,num_dependents_deps.dev:0 github.com/portal-x/backend-project-lvl2,num_dependents_deps.dev:0 github.com/portalTS/portalTS-CLI,num_dependents_deps.dev:0 @@ -935707,7 +952516,11 @@ github.com/portcuit/worker,num_dependents_deps.dev:0 github.com/portefaix/tflint-ruleset-portefaix,num_dependents_deps.dev:0 github.com/portela/django-excel-fixture, github.com/porter-dev/porter,"criticality_score:0.333820,num_dependents_deps.dev:0" +github.com/porter-dev/porter-cli-action, github.com/porter-dev/porter-job-manager,num_dependents_deps.dev:0 +github.com/porter-dev/porter-run-job-action, +github.com/porter-dev/porter-update-action, +github.com/porter-dev/setup-porter, github.com/porter-io/tagg-python, github.com/porterehunley/onereview_application,num_dependents_deps.dev:0 github.com/portermetrics/porter_cli, @@ -935723,6 +952536,7 @@ github.com/portfoliome/postpy, github.com/portfolioplus/pystockdb, github.com/portfolioplus/pystockfilter, github.com/portfolioplus/pysymbolscanner, +github.com/portfoliotree/backtest-action, github.com/portfoliown/portfoliown.js,num_dependents_deps.dev:0 github.com/portfolium/pdt,num_dependents_deps.dev:0 github.com/portfors-lab/sparkle, @@ -935786,6 +952600,9 @@ github.com/portstrom/google_translate_tts,num_dependents_deps.dev:0 github.com/portstrom/parse_mediawiki_dump,num_dependents_deps.dev:0 github.com/portstrom/parse_wiki_text,num_dependents_deps.dev:2 github.com/portstrom/parse_wiktionary_de,num_dependents_deps.dev:0 +github.com/portswigger-cloud/defectdojo-active-findings, +github.com/portswigger-cloud/defectdojo-findings-thresholds, +github.com/portswigger-cloud/defectdojo-import-scan, github.com/portto/blt-contracts,num_dependents_deps.dev:0 github.com/portto/eslint-config-portto,num_dependents_deps.dev:0 github.com/portto/flow-transactions,num_dependents_deps.dev:0 @@ -935849,6 +952666,7 @@ github.com/poseidon/matchbox,"criticality_score:0.422150,num_dependents_deps.dev github.com/poseidon/terraform-provider-ct,num_dependents_deps.dev:0 github.com/poseidon/terraform-provider-matchbox,num_dependents_deps.dev:0 github.com/poseidon/typhoon,criticality_score:0.558590 +github.com/poseidon/wait-for-status-checks, github.com/poseidonchan/TAPE, github.com/poseidonjm/gwtp-gxtwindow,num_dependents_deps.dev:0 github.com/poseidonjm/gxt-processors,num_dependents_deps.dev:0 @@ -935859,6 +952677,7 @@ github.com/posener/complete,criticality_score:0.412630 github.com/posener/flarm,num_dependents_deps.dev:0 github.com/posener/fsutil,num_dependents_deps.dev:0 github.com/posener/goaction,num_dependents_deps.dev:0 +github.com/posener/goaction-example, github.com/posener/goaction-issues-example,num_dependents_deps.dev:0 github.com/posener/googleauth,num_dependents_deps.dev:0 github.com/posener/goreadme,num_dependents_deps.dev:0 @@ -935963,6 +952782,7 @@ github.com/possumunnki/react-native-splash-animations, github.com/post-luxembourg/pgflux, github.com/post-luxembourg/pydevice42, github.com/post-luxembourg/pypmp, +github.com/post-op/chatgpt-release, github.com/post-org/post-config,num_dependents_deps.dev:12 github.com/post-org/post-load-plugins, github.com/post-rex/apool,num_dependents_deps.dev:0 @@ -936128,6 +952948,7 @@ github.com/postgetme/customize-cra,num_dependents_deps.dev:0 github.com/postgis/docker-postgis,criticality_score:0.434200 github.com/postgis/postgis,criticality_score:0.595960 github.com/postgis/postgis-java,num_dependents_deps.dev:282 +github.com/postgres-ai/dle-github-actions, github.com/postgres-ai/postgres-checkup,num_dependents_deps.dev:0 github.com/postgres-cn/pgdoc-cn,criticality_score:0.411880 github.com/postgres-plugin/Challenges,num_dependents_deps.dev:0 @@ -936479,6 +953300,8 @@ github.com/pot-code/web-cli,num_dependents_deps.dev:0 github.com/potabattiram/saveToCsvfile, github.com/potados99/env-arg,num_dependents_deps.dev:0 github.com/potados99/single-injector,num_dependents_deps.dev:0 +github.com/potaesm/github-actions-mqtt-request, +github.com/potaesm/github-actions-request, github.com/potager/haml-magic-translations,num_dependents_deps.dev:0 github.com/potakhov/webavcrtc,num_dependents_deps.dev:0 github.com/potala-dev/bomisspell, @@ -936561,6 +953384,13 @@ github.com/potatomasterrace/zerobounce-javascript-api-v2,num_dependents_deps.dev github.com/potatopotaro/faunadb-community-utils,num_dependents_deps.dev:0 github.com/potatopotaro/faunadb-geo,num_dependents_deps.dev:0 github.com/potatopotaro/faunadb-real-time,num_dependents_deps.dev:0 +github.com/potatoqualitee/azuright, +github.com/potatoqualitee/exodus, +github.com/potatoqualitee/fossilize, +github.com/potatoqualitee/influx, +github.com/potatoqualitee/mssqlsuite, +github.com/potatoqualitee/ogimage, +github.com/potatoqualitee/psmodulecache, github.com/potatosalad/graphql-introspection-json-to-sdl,num_dependents_deps.dev:0 github.com/potatosalad/mongoid-data_table,num_dependents_deps.dev:0 github.com/potatosalad/mongoid-kraken,num_dependents_deps.dev:0 @@ -936666,6 +953496,9 @@ github.com/pothulapati/linkerd2,num_dependents_deps.dev:0 github.com/potierg/WebSnifferJS,num_dependents_deps.dev:0 github.com/potioc/ProcessingTUIO,num_dependents_deps.dev:0 github.com/potionfactory/LetsMove,criticality_score:0.398000 +github.com/potiuk/cancel-workflow-runs, +github.com/potiuk/get-workflow-origin, +github.com/potiuk/periodic-labeler, github.com/potlood/potlood,num_dependents_deps.dev:0 github.com/potocpav/classifier-measures,num_dependents_deps.dev:0 github.com/potocpav/npy-rs,num_dependents_deps.dev:0 @@ -936829,6 +953662,7 @@ github.com/pouyio/npx-pouyio,num_dependents_deps.dev:0 github.com/povarejkee/create-react-app,num_dependents_deps.dev:0 github.com/povder/unipool,num_dependents_deps.dev:2 github.com/povdocs/dolly,num_dependents_deps.dev:0 +github.com/povetek/yandex-object-storage-action, github.com/povieira/noipy, github.com/povilasb/dpdktest, github.com/povilasb/httpmeter, @@ -936954,6 +953788,7 @@ github.com/powerdong/Refactoring-axios,num_dependents_deps.dev:0 github.com/powerdong/nodeDemo,num_dependents_deps.dev:0 github.com/powerdong/react-ts-component-library,num_dependents_deps.dev:0 github.com/powerdot/easy-yandex-s3,num_dependents_deps.dev:2 +github.com/powerdot/telegram-manual-approval, github.com/poweredbygrow/appengine_clean, github.com/poweredbygrow/grow-analytics,num_dependents_deps.dev:0 github.com/poweredbysearch/pbs-tw-api,num_dependents_deps.dev:0 @@ -937188,6 +954023,7 @@ github.com/poyo46/jatime, github.com/poyo46/lilili, github.com/poyo46/neocitizen, github.com/poyo46/youcab, +github.com/poyoho/compared-action, github.com/poyoho/loader-md,num_dependents_deps.dev:0 github.com/poyonshot/markdown-it-mdcat-table,num_dependents_deps.dev:0 github.com/poypoyan/edhsmm, @@ -937202,6 +954038,7 @@ github.com/pozadi/kefir-jquery,num_dependents_deps.dev:0 github.com/pozadi/svgo-loader,num_dependents_deps.dev:130 github.com/pozar87/apts, github.com/pozelim/react-mf-breadcrumb,num_dependents_deps.dev:0 +github.com/pozetroninc/github-action-get-latest-release, github.com/pozi-team/image-processor,num_dependents_deps.dev:0 github.com/pozi-team/meteor-sha,num_dependents_deps.dev:0 github.com/pozi-team/mongoose-yas,num_dependents_deps.dev:0 @@ -937209,6 +954046,8 @@ github.com/pozi-team/signed-upload,num_dependents_deps.dev:0 github.com/pozible/image-processor, github.com/pozible/mongoose-yas, github.com/pozil/adafruit-i2c-pwm-driver,num_dependents_deps.dev:0 +github.com/pozil/auto-assign-issue, +github.com/pozil/codetour-watch, github.com/pozil/cometd-node-client,num_dependents_deps.dev:0 github.com/pozil/megapi-node-client,num_dependents_deps.dev:0 github.com/pozil/postman-extractor,num_dependents_deps.dev:0 @@ -937421,6 +954260,7 @@ github.com/pplam/page_monitor,num_dependents_deps.dev:0 github.com/pplam/sold,num_dependents_deps.dev:0 github.com/pplam/wechat-sign,num_dependents_deps.dev:0 github.com/pplam/zmrz,num_dependents_deps.dev:0 +github.com/pplanel/hash-calculator-action, github.com/pplavetzki/azure-sql-mi,num_dependents_deps.dev:0 github.com/pplavetzki/redis-client,num_dependents_deps.dev:0 github.com/ppldo/fluent-classnames,num_dependents_deps.dev:0 @@ -937438,6 +954278,7 @@ github.com/pplink/pagecall-sdk-nodejs,num_dependents_deps.dev:0 github.com/pplink/react-native-pagecall,num_dependents_deps.dev:0 github.com/pplink/react-native-webview,num_dependents_deps.dev:0 github.com/ppln-team/ppln, +github.com/pplotka/local-php-security-checker-github-actions, github.com/ppltools/binding,num_dependents_deps.dev:0 github.com/ppluchon/awesome-gulp-setup,num_dependents_deps.dev:0 github.com/ppmag/aws-nitro-enclaves-attestation,num_dependents_deps.dev:0 @@ -937455,6 +954296,7 @@ github.com/ppnasser/pnadc, github.com/ppninja/api-demo,num_dependents_deps.dev:0 github.com/ppniu/mqtt.golang,num_dependents_deps.dev:0 github.com/ppnnssy/go,num_dependents_deps.dev:0 +github.com/ppodds/relno-action, github.com/ppodgorsek/spring-social-facebook,num_dependents_deps.dev:0 github.com/ppodgorsek/spring-test-dbunit,num_dependents_deps.dev:0 github.com/ppodolsky/clickhouse-python, @@ -937483,6 +954325,7 @@ github.com/pponto/spotify-wrapper,num_dependents_deps.dev:0 github.com/pponugo/excel2jsonschema,num_dependents_deps.dev:0 github.com/pponugo/excel2loopback,num_dependents_deps.dev:0 github.com/pporcher/nbhistory, +github.com/pportella23/puppeteer-headful, github.com/pporto/verificador-versoes-pje,num_dependents_deps.dev:0 github.com/ppossanzini/vue-mf-module,num_dependents_deps.dev:0 github.com/ppossanzini/vuex-typed,num_dependents_deps.dev:0 @@ -937523,6 +954366,7 @@ github.com/ppreeper/runeprint,num_dependents_deps.dev:0 github.com/ppreeper/sshconfig,num_dependents_deps.dev:0 github.com/ppreeper/webserver,num_dependents_deps.dev:0 github.com/ppreeper/workerpool,num_dependents_deps.dev:0 +github.com/ppremk/lfs-warning, github.com/pprg1996/containerq,num_dependents_deps.dev:0 github.com/pprice/node-espn-ff,num_dependents_deps.dev:0 github.com/pprince/etlinefont-bower, @@ -937681,7 +954525,13 @@ github.com/pqx/react-input-switch,num_dependents_deps.dev:0 github.com/pqx/react-ui-tree,num_dependents_deps.dev:2 github.com/pqx/storage2,num_dependents_deps.dev:0 github.com/pqzx/html2docx, +github.com/pr-annotators/flake8-pr-annotator, +github.com/pr-annotators/mypy-pr-annotator, +github.com/pr-annotators/pylint-pr-annotator, +github.com/pr-annotators/shellcheck-pr-annotator, +github.com/pr-annotators/yamllint-pr-annotator, github.com/pr-developers/server-health-monitor,num_dependents_deps.dev:0 +github.com/pr-mpt/actions-delete-tag, github.com/pr-of-it/t4,num_dependents_deps.dev:0 github.com/pr-omethe-us/PyKED, github.com/pr/dos, @@ -937694,6 +954544,7 @@ github.com/pr0ger/go-logger,num_dependents_deps.dev:0 github.com/pr0h0/react-hoouter, github.com/pr0h0/vue-global-state,num_dependents_deps.dev:0 github.com/pr0n1x/jquery-doTmpl,num_dependents_deps.dev:0 +github.com/pr1metine/setup-processing, github.com/pr1ntr/bundlr, github.com/pr1ntr/htmlr, github.com/pr1sm/interactive-mock-server,num_dependents_deps.dev:0 @@ -937705,6 +954556,7 @@ github.com/pr3dr46/SimpleChat,num_dependents_deps.dev:0 github.com/pr3martins/K2D, github.com/pr4bh4sh/iterm-file-handler, github.com/pr4bh4sh/python-delayed-assert, +github.com/pr4k/hugo-to-medium, github.com/pr4k/locate,num_dependents_deps.dev:0 github.com/pr4mudy4/jinzhu,num_dependents_deps.dev:0 github.com/pr4shan7/snippet-converter, @@ -937735,6 +954587,7 @@ github.com/prabeshshakya/vyaguta-icons, github.com/prabhakar-patil/reset-v8-timezone, github.com/prabhakar267/website-status-cli, github.com/prabhakaran8737/velocityjs-rails,num_dependents_deps.dev:0 +github.com/prabhakarareddygaddam-mcd/replace-action, github.com/prabhakhar/bolt-core,num_dependents_deps.dev:0 github.com/prabhap/pure-upload,num_dependents_deps.dev:0 github.com/prabhash1785/mockserver,num_dependents_deps.dev:0 @@ -938147,12 +955000,14 @@ github.com/prafful13/gcp-automate,num_dependents_deps.dev:0 github.com/prafful98/vue3-shimmer,num_dependents_deps.dev:0 github.com/praffulmanwani/shortLengthNumber, github.com/prafsoni/mongodb-codec-generator,num_dependents_deps.dev:0 +github.com/prafulla-codes/express-autodocs, github.com/prafullsalunke/gupshup-oauth,num_dependents_deps.dev:0 github.com/prafullsalunke/gupshup-utils,num_dependents_deps.dev:0 github.com/prafulmaka/inferIoT, github.com/prafulpathare/go-mysql-rest,num_dependents_deps.dev:0 github.com/pragatheeswarans/cms-web-components, github.com/pragatheeswarans/ember-bundle-i18n,num_dependents_deps.dev:0 +github.com/pragatheeswarans/yarn-audit-action, github.com/pragdave/earmark,criticality_score:0.539130 github.com/prageeth/check-server-version,num_dependents_deps.dev:0 github.com/prageeth/cordova-plugin-facebook4,num_dependents_deps.dev:0 @@ -938204,6 +955059,8 @@ github.com/pragmatic-objects/oo-memoized,num_dependents_deps.dev:1 github.com/pragmatic-objects/oo-meta,num_dependents_deps.dev:2 github.com/pragmatic-objects/oo-tests,num_dependents_deps.dev:44 github.com/pragmatic-rest/spec-test,num_dependents_deps.dev:0 +github.com/pragmatic-tools/nalc, +github.com/pragmatic-tools/pr-title-validator, github.com/pragmatically-dev/bookstore_oauth_api,num_dependents_deps.dev:0 github.com/pragmatically-dev/bookstore_users_api,num_dependents_deps.dev:0 github.com/pragmatically-dev/fibonacci-optimization,num_dependents_deps.dev:0 @@ -938519,6 +955376,7 @@ github.com/pranftw/pyjay, github.com/pranganmajumder/predis,num_dependents_deps.dev:0 github.com/pranit-harekar/go-playground,num_dependents_deps.dev:0 github.com/pranitat04/async-migrator,num_dependents_deps.dev:0 +github.com/pranitbauva1997/zola-deploy-action, github.com/pranitharibhakta/pranitharibhakta-houserobber-golangdeveloper,num_dependents_deps.dev:0 github.com/pranitnigde/pranitcoin,num_dependents_deps.dev:0 github.com/pranitpms/node-mongoose-data-access,num_dependents_deps.dev:0 @@ -938530,6 +955388,7 @@ github.com/pranjalkoshti/react-simplified-antd,num_dependents_deps.dev:0 github.com/pranjalsaxena10/grpc-protobuf,num_dependents_deps.dev:0 github.com/pranjaltech/react-native-overlay,num_dependents_deps.dev:0 github.com/pranjank/ibm-cloud-hyperprotectcrypto,num_dependents_deps.dev:0 +github.com/pranksteess/ssh-rsync-action, github.com/prankurraj/covid,num_dependents_deps.dev:0 github.com/prankymat/initify.py, github.com/pranotobudi/go-akselerasi-batch3-project1,num_dependents_deps.dev:0 @@ -938577,6 +955436,7 @@ github.com/prantlf/bacom,num_dependents_deps.dev:0 github.com/prantlf/baretest,num_dependents_deps.dev:0 github.com/prantlf/benchart,num_dependents_deps.dev:0 github.com/prantlf/build-number-generator,num_dependents_deps.dev:0 +github.com/prantlf/bump-version-action, github.com/prantlf/changed,num_dependents_deps.dev:0 github.com/prantlf/common-path-start,num_dependents_deps.dev:4 github.com/prantlf/complexity-report, @@ -938586,12 +955446,15 @@ github.com/prantlf/covid-19-brief,num_dependents_deps.dev:0 github.com/prantlf/crass,num_dependents_deps.dev:2 github.com/prantlf/date-fns-timezone,num_dependents_deps.dev:22 github.com/prantlf/dayjs,num_dependents_deps.dev:208 +github.com/prantlf/delete-cache-action, github.com/prantlf/detached-navigation,num_dependents_deps.dev:0 +github.com/prantlf/discard-shelf-action, github.com/prantlf/dom-lite,num_dependents_deps.dev:0 github.com/prantlf/esbuild,num_dependents_deps.dev:0 github.com/prantlf/esburu,num_dependents_deps.dev:0 github.com/prantlf/fast-plural-rules,num_dependents_deps.dev:310 github.com/prantlf/faucet,num_dependents_deps.dev:0 +github.com/prantlf/finish-release-action, github.com/prantlf/gen-readlines,num_dependents_deps.dev:0 github.com/prantlf/graphql-field-visitor,num_dependents_deps.dev:0 github.com/prantlf/graphql-resolvable-directive,num_dependents_deps.dev:0 @@ -938627,6 +955490,7 @@ github.com/prantlf/grunt-wuml,num_dependents_deps.dev:0 github.com/prantlf/gulp-accessibility,num_dependents_deps.dev:0 github.com/prantlf/gulp-jsonlint,num_dependents_deps.dev:0 github.com/prantlf/gulp-relative-sourcemaps-source,num_dependents_deps.dev:0 +github.com/prantlf/install-release-action, github.com/prantlf/janadom,num_dependents_deps.dev:0 github.com/prantlf/jquery.mousehover,num_dependents_deps.dev:0 github.com/prantlf/jsonlint,num_dependents_deps.dev:14 @@ -938649,6 +955513,7 @@ github.com/prantlf/oscript-parser,num_dependents_deps.dev:0 github.com/prantlf/package-cost,num_dependents_deps.dev:0 github.com/prantlf/plural-rules,num_dependents_deps.dev:0 github.com/prantlf/promised-array, +github.com/prantlf/publish-release-action, github.com/prantlf/railroad-diagrams,num_dependents_deps.dev:0 github.com/prantlf/requireg,num_dependents_deps.dev:0 github.com/prantlf/requirejs-babel,num_dependents_deps.dev:0 @@ -938658,10 +955523,15 @@ github.com/prantlf/rollup-glob-opts,num_dependents_deps.dev:0 github.com/prantlf/rollup-plugin-jsonlint,num_dependents_deps.dev:0 github.com/prantlf/saz-tools,num_dependents_deps.dev:0 github.com/prantlf/saz2har,num_dependents_deps.dev:0 +github.com/prantlf/setup-v-action, +github.com/prantlf/shelve-changes-action, +github.com/prantlf/shelve-output-action, github.com/prantlf/svgo,num_dependents_deps.dev:4 github.com/prantlf/tehanu, github.com/prantlf/timezone-support,num_dependents_deps.dev:668 github.com/prantlf/trouter-paths,num_dependents_deps.dev:0 +github.com/prantlf/unshelve-changes-action, +github.com/prantlf/unshelve-output-action, github.com/prantlf/vscode-oscript,num_dependents_deps.dev:0 github.com/prantlf/web-clocks,num_dependents_deps.dev:0 github.com/prantlf/web-xeyes, @@ -938857,6 +955727,10 @@ github.com/prasunchakrab0rty/NPM-Simple-Login,num_dependents_deps.dev:0 github.com/prat-man/expr4j,num_dependents_deps.dev:0 github.com/prat-man/unique4j,num_dependents_deps.dev:0 github.com/prat0318/json_resume,num_dependents_deps.dev:0 +github.com/pratap-antuit/update-yaml, +github.com/pratap-antuit/yaml-update, +github.com/pratap477/yaml-update, +github.com/pratapaditya1997/commentator, github.com/pratapdd/starwars-names_kentcdodds_js_library,num_dependents_deps.dev:0 github.com/pratapscs/im-react,num_dependents_deps.dev:0 github.com/pratapscs/zk-im-layout,num_dependents_deps.dev:0 @@ -938975,6 +955849,8 @@ github.com/pratikjagrut/go-tutorial,num_dependents_deps.dev:0 github.com/pratikjagrut/myreads-go-backend,num_dependents_deps.dev:0 github.com/pratikju/dns-clb-go,num_dependents_deps.dev:0 github.com/pratikmakune3/go-status-checker,num_dependents_deps.dev:0 +github.com/pratikmallya/autolabeler-codeowners, +github.com/pratikmallya/publish-confluence, github.com/pratikms/gophercises,num_dependents_deps.dev:0 github.com/pratikms/spacevader, github.com/pratikpc/Formula-One-Six-Degrees-Metadata,num_dependents_deps.dev:0 @@ -939262,7 +956138,9 @@ github.com/prdxs/mole,num_dependents_deps.dev:0 github.com/pre-bp/pre-bp,num_dependents_deps.dev:0 github.com/pre-bp/pre-bp-router, github.com/pre-bp/preact-router-redux, +github.com/pre-commit-ci/lite-action, github.com/pre-commit-ci/pre-commit-ci-config, +github.com/pre-commit/action, github.com/pre-commit/identify, github.com/pre-commit/pre-commit,"criticality_score:0.689330,num_dependents_deps.dev:0" github.com/pre-commit/pre-commit-hooks,criticality_score:0.578610 @@ -939359,6 +956237,7 @@ github.com/preconstruct/a-random-number,num_dependents_deps.dev:0 github.com/preconstruct/preconstruct,"criticality_score:0.464440,num_dependents_deps.dev:152" github.com/precor/web-api-bridge,num_dependents_deps.dev:0 github.com/precupstefan/deoptimize,num_dependents_deps.dev:0 +github.com/preda-bogdan/gha-pr-check-helper, github.com/predat/pyIsis, github.com/predat/wetransferpy, github.com/predata/white-rabbit, @@ -939508,6 +956387,7 @@ github.com/predixdesignsystem/px-widths-responsive-design,num_dependents_deps.de github.com/predixdesignsystem/px-widths-tools-design,num_dependents_deps.dev:4 github.com/predixdev/predix-eventhub-client,num_dependents_deps.dev:0 github.com/predmond/protofmt,num_dependents_deps.dev:0 +github.com/predominant/biome-action, github.com/predve4niy/player,num_dependents_deps.dev:0 github.com/preeco-privacy/ngx-datatable,num_dependents_deps.dev:0 github.com/preesm/preesm-maven,num_dependents_deps.dev:0 @@ -939552,6 +956432,7 @@ github.com/preferred-pictures/node,num_dependents_deps.dev:0 github.com/preferred-pictures/python, github.com/preferred-pictures/ruby,num_dependents_deps.dev:0 github.com/prefix-app/px-electron-puppeteer,num_dependents_deps.dev:0 +github.com/prefix-dev/setup-pixi, github.com/prefixaut/aevum,num_dependents_deps.dev:0 github.com/prefixaut/jamp,num_dependents_deps.dev:0 github.com/prefixaut/splitterino-core,num_dependents_deps.dev:0 @@ -939583,6 +956464,7 @@ github.com/preiter93/ndrustfft,num_dependents_deps.dev:0 github.com/prekolna/dnd-roller, github.com/prekolna/generator-koa-angular,num_dependents_deps.dev:0 github.com/prekolna/generator-sub,num_dependents_deps.dev:0 +github.com/preludedynamics/aws-ssm-action, github.com/preludeorg/pneuma,num_dependents_deps.dev:0 github.com/prem-codemymobile/VrVideoComponent,num_dependents_deps.dev:0 github.com/prem-codemymobile/rn-google-recaptcha-v2,num_dependents_deps.dev:0 @@ -939620,6 +956502,7 @@ github.com/premily/bemily-user,num_dependents_deps.dev:0 github.com/premily/generator-hapi-typescript-plugin,num_dependents_deps.dev:0 github.com/premisedata/componere, github.com/premisedata/ggpy, +github.com/premisedata/slack-build-notifications, github.com/premiss/api,num_dependents_deps.dev:0 github.com/premist/homebridge-dyson-link,num_dependents_deps.dev:0 github.com/premithk/parse-server-genericemail-adapter,num_dependents_deps.dev:0 @@ -939650,6 +956533,7 @@ github.com/premshree/monad.ts,num_dependents_deps.dev:0 github.com/premshree/monads-typescript, github.com/premshree/use-pagination-firestore,num_dependents_deps.dev:0 github.com/premsvmm/goapi,num_dependents_deps.dev:0 +github.com/premsvmm/security-github-action, github.com/premvarmak/tcs-npm-learning,num_dependents_deps.dev:0 github.com/premvikash/python_packaging_distribution, github.com/prenagha/launchbar-unisym,num_dependents_deps.dev:0 @@ -939685,9 +956569,14 @@ github.com/prepleaf/prepleaf-editor,num_dependents_deps.dev:0 github.com/preply/dj_anonymizer, github.com/preply/graphene-federation, github.com/prepodavan/gorfh,num_dependents_deps.dev:0 +github.com/prepor/action-aws-iam-authenticator, +github.com/prepor/github-pulumi, +github.com/prepor/setup-pulumi, github.com/preprio/nodejs-sdk,num_dependents_deps.dev:0 github.com/preprocessed-connectomes-project/quality-assessment-protocol, github.com/preprocessy/preprocessy, +github.com/prequel-co/apply-model-configs, +github.com/prequel-co/apply-product-configs, github.com/prequist/gomap,num_dependents_deps.dev:0 github.com/prequist/l,num_dependents_deps.dev:0 github.com/prequist/ptypes,num_dependents_deps.dev:0 @@ -939812,6 +956701,7 @@ github.com/pressgang-ccms/PressGangCCMSZanataInterface,num_dependents_deps.dev:1 github.com/pressgang-ccms/jcommander-pressgang,num_dependents_deps.dev:0 github.com/pressgang/jdocbook-core,num_dependents_deps.dev:0 github.com/presshq/react-native-analytics,num_dependents_deps.dev:0 +github.com/pressidium/lftp-mirror-action, github.com/presskey/children,num_dependents_deps.dev:0 github.com/presslabs/brokerapi,num_dependents_deps.dev:0 github.com/presslabs/controller-util,num_dependents_deps.dev:4 @@ -939861,6 +956751,7 @@ github.com/prestondoris/tiny-mortgage,num_dependents_deps.dev:0 github.com/prestongarno/ktq,num_dependents_deps.dev:0 github.com/prestongarno/ktq-gradle,num_dependents_deps.dev:0 github.com/prestongarno/trywithres-compat,num_dependents_deps.dev:0 +github.com/prestonito/podcast-generator, github.com/prestonkyles/aids,num_dependents_deps.dev:0 github.com/prestonkyles/aids-cli,num_dependents_deps.dev:0 github.com/prestonlab/launch, @@ -939973,6 +956864,7 @@ github.com/pretorh/defaultify,num_dependents_deps.dev:0 github.com/pretorh/kickass-to,num_dependents_deps.dev:0 github.com/pretorh/service-client,num_dependents_deps.dev:0 github.com/pretorium/npm-package-frases-celebres, +github.com/pretoriustheuns/updaterepovar, github.com/prettier-plugins/xml,num_dependents_deps.dev:0 github.com/prettier-solidity/prettier-plugin-solidity,num_dependents_deps.dev:1790 github.com/prettier/eslint-config-prettier,"criticality_score:0.579800,num_dependents_deps.dev:6370" @@ -940029,6 +956921,8 @@ github.com/preusx/generator-stem-boilerplate,num_dependents_deps.dev:0 github.com/preusx/operarius,num_dependents_deps.dev:0 github.com/prevailhs/react-notification-system,num_dependents_deps.dev:0 github.com/prevayler/prevayler,criticality_score:0.325950 +github.com/preved911/android-emulator-runner, +github.com/preved911/helm-github-action, github.com/prevedere/prevedere_api, github.com/preveil/fips-golang,num_dependents_deps.dev:0 github.com/preveil/fsnotify,num_dependents_deps.dev:0 @@ -940062,6 +956956,7 @@ github.com/prevwong/vue-keyframes,num_dependents_deps.dev:0 github.com/prewk/dot_json,num_dependents_deps.dev:0 github.com/prewk/gaffle,num_dependents_deps.dev:0 github.com/prewk/lenticular-interlacer,num_dependents_deps.dev:0 +github.com/prewk/s3-cp-action, github.com/prewk/snapper-js,num_dependents_deps.dev:0 github.com/prewk/xml-string-streamer,criticality_score:0.386770 github.com/prexview/prexview-js,num_dependents_deps.dev:0 @@ -940105,6 +957000,8 @@ github.com/prezzemolo/riassumere,num_dependents_deps.dev:0 github.com/prezzemolo/sorriso,num_dependents_deps.dev:0 github.com/prezzemolo/trace-redirect,num_dependents_deps.dev:0 github.com/prezzemolo/zip,num_dependents_deps.dev:0 +github.com/prgTW/rector-action, +github.com/prgm-dev/svelte-check-pr-annotator, github.com/prgma/using,num_dependents_deps.dev:0 github.com/prgra/abotg,num_dependents_deps.dev:0 github.com/prgsmall/acequia,num_dependents_deps.dev:0 @@ -940445,7 +957342,9 @@ github.com/primusmoney/ethereum_xtra_web_node_module, github.com/primusmoney/react_client_wallet_node_module, github.com/princ3raj/Machine_learning_preprocessor_cli, github.com/prince-0203/hain-plugin-qiita,num_dependents_deps.dev:0 +github.com/prince-chrismc/check-actor-permissions-action, github.com/prince-chrismc/conan-center-index-pending-review,num_dependents_deps.dev:0 +github.com/prince-chrismc/label-merge-conflicts-action, github.com/prince-code/go-email,num_dependents_deps.dev:0 github.com/prince-curie/curie-cipher,num_dependents_deps.dev:0 github.com/prince-mishra/selenium_fb_group_automator, @@ -940530,6 +957429,7 @@ github.com/princesoni1989/generator-react-beginner-kit,num_dependents_deps.dev:0 github.com/princesoni1989/geocoder,num_dependents_deps.dev:0 github.com/princesoni1989/react-beginner-kit,num_dependents_deps.dev:0 github.com/princesoni1989/synup,num_dependents_deps.dev:0 +github.com/princespaghetti/setup-conftest, github.com/princess-rosella/js-integer-math,num_dependents_deps.dev:0 github.com/princess-rosella/spu-hex-dump,num_dependents_deps.dev:0 github.com/princess-rosella/spu-integer-math,num_dependents_deps.dev:0 @@ -940567,6 +957467,7 @@ github.com/princeton-cdh/piffle, github.com/princeton-nlp/SimCSE, github.com/princeton98/lotide,num_dependents_deps.dev:0 github.com/princetonuniversity/cos461-public,num_dependents_deps.dev:0 +github.com/principalstudio/handle-release-notes, github.com/principalstudio/html-webpack-inject-preload,num_dependents_deps.dev:0 github.com/principia1910/pdflab, github.com/principle-driven-development/Principles,num_dependents_deps.dev:0 @@ -940609,6 +957510,7 @@ github.com/printercu/flow-coffee,num_dependents_deps.dev:0 github.com/printercu/jquery.gettext,num_dependents_deps.dev:0 github.com/printerfranklin/leetcode-in-go,num_dependents_deps.dev:0 github.com/printerprotocol/uikit,num_dependents_deps.dev:0 +github.com/printesoi/build-push-action, github.com/printesoi/go-rabbitmq,num_dependents_deps.dev:0 github.com/printesoi/phpserialize,num_dependents_deps.dev:0 github.com/printfcoder/go-grpc,num_dependents_deps.dev:0 @@ -940677,6 +957579,7 @@ github.com/priotas/ui-tinymce,num_dependents_deps.dev:0 github.com/pripessoaink/flashday, github.com/priqb/blockBlockChain,num_dependents_deps.dev:0 github.com/priqb/transactionBlockchain,num_dependents_deps.dev:0 +github.com/priradev/ftp-interactions, github.com/prisae/no_version, github.com/prisae/pyfftlog, github.com/prisbre/html-pdf-plugin,num_dependents_deps.dev:0 @@ -940692,6 +957595,7 @@ github.com/prisguiden/email-domain-levenshtein,num_dependents_deps.dev:0 github.com/prishanf/cardpack,num_dependents_deps.dev:0 github.com/prishedko/algorithms-ts,num_dependents_deps.dev:0 github.com/prishedko/mrbt,num_dependents_deps.dev:0 +github.com/prism-be/actions-smoke-test, github.com/prism-break/prism-break,criticality_score:0.388820 github.com/prism-tech/express-icbon,num_dependents_deps.dev:0 github.com/prism-tech/icbon,num_dependents_deps.dev:0 @@ -940705,6 +957609,7 @@ github.com/prisma-capacity/basepom-oss,num_dependents_deps.dev:0 github.com/prisma-capacity/cqs,num_dependents_deps.dev:0 github.com/prisma-capacity/cryptoshred,num_dependents_deps.dev:96 github.com/prisma-capacity/unixuid-maven-plugin,num_dependents_deps.dev:0 +github.com/prisma-cloud-shiftleft/iac-scan-action, github.com/prisma-cms/auth, github.com/prisma-cms/boilerplate,num_dependents_deps.dev:0 github.com/prisma-cms/component,num_dependents_deps.dev:14 @@ -940915,6 +957820,7 @@ github.com/pritindra/dha-text-transfer,num_dependents_deps.dev:0 github.com/pritindra/encryptor,num_dependents_deps.dev:0 github.com/pritishmishra703/MLthon, github.com/pritishvaidya/gatsby-read-time-estimate,num_dependents_deps.dev:0 +github.com/pritishvaidya/github-project-board-automation, github.com/pritishvaidya/jsx-to-pdf, github.com/pritishvaidya/react-native-flip-countdown-timer,num_dependents_deps.dev:0 github.com/pritishvaidya/react-native-flip-timer,num_dependents_deps.dev:0 @@ -940934,6 +957840,7 @@ github.com/pritomkucse/react-pagination-page-element,num_dependents_deps.dev:0 github.com/pritomkucse/react-profile-image-box,num_dependents_deps.dev:0 github.com/pritoms/CodeDrop, github.com/pritul95/PyAwsHelper, +github.com/pritul95/pycicd-supreme-fortnight, github.com/pritunl/mongo-go-driver,num_dependents_deps.dev:2 github.com/pritunl/pritunl,"criticality_score:0.483700,num_dependents_deps.dev:0" github.com/pritunl/pritunl-client-electron,"criticality_score:0.435030,num_dependents_deps.dev:0" @@ -940973,6 +957880,8 @@ github.com/privacytools/privacytools.io,criticality_score:0.453210 github.com/privageapp/react-native-image-resizer,num_dependents_deps.dev:0 github.com/privageapp/react-native-mail,num_dependents_deps.dev:0 github.com/privageapp/react-native-webview-android,num_dependents_deps.dev:0 +github.com/privapps/TTS-Mandarin, +github.com/privapps/TTS-Parakeet, github.com/privase/privase,num_dependents_deps.dev:0 github.com/privat-matthieu/pydarwin, github.com/private-face/jquery.fullscreen,num_dependents_deps.dev:0 @@ -941046,6 +957955,7 @@ github.com/privatenumber/webpack-analyze-duplication-plugin,num_dependents_deps. github.com/privatenumber/webpack-dependency-size,num_dependents_deps.dev:0 github.com/privatenumber/webpack-distsize,num_dependents_deps.dev:0 github.com/privatenumber/webpack-localize-assets-plugin,num_dependents_deps.dev:0 +github.com/privatepages/upload-action, github.com/privatesquare/bkst-go-utils,num_dependents_deps.dev:0 github.com/privatesquare/bkst-users-api,num_dependents_deps.dev:0 github.com/privatix/dapp-installer,num_dependents_deps.dev:0 @@ -941085,6 +957995,11 @@ github.com/priya521/lotide, github.com/priyadarshy/Google-Contacts,num_dependents_deps.dev:0 github.com/priyadharshan/react-components,num_dependents_deps.dev:0 github.com/priyadharsshini31/go,num_dependents_deps.dev:0 +github.com/priyakewlani18/Repo_action_Triage, +github.com/priyakewlani18/actionRepo1, +github.com/priyakewlani18/repo-action, +github.com/priyakewlani18/stackRepo2, +github.com/priyakewlani18/stackrepo, github.com/priyakr2205/banking,num_dependents_deps.dev:0 github.com/priyakr2205/bankingapp,num_dependents_deps.dev:0 github.com/priyakr2205/testapi,num_dependents_deps.dev:0 @@ -941133,6 +958048,7 @@ github.com/priyanshudubey/cli-resume,num_dependents_deps.dev:0 github.com/priyanshujain/react-pdf,num_dependents_deps.dev:0 github.com/priyanshujain/stationaryjs,num_dependents_deps.dev:0 github.com/priyanshunayan/hacker-news-cli,num_dependents_deps.dev:0 +github.com/priyanshuone6/latexdiff-action, github.com/priyanshurav/get-text-indices, github.com/priyanshurav/is-freebsd, github.com/priyanshurav/is-valid-css-color, @@ -941142,6 +958058,7 @@ github.com/priyanshuveb/randomint,num_dependents_deps.dev:0 github.com/priyanthag/NodeCFT,num_dependents_deps.dev:0 github.com/priyanthag/doppinakin,num_dependents_deps.dev:0 github.com/priyathamganta/cmpe-207,num_dependents_deps.dev:0 +github.com/priyesh2609/sha-trim-action, github.com/priyeshkpandey/emotions-simulation,num_dependents_deps.dev:0 github.com/priyosan/kubebench-aquasecurity,num_dependents_deps.dev:0 github.com/priytam/auto,num_dependents_deps.dev:0 @@ -941271,6 +958188,7 @@ github.com/probablykasper/cpc,num_dependents_deps.dev:0 github.com/probablykasper/decimal_fixes_mirror,num_dependents_deps.dev:0 github.com/probablykasper/deep-filter, github.com/probablykasper/embler,num_dependents_deps.dev:0 +github.com/probablykasper/readme-template-action, github.com/probablykasper/redlux,num_dependents_deps.dev:0 github.com/probablykasper/vidl, github.com/probablynothate/dorkify, @@ -941278,6 +958196,7 @@ github.com/probablyup/buttermilk,num_dependents_deps.dev:0 github.com/probablyup/markdown-to-jsx,"criticality_score:0.572730,num_dependents_deps.dev:5885" github.com/probablyup/middleware-proxy, github.com/probablyup/mock-private-registry,num_dependents_deps.dev:0 +github.com/probablyup/wait-for-netlify-action, github.com/probberechts/d3-soccer,num_dependents_deps.dev:0 github.com/probberechts/hexo-theme-cactus,criticality_score:0.392090 github.com/probberechts/soccer_xg, @@ -941350,6 +958269,7 @@ github.com/probot/commands,num_dependents_deps.dev:0 github.com/probot/create-probot-app,num_dependents_deps.dev:0 github.com/probot/create-probot-plugin,num_dependents_deps.dev:0 github.com/probot/eslint-config-probot,num_dependents_deps.dev:0 +github.com/probot/example-github-action, github.com/probot/get-private-key,num_dependents_deps.dev:48 github.com/probot/github-app,num_dependents_deps.dev:30 github.com/probot/metadata,num_dependents_deps.dev:0 @@ -941363,9 +958283,11 @@ github.com/probot/serverless-lambda,num_dependents_deps.dev:0 github.com/probot/settings,criticality_score:0.522420 github.com/probot/smee,num_dependents_deps.dev:0 github.com/probot/stale,"criticality_score:0.497100,num_dependents_deps.dev:0" +github.com/probot/stale-action, github.com/probot/visitor,num_dependents_deps.dev:0 github.com/probot/webhooks,num_dependents_deps.dev:0 github.com/probot/weekly-digest,num_dependents_deps.dev:0 +github.com/proboticsinc/github-action-slack-notify-build, github.com/probots-io/db-move,num_dependents_deps.dev:0 github.com/probprog/pyprob,Google github.com/probr/probr,num_dependents_deps.dev:0 @@ -941484,6 +958406,7 @@ github.com/processone/ejabberd-api,num_dependents_deps.dev:0 github.com/processone/go-erlang,num_dependents_deps.dev:0 github.com/processone/httpmock,num_dependents_deps.dev:0 github.com/processone/tsung,criticality_score:0.452110 +github.com/processone/xmpp-notifier, github.com/processout/applepay,num_dependents_deps.dev:0 github.com/processout/go-cache,num_dependents_deps.dev:0 github.com/processout/processout-go,num_dependents_deps.dev:0 @@ -941526,6 +958449,8 @@ github.com/proctorlabs/unstructured-rs,num_dependents_deps.dev:0 github.com/procube-open/npm2docker,num_dependents_deps.dev:0 github.com/procuret/nzbn-python, github.com/procuret/procuret-python, +github.com/procurify/dependabot-PR-issue-creator, +github.com/procurify/net-negative-loc-action, github.com/procyon-projects/chrono,num_dependents_deps.dev:0 github.com/procyon-projects/marker,num_dependents_deps.dev:0 github.com/procyon-projects/procyon,num_dependents_deps.dev:0 @@ -941660,12 +958585,20 @@ github.com/productwizardry/react-runes-data,num_dependents_deps.dev:0 github.com/produdegr/homebridge-3em-energy-meter,num_dependents_deps.dev:0 github.com/produtoreativo/react-leaflet-googlemutant,num_dependents_deps.dev:0 github.com/produtoreativo/reactivo,num_dependents_deps.dev:0 +github.com/prodvana/configs-apply-action, +github.com/prodvana/init-pvnctl-action, +github.com/prodvana/push-to-prodvana-action, +github.com/prodvana/record-deployment-action, +github.com/prodvana/record-release-action, +github.com/prodvana/update-deployment-status-action, +github.com/prodvana/update-release-status-action, github.com/prody/rhapsody, github.com/prodyna/exciting-algorithms,num_dependents_deps.dev:0 github.com/prodyna/exciting-eventlog-client,num_dependents_deps.dev:0 github.com/prodyna/go-rest-mock,num_dependents_deps.dev:0 github.com/prodyna/yasm-api-go,num_dependents_deps.dev:0 github.com/prodyna/yasm-go-client,num_dependents_deps.dev:0 +github.com/proedis/publish-nuget-package, github.com/proehlen/cashlib,num_dependents_deps.dev:0 github.com/proehlen/cashtui,num_dependents_deps.dev:0 github.com/proehlen/docs2page,num_dependents_deps.dev:0 @@ -941731,6 +958664,7 @@ github.com/profilex-webcomponents/profilex-create-popup,num_dependents_deps.dev: github.com/profilex-webcomponents/profilex-detail-view,num_dependents_deps.dev:0 github.com/profilex-webcomponents/profilex-list-view,num_dependents_deps.dev:0 github.com/profilex-webcomponents/profilex-polymer-behaviors,num_dependents_deps.dev:0 +github.com/profiluefter/easymark-testbed-action, github.com/profimedica/VisualStudioCodeExtension,num_dependents_deps.dev:0 github.com/profimedica/ajuro-tools,num_dependents_deps.dev:0 github.com/profimedica/ajuro-ui,num_dependents_deps.dev:0 @@ -941822,6 +958756,7 @@ github.com/proggcreator/go_task2,num_dependents_deps.dev:0 github.com/proggcreator/go_tasks,num_dependents_deps.dev:0 github.com/proggcreator/wb-restful,num_dependents_deps.dev:0 github.com/proggcreator/wbworkdb,num_dependents_deps.dev:0 +github.com/progging/azure-webapps-deno-deploy, github.com/progging/gibstr, github.com/progging/ntrp,num_dependents_deps.dev:0 github.com/progging/react-stuff,num_dependents_deps.dev:0 @@ -941845,6 +958780,8 @@ github.com/prognostic-llc/react-json-editor,num_dependents_deps.dev:0 github.com/progolden/dne-utils,num_dependents_deps.dev:0 github.com/progolden/parent-pom,num_dependents_deps.dev:4 github.com/progolden/vraptor-boilerplate,num_dependents_deps.dev:11 +github.com/progovoy/vmn-action, +github.com/progovoy/vmn-stamp-action, github.com/prograess/mmosch,num_dependents_deps.dev:0 github.com/prograess/obvyazka,num_dependents_deps.dev:0 github.com/prograhammer/alert,num_dependents_deps.dev:0 @@ -941866,6 +958803,7 @@ github.com/program-in-chinese/npm-pinyin-data,num_dependents_deps.dev:0 github.com/program-in-chinese/npm-wubi-code-data,num_dependents_deps.dev:0 github.com/program-in-chinese/overview,criticality_score:0.321450 github.com/program-in-chinese/study, +github.com/program-world-labs/jira-zephyr-action, github.com/program247365/alfred-indiehackers,num_dependents_deps.dev:0 github.com/programGitHub/graph,num_dependents_deps.dev:0 github.com/programGitHub/prepawin-library,num_dependents_deps.dev:0 @@ -941961,6 +958899,8 @@ github.com/programminghistorian/jekyll,criticality_score:0.630510 github.com/programminglanguagelaboratory/rc,num_dependents_deps.dev:0 github.com/programmingplanet/pynosqlite, github.com/programmingstandards/advanced-object,num_dependents_deps.dev:0 +github.com/programmingwithalex/pylinter, +github.com/programmingwithalex/pytester-cov, github.com/programmrz/battlefy.js,num_dependents_deps.dev:0 github.com/programspeaker/validate_field, github.com/programworld999/loopline999, @@ -942106,10 +959046,12 @@ github.com/project-codeflare/gen2-connector, github.com/project-codeflare/rayvens, github.com/project-colophon/app,num_dependents_deps.dev:0 github.com/project-colophon/schema, +github.com/project-copacetic/copa-action, github.com/project-decorum/decorum-lib,num_dependents_deps.dev:0 github.com/project-draco/dct-mono-obj,num_dependents_deps.dev:0 github.com/project-draco/moea,num_dependents_deps.dev:0 github.com/project-draco/scm_performance_analysis,num_dependents_deps.dev:0 +github.com/project-echo/protobuf-go-gen-check, github.com/project-error/pe-cli,num_dependents_deps.dev:0 github.com/project-error/pe-utils,num_dependents_deps.dev:0 github.com/project-everest/hacl-star,"criticality_score:0.606840,num_dependents_deps.dev:0" @@ -942223,6 +959165,7 @@ github.com/project-slippi/dolphin-slippi-tools,num_dependents_deps.dev:0 github.com/project-slippi/slippi-js,num_dependents_deps.dev:0 github.com/project-snail/go-tun2ssh-route,num_dependents_deps.dev:0 github.com/project-soda/boot,num_dependents_deps.dev:0 +github.com/project-stacker/stacker-build-push-action, github.com/project-sunbird/sunbird-cloud-storage-sdk,num_dependents_deps.dev:0 github.com/project-sunbird/sunbird-collection-editor,num_dependents_deps.dev:0 github.com/project-sunbird/sunbird-content-editor,num_dependents_deps.dev:0 @@ -942407,9 +959350,11 @@ github.com/projectdiscovery/blackrock,num_dependents_deps.dev:5 github.com/projectdiscovery/cdncheck,num_dependents_deps.dev:5 github.com/projectdiscovery/chaos-client,num_dependents_deps.dev:16 github.com/projectdiscovery/cloudlist,num_dependents_deps.dev:0 +github.com/projectdiscovery/cloudlist-action, github.com/projectdiscovery/collaborator,num_dependents_deps.dev:0 github.com/projectdiscovery/cryptoutil,num_dependents_deps.dev:0 github.com/projectdiscovery/dnsx,num_dependents_deps.dev:1 +github.com/projectdiscovery/dnsx-action, github.com/projectdiscovery/executil,num_dependents_deps.dev:0 github.com/projectdiscovery/fastdialer,num_dependents_deps.dev:0 github.com/projectdiscovery/fileutil,num_dependents_deps.dev:1 @@ -942418,16 +959363,20 @@ github.com/projectdiscovery/goflags,num_dependents_deps.dev:2 github.com/projectdiscovery/hmap,num_dependents_deps.dev:6 github.com/projectdiscovery/httputil,num_dependents_deps.dev:0 github.com/projectdiscovery/httpx,"criticality_score:0.382540,num_dependents_deps.dev:0" +github.com/projectdiscovery/httpx-action, github.com/projectdiscovery/interactsh,num_dependents_deps.dev:0 github.com/projectdiscovery/ipranger,num_dependents_deps.dev:0 github.com/projectdiscovery/iputil,num_dependents_deps.dev:3 github.com/projectdiscovery/mapcidr,num_dependents_deps.dev:9 github.com/projectdiscovery/mapsutil,num_dependents_deps.dev:0 github.com/projectdiscovery/naabu,"criticality_score:0.352650,num_dependents_deps.dev:0" +github.com/projectdiscovery/naabu-action, github.com/projectdiscovery/network-fingerprint,num_dependents_deps.dev:0 github.com/projectdiscovery/networkpolicy,num_dependents_deps.dev:4 github.com/projectdiscovery/notify,num_dependents_deps.dev:0 +github.com/projectdiscovery/notify-action, github.com/projectdiscovery/nuclei,"criticality_score:0.484800,num_dependents_deps.dev:0" +github.com/projectdiscovery/nuclei-action, github.com/projectdiscovery/nuclei-templates,criticality_score:0.566180 github.com/projectdiscovery/proxify,num_dependents_deps.dev:0 github.com/projectdiscovery/rawhttp,num_dependents_deps.dev:0 @@ -942439,6 +959388,7 @@ github.com/projectdiscovery/simplehttpserver,num_dependents_deps.dev:0 github.com/projectdiscovery/sliceutil,num_dependents_deps.dev:0 github.com/projectdiscovery/stringsutil,num_dependents_deps.dev:6 github.com/projectdiscovery/subfinder,"criticality_score:0.476370,num_dependents_deps.dev:0" +github.com/projectdiscovery/subfinder-action, github.com/projectdiscovery/templates-stats,num_dependents_deps.dev:0 github.com/projectdiscovery/urlutil,num_dependents_deps.dev:1 github.com/projectdiscovery/wappalyzergo,num_dependents_deps.dev:4 @@ -942574,6 +959524,8 @@ github.com/projecttacoma/fqm-execution,num_dependents_deps.dev:0 github.com/projecttl12345/pi_automatic,num_dependents_deps.dev:0 github.com/projectwallace/color-sorter, github.com/projectwallace/css-analyzer,num_dependents_deps.dev:0 +github.com/projectwallace/css-diff-action, +github.com/projectwallace/push-css-action, github.com/projectweekend/Node-CTA-Bus-Tracker,num_dependents_deps.dev:0 github.com/projectweekend/Pi-Control-Client-JS,num_dependents_deps.dev:0 github.com/projectweekend/Transit-Stop-Collector,num_dependents_deps.dev:0 @@ -942613,6 +959565,7 @@ github.com/prokod/gradle-yar-plugin,num_dependents_deps.dev:0 github.com/prokop-dev/fortune-teller,num_dependents_deps.dev:0 github.com/prokop-dev/java-army-knife,num_dependents_deps.dev:0 github.com/prokop-dev/rxtx,num_dependents_deps.dev:0 +github.com/prokop7/create-app-attachment-github-action, github.com/prokoprandacek/fbot,num_dependents_deps.dev:0 github.com/prokoprandacek/glowing-octopus,num_dependents_deps.dev:0 github.com/prokopschield/blakets,num_dependents_deps.dev:30 @@ -942778,6 +959731,7 @@ github.com/prometheus/node_exporter,"criticality_score:0.702120,num_dependents_d github.com/prometheus/procfs,"criticality_score:0.599200,num_dependents_deps.dev:39679" github.com/prometheus/prom2json,num_dependents_deps.dev:46 github.com/prometheus/prombench,num_dependents_deps.dev:0 +github.com/prometheus/promci, github.com/prometheus/prometheus,"criticality_score:0.814790,num_dependents_deps.dev:775" github.com/prometheus/promu,num_dependents_deps.dev:0 github.com/prometheus/pushgateway,"criticality_score:0.583770,num_dependents_deps.dev:5" @@ -942825,6 +959779,7 @@ github.com/promisedio/promise, github.com/promisefemi/built-by-me-with-golang,num_dependents_deps.dev:0 github.com/promisefemi/mini_golang_proj,num_dependents_deps.dev:0 github.com/promisejeremiah/myname,num_dependents_deps.dev:0 +github.com/promiseofcake/circleci-trigger-action, github.com/promiseofcake/twirp-ruby,num_dependents_deps.dev:0 github.com/promises-aplus/promises-spec,criticality_score:0.366350 github.com/promises-aplus/promises-tests,"criticality_score:0.320620,num_dependents_deps.dev:14" @@ -942861,9 +959816,15 @@ github.com/promotively/prettier-config,num_dependents_deps.dev:0 github.com/promotively/react-redux-data,num_dependents_deps.dev:0 github.com/promotively/react-redux-form,num_dependents_deps.dev:0 github.com/promotively/stylelint-config,num_dependents_deps.dev:0 +github.com/prompt-bot/wework, github.com/prompt-cash/paypal,num_dependents_deps.dev:0 github.com/prompt-toolkit/ptpython,criticality_score:0.509970 github.com/prompt-toolkit/python-prompt-toolkit,criticality_score:0.588820 +github.com/prompt/actions-assert, +github.com/prompt/actions-commit-hash, +github.com/prompt/actions-merge-branch, +github.com/prompt/actions-push-oci-archive-to-registry, +github.com/prompt/actions-semver-aliases, github.com/promptapi/bin-checker-pkg,num_dependents_deps.dev:0 github.com/promptapi/bin-checker-py, github.com/promptapi/bin-checker-rb,num_dependents_deps.dev:0 @@ -942924,6 +959885,7 @@ github.com/pronobis/libspn-keras, github.com/pronovic/apologies, github.com/pronovic/apologies-server, github.com/pronovic/cedar-backup3, +github.com/pronovic/setup-poetry, github.com/pronovic/uci-parse, github.com/prontogit/prontowork-api, github.com/prontolabs/pronto,criticality_score:0.504590 @@ -942986,6 +959948,7 @@ github.com/proofpoint/monitor-event-tap,num_dependents_deps.dev:0 github.com/proofpoint/platform,num_dependents_deps.dev:15940 github.com/proofpoint/platform-rack,num_dependents_deps.dev:0 github.com/proofreason/TS-react-optimized-google-map, +github.com/proofscape/pfsc-repo-build-action, github.com/proofzero/kmdr,num_dependents_deps.dev:0 github.com/proofzero/proto,num_dependents_deps.dev:0 github.com/proog/eleventy-plugin-purgecss, @@ -942993,6 +959956,7 @@ github.com/proog/krax,num_dependents_deps.dev:0 github.com/prooph/event-sourcing,criticality_score:0.306830 github.com/prooph/event-store,criticality_score:0.510920 github.com/prooph/service-bus,criticality_score:0.336160 +github.com/proost-assistant/github-sync-lfs, github.com/proost/go-chatroom,num_dependents_deps.dev:0 github.com/proost/go-sitemap-maker,num_dependents_deps.dev:0 github.com/proost/go-utils,num_dependents_deps.dev:0 @@ -943207,6 +960171,7 @@ github.com/proswdev/mongo-copydb,num_dependents_deps.dev:0 github.com/proswdev/mongoose-bcrypt,num_dependents_deps.dev:0 github.com/proswdev/mongoose-context,num_dependents_deps.dev:0 github.com/proswdev/server-link,num_dependents_deps.dev:0 +github.com/prosyslab/dude, github.com/prosysscience/JSSEnv, github.com/prota-studios/jarvis,num_dependents_deps.dev:0 github.com/protacon/generator-kubernetes-ci,num_dependents_deps.dev:0 @@ -943281,6 +960246,7 @@ github.com/protesilaos/prot16-builder, github.com/proteus-h2020/proteic,num_dependents_deps.dev:0 github.com/protip/jsling,num_dependents_deps.dev:0 github.com/protium-dev/mou-lib,num_dependents_deps.dev:0 +github.com/protiumx/blogpub, github.com/proto-graphql/proto-graphql,num_dependents_deps.dev:0 github.com/proto-graphql/proto-nexus, github.com/proto-n/readers-writer-lock,num_dependents_deps.dev:0 @@ -943440,6 +960406,7 @@ github.com/protontype/proton-cluster,num_dependents_deps.dev:0 github.com/protontype/proton-compression,num_dependents_deps.dev:0 github.com/protontype/protontype, github.com/protontypes/awesome-robotic-tooling,criticality_score:0.350520 +github.com/protontypes/continuous-reforestation, github.com/protontypes/libreselery, github.com/protontypes/open-sustainable-technology,criticality_score:0.352340 github.com/protontypes/openselery, @@ -943479,6 +960446,7 @@ github.com/prototypearea/storybook-graphql,num_dependents_deps.dev:0 github.com/prototypef/grunt-override-has,num_dependents_deps.dev:0 github.com/prototypeinteractive/static-html-boilerplate,num_dependents_deps.dev:0 github.com/prototypejs/prototype,"criticality_score:0.319470,num_dependents_deps.dev:0" +github.com/prototypicalpro/compile-badges-action, github.com/prototypsthlm/Switchboard,num_dependents_deps.dev:0 github.com/prototypsthlm/contentful-migrator-programme,num_dependents_deps.dev:0 github.com/protozoo/prettyjsonfile,num_dependents_deps.dev:0 @@ -943520,6 +960488,7 @@ github.com/proudbird/lowdb-crypto-adapter,num_dependents_deps.dev:0 github.com/proudbird/numerator, github.com/proudmonkey/AutoWrapper,criticality_score:0.356290 github.com/proudrain/inj-tunnel-ssh,num_dependents_deps.dev:0 +github.com/proudust/gh-describe, github.com/proullon/ramsql,num_dependents_deps.dev:0 github.com/proullon/vegeta,num_dependents_deps.dev:0 github.com/proullon/workerpool,num_dependents_deps.dev:0 @@ -943551,6 +960520,7 @@ github.com/provenance-io/cosmovisor,num_dependents_deps.dev:0 github.com/provenance-io/forge.pb, github.com/provenance-io/p8e,num_dependents_deps.dev:156 github.com/provenance-io/provenance,num_dependents_deps.dev:0 +github.com/provenance-io/provenance-testing-action, github.com/provenance-io/provwasm,num_dependents_deps.dev:0 github.com/provenance-io/wallet-lib,num_dependents_deps.dev:0 github.com/proverkaemaila/createImageBitmap,num_dependents_deps.dev:0 @@ -943695,6 +960665,8 @@ github.com/proycon/sesdiff,num_dependents_deps.dev:0 github.com/proycon/ssam,num_dependents_deps.dev:0 github.com/proycon/vocage,num_dependents_deps.dev:0 github.com/proycon/wikiente, +github.com/proyecto-chaucha/chaucha-gha-opreturn, +github.com/proyecto-chaucha/chaucha-gha-wallet-generator, github.com/proyecto26/RestClient,criticality_score:0.317640 github.com/proyecto26/animatable-component,num_dependents_deps.dev:0 github.com/proyecto26/ion-phaser,num_dependents_deps.dev:0 @@ -943785,6 +960757,8 @@ github.com/prscX/simplified-promise,num_dependents_deps.dev:0 github.com/prscX/vs-essential-plugins,num_dependents_deps.dev:0 github.com/prschmid/zoomus, github.com/prscodx/HitBTCMonster, +github.com/prsh-singh834006/commitlint-pull-request, +github.com/prsh-singh834006/validate-pr-title, github.com/prshnt19/LivePy, github.com/prsimp/lita-bukkit,num_dependents_deps.dev:0 github.com/prskid1000/CPCodes,num_dependents_deps.dev:0 @@ -943850,6 +960824,7 @@ github.com/pruhsert/svy-placeholder,num_dependents_deps.dev:0 github.com/pruhsert/svy-toolbar-item,num_dependents_deps.dev:0 github.com/pruizlezcano/gh-autoupdater, github.com/pruknil/goapp,num_dependents_deps.dev:0 +github.com/prulloac/configurable-pr-labeler, github.com/prune998/kafka-offset-exporter,num_dependents_deps.dev:0 github.com/prunedneuron/fluoride,num_dependents_deps.dev:0 github.com/pruner/cli,num_dependents_deps.dev:0 @@ -943871,6 +960846,9 @@ github.com/prvbl/testify,num_dependents_deps.dev:0 github.com/prvn/eml,num_dependents_deps.dev:0 github.com/prvnsmpth/xgboost-scorer,num_dependents_deps.dev:0 github.com/prwae/gron,num_dependents_deps.dev:0 +github.com/prx0/add-gitconfig-url, +github.com/prx0/cargo-use-git, +github.com/prx0/setup-ssh-config, github.com/prxg22/firebase-reference-helper, github.com/prxmat/typeorm-datastore,num_dependents_deps.dev:0 github.com/pry/pry,"criticality_score:0.598540,num_dependents_deps.dev:3504" @@ -943883,12 +960861,16 @@ github.com/prydin/emu6502,num_dependents_deps.dev:0 github.com/prydonius/helm,num_dependents_deps.dev:0 github.com/prydonius/karn,num_dependents_deps.dev:0 github.com/prydt/hoplite2, +github.com/prygunov/indexator, +github.com/prygunov/telegram-action, github.com/pryley/float-labels.js, github.com/pryley/star-rating.js, github.com/pryme-svg/mkdocs-github-contributors-plugin, github.com/pryme-svg/periodic-table-tui, +github.com/prymitive/depcheck-action, github.com/prymitive/karma,"criticality_score:0.576690,num_dependents_deps.dev:0" github.com/prymitive/kthxbye,num_dependents_deps.dev:0 +github.com/prymitive/pint-action, github.com/prymitive/randomcolor,num_dependents_deps.dev:0 github.com/prymitive/upaas-client, github.com/prymitive/upaas-common, @@ -944035,6 +961017,8 @@ github.com/psalaets/vue-test-attribute,num_dependents_deps.dev:0 github.com/psalaets/vuepress-plugin-data,num_dependents_deps.dev:0 github.com/psalaets/vuex-local-pagination,num_dependents_deps.dev:0 github.com/psalaets/vuex-mock-context,num_dependents_deps.dev:0 +github.com/psalm/psalm-github-actions, +github.com/psalm/psalm-github-security-scan, github.com/psalmody/Bootstrap-Help-Manager,num_dependents_deps.dev:0 github.com/psalmody/databridge, github.com/psalmody/dynamic-scrollspy,num_dependents_deps.dev:0 @@ -944384,6 +961368,7 @@ github.com/psibi/Identier, github.com/psibi/iwlib-rs,num_dependents_deps.dev:1 github.com/psibi/pyuClassify, github.com/psibi/rucredstash,num_dependents_deps.dev:0 +github.com/psibi/setup-amber, github.com/psibi/weather_noaa,num_dependents_deps.dev:0 github.com/psichel/palindrome,num_dependents_deps.dev:0 github.com/psichi/iffi,num_dependents_deps.dev:0 @@ -944713,6 +961698,7 @@ github.com/pspgbhu/wpy-px2rpx,num_dependents_deps.dev:0 github.com/psphere-project/psphere, github.com/pspiagicw/sylvie, github.com/pspratt/pyibt, +github.com/psprings/bugsnag-release-action, github.com/psprings/go-daml,num_dependents_deps.dev:0 github.com/pspuarduino/HLTV,num_dependents_deps.dev:0 github.com/psqnt/blockstream, @@ -944805,6 +961791,7 @@ github.com/psu-efd/pyHMT2D, github.com/psu-libraries/psul-wc,num_dependents_deps.dev:0 github.com/psu-stewardship/hydra-collections,num_dependents_deps.dev:20 github.com/psu-stewardship/scholarsphere-client,num_dependents_deps.dev:0 +github.com/psuDevelopment/Obfuscate-With-PSU, github.com/psuDevelopment/node-wrapper,num_dependents_deps.dev:0 github.com/psudeep/sample-npm-package,num_dependents_deps.dev:0 github.com/psudoanon/sourcecred,num_dependents_deps.dev:0 @@ -945081,6 +962068,7 @@ github.com/ptal/trilean,num_dependents_deps.dev:25 github.com/ptallen63/flitwick,num_dependents_deps.dev:0 github.com/ptallen63/neville.js,num_dependents_deps.dev:0 github.com/ptallen63/ngOutpost,num_dependents_deps.dev:0 +github.com/ptallen63/todoist-task-action, github.com/ptandler/vuepress-theme-single-page-sections,num_dependents_deps.dev:0 github.com/ptanlam/golang_simple_web_api,num_dependents_deps.dev:0 github.com/ptaoussanis/carmine,criticality_score:0.429950 @@ -945264,6 +962252,7 @@ github.com/pthurlow/triejs,num_dependents_deps.dev:12 github.com/pti4er/project,num_dependents_deps.dev:0 github.com/ptibbetts/conventional-commits-starter,num_dependents_deps.dev:0 github.com/ptibbetts/styles.paultibbetts.uk,num_dependents_deps.dev:0 +github.com/ptienchuan/deploy-github-pages-action, github.com/ptillet/torch-blocksparse, github.com/ptim/gatsby-source-wordpress,num_dependents_deps.dev:0 github.com/ptim/local-proxy,num_dependents_deps.dev:0 @@ -945316,7 +962305,9 @@ github.com/ptlergo/lincoln-logs,num_dependents_deps.dev:0 github.com/ptlm500/recordable-redux,num_dependents_deps.dev:0 github.com/ptman/revel,num_dependents_deps.dev:0 github.com/ptmcg/littletable, +github.com/ptmcg/logmerger, github.com/ptmclean/aws-secret,num_dependents_deps.dev:0 +github.com/ptmerz/jupyter-minimal-mistakes, github.com/ptmt/npm-native,num_dependents_deps.dev:0 github.com/ptmt/react-native-desktop,num_dependents_deps.dev:0 github.com/ptmt/react-native-gifted-chat-flat,num_dependents_deps.dev:0 @@ -945731,6 +962722,7 @@ github.com/pucelle/flit-ui,num_dependents_deps.dev:0 github.com/puchesjr/hapi-now-auth,num_dependents_deps.dev:0 github.com/puchunjie/vue-city-picker,num_dependents_deps.dev:0 github.com/puchupala/homebridge-nature-remo-multi-toggle-light, +github.com/pucke-uninow/image-checker, github.com/puckel/docker-airflow,criticality_score:0.460570 github.com/puckey/pad-number,num_dependents_deps.dev:0 github.com/puckowski/Sling.js,num_dependents_deps.dev:0 @@ -945786,6 +962778,7 @@ github.com/puemos/web-recorder,num_dependents_deps.dev:0 github.com/puentesarrin/bonzo, github.com/puentesarrin/mongodb-log, github.com/puentesarrin/wtforms-tornado, +github.com/puerco/bom-installer, github.com/puerco/lab,num_dependents_deps.dev:0 github.com/puerkitobio/fetchbot,num_dependents_deps.dev:22 github.com/puerkitobio/gocrawl,num_dependents_deps.dev:3 @@ -945835,7 +962828,27 @@ github.com/pufuwozu/fantasy-promises,num_dependents_deps.dev:14 github.com/pufuwozu/fantasy-sorcery,num_dependents_deps.dev:4 github.com/pufw18/palindrome,num_dependents_deps.dev:0 github.com/pug-bootstrap/components,num_dependents_deps.dev:0 +github.com/pug-php/ci-pug-engine, +github.com/pug-php/installer, +github.com/pug-php/js-phpize, +github.com/pug-php/js-phpize-phug, +github.com/pug-php/laravel, +github.com/pug-php/oc-pug-plugin, github.com/pug-php/pug,criticality_score:0.450570 +github.com/pug-php/pug-assets, +github.com/pug-php/pug-filter-base, +github.com/pug-php/pug-filter-coffee-script, +github.com/pug-php/pug-filter-less, +github.com/pug-php/pug-filter-markdown, +github.com/pug-php/pug-filter-react, +github.com/pug-php/pug-filter-sbp, +github.com/pug-php/pug-filter-stylus, +github.com/pug-php/pug-minify, +github.com/pug-php/pug-phalcon, +github.com/pug-php/pug-slim, +github.com/pug-php/pug-symfony, +github.com/pug-php/pug-yii2, +github.com/pug-php/twig, github.com/pug-tailwind/components,num_dependents_deps.dev:0 github.com/pugbabu/pug-ui, github.com/puge/areaRuler,num_dependents_deps.dev:0 @@ -945903,6 +962916,7 @@ github.com/puhoy/storedDict, github.com/puhrez/CubesWriter, github.com/puhrez/signi, github.com/puigmar/platzom,num_dependents_deps.dev:0 +github.com/puiiyuen/leetcode-box, github.com/puikinsh/Adminator-admin-dashboard,criticality_score:0.358340 github.com/puikinsh/Bootstrap-Admin-Template,num_dependents_deps.dev:0 github.com/puikinsh/gentelella,num_dependents_deps.dev:0 @@ -945929,6 +962943,7 @@ github.com/pujoheadsoft/abstractable,num_dependents_deps.dev:0 github.com/pujunjie/pjj-cli,num_dependents_deps.dev:0 github.com/pujunjie/react-router-an, github.com/pujunjie/react-router-animation,num_dependents_deps.dev:0 +github.com/pujux/covid-box, github.com/puk/marketing-evaluation, github.com/pukapukan/Crawl2Tweet,num_dependents_deps.dev:0 github.com/pukapukan/easy-bitly,num_dependents_deps.dev:0 @@ -945946,6 +962961,7 @@ github.com/pukkaone/odata-spring-boot-starter,num_dependents_deps.dev:0 github.com/pukkaone/webappenhance,num_dependents_deps.dev:0 github.com/puko818/SureTypeSC, github.com/pukonu/MagicDate,num_dependents_deps.dev:0 +github.com/pukonu/action-deploy-webapp-aws, github.com/pukri/rancat,num_dependents_deps.dev:0 github.com/puku0x/cordova-template-ngx-onsenui,num_dependents_deps.dev:0 github.com/pukuba/Auto-MongoDBExport,num_dependents_deps.dev:0 @@ -945968,6 +962984,7 @@ github.com/pulilab/django-simple-feedback, github.com/pulilab/dmn-to-image,num_dependents_deps.dev:0 github.com/pulilab/vue-django-feedback,num_dependents_deps.dev:0 github.com/pulilab/vuex-geolocation,num_dependents_deps.dev:0 +github.com/pulimento/github-action-hugo-deploy-to-firebase, github.com/pulipola/pulipola-typetools,num_dependents_deps.dev:0 github.com/pulipola/typetools,num_dependents_deps.dev:0 github.com/pulipola/use-opentype,num_dependents_deps.dev:0 @@ -945991,6 +963008,7 @@ github.com/pull-stream/stream-to-pull-stream,num_dependents_deps.dev:0 github.com/pullenti/pullenti-client, github.com/pullenti/pullenti-wrapper, github.com/pullor/ttFn,num_dependents_deps.dev:0 +github.com/pullpreview/action, github.com/pullrequestinc/go-gpt3,num_dependents_deps.dev:0 github.com/pullrequestinc/iostream,num_dependents_deps.dev:0 github.com/pullswitch/django-freeplay, @@ -946017,6 +963035,8 @@ github.com/pulquero/mathml,num_dependents_deps.dev:1 github.com/pulquero/sgw, github.com/pulquero/tinkerpopstar,num_dependents_deps.dev:0 github.com/puls/fuzzy_file_finder.js,num_dependents_deps.dev:0 +github.com/pulsar-edit/action-pulsar-dependency, +github.com/pulsar17/gh-pages-pelican-action, github.com/pulsardev/vue-tour,"criticality_score:0.371880,num_dependents_deps.dev:2" github.com/pulsarteam/pulsar,num_dependents_deps.dev:0 github.com/pulsarvp/le-pdf,num_dependents_deps.dev:0 @@ -946051,7 +963071,9 @@ github.com/pulsovi/react-debug,num_dependents_deps.dev:0 github.com/pulsovi/sequelize-pulsovi,num_dependents_deps.dev:0 github.com/pulstar/video-player,num_dependents_deps.dev:0 github.com/puluguv/fasttrack,num_dependents_deps.dev:0 +github.com/pulumi-contrib/setup-pulumi, github.com/pulumi-up/pulumi-k8s, +github.com/pulumi/actions, github.com/pulumi/automation-api-examples,num_dependents_deps.dev:0 github.com/pulumi/aws,num_dependents_deps.dev:0 github.com/pulumi/crd2pulumi,num_dependents_deps.dev:0 @@ -946161,6 +963183,7 @@ github.com/pulumi/pulumi-vsphere,num_dependents_deps.dev:0 github.com/pulumi/pulumi-wavefront,num_dependents_deps.dev:0 github.com/pulumi/pulumi-yandex,num_dependents_deps.dev:0 github.com/pulumi/pulumictl,num_dependents_deps.dev:0 +github.com/pulumi/setup-pulumi, github.com/pulumi/terraform-bridge,num_dependents_deps.dev:0 github.com/pulumi/terraform-provider-aiven,num_dependents_deps.dev:0 github.com/pulumi/terraform-provider-aws,num_dependents_deps.dev:0 @@ -946226,6 +963249,7 @@ github.com/punarinta/react-native-sound-level,num_dependents_deps.dev:0 github.com/puncha/node-pdf-image,num_dependents_deps.dev:0 github.com/puncha/semantic-release-research,num_dependents_deps.dev:0 github.com/punchagan/earworm, +github.com/punchagan/share-post-action, github.com/punchcard-cms/content-types, github.com/punchcard-cms/demo,num_dependents_deps.dev:0 github.com/punchcard-cms/eslint-config-punchcard,num_dependents_deps.dev:2 @@ -946279,6 +963303,7 @@ github.com/punctuations/wrap-presence,num_dependents_deps.dev:0 github.com/puneet0191/Typefont,num_dependents_deps.dev:0 github.com/puneet0191/codeceptjs-resemblehelper,num_dependents_deps.dev:0 github.com/puneet0191/codeceptjs-saucehelper,num_dependents_deps.dev:0 +github.com/puneet1337/gpt4-pr-review-github-action, github.com/puneet166/wmi,num_dependents_deps.dev:0 github.com/puneet25/go_programming_language_snippets,num_dependents_deps.dev:0 github.com/puneet29/ClutterManager, @@ -946289,6 +963314,7 @@ github.com/puneeth8994/ng2-neutron-rating,num_dependents_deps.dev:0 github.com/puneethrai/angular-long-press,num_dependents_deps.dev:0 github.com/puneethrchalla/go-uci,num_dependents_deps.dev:0 github.com/puneetmakkar/xml-crypto-forked,num_dependents_deps.dev:0 +github.com/puneetmatharu/cmake-format-lint-action, github.com/puneetpunamiya/hello-operator,num_dependents_deps.dev:0 github.com/puneetsivananda/golang-intro,num_dependents_deps.dev:0 github.com/puneetsngh/s3-document-db,num_dependents_deps.dev:0 @@ -946316,6 +963342,8 @@ github.com/punit-suman/sorting,num_dependents_deps.dev:0 github.com/punit1108/downy,num_dependents_deps.dev:0 github.com/punit1108/upstatejs,num_dependents_deps.dev:0 github.com/punit5658/interview,num_dependents_deps.dev:0 +github.com/punitcse/test-action-hello, +github.com/punitcse/test-action-ruby, github.com/punitda/ssh-git-cli, github.com/punitda/ssh-key-and-config-generator,num_dependents_deps.dev:0 github.com/punitmundra/develop,num_dependents_deps.dev:0 @@ -946603,6 +963631,8 @@ github.com/puppetlabs/trapperkeeper,criticality_score:0.423160 github.com/puppetlabs/ultipro-soap-python, github.com/puppetlabs/vault-plugin-secrets-oauthapp,num_dependents_deps.dev:0 github.com/puppetninja/geektime-go,num_dependents_deps.dev:0 +github.com/puppets-epic-show-theatre/action-pdk-test-unit, +github.com/puppets-epic-show-theatre/action-pdk-validate, github.com/puppipay/ramdash,num_dependents_deps.dev:2 github.com/puppy002/simple_bank,num_dependents_deps.dev:0 github.com/puppy0cam/chatwars-game-time,num_dependents_deps.dev:0 @@ -946660,6 +963690,7 @@ github.com/purab93/tiny,num_dependents_deps.dev:0 github.com/puradox/react-native-spotify,num_dependents_deps.dev:0 github.com/puradox/sift-sort,num_dependents_deps.dev:0 github.com/purag/momo,num_dependents_deps.dev:0 +github.com/purajit/YASS, github.com/puraku/purakujs,num_dependents_deps.dev:0 github.com/puraminy/nodcast, github.com/puranik3/workshops-app-react-utils,num_dependents_deps.dev:0 @@ -946676,6 +963707,7 @@ github.com/purcell/emacs.d,criticality_score:0.523930 github.com/purcell/exec-path-from-shell,criticality_score:0.403630 github.com/purcell/mmm-mode,criticality_score:0.361040 github.com/purcell/package-lint,Google +github.com/purcell/setup-emacs, github.com/purcell3a/gophercises-quizgame,num_dependents_deps.dev:0 github.com/purcell3a/gophercizes-adventuregame,num_dependents_deps.dev:0 github.com/purcell3a/gophercizes-renamer,num_dependents_deps.dev:0 @@ -946687,6 +963719,7 @@ github.com/purdue-tlt/studiokit-auth-js,num_dependents_deps.dev:0 github.com/purdue-tlt/studiokit-caliper-js,num_dependents_deps.dev:0 github.com/purdue-tlt/studiokit-net-js,num_dependents_deps.dev:0 github.com/purdue-tlt/stylelint-config-studiokit,num_dependents_deps.dev:0 +github.com/purduesigbots/clang-format-action, github.com/purduesigbots/pros-cli, github.com/purduesigbots/pros-cli-middleware,num_dependents_deps.dev:0 github.com/purdx/get-triangle-type,num_dependents_deps.dev:0 @@ -946739,6 +963772,7 @@ github.com/purecoreio/purecore-js, github.com/purecs/django-tagify, github.com/puredazzle/react-native-simple-picker,num_dependents_deps.dev:0 github.com/puredazzle/stylelint-config,num_dependents_deps.dev:0 +github.com/puredevops/sample-action, github.com/puredistortion/flask-blitzdb, github.com/pureexe/ThaiSwap,num_dependents_deps.dev:0 github.com/pureexe/irin-lang,num_dependents_deps.dev:0 @@ -946768,6 +963802,7 @@ github.com/purely-smile/load-baidu-tongji,num_dependents_deps.dev:0 github.com/purely-smile/oss-upload-file,num_dependents_deps.dev:0 github.com/purely-smile/parse-time, github.com/purely-smile/syncscroll,num_dependents_deps.dev:0 +github.com/puremcc/save-stack-outputs, github.com/puremourning/vimspector,"criticality_score:0.547450,num_dependents_deps.dev:0" github.com/purencool/pnctrade,num_dependents_deps.dev:0 github.com/purepass/purepass-cli,num_dependents_deps.dev:0 @@ -946814,6 +963849,7 @@ github.com/purescript-contrib/purescript-profunctor-lenses,num_dependents_deps.d github.com/purescript-contrib/purescript-react,"criticality_score:0.377660,num_dependents_deps.dev:0" github.com/purescript-contrib/purescript-react-dom,num_dependents_deps.dev:0 github.com/purescript-contrib/purescript-strongcheck,num_dependents_deps.dev:0 +github.com/purescript-contrib/setup-purescript, github.com/purescript-halogen/purescript-halogen,criticality_score:0.437680 github.com/purescript-node/purescript-node-buffer,num_dependents_deps.dev:10 github.com/purescript-node/purescript-node-child-process,num_dependents_deps.dev:0 @@ -946991,6 +964027,8 @@ github.com/purplebamboo/font-carrier,num_dependents_deps.dev:37 github.com/purplebamboo/gulp-view-compile,num_dependents_deps.dev:0 github.com/purplebamboo/svgPathify,num_dependents_deps.dev:84 github.com/purplebamboo/svgo-sync,num_dependents_deps.dev:8 +github.com/purplebearddan/action-sharepoint-publish, +github.com/purplebearddan/ghAction-md2pdf, github.com/purplebooth/moby-name-generator,num_dependents_deps.dev:0 github.com/purplecabbage/cordova-paramedic,num_dependents_deps.dev:0 github.com/purplecabbage/cordova-plugin-hardcore,num_dependents_deps.dev:0 @@ -947003,6 +964041,8 @@ github.com/purplecabbage/valid-identifier,num_dependents_deps.dev:960 github.com/purplecalm/alien,num_dependents_deps.dev:0 github.com/purplecheerio/tools,num_dependents_deps.dev:0 github.com/purplecheerio/wave,num_dependents_deps.dev:0 +github.com/purpleclay/nsv-action, +github.com/purpleclay/transient-tags-action, github.com/purplecode/approximate-hash,num_dependents_deps.dev:0 github.com/purplecomputer/Mikrotik_HTML_Documentation, github.com/purplecomputer/pa_license_check, @@ -947149,6 +964189,8 @@ github.com/puruvj/auto-class-launcher,num_dependents_deps.dev:0 github.com/puruvj/svelte-hotkeys,num_dependents_deps.dev:0 github.com/puruvj/vite-preset-react,num_dependents_deps.dev:0 github.com/puruzio/react-masonry-component,num_dependents_deps.dev:0 +github.com/purvesh-d/AIReviewRadar, +github.com/purvesh-d/OpenAIPRReviewAction, github.com/purvesh7/task-api,num_dependents_deps.dev:0 github.com/purveyor97/python_latoken, github.com/purvil12c/HookMyInput,num_dependents_deps.dev:0 @@ -947161,6 +964203,7 @@ github.com/puse/base,num_dependents_deps.dev:0 github.com/puse/icons-feather,num_dependents_deps.dev:0 github.com/pusewicz/rails_sequel,num_dependents_deps.dev:0 github.com/pusewicz/twitter-bootstrap-markup-rails,num_dependents_deps.dev:0 +github.com/push-based/user-flow-gh-action, github.com/push-in/easy-vue-calendar,num_dependents_deps.dev:0 github.com/push-platform/push-webchat, github.com/push-sdk/push-vivo,num_dependents_deps.dev:0 @@ -947392,6 +964435,7 @@ github.com/pustovitDmytro/eslint-plugin-censor,num_dependents_deps.dev:0 github.com/pustovitDmytro/logger-decorator,num_dependents_deps.dev:0 github.com/pustovitDmytro/myrmidon, github.com/pustovitDmytro/node-package-tester,num_dependents_deps.dev:0 +github.com/pustovitDmytro/redis-github-action, github.com/pustovitDmytro/rest-chronicle,num_dependents_deps.dev:0 github.com/pustovitDmytro/semantic-release-heroku,num_dependents_deps.dev:0 github.com/pustovitDmytro/semantic-release-telegram,num_dependents_deps.dev:0 @@ -947580,6 +964624,7 @@ github.com/pvblicltd/yo-node-restify-aws-swagger,num_dependents_deps.dev:0 github.com/pvcong11031994/common,num_dependents_deps.dev:0 github.com/pvcpc-aig/udax, github.com/pvcresin/glob-extension-changer,num_dependents_deps.dev:0 +github.com/pvcy/anonymize-project, github.com/pvdarji/esty,num_dependents_deps.dev:0 github.com/pvdheijden/node-lorawancrypto,num_dependents_deps.dev:0 github.com/pvdklei/create,num_dependents_deps.dev:0 @@ -947653,6 +964698,7 @@ github.com/pvik/go-whd,num_dependents_deps.dev:0 github.com/pvillega/twitter_privacy,num_dependents_deps.dev:0 github.com/pviniciusm/message-infra,num_dependents_deps.dev:0 github.com/pvinis/flick,num_dependents_deps.dev:0 +github.com/pvinis/update-cloudflare-dns, github.com/pvishvesh/gotest,num_dependents_deps.dev:0 github.com/pvital/gopl.io,num_dependents_deps.dev:0 github.com/pvizeli/ha-alpr, @@ -947777,6 +964823,7 @@ github.com/pvttrix/testapi,num_dependents_deps.dev:0 github.com/pvva/leetcode,num_dependents_deps.dev:0 github.com/pvwoods/lollygag, github.com/pvwoods/pintpay,num_dependents_deps.dev:0 +github.com/pvxx/githubpages-configure, github.com/pvyParts/aa-statistics, github.com/pvyParts/allianceauth-celeryanalytics, github.com/pvyParts/allianceauth-corp-tools, @@ -947913,6 +964960,8 @@ github.com/pwcremin/rnsync_key_generator,num_dependents_deps.dev:0 github.com/pwdonald/cmd-colors,num_dependents_deps.dev:0 github.com/pwdonald/simple-progress-bar,num_dependents_deps.dev:0 github.com/pwed/pwed-cdk, +github.com/pwei1018/bcrs-cd-action, +github.com/pwei1018/bcrs-ci-action, github.com/pwelagedara/swagger-mod,num_dependents_deps.dev:0 github.com/pwelch/urlvoid,num_dependents_deps.dev:0 github.com/pwelch/virustotal_api,num_dependents_deps.dev:0 @@ -948060,6 +965109,9 @@ github.com/pwnall/w3gram-server,num_dependents_deps.dev:0 github.com/pwnbus/electrician, github.com/pwndbg/pwndbg,criticality_score:0.519310 github.com/pwndex/vuespins,num_dependents_deps.dev:0 +github.com/pwned-17/check-dependabot, +github.com/pwned-17/dependabot-slack, +github.com/pwned-17/dependapager, github.com/pwnedbytragic/brainyquote-api, github.com/pwnedgod/conma,num_dependents_deps.dev:0 github.com/pwnesia/dnstake,num_dependents_deps.dev:0 @@ -948099,6 +965151,7 @@ github.com/pwoolvett/waluigi, github.com/pwoznicki/ClassyRadiomics, github.com/pwp-app/pwp-cli,num_dependents_deps.dev:0 github.com/pwpmp/pretty-eikon, +github.com/pwqbot/github-action-create-pr-parent-submodule, github.com/pwr-Solaar/Solaar,criticality_score:0.616800 github.com/pwrdc/PyTransdec, github.com/pwrdrvr/microapps-app-release, @@ -948239,6 +965292,7 @@ github.com/pxlhero/responsive-grid-light,num_dependents_deps.dev:0 github.com/pxlhero/sfcc_storelocator,num_dependents_deps.dev:0 github.com/pxlpnk/kraken-build,num_dependents_deps.dev:0 github.com/pxlprfct/bookmarked,num_dependents_deps.dev:0 +github.com/pxlrbt/action-composer-php-scoper, github.com/pxlrbt/animation,num_dependents_deps.dev:0 github.com/pxlrbt/js-filter-elements,num_dependents_deps.dev:0 github.com/pxlrbt/smoothscroll,num_dependents_deps.dev:0 @@ -948258,6 +965312,7 @@ github.com/pxpeterxu/wrapapi,num_dependents_deps.dev:0 github.com/pxq/torsniff,num_dependents_deps.dev:0 github.com/pxs623/element, github.com/pxsalehi/simple-sink,num_dependents_deps.dev:0 +github.com/pxseu/anilist-readme, github.com/pxseu/imperial-node,num_dependents_deps.dev:0 github.com/pxshadow/openlife,num_dependents_deps.dev:0 github.com/pxslip/vue-panel-navigation,num_dependents_deps.dev:0 @@ -948272,6 +965327,8 @@ github.com/pxue/go-nats-streaming,num_dependents_deps.dev:0 github.com/pxue/logspout,num_dependents_deps.dev:0 github.com/pxue/sup,num_dependents_deps.dev:0 github.com/pxwise/lite-json-parse,num_dependents_deps.dev:0 +github.com/py-actions/flake8, +github.com/py-actions/py-dependency-install, github.com/py-alpha-woelfchen/friendlier-json, github.com/py-az-cli/py-az-cli, github.com/py-bee/bee-config, @@ -948281,6 +965338,7 @@ github.com/py-bee/bee-util, github.com/py-bitflyer/py-bitflyer, github.com/py-bson/bson,criticality_score:0.354840 github.com/py-contributors/audiobook, +github.com/py-cov-action/python-coverage-comment-action, github.com/py-liam/liamcloud, github.com/py-libhdate/py-libhdate, github.com/py-lwb/sycc, @@ -948316,6 +965374,7 @@ github.com/py4mac/lgbsttracker, github.com/py4n6/pytsk,Google github.com/py57/disca, github.com/py60800/tinytuya,num_dependents_deps.dev:0 +github.com/py7hon/arch-makepkg, github.com/py8765/chatofpomelo,num_dependents_deps.dev:0 github.com/pyAHP/pyAHP, github.com/pyBae-py/is-odd,num_dependents_deps.dev:0 @@ -948410,6 +965469,7 @@ github.com/pyatyispyatil/flame-chart-js,num_dependents_deps.dev:0 github.com/pyatyispyatil/overlooker,num_dependents_deps.dev:0 github.com/pyaug/pyaug, github.com/pyauth/exile, +github.com/pyauth/pyotp, github.com/pyauth/pywarp, github.com/pyaxe/pyaxe-flask, github.com/pyaxe/pyaxe-pandas, @@ -948477,6 +965537,7 @@ github.com/pybrgr/pybrgr, github.com/pybricks/pybricks-api,num_dependents_deps.dev:0 github.com/pybricks/pybricks-micropython,num_dependents_deps.dev:0 github.com/pybricks/pybricksdev, +github.com/pybuilder/build, github.com/pybuilder/pybuilder,criticality_score:0.485550 github.com/pybuilder/pybuilder-completions, github.com/pyca/bcrypt,criticality_score:0.454440 @@ -948495,6 +965556,7 @@ github.com/pycampers/pymiwifi, github.com/pycampers/react-pages, github.com/pycampers/theatre, github.com/pycaret/pycaret,criticality_score:0.567520 +github.com/pycaret/pycaret-git-actions, github.com/pycaret/pycaret-nightly, github.com/pycasbin/django-orm-adapter, github.com/pycasbin/fastapi-authz, @@ -948611,6 +965673,7 @@ github.com/pydata/pandas-gbq,criticality_score:0.497920 github.com/pydata/pandas-msgpack, github.com/pydata/patsy,criticality_score:0.331630 github.com/pydata/pydata-google-auth,Google +github.com/pydata/pydata-sphinx-theme, github.com/pydata/pyrallel, github.com/pydata/sparse,criticality_score:0.508590 github.com/pydata/xarray,criticality_score:0.688450 @@ -948986,6 +966049,8 @@ github.com/pylhc/tfs, github.com/pylhc/turn_by_turn, github.com/pylidc/pylidc, github.com/pylift/pylift, +github.com/pylint-dev/astroid, +github.com/pylint-dev/pylint, github.com/pylior/django-admin-app-names-singleton, github.com/pylios/pylioshelpers, github.com/pylipp/bibu, @@ -949051,6 +966116,7 @@ github.com/pylrichard/go_design_patterns,num_dependents_deps.dev:0 github.com/pylsoft/cucumber-doclet,num_dependents_deps.dev:0 github.com/pylti/lti, github.com/pyluyang/go_learing,num_dependents_deps.dev:0 +github.com/pym7857/DXLabel, github.com/pymacaron/pymacaron, github.com/pymacaron/pymacaron-async, github.com/pymacaron/pymacaron-aws, @@ -949071,6 +966137,7 @@ github.com/pymc-devs/pymc4,criticality_score:0.330990 github.com/pymc-devs/resources,criticality_score:0.434520 github.com/pymc-learn/pymc-learn, github.com/pymc-learn/pymc-learn-sphinx-theme, +github.com/pymc20/action-confluence, github.com/pymeasure/pymeasure,criticality_score:0.463260 github.com/pymedphys/pymedphys, github.com/pymedusa/Medusa,criticality_score:0.674750 @@ -949122,6 +966189,7 @@ github.com/pynnl/pug2svelte,num_dependents_deps.dev:0 github.com/pynnl/svelte-hash-router,num_dependents_deps.dev:0 github.com/pynomaly/mecoda-nat, github.com/pynsc/pyNSC, +github.com/pynt-io/pynt-newman, github.com/pynvme/pynvme, github.com/pyo3/pyo3-built,num_dependents_deps.dev:0 github.com/pyoak/repository, @@ -949220,6 +966288,7 @@ github.com/pypa/dataexploration, github.com/pypa/devops-challenge-vchslav-v011, github.com/pypa/devprocess, github.com/pypa/dhruvak99, +github.com/pypa/distribute, github.com/pypa/dixeam_mysql, github.com/pypa/django3-helpdesk, github.com/pypa/dnc, @@ -949239,6 +966308,7 @@ github.com/pypa/flit, github.com/pypa/galgenmaennchen, github.com/pypa/garrysampleproject, github.com/pypa/genie_aladdin, +github.com/pypa/gh-action-pip-audit, github.com/pypa/gh-action-pypi-publish,criticality_score:0.469810 github.com/pypa/helix-scripts, github.com/pypa/helm_bin, @@ -949514,9 +966584,11 @@ github.com/pyrates/roll, github.com/pyrates/usine, github.com/pyratlib/pyrat, github.com/pyraxo/sylphy,num_dependents_deps.dev:2 +github.com/pyrbin/single-pr-updater, github.com/pyrdm/pyrdm, github.com/pyreadline/pyreadline, github.com/pyrech/composer-changelogs,criticality_score:0.431640 +github.com/pyrech/gcode-estimator, github.com/pyreiz/pyliesl, github.com/pyreiz/pyreiz, github.com/pyrenees/guillotina_mailer, @@ -949554,6 +966626,7 @@ github.com/pyriter/calculator,num_dependents_deps.dev:0 github.com/pyriter/rbapi, github.com/pyriter/tdaclient,num_dependents_deps.dev:0 github.com/pyrler/node-red-contrib-pyrler,num_dependents_deps.dev:0 +github.com/pyrmont/action-janet-test, github.com/pyro-kinetics/pyrokinetics, github.com/pyro-ppl/funsor, github.com/pyro-ppl/numpyro,criticality_score:0.461190 @@ -949586,6 +966659,7 @@ github.com/pyronear/pyro-vision, github.com/pyronimous/flappy, github.com/pyropy/exceliser, github.com/pyropy/fastapi-socketio, +github.com/pyropy/yandex-cloud-image-registry, github.com/pyros2097/rust-embed,"criticality_score:0.436740,num_dependents_deps.dev:227" github.com/pyros2097/wapp,num_dependents_deps.dev:0 github.com/pyroscope-io/dotnetdiag,num_dependents_deps.dev:9 @@ -949626,6 +966700,10 @@ github.com/pyrsmk/quarky,num_dependents_deps.dev:0 github.com/pyrsmk/qwest,num_dependents_deps.dev:8 github.com/pyrsmk/toast,num_dependents_deps.dev:0 github.com/pyrta2011/rest-api,num_dependents_deps.dev:0 +github.com/pyrunit/conda-setup-action, +github.com/pyrunit/jobtools-action, +github.com/pyrunit/pylint-action, +github.com/pyrunit/pytest-action, github.com/pyrustic/artwork, github.com/pyrustic/backstage, github.com/pyrustic/buildver, @@ -949694,6 +966772,7 @@ github.com/pysal/spreg, github.com/pysal/tobler, github.com/pysam-developers/pysam,criticality_score:0.527080 github.com/pysan-dev/pysan, +github.com/pysan3/docker-compose-multiple-apps-heroku-deploy, github.com/pysan3/paramsparser, github.com/pysarenkoa/mssql-data-gateway,num_dependents_deps.dev:0 github.com/pysashapy/pyWApp, @@ -949813,6 +966892,7 @@ github.com/pytest-dev/pytest-cpp, github.com/pytest-dev/pytest-describe, github.com/pytest-dev/pytest-django,criticality_score:0.587700 github.com/pytest-dev/pytest-echo, +github.com/pytest-dev/pytest-env, github.com/pytest-dev/pytest-factoryboy, github.com/pytest-dev/pytest-faker, github.com/pytest-dev/pytest-faulthandler, @@ -949973,6 +967053,8 @@ github.com/python-intelhex/intelhex, github.com/python-jeeves/jeeves, github.com/python-jsonschema/check-jsonschema, github.com/python-jsonschema/jsonschema, +github.com/python-jsonschema/jsonschema-specifications, +github.com/python-jsonschema/referencing, github.com/python-kasa/python-kasa, github.com/python-ldap/ldap-pypi-placeholder, github.com/python-ldap/python-ldap,criticality_score:0.512980 @@ -950108,6 +967190,7 @@ github.com/python-versioneer/python-versioneer,criticality_score:0.541660 github.com/python-visualization/branca, github.com/python-visualization/folium,criticality_score:0.586030 github.com/python-voca/voca, +github.com/python-websockets/websockets, github.com/python-webuntis/python-webuntis, github.com/python-windrose/windrose, github.com/python-wink/python-wink, @@ -950359,6 +967442,7 @@ github.com/pyvista/pyiges, github.com/pyvista/pymeshfix, github.com/pyvista/pyvista,criticality_score:0.580830 github.com/pyvista/pyvistaqt, +github.com/pyvista/setup-headless-display-action, github.com/pyvista/tetgen, github.com/pyviz-dev/nbsmoke, github.com/pyviz-dev/pyct, @@ -950426,6 +967510,7 @@ github.com/pyxo-dev/vint,num_dependents_deps.dev:2 github.com/pyxo-dev/wint,num_dependents_deps.dev:4 github.com/pyxon/core, github.com/pyxsqbs/qzails, +github.com/pyyjac/tailwindcss-update, github.com/pyymenta/spacecraft-cli,num_dependents_deps.dev:0 github.com/pyyoshi/cloud-pubsub-emu-helpers,num_dependents_deps.dev:0 github.com/pyython/cache-magic, @@ -950674,6 +967759,7 @@ github.com/qLearning/tadashii,num_dependents_deps.dev:0 github.com/qLethon/bitmex_simple_websocket, github.com/qLutCh55/adminify,num_dependents_deps.dev:0 github.com/qLutCh55/adminify-wysiwyg,num_dependents_deps.dev:0 +github.com/qRoC/cargo-actions, github.com/qTip2/bower,num_dependents_deps.dev:0 github.com/qTip2/qTip2,num_dependents_deps.dev:24 github.com/qTipTip/Pylette, @@ -950698,6 +967784,7 @@ github.com/qadram/generator-react,num_dependents_deps.dev:0 github.com/qadram/generator-tms-web-core,num_dependents_deps.dev:0 github.com/qadram/react-vscode-preview,num_dependents_deps.dev:0 github.com/qadre/go-p2p,num_dependents_deps.dev:0 +github.com/qafficient/junit-report-slack, github.com/qahive/generator-robotframework,num_dependents_deps.dev:0 github.com/qahive/generator-robotframework-puppeteer,num_dependents_deps.dev:0 github.com/qahive/robotframework-CoreRPAHive, @@ -950817,6 +967904,7 @@ github.com/qasim1020/DPL_SB2, github.com/qasim9872/Dynamic-Express-Router,num_dependents_deps.dev:0 github.com/qasim9872/aws-transcribe,num_dependents_deps.dev:0 github.com/qasimabdullah404/fun-size-tcis,num_dependents_deps.dev:0 +github.com/qassandrach/split-comment-to-args, github.com/qassim/mocha-spec-json-reporter-2,num_dependents_deps.dev:0 github.com/qasterr/rss-notification,num_dependents_deps.dev:0 github.com/qata/homebridge-twilio-sms,num_dependents_deps.dev:0 @@ -950859,6 +967947,7 @@ github.com/qawemlilo/widget-knex-schema, github.com/qawolf/fixtures,num_dependents_deps.dev:0 github.com/qawolf/netlify-plugin-qawolf,num_dependents_deps.dev:0 github.com/qawolf/playwright-video,num_dependents_deps.dev:7 +github.com/qawolf/preview-testing-action, github.com/qawolf/qawolf,"criticality_score:0.474050,num_dependents_deps.dev:856" github.com/qax-os/elastichd,num_dependents_deps.dev:0 github.com/qax-os/excelize,num_dependents_deps.dev:0 @@ -950876,6 +967965,8 @@ github.com/qazse1234567/react-fullpages,num_dependents_deps.dev:0 github.com/qazsero/react-howler,num_dependents_deps.dev:0 github.com/qazwsxedccsqzse/socketio-jwt,num_dependents_deps.dev:0 github.com/qazyn951230/wepack,num_dependents_deps.dev:0 +github.com/qazz92/kubectl, +github.com/qazz92/nomad-deploy-action, github.com/qba73/arct,num_dependents_deps.dev:0 github.com/qba73/circleclient, github.com/qba73/fmeclient, @@ -950985,6 +968076,9 @@ github.com/qca/open-ath9k-htc-firmware,criticality_score:0.535050 github.com/qcad/qcad,criticality_score:0.567610 github.com/qcadoo/mes,criticality_score:0.550810 github.com/qcam/3llo,criticality_score:0.300700 +github.com/qcastel/github-actions-backport, +github.com/qcastel/github-actions-maven-cmd, +github.com/qcastel/github-actions-maven-release, github.com/qcaudron/pawprint, github.com/qcb111/dms-js,num_dependents_deps.dev:0 github.com/qccoders/8ball,num_dependents_deps.dev:0 @@ -951093,6 +968187,7 @@ github.com/qdhuadi/hd-ui,num_dependents_deps.dev:0 github.com/qdhuxp/cypress-jest-coverage-merge,num_dependents_deps.dev:0 github.com/qdi5/wz-ui,num_dependents_deps.dev:0 github.com/qdleader/qdleader,num_dependents_deps.dev:0 +github.com/qdlmcfresh/esp-mdf-action, github.com/qdm12/cli-template,num_dependents_deps.dev:0 github.com/qdm12/cloudflare-dns-server,num_dependents_deps.dev:0 github.com/qdm12/cod4-docker,num_dependents_deps.dev:0 @@ -951203,6 +968298,7 @@ github.com/qeesung/casbin,num_dependents_deps.dev:0 github.com/qeesung/diagram,num_dependents_deps.dev:0 github.com/qeesung/p-cost, github.com/qeesung/rocketchat-node,num_dependents_deps.dev:0 +github.com/qeffects/gh-actions-lua, github.com/qejk/semantic-release-test,num_dependents_deps.dev:0 github.com/qejk/template-test,num_dependents_deps.dev:0 github.com/qeled/discordie,num_dependents_deps.dev:2 @@ -951216,10 +968312,12 @@ github.com/qencode-dev/qencode-api-python3-client, github.com/qendolin/go-bmf,num_dependents_deps.dev:0 github.com/qendolin/go-printpixel,num_dependents_deps.dev:0 github.com/qens/redux-decorators,num_dependents_deps.dev:0 +github.com/qentinelqi/qentinel-pace-action, github.com/qentinelqi/qweb, github.com/qeqer/intervalmath, github.com/qerdcv/vmd-go,num_dependents_deps.dev:0 github.com/qermit/jumplists, +github.com/qernal/github-actions-rust-clippy, github.com/qertis/node-fatsecret,num_dependents_deps.dev:0 github.com/qertis/openapi-jsonrpc-jsdoc,num_dependents_deps.dev:0 github.com/qertoip/calc,num_dependents_deps.dev:0 @@ -951319,6 +968417,11 @@ github.com/qgustavor/mega-mock,num_dependents_deps.dev:0 github.com/qgustavor/megajs-cli,num_dependents_deps.dev:0 github.com/qgweb/fsnotify,num_dependents_deps.dev:0 github.com/qgxpagamentos/awsdyn,num_dependents_deps.dev:0 +github.com/qgxpagamentos/commit-and-push-protected-branch, +github.com/qgxpagamentos/kubectl-eks-aws, +github.com/qgxpagamentos/kubectl-set, +github.com/qgxpagamentos/node-diff-zip, +github.com/qgxpagamentos/replace-env-file-action, github.com/qgy18/pangolin,num_dependents_deps.dev:0 github.com/qgy18/think-debug-toolbar,num_dependents_deps.dev:0 github.com/qh08/hendo-cli,num_dependents_deps.dev:0 @@ -951355,6 +968458,7 @@ github.com/qhxin/check-git-add,num_dependents_deps.dev:0 github.com/qhxin/flower-lookup,num_dependents_deps.dev:0 github.com/qhxin/kucoin.websocket,num_dependents_deps.dev:0 github.com/qhxin/react-virtualized-mask-list,num_dependents_deps.dev:0 +github.com/qhy040404/Bugly-mapping-upload, github.com/qhzhyt/dcms-sdk, github.com/qhzhyt/tiops-go-sdk,num_dependents_deps.dev:0 github.com/qi-shun-wang/uikit,num_dependents_deps.dev:0 @@ -952278,6 +969382,7 @@ github.com/qiwang19/image,num_dependents_deps.dev:0 github.com/qiwenilli/go-command,num_dependents_deps.dev:0 github.com/qiwenilli/gomod-info,num_dependents_deps.dev:0 github.com/qiwenilli/queue,num_dependents_deps.dev:0 +github.com/qiwi-forks/action-download-artifact, github.com/qiwi-forks/dts-bundle,num_dependents_deps.dev:2 github.com/qiwi-forks/eslint-config-standard, github.com/qiwi-forks/esm,num_dependents_deps.dev:12 @@ -952527,6 +969632,8 @@ github.com/qlefevre/commons-checksum,num_dependents_deps.dev:0 github.com/qlefevre/crud-admin-spring-boot-starter,num_dependents_deps.dev:0 github.com/qlehong/Zendesk-Chat-Nativescript,num_dependents_deps.dev:0 github.com/qlereboursBS/js-kml-parser,num_dependents_deps.dev:0 +github.com/qlicks/composer-diff-action, +github.com/qlicks/deployer-action, github.com/qlient-org/python-qlient, github.com/qligier/angular4-events,num_dependents_deps.dev:0 github.com/qligier/openvidu-browser-280-tmp,num_dependents_deps.dev:0 @@ -952586,6 +969693,7 @@ github.com/qlynick/study_mean,num_dependents_deps.dev:0 github.com/qlyoung/pyjsonata, github.com/qm3ster/broccoli-pug-render,num_dependents_deps.dev:0 github.com/qm8956/tudou-frontend-cli,num_dependents_deps.dev:0 +github.com/qmBase/spellcheck-github-actions, github.com/qmacAstanford/MultiPointCalculation, github.com/qmachine/qm-nodejs, github.com/qmachine/qm-ruby,num_dependents_deps.dev:0 @@ -952829,11 +969937,13 @@ github.com/qooleot/node-pg-query-template,num_dependents_deps.dev:0 github.com/qoollo/pearl,num_dependents_deps.dev:0 github.com/qoollo/stream-centre-player,num_dependents_deps.dev:0 github.com/qoolpage/qoolpage-ui,num_dependents_deps.dev:0 +github.com/qoomon/actions-publish-to-github-pages, github.com/qoomon/aws-configure, github.com/qoomon/aws-session, github.com/qoomon/docker-host,criticality_score:0.309530 github.com/qoomon/domain-value,num_dependents_deps.dev:0 github.com/qoomon/git-conventional-commits,num_dependents_deps.dev:0 +github.com/qoomon/github-actions-access-manager, github.com/qoomon/google-url-signature,num_dependents_deps.dev:0 github.com/qoomon/gson-type-adapter,num_dependents_deps.dev:0 github.com/qoomon/java-git-versioning,num_dependents_deps.dev:0 @@ -952870,6 +969980,7 @@ github.com/qoq-ts/qoq-sequelize,num_dependents_deps.dev:0 github.com/qoq-ts/qoq-static,num_dependents_deps.dev:0 github.com/qoq-ts/qoq-views,num_dependents_deps.dev:0 github.com/qoq-ts/ts-prepublish,num_dependents_deps.dev:0 +github.com/qoqa/action-s3-cp, github.com/qoqa/swiss_bank_validator,num_dependents_deps.dev:0 github.com/qor/admin,"criticality_score:0.433240,num_dependents_deps.dev:70" github.com/qor/i18n,num_dependents_deps.dev:6 @@ -953283,6 +970394,7 @@ github.com/qsweber/toggl-jira-sync, github.com/qsymmachus/csv-image,num_dependents_deps.dev:0 github.com/qsymmachus/test-service,num_dependents_deps.dev:0 github.com/qsymmachus/tick,num_dependents_deps.dev:0 +github.com/qsypoq/ansible-galaxy-publish-action, github.com/qsys-tools/qrc-client-js,num_dependents_deps.dev:0 github.com/qsys-tools/qsys-api-types,num_dependents_deps.dev:0 github.com/qsys-tools/qsys-qrc-proxy, @@ -953392,6 +970504,7 @@ github.com/quaNode/static-files-behaviour,num_dependents_deps.dev:0 github.com/quaantum/Quaantum-Components,num_dependents_deps.dev:0 github.com/quaark/scaler,num_dependents_deps.dev:0 github.com/quaat/soft7, +github.com/quabug/create-upm-release, github.com/quachduyy/npm_aws,num_dependents_deps.dev:0 github.com/quachio/quachio-testnpm,num_dependents_deps.dev:0 github.com/quachtina96/scratch-storage,num_dependents_deps.dev:0 @@ -953444,6 +970557,7 @@ github.com/quadient/data-services-client-java,num_dependents_deps.dev:28 github.com/quadient/design-tokens,num_dependents_deps.dev:0 github.com/quadient/remote-scripting-development,num_dependents_deps.dev:0 github.com/quadient/scaler-scripting-api,num_dependents_deps.dev:0 +github.com/quadio-media/acru-l, github.com/quadpay/quadpay-merchant-sdk-android,num_dependents_deps.dev:0 github.com/quadpay/quadpay-merchant-sdk-react-native, github.com/quadprog/quadprog, @@ -953593,9 +970707,16 @@ github.com/qualisys/qualisys_python_sdk, github.com/qualitaocupacional/libesocial, github.com/qualitaocupacional/nfsepmsj, github.com/qualitaocupacional/socws, +github.com/qualitia-cdev/_apply-parameters-action, +github.com/qualitia-cdev/_get-packages-action, +github.com/qualitia-cdev/_make-package-action, +github.com/qualitia-cdev/aws-create-stack-action, +github.com/qualitia-cdev/copy-to-s3, +github.com/qualitiaco/action-lambda-build-pack, github.com/quality-first/qf-common, github.com/quality-first/qf-package, github.com/quality-gamer/qg-manager,num_dependents_deps.dev:0 +github.com/quality-of-tests/has-useful-tests-action, github.com/qualitybath/bugzscout,num_dependents_deps.dev:0 github.com/qualitybath/bunyan-fogbugz,num_dependents_deps.dev:0 github.com/qualitybath/bunyan-slack,num_dependents_deps.dev:14 @@ -953608,9 +970729,12 @@ github.com/qualitybath/parcel-plugin-run-server,num_dependents_deps.dev:0 github.com/qualitybath/react-popover,num_dependents_deps.dev:0 github.com/qualitybath/use-mailcheck,num_dependents_deps.dev:0 github.com/qualitycapp/qualityc-module, +github.com/qualityclouds/action-application-scan, +github.com/qualityclouds/action-full-scan, github.com/qualityedgar/color-shell, github.com/qualityedgar/node-simple-flags,num_dependents_deps.dev:0 github.com/qualitysphere/hrobot, +github.com/qualle-admin/zapier-action, github.com/qualtive/client-library-web,num_dependents_deps.dev:0 github.com/qualweb/act-rules,num_dependents_deps.dev:34 github.com/qualweb/best-practices,num_dependents_deps.dev:14 @@ -953704,6 +970828,7 @@ github.com/quangkhaidam93/gin_restful_api,num_dependents_deps.dev:0 github.com/quanglam2807/appifier,num_dependents_deps.dev:0 github.com/quangld/json-persistent-object,num_dependents_deps.dev:0 github.com/quangld/observable-object,num_dependents_deps.dev:0 +github.com/quanglddev/aws-lambda-sync-action, github.com/quangminh1297/my-kube-proxy,num_dependents_deps.dev:0 github.com/quangnh2051tyhy/golangstarter,num_dependents_deps.dev:0 github.com/quangnpd/vue-localization,num_dependents_deps.dev:0 @@ -953730,6 +970855,7 @@ github.com/quangv/mocha-cakes,num_dependents_deps.dev:0 github.com/quangv/qlog,num_dependents_deps.dev:0 github.com/quangvinh1986/hello-golang-by-example,num_dependents_deps.dev:0 github.com/quangvo09/clickup-fetch,num_dependents_deps.dev:0 +github.com/quangvo09/create-pull-request-action, github.com/quangvo09/email-spam-checker,num_dependents_deps.dev:0 github.com/quangvo09/godash,num_dependents_deps.dev:0 github.com/quanhua92/legos, @@ -953816,7 +970942,10 @@ github.com/quantastica/qps-client, github.com/quantastica/quantum-circuit, github.com/quantcast/android-measurement,num_dependents_deps.dev:1 github.com/quantcast/qfs,criticality_score:0.418390 +github.com/quantcdn/deploy-action, github.com/quantcdn/node-cli, +github.com/quantcdn/purge-action, +github.com/quantcdn/search-action, github.com/quantco/pytsql, github.com/quantdeck/couch_crud,num_dependents_deps.dev:0 github.com/quanteda/quanteda,criticality_score:0.573240 @@ -953893,6 +971022,7 @@ github.com/quantmind/pulsar-queue, github.com/quantmind/pulsar-twitter, github.com/quantmind/pyslink, github.com/quantmind/topo-regions,num_dependents_deps.dev:0 +github.com/quantmod.comjoshuaulrich/quantmod, github.com/quantmoon/whitehole, github.com/quantnet-golovin/nodebb-qnt-auto-login,num_dependents_deps.dev:0 github.com/quantnetwork/overledger-sdk-java,num_dependents_deps.dev:26 @@ -953949,6 +971079,7 @@ github.com/quantum-clinics/egg-grpc-qtc,num_dependents_deps.dev:0 github.com/quantum-craft/go,num_dependents_deps.dev:0 github.com/quantum-dan/raspy, github.com/quantum-dan/raspy-cal, +github.com/quantum-defence/gdformatter, github.com/quantum-elixir/quantum-core,criticality_score:0.500320 github.com/quantum-lay/fakerng,num_dependents_deps.dev:0 github.com/quantum-visualizations/qmsolve, @@ -954288,6 +971419,10 @@ github.com/quartiq/stabilizer,num_dependents_deps.dev:0 github.com/quartiq/std-embedded-time,num_dependents_deps.dev:0 github.com/quarto-dev/quarto-python, github.com/quarton/go-asset,num_dependents_deps.dev:0 +github.com/quartx-analytics/ghcr-cleaner, +github.com/quartx-analytics/mender-artifact-uploader, +github.com/quartx-analytics/mender-docker-compose, +github.com/quartx-analytics/okteto-sync, github.com/quartz-scheduler/quartz,"criticality_score:0.464220,num_dependents_deps.dev:5188" github.com/quartz-software/kephas,num_dependents_deps.dev:0 github.com/quartzjer/TeleHash,num_dependents_deps.dev:0 @@ -954403,6 +971538,7 @@ github.com/quatanium/foscam-python-lib, github.com/quatanium/python-baidu-push-server, github.com/quatanium/python-onvif, github.com/quaternionmedia/launchchess-python, +github.com/quaternionmedia/milestones, github.com/quatix/django-shipping, github.com/quatix/fabix, github.com/quatix/python-ipagare, @@ -954438,6 +971574,7 @@ github.com/qubeekio/minimum, github.com/qubeekio/vue-fio-autocomplete,num_dependents_deps.dev:0 github.com/qubekit/QUBEKit, github.com/qubemudita/TestDoubles,num_dependents_deps.dev:0 +github.com/qubetools/qubetools-gh-action-semantic-version-tag-bump, github.com/qubiack/brace,num_dependents_deps.dev:0 github.com/qubiack/ng2-dragula,num_dependents_deps.dev:0 github.com/qubick/craft-puzzle,num_dependents_deps.dev:0 @@ -954471,6 +971608,7 @@ github.com/qubitproducts/jsonlogic,num_dependents_deps.dev:0 github.com/qubitproducts/kube-ci,num_dependents_deps.dev:0 github.com/qubitproducts/rawry,num_dependents_deps.dev:0 github.com/qubitproducts/uv-api,num_dependents_deps.dev:0 +github.com/qubitro/action-lambda-python-zip, github.com/qubitz/lawyer,num_dependents_deps.dev:0 github.com/qubole/afctl, github.com/qubole/allgood-consistent-hash-shaded,num_dependents_deps.dev:0 @@ -954579,6 +971717,7 @@ github.com/queckezz/uniq-with,num_dependents_deps.dev:0 github.com/queckezz/untar-memory,num_dependents_deps.dev:0 github.com/queckezz/veel, github.com/queckezz/watch-run,num_dependents_deps.dev:2 +github.com/queengooborg/invalid-issue-closer, github.com/queengooborg/pyapplemusicapi, github.com/queensaver/bbox,num_dependents_deps.dev:0 github.com/queensaver/packages,num_dependents_deps.dev:0 @@ -954653,6 +971792,7 @@ github.com/quenbyako/semver,num_dependents_deps.dev:0 github.com/quench-lang/quench,num_dependents_deps.dev:0 github.com/quenenni/ep_tables2, github.com/quenginedev/hami-express,num_dependents_deps.dev:0 +github.com/quenginedev/sst-deploy, github.com/quenice/ng-extra-build,num_dependents_deps.dev:0 github.com/quenice/react-native-cacheimage,num_dependents_deps.dev:0 github.com/quenice/react-native-cardview,num_dependents_deps.dev:0 @@ -954693,6 +971833,7 @@ github.com/quentinchap/beerutilities,num_dependents_deps.dev:0 github.com/quentindelautre/learning-git,num_dependents_deps.dev:0 github.com/quentinfaidide/console-go-utils,num_dependents_deps.dev:0 github.com/quentinguidee/mun-ui,num_dependents_deps.dev:0 +github.com/quentinguidee/pep8-action, github.com/quentinguidee/react-jade-ui,num_dependents_deps.dev:0 github.com/quentinhardy/odat,criticality_score:0.377180 github.com/quentinmit/decimctl, @@ -954926,6 +972067,10 @@ github.com/quickjp2/hubot-datadog-interface,num_dependents_deps.dev:0 github.com/quickjp2/hubot-pivotal-tracker, github.com/quickjp2/particle-listener, github.com/quickjp2/vsphere-commands, +github.com/quickjs-actions/quickjs-alpine, +github.com/quickjs-actions/quickjs-centos, +github.com/quickjs-actions/quickjs-fedora, +github.com/quickjs-actions/quickjs-ubuntu, github.com/quickjs-go/quickjs-go,num_dependents_deps.dev:0 github.com/quickleft/react-loader,num_dependents_deps.dev:14 github.com/quickliketurtle/serverless-plugin-log-prefix,num_dependents_deps.dev:0 @@ -954987,6 +972132,7 @@ github.com/quicktype/quicktype,"criticality_score:0.505620,num_dependents_deps.d github.com/quicktype/quicktype-playground,num_dependents_deps.dev:0 github.com/quicktype/typescript-json-schema,num_dependents_deps.dev:0 github.com/quickutils/language-colors, +github.com/quickvm/action-dnclient, github.com/quickwit-inc/quickwit,num_dependents_deps.dev:0 github.com/quicky84/braille-art,num_dependents_deps.dev:0 github.com/quickysoft-apps/yakapa-agent-client,num_dependents_deps.dev:0 @@ -955091,6 +972237,7 @@ github.com/quilt/oof,num_dependents_deps.dev:0 github.com/quiltdata/jupyterlab,num_dependents_deps.dev:0 github.com/quiltdata/quilt,criticality_score:0.540510 github.com/quiltdata/t4, +github.com/quiltt/deploy-core-hours, github.com/quiltt/quiltt-client,num_dependents_deps.dev:0 github.com/quiltt/quiltt-components,num_dependents_deps.dev:0 github.com/quiltt/quiltt-ui,num_dependents_deps.dev:0 @@ -955167,6 +972314,7 @@ github.com/quinnnned/redux-seeds,num_dependents_deps.dev:0 github.com/quinnnned/seducers,num_dependents_deps.dev:0 github.com/quinnnned/to-fun,num_dependents_deps.dev:0 github.com/quinnstonchurchill/setlife,num_dependents_deps.dev:0 +github.com/quinnturner/github-status-action, github.com/quinntynebrown/virtual-for,num_dependents_deps.dev:0 github.com/quinnvoker/lotide,num_dependents_deps.dev:0 github.com/quinoa42/s1acker, @@ -955221,6 +972369,7 @@ github.com/quintinheard/traefik-cors,num_dependents_deps.dev:0 github.com/quintinnicolas/elia-py, github.com/quintoandar/butterfree, github.com/quintoandar/eb_deployer, +github.com/quintoandar/ec2-github-runner, github.com/quintoandar/eslint-config-quintoandar,num_dependents_deps.dev:0 github.com/quintoandar/farewell-immutablejs,num_dependents_deps.dev:0 github.com/quintoandar/hive-metastore-client, @@ -955300,6 +972449,7 @@ github.com/quirimmo/Qprotractor,num_dependents_deps.dev:0 github.com/quirimmo/angular-upgrade-component-generator,num_dependents_deps.dev:0 github.com/quirimmo/react-qbootstrap-typescript-generator,num_dependents_deps.dev:0 github.com/quirimmo/xstate-react-hoc,num_dependents_deps.dev:0 +github.com/quirinecker/asciidoctor-convert-action, github.com/quirinobrizi/exa-api-builder,num_dependents_deps.dev:0 github.com/quirinobrizi/exa-bot-builder,num_dependents_deps.dev:0 github.com/quirinpa/chest,num_dependents_deps.dev:0 @@ -955419,6 +972569,7 @@ github.com/quiverjs/tcp-server,num_dependents_deps.dev:0 github.com/quiverjs/template-component,num_dependents_deps.dev:0 github.com/quivr/angular-GAPI,num_dependents_deps.dev:0 github.com/quixey/kafka-python, +github.com/quixio/LibraryToMKDocsReadmeMergeAction, github.com/quixomatic/tag-field,num_dependents_deps.dev:0 github.com/quixomatic/ui-renderer-react, github.com/quixon-labs/quixutils-rs,num_dependents_deps.dev:0 @@ -955572,7 +972723,9 @@ github.com/quorumcontrol/kasumah,num_dependents_deps.dev:0 github.com/quorumcontrol/tupelo-wasm-sdk,num_dependents_deps.dev:0 github.com/quory/quory,num_dependents_deps.dev:0 github.com/quosol/crypto-js,num_dependents_deps.dev:0 +github.com/quotabook/any-counter-github-action, github.com/quotaguard/snappystats,num_dependents_deps.dev:0 +github.com/quotidian-ennui/find-matching-issues, github.com/quotient-im/Quaternion,criticality_score:0.488880 github.com/quotschmacher/pimatic-jointspace,num_dependents_deps.dev:0 github.com/quotto/aws-lambda-local-deployer, @@ -955713,6 +972866,7 @@ github.com/qvantel/nerd,num_dependents_deps.dev:0 github.com/qvantel/scala-inflector,num_dependents_deps.dev:8 github.com/qvaqvaboo/rccmp,num_dependents_deps.dev:0 github.com/qvazi/cra-template-qminimal,num_dependents_deps.dev:0 +github.com/qventus-azepeda/terraform-pr-commenter, github.com/qvik/go-cloudlogging,num_dependents_deps.dev:0 github.com/qvil/lte-earfcn-calculator,num_dependents_deps.dev:0 github.com/qvil/react-daily-hooks,num_dependents_deps.dev:0 @@ -955751,6 +972905,8 @@ github.com/qw623577789/qtk-schema-mock,num_dependents_deps.dev:0 github.com/qw623577789/qtk-schema-validator,num_dependents_deps.dev:0 github.com/qw623577789/skip-request,num_dependents_deps.dev:4 github.com/qw623577789/smart-model-for-sqlcipher,num_dependents_deps.dev:0 +github.com/qwak-ai/build-action, +github.com/qwak-ai/deploy-action, github.com/qwak-ai/go-sdk,num_dependents_deps.dev:0 github.com/qwak-ai/qwak-public,num_dependents_deps.dev:0 github.com/qwales1/crumby,num_dependents_deps.dev:0 @@ -955830,6 +972986,7 @@ github.com/qwercik/climmands, github.com/qwercik/multicon, github.com/qwerkael/atk_binlog_parser,num_dependents_deps.dev:0 github.com/qwerkael/utility-go,num_dependents_deps.dev:0 +github.com/qwert666/shinyapps-actions, github.com/qwertech/planter,num_dependents_deps.dev:0 github.com/qwertie/btree-typescript,num_dependents_deps.dev:12 github.com/qwertie/holders,num_dependents_deps.dev:0 @@ -955868,6 +973025,7 @@ github.com/qwertypants/lpd8806-asyncfx,num_dependents_deps.dev:0 github.com/qwertypnk/qwertypnk,num_dependents_deps.dev:0 github.com/qwertyquerty/pypresence,criticality_score:0.413240 github.com/qwertyspore/tile38-client,num_dependents_deps.dev:0 +github.com/qwertyyb/replace-md-images-action, github.com/qwertyyb/video-player-react,num_dependents_deps.dev:0 github.com/qwertz19281/rust_utils,num_dependents_deps.dev:1 github.com/qwex23/daily-coding-problem,num_dependents_deps.dev:0 @@ -956042,6 +973200,7 @@ github.com/qzb/is-animated,num_dependents_deps.dev:44 github.com/qzb/is.sh,num_dependents_deps.dev:0 github.com/qzb/markdown-jinja, github.com/qzb/sh-semver,num_dependents_deps.dev:0 +github.com/qzb/standard-version-action, github.com/qzchenwl/hexo-generator-author,num_dependents_deps.dev:0 github.com/qzchenwl/ipytalos,num_dependents_deps.dev:0 github.com/qzchenwl/jupyterlab_sharecitadel,num_dependents_deps.dev:0 @@ -956164,6 +973323,7 @@ github.com/r-k-t-a/rkta-form,num_dependents_deps.dev:0 github.com/r-k-t-a/rkta-sortable,num_dependents_deps.dev:0 github.com/r-k-t-a/rkta-ui,num_dependents_deps.dev:0 github.com/r-k-t-a/rkta-validator,num_dependents_deps.dev:0 +github.com/r-kagaya/woodpecker, github.com/r-kapoor/extraction_network, github.com/r-kells/scream, github.com/r-kitek/cordova-team-viewer,num_dependents_deps.dev:0 @@ -956289,6 +973449,8 @@ github.com/r08521610/research-utils, github.com/r0adkll/PostOffice,num_dependents_deps.dev:0 github.com/r0adkll/SlidableActivity,num_dependents_deps.dev:0 github.com/r0adkll/deadSkunk,num_dependents_deps.dev:0 +github.com/r0adkll/sign-android-release, +github.com/r0adkll/upload-google-play, github.com/r0b-/lz-string,num_dependents_deps.dev:0 github.com/r0b0t3d/react-native-carousel,num_dependents_deps.dev:0 github.com/r0b0t3d/react-native-collapsible,num_dependents_deps.dev:0 @@ -956353,14 +973515,17 @@ github.com/r0ro/skytraq, github.com/r0sari0/ts-timer,num_dependents_deps.dev:0 github.com/r0skar/poi-plugin-prerender-spa-plugin,num_dependents_deps.dev:0 github.com/r0skar/rollup-plugin-prerender-spa-plugin,num_dependents_deps.dev:0 +github.com/r0user/release-apk, github.com/r0w4n/edr_query_parser, github.com/r0wb0t/markdown-urlize, github.com/r0x0d/dismod, github.com/r0x0d/oogg, github.com/r0x0d/testgen,num_dependents_deps.dev:0 +github.com/r0x0d/wait-for-ci-checks, github.com/r0x0d/zett, github.com/r0x0r/pywebview,criticality_score:0.560210 github.com/r0x73/gandyns, +github.com/r0zar/sam-deploy-action, github.com/r1000ru/jsonrpc-client-http-nats,num_dependents_deps.dev:0 github.com/r1000ru/jsonrpc-server-http-nats,num_dependents_deps.dev:0 github.com/r1000ru/nats-term,num_dependents_deps.dev:0 @@ -956383,6 +973548,8 @@ github.com/r13v/eslint-config-react-r13v,num_dependents_deps.dev:0 github.com/r14r/manim+, github.com/r15ch13/audible-converter,num_dependents_deps.dev:0 github.com/r15ch13/pmx-cores,num_dependents_deps.dev:0 +github.com/r17x/babel-plugin-react-suspense, +github.com/r17x/fetch.macro, github.com/r18n/r18n,criticality_score:0.509140 github.com/r1N0Xmk2/auth-module,num_dependents_deps.dev:0 github.com/r1cebank/ReactNativeLocalization,num_dependents_deps.dev:0 @@ -956623,6 +973790,7 @@ github.com/r4tings/r4tings-assessment,num_dependents_deps.dev:0 github.com/r4tings/r4tings-common,num_dependents_deps.dev:0 github.com/r4tings/r4tings-data,num_dependents_deps.dev:0 github.com/r4tings/r4tings-model,num_dependents_deps.dev:0 +github.com/r4ven1245/apprunner-status-listener-action, github.com/r4vesky/soccer-coin-api,num_dependents_deps.dev:0 github.com/r4vesky/vine-coin-plus,num_dependents_deps.dev:0 github.com/r4wizard/gettext-scrape,num_dependents_deps.dev:0 @@ -956649,19 +973817,32 @@ github.com/r7kamura/activerecord-enum_translation,num_dependents_deps.dev:0 github.com/r7kamura/amazon-api-gateway-client,num_dependents_deps.dev:0 github.com/r7kamura/autodoc,criticality_score:0.396160 github.com/r7kamura/aws-signer-v4,num_dependents_deps.dev:12 +github.com/r7kamura/bump-request, github.com/r7kamura/cycle-fetcher-driver,num_dependents_deps.dev:0 github.com/r7kamura/cycle-history-driver,num_dependents_deps.dev:0 github.com/r7kamura/draft-js-markless-plugin,num_dependents_deps.dev:0 +github.com/r7kamura/gemfile-diff, +github.com/r7kamura/github-label-sync-action, +github.com/r7kamura/google-docs-to-github, +github.com/r7kamura/google-docs-to-local, github.com/r7kamura/katatema,num_dependents_deps.dev:0 github.com/r7kamura/key-string,num_dependents_deps.dev:0 github.com/r7kamura/modan,num_dependents_deps.dev:0 github.com/r7kamura/rack-capture,num_dependents_deps.dev:0 github.com/r7kamura/rack-ok,num_dependents_deps.dev:0 +github.com/r7kamura/redocly-problem-matchers, +github.com/r7kamura/rubocop-challenge, +github.com/r7kamura/rubocop-problem-matchers-action, +github.com/r7kamura/rubocop-todo-corrector, github.com/r7kamura/ruboty,criticality_score:0.336490 +github.com/r7kamura/rust-problem-matchers, +github.com/r7kamura/semgrepper, +github.com/r7kamura/split-tests-by-timings, github.com/r7kamura/stackable-fetcher,num_dependents_deps.dev:8 github.com/r7kamura/stackable-fetcher-aws-signer-v4,num_dependents_deps.dev:8 github.com/r7kamura/typed-event-publisher,num_dependents_deps.dev:0 github.com/r7kamura/weneedfeed,num_dependents_deps.dev:0 +github.com/r7kamura/weneedfeed-action, github.com/r7n/gmx,num_dependents_deps.dev:0 github.com/r7n/metamask,num_dependents_deps.dev:0 github.com/r7n/shorturl,num_dependents_deps.dev:0 @@ -956756,6 +973937,7 @@ github.com/raaftech/logelastic,num_dependents_deps.dev:0 github.com/raaftech/mule3-archetype,num_dependents_deps.dev:0 github.com/raaftech/mule4-archetype,num_dependents_deps.dev:0 github.com/raafvargas/gqlgen-demo,num_dependents_deps.dev:0 +github.com/raag/heroku_vars_comparator, github.com/raagin/django-streamfield, github.com/raagin/django-tablefield, github.com/raags/ipmitool, @@ -957068,6 +974250,7 @@ github.com/rachekalmir/flask-jsonschema-ext, github.com/rachel-ftw/LG-simple-JS-library,num_dependents_deps.dev:0 github.com/rachel-shao/zhanshucloud,num_dependents_deps.dev:0 github.com/rachel-sharp/dynamight, +github.com/rachelhigley/add-ip-to-digital-ocean-database, github.com/rachelhigley/app-require,num_dependents_deps.dev:0 github.com/rachelhigley/level-routes,num_dependents_deps.dev:0 github.com/rachellerathbone/jira-issue-key-parser,num_dependents_deps.dev:0 @@ -957364,6 +974547,8 @@ github.com/radbradd/thresh,num_dependents_deps.dev:0 github.com/radbrawler/hfc,num_dependents_deps.dev:0 github.com/radbuglet/Providers,num_dependents_deps.dev:0 github.com/radcheb/book-store, +github.com/radcortez/backport-action, +github.com/radcortez/project-metadata-action, github.com/raddatzk/spring-tools,num_dependents_deps.dev:0 github.com/raddevon/cryptbird,num_dependents_deps.dev:0 github.com/raddevon/flask-permissions, @@ -957373,6 +974558,7 @@ github.com/radding/gemini,num_dependents_deps.dev:0 github.com/raddko15/ngx-party-parrots,num_dependents_deps.dev:0 github.com/raddysr/my_algo_references,num_dependents_deps.dev:0 github.com/radek-altof/lint-config,num_dependents_deps.dev:0 +github.com/radek-baczynski/async-api-generator, github.com/radek-novak/simple-https-server,num_dependents_deps.dev:0 github.com/radek/hapi-fluxible-router,num_dependents_deps.dev:0 github.com/radekBednarik/czech-covid19-data-api, @@ -957419,6 +974605,8 @@ github.com/radenkovic/mariner, github.com/radenkovic/skf,num_dependents_deps.dev:0 github.com/radenkovic/toolbelt,num_dependents_deps.dev:0 github.com/radenling/moviehash,num_dependents_deps.dev:0 +github.com/radenpioneer/astro-ftp, +github.com/radenpioneer/astro-ftp-deploy, github.com/radenui/hapi-k8s-health,num_dependents_deps.dev:0 github.com/radenui/ng2-oauth2,num_dependents_deps.dev:0 github.com/radeonopencompute/k8s-device-plugin,num_dependents_deps.dev:0 @@ -957476,6 +974664,7 @@ github.com/radiantcooling/homebridge-messana-zone,num_dependents_deps.dev:0 github.com/radiantearth/radiant-mlhub, github.com/radiantearth/stac-browser, github.com/radiantearth/stac-spec,criticality_score:0.519110 +github.com/radiantly/profanity-filter-action, github.com/radiantone/blazer, github.com/radiantone/elasticcode, github.com/radiantone/entangle, @@ -957914,6 +975103,7 @@ github.com/radujica/baloo, github.com/radujica/tospotify, github.com/radulescuandrew/cordova-plugin-fingerprint-customized,num_dependents_deps.dev:0 github.com/radulle/chess-clock,num_dependents_deps.dev:0 +github.com/radulle/pullforcer, github.com/radulucut/green-to-red,num_dependents_deps.dev:0 github.com/radulucut/script-store,num_dependents_deps.dev:0 github.com/radum/eslint-config,num_dependents_deps.dev:0 @@ -957984,11 +975174,14 @@ github.com/raelgor/request-bouncer,num_dependents_deps.dev:0 github.com/raelgor/zenx-lb,num_dependents_deps.dev:0 github.com/raelgor/zenx-server,num_dependents_deps.dev:0 github.com/raelgor/zenx-util,num_dependents_deps.dev:0 +github.com/raelldottin/glitch-me-visitor-count-incrementor, github.com/raelmax/android-webview, github.com/raelyz/itinerary-planner,num_dependents_deps.dev:0 github.com/raember/lightnovelapi, github.com/raember/spoofbot, github.com/raen79/fie,num_dependents_deps.dev:0 +github.com/raeperd/google-drive-download-action, +github.com/raeperd/line-in-action, github.com/raerpo/css-translate-matrix-parser,num_dependents_deps.dev:0 github.com/raerpo/local-package, github.com/raesene/test_libs,num_dependents_deps.dev:0 @@ -958009,6 +975202,7 @@ github.com/rafa-coelho/pagseguro-api, github.com/rafa-rod/vartests, github.com/rafa7loza/sistemas_distribuidos_go,num_dependents_deps.dev:0 github.com/rafabene/nodejs-cicd-sample,num_dependents_deps.dev:0 +github.com/rafabios/github-action-kubelinter-tools, github.com/rafacabeza/cervezas-rafa,num_dependents_deps.dev:0 github.com/rafacesar/exchange-checkuser,num_dependents_deps.dev:0 github.com/rafacesar/simplehar,num_dependents_deps.dev:0 @@ -958071,8 +975265,11 @@ github.com/rafaela-soares/kk,num_dependents_deps.dev:0 github.com/rafaela314/go-mongo-rest-exemple,num_dependents_deps.dev:0 github.com/rafaelassumpcao/bcap-cli,num_dependents_deps.dev:0 github.com/rafaelaudy/habit-geek-utils,num_dependents_deps.dev:0 +github.com/rafaelbastiansch/labeler, +github.com/rafaelbastiansch/mergeability-pr, github.com/rafaelbco/rbco.caseclasses, github.com/rafaelbco/rbco.wfdocumentator, +github.com/rafaelbeckel/wip-blocker, github.com/rafaelbeecker/express-error-handler,num_dependents_deps.dev:0 github.com/rafaelbeecker/express-sequelize-resource,num_dependents_deps.dev:0 github.com/rafaelbeecker/nodejs-async-handler,num_dependents_deps.dev:0 @@ -958166,6 +975363,7 @@ github.com/rafaelfranca/simple_form-bootstrap,criticality_score:0.441770 github.com/rafaelgallo/jenkins-kubernetes--google-cloud,num_dependents_deps.dev:0 github.com/rafaelgfx/material-survey,num_dependents_deps.dev:0 github.com/rafaelgieschke/await.-variables,num_dependents_deps.dev:0 +github.com/rafaelgomesxyz/palemoon-addon, github.com/rafaelgontijo/django-json-ordered, github.com/rafaelgou/peach-cli,num_dependents_deps.dev:0 github.com/rafaelgr/AriGesInvNode,num_dependents_deps.dev:0 @@ -958396,8 +975594,10 @@ github.com/rafaelverger/create-git-changelog,num_dependents_deps.dev:0 github.com/rafaelverger/maxipago-nodejs, github.com/rafaelverger/react-prebid-adunit,num_dependents_deps.dev:0 github.com/rafaelverger/sos.js,num_dependents_deps.dev:0 +github.com/rafaelvicio/sns-sms, github.com/rafaelvieiras/ngx-animate-css-grid,num_dependents_deps.dev:0 github.com/rafaelvilarinho/logstash-http-logger,num_dependents_deps.dev:0 +github.com/rafaelvp-db/jupyter-to-databricks, github.com/rafaelwagner/go-websitesmonitor,num_dependents_deps.dev:0 github.com/rafaelwaterkemper/learn-golang,num_dependents_deps.dev:0 github.com/rafaelwi/github-readme-lastfm-stats,num_dependents_deps.dev:0 @@ -958418,6 +975618,7 @@ github.com/rafakato/seneca-node-cron,num_dependents_deps.dev:0 github.com/rafakato/troupe,num_dependents_deps.dev:0 github.com/rafal-r/airr-react,num_dependents_deps.dev:0 github.com/rafal-rozestwinski/rrgologex,num_dependents_deps.dev:0 +github.com/rafal-slowik/gh-action-msteams, github.com/rafalab/dsbook,criticality_score:0.446250 github.com/rafalbigaj/logo-spy,num_dependents_deps.dev:0 github.com/rafalcieslak/wpcraft, @@ -958498,11 +975699,14 @@ github.com/rafaneri/phychips-rcp,num_dependents_deps.dev:0 github.com/rafanoli/ng-google-analytics,num_dependents_deps.dev:0 github.com/rafapaezbas/event-loop-chart, github.com/rafapaulin/logger,num_dependents_deps.dev:0 +github.com/rafapaulin/slack-webhook-action, github.com/rafapaulin/smarti18n,num_dependents_deps.dev:0 github.com/rafaph/eslint-config,num_dependents_deps.dev:0 github.com/rafarcm/fundamentos_go,num_dependents_deps.dev:0 github.com/rafaribe/cdk8s-flux,num_dependents_deps.dev:0 github.com/rafaribe/pulumi-pihole,num_dependents_deps.dev:0 +github.com/rafarlopes/get-latest-pre-release-tag-action, +github.com/rafarlopes/wait-for-commit-status-action, github.com/rafarob/bower-mergely,num_dependents_deps.dev:0 github.com/rafarob/mergely-dependless,num_dependents_deps.dev:0 github.com/rafasantos/angular-material-image-overlay,num_dependents_deps.dev:0 @@ -958518,6 +975722,7 @@ github.com/rafatzbr/ar4h,num_dependents_deps.dev:0 github.com/rafatzbr/keymaster,num_dependents_deps.dev:0 github.com/rafatzbr/node-ndo,num_dependents_deps.dev:0 github.com/rafatzbr/together,num_dependents_deps.dev:0 +github.com/rafaucau/purge-cloudflare-cache-action, github.com/rafavilomar/rafavilomar-random-names, github.com/rafawo/hcs-rs,num_dependents_deps.dev:0 github.com/rafawo/virtdisk-rs,num_dependents_deps.dev:0 @@ -958556,6 +975761,7 @@ github.com/rafelbev/cordova-plugin-ipad-multitasking,num_dependents_deps.dev:0 github.com/rafelbev/logback-mattermost-appender,num_dependents_deps.dev:0 github.com/rafer/domain_model,num_dependents_deps.dev:0 github.com/rafer/enumerated_type,num_dependents_deps.dev:0 +github.com/raferdev/github-profile-3d-contrib, github.com/rafern/canvas-ui,num_dependents_deps.dev:0 github.com/rafern/canvas-ui-wl,num_dependents_deps.dev:0 github.com/rafet/multi-requester, @@ -958718,6 +975924,7 @@ github.com/rafpyprog/pySGS, github.com/rafpyprog/pygmaps, github.com/rafpyprog/pyssword, github.com/rafpyprog/rstwriter, +github.com/rafrafek/create-release, github.com/rafraser/theia, github.com/rafrex/current-input,num_dependents_deps.dev:0 github.com/rafrex/detect-hover,num_dependents_deps.dev:0 @@ -958740,6 +975947,7 @@ github.com/rafreza/lotide,num_dependents_deps.dev:0 github.com/rafsaf/fastapi-template, github.com/rafsaf/respo, github.com/rafsaf/tw-complex, +github.com/rafspiny/repoman-repo-qa, github.com/raft-tech/django-admin-508, github.com/raft/raft.github.io,criticality_score:0.385620 github.com/raftaarjs/raftaar,num_dependents_deps.dev:0 @@ -958752,6 +975960,7 @@ github.com/raftario/lib-cemu,num_dependents_deps.dev:0 github.com/raftario/licensor,num_dependents_deps.dev:0 github.com/raftario/njre,num_dependents_deps.dev:8 github.com/raftario/pasrel,num_dependents_deps.dev:0 +github.com/raftario/setup-rust-action, github.com/raftatgit/hl-fabric-operator,num_dependents_deps.dev:0 github.com/rafterjs/rafter,num_dependents_deps.dev:4 github.com/raftie/graaf_tools, @@ -958789,6 +975998,7 @@ github.com/rage/python-editor,num_dependents_deps.dev:0 github.com/rage28/log4j2-slack,num_dependents_deps.dev:0 github.com/ragebite/passport-xbox,num_dependents_deps.dev:0 github.com/ragecub3/go-examples,num_dependents_deps.dev:0 +github.com/ragedb/github-action, github.com/ragelo/sql-diff,num_dependents_deps.dev:0 github.com/ragemp-tools/online,num_dependents_deps.dev:0 github.com/ragemp-tools/server,num_dependents_deps.dev:0 @@ -958824,6 +976034,7 @@ github.com/raghavanand98/tf-serving-js-web,num_dependents_deps.dev:0 github.com/raghavaro/quickslice, github.com/raghavaro/strategize, github.com/raghavaro/substack-python, +github.com/raghavbijjula/aws-codebuild-run-build, github.com/raghavg123/chanim, github.com/raghavgujjar/DefineModules,num_dependents_deps.dev:0 github.com/raghavgujjar/matrix,num_dependents_deps.dev:0 @@ -959143,6 +976354,7 @@ github.com/rahmanda/ayu,num_dependents_deps.dev:0 github.com/rahmanda/lightning,num_dependents_deps.dev:0 github.com/rahmanda/tailwindscss,num_dependents_deps.dev:0 github.com/rahmanfadhil/statefully,num_dependents_deps.dev:0 +github.com/rahmanrafi/eslint-reporter-action, github.com/rahmanroman/lardi-trans-api,num_dependents_deps.dev:0 github.com/rahmanroman/node-jeapie,num_dependents_deps.dev:0 github.com/rahmanroman/node-pushall,num_dependents_deps.dev:0 @@ -959175,8 +976387,10 @@ github.com/rahsheen/react-native-template-ts-paper-navigation,num_dependents_dep github.com/rahsheen/react-wizard,num_dependents_deps.dev:0 github.com/rahu5/trumail,num_dependents_deps.dev:0 github.com/rahul-bhardwaj11/react-package-example,num_dependents_deps.dev:0 +github.com/rahul-deepsource/pyaction, github.com/rahul-deepsource/pybadges-trend, github.com/rahul-jha98/sheets-database,num_dependents_deps.dev:0 +github.com/rahul-mahato11/test-prgenie-gpt, github.com/rahul-mytokenized-capital/AIBC,num_dependents_deps.dev:0 github.com/rahul-nanwani/blackjack21, github.com/rahul-sharma-uipath/react-oidc-context,num_dependents_deps.dev:0 @@ -959207,10 +976421,12 @@ github.com/rahul3883/tep,num_dependents_deps.dev:0 github.com/rahul3883/utils,num_dependents_deps.dev:0 github.com/rahul3v/demo-hello-world-pkg,num_dependents_deps.dev:0 github.com/rahul3v/test-automated-publish-packge,num_dependents_deps.dev:0 +github.com/rahul799/create-or-update-comment, github.com/rahul987725800/golang-simple-rest,num_dependents_deps.dev:0 github.com/rahuladream/Whatsapp-Chat-Analyzer, github.com/rahulagg1804/comp-library,num_dependents_deps.dev:0 github.com/rahulakurati/xss-scrubber,num_dependents_deps.dev:0 +github.com/rahularyan/commit, github.com/rahulbansal16/react-insta-stories, github.com/rahulbats/material2animation,num_dependents_deps.dev:0 github.com/rahulbats/multi-input,num_dependents_deps.dev:0 @@ -959246,6 +976462,7 @@ github.com/rahulgul8/sodiumEditor,num_dependents_deps.dev:0 github.com/rahulgupta-dev/react-data-modal,num_dependents_deps.dev:0 github.com/rahulhaque/dev-identify-python, github.com/rahulhaque/sslwireless-sms-wrapper-python, +github.com/rahulinux/gh-check-action, github.com/rahuljograna/ionic-360-viewer,num_dependents_deps.dev:0 github.com/rahulkadukar/d3js-react-charts,num_dependents_deps.dev:0 github.com/rahulkadukar/react-charts-d3,num_dependents_deps.dev:0 @@ -959268,6 +976485,7 @@ github.com/rahullakhaney/typedjsrails,num_dependents_deps.dev:0 github.com/rahullohakare20/npm-test-package-rlohakare,num_dependents_deps.dev:0 github.com/rahulmadaan/url-encoder,num_dependents_deps.dev:0 github.com/rahulmadhavan/chirp-python, +github.com/rahulmalewadi/flyway-custom-action, github.com/rahulmeghlan/redux-store,num_dependents_deps.dev:0 github.com/rahulmohan82/sampleflamonlib,num_dependents_deps.dev:0 github.com/rahulmysore23/get-prime,num_dependents_deps.dev:0 @@ -959302,6 +976520,7 @@ github.com/rahulrd/jsonipy, github.com/rahulreghunath/simple-map,num_dependents_deps.dev:0 github.com/rahulreghunath/vue-suggestion-list,num_dependents_deps.dev:0 github.com/rahulrk9/calcapp-rk9,num_dependents_deps.dev:0 +github.com/rahulrkr08/gh-aws-deploy, github.com/rahulrrixe/parinx, github.com/rahuls24/udacityDownload, github.com/rahulsahay19/generator-angular-material-crud#readme, @@ -959322,6 +976541,7 @@ github.com/rahulsinghai/logback-kafka-appender,num_dependents_deps.dev:0 github.com/rahulsmehta/turnstile,num_dependents_deps.dev:0 github.com/rahulsom/fhir-protobuf,num_dependents_deps.dev:0 github.com/rahulsom/genealogy,num_dependents_deps.dev:0 +github.com/rahulsom/gradle-up, github.com/rahulsom/grooves,num_dependents_deps.dev:102 github.com/rahulsom/hubot-spanish-inquisition, github.com/rahulsom/ihe-iti,num_dependents_deps.dev:0 @@ -959646,6 +976866,7 @@ github.com/rainbow-design/rain.css,num_dependents_deps.dev:0 github.com/rainbow-design/rainbow-common, github.com/rainbow-design/rainbow-init,num_dependents_deps.dev:0 github.com/rainbow-design/rainbow-utils, +github.com/rainbow-duck-games/unity-test-publisher, github.com/rainbow-gif/tianchi,num_dependents_deps.dev:0 github.com/rainbow-me/eip-1559-fee-suggestions,num_dependents_deps.dev:0 github.com/rainbow-me/rainbow,criticality_score:0.554910 @@ -959772,6 +976993,7 @@ github.com/rainforestapp/auth,num_dependents_deps.dev:0 github.com/rainforestapp/circlemator,num_dependents_deps.dev:0 github.com/rainforestapp/destimator, github.com/rainforestapp/eslint-config-rainforest,num_dependents_deps.dev:0 +github.com/rainforestapp/github-action, github.com/rainforestapp/pronto-commentator,num_dependents_deps.dev:0 github.com/rainforestapp/queue_classic_plus,num_dependents_deps.dev:0 github.com/rainforestapp/rainforest-cli,num_dependents_deps.dev:0 @@ -959809,6 +977031,7 @@ github.com/rainist/galley-recipes,num_dependents_deps.dev:0 github.com/rainjay/pagination,num_dependents_deps.dev:0 github.com/rainjoe/seqlock,num_dependents_deps.dev:0 github.com/rainjs/rainjs,num_dependents_deps.dev:0 +github.com/rainlabs-eu/ghaction-cmake-quality, github.com/rainlabs-eu/git-relevant-history, github.com/rainlake/homebridge-platform-lightify,num_dependents_deps.dev:0 github.com/rainlake/homebridge-platform-myq,num_dependents_deps.dev:0 @@ -959939,6 +977162,7 @@ github.com/raiseandfall/slugify-files, github.com/raisebook/postcss-modules-resolve-path,num_dependents_deps.dev:10 github.com/raisebook/relay-testing-utils,num_dependents_deps.dev:0 github.com/raisebook/valedictorian,num_dependents_deps.dev:0 +github.com/raisedadead/action-docr-cleanup, github.com/raisedadead/alfred-tor,num_dependents_deps.dev:0 github.com/raisedadead/cv,num_dependents_deps.dev:0 github.com/raisedadead/fcv,num_dependents_deps.dev:0 @@ -959979,6 +977203,9 @@ github.com/raissov/spa-optimization-code,num_dependents_deps.dev:0 github.com/raistlic/raistlic-lib-commons-core,num_dependents_deps.dev:0 github.com/raisulru/drf-http-response, github.com/raisulru/flask-http-response, +github.com/raisultan/maria, +github.com/raisultan/pr-commenter, +github.com/raisultan/ycr-push, github.com/raitalharehman/behna,num_dependents_deps.dev:0 github.com/raitamarindo/go-submodule-test,num_dependents_deps.dev:0 github.com/raitonbl/versioner,num_dependents_deps.dev:0 @@ -960005,7 +977232,9 @@ github.com/raix/meteor-ci-package-release,num_dependents_deps.dev:0 github.com/raix/npm-meteor-check,num_dependents_deps.dev:0 github.com/raix/push,criticality_score:0.448440 github.com/raix/semantic-release-meteor,num_dependents_deps.dev:0 +github.com/raiyansarker/cloudflare-dns-export, github.com/raiyanyahya/freshenv, +github.com/raiyanyahya/screenshot, github.com/raiym/instagram-java-scraper,num_dependents_deps.dev:0 github.com/raiymbek1/final,num_dependents_deps.dev:0 github.com/raiymbek1/hw2_signer_raiymbek,num_dependents_deps.dev:0 @@ -960026,6 +977255,7 @@ github.com/raja/go-rest-api,num_dependents_deps.dev:0 github.com/raja09569/fullstack_development, github.com/raja1003/react-native-custom-keyboard,num_dependents_deps.dev:0 github.com/raja571/empty-text,num_dependents_deps.dev:0 +github.com/rajaSahil/gh-action, github.com/rajab-murod/clickme, github.com/rajab-murod/paymeuz, github.com/rajab-murod/playmobile, @@ -960201,7 +977431,9 @@ github.com/rajatguptarg/zeus-log-parser, github.com/rajathagasthya/cuckoopy, github.com/rajathavalam/express-mvc-generator,num_dependents_deps.dev:0 github.com/rajathavalam/hours-text,num_dependents_deps.dev:0 +github.com/rajatjindal/configurator, github.com/rajatjindal/gh-action,num_dependents_deps.dev:0 +github.com/rajatjindal/krew-plugin-release, github.com/rajatjindal/krew-release-bot,num_dependents_deps.dev:0 github.com/rajatjindal/kubectl-modify-secret,num_dependents_deps.dev:0 github.com/rajatjindal/kubectl-whoami,num_dependents_deps.dev:0 @@ -960213,6 +977445,7 @@ github.com/rajatk69/sortarray,num_dependents_deps.dev:0 github.com/rajatk69/zonetime,num_dependents_deps.dev:0 github.com/rajatkantinandi/tribute,num_dependents_deps.dev:0 github.com/rajatkantinandi/useSwipe,num_dependents_deps.dev:0 +github.com/rajatkulkarni95/upload-r2-github-action, github.com/rajatkumar/cloudwatchlogger,num_dependents_deps.dev:0 github.com/rajatkumar/eslint-plugin-restify-use-next, github.com/rajatkumar/harperdb,num_dependents_deps.dev:0 @@ -960269,6 +977502,7 @@ github.com/rajbandi/wsdlstubgen,num_dependents_deps.dev:0 github.com/rajbhadra/materialize-tabs,num_dependents_deps.dev:0 github.com/rajbharath/sensitive-words,num_dependents_deps.dev:0 github.com/rajbhutoria/homework-csci046, +github.com/rajbos/actions-testing, github.com/rajcannon/fizzbuzz,num_dependents_deps.dev:0 github.com/rajch/contacts,num_dependents_deps.dev:0 github.com/rajch/fizzbuzz,num_dependents_deps.dev:0 @@ -960399,6 +977633,7 @@ github.com/rajgoel/seminar,num_dependents_deps.dev:0 github.com/rajguru827/autocomplete-angular-lib,num_dependents_deps.dev:0 github.com/rajho/measure-converter,num_dependents_deps.dev:0 github.com/rajibchandrakarmaker/react-nicon,num_dependents_deps.dev:0 +github.com/rajibdpi/directory-listing-for-github-page, github.com/rajibmitra/daily-leetcode,num_dependents_deps.dev:0 github.com/rajido/biojs-vis-hpafeature, github.com/rajido/biojs2,num_dependents_deps.dev:0 @@ -960444,6 +977679,7 @@ github.com/rajivnarayana/nativescript-facebook-account-kit,num_dependents_deps.d github.com/rajivnarayana/nativescript-listview-header,num_dependents_deps.dev:0 github.com/rajivnarayana/nativescript-sectioned-list-view,num_dependents_deps.dev:0 github.com/rajivnarayana/nativescript-toolbar,num_dependents_deps.dev:0 +github.com/rajivnayanc/resume-creator-action, github.com/rajivprakashr/banking-lib,num_dependents_deps.dev:0 github.com/rajivramv/adaptor,num_dependents_deps.dev:0 github.com/rajivsarvepalli/SimpleHierarchy, @@ -960488,6 +977724,9 @@ github.com/rajmohanghantasala/shadowimage,num_dependents_deps.dev:0 github.com/rajmohanpdy/npm-publish-test,num_dependents_deps.dev:0 github.com/rajmohanram/golearn,num_dependents_deps.dev:0 github.com/rajnathani/restree,num_dependents_deps.dev:0 +github.com/rajnavakotiikea/pact-command-execution, +github.com/rajnavakotiikea/pact-create-environment, +github.com/rajnavakotiikea/publish-pacts, github.com/rajneeshjoshi4/rj-test-project,num_dependents_deps.dev:0 github.com/rajneeshraghav/react-native-google-fit,num_dependents_deps.dev:0 github.com/rajneeshraghav/resumable-file-uploads,num_dependents_deps.dev:0 @@ -960543,7 +977782,11 @@ github.com/rajveermalviya/pubsub-broker,num_dependents_deps.dev:0 github.com/rajvijen/SwanLab,num_dependents_deps.dev:0 github.com/rajvin-cn/oneNeuron_pypi, github.com/rajyan/isucon11-qualify,num_dependents_deps.dev:0 +github.com/rajyan/preview-pages, github.com/rajyavardhanb/endecrypt, +github.com/rajyraman/powerapps-checker, +github.com/rajyraman/powerapps-deploy-solution, +github.com/rajyraman/powerapps-solution-extract, github.com/rajyvan/Android-EasyTransformPager,num_dependents_deps.dev:0 github.com/rajyvan/Android-TrackingRingWidget,num_dependents_deps.dev:0 github.com/rajzik/az-pipelines-cli,num_dependents_deps.dev:0 @@ -960577,6 +977820,7 @@ github.com/rakaly/eu4save,num_dependents_deps.dev:0 github.com/rakaly/hoi4save,num_dependents_deps.dev:0 github.com/rakaly/imperator-save,num_dependents_deps.dev:0 github.com/rakaly/jomini,num_dependents_deps.dev:9 +github.com/rakam-io/dbt-action, github.com/rakam-io/monaco-jsonnet,num_dependents_deps.dev:0 github.com/rakamoviz/esproto,num_dependents_deps.dev:0 github.com/rakamoviz/kincirair,num_dependents_deps.dev:0 @@ -960684,6 +977928,7 @@ github.com/rakhramohit/Ionic-Android-File-Explorer,num_dependents_deps.dev:0 github.com/raki123/aspmc, github.com/raki77/censorify,num_dependents_deps.dev:0 github.com/rakia/mat-edit-table,num_dependents_deps.dev:0 +github.com/rakib4kbd/python-build, github.com/rakibhasansabbir/error-parser,num_dependents_deps.dev:0 github.com/rakibsaki/gohello,num_dependents_deps.dev:0 github.com/rakibtg/SleekDB,criticality_score:0.334220 @@ -960702,6 +977947,7 @@ github.com/rakk7/vue-bootstrap-toasts,num_dependents_deps.dev:0 github.com/rakkasjs/rakkasjs,num_dependents_deps.dev:22 github.com/raklaptudirm/better_read, github.com/raklaptudirm/brainfuck,num_dependents_deps.dev:0 +github.com/rakles/matrix-lock, github.com/rakmaster/vue-cmi,num_dependents_deps.dev:0 github.com/rakneo/antd-etable,num_dependents_deps.dev:0 github.com/rakneo/frappe-client, @@ -960853,6 +978099,7 @@ github.com/ralcant/SHARE, github.com/ralch/magic,num_dependents_deps.dev:0 github.com/ralcorta/here-autocomplete,num_dependents_deps.dev:0 github.com/ralcorta/nestjs-slugify,num_dependents_deps.dev:0 +github.com/raldozamora/blue-action, github.com/raldridge11/XSteamPython, github.com/raleesound/web-pivot-table-compat,num_dependents_deps.dev:0 github.com/ralego75/swagger-ui-http,num_dependents_deps.dev:0 @@ -960867,6 +978114,8 @@ github.com/ralemy/node-red-contrib-icreate-upnp,num_dependents_deps.dev:0 github.com/ralemy/node-red-contrib-itemsense,num_dependents_deps.dev:0 github.com/ralent/swampsat2, github.com/ralesi/ranger.el,criticality_score:0.322150 +github.com/ralexander-phi/license_approval, +github.com/ralexander-phi/marp-action, github.com/ralexander-phi/python-str-dict-to-json, github.com/ralexander-phi/semaphore_win_ctypes, github.com/ralexandr/react-yandex-metrika,num_dependents_deps.dev:0 @@ -961185,8 +978434,10 @@ github.com/ramananda-kairi/PyApns2-py3, github.com/ramananda-kairi/django-simple-currencies-py3, github.com/ramanandapanda/fabric-sdk-kvs-redis,num_dependents_deps.dev:0 github.com/ramanandapanda/fabric-sdk-kvs-vault, +github.com/ramanathan23/NYCCoverageValidator, github.com/ramanathanlab/mdlearn, github.com/ramandeep-singh-1983/ngx-powerbi,num_dependents_deps.dev:0 +github.com/ramansah/aws-codebuild-run-build, github.com/ramansah/xmllib, github.com/ramansrsta/goworkspace,num_dependents_deps.dev:0 github.com/ramantehlan/JTLog,num_dependents_deps.dev:0 @@ -961230,6 +978481,7 @@ github.com/rambay/platzom,num_dependents_deps.dev:0 github.com/rambeau88/IRCDjs-six,num_dependents_deps.dev:0 github.com/rambethina/articles,num_dependents_deps.dev:0 github.com/rambethina/es6,num_dependents_deps.dev:0 +github.com/ramble-inc/embarcadero, github.com/rambler-digital-solutions/actix-web-validator,num_dependents_deps.dev:0 github.com/rambler-digital-solutions/aioriak, github.com/rambler-digital-solutions/airflow-declarative, @@ -961388,6 +978640,7 @@ github.com/ramimoshe/koa-route-validator,num_dependents_deps.dev:0 github.com/ramimoshe/queue-router,num_dependents_deps.dev:0 github.com/ramimoshe/sqs-router,num_dependents_deps.dev:0 github.com/ramin-ahmadi/first-try-test-package,num_dependents_deps.dev:0 +github.com/ramin/verify-referenced-issue-exists, github.com/ramin0/chatbot,num_dependents_deps.dev:0 github.com/ramin0x53/telegram_alertbot,num_dependents_deps.dev:0 github.com/raminch/geekbrain_go1,num_dependents_deps.dev:0 @@ -961614,6 +978867,8 @@ github.com/ramonornela/configuration,num_dependents_deps.dev:0 github.com/ramonornela/http,num_dependents_deps.dev:0 github.com/ramonornela/http-plugins-ionic,num_dependents_deps.dev:0 github.com/ramonornela/url-resolver,num_dependents_deps.dev:0 +github.com/ramonpaolo/action-upload-s3, +github.com/ramonpaolo/bump-version, github.com/ramonpaulalvarez/csv_to_quiz,num_dependents_deps.dev:0 github.com/ramonpds/micejs,num_dependents_deps.dev:0 github.com/ramonpin/mredu, @@ -961627,6 +978882,8 @@ github.com/ramonsaraiva/pubg-python, github.com/ramonsaraiva/timy, github.com/ramonsaraiva/wherethedjeck, github.com/ramonski/underpy, +github.com/ramonsnir/gh-action-pr-details, +github.com/ramonsnir/gh-action-pr-title, github.com/ramonus/nmapdd,num_dependents_deps.dev:0 github.com/ramonvermeulen/react-native-inbeacon,num_dependents_deps.dev:0 github.com/ramonvictor/body-scroll-freezer,num_dependents_deps.dev:0 @@ -961640,6 +978897,7 @@ github.com/ramoona/banks-db,"criticality_score:0.350120,num_dependents_deps.dev: github.com/ramoona/postcss-banks-db,num_dependents_deps.dev:0 github.com/ramoonstudio/vue-splitjs,num_dependents_deps.dev:0 github.com/ramorio/nholiday-jp,num_dependents_deps.dev:0 +github.com/ramory-l/docker-stack-deploy, github.com/ramosbugs/oauth2-rs,"criticality_score:0.425020,num_dependents_deps.dev:12" github.com/ramosbugs/openidconnect-rs,num_dependents_deps.dev:2 github.com/ramosbugs/opentelemetry-honeycomb-rs,num_dependents_deps.dev:0 @@ -961675,6 +978933,7 @@ github.com/ramrod-project/database-brain, github.com/ramrodo/tech-assessment-loan-startup,num_dependents_deps.dev:0 github.com/ramroll/sweet,num_dependents_deps.dev:0 github.com/rams3s/mdbookshelf,num_dependents_deps.dev:0 +github.com/ramsalt/wodby-deploy-action, github.com/ramsaylanier/dnd-dm-graphql-schema,num_dependents_deps.dev:0 github.com/ramsaylanier/module-docs, github.com/ramsaylanier/wordexpress-schema,num_dependents_deps.dev:0 @@ -961692,6 +978951,12 @@ github.com/ramsesgarate/starwars-name,num_dependents_deps.dev:0 github.com/ramseskamanda/explore-blockchain,num_dependents_deps.dev:0 github.com/ramseskamanda/workon,num_dependents_deps.dev:0 github.com/ramsey/collection,criticality_score:0.471820 +github.com/ramsey/composer-install, +github.com/ramsey/conventional-commits, +github.com/ramsey/devtools, +github.com/ramsey/devtools-lib, +github.com/ramsey/http-range, +github.com/ramsey/pygments, github.com/ramsey/uuid,criticality_score:0.612780 github.com/ramsey/uuid-doctrine,criticality_score:0.412260 github.com/ramseydsilva/googleplacesapi,num_dependents_deps.dev:0 @@ -961830,6 +979095,7 @@ github.com/ramybenaroya/ember-cli-lightbox,num_dependents_deps.dev:0 github.com/ramybenaroya/ember-cli-log-observers-and-computed,num_dependents_deps.dev:0 github.com/ramybenaroya/ember-index,num_dependents_deps.dev:0 github.com/ramybenaroya/ember-patch-config,num_dependents_deps.dev:0 +github.com/ramybenaroya/slack-pr-notification-action, github.com/ramyothman/ng4-gridstack,num_dependents_deps.dev:0 github.com/ramyothman/ngx-grid-stack,num_dependents_deps.dev:0 github.com/ramyres110/fullcycle-maratona30-2020,num_dependents_deps.dev:0 @@ -961863,6 +979129,7 @@ github.com/ran3d/neighborhood-wrtc, github.com/ran3d/spray-wrtc, github.com/ran3d/tman-wrtc,num_dependents_deps.dev:6 github.com/ran3d/unicast-definition, +github.com/ran570/auth0Login, github.com/ranaAlkha-infotrack/test-package-1,num_dependents_deps.dev:0 github.com/ranaaditya/groovy2kts,num_dependents_deps.dev:0 github.com/ranaaditya/tbcd,num_dependents_deps.dev:0 @@ -962136,6 +979403,7 @@ github.com/randlabs/wallet-myalgo-js,num_dependents_deps.dev:0 github.com/randlabs/web-fetch,num_dependents_deps.dev:0 github.com/randlet/dvh, github.com/randm2001/gadaRemoteLogger,num_dependents_deps.dev:0 +github.com/randmeister/github-action-algorand-contract, github.com/rando-rs/rando.rs,num_dependents_deps.dev:0 github.com/randograms/schema-to-generator,num_dependents_deps.dev:0 github.com/randoll127/lu-proxy-loader,num_dependents_deps.dev:0 @@ -962187,6 +979455,7 @@ github.com/randomPoison/amethyst-editor-sync,num_dependents_deps.dev:0 github.com/randomPoison/type-uuid,num_dependents_deps.dev:9 github.com/randomairborne/ferriswheel, github.com/randomairborne/primetools, +github.com/randomairborne/r2-release, github.com/randombit/botan,criticality_score:0.672520 github.com/randombit/botan-rs,num_dependents_deps.dev:3 github.com/randombit/wycheproof-rs,num_dependents_deps.dev:0 @@ -962358,6 +979627,8 @@ github.com/raneio/startpoint,num_dependents_deps.dev:0 github.com/raneio/startpoint-sass, github.com/raneksi/tinysong-coffee,num_dependents_deps.dev:0 github.com/ranelpadon/thonny-onedark, +github.com/ranemihir/pull-inspector, +github.com/ranemihir/template-validator, github.com/raner/loginject,num_dependents_deps.dev:0 github.com/raner/projo,num_dependents_deps.dev:4 github.com/ranga543/yelp-fusion-android,num_dependents_deps.dev:0 @@ -962584,6 +979855,7 @@ github.com/ranpariyachetan/simplequeue,num_dependents_deps.dev:0 github.com/ranphi/phibatis,num_dependents_deps.dev:0 github.com/ransanjeev/react-date-input,num_dependents_deps.dev:0 github.com/ransbachm/hello-npm,num_dependents_deps.dev:0 +github.com/ransbymich/ticket-check-action, github.com/ransdepm/go-grpc-test,num_dependents_deps.dev:0 github.com/ransdoank/marketplace-dna,num_dependents_deps.dev:0 github.com/ransford/sllurp, @@ -962750,6 +980022,9 @@ github.com/rapando/rcurl, github.com/rapatao/spark-spring,num_dependents_deps.dev:0 github.com/rapatao/vertx-eventbus-proxyhelper-java,num_dependents_deps.dev:0 github.com/rapatao/vertx-java-helper,num_dependents_deps.dev:0 +github.com/rapdev-io/sn-devops-change-update, +github.com/rapdev-io/sn-devops-notification, +github.com/rapdev-io/sn-devops-package, github.com/rapdus/chalice, github.com/rapee/feathers-blob,num_dependents_deps.dev:0 github.com/rapelt/hapkido-auth-lib, @@ -962764,6 +980039,7 @@ github.com/raphaa/django-social-poster, github.com/raphaabreu/parser,num_dependents_deps.dev:0 github.com/raphaabreu/precision-math,num_dependents_deps.dev:0 github.com/raphabarreto/golang-tutorial,num_dependents_deps.dev:0 +github.com/raphabot/amaas-action, github.com/raphabot/conformity-template-scanner-pipeline,num_dependents_deps.dev:0 github.com/raphadeluca/gatsby-themes,num_dependents_deps.dev:0 github.com/raphael-group/netNMF-sc, @@ -962771,6 +980047,7 @@ github.com/raphael-group/paste, github.com/raphael-interinfo/node-magicsoftware,num_dependents_deps.dev:0 github.com/raphael-jorge/tablab,num_dependents_deps.dev:0 github.com/raphael-leger/constants-set, +github.com/raphael-papazikas/bump-k8s-image-tag, github.com/raphael-trzpit/covid-analytics,num_dependents_deps.dev:0 github.com/raphael-volt/generator-ts-cli-app,num_dependents_deps.dev:0 github.com/raphael-volt/my-ng2-cli-tools,num_dependents_deps.dev:0 @@ -962808,6 +980085,7 @@ github.com/raphaelbsr/cra-template-mio,num_dependents_deps.dev:0 github.com/raphaelbsr/mio-cli-rjs,num_dependents_deps.dev:0 github.com/raphaelbsr/mio-library-autenticacao,num_dependents_deps.dev:0 github.com/raphaelbsr/mio-library-ui,num_dependents_deps.dev:0 +github.com/raphaelbussa/swiftlint-action, github.com/raphaelcm/newrelic_mongo,num_dependents_deps.dev:0 github.com/raphaelcockx/gcpath,num_dependents_deps.dev:0 github.com/raphaelcockx/tax-brackets,num_dependents_deps.dev:0 @@ -963025,6 +980303,8 @@ github.com/rapid7/github-status-checker, github.com/rapid7/go-get-proxied,num_dependents_deps.dev:2 github.com/rapid7/icon-integrations-plugin-spec, github.com/rapid7/icon-integrations-validators, +github.com/rapid7/insightappsec-scan-github-actions, +github.com/rapid7/insightcloudsec-actions, github.com/rapid7/komand-plugin-sdk-python, github.com/rapid7/krip,num_dependents_deps.dev:0 github.com/rapid7/metasploit-framework,"criticality_score:0.882400,num_dependents_deps.dev:0" @@ -963068,6 +980348,7 @@ github.com/rapidevelop/xml2json,num_dependents_deps.dev:0 github.com/rapidfacture/url2pdf3,num_dependents_deps.dev:0 github.com/rapidfixer/gitbook-plugin-mermaid-v8,num_dependents_deps.dev:0 github.com/rapidftr/RapidFTR,criticality_score:0.386610 +github.com/rapidfuzz/rapidfuzz, github.com/rapidhere/grunt-simple-commonjs, github.com/rapidia/pm2-logrotate-legacy-nodejs,num_dependents_deps.dev:0 github.com/rapidimages/storage-api,num_dependents_deps.dev:0 @@ -963083,6 +980364,8 @@ github.com/rapidloop/pq,num_dependents_deps.dev:1 github.com/rapidminer-labs/python-go, github.com/rapidminer/python-rapidminer, github.com/rapido-labs/firebase-admin-go,num_dependents_deps.dev:0 +github.com/rapido-labs/firebasectl-action, +github.com/rapido-labs/yamllint-github-action, github.com/rapidoid/rapidoid,"criticality_score:0.381700,num_dependents_deps.dev:28282" github.com/rapidojs/rapido,num_dependents_deps.dev:0 github.com/rapidomize/rapidomize-ruby-sdk,num_dependents_deps.dev:0 @@ -963112,6 +980395,7 @@ github.com/rapidsockets/python, github.com/rapidstack/RESTEasy, github.com/rapidstack/RESTEasyCLI, github.com/rapidstack/docify, +github.com/rapidstack/pr-label-semver-action, github.com/rapidw/mqtt-client,num_dependents_deps.dev:0 github.com/rapidw/mqtt-codec,num_dependents_deps.dev:0 github.com/rapidw/ssh-deployer,num_dependents_deps.dev:0 @@ -963187,6 +980471,7 @@ github.com/raptium/mlflow-oss-store, github.com/raptor-test/raptor,num_dependents_deps.dev:0 github.com/raptorbox/raptor-nodered-nodes,num_dependents_deps.dev:0 github.com/raptorbox/raptorjs,num_dependents_deps.dev:0 +github.com/raptorhq/cloudflared-tunnel-kubectl, github.com/raptorjs/atom-language-marko,num_dependents_deps.dev:0 github.com/raptorjs/express-raptor,num_dependents_deps.dev:0 github.com/raptorjs/gulp-optimizer, @@ -963334,6 +980619,7 @@ github.com/raravel/kaling.js,num_dependents_deps.dev:0 github.com/raravel/neuro-umd,num_dependents_deps.dev:0 github.com/raravi/login-server-express,num_dependents_deps.dev:0 github.com/rarbore/go-sprite,num_dependents_deps.dev:0 +github.com/rarchk/action-helm-tools, github.com/rardoz/eslint-plugin-jquery-selectors,num_dependents_deps.dev:0 github.com/rardoz/hella-bomb-react-context,num_dependents_deps.dev:0 github.com/rardoz/hive-ui,num_dependents_deps.dev:0 @@ -963379,6 +980665,7 @@ github.com/rars/ngx-diff,num_dependents_deps.dev:0 github.com/rars/ngx-jwt,num_dependents_deps.dev:0 github.com/rart/rollup-plugin-commit,num_dependents_deps.dev:0 github.com/rart/rollup-plugin-replace-imports-with-vars,num_dependents_deps.dev:0 +github.com/rartino/history-keeper-website, github.com/rarylson/geochart-geojson,num_dependents_deps.dev:0 github.com/rarylson/update-conf.py, github.com/raryosu/Rin,num_dependents_deps.dev:0 @@ -963398,6 +980685,7 @@ github.com/rasata/http-server-basicauth-ssl,num_dependents_deps.dev:0 github.com/rasatmaja/boxius,num_dependents_deps.dev:0 github.com/rasatmaja/mura,num_dependents_deps.dev:0 github.com/rasavant-ms/NodeRed-Azure-SQL, +github.com/rasben/action-platformsh-deploy-status, github.com/rasbt/biopandas,criticality_score:0.320090 github.com/rasbt/deep-learning-book, github.com/rasbt/deeplearning-models,criticality_score:0.327560 @@ -963435,6 +980723,7 @@ github.com/rascarlito/cache-control,num_dependents_deps.dev:232 github.com/rascarlito/is-gitlab-down,num_dependents_deps.dev:0 github.com/raschidJFR/ionic-header-parallax, github.com/raschka-research-group/coral_pytorch, +github.com/raschmitt/wait-for-healthy-container, github.com/raschudesny/otus_go_homeworks,num_dependents_deps.dev:0 github.com/rasco/dragg,num_dependents_deps.dev:0 github.com/rasco/headroom.js,num_dependents_deps.dev:0 @@ -963572,6 +980861,7 @@ github.com/rasmunk/nbi-projects-site, github.com/rasmunk/notebook_parameterizer, github.com/rasmunk/projects-site, github.com/rasmunk/sshspawner, +github.com/rasmus-saks/release-a-changelog-action, github.com/rasmus-toftdahl-olesen/dog, github.com/rasmus25/debayer-rpi,Google github.com/rasmusWU/Rainbow-text-,num_dependents_deps.dev:0 @@ -963754,6 +981044,7 @@ github.com/rastikerdar/tanha-font,num_dependents_deps.dev:0 github.com/rastikerdar/vazir-code-font,num_dependents_deps.dev:0 github.com/rastikerdar/vazir-font,"criticality_score:0.466600,num_dependents_deps.dev:0" github.com/rastoarpit/PayTunesSDK,num_dependents_deps.dev:0 +github.com/rastogiji/gcp-packer-github-actions, github.com/rastographics/cap-music-controls,num_dependents_deps.dev:0 github.com/rastopyr/ember-cli-bricks,num_dependents_deps.dev:0 github.com/rastrear/acml,num_dependents_deps.dev:0 @@ -963762,6 +981053,7 @@ github.com/rastw/codebase,num_dependents_deps.dev:0 github.com/rasukarusan/gif-caption,num_dependents_deps.dev:0 github.com/rasulalizadeh/gokit-api,num_dependents_deps.dev:0 github.com/rasulalizadeh/gokit-db,num_dependents_deps.dev:0 +github.com/rasunkar/publishtestresults-action, github.com/rasviitanen/Allotize, github.com/rasviitanen/Hadal,num_dependents_deps.dev:0 github.com/rasviitanen/create-allotize-app, @@ -963803,6 +981095,8 @@ github.com/ratchetio/ratchetio-gem,num_dependents_deps.dev:0 github.com/ratchetphp/Pawl,criticality_score:0.325690 github.com/ratchetphp/Ratchet,criticality_score:0.411790 github.com/rate-engineering/promisify-smart-contract-func,num_dependents_deps.dev:0 +github.com/rate-my-pr/clarity, +github.com/rate-my-pr/difficulty, github.com/rate-technology/meio,num_dependents_deps.dev:0 github.com/rate-technology/metacrate,num_dependents_deps.dev:13 github.com/rate-technology/rillrate-js,num_dependents_deps.dev:0 @@ -963833,6 +981127,7 @@ github.com/rathishvbr/xml-to-json,num_dependents_deps.dev:0 github.com/rathodudayy/nano-helper,num_dependents_deps.dev:0 github.com/rathor-ashwin/ashwin-react,num_dependents_deps.dev:0 github.com/rathoremanpreet/go-bookstore,num_dependents_deps.dev:0 +github.com/rathorpraveen/OTSAction, github.com/rathxxx/mdl-currency-usd,num_dependents_deps.dev:0 github.com/rathxxx/mdl-date-textfield,num_dependents_deps.dev:0 github.com/rathxxx/mdl-phone-textfield,num_dependents_deps.dev:0 @@ -963848,6 +981143,8 @@ github.com/rational-studio/monotypo,num_dependents_deps.dev:0 github.com/rationalappdev/react-native-bottom-drawer,num_dependents_deps.dev:0 github.com/rationalappdev/react-native-horizontal-calendar,num_dependents_deps.dev:0 github.com/rationaljs/future,num_dependents_deps.dev:4 +github.com/rationally-app/notion-burndown, +github.com/rationally-app/notion-update-page, github.com/ratismal/EmojiMegatip,num_dependents_deps.dev:0 github.com/ratismal/better-string-concat,num_dependents_deps.dev:0 github.com/ratismal/brainfuck-node,num_dependents_deps.dev:0 @@ -964060,6 +981357,8 @@ github.com/raul23/SimulRPi, github.com/raul23/py-ebooktools, github.com/raul782/lang-manager,num_dependents_deps.dev:0 github.com/raulanatol/Leaflet.LayerGroup.Placement,num_dependents_deps.dev:0 +github.com/raulanatol/aws-s3-docker-action, +github.com/raulanatol/aws-s3-js-action, github.com/raulanatol/axios-etag-cache,num_dependents_deps.dev:0 github.com/raulanatol/expo-version-cli,num_dependents_deps.dev:0 github.com/raulanatol/github-actions-releaser,num_dependents_deps.dev:0 @@ -964070,6 +981369,7 @@ github.com/raulanatol/only-merge-from-action,num_dependents_deps.dev:0 github.com/raulanatol/project.config.utils,num_dependents_deps.dev:0 github.com/raulanatol/react-inline-loaders,num_dependents_deps.dev:0 github.com/raulanatol/rnd-cli,num_dependents_deps.dev:0 +github.com/raulanatol/slack-message-github-action, github.com/raulanatol/template-action-nodejs,num_dependents_deps.dev:0 github.com/raulanatol/template-ts-package,num_dependents_deps.dev:0 github.com/raulanatol/toggl-lib,num_dependents_deps.dev:0 @@ -964160,6 +981460,7 @@ github.com/raulmelo/tailwind-storybook,num_dependents_deps.dev:0 github.com/raulmelo/wiz-tree,num_dependents_deps.dev:0 github.com/raulmur/ORB_SLAM2,Google github.com/rauloojs/number-formatter,num_dependents_deps.dev:0 +github.com/raulpadilladelgado/check-dependencies-in-pr-action, github.com/raulpesilva/re-state,num_dependents_deps.dev:0 github.com/raulpesilva/react-global-state,num_dependents_deps.dev:0 github.com/raulpesilva/swf,num_dependents_deps.dev:0 @@ -964174,6 +981475,7 @@ github.com/raulrene/react-utils-input,num_dependents_deps.dev:0 github.com/raulriera/TextFieldEffects,criticality_score:0.316460 github.com/raulriera/probot-minimum-reviews,num_dependents_deps.dev:0 github.com/raulriera/react-native-window-tint-color,num_dependents_deps.dev:0 +github.com/raulriera/triage-action, github.com/raulromanp/ngSticky,num_dependents_deps.dev:0 github.com/raulromanp/pdf-to-raw,num_dependents_deps.dev:0 github.com/rauls/nodejs-pack,num_dependents_deps.dev:0 @@ -964258,6 +981560,10 @@ github.com/ravelo-systematic-solutions/ravelo,num_dependents_deps.dev:0 github.com/ravelsoft/node-jinjs, github.com/ravelsoft/rbuild,num_dependents_deps.dev:0 github.com/ravelsoft/validatr,num_dependents_deps.dev:0 +github.com/raven-actions/bot-details, +github.com/raven-actions/environment-variables, +github.com/raven-actions/get-repos, +github.com/raven-actions/publish-and-tag, github.com/raven-community/kaaawww-crawler,num_dependents_deps.dev:0 github.com/raven-community/node-ravencoin-txdecoder,num_dependents_deps.dev:2 github.com/raven-community/pushdata-ravencoin,num_dependents_deps.dev:0 @@ -964371,7 +981677,10 @@ github.com/raver119/hel,num_dependents_deps.dev:0 github.com/raver119/krane,num_dependents_deps.dev:0 github.com/raver119/proxy,num_dependents_deps.dev:0 github.com/raver119/rest,num_dependents_deps.dev:0 +github.com/raver119/selective-upload-action, +github.com/raver119/set-npm-token-action, github.com/raver119/statika,num_dependents_deps.dev:0 +github.com/raver119/statika-upload-action, github.com/raver119/xcavator,num_dependents_deps.dev:0 github.com/ravernkoh/dmenual,num_dependents_deps.dev:0 github.com/ravernkoh/qwuery,num_dependents_deps.dev:0 @@ -964506,6 +981815,9 @@ github.com/ravinaenu/bollywood-names,num_dependents_deps.dev:0 github.com/ravinaenu/files-download-zip, github.com/ravinaparab1/ang-drag-drop,num_dependents_deps.dev:0 github.com/ravinaparab1/ang-loader,num_dependents_deps.dev:0 +github.com/ravinayag/aws-eks-actions, +github.com/ravinayag/gomodsumchecker, +github.com/ravinderjangra/android-ndk-toolchain-setup, github.com/ravinderreddyf5/terraform-provider-bigip,num_dependents_deps.dev:0 github.com/ravindragit/webhook,num_dependents_deps.dev:0 github.com/ravindranrahul/datasheets.js,num_dependents_deps.dev:0 @@ -964531,6 +981843,7 @@ github.com/raviqqe/argtyp, github.com/raviqqe/bdwgc-alloc,num_dependents_deps.dev:0 github.com/raviqqe/bstie,num_dependents_deps.dev:0 github.com/raviqqe/char2image.py, +github.com/raviqqe/enable-homebrew, github.com/raviqqe/gargparse.py, github.com/raviqqe/gherkin2markdown,num_dependents_deps.dev:0 github.com/raviqqe/listpad, @@ -964547,6 +981860,7 @@ github.com/raviqqe/tensorflow-qnd, github.com/raviqqe/tensorflow-qndex, github.com/raviraa/ffmpegui,num_dependents_deps.dev:0 github.com/raviraa/htmltoebook,num_dependents_deps.dev:0 +github.com/raviraipuria/convert-to-draft, github.com/raviraj-srib/go-project,num_dependents_deps.dev:0 github.com/ravirdv/http-responder,num_dependents_deps.dev:0 github.com/raviroshan/Object-getValue,num_dependents_deps.dev:0 @@ -964589,11 +981903,14 @@ github.com/ravivamsi/zipcodeinfo,num_dependents_deps.dev:0 github.com/ravivaradarajan/nodejsexamples,num_dependents_deps.dev:0 github.com/ravmda/go-mc,num_dependents_deps.dev:0 github.com/ravndaa/minibucket,num_dependents_deps.dev:0 +github.com/ravnhq/fastlane-android-action, +github.com/ravnhq/fastlane-ios-action, github.com/ravnhq/mimicql, github.com/ravnhq/react-native-midnight,num_dependents_deps.dev:0 github.com/ravorona/eslint-config,num_dependents_deps.dev:0 github.com/ravorona/eslint-config-typescript,num_dependents_deps.dev:0 github.com/ravorona/stylelint-config,num_dependents_deps.dev:0 +github.com/ravsamhq/notify-slack-action, github.com/ravshan01/cra-template-web-site,num_dependents_deps.dev:0 github.com/ravshan01/is-empty,num_dependents_deps.dev:0 github.com/ravshan01/redux-root-reducer,num_dependents_deps.dev:0 @@ -964802,6 +982119,7 @@ github.com/ray5273/painterro,num_dependents_deps.dev:0 github.com/rayabhagis/paper-multi-select,num_dependents_deps.dev:0 github.com/rayallen20/arithmetic,num_dependents_deps.dev:0 github.com/rayancastro/iris-cms-npm,num_dependents_deps.dev:0 +github.com/rayandrew/with-opencv-action, github.com/rayandrews/centarius,num_dependents_deps.dev:0 github.com/rayandrews/react-native-web-modal,num_dependents_deps.dev:0 github.com/rayandrews/skuy,num_dependents_deps.dev:0 @@ -964844,6 +982162,7 @@ github.com/rayattack/supersql, github.com/raybarrera/storefront-go,num_dependents_deps.dev:0 github.com/raybellis/java-random,num_dependents_deps.dev:0 github.com/raybellwaves/cfanalytics, +github.com/raybellwaves/nbdime-git-diff, github.com/raybittu/ezgo,num_dependents_deps.dev:0 github.com/rayblick/Virtual-Ecologist, github.com/rayboot/ALiImageSDK,num_dependents_deps.dev:0 @@ -964898,6 +982217,7 @@ github.com/raydac/netbeans-mmd-plugin,num_dependents_deps.dev:0 github.com/raydac/uber-pom,num_dependents_deps.dev:0 github.com/raydcast/socxy-go,num_dependents_deps.dev:0 github.com/raydedon/publish-to-npm,num_dependents_deps.dev:0 +github.com/raydelv/publish-lambda-layer-actions, github.com/raydeth/gocourse,num_dependents_deps.dev:0 github.com/raydium-io/raydium-ui, github.com/raydium-io/token-list,num_dependents_deps.dev:0 @@ -964917,6 +982237,7 @@ github.com/rayepps/dynofunc, github.com/rayepps/inforce,num_dependents_deps.dev:0 github.com/rayepps/inforcer,num_dependents_deps.dev:0 github.com/rayepps/oapispec, +github.com/rayepps/require-semver-bump, github.com/rayer/twlotterycrawler,num_dependents_deps.dev:0 github.com/rayfal/repo,num_dependents_deps.dev:0 github.com/rayfinney/gopherscloak,num_dependents_deps.dev:0 @@ -964946,6 +982267,7 @@ github.com/rayhomie/osser,num_dependents_deps.dev:0 github.com/rayhomie/rayhomieui,num_dependents_deps.dev:0 github.com/rayhomie/reactcli,num_dependents_deps.dev:0 github.com/rayhomie/rncli,num_dependents_deps.dev:0 +github.com/rayhu/save-secret-as-file, github.com/rayhunter/analytics-core,num_dependents_deps.dev:0 github.com/rayhzh/pttpost-parser, github.com/rayintee/afire-auto-deploy,num_dependents_deps.dev:0 @@ -964990,6 +982312,7 @@ github.com/raylu/levelorm, github.com/raylu/pigwig, github.com/raylua2566/sentry-afone-integrations, github.com/rayluo/brip, +github.com/rayluo/github-pages-overwriter, github.com/rayluo/python-project-template, github.com/rayluxembourg/estruct,num_dependents_deps.dev:0 github.com/raylway/shopackify,num_dependents_deps.dev:0 @@ -965100,6 +982423,8 @@ github.com/raynigon/dnsblock-update, github.com/raynigon/frame-light,num_dependents_deps.dev:0 github.com/raynigon/lennybot, github.com/raynigon/minimal-http,num_dependents_deps.dev:0 +github.com/raynigon/release-documentation, +github.com/raynigon/sendgrid-mail-action, github.com/raynigon/unit-api,num_dependents_deps.dev:0 github.com/raynine/goinaction,num_dependents_deps.dev:0 github.com/raynirmalya/algojs,num_dependents_deps.dev:0 @@ -965222,6 +982547,7 @@ github.com/rayshih/terminal.big5.js,num_dependents_deps.dev:0 github.com/rayshih/vodka-coke,num_dependents_deps.dev:0 github.com/rayshih/webdriverjs,num_dependents_deps.dev:0 github.com/raysk4ever/raysk-vali,num_dependents_deps.dev:0 +github.com/raysk4ever/vercel-api-handler, github.com/rayslava/qif_generator,num_dependents_deps.dev:0 github.com/rayspiess/wp-api-helper,num_dependents_deps.dev:0 github.com/raysrashmi/ruby-stackoverflow,num_dependents_deps.dev:0 @@ -965378,6 +982704,7 @@ github.com/razonyang/go-auth0-web-app,num_dependents_deps.dev:0 github.com/razonyang/gopkgs,num_dependents_deps.dev:0 github.com/razonyang/hellogo,num_dependents_deps.dev:0 github.com/razonyang/httprouter,num_dependents_deps.dev:0 +github.com/razonyang/hugo-theme-bootstrap-algolia-action, github.com/razor-1/cldr,num_dependents_deps.dev:25 github.com/razor-1/localizer,num_dependents_deps.dev:0 github.com/razor-1/sqlboiler,num_dependents_deps.dev:0 @@ -965393,6 +982720,7 @@ github.com/razor-x/kit,num_dependents_deps.dev:0 github.com/razor-x/postcss-import-sync,num_dependents_deps.dev:6 github.com/razor1895/react-native-gifted-html,num_dependents_deps.dev:0 github.com/razor1895/react-native-refreshable-flatlist,num_dependents_deps.dev:0 +github.com/razor54/build-and-tag-action, github.com/razorRun/node-red-contrib-smartlifeair, github.com/razorRun/react-native-floating-labels-smartlife,num_dependents_deps.dev:0 github.com/razorRun/react-native-material-dropdown-smartlife,num_dependents_deps.dev:0 @@ -965483,6 +982811,7 @@ github.com/razzium/react-native-image-slider-show,num_dependents_deps.dev:0 github.com/razzium/react_native_service_provider_oauth2,num_dependents_deps.dev:0 github.com/razzius/goldmine,num_dependents_deps.dev:0 github.com/razzkumar/pr-automation,num_dependents_deps.dev:0 +github.com/razzkumar/pr-automation-with-s3, github.com/razzlepazzle/rj-devcamp-js-footer, github.com/razztyfication/laravel-vue-datatable,num_dependents_deps.dev:0 github.com/razztyfication/vue-drawing-canvas,num_dependents_deps.dev:0 @@ -965510,6 +982839,7 @@ github.com/rbague/stimulus-check-all,num_dependents_deps.dev:0 github.com/rbaier/python-urltools, github.com/rbajek/rasa-java-sdk,num_dependents_deps.dev:0 github.com/rbakker/HBP-morphology-viewer,num_dependents_deps.dev:0 +github.com/rbalashevich/cloudil-cr-login, github.com/rbalet/ckeditor5,num_dependents_deps.dev:0 github.com/rbalet/posthtml-vscode-sorting-attrs,num_dependents_deps.dev:0 github.com/rbalicki2/angular-library-boilerplate,num_dependents_deps.dev:0 @@ -965546,6 +982876,7 @@ github.com/rbans14/test,num_dependents_deps.dev:0 github.com/rbao/simple-jas,num_dependents_deps.dev:0 github.com/rbar2/quickbooks,num_dependents_deps.dev:0 github.com/rbarbazz/monorepo-with-lerna,num_dependents_deps.dev:0 +github.com/rbarbazz/on-approve, github.com/rbarbey/grunt-missing-i18n,num_dependents_deps.dev:0 github.com/rbardaji/inwater, github.com/rbardaji/mooda, @@ -965606,6 +982937,7 @@ github.com/rbaskam/stockprophesy,num_dependents_deps.dev:0 github.com/rbastic/dyndao,num_dependents_deps.dev:0 github.com/rbastic/go-schemaless,num_dependents_deps.dev:0 github.com/rbatis/rbatis,"criticality_score:0.392440,num_dependents_deps.dev:0" +github.com/rbatty19/compare-npm-versions-ci, github.com/rbauction/sfdclib, github.com/rbaumi/angular2-select,num_dependents_deps.dev:0 github.com/rbaumier/convert-value,num_dependents_deps.dev:0 @@ -965682,9 +983014,11 @@ github.com/rbgirshick/yacs, github.com/rbgoncalves/react-native-stuff-swiper,num_dependents_deps.dev:0 github.com/rbgrouleff/coolie,num_dependents_deps.dev:0 github.com/rbgrouleff/sisyphus,num_dependents_deps.dev:0 +github.com/rbhadti94/apache-jmeter-action, github.com/rbhitchcock/actiondebug,num_dependents_deps.dev:0 github.com/rbi/trading4j,num_dependents_deps.dev:0 github.com/rbialek/rack-tidy,num_dependents_deps.dev:0 +github.com/rbialon/flake8-annotations, github.com/rbicker/go-rsql,num_dependents_deps.dev:0 github.com/rbicker/node-jsonnet,num_dependents_deps.dev:0 github.com/rbideau/react-lottie,num_dependents_deps.dev:0 @@ -965698,6 +983032,7 @@ github.com/rbiggs/truckjs-npm,num_dependents_deps.dev:0 github.com/rbii-incorporated/Flute,num_dependents_deps.dev:0 github.com/rbilash/vue-another-sidebar,num_dependents_deps.dev:0 github.com/rbilash/vue-another-spinner,num_dependents_deps.dev:0 +github.com/rbilgil/turbo-changed-packages, github.com/rbin/sendgrid-go,num_dependents_deps.dev:0 github.com/rbiruel/js-toolbelt,num_dependents_deps.dev:0 github.com/rbishop/gobe,num_dependents_deps.dev:0 @@ -965855,6 +983190,7 @@ github.com/rbrowndev/censorify,num_dependents_deps.dev:0 github.com/rbrtbrnschn/taxiJs,num_dependents_deps.dev:0 github.com/rbrtjhs/process,num_dependents_deps.dev:0 github.com/rbrtl/gobtcminer,num_dependents_deps.dev:0 +github.com/rbrto/eks-action, github.com/rbrtsmith/BlockSlider,num_dependents_deps.dev:0 github.com/rbrtsmith/nebula-components,num_dependents_deps.dev:0 github.com/rbrtsmith/nebula-css,num_dependents_deps.dev:0 @@ -966046,6 +983382,7 @@ github.com/rca/dc, github.com/rca/declarative-iptables, github.com/rca/oauthclient, github.com/rcabdia/CWT, +github.com/rcablao-kodexa/branch-auto-versioning, github.com/rcabralc/accord,num_dependents_deps.dev:0 github.com/rcaceiro/NodeYoloJS,num_dependents_deps.dev:0 github.com/rcaceiro/node-yolo, @@ -966069,6 +983406,7 @@ github.com/rcapraro/go-fsm,num_dependents_deps.dev:0 github.com/rcapraro/kalidation,num_dependents_deps.dev:0 github.com/rcar1115/grunt-asset-cachekiller,num_dependents_deps.dev:0 github.com/rcarauta/seguranca,num_dependents_deps.dev:0 +github.com/rcarcasses/python-wheels-manylinux-build, github.com/rcarcasses/vue-cytoscape,num_dependents_deps.dev:0 github.com/rcarcasses/vue-dots,num_dependents_deps.dev:0 github.com/rcares/quoted, @@ -966080,6 +983418,8 @@ github.com/rcarlosdasilva/weixin-spring-boot-starter,num_dependents_deps.dev:0 github.com/rcarluque/tisec,num_dependents_deps.dev:0 github.com/rcarmo/pngcanvas, github.com/rcarmo/raspi-cluster,num_dependents_deps.dev:0 +github.com/rcarpio-hbo/aqua-reportgen-action, +github.com/rcarpio-hbo/debian-lts-versions, github.com/rcarraretto/zn-resource,num_dependents_deps.dev:0 github.com/rcarraretto/zn-resource-fake,num_dependents_deps.dev:0 github.com/rcarraretto/zn-router,num_dependents_deps.dev:0 @@ -966264,6 +983604,7 @@ github.com/rcjsuen/dockerfile-language-service,num_dependents_deps.dev:12 github.com/rcjsuen/dockerfile-utils,num_dependents_deps.dev:32 github.com/rckclmbr/git-crucible, github.com/rckclmbr/pyportify, +github.com/rcknr/connection-string-action, github.com/rckprtr/cdk-as,num_dependents_deps.dev:0 github.com/rckryd/eause,num_dependents_deps.dev:0 github.com/rckryd/mugu,num_dependents_deps.dev:0 @@ -966325,6 +983666,7 @@ github.com/rclsilver/django-lemonldap, github.com/rcluan/ai_utils, github.com/rcluan/nativescript-material-showcaseview,num_dependents_deps.dev:0 github.com/rcm7/hellavader,num_dependents_deps.dev:0 +github.com/rcmachado/changelog-action, github.com/rcmachado/gpolyline, github.com/rcmachado/mako-pipeline, github.com/rcmachado/mongofixtures, @@ -966335,7 +983677,9 @@ github.com/rcmarc/depinj, github.com/rcmdnk/cocoro, github.com/rcmdnk/gcpm, github.com/rcmdnk/homebrew-file,criticality_score:0.452050 +github.com/rcmdnk/octopress-action, github.com/rcmdnk/pypi-files, +github.com/rcmdnk/python-action, github.com/rcmdnk/tsd2gspread, github.com/rcmdnk/vim_ahk,criticality_score:0.354090 github.com/rcmedeiros/eslint-config,num_dependents_deps.dev:0 @@ -966349,6 +983693,7 @@ github.com/rcmonitor/logrus_influxdb2,num_dependents_deps.dev:0 github.com/rcmonitor/scrape-visitor,num_dependents_deps.dev:0 github.com/rcmonitor/sskv_parser,num_dependents_deps.dev:0 github.com/rcmonitor/threshold-scheduler,num_dependents_deps.dev:0 +github.com/rcmtcristian/gitemote, github.com/rcnbapp/RCNB.js, github.com/rcode5/mojo_magick,num_dependents_deps.dev:0 github.com/rcodesmith/react-redux-auth0-plugin,num_dependents_deps.dev:0 @@ -966430,6 +983775,7 @@ github.com/rcowham/go-libp4dlog,num_dependents_deps.dev:0 github.com/rcowham/p4prometheus,num_dependents_deps.dev:0 github.com/rcowin/htmlthumbnail,num_dependents_deps.dev:0 github.com/rcowin/react-dulce,num_dependents_deps.dev:0 +github.com/rcowsill/workflow-scan-action, github.com/rcox771/gspeak, github.com/rcoy-v/eslint-config-rcoy-v,num_dependents_deps.dev:0 github.com/rcpch/digital-growth-charts, @@ -966647,11 +983993,14 @@ github.com/rdamodharan/node-gelfr,num_dependents_deps.dev:0 github.com/rdandnayak/ngx-split-progressbar, github.com/rdandnayak/rdnayak-test,num_dependents_deps.dev:0 github.com/rdaniels6813/cli-manager,num_dependents_deps.dev:0 +github.com/rdaniels6813/semantic-release-alpine, github.com/rdarida/base-scripts,num_dependents_deps.dev:0 github.com/rdarida/bootstrap-storybook,num_dependents_deps.dev:0 github.com/rdarida/create-air-app,num_dependents_deps.dev:0 +github.com/rdarida/digitalocean-app-deployment-action, github.com/rdarida/lerna-templater, github.com/rdarida/pantry-cloud,num_dependents_deps.dev:0 +github.com/rdarida/simple-github-pages-deploy-action, github.com/rdarida/windows-zip,num_dependents_deps.dev:0 github.com/rdash/rdash-ui,num_dependents_deps.dev:0 github.com/rdata-systems/rdata-auth-server,num_dependents_deps.dev:0 @@ -966939,6 +984288,7 @@ github.com/rdicroce/jsfexporter,num_dependents_deps.dev:0 github.com/rdidyk/falcon-swagger-ui, github.com/rdidyk/knot-injector, github.com/rdiego26/klefki,num_dependents_deps.dev:0 +github.com/rdietrick/did-files-change, github.com/rdiff-backup/rdiff-backup,criticality_score:0.559000 github.com/rdig/es6g-init,num_dependents_deps.dev:0 github.com/rdig/wpa-cli,num_dependents_deps.dev:0 @@ -966960,6 +984310,7 @@ github.com/rdimascio/tab-notify,num_dependents_deps.dev:0 github.com/rdimascio/to-class,num_dependents_deps.dev:0 github.com/rdimo/pip-install-bitches, github.com/rdimo/pylibcheck, +github.com/rdinardi-bw/use-private-docker-action, github.com/rdingwall/decimal,num_dependents_deps.dev:0 github.com/rdio/jsfmt,num_dependents_deps.dev:8 github.com/rdireen/nearside, @@ -966995,6 +984346,7 @@ github.com/rdlabo/ionic-sub,num_dependents_deps.dev:0 github.com/rdlabo/ionic-sub-cli,num_dependents_deps.dev:0 github.com/rdlabo/prettier-angular-toolkit,num_dependents_deps.dev:0 github.com/rdlagemann/stackhelp.js,num_dependents_deps.dev:0 +github.com/rdlf0/comment-released-prs-action, github.com/rdlh/getyourguide,num_dependents_deps.dev:0 github.com/rdlowrey/auryn,criticality_score:0.419110 github.com/rdm-hang10/basskit,num_dependents_deps.dev:0 @@ -967052,6 +984404,8 @@ github.com/rdodson41/ruby-jwt-base,num_dependents_deps.dev:0 github.com/rdodson41/ruby-jwt-ext,num_dependents_deps.dev:0 github.com/rdogm13/test-js-module,num_dependents_deps.dev:0 github.com/rdohms/github-label-syncer,num_dependents_deps.dev:0 +github.com/rdohms/textlint-action, +github.com/rdok/publish-gh-page-action, github.com/rdolgushin/mydumper, github.com/rdolgushin/payeer,num_dependents_deps.dev:0 github.com/rdolgushin/pgdumper, @@ -967071,7 +984425,9 @@ github.com/rdorado/news-inspector, github.com/rdossantos/ricoptcha,num_dependents_deps.dev:0 github.com/rdotnet/rdotnet,criticality_score:0.405510 github.com/rdoume/addr_detector, +github.com/rdp-duty-machine/rdp-duty-machine-action, github.com/rdp-jr/crafter, +github.com/rdp-studio/ssh2actions, github.com/rdp/ffmpeg-windows-build-helpers,criticality_score:0.517510 github.com/rdp/os, github.com/rdp/screen-capture-recorder-to-video-windows-free,criticality_score:0.391810 @@ -967118,6 +984474,7 @@ github.com/rdunk/sanity-plugin-table,num_dependents_deps.dev:0 github.com/rdunk/sanity-schema-builder, github.com/rdunk/vue-cli-plugin-ssr,num_dependents_deps.dev:0 github.com/rdunk/vue-packer,num_dependents_deps.dev:0 +github.com/rdunnington/setup-wabt-action, github.com/rduplain/flask-mail, github.com/rduplain/jeni-python, github.com/rdurgarao/time-availability-js,num_dependents_deps.dev:0 @@ -967137,8 +984494,12 @@ github.com/rdy/jasmine-async-suite,num_dependents_deps.dev:0 github.com/rdy/jasmine-json-stream-reporter,num_dependents_deps.dev:22 github.com/rdy/jasmine-profile-reporter,num_dependents_deps.dev:22 github.com/rdydns/hydrogenmade,num_dependents_deps.dev:0 +github.com/rdzcn/grab-them-comments, github.com/rdzhaafar/malbook, github.com/rdzhuraev/golanglearning,num_dependents_deps.dev:0 +github.com/re-actors/alls-green, +github.com/re-actors/bindep, +github.com/re-actors/checkout-python-sdist, github.com/re-base/app-routes,num_dependents_deps.dev:0 github.com/re-base/http-core,num_dependents_deps.dev:0 github.com/re-base/sockets,num_dependents_deps.dev:0 @@ -967561,6 +984922,7 @@ github.com/react-native-china/react-native-pattern-lock,num_dependents_deps.dev: github.com/react-native-china/react-native-rem-stylesheet,num_dependents_deps.dev:0 github.com/react-native-china/react-native-webkit-webview,num_dependents_deps.dev:0 github.com/react-native-clipboard/clipboard,num_dependents_deps.dev:0 +github.com/react-native-community/actions-apply-version-label, github.com/react-native-community/async-storage,num_dependents_deps.dev:0 github.com/react-native-community/bob,num_dependents_deps.dev:12 github.com/react-native-community/cli,"criticality_score:0.665720,num_dependents_deps.dev:17608" @@ -968043,6 +985405,7 @@ github.com/reactify/react-player-controls,num_dependents_deps.dev:0 github.com/reactiness/react-alerts-lite,num_dependents_deps.dev:0 github.com/reactingjs/rp-toggle,num_dependents_deps.dev:0 github.com/reaction-contrib/reaction-file-collections-sa-s3, +github.com/reaction-link/actions-lint-pull-request, github.com/reactionable/reactionable,num_dependents_deps.dev:0 github.com/reactionable/reactionable-cli,num_dependents_deps.dev:0 github.com/reactioncommerce/admin-core,num_dependents_deps.dev:0 @@ -968453,6 +985816,7 @@ github.com/readmeio/oas-reducer,num_dependents_deps.dev:0 github.com/readmeio/openapi-workshop,num_dependents_deps.dev:0 github.com/readmeio/rdme,num_dependents_deps.dev:0 github.com/readmeio/react-jsonschema-form,num_dependents_deps.dev:0 +github.com/readmeio/scheduled-milestones, github.com/readmeio/swagger-inline,num_dependents_deps.dev:42 github.com/readmeio/syntax-highlighter, github.com/readmyid/mine-craft,num_dependents_deps.dev:0 @@ -968655,6 +986019,7 @@ github.com/realKfiros/react-native-focus-list, github.com/realRoyHsu/React-UI,num_dependents_deps.dev:0 github.com/realRoyHsu/Vue-UI,num_dependents_deps.dev:0 github.com/realRoyHsu/rui,num_dependents_deps.dev:0 +github.com/realSaddy/library-of-babel, github.com/realSaeedHassani/mpkg-school-info, github.com/realSaeedHassani/school_info, github.com/realShaunoneill/realshaunoneill,num_dependents_deps.dev:0 @@ -968665,6 +986030,7 @@ github.com/realXIV/hearthstone-sql,num_dependents_deps.dev:0 github.com/reala10n/instarex, github.com/realaaronwu/bookkeeper-operator,num_dependents_deps.dev:0 github.com/realaaronwu/pravega-operator,num_dependents_deps.dev:0 +github.com/realabbas/Github-Actions-React-Native, github.com/realadvisor/rgm,num_dependents_deps.dev:0 github.com/realairgrow/luxand, github.com/realalexbarge/react-notifia,num_dependents_deps.dev:0 @@ -968674,6 +986040,7 @@ github.com/realalexbarge/react-tracking-hotjar,num_dependents_deps.dev:0 github.com/realalexbarge/react-tracking-outbrain,num_dependents_deps.dev:0 github.com/realalexbarge/react-tracking-snapchat,num_dependents_deps.dev:0 github.com/realalexbarge/react-tracking-taboola,num_dependents_deps.dev:0 +github.com/realalknowles/verve-deploy, github.com/realamirali/2do, github.com/realappie/ngx-translate-merge,num_dependents_deps.dev:0 github.com/realasking/essential-pathway, @@ -968940,6 +986307,7 @@ github.com/realiarthur/react-fieldset,num_dependents_deps.dev:0 github.com/realid-global/cloud-api-sdk,num_dependents_deps.dev:0 github.com/realid-global/realid-sdk-verificationh5,num_dependents_deps.dev:0 github.com/realies/thelounge-theme-amoled,num_dependents_deps.dev:0 +github.com/realify/capistrano-deploy, github.com/realign-hub/cli,num_dependents_deps.dev:0 github.com/realiii/fudgeo, github.com/realiii/pygeopkg, @@ -969088,6 +986456,7 @@ github.com/reallymello/nightwatch-mssql-assertions,num_dependents_deps.dev:0 github.com/reallymello/nightwatch-saucelabs-endsauce,num_dependents_deps.dev:0 github.com/reallyreally/google-analytics,num_dependents_deps.dev:0 github.com/reallyreally/reallySecure,num_dependents_deps.dev:0 +github.com/reallyreallyreal/codenamize-action, github.com/reallyrehan/pushnotif, github.com/realm-js/realm-js, github.com/realm-js/realm-riot,num_dependents_deps.dev:0 @@ -969492,6 +986861,9 @@ github.com/rebeccahughes/react-native-device-info,num_dependents_deps.dev:44 github.com/rebeccamcgirney/lodown,num_dependents_deps.dev:0 github.com/rebeccapeltz/colorbydegree,num_dependents_deps.dev:0 github.com/rebeccapeltz/map-list,num_dependents_deps.dev:0 +github.com/rebeccastevens/is-immutable-type, +github.com/rebeccastevens/transpose-array, +github.com/rebeccastevens/uom-types, github.com/rebeccayangrj/go,num_dependents_deps.dev:0 github.com/rebelchris/astro-static-tweet,num_dependents_deps.dev:0 github.com/rebelcoding/vuepress-theme-rebel-ads,num_dependents_deps.dev:0 @@ -969646,6 +987018,7 @@ github.com/recap/dataflow,num_dependents_deps.dev:0 github.com/recap/persistent-cache-object,num_dependents_deps.dev:0 github.com/recaptchaToken/perhap-chat, github.com/recare/fhir,num_dependents_deps.dev:0 +github.com/recarnot/terraform-github-workspace-setup-action, github.com/recarreira/saving-zelda, github.com/recart/nacelle-nuxt-module,num_dependents_deps.dev:0 github.com/recast-hep/recast-api, @@ -969699,6 +987072,7 @@ github.com/recifejs/recife,num_dependents_deps.dev:0 github.com/recifejs/recife-express,num_dependents_deps.dev:0 github.com/recifejs/recife-fastify,num_dependents_deps.dev:0 github.com/recifejs/recife-koa,num_dependents_deps.dev:0 +github.com/recih/template-render-action, github.com/reciideo-lms/lecturer,num_dependents_deps.dev:0 github.com/recipegrace/BBC,num_dependents_deps.dev:0 github.com/recipeshelf/redis-phrase-complete,num_dependents_deps.dev:0 @@ -969771,6 +987145,7 @@ github.com/reckscott/hd-keychain,num_dependents_deps.dev:0 github.com/recksjs/recks,num_dependents_deps.dev:0 github.com/recksjs/redogs,num_dependents_deps.dev:0 github.com/reclaim-ai/react-intercom-hook,num_dependents_deps.dev:0 +github.com/reclaim-the-stack/rubocop-action, github.com/reclamador/document_clipper, github.com/reclamador/ngx-components,num_dependents_deps.dev:0 github.com/reclamador/pylleida, @@ -969843,6 +987218,7 @@ github.com/reconbot/graphql-query-complexity-apollo-plugin,num_dependents_deps.d github.com/reconbot/grunt-rollup-babel,num_dependents_deps.dev:0 github.com/reconbot/hackerchat,num_dependents_deps.dev:0 github.com/reconbot/hackerchat-network,num_dependents_deps.dev:0 +github.com/reconbot/honeymarker, github.com/reconbot/icu-ucme,num_dependents_deps.dev:0 github.com/reconbot/incremental-release-tags,num_dependents_deps.dev:0 github.com/reconbot/inside-out-async,num_dependents_deps.dev:0 @@ -969887,6 +987263,7 @@ github.com/reconquest/orgalorg,num_dependents_deps.dev:0 github.com/reconquest/runcmd,num_dependents_deps.dev:0 github.com/reconquest/sign-go,num_dependents_deps.dev:0 github.com/reconquest/snake-runner,num_dependents_deps.dev:0 +github.com/recontentapp/setup-action, github.com/recordedfuture/rfapi-python, github.com/recordot/apilayer-client,num_dependents_deps.dev:0 github.com/recordot/http-core,num_dependents_deps.dev:0 @@ -969949,6 +987326,7 @@ github.com/recrut-as/JavaScript-API,num_dependents_deps.dev:0 github.com/recrut-as/easy_mq, github.com/recrut-as/recrut-js,num_dependents_deps.dev:0 github.com/recski/tuw-nlp, +github.com/rectalogic/notify-irc, github.com/rectangletangle/dunderscore, github.com/rectius/easy-oracle, github.com/rectorphp/rector,criticality_score:0.674310 @@ -970001,7 +987379,14 @@ github.com/red-coracle/flask-argon2, github.com/red-coracle/pyintacct, github.com/red-crown/mongo-querybuilder, github.com/red-dead-tools/red-dead-tools, +github.com/red-gate/create-spawn-data-container, +github.com/red-gate/create-spawn-data-image, +github.com/red-gate/delete-spawn-data-container, +github.com/red-gate/delete-spawn-data-image, +github.com/red-gate/flyway-hub-migration-test, github.com/red-gate/highlight.js,num_dependents_deps.dev:0 +github.com/red-gate/reset-spawn-data-container, +github.com/red-gate/save-spawn-data-container, github.com/red-gold/causality,num_dependents_deps.dev:0 github.com/red-gold/react-social-network,criticality_score:0.328340 github.com/red-gold/telar-core,num_dependents_deps.dev:0 @@ -970027,6 +987412,9 @@ github.com/red-perfume/red-perfume,num_dependents_deps.dev:0 github.com/red-quanto/cordova-digits,num_dependents_deps.dev:0 github.com/red-rocket-dev/pyplwnxml, github.com/red-s-bean/fis-yii,num_dependents_deps.dev:0 +github.com/red-shirts/action-mix-sbom, +github.com/red-shirts/reviewdog-action-credo, +github.com/red-shirts/reviewdog-action-elvis, github.com/red-sight/SwiftCodes,num_dependents_deps.dev:0 github.com/red-sight/password-regexp,num_dependents_deps.dev:0 github.com/red-soft-ru/vue-mapp,num_dependents_deps.dev:0 @@ -970305,6 +987693,7 @@ github.com/reddit/node-api-client, github.com/reddit/node-build,num_dependents_deps.dev:0 github.com/reddit/node-private,num_dependents_deps.dev:0 github.com/redditjs/redditjs,num_dependents_deps.dev:0 +github.com/redditnfl/publish-reddit-stylesheet-action, github.com/reddiyo-os/wahoo_cloud_client,num_dependents_deps.dev:0 github.com/reddo-kun/golang_summer2021,num_dependents_deps.dev:0 github.com/reddo-kun/laboratorioprogrammazione,num_dependents_deps.dev:0 @@ -970334,6 +987723,8 @@ github.com/redecentralize/alternative-internet,criticality_score:0.427530 github.com/redeclipse/base,criticality_score:0.400830 github.com/redeeps/red-redux-class,num_dependents_deps.dev:0 github.com/redefine-code/node-serializer,num_dependents_deps.dev:0 +github.com/redefinedev/redefine-action, +github.com/redefinedev/setup-protoc, github.com/redefinelabltd/redadmin,num_dependents_deps.dev:0 github.com/redeian/unicorn-names,num_dependents_deps.dev:0 github.com/redelmann/Aleatory.js,num_dependents_deps.dev:0 @@ -970441,8 +987832,21 @@ github.com/redgush/rsflycatcher,num_dependents_deps.dev:5 github.com/redhair/afito-ui,num_dependents_deps.dev:0 github.com/redhair/srcset-generator,num_dependents_deps.dev:0 github.com/redhairshanks/golang,num_dependents_deps.dev:0 +github.com/redhat-actions/buildah-build, +github.com/redhat-actions/chart-verifier, github.com/redhat-actions/common,num_dependents_deps.dev:0 +github.com/redhat-actions/crda, +github.com/redhat-actions/kn-service-manager, +github.com/redhat-actions/oc-installer, +github.com/redhat-actions/oc-login, +github.com/redhat-actions/oc-new-app, +github.com/redhat-actions/openshift-actions-runner-installer, +github.com/redhat-actions/openshift-tools-installer, github.com/redhat-actions/planning,num_dependents_deps.dev:0 +github.com/redhat-actions/podman-login, +github.com/redhat-actions/push-to-registry, +github.com/redhat-actions/s2i-build, +github.com/redhat-actions/try-in-web-ide, github.com/redhat-aqe/container-analytics,num_dependents_deps.dev:0 github.com/redhat-aqe/kafka-logging-handler, github.com/redhat-aqe/python-lightblue, @@ -970496,6 +987900,7 @@ github.com/redhat-developer/vscode-yaml,"criticality_score:0.501810,num_dependen github.com/redhat-developer/web-terminal-operator,num_dependents_deps.dev:0 github.com/redhat-developer/yaml-ast-parser,num_dependents_deps.dev:10 github.com/redhat-developer/yaml-language-server,"criticality_score:0.544880,num_dependents_deps.dev:2" +github.com/redhat-et/time-to-merge-tool, github.com/redhat-gpe/aws-sandbox,num_dependents_deps.dev:0 github.com/redhat-gpte-devopsautomation/aws-tools,num_dependents_deps.dev:0 github.com/redhat-integration/integration-operator,num_dependents_deps.dev:0 @@ -970520,6 +987925,15 @@ github.com/redhat-performance/benchmark-runner, github.com/redhat-performance/cloud-governance, github.com/redhat-performance/scribe, github.com/redhat-performance/tuned,criticality_score:0.480650 +github.com/redhat-plumbers-in-action/advanced-commit-linter, +github.com/redhat-plumbers-in-action/advanced-issue-labeler, +github.com/redhat-plumbers-in-action/auto-merge, +github.com/redhat-plumbers-in-action/devel-freezer, +github.com/redhat-plumbers-in-action/differential-shellcheck, +github.com/redhat-plumbers-in-action/download-artifact, +github.com/redhat-plumbers-in-action/gather-pull-request-metadata, +github.com/redhat-plumbers-in-action/pull-request-validator, +github.com/redhat-plumbers-in-action/tracker-validator, github.com/redhat-rcue/rcue,num_dependents_deps.dev:0 github.com/redhat-sap/sap-commerce-operator,num_dependents_deps.dev:0 github.com/redhat-sap/sap-hana-deployment,Google @@ -970737,6 +988151,7 @@ github.com/redkite-labs/redkitecms,num_dependents_deps.dev:0 github.com/redkite1/home-hub,num_dependents_deps.dev:0 github.com/redkite1/zigbee-gw,num_dependents_deps.dev:0 github.com/redkiteio/nodebb-plugin-itu-custom-registration-fields,num_dependents_deps.dev:0 +github.com/redkubes/docusaurus-deploy-action, github.com/redkyn/assigner, github.com/redkyn/grader, github.com/redkyn/redkyn-common, @@ -970785,6 +988200,7 @@ github.com/redmoogle/jsonreader, github.com/redmoonlas/react-touch-big-calendar,num_dependents_deps.dev:0 github.com/rednafi/django-polls, github.com/rednafi/fork-purger, +github.com/rednafi/i-have-seen, github.com/rednafi/konfik, github.com/rednafi/md-url-check, github.com/rednafi/protomate, @@ -970887,6 +988303,7 @@ github.com/redox-os/termion,criticality_score:0.352340 github.com/redoxwarfare/goldieseeker, github.com/redoya/node.pay.redoya,num_dependents_deps.dev:0 github.com/redpancho/grunt-json-minification,num_dependents_deps.dev:0 +github.com/redpanda-data/github-action, github.com/redpandaathome/testlib,num_dependents_deps.dev:0 github.com/redpandalabs/popo-fsm, github.com/redpandatronicsuk/arty-charty,num_dependents_deps.dev:0 @@ -970915,6 +988332,7 @@ github.com/redpencilio/ember-lax,num_dependents_deps.dev:0 github.com/redpencilio/ember-rdfstore,num_dependents_deps.dev:0 github.com/redpencilio/forking-store,num_dependents_deps.dev:0 github.com/redperformance/red-measurement-framework, +github.com/redpesk-infra/github-setup-rp-cli-action, github.com/redpfire/usbd-webusb,num_dependents_deps.dev:0 github.com/redpill-linpro/jigsaw-munin-poller,num_dependents_deps.dev:0 github.com/redpill-linpro/jigsaw-schema,num_dependents_deps.dev:0 @@ -971261,6 +988679,7 @@ github.com/redwolf0302/node_weworkapi,num_dependents_deps.dev:0 github.com/redwood/redwood,num_dependents_deps.dev:0 github.com/redwoodfavorite/thuglife-webgl,num_dependents_deps.dev:0 github.com/redwoodjs/netlify-plugin-prisma-provider,num_dependents_deps.dev:0 +github.com/redwoodjs/project-ci-action, github.com/redwoodjs/redwood,"criticality_score:0.645400,num_dependents_deps.dev:130" github.com/redwoodjs/repeaterdev-js,num_dependents_deps.dev:0 github.com/redxeagle/pimatic-rpi433,num_dependents_deps.dev:0 @@ -971281,8 +988700,10 @@ github.com/reebalazs/grunt-collection-helper,num_dependents_deps.dev:0 github.com/reece/et, github.com/reece/pytest-optional-tests, github.com/reece/reece-namespace-declaration, +github.com/reeceatkinson/firstissue-greet, github.com/reeceaw/express-gatekeeper,num_dependents_deps.dev:0 github.com/reeceaw/koa-gatekeeper,num_dependents_deps.dev:0 +github.com/reececomo/notify-slack-deployed-jira-tickets, github.com/reecedonovan/discordgo,num_dependents_deps.dev:0 github.com/reecedonovan/grpc-todo,num_dependents_deps.dev:0 github.com/reecedonovan/uni-bot,num_dependents_deps.dev:0 @@ -971319,9 +988740,14 @@ github.com/reecerussell/monzo-plus-plus,num_dependents_deps.dev:0 github.com/reecerussell/passport,num_dependents_deps.dev:0 github.com/reecerussell/simple-di,num_dependents_deps.dev:0 github.com/reecerussell/tw-management-system,num_dependents_deps.dev:0 +github.com/reecetech/bitbucket-server-pat-generator, +github.com/reecetech/cloudconformity-cfn-scan-action, +github.com/reecetech/dispatch-annotation-action, github.com/reecetech/django_informixdb, github.com/reecetech/django_informixdb_vault, github.com/reecetech/pactman, +github.com/reecetech/transfer-action, +github.com/reecetech/version-increment, github.com/reechou/go-sqlite3,num_dependents_deps.dev:0 github.com/reechou/gomitmproxy,num_dependents_deps.dev:0 github.com/reechou/vegeta,num_dependents_deps.dev:0 @@ -971352,6 +988778,8 @@ github.com/reedia/dotfiles,num_dependents_deps.dev:0 github.com/reedia/generator-avionic,num_dependents_deps.dev:0 github.com/reedia/generator-melionic,num_dependents_deps.dev:0 github.com/reedia/skeletonic,num_dependents_deps.dev:0 +github.com/reediculous456/ms-teams-deploy-card, +github.com/reedjones/markdown-docs, github.com/reedlauber/likan,num_dependents_deps.dev:0 github.com/reedlauber/shack,num_dependents_deps.dev:0 github.com/reedleoneil/dataexchangeinator,num_dependents_deps.dev:0 @@ -972192,6 +989620,7 @@ github.com/regseb/cronnor,num_dependents_deps.dev:0 github.com/regseb/metalint,num_dependents_deps.dev:0 github.com/regseb/scronpt,num_dependents_deps.dev:0 github.com/regtracks/regtracks-js,num_dependents_deps.dev:0 +github.com/reguengos/terraform-github-workspace-setup-action, github.com/reguider/librg,num_dependents_deps.dev:0 github.com/reguity/validate-nin, github.com/regul4rj0hn/bookstore-oauth-api,num_dependents_deps.dev:0 @@ -972400,6 +989829,7 @@ github.com/rehanguha/alert, github.com/rehanguha/brisque, github.com/rehanguha/interspace, github.com/rehanhaider/pelican-algolia, +github.com/rehanhaider/pelican-to-github-pages, github.com/rehanift/engine.js,num_dependents_deps.dev:0 github.com/rehanift/factory-girl-jugglingdb,num_dependents_deps.dev:0 github.com/rehanumar/permanent-storage,num_dependents_deps.dev:0 @@ -972412,6 +989842,8 @@ github.com/rehat101/artboards-to-buffer,num_dependents_deps.dev:0 github.com/rehat101/gatsby-remark-video,num_dependents_deps.dev:0 github.com/rehat101/rc-confirm-alert, github.com/rehat101/react-alert,num_dependents_deps.dev:0 +github.com/rehborn/github-activity-svg, +github.com/rehearsal-js/action, github.com/rehearsal-open/rehearsal,num_dependents_deps.dev:0 github.com/rehhouari/alpine-router,num_dependents_deps.dev:0 github.com/rehhouari/alpine-typescript-extras, @@ -972552,6 +989984,7 @@ github.com/reidark/instagood,num_dependents_deps.dev:0 github.com/reidbhuntley/voice_robotifier, github.com/reidbradley/prospecting, github.com/reiddraper/freshlinks,num_dependents_deps.dev:0 +github.com/reiddraper/prettier-please, github.com/reidev/balsa,num_dependents_deps.dev:0 github.com/reidev/gulp-html-include,num_dependents_deps.dev:0 github.com/reidev275/LessTedious,num_dependents_deps.dev:0 @@ -972769,6 +990202,7 @@ github.com/reireias/switcher,num_dependents_deps.dev:0 github.com/reirep/mpmc,num_dependents_deps.dev:0 github.com/reis-web-components/starter-react,num_dependents_deps.dev:0 github.com/reisang/ng-zorro-antd,num_dependents_deps.dev:0 +github.com/reisdev/actions-mdbook-sitemap-generator, github.com/reisdev/react-native-elderly,num_dependents_deps.dev:0 github.com/reisender/csv2json,num_dependents_deps.dev:0 github.com/reisender/go-plugin,num_dependents_deps.dev:0 @@ -972803,11 +990237,15 @@ github.com/reisxd/unnamed-lib,num_dependents_deps.dev:0 github.com/reiterate-app/authorio,num_dependents_deps.dev:0 github.com/reiterlab/ctdna, github.com/reiterlab/rll, +github.com/reitermarkus/aspell, +github.com/reitermarkus/automerge, github.com/reitermarkus/cargo-eval,num_dependents_deps.dev:0 github.com/reitermarkus/dnsparse,num_dependents_deps.dev:0 github.com/reitermarkus/esp-idf-bindgen,num_dependents_deps.dev:0 +github.com/reitermarkus/latexmk, github.com/reitermarkus/medianheap-rs,num_dependents_deps.dev:0 github.com/reitermarkus/p9813-rs,num_dependents_deps.dev:0 +github.com/reitermarkus/rerun-workflow, github.com/reitermarkus/safehouse,num_dependents_deps.dev:0 github.com/reitermarkus/vcontrol-rs,num_dependents_deps.dev:0 github.com/reity/are, @@ -972825,6 +990263,7 @@ github.com/reity/summations-py, github.com/reity/symbolism, github.com/reity/trudge, github.com/reity/wff, +github.com/reitzig/actions-asciidoctor, github.com/reitzig/container-do,num_dependents_deps.dev:0 github.com/reitzig/texlogparser,num_dependents_deps.dev:0 github.com/reiver/go-cli,num_dependents_deps.dev:0 @@ -972850,6 +990289,7 @@ github.com/reizu-go/servemux,num_dependents_deps.dev:0 github.com/reizu-go/xrpldata,num_dependents_deps.dev:0 github.com/rej156/the-web3-platform,num_dependents_deps.dev:0 github.com/rejahrehim/gulp-hologram,num_dependents_deps.dev:0 +github.com/rejahrehim/rsync-deploy-with-proxy, github.com/rejas/ResponsiveMultiLevelMenu,num_dependents_deps.dev:0 github.com/rejas/flexboxgrid-less,num_dependents_deps.dev:0 github.com/rejas/github-card,num_dependents_deps.dev:0 @@ -973044,6 +990484,7 @@ github.com/relan/exfat,criticality_score:0.364590 github.com/relane/mirrorjs,num_dependents_deps.dev:0 github.com/relane/mirrorjs-widgets,num_dependents_deps.dev:0 github.com/related-sciences/articat, +github.com/related-sciences/gce-github-runner, github.com/related-sciences/nxontology, github.com/relateddigital/euromessage-android,num_dependents_deps.dev:0 github.com/relateid/cl-and-b-ny-2018-model,num_dependents_deps.dev:0 @@ -973075,6 +990516,8 @@ github.com/relateiq/z-index-manager,num_dependents_deps.dev:0 github.com/relatio-nlp/relatio, github.com/relationalai-oss/relationalai-sdk-go,num_dependents_deps.dev:0 github.com/relative-ci/agent,num_dependents_deps.dev:0 +github.com/relative-ci/agent-action, +github.com/relative-ci/agent-upload-artifact-action, github.com/relative-ci/bundle-stats,num_dependents_deps.dev:380 github.com/relative-ci/compare,num_dependents_deps.dev:0 github.com/relative-ci/webpack-bundle-stats,num_dependents_deps.dev:0 @@ -973189,12 +990632,18 @@ github.com/release-engineering/redhat-releng-tools,num_dependents_deps.dev:0 github.com/release-engineering/resultsdb-updater, github.com/release-engineering/ubi-config, github.com/release-engineering/ubi-population-tool, +github.com/release-engineers/action-setup-bash, +github.com/release-engineers/action-template, +github.com/release-flow/keep-a-changelog-action, github.com/release-flow/release-flow,num_dependents_deps.dev:0 github.com/release-it/bumper,num_dependents_deps.dev:0 github.com/release-it/conventional-changelog,num_dependents_deps.dev:2 github.com/release-it/create-release-it,num_dependents_deps.dev:0 github.com/release-it/keep-a-changelog,num_dependents_deps.dev:0 github.com/release-it/release-it,"criticality_score:0.631170,num_dependents_deps.dev:66" +github.com/release-kit/regex, +github.com/release-kit/semver, +github.com/release-lab/setup-whatchanged, github.com/release-notes/changelog-parser,num_dependents_deps.dev:0 github.com/release-notes/eslint-config-release-notes,num_dependents_deps.dev:0 github.com/release-notes/release-notes-cli,num_dependents_deps.dev:0 @@ -973202,6 +990651,7 @@ github.com/release-notes/release-notes-hub,num_dependents_deps.dev:0 github.com/release-notes/release-notes-node,num_dependents_deps.dev:0 github.com/release-notes/release-notes-schema,num_dependents_deps.dev:12 github.com/release-notifier/release-notifier,num_dependents_deps.dev:0 +github.com/release-please-plus/action-lint-pr-title, github.com/releaseband/go-filedb,num_dependents_deps.dev:0 github.com/releaseband/go-logger-adapters,num_dependents_deps.dev:0 github.com/releaseband/go-redis-wrapper,num_dependents_deps.dev:0 @@ -973209,6 +990659,7 @@ github.com/releaseband/go-settings,num_dependents_deps.dev:0 github.com/releaseband/grapes-libs,num_dependents_deps.dev:0 github.com/releaseband/readiness-checker,num_dependents_deps.dev:0 github.com/releaseband/wrappers,num_dependents_deps.dev:0 +github.com/releasehub-com/github-action-create-pr-parent-submodule, github.com/releasepage/reload.js,num_dependents_deps.dev:0 github.com/releasepage/version.js,num_dependents_deps.dev:0 github.com/releasium/ngx-simple-scroll, @@ -973273,8 +990724,10 @@ github.com/relf/cobyla,num_dependents_deps.dev:0 github.com/relfor/parsescape,num_dependents_deps.dev:0 github.com/relfor/xrest,num_dependents_deps.dev:0 github.com/reliablejs/reliable-master, +github.com/reliablyhq/actions, github.com/reliablyhq/cli,num_dependents_deps.dev:0 github.com/reliablyhq/http-load-generator,num_dependents_deps.dev:0 +github.com/reliablyhq/operations-action, github.com/reliadvisor/equinox_crm,num_dependents_deps.dev:0 github.com/relianz2019/relianz,num_dependents_deps.dev:0 github.com/relic-toolkit/relic,criticality_score:0.533590 @@ -973309,8 +990762,14 @@ github.com/relistar/codex.editor.wrappers,num_dependents_deps.dev:0 github.com/reliut-g/exchangerate-javascript-sdk,num_dependents_deps.dev:0 github.com/reliut-g/my-birthday-is,num_dependents_deps.dev:0 github.com/relivecc/graphhopper-api-client,num_dependents_deps.dev:0 +github.com/relizaio/reliza-add-release, github.com/relizaio/reliza-cli,num_dependents_deps.dev:0 +github.com/relizaio/reliza-get-version, +github.com/relizaio/reliza-github-action, +github.com/relizaio/reliza-helm-action, github.com/relizaio/reliza-java-client,num_dependents_deps.dev:0 +github.com/relizaio/reliza-pr-action, +github.com/relizaio/setup-reliza-cli, github.com/relizaio/versioning,num_dependents_deps.dev:0 github.com/reljod/reljod-portfolio-backend,num_dependents_deps.dev:0 github.com/rellafella/eslint-config,num_dependents_deps.dev:0 @@ -973339,9 +990798,13 @@ github.com/relm-us/svelte-audio-video,num_dependents_deps.dev:0 github.com/relmify/jest-fp-ts,num_dependents_deps.dev:0 github.com/relnod/pegomock,num_dependents_deps.dev:0 github.com/reload-kurt/grid-snap,num_dependents_deps.dev:0 +github.com/reload/action-drupal-regression, +github.com/reload/action-platformsh-cypress, +github.com/reload/action-platformsh-url, github.com/reload/daft,num_dependents_deps.dev:0 github.com/reload/dnsimple-dk-hostmaster-ds-upload,num_dependents_deps.dev:0 github.com/reload/eslint,num_dependents_deps.dev:0 +github.com/reload/github-security-jira, github.com/reload/hubot-flowdock,num_dependents_deps.dev:0 github.com/reload/node-flowdock,num_dependents_deps.dev:0 github.com/reload/reviewbot,num_dependents_deps.dev:0 @@ -973350,6 +990813,9 @@ github.com/reloadly/reloadly-sdk-golang,num_dependents_deps.dev:0 github.com/reloadly/reloadly-sdk-java,num_dependents_deps.dev:2 github.com/reloadware/reloadium, github.com/reloadware/stickybeak, +github.com/reloc8/action-choose-release-version, +github.com/reloc8/action-latest-release-version, +github.com/reloc8/action-push-local-changes, github.com/relocately/ec-key,num_dependents_deps.dev:396 github.com/relocke/base58,num_dependents_deps.dev:0 github.com/relops/goxc,num_dependents_deps.dev:0 @@ -973363,6 +990829,7 @@ github.com/reltubttam/omnilith,num_dependents_deps.dev:0 github.com/relu91/sanjs,num_dependents_deps.dev:0 github.com/relumesaros/builder-pattern-es6,num_dependents_deps.dev:0 github.com/relumesaros/confetti-bubble,num_dependents_deps.dev:0 +github.com/relusc/go-mutesting-action, github.com/relution-io/relution-cli,num_dependents_deps.dev:0 github.com/relution-io/relution-sdk,num_dependents_deps.dev:0 github.com/reluzent/eslint-config-reluzent,num_dependents_deps.dev:0 @@ -973400,6 +990867,7 @@ github.com/rema424/twitter-reproduction-backend,num_dependents_deps.dev:0 github.com/remackgeek/elements-zone-strategy,num_dependents_deps.dev:0 github.com/remackgeek/p-table-responsive-scroll,num_dependents_deps.dev:0 github.com/remacs/remacs,criticality_score:0.413250 +github.com/remagpie/gha-remove-artifact, github.com/remaintion/react-countdown-bar,num_dependents_deps.dev:0 github.com/remaintion/react-embedded-window,num_dependents_deps.dev:0 github.com/remainvoter/eu2019model, @@ -973415,6 +990883,7 @@ github.com/remark-embedder/transformer-oembed,num_dependents_deps.dev:0 github.com/remark-ninja/remark-ninja-react, github.com/remarkablelives/eslint-config-remarkable-lives,num_dependents_deps.dev:0 github.com/remarkablemark/REON,num_dependents_deps.dev:0 +github.com/remarkablemark/commitlint, github.com/remarkablemark/conventional-release-setup,num_dependents_deps.dev:0 github.com/remarkablemark/descriptive,num_dependents_deps.dev:0 github.com/remarkablemark/github-corners,num_dependents_deps.dev:0 @@ -973432,6 +990901,8 @@ github.com/remarkablemark/phonetic-alphabet-converter,num_dependents_deps.dev:0 github.com/remarkablemark/react-dom-core,num_dependents_deps.dev:974 github.com/remarkablemark/repeats,num_dependents_deps.dev:0 github.com/remarkablemark/require-default-codemod,num_dependents_deps.dev:0 +github.com/remarkablemark/setup-codeclimate, +github.com/remarkablemark/setup-htmlq, github.com/remarkablemark/snapped,num_dependents_deps.dev:0 github.com/remarkablemark/style-to-js,num_dependents_deps.dev:362 github.com/remarkablemark/style-to-object,num_dependents_deps.dev:8946 @@ -973493,6 +990964,8 @@ github.com/remarksoftware/react-kit,num_dependents_deps.dev:0 github.com/remast/remast.github.io,num_dependents_deps.dev:0 github.com/remastr/drf-typescript-generator, github.com/rematch/rematch,"criticality_score:0.582040,num_dependents_deps.dev:68" +github.com/rematocorp/open-pull-request-action, +github.com/rematocorp/trello-integration-action, github.com/remaudcorentin-dev/python-750g-recipes, github.com/remaudcorentin-dev/python-allrecipes, github.com/remaudcorentin-dev/python-cuisinelibre, @@ -973540,6 +991013,7 @@ github.com/remcohaszing/remark-mermaidjs,num_dependents_deps.dev:0 github.com/remcohaszing/remark-prettier,num_dependents_deps.dev:0 github.com/remcohaszing/xast-namespaces,num_dependents_deps.dev:0 github.com/remcokranenburg/advent-of-go-2020,num_dependents_deps.dev:0 +github.com/remcokranenburg/tic-tac-toe-action, github.com/remcolakens/simple-component-generator,num_dependents_deps.dev:0 github.com/remcoplasmeyer/adonis-lucid-uuid,num_dependents_deps.dev:0 github.com/remcoplasmeyer/adonis-multitenancy,num_dependents_deps.dev:0 @@ -973739,6 +991213,7 @@ github.com/remitly/nexmo-go,num_dependents_deps.dev:0 github.com/remix-erp-cms/remix-core,num_dependents_deps.dev:0 github.com/remix-run/history, github.com/remix-run/react-router, +github.com/remix-run/release-comment-action, github.com/remix-run/remix, github.com/remix/data-tools, github.com/remix/mapbox-gl-draw, @@ -973748,6 +991223,8 @@ github.com/remix/simple-deep-freeze,num_dependents_deps.dev:0 github.com/remix/xhr-queue,num_dependents_deps.dev:0 github.com/remixer-dec/GDriveFTP,num_dependents_deps.dev:0 github.com/remixer-dec/node-unnpk, +github.com/remixie/rc-check, +github.com/remixie/release, github.com/remixz/DSON.djs,num_dependents_deps.dev:0 github.com/remixz/canvas-to-blob,num_dependents_deps.dev:24 github.com/remixz/dogeify,num_dependents_deps.dev:0 @@ -973875,6 +991352,7 @@ github.com/remopas/templum, github.com/remorses/TODO, github.com/remorses/async-graphql, github.com/remorses/babel-plugin-replace-import-path, +github.com/remorses/bump-version, github.com/remorses/bundless,num_dependents_deps.dev:2 github.com/remorses/cloud-run-compose, github.com/remorses/cloud-run-node-sdk, @@ -973893,6 +991371,7 @@ github.com/remorses/mongoke, github.com/remorses/populate, github.com/remorses/proxy_check, github.com/remorses/prtty, +github.com/remorses/pypi, github.com/remorses/schema, github.com/remorses/setup-typescript-monorepo,num_dependents_deps.dev:0 github.com/remorses/smart-glob, @@ -974055,6 +991534,10 @@ github.com/remykarem/lets-git-it-right,num_dependents_deps.dev:0 github.com/remykarem/lets-go-and-git-it,num_dependents_deps.dev:0 github.com/remykarem/mixed-naive-bayes, github.com/remylagerweij/strip-html-tags,num_dependents_deps.dev:0 +github.com/remyleone/scw-mc-action, +github.com/remyleone/scw-rclone-action, +github.com/remyleone/scw-s3-action, +github.com/remyleone/scw-s3cmd-action, github.com/remyoucef/apify-extra,num_dependents_deps.dev:0 github.com/remyoudompheng/pacweb,num_dependents_deps.dev:0 github.com/remypar5/array-to-db,num_dependents_deps.dev:0 @@ -974076,6 +991559,8 @@ github.com/ren-kt/uranai_api,num_dependents_deps.dev:0 github.com/ren-yuan/c2.js,num_dependents_deps.dev:0 github.com/ren123t/cocktaildb,num_dependents_deps.dev:0 github.com/ren123t/whitelist_service,num_dependents_deps.dev:0 +github.com/ren130302/generate-dependency-badge, +github.com/ren130302/publish-javadoc, github.com/ren70n/carscrap,num_dependents_deps.dev:0 github.com/rena2damas/apispec-plugins, github.com/rena2damas/apispec-ui, @@ -974173,6 +991658,7 @@ github.com/renanlbl/arrayChunkJS,num_dependents_deps.dev:0 github.com/renanlecaro/importabular,num_dependents_deps.dev:0 github.com/renanleonellocastro/automatedweb, github.com/renanliberato/react-simple-stack-navigation,num_dependents_deps.dev:0 +github.com/renanmav/match-label-action, github.com/renanmedina/lattesrobot,num_dependents_deps.dev:0 github.com/renanmontebelo/detect-package-changes,num_dependents_deps.dev:0 github.com/renanmontebelo/package-json-changed,num_dependents_deps.dev:0 @@ -974188,6 +991674,7 @@ github.com/renanpalmeira/docker-protobufs,num_dependents_deps.dev:0 github.com/renanpvaz/babel-plugin-auto-curry,num_dependents_deps.dev:0 github.com/renanpvaz/cool-title,num_dependents_deps.dev:0 github.com/renanramonh/design-patterns-go,num_dependents_deps.dev:0 +github.com/renanrcp/dotnet-format-problem-matcher, github.com/renansalaberga/trabalho-edl,num_dependents_deps.dev:0 github.com/renansigolo/html-signature-generator,num_dependents_deps.dev:0 github.com/renansilva15/tyype, @@ -974275,12 +991762,14 @@ github.com/renatoathaydes/osgiaas,num_dependents_deps.dev:12 github.com/renatoathaydes/pony-gradle-plugin,num_dependents_deps.dev:0 github.com/renatoathaydes/protobuf-tcp-rsa-provider,num_dependents_deps.dev:0 github.com/renatoathaydes/rawhttp,num_dependents_deps.dev:5 +github.com/renatoathaydes/setup-java-sdkman, github.com/renatoathaydes/spock-reports,num_dependents_deps.dev:20 github.com/renatoathaydes/vinegar,num_dependents_deps.dev:0 github.com/renatoaug/nestjs-bull-emitter,num_dependents_deps.dev:2 github.com/renatoaug/nestjs-bull-receiver,num_dependents_deps.dev:2 github.com/renatobenks/relay-offline, github.com/renatobrunella/QueryObjectFactory,num_dependents_deps.dev:0 +github.com/renatochic69/sampctl-action, github.com/renatoclt/libreria,num_dependents_deps.dev:0 github.com/renatocron/blazer,num_dependents_deps.dev:0 github.com/renatocron/etamu-file2tar,num_dependents_deps.dev:0 @@ -974375,8 +991864,11 @@ github.com/renavigation/renavigation,num_dependents_deps.dev:76 github.com/renavigation2/renavigation2,num_dependents_deps.dev:0 github.com/renay/physijs,num_dependents_deps.dev:0 github.com/renbangjie/chaos-mybatis-generator,num_dependents_deps.dev:0 +github.com/renbaoshuo/deploy-certificate-to-goedge, +github.com/renbaoshuo/deploy-certificate-to-tencentcloud, github.com/renbaoshuo/hexo-tag-scode,num_dependents_deps.dev:0 github.com/renbaoshuo/hexo-theme-pure,num_dependents_deps.dev:0 +github.com/renbaoshuo/upload-to-cos, github.com/renber/compile-switches-maven-plugin,num_dependents_deps.dev:0 github.com/renbuzhudek/lernaProject,num_dependents_deps.dev:0 github.com/rench/homebridge-smarthome,num_dependents_deps.dev:0 @@ -974537,6 +992029,7 @@ github.com/renegat4/restmine, github.com/renegmed/bookstore_oauth-go,num_dependents_deps.dev:0 github.com/renegmed/bookstore_utils-go,num_dependents_deps.dev:0 github.com/renehernandez/BitKnown,num_dependents_deps.dev:0 +github.com/renehernandez/action-appfile, github.com/renehernandez/appfile,num_dependents_deps.dev:0 github.com/renehernandez/camp3,num_dependents_deps.dev:0 github.com/renehernandez/camper,num_dependents_deps.dev:0 @@ -974697,6 +992190,7 @@ github.com/renmuell/gameTurf.js,num_dependents_deps.dev:0 github.com/renmuell/oVali.js, github.com/renmuell/rm_atmo,num_dependents_deps.dev:0 github.com/rennancockles/rastreio-correios, +github.com/rennancockles/resume-action, github.com/rennasccenth/stone_github_api_golang,num_dependents_deps.dev:0 github.com/rennat/python-markdown-oembed, github.com/rennbon/poc,num_dependents_deps.dev:0 @@ -974755,6 +992249,7 @@ github.com/renovate-gomod-issue/bar,num_dependents_deps.dev:0 github.com/renovate-gomod-issue/foo,num_dependents_deps.dev:0 github.com/renovate-gomod-issue/fully-replaced,num_dependents_deps.dev:0 github.com/renovate-gomod-issue/partially-replaced,num_dependents_deps.dev:0 +github.com/renovatebot/github-action, github.com/renovatebot/pep440,num_dependents_deps.dev:6 github.com/renovatebot/renovate,"criticality_score:0.755850,num_dependents_deps.dev:0" github.com/renovatebot/ruby-semver,num_dependents_deps.dev:5 @@ -974924,10 +992419,12 @@ github.com/renzejongman/iocparser, github.com/renzenicolai/node-red-contrib-convert,num_dependents_deps.dev:0 github.com/renzenicolai/simple-json-rpc,num_dependents_deps.dev:0 github.com/renzhan/yamlref,num_dependents_deps.dev:0 +github.com/renzhaosy/hexo-deploy-action, github.com/renzhaosy/react-app-rewire-less-modules,num_dependents_deps.dev:0 github.com/renzhezhilu/http-plug, github.com/renzhilan/rzq, github.com/renzhiyi/zhoukao,num_dependents_deps.dev:0 +github.com/renzholy/blogit, github.com/renzhsh/js.license,num_dependents_deps.dev:0 github.com/renzhsh/vuepress-code-components,num_dependents_deps.dev:0 github.com/renzhsh/vuepress-mindmap,num_dependents_deps.dev:0 @@ -975011,6 +992508,8 @@ github.com/rep/hpfeeds, github.com/repackd/modules,num_dependents_deps.dev:0 github.com/repackel/repack,num_dependents_deps.dev:0 github.com/repackel/repack-plus,num_dependents_deps.dev:0 +github.com/repaction/texlive, +github.com/repaction/uploader, github.com/repaint-io/maven-tiles,num_dependents_deps.dev:0 github.com/repasse/cordova-imagePicker,num_dependents_deps.dev:0 github.com/repaygithub/cactus,num_dependents_deps.dev:0 @@ -975101,6 +992600,7 @@ github.com/replicante-io/common,num_dependents_deps.dev:3 github.com/replicate/cog,num_dependents_deps.dev:0 github.com/replicate/keepsake,num_dependents_deps.dev:0 github.com/replicate/replicate,criticality_score:0.510290 +github.com/replicate/setup-cog, github.com/replicatedcom/go-dockerclient,num_dependents_deps.dev:0 github.com/replicatedcom/saaskit,num_dependents_deps.dev:0 github.com/replicatedcom/ship,num_dependents_deps.dev:0 @@ -975192,6 +992692,8 @@ github.com/repo-helper/whey-pth, github.com/repo-hint/repo-hint,num_dependents_deps.dev:0 github.com/repo-list-553108/pythonrpc,num_dependents_deps.dev:0 github.com/repo-phuocdt/eslint-config-phuocdt, +github.com/repo-sync/github-sync, +github.com/repo-sync/pull-request, github.com/repo-utils/co-gitlab,num_dependents_deps.dev:0 github.com/repo-utils/gitlab, github.com/repo-utils/giturl,num_dependents_deps.dev:678 @@ -975211,9 +992713,12 @@ github.com/repodio/react-native-trimmer,num_dependents_deps.dev:0 github.com/repoerna/go-hello-jenkins,num_dependents_deps.dev:0 github.com/repoir/eslint-config-repoir,num_dependents_deps.dev:0 github.com/repoir/repoir,num_dependents_deps.dev:0 +github.com/repojac123-next/silver-bassoon, github.com/repole/drowsy, github.com/repole/mqlalchemy, github.com/repole/snakemq-pubsub, +github.com/repolevedavaj/github-markdown-to-html, +github.com/repolevedavaj/install-nsis, github.com/repology/py-libversion, github.com/repology/repology-updater,criticality_score:0.477980 github.com/repoloyd/project,num_dependents_deps.dev:0 @@ -975287,6 +992792,8 @@ github.com/reportportal/service-registry,num_dependents_deps.dev:0 github.com/reportportal/service-ui,num_dependents_deps.dev:0 github.com/repos-go/mop,num_dependents_deps.dev:0 github.com/repos/CastellaniDavide, +github.com/repos4u/octave-action, +github.com/reposaur/repo-audit-action, github.com/reposify/reposify-python, github.com/repositive/event-store,num_dependents_deps.dev:0 github.com/repositive/liz-skin,num_dependents_deps.dev:0 @@ -975369,6 +992876,7 @@ github.com/req-json/req-json-etag,num_dependents_deps.dev:0 github.com/req-json/req-json-rate-limit,num_dependents_deps.dev:0 github.com/req-json/req-json-serialize-request,num_dependents_deps.dev:0 github.com/reqorg/reqless,num_dependents_deps.dev:0 +github.com/reqover/reqover-action, github.com/reqshark/date,num_dependents_deps.dev:0 github.com/reqshark/gito,num_dependents_deps.dev:0 github.com/reqshark/gpush,num_dependents_deps.dev:0 @@ -975397,6 +992905,7 @@ github.com/reqshark/writa,num_dependents_deps.dev:0 github.com/reqshark/zttp,num_dependents_deps.dev:0 github.com/requaos/enmime,num_dependents_deps.dev:0 github.com/requaos/migrate,num_dependents_deps.dev:0 +github.com/requarks/changelog-action, github.com/requea/cgo-test,num_dependents_deps.dev:0 github.com/requery/requery,"criticality_score:0.318120,num_dependents_deps.dev:61" github.com/requery/sqlite-android,criticality_score:0.473790 @@ -975479,6 +992988,7 @@ github.com/requirex/lumino-tsx,num_dependents_deps.dev:0 github.com/requirex/mrepo,num_dependents_deps.dev:0 github.com/requirex/requirex, github.com/requirex/requirex-postcss-bundle,num_dependents_deps.dev:0 +github.com/requizm/dotnet-format, github.com/requnix/actioncable-vue-jwt,num_dependents_deps.dev:0 github.com/rerb/django-credits, github.com/rerb/django-fortune, @@ -975585,6 +993095,7 @@ github.com/research-virtualfortknox/msb-client-websocket-java,num_dependents_dep github.com/research-virtualfortknox/msb-client-websocket-nodejs,num_dependents_deps.dev:0 github.com/research-virtualfortknox/msb-client-websocket-python, github.com/research-virtualfortknox/node-red-contrib-msb,num_dependents_deps.dev:0 +github.com/research11111/gh-actions-issues-autolabel, github.com/researchapps/helpme-client, github.com/researchgate/babel-plugin-react-class-display-name,num_dependents_deps.dev:0 github.com/researchgate/babel-plugin-transform-scss-import-to-string,num_dependents_deps.dev:0 @@ -975749,6 +993260,8 @@ github.com/residua/zigzag,num_dependents_deps.dev:0 github.com/residualeffect/reactor, github.com/resif/ringserver-stats, github.com/resigned/snappi,num_dependents_deps.dev:0 +github.com/resilience-jychp/gh-trufflehog, +github.com/resilience-jychp/gh-upload-sbom, github.com/resilience4j/resilience4j,"criticality_score:0.631330,num_dependents_deps.dev:9204" github.com/resilient-http/resilient.js,num_dependents_deps.dev:4 github.com/resilient-vitality/aggregates,num_dependents_deps.dev:0 @@ -975945,6 +993458,7 @@ github.com/resin-io/versionist,num_dependents_deps.dev:0 github.com/resin-os/healthdog-rs,num_dependents_deps.dev:0 github.com/resin-os/resin-device-toolbox,num_dependents_deps.dev:0 github.com/resin-os/resinos,num_dependents_deps.dev:0 +github.com/resinas/okteto-push, github.com/resingm/tl-prototype, github.com/resingm/yacf, github.com/resinstack/dtn,num_dependents_deps.dev:0 @@ -976089,6 +993603,8 @@ github.com/resource-watch/sql-parser,num_dependents_deps.dev:0 github.com/resource-watch/widget-editor,num_dependents_deps.dev:0 github.com/resource-watch/wri-api-components, github.com/resource-watch/wysiwyg,num_dependents_deps.dev:0 +github.com/resourcefinance/cloudlfare-dnslink-update, +github.com/resourcefinance/s3-upload, github.com/resourcepool/insta-crawler,num_dependents_deps.dev:0 github.com/resourcepool/jarpic-client,num_dependents_deps.dev:0 github.com/resourcepool/ssdp-client,num_dependents_deps.dev:0 @@ -976169,6 +993685,8 @@ github.com/rest-feeds/restfeed-client-java,num_dependents_deps.dev:0 github.com/rest-feeds/restfeed-client-spring,num_dependents_deps.dev:0 github.com/rest-feeds/restfeed-server-java,num_dependents_deps.dev:0 github.com/rest-feeds/restfeed-server-spring,num_dependents_deps.dev:0 +github.com/restackio/update-json-file-action, +github.com/restackio/update-json-values-action, github.com/restarian/brace_document,num_dependents_deps.dev:18 github.com/restarian/brace_document_mocha,num_dependents_deps.dev:20 github.com/restarian/brace_document_navlink,num_dependents_deps.dev:18 @@ -976290,9 +993808,12 @@ github.com/restormjs/restorm,num_dependents_deps.dev:0 github.com/restormjs/restormjs, github.com/restpackio/restpack-node,num_dependents_deps.dev:0 github.com/restpose/restpose-py, +github.com/restqa/404-links, github.com/restqa/cucumber-export,num_dependents_deps.dev:0 github.com/restqa/generator-plugin,num_dependents_deps.dev:0 +github.com/restqa/gherkin-linter-action, github.com/restqa/restqa,num_dependents_deps.dev:0 +github.com/restqa/restqa-action, github.com/restqa/restqa-plugin-bootstrap,num_dependents_deps.dev:0 github.com/restqa/restqapi,num_dependents_deps.dev:0 github.com/restqa/restqkube, @@ -976536,6 +994057,8 @@ github.com/retgits/ashelper,num_dependents_deps.dev:0 github.com/retgits/bitly-lambda,num_dependents_deps.dev:0 github.com/retgits/checkiday,num_dependents_deps.dev:0 github.com/retgits/plot-randomizer,num_dependents_deps.dev:0 +github.com/rethab/actions-lint, +github.com/rethab/bash-action, github.com/retheviper/goginsample,num_dependents_deps.dev:0 github.com/rethinkdb-rs/ql2,num_dependents_deps.dev:2 github.com/rethinkdb-rs/reql,num_dependents_deps.dev:0 @@ -976608,6 +994131,7 @@ github.com/retorquere/bibtex-parser,num_dependents_deps.dev:0 github.com/retorquere/generator-zotero-plugin,num_dependents_deps.dev:0 github.com/retorquere/humanparser,num_dependents_deps.dev:0 github.com/retorquere/jasmine-fail-fast,num_dependents_deps.dev:0 +github.com/retorquere/label-gun, github.com/retorquere/universal-citekey-js,num_dependents_deps.dev:0 github.com/retorquere/zotero-better-bibtex,criticality_score:0.582400 github.com/retorquere/zotero-plugin,num_dependents_deps.dev:0 @@ -976644,6 +994168,7 @@ github.com/retroburst/log4js-memory-appender,num_dependents_deps.dev:0 github.com/retroburst/paypal-recurring-se,num_dependents_deps.dev:0 github.com/retrocausal/video-recorder,num_dependents_deps.dev:0 github.com/retrocognition/ng-fullcalendar,num_dependents_deps.dev:0 +github.com/retrofit-drupal/retrofit, github.com/retrofox/calendar-tools, github.com/retrofox/fogon,num_dependents_deps.dev:0 github.com/retrofox/is-array,num_dependents_deps.dev:2892 @@ -976726,6 +994251,7 @@ github.com/returnString/metagame,num_dependents_deps.dev:0 github.com/returnString/node-gsr,num_dependents_deps.dev:0 github.com/returnchung/wxkit, github.com/returntocorp/bento, +github.com/returntocorp/bento-action, github.com/returntocorp/jinjalint, github.com/returntocorp/ocaml-tree-sitter,num_dependents_deps.dev:0 github.com/returntocorp/ocaml-tree-sitter-languages,num_dependents_deps.dev:0 @@ -976733,6 +994259,9 @@ github.com/returntocorp/ocaml-tree-sitter-semgrep,num_dependents_deps.dev:0 github.com/returntocorp/pfff,num_dependents_deps.dev:0 github.com/returntocorp/python-junit-xml, github.com/returntocorp/semgrep,"criticality_score:0.588380,num_dependents_deps.dev:0" +github.com/returntocorp/semgrep-action, +github.com/returntocorp/semgrep-rules-test-action, +github.com/returntocorp/semgrep-rules-test-action-develop, github.com/returntocorp/sgrep,num_dependents_deps.dev:0 github.com/returntocorp/stadt,num_dependents_deps.dev:0 github.com/returntocorp/typed-ast-util,num_dependents_deps.dev:0 @@ -976767,6 +994296,7 @@ github.com/retyui/react-native-confirmation-code-input,num_dependents_deps.dev:0 github.com/retyui/react-native-stylex,num_dependents_deps.dev:0 github.com/retyui/react-quick-pinch-zoom,num_dependents_deps.dev:4 github.com/retyui/redux-saga-document-visibility,num_dependents_deps.dev:0 +github.com/retzero/gbs-build-action, github.com/retzero/my-npm-example,num_dependents_deps.dev:0 github.com/retzion/node-image-watermark,num_dependents_deps.dev:0 github.com/retzion/nodejs-watermark,num_dependents_deps.dev:0 @@ -976801,6 +994331,7 @@ github.com/reubenmiller/go-c8y,num_dependents_deps.dev:0 github.com/reubenmiller/go-c8y-cli,num_dependents_deps.dev:0 github.com/reubenmiller/promptui,num_dependents_deps.dev:0 github.com/reubenpeeris/lombok-eclipse-compiler,num_dependents_deps.dev:0 +github.com/reubinoff/elastic-beanstalk-check, github.com/reubn/dragonfruit,num_dependents_deps.dev:0 github.com/reubn/eslint-config-reubn,num_dependents_deps.dev:0 github.com/reubn/sigdig,num_dependents_deps.dev:0 @@ -976809,11 +994340,14 @@ github.com/reud/eth-quiz-with-wrapper,num_dependents_deps.dev:0 github.com/reugn/aerospike-client-scala,num_dependents_deps.dev:0 github.com/reugn/auth-server,num_dependents_deps.dev:0 github.com/reugn/fsweeper,num_dependents_deps.dev:0 +github.com/reugn/github-action-aerospike, +github.com/reugn/github-action-pulsar, github.com/reugn/go-quartz,num_dependents_deps.dev:0 github.com/reugn/go-streams,num_dependents_deps.dev:0 github.com/reugn/kotlin-backoff,num_dependents_deps.dev:0 github.com/reugn/rspark,num_dependents_deps.dev:0 github.com/reugn/wifiqr,num_dependents_deps.dev:0 +github.com/reuixiy/hugo-deploy, github.com/reuixiy/hugo-theme-meme,criticality_score:0.382560 github.com/reujab/enquote,num_dependents_deps.dev:24 github.com/reujab/lnk,num_dependents_deps.dev:0 @@ -976894,6 +994428,7 @@ github.com/revall/instagram-web-api,num_dependents_deps.dev:0 github.com/revall/react-markmirror,num_dependents_deps.dev:0 github.com/revalo/sharp, github.com/revam/cluster-callback-routing,num_dependents_deps.dev:0 +github.com/revam/gh-action-get-tag-and-version, github.com/revam/git-smart-proxy-core,num_dependents_deps.dev:0 github.com/revam/koa-git-smart-proxy,num_dependents_deps.dev:0 github.com/revam/koa-layer,num_dependents_deps.dev:0 @@ -976904,16 +994439,19 @@ github.com/revang/dutool, github.com/revanrohith/CryptDrive, github.com/revans/Ti,num_dependents_deps.dev:0 github.com/revans/emojify,num_dependents_deps.dev:0 +github.com/revans/erb-action, github.com/revans/fixture_overlord,num_dependents_deps.dev:0 github.com/revans/rack-signature,num_dependents_deps.dev:0 github.com/revanth-reddy/lottie-animations,num_dependents_deps.dev:0 github.com/revanth-reddy/react-lottie-new,num_dependents_deps.dev:0 +github.com/revanth-reddy/runpy-action, github.com/revanth0212/field-change-effects-calculator, github.com/revanth0212/inactivity-dialog,num_dependents_deps.dev:0 github.com/revanth0212/react-charges-table,num_dependents_deps.dev:0 github.com/revanth0212/react-list-selector,num_dependents_deps.dev:0 github.com/revanth0212/true-timeout,num_dependents_deps.dev:0 github.com/revanthbugatti/Exhaustive-Modelling-of-Institutional-Legitimacy-of-International-Agencies---EMILIA-Index, +github.com/revantk/gen-tests-action, github.com/revapi/classif,num_dependents_deps.dev:4 github.com/revapi/osgi-revapi-extension,num_dependents_deps.dev:0 github.com/revapi/revapi,num_dependents_deps.dev:54 @@ -977049,6 +994587,11 @@ github.com/reversefold/python-s3proxy, github.com/reversefold/redcelery, github.com/reversefold/redlock, github.com/reversefold/util, +github.com/reversinglabs/gh-action-rl-scanner-cloud-composite, +github.com/reversinglabs/gh-action-rl-scanner-cloud-only, +github.com/reversinglabs/gh-action-rl-scanner-composite, +github.com/reversinglabs/gh-action-rl-scanner-only, +github.com/reversinglabs/gh-action-rl-scanner-simple, github.com/reversinglabs/reversinglabs-sdk-py2, github.com/reversinglabs/reversinglabs-sdk-py3, github.com/reverted/authorizer,num_dependents_deps.dev:0 @@ -977087,12 +994630,46 @@ github.com/reviewNB/treon, github.com/reviewable/enterprise-tools,num_dependents_deps.dev:0 github.com/reviewable/mdbook-classy,num_dependents_deps.dev:0 github.com/reviewboard/reviewboard,criticality_score:0.525010 +github.com/reviewdog/action-actionlint, +github.com/reviewdog/action-alex, +github.com/reviewdog/action-ansiblelint, +github.com/reviewdog/action-black, +github.com/reviewdog/action-brakeman, +github.com/reviewdog/action-coffeelint, +github.com/reviewdog/action-depup, +github.com/reviewdog/action-detect-secrets, +github.com/reviewdog/action-eclint, github.com/reviewdog/action-eslint,num_dependents_deps.dev:0 +github.com/reviewdog/action-fasterer, +github.com/reviewdog/action-flake8, +github.com/reviewdog/action-gitleaks, github.com/reviewdog/action-golangci-lint,num_dependents_deps.dev:0 +github.com/reviewdog/action-hadolint, +github.com/reviewdog/action-languagetool, +github.com/reviewdog/action-markdownlint, +github.com/reviewdog/action-misspell, +github.com/reviewdog/action-nimlint, +github.com/reviewdog/action-pyflakes, +github.com/reviewdog/action-reek, +github.com/reviewdog/action-remark-lint, +github.com/reviewdog/action-rubocop, +github.com/reviewdog/action-setup, +github.com/reviewdog/action-shellcheck, +github.com/reviewdog/action-shfmt, +github.com/reviewdog/action-staticcheck, +github.com/reviewdog/action-stylelint, +github.com/reviewdog/action-suggester, +github.com/reviewdog/action-template, +github.com/reviewdog/action-tflint, +github.com/reviewdog/action-tfsec, +github.com/reviewdog/action-trivy, +github.com/reviewdog/action-vint, +github.com/reviewdog/action-yamllint, github.com/reviewdog/errorformat,num_dependents_deps.dev:62 github.com/reviewdog/inviter,num_dependents_deps.dev:0 github.com/reviewdog/reviewdog,"criticality_score:0.536570,num_dependents_deps.dev:0" github.com/reviewninja/review.ninja,criticality_score:0.324950 +github.com/reviewpad/action, github.com/reviewr/html-to-image,num_dependents_deps.dev:0 github.com/reviewtrackers/migrate,num_dependents_deps.dev:0 github.com/revikk/adventofcode,num_dependents_deps.dev:0 @@ -977299,6 +994876,7 @@ github.com/revulcan/stock-alert-system,num_dependents_deps.dev:0 github.com/revuniversal/planner,num_dependents_deps.dev:0 github.com/revuniversal/react-partitioner,num_dependents_deps.dev:0 github.com/revv-tech/gofunctions,num_dependents_deps.dev:0 +github.com/revxsoftware/checkout, github.com/revyTH/file-duplicates, github.com/revyTH/linkedin-jobs-scraper,num_dependents_deps.dev:0 github.com/revzim/azhpq,num_dependents_deps.dev:0 @@ -977316,6 +994894,7 @@ github.com/rew1nter/yp,num_dependents_deps.dev:0 github.com/rewanth1997/kubectl-ccsecret,num_dependents_deps.dev:0 github.com/rewanth1997/kubectl-whisper-secret,num_dependents_deps.dev:0 github.com/rewanthtammana/kubectl-whisper-secret,num_dependents_deps.dev:0 +github.com/rewardStyle/github-action-datadog-reporting, github.com/rewardchain/factojs,num_dependents_deps.dev:0 github.com/rewardenv/reward,num_dependents_deps.dev:0 github.com/rewardops/ember-auto-import,num_dependents_deps.dev:0 @@ -977405,8 +994984,13 @@ github.com/rex64/lodestone-node,num_dependents_deps.dev:0 github.com/rexagod/in-cluster-debugger-configuration,num_dependents_deps.dev:0 github.com/rexagod/matcher-core,num_dependents_deps.dev:0 github.com/rexar1988/victoria,num_dependents_deps.dev:0 +github.com/rexdefuror/check_artifact_exists, +github.com/rexdefuror/get-latest-tag, +github.com/rexdefuror/read-package-json, +github.com/rexdefuror/tag-commit, github.com/rexdivakar/Fi1e-EncRypt0R, github.com/rexdivakar/Telegram-Notifly, +github.com/rexebin/next-nuget-package-version, github.com/rexema/project,num_dependents_deps.dev:0 github.com/rexemtoxa/backend-project-lvl3,num_dependents_deps.dev:0 github.com/rexemtoxa/project-lvl1-s352,num_dependents_deps.dev:0 @@ -977434,6 +995018,7 @@ github.com/rexk/mocha-mix-jsdom-3,num_dependents_deps.dev:0 github.com/rexk/mocha-mix-mockery,num_dependents_deps.dev:0 github.com/rexk/mocha-mix-react,num_dependents_deps.dev:0 github.com/rexk/mocha-mix-react.0.13,num_dependents_deps.dev:0 +github.com/rexlManu/pterodactyl-upload-action, github.com/rexlabsio/npm-hook-slack,num_dependents_deps.dev:0 github.com/rexlabsio/stitch,num_dependents_deps.dev:0 github.com/rexle368/simple,num_dependents_deps.dev:0 @@ -977454,10 +995039,13 @@ github.com/rexray/rexray,criticality_score:0.400990 github.com/rexroni/mkninja, github.com/rexs-io/blocksec2go-ethereum, github.com/rexsacrorum/hubot-remind-all,num_dependents_deps.dev:0 +github.com/rexsateesh/aws-codepipeline-action, github.com/rexshijaku/PDFBarcodeJS,num_dependents_deps.dev:0 github.com/rexsimiloluwah/scrapix-cli,num_dependents_deps.dev:0 github.com/rexsimiloluwah/sonic-generator, github.com/rexsutton/vollab, +github.com/rexthecoder/Pinky, +github.com/rexthecoder/Pinky-Generator, github.com/rexuws/rexuws,num_dependents_deps.dev:0 github.com/rexwang0128/fis3-postpackager-query_path,num_dependents_deps.dev:0 github.com/rexwhite/generator-stuffed-node,num_dependents_deps.dev:0 @@ -977686,6 +995274,8 @@ github.com/reyvel/django-shift-work, github.com/reywood/node-authorize-net-arb,num_dependents_deps.dev:0 github.com/reyzeal/totp,num_dependents_deps.dev:0 github.com/reyzeal/totp-express-middleware,num_dependents_deps.dev:0 +github.com/rez0n/actions-coudflare-dns, +github.com/rez0n/actions-github-release, github.com/rez0n/django-database-prefix, github.com/rez4mt/flask-jiv, github.com/reza-fs/app_id_updater,num_dependents_deps.dev:0 @@ -977764,11 +995354,13 @@ github.com/rezeus/service-database-sequelize,num_dependents_deps.dev:0 github.com/reziak/gobookings,num_dependents_deps.dev:0 github.com/rezigned/grunt-auto-config,num_dependents_deps.dev:0 github.com/rezigned/node-file-walker, +github.com/rezigned/setup-env-action, github.com/rezigned/uri-template.js,num_dependents_deps.dev:0 github.com/rezilience/collections,num_dependents_deps.dev:0 github.com/rezkyatinnov/capetangjs,num_dependents_deps.dev:0 github.com/rezkyrizaldi/golang,num_dependents_deps.dev:0 github.com/reznikartem/go-whatsapp,num_dependents_deps.dev:0 +github.com/reznikmm/upload-bintray-action, github.com/reznikovkg/feed,num_dependents_deps.dev:0 github.com/reznil/holdmyui,num_dependents_deps.dev:0 github.com/reznord/query-string,num_dependents_deps.dev:0 @@ -977835,6 +995427,7 @@ github.com/rfcaio/randint,num_dependents_deps.dev:0 github.com/rfcaio/webpack-config,num_dependents_deps.dev:0 github.com/rfcx/http-utils,num_dependents_deps.dev:0 github.com/rfdavid/react-visual-filter, +github.com/rfdearborn/dbt-docs-to-notion, github.com/rfdickerson/healthcheck-proof-of-concept,num_dependents_deps.dev:0 github.com/rfdonnelly/rvs,num_dependents_deps.dev:8 github.com/rfechtner/pypairs, @@ -977844,10 +995437,12 @@ github.com/rfeldmann/leopy, github.com/rfelix/hostgitrb,num_dependents_deps.dev:0 github.com/rfelix/jekyll_ext,num_dependents_deps.dev:0 github.com/rfengl/rf-controls,num_dependents_deps.dev:0 +github.com/rfennell/ReleaseNotesAction, github.com/rferg/cewdi,num_dependents_deps.dev:0 github.com/rfermann/nestjs-prisma-graphql-generator,num_dependents_deps.dev:0 github.com/rfernandezapML/testdep1,num_dependents_deps.dev:0 github.com/rfernandezapML/testdep2,num_dependents_deps.dev:0 +github.com/rfernandezdo/arm-ttk, github.com/rferrazz/pyqt4topyqt5, github.com/rferreira/cofre, github.com/rferro/bew,num_dependents_deps.dev:0 @@ -978038,6 +995633,7 @@ github.com/rg-engineering/ioBroker.openhomecontrol,num_dependents_deps.dev:0 github.com/rg-engineering/ioBroker.sbfspot,num_dependents_deps.dev:0 github.com/rg-engineering/ioBroker.vis-weather, github.com/rg-wood/chat2mark, +github.com/rg-wood/send-tweet-action, github.com/rg1220/StringStore,num_dependents_deps.dev:0 github.com/rg1220/express-file-router, github.com/rg1220/wascally,num_dependents_deps.dev:0 @@ -978071,6 +995667,8 @@ github.com/rgangela99/react-crossword,num_dependents_deps.dev:0 github.com/rganowski/eight-stars, github.com/rgao-wish/samplelib,num_dependents_deps.dev:0 github.com/rgaquino/rocinante-books,num_dependents_deps.dev:0 +github.com/rgarcia-phi/gh-ecr-push, +github.com/rgarcia-phi/json-to-variables, github.com/rgarcia/envconfig,num_dependents_deps.dev:0 github.com/rgarcia/goformation,num_dependents_deps.dev:0 github.com/rgarcia/gor,num_dependents_deps.dev:0 @@ -978084,6 +995682,7 @@ github.com/rgarro/Route32,num_dependents_deps.dev:0 github.com/rgarro/YipySess,num_dependents_deps.dev:0 github.com/rgarver/signatory,num_dependents_deps.dev:0 github.com/rgaskill/dev-rest-proxy,num_dependents_deps.dev:0 +github.com/rgasper/python-black-pull-request-action, github.com/rgaudin/django-orangeapisms, github.com/rgaudin/tools, github.com/rgaveiga/mosa, @@ -978147,6 +995746,8 @@ github.com/rgbnotes/rgb-python, github.com/rgbongocan/spty, github.com/rgbrizzlehizzle/knotion,num_dependents_deps.dev:0 github.com/rgbrizzlehizzle/krypto,num_dependents_deps.dev:0 +github.com/rgbrota/arweave-upload-directory, +github.com/rgbrota/arweave-upload-file, github.com/rgbui/rjs,num_dependents_deps.dev:0 github.com/rgbui/viewparse-express,num_dependents_deps.dev:0 github.com/rgburke/grv,criticality_score:0.319740 @@ -978254,6 +995855,7 @@ github.com/rgigante/nodebb-plugin-maxonbinary,num_dependents_deps.dev:0 github.com/rgigante/nodebb-plugin-maxonid,num_dependents_deps.dev:0 github.com/rgil90/Nbapi,num_dependents_deps.dev:0 github.com/rgilbert1/bst, +github.com/rgillarios/NCCTEST, github.com/rgilling/bunyan-log-helper,num_dependents_deps.dev:0 github.com/rgilling/bunyan-log-helper/issues, github.com/rgilling/mongoose-recursive-upsert,num_dependents_deps.dev:0 @@ -978281,6 +995883,7 @@ github.com/rgladwell/wcs-microdata,num_dependents_deps.dev:0 github.com/rglez/bitclust, github.com/rglink/homebridge-smappee-platform, github.com/rgllm/xnatum, +github.com/rglncc/Thow, github.com/rgluis/building-microservices,num_dependents_deps.dev:0 github.com/rgm-osc/nagflux,num_dependents_deps.dev:0 github.com/rgmaidana/predictiveControl, @@ -978298,6 +995901,7 @@ github.com/rgmining/rsd, github.com/rgmining/script, github.com/rgmining/synthetic, github.com/rgmining/tripadvisor, +github.com/rgn/antora-build-action, github.com/rgnevashev/graphql-scalars,num_dependents_deps.dev:0 github.com/rgnevashev/mongodb-tools,num_dependents_deps.dev:0 github.com/rgnevashev/random-js,num_dependents_deps.dev:0 @@ -978335,6 +995939,7 @@ github.com/rgr-myrg/pubsub-ts,num_dependents_deps.dev:0 github.com/rgr-myrg/signal-notifier-ts,num_dependents_deps.dev:0 github.com/rgr-myrg/signal-slot-ts, github.com/rgr-myrg/signal-ts,num_dependents_deps.dev:0 +github.com/rgr-ralf-it/github-actions-secrets-creator, github.com/rgr19/ansible_starter, github.com/rgrannell1/kale,num_dependents_deps.dev:0 github.com/rgrannell1/procolli,num_dependents_deps.dev:0 @@ -978412,6 +996017,7 @@ github.com/rguerreiro/express-device,num_dependents_deps.dev:14 github.com/rguerreiro/wimd,num_dependents_deps.dev:0 github.com/rguerrettaz/tips,num_dependents_deps.dev:0 github.com/rguikers/RBWalletProvider,num_dependents_deps.dev:0 +github.com/rguillaume/discord-action-embed, github.com/rguillermo/wpclient, github.com/rguillon/schedule, github.com/rguilmont/deepdetect-exporter,num_dependents_deps.dev:0 @@ -978601,6 +996207,7 @@ github.com/rharke/rh.osx, github.com/rharke/rh.osxdiskutils, github.com/rharkes/fdFLIM-py, github.com/rharkes/flifile, +github.com/rharper-sapient/conventional-pr-title-action-alt, github.com/rharriso/bower-rails,criticality_score:0.309140 github.com/rharrison-/bzrest,num_dependents_deps.dev:0 github.com/rhart/vertx-maven-plugin,num_dependents_deps.dev:0 @@ -978611,6 +996218,7 @@ github.com/rharter/auto-value-gson,"criticality_score:0.460890,num_dependents_de github.com/rharter/auto-value-moshi,num_dependents_deps.dev:4 github.com/rharter/auto-value-parcel,"criticality_score:0.327480,num_dependents_deps.dev:2" github.com/rharter/drone,num_dependents_deps.dev:0 +github.com/rharter/github-move-linked-project-cards, github.com/rharter/gl-helpers,num_dependents_deps.dev:0 github.com/rharter/gradle-git-repo,num_dependents_deps.dev:0 github.com/rharter/ktor-moshi,num_dependents_deps.dev:0 @@ -978940,6 +996548,8 @@ github.com/rhettl/eslint-config-rhett,num_dependents_deps.dev:0 github.com/rhettl/if-err,num_dependents_deps.dev:0 github.com/rhettl/safe-puzzle,num_dependents_deps.dev:0 github.com/rhettl/taskbot,num_dependents_deps.dev:0 +github.com/rheuvel89/replace-action, +github.com/rheuvel89/xamarin-container-action, github.com/rhevm-qe-automation/python-rrmngmnt, github.com/rheznendra/FreezeUI,num_dependents_deps.dev:0 github.com/rhgarcia/tropescraper, @@ -979016,6 +996626,7 @@ github.com/rhizolab/rhizo-client, github.com/rhizome-ai/apache-age-go,num_dependents_deps.dev:0 github.com/rhizome-ai/apache-age-python, github.com/rhizome/omniauth-discogs,num_dependents_deps.dev:0 +github.com/rhizomenetwork/arangodb-action, github.com/rhizomplatform/go-libp2p-pubsub,num_dependents_deps.dev:0 github.com/rhjdjong/SlipLib, github.com/rhjdjong/vfsm, @@ -979161,6 +996772,8 @@ github.com/rhrn/wallets-generator, github.com/rhrn/yaml-to-json-schema,num_dependents_deps.dev:0 github.com/rhroberts/yatta, github.com/rhruiz/hookers,num_dependents_deps.dev:0 +github.com/rhs/add-reviewer-gh-action, +github.com/rhs/pr-comment, github.com/rhshah/cwl_subworkflows, github.com/rhshah/iAnnotateSV, github.com/rhshah/iCallSV, @@ -979291,6 +996904,7 @@ github.com/rhysd/Tui,num_dependents_deps.dev:0 github.com/rhysd/VimComponent,num_dependents_deps.dev:0 github.com/rhysd/YourFukurou,num_dependents_deps.dev:0 github.com/rhysd/about-window,num_dependents_deps.dev:0 +github.com/rhysd/action-setup-vim, github.com/rhysd/actionlint,num_dependents_deps.dev:0 github.com/rhysd/app-builder,num_dependents_deps.dev:0 github.com/rhysd/ask-on-exception,num_dependents_deps.dev:0 @@ -979368,6 +996982,7 @@ github.com/rhysnewell/ChIP-R, github.com/rhysnewell/Lorikeet,num_dependents_deps.dev:0 github.com/rhysnewell/flight, github.com/rhysnewell/nymph,num_dependents_deps.dev:0 +github.com/rhysnewell/rust-cargo-musl-action, github.com/rhysowen/react-native-proximity-android,num_dependents_deps.dev:0 github.com/rhysstubbs/fetch-wrapper,num_dependents_deps.dev:0 github.com/rhyst/dompose, @@ -979385,6 +997000,7 @@ github.com/rhythmagency/gift,num_dependents_deps.dev:0 github.com/rhythmagency/rhythm.aws.s3.sync,num_dependents_deps.dev:0 github.com/rhythmagency/rhythm.deployment-test,num_dependents_deps.dev:0 github.com/rhythmagency/rhythm.framework,num_dependents_deps.dev:0 +github.com/rhythmictech/actions-setup-tfenv, github.com/rhythmictech/openFEC-python-sdk, github.com/rhythminme/node-es-local,num_dependents_deps.dev:0 github.com/rhythminme/serverless-gulp,num_dependents_deps.dev:0 @@ -979572,6 +997188,8 @@ github.com/ribot/care-package,num_dependents_deps.dev:0 github.com/ribozz/behave-pytest, github.com/ribozz/flake8-svg-badge, github.com/ribozz/layers, +github.com/ribtoks/parent-issue-update, +github.com/ribtoks/tdg-github-action, github.com/ribuluo000/react-native-phone-input, github.com/ributzka/tapi,Google github.com/ric-geek/dlms-encrypt-decrypt-cli, @@ -979580,7 +997198,11 @@ github.com/ric-ng-libs/ts-general,num_dependents_deps.dev:0 github.com/ric-ng-libs/ts-pays,num_dependents_deps.dev:0 github.com/ric-v/go-ds,num_dependents_deps.dev:0 github.com/ric03uec/tpr,num_dependents_deps.dev:0 +github.com/ricado-group/bugsnag-sourcemaps-upload-action, +github.com/ricado-group/docker-base-image-build-action, +github.com/ricado-group/dotnet-library-build-release-action, github.com/ricado-group/js-api-client, +github.com/ricado-group/octopus-deploy-release-action, github.com/ricale/factory-bem-class,num_dependents_deps.dev:0 github.com/ricale/react-kr-typing-amin, github.com/ricalexalmeida/palindrome,num_dependents_deps.dev:0 @@ -979671,6 +997293,7 @@ github.com/ricardobeat/unik,num_dependents_deps.dev:0 github.com/ricardobeat/zuera-js,num_dependents_deps.dev:0 github.com/ricardobeltranramirez/algorithms,num_dependents_deps.dev:0 github.com/ricardobf/camera_discovery, +github.com/ricardobiundo/NextPagesAction, github.com/ricardobohadana/imdb_lib, github.com/ricardoboss/extended-nmea, github.com/ricardoboss/node-nmea,num_dependents_deps.dev:0 @@ -979705,10 +997328,12 @@ github.com/ricardochaves/django_http2_push, github.com/ricardochaves/django_invisible_recaptcha_admin, github.com/ricardochaves/django_ogp, github.com/ricardochaves/python-alelo, +github.com/ricardochaves/python-lint, github.com/ricardochimal/taps,num_dependents_deps.dev:37 github.com/ricardochou/leetcode,num_dependents_deps.dev:0 github.com/ricardocrescenti/get-auth-middleware,num_dependents_deps.dev:0 github.com/ricardocrescenti/knex-json-where,num_dependents_deps.dev:0 +github.com/ricardodalarme/autorelease, github.com/ricardodani/django-queryset-reporter, github.com/ricardodantas/gnib-ireland-client,num_dependents_deps.dev:0 github.com/ricardodantas/website-carbon-calculator,num_dependents_deps.dev:0 @@ -979734,6 +997359,7 @@ github.com/ricardofbarros/relation,num_dependents_deps.dev:0 github.com/ricardofbarros/semistandard-format,num_dependents_deps.dev:50 github.com/ricardofbarros/shelf,num_dependents_deps.dev:0 github.com/ricardofbarros/terminal-converter,num_dependents_deps.dev:0 +github.com/ricardofelgueiras/opsgenie-create-alert-action, github.com/ricardoferreirasilva/nestjs-referers,num_dependents_deps.dev:0 github.com/ricardoffmartins/boson,num_dependents_deps.dev:0 github.com/ricardogayer/restapi,num_dependents_deps.dev:0 @@ -979783,6 +997409,7 @@ github.com/ricardonatera/primerproyectosistemasdistribuidos,num_dependents_deps. github.com/ricardonunesdev/aws-ec2-wrap,num_dependents_deps.dev:0 github.com/ricardonunesdev/domain-ping,num_dependents_deps.dev:0 github.com/ricardoptcosta/operator-sdk-demo,num_dependents_deps.dev:0 +github.com/ricardorames/substring-branch-name-action, github.com/ricardorauber/path-locator,num_dependents_deps.dev:0 github.com/ricardorauber/recursive-path-finder,num_dependents_deps.dev:0 github.com/ricardorauber/source-tree,num_dependents_deps.dev:0 @@ -979845,6 +997472,8 @@ github.com/riccardocinti/cam2ip,num_dependents_deps.dev:0 github.com/riccardocossu/corso-tickets,num_dependents_deps.dev:0 github.com/riccardocurcio/hostswitcher, github.com/riccardodivirgilio/rfuncs,num_dependents_deps.dev:0 +github.com/riccardolinares/openai-commit, +github.com/riccardolinares/typefully, github.com/riccardom/cosmos-sdk,num_dependents_deps.dev:0 github.com/riccardom/tendermint,num_dependents_deps.dev:0 github.com/riccardomanfrin/kin-openapi,num_dependents_deps.dev:0 @@ -979881,6 +997510,7 @@ github.com/riccihenrique/segundou,num_dependents_deps.dev:0 github.com/riccijs/fo-matters,num_dependents_deps.dev:0 github.com/riccijs/microbial-ts,num_dependents_deps.dev:0 github.com/riccijs/ninjs,num_dependents_deps.dev:0 +github.com/riccione/setup_firefox, github.com/riccione83/yac-calendar,num_dependents_deps.dev:0 github.com/ricco386/RPi.DHT, github.com/ricco386/RPi.MC, @@ -979945,6 +997575,7 @@ github.com/rich-97/mixins.scss,num_dependents_deps.dev:0 github.com/rich-97/req-ajax,num_dependents_deps.dev:0 github.com/rich-97/sequelize-models-charger,num_dependents_deps.dev:0 github.com/rich-97/two-equals,num_dependents_deps.dev:0 +github.com/rich-automation/lotto-action, github.com/rich-b/json-cat-parser,num_dependents_deps.dev:0 github.com/rich-comps/lavatar,num_dependents_deps.dev:0 github.com/rich-dobbs-13440/astutus, @@ -979958,6 +997589,7 @@ github.com/rich-harris/ramjet,num_dependents_deps.dev:2 github.com/rich-harris/rollup,num_dependents_deps.dev:2 github.com/rich-harris/sander,num_dependents_deps.dev:1724 github.com/rich-harris/the-answer,num_dependents_deps.dev:2 +github.com/rich-howell/mastofeedbot, github.com/rich-iannone/DiagrammeR,criticality_score:0.418450 github.com/rich-iannone/pointblank,criticality_score:0.417630 github.com/rich-id/cookies-regulation,num_dependents_deps.dev:0 @@ -980058,6 +997690,7 @@ github.com/richard-livingston/cra-template-richards-typescript,num_dependents_de github.com/richard-livingston/json-view,num_dependents_deps.dev:0 github.com/richard-ma/pycscart, github.com/richard-martens/materials,num_dependents_deps.dev:0 +github.com/richard-muvirimi/deploy-wordpress-plugin, github.com/richard-sartor/froggie, github.com/richard-sartor/narwhal, github.com/richard-voss/cor-jenkins,num_dependents_deps.dev:0 @@ -980264,6 +997897,7 @@ github.com/richardimaoka/go-sandbox,num_dependents_deps.dev:0 github.com/richardimaoka/twitter-follower-analysis,num_dependents_deps.dev:0 github.com/richardjgowers/hydraspa, github.com/richardjharris/trim-uri,num_dependents_deps.dev:0 +github.com/richardjkendall/tf-auto-document.action, github.com/richardjwild/randomizer,num_dependents_deps.dev:0 github.com/richardkabiling/openapi-snippet-cli,num_dependents_deps.dev:0 github.com/richardkall/web-scripts,num_dependents_deps.dev:18 @@ -980325,7 +997959,9 @@ github.com/richardneililagan/base16-builder-node,num_dependents_deps.dev:0 github.com/richardneililagan/cognito-integration-demo,num_dependents_deps.dev:0 github.com/richardneililagan/eventhub-node-demo,num_dependents_deps.dev:0 github.com/richardneililagan/posthtml-external-link, +github.com/richardnfag/zowe-action, github.com/richardnoel/task-manager-gulp,num_dependents_deps.dev:0 +github.com/richardo2016/Setup-MSBuild, github.com/richardo2016/fib-knex,num_dependents_deps.dev:0 github.com/richardo2016/fib-typify,num_dependents_deps.dev:0 github.com/richardo2016/gor,num_dependents_deps.dev:0 @@ -980357,6 +997993,7 @@ github.com/richardregeer/gulp-js-dev-toolbox,num_dependents_deps.dev:0 github.com/richardregeer/legaci,num_dependents_deps.dev:0 github.com/richardregeer/promised-parallel-commands,num_dependents_deps.dev:0 github.com/richardregeer/raptor,num_dependents_deps.dev:0 +github.com/richardrigutins/replace-in-files, github.com/richardrobberse/az-func-middleware,num_dependents_deps.dev:0 github.com/richardroy/cli-todo,num_dependents_deps.dev:0 github.com/richardruiter/gatsby-transformer-cucumber-report,num_dependents_deps.dev:0 @@ -980392,6 +998029,7 @@ github.com/richardseifert/Chemvene, github.com/richardseifert/DiskProfiler, github.com/richardsheridan/trio-parallel, github.com/richardsimko/find-properties-usage,num_dependents_deps.dev:0 +github.com/richardsimko/update-tag, github.com/richardskim111/iacs-cli, github.com/richardskinner/react-timelapse-tool,num_dependents_deps.dev:0 github.com/richardsnider/buffer-examples,num_dependents_deps.dev:0 @@ -980560,6 +998198,7 @@ github.com/richinsley/purtybits,num_dependents_deps.dev:0 github.com/richinsley/qrcc,num_dependents_deps.dev:0 github.com/richinsley/vaapi_h264,num_dependents_deps.dev:0 github.com/richinsley/webrtc_websocket_example,num_dependents_deps.dev:0 +github.com/richipargo/actions-aws-eb, github.com/richipargo/facturacom, github.com/richiramone/grunt-staticfyme,num_dependents_deps.dev:0 github.com/richistron/chamba_search_mx,num_dependents_deps.dev:0 @@ -980913,6 +998552,16 @@ github.com/ricksonsa/booble-modal,num_dependents_deps.dev:0 github.com/ricksonsa/booble-toast,num_dependents_deps.dev:0 github.com/rickspirit/strapi-provider-email-nodemailer,num_dependents_deps.dev:0 github.com/rickstaa/CGDAT, +github.com/rickstaa/action-black, +github.com/rickstaa/action-contains-tag, +github.com/rickstaa/action-create-tag, +github.com/rickstaa/action-get-semver, +github.com/rickstaa/action-remark-lint, +github.com/rickstaa/action-sphinx-composite, +github.com/rickstaa/action-update-semver, +github.com/rickstaa/check-prb0t-action, +github.com/rickstaa/empty-issues-closer-action, +github.com/rickstaa/top-issues-action, github.com/ricksteam/fluent-behavior-tree,num_dependents_deps.dev:0 github.com/ricksteam/github-router-public,num_dependents_deps.dev:0 github.com/ricksteam/hubrouter-public,num_dependents_deps.dev:0 @@ -981122,6 +998771,7 @@ github.com/ricola3d/express-sequelize-crud,num_dependents_deps.dev:0 github.com/ricomoss/django-fixtureless, github.com/ricortegal/jscip,num_dependents_deps.dev:0 github.com/ricorusmana/go-prelim-test,num_dependents_deps.dev:0 +github.com/ricosandyca/convert-env-json, github.com/ricosjp/femio, github.com/ricosjp/pysiml, github.com/ricosjp/truck,num_dependents_deps.dev:6 @@ -981194,6 +998844,8 @@ github.com/ridecell/ridectl,num_dependents_deps.dev:0 github.com/ridecharge/go-loggly,num_dependents_deps.dev:0 github.com/ridedott/eslint-config, github.com/ridedott/eslint-plugin,num_dependents_deps.dev:0 +github.com/ridedott/merge-me-action, +github.com/ridedott/release-me-action, github.com/rideee/termutills,num_dependents_deps.dev:0 github.com/rideg/Optional,num_dependents_deps.dev:0 github.com/ridencww/expression-evaluator,num_dependents_deps.dev:0 @@ -981222,6 +998874,7 @@ github.com/ridgebackdad/go-in-the-box,num_dependents_deps.dev:0 github.com/ridgebox-dev/eslint-config,num_dependents_deps.dev:0 github.com/ridgebox/prettier-config,num_dependents_deps.dev:0 github.com/ridgeworks/lws-myword,num_dependents_deps.dev:0 +github.com/ridginald/testcafe-action-customdr, github.com/ridha/logviewer, github.com/ridhaans/gogo-power-ranger,num_dependents_deps.dev:0 github.com/ridhamtarpara/ip-device-parser,num_dependents_deps.dev:0 @@ -981326,6 +998979,7 @@ github.com/rieonke/cordova-plugin-laser-scanner,num_dependents_deps.dev:0 github.com/riescorp/donejs-typeahead,num_dependents_deps.dev:0 github.com/riescorp/feathers-vuex-select,num_dependents_deps.dev:0 github.com/rieset/waves-contract-deployer,num_dependents_deps.dev:0 +github.com/rieset/waves-deployer, github.com/rieske/event-sourced-account-go,num_dependents_deps.dev:0 github.com/riete/aliyun-slow-sql,num_dependents_deps.dev:0 github.com/riete/dingtalk,num_dependents_deps.dev:0 @@ -981610,6 +999264,7 @@ github.com/rihok/pipers, github.com/rihok/react-use-classes,num_dependents_deps.dev:0 github.com/rihor/tiny,num_dependents_deps.dev:0 github.com/rihtim/mongoutil,num_dependents_deps.dev:0 +github.com/rihurla/SimpleLabeler, github.com/rii-mango/Daikon,num_dependents_deps.dev:0 github.com/rii-mango/GIFTI-Reader-JS,num_dependents_deps.dev:0 github.com/rii-mango/JPEGLosslessDecoder,Google @@ -981619,6 +999274,7 @@ github.com/rii-mango/Papaya,"criticality_score:0.304910,num_dependents_deps.dev: github.com/riichard/boolean-parser-js,num_dependents_deps.dev:0 github.com/riiconnect24/wiino,num_dependents_deps.dev:0 github.com/riigrey/mylat,num_dependents_deps.dev:0 +github.com/riiid/comment-related-issues, github.com/riiid/krsh, github.com/riiid/pbkit,num_dependents_deps.dev:0 github.com/riiid/riiidbot-brain,num_dependents_deps.dev:0 @@ -981637,6 +999293,11 @@ github.com/riiy/acquirest, github.com/riiy/badwordfilter, github.com/riiy/spwm, github.com/rij1234/commandcord.js,num_dependents_deps.dev:0 +github.com/rijadge/NDiff-testing, +github.com/rijadge/analyzer, +github.com/rijadge/comp, +github.com/rijadge/generate-issues, +github.com/rijadge/ndiff-composite, github.com/rijalfm/go-todo,num_dependents_deps.dev:0 github.com/rijdendetreinen/gotrain,num_dependents_deps.dev:0 github.com/rijdendetreinen/ndov-receiver,num_dependents_deps.dev:0 @@ -981738,6 +999399,7 @@ github.com/rikhart/gtv-bfy,num_dependents_deps.dev:0 github.com/rikhart/loopback-slug,num_dependents_deps.dev:0 github.com/rikhoffbauer/create-an,num_dependents_deps.dev:0 github.com/rikhoffbauer/create-anything,num_dependents_deps.dev:0 +github.com/rikhuijzer/cache-install, github.com/riki-okunishi/proch,num_dependents_deps.dev:0 github.com/riki-tanaka/erc20-token-balance,num_dependents_deps.dev:0 github.com/riking/autodelete,num_dependents_deps.dev:0 @@ -982030,6 +999692,11 @@ github.com/rimma-a/react-native-pedometer,num_dependents_deps.dev:0 github.com/rimmaciej/ue-schedule, github.com/rimmartin/saxon-node,num_dependents_deps.dev:0 github.com/rimoapp/servicex,num_dependents_deps.dev:0 +github.com/rimonhanna/file-upload-box, +github.com/rimonhanna/gh-action-bump-version, +github.com/rimonhanna/github-action-b4a-deploy, +github.com/rimonhanna/notion-update-page, +github.com/rimonhanna/sf-package-version-update-action, github.com/rimoto/IntlPhoneInput,num_dependents_deps.dev:0 github.com/rimpo/gocui,num_dependents_deps.dev:0 github.com/rimraf/knode,num_dependents_deps.dev:0 @@ -982046,6 +999713,7 @@ github.com/rimvaliulin/pass, github.com/rimvydaszilinskas/iot-logger,num_dependents_deps.dev:0 github.com/rin1208/docker-hands-on,num_dependents_deps.dev:0 github.com/rin4046/salmon,num_dependents_deps.dev:0 +github.com/rinabert/action-postgres-setup, github.com/rinaldifonseca/classic_presenter,num_dependents_deps.dev:0 github.com/rinamasrina/react-native-announcement, github.com/rinamint/frontend-project-lvl1,num_dependents_deps.dev:0 @@ -982068,6 +999736,7 @@ github.com/rinchik/version-check,num_dependents_deps.dev:0 github.com/rinchsan/dakoku,num_dependents_deps.dev:0 github.com/rinchsan/device-check-go,num_dependents_deps.dev:0 github.com/rinchsan/gosimports,num_dependents_deps.dev:0 +github.com/rinchsan/renovate-config-validator, github.com/rincler/forms-and-fields,num_dependents_deps.dev:0 github.com/rindangramadhan/mnc-interview,num_dependents_deps.dev:0 github.com/rinde/RinECJ,num_dependents_deps.dev:0 @@ -982271,6 +999940,7 @@ github.com/rinsuki/discord-activity-generator,num_dependents_deps.dev:0 github.com/rinsuki/itunes-nowplaying-mac,num_dependents_deps.dev:0 github.com/rinsuki/joycon-dsu,num_dependents_deps.dev:0 github.com/rinsuki/lz4-ts,num_dependents_deps.dev:0 +github.com/rinsuki/setup-swift-windows, github.com/rinswind/distributed-greeter,num_dependents_deps.dev:0 github.com/rinthel/word_replace,num_dependents_deps.dev:0 github.com/rinti/booli-api,num_dependents_deps.dev:0 @@ -982327,6 +999997,8 @@ github.com/rinvex/laravel-bookings,criticality_score:0.319430 github.com/rinvex/laravel-subscriptions,criticality_score:0.312160 github.com/rinx/alvd,num_dependents_deps.dev:0 github.com/rinx/hy-language-server, +github.com/rinx/setup-graalvm-ce, +github.com/rinx/setup-k3d, github.com/rinx/tokusub,num_dependents_deps.dev:0 github.com/rinzi/robotstxt,num_dependents_deps.dev:0 github.com/rinzi/rwspider,num_dependents_deps.dev:0 @@ -982564,6 +1000236,8 @@ github.com/ripplejs/ripple,num_dependents_deps.dev:0 github.com/ripplejs/waves,num_dependents_deps.dev:0 github.com/ripplerm/ripplelib,num_dependents_deps.dev:0 github.com/ripplerm/steem-lib,num_dependents_deps.dev:0 +github.com/ripplr-io/docr-docker-publish, +github.com/ripplr-io/docr-image-remove, github.com/ripr0ach/water_warriors,num_dependents_deps.dev:0 github.com/riprasad/data-model-test,num_dependents_deps.dev:0 github.com/riprasad/deploy-zip-to-maven-example,num_dependents_deps.dev:0 @@ -982571,6 +1000245,7 @@ github.com/riprasad/gitub-actions-demo,num_dependents_deps.dev:0 github.com/riprasad/studio-test,num_dependents_deps.dev:0 github.com/ripreact/hsl,num_dependents_deps.dev:0 github.com/ripreact/logger,num_dependents_deps.dev:0 +github.com/rips/github-action-scan, github.com/rips/java-connector,num_dependents_deps.dev:0 github.com/rips/maven-plugin,num_dependents_deps.dev:0 github.com/ripta/diceware,num_dependents_deps.dev:0 @@ -982617,9 +1000292,11 @@ github.com/rirze/mirobot-py, github.com/risaacr/clip_table, github.com/risacan/utapri,num_dependents_deps.dev:0 github.com/risacher/ep_linkify2, +github.com/risadams/contributors-update, github.com/risadams/klog,num_dependents_deps.dev:0 github.com/risadams/lingerprint, github.com/risadams/rocketboost,num_dependents_deps.dev:0 +github.com/risadams/update-md-rss, github.com/risafletcher/cldr-language-country,num_dependents_deps.dev:0 github.com/risafletcher/google-news,num_dependents_deps.dev:0 github.com/risan/country-flag-emoji,num_dependents_deps.dev:0 @@ -982700,6 +1000377,7 @@ github.com/rise-cli/rise-utils,num_dependents_deps.dev:0 github.com/rise-cloud/rise,num_dependents_deps.dev:0 github.com/rise-ui/jss_derive,num_dependents_deps.dev:0 github.com/rise-ui/raqm-rs,num_dependents_deps.dev:0 +github.com/rise-worlds/gha-find-replace, github.com/rise0chen/daemon_ctrl,num_dependents_deps.dev:0 github.com/rise0chen/fixed-queue,num_dependents_deps.dev:9 github.com/rise0chen/hexo-deployer-qiniucloud,num_dependents_deps.dev:0 @@ -982718,6 +1000396,7 @@ github.com/risecorejs/validator,num_dependents_deps.dev:0 github.com/risedigital/eslint-config-rise,num_dependents_deps.dev:0 github.com/risedigital/react-native-device-time-format,num_dependents_deps.dev:0 github.com/risedigital/react-native-floating-label-text-input,num_dependents_deps.dev:0 +github.com/risedle/setup-dapptools, github.com/riseforest/postcss-merge-rules2,num_dependents_deps.dev:0 github.com/risehide/fis3-parser-babelbbk,num_dependents_deps.dev:0 github.com/risenW/datasist, @@ -982732,8 +1000411,10 @@ github.com/riser-platform/riser-server,num_dependents_deps.dev:0 github.com/riseres/niceloop-paper,num_dependents_deps.dev:0 github.com/rises-tech/ecws, github.com/riseshia/oneshot_coverage,num_dependents_deps.dev:0 +github.com/risetechnologies/lcov-reporter-action, github.com/risevision/rise-js-sdk,num_dependents_deps.dev:3 github.com/risevision/risejs, +github.com/risfeng/docker-image-build-push-action, github.com/rish-0-0/astroreha,num_dependents_deps.dev:0 github.com/rish-0-0/nirmaan, github.com/rish-16/aft-pytorch, @@ -982779,6 +1000460,8 @@ github.com/rishabhbatra10/in, github.com/rishabhbhatia/react-native-awesome-alerts,"criticality_score:0.327510,num_dependents_deps.dev:0" github.com/rishabhbhatia/react-native-swipeview,num_dependents_deps.dev:0 github.com/rishabhdeepsingh/IntugineHelper, +github.com/rishabhgupta/git-action-issue, +github.com/rishabhgupta/split-by, github.com/rishabhio/aayega,num_dependents_deps.dev:0 github.com/rishabhio/hora,num_dependents_deps.dev:0 github.com/rishabhjha33/tf-osqp, @@ -982788,6 +1000471,8 @@ github.com/rishabhkumar/tezi,num_dependents_deps.dev:0 github.com/rishabhleaps/mandara-md5,num_dependents_deps.dev:0 github.com/rishabhmhjn/helios,num_dependents_deps.dev:0 github.com/rishabhmhjn/kaomoji,num_dependents_deps.dev:0 +github.com/rishabhrao/actions-export-aws-params, +github.com/rishabhrao/s3-website-https-pr-action, github.com/rishabhs1010/cowin-slots-notifier,num_dependents_deps.dev:0 github.com/rishabhsingh971/persession, github.com/rishabhsrao/generator-ironhide-webapp,num_dependents_deps.dev:0 @@ -982899,6 +1000584,8 @@ github.com/riskhn/articles-api,num_dependents_deps.dev:0 github.com/riskieee/multihello,num_dependents_deps.dev:0 github.com/riskiq/python_api, github.com/riskiramdan/tiktok-web-scrapper,num_dependents_deps.dev:0 +github.com/riskledger/generate-changelog, +github.com/riskledger/update-pr-description, github.com/riskpenguin/armstrong,num_dependents_deps.dev:0 github.com/riskpenguin/node-carweb,num_dependents_deps.dev:0 github.com/riskpenguin/node-hpi,num_dependents_deps.dev:0 @@ -982958,6 +1000645,7 @@ github.com/ristomatti/node-red-contrib-node-lifx,num_dependents_deps.dev:0 github.com/riston/imdb-rscraper,num_dependents_deps.dev:0 github.com/riston/rgsms,num_dependents_deps.dev:0 github.com/risuney/molecule-css,num_dependents_deps.dev:0 +github.com/risuorg/gh-action-risu, github.com/risuorg/risu, github.com/risurina/rn-tailwindcss,num_dependents_deps.dev:0 github.com/risyard/efishery-task,num_dependents_deps.dev:0 @@ -983046,6 +1000734,7 @@ github.com/rith-io/rith-core, github.com/rithgan/businessCard,num_dependents_deps.dev:0 github.com/rithik/DateJS, github.com/rithikachowta08/react-realtime-chat,num_dependents_deps.dev:0 +github.com/rithikasilva/readme-lol-stats, github.com/rithikjain/motorq-task-backend,num_dependents_deps.dev:0 github.com/rithinch/pytspsolver, github.com/rithis/blanche, @@ -983082,6 +1000771,7 @@ github.com/ritikjain51/markov-chain-attribution, github.com/ritikmishra/anacreonlib, github.com/ritikrajdev/topsic-calci, github.com/ritikrana4/relu, +github.com/ritin-bhardwaj/test-github-actions, github.com/ritishgumber/availdom,num_dependents_deps.dev:0 github.com/ritishgumber/flipkart-affiliate,num_dependents_deps.dev:0 github.com/ritishgumber/inshorts,num_dependents_deps.dev:0 @@ -983152,6 +1000842,7 @@ github.com/ritz078/snape-config,num_dependents_deps.dev:0 github.com/ritz078/socialShare.js,num_dependents_deps.dev:0 github.com/ritz078/starring,num_dependents_deps.dev:0 github.com/ritz078/transform,criticality_score:0.398650 +github.com/ritz1993/go-action, github.com/ritzyed/ritzy,num_dependents_deps.dev:0 github.com/ritzykey/turkey-district-maps,num_dependents_deps.dev:0 github.com/riu-web/odom,num_dependents_deps.dev:0 @@ -983211,6 +1000902,7 @@ github.com/riverKangg/nmr_classifier, github.com/riverajohndaniel/merge-pdf-buffers,num_dependents_deps.dev:0 github.com/riveramj/hubot-yardmaster,num_dependents_deps.dev:0 github.com/riverar/anzu, +github.com/rivercitytech/action-workflow_run-status, github.com/riverfang/gitbook-plugin-theme-integration,num_dependents_deps.dev:0 github.com/riverlane/QHAL, github.com/riverlane/deltalanguage, @@ -983311,6 +1001003,7 @@ github.com/rix1337/ClickNLoad2FeedCrawler, github.com/rix1337/FeedCrawler, github.com/rix1337/MyJD-API, github.com/rix1337/docker-wakeonlan, +github.com/rix1337/label-sponsor-or-not-action, github.com/rixagis/wb-level-1,num_dependents_deps.dev:0 github.com/rixingyike/sim.go,num_dependents_deps.dev:0 github.com/rixius/prototype.node.js,num_dependents_deps.dev:3 @@ -983469,6 +1001162,7 @@ github.com/rizkyrmsyah/gin-gonic-boilerplate,num_dependents_deps.dev:0 github.com/rizkyrmsyah/golang-api,num_dependents_deps.dev:0 github.com/rizkyrnldy/RN-Tracker,num_dependents_deps.dev:0 github.com/rizkysyazuli/compass-html5-starter,num_dependents_deps.dev:0 +github.com/riznob/packer-build-action, github.com/rizoadev/monga, github.com/rizoadev/rizamonga, github.com/rizoadev/rizapubsub, @@ -983757,6 +1001451,7 @@ github.com/rjohnsondev/java-libpst,num_dependents_deps.dev:749 github.com/rjorgenson/how-to-npm,num_dependents_deps.dev:0 github.com/rjos/perturbation-classifiers, github.com/rjoyal/domain_shared_contacts_client, +github.com/rjoydip-zz/googlesheet-actions, github.com/rjoydip/array-emojify,num_dependents_deps.dev:0 github.com/rjoydip/array-to-archy,num_dependents_deps.dev:0 github.com/rjoydip/array-treefy,num_dependents_deps.dev:0 @@ -983920,10 +1001615,12 @@ github.com/rjstanford/spreedly-java,num_dependents_deps.dev:10 github.com/rjsteinert/couchdb-wedge,num_dependents_deps.dev:0 github.com/rjsteinert/dat-party,num_dependents_deps.dev:0 github.com/rjstires/react-loadable,num_dependents_deps.dev:0 +github.com/rjstone/discord-webhook-notify, github.com/rjsvaljean/python-testing-tools, github.com/rjsvaljean/rubycious,num_dependents_deps.dev:0 github.com/rjt-rockx/mee6-levels-api,num_dependents_deps.dev:0 github.com/rjtanner/StarburstPy, +github.com/rjtngit/nunit-html-action, github.com/rjtt17/command-line-game,num_dependents_deps.dev:0 github.com/rjurney/Agile_Data_Code_2,criticality_score:0.321750 github.com/rjust/defects4j,criticality_score:0.484180 @@ -984094,6 +1001791,7 @@ github.com/rkgttr/rkgttr-q,num_dependents_deps.dev:0 github.com/rkgttr/rkgttr-uuid,num_dependents_deps.dev:0 github.com/rkh/mixico,num_dependents_deps.dev:0 github.com/rkhaimov/ms-learn,num_dependents_deps.dev:0 +github.com/rkhaslarov/codeowners-validator-action, github.com/rkhayat/grid-ui,num_dependents_deps.dev:0 github.com/rkhayat/react-pose-act,num_dependents_deps.dev:0 github.com/rkhayat/styled-components-kit,num_dependents_deps.dev:0 @@ -984175,6 +1001873,8 @@ github.com/rkneufeld/botfly,num_dependents_deps.dev:0 github.com/rknguyen/rkrouter,num_dependents_deps.dev:0 github.com/rknizzle/node-admesh,num_dependents_deps.dev:0 github.com/rknizzle/re,num_dependents_deps.dev:0 +github.com/rknj/dependencies-updates-action, +github.com/rknj/html2markdown, github.com/rkoeninger/ShenScript,num_dependents_deps.dev:0 github.com/rkoeninger/lunacy,num_dependents_deps.dev:0 github.com/rkoesters/xdg,num_dependents_deps.dev:0 @@ -984223,6 +1001923,7 @@ github.com/rkrayovskyy/koa-req-id,num_dependents_deps.dev:0 github.com/rkrdo/node-shipping-tracker,num_dependents_deps.dev:0 github.com/rkrdovrgs/ts-moq,num_dependents_deps.dev:0 github.com/rkretzschmar/onesky-fetch,num_dependents_deps.dev:0 +github.com/rkretzschmar/patch-yaml-inside-yaml, github.com/rkretzschmar/verdaccio-gae-ah,num_dependents_deps.dev:0 github.com/rkrikbaev/pyfaceplateclient, github.com/rkrishn7/Funk,num_dependents_deps.dev:0 @@ -984293,6 +1001994,7 @@ github.com/rkusa/gulp-es6-module-transpiler,num_dependents_deps.dev:0 github.com/rkusa/implode,num_dependents_deps.dev:0 github.com/rkusa/jacuzzi,num_dependents_deps.dev:0 github.com/rkusa/jquery-observe,num_dependents_deps.dev:0 +github.com/rkusa/keel-webhook-action, github.com/rkusa/koa-formidable,num_dependents_deps.dev:22 github.com/rkusa/koa-passport,"criticality_score:0.309230,num_dependents_deps.dev:354" github.com/rkusa/nested-observe,num_dependents_deps.dev:0 @@ -984364,6 +1002066,7 @@ github.com/rlafranchi/vuex-rails-plugin,num_dependents_deps.dev:0 github.com/rlafuente/datapackage-validator, github.com/rlafuente/mysql2csv, github.com/rlagorio/platzom, +github.com/rlalik/setup-cpp-compiler, github.com/rlam3/project-euler-solutions,num_dependents_deps.dev:0 github.com/rlama/testpackage,num_dependents_deps.dev:0 github.com/rlamana/docusaurus-plugin-copy,num_dependents_deps.dev:0 @@ -984416,6 +1002119,7 @@ github.com/rlayte/jstestdriver-wrapper, github.com/rlayte/kickstart, github.com/rlazarini/mask-form,num_dependents_deps.dev:0 github.com/rlazarini/validate-my-form,num_dependents_deps.dev:0 +github.com/rlazimi-dev/helm, github.com/rlball/uri,num_dependents_deps.dev:0 github.com/rlcalmeida/mca, github.com/rlcx/zob,num_dependents_deps.dev:0 @@ -984455,7 +1002159,13 @@ github.com/rlemos37/libpytthonpro, github.com/rlepore/django-sticky-messages, github.com/rleroi/progress-bar-4-axios,num_dependents_deps.dev:0 github.com/rlesniak/react-basic-dropdown,num_dependents_deps.dev:0 +github.com/rlespinasse/drawio-export-action, github.com/rlespinasse/drawio-exporter,num_dependents_deps.dev:0 +github.com/rlespinasse/git-commit-data-action, +github.com/rlespinasse/github-slug-action, +github.com/rlespinasse/release-that, +github.com/rlespinasse/shortify-git-revision, +github.com/rlespinasse/slugify-value, github.com/rlespinasse/wints,num_dependents_deps.dev:0 github.com/rleszilm/gen_microservice,num_dependents_deps.dev:0 github.com/rleszilm/genms,num_dependents_deps.dev:0 @@ -984606,12 +1002316,14 @@ github.com/rluisr/coolink,num_dependents_deps.dev:0 github.com/rluisr/ecssc,num_dependents_deps.dev:0 github.com/rluisr/mfool,num_dependents_deps.dev:0 github.com/rluisr/mysqlrouter-go,num_dependents_deps.dev:0 +github.com/rluisr/nomad-action, github.com/rluncasu/react-pdf,num_dependents_deps.dev:0 github.com/rluncasu/react-to-print,num_dependents_deps.dev:0 github.com/rlurye/skdd, github.com/rlustin/typographic-linter,num_dependents_deps.dev:0 github.com/rluvaton/bulk-npm-publish,num_dependents_deps.dev:0 github.com/rluvaton/connection-monitor,num_dependents_deps.dev:0 +github.com/rluvaton/get-strongest-label-in-pr-action, github.com/rluvaton/nexus-migration-util,num_dependents_deps.dev:0 github.com/rlvdx/word-counter,num_dependents_deps.dev:0 github.com/rlwhatley3/awaits,num_dependents_deps.dev:0 @@ -984659,6 +1002371,7 @@ github.com/rm-rf-etc/reduxlite,num_dependents_deps.dev:0 github.com/rm-rf-etc/simple-shared-state,num_dependents_deps.dev:0 github.com/rm-rf-etc/weir,num_dependents_deps.dev:0 github.com/rm127/leetcode,num_dependents_deps.dev:0 +github.com/rm3l/container-scan-to-sarif-action, github.com/rm3l/maoni,num_dependents_deps.dev:0 github.com/rm3l/service-names-port-numbers,num_dependents_deps.dev:0 github.com/rm3rdmodules/react-native-airbridge,num_dependents_deps.dev:0 @@ -984703,6 +1002416,7 @@ github.com/rmacklin/gulp-purifycss,num_dependents_deps.dev:0 github.com/rmacklin/idb,num_dependents_deps.dev:0 github.com/rmacklin/rollup-plugin-fingerprint,num_dependents_deps.dev:0 github.com/rmacklin/sass-graph,num_dependents_deps.dev:0 +github.com/rmacklin/team-sync, github.com/rmad17/djanjo-initiate, github.com/rmad17/pyreqs, github.com/rmadamanchi/go-input,num_dependents_deps.dev:0 @@ -984713,6 +1002427,8 @@ github.com/rmagick/rmagick,criticality_score:0.572290 github.com/rmagur1203/CustomFunctions,num_dependents_deps.dev:0 github.com/rmagur1203/self-diagnosis,num_dependents_deps.dev:0 github.com/rmakerck37/SqueezeNews, +github.com/rmakovyak/list-yml-keys-action, +github.com/rmakovyak/search-workflow-action, github.com/rmalchow/angular-plugin,num_dependents_deps.dev:0 github.com/rmallow/requiremental, github.com/rmalveis/report-portal-client-go,num_dependents_deps.dev:0 @@ -984859,6 +1002575,7 @@ github.com/rmb122/remoteCLI, github.com/rmb938/clify, github.com/rmb938/ingredients.http, github.com/rmb938/pyk8s-controller, +github.com/rmb938/sops-decrypt-action, github.com/rmb938/tailscale-cni,num_dependents_deps.dev:0 github.com/rmb938/vmw-cloudinit-metadata, github.com/rmberne/prometheus-api-metrics,num_dependents_deps.dev:0 @@ -984954,6 +1002671,12 @@ github.com/rmeissner/py-eth-sig-utils, github.com/rmelo/simple-cqrs,num_dependents_deps.dev:0 github.com/rmemoria/grunt-i18n-template, github.com/rmendelovits/ZFlang,num_dependents_deps.dev:0 +github.com/rmeneely/create-jira-issues, +github.com/rmeneely/get-yaml-value, +github.com/rmeneely/git-cherry-pick-commits, +github.com/rmeneely/git-last-tag, +github.com/rmeneely/git-next-version, +github.com/rmeneely/update-yaml, github.com/rmeno12/craft-parser, github.com/rmeno12/gcodepy, github.com/rmera/examples_gochem,num_dependents_deps.dev:0 @@ -985062,6 +1002785,7 @@ github.com/rmmpaderes/ember-indexeddb-adapter, github.com/rmn528/Platzon,num_dependents_deps.dev:0 github.com/rmnl/clack, github.com/rmnobarra/golang_do_zero,num_dependents_deps.dev:0 +github.com/rmnobarra/runtime-deploy, github.com/rmoff/ksqldb-go,num_dependents_deps.dev:0 github.com/rmoff/rmoff-blog,num_dependents_deps.dev:0 github.com/rmoff/rmoff.github.io,num_dependents_deps.dev:0 @@ -985180,6 +1002904,7 @@ github.com/rmsare/scarplet, github.com/rmschots/ng2-vdab-huisstijl,num_dependents_deps.dev:0 github.com/rmshaffer/pickle-slicer, github.com/rmshaffer/stoq-compiler, +github.com/rmshub/esp-idf-action, github.com/rmsj/strip_comments,num_dependents_deps.dev:0 github.com/rmsolgi/geneticalgorithm, github.com/rmsone/slick-cats,num_dependents_deps.dev:0 @@ -985289,6 +1003014,7 @@ github.com/rnag/wystia, github.com/rnaga/wordpress-rest-admin,num_dependents_deps.dev:0 github.com/rnagatama/emberhbsfy,num_dependents_deps.dev:0 github.com/rnair86/godemo-bkstore_users-api,num_dependents_deps.dev:0 +github.com/rnakamine/azure-files-upload, github.com/rnakamine/blobcli, github.com/rnakamine/go-test-example,num_dependents_deps.dev:0 github.com/rnakamine/gopherdojo-studyroom,num_dependents_deps.dev:0 @@ -985492,6 +1003218,7 @@ github.com/rnjailamba/message_client_on_socketio,num_dependents_deps.dev:0 github.com/rnjailamba/randomNumberAndWordGenerator,num_dependents_deps.dev:0 github.com/rnjailamba/urlGenerator,num_dependents_deps.dev:0 github.com/rnjshippo/react-code-generator,num_dependents_deps.dev:0 +github.com/rnkdsh/action-upload-diawi, github.com/rnkids/styled-system-native,num_dependents_deps.dev:0 github.com/rnkit/react-native-gifted-listview, github.com/rnkit/rnkit-actionsheet-picker,num_dependents_deps.dev:0 @@ -985683,6 +1003410,7 @@ github.com/roaldnefs/go-gitlab,num_dependents_deps.dev:0 github.com/roaldnefs/kpn-api-store-python, github.com/roaldnefs/python-darwin, github.com/roaldnefs/python-transip, +github.com/roaldnefs/salt-lint-action, github.com/roalli88/QDICTION, github.com/roalonso/storybook-screenshot-schematics,num_dependents_deps.dev:0 github.com/roam-ai/roam-js,num_dependents_deps.dev:0 @@ -985730,6 +1003458,7 @@ github.com/roatienza/straug, github.com/roatnek/node-replace-with-dictionary,num_dependents_deps.dev:0 github.com/roaugusto/react-timeline,num_dependents_deps.dev:0 github.com/roava/bifrost,num_dependents_deps.dev:0 +github.com/roave/no-floaters, github.com/roave/shorty, github.com/roax/roax, github.com/roax/roax-geo, @@ -985787,6 +1003516,9 @@ github.com/rob-blackbourn/jetblack-wasi-marshalling,num_dependents_deps.dev:0 github.com/rob-blackbourn/motorodm, github.com/rob-dalton/pandas-etl-pipeline, github.com/rob-dalton/pretty-pipeline, +github.com/rob-derosa/action-policy, +github.com/rob-derosa/package-policy, +github.com/rob-derosa/pii-detection, github.com/rob-deutsch/go-npm-private,num_dependents_deps.dev:0 github.com/rob-dev-builder/utils,num_dependents_deps.dev:0 github.com/rob-moore/fvi-angular-mentions,num_dependents_deps.dev:0 @@ -985836,6 +1003568,7 @@ github.com/rob9315/2b2wts, github.com/rob9315/mcproxy,num_dependents_deps.dev:0 github.com/rob9315/prettier-config, github.com/rob94p/alexa-show-builder,num_dependents_deps.dev:0 +github.com/robBowes/jest-coverage-report-action, github.com/robBowes/toolKit,num_dependents_deps.dev:0 github.com/robCrawford/jetix,num_dependents_deps.dev:0 github.com/robKitson/geektool_kit,num_dependents_deps.dev:0 @@ -985895,6 +1003628,8 @@ github.com/robatipoor/snake-case-rename,num_dependents_deps.dev:0 github.com/robatron/atom-figletify,num_dependents_deps.dev:0 github.com/robatron/gulp-chug,num_dependents_deps.dev:0 github.com/robatussum/ds,num_dependents_deps.dev:0 +github.com/robatwave/github-action-eks-kubectl, +github.com/robatwave/github-action-eksctl, github.com/robatwilliams/es-compat,num_dependents_deps.dev:0 github.com/robatwilliams/flickr-files-renamer,num_dependents_deps.dev:0 github.com/robatwilliams/mmex2json,num_dependents_deps.dev:0 @@ -985977,6 +1003712,7 @@ github.com/robbie-c/isologger-web,num_dependents_deps.dev:0 github.com/robbie-c/js-set-functions,num_dependents_deps.dev:0 github.com/robbie-c/react-imgur-embed,num_dependents_deps.dev:0 github.com/robbie-c/universalevents, +github.com/robbie-unlikelyai/amazon-ecs-run-task, github.com/robbie0630/lazy-task-queue,num_dependents_deps.dev:0 github.com/robbie08/gograph,num_dependents_deps.dev:0 github.com/robbie08/gopitest,num_dependents_deps.dev:0 @@ -986059,6 +1003795,7 @@ github.com/robbtraister/aws-promises,num_dependents_deps.dev:0 github.com/robbtraister/okta-promises,num_dependents_deps.dev:0 github.com/robbtraister/shell-watcher,num_dependents_deps.dev:0 github.com/robbtraister/thumbor,num_dependents_deps.dev:2 +github.com/robburger/terraform-pr-commenter, github.com/robby/clusterer,num_dependents_deps.dev:0 github.com/robby/colors.js,num_dependents_deps.dev:0 github.com/robby/node-lru-cache-cluster,num_dependents_deps.dev:0 @@ -986228,6 +1003965,8 @@ github.com/robert-lieck/pyulib, github.com/robert-lieck/treeparser, github.com/robert-luoqing/grunt-multiple-pages-angular,num_dependents_deps.dev:0 github.com/robert-luoqing/react-native-gc-list-view, +github.com/robert-matusewicz/leanpub-preview-action, +github.com/robert-matusewicz/leanpub-publish-action, github.com/robert-mcdermott/gaia,num_dependents_deps.dev:0 github.com/robert-ostensen/ldap_iam,num_dependents_deps.dev:0 github.com/robert-pkg/gateway,num_dependents_deps.dev:0 @@ -986350,6 +1004089,11 @@ github.com/robertcsapo/ciscodnacnetbox, github.com/robertcsapo/ciscotmg, github.com/robertdavidgraham/masscan,criticality_score:0.467200 github.com/robertdavidwest/google_api, +github.com/robertdebock/galaxy-action, +github.com/robertdebock/graphviz-action, +github.com/robertdebock/molecule-action, +github.com/robertdebock/rpmbuild-action, +github.com/robertdebock/terraform-action, github.com/robertdfrench/portunusd,num_dependents_deps.dev:0 github.com/robertdfrench/rusty-doors,num_dependents_deps.dev:0 github.com/robertdimarco/passport-google-token,num_dependents_deps.dev:0 @@ -986407,6 +1004151,7 @@ github.com/roberthein/Observable,criticality_score:0.318480 github.com/robertherber/clock-format-utility,num_dependents_deps.dev:0 github.com/robertherber/eslint-config-kingstinct-react-native,num_dependents_deps.dev:0 github.com/robertherber/find-and-replace-immutable,num_dependents_deps.dev:0 +github.com/robertherber/github-action-bump-eas-buildnumber, github.com/robertherber/graphql-datetime-with-offset, github.com/robertherber/kingstinct-utils, github.com/robertherber/localforage-expo-filesystem-driver,num_dependents_deps.dev:0 @@ -986678,6 +1004423,7 @@ github.com/robertomiranda/delegated_type,num_dependents_deps.dev:0 github.com/robertomiranda/mini_mongo,num_dependents_deps.dev:0 github.com/robertomlsoares/leaflet-offline,num_dependents_deps.dev:0 github.com/robertomlsoares/trophyfetcher, +github.com/robertomoutinho/gh-action-ecs-deploy, github.com/robertons/bravaorm, github.com/robertons/bravaweb, github.com/robertons/dbmodelpy, @@ -986773,6 +1004519,7 @@ github.com/robertsoniv/test-core,num_dependents_deps.dev:0 github.com/robertsonmcclure/redux-obtain,num_dependents_deps.dev:0 github.com/robertsonsamuel/blue-state-digital,num_dependents_deps.dev:0 github.com/robertsozolins/svelte-responsive-images,num_dependents_deps.dev:0 +github.com/robertstefan/Transform-XML-Using-XSLT, github.com/robertstettner/elasticsearch-csv,num_dependents_deps.dev:0 github.com/robertstettner/mocha-plugin-highland,num_dependents_deps.dev:0 github.com/robertsundstrom/es-template-renderer,num_dependents_deps.dev:0 @@ -986889,6 +1004636,7 @@ github.com/robhdawson/blather,num_dependents_deps.dev:0 github.com/robhdawson/formulatrix,num_dependents_deps.dev:0 github.com/robhendriks/gulp-modelsbuilder,num_dependents_deps.dev:0 github.com/robhendriks/modelsbuilder-api,num_dependents_deps.dev:0 +github.com/robherley/go-test-action, github.com/robhicks/es2015-Promise.allSettled,num_dependents_deps.dev:0 github.com/robhicks/es2015-router,num_dependents_deps.dev:0 github.com/robhicks/financejs,num_dependents_deps.dev:0 @@ -987003,6 +1004751,8 @@ github.com/robinandeer/flask-sqlservice, github.com/robinandeer/puzzle, github.com/robinandeer/pymip, github.com/robinandeer/react-caterpillar,num_dependents_deps.dev:0 +github.com/robinatwork1999/trigeerwf, +github.com/robinatwork1999/triggersync, github.com/robinbentley/hyper-oceanic-next,num_dependents_deps.dev:0 github.com/robinbentley/time-picker-luxon,num_dependents_deps.dev:0 github.com/robinbowes/go-datadog-api,num_dependents_deps.dev:0 @@ -987035,6 +1004785,7 @@ github.com/robinduckett/nicetime,num_dependents_deps.dev:0 github.com/robinduckett/nimh, github.com/robinduckett/quartz,num_dependents_deps.dev:0 github.com/robinduckett/winston-chill,num_dependents_deps.dev:0 +github.com/robineco/vuepress-deploy, github.com/robinedwards/django-neomodel, github.com/robinedwards/neomodel, github.com/robinfaber97/NetLogoDOE, @@ -987082,6 +1004833,7 @@ github.com/robinhuiser/testing-with-go,num_dependents_deps.dev:0 github.com/robinhultman/generator-biztalk,num_dependents_deps.dev:0 github.com/robinhultman/generator-biztalkcomponents,num_dependents_deps.dev:0 github.com/robinhultman/generator-biztalkpipelinecomponent,num_dependents_deps.dev:0 +github.com/robiningelbrecht/apache-echarts-action, github.com/robinisaksson/verktyget,num_dependents_deps.dev:0 github.com/robinj/gulp-merge-json,num_dependents_deps.dev:0 github.com/robinjfisher/Touchstone,num_dependents_deps.dev:0 @@ -987107,6 +1004859,7 @@ github.com/robinjulien/rblog,num_dependents_deps.dev:0 github.com/robinjulien/rcloud,num_dependents_deps.dev:0 github.com/robinkc/What-The-Shell, github.com/robinkc/iWeYou,num_dependents_deps.dev:0 +github.com/robinkonrad/azureupdates2hugo-action, github.com/robinlabonde/strcase,num_dependents_deps.dev:0 github.com/robinlloyd/react-ui-library,num_dependents_deps.dev:0 github.com/robinlloyd/sometaku-ui,num_dependents_deps.dev:0 @@ -987179,6 +1004932,7 @@ github.com/robinradic/node-radic-handlebars,num_dependents_deps.dev:0 github.com/robinradic/npm-packages,num_dependents_deps.dev:0 github.com/robinradic/radic-cli,num_dependents_deps.dev:0 github.com/robinradic/wow-raid-icons,num_dependents_deps.dev:0 +github.com/robinraju/release-downloader, github.com/robinramael/django-list-tests, github.com/robinramael/prepared_properties, github.com/robinrodricks/FluentFTP,criticality_score:0.498120 @@ -987226,6 +1004980,7 @@ github.com/robintw/daterangeparser, github.com/robinus2/presto-bloomfilter,num_dependents_deps.dev:0 github.com/robinv/iconfont-generator,num_dependents_deps.dev:0 github.com/robinvandernoord/compact, +github.com/robinvarshn/platform-sync, github.com/robinvdvleuten/chronicle, github.com/robinvdvleuten/faktory,num_dependents_deps.dev:0 github.com/robinvdvleuten/flucon,num_dependents_deps.dev:0 @@ -987245,6 +1005000,7 @@ github.com/robinvdvleuten/vuex-persistedstate,"criticality_score:0.500590,num_de github.com/robinwassen/electron-wallpaper,num_dependents_deps.dev:0 github.com/robinwassen/forcefocus,num_dependents_deps.dev:0 github.com/robinwebber/lotide,num_dependents_deps.dev:0 +github.com/robinwelin/gae-version-cleanup, github.com/robinweser/bs-locale-code,num_dependents_deps.dev:0 github.com/robinweser/css-in-js-utils,num_dependents_deps.dev:818 github.com/robinweser/elodin,num_dependents_deps.dev:52 @@ -987492,6 +1005248,8 @@ github.com/robocomp/LearnBlock, github.com/robocomp/learnbot, github.com/roboconf/roboconf-parent,num_dependents_deps.dev:0 github.com/roboconf/roboconf-platform,num_dependents_deps.dev:5 +github.com/robocorp/action-trigger-process, +github.com/robocorp/action-upload-robot, github.com/robocorp/inspector, github.com/robocorp/java-access-bridge-wrapper, github.com/robocorp/pynput, @@ -987703,6 +1005461,7 @@ github.com/robotkarl/MegafonAPI, github.com/robotkudos/rk-form-validator, github.com/robotlearn/pyrobolearn, github.com/robotlegs/robotlegs-framework,criticality_score:0.301970 +github.com/robotlegsjs/robotlegsjs-framework, github.com/robotlolita/alright, github.com/robotlolita/fuck-you,num_dependents_deps.dev:0 github.com/robotlolita/helm,num_dependents_deps.dev:0 @@ -987728,7 +1005487,9 @@ github.com/robotnoises/Bricks,num_dependents_deps.dev:0 github.com/robotnoises/ColorfulCharacters,num_dependents_deps.dev:0 github.com/robotnoises/Doorman,num_dependents_deps.dev:0 github.com/robotnoises/flash-carousel-react-native,num_dependents_deps.dev:0 +github.com/robotnyc/vacation-mode-action, github.com/robotoD/GenoVi, +github.com/robotology/gh-action-nightly-merge, github.com/robotology/gym-ignition, github.com/robotology/gym-ignition-models, github.com/robotology/idyntree,Google @@ -987737,6 +1005498,7 @@ github.com/robotomize/correlation-rank, github.com/robotomize/koa2-useragent,num_dependents_deps.dev:0 github.com/robotomize/metanol,num_dependents_deps.dev:0 github.com/robotomize/methanool,num_dependents_deps.dev:0 +github.com/robotomize/notify-telegram, github.com/robotomize/pearson-correlation-rank,num_dependents_deps.dev:0 github.com/robotomize/wilson-interval.js,num_dependents_deps.dev:0 github.com/robotoms/termice,num_dependents_deps.dev:0 @@ -987823,6 +1005585,9 @@ github.com/roboy/ravestate, github.com/roboy/scientio, github.com/roboy/soncreo, github.com/robpalme/global-apocalypse,num_dependents_deps.dev:0 +github.com/robpc/godot-build-info-action, +github.com/robpc/godot-export-action, +github.com/robpc/itchio-upload-action, github.com/robpe/multi_dispatch,num_dependents_deps.dev:0 github.com/robphilipp/coordinates,num_dependents_deps.dev:0 github.com/robphilipp/hashed-wheel-timer,num_dependents_deps.dev:0 @@ -988084,6 +1005849,7 @@ github.com/robuxto/quickfix,num_dependents_deps.dev:0 github.com/robvanbakel/gotiny-sdk,num_dependents_deps.dev:0 github.com/robvanderleek/JLifx,num_dependents_deps.dev:0 github.com/robvanderleek/backpack,num_dependents_deps.dev:0 +github.com/robvanderleek/create-issue-branch, github.com/robw2000/EventfulLife,num_dependents_deps.dev:0 github.com/robw2000/mathistutils,num_dependents_deps.dev:0 github.com/robwalkerco/gatsby-plugin-compile-es6-packages,num_dependents_deps.dev:354 @@ -988128,6 +1005894,7 @@ github.com/robyfirnandoyusuf/go-blind-sqli,num_dependents_deps.dev:0 github.com/robymus/jetty-ws-wrapper,num_dependents_deps.dev:0 github.com/robymus/simple-pem-keystore,num_dependents_deps.dev:0 github.com/robymus/webrtc-codec-support,num_dependents_deps.dev:0 +github.com/robyoung/throttle, github.com/robyoung/tplinker,num_dependents_deps.dev:0 github.com/robyoung/y2j,num_dependents_deps.dev:0 github.com/robyparr/elegant-editor,num_dependents_deps.dev:0 @@ -988152,6 +1005919,7 @@ github.com/robzsk/swagger-ui-alone,num_dependents_deps.dev:0 github.com/roc-streaming/roc-go,num_dependents_deps.dev:0 github.com/roc-streaming/roc-toolkit,criticality_score:0.337470 github.com/roc-zhou/go-util-package,num_dependents_deps.dev:0 +github.com/roc/link-checker, github.com/rocLv/alisms,num_dependents_deps.dev:0 github.com/roca-components/sticky-table-headers,num_dependents_deps.dev:0 github.com/roca/must,num_dependents_deps.dev:0 @@ -988331,6 +1006099,7 @@ github.com/rocicorp/replicache-sdk-js,num_dependents_deps.dev:0 github.com/rociiu/face,num_dependents_deps.dev:0 github.com/rocinantejs/core, github.com/rocioar/flake8-django, +github.com/rocioar/gradual-black-formatter, github.com/rocity/ngx-modal,num_dependents_deps.dev:0 github.com/rocjs/roc,num_dependents_deps.dev:44 github.com/rocjs/roc-extensions,num_dependents_deps.dev:70 @@ -988416,6 +1006185,8 @@ github.com/rockedpanda/getfile,num_dependents_deps.dev:0 github.com/rockedpanda/netease-sms,num_dependents_deps.dev:0 github.com/rockedpanda/xmlfile,num_dependents_deps.dev:0 github.com/rockem/busypie, +github.com/rockem/close-opsgenie-alert-action, +github.com/rockem/create-opsgenie-alert-action, github.com/rocker-org/rocker,criticality_score:0.493780 github.com/rocker-org/rocker-versioned,criticality_score:0.501700 github.com/rocker3011/cursoplatziJS,num_dependents_deps.dev:0 @@ -988597,6 +1006368,7 @@ github.com/rockiecn/sigtest,num_dependents_deps.dev:0 github.com/rockiecn/test-sig,num_dependents_deps.dev:0 github.com/rockiey/generator-handson,num_dependents_deps.dev:0 github.com/rockiger/slate-editor,num_dependents_deps.dev:0 +github.com/rockin-robinson/team-labeler-action, github.com/rockinblocks/rockinblocks,num_dependents_deps.dev:13 github.com/rocking-rohit/trusuggest-python, github.com/rockingdingo/deepnlp, @@ -988696,6 +1006468,7 @@ github.com/rocktavious/pyul, github.com/rocktavious/setuptools.autocythonize, github.com/rocktavious/waybill, github.com/rocktemplates/rock, +github.com/rocktimsaikia/badge-it, github.com/rocktimsaikia/meta-fetch,num_dependents_deps.dev:0 github.com/rocktimsaikia/meta-fetcher,num_dependents_deps.dev:0 github.com/rocktimsaikia/p-map-lite,num_dependents_deps.dev:0 @@ -988722,6 +1006495,7 @@ github.com/rocky/FoxySheep2, github.com/rocky/columnize,num_dependents_deps.dev:246 github.com/rocky/elisp-decompile, github.com/rocky/go-gnureadline,num_dependents_deps.dev:0 +github.com/rocky/pycdio, github.com/rocky/pycolumnize, github.com/rocky/pytest-trepan, github.com/rocky/python-decompile3,criticality_score:0.414820 @@ -988753,6 +1006527,7 @@ github.com/rocky957/rocks,num_dependents_deps.dev:0 github.com/rockyCheung/easy_echeck, github.com/rockyCheung/godwill, github.com/rockybars/objwrap-plate,num_dependents_deps.dev:0 +github.com/rockyhmchen/gh-actions-kind-env, github.com/rockykitamura/grunt-po2json,num_dependents_deps.dev:0 github.com/rockyleqc/nativescript-onesignal,num_dependents_deps.dev:0 github.com/rockyliyanlok/node-mongoose-restful-utils,num_dependents_deps.dev:0 @@ -988814,6 +1006589,7 @@ github.com/rocwind/wait-ready,num_dependents_deps.dev:0 github.com/rocwind/wechatdevtools-cli,num_dependents_deps.dev:0 github.com/rocwong/gulp-po2json-angular-translate,num_dependents_deps.dev:0 github.com/rocxteady/highlightedbutton,num_dependents_deps.dev:0 +github.com/rod-dot-codes/git-sweep-merged-and-stale, github.com/rod-hynes/psiphon-tunnel-core,num_dependents_deps.dev:0 github.com/rod-hynes/psiphon-tunnel-core-actions,num_dependents_deps.dev:0 github.com/rod-stuchi/JS-inspect,num_dependents_deps.dev:0 @@ -988900,6 +1006676,7 @@ github.com/roderickmonk/compute-orders,num_dependents_deps.dev:0 github.com/roderickmonk/demo-co, github.com/rodericksa/twittor-copy,num_dependents_deps.dev:0 github.com/roderickwang/redux-2ways-binding,num_dependents_deps.dev:2 +github.com/roderik/unfurl-dropbox-screenshots, github.com/roderland/easy-go,num_dependents_deps.dev:0 github.com/roderland/example,num_dependents_deps.dev:0 github.com/roderland/gkd,num_dependents_deps.dev:0 @@ -988966,6 +1006743,7 @@ github.com/rodluger/starry_beta, github.com/rodluger/starry_process, github.com/rodm/teamcity-dsl-extensions,num_dependents_deps.dev:0 github.com/rodmachen/lightpad-mk2,num_dependents_deps.dev:0 +github.com/rodmatos/action-create-comment, github.com/rodmax/factory-t,num_dependents_deps.dev:0 github.com/rodmcnew/angular-one-render-react-component,num_dependents_deps.dev:0 github.com/rodmcnew/layer-oriented-deep-learning-network-js,num_dependents_deps.dev:0 @@ -988975,6 +1006753,8 @@ github.com/rodmcnew/rp1,num_dependents_deps.dev:0 github.com/rodmcnew/selenium-webdriver-rp1,num_dependents_deps.dev:0 github.com/rodmcnew/tabular-sarsa,num_dependents_deps.dev:0 github.com/rodmcnew/tabular-sarsa-js, +github.com/rodnansol/commit-teller-action, +github.com/rodnansol/jbang-catalog-document-generator-action, github.com/rodney42/fritznode,num_dependents_deps.dev:0 github.com/rodney42/homenode-master,num_dependents_deps.dev:0 github.com/rodney42/homenode-node,num_dependents_deps.dev:0 @@ -989000,6 +1006780,7 @@ github.com/rodoabad/katulong,num_dependents_deps.dev:18 github.com/rodoabad/katulong-preset-rodoabad,num_dependents_deps.dev:2 github.com/rodoabad/man-in-the-mirror,num_dependents_deps.dev:0 github.com/rodoabad/stylelint-config-semantic,num_dependents_deps.dev:0 +github.com/rodobarcaaa/action-jdk-sbt-cache, github.com/rodoch/svelte-i18n,num_dependents_deps.dev:0 github.com/rodocite/binding-tools,num_dependents_deps.dev:0 github.com/rodocite/mock-promise, @@ -989044,6 +1006825,7 @@ github.com/rodr0m4/parby,num_dependents_deps.dev:0 github.com/rodralez/NaveGo,criticality_score:0.337990 github.com/rodrez/jobpy, github.com/rodri-77/eks-workshop-sample-api-service-go,num_dependents_deps.dev:0 +github.com/rodri0315/shipwright-tokens-jr, github.com/rodri042/protolodash,num_dependents_deps.dev:0 github.com/rodri90y/gdio, github.com/rodriandrade/get-arg-cp, @@ -989074,6 +1006856,7 @@ github.com/rodrigo-mesquitaa/go-copa,num_dependents_deps.dev:0 github.com/rodrigo-mesquitaa/go-movie-api,num_dependents_deps.dev:0 github.com/rodrigo-morais/angular-meetup,num_dependents_deps.dev:0 github.com/rodrigo-morais/ember-json-pretty,num_dependents_deps.dev:0 +github.com/rodrigo-nogues/github-action-install-atlassian-sdk, github.com/rodrigo-picanco/fluid-layout, github.com/rodrigo-speller/depenject,num_dependents_deps.dev:0 github.com/rodrigo-speller/depenject-express,num_dependents_deps.dev:0 @@ -989096,6 +1006879,7 @@ github.com/rodrigoalvesvieira/stellar_ruby_explorer,num_dependents_deps.dev:0 github.com/rodrigoalvesvieira/tiny_url,num_dependents_deps.dev:0 github.com/rodrigoalvesvieira/zcash_ruby_explorer,num_dependents_deps.dev:0 github.com/rodrigoap/react-chart-histogram,num_dependents_deps.dev:0 +github.com/rodrigoarias/auto-label-per-user, github.com/rodrigobaron/qafs, github.com/rodrigobaron/quick-deploy, github.com/rodrigobdz/generator-lnm,num_dependents_deps.dev:0 @@ -989140,12 +1006924,14 @@ github.com/rodrigodoering/jp_notebook_utils, github.com/rodrigodosanjosoliveira/calculator,num_dependents_deps.dev:0 github.com/rodrigodosanjosoliveira/fc2.0-ci,num_dependents_deps.dev:0 github.com/rodrigodosanjosoliveira/go-mux,num_dependents_deps.dev:0 +github.com/rodrigoea/pr-heroku-review-app, github.com/rodrigoedamatsu/logger.js,num_dependents_deps.dev:0 github.com/rodrigoehlers/fetch,num_dependents_deps.dev:0 github.com/rodrigoelemesmo/maluforce, github.com/rodrigofercav/golang_basics,num_dependents_deps.dev:0 github.com/rodrigoff/generator-3am,num_dependents_deps.dev:0 github.com/rodrigofsacht/skf, +github.com/rodrigogiraoserrao/python-black-check, github.com/rodrigograca31/Canvas2ImagePlugin,num_dependents_deps.dev:0 github.com/rodrigograca31/cordova-plugin-admob-mediation-facebook-2,num_dependents_deps.dev:0 github.com/rodrigograca31/cordova-x-filter,num_dependents_deps.dev:0 @@ -989235,6 +1007021,7 @@ github.com/rodrigosetti/probdist, github.com/rodrigosillos/go-graphql,num_dependents_deps.dev:0 github.com/rodrigosillos/go-grpc,num_dependents_deps.dev:0 github.com/rodrigosombrio/totvs-ti-utils,num_dependents_deps.dev:0 +github.com/rodrigost23/dart-test-annotations, github.com/rodrigotm/ciashop-java,num_dependents_deps.dev:0 github.com/rodrigotmuniz/ibar,num_dependents_deps.dev:0 github.com/rodrigouroz/r2d2,num_dependents_deps.dev:0 @@ -989329,6 +1007116,7 @@ github.com/rodtoll/homebridge-isy-js,num_dependents_deps.dev:0 github.com/rodtoll/homebridge-wireless-sensor-tag,num_dependents_deps.dev:0 github.com/rodtoll/isy-js,num_dependents_deps.dev:0 github.com/rodupont/pykefcontrol, +github.com/rodush/github-action-jira-release, github.com/rodvand/netbox-paloalto, github.com/rodw/age,num_dependents_deps.dev:0 github.com/rodw/coffee-jshint,num_dependents_deps.dev:0 @@ -989359,6 +1007147,7 @@ github.com/rodzewich/grunt-favicon,num_dependents_deps.dev:0 github.com/rodzewich/grunt-tsc,num_dependents_deps.dev:0 github.com/rodzy/mode-switcher,num_dependents_deps.dev:0 github.com/rodzyn/attache.js, +github.com/roechi/aws-java-cdk-github-actions, github.com/roecrew/baasdb, github.com/roecrew/bassdb,num_dependents_deps.dev:0 github.com/roecrew/cli-gyro,num_dependents_deps.dev:0 @@ -989393,6 +1007182,7 @@ github.com/roeierez/firebase-admin-go,num_dependents_deps.dev:0 github.com/roeierez/infinite-list,num_dependents_deps.dev:0 github.com/roeierez/react-infinite-carousel,num_dependents_deps.dev:0 github.com/roel0/PCM2Wav-py, +github.com/roel4ez/action-power-on-off-azure-vm, github.com/roelal/ng-thunderhead,num_dependents_deps.dev:0 github.com/roelderickx/hikingmap, github.com/roelderickx/hm-render-landez, @@ -989415,6 +1007205,8 @@ github.com/roeleuss/lang-go,num_dependents_deps.dev:0 github.com/roelfjan/object-fit-cover,num_dependents_deps.dev:0 github.com/roelhem/tasks,num_dependents_deps.dev:0 github.com/roelkok/sportsokken,num_dependents_deps.dev:0 +github.com/roelmagdaleno/cloudways-api-git-pull-action, +github.com/roelmagdaleno/find-slack-user-action, github.com/roelmagdaleno/wp-stats,num_dependents_deps.dev:0 github.com/roelofjan-elsinga/angular-translator,num_dependents_deps.dev:0 github.com/roelofjan-elsinga/gift,num_dependents_deps.dev:0 @@ -989523,6 +1007315,7 @@ github.com/rogeliog/jest-serializer-enzyme,num_dependents_deps.dev:0 github.com/rogeliog/jest-serializers,num_dependents_deps.dev:0 github.com/rogeliog/jest-watch-mock-stdin,num_dependents_deps.dev:0 github.com/rogeliog/jest-watch-select-projects,num_dependents_deps.dev:42 +github.com/rogeliojohnoliverio/sun-code-reviewer, github.com/rogeliorv/kloutpy, github.com/roger-/pyrtlsdr, github.com/roger-king/golang-api-applate,num_dependents_deps.dev:0 @@ -989698,6 +1007491,7 @@ github.com/rogerlew/undaqTools, github.com/rogerlog/react-input-por-extenso,num_dependents_deps.dev:0 github.com/rogerloo/roger-pages,num_dependents_deps.dev:0 github.com/rogerluan/git_stage_formatter,num_dependents_deps.dev:0 +github.com/rogerluan/label-remover, github.com/rogerluiz/Miniscroll-JS,num_dependents_deps.dev:0 github.com/rogermadjos/arque,num_dependents_deps.dev:0 github.com/rogermadjos/eventtcp, @@ -989744,6 +1007538,7 @@ github.com/rogertavaress/react-native-modern-fab,num_dependents_deps.dev:0 github.com/rogerthat-platform/paycash-api-client, github.com/rogerthat94/asyncio-pipe, github.com/rogeruiz/csv-normalizer,num_dependents_deps.dev:0 +github.com/rogeruiz/repasar, github.com/rogeruiz/scuttle,num_dependents_deps.dev:0 github.com/rogervdf/idefix-ml, github.com/rogervila/circle-menu,num_dependents_deps.dev:0 @@ -989799,6 +1007594,8 @@ github.com/rogierslag/prerender-file-cache,num_dependents_deps.dev:0 github.com/roginfarrer/react-collapsed,num_dependents_deps.dev:2 github.com/roginfarrer/rogin-scripts,num_dependents_deps.dev:0 github.com/roginfarrer/system-props,num_dependents_deps.dev:0 +github.com/rogisolorzano/github-runner-ec2-start, +github.com/rogisolorzano/github-runner-ec2-stop, github.com/rogisolorzano/lossless-throttle,num_dependents_deps.dev:0 github.com/rogisolorzano/rxjs-lossless-throttle,num_dependents_deps.dev:0 github.com/rogithub/valiko,num_dependents_deps.dev:0 @@ -989862,12 +1007659,15 @@ github.com/rogyvoje/react-infinite-sections,num_dependents_deps.dev:0 github.com/rohaanhamid/PooledTokenInterceptor,num_dependents_deps.dev:0 github.com/rohail6259/liquideffect,num_dependents_deps.dev:0 github.com/rohailaltaf/react-native-inset-shadow,num_dependents_deps.dev:0 +github.com/rohailkhaniazi/release-action, github.com/rohamgames/react-mobile-datepicker-jalaali-persian,num_dependents_deps.dev:0 github.com/rohamgoudarz/Nami, +github.com/rohammosalli/slack-action, github.com/rohan-a99/golang_proxy,num_dependents_deps.dev:0 github.com/rohan-av/bigorder,num_dependents_deps.dev:0 github.com/rohan-av/courserago,num_dependents_deps.dev:0 github.com/rohan-buchner/elastic-apm-sourcemap-uploader-webpack-plugin,num_dependents_deps.dev:0 +github.com/rohan-buechner/publish-gh-package, github.com/rohan-das/employee-tracker,num_dependents_deps.dev:0 github.com/rohan-das/mygallery.in,num_dependents_deps.dev:0 github.com/rohan-deshpande/canvas-to-video,num_dependents_deps.dev:0 @@ -989931,6 +1007731,7 @@ github.com/rohanraj07/learning,num_dependents_deps.dev:0 github.com/rohanraja/goworker,num_dependents_deps.dev:0 github.com/rohanray/fetch-suspense,num_dependents_deps.dev:0 github.com/rohanray/next-fonts,num_dependents_deps.dev:2 +github.com/rohanreddych/Neural-Style-Transfer-Action, github.com/rohanrhu/gdb-frontend, github.com/rohanrhu/json-tcp-socket,num_dependents_deps.dev:4 github.com/rohanrhu/node-Win32Volume,num_dependents_deps.dev:0 @@ -989957,6 +1007758,7 @@ github.com/rohanxminocha/to-do-list,num_dependents_deps.dev:0 github.com/rohanxs/yahoostock, github.com/rohanxx/statecodes,num_dependents_deps.dev:0 github.com/rohaquinlop/automathon, +github.com/roharon/action-swit, github.com/roharon/kakao-i-skill-java,num_dependents_deps.dev:0 github.com/rohberg/volto-accordion-block,num_dependents_deps.dev:0 github.com/rohdelab/PyTransKit, @@ -989988,6 +1007790,8 @@ github.com/rohit-chouhan/scrcpy,num_dependents_deps.dev:0 github.com/rohit-chouhan/scrollboss,num_dependents_deps.dev:0 github.com/rohit-chouhan/youtube-thumbnail-api,num_dependents_deps.dev:0 github.com/rohit-gohri/danger-plugin-todos,num_dependents_deps.dev:0 +github.com/rohit-gohri/deploy-action, +github.com/rohit-gohri/jira-ci-cd-integration, github.com/rohit-gohri/redocusaurus,num_dependents_deps.dev:0 github.com/rohit-gta-tech/lotide,num_dependents_deps.dev:0 github.com/rohit-jaisinghani/go_math,num_dependents_deps.dev:0 @@ -990089,6 +1007893,7 @@ github.com/rohitmisra/public-transport,num_dependents_deps.dev:0 github.com/rohitnairtech/inhtml,num_dependents_deps.dev:0 github.com/rohitnairtech/nodejs-formaction-sdk-rasa,num_dependents_deps.dev:0 github.com/rohitnairtech/whatsapp-chat-plugin, +github.com/rohitnb/repo-owners-report, github.com/rohitpanwarr/responsive-nav,num_dependents_deps.dev:0 github.com/rohitpaulk/srv_hijacker, github.com/rohitpawar95/pyspark_json_model, @@ -990143,6 +1007948,7 @@ github.com/rohmanhm/styled-media,num_dependents_deps.dev:0 github.com/rohmanhm/terbilang-ts,num_dependents_deps.dev:0 github.com/rohmanhm/vaper,num_dependents_deps.dev:2 github.com/rohmanhm/verr,num_dependents_deps.dev:0 +github.com/rohmanngmbh/action-checkout-repo, github.com/rohmatsyam/go-say-hello,num_dependents_deps.dev:0 github.com/rohmunhoz/genc,num_dependents_deps.dev:0 github.com/rohn/react-split-pane,num_dependents_deps.dev:0 @@ -990171,6 +1007977,8 @@ github.com/roignpar/thetvdb,num_dependents_deps.dev:0 github.com/roikles/Gridtacular,num_dependents_deps.dev:0 github.com/roikles/Gritacular2,num_dependents_deps.dev:0 github.com/roikles/pixrem-cli,num_dependents_deps.dev:0 +github.com/roimor/aws-cli-action, +github.com/roimor/kubectl-aws-eks, github.com/roiperlman/express-version-router,num_dependents_deps.dev:0 github.com/roiperlman/ngx-document-scanner,num_dependents_deps.dev:0 github.com/roiperlman/super-route,num_dependents_deps.dev:0 @@ -990251,7 +1008059,9 @@ github.com/rojo2/turn-credentials,num_dependents_deps.dev:0 github.com/rojo2/wad-parser,num_dependents_deps.dev:0 github.com/rojoca/html-inline-css-webpack-plugin,num_dependents_deps.dev:0 github.com/rojopolis/crt, +github.com/rojopolis/envkey-action, github.com/rojopolis/lycanthropy, +github.com/rojopolis/spellcheck-github-actions, github.com/rojserbest/arq-js, github.com/rojserbest/arqjs,num_dependents_deps.dev:0 github.com/rojserbest/gotranslate,num_dependents_deps.dev:0 @@ -990276,6 +1008086,7 @@ github.com/roketworks/esgo,num_dependents_deps.dev:0 github.com/roketworks/percy-playwright,num_dependents_deps.dev:0 github.com/rokeyzki/npm-cli,num_dependents_deps.dev:0 github.com/rokeyzki/zixun-designer-core,num_dependents_deps.dev:0 +github.com/rokibhasansagar/slimhub_actions, github.com/rokibuluddin/remotejobexecutor,num_dependents_deps.dev:0 github.com/rokid/egg-i18next,num_dependents_deps.dev:0 github.com/rokie83/flexgrid, @@ -990316,7 +1008127,10 @@ github.com/rokoroku/node-twitter-korean-text,num_dependents_deps.dev:0 github.com/rokoroku/react-redux-typescript-boilerplate,"criticality_score:0.315230,num_dependents_deps.dev:0" github.com/rokoucha/penetrate-ts,num_dependents_deps.dev:0 github.com/rokoucha/penetrator-ts,num_dependents_deps.dev:0 +github.com/rokoucha/reviewdog-action-prettier, +github.com/rokoucha/reviewdog-action-stylelint, github.com/rokroskar/imnet, +github.com/rokroskar/workflow-run-cleanup-action, github.com/roksikonja/tsipy, github.com/roksta21/material-bootstrap,num_dependents_deps.dev:0 github.com/roksta21/vue-image-gallery,num_dependents_deps.dev:0 @@ -990446,6 +1008260,32 @@ github.com/rolecraft/DiceLib, github.com/roleoroleo/yi-hack-MStar,criticality_score:0.425830 github.com/rolepoint/flump, github.com/rolepoint/pyseeyou, +github.com/roles-ansible/check-ansible-alpine-latest-action, +github.com/roles-ansible/check-ansible-archlinux-latest-action, +github.com/roles-ansible/check-ansible-centos-centos6-action, +github.com/roles-ansible/check-ansible-centos-centos7-action, +github.com/roles-ansible/check-ansible-centos-centos8-action, +github.com/roles-ansible/check-ansible-centos-centos9-action, +github.com/roles-ansible/check-ansible-centos-latest-action, +github.com/roles-ansible/check-ansible-debian-bookworm-action, +github.com/roles-ansible/check-ansible-debian-bullseye-action, +github.com/roles-ansible/check-ansible-debian-buster-action, +github.com/roles-ansible/check-ansible-debian-jessie-action, +github.com/roles-ansible/check-ansible-debian-latest-action, +github.com/roles-ansible/check-ansible-debian-sid-action, +github.com/roles-ansible/check-ansible-debian-stable-action, +github.com/roles-ansible/check-ansible-debian-stretch-action, +github.com/roles-ansible/check-ansible-fedora-31-action, +github.com/roles-ansible/check-ansible-fedora-32-action, +github.com/roles-ansible/check-ansible-fedora-33-action, +github.com/roles-ansible/check-ansible-fedora-latest-action, +github.com/roles-ansible/check-ansible-ubuntu-bionic-action, +github.com/roles-ansible/check-ansible-ubuntu-disco-action, +github.com/roles-ansible/check-ansible-ubuntu-eoan-action, +github.com/roles-ansible/check-ansible-ubuntu-focal-action, +github.com/roles-ansible/check-ansible-ubuntu-latest-action, +github.com/roles-ansible/check-ansible-ubuntu-trusty-action, +github.com/roles-ansible/check-ansible-ubuntu-xenial-action, github.com/rolesvillesoftware/FancyDrop,num_dependents_deps.dev:0 github.com/rolesvillesoftware/RolesvilleTools,num_dependents_deps.dev:0 github.com/rolesvillesoftware/TsEntity,num_dependents_deps.dev:0 @@ -990497,6 +1008337,7 @@ github.com/rollacaster/shortjson,num_dependents_deps.dev:0 github.com/rollawaypoint/babel-plugin-authkit,num_dependents_deps.dev:0 github.com/rollawaypoint/gatsby-theme-cat,num_dependents_deps.dev:0 github.com/rollawaypoint/obtain-fetch,num_dependents_deps.dev:0 +github.com/rollbar/github-deploy-action, github.com/rollbar/node_rollbar,num_dependents_deps.dev:46 github.com/rollbar/pyrollbar, github.com/rollbar/rollbar,num_dependents_deps.dev:0 @@ -990542,6 +1008383,7 @@ github.com/rollq/create-react-app,num_dependents_deps.dev:0 github.com/rollrodrig/customjsonbuilder, github.com/rollrodrig/jsonbuilder,num_dependents_deps.dev:0 github.com/rollswan-acebedo/encrypter-js,num_dependents_deps.dev:0 +github.com/rollue/docker-base-image-auto-rebuild-on-dependency-update, github.com/rollulus/lenses-go,num_dependents_deps.dev:0 github.com/rollun-com/rollun-js,num_dependents_deps.dev:0 github.com/rollun-com/rollun-rgrid,num_dependents_deps.dev:0 @@ -990596,6 +1008438,7 @@ github.com/rollup/rollup-watch,num_dependents_deps.dev:56 github.com/rollup/stream,num_dependents_deps.dev:4 github.com/rollup/three-jsnext,num_dependents_deps.dev:0 github.com/rollwagen/aws-account, +github.com/rollycodes/publish-nuget-private, github.com/rollylni/gocalc,num_dependents_deps.dev:0 github.com/rollymaduk/feathers-apollo-server,num_dependents_deps.dev:0 github.com/rollymaduk/feathers-bull,num_dependents_deps.dev:0 @@ -990808,6 +1008651,7 @@ github.com/romainmenke/eslint-plugin-uncalled-iife,num_dependents_deps.dev:0 github.com/romainmenke/postcss-split-by-media,num_dependents_deps.dev:0 github.com/romainmenke/report-imgix-usage,num_dependents_deps.dev:0 github.com/romainmenke/simple-liquid,num_dependents_deps.dev:0 +github.com/romainnorberg/rome-frontend-check-action, github.com/romainpellerin/eosgo-client,num_dependents_deps.dev:0 github.com/romainreuillon/gridscale,num_dependents_deps.dev:1142 github.com/romainreuillon/mgo,num_dependents_deps.dev:0 @@ -990986,6 +1008830,7 @@ github.com/romankl/jade-rust,num_dependents_deps.dev:0 github.com/romankl/node-getrusage,num_dependents_deps.dev:0 github.com/romankoblov/prettydiff,num_dependents_deps.dev:0 github.com/romankoblov/rust-nvrtc,num_dependents_deps.dev:0 +github.com/romanlamsal/dotenv-concat, github.com/romanlex/app-manifest-webpack-plugin,num_dependents_deps.dev:0 github.com/romanlopatin/project,num_dependents_deps.dev:0 github.com/romanlorens/logviewer,num_dependents_deps.dev:0 @@ -991085,6 +1008930,7 @@ github.com/romanzes637/gmsh_scripts, github.com/romanzh1/golang-parser-xml,num_dependents_deps.dev:0 github.com/romanzh1/weather-averager,num_dependents_deps.dev:0 github.com/romanzimoglyad/leetcode,num_dependents_deps.dev:0 +github.com/romanzipp/Wanderer-Action, github.com/romanzipp/is-odd-or-even,num_dependents_deps.dev:8 github.com/romanzipp/romanzipp,num_dependents_deps.dev:0 github.com/romanzubenko/poker-engine,num_dependents_deps.dev:0 @@ -991102,6 +1008948,7 @@ github.com/romario333/karma-phantomjs-launcher, github.com/romario333/ngmin,num_dependents_deps.dev:0 github.com/romario5/ui,num_dependents_deps.dev:0 github.com/romario8/pglogs, +github.com/romariomelo/github-action-close-milestone, github.com/romaryd/lifoid-dialogflow, github.com/romaryd/lifoid-google-translate, github.com/romaryd/lifoid-rasanlu, @@ -991137,6 +1008984,7 @@ github.com/rombu/sargs, github.com/romcal/romcal, github.com/romcal/romcal-api,num_dependents_deps.dev:0 github.com/romch007/tesla-api,num_dependents_deps.dev:0 +github.com/romcheck/actions, github.com/romcra/aleatorio, github.com/romcra/limpieza, github.com/romcra/romcrap, @@ -991211,6 +1009059,7 @@ github.com/romeovs/genial, github.com/romeovs/gulp-modulizr,num_dependents_deps.dev:0 github.com/romeovs/gulp-zopfli,num_dependents_deps.dev:0 github.com/romeovs/json-schema-empty,num_dependents_deps.dev:2 +github.com/romeovs/lcov-reporter-action, github.com/romeovs/nano-promises,num_dependents_deps.dev:0 github.com/romeovs/optimal.js,num_dependents_deps.dev:0 github.com/romeovs/sevenrules,num_dependents_deps.dev:0 @@ -991264,6 +1009113,8 @@ github.com/romilly/fp2md4roam, github.com/romilly/markdown-builder, github.com/romilly/reggie, github.com/romilodev/my-dcjs-handler,num_dependents_deps.dev:0 +github.com/romiltiwari93/ios-build-action, +github.com/romiltiwari93/sign-android-release, github.com/rominf/aioauth2, github.com/rominf/aiojira, github.com/rominf/aiosplinter, @@ -991328,6 +1009179,7 @@ github.com/romnn/sphinx_press_theme, github.com/romnnn/go-grpc-service,num_dependents_deps.dev:0 github.com/romnnn/raw_tcp_connection, github.com/romnnn/stwberlin_menus, +github.com/romoh/dependencies-autoupdate, github.com/romon267/go-rest,num_dependents_deps.dev:0 github.com/romoo/airbnb-oauth,num_dependents_deps.dev:0 github.com/romoo/egg-cos,num_dependents_deps.dev:0 @@ -991501,6 +1009353,7 @@ github.com/ronaldr1985/sleep-go,num_dependents_deps.dev:0 github.com/ronaldr1985/stayawake,num_dependents_deps.dev:0 github.com/ronaldroe/node-motor-shield,num_dependents_deps.dev:0 github.com/ronaldroe/react-es6-progressbar.js,num_dependents_deps.dev:0 +github.com/ronaldrpruitt/deploy-action, github.com/ronaldruzicka/eslint-config-typescript-react,num_dependents_deps.dev:0 github.com/ronaldsalas/omniauth-kona,num_dependents_deps.dev:0 github.com/ronaldsengkey/workerservice,num_dependents_deps.dev:0 @@ -991562,6 +1009415,7 @@ github.com/roncli/hot-router,num_dependents_deps.dev:0 github.com/ronco/ember-cli-head, github.com/ronco/ember-cli-meta-tags,num_dependents_deps.dev:0 github.com/ronco/fastboot-filter-initializers,num_dependents_deps.dev:28 +github.com/roncodes/post-to-facebook-page, github.com/roncoo/code-obfuscation,num_dependents_deps.dev:0 github.com/roncoo/roncoo-adminLTE,num_dependents_deps.dev:0 github.com/roncoo/roncoo-education,criticality_score:0.357270 @@ -991569,6 +1009423,8 @@ github.com/roncoo/roncoo-mybatis-generator,num_dependents_deps.dev:0 github.com/roncoo/roncoo-spring-boot,num_dependents_deps.dev:0 github.com/roncoo/shiro-freemarker-tags,num_dependents_deps.dev:0 github.com/roncr/d3-tooltip-box,num_dependents_deps.dev:0 +github.com/roncsak/check, +github.com/roncsak/getRunnerToken, github.com/rondale-sc/EspnRb,num_dependents_deps.dev:0 github.com/rondale-sc/ember-app-kit-new,num_dependents_deps.dev:0 github.com/rondale-sc/ember-cli-htmlbars,num_dependents_deps.dev:5 @@ -991710,6 +1009566,7 @@ github.com/ronglasmann/node-sql-db,num_dependents_deps.dev:0 github.com/rongmz/react-stock-heatmap,num_dependents_deps.dev:0 github.com/rongmz/simple-event-emitter,num_dependents_deps.dev:0 github.com/rongnho1987/testrepo,num_dependents_deps.dev:0 +github.com/rongyi/autogofmt, github.com/rongyi/githubactionforgolang,num_dependents_deps.dev:0 github.com/rongyi/stardict,num_dependents_deps.dev:0 github.com/rongzhx123/component-repository,num_dependents_deps.dev:0 @@ -991908,6 +1009765,7 @@ github.com/rontgen/wgkits, github.com/ronthecookie/oref-red-alert,num_dependents_deps.dev:0 github.com/rontran/version-datebump,num_dependents_deps.dev:0 github.com/ronuse/ronuse-react-ui,num_dependents_deps.dev:0 +github.com/ronvanderheijden/hugo-rsync-deployment, github.com/ronvoluted/sapper, github.com/ronwe/nmq,num_dependents_deps.dev:0 github.com/ronyb29/pyAN575, @@ -991920,6 +1009778,7 @@ github.com/ronyitc/golang-mux-api,num_dependents_deps.dev:0 github.com/ronyldo12/process,num_dependents_deps.dev:0 github.com/ronylpatil/whatsapplib, github.com/ronymaychan/generator-pln,num_dependents_deps.dev:0 +github.com/ronymeyer/workflow-check, github.com/ronymmoura/base-service,num_dependents_deps.dev:0 github.com/ronymmoura/generator-preguiceitor, github.com/ronymmoura/node-sql-tokenizer,num_dependents_deps.dev:0 @@ -992118,6 +1009977,7 @@ github.com/roosterchicken/beemovie-cli,num_dependents_deps.dev:0 github.com/roosterchicken/beemovie-java,num_dependents_deps.dev:0 github.com/roosterchicken/beemovie-rb,num_dependents_deps.dev:0 github.com/roosterchicken/beemovie-rs,num_dependents_deps.dev:0 +github.com/roosterfish/aws-route53-record-set-action, github.com/root---/checkr,num_dependents_deps.dev:0 github.com/root-11/tablite, github.com/root-gg/plik,"criticality_score:0.385720,num_dependents_deps.dev:0" @@ -992127,6 +1009987,7 @@ github.com/root-kings/make,num_dependents_deps.dev:0 github.com/root-kings/pdf-generator, github.com/root-kings/tushar,num_dependents_deps.dev:0 github.com/root-project/cling,criticality_score:0.498630 +github.com/root-project/gcc-problem-matcher-improved, github.com/root-project/jsroot,num_dependents_deps.dev:2 github.com/root-project/root,"criticality_score:0.743720,num_dependents_deps.dev:0" github.com/root-systems/create-dogstack-app,num_dependents_deps.dev:0 @@ -992141,6 +1010002,7 @@ github.com/rootVIII/proxy_requests, github.com/rootblack45/gocqlastra,num_dependents_deps.dev:0 github.com/rootdevelop/cobc,num_dependents_deps.dev:0 github.com/rootedbox/bartab,num_dependents_deps.dev:0 +github.com/rootedconcepts/codewarden-action, github.com/rootedglobal/ngx-data-table,num_dependents_deps.dev:0 github.com/rootedglobal/npx-rootedglobal,num_dependents_deps.dev:0 github.com/rooterkyberian/elen, @@ -992163,6 +1010025,7 @@ github.com/rootlou/optparse,num_dependents_deps.dev:0 github.com/rootly-io/cli,num_dependents_deps.dev:0 github.com/rootly-io/rootly-go,num_dependents_deps.dev:0 github.com/rootlyhq/cli,num_dependents_deps.dev:0 +github.com/rootlyhq/pulse-action, github.com/rootlyhq/rootly-go,num_dependents_deps.dev:0 github.com/rootm0s/WinPwnage,criticality_score:0.333430 github.com/rootmos/arweaver,num_dependents_deps.dev:0 @@ -992183,13 +1010046,16 @@ github.com/roots/bud-support,num_dependents_deps.dev:0 github.com/roots/capistrano-composer,num_dependents_deps.dev:1 github.com/roots/capistrano-grunt,num_dependents_deps.dev:0 github.com/roots/capistrano-npm,num_dependents_deps.dev:0 +github.com/roots/discourse-topic-github-release-action, github.com/roots/grunt-wp-assets, github.com/roots/grunt-wp-version,num_dependents_deps.dev:0 +github.com/roots/issue-closer-action, github.com/roots/js-dom-router,num_dependents_deps.dev:0 github.com/roots/palette-webpack-plugin,num_dependents_deps.dev:0 github.com/roots/roots-example-project.com,criticality_score:0.322560 github.com/roots/sage,"criticality_score:0.594410,num_dependents_deps.dev:0" github.com/roots/sage-cli,num_dependents_deps.dev:2 +github.com/roots/setup-trellis-cli, github.com/roots/soil,criticality_score:0.505010 github.com/roots/trellis,criticality_score:0.598660 github.com/roots/trellis-cli,num_dependents_deps.dev:0 @@ -992320,6 +1010186,7 @@ github.com/ropelive/node, github.com/ropelive/rest, github.com/ropelive/server, github.com/ropenflash/tiny,num_dependents_deps.dev:0 +github.com/ropensci-review-tools/pkgcheck-action, github.com/ropensci/RSelenium,criticality_score:0.349400 github.com/ropensci/drake,criticality_score:0.503020 github.com/ropensci/magick,criticality_score:0.503530 @@ -992426,6 +1010293,7 @@ github.com/roryc89/puregres,num_dependents_deps.dev:0 github.com/roryc89/sqltopurs-node,num_dependents_deps.dev:0 github.com/rorychristianmurray/create-react-app,num_dependents_deps.dev:0 github.com/rorycl/sshagentca,num_dependents_deps.dev:0 +github.com/roryclaasen/sitemap-ping-action, github.com/rorycrispin/arrow-js-1,num_dependents_deps.dev:0 github.com/roryf/ng-cookies,num_dependents_deps.dev:0 github.com/roryf/parse-cache-control,num_dependents_deps.dev:2845 @@ -992454,6 +1010322,7 @@ github.com/rorymurphy/rtest,num_dependents_deps.dev:0 github.com/roryokane/Transcribe-xsc-file-converter, github.com/roryphillips-projects/f1-2020-packets,num_dependents_deps.dev:0 github.com/roryphillips-projects/packet,num_dependents_deps.dev:0 +github.com/roryprimrose/set-vs-sdk-project-version, github.com/roryq/refresher,num_dependents_deps.dev:0 github.com/roryq/spanner-emulator,num_dependents_deps.dev:0 github.com/roryq/synesthesia,num_dependents_deps.dev:0 @@ -992527,7 +1010396,11 @@ github.com/ros-planning/navigation2,criticality_score:0.589250 github.com/ros-planning/navigation_msgs,Google github.com/ros-simulation/gazebo_ros_pkgs,criticality_score:0.575700 github.com/ros-testing/hypothesis-ros, +github.com/ros-tooling/action-cloudwatch-metrics, +github.com/ros-tooling/action-ros-ci, +github.com/ros-tooling/action-ros-lint, github.com/ros-tooling/cross_compile, +github.com/ros-tooling/setup-ros, github.com/ros-visualization/rviz,criticality_score:0.609330 github.com/ros/actionlib,Google github.com/ros/angles,Google @@ -992651,6 +1010524,7 @@ github.com/rosegit-lab/kis2, github.com/rosegun/mybatis-generator-pagination,num_dependents_deps.dev:0 github.com/rosegun/trace-api,num_dependents_deps.dev:0 github.com/rosek86/aes-cmac,num_dependents_deps.dev:0 +github.com/roseline124/pr-title-convention, github.com/rosell-dk/js-expression,num_dependents_deps.dev:0 github.com/rosell-dk/webp-convert,criticality_score:0.398280 github.com/roselleebarle04/ng-remote-table,num_dependents_deps.dev:0 @@ -992733,6 +1010607,7 @@ github.com/roshanfande/autoprocess, github.com/roshangade/rest-api-framework,num_dependents_deps.dev:0 github.com/roshangautam/microsoft-dynamics-auth, github.com/roshangm1/dialog-modal,num_dependents_deps.dev:0 +github.com/roshangm1/qr-code-commenter-action, github.com/roshangm1/react-native-header-scrollview,num_dependents_deps.dev:0 github.com/roshanikhairnar/inventory-api,num_dependents_deps.dev:0 github.com/roshanlam/FastMath, @@ -992765,6 +1010640,7 @@ github.com/rosineygp/PyIsEven, github.com/rosineygp/proxmox-pci-switcher, github.com/rosinghal/node-detect-bot,num_dependents_deps.dev:0 github.com/rosinghal/node-url-slug-match,num_dependents_deps.dev:0 +github.com/rosingrind/plist-action, github.com/rosix-ru/django-reportapi, github.com/rosix-ru/shtrihm-fr, github.com/rosjava/android_apps,Google @@ -992920,6 +1010796,7 @@ github.com/rossil2012/go-leaderelection,num_dependents_deps.dev:0 github.com/rossillingworth/mJSONWrapper,num_dependents_deps.dev:0 github.com/rossim2i2/cmdbox-isosec,num_dependents_deps.dev:0 github.com/rossim2i2/tree-go,num_dependents_deps.dev:0 +github.com/rossimo/godot-export, github.com/rossinek/vue-jsonapi,num_dependents_deps.dev:0 github.com/rossinim/full-cycle-k8s,num_dependents_deps.dev:0 github.com/rossipedia/alfred-vpn-networksetup,num_dependents_deps.dev:0 @@ -992936,6 +1010813,7 @@ github.com/rossj/ice-stream,num_dependents_deps.dev:0 github.com/rossj/rackit,num_dependents_deps.dev:0 github.com/rossj24/connect474,num_dependents_deps.dev:0 github.com/rossj24/zendeskco-opchallenge,num_dependents_deps.dev:0 +github.com/rossjrw/pr-preview-action, github.com/rosskettle/color-space-canvas,num_dependents_deps.dev:0 github.com/rosskettle/graphpaper,num_dependents_deps.dev:0 github.com/rosskettle/svg-path-serializer,num_dependents_deps.dev:0 @@ -992977,6 +1010855,8 @@ github.com/rossmacarthur/typing-compat, github.com/rossmacarthur/vectrix,num_dependents_deps.dev:0 github.com/rossmacarthur/vectrs,num_dependents_deps.dev:0 github.com/rossmacfarlane/ti.cage,num_dependents_deps.dev:0 +github.com/rossmaclean/cloudron-deploy-action, +github.com/rossmaclean/docker-build-push-action, github.com/rossmartin/angular-hashtagify,num_dependents_deps.dev:0 github.com/rossmartin/cordova-plugin-instagram-assets-picker,num_dependents_deps.dev:0 github.com/rossmartin/cordova-plugin-ios-detect-screenshot,num_dependents_deps.dev:0 @@ -993065,7 +1010945,9 @@ github.com/rostrovsky/blexy, github.com/rostrovsky/pdf-table,num_dependents_deps.dev:0 github.com/rostwolke/node-wireguard-rest,num_dependents_deps.dev:0 github.com/rostwolke/node-wireguard-wrapper,num_dependents_deps.dev:0 +github.com/rosty-git/shipa-create-app-action, github.com/rostyslavb/pico-detect,num_dependents_deps.dev:0 +github.com/rosven9856/gitea_creating_release_action, github.com/roswell/roswell,criticality_score:0.449890 github.com/rosygraph/datastructs,num_dependents_deps.dev:0 github.com/rosygraph/gocube,num_dependents_deps.dev:0 @@ -993083,10 +1010965,12 @@ github.com/rot256/everrs,num_dependents_deps.dev:0 github.com/rot256/rug-binserial,num_dependents_deps.dev:0 github.com/rot26/node-debug-namespace,num_dependents_deps.dev:0 github.com/rotacloud/rotacloud-node, +github.com/rotaract/plantuml-action, github.com/rotaready/dynamodb-better-batch,num_dependents_deps.dev:0 github.com/rotaready/moment-range,"criticality_score:0.357710,num_dependents_deps.dev:448" github.com/rotaready/node-credstash,num_dependents_deps.dev:0 github.com/rotaryden/SpookyJS2,num_dependents_deps.dev:0 +github.com/rotarydialer/update-lambda-s3, github.com/rotationalio/ctxms,num_dependents_deps.dev:0 github.com/rotationalio/grpc-token-auth,num_dependents_deps.dev:0 github.com/rotationalio/honu,num_dependents_deps.dev:0 @@ -993102,6 +1010986,7 @@ github.com/rotcare/project-esbuild,num_dependents_deps.dev:0 github.com/rotcare/register,num_dependents_deps.dev:0 github.com/rotemdan/lzutf8.js,num_dependents_deps.dev:32 github.com/rotemgrim/gonode,num_dependents_deps.dev:0 +github.com/rotemjac/slack-bot, github.com/rotemreiss/jTrack, github.com/rotemreiss/uddup, github.com/rotemtam/co-jitter-retry,num_dependents_deps.dev:0 @@ -993113,6 +1010998,7 @@ github.com/rotemtam/koa-predicate-factory,num_dependents_deps.dev:0 github.com/rotemtam/mock-lambda-context,num_dependents_deps.dev:0 github.com/rotemtam/serverless-aws-logs-parser,num_dependents_deps.dev:0 github.com/rotemtam/serverless-metrics,num_dependents_deps.dev:0 +github.com/rotemtam/workplace-notify-action, github.com/rotemx/EntityFramework,num_dependents_deps.dev:0 github.com/rotemx/ReactiveModels, github.com/rotespferd/gitode,num_dependents_deps.dev:0 @@ -993234,6 +1011120,7 @@ github.com/roubkar/react-animatex,num_dependents_deps.dev:0 github.com/roubles/kubeshell, github.com/roubles/pickpaged, github.com/roubles/viewlog, +github.com/roudra/semantic-version-generator, github.com/roudrik/grunt-php-reload,num_dependents_deps.dev:0 github.com/rouflak/barmanjs,num_dependents_deps.dev:0 github.com/rouganstriker/hubot-jira,num_dependents_deps.dev:0 @@ -993280,6 +1011167,7 @@ github.com/rougsig/mvi-fake,num_dependents_deps.dev:0 github.com/rougsig/rxflux,num_dependents_deps.dev:0 github.com/roujiamo-cold/go-wiki,num_dependents_deps.dev:0 github.com/rouk1/django-image-renderer, +github.com/roulianinc/Rancher-CLI, github.com/roulotte/emojify,num_dependents_deps.dev:0 github.com/rounakbanik/fa_transformer, github.com/rounakdatta/firenest,num_dependents_deps.dev:0 @@ -993389,6 +1011277,7 @@ github.com/routexjs/routex-websocket, github.com/routve/routve, github.com/rouvoy/jfilter,num_dependents_deps.dev:125 github.com/rouvoy/minibus,num_dependents_deps.dev:0 +github.com/rouvydev/metagen-gha, github.com/rouxcode/django-admin-sort, github.com/rouzbeh-afrasiabi/loopimer, github.com/rouzbeh-afrasiabi/traintorch, @@ -993402,6 +1011291,7 @@ github.com/rovale/micro-mqtt,num_dependents_deps.dev:0 github.com/rovast/emmet.css,num_dependents_deps.dev:0 github.com/rovast/json-schema-ref-parser,num_dependents_deps.dev:0 github.com/rovast/swagger-parser,num_dependents_deps.dev:0 +github.com/rovast/sync-upstream-repo, github.com/rovechkin1/go-rosbag,num_dependents_deps.dev:0 github.com/rovelstars/rdl.js,num_dependents_deps.dev:0 github.com/rovelstars/rovel.js, @@ -993535,6 +1011425,8 @@ github.com/rowdyroad/react-form,num_dependents_deps.dev:0 github.com/rowe-andersonhu1/go_modules,num_dependents_deps.dev:0 github.com/roweldeguzman/native-javascript-notify,num_dependents_deps.dev:0 github.com/rowellx68/hexo-tag-theta360,num_dependents_deps.dev:0 +github.com/rowi1de/action-extract-pull-metadata, +github.com/rowi1de/auto-assign-review-teams, github.com/rowinbot/react-native-nice-helpers,num_dependents_deps.dev:0 github.com/rowinbot/templatish,num_dependents_deps.dev:0 github.com/rowland-208/colorsort, @@ -993629,6 +1011521,7 @@ github.com/royalicing/dovetail,num_dependents_deps.dev:0 github.com/royalpinto/node-cares,num_dependents_deps.dev:0 github.com/royalpinto/pylogging,num_dependents_deps.dev:0 github.com/royalrover/spon,num_dependents_deps.dev:0 +github.com/royalrover/workbench-oss, github.com/royalsaltmerchant/salt-iching, github.com/royalsspirit/aoc,num_dependents_deps.dev:0 github.com/royaltm/inspect-protobuf,num_dependents_deps.dev:0 @@ -993654,6 +1011547,11 @@ github.com/roybs2/watermark-image, github.com/royburns/xorm,num_dependents_deps.dev:0 github.com/roycclu/react-native-fixed-header-scroll-view,num_dependents_deps.dev:0 github.com/roycclu/react-native-sticky-header-footer-scroll-view, +github.com/roycdiscovery/pact-canideployto-action, +github.com/roycdiscovery/pact-canideploywith-action, +github.com/roycdiscovery/pact-create-tag-action, +github.com/roycdiscovery/pact-publish-oas-action, +github.com/roycdiscovery/pact-publish-pactfiles-action, github.com/roycechua23/cra-template-react-redux-typescript-starter,num_dependents_deps.dev:0 github.com/roycehaynes/pydwolla, github.com/roycehaynes/scrapy-rabbitmq, @@ -993788,6 +1011686,7 @@ github.com/royqh1979/PyEasyGraphics, github.com/royqh1979/pymapreduce, github.com/royra/grunt-aws-s3-gzip,num_dependents_deps.dev:0 github.com/royratcliffe/XcodePages,num_dependents_deps.dev:0 +github.com/royratcliffe/swi-prolog-pack-cover, github.com/royriojas/browser-detector,num_dependents_deps.dev:0 github.com/royriojas/browserify-transform-tools-exclude,num_dependents_deps.dev:20 github.com/royriojas/browsyquire,num_dependents_deps.dev:0 @@ -993981,6 +1011880,7 @@ github.com/rpa-helpers/electron-java,num_dependents_deps.dev:0 github.com/rpa-helpers/iohook-lib,num_dependents_deps.dev:0 github.com/rpa-helpers/node-jre,num_dependents_deps.dev:0 github.com/rpacholek/test_dir,num_dependents_deps.dev:0 +github.com/rpadaki/turnstyle, github.com/rpaeng/npm-test,num_dependents_deps.dev:0 github.com/rpaggi/boletex,num_dependents_deps.dev:0 github.com/rpaggi/express-mariaconnection,num_dependents_deps.dev:0 @@ -994218,8 +1012118,10 @@ github.com/rpiaggio/scalajs-react-beautiful-dnd,num_dependents_deps.dev:0 github.com/rpiaggio/scalajs-react-datepicker,num_dependents_deps.dev:0 github.com/rpiaggio/scalajs-react-highcharts,num_dependents_deps.dev:0 github.com/rpiaggio/scalajs-react-hotkeys,num_dependents_deps.dev:0 +github.com/rpiambulance/action-pr-version-check, github.com/rpicard/socksonsocks, github.com/rpidanny/eslint-config-typescript,num_dependents_deps.dev:0 +github.com/rpidanny/gha-pr-nudger, github.com/rpidanny/hima.js,num_dependents_deps.dev:0 github.com/rpidanny/nietzsche.js,num_dependents_deps.dev:0 github.com/rpidanny/streamline.js,num_dependents_deps.dev:0 @@ -994237,6 +1012139,7 @@ github.com/rpineda/df-koa-shopify-auth,num_dependents_deps.dev:0 github.com/rpinheiroalmeida/aws-event-stream,num_dependents_deps.dev:0 github.com/rpiontik/crypto-chart,num_dependents_deps.dev:0 github.com/rpip/paystack-go,num_dependents_deps.dev:0 +github.com/rpiraces-plain/bandit-check, github.com/rpirsc13/golang-evdev,num_dependents_deps.dev:0 github.com/rpiveteau/Maps-Export,num_dependents_deps.dev:0 github.com/rpiveteau/S3-Express-Zip, @@ -994248,6 +1012151,7 @@ github.com/rpj/rhp,num_dependents_deps.dev:0 github.com/rpjohnst/codemirror-lang-gml,num_dependents_deps.dev:0 github.com/rpjohnst/lezer-gml,num_dependents_deps.dev:0 github.com/rpjpme/smartrocket,num_dependents_deps.dev:0 +github.com/rpkak/ESLint-PR-review, github.com/rpkilby/AssetVendor, github.com/rpkilby/django-multiple-form-view, github.com/rpkilby/django-registration-invite, @@ -994530,9 +1012434,11 @@ github.com/rrainn/HeapStash,num_dependents_deps.dev:0 github.com/rrainn/LambdaServerlessRequest,num_dependents_deps.dev:0 github.com/rrainn/PortProcesses,num_dependents_deps.dev:0 github.com/rrainn/ThunderDB,num_dependents_deps.dev:0 +github.com/rrainn/WaitForGitHubActionToFinish, github.com/rrainn/aws-lambda-custom-node-runtime,num_dependents_deps.dev:0 github.com/rrainn/aws-mockify,num_dependents_deps.dev:0 github.com/rrainn/cloudflare-load-balance-manager,num_dependents_deps.dev:0 +github.com/rrainn/dynamodb-action, github.com/rrainn/earthutils,num_dependents_deps.dev:0 github.com/rrainn/express-middleware-log,num_dependents_deps.dev:0 github.com/rrainn/hubbot,num_dependents_deps.dev:0 @@ -994596,13 +1012502,16 @@ github.com/rrbe/async-wechat-pay,num_dependents_deps.dev:0 github.com/rrbit-org/rrbit-js,num_dependents_deps.dev:0 github.com/rrbonham96/personalsite,num_dependents_deps.dev:0 github.com/rrbraz/django-dataframe-processor, +github.com/rrbugproof/GitSecure2.0, github.com/rrbutani/bazel-execlog-cmp,num_dependents_deps.dev:0 github.com/rrbutani/lc3tools-sys,num_dependents_deps.dev:0 github.com/rrbutani/node-python-venv,num_dependents_deps.dev:0 github.com/rrbutani/tower-web-protobuf,num_dependents_deps.dev:0 +github.com/rrbutani/use-nix-shell-action, github.com/rrbutani/xterm-js-sys,num_dependents_deps.dev:0 github.com/rrd-fe/react-native-motion-event-manager,num_dependents_deps.dev:0 github.com/rrd-fe/react-native-super-lottery,num_dependents_deps.dev:0 +github.com/rrd108/cakephp-deploy-migrate, github.com/rrd108/rStorage,num_dependents_deps.dev:0 github.com/rrd108/workbox-backgroundsync-message,num_dependents_deps.dev:0 github.com/rrd4j/rrd4j,num_dependents_deps.dev:217 @@ -994641,6 +1012550,8 @@ github.com/rrees/js-random,num_dependents_deps.dev:0 github.com/rrees/ryuutama-town-generator,num_dependents_deps.dev:0 github.com/rrees/whats-my-character,num_dependents_deps.dev:0 github.com/rreganjr/chichi-ng,num_dependents_deps.dev:0 +github.com/rreichel3/remarkable-action, +github.com/rreichel3/vuepress-github-actions-deploy, github.com/rreinhardt9/translation_io-api,num_dependents_deps.dev:0 github.com/rreinold/sh-to-markdown,num_dependents_deps.dev:0 github.com/rremer/com-github-rremer-maven-parent,num_dependents_deps.dev:0 @@ -994652,6 +1012563,7 @@ github.com/rremigius/log-control,num_dependents_deps.dev:2 github.com/rremigius/mozel,num_dependents_deps.dev:0 github.com/rremizov/django-random-queryset, github.com/rrenat/qrcode-ft,num_dependents_deps.dev:0 +github.com/rrennoir/portainer-stack, github.com/rreubenreyes/brolang,num_dependents_deps.dev:0 github.com/rreubenreyes/toastman,num_dependents_deps.dev:0 github.com/rreusser/beans,num_dependents_deps.dev:0 @@ -994692,6 +1012604,7 @@ github.com/rrgarciach/angular2-local-storage,num_dependents_deps.dev:0 github.com/rrgarciach/swagger-yaml-inject,num_dependents_deps.dev:0 github.com/rrgayhart/curl-breaker,num_dependents_deps.dev:0 github.com/rrgayhart/load-machine,num_dependents_deps.dev:0 +github.com/rrgks6221/pr-notification-bot, github.com/rrguardo/coinmate.io-api, github.com/rrharvey/git-log-reader,num_dependents_deps.dev:0 github.com/rrharvey/grunt-file-blocks,num_dependents_deps.dev:0 @@ -994905,6 +1012818,7 @@ github.com/rsaenen/ngx-input-file,num_dependents_deps.dev:0 github.com/rsaenen/ngx-validation,num_dependents_deps.dev:0 github.com/rsagroup/pyrsa, github.com/rsagroup/rsatoolbox, +github.com/rsahu-swi/sierra-cfn-scan, github.com/rsaihe/libra,num_dependents_deps.dev:0 github.com/rsaihe/rtab,num_dependents_deps.dev:0 github.com/rsainiRicky/jsnodeserver,num_dependents_deps.dev:0 @@ -995135,6 +1013049,7 @@ github.com/rschweizer/lesslog,num_dependents_deps.dev:0 github.com/rschweizer/middy-lesslog,num_dependents_deps.dev:0 github.com/rscircus/prettier-config,num_dependents_deps.dev:0 github.com/rsclarke/rehype-shiki,num_dependents_deps.dev:34 +github.com/rscohn2/setup-oneapi, github.com/rscoones/MockServer,num_dependents_deps.dev:0 github.com/rscoones/filewalk,num_dependents_deps.dev:0 github.com/rscoones/placeholder,num_dependents_deps.dev:0 @@ -995347,6 +1013262,9 @@ github.com/rselph/plex-poster-fetch,num_dependents_deps.dev:0 github.com/rselph/postclip,num_dependents_deps.dev:0 github.com/rsemenov100/d3-multiaxis-zoom,num_dependents_deps.dev:0 github.com/rsenden/node-red-contrib-map,num_dependents_deps.dev:0 +github.com/rseng/good-first-issues, +github.com/rseng/opensource-heartbeat-action, +github.com/rseng/pdf-generator, github.com/rseng/rse, github.com/rseng/rseng, github.com/rsenk330/Flask-Cake, @@ -995440,6 +1013358,7 @@ github.com/rshk/python-libxdo, github.com/rshk/python-pcapng, github.com/rshk/shopicli, github.com/rshk/steamfactory, +github.com/rshop/trigger-workflow-action, github.com/rshrj/pirsa-dl, github.com/rshtg/vanillajs-router,num_dependents_deps.dev:0 github.com/rshtishi/pdf-barcodes-processor,num_dependents_deps.dev:0 @@ -995539,6 +1013458,8 @@ github.com/rslint/rslint,criticality_score:0.374150 github.com/rslotb/puml-code-generator,num_dependents_deps.dev:0 github.com/rslprpr/biojs-vis-blast,num_dependents_deps.dev:0 github.com/rsludge/zitgit,num_dependents_deps.dev:0 +github.com/rsmartins78/changelog-to-slack-formatter, +github.com/rsmartins78/stateful-action, github.com/rsmaxwell/players-api,num_dependents_deps.dev:0 github.com/rsmbl/Resemble.js,criticality_score:0.355950 github.com/rsmdc/rsmdc,num_dependents_deps.dev:148 @@ -995646,7 +1013567,9 @@ github.com/rsoni5519/publish-react-native, github.com/rsonmez/rorob-lb-balancer,num_dependents_deps.dev:0 github.com/rsookram/axmlfmt,num_dependents_deps.dev:0 github.com/rsookram/imgls,num_dependents_deps.dev:0 +github.com/rsooo/kubectl, github.com/rsoper/git-prune, +github.com/rsotnychenko/deployment-status-update, github.com/rsoury/react-action-sheet,num_dependents_deps.dev:0 github.com/rsoury/react-button-shine,num_dependents_deps.dev:0 github.com/rsoury/webextension-toolbox, @@ -995715,6 +1013638,7 @@ github.com/rspec/rspec-collection_matchers,num_dependents_deps.dev:36 github.com/rspec/rspec-core,"criticality_score:0.685060,num_dependents_deps.dev:6386" github.com/rspec/rspec-expectations,"criticality_score:0.662280,num_dependents_deps.dev:6438" github.com/rspec/rspec-its,num_dependents_deps.dev:1186 +github.com/rspec/rspec-metagem, github.com/rspec/rspec-mocks,"criticality_score:0.638760,num_dependents_deps.dev:6368" github.com/rspec/rspec-rails,"criticality_score:0.712870,num_dependents_deps.dev:140" github.com/rspec/rspec-support,num_dependents_deps.dev:5518 @@ -995789,6 +1013713,7 @@ github.com/rssh/shim--scala-async--dotty-cps-async,num_dependents_deps.dev:0 github.com/rssh/trackedfuture,num_dependents_deps.dev:0 github.com/rssinghji/pixability,num_dependents_deps.dev:0 github.com/rssnyder/coingecko-cache,num_dependents_deps.dev:0 +github.com/rssnyder/defined-networking-connect, github.com/rssnyder/discord-auditlog-export,num_dependents_deps.dev:0 github.com/rssnyder/discord-bsc-gas-price,num_dependents_deps.dev:0 github.com/rssnyder/discord-crypto-gas-price,num_dependents_deps.dev:0 @@ -995798,6 +1013723,8 @@ github.com/rssnyder/discord-matic-ticker,num_dependents_deps.dev:0 github.com/rssnyder/discord-message-ticker,num_dependents_deps.dev:0 github.com/rssnyder/discord-stock-ticker,num_dependents_deps.dev:0 github.com/rssnyder/discord-stock-tickerboard,num_dependents_deps.dev:0 +github.com/rssnyder/ghcr-artifact-store, +github.com/rssnyder/nebula-action-step, github.com/rssnyder/taco-bell-python, github.com/rssr-org/rssr-from,num_dependents_deps.dev:0 github.com/rssr-org/rssr-loading,num_dependents_deps.dev:0 @@ -996193,6 +1014120,9 @@ github.com/rt2zz/storage-memory,num_dependents_deps.dev:0 github.com/rt2zz/stylwriter, github.com/rt3norio/baratona-electron,num_dependents_deps.dev:0 github.com/rt400/pyttsreverso, +github.com/rtCamp/action-deploy-wordpress, +github.com/rtCamp/action-phpcs-code-review, +github.com/rtCamp/action-phpcs-inspection, github.com/rtCamp/action-slack-notify,"criticality_score:0.421610,num_dependents_deps.dev:0" github.com/rtCamp/gitbook-plugin-collapsible-menu,num_dependents_deps.dev:4 github.com/rtCamp/gitbook-plugin-edit-link,num_dependents_deps.dev:18 @@ -996306,6 +1014236,7 @@ github.com/rtc-io/rtc-ui,num_dependents_deps.dev:0 github.com/rtc-io/rtc-validator,num_dependents_deps.dev:28 github.com/rtc-io/rtc-videoproc,num_dependents_deps.dev:0 github.com/rtc-io/rtcio-signaller-compatibility,num_dependents_deps.dev:0 +github.com/rtc11/setup-graalvm, github.com/rtcmesh/rtcmesh-react,num_dependents_deps.dev:0 github.com/rtcmesh/rtcmesh-server,num_dependents_deps.dev:0 github.com/rtcoms/update_filter,num_dependents_deps.dev:0 @@ -996589,6 +1014520,7 @@ github.com/rtrjl/nso_restconf, github.com/rtrjl/pyats_parser, github.com/rtrn/govanity,num_dependents_deps.dev:0 github.com/rtrn/wenv,num_dependents_deps.dev:0 +github.com/rtrompier/spring-cloud-deploy, github.com/rtroncoso/argentum-online-js,num_dependents_deps.dev:0 github.com/rtroncoso/node-ini,num_dependents_deps.dev:0 github.com/rtrouton/rtrouton_scripts,criticality_score:0.394200 @@ -996597,6 +1014529,7 @@ github.com/rtroxx/improved-file-based-database,num_dependents_deps.dev:0 github.com/rtruxal/py-cog-serv, github.com/rtrvrtg/html-2-react,num_dependents_deps.dev:0 github.com/rtrwalker/geotecha, +github.com/rts-core/godoc-action, github.com/rts-core/versioner,num_dependents_deps.dev:0 github.com/rtsao/auto-bind-es5,num_dependents_deps.dev:0 github.com/rtsao/babel-plugin-csjs-postcss,num_dependents_deps.dev:0 @@ -996681,6 +1014614,7 @@ github.com/rturnq/solid-router,num_dependents_deps.dev:0 github.com/rturnq/solid-store,num_dependents_deps.dev:0 github.com/rturnq/storybook-solid,num_dependents_deps.dev:0 github.com/rtv/Stage,criticality_score:0.430640 +github.com/rtvu/update-description-using-readme, github.com/rtw/npm-coinspot-api,num_dependents_deps.dev:0 github.com/rtweeks/boto3-mocking, github.com/rtweeks/run-dynamodblocal, @@ -996760,6 +1014694,7 @@ github.com/ruabmbua/enet-sys,num_dependents_deps.dev:0 github.com/ruabmbua/hidapi-rs,num_dependents_deps.dev:83 github.com/ruabmbua/msi_klm,num_dependents_deps.dev:0 github.com/ruabmbua/sntp_client,num_dependents_deps.dev:0 +github.com/ruairidhwm/action-cats, github.com/ruairigibney/wolfpack-file-server,num_dependents_deps.dev:0 github.com/ruairispain/jtt,num_dependents_deps.dev:0 github.com/ruairitobrien/generator-fire-phaser,num_dependents_deps.dev:0 @@ -996948,6 +1014883,11 @@ github.com/ruben-arushanyan/produce-by-path,num_dependents_deps.dev:2 github.com/ruben-arushanyan/reducers-creator,num_dependents_deps.dev:0 github.com/ruben-arushanyan/redux-cool,num_dependents_deps.dev:0 github.com/ruben-arushanyan/secure-event-emitter,num_dependents_deps.dev:0 +github.com/ruben-baez-mojix-com/git-labels, +github.com/ruben-baez-mojix-com/gke-deployment, +github.com/ruben-baez-mojix-com/jfrog-deployment, +github.com/ruben-baez-mojix-com/subtract-days-date, +github.com/ruben-baez-mojix-com/update-secret-gcp, github.com/ruben-xe/funniest-commit,num_dependents_deps.dev:0 github.com/ruben2020/codequery,criticality_score:0.393610 github.com/rubenCodeforges/angular2-google-api,num_dependents_deps.dev:0 @@ -996970,6 +1014910,7 @@ github.com/rubenberna/data-portal-app-one,num_dependents_deps.dev:0 github.com/rubenberna/data-portal-app-two,num_dependents_deps.dev:0 github.com/rubenberna/react-library-counter,num_dependents_deps.dev:0 github.com/rubenbrieva/vue-commercetools,num_dependents_deps.dev:0 +github.com/rubencherbit/remove-old-packages, github.com/rubenchoi/react-lib-mqtt, github.com/rubenchoi/react-metaverse,num_dependents_deps.dev:0 github.com/rubenchoi/react3d,num_dependents_deps.dev:0 @@ -996985,6 +1014926,9 @@ github.com/rubender/redoor,num_dependents_deps.dev:0 github.com/rubender/redoor-devtool,num_dependents_deps.dev:0 github.com/rubendibattista/ovh-dynhost, github.com/rubendmatos1985/typescript-cypress,num_dependents_deps.dev:0 +github.com/rubenesp87/env-var-validator-action, +github.com/rubenesp87/semver-validation-action, +github.com/rubenfiszel/autochangelog-action, github.com/rubengg86/ngx-pagination-plus,num_dependents_deps.dev:0 github.com/rubengmurray/joi-schema-to-file,num_dependents_deps.dev:0 github.com/rubengmurray/make-joiful-errors,num_dependents_deps.dev:0 @@ -997223,6 +1015167,7 @@ github.com/rubeon/homebridge-onkyo-serial,num_dependents_deps.dev:0 github.com/rubeon/pyretroprint, github.com/rubernetes/gem,num_dependents_deps.dev:0 github.com/rubetek/rubetools, +github.com/rubeus90/auto-sync-reviewer-assignee, github.com/rubgombar1/django-admin-bootstrapped, github.com/rubgombar1/django-bootstrap3-datetimepicker, github.com/rubgombar1/django-push-notifications, @@ -997302,6 +1015247,7 @@ github.com/rubocop-hq/rubocop-rails,"criticality_score:0.638360,num_dependents_d github.com/rubocop-hq/rubocop-rake,num_dependents_deps.dev:0 github.com/rubocop-hq/rubocop-rspec,"criticality_score:0.681190,num_dependents_deps.dev:0" github.com/rubocop-hq/ruby-style-guide,criticality_score:0.543730 +github.com/rubocop/rubocop, github.com/rubocop/rubocop-ast, github.com/ruboto/ruboto,num_dependents_deps.dev:0 github.com/rubrica/rubrica,num_dependents_deps.dev:0 @@ -997353,6 +1015299,7 @@ github.com/ruby-json-schema/json-schema,criticality_score:0.453720 github.com/ruby-ldap/ruby-net-ldap,"criticality_score:0.406860,num_dependents_deps.dev:230" github.com/ruby-lint/ruby_lint,num_dependents_deps.dev:0 github.com/ruby-llvm/ruby-llvm,num_dependents_deps.dev:2 +github.com/ruby-logic/setup-digitalocean-firewall, github.com/ruby-marc/ruby-marc,num_dependents_deps.dev:63 github.com/ruby-next/ruby-next,"criticality_score:0.333110,num_dependents_deps.dev:102" github.com/ruby-numo/numo-narray,criticality_score:0.409580 @@ -997413,6 +1015360,7 @@ github.com/ruby/rexml, github.com/ruby/ruby,"criticality_score:0.825580,num_dependents_deps.dev:0" github.com/ruby/ruby2_keywords, github.com/ruby/setup-ruby,criticality_score:0.606140 +github.com/ruby/setup-ruby-pkgs, github.com/ruby/singleton,num_dependents_deps.dev:2 github.com/ruby/spec,criticality_score:0.708320 github.com/ruby/tempfile,num_dependents_deps.dev:0 @@ -997598,9 +1015546,11 @@ github.com/rucas/validator,num_dependents_deps.dev:0 github.com/ruchern/crypto-helper,num_dependents_deps.dev:0 github.com/ruchern/dn-events-bot,num_dependents_deps.dev:0 github.com/ruchern/supremesg-bot,num_dependents_deps.dev:0 +github.com/ruchernchong/tweet-post-action, github.com/ruchevits/generator-doug,num_dependents_deps.dev:0 github.com/ruchevits/npm-docker-cli,num_dependents_deps.dev:0 github.com/ruchevits/react-identity-icon,num_dependents_deps.dev:0 +github.com/ruchika-jain/my-action, github.com/ruchikawa/realworldhttp,num_dependents_deps.dev:0 github.com/ruchira-dot-rao/sf-apm-etl, github.com/rucio/jupyterlab-extension, @@ -997630,6 +1015580,7 @@ github.com/ruckyshao/XGL,num_dependents_deps.dev:0 github.com/rucmlcv/Wenlan-Video-Public, github.com/rucool/hfradarpy, github.com/rucron/rucron-client,num_dependents_deps.dev:0 +github.com/ructions/toolchain, github.com/rucuriousyet/boost,num_dependents_deps.dev:0 github.com/rucuriousyet/compak,num_dependents_deps.dev:0 github.com/rucuriousyet/gmoonscript,num_dependents_deps.dev:0 @@ -997650,6 +1015601,8 @@ github.com/rudden1805/project,num_dependents_deps.dev:0 github.com/rudderlabs/analytics-node,num_dependents_deps.dev:0 github.com/rudderlabs/cookie,num_dependents_deps.dev:0 github.com/rudderlabs/gatsby-plugin-rudderstack,num_dependents_deps.dev:0 +github.com/rudderlabs/github-notion, +github.com/rudderlabs/github-notion-sync, github.com/rudderlabs/rudder-integration-adjust-android,num_dependents_deps.dev:0 github.com/rudderlabs/rudder-integration-amplitude-android,num_dependents_deps.dev:0 github.com/rudderlabs/rudder-integration-appcenter-android,num_dependents_deps.dev:0 @@ -997674,6 +1015627,7 @@ github.com/rudderlabs/rudder-sdk-python, github.com/rudderlabs/rudder-sdk-react-native, github.com/rudderlabs/rudder-sdk-reactnative,num_dependents_deps.dev:0 github.com/rudderlabs/rudder-server,"criticality_score:0.525450,num_dependents_deps.dev:0" +github.com/rudderlabs/rudder-transformation-action, github.com/rudderlabs/rudder-typer,num_dependents_deps.dev:0 github.com/rudderlabs/rudder-utility,num_dependents_deps.dev:0 github.com/rudders/homebridge-http,num_dependents_deps.dev:0 @@ -997827,6 +1015781,7 @@ github.com/rudy3091/mooze,num_dependents_deps.dev:0 github.com/rudyLittleLove/r-test-scroll,num_dependents_deps.dev:0 github.com/rudyLittleLove/rudy-captcha,num_dependents_deps.dev:0 github.com/rudyLittleLove/rudy-scrollbar,num_dependents_deps.dev:0 +github.com/rudyatkinson/azure-playfab-function-sync, github.com/rudygr/vue3-google-auth,num_dependents_deps.dev:0 github.com/rudyhuynh/console-log-to-file, github.com/rudyhuynh/git-clear-branch,num_dependents_deps.dev:0 @@ -997953,6 +1015908,9 @@ github.com/rugglcon/python-backgroundchanger, github.com/ruggleslab/blackSheep, github.com/rugleb/JsonCompare, github.com/rugleb/marshmallow-aiohttp, +github.com/rugpanov/get-firestore-value-action, +github.com/rugpanov/get-value-from-firestore-action, +github.com/rugpanov/restaurant-manager-action, github.com/rugpullindex/list-metadata,num_dependents_deps.dev:0 github.com/ruguoapp/node-cache-manager-redis,num_dependents_deps.dev:0 github.com/ruguoapp/sensorsdata-sdk.ts,num_dependents_deps.dev:0 @@ -997961,6 +1015919,7 @@ github.com/rugwirobaker/larissa,num_dependents_deps.dev:0 github.com/ruhaim/ng-lazy-component-app,num_dependents_deps.dev:0 github.com/ruhaise/rpn-calculator,num_dependents_deps.dev:0 github.com/ruhaise/rpn-computer, +github.com/ruheni/pg-preview-database-action, github.com/ruhi-goyal/Topsis-Ruhi-101903744, github.com/ruhigundrelaxed/ioBroker.boblight,num_dependents_deps.dev:0 github.com/ruhigundrelaxed/ioBroker.hyperion,num_dependents_deps.dev:0 @@ -997975,6 +1015934,8 @@ github.com/ruhrscholz/lolisafe-scraper, github.com/ruhuansanmei/dzsBaiduMapHelper,num_dependents_deps.dev:0 github.com/ruhulwebdev/create-react-app,num_dependents_deps.dev:0 github.com/ruhulwebdev/react-scripts-with-useful-features, +github.com/ruhyadi/nuclio-debug, +github.com/ruhyadi/nuclio-debugger, github.com/rui-antunes/dmarc-reports, github.com/rui-gyant/masks-js,num_dependents_deps.dev:0 github.com/rui-infotrack/Reblaze,num_dependents_deps.dev:0 @@ -998171,6 +1016132,9 @@ github.com/rukodb/flask-ruko, github.com/rukqoa/fractured-bootlegger,num_dependents_deps.dev:0 github.com/rukundoeric/react-jquery-plugin,num_dependents_deps.dev:0 github.com/rukundoeric/tesla-error-handler,num_dependents_deps.dev:0 +github.com/rulasg/actions-composite-template, +github.com/rulasg/testinghelper-action, +github.com/rulasg/testinghelper-setup-action, github.com/rule110-io/surge,num_dependents_deps.dev:0 github.com/rule110-io/surge-ui,num_dependents_deps.dev:0 github.com/ruleb/dimx,num_dependents_deps.dev:0 @@ -998180,6 +1016144,7 @@ github.com/ruler501/flake8-import-order-ruler501, github.com/ruler501/magic-card-parser,num_dependents_deps.dev:0 github.com/rulerson/xdagtool, github.com/rules-proto-grpc/rules_proto_grpc,num_dependents_deps.dev:0 +github.com/rulesets/rulesets, github.com/ruliana/rack-methodoverride-4-all,num_dependents_deps.dev:0 github.com/rulinma/learning-javascript,num_dependents_deps.dev:0 github.com/rulioos/gototo,num_dependents_deps.dev:0 @@ -998230,6 +1016195,7 @@ github.com/rumblefishdev/serialization, github.com/rumblefrog/a2s-rs,num_dependents_deps.dev:0 github.com/rumblefrog/chlorate,num_dependents_deps.dev:0 github.com/rumblefrog/go-a2s,num_dependents_deps.dev:0 +github.com/rumblefrog/setup-sp, github.com/rumblefrog/smx-dasm-rs,num_dependents_deps.dev:0 github.com/rumblefrog/source-chat-relay,num_dependents_deps.dev:0 github.com/rumblefrog/sp-dcp,num_dependents_deps.dev:0 @@ -998435,6 +1016401,7 @@ github.com/rundis/ts-ws-machine,num_dependents_deps.dev:0 github.com/rundmd/wdio-image-comparison-service,num_dependents_deps.dev:0 github.com/rundmt/empty-chrome,num_dependents_deps.dev:0 github.com/rundmt/react-native-flexbox-grid,num_dependents_deps.dev:0 +github.com/rundocs/checkout, github.com/rundsk/dsk,num_dependents_deps.dev:0 github.com/rundsk/js-sdk,num_dependents_deps.dev:0 github.com/rune-catalog/rune-ui,num_dependents_deps.dev:0 @@ -998524,6 +1016491,9 @@ github.com/runfan/cn-id-validator,num_dependents_deps.dev:0 github.com/runfan/egg-property-validator,num_dependents_deps.dev:0 github.com/runfan/getui-node-sdk,num_dependents_deps.dev:0 github.com/runfi/runfi-pages,num_dependents_deps.dev:0 +github.com/runforesight/foresight-test-kit-action, +github.com/runforesight/foresight-workflow-kit-action, +github.com/runforesight/workflow-telemetry-action, github.com/rung-tools/aggregation-calculus,num_dependents_deps.dev:0 github.com/rung-tools/babel-plugin-holes,num_dependents_deps.dev:0 github.com/rung-tools/babel-plugin-pipe-operator,num_dependents_deps.dev:0 @@ -998590,10 +1016560,12 @@ github.com/runletapp/crabfs,num_dependents_deps.dev:0 github.com/runletapp/go-console,num_dependents_deps.dev:0 github.com/runletapp/node-pty-pre-gyp,num_dependents_deps.dev:0 github.com/runli/gotutorial,num_dependents_deps.dev:0 +github.com/runlyio/azure-versioned-storage, github.com/runlyio/eslint-config,num_dependents_deps.dev:0 github.com/runlyio/javascript,num_dependents_deps.dev:0 github.com/runlyio/runly-js,num_dependents_deps.dev:2 github.com/runma-learning-team/generator-test,num_dependents_deps.dev:0 +github.com/runmael/Detekt-Action, github.com/runmark/fledge,num_dependents_deps.dev:0 github.com/runmark/floud,num_dependents_deps.dev:0 github.com/runmark/geeweb,num_dependents_deps.dev:0 @@ -998744,7 +1016716,10 @@ github.com/runoverPy/regOct, github.com/runox-game/game-engine,num_dependents_deps.dev:0 github.com/runphilrun/tdu, github.com/runreflect/webpack-react-component-name,num_dependents_deps.dev:0 +github.com/runs-on/action, github.com/runsascoded/gsmo, +github.com/runsascoded/tmp-branch-action, +github.com/runsascoded/update-submodules, github.com/runsascoded/utz, github.com/runscope/otto,num_dependents_deps.dev:0 github.com/runslash/async-aws-ruby,num_dependents_deps.dev:0 @@ -999118,6 +1017093,7 @@ github.com/ruslanbik4/uppeople,num_dependents_deps.dev:0 github.com/ruslancha/project1,num_dependents_deps.dev:0 github.com/ruslanchek/react-form,num_dependents_deps.dev:0 github.com/ruslands/Chronobiology, +github.com/ruslandulina/compare-basehead-commits, github.com/ruslang02/atomos,num_dependents_deps.dev:0 github.com/ruslang02/discord-qt,num_dependents_deps.dev:0 github.com/ruslang02/flat-color-icons-loader,num_dependents_deps.dev:0 @@ -999160,6 +1017136,9 @@ github.com/ruslux/validate-it, github.com/rusnasonov/cargo-alfred,num_dependents_deps.dev:0 github.com/rusnasonov/xlsx2csv,num_dependents_deps.dev:0 github.com/rusoto/rusoto,"criticality_score:0.590740,num_dependents_deps.dev:3609" +github.com/rusowyler/github-action-kustomize-and-push, +github.com/rusowyler/github-action-ssm-execute-document, +github.com/rusowyler/github-action-yaml-update-and-push, github.com/rusq/chromedl,num_dependents_deps.dev:0 github.com/rusq/datemagic, github.com/rusq/dlog,num_dependents_deps.dev:0 @@ -999174,6 +1017153,7 @@ github.com/rusriver/config,num_dependents_deps.dev:0 github.com/rusriver/filtertag,num_dependents_deps.dev:0 github.com/rusriver/nutz,num_dependents_deps.dev:0 github.com/rusriver/nutzamqp,num_dependents_deps.dev:0 +github.com/rusrushal13/aws-ssm-send-command, github.com/russ/devise_password_sharing_extension,num_dependents_deps.dev:0 github.com/russ666/all-countries-and-cities-json,num_dependents_deps.dev:0 github.com/russbeuker/kerasbestfit, @@ -999408,6 +1017388,7 @@ github.com/rust-bpf/bcc-sys,num_dependents_deps.dev:1 github.com/rust-bpf/rust-bcc,"criticality_score:0.397370,num_dependents_deps.dev:0" github.com/rust-bridge/node,num_dependents_deps.dev:0 github.com/rust-bridge/rust,num_dependents_deps.dev:0 +github.com/rust-build/rust-build.action, github.com/rust-builder/buildable,num_dependents_deps.dev:0 github.com/rust-builder/cargo-rub,num_dependents_deps.dev:0 github.com/rust-builder/clj-rub,num_dependents_deps.dev:0 @@ -999643,10 +1017624,12 @@ github.com/rust-locale/locale_config,num_dependents_deps.dev:21 github.com/rust-locale/rust-locale,num_dependents_deps.dev:7 github.com/rust-locale/translate-storage,num_dependents_deps.dev:0 github.com/rust-los-angeles/stockfighter-sdk-rs,num_dependents_deps.dev:0 +github.com/rust-marker/marker, github.com/rust-math/cauchy,num_dependents_deps.dev:64 github.com/rust-math/fftw,num_dependents_deps.dev:19 github.com/rust-math/intel-mkl-src,num_dependents_deps.dev:30 github.com/rust-ml/linfa,"criticality_score:0.413130,num_dependents_deps.dev:1" +github.com/rust-mobile/setup-xbuild-action, github.com/rust-nairobi/africastalking-rust,num_dependents_deps.dev:0 github.com/rust-ndarray/ndarray,"criticality_score:0.529520,num_dependents_deps.dev:293" github.com/rust-ndarray/ndarray-linalg,num_dependents_deps.dev:36 @@ -999899,6 +1017882,9 @@ github.com/rustwizard/balda,num_dependents_deps.dev:0 github.com/rustwizard/cleargo,num_dependents_deps.dev:0 github.com/rustwizard/ethstat,num_dependents_deps.dev:0 github.com/rustwtxt/rustwtxt,num_dependents_deps.dev:0 +github.com/rusty-actions/dockerfile-linter, +github.com/rusty-actions/release-versions, +github.com/rusty-actions/sam-code-signing-config, github.com/rusty-alucard/sp_api,num_dependents_deps.dev:0 github.com/rusty-argentum/argentum,num_dependents_deps.dev:0 github.com/rusty-celery/rusty-celery,"criticality_score:0.409970,num_dependents_deps.dev:1" @@ -1000035,6 +1018021,7 @@ github.com/rusumadalina/cordova-plugin-fcm-notification,num_dependents_deps.dev: github.com/rususlasan/swaggersocket,num_dependents_deps.dev:0 github.com/ruszkipista/cn03-go-helloworld,num_dependents_deps.dev:0 github.com/rutaihwa/babu,num_dependents_deps.dev:0 +github.com/rutajdash/prettier-cli-action, github.com/rutaks/typeorm-query-builder-extended,num_dependents_deps.dev:0 github.com/rutan/akashic-flexbox,num_dependents_deps.dev:0 github.com/rutan/current-app-to-slack,num_dependents_deps.dev:0 @@ -1000188,6 +1018175,9 @@ github.com/ruzicka/preserve-case-replace,num_dependents_deps.dev:0 github.com/ruzicka/progress-logger,num_dependents_deps.dev:0 github.com/ruzicka/string-insert-multi,num_dependents_deps.dev:0 github.com/ruzicka/to-json-schema,num_dependents_deps.dev:1814 +github.com/ruzickap/action-my-broken-link-checker, +github.com/ruzickap/action-my-markdown-link-checker, +github.com/ruzickap/action-my-markdown-linter, github.com/ruzpuz/api-rate-limiting,num_dependents_deps.dev:0 github.com/ruzulinjun/logutil,num_dependents_deps.dev:0 github.com/ruzz311/butchershop,num_dependents_deps.dev:0 @@ -1000359,6 +1018349,7 @@ github.com/rvcas/roc-perf-stats,num_dependents_deps.dev:0 github.com/rvcoile/SAFIRshell, github.com/rvcoile/rvcpy, github.com/rvcroffi/capacitor-plugin-nitgen-fingerprint,num_dependents_deps.dev:0 +github.com/rvcycle/expo-apple-2fa, github.com/rvdende/solarmd,num_dependents_deps.dev:0 github.com/rvdende/ts-react-grid,num_dependents_deps.dev:0 github.com/rvdende/ts-react-server,num_dependents_deps.dev:0 @@ -1000370,6 +1018361,7 @@ github.com/rvdkooy/reflux-store-status,num_dependents_deps.dev:0 github.com/rvdkooy/reren,num_dependents_deps.dev:0 github.com/rvdkooy/tiny-ioc,num_dependents_deps.dev:0 github.com/rvdm2101/kingsquare-nextjs-routing,num_dependents_deps.dev:0 +github.com/rvdwegen/action-jsonresume-convert, github.com/rveachkc/pymsteams, github.com/rveciana/d3-composite-projections,num_dependents_deps.dev:1342 github.com/rveciana/js-raster-tools,num_dependents_deps.dev:0 @@ -1000464,12 +1018456,15 @@ github.com/rvojcik/rt-server-client, github.com/rvojcik/rtapi, github.com/rvojcik/vault-certificate-deploy, github.com/rvolgers/fs-verity-rs,num_dependents_deps.dev:0 +github.com/rvolo/open-api-diff-notes-action, +github.com/rvolo/xml-replace-action, github.com/rvolosatovs/contextual-identities,num_dependents_deps.dev:0 github.com/rvolosatovs/contextual-identities-sys,num_dependents_deps.dev:0 github.com/rvolosatovs/fvad,num_dependents_deps.dev:0 github.com/rvolosatovs/influx-taggify,num_dependents_deps.dev:0 github.com/rvolosatovs/keylogger,num_dependents_deps.dev:0 github.com/rvolosatovs/libfvad-sys,num_dependents_deps.dev:0 +github.com/rvolosatovs/nix-flake-update-action, github.com/rvolosatovs/redis,num_dependents_deps.dev:0 github.com/rvolosatovs/testlog,num_dependents_deps.dev:0 github.com/rvolosatovs/web-extensions,num_dependents_deps.dev:0 @@ -1000583,6 +1018578,8 @@ github.com/rwbeast/tez-dom, github.com/rwbeast/tez.js,num_dependents_deps.dev:0 github.com/rwbutler/Connectivity,criticality_score:0.313930 github.com/rwclarke/awesome-autocomplete, +github.com/rwe/actions-hlint-run, +github.com/rwe/actions-hlint-setup, github.com/rweald/mendeley,num_dependents_deps.dev:0 github.com/rweda/aragonite,num_dependents_deps.dev:0 github.com/rweda/aragonite-vbox-runner,num_dependents_deps.dev:0 @@ -1000864,6 +1018861,10 @@ github.com/rwwagner90/hyper-adventure-time,num_dependents_deps.dev:0 github.com/rwwagner90/hyperterm-adventure-time,num_dependents_deps.dev:0 github.com/rwwarren/golang-webserver,num_dependents_deps.dev:0 github.com/rwwebdesign/Node-Flickr-Image-Downloader,num_dependents_deps.dev:0 +github.com/rwx-research/setup-abq, +github.com/rwx-research/setup-captain, +github.com/rwx-research/upload-captain-artifact, +github.com/rwxland/action-automatic-releases, github.com/rwxlife/alike,num_dependents_deps.dev:0 github.com/rwxmad/dotsync,num_dependents_deps.dev:0 github.com/rwxnet/goexamples,num_dependents_deps.dev:0 @@ -1000958,6 +1018959,7 @@ github.com/rxaviers/yaassertion,num_dependents_deps.dev:176 github.com/rxaviers/zoned-date-time,num_dependents_deps.dev:0 github.com/rxchard/wg-tray,num_dependents_deps.dev:0 github.com/rxchard/wg-tray-daemon,num_dependents_deps.dev:0 +github.com/rxcod9/todoist-readme, github.com/rxcomm/pyaxo, github.com/rxcxdx/utils,num_dependents_deps.dev:0 github.com/rxda/go-hikvision-artemis-sdk,num_dependents_deps.dev:0 @@ -1001052,7 +1019054,9 @@ github.com/rxreact/jest-helpers,num_dependents_deps.dev:0 github.com/rxreact/signal,num_dependents_deps.dev:0 github.com/rxreact/signal-connect,num_dependents_deps.dev:0 github.com/rxrevu/terraform-provider-snowflake,num_dependents_deps.dev:0 +github.com/rxrw/algolia-index-uploader, github.com/rxrw/go-grpc-zookeeper,num_dependents_deps.dev:0 +github.com/rxrw/markdown-image-uploader, github.com/rxse/webtestit-lint-rules,num_dependents_deps.dev:0 github.com/rxseger/homebridge-bme280,num_dependents_deps.dev:0 github.com/rxseger/homebridge-camera-motion,num_dependents_deps.dev:0 @@ -1001083,6 +1019087,7 @@ github.com/rxwen/python-terncy, github.com/rxyor/carp,num_dependents_deps.dev:92 github.com/ry-2718/oasobi,num_dependents_deps.dev:0 github.com/ry-idearobin/npm-pkg,num_dependents_deps.dev:0 +github.com/ry-itto/slack_notify_actions, github.com/ry-st/ry-ui, github.com/ry/deno,num_dependents_deps.dev:0 github.com/ry00001/commandorobo,num_dependents_deps.dev:0 @@ -1001111,6 +1019116,7 @@ github.com/ryan-berdel/bad-words-plus,num_dependents_deps.dev:0 github.com/ryan-berger/dexcomclient,num_dependents_deps.dev:0 github.com/ryan-bush/framework,num_dependents_deps.dev:0 github.com/ryan-byrne/pycobb, +github.com/ryan-cha/auto-changelog, github.com/ryan-codingintrigue/sql-wasm,num_dependents_deps.dev:0 github.com/ryan-endacott/verbal_expressions,num_dependents_deps.dev:2 github.com/ryan-hub-bit/golang,num_dependents_deps.dev:0 @@ -1001144,6 +1019150,7 @@ github.com/ryan-rowland/hubot-prmanager,num_dependents_deps.dev:0 github.com/ryan-rowland/lending-club,num_dependents_deps.dev:0 github.com/ryan-rowland/proxy-out,num_dependents_deps.dev:0 github.com/ryan-rowland/typedoc-clarity-theme,num_dependents_deps.dev:0 +github.com/ryan-rozario/pipreqs-action, github.com/ryan-rushton/eslint-config,num_dependents_deps.dev:0 github.com/ryan-rushton/eslint-plugin-no-except,num_dependents_deps.dev:0 github.com/ryan-sandy/htmlpp,num_dependents_deps.dev:0 @@ -1001153,6 +1019160,7 @@ github.com/ryan-sandy/no-robots,num_dependents_deps.dev:0 github.com/ryan-schroeder/pug-static,num_dependents_deps.dev:0 github.com/ryan-self/exec-plan,num_dependents_deps.dev:0 github.com/ryan-summers/shared-bus-rtic,num_dependents_deps.dev:0 +github.com/ryan-vacasa/gajira-find-issue-key, github.com/ryan-williams/hilbert-js,num_dependents_deps.dev:0 github.com/ryan-williams/node-array-utils,num_dependents_deps.dev:0 github.com/ryan-wolbeck/ngboost-tuner, @@ -1001266,6 +1019274,7 @@ github.com/ryanblock/whatev, github.com/ryanbosher/eslint-config-lancom,num_dependents_deps.dev:0 github.com/ryanbr/fanboy-adblock,criticality_score:0.438940 github.com/ryanbradynd05/iso-country,num_dependents_deps.dev:0 +github.com/ryanbraganza/word-count-action, github.com/ryanbrainard/forceworkbench,Google github.com/ryanbrainard/jjogaegi,num_dependents_deps.dev:0 github.com/ryanbrainard/kubernetes-go-test-coverage-demo,num_dependents_deps.dev:0 @@ -1001384,6 +1019393,7 @@ github.com/ryancat/create-csv,num_dependents_deps.dev:0 github.com/ryancat/create-typescript-library,num_dependents_deps.dev:0 github.com/ryancat/selenium-webdriverjs-example,num_dependents_deps.dev:0 github.com/ryancat/simple-deep-equal,num_dependents_deps.dev:0 +github.com/ryanccn/attic-action, github.com/ryanccollins/slush-generator-scalable-react,num_dependents_deps.dev:0 github.com/ryanccollins/slush-react-generator,num_dependents_deps.dev:0 github.com/ryancdotorg/brainflayer,criticality_score:0.328740 @@ -1001398,6 +1019408,7 @@ github.com/ryanchanplc/node-fps-hk,num_dependents_deps.dev:0 github.com/ryanchao2012/airfly, github.com/ryanchao2012/asttrs, github.com/ryanchao2012/gutt, +github.com/ryanchapman/gha-ssh, github.com/ryancharris/react-livestream,num_dependents_deps.dev:0 github.com/ryancharris/use-fauna,num_dependents_deps.dev:0 github.com/ryancheley/confluence-to-sqlite, @@ -1001408,6 +1019419,7 @@ github.com/ryanchen1990/gitflow-demo,num_dependents_deps.dev:0 github.com/ryanchew3/flexera-coding-challenge,num_dependents_deps.dev:0 github.com/ryanchn/golang-ex,num_dependents_deps.dev:0 github.com/ryanclark/karma-webpack,criticality_score:0.455780 +github.com/ryanclark/lint-action, github.com/ryancole/chunk,num_dependents_deps.dev:36 github.com/ryancole/hdf5.node,num_dependents_deps.dev:0 github.com/ryancole/lazyhash,num_dependents_deps.dev:0 @@ -1001653,6 +1019665,7 @@ github.com/ryanisaacg/quicksilver,"criticality_score:0.371970,num_dependents_dep github.com/ryanism37/MuseUtils,num_dependents_deps.dev:0 github.com/ryanism37/minilink, github.com/ryanism37/miniurl,num_dependents_deps.dev:0 +github.com/ryanito/sync-forge-deploy-script-action, github.com/ryanj/cloud-env,num_dependents_deps.dev:2 github.com/ryanj/config-multipaas,num_dependents_deps.dev:0 github.com/ryanj/rhc.npm,num_dependents_deps.dev:0 @@ -1001666,6 +1019679,7 @@ github.com/ryanjdillon/yamlord, github.com/ryanjduffy/parse-script-tags,num_dependents_deps.dev:0 github.com/ryanjeong/go,num_dependents_deps.dev:0 github.com/ryanjeong/gogo,num_dependents_deps.dev:0 +github.com/ryanjfrizzell/action-bpd, github.com/ryanjfrizzell/gitbook-plugin-local-pagefooter-pdf,num_dependents_deps.dev:0 github.com/ryanjfrizzell/theme-defaultfoot,num_dependents_deps.dev:0 github.com/ryanjgallagher/shifterator, @@ -1001730,6 +1019744,8 @@ github.com/ryankshaw/jquery-getscrollbarwidth,num_dependents_deps.dev:0 github.com/ryankshaw/jquery.tinypubsub,num_dependents_deps.dev:0 github.com/ryankshaw/widgetize-canvas-lms-user-content,num_dependents_deps.dev:0 github.com/ryankung/celery-redis-cluster-backend, +github.com/ryankurte/action-apt, +github.com/ryankurte/action-mdbook, github.com/ryankurte/authdog,num_dependents_deps.dev:0 github.com/ryankurte/autodeck,num_dependents_deps.dev:0 github.com/ryankurte/cargo-binstall,num_dependents_deps.dev:0 @@ -1002055,6 +1020071,7 @@ github.com/ryanrichholt/tempstore, github.com/ryanrightmer/lis3mdl,num_dependents_deps.dev:0 github.com/ryanrishi/date-bling, github.com/ryanrishi/ember-addon-semantic-release-travis,num_dependents_deps.dev:0 +github.com/ryanrishi/github-readme-docs-sync, github.com/ryanrocket/agiledb,num_dependents_deps.dev:0 github.com/ryanrolds/bufferpack,num_dependents_deps.dev:103 github.com/ryanrolds/quiche,num_dependents_deps.dev:0 @@ -1002101,6 +1020118,8 @@ github.com/ryansgot/smc-gradle-plugin,num_dependents_deps.dev:0 github.com/ryansh100/bricklink-api,num_dependents_deps.dev:0 github.com/ryanshawty/blockchain-accept,num_dependents_deps.dev:0 github.com/ryanshawty/votifier-send,num_dependents_deps.dev:0 +github.com/ryansingman/deploy-bot, +github.com/ryansingman/merge-bot, github.com/ryanskene/see19, github.com/ryanslade/go-nsq,num_dependents_deps.dev:0 github.com/ryanslade/gocb,num_dependents_deps.dev:0 @@ -1002218,6 +1020237,11 @@ github.com/ryantsangai/fontello-cli,num_dependents_deps.dev:0 github.com/ryantse/kubernetes-client,num_dependents_deps.dev:0 github.com/ryanturner10/DirectionAwareHoverEffect,num_dependents_deps.dev:0 github.com/ryanuber/pakrat, +github.com/ryanvade/aws-credentials-rotation-action, +github.com/ryanvade/enforce-active-pr-assigned-action, +github.com/ryanvade/enforce-active-pr-labeled-action, +github.com/ryanvade/enforce-pr-description-length-action, +github.com/ryanvade/enforce-pr-title-style-action, github.com/ryanvalentin/disqus-react,num_dependents_deps.dev:0 github.com/ryanvanderpol/albuquerque,num_dependents_deps.dev:0 github.com/ryanvanderpol/expo-analytics,num_dependents_deps.dev:0 @@ -1002383,6 +1020407,8 @@ github.com/ryanwilsonperkin/is-twelve,num_dependents_deps.dev:0 github.com/ryanwilsonperkin/pytest-circleci-parallelized, github.com/ryanwinchester/hubot-microsoft-images,num_dependents_deps.dev:0 github.com/ryanwinchester/laravue-paginator,num_dependents_deps.dev:0 +github.com/ryanwinter/arm-none-eabi-gcc, +github.com/ryanwinter/rx-elf-gcc, github.com/ryanwischkaemper/wallaby-angular-filesort,num_dependents_deps.dev:0 github.com/ryanwjackson/pd_ruby,num_dependents_deps.dev:5 github.com/ryanwkell/nuskin-loyalty-annexcloud-graphql,num_dependents_deps.dev:0 @@ -1002465,6 +1020491,8 @@ github.com/ryascl/path-warp-paper.js,num_dependents_deps.dev:0 github.com/ryascl/scl-parser-js,num_dependents_deps.dev:2 github.com/ryascl/scl-to-mermaid,num_dependents_deps.dev:0 github.com/ryashpal/EHRQC, +github.com/ryaugusta/pr-add-reviewers, +github.com/ryaugusta/terraform-azure-changed-users, github.com/ryayak1460/5th,num_dependents_deps.dev:0 github.com/ryazantseff/mysql-querymaker, github.com/ryazantseff/py-config-reader, @@ -1002746,6 +1020774,7 @@ github.com/rymizuki/node-hariko,num_dependents_deps.dev:0 github.com/rymizuki/syntagmejs,num_dependents_deps.dev:0 github.com/rymnc/fallback-provider,num_dependents_deps.dev:0 github.com/rymndhng/mount.ts,num_dependents_deps.dev:0 +github.com/rymndhng/release-on-push-action, github.com/rymohr/atom-ava-test,num_dependents_deps.dev:0 github.com/rymohr/cockblock,num_dependents_deps.dev:0 github.com/rymohr/deranged,num_dependents_deps.dev:0 @@ -1002853,6 +1020882,7 @@ github.com/ryodocx/oauth2_proxy,num_dependents_deps.dev:0 github.com/ryoe/hubot-canary,num_dependents_deps.dev:0 github.com/ryoe/hubot-nerdbeers,num_dependents_deps.dev:0 github.com/ryoe/hubot-tomato-timer,num_dependents_deps.dev:0 +github.com/ryof/cloudformation-lint-action, github.com/ryoframework/ryo-core,num_dependents_deps.dev:30 github.com/ryoframework/ryo-domain,num_dependents_deps.dev:8 github.com/ryoframework/ryo-gradle-plugin,num_dependents_deps.dev:0 @@ -1002870,6 +1020900,8 @@ github.com/ryohey/midifile-ts,num_dependents_deps.dev:0 github.com/ryohey/reverse-tree,num_dependents_deps.dev:0 github.com/ryohey/tsconfig-paths-jest,num_dependents_deps.dev:0 github.com/ryohey/tspc,num_dependents_deps.dev:0 +github.com/ryohidaka/action-md-insert, +github.com/ryohidaka/action-pr-to-md, github.com/ryohidaka/card,num_dependents_deps.dev:0 github.com/ryoichi-obara/convert-filename-ja,num_dependents_deps.dev:0 github.com/ryoichi-obara/line-sticker-util,num_dependents_deps.dev:0 @@ -1002886,6 +1020918,7 @@ github.com/ryokdy/cli-kintone,num_dependents_deps.dev:0 github.com/ryokkkke/react-loading-screen-hoc,num_dependents_deps.dev:0 github.com/ryokkkke/rguidepost,num_dependents_deps.dev:0 github.com/ryokwkm/htmlreplace,num_dependents_deps.dev:0 +github.com/ryolambert/current-branch, github.com/ryolambert/eslint-config-gatsby,num_dependents_deps.dev:0 github.com/ryolambert/eslint-config-ryo,num_dependents_deps.dev:0 github.com/ryolee/webcron,num_dependents_deps.dev:0 @@ -1002912,6 +1020945,7 @@ github.com/ryosama/ebiten,num_dependents_deps.dev:0 github.com/ryosan-470/factordb-python, github.com/ryosensei/js-console-utils,num_dependents_deps.dev:0 github.com/ryosensei/js-numbers-utils, +github.com/ryosms/pixela-webhook-action, github.com/ryosms/pixela2img, github.com/ryosuke-mt/hyperstore, github.com/ryosuke84/nn,num_dependents_deps.dev:0 @@ -1003021,6 +1021055,8 @@ github.com/rytmis/aurelia-bootstrap-datepicker,num_dependents_deps.dev:0 github.com/rytrose/soup-the-moon,num_dependents_deps.dev:0 github.com/rytsh/bitclone, github.com/rytsh/brainit,num_dependents_deps.dev:0 +github.com/rytswd/comvent, +github.com/rytswd/respost, github.com/rytswd/simple-nats-js,num_dependents_deps.dev:0 github.com/rytyr/graphql-json-schema, github.com/ryu-man/layouts,num_dependents_deps.dev:0 @@ -1003047,6 +1021083,8 @@ github.com/ryu577/survival, github.com/ryuKKu-/angular-particle,num_dependents_deps.dev:0 github.com/ryuanerin/go-krypto,num_dependents_deps.dev:0 github.com/ryuanerin/pretty,num_dependents_deps.dev:0 +github.com/ryubb/change-notion-page-status, +github.com/ryubb/github-actions-test, github.com/ryubro/redux-action-creator,num_dependents_deps.dev:0 github.com/ryuchen/MagicDrCOM, github.com/ryuever/cronr,num_dependents_deps.dev:0 @@ -1003083,6 +1021121,7 @@ github.com/ryul1206/easy-dynamixel-helper, github.com/ryul1206/multilingual-markdown, github.com/ryum91/ex-element,num_dependents_deps.dev:0 github.com/ryumei-neko/yako-database,num_dependents_deps.dev:0 +github.com/ryun/phpunit-coverage-badge, github.com/ryunosinfx/b64util.es,num_dependents_deps.dev:0 github.com/ryunosinfx/convolutionalcode.es, github.com/ryunosinfx/qrcodejs,num_dependents_deps.dev:0 @@ -1003252,6 +1021291,7 @@ github.com/rziv/literal-numbers,num_dependents_deps.dev:0 github.com/rzkhosroshahi/react-jalali-datepicker,num_dependents_deps.dev:0 github.com/rzkhosroshahi/react-svg-font-icons,num_dependents_deps.dev:0 github.com/rzkmak/jikan-client-js,num_dependents_deps.dev:0 +github.com/rzkmak/rui, github.com/rzknugraha/dummy-donkey,num_dependents_deps.dev:0 github.com/rzknugraha/zorro-mark,num_dependents_deps.dev:0 github.com/rzl/express-permission,num_dependents_deps.dev:0 @@ -1003429,6 +1021469,7 @@ github.com/s-fujimoto/sshec2, github.com/s-g-m/log,num_dependents_deps.dev:0 github.com/s-g-m/validator,num_dependents_deps.dev:0 github.com/s-gabor/ultimate-deck,num_dependents_deps.dev:0 +github.com/s-gehring/singleton-comment, github.com/s-goldman/Dusty_Evolved_Star_Kit, github.com/s-golikov/go-genproto,num_dependents_deps.dev:0 github.com/s-group-dev/rn_animated_snackbar, @@ -1003603,6 +1021644,8 @@ github.com/s-webber/projog,num_dependents_deps.dev:0 github.com/s-weigand/djangocms-equation, github.com/s-weigand/flake8-nb, github.com/s-weigand/jupyterlab_autosave_on_focus_change, +github.com/s-weigand/setup-conda, +github.com/s-weigand/trigger-mybinder-build, github.com/s-will/BiAlign, github.com/s-xianyu/xianyuNpm,num_dependents_deps.dev:0 github.com/s-xiaoxiao/sun,num_dependents_deps.dev:0 @@ -1003632,9 +1021675,13 @@ github.com/s-you/spannerbuilder,num_dependents_deps.dev:0 github.com/s-you/yo-templates,num_dependents_deps.dev:0 github.com/s-zeng/dhall-python, github.com/s/preprocessor, +github.com/s0/git-publish-subdir-action, +github.com/s0/libyear-node-action, github.com/s00500/ESPUI,criticality_score:0.326910 github.com/s00500/env_logger,num_dependents_deps.dev:0 github.com/s00500/molehill,num_dependents_deps.dev:0 +github.com/s00d/delete-older-releases, +github.com/s00d/fast-telegram-action, github.com/s00d/folder-upload-webpack-plugin,num_dependents_deps.dev:0 github.com/s00d/intro.ts,num_dependents_deps.dev:0 github.com/s00d/nprogress,num_dependents_deps.dev:0 @@ -1003663,6 +1021710,7 @@ github.com/s0ber/postcss-image-sizes,num_dependents_deps.dev:0 github.com/s0ber/riline,num_dependents_deps.dev:0 github.com/s0ber/slimmy,num_dependents_deps.dev:0 github.com/s0ber/vtree, +github.com/s0ders/go-semver-release, github.com/s0ftik3/Randomath,num_dependents_deps.dev:0 github.com/s0ftik3/lyrics-api,num_dependents_deps.dev:0 github.com/s0ftik3/reverso-api,num_dependents_deps.dev:0 @@ -1003716,6 +1021764,7 @@ github.com/s0xzwasd/modules-example,num_dependents_deps.dev:0 github.com/s0xzwasd/remote-targets-examples,num_dependents_deps.dev:0 github.com/s0xzwasd/revel,num_dependents_deps.dev:0 github.com/s0y0ung/s0y0ung.github.io,num_dependents_deps.dev:0 +github.com/s0y0ung/sw_class1, github.com/s1-platform/s1,num_dependents_deps.dev:0 github.com/s1-platform/s1-web,num_dependents_deps.dev:0 github.com/s1061123/multus-service-controller,num_dependents_deps.dev:0 @@ -1003872,6 +1021921,7 @@ github.com/s2terminal/lex-rank-summarizer, github.com/s2texperiments/aws-transcription-to-subtitle,num_dependents_deps.dev:0 github.com/s2way/textchocolate,num_dependents_deps.dev:0 github.com/s2way/waferpie, +github.com/s3-actions/s3cmd, github.com/s3000s/eth-pool,num_dependents_deps.dev:0 github.com/s3131212/PythonSafeEval, github.com/s3141p/ng-sandbox,num_dependents_deps.dev:0 @@ -1003905,6 +1021955,7 @@ github.com/s3curitybug/similarity-uniform-fuzzy-hash,num_dependents_deps.dev:0 github.com/s3fs-fuse/s3fs-fuse,criticality_score:0.587670 github.com/s3h10r/polaroidme, github.com/s3inlc/hashtopolis,criticality_score:0.433900 +github.com/s3krit/Matrix-Message, github.com/s3lite/s3lite,num_dependents_deps.dev:0 github.com/s3m/s3m,num_dependents_deps.dev:0 github.com/s3m/sandbox,num_dependents_deps.dev:0 @@ -1003985,9 +1022036,11 @@ github.com/s4rvesh/leetcode,num_dependents_deps.dev:0 github.com/s4sarath/mycalc2, github.com/s4tori/jshint-smart,num_dependents_deps.dev:0 github.com/s4u/jfatek,num_dependents_deps.dev:0 +github.com/s4u/maven-settings-action, github.com/s4u/parent,num_dependents_deps.dev:0 github.com/s4u/pgp-keys-map,num_dependents_deps.dev:0 github.com/s4u/pgpverify-maven-plugin,num_dependents_deps.dev:0 +github.com/s4u/setup-maven-action, github.com/s4u/sign-maven-plugin,num_dependents_deps.dev:0 github.com/s4u/sitemapxml-maven-plugin,num_dependents_deps.dev:0 github.com/s4u/slf4j-mock,num_dependents_deps.dev:0 @@ -1004012,6 +1022065,7 @@ github.com/s5o-c/fluent-plugin-auto-typecast-filter,num_dependents_deps.dev:0 github.com/s5z/zsim,Google github.com/s61486/woodenlog88,num_dependents_deps.dev:0 github.com/s654632396/tools,num_dependents_deps.dev:0 +github.com/s6on/mirror-docker-tags-action, github.com/s7-works/icon,num_dependents_deps.dev:0 github.com/s724959099/js-meatball-utli,num_dependents_deps.dev:0 github.com/s73obrien/ac-ng,num_dependents_deps.dev:0 @@ -1004153,8 +1022207,11 @@ github.com/saadmanrafat/imgur-scraper, github.com/saadmanrafat/syncr, github.com/saadmanrafat/twitivity, github.com/saadmb/console.table.diff,num_dependents_deps.dev:0 +github.com/saadmk11/changelog-ci, +github.com/saadmk11/comment-webpage-screenshot, github.com/saadmk11/django-newsfeed, github.com/saadmk11/firebase_url_shortener, +github.com/saadmk11/github-actions-version-updater, github.com/saadmk11/logbook-cli, github.com/saadnoor/ssl-wireless-sms-send,num_dependents_deps.dev:0 github.com/saadpasta/developerFolio,criticality_score:0.534740 @@ -1004420,6 +1022477,7 @@ github.com/saberjunjun/vue-slide,num_dependents_deps.dev:0 github.com/saberking/react-native-carousel-header,num_dependents_deps.dev:0 github.com/saberking/react-native-draggable-list,num_dependents_deps.dev:0 github.com/saberland/create-portfolio,num_dependents_deps.dev:0 +github.com/saberland/deploy-gh-pages, github.com/saberland/saber,criticality_score:0.369890 github.com/saberland/saber-theme-minima,num_dependents_deps.dev:0 github.com/saberland/saber-theme-tailsaw, @@ -1004613,6 +1022671,8 @@ github.com/sacharbit/RocketDB,num_dependents_deps.dev:0 github.com/sacharbit/csv-handler,num_dependents_deps.dev:0 github.com/sacharbit/importCSV,num_dependents_deps.dev:0 github.com/sachaservan/vec,num_dependents_deps.dev:0 +github.com/sachasmart/aws-secret-manager-github-action, +github.com/sachasmart/terrafir-github-action, github.com/sachavakili/Wikipedia, github.com/sachaw/PSG9080, github.com/sachbalag/ibm-maximo-api,num_dependents_deps.dev:0 @@ -1004700,6 +1022760,7 @@ github.com/sachinkammar/react-share-simplified,num_dependents_deps.dev:0 github.com/sachinkhedkar/react-native-busy-activity-indicator,num_dependents_deps.dev:0 github.com/sachinkhedkar/react-native-login-using-keycloak,num_dependents_deps.dev:0 github.com/sachinkiranti/test,num_dependents_deps.dev:0 +github.com/sachinkum0009/ros-noetic-deb-action, github.com/sachinkumarrath/cra-extra,num_dependents_deps.dev:0 github.com/sachinkumarrath/javascript-tutorial,num_dependents_deps.dev:0 github.com/sachinlamba/react-message-preview,num_dependents_deps.dev:0 @@ -1004736,6 +1022797,7 @@ github.com/sachioross/taiga-nodejs,num_dependents_deps.dev:0 github.com/sachitha2/npmTest,num_dependents_deps.dev:0 github.com/sachithkay/azbus,num_dependents_deps.dev:0 github.com/sachithkay/simple-grpc,num_dependents_deps.dev:0 +github.com/sachk/compress-action, github.com/sachmathew/fixedpointnn,num_dependents_deps.dev:0 github.com/sachot/6.824lab-learning,num_dependents_deps.dev:0 github.com/sachse/cinch-imdb,num_dependents_deps.dev:0 @@ -1004786,6 +1022848,7 @@ github.com/sacloud/libsacloud,num_dependents_deps.dev:261 github.com/sacloud/pulumi-sakuracloud,num_dependents_deps.dev:0 github.com/sacloud/sakuracloud_exporter,num_dependents_deps.dev:0 github.com/sacloud/terraform-provider-sakuracloud,num_dependents_deps.dev:0 +github.com/sacloud/textlint-action, github.com/sacloud/usacloud,num_dependents_deps.dev:0 github.com/sacmii/react-native-vertical-slider,num_dependents_deps.dev:0 github.com/sacmii/rn-vertical-slider, @@ -1005075,6 +1023138,7 @@ github.com/saerose/lust-gallery,num_dependents_deps.dev:0 github.com/saeschdivara/ArangoDjango, github.com/saeschdivara/ArangoPy, github.com/saesh/timetracker,num_dependents_deps.dev:0 +github.com/saeta-eth/web3storage-pinning-action, github.com/saethlin/flatvec,num_dependents_deps.dev:0 github.com/saethlin/fls,num_dependents_deps.dev:0 github.com/saethlin/pdfpdf,num_dependents_deps.dev:0 @@ -1005132,6 +1023196,9 @@ github.com/safe-waters/docker-lock,num_dependents_deps.dev:0 github.com/safe-waters/pbar,num_dependents_deps.dev:0 github.com/safe-waters/retro-simply,num_dependents_deps.dev:0 github.com/safe-waters/slog,num_dependents_deps.dev:0 +github.com/safe2008/argocd-app-actions, +github.com/safe2008/eks-actions, +github.com/safe2008/vault-actions, github.com/safead/enface-auth-node-enfaceid,num_dependents_deps.dev:0 github.com/safead/enface-auth-widget,num_dependents_deps.dev:0 github.com/safead/enface-sdk-js,num_dependents_deps.dev:0 @@ -1005224,6 +1023291,8 @@ github.com/saffsd/langid.py, github.com/safient/safient-claims-js,num_dependents_deps.dev:0 github.com/safient/safient-core-js,num_dependents_deps.dev:0 github.com/safijari/pybind11-cmake, +github.com/safinazward/merge-branch, +github.com/safinazward/merge-branches, github.com/safing/go-privatebin,num_dependents_deps.dev:0 github.com/safing/jess,num_dependents_deps.dev:1 github.com/safing/mmdb-converter,num_dependents_deps.dev:0 @@ -1005255,6 +1023324,7 @@ github.com/safl/lyze, github.com/safl/muld, github.com/safl/ymlf, github.com/safnuk/todone, +github.com/safoinme/restore-virtualenv, github.com/safonoi/node-multiredis,num_dependents_deps.dev:0 github.com/safonovmm/vkapi,num_dependents_deps.dev:0 github.com/safonovpro/gost-transliteration,num_dependents_deps.dev:0 @@ -1005323,6 +1023393,7 @@ github.com/sagar-pathare/sample,num_dependents_deps.dev:0 github.com/sagar-rathod/PytorchDeepML, github.com/sagar-scalent/circleci_test,num_dependents_deps.dev:0 github.com/sagar-viradiya/callback-ktx,num_dependents_deps.dev:0 +github.com/sagar-viradiya/internal-app-sharing-action, github.com/sagar-work/jenkinpullrequestbuilder,num_dependents_deps.dev:0 github.com/sagar-work/jenkins-gitlab-public,num_dependents_deps.dev:0 github.com/sagar097/countdown-clock,num_dependents_deps.dev:0 @@ -1005335,6 +1023406,7 @@ github.com/sagar23sj/go-oop,num_dependents_deps.dev:0 github.com/sagar290/portscaner-go,num_dependents_deps.dev:0 github.com/sagar290/portscaner_go,num_dependents_deps.dev:0 github.com/sagar32/how-old,num_dependents_deps.dev:0 +github.com/sagar448/ESP-IDF-GitHub-Action, github.com/sagar6556/ckeditor5_wiris,num_dependents_deps.dev:0 github.com/sagar7993/gatsby-plugin-pinterest-twitter-facebook,num_dependents_deps.dev:0 github.com/sagar87/tensorsignatures, @@ -1005342,6 +1023414,7 @@ github.com/sagarbajpai/hooks-combined-reducers,num_dependents_deps.dev:0 github.com/sagarbajpai/react-mini-toaster,num_dependents_deps.dev:0 github.com/sagarbhure/f5oqs_sdk, github.com/sagarborse/logger, +github.com/sagarchoudhary96/exosms-actions, github.com/sagard21/pyisa, github.com/sagarda7/angular2-input-counter,num_dependents_deps.dev:0 github.com/sagargaonkar/webrtc,num_dependents_deps.dev:0 @@ -1005396,6 +1023469,7 @@ github.com/sagasu/hubot-pokemon-react,num_dependents_deps.dev:0 github.com/sagasu/hubot-weather,num_dependents_deps.dev:0 github.com/sagasu/hubot-weather-mexico,num_dependents_deps.dev:0 github.com/sage-bots/emojivert-node,num_dependents_deps.dev:0 +github.com/sage-darling/Project-JAAB, github.com/sage-home/sage-analysis, github.com/sage-org/sage-client, github.com/sage-org/sage-engine, @@ -1005407,6 +1023481,7 @@ github.com/sagebati/oxymcts,num_dependents_deps.dev:0 github.com/sagebind/castaway,num_dependents_deps.dev:0 github.com/sagebind/chttp,num_dependents_deps.dev:1 github.com/sagebind/clogger,num_dependents_deps.dev:0 +github.com/sagebind/docker-swarm-deploy-action, github.com/sagebind/isahc,"criticality_score:0.513100,num_dependents_deps.dev:198" github.com/sagebind/respk,num_dependents_deps.dev:0 github.com/sagebind/retest,num_dependents_deps.dev:0 @@ -1005562,6 +1023637,7 @@ github.com/sagiereder/vitto-checkout-npm,num_dependents_deps.dev:0 github.com/sagifogel/TSFunq,num_dependents_deps.dev:0 github.com/sagifogel/gulp-typescript-closure-compiler,num_dependents_deps.dev:0 github.com/sagifogel/typescript-closure-compiler,num_dependents_deps.dev:0 +github.com/sagiforbes/cancel-obsolete-runs, github.com/sagiforbes/echowebserver,num_dependents_deps.dev:0 github.com/sagiforbes/sqlite-to-rest,num_dependents_deps.dev:0 github.com/sagikazarmark/appkit,num_dependents_deps.dev:0 @@ -1005578,6 +1023654,8 @@ github.com/sagikazarmark/modern-go-application,num_dependents_deps.dev:0 github.com/sagikazarmark/mypleasings,num_dependents_deps.dev:0 github.com/sagikazarmark/please-go-modules,num_dependents_deps.dev:0 github.com/sagikazarmark/protoc-gen-kit,num_dependents_deps.dev:0 +github.com/sagikazarmark/setup-minikube-action, +github.com/sagikazarmark/setup-please-action, github.com/sagikazarmark/temporal-intro-workshop,num_dependents_deps.dev:0 github.com/sagikazarmark/todobackend-go-kit,num_dependents_deps.dev:0 github.com/sagikazarmark/viper-custom-types,num_dependents_deps.dev:0 @@ -1005589,6 +1023667,7 @@ github.com/saginadir/math-sigma.js, github.com/sagirk/vanilla-tabs,num_dependents_deps.dev:0 github.com/sagit117/event-emitters,num_dependents_deps.dev:0 github.com/sagit117/react-input-validator,num_dependents_deps.dev:0 +github.com/sagitar-co/famoco-mdm-apploader-action, github.com/sagitarious12/ng-modals,num_dependents_deps.dev:0 github.com/sagitarious12/ng-snackbars,num_dependents_deps.dev:0 github.com/sagitta1618/soiltexture, @@ -1005723,6 +1023802,7 @@ github.com/saharmor/react-super-cmd,num_dependents_deps.dev:0 github.com/saharsa/purgehtml-es6,num_dependents_deps.dev:0 github.com/saharsh-samples/go-mux-mysql-starter,num_dependents_deps.dev:0 github.com/saharsh-samples/go-mux-sql-starter,num_dependents_deps.dev:0 +github.com/saharshMMC/kubernetes-action, github.com/saharshjain/object-all-values,num_dependents_deps.dev:0 github.com/saharshleo/easyROI, github.com/saharshsingh/fluent-jdbc,num_dependents_deps.dev:0 @@ -1005762,7 +1023842,9 @@ github.com/sahidursuman/tippy_ror,num_dependents_deps.dev:0 github.com/sahil-athia/lotide,num_dependents_deps.dev:0 github.com/sahil-gulati/55technology,num_dependents_deps.dev:0 github.com/sahil-gulati/goose,num_dependents_deps.dev:0 +github.com/sahil-io/release-upload-sftp, github.com/sahil-rajput/excel2jsonapi, +github.com/sahil-sagwekar2652/github-readme-showwcase-cards, github.com/sahil/ticklingtikale, github.com/sahil143/ngx-datatable, github.com/sahil2343/dynamodb_gsi_query_using_golang,num_dependents_deps.dev:0 @@ -1005809,6 +1023891,7 @@ github.com/sahilkhosla/unlock-js,num_dependents_deps.dev:0 github.com/sahilkul95/preact-calendar,num_dependents_deps.dev:0 github.com/sahilkul95/preact-monthpicker,num_dependents_deps.dev:0 github.com/sahilkul95/preact-paginate,num_dependents_deps.dev:0 +github.com/sahilleap/codepush-action, github.com/sahilm/fuzzy,criticality_score:0.309230 github.com/sahilm/reddit.js,num_dependents_deps.dev:0 github.com/sahilm89/lhsmdu, @@ -1005895,6 +1023978,7 @@ github.com/sai-lab/forestry,num_dependents_deps.dev:0 github.com/sai-lab/go-template,num_dependents_deps.dev:0 github.com/sai-myne/golang,num_dependents_deps.dev:0 github.com/sai-prasanna/lmproof, +github.com/sai-sharan/aws-s3-sync-action, github.com/sai2fast/fasthttp,num_dependents_deps.dev:0 github.com/sai5714/venkat,num_dependents_deps.dev:0 github.com/sai628/django-aliyun-oss2, @@ -1006032,6 +1024116,7 @@ github.com/saiddinarfadilah/go-say-hello,num_dependents_deps.dev:0 github.com/saidgadjiev/orm-next,num_dependents_deps.dev:17 github.com/saidgadjiev/orm-next-support,num_dependents_deps.dev:0 github.com/saidgadjiev/ormnext-cache,num_dependents_deps.dev:0 +github.com/saidgeek/cobalt-deploy-gh-pages, github.com/saidgeek/sgk-jarvis,num_dependents_deps.dev:0 github.com/saidikondawar/testnpm,num_dependents_deps.dev:0 github.com/saidimu/odoo,num_dependents_deps.dev:20 @@ -1006058,6 +1024143,9 @@ github.com/saiemgilani/sportsdataverse,num_dependents_deps.dev:0 github.com/saiemgilani/sportsdataverse-py, github.com/saiemgilani/wehoop-py, github.com/saieswar-143/learning-git,num_dependents_deps.dev:0 +github.com/saif-qureos/github-actions-deploy-docker-to-ec2, +github.com/saif-qureos/r53-remove-bulk-geo-records, +github.com/saif-qureos/r53-update-bulk-geo-records-action, github.com/saif003/angular-mentions, github.com/saifabid/go-swagger,num_dependents_deps.dev:0 github.com/saifaldin/goviolin-cicd,num_dependents_deps.dev:0 @@ -1006081,6 +1024169,7 @@ github.com/saiful619945/bangladesh-telephone-areacode,num_dependents_deps.dev:0 github.com/saiful619945/dhaka-division-postal-code,num_dependents_deps.dev:0 github.com/saifullah007/SmartAutocomplete,num_dependents_deps.dev:0 github.com/saifulriza/watson-token,num_dependents_deps.dev:0 +github.com/saifulriza/whoozy, github.com/saighost/node-gbk-dict, github.com/saigkill/hoe-packaging,num_dependents_deps.dev:0 github.com/saigkill/hoe-reek,num_dependents_deps.dev:0 @@ -1006210,6 +1024299,7 @@ github.com/sailing-yacht-research-foundation/client-sdk-react-native,num_depende github.com/sailinga/nodebb-theme-sailing,num_dependents_deps.dev:0 github.com/sailinga/test-theme,num_dependents_deps.dev:0 github.com/sailingcai/react-component-boilerplate,num_dependents_deps.dev:0 +github.com/sailingpalmtree/reviewdog-flakehell-action, github.com/sailist/LatexTool, github.com/sailist/MarkTex, github.com/sailist/TorchHelper, @@ -1006305,6 +1024395,7 @@ github.com/saimoncse19/bltk, github.com/saimonmoore/log_buddy,num_dependents_deps.dev:0 github.com/saimonmoore/node-backbone-couch,num_dependents_deps.dev:0 github.com/saimplice1234/binarysearch,num_dependents_deps.dev:0 +github.com/saimyosett/gmo-payment-gateway-php, github.com/sainadh086/go-programming,num_dependents_deps.dev:0 github.com/sainadh7/go_learning,num_dependents_deps.dev:0 github.com/sainaetr/node-xcs,num_dependents_deps.dev:0 @@ -1006486,6 +1024577,8 @@ github.com/saisreeharsha/cordova-plugin-downloadimage-to-gallery, github.com/saisyam/pywav, github.com/saitama1899/eric_selva_view_tool,num_dependents_deps.dev:0 github.com/saiteja/float-ui,num_dependents_deps.dev:0 +github.com/saitejach127/osf-testing, +github.com/saitejach127/rewards, github.com/saitejan/arr_to_obj, github.com/saitergun/react-classic-table, github.com/saithalavi/nessaid_cli, @@ -1006494,6 +1024587,7 @@ github.com/saitheexplorer/bulky,num_dependents_deps.dev:0 github.com/saitho/amp-css,num_dependents_deps.dev:0 github.com/saitho/bingo,num_dependents_deps.dev:0 github.com/saitho/galaxy_overwatch_achievement_exporter, +github.com/saitho/hetzner-cloud-action, github.com/saitho/ng-appversion,num_dependents_deps.dev:0 github.com/saitho/node-cli-base,num_dependents_deps.dev:0 github.com/saitho/semantic-release-backmerge,num_dependents_deps.dev:0 @@ -1006618,6 +1024712,7 @@ github.com/sajari/sajari-sdk-js,num_dependents_deps.dev:16 github.com/sajari/sajari-sdk-react,num_dependents_deps.dev:0 github.com/sajari/sdk-node, github.com/sajari/sego,num_dependents_deps.dev:0 +github.com/sajari/setup-cue, github.com/sajari/storage,num_dependents_deps.dev:0 github.com/sajari/word2vec,num_dependents_deps.dev:0 github.com/sajattack/bitbang-hal,num_dependents_deps.dev:0 @@ -1006773,6 +1024868,7 @@ github.com/sake92/scalajs-router,num_dependents_deps.dev:0 github.com/sake92/stone,num_dependents_deps.dev:8 github.com/sakebook/Reachability,num_dependents_deps.dev:0 github.com/sakebook/Zipangu,num_dependents_deps.dev:0 +github.com/sakebook/actions-flutter-pub-publisher, github.com/sakebook/android-library-dialog-DialogHelper,num_dependents_deps.dev:0 github.com/sakejs/sake,num_dependents_deps.dev:0 github.com/sakejs/sake-build,num_dependents_deps.dev:0 @@ -1006814,6 +1024910,8 @@ github.com/sakex/scrollToElem,num_dependents_deps.dev:0 github.com/sakharovmaksim/webpagetest,num_dependents_deps.dev:0 github.com/sakhnevych/CalendarView, github.com/sakhnik/nvim-gdb,criticality_score:0.363650 +github.com/sakhnovict/add-reviewers-action, +github.com/sakhnovict/multi-approved-event-action, github.com/sakhnyuk/rc-scrollbars,num_dependents_deps.dev:0 github.com/sakhnyuk/websocket-crypto-api,num_dependents_deps.dev:0 github.com/saki-engineering/zenndoc,num_dependents_deps.dev:0 @@ -1007141,10 +1025239,14 @@ github.com/saleguas/freshen, github.com/saleh7/cerebro-twitter,num_dependents_deps.dev:0 github.com/salehbigdeli/faal, github.com/salehe/nes,num_dependents_deps.dev:0 +github.com/salehhashemi1992/ai-code-guard, +github.com/salehhashemi1992/ai-commit-message, +github.com/salehhashemi1992/pr-auto-describe, github.com/salehkhazaei/queue_test,num_dependents_deps.dev:0 github.com/salehos/node.js-log, github.com/salehzz/golang-project,num_dependents_deps.dev:0 github.com/saleksandras/react-native-kustomer,num_dependents_deps.dev:0 +github.com/salemaljebaly/distribute_flutter_app, github.com/salembe/word_bag, github.com/salembeats/pdf-ocr,num_dependents_deps.dev:0 github.com/salemdar/angular2-cookie,num_dependents_deps.dev:2 @@ -1007527,6 +1025629,7 @@ github.com/salo-creative/mongoose-athena, github.com/salo-creative/react-interactive-map,num_dependents_deps.dev:0 github.com/salockhart/alfred-epoch,num_dependents_deps.dev:0 github.com/salockhart/express-fathom,num_dependents_deps.dev:0 +github.com/salockhart/sync-swagger-postman-action, github.com/salocreative/react-interactive-map,num_dependents_deps.dev:0 github.com/salomaestro/giffer, github.com/salomaoluiz/ts-generic-template,num_dependents_deps.dev:0 @@ -1007602,6 +1025705,7 @@ github.com/salsan/isPath,num_dependents_deps.dev:0 github.com/salsan/otu,num_dependents_deps.dev:0 github.com/salsanads/stringutil,num_dependents_deps.dev:0 github.com/salsanfilippo/js-extensions,num_dependents_deps.dev:0 +github.com/salsify/action-detect-and-tag-new-version, github.com/salsify/botanist,num_dependents_deps.dev:4 github.com/salsify/broccoli-css-modules,num_dependents_deps.dev:188 github.com/salsify/broccoli-es6-module-facade,num_dependents_deps.dev:0 @@ -1007658,6 +1025762,8 @@ github.com/salt-die/nurses_2, github.com/salt-die/prettiest_ast, github.com/salt-extensions/salt-ext-test-1, github.com/salt-extensions/salt-ext-test-2, +github.com/salt-labs/action-its-shipping-time, +github.com/salt-labs/action-release-prepper, github.com/salt-labs/pipeprogress,num_dependents_deps.dev:0 github.com/salt-tips/python-netlify, github.com/salt-ui/salt-svg-loader,num_dependents_deps.dev:0 @@ -1007675,6 +1025781,7 @@ github.com/saltastroops/target-position,num_dependents_deps.dev:0 github.com/saltbo/goget,num_dependents_deps.dev:0 github.com/saltbo/gomods,num_dependents_deps.dev:0 github.com/saltbo/gopkg,num_dependents_deps.dev:0 +github.com/saltbo/uptoc, github.com/saltbo/vuepress-plugin-disqusjs,num_dependents_deps.dev:0 github.com/saltbo/zpan,"criticality_score:0.364980,num_dependents_deps.dev:0" github.com/saltcandy123/hatena-haiker, @@ -1007998,6 +1026105,7 @@ github.com/sam5al/starwars-names,num_dependents_deps.dev:0 github.com/sam701/qrpwd,num_dependents_deps.dev:0 github.com/sam7r/ligature-to-html-entity,num_dependents_deps.dev:0 github.com/sam81/pybdf, +github.com/sam9111/markdown-accessibility-helper, github.com/sam9807/containers-project, github.com/sam9831/imooc-cli,num_dependents_deps.dev:8 github.com/sam9831/pick,num_dependents_deps.dev:0 @@ -1008031,6 +1026139,7 @@ github.com/samalba/wsgirouter, github.com/samambaman/django-pypayzen, github.com/samambaman/kquery, github.com/samamoo/lotide,num_dependents_deps.dev:0 +github.com/samamorgan/action-autotag-python, github.com/samamorgan/discourse, github.com/samamorgan/helpjuice, github.com/saman-azhar/multilingual-sentiment-classifier, @@ -1008141,9 +1026250,12 @@ github.com/samarth-agrawal-86/fast_ml, github.com/samarthap/url-short,num_dependents_deps.dev:0 github.com/samarthdave/go-projects,num_dependents_deps.dev:0 github.com/samarthdave/mando, +github.com/samarthdd/auto_tagging, +github.com/samarthdd/tagging, github.com/samarthg/s3streamcat, github.com/samarthg/snowflake-smart-suspend, github.com/samarthhegdekalgar/tailwind-ui-kit,num_dependents_deps.dev:0 +github.com/samarthj/arch-pkgbuild-action, github.com/samarthj/py-ddbcache, github.com/samarthj/pylib-helpers, github.com/samarthya/ervices,num_dependents_deps.dev:0 @@ -1008197,6 +1026309,7 @@ github.com/sambacha/hardhat-sh,num_dependents_deps.dev:0 github.com/sambacha/json-transform, github.com/sambacha/jsonlint, github.com/sambacha/node-html-pdf,num_dependents_deps.dev:0 +github.com/sambacha/parallelish, github.com/sambacha/prettier-config-conformance, github.com/sambacha/prettier-config-solidity, github.com/sambacha/prettier-solidity-config,num_dependents_deps.dev:0 @@ -1008224,6 +1026337,7 @@ github.com/sambacha/zgres, github.com/sambachimere/palindrome,num_dependents_deps.dev:0 github.com/sambaiz/athena-admin,num_dependents_deps.dev:0 github.com/sambaiz/cdkbot,num_dependents_deps.dev:0 +github.com/sambaiz/test-docker-github-action, github.com/sambaiz/xray-sandbox,num_dependents_deps.dev:0 github.com/sambaldwin/css-object-fit,num_dependents_deps.dev:0 github.com/sambalmueslie/herold,num_dependents_deps.dev:0 @@ -1008302,6 +1026416,8 @@ github.com/samcal/angular-elm-components,num_dependents_deps.dev:0 github.com/samcaplat/camelCaseTypeform,num_dependents_deps.dev:0 github.com/samcaplat/currentrms.js,num_dependents_deps.dev:0 github.com/samcarsonx/yggdrasil-py, +github.com/samcarswell/azure-board-item-move, +github.com/samcarswell/semver-compare-action, github.com/samcaspus/protobuf-json-translator, github.com/samcbogen/tupperware, github.com/samccone/baudot-code-to-string,num_dependents_deps.dev:0 @@ -1008347,6 +1026463,7 @@ github.com/samcday/node-stream-splitter,num_dependents_deps.dev:12 github.com/samcday/node-traceurified-module,num_dependents_deps.dev:0 github.com/samcday/socketio-cluster,num_dependents_deps.dev:0 github.com/samcday/srs.js,num_dependents_deps.dev:2 +github.com/samceena/helmfile-eks-action, github.com/samceracas/react-reorderable-list,num_dependents_deps.dev:0 github.com/samchamberland/react-native-chainable,num_dependents_deps.dev:0 github.com/samchan0221/image,num_dependents_deps.dev:0 @@ -1008426,6 +1026543,7 @@ github.com/samcus/picard-quotes,num_dependents_deps.dev:0 github.com/samcus/sigmafy,num_dependents_deps.dev:0 github.com/samcus/ttcr,num_dependents_deps.dev:0 github.com/samcus/vagrantfiles,num_dependents_deps.dev:0 +github.com/samd2/aws-hosted-runners, github.com/samdalton/railsquest,num_dependents_deps.dev:0 github.com/samdark/sitemap,criticality_score:0.318890 github.com/samdark/the-modal,num_dependents_deps.dev:0 @@ -1008580,6 +1026698,7 @@ github.com/samespace-inc/token-service-koa,num_dependents_deps.dev:0 github.com/samesystem-ds/samesyslib, github.com/samesystem/active_graphql,num_dependents_deps.dev:0 github.com/samesystem/graphql_rails,num_dependents_deps.dev:0 +github.com/samet-test/g-test, github.com/sametab/emoji-mart-vue, github.com/sametcelikbicak/enum2array,num_dependents_deps.dev:0 github.com/sametcelikbicak/storage-function,num_dependents_deps.dev:0 @@ -1008611,6 +1026730,7 @@ github.com/samg/diffy,criticality_score:0.411840 github.com/samg/timetrap,"criticality_score:0.434400,num_dependents_deps.dev:0" github.com/samg3007/node-js,num_dependents_deps.dev:0 github.com/samgarasx/kotlin-js-wrappers,num_dependents_deps.dev:0 +github.com/samgehret/manageSegmentFunction, github.com/samghelms/mathviz, github.com/samgholipoor/lian-icons,num_dependents_deps.dev:0 github.com/samgiles/gokong,num_dependents_deps.dev:0 @@ -1008758,6 +1026878,7 @@ github.com/samilkahraman/aaro, github.com/samilkahraman/aaro-scripts,num_dependents_deps.dev:0 github.com/samilywang/generator-gulp-web,num_dependents_deps.dev:0 github.com/samimi-electronics/idpayjs,num_dependents_deps.dev:0 +github.com/samin/mysql-action, github.com/samin/react-native-sliders,num_dependents_deps.dev:0 github.com/saminejad/tinyapp,num_dependents_deps.dev:0 github.com/saminton/gulp-json-sass-vars,num_dependents_deps.dev:0 @@ -1008877,6 +1026998,7 @@ github.com/samjbmason/use-checkout,num_dependents_deps.dev:0 github.com/samjdavis13/twreplace,num_dependents_deps.dev:0 github.com/samjeffress/aws-lambda-brotli-unpacker,num_dependents_deps.dev:0 github.com/samjett247/interactive_crop, +github.com/samjhill/GPTReview, github.com/samjoch/covy,num_dependents_deps.dev:0 github.com/samjoch/geopoly,num_dependents_deps.dev:0 github.com/samjoch/grunt-append-templates,num_dependents_deps.dev:0 @@ -1008896,6 +1027018,7 @@ github.com/samk1/stimulus-jest,num_dependents_deps.dev:0 github.com/samkasman/jsonresume-theme-samk,num_dependents_deps.dev:0 github.com/samkayz/nigeria-bank-algo, github.com/samkayz/teamapt-monnify, +github.com/samkbit/gh-action-ts-auto-release-draft, github.com/samkcarlile/todotxt-parser2,num_dependents_deps.dev:0 github.com/samkeen/SLaT, github.com/samkeen/ami-organizer, @@ -1008935,6 +1027058,8 @@ github.com/samkunio/moomba, github.com/samkunio/mupmip, github.com/samkunio/saibo, github.com/saml-kit/saml-kit,num_dependents_deps.dev:0 +github.com/saml-to/assume-aws-role-action, +github.com/saml-to/config-sync-action, github.com/samlabs821/headers,num_dependents_deps.dev:0 github.com/samlambert/hubot-hate,num_dependents_deps.dev:0 github.com/samlambert/hubot-mysql-chatops,num_dependents_deps.dev:0 @@ -1009027,9 +1027152,16 @@ github.com/sammchardy/python-exx, github.com/sammchardy/python-idex, github.com/sammchardy/python-kucoin, github.com/sammchardy/python-quoine, +github.com/sammcj/backup-git-to-s3-action, +github.com/sammcj/check-renamed-files-action, +github.com/sammcj/dotenv-output-action, +github.com/sammcj/github-app-installation-token, +github.com/sammcj/rewritable-pr-comment, +github.com/sammcj/sqs-message-action, github.com/sammck/get-passphrase, github.com/sammck/secret-kv, github.com/sammcoe/fontawesome-vue,num_dependents_deps.dev:0 +github.com/sammcoe/get-previous-release-action, github.com/sammcoe/github-vue,num_dependents_deps.dev:0 github.com/sammdec/nfte,num_dependents_deps.dev:0 github.com/sammdot/plover-better-rtf, @@ -1009132,6 +1027264,7 @@ github.com/sammyanez/golangmedium,num_dependents_deps.dev:0 github.com/sammyanez/golangpractice,num_dependents_deps.dev:0 github.com/sammyanez/gomedium,num_dependents_deps.dev:0 github.com/sammychiang/baidu-translate,num_dependents_deps.dev:2 +github.com/sammychinedu2ky/issue-man, github.com/sammychinedu2ky/puppeteer-repo-generator,num_dependents_deps.dev:0 github.com/sammydre/ts-for-gjs,num_dependents_deps.dev:0 github.com/sammyers/dugout-companion,num_dependents_deps.dev:0 @@ -1009775,6 +1027908,7 @@ github.com/samuelcolvin/aiohttp-tools, github.com/samuelcolvin/anyfile, github.com/samuelcolvin/arq,criticality_score:0.371800 github.com/samuelcolvin/buildpg, +github.com/samuelcolvin/check-python-version, github.com/samuelcolvin/dirty-equals, github.com/samuelcolvin/django-bootstrap3-datetimepicker, github.com/samuelcolvin/donkey, @@ -1009782,6 +1027916,8 @@ github.com/samuelcolvin/donkey-simple, github.com/samuelcolvin/foxglove, github.com/samuelcolvin/grablib, github.com/samuelcolvin/harrier, +github.com/samuelcolvin/label-and-assign, +github.com/samuelcolvin/list-python-dependencies, github.com/samuelcolvin/pydantic,criticality_score:0.655060 github.com/samuelcolvin/pytest-cloudflare-worker, github.com/samuelcolvin/pytest-toolbox, @@ -1009926,6 +1028062,7 @@ github.com/samuelmanzanera/yaml2ddl,num_dependents_deps.dev:0 github.com/samuelmarina/is-even,num_dependents_deps.dev:0 github.com/samuelmarina/is-odd,num_dependents_deps.dev:0 github.com/samuelmartineau/gulp-pdf-thumbnail,num_dependents_deps.dev:0 +github.com/samuelmasse/bomcop, github.com/samuelmataraso/react-native-template-feature-based-basic,num_dependents_deps.dev:0 github.com/samuelmataraso/react-native-template-feature-based-redux,num_dependents_deps.dev:0 github.com/samuelmataraso/react-native-template-freya-advanced,num_dependents_deps.dev:0 @@ -1009939,6 +1028076,8 @@ github.com/samuelmataraso/react-native-template-scalable-redux,num_dependents_de github.com/samuelmatis/viera.js,num_dependents_deps.dev:0 github.com/samuelmesq/hexo-deployer-appfog,num_dependents_deps.dev:0 github.com/samuelmeuli/action-electron-builder,criticality_score:0.342510 +github.com/samuelmeuli/action-maven-publish, +github.com/samuelmeuli/action-snapcraft, github.com/samuelmeuli/anonymize-ip, github.com/samuelmeuli/draft-js-list-plugin,num_dependents_deps.dev:10 github.com/samuelmeuli/electron-md-to-pdf,num_dependents_deps.dev:0 @@ -1010137,6 +1028276,7 @@ github.com/samuraitruong/coingecko-api-v3,num_dependents_deps.dev:0 github.com/samuraitruong/coinspot-api, github.com/samuraitruong/commitlint-plugin-regex-match,num_dependents_deps.dev:0 github.com/samuraitruong/connect-dynamodb,num_dependents_deps.dev:0 +github.com/samuraitruong/last-commit-action, github.com/samuraitruong/lunardate,num_dependents_deps.dev:0 github.com/samuraitruong/o-iterator,num_dependents_deps.dev:0 github.com/samuraitruong/pretty-dynamo,num_dependents_deps.dev:0 @@ -1010311,6 +1028451,8 @@ github.com/samwise-tech/tslint-config,num_dependents_deps.dev:0 github.com/samwiseduzer/angularPrint,num_dependents_deps.dev:0 github.com/samwiseduzer/wta,num_dependents_deps.dev:0 github.com/samwiston/electron-screenshot-updated,num_dependents_deps.dev:0 +github.com/samwlms/pytest-django-action, +github.com/samwlms/simple-pre-commit, github.com/samwong123/mytest,num_dependents_deps.dev:0 github.com/samwrigley/core-javascript,num_dependents_deps.dev:0 github.com/samwrigley/core-sass,num_dependents_deps.dev:0 @@ -1010576,6 +1028718,7 @@ github.com/sancus-project/sancus-golang,num_dependents_deps.dev:0 github.com/sancus-project/website,num_dependents_deps.dev:0 github.com/sand-head/corkscrew,num_dependents_deps.dev:0 github.com/sand-team/sand-server,num_dependents_deps.dev:0 +github.com/sand4rt/ftp-deployer, github.com/sanda-dev/apifi,num_dependents_deps.dev:0 github.com/sanda-dev/datafi,num_dependents_deps.dev:0 github.com/sanda-dev/sensei,num_dependents_deps.dev:0 @@ -1010698,13 +1028841,16 @@ github.com/sandeepr0963/algorithm,num_dependents_deps.dev:0 github.com/sandeepraju/git-talk, github.com/sandeepraju/serve,num_dependents_deps.dev:0 github.com/sandeepraju/sulley, +github.com/sandeeprapido/yaml-lint, github.com/sandeepsinghsohal/pin-entry, +github.com/sandeepthakurala/jacoco-code-coverage-report, github.com/sandeeptharayilGit/generator-hybridapp,num_dependents_deps.dev:0 github.com/sandeeptharayilGit/generator-magicapp,num_dependents_deps.dev:0 github.com/sandeepvaday/dnspy, github.com/sandepudi/pipeline,num_dependents_deps.dev:0 github.com/sander/graph-store-rs,num_dependents_deps.dev:0 github.com/sander/lub-dub,num_dependents_deps.dev:0 +github.com/sander/note-link-janitor, github.com/sander76/aio-powerview-api, github.com/sander76/consoler, github.com/sander76/markdown-columns, @@ -1010717,6 +1028863,7 @@ github.com/sander76/winrtqrabber, github.com/sander76/zeversolarlocal, github.com/sander92/react-native-bluetooth-serial,num_dependents_deps.dev:0 github.com/sanderaarts/filename-incrementer,num_dependents_deps.dev:0 +github.com/sanderbaas/img-resizer-inplace-idempotent, github.com/sanderblue/ajaxrequest,num_dependents_deps.dev:0 github.com/sandercollewijn/go-helloworld,num_dependents_deps.dev:0 github.com/sanderd17/comexio-http, @@ -1010755,6 +1028902,8 @@ github.com/sanders41/meilisearch-status-check-decorator, github.com/sanders41/sas7bdat-converter, github.com/sanders41/split-schedule, github.com/sanders41/weather-command, +github.com/sandersaares-actions/expand-tokens, +github.com/sandersaares-actions/make-version-string, github.com/sandersgutierrez/platzom,num_dependents_deps.dev:0 github.com/sandersky/immutable-data-structures,num_dependents_deps.dev:0 github.com/sandersn/dts-critic,num_dependents_deps.dev:48 @@ -1010777,6 +1028926,7 @@ github.com/sandeshdamkondwar/geohash-poly,num_dependents_deps.dev:0 github.com/sandeshdamkondwar/javascript-concurrent-tasks,num_dependents_deps.dev:0 github.com/sandeshdamkondwar/sandesh-github-api,num_dependents_deps.dev:0 github.com/sandeshdanwale/MiddlewareStub,num_dependents_deps.dev:0 +github.com/sandeshjangam/comment-actions, github.com/sandeshnaroju/react-native-super-fields,num_dependents_deps.dev:0 github.com/sandeshshrestha/react-search-query-string-helper,num_dependents_deps.dev:0 github.com/sandeshshrestha/react-user-guide,num_dependents_deps.dev:0 @@ -1011144,6 +1029294,7 @@ github.com/sandropaganotti/jsgatt,num_dependents_deps.dev:0 github.com/sandropernerstorfer/equal-checker-npm,num_dependents_deps.dev:0 github.com/sandropibia/Leaflet.SelectAreaFeature,num_dependents_deps.dev:0 github.com/sandrorybarik/goloc,num_dependents_deps.dev:0 +github.com/sandrosantoszup/github-selhostedrunner-ec2-action, github.com/sandstorm-io/sandstorm,criticality_score:0.641570 github.com/sandstorm/config-doc-gen,num_dependents_deps.dev:2 github.com/sandstorm/react-redux-ts-utils,num_dependents_deps.dev:0 @@ -1011209,6 +1029360,7 @@ github.com/sandyz1000/colabshell, github.com/sandyz1000/pgrok-py, github.com/sandzone/HandlePastedText,num_dependents_deps.dev:0 github.com/sane-defaults/stylelint,num_dependents_deps.dev:0 +github.com/sane-fmt/action, github.com/sane-fmt/sane-fmt,num_dependents_deps.dev:0 github.com/sane-out/python, github.com/sane/sails-hook-babel, @@ -1011374,6 +1029526,7 @@ github.com/sangoma/switchy, github.com/sangoma/ursine, github.com/sangonz193/ts-validation,num_dependents_deps.dev:0 github.com/sangonz193/utils-js,num_dependents_deps.dev:0 +github.com/sangonzal/repository-traffic-action, github.com/sangram11/MASKING, github.com/sangress/dev-to-embed-vue, github.com/sangria-graphql-org/sangria,num_dependents_deps.dev:39 @@ -1011524,6 +1029677,7 @@ github.com/sanity-io/example-dashboard-widget-cats,num_dependents_deps.dev:0 github.com/sanity-io/gatsby-source-sanity,num_dependents_deps.dev:32 github.com/sanity-io/get-it,num_dependents_deps.dev:336 github.com/sanity-io/get-it-zipkin, +github.com/sanity-io/github-action-sanity, github.com/sanity-io/gnatsd,num_dependents_deps.dev:0 github.com/sanity-io/groq-cli,num_dependents_deps.dev:0 github.com/sanity-io/groq-store,num_dependents_deps.dev:4 @@ -1011569,10 +1029723,13 @@ github.com/sanix-sandel/golang_rabbitmq_example,num_dependents_deps.dev:0 github.com/sanix-sandel/golang_rest_api,num_dependents_deps.dev:0 github.com/sanix-sandel/golang_testing,num_dependents_deps.dev:0 github.com/sanix-sandel/microservices_golang,num_dependents_deps.dev:0 +github.com/sanjP10/describe-cloudformation-change-sets, github.com/sanjP10/multimethod, +github.com/sanjP10/release-action, github.com/sanjabteam/sanjab,num_dependents_deps.dev:0 github.com/sanjabteam/sanjab-persian-date-picker,num_dependents_deps.dev:0 github.com/sanjabteam/ticket,num_dependents_deps.dev:0 +github.com/sanjacob/python-flatpak-generator-action, github.com/sanjagh/eslint-config-sanjagh,num_dependents_deps.dev:0 github.com/sanjagh/opt-js,num_dependents_deps.dev:0 github.com/sanjagh/option, @@ -1011582,6 +1029739,7 @@ github.com/sanjar0126/post_service,num_dependents_deps.dev:0 github.com/sanjar0126/test_api_gateway,num_dependents_deps.dev:0 github.com/sanjay-ashok/sample-code-golang,num_dependents_deps.dev:0 github.com/sanjay-khurana/isEmptyModule,num_dependents_deps.dev:0 +github.com/sanjay3600/golang-action-gophercon, github.com/sanjayV/ng-image-fullscreen-viewer,num_dependents_deps.dev:0 github.com/sanjayV/ng-image-slider,num_dependents_deps.dev:0 github.com/sanjayankoti/ng4-graph,num_dependents_deps.dev:0 @@ -1011591,6 +1029749,7 @@ github.com/sanjayatb/taxi-booking-system, github.com/sanjayatony/tailwind-init,num_dependents_deps.dev:0 github.com/sanjaybh/mrbhans,num_dependents_deps.dev:0 github.com/sanjaykhanal/node-rtsp-stream,num_dependents_deps.dev:0 +github.com/sanjaykrishnanrs/slack-notify-junitxml-action, github.com/sanjaykumarkkr/leetcode,num_dependents_deps.dev:0 github.com/sanjaymarison/futureditor, github.com/sanjaymarison/otplib, @@ -1011609,7 +1029768,9 @@ github.com/sanjaz/lazypr, github.com/sanjeetCoder/cct-header,num_dependents_deps.dev:0 github.com/sanjeethboddi/DiscoSnake, github.com/sanjeev-/coppola, +github.com/sanjeev-labs/manage-merge, github.com/sanjeev07/fullcalendar-reactWrapper,num_dependents_deps.dev:0 +github.com/sanjeev9160/hello-world-docker-action, github.com/sanjeevan/flask-json-schema, github.com/sanjeevshrestha/sanutils, github.com/sanjeevsiva17/elonmux,num_dependents_deps.dev:0 @@ -1011705,6 +1029866,7 @@ github.com/sankha93/watchman.js,num_dependents_deps.dev:0 github.com/sankhadeeproy007/react-native-hamburger,num_dependents_deps.dev:0 github.com/sankhaonline/friday-ale,num_dependents_deps.dev:0 github.com/sankharr/srr-elapsedtimer,num_dependents_deps.dev:0 +github.com/sanknoorsachin/actions-demo, github.com/sanko/robinhood_rs,num_dependents_deps.dev:0 github.com/sankooc/bezier-interpolation,num_dependents_deps.dev:0 github.com/sankooc/captcha-node,num_dependents_deps.dev:0 @@ -1011830,6 +1029992,7 @@ github.com/sansie/npm-test,num_dependents_deps.dev:0 github.com/sansil/vt-notifications,num_dependents_deps.dev:0 github.com/sansil/vt-paginate,num_dependents_deps.dev:0 github.com/sanskar1991/gcscontents, +github.com/sanskarirandi/ecr-scan, github.com/sanskrit-coders/StarDict-1,num_dependents_deps.dev:2 github.com/sanskrit-coders/audio_curation, github.com/sanskrit-coders/audio_utils, @@ -1011964,6 +1030127,7 @@ github.com/santi4488/markerclustererplus-node, github.com/santi6291/git-verify,num_dependents_deps.dev:0 github.com/santi6291/gulp-inject-target,num_dependents_deps.dev:0 github.com/santi8ago8/MercadoLibreNode,num_dependents_deps.dev:0 +github.com/santiac89/gas-report-action, github.com/santiac89/lerna-test,num_dependents_deps.dev:0 github.com/santiago-rodrig/cards,num_dependents_deps.dev:0 github.com/santiago-rodrig/evenodd,num_dependents_deps.dev:0 @@ -1012077,6 +1030241,7 @@ github.com/santiperez/node-redsys-api,num_dependents_deps.dev:0 github.com/santiperez/node-sitemap-generator,num_dependents_deps.dev:0 github.com/santiq/bulletproof-nodejs,criticality_score:0.376170 github.com/santiriera626/ruby_randimage,num_dependents_deps.dev:0 +github.com/santisaez/packer-action, github.com/santisbon/alexa-helper,num_dependents_deps.dev:0 github.com/santitipro/react-native-tvsquared,num_dependents_deps.dev:0 github.com/santiycr/cssify, @@ -1012092,6 +1030257,7 @@ github.com/santokalayil/mallu, github.com/santolucito/liveprogramming,num_dependents_deps.dev:0 github.com/santomegonzalo/electron-titlebar-react,num_dependents_deps.dev:0 github.com/santomegonzalo/menubar-extra,num_dependents_deps.dev:0 +github.com/santomegonzalo/pr-checker-github-action, github.com/santomegonzalo/react-electron-titlebar,num_dependents_deps.dev:0 github.com/santomegonzalo/react-native-floating-action,"criticality_score:0.302590,num_dependents_deps.dev:0" github.com/santomegonzalo/react-titlebar-osx, @@ -1012138,6 +1030304,7 @@ github.com/santoshgawande/goexamples,num_dependents_deps.dev:0 github.com/santoshjoseph99/BlackJackGame,num_dependents_deps.dev:0 github.com/santoshjoseph99/counting,num_dependents_deps.dev:0 github.com/santoshkavhar/timer,num_dependents_deps.dev:0 +github.com/santoshkowshikhr/go-build-deploy, github.com/santoshmahat/tiny,num_dependents_deps.dev:0 github.com/santoshmano/gobricks,num_dependents_deps.dev:0 github.com/santoshpanna/steamstorefront, @@ -1012212,6 +1030379,7 @@ github.com/sanusart/react-dropdown-select,num_dependents_deps.dev:4 github.com/sanusart/react-scrollpad,num_dependents_deps.dev:0 github.com/sanv725/create-react-app,num_dependents_deps.dev:0 github.com/sanvendev/weaver-dlt-interoperability,num_dependents_deps.dev:0 +github.com/sanvuqui/unity-meta-check, github.com/sanvyruz/pordego-dependency, github.com/sanvyx/dependent_pages,num_dependents_deps.dev:0 github.com/sanvyx/node_cache,num_dependents_deps.dev:0 @@ -1012247,6 +1030415,7 @@ github.com/sanyi/ipsetpy, github.com/sanyinchen/promise-queue-task,num_dependents_deps.dev:0 github.com/sanyok12345/node-coinwheel-api,num_dependents_deps.dev:0 github.com/sanyu1225/vue-cli-plugin-chrome-extension-cli,num_dependents_deps.dev:0 +github.com/sanyuanya/github-action-docker-1, github.com/sanyuelanv/postcss-adaptive,num_dependents_deps.dev:0 github.com/sanyuelanv/react-circle-progress,num_dependents_deps.dev:0 github.com/sanyuelanv/turntable-js,num_dependents_deps.dev:0 @@ -1012319,6 +1030488,7 @@ github.com/sap-samples/kyma-runtime-extension-samples,num_dependents_deps.dev:0 github.com/sap-san/project,num_dependents_deps.dev:0 github.com/sap-staging/cloud-foundry-tools-api,num_dependents_deps.dev:5 github.com/sap-staging/cloud-security-client-go,num_dependents_deps.dev:0 +github.com/sap-tutorials/tutorial-actions, github.com/sap/aker,num_dependents_deps.dev:0 github.com/sap/aker-oauth-plugins,num_dependents_deps.dev:0 github.com/sap/aker-proxy-plugin,num_dependents_deps.dev:0 @@ -1012875,6 +1031045,8 @@ github.com/sarathfrancis90/str-align,num_dependents_deps.dev:0 github.com/sarathkaleswaram/blocmatrix-libraries,num_dependents_deps.dev:0 github.com/sarathkcm/TheMovieDBClient,num_dependents_deps.dev:0 github.com/sarathkcm/jsonc-metadata, +github.com/sarathkrish/create-terraform-workspace, +github.com/sarathkrish/invoke-terraform-run-api, github.com/sarathkumarsivan/pygithubctl, github.com/sarathkumarsivan/pyjstack, github.com/sarathlun/devops-01,num_dependents_deps.dev:0 @@ -1013042,6 +1031214,7 @@ github.com/saresend/shack,num_dependents_deps.dev:0 github.com/saresend/yin,num_dependents_deps.dev:0 github.com/sarfarazansari/ng-social-login-module,num_dependents_deps.dev:0 github.com/sarfarazansari/ng4-social-login, +github.com/sarfarazit08/podcast-gen-marketplace, github.com/sarfata/kissweb, github.com/sarfata/pi-blaster.js,num_dependents_deps.dev:2 github.com/sarfophil/mailtext-send,num_dependents_deps.dev:0 @@ -1013063,6 +1031236,7 @@ github.com/sargun/ocix,num_dependents_deps.dev:0 github.com/sargun/sd-journald,num_dependents_deps.dev:0 github.com/sargun/virtual-kubelet,num_dependents_deps.dev:0 github.com/sargun/winston-journald3,num_dependents_deps.dev:0 +github.com/sargunv/yarn-target-determinator, github.com/sarguru/cloudflare-go,num_dependents_deps.dev:0 github.com/sarguru/terraform-provider-aws,num_dependents_deps.dev:0 github.com/sarhanm/gradle-versioner,num_dependents_deps.dev:0 @@ -1013092,6 +1031266,9 @@ github.com/sarioglu/parcel-plugin-ejs-template,num_dependents_deps.dev:0 github.com/sarioglu/shouldideploy,num_dependents_deps.dev:0 github.com/sarioglu/tailwindcss-lobotomized-owl,num_dependents_deps.dev:0 github.com/saripirala/bin-optimize, +github.com/sarisia/actions-readme-feed, +github.com/sarisia/actions-status-discord, +github.com/sarisia/setup-icu, github.com/sarismet/go-challenge,num_dependents_deps.dev:0 github.com/sarismet/personal_blog_site,num_dependents_deps.dev:0 github.com/saritasa/angular-typed-forms,num_dependents_deps.dev:0 @@ -1013173,6 +1031350,8 @@ github.com/sarneeh/casbin-knex-adapter,num_dependents_deps.dev:0 github.com/sarneeh/reaptcha,num_dependents_deps.dev:56 github.com/sarnobat/gmail,num_dependents_deps.dev:0 github.com/sarnobat/golang_tutorial,num_dependents_deps.dev:0 +github.com/sarnold/cccc-action, +github.com/sarnold/gitchangelog-action, github.com/sarnold/pdfrw, github.com/sarnold/pystache, github.com/sarnor/quick-mixins-less,num_dependents_deps.dev:0 @@ -1013243,6 +1031422,7 @@ github.com/sarriaroman/photoviewer,num_dependents_deps.dev:2 github.com/sarriaroman/rn-stack-router,num_dependents_deps.dev:0 github.com/sarroutbi/MSWL_SUBJECTS, github.com/sarroutbi/tang-operator,num_dependents_deps.dev:0 +github.com/sarrubia/splitio-evaluator-ga, github.com/sarrufat/natsk8s,num_dependents_deps.dev:1 github.com/sarrufat/techan,num_dependents_deps.dev:0 github.com/sarsamurmu/estree-toolkit,num_dependents_deps.dev:0 @@ -1013266,6 +1031446,7 @@ github.com/sartaj/riteway-fs-snapshots,num_dependents_deps.dev:0 github.com/sartajdev/indian-cities,num_dependents_deps.dev:0 github.com/sartak/grunt-inline-imgsize,num_dependents_deps.dev:0 github.com/sarthak-py/pokelance, +github.com/sarthak-saxena/JSBundleSize, github.com/sarthak-sehgal/wcg,num_dependents_deps.dev:0 github.com/sarthak090/jiosavan-api,num_dependents_deps.dev:0 github.com/sarthak090/moviestmdb,num_dependents_deps.dev:0 @@ -1013419,6 +1031600,7 @@ github.com/sasakiyori/golang-learning,num_dependents_deps.dev:0 github.com/sasalatart/history-scraper-js,num_dependents_deps.dev:0 github.com/sasalatart/on-this-day-scraper-js,num_dependents_deps.dev:0 github.com/sasalatart/siding-navigator,num_dependents_deps.dev:0 +github.com/sasamuku/slack_notice_aws_support, github.com/sasan-ebrahimi/react-native-multichoice-flatlist,num_dependents_deps.dev:0 github.com/sasanfarrokh/mongoose-type-gen, github.com/sasanfarrokh/vue-chimera,num_dependents_deps.dev:0 @@ -1013426,6 +1031608,7 @@ github.com/sasano8/asy, github.com/sasano8/fastapi_di, github.com/sasano8/ja_text_cleaner, github.com/sasano8/pnq, +github.com/sasanquaneuf/mypy-github-action, github.com/sasanquaneuf/ts-qrcode,num_dependents_deps.dev:0 github.com/sasanquaneuf/vue-ts-qrcode,num_dependents_deps.dev:0 github.com/sasanrose/asciigraph,num_dependents_deps.dev:0 @@ -1013531,6 +1031714,7 @@ github.com/saschanaz/jxl-wasm,num_dependents_deps.dev:0 github.com/saschanaz/libjxl-src,num_dependents_deps.dev:0 github.com/saschanaz/styleless-innertext,num_dependents_deps.dev:0 github.com/saschanaz/types-web,num_dependents_deps.dev:0 +github.com/saschanowak/CloverCodeCoverageSummary, github.com/saschatimme/reason-react-scripts,num_dependents_deps.dev:0 github.com/saschazar21/mdx-extended-loader,num_dependents_deps.dev:0 github.com/saschazar21/metalsmith-pure-text,num_dependents_deps.dev:0 @@ -1013760,6 +1031944,7 @@ github.com/sass/sassc-ruby,criticality_score:0.493000 github.com/sassanh/babel-plugin-module-resolver,num_dependents_deps.dev:0 github.com/sasslets/animate,num_dependents_deps.dev:0 github.com/sasslets/position,num_dependents_deps.dev:0 +github.com/sassman/rust-deb-builder, github.com/sassman/rust-domain-rs,num_dependents_deps.dev:0 github.com/sassman/ssd-benchmark-rs,num_dependents_deps.dev:0 github.com/sassman/t-rec-rs,num_dependents_deps.dev:0 @@ -1013863,7 +1032048,12 @@ github.com/satabin/lingua,num_dependents_deps.dev:0 github.com/satabin/pwquality-rs,num_dependents_deps.dev:0 github.com/satabin/swam,num_dependents_deps.dev:2 github.com/satachito/json-vue-er,num_dependents_deps.dev:0 +github.com/satackey/action-docker-layer-caching, +github.com/satackey/action-google-drive, +github.com/satackey/action-js-inline, +github.com/satackey/action-latex, github.com/satackey/actions-exec-listener,num_dependents_deps.dev:0 +github.com/satackey/push-prebuilt-action, github.com/sataerik/react-pannellum-sata,num_dependents_deps.dev:0 github.com/sataga/go-template-sample,num_dependents_deps.dev:0 github.com/satahippy/dictionary,num_dependents_deps.dev:0 @@ -1014031,9 +1032221,11 @@ github.com/satom9to5/m3u8-download,num_dependents_deps.dev:0 github.com/satont/spamnya,num_dependents_deps.dev:0 github.com/satoof2/firebase-admin-go,num_dependents_deps.dev:0 github.com/satooon/user_agent,num_dependents_deps.dev:0 +github.com/sator-imaging/Copy-to-Another-Repository, github.com/satoren/node-pigpio,num_dependents_deps.dev:16 github.com/satoren/ts-py-struct,num_dependents_deps.dev:0 github.com/satorf/hexo-tag-text-emphasis,num_dependents_deps.dev:0 +github.com/satori-chatbots/chatbots-actions, github.com/satori-com/satori-bots-java-core,num_dependents_deps.dev:0 github.com/satori-com/satori-composer,num_dependents_deps.dev:0 github.com/satori-com/satori-raspberry, @@ -1014056,6 +1032248,7 @@ github.com/satoru-takeuchi/deepthought,num_dependents_deps.dev:0 github.com/satoru-takeuchi/markdown-viewer,num_dependents_deps.dev:0 github.com/satoru-takeuchi/youtube-sample,num_dependents_deps.dev:0 github.com/satoruitaya/terraform-provider-miro-copy,num_dependents_deps.dev:0 +github.com/satoruk/action-prepare, github.com/satoruk/bullet_log_parser,num_dependents_deps.dev:0 github.com/satorumurmur/bibi,criticality_score:0.341080 github.com/satorumurmur/sML,num_dependents_deps.dev:0 @@ -1014070,7 +1032263,9 @@ github.com/satoryoka/golearng,num_dependents_deps.dev:0 github.com/satoryu/denso-calendar,num_dependents_deps.dev:0 github.com/satoryu/google_suggest,num_dependents_deps.dev:0 github.com/satoryu/jp_bank,num_dependents_deps.dev:0 +github.com/satoryu/labeling-by-gpt, github.com/satoryu/rubocop-instance_variable_name,num_dependents_deps.dev:0 +github.com/satoryu/typetalk-notify, github.com/satoryu/undine,num_dependents_deps.dev:0 github.com/satoshi-kimura/janerics,num_dependents_deps.dev:3 github.com/satoshi-kimura/samurai-dao,num_dependents_deps.dev:0 @@ -1014182,6 +1032377,7 @@ github.com/saturday06/go-libwebp,num_dependents_deps.dev:0 github.com/saturday06/rust-gpac-sys,num_dependents_deps.dev:0 github.com/saturday06/rust-openh264-sys,num_dependents_deps.dev:0 github.com/saturday06/rust-soundtouch-sys,num_dependents_deps.dev:0 +github.com/saturdayshdev/portainer-deploy, github.com/saturized/starterized,num_dependents_deps.dev:0 github.com/saturn-5/redux-simple-reducer,num_dependents_deps.dev:0 github.com/saturn-network/market-maker-strategy,num_dependents_deps.dev:0 @@ -1014213,6 +1032409,7 @@ github.com/saturnine/acts_as_hashish,num_dependents_deps.dev:0 github.com/saturnine/redis_analytics,num_dependents_deps.dev:0 github.com/saturninoabril/dashboard-server,num_dependents_deps.dev:0 github.com/saturninoabril/mattermost-plugin-extended-locales,num_dependents_deps.dev:0 +github.com/saturninoabril/try-gh-actions, github.com/saturnsvoid/gobot2,num_dependents_deps.dev:0 github.com/saturnsvoid/gouserkit,num_dependents_deps.dev:0 github.com/saturnsvoid/pumpitup,num_dependents_deps.dev:0 @@ -1014220,6 +1032417,8 @@ github.com/saturnsvoid/user32-blockinput,num_dependents_deps.dev:0 github.com/saturnsvoid/windows-api-capture-webcam,num_dependents_deps.dev:0 github.com/saturnus-ringar/django-fandango, github.com/satvik-s/http2-client,num_dependents_deps.dev:0 +github.com/satvik-s/pr-label-check, +github.com/satvik-s/pr-title-check, github.com/satvik14/TOPSIS-SatvikMehra-101803278, github.com/satvikr/better-ls,num_dependents_deps.dev:0 github.com/satvikr/image-service,num_dependents_deps.dev:0 @@ -1014234,6 +1032433,10 @@ github.com/satwik77/libnmf, github.com/satwik77/pyDPP, github.com/satwikkansal/wtfPython,"num_dependents_deps.dev:0,criticality_score:0.465980" github.com/saty932/number-to-abbreviate,num_dependents_deps.dev:0 +github.com/satya-500/aws-github-action-runner, +github.com/satya-500/create-branch-from-tag, +github.com/satya-500/github-action-close-pull, +github.com/satya-500/read-file-github-action, github.com/satya-jugran/local-storage-with-expiry,num_dependents_deps.dev:0 github.com/satya-snrg/helloworld,num_dependents_deps.dev:0 github.com/satya164/babel-plugin-css-prop,num_dependents_deps.dev:0 @@ -1014321,6 +1032524,7 @@ github.com/satzbeleg/vue-fit2box, github.com/sau00/leetcode,num_dependents_deps.dev:0 github.com/sau026/ng-ticker-tape,num_dependents_deps.dev:0 github.com/saubanbinusman/loopback-graphql-server,num_dependents_deps.dev:0 +github.com/saubermacherag/ansible-playbook-docker-action, github.com/sauce-consultants/ember-analytic-sauce,num_dependents_deps.dev:0 github.com/sauce-consultants/ember-liquid-sauce,num_dependents_deps.dev:0 github.com/sauce-consultants/ember-mirage-sauce,num_dependents_deps.dev:0 @@ -1014351,8 +1032555,11 @@ github.com/saucelabs/oboe.js,num_dependents_deps.dev:0 github.com/saucelabs/py-ccloud, github.com/saucelabs/rdc-appium-junit4,num_dependents_deps.dev:0 github.com/saucelabs/sa11y,num_dependents_deps.dev:0 +github.com/saucelabs/sauce-connect-action, +github.com/saucelabs/sauce-security-action, github.com/saucelabs/sauce_bindings, github.com/saucelabs/saucectl,num_dependents_deps.dev:0 +github.com/saucelabs/saucectl-run-action, github.com/saucelabs/selenium,num_dependents_deps.dev:0 github.com/saucelabs/speedo, github.com/saucelabs/sypl,num_dependents_deps.dev:0 @@ -1014409,6 +1032616,7 @@ github.com/sauldom102/unsplashpy, github.com/saulecabrera/react-accordion-component, github.com/saulflores95/ogtags,num_dependents_deps.dev:0 github.com/saulflores95/platin,num_dependents_deps.dev:0 +github.com/saulfm08/github-action-changelog-generator, github.com/saulhardman/autotyper,num_dependents_deps.dev:0 github.com/saulhardman/postcss-hover-media-feature,num_dependents_deps.dev:0 github.com/saulhoward/react-evil-icons,num_dependents_deps.dev:0 @@ -1014437,6 +1032645,7 @@ github.com/saulmaldonado/dotenv-types-generator,num_dependents_deps.dev:0 github.com/saulmaldonado/editorconfig-settings,num_dependents_deps.dev:0 github.com/saulmaldonado/mc-bedrock-runner,num_dependents_deps.dev:0 github.com/saulmaldonado/share-this-page,num_dependents_deps.dev:0 +github.com/saulmaldonado/skip-workflow, github.com/saulmoralespa/platzom,num_dependents_deps.dev:0 github.com/saulo1bas/desafio-docker,num_dependents_deps.dev:0 github.com/saulo2/stubby-mock-mvc-tests,num_dependents_deps.dev:0 @@ -1014446,6 +1032655,7 @@ github.com/sauloefo/todall,num_dependents_deps.dev:0 github.com/saulogt/custom-redis-cache-adapter,num_dependents_deps.dev:0 github.com/saulogt/parse-error-plus,num_dependents_deps.dev:0 github.com/saulogt/router-adapter,num_dependents_deps.dev:0 +github.com/saulonunesdev/lerna-get-version-action, github.com/sauloperceval/go-poc-web,num_dependents_deps.dev:0 github.com/saulortega/servir,num_dependents_deps.dev:0 github.com/saulortega/vue-acciones,num_dependents_deps.dev:0 @@ -1014512,9 +1032722,15 @@ github.com/saurabh30/gophercises,num_dependents_deps.dev:0 github.com/saurabh47/ngx-object-diff,num_dependents_deps.dev:0 github.com/saurabh73/ecommerce-affiliate-api-india,num_dependents_deps.dev:0 github.com/saurabhSiddhu/angular2-json-schema-form,num_dependents_deps.dev:0 +github.com/saurabhaahujaa/github-action-demo, +github.com/saurabharch/action-rollout-semantic-pull-request, github.com/saurabharch/rollout, +github.com/saurabhasingh1997/team-name-labeler, github.com/saurabhbilakhia/ascoltatori,num_dependents_deps.dev:0 +github.com/saurabhbothra/hello-world-docker-action, +github.com/saurabhbothra/s3-publish-docker-action, github.com/saurabhdaware/DEV-widget,num_dependents_deps.dev:0 +github.com/saurabhdaware/abell-pages-action, github.com/saurabhdaware/abell-sitemap-plugin,num_dependents_deps.dev:0 github.com/saurabhdaware/abell-source-devto,num_dependents_deps.dev:0 github.com/saurabhdaware/bol,num_dependents_deps.dev:0 @@ -1014534,6 +1032750,8 @@ github.com/saurabhgour/react-native-progress-circle-without-library,num_dependen github.com/saurabhjainfaber/chatter,num_dependents_deps.dev:0 github.com/saurabhjambhule/ecs_connect, github.com/saurabhk369/custom-controls,num_dependents_deps.dev:0 +github.com/saurabhkdm/Auto-PR-Approver, +github.com/saurabhkdm/docker-action-chatsender, github.com/saurabhkhandelwal/Script-Loader,num_dependents_deps.dev:0 github.com/saurabhkharat11/node_sample_sk_111,num_dependents_deps.dev:0 github.com/saurabhkm/mcmcAllotter, @@ -1014557,13 +1032775,16 @@ github.com/sauramirez/brisque,num_dependents_deps.dev:0 github.com/sauramirez/django-pipeline-esbuild, github.com/sauramirez/dynogels-lambda, github.com/sauramirez/getenv2,num_dependents_deps.dev:0 +github.com/sauramirez/github-tag-action, github.com/sauramirez/lab-markdown-reporter,num_dependents_deps.dev:0 github.com/sauramirez/perse-model,num_dependents_deps.dev:0 github.com/sauramirez/pysqes, github.com/sauramirez/settings-module,num_dependents_deps.dev:0 +github.com/saurav-aggarwal/appcenter-cli-action, github.com/saurav-c/aftsi,num_dependents_deps.dev:0 github.com/saurav-c/tasc,num_dependents_deps.dev:0 github.com/saurav-k/bookstore_users-api,num_dependents_deps.dev:0 +github.com/saurav0705/check-history-action, github.com/saurav534/kafka-go,num_dependents_deps.dev:0 github.com/sauravazad/pincode,num_dependents_deps.dev:0 github.com/sauravbiswasiupr/node-cacher,num_dependents_deps.dev:0 @@ -1014582,12 +1032803,14 @@ github.com/sauravkaushik8/randomaze, github.com/sauravkoli31/zoho_oauth2, github.com/sauravkp/npm-test, github.com/sauravksingh/file-to-sumo,num_dependents_deps.dev:0 +github.com/sauravkumarsahoo/sign-files-with-pfx, github.com/sauravmishra1017/Parseltongue, github.com/sauravmoha/contact_us,num_dependents_deps.dev:0 github.com/sauravmoha/formDump,num_dependents_deps.dev:0 github.com/sauravmoha/test-plugin,num_dependents_deps.dev:0 github.com/sauravshandilya/SDES-2016-Project2, github.com/saurfang/solidity-treemap,num_dependents_deps.dev:0 +github.com/saurishkar/mailchimp-templates-action, github.com/sauron0914/component-statistics,num_dependents_deps.dev:0 github.com/sauron0914/find-useless-file,num_dependents_deps.dev:0 github.com/sauron0914/react-cc2fc,num_dependents_deps.dev:0 @@ -1014719,6 +1032942,7 @@ github.com/saveliy-kremen/react-native-select-plus, github.com/savemysmartphone/babel-preset-save,num_dependents_deps.dev:0 github.com/savemysmartphone/eslint-config-save,num_dependents_deps.dev:0 github.com/saven/superjs,num_dependents_deps.dev:0 +github.com/saveourtool/benedikt, github.com/savepong/wc-dev-stats,num_dependents_deps.dev:0 github.com/savepopulation/android-daily-tips,criticality_score:0.339270 github.com/saver-live/vue-pdf,num_dependents_deps.dev:0 @@ -1014742,6 +1032966,7 @@ github.com/savez/Node-fantacalcio,num_dependents_deps.dev:0 github.com/savez/buisnessDate,num_dependents_deps.dev:0 github.com/savfhfdhg/development-of-security-tools,num_dependents_deps.dev:0 github.com/savfx/savjs,num_dependents_deps.dev:2 +github.com/savi2w/gcp-storage-sync, github.com/savi8sant8s/round_robin,num_dependents_deps.dev:0 github.com/savicontrols/adonis-fold,num_dependents_deps.dev:0 github.com/saviilsy/wevent,num_dependents_deps.dev:0 @@ -1014796,6 +1033021,7 @@ github.com/savoirfairelinux/opendht,criticality_score:0.493870 github.com/savoirfairelinux/openerp-sane, github.com/savoirfairelinux/ringme.js,num_dependents_deps.dev:0 github.com/savoirfairelinux/sfl-shinken-plugins, +github.com/savoirguinee/gnakrydev-notification, github.com/savoirtech/aetos,num_dependents_deps.dev:0 github.com/savoirtech/ctop,num_dependents_deps.dev:0 github.com/savoirtech/eos,num_dependents_deps.dev:0 @@ -1015032,6 +1033258,7 @@ github.com/say8425/devise-dynamoid,num_dependents_deps.dev:0 github.com/say8425/env-aws-params,num_dependents_deps.dev:0 github.com/say8425/naver_map_ruby,num_dependents_deps.dev:0 github.com/say8425/sens_sms,num_dependents_deps.dev:0 +github.com/say8425/sent-teleram-action, github.com/sayafIsmael/country-city-location,num_dependents_deps.dev:0 github.com/sayag11/ImmutableArray,num_dependents_deps.dev:0 github.com/sayag11/ImmutableArrayMap, @@ -1015097,6 +1033324,7 @@ github.com/sayden/node-mobility-uuid-identifier,num_dependents_deps.dev:0 github.com/sayedasadali/the_platinum_searcher,num_dependents_deps.dev:0 github.com/sayedihashimi/generator-dotnet,num_dependents_deps.dev:0 github.com/sayedtaqui/js-injector,num_dependents_deps.dev:0 +github.com/sayeed89/unify-iscan-github-action, github.com/sayeefrmoyen/hemnes, github.com/sayeko/es7-javascript-util-helper,num_dependents_deps.dev:0 github.com/sayelr/date-wrapper,num_dependents_deps.dev:0 @@ -1015122,6 +1033350,7 @@ github.com/sayjava/graphql-sample,num_dependents_deps.dev:0 github.com/sayjava/neo-js,num_dependents_deps.dev:0 github.com/sayjava/scaffold,num_dependents_deps.dev:10 github.com/sayjeyhi/izitoast-react,num_dependents_deps.dev:0 +github.com/sayjeyhi/weekly, github.com/sayleenaik/express-server-status-minus-git,num_dependents_deps.dev:0 github.com/saylestyler/oza,num_dependents_deps.dev:0 github.com/sayll/canvas_x,num_dependents_deps.dev:0 @@ -1015176,13 +1033405,20 @@ github.com/sayuti-daniel/next-eslint,num_dependents_deps.dev:0 github.com/saywhaat/serialized,num_dependents_deps.dev:0 github.com/saywithu/lerna-test,num_dependents_deps.dev:0 github.com/sayyedrizwan/webstoragemanager,num_dependents_deps.dev:0 +github.com/sayyid5416/action-major-release, +github.com/sayyid5416/major-tags, +github.com/sayyid5416/pyinstaller, github.com/sayyoungman/learn_go_programming,num_dependents_deps.dev:0 github.com/sayyup/set-up-osx,num_dependents_deps.dev:0 github.com/saz4nd0ra/hentai-scraper,num_dependents_deps.dev:0 github.com/sazap10/advent-of-code,num_dependents_deps.dev:0 +github.com/sazap10/bugsnag-builds-action, github.com/sazap10/deluge-telegraf-plugin,num_dependents_deps.dev:0 github.com/sazap10/ovh-ip-updater-go,num_dependents_deps.dev:0 github.com/sazeracjs/sazerac,"criticality_score:0.359550,num_dependents_deps.dev:0" +github.com/sazid/zeuz-actions-check-node-availability, +github.com/sazid/zeuz-actions-deploy-preset, +github.com/sazid/zeuz-actions-upload-attachment, github.com/sazima/django-request-mapping, github.com/sazima/tornado_request_mapping, github.com/sazk07/programming-with-google-go-coursera-specialization,num_dependents_deps.dev:0 @@ -1015318,6 +1033554,7 @@ github.com/sbarham/dsrt, github.com/sbarral/prusst,num_dependents_deps.dev:0 github.com/sbarral/spook,num_dependents_deps.dev:0 github.com/sbarratt/flask-prometheus, +github.com/sbarrios93/rye-rust-action, github.com/sbarry50/vue-business-hours,num_dependents_deps.dev:0 github.com/sbarski/generator-webapi,num_dependents_deps.dev:0 github.com/sbarski/run-local-lambda,num_dependents_deps.dev:0 @@ -1015330,6 +1033567,7 @@ github.com/sbarzaghialteaup/mta-visual-dep,num_dependents_deps.dev:0 github.com/sbashilov/goose,num_dependents_deps.dev:0 github.com/sbashilov/todo,num_dependents_deps.dev:0 github.com/sbason/uk-time,num_dependents_deps.dev:0 +github.com/sbates130272/spellcheck-github-actions, github.com/sbatson5/ember-wistia, github.com/sbatson5/react-component-generator,num_dependents_deps.dev:0 github.com/sbaudoin/sonar-ansible,num_dependents_deps.dev:0 @@ -1015360,7 +1033598,10 @@ github.com/sbdchd/msgpack-types, github.com/sbdchd/neoformat,criticality_score:0.462450 github.com/sbdchd/poetry-to-requirements,num_dependents_deps.dev:0 github.com/sbdchd/squawk,num_dependents_deps.dev:0 +github.com/sbdchd/squawk-action, github.com/sbditto85/iron_vhosts,num_dependents_deps.dev:0 +github.com/sbe-arg/simple-compose-service-updates, +github.com/sbe-arg/simple-tags-and-releases, github.com/sbeam/simply_marvelous,num_dependents_deps.dev:0 github.com/sbeam/zencodable,num_dependents_deps.dev:0 github.com/sbearn/bdexswap-sdk, @@ -1015467,7 +1033708,9 @@ github.com/sberryman/nbn,num_dependents_deps.dev:0 github.com/sberryman/simplebgc, github.com/sberryman/simplebgc-api,num_dependents_deps.dev:0 github.com/sberserker/dcagdax,num_dependents_deps.dev:0 +github.com/sbertix/spm-dependencies-checker, github.com/sbesada/python.math.expression.parser.pymep, +github.com/sbeyer/include-guards-check-action, github.com/sbezboro/mcrunner, github.com/sbezludny/content-type-to-typescript,num_dependents_deps.dev:0 github.com/sbezugliy/aho-corasick-trie-search,num_dependents_deps.dev:0 @@ -1015531,10 +1033774,12 @@ github.com/sbillig/ssb-vanity,num_dependents_deps.dev:0 github.com/sbilly/awesome-security,criticality_score:0.415860 github.com/sbimikesmullin/scrub-bower,num_dependents_deps.dev:0 github.com/sbimochan/fiscal-year,num_dependents_deps.dev:0 +github.com/sbimochan/jira-link-commenter, github.com/sbimochan/multitab-logout,num_dependents_deps.dev:0 github.com/sbimochan/number-scroller, github.com/sbimochan/porter, github.com/sbimochan/react-animate-number,num_dependents_deps.dev:0 +github.com/sbimochan/ticket-link-appender, github.com/sbinet-alt63/filebrowser,num_dependents_deps.dev:0 github.com/sbinet-gonum/gofpdf,num_dependents_deps.dev:0 github.com/sbinet-hep/hep,num_dependents_deps.dev:0 @@ -1015563,6 +1033808,7 @@ github.com/sbishnu019/nepal-forex, github.com/sbishnu019/nepali-phone-number, github.com/sbit-team/sbitjs-lib,num_dependents_deps.dev:0 github.com/sbit-team/sbitjs-ws,num_dependents_deps.dev:0 +github.com/sbitio/trigger-jenkins-job, github.com/sbittmann/filterdb,num_dependents_deps.dev:0 github.com/sbj42/block-fractal,num_dependents_deps.dev:0 github.com/sbj42/high-score,num_dependents_deps.dev:0 @@ -1015966,6 +1034212,7 @@ github.com/sc0ttj/router,num_dependents_deps.dev:0 github.com/sc0ttj/scrollstory,num_dependents_deps.dev:0 github.com/sc0ttj/tea,num_dependents_deps.dev:0 github.com/sc0ttj/validator,num_dependents_deps.dev:0 +github.com/sc0ttkclark/wporg-replace, github.com/sc0ttyd/alt-apiKey-seneca,num_dependents_deps.dev:0 github.com/sc0ttyd/config-layered,num_dependents_deps.dev:0 github.com/sc0ttyd/expectorant,num_dependents_deps.dev:0 @@ -1015977,6 +1034224,7 @@ github.com/sc10ntech/extract-site-metadata,num_dependents_deps.dev:0 github.com/sc13-bioinf/json-in-neo4j,num_dependents_deps.dev:0 github.com/sc1992sc/processTree,num_dependents_deps.dev:0 github.com/sc20jac/golang-ical,num_dependents_deps.dev:0 +github.com/sc2ad/QuestNDKBuildAction, github.com/sc2pepe/sequelize-datatable-node,num_dependents_deps.dev:0 github.com/sc3141/homebridge-plugin-vera,num_dependents_deps.dev:0 github.com/sc4recoin/go-ftx,num_dependents_deps.dev:0 @@ -1016006,6 +1034254,7 @@ github.com/scaffold-gather/react-mobx,num_dependents_deps.dev:0 github.com/scaffold-harmony/generator-scaffold-harmony,num_dependents_deps.dev:0 github.com/scaffold-js/generator-scaffold-js,num_dependents_deps.dev:0 github.com/scaffold-sh/cli,num_dependents_deps.dev:0 +github.com/scaffoldly/bump-version-action, github.com/scaffoldly/dotenv-out,num_dependents_deps.dev:0 github.com/scaffoldly/dynamodb, github.com/scaffoldly/ngx-scripts,num_dependents_deps.dev:0 @@ -1016090,6 +1034339,7 @@ github.com/scala-network/scala-rpc-js,num_dependents_deps.dev:0 github.com/scala-records/scala-records,num_dependents_deps.dev:0 github.com/scala-search/scaps,num_dependents_deps.dev:0 github.com/scala-steward-org/scala-steward,"criticality_score:0.593460,num_dependents_deps.dev:0" +github.com/scala-steward-org/scala-steward-action, github.com/scala-stm/scala-stm,num_dependents_deps.dev:559 github.com/scala-subscript/subscript,num_dependents_deps.dev:4 github.com/scala-subscript/subscriptfx,num_dependents_deps.dev:0 @@ -1016158,6 +1034408,7 @@ github.com/scalacenter/lsp4s,num_dependents_deps.dev:1 github.com/scalacenter/nailgun,num_dependents_deps.dev:32 github.com/scalacenter/platform,num_dependents_deps.dev:0 github.com/scalacenter/sbt-compatibility,num_dependents_deps.dev:0 +github.com/scalacenter/sbt-dependency-submission, github.com/scalacenter/sbt-eviction-rules,num_dependents_deps.dev:0 github.com/scalacenter/sbt-release-early,num_dependents_deps.dev:0 github.com/scalacenter/sbt-version-policy,num_dependents_deps.dev:0 @@ -1016286,6 +1034537,7 @@ github.com/scale-at/expo-pixi,num_dependents_deps.dev:0 github.com/scale-it/algo-builder,num_dependents_deps.dev:1 github.com/scale-it/algorand-builder,num_dependents_deps.dev:0 github.com/scale-lab/edgify, +github.com/scale-tone/az-func-as-a-graph, github.com/scale-vector/metabase_data_api, github.com/scaleapi/data-prefetch-link,num_dependents_deps.dev:0 github.com/scaleapi/scaleapi-node,num_dependents_deps.dev:0 @@ -1016342,6 +1034594,8 @@ github.com/scaleplandev/spce-java,num_dependents_deps.dev:0 github.com/scaleplandev/spce-python, github.com/scalesim-project/scale-sim-v2, github.com/scalessec/Toast-Swift,criticality_score:0.315270 +github.com/scaleway/action-scw, +github.com/scaleway/action-scw-secret, github.com/scaleway/netbox2netshot,num_dependents_deps.dev:0 github.com/scaleway/octodns-scaleway, github.com/scaleway/port-range, @@ -1016375,6 +1034629,7 @@ github.com/scalingdata/go-websocket,num_dependents_deps.dev:0 github.com/scalingdata/gogen-avro,num_dependents_deps.dev:0 github.com/scalingdata/react-js-diagrams,num_dependents_deps.dev:0 github.com/scalingdata/rocana-configuration,num_dependents_deps.dev:0 +github.com/scalingo-community/setup-scalingo, github.com/scalingo/acadock-monitoring,num_dependents_deps.dev:0 github.com/scalingo/cli,num_dependents_deps.dev:0 github.com/scalingo/cli-dl,num_dependents_deps.dev:0 @@ -1016462,6 +1034717,7 @@ github.com/scan/secure-password,num_dependents_deps.dev:0 github.com/scan/simplenote-api,num_dependents_deps.dev:0 github.com/scanalesespinoza/gotls,num_dependents_deps.dev:0 github.com/scanamo/scanamo,"criticality_score:0.468410,num_dependents_deps.dev:77" +github.com/scanapi/github-action, github.com/scanapi/scanapi,criticality_score:0.423020 github.com/scandar/scandar,num_dependents_deps.dev:0 github.com/scandinave/accessControlMiddleware,num_dependents_deps.dev:0 @@ -1016512,6 +1034768,9 @@ github.com/scaomath/fourier-transformer, github.com/scaperow/go-juggle,num_dependents_deps.dev:0 github.com/scapers/rs-api,num_dependents_deps.dev:0 github.com/scapers/rsapi,num_dependents_deps.dev:0 +github.com/scapeville/action-ExecuShell, +github.com/scapeville/action-create-PR, +github.com/scapeville/action-git-add-all-then-commit-then-push, github.com/scaphilo/koalixcrm, github.com/scaphold-io/fetch-schema,num_dependents_deps.dev:0 github.com/scaphold-io/graphql-extended, @@ -1016713,6 +1034972,7 @@ github.com/scdoshi/django-bits, github.com/scdoshi/django-notifier, github.com/scdoshi/jquery-ajaxchimp,num_dependents_deps.dev:0 github.com/sce9sc/timeZ,num_dependents_deps.dev:0 +github.com/sceccotti89/Github-Action-Versioning, github.com/scele-crawler/scele-crawler,num_dependents_deps.dev:0 github.com/sceley/algorithms-typescript, github.com/sceley/typescript-algorithms,num_dependents_deps.dev:0 @@ -1016913,6 +1035173,7 @@ github.com/schase07/nodebook,num_dependents_deps.dev:0 github.com/schasins/helena-lang,num_dependents_deps.dev:0 github.com/schatten/jsuite, github.com/schattenbrot/bookings,num_dependents_deps.dev:0 +github.com/schattian/android-emulator-runner, github.com/schauder/degraph,num_dependents_deps.dev:7 github.com/schaudhari90/JS-Functions,num_dependents_deps.dev:0 github.com/schaughule21/golang-tut,num_dependents_deps.dev:0 @@ -1016922,6 +1035183,7 @@ github.com/schavelev/vuetc-gulp,num_dependents_deps.dev:0 github.com/schctl/speck, github.com/schctl/tetsu,num_dependents_deps.dev:0 github.com/schdav/acolor,num_dependents_deps.dev:0 +github.com/schdck/create-env-json, github.com/scheb/two-factor-bundle,criticality_score:0.535360 github.com/schecterdamien/django-request-context, github.com/schedpy/schedpy, @@ -1016929,7 +1035191,9 @@ github.com/schedsite/accounts,num_dependents_deps.dev:0 github.com/scheduleonce/eslint-config-nodejs,num_dependents_deps.dev:0 github.com/scheduleonce/eslint-config-oncehub, github.com/scheduleonce/knowledgeowl-angular,num_dependents_deps.dev:0 +github.com/scheduleonce/lint-filenames, github.com/scheduleonce/ng-strictify,num_dependents_deps.dev:0 +github.com/scheduleonce/oh-docker-tag-action, github.com/scheduleonce/once-ui,num_dependents_deps.dev:0 github.com/schedulino/aws-dynamodb-adapter,num_dependents_deps.dev:0 github.com/schedulino/aws-lambda-test-utils,num_dependents_deps.dev:0 @@ -1016976,6 +1035240,7 @@ github.com/schema-mapper/validator,num_dependents_deps.dev:18 github.com/schema-repo/schema-repo,num_dependents_deps.dev:24 github.com/schema-repo/schema-repo-tools,num_dependents_deps.dev:0 github.com/schemacrawler/SchemaCrawler,"criticality_score:0.442170,num_dependents_deps.dev:1244" +github.com/schemacrawler/SchemaCrawler-Action, github.com/schemacrawler/chinook-database,num_dependents_deps.dev:0 github.com/schemadb/node-sdk,num_dependents_deps.dev:0 github.com/schemadesign/gisterize, @@ -1016986,6 +1035251,7 @@ github.com/schemalib/schemalib-cli,num_dependents_deps.dev:0 github.com/schemaorg/schemaorg,criticality_score:0.611180 github.com/schemar/teapicli,num_dependents_deps.dev:0 github.com/schemaspy/schemaspy,criticality_score:0.449010 +github.com/schemathesis/action, github.com/schemathesis/graphql-response-validator, github.com/schemathesis/schemathesis,criticality_score:0.458240 github.com/schematical/chaoscraft-cli,num_dependents_deps.dev:0 @@ -1017011,10 +1035277,13 @@ github.com/schen42/batchrequests,num_dependents_deps.dev:0 github.com/schenkerx/haraka-plugin-rcpt-pg,num_dependents_deps.dev:0 github.com/schenkerx/haraka-plugin-rcpt-pgsql,num_dependents_deps.dev:0 github.com/schenn1992/lotide,num_dependents_deps.dev:0 +github.com/scherbakovx/changelog-ci, github.com/scherebedov/postcss-global-import,num_dependents_deps.dev:0 +github.com/scherermichael-oss/action-has-permission, github.com/scherermichael/gitlog-semver,num_dependents_deps.dev:0 github.com/scherermichael/node-insecure,num_dependents_deps.dev:0 github.com/scherermichael/semvertest,num_dependents_deps.dev:0 +github.com/scherersebastian/issue-injector, github.com/scherhans/bem-flexbox-grid,num_dependents_deps.dev:0 github.com/scherhans/breakpoint-sass-mixins,num_dependents_deps.dev:0 github.com/scherler/Modern-JavaScript-Explained-For-Dinosaurs,num_dependents_deps.dev:0 @@ -1017114,6 +1035383,8 @@ github.com/schimatos/shacl-form-react,num_dependents_deps.dev:0 github.com/schinckel/django-shared-property, github.com/schinckel/django-subquery, github.com/schinckel/pdbtextmatesupport, +github.com/schineaj23/vex-blocks-build, +github.com/schineaj23/vex-build, github.com/schinkowitch/strict-throttle,num_dependents_deps.dev:0 github.com/schinvendy/taro-countdown, github.com/schiphol-nl/schiphol-nl-station,num_dependents_deps.dev:0 @@ -1017197,6 +1035468,7 @@ github.com/schleumer/redux-form,num_dependents_deps.dev:0 github.com/schleuss/rabbitmq-dump-queue,num_dependents_deps.dev:0 github.com/schlevik/handystuff, github.com/schlicker/dot-notate,num_dependents_deps.dev:0 +github.com/schliflo/action-cloud-run, github.com/schlind/Karlsruher, github.com/schlitzered/CatWeazle, github.com/schlitzered/DlmEngine, @@ -1017265,6 +1035537,8 @@ github.com/schmich/node-sse,num_dependents_deps.dev:0 github.com/schmich/tome,num_dependents_deps.dev:0 github.com/schmichael/mmstats, github.com/schmichael/nsq,num_dependents_deps.dev:0 +github.com/schmiddim/action-gh-release-info, +github.com/schmiddim/action-wget-unzip, github.com/schmidek/d3-gantt-chart,num_dependents_deps.dev:0 github.com/schmidi314/jupyterlab_cell_autorun_kernel_restart, github.com/schmidi314/jupyterlab_scenes, @@ -1017386,6 +1035660,7 @@ github.com/schnerd/ckmeans,num_dependents_deps.dev:0 github.com/schnerd/d3-scale-cluster,num_dependents_deps.dev:0 github.com/schnerd/jsondiffpatch-arrays-by-hash,num_dependents_deps.dev:0 github.com/schnerd/vcli,num_dependents_deps.dev:0 +github.com/schnerring/cloudflare-pages-branch-alias-action, github.com/schnes4/grsync,num_dependents_deps.dev:0 github.com/schnetzlerjoe/react-native-calendar-range-picker,num_dependents_deps.dev:0 github.com/schnika/create-react-app,num_dependents_deps.dev:0 @@ -1017984,6 +1036259,8 @@ github.com/sciensa/node-red-contrib-startup-trigger,num_dependents_deps.dev:0 github.com/scientific-dev/gocollection,num_dependents_deps.dev:0 github.com/scientific-guy/gocollection,num_dependents_deps.dev:0 github.com/scientific-guy/templatify,num_dependents_deps.dev:0 +github.com/scientific-python/lazy_loader, +github.com/scientific-python/spin, github.com/scientific-python/yaml2ics, github.com/scientificRat/easy_py_server, github.com/scientificgo/fft,num_dependents_deps.dev:0 @@ -1018275,6 +1036552,7 @@ github.com/scipiia/snippetbox_go,num_dependents_deps.dev:0 github.com/scipiia/test-task-http_proxy,num_dependents_deps.dev:0 github.com/scipioa/GS-api-node,num_dependents_deps.dev:0 github.com/scipion-ed-dials/scipion-ed-dials, +github.com/scipion-em/actionRelease, github.com/scipion-em/scipion-app, github.com/scipion-em/scipion-em, github.com/scipion-em/scipion-em-appion, @@ -1018515,8 +1036793,10 @@ github.com/sclevine/go-sqlite3,num_dependents_deps.dev:0 github.com/sclevine/jasmine-runner-node,num_dependents_deps.dev:0 github.com/sclevine/yj,num_dependents_deps.dev:0 github.com/scliuyang/m-pull-refresh,num_dependents_deps.dev:0 +github.com/sclorg/build-and-push-action, github.com/sclorg/container-workflow-tool, github.com/sclorg/rpm-list-builder, +github.com/sclorg/testing-farm-as-github-action, github.com/scloudyy/Defogging, github.com/scls19fr/pyCitizenBand, github.com/scls19fr/pyade, @@ -1018565,6 +1036845,7 @@ github.com/scmn-dev/version-checker,num_dependents_deps.dev:0 github.com/scmorse/permutils,num_dependents_deps.dev:0 github.com/scmp/vue-idle-runner, github.com/scms-modules/scms-modules-runner,num_dependents_deps.dev:0 +github.com/scms/scms-github-action, github.com/scmsqhn/gensim-plus, github.com/scmunk/stringutil,num_dependents_deps.dev:0 github.com/scndel/selenium-screenshot,num_dependents_deps.dev:0 @@ -1018923,6 +1037204,7 @@ github.com/scott-cote/plsqlparser,num_dependents_deps.dev:0 github.com/scott-cote/plsqlrunner,num_dependents_deps.dev:0 github.com/scott-cote/webrunner,num_dependents_deps.dev:0 github.com/scott-daily/go_web,num_dependents_deps.dev:0 +github.com/scott-david-walker/tokeniser, github.com/scott-david-walker/zpllibrary, github.com/scott-dlai/sha256-animation,num_dependents_deps.dev:0 github.com/scott-fryxell/javascript-potrace,num_dependents_deps.dev:0 @@ -1019087,6 +1037369,7 @@ github.com/scottcha/openavalancheproject, github.com/scottcharlesn/colo-u-r,num_dependents_deps.dev:0 github.com/scottcharlesworth/bulma-multiselect,num_dependents_deps.dev:0 github.com/scottcharlesworth/laravel-mix-polyfill,num_dependents_deps.dev:2 +github.com/scottcharlesworth/satis-s3-action, github.com/scottcheng/cropit,num_dependents_deps.dev:0 github.com/scottchiang/omniauth-runkeepersc,num_dependents_deps.dev:0 github.com/scottchoi/mykvm, @@ -1019210,6 +1037493,7 @@ github.com/scottcorgan/underpromise,num_dependents_deps.dev:0 github.com/scottcorgan/way,num_dependents_deps.dev:0 github.com/scottcorgan/wilson.js,num_dependents_deps.dev:0 github.com/scottcorgan/zip-object,num_dependents_deps.dev:880 +github.com/scottcoughlin2014/publish_conda_package_action, github.com/scottcrawford03/felix,num_dependents_deps.dev:0 github.com/scottcrossen/linkedin-voyager, github.com/scottcrossen/text-replace-file-loader,num_dependents_deps.dev:0 @@ -1019410,6 +1037694,7 @@ github.com/scottmcnab/hashbang-href-loader,num_dependents_deps.dev:0 github.com/scottmcpherson/meteor-io,num_dependents_deps.dev:0 github.com/scottmelhop/PowerBI-API-Python, github.com/scottmey/layback, +github.com/scottmmjackson/get-the-default-branch-action, github.com/scottmotte/digitalocean,num_dependents_deps.dev:0 github.com/scottmotte/dotenv,num_dependents_deps.dev:538 github.com/scottmotte/goodfilms-graph,num_dependents_deps.dev:0 @@ -1019476,6 +1037761,7 @@ github.com/scottrippey/react-next-useCurrentRoute,num_dependents_deps.dev:0 github.com/scottrippey/react-overridable-hooks,num_dependents_deps.dev:0 github.com/scottrippey/strict-obj,num_dependents_deps.dev:0 github.com/scottrippey/two-way-mapper,num_dependents_deps.dev:0 +github.com/scottrobertson/collaborators-only-action, github.com/scottrobertson/nuxt-supabase,num_dependents_deps.dev:0 github.com/scottrobertson/uk-covid-stats,num_dependents_deps.dev:0 github.com/scottrobertson/vue-supabase,num_dependents_deps.dev:0 @@ -1019893,6 +1038179,7 @@ github.com/screendriver/convert-vapid-public-key,num_dependents_deps.dev:0 github.com/screendriver/cp-cli,num_dependents_deps.dev:0 github.com/screendriver/generator-babel-mocha-node,num_dependents_deps.dev:0 github.com/screendriver/gitlab-pipeline-deleter, +github.com/screendriver/ifttt-action, github.com/screendriver/redater,num_dependents_deps.dev:0 github.com/screendriver/screendriver,num_dependents_deps.dev:0 github.com/screendriver/verify-github-webhook-secret,num_dependents_deps.dev:0 @@ -1020028,12 +1038315,23 @@ github.com/scribblerockerz/cryptletter,num_dependents_deps.dev:0 github.com/scribbletone/react-clock-state,num_dependents_deps.dev:0 github.com/scribbletune/harmonics,num_dependents_deps.dev:0 github.com/scribbletune/scribbletune,"criticality_score:0.382830,num_dependents_deps.dev:2" +github.com/scribd/amazon-appmesh-route-action, +github.com/scribd/amazon-appmesh-virtual-gateway-route-action, +github.com/scribd/amazon-appmesh-virtual-node-action, +github.com/scribd/amazon-appmesh-virtual-router-action, +github.com/scribd/amazon-appmesh-virtual-service-action, +github.com/scribd/amazon-ecs-service-action, +github.com/scribd/amazon-servicediscovery-service-action, github.com/scribd/keymaster,num_dependents_deps.dev:0 github.com/scribd/keymaster-cli,num_dependents_deps.dev:0 github.com/scribd/objinsync,num_dependents_deps.dev:0 github.com/scribd/rscribd,num_dependents_deps.dev:0 github.com/scribd/secrets,num_dependents_deps.dev:0 github.com/scribd/vault-authenticator,num_dependents_deps.dev:0 +github.com/scribe-security/action-bom, +github.com/scribe-security/action-installer, +github.com/scribe-security/action-slsa, +github.com/scribe-security/action-verify, github.com/scribe-systems-sp/dayjs-modularus-normalized,num_dependents_deps.dev:0 github.com/scribe-systems-sp/modularus,num_dependents_deps.dev:0 github.com/scribe-systems-sp/scribe-api-integrator,num_dependents_deps.dev:0 @@ -1020364,6 +1038662,7 @@ github.com/scrummyin/django-brancher, github.com/scrummyin/rspec-webdriver,num_dependents_deps.dev:0 github.com/scrumpy/eslint-config,num_dependents_deps.dev:0 github.com/scrumpy/tiptap,num_dependents_deps.dev:29 +github.com/scrungus/chart-testing-action, github.com/scrunshes/skipper-cloudinary,num_dependents_deps.dev:0 github.com/scrussell24/grimoire, github.com/scrussell24/hype-html, @@ -1020557,6 +1038856,7 @@ github.com/scud43/node-bitcoincharts,num_dependents_deps.dev:0 github.com/scud43/node-blockchain-wallet,num_dependents_deps.dev:0 github.com/scud43/node-campbx,num_dependents_deps.dev:0 github.com/scudco/hubot-bukkit,num_dependents_deps.dev:0 +github.com/scudderk/github-release-from-changelog-action, github.com/scuerda/aws_transcription_grouper, github.com/scuervo91/wellpy, github.com/sculeb/ng-unused-css,num_dependents_deps.dev:0 @@ -1020648,6 +1038948,7 @@ github.com/scuser/d_d,num_dependents_deps.dev:0 github.com/scusi/gsocks5,num_dependents_deps.dev:0 github.com/scusi/spipe,num_dependents_deps.dev:0 github.com/scusi/tlsdate,num_dependents_deps.dev:0 +github.com/scutLMG/hexo-action, github.com/scutan90/DeepLearning-500-questions,criticality_score:0.473280 github.com/scutdig/pyhcl, github.com/scutrobotlab/asuwave,num_dependents_deps.dev:0 @@ -1020721,6 +1039022,7 @@ github.com/sczerwinski/android-lifecycle,num_dependents_deps.dev:0 github.com/sczerwinski/android-room,num_dependents_deps.dev:0 github.com/sczerwinski/android-xpresso,num_dependents_deps.dev:0 github.com/sczerwinski/kotlin-util,num_dependents_deps.dev:2 +github.com/sczerwinski/publish-intellij-plugin-verifier-report, github.com/sczizzo/Archive,num_dependents_deps.dev:0 github.com/sczts/sczts-form-generator,num_dependents_deps.dev:0 github.com/sczxoz/scoetzee-palindrome,num_dependents_deps.dev:0 @@ -1020793,6 +1039095,7 @@ github.com/sdaniel55/sdaniel55,num_dependents_deps.dev:0 github.com/sdantuoni/react-fb-player,num_dependents_deps.dev:0 github.com/sdantuoni/react-youtube-video,num_dependents_deps.dev:0 github.com/sdantuoni/webify-generator,num_dependents_deps.dev:0 +github.com/sdaoud/sendinblue-template-action, github.com/sdapalsch/NRDB_SDK,num_dependents_deps.dev:0 github.com/sdaqo/anipy-cli, github.com/sdarmaputra/react-following-container,num_dependents_deps.dev:0 @@ -1020953,6 +1039256,7 @@ github.com/sdgandhi/clean-terminal,num_dependents_deps.dev:0 github.com/sdgathman/pyspf, github.com/sdglhm/ideamart,num_dependents_deps.dev:0 github.com/sdgluck/argsy, +github.com/sdgluck/aws-secrets-manager-actions, github.com/sdgluck/brolly,num_dependents_deps.dev:0 github.com/sdgluck/carbonate,num_dependents_deps.dev:0 github.com/sdgluck/carbonate-logger, @@ -1021305,6 +1039609,7 @@ github.com/sdruskat/net.sdruskat.sun.misc,num_dependents_deps.dev:0 github.com/sdruskat/pepperModules-FLExModules,num_dependents_deps.dev:0 github.com/sdruskat/pepperModules-GeTaModules,num_dependents_deps.dev:0 github.com/sdruskat/pykwalifire, +github.com/sdruskat/swh-save-action, github.com/sdruzhchenko/epiconjs,num_dependents_deps.dev:0 github.com/sds-kit/node,num_dependents_deps.dev:0 github.com/sds/haml-lint,criticality_score:0.509060 @@ -1021386,6 +1039691,7 @@ github.com/sdu-cfei/modest-py, github.com/sdu-cfei/mshoot, github.com/sducamp/bvr.js,num_dependents_deps.dev:0 github.com/sduduzog/purgitory,num_dependents_deps.dev:0 +github.com/sduff/opa_policy_list_action, github.com/sdujack2012/ng2-simple-spinner,num_dependents_deps.dev:0 github.com/sdujack2012/ng2-tabs,num_dependents_deps.dev:0 github.com/sdujack2012/react-multicolumn-sortable-table,num_dependents_deps.dev:0 @@ -1021537,6 +1039843,7 @@ github.com/seaBass3/epoch-time-machine,num_dependents_deps.dev:0 github.com/seabadger-io/random-textblock,num_dependents_deps.dev:0 github.com/seabasshoang/node-emoji,num_dependents_deps.dev:0 github.com/seabasshoang/react-native-react-sum-up,num_dependents_deps.dev:0 +github.com/seabed-labs/anchor-test-action, github.com/seaber-io/seaber-datepicker,num_dependents_deps.dev:0 github.com/seabird-chat/seabird-datadog-plugin,num_dependents_deps.dev:0 github.com/seabird-chat/seabird-irc-backend,num_dependents_deps.dev:0 @@ -1021551,6 +1039858,7 @@ github.com/seabourne/nxus-stripe,num_dependents_deps.dev:0 github.com/seabre/generator-saidigitalwordpress,num_dependents_deps.dev:0 github.com/seabre/hubot-statuscake,num_dependents_deps.dev:0 github.com/seabre/simplify-geometry,num_dependents_deps.dev:52 +github.com/seachicken/inga-action, github.com/seachicken/pomodoro-edit-core,num_dependents_deps.dev:0 github.com/seacoastboy/casbin,num_dependents_deps.dev:0 github.com/seacoastboy/fsnotify,num_dependents_deps.dev:0 @@ -1021615,6 +1039923,7 @@ github.com/seajs/searequire,num_dependents_deps.dev:44 github.com/seajs/seatools,num_dependents_deps.dev:0 github.com/seajs/seatransform,num_dependents_deps.dev:0 github.com/seal-cache/seal-cache,num_dependents_deps.dev:0 +github.com/seal-community/cli-action, github.com/seal-os/sealos-config-api,num_dependents_deps.dev:0 github.com/seal789ie/react-fabricjs,num_dependents_deps.dev:0 github.com/seal789ie/react-owl-carousel,num_dependents_deps.dev:6 @@ -1021973,6 +1040282,7 @@ github.com/seancroach/docgen,num_dependents_deps.dev:0 github.com/seancroach/eslint-config-typescript,num_dependents_deps.dev:0 github.com/seancroach/is-stable-version,num_dependents_deps.dev:0 github.com/seancroach/latest-stable-version, +github.com/seancroach/latest-stable-version-action, github.com/seancroach/roblox-api-raw, github.com/seancroach/ts-opaque,num_dependents_deps.dev:0 github.com/seancroach/tsconfig,num_dependents_deps.dev:0 @@ -1022270,6 +1040580,9 @@ github.com/seanmcp/svelte-emoji,num_dependents_deps.dev:0 github.com/seanmcp/vanilla-include,num_dependents_deps.dev:0 github.com/seanmcquaid/go-docs-tutorials,num_dependents_deps.dev:0 github.com/seanmcquaid/golang-class,num_dependents_deps.dev:0 +github.com/seanmiddleditch/gha-publish-to-git, +github.com/seanmiddleditch/gha-setup-ninja, +github.com/seanmiddleditch/gha-setup-vsdevenv, github.com/seanmiddleditch/js-delegate,num_dependents_deps.dev:0 github.com/seanmiddleditch/sql-thang,num_dependents_deps.dev:0 github.com/seanmnorton/tiny,num_dependents_deps.dev:0 @@ -1022507,6 +1040820,7 @@ github.com/seanzawi/hook-line-sinker-public,num_dependents_deps.dev:0 github.com/seanzer/dag-visitor,num_dependents_deps.dev:0 github.com/seanzhang98/homebridge-Xiaomi-Aqara-AC-Cooler,num_dependents_deps.dev:0 github.com/seanzhang98/homebridge-mqtt-Phicomm-DC1,num_dependents_deps.dev:0 +github.com/seanzhengw/sphinx-pages, github.com/seanzi86/vue-timy,num_dependents_deps.dev:0 github.com/seapagan/confoog,num_dependents_deps.dev:0 github.com/seapagan/django-rundevserver, @@ -1022598,6 +1040912,7 @@ github.com/searchlight/grafana-operator,num_dependents_deps.dev:0 github.com/searchlight/installer,num_dependents_deps.dev:0 github.com/searchlight/prometheus-metrics-exporter,num_dependents_deps.dev:0 github.com/searchlight/ruler,num_dependents_deps.dev:0 +github.com/searchmetrics/sm-ansible-action, github.com/searchspring/commitlint-config,num_dependents_deps.dev:0 github.com/searchspring/eslint-config,num_dependents_deps.dev:0 github.com/searchspring/github-token-exchange,num_dependents_deps.dev:0 @@ -1022651,6 +1040966,7 @@ github.com/season1618/golang-with-world-database,num_dependents_deps.dev:0 github.com/seasonQ/testnpm,num_dependents_deps.dev:0 github.com/seasonalmatcha/bakayaro,num_dependents_deps.dev:0 github.com/seasonalmatcha/botlify,num_dependents_deps.dev:0 +github.com/seasonalmatcha/conventional-commit-changelog, github.com/seasonalmatcha/kudasaine,num_dependents_deps.dev:0 github.com/seasonjs/tools,num_dependents_deps.dev:0 github.com/seasonli/fis-command-baike-webfont,num_dependents_deps.dev:0 @@ -1022946,6 +1041262,9 @@ github.com/sebastian-software/universal-dotenv-auto,num_dependents_deps.dev:0 github.com/sebastian-software/vue-locale,num_dependents_deps.dev:0 github.com/sebastian-software/vuex-validator,num_dependents_deps.dev:0 github.com/sebastian-software/wolke,num_dependents_deps.dev:0 +github.com/sebastian-sommerfeld-io/github-action-generate-docs, +github.com/sebastian-sommerfeld-io/github-action-generate-readme, +github.com/sebastian-sommerfeld-io/github-action-update-antora-yml, github.com/sebastian-steiner/nbtemplater, github.com/sebastian-tschen/stereoids, github.com/sebastian-yabiku/cgrid,num_dependents_deps.dev:0 @@ -1022957,6 +1041276,7 @@ github.com/sebastian4/terminalbr,num_dependents_deps.dev:0 github.com/sebastian4/urld,num_dependents_deps.dev:0 github.com/sebastian93921/reverse-shell-multithreaded-listener,num_dependents_deps.dev:0 github.com/sebastianGehrmann/dblp-pub, +github.com/sebastianPsm/esp-idf-ci-action, github.com/sebastianPsm/node-red-contrib-coinbase,num_dependents_deps.dev:0 github.com/sebastianaldi17/dockerfullstack,num_dependents_deps.dev:0 github.com/sebastianaldi17/golang-exercises,num_dependents_deps.dev:0 @@ -1022968,6 +1041288,7 @@ github.com/sebastianbaar/cordova-plugin-zip,num_dependents_deps.dev:0 github.com/sebastianbaar/vscode-add-angular-files,num_dependents_deps.dev:0 github.com/sebastianbaar/vue-kaiui,num_dependents_deps.dev:0 github.com/sebastianbachmaier/jsontosql,num_dependents_deps.dev:0 +github.com/sebastianbarrozo/gpt-commit-summarizer, github.com/sebastianbd95/automatedcron,num_dependents_deps.dev:0 github.com/sebastianbenz/Jnario,num_dependents_deps.dev:1 github.com/sebastianbergmann/cli-parser, @@ -1022981,6 +1041302,7 @@ github.com/sebastianbergmann/exporter,criticality_score:0.431350 github.com/sebastianbergmann/global-state,criticality_score:0.438810 github.com/sebastianbergmann/lines-of-code, github.com/sebastianbergmann/object-enumerator,criticality_score:0.395390 +github.com/sebastianbergmann/object-graph, github.com/sebastianbergmann/object-reflector,criticality_score:0.340770 github.com/sebastianbergmann/php-code-coverage,criticality_score:0.650070 github.com/sebastianbergmann/php-file-iterator,criticality_score:0.444570 @@ -1022988,6 +1041310,7 @@ github.com/sebastianbergmann/php-invoker,criticality_score:0.356450 github.com/sebastianbergmann/php-text-template,Google github.com/sebastianbergmann/php-timer,criticality_score:0.508390 github.com/sebastianbergmann/php-token-stream,Google +github.com/sebastianbergmann/phpcov, github.com/sebastianbergmann/phpcpd,criticality_score:0.498620 github.com/sebastianbergmann/phploc,criticality_score:0.514520 github.com/sebastianbergmann/phpunit,criticality_score:0.796680 @@ -1023045,6 +1041368,7 @@ github.com/sebastianhaberey/cryptocompy, github.com/sebastianhaede/bucks-js,num_dependents_deps.dev:0 github.com/sebastianhaede/vue-contentful-api,num_dependents_deps.dev:0 github.com/sebastianhove/lodown,num_dependents_deps.dev:0 +github.com/sebastianjnuwu/ssh-action-deploy, github.com/sebastianjonasson/cbass-utils,num_dependents_deps.dev:0 github.com/sebastianjonasson/victor-quotes-cli,num_dependents_deps.dev:0 github.com/sebastiankade/angular-shortcut,num_dependents_deps.dev:0 @@ -1023088,6 +1041412,9 @@ github.com/sebastianpatten/frontline,num_dependents_deps.dev:0 github.com/sebastianperruolo/gulp-ci,num_dependents_deps.dev:0 github.com/sebastianpfluegelmeier/pcm-flow,num_dependents_deps.dev:0 github.com/sebastianpfluegelmeier/processors,num_dependents_deps.dev:0 +github.com/sebastianpopp/discord-action, +github.com/sebastianpopp/ftp-action, +github.com/sebastianpopp/git-ftp-action, github.com/sebastianpozoga/dispatch, github.com/sebastianrogers/easy-template-x-data-binding,num_dependents_deps.dev:0 github.com/sebastianroming/json-multilevel-delta,num_dependents_deps.dev:0 @@ -1023254,6 +1041581,8 @@ github.com/sebbekarlsson/request,num_dependents_deps.dev:0 github.com/sebbekarlsson/state0,num_dependents_deps.dev:0 github.com/sebbert/babel-preset-es2015-fuse,num_dependents_deps.dev:0 github.com/sebbes333/identify,num_dependents_deps.dev:0 +github.com/sebbo2002/action-is-semantic-pr, +github.com/sebbo2002/action-template-updater, github.com/sebbo2002/atv2mqtt,num_dependents_deps.dev:0 github.com/sebbo2002/ble2mqtt,num_dependents_deps.dev:0 github.com/sebbo2002/fhem-cli,num_dependents_deps.dev:0 @@ -1023361,6 +1041690,7 @@ github.com/sebhildebrandt/systeminformation,"criticality_score:0.561230,num_depe github.com/sebhoss/clojure-bom,num_dependents_deps.dev:0 github.com/sebhoss/clojure-parent,num_dependents_deps.dev:0 github.com/sebhoss/common-resources,num_dependents_deps.dev:0 +github.com/sebhoss/dolt-installer, github.com/sebhoss/fiscal-year,num_dependents_deps.dev:0 github.com/sebhoss/generic-types,num_dependents_deps.dev:0 github.com/sebhoss/java-bom,num_dependents_deps.dev:0 @@ -1023377,6 +1041707,7 @@ github.com/sebi2020/csemver, github.com/sebi2020/data_structs,num_dependents_deps.dev:0 github.com/sebi2020/http_route,num_dependents_deps.dev:0 github.com/sebi2k1/node-can, +github.com/sebiboga/run-jmeter-github-action, github.com/sebidude/kubeswitch,num_dependents_deps.dev:0 github.com/sebidude/sftp,num_dependents_deps.dev:0 github.com/sebidude/syncer,num_dependents_deps.dev:0 @@ -1023434,8 +1041765,11 @@ github.com/sebjwallace/rss,num_dependents_deps.dev:0 github.com/sebjwallace/schema,num_dependents_deps.dev:0 github.com/sebkaluzny/cerebro-windowfinder,num_dependents_deps.dev:0 github.com/sebkeim/inner-class, +github.com/sebkolind/php-cs-fixer-ga, +github.com/sebkolind/prettier_action, github.com/sebkolind/use-resize,num_dependents_deps.dev:0 github.com/sebkuip/pythonpixels, +github.com/seblaporte/github-action-repo-settings-sync, github.com/sebleedelisle/rpi-led-control, github.com/sebleedelisle/stranger-lights,num_dependents_deps.dev:0 github.com/seblegall/mrbot,num_dependents_deps.dev:0 @@ -1023616,6 +1041950,7 @@ github.com/secdec/astam-correlator,num_dependents_deps.dev:0 github.com/secdec/doc-md,num_dependents_deps.dev:0 github.com/secdev/scapy,criticality_score:0.655250 github.com/secdevopsai/clickup, +github.com/secdim/sandbox-action, github.com/secdre4mer/beats,num_dependents_deps.dev:0 github.com/secdre4mer/go-colorable,num_dependents_deps.dev:0 github.com/secdre4mer/gopsutil,num_dependents_deps.dev:0 @@ -1023740,6 +1042075,7 @@ github.com/secondsun/java-language-server,num_dependents_deps.dev:0 github.com/secondsun/tm4e,num_dependents_deps.dev:0 github.com/secondsun/w3c0sac,num_dependents_deps.dev:0 github.com/secondsun/wla4j,num_dependents_deps.dev:0 +github.com/secondtruth/collect-directories-by-contained-files, github.com/secondwavetech/create-divi-extension,num_dependents_deps.dev:0 github.com/secoya/ansi-logger-js,num_dependents_deps.dev:0 github.com/secoya/eslint-config-secoya,num_dependents_deps.dev:0 @@ -1023754,6 +1042090,7 @@ github.com/secrecysiu/node-poppler-with-data,num_dependents_deps.dev:0 github.com/secrecysiu/react-rte2, github.com/secret-boy/euler-tests,num_dependents_deps.dev:0 github.com/secret-boy/movetos3, +github.com/secret-scanner/action, github.com/secret-tech/chatterb0x-editor,num_dependents_deps.dev:0 github.com/secret-tech/chatterb0x-react-client,num_dependents_deps.dev:0 github.com/secret344/simple-state-management,num_dependents_deps.dev:0 @@ -1023772,6 +1042109,7 @@ github.com/secretarysecrets/node,num_dependents_deps.dev:0 github.com/secretblockchain/go-secret,num_dependents_deps.dev:0 github.com/secretcowlevel/electron-asset-updater,num_dependents_deps.dev:0 github.com/secreter/scoped-css,num_dependents_deps.dev:0 +github.com/secrethub/actions, github.com/secrethub/secrethub-cli,num_dependents_deps.dev:0 github.com/secrethub/secrethub-go,num_dependents_deps.dev:1 github.com/secrethub/secrethub-python, @@ -1023907,6 +1042245,7 @@ github.com/securitascrimeprediction/apitools-go,num_dependents_deps.dev:0 github.com/securitiai/machinery,num_dependents_deps.dev:0 github.com/security-breachlock/vuln-vects,num_dependents_deps.dev:0 github.com/security-code-scan/security-code-scan,criticality_score:0.413040 +github.com/security-code-scan/security-code-scan-results-action, github.com/security-onion-solutions/securityonion-soc,num_dependents_deps.dev:0 github.com/security-tools/burp-control, github.com/security-union/rocket-sentry-logger,num_dependents_deps.dev:0 @@ -1024098,6 +1042437,8 @@ github.com/seed-labs/seed-simulator, github.com/seed-media/config,num_dependents_deps.dev:0 github.com/seed-media/env,num_dependents_deps.dev:0 github.com/seed-media/eslint-config,num_dependents_deps.dev:0 +github.com/seed-of-apricot/csv-json-flag-keeper, +github.com/seed-of-apricot/issue-list-readme, github.com/seed-rs/seed,"criticality_score:0.477870,num_dependents_deps.dev:3" github.com/seed-run/aws-cdk, github.com/seed-run/seed,num_dependents_deps.dev:0 @@ -1024249,6 +1042590,7 @@ github.com/seeebiii/lambda-cfn-env,num_dependents_deps.dev:0 github.com/seeebiii/lambda-updater,num_dependents_deps.dev:0 github.com/seeebiii/lambdalogs,num_dependents_deps.dev:0 github.com/seeebiii/projen-test, +github.com/seeebiii/redoc-cli-github-action, github.com/seeebiii/ses-email-forwarding,num_dependents_deps.dev:0 github.com/seeebiii/ses-verify-identities,num_dependents_deps.dev:0 github.com/seeed-studio/ardupy-aip, @@ -1024431,8 +1042773,11 @@ github.com/seem/repo-links, github.com/seem/zip, github.com/seema1711/subtitle-downloader, github.com/seemadurrani/yuki,num_dependents_deps.dev:0 +github.com/seemethere/add-github-ssh-key, github.com/seemethere/retry, github.com/seemethere/timeout.of, +github.com/seemethere/unir2, +github.com/seemethere/upload-artifact-s3, github.com/seemgame/dmda,num_dependents_deps.dev:0 github.com/seemgame/object2string,num_dependents_deps.dev:0 github.com/seemoo-lab/internalblue,criticality_score:0.374950 @@ -1024456,8 +1042801,10 @@ github.com/seeodm/flask-restx-extended, github.com/seep/parcel-plugin-glsl,num_dependents_deps.dev:0 github.com/seep/three-application,num_dependents_deps.dev:0 github.com/seep/three-particle-buffer-geometry,num_dependents_deps.dev:0 +github.com/seepine/action-miniprogram-ci, github.com/seepine/cleme,num_dependents_deps.dev:0 github.com/seepine/climb,num_dependents_deps.dev:0 +github.com/seepine/hash-files, github.com/seepot/cordova-plugin-seepot-ipay88,num_dependents_deps.dev:0 github.com/seepre/go-lamp,num_dependents_deps.dev:0 github.com/seeq12/angular-editable-text,num_dependents_deps.dev:0 @@ -1024567,6 +1042914,7 @@ github.com/seferen/getpricewine,num_dependents_deps.dev:0 github.com/seferen/grafanaimages,num_dependents_deps.dev:0 github.com/seferen/httpemulatorgo,num_dependents_deps.dev:0 github.com/seferergun/v-swiperjs,num_dependents_deps.dev:0 +github.com/seferov/pr-lint-action, github.com/seffeng/js-signature,num_dependents_deps.dev:0 github.com/seffeng/quasar-backtop,num_dependents_deps.dev:0 github.com/seffeng/quasar-navmenu,num_dependents_deps.dev:0 @@ -1024613,6 +1042961,7 @@ github.com/segersniels/supdock,num_dependents_deps.dev:0 github.com/segersniels/terraform-ecs-plan-checker,num_dependents_deps.dev:0 github.com/segersniels/window,num_dependents_deps.dev:0 github.com/seges/openapi-node-function-template,num_dependents_deps.dev:0 +github.com/segesdk/setup-al, github.com/segevfiner/cyminhook, github.com/segevfiner/cypcap, github.com/segevfiner/pybpf_asm, @@ -1024640,6 +1042989,7 @@ github.com/seggga/cropurl,num_dependents_deps.dev:0 github.com/seggga/he,num_dependents_deps.dev:0 github.com/seggga/querier,num_dependents_deps.dev:0 github.com/segi001/User-Management-Node-Package,num_dependents_deps.dev:0 +github.com/segiddins/gemx, github.com/segiddins/obstinately,num_dependents_deps.dev:0 github.com/segiddins/starlark_compiler,num_dependents_deps.dev:0 github.com/segiddins/xcactivitylog,num_dependents_deps.dev:0 @@ -1024703,6 +1043053,7 @@ github.com/segment-integrations/analytics.js-integration-visual-website-optimize github.com/segment-integrations/analytics.js-integration-woopra,num_dependents_deps.dev:0 github.com/segment-integrations/analytics.js-integration-wootric,num_dependents_deps.dev:0 github.com/segment-oj/ssandbox-rs,num_dependents_deps.dev:0 +github.com/segmentJason/pull-request-comment-trigger, github.com/segmentfe/vdown,num_dependents_deps.dev:0 github.com/segmentify/segmentify-android-sdk,num_dependents_deps.dev:0 github.com/segmentio/action-destinations,num_dependents_deps.dev:0 @@ -1025242,6 +1043593,7 @@ github.com/seisman/HinetPy, github.com/seisman/sphinx-cjkspace, github.com/seismolabs/seismo,num_dependents_deps.dev:0 github.com/seismomomo/madpy, +github.com/seisvelas/comment-email-address-alerts, github.com/seitabv/flexmeasures, github.com/seitabv/timely-beliefs, github.com/seitabv/timetomodel, @@ -1025338,6 +1043690,7 @@ github.com/sekaiamber/dva-inferno-no-router,num_dependents_deps.dev:0 github.com/sekaiamber/reactx-loader,num_dependents_deps.dev:0 github.com/sekaru/hefty,num_dependents_deps.dev:0 github.com/sekaru/koa-rest-services,num_dependents_deps.dev:0 +github.com/sekassel-research/actions-rancher-update, github.com/seker4869/study_golang,num_dependents_deps.dev:0 github.com/sekest/node-ari-client, github.com/sekest/swagger-js, @@ -1025346,6 +1043699,7 @@ github.com/sekhar2912/golang,num_dependents_deps.dev:0 github.com/sekhat/manaconf,num_dependents_deps.dev:0 github.com/sekhat/must_destroy,num_dependents_deps.dev:0 github.com/sekhavati/crystalline,num_dependents_deps.dev:0 +github.com/seki-w/issue-duplicator-action, github.com/seki98/school, github.com/sekika/discfit, github.com/sekika/passme, @@ -1025393,6 +1043747,7 @@ github.com/sekundra/project,num_dependents_deps.dev:0 github.com/sekung/bytesplus,num_dependents_deps.dev:0 github.com/sekwah41/alexa-assets,num_dependents_deps.dev:0 github.com/sekwah41/spq,num_dependents_deps.dev:0 +github.com/sekwah41/upload-release-assets, github.com/sekwiatkowski/js-fp,num_dependents_deps.dev:0 github.com/sekwiatkowski/komputation,num_dependents_deps.dev:0 github.com/sekwiatkowski/shape-db,num_dependents_deps.dev:0 @@ -1025459,6 +1043814,9 @@ github.com/selcukkutuk/ngx-sweetalert2, github.com/selcukkutuk/vue-cli-locale-tr,num_dependents_deps.dev:0 github.com/selcukkutuk/vue-cli-locale-tr-tr, github.com/selcukwashere/pyextmath, +github.com/seldaek/cli-prompt, +github.com/seldaek/phar-utils, +github.com/seldaek/signal-handler, github.com/seldo/PNP,num_dependents_deps.dev:0 github.com/seldo/array-splice,num_dependents_deps.dev:0 github.com/seldo/cat-fact,num_dependents_deps.dev:0 @@ -1025518,6 +1043876,7 @@ github.com/seleckis/nib-pushup,num_dependents_deps.dev:0 github.com/seleckis/normalize.styl.lite,num_dependents_deps.dev:0 github.com/seleckis/react-stickyfill,num_dependents_deps.dev:6 github.com/seleckis/react-touch-mouse-handler,num_dependents_deps.dev:0 +github.com/select/matrix-message-e2e, github.com/select/term-cheat, github.com/select2/select2,"criticality_score:0.670250,num_dependents_deps.dev:376" github.com/select2/select2-bootstrap-theme,num_dependents_deps.dev:18 @@ -1025540,6 +1043899,7 @@ github.com/selectnull/pylox, github.com/selectom/react-google-authorize,num_dependents_deps.dev:0 github.com/selectors/.js,num_dependents_deps.dev:0 github.com/selectpdf/selectpdf-api-python-client, +github.com/selectstar/dbt-impact-report-action, github.com/seleem1337/react-callbacks, github.com/selego/mongoose-elastic,num_dependents_deps.dev:0 github.com/selemxmn/ngx-print,num_dependents_deps.dev:2 @@ -1025547,6 +1043907,7 @@ github.com/selency/vue-google-maps-zipcode-input,num_dependents_deps.dev:0 github.com/selendra/indra-js, github.com/selendra/indra-rs,num_dependents_deps.dev:0 github.com/selendroid/selendroid,"criticality_score:0.375900,num_dependents_deps.dev:128" +github.com/selenehyun/gh-push, github.com/selenehyun/joi-extract-type,num_dependents_deps.dev:0 github.com/selenide/selenide,criticality_score:0.648000 github.com/selenium-consulting/Selenium-Java-Toolkit,num_dependents_deps.dev:0 @@ -1025574,6 +1043935,8 @@ github.com/seletz/collective.atcassandrastorage, github.com/seletz/ghrelease, github.com/selevt/svelte-gh-hotkey,num_dependents_deps.dev:0 github.com/seleznevae/libfort,criticality_score:0.328380 +github.com/self-actuated/hetzner-dns-action, +github.com/self-actuated/openfaas-oidc, github.com/self-host/self-host,num_dependents_deps.dev:0 github.com/self-regulation/gulp-resource-release,num_dependents_deps.dev:0 github.com/self-regulation/kungeek-dateformat,num_dependents_deps.dev:0 @@ -1025602,7 +1043965,13 @@ github.com/selfage/test_runner,num_dependents_deps.dev:0 github.com/selfage/tsconfig,num_dependents_deps.dev:0 github.com/selfage/web_page_handler,num_dependents_deps.dev:0 github.com/selfage/web_page_mapping,num_dependents_deps.dev:0 +github.com/selfagency/capture-output, +github.com/selfagency/diffmasterflex, +github.com/selfagency/mastofeedbot, +github.com/selfagency/merge-coverage, github.com/selfagency/microsoft-drop-ice,criticality_score:0.395380 +github.com/selfagency/slackfeedbot, +github.com/selfagency/ssh-port-forward-action, github.com/selfagency/typa,num_dependents_deps.dev:0 github.com/selfancy/apollo-client-refresh-configbean,num_dependents_deps.dev:0 github.com/selfapy/univ-router,num_dependents_deps.dev:0 @@ -1025681,6 +1044050,7 @@ github.com/selfup/scnnr,num_dependents_deps.dev:0 github.com/selfup/stringer,num_dependents_deps.dev:0 github.com/selfup/vue-reegux,num_dependents_deps.dev:0 github.com/selfuryon/netdev, +github.com/selfuryon/nix-update-action, github.com/selgem/lektor-gulp-support, github.com/selialkile/api_yard_parser,num_dependents_deps.dev:0 github.com/selialkile/sieve-parser,num_dependents_deps.dev:0 @@ -1025726,6 +1044096,7 @@ github.com/sellibitze/anyrange,num_dependents_deps.dev:0 github.com/sellibitze/crc24-rs,num_dependents_deps.dev:5 github.com/sellibitze/multiarray,num_dependents_deps.dev:0 github.com/sellibitze/packagemerge-rs,num_dependents_deps.dev:0 +github.com/selliott-Idexx/gdos-github-action-versioning, github.com/sellisd/storystructure, github.com/sellmerfud/optparse,num_dependents_deps.dev:0 github.com/sellorm/mdtest, @@ -1025856,6 +1044227,7 @@ github.com/semantic-math/math-evaluator,num_dependents_deps.dev:0 github.com/semantic-math/math-nodes,num_dependents_deps.dev:2 github.com/semantic-math/math-rules,num_dependents_deps.dev:0 github.com/semantic-math/math-traverse,num_dependents_deps.dev:0 +github.com/semantic-release-extras/next-release-version, github.com/semantic-release-flex/semantic-release,num_dependents_deps.dev:0 github.com/semantic-release-plus/semantic-release,num_dependents_deps.dev:0 github.com/semantic-release-plus/semantic-release-plus,num_dependents_deps.dev:0 @@ -1025886,6 +1044258,9 @@ github.com/semantic-ui-forest/forest-themes-css,num_dependents_deps.dev:0 github.com/semantic-ui-react-numberpicker/semantic-ui-react-numberpicker, github.com/semanticaSoftware/material-datepicker,num_dependents_deps.dev:0 github.com/semanticallynull/dublinbikeparking,num_dependents_deps.dev:0 +github.com/semanticdata/deploy-pages, +github.com/semanticdata/upload-artifact, +github.com/semanticdata/upload-pages-artifact, github.com/semanticer/HippQuery,num_dependents_deps.dev:0 github.com/semanticer/TurriType,num_dependents_deps.dev:0 github.com/semanticinsight/autobricks, @@ -1025955,6 +1044330,7 @@ github.com/sembaye/numberconverter, github.com/sembh1998/testmod,num_dependents_deps.dev:0 github.com/sembrestels/angular-qr-scanner,num_dependents_deps.dev:0 github.com/semc-labs/salo,num_dependents_deps.dev:0 +github.com/semcelik/commit-author-action, github.com/semcelik/github-action-playground,num_dependents_deps.dev:0 github.com/semcelik/react-app-rewire-uglify,num_dependents_deps.dev:0 github.com/semchev/generator-kotlin-simple,num_dependents_deps.dev:0 @@ -1026037,6 +1044413,7 @@ github.com/semibran/vector, github.com/semibran/wrap-around,num_dependents_deps.dev:0 github.com/semicarryispig/bce-multimedia-tool, github.com/semicdev/encuestas-node,num_dependents_deps.dev:0 +github.com/semick-dev/fbi-open-up, github.com/semick-dev/history-view, github.com/semicolom/django-paycomet, github.com/semicolom/django-tools-about, @@ -1026144,6 +1044521,7 @@ github.com/semmoolenschot/semhue, github.com/semmywong/aliyunoss-plus-webpack-plugin,num_dependents_deps.dev:0 github.com/semmywong/vue-pre-compile-loader,num_dependents_deps.dev:0 github.com/semnil/hello-go-lambda,num_dependents_deps.dev:0 +github.com/semoal/action-netlify-deploy, github.com/semoal/themeprovider-storybook,num_dependents_deps.dev:2 github.com/semog/go-sqldb,num_dependents_deps.dev:0 github.com/semojs/semo,num_dependents_deps.dev:30 @@ -1026425,6 +1044803,7 @@ github.com/sendpoint/sendpoint,num_dependents_deps.dev:0 github.com/sendpoint/sendpoint-cli,num_dependents_deps.dev:0 github.com/sendpulse/sendpulse-rest-api-node.js,num_dependents_deps.dev:0 github.com/sendpulse/sendpulse-rest-api-python, +github.com/sendsay-ru/rewritable-pr-comment, github.com/sendsay-ru/sendsay-api-connector, github.com/sendsay-ru/sendsay-api-js,num_dependents_deps.dev:0 github.com/sendsay-ru/sendsay-api-python, @@ -1026619,6 +1044998,7 @@ github.com/senlima0430/desegni,num_dependents_deps.dev:0 github.com/senlima4/cra-template-senlima,num_dependents_deps.dev:0 github.com/senluchen2015/grunt-mocha-phantom-istanbul,num_dependents_deps.dev:0 github.com/senluciferzeng/slim-env-nodeclient,num_dependents_deps.dev:0 +github.com/senmu/download-json-property-action, github.com/senna-ui/senna,num_dependents_deps.dev:0 github.com/sennap/fibonacci-generator,num_dependents_deps.dev:0 github.com/sennasemakula/bitwise-operators,num_dependents_deps.dev:0 @@ -1026792,9 +1045172,12 @@ github.com/sensifai/sensifai_python, github.com/sensiolabs-de/deprecation-detector,criticality_score:0.401330 github.com/sensiolabs-de/deptrac,criticality_score:0.524610 github.com/sensiolabs/SensioFrameworkExtraBundle,criticality_score:0.530710 +github.com/sensiolabs/ansi-to-html, github.com/sensiolabs/security-checker,criticality_score:0.510010 +github.com/sensiolabs/sensiobuzzbundle, github.com/sensiolabs/sensiodistributionbundle, github.com/sensiolabs/sensiogeneratorbundle, +github.com/sensiolabs/silex-connect, github.com/sensirion/python-i2c-driver, github.com/sensirion/python-i2c-sen5x, github.com/sensirion/python-i2c-sht, @@ -1026834,6 +1045217,7 @@ github.com/sensorsdata/sa-sdk-python, github.com/sensorstation/station,num_dependents_deps.dev:0 github.com/sensortower/daterangepicker,num_dependents_deps.dev:0 github.com/sensortower/sidekiq-throttled,criticality_score:0.391530 +github.com/sensrtrx/conventional-changelog-action, github.com/senssei/grunt-license-bower,num_dependents_deps.dev:0 github.com/sensslen/Cgf.CameraControl.Main.Core,num_dependents_deps.dev:0 github.com/sensslen/Cgf.CameraControl.Main.Gamepad,num_dependents_deps.dev:0 @@ -1026882,6 +1045266,7 @@ github.com/sensu/sensu-check-log,num_dependents_deps.dev:0 github.com/sensu/sensu-check-multiplexer,num_dependents_deps.dev:0 github.com/sensu/sensu-community-plugins,criticality_score:0.386810 github.com/sensu/sensu-email-handler,num_dependents_deps.dev:0 +github.com/sensu/sensu-flow, github.com/sensu/sensu-go,"criticality_score:0.591450,num_dependents_deps.dev:109" github.com/sensu/sensu-opcua-checks,num_dependents_deps.dev:0 github.com/sensu/sensu-perf,num_dependents_deps.dev:0 @@ -1026890,6 +1045275,7 @@ github.com/sensu/sensu-plugin-tool,num_dependents_deps.dev:0 github.com/sensu/sensu-remediation-handler,num_dependents_deps.dev:0 github.com/sensu/sensu-rocketchat-handler,num_dependents_deps.dev:0 github.com/sensu/sensu-sumologic-handler,num_dependents_deps.dev:0 +github.com/sensuikan1973/replace-deps, github.com/sensyn-robotics/wowza-webrtc-client,num_dependents_deps.dev:0 github.com/sent-malin/finish_quest_golang,num_dependents_deps.dev:0 github.com/sent-malin/my_rep,num_dependents_deps.dev:0 @@ -1026915,6 +1045301,7 @@ github.com/senthiljruby/waysms,num_dependents_deps.dev:0 github.com/senthilkumar-chandramohan/sample-react-component-lib,num_dependents_deps.dev:0 github.com/senthilkumarpn/yo-repository,num_dependents_deps.dev:0 github.com/senthilkveeranan/minikube-lab,num_dependents_deps.dev:0 +github.com/senthilnasa/flutter-cloudflare-pages, github.com/senthilnasa/gomysql,num_dependents_deps.dev:0 github.com/senthilp/spofcheck, github.com/senthilporunan/grunt-ng-attr-hint,num_dependents_deps.dev:0 @@ -1027128,9 +1045515,13 @@ github.com/seong7/NodeJS_Modules,num_dependents_deps.dev:0 github.com/seong7/skaffold-example,num_dependents_deps.dev:0 github.com/seongahjo/t-ajax,num_dependents_deps.dev:0 github.com/seonggukchoi/zendesk-sdk-ts,num_dependents_deps.dev:0 +github.com/seonghun-dev/flyway-naming-checker, github.com/seonghwan-dev/Project-Builder,num_dependents_deps.dev:0 github.com/seonghyeonkimm/create-apollo-server,num_dependents_deps.dev:0 +github.com/seonghyeonkimm/jira-release, github.com/seonghyeonkimm/react-selectable-fast,num_dependents_deps.dev:0 +github.com/seongilp/autoebs, +github.com/seongilp/dhlottery-api, github.com/seongjoojin/nc-react-hooks,num_dependents_deps.dev:0 github.com/seonglae/dancing-button,num_dependents_deps.dev:0 github.com/seonglae/to-smooth,num_dependents_deps.dev:0 @@ -1027300,6 +1045691,7 @@ github.com/seporaitis/graphqlpy, github.com/seporaitis/mysqlparse, github.com/seporaitis/poor-smime-sign, github.com/sepp2k/sexyopt,num_dependents_deps.dev:0 +github.com/seppaleinen/actions-ssh-wireguard, github.com/seppedelanghe/traducteur, github.com/seppeljordan/nix-prefetch-github, github.com/seppemans/businesstimedelta, @@ -1027348,6 +1045740,7 @@ github.com/sepuka/gocademy,num_dependents_deps.dev:0 github.com/sepuka/gocr,num_dependents_deps.dev:0 github.com/sepuka/vkbotserver,num_dependents_deps.dev:0 github.com/sepulrator/java-exception-api,num_dependents_deps.dev:0 +github.com/sepulsa/push_then_pr, github.com/sepulsa/rabbitmq-vn-delay,num_dependents_deps.dev:0 github.com/sepulsa/vetra,num_dependents_deps.dev:0 github.com/sepulworld/aptly_cli,num_dependents_deps.dev:0 @@ -1027355,11 +1045748,13 @@ github.com/seq-lang/seq,criticality_score:0.385630 github.com/seqan/seqan,criticality_score:0.487090 github.com/seqan/seqansphinx, github.com/seqcode/multimds, +github.com/seqeralabs/action-tower-launch, github.com/seqfu/dragenfly, github.com/seqi/astoria,num_dependents_deps.dev:0 github.com/seqi/skyranger,num_dependents_deps.dev:0 github.com/seqs/runner.js,num_dependents_deps.dev:0 github.com/seqsense/aws-iot-device-sdk-go,num_dependents_deps.dev:0 +github.com/seqsense/extract-pr-titles-action, github.com/seqsense/kinesisvideomanager,num_dependents_deps.dev:0 github.com/seqsense/pcdeditor,num_dependents_deps.dev:0 github.com/seqsense/pcgol,num_dependents_deps.dev:0 @@ -1027438,6 +1045833,8 @@ github.com/sequiturs/bookshelf-advanced-serialization,num_dependents_deps.dev:0 github.com/sequiturs/bookshelf-permissions,num_dependents_deps.dev:0 github.com/sequix/sup,num_dependents_deps.dev:0 github.com/sequoia-china/tslint-config-scc,num_dependents_deps.dev:0 +github.com/sequoia-pgp/authenticate-commits, +github.com/sequoia-pgp/fast-forward, github.com/sequoiar/node-bmp085,num_dependents_deps.dev:0 github.com/sequoiar/node-socks,num_dependents_deps.dev:0 github.com/sequoiar/socks5, @@ -1027472,6 +1045869,7 @@ github.com/seracio/types-tdf,num_dependents_deps.dev:0 github.com/seracio/types-tennis,num_dependents_deps.dev:0 github.com/seracio/xstream-connect,num_dependents_deps.dev:0 github.com/seracio/zscore,num_dependents_deps.dev:0 +github.com/serafdev/go-release-action, github.com/serafima-ai/BenchFormer, github.com/serafin-framework/gulp-serafin-json-schema-to-typescript,num_dependents_deps.dev:0 github.com/serafin-labs/api,num_dependents_deps.dev:0 @@ -1027591,12 +1045989,14 @@ github.com/seratch/seratch-slack-types, github.com/seratch/skinny-framework,num_dependents_deps.dev:0 github.com/serathius/muffin-peewee-async, github.com/serathius/sanic-sentry, +github.com/serato/serato-lhci-notification, github.com/serato/sws-js-sdk,num_dependents_deps.dev:0 github.com/seratonik/magnum-rs,num_dependents_deps.dev:0 github.com/seratonik/node-canadapost,num_dependents_deps.dev:0 github.com/seraum/nectarjs,num_dependents_deps.dev:0 github.com/seraum/rafale,num_dependents_deps.dev:0 github.com/serayuzgur/weld,num_dependents_deps.dev:0 +github.com/serban-petrescu/gh-issues-to-sheet, github.com/serban-petrescu/sapim,num_dependents_deps.dev:0 github.com/serban-petrescu/ui5-jsx-rm,num_dependents_deps.dev:0 github.com/serban/wavemaker, @@ -1027671,6 +1046071,7 @@ github.com/sercanov/react-strapmenu,num_dependents_deps.dev:0 github.com/sercanov/sails-hook-blueprint-associations,num_dependents_deps.dev:0 github.com/sercanov/sails-hook-blueprint-utils,num_dependents_deps.dev:0 github.com/sercanpaspal/local-redux-storage,num_dependents_deps.dev:0 +github.com/sercanuste/gitmoji-changelog-action, github.com/sercanuste/ngx-datatable,num_dependents_deps.dev:0 github.com/sercanuste/react-ga, github.com/sercanuste/rnal,num_dependents_deps.dev:0 @@ -1027787,6 +1046188,7 @@ github.com/serganus/RunGruntTask,num_dependents_deps.dev:0 github.com/serganus/RunGruntTask-examples,num_dependents_deps.dev:0 github.com/serganus/mongo-morgan-ext,num_dependents_deps.dev:0 github.com/serganus/multiple-requests-promise,num_dependents_deps.dev:0 +github.com/sergavshin/gha-test-coverage-check, github.com/sergazyyev/crmlibrary,num_dependents_deps.dev:0 github.com/sergazyyev/wallet,num_dependents_deps.dev:0 github.com/sergcen/css-url,num_dependents_deps.dev:0 @@ -1027834,6 +1046236,7 @@ github.com/sergeche/grunt-frontend,num_dependents_deps.dev:0 github.com/sergeche/template-parser,num_dependents_deps.dev:14 github.com/sergeds/swing-mvvm,num_dependents_deps.dev:0 github.com/sergeev-lab/diplom,num_dependents_deps.dev:0 +github.com/sergeevpasha/yandex-cloud-s3-sync-github-actions, github.com/sergei-bondarenko/xchg, github.com/sergei-maertens/django-privates, github.com/sergei-maertens/django-systemjs, @@ -1027855,6 +1046258,7 @@ github.com/sergeichestakov/todo-to-issue,num_dependents_deps.dev:0 github.com/sergeichikan/app-error,num_dependents_deps.dev:0 github.com/sergeichikan/logger,num_dependents_deps.dev:0 github.com/sergeichikan/router,num_dependents_deps.dev:0 +github.com/sergeidyga/checkout-dirs, github.com/sergeidyga/cssxpath,num_dependents_deps.dev:0 github.com/sergeikretov/create-react-app,num_dependents_deps.dev:0 github.com/sergeilisitsyn/gocourse,num_dependents_deps.dev:0 @@ -1028051,6 +1046455,7 @@ github.com/sergeyrassokhin/lazystream.ts, github.com/sergeyshilin/byter, github.com/sergeyshpadyrev/eslint-plugin-beautiful-imports,num_dependents_deps.dev:0 github.com/sergeyshpadyrev/react-native-easy-router,num_dependents_deps.dev:0 +github.com/sergeyshpadyrev/setup-idris, github.com/sergeyshpadyrev/sova,num_dependents_deps.dev:0 github.com/sergeyshpadyrev/una,num_dependents_deps.dev:0 github.com/sergeyshulzhenko/react-native-phone-caller,num_dependents_deps.dev:0 @@ -1028072,6 +1046477,7 @@ github.com/sergeysova/can-you, github.com/sergeysova/can-you.rs,num_dependents_deps.dev:0 github.com/sergeysova/center-code,num_dependents_deps.dev:0 github.com/sergeysova/cra-template-effector,num_dependents_deps.dev:0 +github.com/sergeysova/docker-publish-action, github.com/sergeysova/effector-debounce,num_dependents_deps.dev:2 github.com/sergeysova/effector-logger,num_dependents_deps.dev:0 github.com/sergeysova/effector-reshape,num_dependents_deps.dev:0 @@ -1028084,7 +1046490,10 @@ github.com/sergeysova/es2-result-option,num_dependents_deps.dev:0 github.com/sergeysova/es2-result.js,num_dependents_deps.dev:0 github.com/sergeysova/foliage, github.com/sergeysova/gatsby-source-simplecast,num_dependents_deps.dev:0 +github.com/sergeysova/gist-read-action, +github.com/sergeysova/gist-write-action, github.com/sergeysova/import-sort,num_dependents_deps.dev:0 +github.com/sergeysova/jq-action, github.com/sergeysova/license.js, github.com/sergeysova/new-license.js,num_dependents_deps.dev:0 github.com/sergeysova/node-helmet,num_dependents_deps.dev:0 @@ -1028103,9 +1046512,11 @@ github.com/sergeysova/swagger-to-js-preset,num_dependents_deps.dev:0 github.com/sergeysova/symbiote-symbol,num_dependents_deps.dev:0 github.com/sergeysova/symbol-creator,num_dependents_deps.dev:0 github.com/sergeysova/telegram-typings,num_dependents_deps.dev:44 +github.com/sergeysova/this_week_in_rust.rs, github.com/sergeysova/tomlcli.rs,num_dependents_deps.dev:0 github.com/sergeysova/unwrap-refs,num_dependents_deps.dev:0 github.com/sergeysova/utf8-uint8array,num_dependents_deps.dev:0 +github.com/sergeysova/xcodebuild-action, github.com/sergeyt/apiproxy,num_dependents_deps.dev:0 github.com/sergeyt/askfor,num_dependents_deps.dev:2 github.com/sergeyt/csc.js,num_dependents_deps.dev:0 @@ -1028220,6 +1046631,7 @@ github.com/sergioalvz/backbone.factotum,num_dependents_deps.dev:0 github.com/sergioaok/Ordering-UI, github.com/sergioaok/ordering-components,num_dependents_deps.dev:0 github.com/sergioarmgpl/operating-systems-usac-course,num_dependents_deps.dev:0 +github.com/sergioaten/msteams-notifications, github.com/sergioavazquez/fitbox,num_dependents_deps.dev:0 github.com/sergioavazquez/meeseeks-js,num_dependents_deps.dev:0 github.com/sergioburdisso/pyss3, @@ -1028228,6 +1046640,7 @@ github.com/sergiocabral/Cabrones.NpmJs.Screeps,num_dependents_deps.dev:0 github.com/sergiocabral/Cabrones.npm,num_dependents_deps.dev:0 github.com/sergiocalde94/pydrift, github.com/sergiocallegari/PyDSM, +github.com/sergiocampama/setup-grpc-web, github.com/sergiocardoso/ng-code-verification,num_dependents_deps.dev:0 github.com/sergiocarneiro/angular-position,num_dependents_deps.dev:0 github.com/sergiocarneiro/ngx-position,num_dependents_deps.dev:0 @@ -1028300,6 +1046713,8 @@ github.com/sergiogc9/eslint-config, github.com/sergiogc9/fox-awesome-cli,num_dependents_deps.dev:0 github.com/sergiogc9/fox-git-cli,num_dependents_deps.dev:0 github.com/sergiogc9/fox-node-cli, +github.com/sergiogc9/github-action-deploy-ssh, +github.com/sergiogc9/github-action-sync-ssh, github.com/sergiogc9/nodejs-server,num_dependents_deps.dev:0 github.com/sergiogiogio/Acdc,num_dependents_deps.dev:0 github.com/sergiogiogio/ProxyCast,num_dependents_deps.dev:0 @@ -1028310,6 +1046725,7 @@ github.com/sergiogomez/log_extractor,num_dependents_deps.dev:0 github.com/sergiohcp/back-solar,num_dependents_deps.dev:0 github.com/sergiohpreis/chronometerjs,num_dependents_deps.dev:0 github.com/sergiohpreis/spotify-wrapper,num_dependents_deps.dev:0 +github.com/sergioisidoro/github-transifex-action, github.com/sergioisidoro/hubot-inspires,num_dependents_deps.dev:0 github.com/sergioisidoro/ruuvi_decoders, github.com/sergiojadir/debug_unimedrj,num_dependents_deps.dev:0 @@ -1028354,6 +1046770,8 @@ github.com/sergioramos/remark-hint,num_dependents_deps.dev:0 github.com/sergioramos/remark-oembed, github.com/sergioramos/remark-prism, github.com/sergioramos/serverless-plugin-tree-shake, +github.com/sergioramos/yarn-actions, +github.com/sergioramos/yet-another-deployment-action, github.com/sergiorb/pdc, github.com/sergiorb/sypi, github.com/sergiorivas/random_variate_generator,num_dependents_deps.dev:0 @@ -1028425,6 +1046843,7 @@ github.com/sergonius/typa,num_dependents_deps.dev:0 github.com/sergonius/typa-react,num_dependents_deps.dev:0 github.com/sergor5/vue-tags-input,num_dependents_deps.dev:0 github.com/sergot/ngx-smart-form,num_dependents_deps.dev:0 +github.com/sergotail/laravel-pint-action, github.com/sergray/crypto_fernet, github.com/sergred/dorian, github.com/sergree/matchering, @@ -1028545,6 +1046964,8 @@ github.com/seriesoftubes/pycollections.js,num_dependents_deps.dev:0 github.com/serihiro/config2args,num_dependents_deps.dev:0 github.com/serihiro/error_arranger,num_dependents_deps.dev:0 github.com/serikoff/project-lvl1-s474,num_dependents_deps.dev:0 +github.com/serilog-contrib/serilog-enrichers-exceldna, +github.com/serilog-contrib/serilog-sinks-exceldnalogdisplay, github.com/serilog/serilog,criticality_score:0.571170 github.com/serilog/serilog-aspnetcore,criticality_score:0.428450 github.com/serilog/serilog-sinks-elasticsearch,criticality_score:0.459050 @@ -1028575,6 +1046996,7 @@ github.com/seriousManual/timr, github.com/seriousManual/weightedrand,num_dependents_deps.dev:0 github.com/seriousben/ember-cli-parse,num_dependents_deps.dev:0 github.com/seriousben/go-asn1,num_dependents_deps.dev:0 +github.com/seriousben/go-patch-cover-action, github.com/seriousben/gopher-whoami,num_dependents_deps.dev:0 github.com/seriousben/newsblur-to-hugo,num_dependents_deps.dev:0 github.com/seriousben/socket.io-raft,num_dependents_deps.dev:0 @@ -1028587,8 +1047009,11 @@ github.com/seriozhakorneev/coins,num_dependents_deps.dev:0 github.com/seriozhakorneev/jsonechoserver,num_dependents_deps.dev:0 github.com/seripap/Google-Geocode-Parser,num_dependents_deps.dev:0 github.com/seripap/OnWater,num_dependents_deps.dev:0 +github.com/seripap/gh-linear-action, github.com/seripap/hyperpanic,num_dependents_deps.dev:0 +github.com/seripap/pr-update-action, github.com/seripap/string-interpolation,num_dependents_deps.dev:320 +github.com/seripap/tailscale-github-action, github.com/seripap/things-json,num_dependents_deps.dev:0 github.com/seripap/vainglory,num_dependents_deps.dev:0 github.com/seriph/parse-server,num_dependents_deps.dev:0 @@ -1028611,6 +1047036,7 @@ github.com/serjplus/cosmos-sdk,num_dependents_deps.dev:0 github.com/serjrd/fwhp,num_dependents_deps.dev:0 github.com/serjs/socks5-server,num_dependents_deps.dev:0 github.com/serjukl/generator-serj,num_dependents_deps.dev:0 +github.com/serkan-korkac/deploy-firebase-functions, github.com/serkanalgl/hydro-raindrop-java,num_dependents_deps.dev:0 github.com/serkanalgur/gatsby-remark-embed-wordpress,num_dependents_deps.dev:0 github.com/serkanalgur/istckimlik,num_dependents_deps.dev:0 @@ -1028671,6 +1047097,7 @@ github.com/sero-cash/pullup,num_dependents_deps.dev:0 github.com/sero01000/mega,num_dependents_deps.dev:0 github.com/serobj/serobj-python, github.com/serodriguez68/authz,num_dependents_deps.dev:0 +github.com/serokell/xrefcheck-action, github.com/seromarin/golang-get-started-plural,num_dependents_deps.dev:0 github.com/serotoninx/pytools, github.com/serp-dev/p-seriel-to-success,num_dependents_deps.dev:0 @@ -1028760,6 +1047187,14 @@ github.com/serso/aspecta,num_dependents_deps.dev:0 github.com/serso/common,num_dependents_deps.dev:383 github.com/serso/jscl,num_dependents_deps.dev:10 github.com/serso/thread-guard,num_dependents_deps.dev:0 +github.com/sersoft-gmbh/os-version-action, +github.com/sersoft-gmbh/running-release-tags-action, +github.com/sersoft-gmbh/setup-gh-cli-action, +github.com/sersoft-gmbh/swift-coverage-action, +github.com/sersoft-gmbh/swift-version-action, +github.com/sersoft-gmbh/swifty-docs-action, +github.com/sersoft-gmbh/swifty-linux-action, +github.com/sersoft-gmbh/xcodebuild-action, github.com/sersoluciones/leaflet-plugins,num_dependents_deps.dev:0 github.com/sersorrel/some, github.com/sertaconay/stylelint-config-novac,num_dependents_deps.dev:0 @@ -1028970,6 +1047405,7 @@ github.com/serverlessf/api-amazontranslate,num_dependents_deps.dev:0 github.com/serverlesshq/nextjs,num_dependents_deps.dev:0 github.com/serverlesshq/nodejs,num_dependents_deps.dev:0 github.com/serverlessinc/utils-china,num_dependents_deps.dev:472 +github.com/serverlesslife-cn/sync-repo-to-coding, github.com/serverlessplus/js,num_dependents_deps.dev:0 github.com/serverlessplus/py, github.com/serverlesspolska/serverless-iam-test-helper, @@ -1028986,6 +1047422,7 @@ github.com/servernoj/insomnia-plugin-jsonpathpp, github.com/servernull/openfaas-imageui,num_dependents_deps.dev:0 github.com/serverscom/recoil-form, github.com/serverscom/terraform-provider-serverscom,num_dependents_deps.dev:0 +github.com/serversideup/github-action-docker-build, github.com/serversideup/tailwindcss-mobile-utilities,num_dependents_deps.dev:0 github.com/serverstf/python-valve, github.com/serverunseen/stackmap,num_dependents_deps.dev:0 @@ -1029276,6 +1047713,7 @@ github.com/setaman/vue-ellipse-progress,num_dependents_deps.dev:0 github.com/setapermana/go-say-hello,num_dependents_deps.dev:0 github.com/setapermana/go-say-hello-pc,num_dependents_deps.dev:0 github.com/setapermana/go_v14,num_dependents_deps.dev:0 +github.com/setare/git-changes-action, github.com/setare/go-os-signals,num_dependents_deps.dev:0 github.com/setarek/pym-particle,num_dependents_deps.dev:0 github.com/setaris/django-bigfoot, @@ -1029410,6 +1047848,7 @@ github.com/sethp/ci-experiments,num_dependents_deps.dev:0 github.com/sethpollack/ember-cli-deploy-change-log,num_dependents_deps.dev:0 github.com/sethpollack/ember-stickler,num_dependents_deps.dev:0 github.com/sethpollen/sbp_linux_config,num_dependents_deps.dev:0 +github.com/sethreidnz/azure-webapps-preview-deploy, github.com/sethreno/schemazen,criticality_score:0.326720 github.com/sethrj/h5sh, github.com/sethsandaru/vue-form-builder,num_dependents_deps.dev:0 @@ -1029597,14 +1048036,19 @@ github.com/setnicka/shrecker,num_dependents_deps.dev:0 github.com/setnicka/smf-jezero,num_dependents_deps.dev:0 github.com/setnicka/sqlxpp,num_dependents_deps.dev:0 github.com/setnicka/ulozto-downloader, +github.com/setoelkahfi/garust-debian, github.com/setomits/flask-ulid, github.com/setp62/setp62-starter,num_dependents_deps.dev:0 github.com/setr/animestreamer-cli, github.com/setriones/limitreader,num_dependents_deps.dev:0 github.com/setsal/ccu-wbd,num_dependents_deps.dev:0 github.com/setsevireon/ihaveissues,num_dependents_deps.dev:0 +github.com/setsumaru1992/github_action_practice, +github.com/setsumaru1992/notify_test_file_update_between_latest_two_merge_commits, github.com/setsuyaosumi/visdiff-static,num_dependents_deps.dev:0 github.com/setsuyaosumi/visreg-static,num_dependents_deps.dev:0 +github.com/sett-and-hive/detect-secrets-action, +github.com/sett-and-hive/sarif-to-comment-action, github.com/settakit-sirisoft/demo-query,num_dependents_deps.dev:0 github.com/settakit-sirisoft/pocdemo1,num_dependents_deps.dev:0 github.com/sette-tyx/demoa,num_dependents_deps.dev:0 @@ -1029615,6 +1048059,8 @@ github.com/settinghead/url-analyzer,num_dependents_deps.dev:0 github.com/settlelol/settle.db,num_dependents_deps.dev:0 github.com/settlemint/certimint-validate,num_dependents_deps.dev:0 github.com/settlemint/merkle-tools,num_dependents_deps.dev:0 +github.com/settlemint/sentry-releases-action, +github.com/settlemint/setup-op, github.com/settlin/mongo-backup,num_dependents_deps.dev:0 github.com/settlin/mup-aws-beanstalk,num_dependents_deps.dev:0 github.com/settlin/node-monorepo,num_dependents_deps.dev:0 @@ -1029623,6 +1048069,7 @@ github.com/settrue/go-push,num_dependents_deps.dev:0 github.com/setu-lobby/npm-upi-deep-link,num_dependents_deps.dev:0 github.com/setu-lobby/setu-node, github.com/setu4993/convert-labse-tf-pt, +github.com/setup-rails/setup-rails, github.com/setupch/vuesax, github.com/setupdata/pyking, github.com/setyongr/b24,num_dependents_deps.dev:0 @@ -1029697,6 +1048144,7 @@ github.com/seungwon-kang/go-ipfs-wrapper,num_dependents_deps.dev:0 github.com/seungwooj/learngo,num_dependents_deps.dev:0 github.com/seungwook0502/go_study,num_dependents_deps.dev:0 github.com/seunlanlege/arc-reactor,num_dependents_deps.dev:0 +github.com/seunlanlege/cargo-auto-publish, github.com/seunlanlege/react-native-kalman-location, github.com/seunlanlege/react-native-mobx-calender,num_dependents_deps.dev:0 github.com/seunsanyaa/Url-Shortner,num_dependents_deps.dev:0 @@ -1029728,7 +1048176,9 @@ github.com/sevastos/express-jwt,num_dependents_deps.dev:0 github.com/sevastos/tiner,num_dependents_deps.dev:0 github.com/sevazhidkov/javascript-loklak-api,num_dependents_deps.dev:0 github.com/sevbus/Subscription,num_dependents_deps.dev:0 +github.com/sevco/go-lambda-action, github.com/sevco/metrics-datadog-exporter-rs,num_dependents_deps.dev:0 +github.com/sevco/rust-license-check, github.com/sevco/zapdog,num_dependents_deps.dev:0 github.com/sevcsik/annotated-gherkin.js,num_dependents_deps.dev:0 github.com/sevcsik/gherkin2robot.js,num_dependents_deps.dev:0 @@ -1029760,6 +1048210,7 @@ github.com/seveibar/pgknexlove,num_dependents_deps.dev:0 github.com/seveibar/pgtui,num_dependents_deps.dev:0 github.com/seveibar/postgrest-node,num_dependents_deps.dev:0 github.com/seveibar/react-watertable,num_dependents_deps.dev:0 +github.com/seveibar/url-health-check-action, github.com/seveibar/xlsx-loader,num_dependents_deps.dev:0 github.com/sevein/amflow,num_dependents_deps.dev:0 github.com/sevein/cadence-client,num_dependents_deps.dev:0 @@ -1029776,6 +1048227,8 @@ github.com/seven-deuce/persist4browser,num_dependents_deps.dev:0 github.com/seven-hills-technology/fancy-grid,num_dependents_deps.dev:0 github.com/seven-hills-technology/fancy-tree,num_dependents_deps.dev:0 github.com/seven-hills-technology/git-history-viewer,num_dependents_deps.dev:0 +github.com/seven-io/github-action-sms, +github.com/seven-io/github-action-voice, github.com/seven-of-di/gqlgen,num_dependents_deps.dev:0 github.com/seven-phases-max/less-plugin-functions,num_dependents_deps.dev:10 github.com/seven-phases-max/less-plugin-lists,num_dependents_deps.dev:0 @@ -1029811,6 +1048264,7 @@ github.com/sevenc-nanashi/dpy_voice_helper, github.com/sevenc-nanashi/pjsekai_background_gen_pillow, github.com/sevenc-nanashi/scrypter, github.com/sevenc-nanashi/sembed, +github.com/sevenc-nanashi/setup-voicevox, github.com/sevenclev/node-soap-graphql,num_dependents_deps.dev:4 github.com/sevenclev/node-soap-graphql-demo,num_dependents_deps.dev:0 github.com/sevencooks-gmbh-co-kg/babel-preset-sevencooks, @@ -1029850,6 +1048304,7 @@ github.com/sevensc/typescript-string-operations,num_dependents_deps.dev:0 github.com/sevenseas-io/iso8211,num_dependents_deps.dev:0 github.com/sevenseas-io/n2k,num_dependents_deps.dev:0 github.com/sevenseas-io/wmm,num_dependents_deps.dev:0 +github.com/sevenshores/action-elixir-checks, github.com/sevensidedmarble/vue-timestamp,num_dependents_deps.dev:0 github.com/sevensidedsilver/react-split-pane,num_dependents_deps.dev:0 github.com/sevensigma-au/css-helper,num_dependents_deps.dev:0 @@ -1029899,6 +1048354,8 @@ github.com/severecloud/vksdk,num_dependents_deps.dev:12 github.com/severell/severell,num_dependents_deps.dev:0 github.com/severen/disposition,num_dependents_deps.dev:0 github.com/severen/tslint-config,num_dependents_deps.dev:0 +github.com/severgroup-tt/actions-commit-linter-cli, +github.com/severgroup-tt/actions-drawio-cli, github.com/severgroup-tt/eslint-config-react-native-talenttech,num_dependents_deps.dev:0 github.com/severgroup-tt/ilove-tracing,num_dependents_deps.dev:0 github.com/severgroup-tt/topmind-commons, @@ -1030069,6 +1048526,7 @@ github.com/seyself/plgs,num_dependents_deps.dev:0 github.com/seyyedaghaei/go-python,num_dependents_deps.dev:0 github.com/seyyedmojtaba72/AndroidUtils,num_dependents_deps.dev:0 github.com/sez-ai/responsive-sketchpad,num_dependents_deps.dev:0 +github.com/sezabass/firebase-cli-action, github.com/sezalcru/reveal-cli,num_dependents_deps.dev:0 github.com/sezalprkaur/Topsis, github.com/sezaru/futures-error-chain,num_dependents_deps.dev:0 @@ -1030144,6 +1048602,7 @@ github.com/sf9v/multi-select-facet,num_dependents_deps.dev:0 github.com/sf9v/myopa,num_dependents_deps.dev:0 github.com/sf9v/nero,num_dependents_deps.dev:0 github.com/sf9v/packme,num_dependents_deps.dev:0 +github.com/sfApex/orgtools-action-data-copy, github.com/sfabriece/eslint-plugin-react-typescript, github.com/sfabriece/ng2mixpanel,num_dependents_deps.dev:0 github.com/sfabrizio/burgerjs-logo,num_dependents_deps.dev:0 @@ -1030237,6 +1048696,8 @@ github.com/sfchong/gorest,num_dependents_deps.dev:0 github.com/sfchronicle/component-image-slider,num_dependents_deps.dev:0 github.com/sfcodes/grpc-client-spring-boot,num_dependents_deps.dev:0 github.com/sfdcode/lightning-typescript-tools,num_dependents_deps.dev:0 +github.com/sfdx-actions/setup-pmd, +github.com/sfdx-actions/setup-sfdx, github.com/sfdx-isv/falcon-listr-update-renderer,num_dependents_deps.dev:10 github.com/sfdx-isv/sfdx-falcon, github.com/sfdx-isv/sfdx-falcon-appx-demo-kit,num_dependents_deps.dev:0 @@ -1030256,6 +1048717,7 @@ github.com/sfeir-open-source/sfeir-school-theme, github.com/sfeir-open-source/sonar-clover,num_dependents_deps.dev:0 github.com/sfeir-open-source/stargate,num_dependents_deps.dev:0 github.com/sfelix-martins/redmine-client,num_dependents_deps.dev:0 +github.com/sfelli/byd-package-rename, github.com/sfem/css-sugars,num_dependents_deps.dev:0 github.com/sfem/elementaris,num_dependents_deps.dev:0 github.com/sfem/scss-sugars,num_dependents_deps.dev:0 @@ -1030276,6 +1048738,7 @@ github.com/sferlix/frank-AllSkyCamPi, github.com/sfermigier/WhooshAlchemy, github.com/sfermigier/flask-linktester, github.com/sfermigier/tentakel, +github.com/sfesenko/setup-sdkman, github.com/sfeu/statemachine,num_dependents_deps.dev:2 github.com/sfeuerriegel/mllang, github.com/sfexample/hugo-brunch,num_dependents_deps.dev:0 @@ -1030554,11 +1049017,13 @@ github.com/sgalal/qieyun-js,num_dependents_deps.dev:0 github.com/sgalizia/starbase-tools,num_dependents_deps.dev:0 github.com/sgallagh/systemdunitparser, github.com/sgallagher/BatchQueue, +github.com/sgallagher/get-fedora-releases-action, github.com/sgallagher/modulemd-zanata, github.com/sgallen/go-play,num_dependents_deps.dev:0 github.com/sgaloux/react-grid-hook,num_dependents_deps.dev:0 github.com/sgalsaleh/image,num_dependents_deps.dev:0 github.com/sgametrio/multi-laradock,num_dependents_deps.dev:0 +github.com/sgametrio/terraform-summary-action, github.com/sgammon/GUST,num_dependents_deps.dev:0 github.com/sgammon/canteen, github.com/sgammon/codeclimate-protolint, @@ -1030623,6 +1049088,7 @@ github.com/sgdh-fe/vir-ui-slider,num_dependents_deps.dev:0 github.com/sgdh-fe/vir-ui-tab,num_dependents_deps.dev:0 github.com/sgeb/sequelize-binary-uuid,num_dependents_deps.dev:0 github.com/sgeb/serverless-sequelize-migrations,num_dependents_deps.dev:0 +github.com/sgefdf/action-teams-gollum-notification, github.com/sgefdf/gatsby-source-personio,num_dependents_deps.dev:0 github.com/sgeisbacher/go-cache,num_dependents_deps.dev:0 github.com/sgeisbacher/gopass,num_dependents_deps.dev:0 @@ -1030719,6 +1049185,7 @@ github.com/sgissinger/eleventy-plugin-i18n-gettext,num_dependents_deps.dev:0 github.com/sgith666/nicedataloader,num_dependents_deps.dev:0 github.com/sgiven96/scores-cli,num_dependents_deps.dev:0 github.com/sgj0/react-native-leaflet-routing,num_dependents_deps.dev:0 +github.com/sgkandale/ricebox-action, github.com/sgkasselau/pyaixi, github.com/sgkim126/sfuture.ts,num_dependents_deps.dev:0 github.com/sgkonovalov/exercises,num_dependents_deps.dev:0 @@ -1030806,8 +1049273,10 @@ github.com/sgodwincs/webidl-parser,num_dependents_deps.dev:0 github.com/sgodwincs/webidl-rs,num_dependents_deps.dev:17 github.com/sgoedecke/cobi,num_dependents_deps.dev:0 github.com/sgoedecke/liad,num_dependents_deps.dev:0 +github.com/sgoeldh/pact-action, github.com/sgoertzen/sonar-break-maven-plugin,num_dependents_deps.dev:0 github.com/sgoeschl/gatling-blueprint-extensions,num_dependents_deps.dev:0 +github.com/sgoff0/github-actions-jwt-generator, github.com/sgoings/dag,num_dependents_deps.dev:0 github.com/sgoldenlab/simba, github.com/sgolle/coolprop-rs,num_dependents_deps.dev:0 @@ -1030843,6 +1049312,7 @@ github.com/sgpinkus/html-to-rtf,num_dependents_deps.dev:0 github.com/sgpinkus/remark-emoji,num_dependents_deps.dev:0 github.com/sgpthomas/sexpy,num_dependents_deps.dev:0 github.com/sgpthomas/vcdump,num_dependents_deps.dev:0 +github.com/sgpublic/delete-release-action, github.com/sgpublic/scitedutool_api_golang,num_dependents_deps.dev:0 github.com/sgr-io/geometry-common,num_dependents_deps.dev:0 github.com/sgr-io/io.sgr-maven-parent,num_dependents_deps.dev:0 @@ -1031066,6 +1049536,7 @@ github.com/sh-miyoshi/go-rockmanexe,num_dependents_deps.dev:0 github.com/sh-miyoshi/hekate,num_dependents_deps.dev:0 github.com/sh-miyoshi/jwt-server,num_dependents_deps.dev:0 github.com/sh-miyoshi/tag-based-search-engine,num_dependents_deps.dev:0 +github.com/sh-mykola/amazon-ecs-render-task-definition, github.com/sh-s/comfortpy, github.com/sh-soltanpour/react-native-video-controls,num_dependents_deps.dev:0 github.com/sh-tech/sh-tech,num_dependents_deps.dev:0 @@ -1031175,6 +1049646,7 @@ github.com/sha1n/hako,num_dependents_deps.dev:0 github.com/sha1n/k8s-helm-playground,num_dependents_deps.dev:0 github.com/sha1n/termite,num_dependents_deps.dev:0 github.com/sha1sum/golang-sizeof.tips,num_dependents_deps.dev:0 +github.com/sha224/ipfs-publisher, github.com/sha256/Pristine,num_dependents_deps.dev:0 github.com/sha512boo/gytimer,num_dependents_deps.dev:0 github.com/shaaakh/ngx-pubsub,num_dependents_deps.dev:0 @@ -1031255,6 +1049727,7 @@ github.com/shabbyrobe/ts-interval,num_dependents_deps.dev:0 github.com/shabbyrobe/wsgitypes, github.com/shabbyrobe/wu2quant,num_dependents_deps.dev:0 github.com/shabbywu/distribution, +github.com/shabbywu/gh-action-ILSpyCmd, github.com/shabbywu/libtrust, github.com/shabbywu/simple-pty, github.com/shabeer-ali-m/jPut,num_dependents_deps.dev:0 @@ -1031418,6 +1049891,7 @@ github.com/shadow21ar/yag-cc,num_dependents_deps.dev:0 github.com/shadow3x3x3/ruby-skyline-core,num_dependents_deps.dev:0 github.com/shadow4125/py_qmonitor, github.com/shadow431/mediasorter,num_dependents_deps.dev:0 +github.com/shadow578/overleaf-sync, github.com/shadow762/vue-slugify-rus,num_dependents_deps.dev:0 github.com/shadow88sky/shadow-mysql,num_dependents_deps.dev:0 github.com/shadowboxdev/gulp-pkg-json-cleanse,num_dependents_deps.dev:0 @@ -1031452,6 +1049926,9 @@ github.com/shadowmaple/leetcode,num_dependents_deps.dev:0 github.com/shadowminhja/react-native-azure-mobile-apps-client,num_dependents_deps.dev:0 github.com/shadowminhja/rn-uuid,num_dependents_deps.dev:0 github.com/shadowmoose/Fancy-QR,num_dependents_deps.dev:0 +github.com/shadowmoose/GHA-Compare-PyPi, +github.com/shadowmoose/GHA-LoC-Badge, +github.com/shadowmoose/Github-Release-Data-Action, github.com/shadowmoose/Q-Art-Codes, github.com/shadowmoose/db-stager,num_dependents_deps.dev:0 github.com/shadowmoose/rmd-engine,num_dependents_deps.dev:0 @@ -1031465,6 +1049942,8 @@ github.com/shadowplay1/discord-economy-super,num_dependents_deps.dev:0 github.com/shadowplay1/discord-leveling-super,num_dependents_deps.dev:0 github.com/shadowpriest/sonar-build-breaker,num_dependents_deps.dev:0 github.com/shadowprince/seasondog, +github.com/shadowprompt/crawl, +github.com/shadowprompt/daozhaoAction, github.com/shadowprompt/react-hooks-like-vue,num_dependents_deps.dev:0 github.com/shadowprompt/translate_selection,num_dependents_deps.dev:0 github.com/shadowprompt/vuex-tester,num_dependents_deps.dev:0 @@ -1031648,6 +1050127,7 @@ github.com/shahar-klein/gonoodle,num_dependents_deps.dev:0 github.com/shahar-klein/iperf-go,num_dependents_deps.dev:0 github.com/shahar84/flask-api-handler, github.com/shaharfrank/multilevelcli, +github.com/shahargl/upload-github-workflow-logs-to-elastic, github.com/shahariaazam/base64-node,num_dependents_deps.dev:2 github.com/shahariaazam/google-datastore-util,num_dependents_deps.dev:0 github.com/shaharkadmiel/pySW4, @@ -1031665,6 +1050145,8 @@ github.com/shaharmor/tsconfig,num_dependents_deps.dev:0 github.com/shaharmor/webrtc-private-ip,num_dependents_deps.dev:0 github.com/shaharsol/pingpointnpm,num_dependents_deps.dev:0 github.com/shaharyakir/rtlcss-stylus,num_dependents_deps.dev:0 +github.com/shaharyar123/ticket-check-action, +github.com/shaharyar123/ticket-reference-available, github.com/shahata/angular-debounce,num_dependents_deps.dev:0 github.com/shahata/cdnjs-cdn-data,num_dependents_deps.dev:88 github.com/shahata/dasherize,num_dependents_deps.dev:6168 @@ -1031871,6 +1050353,7 @@ github.com/shaizei/typescript-config,num_dependents_deps.dev:0 github.com/shaizei/webpack-config,num_dependents_deps.dev:0 github.com/shaj13/go-guardian,num_dependents_deps.dev:0 github.com/shajalahamedcse/coupon-generator,num_dependents_deps.dev:0 +github.com/shajalahamedcse/serverless-action, github.com/shajanjp/blackfire,num_dependents_deps.dev:0 github.com/shajanjp/blackpipe,num_dependents_deps.dev:0 github.com/shajanjp/desktime-cli,num_dependents_deps.dev:0 @@ -1032061,6 +1050544,7 @@ github.com/shalinigoel/learnNPM,num_dependents_deps.dev:0 github.com/shaliniq16/redis-adapter,num_dependents_deps.dev:0 github.com/shalinlk/elastic,num_dependents_deps.dev:0 github.com/shalinlk/serve,num_dependents_deps.dev:0 +github.com/shalior/wordpress-phpcs-action, github.com/shalithasuranga/runn,num_dependents_deps.dev:0 github.com/shalithasuranga/simpletasks.js,num_dependents_deps.dev:0 github.com/shalithasuranga/sinhalatime,num_dependents_deps.dev:0 @@ -1032124,6 +1050608,7 @@ github.com/shallowinggg/spiral,num_dependents_deps.dev:0 github.com/shallowones/jquery.datepicker-plus-css,num_dependents_deps.dev:0 github.com/shallowones/jquery.datepicker-selectmenu,num_dependents_deps.dev:0 github.com/shallquist/ng6x-flex-pane,num_dependents_deps.dev:0 +github.com/shallwefootball/upload-s3-action, github.com/shalnev/numbers-only-restriction,num_dependents_deps.dev:0 github.com/shalom1995/mynotes,num_dependents_deps.dev:0 github.com/shalomb/inji, @@ -1032144,6 +1050629,7 @@ github.com/shaltaev/its-plugin-fontawesome-free,num_dependents_deps.dev:0 github.com/shaltaev/its-plugin-material-design-icons,num_dependents_deps.dev:0 github.com/shaltaev/jest-atomic,num_dependents_deps.dev:0 github.com/shaltaev/vue-what-screen,num_dependents_deps.dev:0 +github.com/shalter-gen/GHA-GTS-Update-Hugo-Template-stef2, github.com/shalvah/aargh,num_dependents_deps.dev:0 github.com/shalvah/burns,num_dependents_deps.dev:0 github.com/shalvah/shalvah, @@ -1032152,6 +1050638,7 @@ github.com/shalvah/twittersignin,num_dependents_deps.dev:0 github.com/shalvah/ype,num_dependents_deps.dev:0 github.com/shalzz/cloudflare-rs,num_dependents_deps.dev:0 github.com/shalzz/flary,num_dependents_deps.dev:0 +github.com/shalzz/zola-deploy-action, github.com/sham-ui/rollup-plugin-node-resolve-with-sham-ui-macro,num_dependents_deps.dev:0 github.com/sham-ui/rollup-plugin-sham-ui-templates,num_dependents_deps.dev:0 github.com/sham-ui/sham-ui,num_dependents_deps.dev:43 @@ -1032395,6 +1050882,7 @@ github.com/shamithc/Apple_store_search,num_dependents_deps.dev:0 github.com/shamo42/cryptoexchange,num_dependents_deps.dev:0 github.com/shamofu/cit,num_dependents_deps.dev:0 github.com/shamofu/npm-check-licenses, +github.com/shamoon/cloudways-operations, github.com/shamoons/angular-express,num_dependents_deps.dev:0 github.com/shamoons/code-tokenizer,num_dependents_deps.dev:0 github.com/shamoons/environmental-configuration,num_dependents_deps.dev:0 @@ -1032407,6 +1050895,8 @@ github.com/shamoons/npm-package-template,num_dependents_deps.dev:0 github.com/shamoons/programming-language-classifier,num_dependents_deps.dev:0 github.com/shamork/arc-progress,num_dependents_deps.dev:0 github.com/shampoofactory/lzfse_rust,num_dependents_deps.dev:0 +github.com/shamrat17/jira-issue-type-updater, +github.com/shamrat17/jira-jql-query, github.com/shamrickus/typescriptify-golang-structs,num_dependents_deps.dev:0 github.com/shamrin/codeblocks, github.com/shamrin/namesgenerator,num_dependents_deps.dev:0 @@ -1032559,6 +1051049,8 @@ github.com/shaneallcroft/nwborglab, github.com/shaneallcroft/orgutils, github.com/shaneallgeier/django-app-tester, github.com/shaneallgeier/django-extra-sensitive-variables, +github.com/shaneapowell/github-tweak-the-json, +github.com/shanearcaro/automatic-labeler, github.com/shanebarnes/stocker,num_dependents_deps.dev:0 github.com/shanebarringer/generator-opinionated-express-mvc,num_dependents_deps.dev:0 github.com/shanebdavis/neptune-namespaces,num_dependents_deps.dev:0 @@ -1032609,6 +1051101,7 @@ github.com/shaneeb/churn,num_dependents_deps.dev:0 github.com/shanefontaine/4byte, github.com/shanefontaine/ethfinex, github.com/shanefontaine/uniswap-python, +github.com/shanegenschaw/pull-request-comment-trigger, github.com/shanehan/common-compose,num_dependents_deps.dev:0 github.com/shanehan/common-xss,num_dependents_deps.dev:0 github.com/shanehan/opt-log,num_dependents_deps.dev:0 @@ -1032641,10 +1051134,12 @@ github.com/shanelau/koa-url-cache,num_dependents_deps.dev:0 github.com/shanelau/node-md5,num_dependents_deps.dev:2 github.com/shanelau/sendcloud,num_dependents_deps.dev:0 github.com/shanelau/zhihu,num_dependents_deps.dev:0 +github.com/shanemadden/factorio-mod-portal-publish, github.com/shanemadden/node-red-contrib-secret,num_dependents_deps.dev:0 github.com/shanemaglangit/agp,num_dependents_deps.dev:0 github.com/shanemalachow/semver,num_dependents_deps.dev:0 github.com/shanemarvinmay/create-heroku-app,num_dependents_deps.dev:0 +github.com/shanemcd/simple-changelog-generator, github.com/shanemcw/homebridge-amazondash-MAC,num_dependents_deps.dev:0 github.com/shaneoliver/tailwind-flex-columns,num_dependents_deps.dev:0 github.com/shaneom/sln-opener,num_dependents_deps.dev:0 @@ -1032783,6 +1051278,7 @@ github.com/shanghai-lunara/pkg,num_dependents_deps.dev:0 github.com/shanghai-lunara/publisher,num_dependents_deps.dev:0 github.com/shanghai-lunara/squirrel,num_dependents_deps.dev:0 github.com/shanghaikid/infinivis-core,num_dependents_deps.dev:0 +github.com/shanghaobo/github-branch-gitee, github.com/shanghengv5/common,num_dependents_deps.dev:0 github.com/shanghongyuans/vue-form-making,num_dependents_deps.dev:0 github.com/shanghua521/hexo-filter-sequence,num_dependents_deps.dev:0 @@ -1033022,6 +1051518,7 @@ github.com/shantilabs/django-smarturlfield, github.com/shantlr/compose-reducer, github.com/shantnu/BeautifulRequests, github.com/shanto-miah/passport-google-token2,num_dependents_deps.dev:0 +github.com/shanu-ck/Jira-AIO-Action, github.com/shanuka/fluentui,num_dependents_deps.dev:0 github.com/shanuraj715/react-live-date-time,num_dependents_deps.dev:0 github.com/shanurrahman/gotuts,num_dependents_deps.dev:0 @@ -1033112,6 +1051609,7 @@ github.com/shaoshuai0102/wanna,num_dependents_deps.dev:0 github.com/shaowenacerlu/bcir_dps,num_dependents_deps.dev:0 github.com/shaowenacerlu/bcir_main,num_dependents_deps.dev:0 github.com/shaowenacerlu/bcir_planbuilder,num_dependents_deps.dev:1 +github.com/shaowenchen/debugger-action, github.com/shaoxiong789/vue-xdraggable,num_dependents_deps.dev:0 github.com/shaoxiong789/vue2.0-image-lazy,num_dependents_deps.dev:0 github.com/shaoxiong789/vvlv,num_dependents_deps.dev:0 @@ -1033234,6 +1051732,12 @@ github.com/sharadbhat/Zomatopy, github.com/sharadbhat/nodorithm,num_dependents_deps.dev:0 github.com/sharadbrat/randomizer,num_dependents_deps.dev:0 github.com/sharadbrat/variator,num_dependents_deps.dev:0 +github.com/sharadcodes/code-snap-action, +github.com/sharadcodes/font-typekit-generator-action, +github.com/sharadcodes/img-resizer, +github.com/sharadcodes/img2pdf-action, +github.com/sharadcodes/live-preview-action, +github.com/sharadcodes/pwa-to-apk-action, github.com/sharadcodes/sharnote, github.com/sharadcodes/vidlist, github.com/sharadraj/learnNode,num_dependents_deps.dev:0 @@ -1033270,6 +1051774,7 @@ github.com/sharath957/Perceptron_pypi, github.com/sharathchandramg/gcp-service-account-utils,num_dependents_deps.dev:0 github.com/sharathchandramg/react-formo,num_dependents_deps.dev:0 github.com/sharathchandramg/react-native-formo,num_dependents_deps.dev:0 +github.com/sharathck087/sqlserver-github-action, github.com/sharathprabhal/bootstrap3-wysiwyg,num_dependents_deps.dev:0 github.com/sharathprabhal/redis-quick-callback,num_dependents_deps.dev:0 github.com/sharathprabhal/request-with-cookies,num_dependents_deps.dev:0 @@ -1033368,6 +1051873,7 @@ github.com/shareinto/hello,num_dependents_deps.dev:0 github.com/shareiq/config-lazy, github.com/sharejing/Takin, github.com/sharek-org/Silhouette, +github.com/sharekey/helm-oci-chart-releaser, github.com/sharekey/meteor-desktop,num_dependents_deps.dev:0 github.com/sharekim/grunt-html-inliner, github.com/sharekim/kakao-map-types,num_dependents_deps.dev:0 @@ -1033382,6 +1051888,9 @@ github.com/sharering/modules,num_dependents_deps.dev:0 github.com/sharering/shareledger,num_dependents_deps.dev:0 github.com/shareroot/raddog,num_dependents_deps.dev:0 github.com/sharesight/assert_generator,num_dependents_deps.dev:0 +github.com/sharesight/compare-package-json-version-with-latest, +github.com/sharesight/enforce-package-dependency-version, +github.com/sharesight/find-github-pull-request, github.com/sharess/Leaflet-cl,num_dependents_deps.dev:0 github.com/sharess/ember-cli-leafletaddons,num_dependents_deps.dev:0 github.com/sharess/ember-leaflet-cl, @@ -1033403,6 +1051912,7 @@ github.com/shareworksgroup/DesignEditor,num_dependents_deps.dev:0 github.com/sharh/fis-lint-myeslint,num_dependents_deps.dev:0 github.com/sharh/uploadcdn,num_dependents_deps.dev:0 github.com/sharhan-alhassan/backupdb, +github.com/sharhan-alhassan/mongodb-tally, github.com/sharhan-alhassan/ppscanner, github.com/shari09/gr10-game-Run-Orange-Run, github.com/shari87/eks-k8s-project,num_dependents_deps.dev:0 @@ -1033535,6 +1052045,7 @@ github.com/sharmaar12/Anujtestnpm,num_dependents_deps.dev:0 github.com/sharmad-nachnolkar/react-component-lib,num_dependents_deps.dev:0 github.com/sharmameghansh/go-demo-1,num_dependents_deps.dev:0 github.com/sharmamonika1/diningphilosopher,num_dependents_deps.dev:0 +github.com/sharmapankaj7/AppCenter-actions-with-output, github.com/sharmapr25/react-native-inviewport,num_dependents_deps.dev:0 github.com/sharmapulkit04/go-dev,num_dependents_deps.dev:0 github.com/sharmarahul25/angular-js-xlsx,num_dependents_deps.dev:0 @@ -1033702,6 +1052213,7 @@ github.com/shashank-razor/gotestmod,num_dependents_deps.dev:0 github.com/shashank-sachan/stopwords,num_dependents_deps.dev:0 github.com/shashank-sj/cicd,num_dependents_deps.dev:0 github.com/shashank-yadav/fastpipeline, +github.com/shashank0202/docker-build-push-gcr-update-gke-deployment-action, github.com/shashank025/km2pg, github.com/shashank1501/tiny,num_dependents_deps.dev:0 github.com/shashank23p/node-easy-crud,num_dependents_deps.dev:0 @@ -1033736,11 +1052248,13 @@ github.com/shasharoman/ptree,num_dependents_deps.dev:0 github.com/shashi278/KivyShaderTransitions, github.com/shashi278/TapTargetView, github.com/shashi278/android-iab-v3-kivy, +github.com/shashi278/deploy-python-pkg, github.com/shashi278/social-auth-kivy, github.com/shashi278/svg-anim-kivy, github.com/shashiarra/tiny,num_dependents_deps.dev:0 github.com/shashidharus/json-screenshot-reporter,num_dependents_deps.dev:0 github.com/shashidharus/wdio-zafira-listener-service,num_dependents_deps.dev:0 +github.com/shashigharti/vizai-app, github.com/shashik5/utilities,num_dependents_deps.dev:0 github.com/shashik5/zippy,num_dependents_deps.dev:0 github.com/shashikantj/node_redis,num_dependents_deps.dev:0 @@ -1033751,6 +1052265,7 @@ github.com/shashilaheshan/countries-codes-names,num_dependents_deps.dev:0 github.com/shashilaheshan/everything-validator,num_dependents_deps.dev:0 github.com/shashimalcse/pytorchisland, github.com/shashinbhayani/rn-textfield,num_dependents_deps.dev:0 +github.com/shashinma/git-repo-mirror, github.com/shashipriyamishra/multilator-node,num_dependents_deps.dev:0 github.com/shashith/react-ebook-reader,num_dependents_deps.dev:0 github.com/shashitnak/ga-js,num_dependents_deps.dev:0 @@ -1034091,6 +1052606,7 @@ github.com/shawnbot/localtunnel-runner,num_dependents_deps.dev:0 github.com/shawnbot/nestly,num_dependents_deps.dev:0 github.com/shawnbot/node-cops,num_dependents_deps.dev:0 github.com/shawnbot/now-token,num_dependents_deps.dev:8 +github.com/shawnbot/npm-publish-action, github.com/shawnbot/object-stream-infer-types,num_dependents_deps.dev:0 github.com/shawnbot/object-surrogate,num_dependents_deps.dev:0 github.com/shawnbot/privates,num_dependents_deps.dev:0 @@ -1034332,6 +1052848,9 @@ github.com/shayanypn/ember-cli-highlighjs,num_dependents_deps.dev:0 github.com/shayanypn/ember-cli-masonry-grid,num_dependents_deps.dev:0 github.com/shayanypn/ember-cli-selectpicker,num_dependents_deps.dev:0 github.com/shayanypn/joo-browser-detect,num_dependents_deps.dev:0 +github.com/shaybentk/helm-docs-action, +github.com/shaybentk/mssqlsuite, +github.com/shaybentk/uuid-action, github.com/shaybix/docker-machine-driver-scaleway,num_dependents_deps.dev:0 github.com/shaybix/go-prompt,num_dependents_deps.dev:0 github.com/shaybox/multimc-curseforge,num_dependents_deps.dev:0 @@ -1034468,6 +1052987,7 @@ github.com/shbroster/nissaba, github.com/shcant/vuepress-theme-casper,num_dependents_deps.dev:0 github.com/shcca/test-cli,num_dependents_deps.dev:0 github.com/shcerbin/docco-plus-multiline,num_dependents_deps.dev:0 +github.com/shchahrykovich/workflow-webhook, github.com/shcherbak-ssa/node-import-module,num_dependents_deps.dev:0 github.com/shchwei/golang,num_dependents_deps.dev:0 github.com/shchypylov/type_detect, @@ -1034686,6 +1053206,7 @@ github.com/shehatamichael/coptic-transliteration, github.com/shehbab/script,num_dependents_deps.dev:0 github.com/shehriyarnadeem/common-errors-middlewares,num_dependents_deps.dev:0 github.com/shehriyarnadeem/shadowMaker,num_dependents_deps.dev:0 +github.com/shehroze-1122/deploy-to-vercel-action, github.com/shehrozkapoor/alldata, github.com/shehuaqigai/grunt-htmlTjs,num_dependents_deps.dev:0 github.com/shehy/element-custom, @@ -1034836,6 +1053357,7 @@ github.com/shellac/JenaJung,num_dependents_deps.dev:0 github.com/shellac/java-rdfa,num_dependents_deps.dev:143 github.com/shellbear/dokku-go-example,num_dependents_deps.dev:0 github.com/shellbear/go-graphql-example,num_dependents_deps.dev:0 +github.com/shellbear/helm-release-action, github.com/shellbear/leboncoin,num_dependents_deps.dev:0 github.com/shellbotx/peachy, github.com/shelld3v/aquatone,num_dependents_deps.dev:0 @@ -1034853,6 +1053375,7 @@ github.com/shellhue/hhfetcher, github.com/shellinabox/shellinabox,criticality_score:0.365530 github.com/shelling203/SpecAugment, github.com/shellingford330/lambda-go,num_dependents_deps.dev:0 +github.com/shellingford330/pr-comment-action, github.com/shellingford330/sample,num_dependents_deps.dev:0 github.com/shelljs/changelog,num_dependents_deps.dev:0 github.com/shelljs/plugin-open,num_dependents_deps.dev:0 @@ -1034860,6 +1053383,7 @@ github.com/shelljs/release,num_dependents_deps.dev:0 github.com/shelljs/shelljs,"criticality_score:0.501130,num_dependents_deps.dev:53685" github.com/shelljs/shx,"criticality_score:0.390370,num_dependents_deps.dev:600" github.com/shelljs/slush-shelljs-plugin,num_dependents_deps.dev:0 +github.com/shellkjell/PHP-Lint, github.com/shelloid/shelloid,num_dependents_deps.dev:0 github.com/shelloid/shelloid-consolidate,num_dependents_deps.dev:0 github.com/shelloid/shelloid-sessionstore,num_dependents_deps.dev:0 @@ -1035300,6 +1053824,7 @@ github.com/sherif-elmetainy/angular-datepicker,num_dependents_deps.dev:0 github.com/sherif-elmetainy/angular-globalize,num_dependents_deps.dev:0 github.com/sherif-elmetainy/ng-form-helpers,num_dependents_deps.dev:0 github.com/sherif-elmetainy/rx-helpers,num_dependents_deps.dev:0 +github.com/sherifalaa55/gh-action-bump-version, github.com/sherifalaa55/thug,num_dependents_deps.dev:0 github.com/sheriferson/simplestatistics, github.com/sheriff/ziprip, @@ -1035443,6 +1053968,7 @@ github.com/sheto/uwjs,num_dependents_deps.dev:0 github.com/shettynishant92/my-npm-package,num_dependents_deps.dev:0 github.com/shettypuneeth/react-codepen-embed,num_dependents_deps.dev:0 github.com/shettypuneeth/react-native-easy-snackbar,num_dependents_deps.dev:0 +github.com/shettytejas/simplecov-coverage-reporter, github.com/sheunaluko/node_utils,num_dependents_deps.dev:0 github.com/sheunaluko/tidyscripts,num_dependents_deps.dev:0 github.com/sheunglaili/react-animated-more,num_dependents_deps.dev:0 @@ -1035535,10 +1054061,15 @@ github.com/shfshanyue/markdown-themes,num_dependents_deps.dev:0 github.com/shfshf/data_tool, github.com/shfshf/ner_s2s, github.com/shfshf/rasa_exp, +github.com/shftco/action-heroku-deploy, +github.com/shftco/shft-pullmate, +github.com/shftco/task-completed-checker-action, github.com/shfup/params_time,num_dependents_deps.dev:0 github.com/shfx/node-lexer,num_dependents_deps.dev:0 github.com/shfz/fzcli,num_dependents_deps.dev:0 github.com/shfz/fzlib-node,num_dependents_deps.dev:0 +github.com/shfz/shfz-actions-report, +github.com/shfz/shfz-actions-setup, github.com/shfz/shfz-flask, github.com/shgopher/trylock,num_dependents_deps.dev:0 github.com/shgstar/algorthmgame,num_dependents_deps.dev:0 @@ -1035571,6 +1054102,7 @@ github.com/shhdharmen/scss-7-in-1,num_dependents_deps.dev:0 github.com/shhdharmen/v1123, github.com/shhh-7612/ards-client,num_dependents_deps.dev:0 github.com/shhh7612/ards-client,num_dependents_deps.dev:0 +github.com/shhhhh-corp/Ithaca, github.com/shhhplus/antd-console-components,num_dependents_deps.dev:0 github.com/shhhplus/mysql-promise,num_dependents_deps.dev:0 github.com/shhhplus/react-router-relative-link,num_dependents_deps.dev:0 @@ -1035625,6 +1054157,7 @@ github.com/shibaaa647/zipcode-area-jp,num_dependents_deps.dev:0 github.com/shibanis/NodePackaging,num_dependents_deps.dev:0 github.com/shibaobao/free-draw,num_dependents_deps.dev:0 github.com/shibaoxu/shibaoxu-toy,num_dependents_deps.dev:0 +github.com/shibataka000/build-and-scan-image-action, github.com/shibataka000/go-get-release,num_dependents_deps.dev:0 github.com/shibataka000/hpa-simulator,num_dependents_deps.dev:0 github.com/shibatanaoto/caffe2-for-lambda, @@ -1035711,6 +1054244,7 @@ github.com/shibor/java-snippet,num_dependents_deps.dev:0 github.com/shibowe/algorithms,num_dependents_deps.dev:0 github.com/shibuiwilliam/ddiff, github.com/shibuiwilliam/py-kaomoji, +github.com/shibuiwilliam/shibui-sample-action, github.com/shibukawa/add-func-name,num_dependents_deps.dev:0 github.com/shibukawa/binary-io.jsx,num_dependents_deps.dev:0 github.com/shibukawa/binary-support.jsx,num_dependents_deps.dev:0 @@ -1035784,6 +1054318,7 @@ github.com/shichaoji/recur7down, github.com/shichaoji/rekog2json2mongo, github.com/shichaoji/statcamp, github.com/shichaosc/reptile_book,num_dependents_deps.dev:0 +github.com/shichen85/submit-for-testflight-review, github.com/shichenxie/scorecardpy, github.com/shichongrui/dynaql,num_dependents_deps.dev:0 github.com/shichongrui/genmo,num_dependents_deps.dev:0 @@ -1035820,11 +1054355,13 @@ github.com/shidenko97/pypisearch, github.com/shidhincr/stencil-slimslider, github.com/shidianxia/vue-feather-icons,num_dependents_deps.dev:0 github.com/shidianxia/vue-localforage,num_dependents_deps.dev:0 +github.com/shidil/cloudflare-workers-preview, github.com/shidilii/demo,num_dependents_deps.dev:0 github.com/shidongdong1010/bitcore-node,num_dependents_deps.dev:0 github.com/shiduanguang/ossutil,num_dependents_deps.dev:0 github.com/shiehub/shiehub-java-sdk-opengw,num_dependents_deps.dev:0 github.com/shield-9/achilles-operator,num_dependents_deps.dev:0 +github.com/shield-wall/comments, github.com/shieldcoin/node-xsh,num_dependents_deps.dev:0 github.com/shielddx/oatmeal-protocol, github.com/shieldeddotdev/shieldeddotdev,num_dependents_deps.dev:0 @@ -1035864,6 +1054401,8 @@ github.com/shift/box,num_dependents_deps.dev:0 github.com/shift/hubot-slack-webhook, github.com/shift72/core-template,num_dependents_deps.dev:0 github.com/shift72/kibble,num_dependents_deps.dev:0 +github.com/shiftEscape/auto-label-pulls, +github.com/shiftEscape/commit-hash-verifier-action, github.com/shiftan/simple_sagemaker, github.com/shiftbreak/WinTunnel, github.com/shiftbreak/grrargparse, @@ -1035979,6 +1054518,8 @@ github.com/shihabus/react-infinite-scroll,num_dependents_deps.dev:0 github.com/shihamsam/starwars-names,num_dependents_deps.dev:0 github.com/shihangbo/cssKit,num_dependents_deps.dev:0 github.com/shihanng/country-codes,num_dependents_deps.dev:0 +github.com/shihanng/csvs-to-sqlite-act, +github.com/shihanng/devto-act, github.com/shihanng/kod,num_dependents_deps.dev:0 github.com/shihanng/webdl,num_dependents_deps.dev:0 github.com/shihao905/jx-element,num_dependents_deps.dev:0 @@ -1036006,6 +1054547,8 @@ github.com/shihtzu-systems/shihtzu-io,num_dependents_deps.dev:0 github.com/shihuali5257/first-npm,num_dependents_deps.dev:0 github.com/shihuo-cn/xorm-adapter,num_dependents_deps.dev:0 github.com/shihweilo/tappay-python, +github.com/shihyuho/go-jenkins-trigger, +github.com/shihyuho/go-spring-version, github.com/shihyuho/jackson-dynamic-filter,num_dependents_deps.dev:0 github.com/shihyuho/jackson-dynamic-filter-spring-boot-starter,num_dependents_deps.dev:0 github.com/shihyuho/jsr303-validator,num_dependents_deps.dev:0 @@ -1036014,6 +1054557,9 @@ github.com/shiido/transformer-response-data,num_dependents_deps.dev:0 github.com/shiimaxx/heartilly,num_dependents_deps.dev:0 github.com/shiimizu/py-chan-api, github.com/shiinadev/ig-sniper,num_dependents_deps.dev:0 +github.com/shiipou/pr-is-wip-action, +github.com/shiipou/sem-version, +github.com/shiipou/setup-yq-action, github.com/shijcheng/hello_go,num_dependents_deps.dev:0 github.com/shijianliangs/pcommon, github.com/shijiawei110/api4j,num_dependents_deps.dev:0 @@ -1036060,6 +1054606,7 @@ github.com/shikaan/damien,num_dependents_deps.dev:0 github.com/shikaan/directree,num_dependents_deps.dev:0 github.com/shikaan/gulp-annotate,num_dependents_deps.dev:0 github.com/shikaan/titef,num_dependents_deps.dev:0 +github.com/shikajiro/actions-mention-to-chatwork, github.com/shikaku/gulp-css-resolve-relative-urls,num_dependents_deps.dev:0 github.com/shikaku/koa2-ensure-login,num_dependents_deps.dev:0 github.com/shikaku/react-sticky,num_dependents_deps.dev:0 @@ -1036081,6 +1054628,8 @@ github.com/shikhalev/rdot,num_dependents_deps.dev:0 github.com/shikhalev/set_version,num_dependents_deps.dev:0 github.com/shikhalev/share-paths,num_dependents_deps.dev:0 github.com/shikhalev/wflt,num_dependents_deps.dev:0 +github.com/shikhamis11/m2-cpd-action, +github.com/shikhamis11/magento2-github-action, github.com/shikhar/sshj,num_dependents_deps.dev:1394 github.com/shikharbhardwaj/codecrafters-git-go,num_dependents_deps.dev:0 github.com/shikharseth/grunt-cache-bust,num_dependents_deps.dev:0 @@ -1036258,6 +1054807,7 @@ github.com/shimataro/node-find,num_dependents_deps.dev:0 github.com/shimataro/node-m17n,num_dependents_deps.dev:0 github.com/shimataro/node-simplefind,num_dependents_deps.dev:0 github.com/shimataro/resource-manager, +github.com/shimataro/ssh-key-action, github.com/shimataro/stdio-redirector,num_dependents_deps.dev:0 github.com/shimataro/value-schema,num_dependents_deps.dev:0 github.com/shimbaco/htmlrb,num_dependents_deps.dev:0 @@ -1036280,6 +1054830,8 @@ github.com/shime/repeat-time,num_dependents_deps.dev:0 github.com/shime/tomato-timer,num_dependents_deps.dev:0 github.com/shimech/instance-builder, github.com/shimengren/wx-loading,num_dependents_deps.dev:0 +github.com/shimewtr/issue_replicator, +github.com/shimewtr/submit_pull_request, github.com/shimi9999/bmschecker,num_dependents_deps.dev:0 github.com/shimi9999/checkbms,num_dependents_deps.dev:0 github.com/shimima13/myUtils,num_dependents_deps.dev:0 @@ -1036384,6 +1054936,7 @@ github.com/shimst3r/pymanifesto, github.com/shimst3r/toolbag, github.com/shimt/go-timet,num_dependents_deps.dev:0 github.com/shimt/pam-exec-oauth2,num_dependents_deps.dev:0 +github.com/shimul-org/create-issue-action, github.com/shimulch/dj-generator, github.com/shimulch/mithril-sortable,num_dependents_deps.dev:0 github.com/shimulch/mitrhil-sortable,num_dependents_deps.dev:0 @@ -1036432,6 +1054985,8 @@ github.com/shine-design/shine-design,num_dependents_deps.dev:0 github.com/shine-design/shine-tool,num_dependents_deps.dev:0 github.com/shine-design/shiner,num_dependents_deps.dev:0 github.com/shine1594/FxJS,num_dependents_deps.dev:0 +github.com/shine1594/kakaowork-chat-action, +github.com/shine1594/secrets-to-env-action, github.com/shinecita/ngx-carouselin,num_dependents_deps.dev:0 github.com/shinedeveloper/Sevecek.net-Utils,num_dependents_deps.dev:0 github.com/shinefy/react-native-photo-view,num_dependents_deps.dev:0 @@ -1036494,9 +1055049,13 @@ github.com/shinhacker/slow-motion-mein, github.com/shinhermit/graphene-chain-mutation, github.com/shinhoang88/gym-robotorydownscale, github.com/shinhotech/element,num_dependents_deps.dev:0 +github.com/shinhwagk/actions-crypto, +github.com/shinhwagk/monitoring_document, github.com/shinhwagk/oracle_exporter,num_dependents_deps.dev:0 github.com/shinhwagk/prometheus-webhook,num_dependents_deps.dev:0 +github.com/shinhwagk/remote-bash, github.com/shinhwagk/watch,num_dependents_deps.dev:0 +github.com/shini4i/helm-charts-updater, github.com/shiniao/nest, github.com/shinichi-takii/ddlparse, github.com/shinichi-tym/tym-ng-ws,num_dependents_deps.dev:0 @@ -1036530,12 +1055089,14 @@ github.com/shinjiezumi/vue-go-samples,num_dependents_deps.dev:0 github.com/shinjiniray/chatbotpackage, github.com/shinjiniray/loganalysispackage, github.com/shinjiniray/testpackage, +github.com/shink/bark-action, github.com/shinkabb/cli,num_dependents_deps.dev:0 github.com/shinkashi/insight-sdk-js,num_dependents_deps.dev:0 github.com/shinkawax/sitemap-xml-parser,num_dependents_deps.dev:0 github.com/shinken008/apache-license-preamble,num_dependents_deps.dev:0 github.com/shinken008/babel-plugin-rn-platform-specific-extensions,num_dependents_deps.dev:0 github.com/shinken008/converter,num_dependents_deps.dev:0 +github.com/shinken008/taro-native-publish, github.com/shinkeonkim/django-coffee-model, github.com/shinku/anchundan,num_dependents_deps.dev:0 github.com/shinku/jsontointerface,num_dependents_deps.dev:0 @@ -1036556,6 +1055117,7 @@ github.com/shinneider/djangorest-openapi-utils, github.com/shinneider/drf-pdf-renderer, github.com/shinneider/pyjwt-utils, github.com/shinneider/rabbitmq-wrapper, +github.com/shinnn/actions-npm-alpine, github.com/shinnn/alex-vscode,num_dependents_deps.dev:0 github.com/shinnn/all-eslint-rule-set,num_dependents_deps.dev:0 github.com/shinnn/all-eslint-rules,num_dependents_deps.dev:0 @@ -1037011,6 +1055573,7 @@ github.com/shintech/shintech-utils,num_dependents_deps.dev:0 github.com/shintu-21/vdart-golang,num_dependents_deps.dev:0 github.com/shinumathew/go-insight-apis,num_dependents_deps.dev:0 github.com/shinumathew/insightservices---golang,num_dependents_deps.dev:0 +github.com/shinusunny/custom-action, github.com/shinux/PyTime, github.com/shinux/Turdus,num_dependents_deps.dev:0 github.com/shinux/node-apollo-client,num_dependents_deps.dev:0 @@ -1037105,6 +1055668,7 @@ github.com/shioyama/invisible,num_dependents_deps.dev:0 github.com/shioyama/method_found,num_dependents_deps.dev:0 github.com/shioyama/mobility,"criticality_score:0.547110,num_dependents_deps.dev:10" github.com/shioyama/respond_to_faster,num_dependents_deps.dev:0 +github.com/shioyang/check-pr-labels-on-push-action, github.com/ship-components/ceres-framework,num_dependents_deps.dev:0 github.com/ship-components/generator-ship-components-boilerplate,num_dependents_deps.dev:0 github.com/ship-components/react-highlight-click,num_dependents_deps.dev:0 @@ -1037142,6 +1055706,7 @@ github.com/ship7software/ship7-api-lib, github.com/shipa-corp/ci-integration, github.com/shipa-corp/go-sample,num_dependents_deps.dev:0 github.com/shipa-corp/ketch,num_dependents_deps.dev:0 +github.com/shipa-corp/shipa-gh-action, github.com/shipa-corp/terraform-provider-shipa,num_dependents_deps.dev:0 github.com/shipa988/fanouter,num_dependents_deps.dev:0 github.com/shipchain/hydra, @@ -1037245,9 +1055810,11 @@ github.com/shipyard-run/pty,num_dependents_deps.dev:0 github.com/shipyard-run/shipyard,num_dependents_deps.dev:0 github.com/shipyard-run/terminal-component,num_dependents_deps.dev:0 github.com/shipyard/shipyard,criticality_score:0.361280 +github.com/shipyard/shipyard-action, github.com/shipzone/shipzone,num_dependents_deps.dev:0 github.com/shiqian123/mc,num_dependents_deps.dev:0 github.com/shiqian123/react-native-cart,num_dependents_deps.dev:0 +github.com/shiqianwei0508/git-repo-sync-gitlab, github.com/shiqifeng2000/node-weixin-enterprise,num_dependents_deps.dev:0 github.com/shiqinfeng1/fabric-sdk-go-gm,num_dependents_deps.dev:0 github.com/shiqiyue/baileys,num_dependents_deps.dev:0 @@ -1037280,6 +1055847,8 @@ github.com/shirakaba/tns-template-blank-react,num_dependents_deps.dev:0 github.com/shirakiya/akapun,num_dependents_deps.dev:0 github.com/shirakiya/alug,num_dependents_deps.dev:0 github.com/shirakiya/pypirc3, +github.com/shirakiya/readme-tree-writer, +github.com/shirakiya/setup-tfcmt, github.com/shirakiyo/convenigacha,num_dependents_deps.dev:0 github.com/shirakumo/py-lichat, github.com/shirataki2/discord-ext-audiorec, @@ -1037298,6 +1055867,7 @@ github.com/shirbr510/valif,num_dependents_deps.dev:0 github.com/shirchen/dig,num_dependents_deps.dev:0 github.com/shirchen/fx,num_dependents_deps.dev:0 github.com/shirdonl/gowebactualcombat,num_dependents_deps.dev:0 +github.com/shirebio/action-copy-files-to-another-repo, github.com/shirecoding/ModelMaker, github.com/shirecoding/RxPipes, github.com/shirecoding/VeryPowerfulAgents, @@ -1037327,6 +1055897,8 @@ github.com/shiro16/growth-push,num_dependents_deps.dev:0 github.com/shiro16/nagareboshi,num_dependents_deps.dev:0 github.com/shiro16/rmagick-image_colors,num_dependents_deps.dev:0 github.com/shiro16/ruby-stylestats,num_dependents_deps.dev:0 +github.com/shirobrak/action-phpcs, +github.com/shirobrak/action-trello-connector, github.com/shiroh0527/gitbook-plugin-modal-image,num_dependents_deps.dev:0 github.com/shirohana/babel-plugin-transform-d3-imports,num_dependents_deps.dev:0 github.com/shirohana/bulma.stylus,num_dependents_deps.dev:0 @@ -1037341,6 +1055913,7 @@ github.com/shiroinory/youtube-downloader,num_dependents_deps.dev:0 github.com/shirok/Gauche,criticality_score:0.571090 github.com/shirokovnv/laravel-query-api-frontend,num_dependents_deps.dev:0 github.com/shirolimit/wallet-service,num_dependents_deps.dev:0 +github.com/shiromegane/php-analyse-dog, github.com/shiromoji/shiromoji,num_dependents_deps.dev:0 github.com/shiromoji/shiromoji-ipadic,num_dependents_deps.dev:0 github.com/shirookie/vue-aplyr,num_dependents_deps.dev:0 @@ -1037572,6 +1056145,7 @@ github.com/shivanshkc/ledgerkeep-client,num_dependents_deps.dev:0 github.com/shivanshs9/drf-problems, github.com/shivanshs9/pdfgen-python, github.com/shivanshs9/puppeteer-pdf,num_dependents_deps.dev:0 +github.com/shivanshs9/setup-k8s-operator-sdk, github.com/shivanshu3/strip-js,num_dependents_deps.dev:2 github.com/shivanshu3/synch-steps,num_dependents_deps.dev:0 github.com/shivanykshenoy/generator-panera-angularjs,num_dependents_deps.dev:0 @@ -1037601,6 +1056175,7 @@ github.com/shivekkhurana/loose, github.com/shivekkhurana/react-native-emojicon,num_dependents_deps.dev:0 github.com/shivekundefined/float-label,num_dependents_deps.dev:0 github.com/shiven-nayee/create-react-app,num_dependents_deps.dev:0 +github.com/shivendrasoni/git-sensei-action, github.com/shivensaiwal/PersonaExtraction,num_dependents_deps.dev:0 github.com/shivensinha4/qr-fileshare,num_dependents_deps.dev:0 github.com/shiveshnavin/gcloud_downloader, @@ -1037614,6 +1056189,7 @@ github.com/shivjeetbhullar/gurmukhi, github.com/shivjeetbhullar/pi7db, github.com/shivjeetbhullar/scrypt, github.com/shivjeetbhullar/webplucker, +github.com/shivjm/helm-kubeconform-action, github.com/shivkanthb/Validifyjs,num_dependents_deps.dev:0 github.com/shivkanthb/botlytics,num_dependents_deps.dev:0 github.com/shivkumar13/gorest,num_dependents_deps.dev:0 @@ -1037805,6 +1056381,8 @@ github.com/shkm/freckle-api,num_dependents_deps.dev:0 github.com/shknj/golearng,num_dependents_deps.dev:0 github.com/shkov/wallet-service,num_dependents_deps.dev:0 github.com/shkr/routesimilarity, +github.com/shkreios/runtime-env-action, +github.com/shkreios/secret-environment-emulator, github.com/shkreza/gym-tictactoe, github.com/shkrutdenis/go-migrations,num_dependents_deps.dev:0 github.com/shkumagai/sphinxcontrib.nvd3, @@ -1037832,6 +1056410,7 @@ github.com/shlensky/sweetcherry,num_dependents_deps.dev:0 github.com/shlevy/linkpaper,num_dependents_deps.dev:0 github.com/shleyze/figmate,num_dependents_deps.dev:0 github.com/shlima/health_bit,num_dependents_deps.dev:0 +github.com/shlinkio/deploy-preview-action, github.com/shlinkio/js-coding-standard,num_dependents_deps.dev:0 github.com/shlinkio/shlink,criticality_score:0.525230 github.com/shlokparida/accp1,num_dependents_deps.dev:0 @@ -1037938,6 +1056517,8 @@ github.com/shmnh/lscache,num_dependents_deps.dev:0 github.com/shmnh/mountain-jsonp,num_dependents_deps.dev:0 github.com/shmnhdouble2013/ptap,num_dependents_deps.dev:0 github.com/shmoesolid/CheSSsk,num_dependents_deps.dev:0 +github.com/shmokmt/actions-setup-github-comment, +github.com/shmokmt/actions-setup-tfcmt, github.com/shmokmt/app-store-connect-client, github.com/shmokmt/docker-init,num_dependents_deps.dev:0 github.com/shmokmt/go-zhuyin,num_dependents_deps.dev:0 @@ -1038123,6 +1056704,7 @@ github.com/shobhitsharma/embedo,num_dependents_deps.dev:0 github.com/shobhitsharma/gulp-githead-rev,num_dependents_deps.dev:0 github.com/shobhitsharma/optimize-css-mq,num_dependents_deps.dev:0 github.com/shobhitsharma/pptx-compose,num_dependents_deps.dev:0 +github.com/shobhitsharma/var-dotenv-action, github.com/shobhitsharma/wysiwygy,num_dependents_deps.dev:0 github.com/shobhitsinghal624/passport-google-authcode,num_dependents_deps.dev:0 github.com/shobhitsinghal624/passport-refresh-token,num_dependents_deps.dev:0 @@ -1038169,6 +1056751,7 @@ github.com/shockham/infuse,num_dependents_deps.dev:0 github.com/shockham/kv_cab,num_dependents_deps.dev:0 github.com/shockham/pmdr,num_dependents_deps.dev:0 github.com/shockham/volition,num_dependents_deps.dev:0 +github.com/shockhs/docker-stack-deploy, github.com/shockie/node-iniparser,num_dependents_deps.dev:691 github.com/shocking-rodents/cabbage, github.com/shocking-rodents/magic-settings, @@ -1038328,7 +1056911,15 @@ github.com/shogo-ma/air,num_dependents_deps.dev:0 github.com/shogo-ma/echo-session,num_dependents_deps.dev:0 github.com/shogo-ma/go-logstash,num_dependents_deps.dev:0 github.com/shogo4405/HaishinKit.swift,criticality_score:0.523030 +github.com/shogo82148/actions-cfn-lint, +github.com/shogo82148/actions-create-release, +github.com/shogo82148/actions-github-app-token, +github.com/shogo82148/actions-go-fuzz, github.com/shogo82148/actions-goveralls,num_dependents_deps.dev:0 +github.com/shogo82148/actions-mutex, +github.com/shogo82148/actions-setup-mysql, +github.com/shogo82148/actions-setup-perl, +github.com/shogo82148/actions-upload-release-asset, github.com/shogo82148/androidbinary,num_dependents_deps.dev:5 github.com/shogo82148/aws-lambda-go,num_dependents_deps.dev:0 github.com/shogo82148/aws-xray-yasdk-go,num_dependents_deps.dev:0 @@ -1038463,6 +1057054,7 @@ github.com/shoki61/react-custom-back-to-top-button,num_dependents_deps.dev:0 github.com/shokimble/react-native-google-play-game-services,num_dependents_deps.dev:0 github.com/shokinn/emby-updater, github.com/shokmaster/ember-simple-auth-loopback-3,num_dependents_deps.dev:0 +github.com/shokme/giphy-generator, github.com/shokorep/publish-test-shokorep,num_dependents_deps.dev:0 github.com/shokuie/cap-modules,num_dependents_deps.dev:0 github.com/shokuie/gsm7,num_dependents_deps.dev:0 @@ -1038552,6 +1057144,8 @@ github.com/shoma07/protoc-gen-tstype,num_dependents_deps.dev:0 github.com/shoma07/ransack-enum,num_dependents_deps.dev:0 github.com/shoma07/sqlite3_extend_function,num_dependents_deps.dev:0 github.com/shoma07/yamlm,num_dependents_deps.dev:0 +github.com/shoma3571/lhci-format-action, +github.com/shoma3571/lhci-pr-comment-action, github.com/shomah4a/actors, github.com/shomah4a/pyexpression, github.com/shomah4a/sphinx-gist-embed, @@ -1038561,6 +1057155,7 @@ github.com/shomali11/gridder,num_dependents_deps.dev:0 github.com/shomali11/parallelizer,num_dependents_deps.dev:0 github.com/shomali11/slacker,"criticality_score:0.351150,num_dependents_deps.dev:0" github.com/shomatan/jira4s,num_dependents_deps.dev:0 +github.com/shomatan/typetalk-action, github.com/shomeya/bootstrap-stylus, github.com/shomron/cobra,num_dependents_deps.dev:0 github.com/shomron/confd,num_dependents_deps.dev:0 @@ -1038574,6 +1057169,7 @@ github.com/shonali-pawde/demo,num_dependents_deps.dev:0 github.com/shonali-pawde/go-api-crud,num_dependents_deps.dev:0 github.com/shonali-pawde/go-sql,num_dependents_deps.dev:0 github.com/shonali-pawde/simpleapi,num_dependents_deps.dev:0 +github.com/shonansurvivors/actions-s3-cache, github.com/shonansurvivors/goku-lang, github.com/shonenada/flask-bearychat, github.com/shonenada/flask-rbac, @@ -1038624,6 +1057220,7 @@ github.com/shoonia/storeon-connect,num_dependents_deps.dev:0 github.com/shoonia/storeon-velo,num_dependents_deps.dev:0 github.com/shoonoise/tabloid, github.com/shooontan/eslint-config, +github.com/shooontan/firefox-send-action, github.com/shooontan/gatsby-plugin-draft, github.com/shooontan/gatsby-remark-attr,num_dependents_deps.dev:0 github.com/shooontan/gatsby-source-microcms,num_dependents_deps.dev:0 @@ -1038829,6 +1057426,8 @@ github.com/shopyo/shopyo, github.com/shopyourway/metrics-js,num_dependents_deps.dev:0 github.com/shoracek/xdp-test-harness, github.com/shore-gmbh/bootstrap#shore-bootstrap3, +github.com/shorebirdtech/setup-shorebird, +github.com/shorebirdtech/shorebird-release, github.com/shorecg/generator-cucumber-steps,num_dependents_deps.dev:0 github.com/shoreditch-ops/artillery,num_dependents_deps.dev:0 github.com/shoreditch-ops/artillery-core,num_dependents_deps.dev:0 @@ -1038873,6 +1057472,7 @@ github.com/shortercode/cordova-plugin-xapkreader,num_dependents_deps.dev:0 github.com/shortesttrack/dataprovider-py, github.com/shorthandcss/shorthand,num_dependents_deps.dev:0 github.com/shorties-io/eslint-config,num_dependents_deps.dev:0 +github.com/shortishly/beam-docker-release-action, github.com/shortlist-digital/apple-news-preview-generator,num_dependents_deps.dev:0 github.com/shortlist-digital/nuka-carousel-dynamic-height,num_dependents_deps.dev:0 github.com/shortlist-digital/raf-scroller,num_dependents_deps.dev:0 @@ -1038965,6 +1057565,7 @@ github.com/shotlom/mdi-lookup,num_dependents_deps.dev:0 github.com/shotlom/predicty-pick-component,num_dependents_deps.dev:0 github.com/shotlom/rating-control-component,num_dependents_deps.dev:0 github.com/shotmonkey/np-bot-api,num_dependents_deps.dev:0 +github.com/shotor/swarmpit-service-redeploy-action, github.com/shotor/ts-gql-sdk-gen,num_dependents_deps.dev:0 github.com/shotstack/shotstack-sdk-node,num_dependents_deps.dev:0 github.com/shotu/go-copy-files-over-ssh,num_dependents_deps.dev:0 @@ -1038979,8 +1057580,10 @@ github.com/shouhengli/ember-s-select,num_dependents_deps.dev:0 github.com/shouhuanxiaoji/gohello,num_dependents_deps.dev:0 github.com/shouhuori/react-native-atoz-list,num_dependents_deps.dev:0 github.com/shouichi/protoc-gen-validate,num_dependents_deps.dev:0 +github.com/shoukathmd/PerfAIAction-Test, github.com/shouki-s/cloudfront-invalidate-cache,num_dependents_deps.dev:0 github.com/shouko/node-ceiba-sdk,num_dependents_deps.dev:0 +github.com/shoukoo/golang-pipeline, github.com/shoukoo/iota-friend,num_dependents_deps.dev:0 github.com/shoukoo/iota.vueart,num_dependents_deps.dev:0 github.com/shoukoo/vue-dropzone,num_dependents_deps.dev:0 @@ -1039045,10 +1057648,12 @@ github.com/shov/toweran,num_dependents_deps.dev:0 github.com/shovanmaity/grpc-task,num_dependents_deps.dev:0 github.com/shovanmaity/k8s-volume-copy,num_dependents_deps.dev:0 github.com/shovanmaity/s3-populator,num_dependents_deps.dev:0 +github.com/shovel-org/GithubActions, github.com/shovelandsandbox/artemis,num_dependents_deps.dev:0 github.com/shovelandsandbox/humanid,num_dependents_deps.dev:0 github.com/shovelandsandbox/yodle,num_dependents_deps.dev:0 github.com/shovelcode/go,num_dependents_deps.dev:0 +github.com/shovelers/odet-service-upload, github.com/shoveller/cra-template-dynamic-route,num_dependents_deps.dev:0 github.com/shoveller/functionaljavascript,num_dependents_deps.dev:0 github.com/shoveller/react-bootstrap-date-picker,num_dependents_deps.dev:0 @@ -1039080,6 +1057685,7 @@ github.com/shovon/thisify,num_dependents_deps.dev:0 github.com/shovon/thunk-shift-right,num_dependents_deps.dev:0 github.com/shovon/weinre-tap,num_dependents_deps.dev:0 github.com/show-d/funny,num_dependents_deps.dev:0 +github.com/show-karma/github-attestation-action, github.com/show-o-atakun/meshgrid_numo_narray,num_dependents_deps.dev:0 github.com/show0k/gmm-lbd, github.com/show168/jaeger,num_dependents_deps.dev:0 @@ -1039142,6 +1057748,7 @@ github.com/showpad/angular-q-spread,num_dependents_deps.dev:0 github.com/showpad/karma-rollup-preprocessor,num_dependents_deps.dev:0 github.com/showplan/showplan-js,num_dependents_deps.dev:0 github.com/showplan/showplan-vue,num_dependents_deps.dev:0 +github.com/showpune/container-apps-deploy-action, github.com/showtan001/react-native-touch-card,num_dependents_deps.dev:0 github.com/showwin/ZenHub-SP-Aggregator, github.com/showwin/ishocon1,num_dependents_deps.dev:0 @@ -1039149,6 +1057756,7 @@ github.com/showwin/kube-job,num_dependents_deps.dev:0 github.com/showwin/scrum-overtime-kot, github.com/showwin/speedtest-go,num_dependents_deps.dev:0 github.com/showyouhappiness/Vue-gulu,num_dependents_deps.dev:0 +github.com/showyourwork/showyourwork-action, github.com/showyoushowme/http-proxy-and-socks5-proxy,num_dependents_deps.dev:0 github.com/showyoushowme/websocket-tunnel,num_dependents_deps.dev:0 github.com/shoxxdj/harbor-master-wb,num_dependents_deps.dev:0 @@ -1039198,6 +1057806,7 @@ github.com/shprink/wp-api-angular,num_dependents_deps.dev:0 github.com/shprink/wp-api-angularjs,num_dependents_deps.dev:0 github.com/shprota/crow, github.com/shqld/danger,num_dependents_deps.dev:0 +github.com/shqld/github-script, github.com/shqld/react-native-auto-expanding-webview,num_dependents_deps.dev:0 github.com/shqld/reslink,num_dependents_deps.dev:0 github.com/shqld/tish, @@ -1039218,6 +1057827,7 @@ github.com/shravan-1908/file-organizer,num_dependents_deps.dev:0 github.com/shravan-1908/hydra,num_dependents_deps.dev:0 github.com/shravan-1908/iris,num_dependents_deps.dev:0 github.com/shravan-shandilya/rabbitmq-helper,num_dependents_deps.dev:0 +github.com/shravan097/codecoverage, github.com/shravan97/ORM-Creator, github.com/shravan97/competitive-dl, github.com/shravan9912/gorl,num_dependents_deps.dev:0 @@ -1039275,6 +1057885,7 @@ github.com/shreyansh3010/imdb_scrape_node_JS,num_dependents_deps.dev:0 github.com/shreyanshdwivedi/wasabi-assignment-pkg, github.com/shreyanshk/boottorrent,num_dependents_deps.dev:0 github.com/shreyanshk/flask-firehose, +github.com/shreyanshp/upload-app-browserstack, github.com/shreyanshu7101904/notix-push-notification, github.com/shreyas-a/cf-redis,num_dependents_deps.dev:0 github.com/shreyas-a/graphql-merge-cli,num_dependents_deps.dev:0 @@ -1039295,7 +1057906,9 @@ github.com/shreyas44/ngo-validator,num_dependents_deps.dev:0 github.com/shreyas44/test,num_dependents_deps.dev:0 github.com/shreyas95/collaborativefilteringimplicit, github.com/shreyasgokhale/wrapymongo, +github.com/shreyash-Pandey-Katni/Chrome-Firefox-git-install-action, github.com/shreyashfederer/githubcreaterepository,num_dependents_deps.dev:0 +github.com/shreyasingh18/Packer-AWS-Actions, github.com/shreyaskapale/jiofiber-api, github.com/shreyasm-dev/Informing,num_dependents_deps.dev:0 github.com/shreyasm-dev/avant-garde,num_dependents_deps.dev:0 @@ -1039389,6 +1058002,11 @@ github.com/shrinivashassan/maven_distribute,num_dependents_deps.dev:0 github.com/shrinivdeshmukh/avroconvert, github.com/shrinivdeshmukh/bearsql, github.com/shrinivdeshmukh/raftnode, +github.com/shrink/actions-docker-extract, +github.com/shrink/actions-docker-latest-image, +github.com/shrink/actions-docker-registry-tag, +github.com/shrink/actions-document-publish, +github.com/shrink/actions-document-sign, github.com/shrinktofit/gift,num_dependents_deps.dev:0 github.com/shrinkwrap/descriptors,num_dependents_deps.dev:25013 github.com/shrinkwrap/descriptors-docker,num_dependents_deps.dev:0 @@ -1039469,6 +1058087,7 @@ github.com/shrutiiiiiiiiii/react-native-cli,num_dependents_deps.dev:0 github.com/shrutikapoor08/devjoke,criticality_score:0.363070 github.com/shrutinandan/randorm-number-hook,num_dependents_deps.dev:0 github.com/shrutirathee/cypress-to-testrail-reporter,num_dependents_deps.dev:0 +github.com/shry/gitcha-action, github.com/shrynx/babel-plugin-transform-esm-to-cjs,num_dependents_deps.dev:0 github.com/shrynx/benri,num_dependents_deps.dev:0 github.com/shrynx/create-react-app,num_dependents_deps.dev:0 @@ -1039670,6 +1058289,7 @@ github.com/shuber/woot,num_dependents_deps.dev:0 github.com/shubh-vashisht/PySvap, github.com/shubh-vashisht/moralfibre, github.com/shubh-works/json-merge,num_dependents_deps.dev:0 +github.com/shubh402/auto-rebase, github.com/shubhadip/lidocommon,num_dependents_deps.dev:0 github.com/shubhadip/vuejs3-datepicker,num_dependents_deps.dev:0 github.com/shubhaemk/compux,num_dependents_deps.dev:0 @@ -1039704,6 +1058324,7 @@ github.com/shubham3121/laymon, github.com/shubham399/hexo-htb-auto-publish,num_dependents_deps.dev:0 github.com/shubham5i2/tmicro,num_dependents_deps.dev:0 github.com/shubham745/tmd-layer, +github.com/shubham90/gh-pkg-action, github.com/shubham90/scoped,num_dependents_deps.dev:0 github.com/shubham99bisht/golang-practice,num_dependents_deps.dev:0 github.com/shubhamAyodhyavasi/box-dimension-calculator,num_dependents_deps.dev:0 @@ -1039771,12 +1058392,14 @@ github.com/shubhamshuklaer/gojenkins,num_dependents_deps.dev:0 github.com/shubhamsinghrathi/youtube-video-download-links,num_dependents_deps.dev:0 github.com/shubhamsnehi/data_porting,num_dependents_deps.dev:0 github.com/shubhamsnehi/excel-parser,num_dependents_deps.dev:0 +github.com/shubhamsoni28/hello-world-javascript-action, github.com/shubhamt619/earthworm, github.com/shubhamtatvamasi/context-go,num_dependents_deps.dev:0 github.com/shubhamtatvamasi/fiber-hello-world,num_dependents_deps.dev:0 github.com/shubhamtatvamasi/protobuf-go,num_dependents_deps.dev:0 github.com/shubhamvrkr/npmpackagetest,num_dependents_deps.dev:0 github.com/shubhamwagh/HOG_python, +github.com/shubhamwagh/LeetSyncMaster, github.com/shubhamzanwar/flippie,num_dependents_deps.dev:0 github.com/shubhamzanwar/joi-object-id-extention,num_dependents_deps.dev:0 github.com/shubhamzanwar/react-masonry-grid,num_dependents_deps.dev:0 @@ -1039784,11 +1058407,14 @@ github.com/shubhang93/proglog,num_dependents_deps.dev:0 github.com/shubhangdesai/krikos, github.com/shubhangsemalty/revtroll,num_dependents_deps.dev:0 github.com/shubhank-srivastava/google-sheet-watcher-cli,num_dependents_deps.dev:0 +github.com/shubhank008/action-cached-lfs-checkout, github.com/shubhankar-mohan/fuzzy_logic, github.com/shubhankar90/ParametricModeling, github.com/shubhanshu786/twitter_variation, github.com/shubhanus/otp-input-react,num_dependents_deps.dev:0 github.com/shubhashreeb/logger,num_dependents_deps.dev:0 +github.com/shubhbapna/setup-act, +github.com/shubhdarlinge/sync-repository-to-aws-codecommit, github.com/shubhendusaurabh/checkers.js,num_dependents_deps.dev:0 github.com/shubhendusaurabh/draughts.js,num_dependents_deps.dev:0 github.com/shubhendusaurabh/draughtsboardJS,num_dependents_deps.dev:0 @@ -1039818,6 +1058444,7 @@ github.com/shubhs2060/hierarchy,num_dependents_deps.dev:0 github.com/shubhsboson/awscm, github.com/shubhsherl/Ghost,num_dependents_deps.dev:0 github.com/shubhsherl/Ghost-CLI,num_dependents_deps.dev:0 +github.com/shubhsherl/create-catchup-pr, github.com/shubhsnov/scss-analyzer,num_dependents_deps.dev:0 github.com/shubhstiws/paladins, github.com/shubhtuls/factored3d,Google @@ -1039876,6 +1058503,9 @@ github.com/shufei021/picker-card,num_dependents_deps.dev:0 github.com/shufei021/rdate,num_dependents_deps.dev:0 github.com/shufei021/rutils,num_dependents_deps.dev:0 github.com/shuffledex/react-jazzicon,num_dependents_deps.dev:0 +github.com/shufo/auto-assign-reviewer-by-assignee, +github.com/shufo/auto-assign-reviewer-by-files, +github.com/shufo/auto-assign-reviewer-by-issuer, github.com/shufo/blade-formatter,num_dependents_deps.dev:0 github.com/shufo/branchlint,num_dependents_deps.dev:0 github.com/shufo/go-graphql-boilerplate,num_dependents_deps.dev:0 @@ -1039987,6 +1058617,7 @@ github.com/shukerullah/react-native-narratiive,num_dependents_deps.dev:0 github.com/shukerullah/react-native-piano-sdk,num_dependents_deps.dev:0 github.com/shukerullah/react-native-vscode-settings, github.com/shukhrat2001/salom,num_dependents_deps.dev:0 +github.com/shukhratutaboev/scp-action, github.com/shuklaabhi/scarf, github.com/shuklarohan/logstack,num_dependents_deps.dev:0 github.com/shuklarohan/otp-agent,num_dependents_deps.dev:0 @@ -1040019,6 +1058650,7 @@ github.com/shults/jquery.ajaxq, github.com/shultziv/appposition,num_dependents_deps.dev:0 github.com/shultziv/ethstat,num_dependents_deps.dev:0 github.com/shultziv/parallelism_problem,num_dependents_deps.dev:0 +github.com/shumailaahmed/build-deb-action, github.com/shumailxyz/shumailxyz,num_dependents_deps.dev:0 github.com/shumatech/BOSSA,criticality_score:0.363070 github.com/shumatech/go-sciter,num_dependents_deps.dev:0 @@ -1040051,6 +1058683,9 @@ github.com/shunanya/Node.js-monitoring,num_dependents_deps.dev:10 github.com/shunanya/logTracker,num_dependents_deps.dev:0 github.com/shundezhang/starcluster, github.com/shundhammer/qdirstat,criticality_score:0.430330 +github.com/shundor/are-they-asleep, +github.com/shundor/python-bandit-scan, +github.com/shundor/servicenow-actions, github.com/shundroid/hexo-search-result,num_dependents_deps.dev:0 github.com/shundroid/matter-line,num_dependents_deps.dev:0 github.com/shundroid/npm-bin-test,num_dependents_deps.dev:0 @@ -1040074,6 +1058709,7 @@ github.com/shunitoh/hexo-toc-ext,num_dependents_deps.dev:0 github.com/shunitoh/hyper-totoro,num_dependents_deps.dev:0 github.com/shunitoh/react-highstock-demo,num_dependents_deps.dev:0 github.com/shunitoh/reactor-ui-sidenav-ext,num_dependents_deps.dev:0 +github.com/shunjid/ux-reporter, github.com/shunjikonishi/api-first-spec,num_dependents_deps.dev:0 github.com/shunjikonishi/jquery-splitter,num_dependents_deps.dev:0 github.com/shunjikonishi/react-link-state-by-name,num_dependents_deps.dev:0 @@ -1040193,6 +1058829,7 @@ github.com/shurik239/ko-binding-bem-helper,num_dependents_deps.dev:0 github.com/shurik239/monkey-bus,num_dependents_deps.dev:0 github.com/shurilla-a/rabbit,num_dependents_deps.dev:0 github.com/shurilla-a/ymal,num_dependents_deps.dev:0 +github.com/shurimaTN/amplify-cli-action, github.com/shurinskiy/bemtree-from-html,num_dependents_deps.dev:0 github.com/shurinskiy/gulp-svg-symbol-view,num_dependents_deps.dev:0 github.com/shuriu/ember-bp-cpv, @@ -1040296,6 +1058933,7 @@ github.com/shuttl-tech/shuttl_workflows, github.com/shuttl-tech/simple_worker, github.com/shuttl-tech/sqlalchemy_uuidstr, github.com/shuttl-tech/user_sdk, +github.com/shuttle-hq/deploy-action, github.com/shuttle-npm/shuttle-access,num_dependents_deps.dev:0 github.com/shuttle-npm/shuttle-can-api,num_dependents_deps.dev:0 github.com/shuttle-npm/shuttle-canstrap, @@ -1040340,6 +1058978,7 @@ github.com/shuvopro/go-custom-package-with-test,num_dependents_deps.dev:0 github.com/shuvro/vimeo-uploader,num_dependents_deps.dev:0 github.com/shuwenkai/ts-group-sort,num_dependents_deps.dev:0 github.com/shuwill/spreadme-commons,num_dependents_deps.dev:0 +github.com/shuxiangfan/android-kernel-actions, github.com/shuxiaoc/mario-py, github.com/shuxin/apk-signature-verify, github.com/shuxinqin/Chloe,criticality_score:0.369890 @@ -1040368,6 +1059007,7 @@ github.com/shuzhao-li/metDataModel, github.com/shuzhao-li/mummichog, github.com/shuzheng/zheng,criticality_score:0.299930 github.com/shuzijun/leetcode-editor,criticality_score:0.311240 +github.com/shuzijun/leetcode-editor-action, github.com/shvabuk/mixiner,num_dependents_deps.dev:0 github.com/shvaikalesh/humanize-ordinal,num_dependents_deps.dev:0 github.com/shvaikalesh/shim-keyboard-event-key,num_dependents_deps.dev:16 @@ -1040419,6 +1059059,7 @@ github.com/shwetdream11/react-native-shimmer,num_dependents_deps.dev:0 github.com/shwethaaa/callisto-gitPractice,num_dependents_deps.dev:0 github.com/shwethadia/testing,num_dependents_deps.dev:0 github.com/shwethaks/go_learnings,num_dependents_deps.dev:0 +github.com/shwetsolanki/react-native-bundle-size, github.com/shwetspawar/7Mreactnew,num_dependents_deps.dev:0 github.com/shwezin-tech/drone-test,num_dependents_deps.dev:0 github.com/shwilliam/basesheet,num_dependents_deps.dev:0 @@ -1040456,6 +1059097,7 @@ github.com/shwilliam/vue-scrollin,num_dependents_deps.dev:0 github.com/shwilliam/vue-shortcut,num_dependents_deps.dev:0 github.com/shwilliam/vue-visibility-trigger,num_dependents_deps.dev:0 github.com/shwilliam/vue-window-dimensions,num_dependents_deps.dev:0 +github.com/shwld/auto-pivotal-style-pr-action, github.com/shwld/vfg-field-checkboxlist,num_dependents_deps.dev:0 github.com/shwld/vfg-field-matrix,num_dependents_deps.dev:0 github.com/shwoodard/active_assets,num_dependents_deps.dev:0 @@ -1040578,8 +1059220,11 @@ github.com/shyiko/rcfg,num_dependents_deps.dev:0 github.com/shyiko/split-by-name-webpack2-plugin,num_dependents_deps.dev:0 github.com/shyiko/tsdm,num_dependents_deps.dev:0 github.com/shyiko/vue-document,num_dependents_deps.dev:0 +github.com/shyim/1password-load-secrets-action, github.com/shyim/Irc2Gitter,num_dependents_deps.dev:0 github.com/shyim/app-server-sdk-typescript,num_dependents_deps.dev:0 +github.com/shyim/danger-php, +github.com/shyim/junit-report-annotations-action, github.com/shyim/shopware-admin-api-node,num_dependents_deps.dev:0 github.com/shyim/teamspeak-manager,num_dependents_deps.dev:0 github.com/shykhov/redux-form-normalize,num_dependents_deps.dev:0 @@ -1040670,6 +1059315,7 @@ github.com/shzhao17/django-db-conn-pool, github.com/shzhao17/pydataclasses, github.com/shzhw/sentry-plugin,num_dependents_deps.dev:0 github.com/shzlw/zeu,num_dependents_deps.dev:0 +github.com/shzxcv/github-notifications-to-slack, github.com/shzy2012/common,num_dependents_deps.dev:0 github.com/si-cim/protoflow, github.com/si-cim/prototorch, @@ -1040691,6 +1059337,8 @@ github.com/si3nloong/rsql,num_dependents_deps.dev:0 github.com/si3nloong/sqlike,num_dependents_deps.dev:0 github.com/si4141/scraper_for_economy_watcher, github.com/si458/changeexe,num_dependents_deps.dev:0 +github.com/si618/hedera-check-balance, +github.com/si9k/docker, github.com/si9ma/excelize,num_dependents_deps.dev:0 github.com/siQuang/siqtheme, github.com/sia-fl/i2any,num_dependents_deps.dev:0 @@ -1040703,6 +1059351,11 @@ github.com/siacentral/ledgerjs-sia,num_dependents_deps.dev:0 github.com/siacentral/sia-host-dashboard,num_dependents_deps.dev:0 github.com/siacentral/sia-lite-wallet-web,num_dependents_deps.dev:0 github.com/siacn/discordgo,num_dependents_deps.dev:0 +github.com/siacodelabs/download-from-skynet, +github.com/siacodelabs/setup-antlr4, +github.com/siacodelabs/setup-pandoc, +github.com/siacodelabs/setup-poetry, +github.com/siacodelabs/upload-to-skynet, github.com/siacomuzzi/grunt-maxcdn,num_dependents_deps.dev:0 github.com/siadat/blacksmith,num_dependents_deps.dev:0 github.com/siadat/gorbac,num_dependents_deps.dev:0 @@ -1040752,6 +1059405,10 @@ github.com/siaoynli/flask_login_multi, github.com/siaoynli/goblog,num_dependents_deps.dev:0 github.com/siara-cc/Unishox_JS,num_dependents_deps.dev:0 github.com/siara-cc/csv_parser_npmjs,num_dependents_deps.dev:0 +github.com/siarb/writerside-docker-action, +github.com/siarb/wrs-test-docs-github, +github.com/siarb/wrs-test-github-action, +github.com/siarheidudko/autoupdater, github.com/siarheidudko/delphiform,num_dependents_deps.dev:0 github.com/siarheidudko/docdb,num_dependents_deps.dev:0 github.com/siarheidudko/express-uploadfiles,num_dependents_deps.dev:0 @@ -1040810,6 +1059467,7 @@ github.com/siberianmh/markdowner,num_dependents_deps.dev:0 github.com/siberianmh/siberianmh,num_dependents_deps.dev:0 github.com/siberianmh/terraform-provider-discord,num_dependents_deps.dev:0 github.com/sibeshkar/maya-engine,num_dependents_deps.dev:0 +github.com/sibevin/amazon-ecs-render-task-definition, github.com/sibevin/angular-tau-utils,num_dependents_deps.dev:0 github.com/sibevin/cerebro-word-count,num_dependents_deps.dev:0 github.com/sibevin/code_error,num_dependents_deps.dev:0 @@ -1040824,6 +1059482,8 @@ github.com/sibidass/obdscanner,num_dependents_deps.dev:0 github.com/sibipro/ask,num_dependents_deps.dev:0 github.com/sibipro/eslint-config,num_dependents_deps.dev:0 github.com/sibipro/mongoose-double,num_dependents_deps.dev:0 +github.com/sibiraj-s/action-archiver, +github.com/sibiraj-s/action-eslint, github.com/sibiraj-s/browser-dtector,num_dependents_deps.dev:0 github.com/sibiraj-s/capillaries,num_dependents_deps.dev:0 github.com/sibiraj-s/copy-asset-in-memory-webpack-plugin,num_dependents_deps.dev:0 @@ -1040967,6 +1059627,8 @@ github.com/sidbentifraouine/react-nestable, github.com/sidbham/sumars-js,num_dependents_deps.dev:0 github.com/sidbhardwaj/daily-logs,num_dependents_deps.dev:0 github.com/sidc9/gotion,num_dependents_deps.dev:0 +github.com/sidd-harth-1/js-action-pr-giphy-comment, +github.com/sidd-harth-7/js-action-pr-giphy-comment, github.com/sidd/rtorrent-session-rectify,num_dependents_deps.dev:0 github.com/sidd/secstamp,num_dependents_deps.dev:0 github.com/sidd/xmlrpcli,num_dependents_deps.dev:0 @@ -1040998,6 +1059660,8 @@ github.com/siddhant-grover/shadowizard,num_dependents_deps.dev:0 github.com/siddhant2408/async,num_dependents_deps.dev:0 github.com/siddhant2408/project-structure,num_dependents_deps.dev:0 github.com/siddhant3030/kubernetesapi,num_dependents_deps.dev:0 +github.com/siddhant792/jira-multiple-ticket-transition, +github.com/siddhant792/jira-transition, github.com/siddhantdange/vista-clients, github.com/siddhantgoel/beancount-commerzbank, github.com/siddhantgoel/beancount-dkb, @@ -1041022,6 +1059686,8 @@ github.com/siddharth-pavagadhi/MyPeckage,num_dependents_deps.dev:0 github.com/siddharth151199/generate-randomchar,num_dependents_deps.dev:0 github.com/siddharth178/godnspeep,num_dependents_deps.dev:0 github.com/siddharth178/psb,num_dependents_deps.dev:0 +github.com/siddharth2016/quote-readme, +github.com/siddharth2016/update-readme-image, github.com/siddharth23/cypress-postgres,num_dependents_deps.dev:0 github.com/siddhartha-gadgil/ProvingGround,num_dependents_deps.dev:0 github.com/siddhartha15/go-practice,num_dependents_deps.dev:0 @@ -1041205,6 +1059871,7 @@ github.com/sideroad/testem-multi,num_dependents_deps.dev:4 github.com/sideroad/wd-ct,num_dependents_deps.dev:0 github.com/sideroff/k8s-app,num_dependents_deps.dev:0 github.com/sideroff/protocol-buffer-101,num_dependents_deps.dev:0 +github.com/siderolabs/conform, github.com/sides/boy-howdy,num_dependents_deps.dev:0 github.com/sideshift/toolkit,num_dependents_deps.dev:0 github.com/sideshow-systems/jquery-sbs-slider,num_dependents_deps.dev:0 @@ -1041237,6 +1059904,7 @@ github.com/sidgurun/LyaRT-Grid, github.com/sidh-crypto/sidh-optimizer, github.com/sidhaler/wrt,num_dependents_deps.dev:0 github.com/sidhanshumonga/ngx-textarea-autosize,num_dependents_deps.dev:0 +github.com/sidhant92/intellij-format-action, github.com/sidhantpanda/exotel-node,num_dependents_deps.dev:0 github.com/sidhantpanda/instamojo-nodejs,num_dependents_deps.dev:0 github.com/sidhantpanda/json-rule-evaluator,num_dependents_deps.dev:0 @@ -1041256,16 +1059924,19 @@ github.com/sidharthancr/react-popout-v2,num_dependents_deps.dev:0 github.com/sidharthramesh/medblocks-ui-componets,num_dependents_deps.dev:0 github.com/sidharthramesh/medblocks.js,num_dependents_deps.dev:0 github.com/sidharthv96/kafka-node-avro,num_dependents_deps.dev:0 +github.com/sidharthv96/playwright-report-action, github.com/sidhijakpat/react-xlsx-workbook-dynamic-column-width,num_dependents_deps.dev:0 github.com/sidhomj/DeepTCR, github.com/sidhujag/bitcore-ecies,num_dependents_deps.dev:0 github.com/sidhujag/bitcore-lib,num_dependents_deps.dev:0 github.com/sidhuko/node-link-header,num_dependents_deps.dev:0 +github.com/sidhusmart/kubectl, github.com/sidhusubhash/super-url,num_dependents_deps.dev:0 github.com/sidiDev/Object-Mds,num_dependents_deps.dev:0 github.com/sidiandi/codesearch,num_dependents_deps.dev:0 github.com/sidiandi/taru,num_dependents_deps.dev:0 github.com/sidiiitg123/pattern-solution,num_dependents_deps.dev:0 +github.com/sidikfaha/deploy-docker, github.com/sidikriders/npm-package,num_dependents_deps.dev:0 github.com/sidilabs/kishell,num_dependents_deps.dev:0 github.com/sidimansourjs/restify-server-manager,num_dependents_deps.dev:0 @@ -1041460,6 +1060131,8 @@ github.com/sidwarkd/tessel-nes,num_dependents_deps.dev:0 github.com/sidwarkd/tessel-nokia5110,num_dependents_deps.dev:0 github.com/sidwood/eslint-config-sidwood,num_dependents_deps.dev:0 github.com/sidwood/params-list,num_dependents_deps.dev:0 +github.com/sidx1024/action-download-artifact, +github.com/sidx1024/report-nyc-coverage-github-action, github.com/sidx1024/svelte-style-directive,num_dependents_deps.dev:0 github.com/sieben/django-cerebro, github.com/sieben/hammerhead, @@ -1041492,6 +1060165,9 @@ github.com/siege-master/ideal-memory,num_dependents_deps.dev:0 github.com/siege-master/rt-code-test, github.com/siegeengineers/aoc-mgz-db, github.com/siegeengineers/aoc-reference-data, +github.com/siegerts/pending-author-response, +github.com/siegerts/pending-response, +github.com/siegerts/release-follow-up-action, github.com/siegfried/utuntap,num_dependents_deps.dev:0 github.com/siegfriedgrimbeek/strip-accented,num_dependents_deps.dev:0 github.com/siegy22/setuper,num_dependents_deps.dev:0 @@ -1041529,6 +1060205,7 @@ github.com/sielicki/rust-libiperf,num_dependents_deps.dev:0 github.com/siem684/node-red-contrib-subdb,num_dependents_deps.dev:0 github.com/siemah/nodejs-password,num_dependents_deps.dev:0 github.com/siemasusel/go-hls-proj,num_dependents_deps.dev:0 +github.com/siematypie/merge-or-pr, github.com/siemens-ofm/nestjs-utils,num_dependents_deps.dev:0 github.com/siemens-ofm/ofm-history,num_dependents_deps.dev:0 github.com/siemens-ofm/ofm-jsonschema-form,num_dependents_deps.dev:0 @@ -1041563,6 +1060240,7 @@ github.com/sieqqc/pilotproject, github.com/sieradz628/prismicReceiver,num_dependents_deps.dev:0 github.com/sieraruo/jquery-cloud-file-upload-middleware,num_dependents_deps.dev:0 github.com/sieren/Homepoint,criticality_score:0.315440 +github.com/sierpinskid/nunit-github-comment, github.com/sierra-alpha/wakahiki, github.com/sierra-library/sierra,num_dependents_deps.dev:0 github.com/sierraindiagolf/avoid.js,num_dependents_deps.dev:0 @@ -1041653,6 +1060331,7 @@ github.com/siftrics/sight-python, github.com/sifu/promised-couch,num_dependents_deps.dev:0 github.com/sifu/promised-request,num_dependents_deps.dev:0 github.com/sifue/gitbook-plugin-anker-enable,num_dependents_deps.dev:0 +github.com/sig-chakrava/io-scan, github.com/sig-ml/bleedml, github.com/sig1nt/jan,num_dependents_deps.dev:0 github.com/sig7493/bocapi,num_dependents_deps.dev:0 @@ -1041704,6 +1060383,7 @@ github.com/sigh2021/gello,num_dependents_deps.dev:0 github.com/sighalt/logdecorator, github.com/sighalt/pyhooker, github.com/sighalt/pyramid_request_schema, +github.com/sighelp/gvc-templated-action-lab1, github.com/sighery/gonjalla,num_dependents_deps.dev:0 github.com/sighery/terraform-provider-njalla,num_dependents_deps.dev:0 github.com/sighil/automacent,num_dependents_deps.dev:0 @@ -1041780,6 +1060460,7 @@ github.com/sigma/go-emacs,num_dependents_deps.dev:0 github.com/sigma/go-icns,num_dependents_deps.dev:0 github.com/sigma/govmomi,num_dependents_deps.dev:0 github.com/sigma/magit-gh-pulls,criticality_score:0.342680 +github.com/sigma/vsce-publish-action, github.com/sigma3Dev/coordinateDataExporter,num_dependents_deps.dev:0 github.com/sigma3Dev/coordinateDataImporter, github.com/sigma3Dev/s3d-fitting-commands,num_dependents_deps.dev:0 @@ -1042013,7 +1060694,9 @@ github.com/signalwerk/scontecss,num_dependents_deps.dev:0 github.com/signalwerk/signalwerk.documentation.md,num_dependents_deps.dev:0 github.com/signalwerk/signalwerk.documentation.style,num_dependents_deps.dev:0 github.com/signalwerk/style.DOC,num_dependents_deps.dev:0 +github.com/signalwire/build-rpm-packages-action, github.com/signalwire/freeswitch,criticality_score:0.644850 +github.com/signalwire/sign-rpm-packages-action, github.com/signalwire/signalwire-node,num_dependents_deps.dev:0 github.com/signalwire/signalwire-python, github.com/signas-qmul/gradrack, @@ -1042040,10 +1060723,12 @@ github.com/signavio/kraken, github.com/signavio/react-mentions,"criticality_score:0.469460,num_dependents_deps.dev:30" github.com/signavio/react-stick,num_dependents_deps.dev:26 github.com/signavio/stoneage-fileupload,num_dependents_deps.dev:0 +github.com/signcl/docsearch-scraper-action, github.com/signcl/docusaurs-prince-pdf,num_dependents_deps.dev:0 github.com/signcl/docusaurus-prince-pdf,num_dependents_deps.dev:0 github.com/signcl/openbayes-jupyterlab-extensions, github.com/signcl/python-openbayes-serving, +github.com/signcl/zenhub-move-card, github.com/signderiva/signderiva,num_dependents_deps.dev:0 github.com/signeasy/node-sdk,num_dependents_deps.dev:0 github.com/signebedi/coliseum, @@ -1042101,6 +1060786,7 @@ github.com/signintech/gopdf,"criticality_score:0.394270,num_dependents_deps.dev: github.com/signintech/pdft,num_dependents_deps.dev:0 github.com/signit-wesign/java-sdk,num_dependents_deps.dev:0 github.com/signl4/node-red-contrib-signl4,num_dependents_deps.dev:0 +github.com/signl4/signl4-action-alert, github.com/signloper/react-custom-hooks,num_dependents_deps.dev:0 github.com/signmykeyio/signmykey,num_dependents_deps.dev:0 github.com/signnow/SNPythonSDK, @@ -1042189,7 +1060875,9 @@ github.com/sigsergv/pyrone, github.com/sigset/randomwalk,num_dependents_deps.dev:0 github.com/sigsev-dev/graphics,num_dependents_deps.dev:0 github.com/sigstore/cosign,num_dependents_deps.dev:9 +github.com/sigstore/cosign-installer, github.com/sigstore/fulcio,num_dependents_deps.dev:20 +github.com/sigstore/gh-action-sigstore-python, github.com/sigstore/helm-sigstore,num_dependents_deps.dev:0 github.com/sigstore/k8s-manifest-sigstore,num_dependents_deps.dev:0 github.com/sigstore/rekor,num_dependents_deps.dev:22 @@ -1042198,6 +1060886,7 @@ github.com/sigstore/rekorctl,num_dependents_deps.dev:0 github.com/sigstore/root-signing,num_dependents_deps.dev:0 github.com/sigstore/sget,num_dependents_deps.dev:0 github.com/sigstore/sigstore,num_dependents_deps.dev:10 +github.com/sigstore/sigstore-conformance, github.com/sigtm/svg-groomer,num_dependents_deps.dev:0 github.com/siguago/qwlib,num_dependents_deps.dev:0 github.com/siguago/weworklib,num_dependents_deps.dev:0 @@ -1042216,6 +1060905,10 @@ github.com/sigvef/git-praise, github.com/sigvei/gatsby-plugin-owa, github.com/sigwinch28/miniserve,num_dependents_deps.dev:0 github.com/sigwo/node-merged-portal,num_dependents_deps.dev:0 +github.com/sigyl-actions/check-for-changes, +github.com/sigyl-actions/files-ls, +github.com/sigyl-actions/gitea-action-get-latest-release, +github.com/sigyl-actions/gitea-action-release-asset, github.com/sigzag/redadder,num_dependents_deps.dev:0 github.com/sih4sing5hong5/kenlm, github.com/sihaelov/harser, @@ -1042279,6 +1060972,7 @@ github.com/sijms/go-ora,num_dependents_deps.dev:12 github.com/sijojosan21/arya-core,num_dependents_deps.dev:0 github.com/sijokg/string_array_to_integer_array,num_dependents_deps.dev:0 github.com/sijokun/async-fastapi-jwt-auth, +github.com/sijomc/sonarscan-action, github.com/sijosyn/testcafe-browser-provider-crossbrowsertesting,num_dependents_deps.dev:0 github.com/sijpesteijn/ilda,num_dependents_deps.dev:0 github.com/sijpesteijn/mafia-maven-plugin,num_dependents_deps.dev:0 @@ -1042322,9 +1061016,11 @@ github.com/siketyan/autoclip,num_dependents_deps.dev:0 github.com/siketyan/cargo-edit-version,num_dependents_deps.dev:0 github.com/siketyan/do,num_dependents_deps.dev:0 github.com/siketyan/locksync,num_dependents_deps.dev:0 +github.com/siketyan/loxcan, github.com/siketyan/matter-js,num_dependents_deps.dev:0 github.com/siketyan/schetube,num_dependents_deps.dev:0 github.com/siketyan/sltunnel,num_dependents_deps.dev:0 +github.com/siketyan/wait-for-ecr-replication-action, github.com/siketyan/ymmp,num_dependents_deps.dev:0 github.com/sikharin/go-restful-api,num_dependents_deps.dev:0 github.com/sikichan/bright-config,num_dependents_deps.dev:0 @@ -1042359,6 +1061055,7 @@ github.com/silane/babel-plugin-replace-import-extension,num_dependents_deps.dev: github.com/silane/datetime-js,num_dependents_deps.dev:0 github.com/silarsis/pevl, github.com/silas-hw/loading-pkg, +github.com/silas-x/soteria-action, github.com/silas/dag,num_dependents_deps.dev:1 github.com/silas/hapi-bunyan,num_dependents_deps.dev:2 github.com/silas/hapi-fields, @@ -1042423,6 +1061120,8 @@ github.com/silcar92/react-native-expo-simple-timer,num_dependents_deps.dev:0 github.com/silcar92/react-native-input-credit-card-v2,num_dependents_deps.dev:0 github.com/sildani/go-advent-of-code,num_dependents_deps.dev:0 github.com/sildar/potara, +github.com/sile-typesetter/casile, +github.com/sile-typesetter/fontproof, github.com/sile-typesetter/sile,criticality_score:0.508740 github.com/sile/amf,num_dependents_deps.dev:0 github.com/sile/atomic_immut,num_dependents_deps.dev:15 @@ -1042671,6 +1061370,7 @@ github.com/silentrob/node-intercom,num_dependents_deps.dev:0 github.com/silentrob/qtypes,num_dependents_deps.dev:0 github.com/silentrob/throbber,num_dependents_deps.dev:0 github.com/silentshade/memq,num_dependents_deps.dev:0 +github.com/silentsilas/assignee-lottery, github.com/silentsoft/acmicpc-kit-parent,num_dependents_deps.dev:0 github.com/silentsoft/acmicpc-maven-plugin,num_dependents_deps.dev:0 github.com/silentsoft/actlist-plugin,num_dependents_deps.dev:0 @@ -1042743,6 +1061443,11 @@ github.com/silexlabs/unifile,num_dependents_deps.dev:4 github.com/silexlabs/unifile-common-tools,num_dependents_deps.dev:14 github.com/silexlabs/unifile-webdav,num_dependents_deps.dev:4 github.com/silexphp/Pimple,criticality_score:0.504990 +github.com/silexphp/silex, +github.com/silexphp/silex-api, +github.com/silexphp/silex-providers, +github.com/silexphp/silex-skeleton, +github.com/silexphp/silex-webprofiler, github.com/silexsistemas/docassemble-wrappers, github.com/silfverorg/microstar-frontend-track,num_dependents_deps.dev:0 github.com/silfverstrom/duns.js,num_dependents_deps.dev:0 @@ -1042874,6 +1061579,7 @@ github.com/sillyY/file-compare,num_dependents_deps.dev:0 github.com/sillyY/handle-match,num_dependents_deps.dev:0 github.com/sillyY/vuepress-plugin-code-segment,num_dependents_deps.dev:0 github.com/sillyal/dominion,num_dependents_deps.dev:0 +github.com/sillyangel/releases-to-discord, github.com/sillydeveloper/node-pg-orm,num_dependents_deps.dev:0 github.com/sillydong/blog4go,num_dependents_deps.dev:0 github.com/sillydong/dbdiffer,num_dependents_deps.dev:0 @@ -1042941,6 +1061647,7 @@ github.com/silvagpmiguel/bored,num_dependents_deps.dev:0 github.com/silvagpmiguel/pdf-builder,num_dependents_deps.dev:0 github.com/silvainSayduck/react-dnd,num_dependents_deps.dev:0 github.com/silvairgit/python-bluetooth-mesh, +github.com/silval4-ppb/checkout, github.com/silvaleonardo/node-loadmodules,num_dependents_deps.dev:0 github.com/silvamarcel/MessageNotificationMUI,num_dependents_deps.dev:0 github.com/silvamfilipe/react-gentelella,num_dependents_deps.dev:0 @@ -1043124,6 +1061831,11 @@ github.com/silverlovesl/orm-entity-gen,num_dependents_deps.dev:0 github.com/silverlyjoo/vue-ABChat,num_dependents_deps.dev:0 github.com/silverlyra/geordi,num_dependents_deps.dev:0 github.com/silverlyra/kubernetes-types,num_dependents_deps.dev:0 +github.com/silverlyra/latest-image-action, +github.com/silverlyra/linear-script, +github.com/silverlyra/monorepo-changes, +github.com/silverlyra/script-action, +github.com/silverlyra/setup-aws-eks, github.com/silverlyra/unifi-go,num_dependents_deps.dev:0 github.com/silvermanEvan/poetry-maker,num_dependents_deps.dev:0 github.com/silvermiguel96/CardPerson,num_dependents_deps.dev:0 @@ -1043315,6 +1062027,7 @@ github.com/silviucuruciuc/nodebb-plugin-session-sharing,num_dependents_deps.dev: github.com/silviucuruciuc/nodebb-theme-persona,num_dependents_deps.dev:0 github.com/silvn/sage,num_dependents_deps.dev:0 github.com/silvre0542/bitcore-wallet-client,num_dependents_deps.dev:0 +github.com/silvxlabs/conda-skeleton-publish, github.com/silx-kit/dynamix, github.com/silx-kit/fabio, github.com/silx-kit/h5grove, @@ -1043406,6 +1062119,7 @@ github.com/simbachain/vue-authenticate,num_dependents_deps.dev:0 github.com/simbaja/gehome, github.com/simbaja/oppoudpsdk, github.com/simbaja/roombapy, +github.com/simbamarufu1/docker-swarm-deploy-action, github.com/simbathesailor/babel-plugin-use-what-changed,num_dependents_deps.dev:0 github.com/simbathesailor/envvarprep-loader,num_dependents_deps.dev:0 github.com/simbathesailor/gzippalo,num_dependents_deps.dev:0 @@ -1043428,6 +1062142,8 @@ github.com/simbleau/convo,num_dependents_deps.dev:0 github.com/simbleau/nvtx-rs,num_dependents_deps.dev:0 github.com/simbli/seacharts, github.com/simbo/auto-plug,num_dependents_deps.dev:2 +github.com/simbo/changes-between-tags-action, +github.com/simbo/changes-since-last-release-action, github.com/simbo/collection.stylus,num_dependents_deps.dev:0 github.com/simbo/css-mqpacker-sort-mediaqueries,num_dependents_deps.dev:0 github.com/simbo/css-reset-and-normalize,num_dependents_deps.dev:4 @@ -1043438,6 +1062154,7 @@ github.com/simbo/generator-editorconfig,num_dependents_deps.dev:0 github.com/simbo/generator-prettierrc,num_dependents_deps.dev:0 github.com/simbo/generator-readme,num_dependents_deps.dev:0 github.com/simbo/generator-tsconfig,num_dependents_deps.dev:0 +github.com/simbo/git-secret-action, github.com/simbo/gulp-gray-matter,num_dependents_deps.dev:0 github.com/simbo/gulp-static-site-generator,num_dependents_deps.dev:0 github.com/simbo/gulp-watchify-browserify,num_dependents_deps.dev:0 @@ -1043445,12 +1062162,14 @@ github.com/simbo/gulpplug,num_dependents_deps.dev:0 github.com/simbo/jstransformer-terser,num_dependents_deps.dev:0 github.com/simbo/metalsmith-better-excerpts, github.com/simbo/metalsmith-robotskirt,num_dependents_deps.dev:0 +github.com/simbo/msteams-message-card-action, github.com/simbo/path-slashes,num_dependents_deps.dev:0 github.com/simbo/pug-frontmatter-html-loader,num_dependents_deps.dev:0 github.com/simbo/requirements-mapper,num_dependents_deps.dev:0 github.com/simbo/slush-simbo,num_dependents_deps.dev:0 github.com/simbo/small-store,num_dependents_deps.dev:0 github.com/simbo/stylus-mixins,num_dependents_deps.dev:0 +github.com/simbo/vale-action, github.com/simbo/validate-by-shorthand,num_dependents_deps.dev:12 github.com/simbo1905/shamir, github.com/simbo1905/simple-record-store,num_dependents_deps.dev:0 @@ -1043490,7 +1062209,19 @@ github.com/simeg/gulpfile-generator,num_dependents_deps.dev:0 github.com/simeg/ngjs-color-picker,num_dependents_deps.dev:0 github.com/simeg/stava,num_dependents_deps.dev:0 github.com/simeg/urlsup,num_dependents_deps.dev:0 +github.com/simeg/urlsup-action, github.com/simeji/jid,"criticality_score:0.322300,num_dependents_deps.dev:0" +github.com/simenandre/branch-environment-action, +github.com/simenandre/get-commit-changelog, +github.com/simenandre/parse-sitemap, +github.com/simenandre/publish-with-pnpm, +github.com/simenandre/publish-with-yarn, +github.com/simenandre/publish-with-yarn-classic, +github.com/simenandre/pulumi-config, +github.com/simenandre/setup-gke-gcloud-auth-plugin, +github.com/simenandre/setup-inputs, +github.com/simenandre/setup-variables, +github.com/simenandre/todoist-action, github.com/simenb/babel-preset-es3,num_dependents_deps.dev:8 github.com/simenb/check-es3-syntax,num_dependents_deps.dev:0 github.com/simenb/dll-html-webpack-plugin,num_dependents_deps.dev:0 @@ -1043547,6 +1062278,7 @@ github.com/simformsolutions/react-native-spinner-button,num_dependents_deps.dev: github.com/simfu/pyonf, github.com/simgics/sundir, github.com/simh/simh,criticality_score:0.588450 +github.com/simha-r/my-typescript-gh-action, github.com/simhead/machbasenodejs,num_dependents_deps.dev:0 github.com/simhnna/django-widgets-improved, github.com/simhub/phpbase64encoder,num_dependents_deps.dev:0 @@ -1043753,6 +1062485,7 @@ github.com/simon-johansson/keyfinder,num_dependents_deps.dev:0 github.com/simon-johansson/kommunkoder,num_dependents_deps.dev:0 github.com/simon-johansson/spotify-quiz-questions,num_dependents_deps.dev:0 github.com/simon-johansson/tipsbot,num_dependents_deps.dev:0 +github.com/simon-k/dotnet-code-coverage-badge, github.com/simon-larsson/ballbeam-gym, github.com/simon-larsson/extrakit-learn, github.com/simon-m-mudd/channeltoy, @@ -1043872,6 +1062605,8 @@ github.com/simonbengtsson/jsPDF-AutoTable,"criticality_score:0.534560,num_depend github.com/simonbengtsson/vasttrafik-api,num_dependents_deps.dev:0 github.com/simonbetton/contentful-import-workflow-manager,num_dependents_deps.dev:0 github.com/simonblee/generator-maryo,num_dependents_deps.dev:0 +github.com/simonblund/version-filer, +github.com/simonblund/version-reader, github.com/simonboisset/react-hook-input,num_dependents_deps.dev:0 github.com/simonboisset/react-mui-kit,num_dependents_deps.dev:0 github.com/simonboisset/react-router-url,num_dependents_deps.dev:0 @@ -1043882,6 +1062617,7 @@ github.com/simonbrady/terraform-provider-azurerm,num_dependents_deps.dev:0 github.com/simonbrunel/vuepress-plugin-versions,num_dependents_deps.dev:0 github.com/simonbrunel/vuepress-theme-chartjs,num_dependents_deps.dev:0 github.com/simonbs/dldr, +github.com/simonbs/install-op-cli, github.com/simonbt6/image-processing-lib, github.com/simonbuchan/bindings-loader,num_dependents_deps.dev:0 github.com/simonbuchan/deploy-stack,num_dependents_deps.dev:0 @@ -1043917,6 +1062653,22 @@ github.com/simoncozens/vharfbuzz, github.com/simoncozens/youseedee, github.com/simoncpu/https-post,num_dependents_deps.dev:20 github.com/simoncpu/lambda_exec,num_dependents_deps.dev:0 +github.com/simoncropp/countrydata, +github.com/simoncropp/effluentvalidation, +github.com/simoncropp/gitmodtimes, +github.com/simoncropp/graphql.attachments, +github.com/simoncropp/graphql.validation, +github.com/simoncropp/localdb, +github.com/simoncropp/markdownsnippets, +github.com/simoncropp/naughtystrings, +github.com/simoncropp/nodatime.bogus, +github.com/simoncropp/ossindexclient, +github.com/simoncropp/packageupdate, +github.com/simoncropp/seqproxy, +github.com/simoncropp/setstartupprojects, +github.com/simoncropp/timestamp, +github.com/simoncropp/wafflegenerator, +github.com/simoncropp/xunitcontext, github.com/simoncrowe/python-query-filter, github.com/simondean/grunt-cuke-tree,num_dependents_deps.dev:0 github.com/simondean/myriad,num_dependents_deps.dev:2 @@ -1043969,6 +1062721,7 @@ github.com/simoneb/token-pagination-hooks,num_dependents_deps.dev:6 github.com/simoneb/vuex-function-actions,num_dependents_deps.dev:0 github.com/simonecorsi/dopo,num_dependents_deps.dev:0 github.com/simonecorsi/fine,num_dependents_deps.dev:0 +github.com/simonecorsi/mawesome, github.com/simonedeluca/pigro.js,num_dependents_deps.dev:0 github.com/simonefuoco/data-etl,num_dependents_deps.dev:0 github.com/simonefuoco/data-etl-generic-aggregator,num_dependents_deps.dev:0 @@ -1044175,6 +1062928,7 @@ github.com/simonhoss/knex-dynamodb-dialect,num_dependents_deps.dev:0 github.com/simonhoss/react-native-touch-through-view, github.com/simonhuwiler/brokJSON_js,num_dependents_deps.dev:0 github.com/simonhuwiler/roccatvulcan,num_dependents_deps.dev:0 +github.com/simonhyll/cargo-audit, github.com/simonifergan/promises-everywhere,num_dependents_deps.dev:0 github.com/simonify/class-name,num_dependents_deps.dev:0 github.com/simonify/create-dispatcher,num_dependents_deps.dev:0 @@ -1044191,6 +1062945,7 @@ github.com/simoninireland/epydemic, github.com/simoninireland/epydemicarchive, github.com/simoninireland/simplicial, github.com/simonireilly/coke,num_dependents_deps.dev:0 +github.com/simonireilly/observatory-github-action, github.com/simonjang/array-to-ndjson,num_dependents_deps.dev:0 github.com/simonjang/aws-sqs-deletemessage,num_dependents_deps.dev:0 github.com/simonjang/aws-sqs-geturl,num_dependents_deps.dev:0 @@ -1044227,6 +1062982,7 @@ github.com/simonknittel/go-oauth-proxy,num_dependents_deps.dev:0 github.com/simonkoeck/FileEncryption, github.com/simonkoeck/code-execution-engine,num_dependents_deps.dev:0 github.com/simonkowallik/as3ninja, +github.com/simonkowallik/irulescan-action, github.com/simonkrenger/avelon-cloud-prometheus-exporter,num_dependents_deps.dev:0 github.com/simonkrenger/echoenv,num_dependents_deps.dev:0 github.com/simonlast/node-persist,criticality_score:0.350930 @@ -1044378,6 +1063134,7 @@ github.com/simonrelet/react-behave,num_dependents_deps.dev:0 github.com/simonrelet/react-html-template-loader,num_dependents_deps.dev:0 github.com/simonrelet/react-libraries,num_dependents_deps.dev:0 github.com/simonrelet/react-pure-html-component-loader,num_dependents_deps.dev:0 +github.com/simonrenger/ftp-cache, github.com/simonrenoult/code-complexity,num_dependents_deps.dev:0 github.com/simonrenoult/count-commits,num_dependents_deps.dev:0 github.com/simonrenoult/create-express-with-superpowers,num_dependents_deps.dev:0 @@ -1044519,6 +1063276,8 @@ github.com/simontorres/fits_utilities, github.com/simontorres/simple-version-manager, github.com/simontreny/micro-observables-persist,num_dependents_deps.dev:0 github.com/simontreny/react-native-file-logger,num_dependents_deps.dev:0 +github.com/simontunnat/action-bintray-maven-central-sync, +github.com/simontunnat/action-maven-deploy, github.com/simontunnat/maven-parent,num_dependents_deps.dev:0 github.com/simonua/gulp-set-timestamp,num_dependents_deps.dev:0 github.com/simonurmi/easy-perf,num_dependents_deps.dev:0 @@ -1044696,6 +1063455,7 @@ github.com/simonwalz/jsonschema2mk,num_dependents_deps.dev:0 github.com/simonwardjones/makefile-help, github.com/simonwardjones/sql-formatter,num_dependents_deps.dev:0 github.com/simonweytens/block-chain,num_dependents_deps.dev:0 +github.com/simonwfarrow/add-milestone-to-issue, github.com/simonwhatley/govuk-publishing-frontend,num_dependents_deps.dev:0 github.com/simonwhitaker/filecache-ruby,num_dependents_deps.dev:0 github.com/simonwhitaker/gibo,criticality_score:0.364200 @@ -1044717,6 +1063477,7 @@ github.com/simonwoodburyforget/eveio, github.com/simonxabris/diff-purge, github.com/simonxabris/simplepay-node,num_dependents_deps.dev:0 github.com/simonxeko/kai2,num_dependents_deps.dev:0 +github.com/simonxie1998/py-lambda-action, github.com/simonyouth/react-native-dirtory,num_dependents_deps.dev:0 github.com/simonz05/activity-feed, github.com/simonz05/currency,num_dependents_deps.dev:0 @@ -1045012,6 +1063773,8 @@ github.com/simple-deck/ui-deployment,num_dependents_deps.dev:0 github.com/simple-dev-tools/dynamodb-as-cache,num_dependents_deps.dev:0 github.com/simple-dev-tools/gfluent, github.com/simple-djs/simple-djs,num_dependents_deps.dev:0 +github.com/simple-elf/allure-report-action, +github.com/simple-elf/allurectl-action, github.com/simple-flex/flexless,num_dependents_deps.dev:0 github.com/simple-flex/flexsass,num_dependents_deps.dev:0 github.com/simple-hacker/vue-hacker-text,num_dependents_deps.dev:0 @@ -1045060,8 +1063823,15 @@ github.com/simple4j/WSClient,num_dependents_deps.dev:0 github.com/simple890921/web-compress-img,num_dependents_deps.dev:0 github.com/simpleSourceDev/android-toolbelt,num_dependents_deps.dev:0 github.com/simpleTeam3/simple,num_dependents_deps.dev:0 +github.com/simpleactions/create-deployment, +github.com/simpleactions/create-deployment-status, +github.com/simpleactions/create-issue-comment, +github.com/simpleactions/create-tag, +github.com/simpleactions/get-last-deployment, +github.com/simpleactions/get-pull-request, github.com/simpleai-team/simpleai,criticality_score:0.303370 github.com/simpleanalytics/django-plugin, +github.com/simpleanalytics/fail-on-found-action, github.com/simpleanalytics/gatsby-plugin,num_dependents_deps.dev:0 github.com/simpleanalytics/gridsome-plugin,num_dependents_deps.dev:0 github.com/simpleanalytics/rubyonrails-plugin,num_dependents_deps.dev:0 @@ -1045166,6 +1063936,10 @@ github.com/simpleledgerinc/bitcoinfilesjs, github.com/simpleledgerinc/grpc-bchrpc,num_dependents_deps.dev:4 github.com/simpleledgerinc/grpc-bchrpc-node, github.com/simpleledgerinc/grpc-bchrpc-web, +github.com/simplelocalize/download, +github.com/simplelocalize/github-action-cli, +github.com/simplelocalize/pull, +github.com/simplelocalize/upload, github.com/simplelogica/refinerycms-admin-locales,num_dependents_deps.dev:0 github.com/simpleman383/react-webcam-qr-scanner,num_dependents_deps.dev:0 github.com/simplemerchant/grunt-aws-lambda,num_dependents_deps.dev:0 @@ -1045252,9 +1064026,11 @@ github.com/simpleviewinc/sv-npm-assertlib,num_dependents_deps.dev:0 github.com/simpleviewinc/sv-npm-mochalib,num_dependents_deps.dev:0 github.com/simpleviewinc/sv-npm-promiselib,num_dependents_deps.dev:0 github.com/simpleviewinc/sv-vue-ui,num_dependents_deps.dev:0 +github.com/simpleviewinc/tap-build-action, github.com/simpleviewinc/tap-events-force, github.com/simpleviewinc/tap-resolver,num_dependents_deps.dev:0 github.com/simpleviewinc/tap-snack,num_dependents_deps.dev:0 +github.com/simpleviewinc/tap-task-action, github.com/simpleviewinc/typecaster,num_dependents_deps.dev:0 github.com/simpleviewinc/url-browser-require,num_dependents_deps.dev:0 github.com/simpleviewinc/util-browser,num_dependents_deps.dev:0 @@ -1045374,10 +1064150,14 @@ github.com/simplyappdevs/logging-helper,num_dependents_deps.dev:0 github.com/simplyappdevs/nodejs-prompt,num_dependents_deps.dev:0 github.com/simplyblock/sb-nodejs-sdk, github.com/simplybuilt/hubot-github-issue-lookup,num_dependents_deps.dev:0 +github.com/simplybusiness/deploy-status-action, +github.com/simplybusiness/dobby, github.com/simplybusiness/midas-touch,num_dependents_deps.dev:0 github.com/simplybusiness/rabbit_feed,num_dependents_deps.dev:0 github.com/simplybusiness/twiglet-node,num_dependents_deps.dev:0 +github.com/simplybusiness/version-forget-me-not, github.com/simplycoupons/express-www-redirect,num_dependents_deps.dev:0 +github.com/simplycubed/gitops-update, github.com/simplyedit/json-css,num_dependents_deps.dev:0 github.com/simplyedit/json-css-search,num_dependents_deps.dev:0 github.com/simplyedit/simplyview,num_dependents_deps.dev:0 @@ -1045428,6 +1064208,7 @@ github.com/simplymichael/markdown-viewer,num_dependents_deps.dev:0 github.com/simplymichael/project-up,num_dependents_deps.dev:0 github.com/simplymichael/simple-snippet-search,num_dependents_deps.dev:0 github.com/simplyopen-it/django-workflow, +github.com/simplyqio/publish-rubygems-action, github.com/simplysh/ifenv,num_dependents_deps.dev:0 github.com/simplysh/soft-scroll,num_dependents_deps.dev:0 github.com/simplyspoke/branch-prerelease,num_dependents_deps.dev:0 @@ -1045815,6 +1064596,7 @@ github.com/sindresorhus/archs,num_dependents_deps.dev:0 github.com/sindresorhus/arr-exclude,num_dependents_deps.dev:982 github.com/sindresorhus/arr-include,num_dependents_deps.dev:0 github.com/sindresorhus/array-differ,num_dependents_deps.dev:97654 +github.com/sindresorhus/array-equal, github.com/sindresorhus/array-find-index,num_dependents_deps.dev:114106 github.com/sindresorhus/array-move,num_dependents_deps.dev:592 github.com/sindresorhus/array-shuffle,num_dependents_deps.dev:1232 @@ -1045883,6 +1064665,7 @@ github.com/sindresorhus/callsites,num_dependents_deps.dev:205734 github.com/sindresorhus/camelcase,"criticality_score:0.450150,num_dependents_deps.dev:636967" github.com/sindresorhus/camelcase-keys,"criticality_score:0.432530,num_dependents_deps.dev:141548" github.com/sindresorhus/caprine,"criticality_score:0.545580,num_dependents_deps.dev:0" +github.com/sindresorhus/capture-stack-trace, github.com/sindresorhus/capture-website,"criticality_score:0.405280,num_dependents_deps.dev:30" github.com/sindresorhus/capture-website-cli,num_dependents_deps.dev:0 github.com/sindresorhus/cat-names,num_dependents_deps.dev:14 @@ -1045903,11 +1064686,14 @@ github.com/sindresorhus/cli-truncate,num_dependents_deps.dev:17196 github.com/sindresorhus/clipboard-cli,num_dependents_deps.dev:0 github.com/sindresorhus/clipboardy,"criticality_score:0.398420,num_dependents_deps.dev:9590" github.com/sindresorhus/clone-regexp,num_dependents_deps.dev:9366 +github.com/sindresorhus/clone-response, github.com/sindresorhus/clz32,num_dependents_deps.dev:4 github.com/sindresorhus/cocoa-dialog,num_dependents_deps.dev:0 github.com/sindresorhus/code-point-at,num_dependents_deps.dev:349250 github.com/sindresorhus/comment-regex,num_dependents_deps.dev:432 github.com/sindresorhus/compare-urls,num_dependents_deps.dev:182 +github.com/sindresorhus/component-emitter, +github.com/sindresorhus/component-type, github.com/sindresorhus/compressed-extensions,num_dependents_deps.dev:2 github.com/sindresorhus/condense-whitespace,num_dependents_deps.dev:356 github.com/sindresorhus/conduct,num_dependents_deps.dev:0 @@ -1045931,9 +1064717,11 @@ github.com/sindresorhus/dark-mode,num_dependents_deps.dev:0 github.com/sindresorhus/dark-mode-cli,num_dependents_deps.dev:0 github.com/sindresorhus/date-now-cli,num_dependents_deps.dev:0 github.com/sindresorhus/date-time,num_dependents_deps.dev:3536 +github.com/sindresorhus/debounce, github.com/sindresorhus/debounce-fn, github.com/sindresorhus/debug-log,num_dependents_deps.dev:3888 github.com/sindresorhus/decamelize,num_dependents_deps.dev:364802 +github.com/sindresorhus/decamelize-keys, github.com/sindresorhus/decompress-response,num_dependents_deps.dev:136374 github.com/sindresorhus/deep-assign,num_dependents_deps.dev:4762 github.com/sindresorhus/deep-strict-equal,num_dependents_deps.dev:840 @@ -1045962,6 +1064750,7 @@ github.com/sindresorhus/dofle,num_dependents_deps.dev:0 github.com/sindresorhus/dog-names,num_dependents_deps.dev:22 github.com/sindresorhus/doge-seed-cli,num_dependents_deps.dev:0 github.com/sindresorhus/dom-loaded,num_dependents_deps.dev:0 +github.com/sindresorhus/domify, github.com/sindresorhus/dot-prop,"criticality_score:0.553660,num_dependents_deps.dev:140678" github.com/sindresorhus/downgrade-root,num_dependents_deps.dev:1218 github.com/sindresorhus/duplexer3, @@ -1046030,8 +1064819,10 @@ github.com/sindresorhus/filenamify-url,num_dependents_deps.dev:1970 github.com/sindresorhus/filled-array,num_dependents_deps.dev:4684 github.com/sindresorhus/filter-console,num_dependents_deps.dev:88 github.com/sindresorhus/filter-obj,num_dependents_deps.dev:22054 +github.com/sindresorhus/find-cache-dir, github.com/sindresorhus/find-up,"criticality_score:0.346540,num_dependents_deps.dev:631194" github.com/sindresorhus/find-up-cli,num_dependents_deps.dev:0 +github.com/sindresorhus/find-up-simple, github.com/sindresorhus/find-versions,num_dependents_deps.dev:15804 github.com/sindresorhus/find-versions-cli,num_dependents_deps.dev:0 github.com/sindresorhus/finder-path,num_dependents_deps.dev:0 @@ -1046059,6 +1064850,7 @@ github.com/sindresorhus/generator-mobile-boilerplate,num_dependents_deps.dev:0 github.com/sindresorhus/generator-nm,"criticality_score:0.402800,num_dependents_deps.dev:0" github.com/sindresorhus/generator-pure,num_dependents_deps.dev:0 github.com/sindresorhus/generator-server-configs,num_dependents_deps.dev:0 +github.com/sindresorhus/get-east-asian-width, github.com/sindresorhus/get-emails,num_dependents_deps.dev:10 github.com/sindresorhus/get-emails-cli,num_dependents_deps.dev:0 github.com/sindresorhus/get-gravatar,num_dependents_deps.dev:0 @@ -1046201,6 +1064993,7 @@ github.com/sindresorhus/imul,num_dependents_deps.dev:398 github.com/sindresorhus/in-range,num_dependents_deps.dev:36 github.com/sindresorhus/indent-string,num_dependents_deps.dev:219438 github.com/sindresorhus/indent-string-cli,num_dependents_deps.dev:0 +github.com/sindresorhus/index-to-position, github.com/sindresorhus/infer-bin,num_dependents_deps.dev:0 github.com/sindresorhus/ink-big-text,num_dependents_deps.dev:88 github.com/sindresorhus/ink-box,num_dependents_deps.dev:32 @@ -1046243,6 +1065036,7 @@ github.com/sindresorhus/is-html,num_dependents_deps.dev:2612 github.com/sindresorhus/is-hyper,num_dependents_deps.dev:0 github.com/sindresorhus/is-hyperterm,num_dependents_deps.dev:0 github.com/sindresorhus/is-image,num_dependents_deps.dev:346 +github.com/sindresorhus/is-inside-container, github.com/sindresorhus/is-installed-globally,num_dependents_deps.dev:56716 github.com/sindresorhus/is-interactive,num_dependents_deps.dev:31236 github.com/sindresorhus/is-io,num_dependents_deps.dev:0 @@ -1046355,6 +1065149,8 @@ github.com/sindresorhus/maxmin,num_dependents_deps.dev:3084 github.com/sindresorhus/md5-hex,num_dependents_deps.dev:5558 github.com/sindresorhus/mem,"criticality_score:0.477860,num_dependents_deps.dev:101062" github.com/sindresorhus/meow,"criticality_score:0.569390,num_dependents_deps.dev:129272" +github.com/sindresorhus/merge-descriptors, +github.com/sindresorhus/merge-streams, github.com/sindresorhus/mimic-fn,num_dependents_deps.dev:326410 github.com/sindresorhus/mimic-response,num_dependents_deps.dev:145850 github.com/sindresorhus/mnemonic-words,num_dependents_deps.dev:6 @@ -1046378,6 +1065174,7 @@ github.com/sindresorhus/new-github-release-url,num_dependents_deps.dev:904 github.com/sindresorhus/newline-br,num_dependents_deps.dev:0 github.com/sindresorhus/node-certifi,num_dependents_deps.dev:0 github.com/sindresorhus/node-dark-mode, +github.com/sindresorhus/node-defaults, github.com/sindresorhus/node-env-webpack-plugin,num_dependents_deps.dev:0 github.com/sindresorhus/node-is-camera-on,num_dependents_deps.dev:0 github.com/sindresorhus/node-platforms,num_dependents_deps.dev:2 @@ -1046573,6 +1065370,7 @@ github.com/sindresorhus/resolve-cwd,num_dependents_deps.dev:83650 github.com/sindresorhus/resolve-from,num_dependents_deps.dev:292152 github.com/sindresorhus/resolve-global,num_dependents_deps.dev:2486 github.com/sindresorhus/resolve-pkg,num_dependents_deps.dev:1585 +github.com/sindresorhus/responselike, github.com/sindresorhus/restore-cursor,num_dependents_deps.dev:262240 github.com/sindresorhus/rev-file,num_dependents_deps.dev:0 github.com/sindresorhus/rev-hash,num_dependents_deps.dev:1140 @@ -1046593,6 +1065391,7 @@ github.com/sindresorhus/run-jxa,num_dependents_deps.dev:16 github.com/sindresorhus/run-node,num_dependents_deps.dev:2224 github.com/sindresorhus/sass-extras,num_dependents_deps.dev:0 github.com/sindresorhus/scoped-regex,num_dependents_deps.dev:18262 +github.com/sindresorhus/screenfull, github.com/sindresorhus/screenfull.js,"criticality_score:0.502190,num_dependents_deps.dev:3822" github.com/sindresorhus/sdbm,num_dependents_deps.dev:0 github.com/sindresorhus/sec,num_dependents_deps.dev:956 @@ -1046630,6 +1065429,7 @@ github.com/sindresorhus/split-lines,num_dependents_deps.dev:614 github.com/sindresorhus/split-on-first,num_dependents_deps.dev:29624 github.com/sindresorhus/srcset,num_dependents_deps.dev:4484 github.com/sindresorhus/stable-fn,num_dependents_deps.dev:0 +github.com/sindresorhus/stdin-discarder, github.com/sindresorhus/strict-import,num_dependents_deps.dev:0 github.com/sindresorhus/string-hash,num_dependents_deps.dev:64 github.com/sindresorhus/string-length,num_dependents_deps.dev:66590 @@ -1046684,6 +1065484,7 @@ github.com/sindresorhus/terminal-image-cli,num_dependents_deps.dev:0 github.com/sindresorhus/terminal-link,num_dependents_deps.dev:17750 github.com/sindresorhus/terminal-link-cli,num_dependents_deps.dev:0 github.com/sindresorhus/text-extensions,num_dependents_deps.dev:7050 +github.com/sindresorhus/throttleit, github.com/sindresorhus/ti-os,num_dependents_deps.dev:0 github.com/sindresorhus/ti-rate-reminder,num_dependents_deps.dev:0 github.com/sindresorhus/tildify,num_dependents_deps.dev:26968 @@ -1046715,6 +1065516,7 @@ github.com/sindresorhus/tsconfig,num_dependents_deps.dev:6 github.com/sindresorhus/tslint-xo,num_dependents_deps.dev:2 github.com/sindresorhus/type-fest,"criticality_score:0.530630,num_dependents_deps.dev:337322" github.com/sindresorhus/ua-string,num_dependents_deps.dev:18 +github.com/sindresorhus/unicorn-magic, github.com/sindresorhus/unique-random,num_dependents_deps.dev:3806 github.com/sindresorhus/unique-random-array,num_dependents_deps.dev:1312 github.com/sindresorhus/unique-string,num_dependents_deps.dev:85472 @@ -1046786,6 +1065588,7 @@ github.com/sinedied/mdds,num_dependents_deps.dev:0 github.com/sinedied/movie-renamer,num_dependents_deps.dev:0 github.com/sinedied/nano-gateway,num_dependents_deps.dev:0 github.com/sinedied/ngx-foldable,num_dependents_deps.dev:0 +github.com/sinedied/publish-devto, github.com/sinedied/semantic-release-npm-github,num_dependents_deps.dev:0 github.com/sinedied/sinedied,num_dependents_deps.dev:0 github.com/sinedied/smoke, @@ -1046893,6 +1065696,7 @@ github.com/singhgarima/enlightenme, github.com/singhgautam7/Python-GoldMine, github.com/singhiqbal1007/mysqlexport,num_dependents_deps.dev:0 github.com/singhjeevan30/nodejs_travis,num_dependents_deps.dev:0 +github.com/singhkshitij/announcerr, github.com/singhkshitij/line-break-paragraph,num_dependents_deps.dev:0 github.com/singhkushagra/ebooker, github.com/singhmnprt01/Custom-Deep-Neural-Network, @@ -1046924,6 +1065728,7 @@ github.com/singing-brickie/datePlus,num_dependents_deps.dev:0 github.com/singingknight/sharepoint-wpt-cookies,num_dependents_deps.dev:0 github.com/singingplayer/fastapi-pypi-proxy, github.com/singingwolfboy/ajv-base64,num_dependents_deps.dev:0 +github.com/singingwolfboy/auth0-set-application-uris, github.com/singingwolfboy/csscount,num_dependents_deps.dev:0 github.com/singingwolfboy/flask-dance,criticality_score:0.452560 github.com/singingwolfboy/flask-misaka, @@ -1047164,6 +1065969,7 @@ github.com/sinkaroid/tomoe, github.com/sinkaroid/traxex.py, github.com/sinkaszab/fieldv8n,num_dependents_deps.dev:0 github.com/sinkaszab/limbda, +github.com/sinkcup/magic-version, github.com/sinkedship/cerberus,num_dependents_deps.dev:26 github.com/sinkedship/cerberus-spring-boot,num_dependents_deps.dev:0 github.com/sinkevichmm/goinsta,num_dependents_deps.dev:0 @@ -1047295,6 +1066101,11 @@ github.com/sinoroc/fj, github.com/sinoroc/rapids, github.com/sinoroc/rst2sh5, github.com/sinoroc/tox-poetry-dev-dependencies, +github.com/sinoru/actions-setup-keychain, +github.com/sinoru/actions-setup-swift, +github.com/sinoru/actions-setup-xcode, +github.com/sinoru/actions-swift, +github.com/sinoru/actions-swiftlint, github.com/sinory/node-velocity,num_dependents_deps.dev:0 github.com/sinoturaev/backcash-,num_dependents_deps.dev:0 github.com/sinoturaev/loop,num_dependents_deps.dev:0 @@ -1047338,6 +1066149,7 @@ github.com/sinri/passover,num_dependents_deps.dev:0 github.com/sinricpro/nodejs-sdk,num_dependents_deps.dev:4 github.com/sinricpro/python-sdk, github.com/sinshutu/eslint-todo-generator,num_dependents_deps.dev:0 +github.com/sinshutu/upload-to-discord, github.com/sinshutu/v-readmore,num_dependents_deps.dev:0 github.com/sinshutu/vue-readmore,num_dependents_deps.dev:0 github.com/sinsker/tui.app-loader,num_dependents_deps.dev:0 @@ -1047440,6 +1066252,7 @@ github.com/sinyo-matu/ift-webhook,num_dependents_deps.dev:0 github.com/sinyo-matu/ifttt_webhook_rust,num_dependents_deps.dev:0 github.com/sinyo-matu/onepassword-cli,num_dependents_deps.dev:0 github.com/sinyo-matu/rust-dropbox,num_dependents_deps.dev:0 +github.com/sinyo-matu/update-cloud-translation-glossary, github.com/sinzii/meblog,num_dependents_deps.dev:0 github.com/sinzlab/datajoint-cleaner, github.com/sinzlab/jinja-compose, @@ -1047843,6 +1066656,7 @@ github.com/siriusdemon/private, github.com/siriusdemon/pytorch-QualityFace, github.com/siriusneo/dhtengu,num_dependents_deps.dev:0 github.com/siriusneo/distributed-hash-table,num_dependents_deps.dev:0 +github.com/siriusnottin/upload-coda-pack, github.com/siriusol/configer,num_dependents_deps.dev:0 github.com/siriuspluge/my-bank-service,num_dependents_deps.dev:0 github.com/siriuspluge/snippetsboxgo,num_dependents_deps.dev:0 @@ -1048034,6 +1066848,7 @@ github.com/sirupsen/logrus,"criticality_score:0.626520,num_dependents_deps.dev:2 github.com/sirupsen/logrus ,Google github.com/sirusm11/shadowizard,num_dependents_deps.dev:0 github.com/sirussu/torrent-downloader,num_dependents_deps.dev:0 +github.com/sirv/gh-action-sirv, github.com/sirv/sirv-rest-api-java,num_dependents_deps.dev:0 github.com/sirv/sirvlog,num_dependents_deps.dev:0 github.com/sirvic-tech/sparouter,num_dependents_deps.dev:0 @@ -1048057,6 +1066872,7 @@ github.com/sisbell/i2peer-tor-control,num_dependents_deps.dev:0 github.com/sisbell/i2peer-tor-installer,num_dependents_deps.dev:0 github.com/sisbell/i2peer-tor-manager,num_dependents_deps.dev:0 github.com/siscia/paho_mqtt_c-sys,num_dependents_deps.dev:0 +github.com/siscodeorg/integration-branch-merge-conflicts, github.com/sisense/graphql2rest,num_dependents_deps.dev:0 github.com/sishang/json2javabean,num_dependents_deps.dev:0 github.com/sishenhei7/candybullet,num_dependents_deps.dev:0 @@ -1048120,6 +1066936,8 @@ github.com/sisobus/SplayTree,num_dependents_deps.dev:0 github.com/sisobus/argstat, github.com/sisobus/cornerstoneBase64ImageLoader,num_dependents_deps.dev:0 github.com/sisobus/cornerstoneTools-RotatedEllipticalRoiTool,num_dependents_deps.dev:0 +github.com/sisodiya2421/pinger, +github.com/sisodiya2421/trello-manage, github.com/sisoftrg/at,num_dependents_deps.dev:0 github.com/sisong/HDiffPatch,criticality_score:0.347970 github.com/sisou/albatross-remote,num_dependents_deps.dev:0 @@ -1048297,6 +1067115,7 @@ github.com/siterra/array_flatten,num_dependents_deps.dev:0 github.com/siterun/gitnode1,num_dependents_deps.dev:0 github.com/siterun/gitnode2,num_dependents_deps.dev:0 github.com/sitesails/sitesails-js,num_dependents_deps.dev:0 +github.com/sitesauce/action, github.com/sitesauce/cli,num_dependents_deps.dev:0 github.com/siteserver/cms,criticality_score:0.420840 github.com/siteship/siteship-cli, @@ -1048352,6 +1067171,7 @@ github.com/siteworxcarlos/slush-atom,num_dependents_deps.dev:0 github.com/siteworxcarlos/slush-molecule,num_dependents_deps.dev:0 github.com/sitexw/BlockAdBlock,num_dependents_deps.dev:0 github.com/sitexw/FuckAdBlock,num_dependents_deps.dev:0 +github.com/sitezen/pr-comment-checker, github.com/sithari41441/project-lvl1-s462,num_dependents_deps.dev:0 github.com/sithari41441/project-lvl2-s463,num_dependents_deps.dev:0 github.com/sithis993/PlugSy, @@ -1048414,6 +1067234,7 @@ github.com/sititou70/rcl-golang-training,num_dependents_deps.dev:0 github.com/sitius2/query_builder,num_dependents_deps.dev:0 github.com/sitkevij/hex,num_dependents_deps.dev:0 github.com/sitkevij/no_color,num_dependents_deps.dev:0 +github.com/sitkoru/semantic-release-action, github.com/sitmo/astro-trigger-filter, github.com/sitmun/sitmun-js,num_dependents_deps.dev:0 github.com/sitna/api-sitna-jsdoc-template,num_dependents_deps.dev:0 @@ -1048529,6 +1067350,7 @@ github.com/siuying/torrent-finder,num_dependents_deps.dev:0 github.com/siuying/woot-doc,num_dependents_deps.dev:0 github.com/siva-karthi/golangvalidator,num_dependents_deps.dev:0 github.com/siva-sundar/ember-template-inspector, +github.com/siva1024/scp-deployer, github.com/siva17/my-nodejs,num_dependents_deps.dev:0 github.com/siva7170/myOwnLineShowMoreLess,num_dependents_deps.dev:0 github.com/siva7p/testlist,num_dependents_deps.dev:0 @@ -1048576,12 +1067398,14 @@ github.com/sivan/goldenfinger.js, github.com/sivan/gulp-assets-plus,num_dependents_deps.dev:0 github.com/sivan/heti,num_dependents_deps.dev:0 github.com/sivan/postcss-csssimple,num_dependents_deps.dev:0 +github.com/sivanaikk/publish-chart-kubesphere, github.com/sivanbecker/2048, github.com/sivanisentinel/testcafe-reporter-html,num_dependents_deps.dev:0 github.com/sivankanat/uipack, github.com/sivansyuee/node,num_dependents_deps.dev:0 github.com/sivant1361/sivant_hello, github.com/sivantha96/deep-copy-js,num_dependents_deps.dev:0 +github.com/sivaphilips/sample, github.com/sivapolisetty/express-swagger-generator,num_dependents_deps.dev:0 github.com/sivaprakashDesingu/react-form-input-fields,num_dependents_deps.dev:0 github.com/sivaprakashDesingu/react-input-textboxs,num_dependents_deps.dev:0 @@ -1048602,6 +1067426,7 @@ github.com/sivaramsajeev/go-wifi,num_dependents_deps.dev:0 github.com/sivasaikrishna/ismagic,num_dependents_deps.dev:0 github.com/sivasamyk/logtrail,"criticality_score:0.403180,num_dependents_deps.dev:0" github.com/sivasankar9/try_npm,num_dependents_deps.dev:0 +github.com/sivashanmukh/github-notion-pr-sync, github.com/sivasirigiri/CordovaPlugins,num_dependents_deps.dev:0 github.com/sivchand/easy-novnc,num_dependents_deps.dev:0 github.com/sivchari/dogen,num_dependents_deps.dev:0 @@ -1048627,6 +1067452,7 @@ github.com/sivizius/const_type,num_dependents_deps.dev:0 github.com/sivizius/constaes-rs,num_dependents_deps.dev:0 github.com/sivizius/http-async,num_dependents_deps.dev:0 github.com/sivizius/librs,num_dependents_deps.dev:0 +github.com/sivkovych/check-version-sh, github.com/sivrad/matrix-collection-std,num_dependents_deps.dev:0 github.com/sivrad/mot-collection,num_dependents_deps.dev:0 github.com/sivsais/passport-stepic,num_dependents_deps.dev:0 @@ -1048776,6 +1067602,7 @@ github.com/sixiyizai/syndir, github.com/sixkey/ellatu, github.com/sixleaveakkm/aws-synthetics-local, github.com/sixleaveakkm/aws-synthetics-logger-local, +github.com/sixleaveakkm/check-permission, github.com/sixlettervariables/hrm-grammar,num_dependents_deps.dev:0 github.com/sixlettervariables/hrmsandbox,num_dependents_deps.dev:0 github.com/sixlettervariables/sierra-ecg-tools,num_dependents_deps.dev:0 @@ -1048942,6 +1067769,7 @@ github.com/sjaakp/telex,num_dependents_deps.dev:0 github.com/sjaenick/pprodigal, github.com/sjaensch/aiobravado, github.com/sjaensch/bravado-asyncio, +github.com/sjafferali/logstash-config-lint-action, github.com/sjafferi/svelte-images,num_dependents_deps.dev:0 github.com/sjagoe/graystruct, github.com/sjagoe/haas, @@ -1049023,6 +1067851,7 @@ github.com/sjclijie/gulp-higo-cdn,num_dependents_deps.dev:0 github.com/sjclijie/gulp-higo-cdn-replace,num_dependents_deps.dev:0 github.com/sjclijie/higo-cdn,num_dependents_deps.dev:0 github.com/sjcrank/fluxate,num_dependents_deps.dev:0 +github.com/sjdaws/app-token, github.com/sjdirect/abot,criticality_score:0.377090 github.com/sjdowney/pyduq, github.com/sjdv1982/seamless, @@ -1049069,6 +1067898,7 @@ github.com/sjhoglund/cbpi4-PressureSensor, github.com/sjhorn/node-minhash,num_dependents_deps.dev:0 github.com/sjhorn/node-simhash,num_dependents_deps.dev:0 github.com/sjhsjh721/gnb-test,num_dependents_deps.dev:0 +github.com/sjinks/action-clean-up-artifacts, github.com/sjinks/eslint-gha-formatter,num_dependents_deps.dev:0 github.com/sjinks/express-ip-filter-middleware,num_dependents_deps.dev:0 github.com/sjinks/fastify-favicon,num_dependents_deps.dev:0 @@ -1049084,6 +1067914,7 @@ github.com/sjinks/node-inet-xtoy,num_dependents_deps.dev:0 github.com/sjinks/node-statvfs,num_dependents_deps.dev:0 github.com/sjinks/nodejs-array-unique,num_dependents_deps.dev:0 github.com/sjinks/opentelemetry-plugin-better-sqlite3,num_dependents_deps.dev:0 +github.com/sjinks/setup-wordpress-test-library, github.com/sjinks/sri-calc,num_dependents_deps.dev:0 github.com/sjinks/winston-mail-lite,num_dependents_deps.dev:0 github.com/sjisntsuperman/cli-demo,num_dependents_deps.dev:0 @@ -1049298,6 +1068129,7 @@ github.com/sjsafranek/distributed-iot,num_dependents_deps.dev:0 github.com/sjsafranek/find5,num_dependents_deps.dev:0 github.com/sjsaul1101/expandable-scrollable-drawer,num_dependents_deps.dev:0 github.com/sjschmidt44/pg-json,num_dependents_deps.dev:0 +github.com/sjscymru/action-ceedling-unit-test, github.com/sjsdfg/common-lang-in-go,num_dependents_deps.dev:0 github.com/sjskdas/aText, github.com/sjspielman/phyphy, @@ -1049326,6 +1068158,7 @@ github.com/sjug/buildah,num_dependents_deps.dev:0 github.com/sjug/cri-o,num_dependents_deps.dev:0 github.com/sjug/origin,num_dependents_deps.dev:0 github.com/sjuliper7/sbit,num_dependents_deps.dev:0 +github.com/sjultra/confluence-markdown-sync, github.com/sjurba/gulp-js2css,num_dependents_deps.dev:0 github.com/sjurba/rebase-editor,num_dependents_deps.dev:0 github.com/sjustintaylor/prng,num_dependents_deps.dev:0 @@ -1049333,6 +1068166,7 @@ github.com/sjuulwijnia/kx-modals,num_dependents_deps.dev:0 github.com/sjuvekar/reactive-programming-scala,criticality_score:0.328050 github.com/sjvrijn/ModEA, github.com/sjvrijn/mf2, +github.com/sjvrijn/pytest-last-failed, github.com/sjwall/MaterialTapTargetPrompt,criticality_score:0.363140 github.com/sjwall/mdx-mermaid,num_dependents_deps.dev:0 github.com/sjwang90/telegraf,num_dependents_deps.dev:0 @@ -1049515,6 +1068349,7 @@ github.com/skale-me/node-parquet,num_dependents_deps.dev:0 github.com/skale-me/skale,num_dependents_deps.dev:0 github.com/skale-me/skale-engine,num_dependents_deps.dev:0 github.com/skale-me/skale-ml,num_dependents_deps.dev:0 +github.com/skale12/code-sign-action, github.com/skalee/active_model_serializers-namespaces,num_dependents_deps.dev:0 github.com/skalekarr/gatsby-source-strapi, github.com/skalenetwork/IMA, @@ -1049629,6 +1068464,7 @@ github.com/skar404/sputnik_bot,num_dependents_deps.dev:0 github.com/skarab42/rollup-plugin-css-export,num_dependents_deps.dev:0 github.com/skarakasoglu/aybush-bot-api,num_dependents_deps.dev:0 github.com/skarakasoglu/discord-aybush-bot,num_dependents_deps.dev:0 +github.com/skaramicke/gpt-developer, github.com/skarankevich/ruplu,num_dependents_deps.dev:0 github.com/skaratech/tiny,num_dependents_deps.dev:0 github.com/skarbaro/test_report_notif,num_dependents_deps.dev:0 @@ -1049685,6 +1068521,10 @@ github.com/skarpyak/react-horizontal-gauge,num_dependents_deps.dev:0 github.com/skarthickkannan/boxshadow, github.com/skarthickkannan/yourlocationapp,num_dependents_deps.dev:0 github.com/skarthikayan/react-npm-module,num_dependents_deps.dev:0 +github.com/skarthikeyan96/PR-Summary, +github.com/skarthikeyan96/PR-Summary-github-action, +github.com/skarthikeyan96/The-Security-Feed, +github.com/skarthikeyan96/kross-post-gh-actions, github.com/skarytko/node-dynatrace,num_dependents_deps.dev:0 github.com/skarytko/node-key2dyn,num_dependents_deps.dev:0 github.com/skaryys/Skar.IS,num_dependents_deps.dev:0 @@ -1049760,6 +1068600,7 @@ github.com/skaughtx0r/pip-login, github.com/skaughtx0r/webglimpse,num_dependents_deps.dev:0 github.com/skaulana/onedrive-path-scrub,num_dependents_deps.dev:0 github.com/skaut/skautis-py, +github.com/skaut/wordpress-version-checker, github.com/skavinvarnan/cryptlib,num_dependents_deps.dev:0 github.com/skavngr/rapidscan,criticality_score:0.317690 github.com/skawa-universe/distributing-outputstream,num_dependents_deps.dev:0 @@ -1049787,6 +1068628,9 @@ github.com/skazska/tools-data-transform,num_dependents_deps.dev:4 github.com/skazure/DevopsDotNet,num_dependents_deps.dev:0 github.com/skazzyy/sources-gradle-plugin,num_dependents_deps.dev:0 github.com/skb1129/react-native-change-icon,num_dependents_deps.dev:0 +github.com/skbeh/mpv-winbuild-action, +github.com/skbhati199/Hello-World-Docker, +github.com/skbhati199/versionUpgrad, github.com/skbkontur-retail/eslint-config-skbkontur-retail,num_dependents_deps.dev:0 github.com/skbkontur/KFixture,num_dependents_deps.dev:0 github.com/skbkontur/billing-ui,num_dependents_deps.dev:0 @@ -1049860,6 +1068704,7 @@ github.com/skeema/skeema,"criticality_score:0.412510,num_dependents_deps.dev:0" github.com/skeema/tengo,num_dependents_deps.dev:4 github.com/skeep/chanakya, github.com/skeep/sqt,num_dependents_deps.dev:0 +github.com/skeet70/default-project-board-action, github.com/skeeto/NativeGuide,num_dependents_deps.dev:0 github.com/skeeto/chacha-go,num_dependents_deps.dev:0 github.com/skeeto/cubehash,num_dependents_deps.dev:0 @@ -1050277,6 +1069122,7 @@ github.com/skiddoo/angular-abortable-requests,num_dependents_deps.dev:0 github.com/skiddoo/angular-lock,num_dependents_deps.dev:0 github.com/skiddoo/grunt-convert-svg-to-png,num_dependents_deps.dev:0 github.com/skiddoo/grunt-svg-adobe-cleaner, +github.com/skiddph/actions-env, github.com/skidxjq/npm-test-pkg,num_dependents_deps.dev:0 github.com/skidxjq/react-for-markdown-loader, github.com/skieffer/VerTeX, @@ -1050362,6 +1069208,8 @@ github.com/skimcom/node-gm-buffer, github.com/skimhub/pyToXml, github.com/skimia/quiver,num_dependents_deps.dev:0 github.com/skimit/orbital, +github.com/skimit/pypi-license-checker-github-action, +github.com/skimit/validate-pull-request-title-github-action, github.com/skimklin/umi-plugin-unstated,num_dependents_deps.dev:0 github.com/skimmilk1172/lotide,num_dependents_deps.dev:0 github.com/skimotv/m3u8adskipper,num_dependents_deps.dev:0 @@ -1050533,6 +1069381,10 @@ github.com/skjaldbaka17/setup-quotes-db,num_dependents_deps.dev:0 github.com/skjaldbaka17/whothefucksaidthat,num_dependents_deps.dev:0 github.com/skjerns/mat7.3, github.com/skji/ezresume,num_dependents_deps.dev:0 +github.com/skjnldsv/block-fixup-merge-action, +github.com/skjnldsv/check-actor-permission, +github.com/skjnldsv/parse-command-comment, +github.com/skjnldsv/read-package-engines-version-actions, github.com/skjnldsv/vue-plyr,num_dependents_deps.dev:0 github.com/skjo0c/react-monthly-heatmap,num_dependents_deps.dev:0 github.com/skjolber/3d-bin-container-packing,num_dependents_deps.dev:0 @@ -1050548,11 +1069400,13 @@ github.com/skjolber/json-log-domain,num_dependents_deps.dev:3 github.com/skjolber/json-log-filter,num_dependents_deps.dev:36 github.com/skjolber/log-domain,num_dependents_deps.dev:1 github.com/skjolber/logback-logstash-syntax-highlighting-decorators,num_dependents_deps.dev:0 +github.com/skjolber/maven-cache-github-action, github.com/skjolber/maven-pom-recorder,num_dependents_deps.dev:0 github.com/skjolber/mockito-rest-spring,num_dependents_deps.dev:8 github.com/skjolber/mockito-soap-cxf,num_dependents_deps.dev:0 github.com/skjolber/ndef-tools-for-android,num_dependents_deps.dev:0 github.com/skjolber/sesseltjonna-csv,num_dependents_deps.dev:4 +github.com/skjolber/tidy-cache-github-action, github.com/skjolber/tolltariffen,num_dependents_deps.dev:0 github.com/skjolber/unzip-csv,num_dependents_deps.dev:0 github.com/skjolber/xml-log-filter,num_dependents_deps.dev:48 @@ -1050566,6 +1069420,7 @@ github.com/skkim-01/thread-pool,num_dependents_deps.dev:0 github.com/skkim-01/timer,num_dependents_deps.dev:0 github.com/skkim7821/redux-websocket,num_dependents_deps.dev:0 github.com/skku-capstone-2020-fall-group13/logic, +github.com/skkwon80/hello-world-javascript-action, github.com/sklandrausis/ExperimentsLogReader, github.com/sklangen/TRF, github.com/sklangen/trfedit, @@ -1050719,6 +1069574,7 @@ github.com/skolmer/es2015-i18n-tag,num_dependents_deps.dev:10 github.com/skolmer/i18n-tag-examples,num_dependents_deps.dev:0 github.com/skolmer/i18n-tag-schema,num_dependents_deps.dev:0 github.com/skoloCFD/skolo, +github.com/skolobov/gh-action-slack, github.com/skolobov/mkrel,num_dependents_deps.dev:0 github.com/skolorz/lint-delta,num_dependents_deps.dev:0 github.com/skolsuper/pybbm_private_messages, @@ -1050977,6 +1069833,7 @@ github.com/skrenek/clunify,num_dependents_deps.dev:0 github.com/skrenek/grunt-http-verify,num_dependents_deps.dev:0 github.com/skrenek/http-verify,num_dependents_deps.dev:0 github.com/skrenek/pm2-socket-logger, +github.com/skrepr/github-backup-action, github.com/skreuzer/bitcoind_exporter,num_dependents_deps.dev:0 github.com/skribble-in/milotic,num_dependents_deps.dev:0 github.com/skriems/muttmates,num_dependents_deps.dev:0 @@ -1051041,7 +1069898,12 @@ github.com/sksamuel/scapegoat,"criticality_score:0.494930,num_dependents_deps.de github.com/sksamuel/scrimage,"criticality_score:0.461410,num_dependents_deps.dev:0" github.com/sksamuel/tabby,num_dependents_deps.dev:0 github.com/sksankarraj/rc-data-table,num_dependents_deps.dev:0 +github.com/sksat/action-clippy, +github.com/sksat/b2-download-action, +github.com/sksat/b2-upload-action, github.com/sksat/minecraft-whitelist-validator,num_dependents_deps.dev:0 +github.com/sksat/reportlab-action, +github.com/sksat/setup-rye, github.com/skseth/dyn-conf,num_dependents_deps.dev:0 github.com/skseth/gulp-vtouch,num_dependents_deps.dev:0 github.com/skseth/scaffolder,num_dependents_deps.dev:0 @@ -1051168,6 +1070030,7 @@ github.com/skull-ai-research/yanlp, github.com/skullcarvercoder/manubot,num_dependents_deps.dev:0 github.com/skullcrusher/skully-framework,num_dependents_deps.dev:0 github.com/skullernet/pakserve,num_dependents_deps.dev:0 +github.com/skullface/issue-comment-template-action, github.com/skullkon/go_lab,num_dependents_deps.dev:0 github.com/skullkon/gorestapi,num_dependents_deps.dev:0 github.com/skullquake/gojasamples,num_dependents_deps.dev:0 @@ -1051272,6 +1070135,9 @@ github.com/skx/dns-api-go,num_dependents_deps.dev:0 github.com/skx/ephemeris,num_dependents_deps.dev:0 github.com/skx/evalfilter,num_dependents_deps.dev:0 github.com/skx/foth,num_dependents_deps.dev:0 +github.com/skx/github-action-build, +github.com/skx/github-action-publish-binaries, +github.com/skx/github-action-tester, github.com/skx/gobasic,num_dependents_deps.dev:0 github.com/skx/marionette,num_dependents_deps.dev:0 github.com/skx/monkey,num_dependents_deps.dev:0 @@ -1051560,9 +1070426,13 @@ github.com/skyeyefront/vue-directive-check,num_dependents_deps.dev:0 github.com/skyeyefront/vue-filter-language,num_dependents_deps.dev:0 github.com/skyeyefront/vue-transition-animate,num_dependents_deps.dev:0 github.com/skyfall-team/skyfalljs,num_dependents_deps.dev:0 +github.com/skyfe79/awesome-readme-generator, +github.com/skyfe79/hugo-with-github-issues, github.com/skyfetch/Skyfetch-API,num_dependents_deps.dev:0 github.com/skyfielders/python-skyfield,criticality_score:0.594790 github.com/skyfishjy/android-ripple-background,num_dependents_deps.dev:0 +github.com/skyfjell/manifest-lint, +github.com/skyfjell/terraform-ci, github.com/skyflow-io/CLI, github.com/skyflow-io/npm-skyflow,num_dependents_deps.dev:0 github.com/skyflow-io/npm-skyflow-cli,num_dependents_deps.dev:0 @@ -1051702,6 +1070572,8 @@ github.com/skyloud/nuxt-plugin,num_dependents_deps.dev:0 github.com/skyloud/skyenv,num_dependents_deps.dev:0 github.com/skyman/lc3methodgen, github.com/skymanrm/SimplePictureUploaderVue,num_dependents_deps.dev:0 +github.com/skymatic/code-sign-action, +github.com/skymatic/semver-validation-action, github.com/skymavis/clap-nested,num_dependents_deps.dev:0 github.com/skymaya/unitconvert, github.com/skymaze/h264-profile-level-id, @@ -1051713,9 +1070585,12 @@ github.com/skyme5/magzdb, github.com/skyme5/snapchat-dl, github.com/skymill/automated-ebs-snapshots, github.com/skymill/aws-ec2-assign-elastic-ip, +github.com/skymins04/r2-dir-upload, github.com/skynav/ttt,num_dependents_deps.dev:0 github.com/skyneko/Azsa, github.com/skyneko/yande-api,num_dependents_deps.dev:0 +github.com/skynet-core/nfpm, +github.com/skynet-core/nim, github.com/skynet-engineering/dom-to-image,num_dependents_deps.dev:0 github.com/skynet0590/inswap,num_dependents_deps.dev:0 github.com/skynet2/ngx-google-places-autocomplete,num_dependents_deps.dev:0 @@ -1051952,12 +1070827,17 @@ github.com/skywalkerd/CBuffer-resizable,"num_dependents_deps.dev:0,num_dependent github.com/skywalkerd/binaryheap-resizable,num_dependents_deps.dev:0 github.com/skywalkerd/objdefined,num_dependents_deps.dev:0 github.com/skywalkerd/task-queue,num_dependents_deps.dev:0 +github.com/skywalkeretw/ibm-code-engine-function-test-github-action, +github.com/skywalkeretw/ibm-code-engine-github-action, github.com/skywalkerylh/visSCCNet, github.com/skywalkinnovations/moment-business,num_dependents_deps.dev:0 +github.com/skywall/universal-apk-builder, github.com/skywalletgit/skywallet-nodejs-sdk,num_dependents_deps.dev:0 github.com/skywangc/configuration-form, github.com/skywarth/Fenrir-wolfpack-simulator,num_dependents_deps.dev:0 github.com/skywarth/Lothar,num_dependents_deps.dev:0 +github.com/skywarth/vite-github-pages-deployer, +github.com/skywarth/vite-vue-github-pages-deploy, github.com/skyway/skyway-js-sdk,num_dependents_deps.dev:0 github.com/skyway/skyway-recorder-sdk,num_dependents_deps.dev:0 github.com/skywickenden/checkit-money,num_dependents_deps.dev:0 @@ -1052034,6 +1070914,9 @@ github.com/slTrust/react-gulu-test-1,num_dependents_deps.dev:0 github.com/slTrust/react-ui-210120,num_dependents_deps.dev:0 github.com/slaawwa/gulp-git-sftp,num_dependents_deps.dev:0 github.com/slaawwa/hapi-auth-jwt2-payload,num_dependents_deps.dev:0 +github.com/slabruyere/use-private-action, +github.com/slabstech/action-cuda-compiler, +github.com/slabstech/action-deploy-container-to-registry, github.com/slacesa/simple_swift_client,num_dependents_deps.dev:0 github.com/slacgismo/pv-system-profiler, github.com/slach/clickhouse-flamegraph,num_dependents_deps.dev:0 @@ -1052058,6 +1070941,7 @@ github.com/slackapi/python-rtmbot,criticality_score:0.319630 github.com/slackapi/python-slack-events-api,criticality_score:0.376990 github.com/slackapi/python-slack-sdk,criticality_score:0.577810 github.com/slackapi/python-slackclient, +github.com/slackapi/slack-github-action, github.com/slackapi4j/slack-api-4j,num_dependents_deps.dev:0 github.com/slackboxster/js-class-enhancements,num_dependents_deps.dev:0 github.com/slacker07/is-it-decimal,num_dependents_deps.dev:0 @@ -1052090,6 +1070974,7 @@ github.com/slacky-bot/slacky-middleware-white-black-list,num_dependents_deps.dev github.com/slackyguy/data_structures_samples,num_dependents_deps.dev:0 github.com/slaclab/PyEmittance, github.com/slaclab/lacquer, +github.com/slaclab/lcls-rhel6-conda-pack, github.com/slaclab/lume, github.com/slaclab/paws, github.com/slaclab/psdm_qs_cli, @@ -1052114,6 +1070999,7 @@ github.com/sladkovm/stravaio, github.com/sladkovm/vmpy, github.com/sladwig/KeyboardJS,num_dependents_deps.dev:0 github.com/sladwig/dooy,num_dependents_deps.dev:0 +github.com/sladyn98/auto-go-format, github.com/sladyn98/hawk-eye-npm,num_dependents_deps.dev:0 github.com/slaerjs/core,num_dependents_deps.dev:0 github.com/slafs/click-utils, @@ -1052304,6 +1071190,7 @@ github.com/slashman/circular,num_dependents_deps.dev:0 github.com/slashmili/alchemist.vim,criticality_score:0.335650 github.com/slashmili/django-jalali, github.com/slashmili/python-jalali, +github.com/slashmo/install-swift, github.com/slashnot/taffydb-es, github.com/slashpai/bugboss,num_dependents_deps.dev:0 github.com/slashpai/go-refresher,num_dependents_deps.dev:0 @@ -1052465,6 +1071352,7 @@ github.com/slavau/go-jira,num_dependents_deps.dev:0 github.com/slavayssiere/helm_python, github.com/slavcoder/lawa,num_dependents_deps.dev:0 github.com/slavcoder/template-arrays,num_dependents_deps.dev:0 +github.com/slavcodev/coverage-monitor-action, github.com/slavede/bootstrap-ui-datetime-picker,num_dependents_deps.dev:0 github.com/slavede/generator-angular-proxy,num_dependents_deps.dev:0 github.com/slavede/jquery-connections,num_dependents_deps.dev:0 @@ -1052532,6 +1071420,8 @@ github.com/slavovojacek/agent,num_dependents_deps.dev:0 github.com/slavovojacek/logger,num_dependents_deps.dev:0 github.com/slavrix/ngx-time-scheduler,num_dependents_deps.dev:0 github.com/slavvka/homebridge-fanju-fjw4,num_dependents_deps.dev:0 +github.com/slawa4s/Utbot-Action, +github.com/slawciu/gitlab-issue-action, github.com/slaweet/ink-chart,num_dependents_deps.dev:0 github.com/slaweet/release-stats-csv,num_dependents_deps.dev:0 github.com/slawekkolodziej/aws-signing-utils,num_dependents_deps.dev:0 @@ -1052642,6 +1071532,7 @@ github.com/sleep3r/garrus, github.com/sleepdeprivation/ChessJS,num_dependents_deps.dev:0 github.com/sleeper/rack-auth-krb,num_dependents_deps.dev:0 github.com/sleeping-barber/go-network-examples,num_dependents_deps.dev:0 +github.com/sleeping-winds/psn-trophies-action, github.com/sleeping1943/shago,num_dependents_deps.dev:0 github.com/sleepingevil/jwks-client-browser,num_dependents_deps.dev:0 github.com/sleepingevil/l10n-doctor,num_dependents_deps.dev:0 @@ -1052713,6 +1071604,9 @@ github.com/sleepyfox97/leetcode_go,num_dependents_deps.dev:0 github.com/sleepyfran/validum,num_dependents_deps.dev:0 github.com/sleepyocean/shiori,num_dependents_deps.dev:0 github.com/sleepyowl/jsprolog,num_dependents_deps.dev:0 +github.com/sleepypikachu/actions-branch-to-docker-tag-name, +github.com/sleepypikachu/actions-find-docker-paths, +github.com/sleepypikachu/actions-path-to-docker-image-name, github.com/sleepypikachu/yulelog,num_dependents_deps.dev:0 github.com/sleepytaka/graph_tutorial_go_sample,num_dependents_deps.dev:0 github.com/sleexyz/callable,num_dependents_deps.dev:0 @@ -1052727,6 +1071621,7 @@ github.com/sleeyax/gotcha,num_dependents_deps.dev:0 github.com/sleeyax/imdbid-to-title,num_dependents_deps.dev:0 github.com/sleeyax/urlvalues,num_dependents_deps.dev:0 github.com/sleeyax/yamldb,num_dependents_deps.dev:0 +github.com/slegare/write-file-action, github.com/sleibman/nose-hipchat, github.com/sleibrock/Unit.py, github.com/sleighjs/sleigh-cli,num_dependents_deps.dev:0 @@ -1052933,6 +1071828,7 @@ github.com/slidevjs/slidev,num_dependents_deps.dev:58 github.com/slidevjs/themes,num_dependents_deps.dev:0 github.com/slidewiki/react-image-cropper,num_dependents_deps.dev:0 github.com/slidoapp/dbt-superset-lineage, +github.com/slidoapp/setup-advancedinstaller, github.com/sliem/barrett, github.com/sliemansalah/salah-vue,num_dependents_deps.dev:0 github.com/sliemansalah/sliemanlib,num_dependents_deps.dev:0 @@ -1053044,6 +1071940,8 @@ github.com/slimcdk/pymitblod, github.com/slimcheng/vue-date-format,num_dependents_deps.dev:0 github.com/slimcheng/vue-qriousjs,num_dependents_deps.dev:0 github.com/slimdevl/go-simple-package,num_dependents_deps.dev:0 +github.com/slime-hatena/lerna-changelog-action, +github.com/slime-hatena/semantic-versioning-calculator-action, github.com/slime-io/slime,num_dependents_deps.dev:0 github.com/slime-lang/phoenix_slime,criticality_score:0.358710 github.com/slime-lang/slime,criticality_score:0.343170 @@ -1053105,6 +1072003,7 @@ github.com/slingamn/gopacket,num_dependents_deps.dev:0 github.com/slingamn/mureq, github.com/slingamn/titlebot,num_dependents_deps.dev:0 github.com/slingamn/vault-exfiltrate,num_dependents_deps.dev:0 +github.com/slingdata-io/sling-action, github.com/slingpy/slingpy, github.com/slinjhu/tree-inspector, github.com/slinkity/slinkity,num_dependents_deps.dev:0 @@ -1053144,7 +1072043,9 @@ github.com/slissner/HoroscopeDrawer,num_dependents_deps.dev:0 github.com/slissner/office-js-word-react-starter,num_dependents_deps.dev:0 github.com/sliterok/NodeChan,num_dependents_deps.dev:0 github.com/sliteteam/eslint-plugin-slite,num_dependents_deps.dev:0 +github.com/sliteteam/github-action-git-crypt-unlock, github.com/sliteteam/reconnecting-websocket,num_dependents_deps.dev:0 +github.com/sliteteam/slack-message, github.com/sliu59/uni-template,num_dependents_deps.dev:0 github.com/sliuqin/img2base64,num_dependents_deps.dev:0 github.com/sliuqin/node-github,num_dependents_deps.dev:0 @@ -1053313,6 +1072214,7 @@ github.com/slok/reload,num_dependents_deps.dev:0 github.com/slok/service-level-operator-sloth-migrator,num_dependents_deps.dev:0 github.com/slok/sloth,num_dependents_deps.dev:0 github.com/slok/sloth-common-sli-plugins,num_dependents_deps.dev:0 +github.com/slok/tfe-drift-action, github.com/sloki-project/sloki,num_dependents_deps.dev:0 github.com/slomek/gh,num_dependents_deps.dev:0 github.com/slomek/go3mports,num_dependents_deps.dev:0 @@ -1053536,10 +1072438,13 @@ github.com/slrtbtfs/promql-lsp,num_dependents_deps.dev:0 github.com/slrunteam/slrun,num_dependents_deps.dev:0 github.com/slrunteam/slrun-bunyan-stream,num_dependents_deps.dev:0 github.com/slrz/runtopo,num_dependents_deps.dev:0 +github.com/sls-mentor/sls-mentor-github-action, github.com/sls-open/think-eolinker-apishop,num_dependents_deps.dev:0 github.com/sls-vue-lib-test/sls-vue-ui,num_dependents_deps.dev:0 +github.com/slsa-framework/github-actions-demo, github.com/slswt/javascript,num_dependents_deps.dev:0 github.com/slswt/utils,num_dependents_deps.dev:0 +github.com/sltestinfra/iscan-github-action, github.com/slu1992/qtlib, github.com/slub/pylibrml, github.com/slucheninov/aws-s3-examples,num_dependents_deps.dev:0 @@ -1053729,6 +1072634,7 @@ github.com/sm7610/rl-policy-composition,Google github.com/sm85/PUMA, github.com/smShakil/feature-list,num_dependents_deps.dev:0 github.com/sma-rty/native-on-prem,num_dependents_deps.dev:0 +github.com/sma11black/hexo-action, github.com/smaato/dirg, github.com/smaato/switchgear,num_dependents_deps.dev:0 github.com/smably/babel-plugin-react-css-modules,num_dependents_deps.dev:0 @@ -1053736,6 +1072642,7 @@ github.com/smably/babel-plugin-rewrite-stylename,num_dependents_deps.dev:0 github.com/smably/pretty-quick,num_dependents_deps.dev:0 github.com/smably/smably,num_dependents_deps.dev:0 github.com/smac89/make.env, +github.com/smacdonald-parallelz/github-action-get-pom-version, github.com/smachin-vonage/node-red-contrib-vonagevoice,num_dependents_deps.dev:0 github.com/smack0007/file-new-project,num_dependents_deps.dev:0 github.com/smack0007/go-html-canvas,num_dependents_deps.dev:0 @@ -1054026,6 +1072933,7 @@ github.com/smallstep/crypto,num_dependents_deps.dev:178 github.com/smallstep/hello-mtls,num_dependents_deps.dev:0 github.com/smallstep/linkedca,num_dependents_deps.dev:36 github.com/smallstep/nosql,num_dependents_deps.dev:232 +github.com/smallstep/pkgbuild-action, github.com/smallstep/step-issuer,num_dependents_deps.dev:0 github.com/smallstep/zcrypto,num_dependents_deps.dev:0 github.com/smallstoneapps/bitmap-loader,num_dependents_deps.dev:0 @@ -1054092,7 +1073000,9 @@ github.com/smanurung/packform-app,num_dependents_deps.dev:0 github.com/smanwaring/eslint-plugin-punctuation, github.com/smapiot/baywatch,num_dependents_deps.dev:0 github.com/smapiot/piral,"criticality_score:0.519490,num_dependents_deps.dev:508" +github.com/smapiot/publish-pilet-action, github.com/smapiot/sample-pilet-service,num_dependents_deps.dev:0 +github.com/smapiot/send-tweet-v2-action, github.com/smappee/node-red-contrib-smappee,num_dependents_deps.dev:0 github.com/smappee/pysmappee, github.com/smappi/smappi,num_dependents_deps.dev:0 @@ -1054769,6 +1073679,7 @@ github.com/smasala/ColResize,num_dependents_deps.dev:0 github.com/smasala/firebrick,num_dependents_deps.dev:0 github.com/smasala/generator-firebrick,num_dependents_deps.dev:0 github.com/smasala/generator-firebrick-ui,num_dependents_deps.dev:0 +github.com/smasala/jira-ticket-assigner, github.com/smasala/json-asset-webpack-plugin,num_dependents_deps.dev:0 github.com/smasala/jwt-verifier,num_dependents_deps.dev:0 github.com/smasala/ng-daterangepicker,num_dependents_deps.dev:0 @@ -1054778,6 +1073689,7 @@ github.com/smasala/responsive-tables-js,num_dependents_deps.dev:0 github.com/smasala/scaletextjs,num_dependents_deps.dev:0 github.com/smasala/stumblejs,num_dependents_deps.dev:0 github.com/smashah/chargebee-card,num_dependents_deps.dev:0 +github.com/smashah/github-activity-readme, github.com/smashah/ignorecheck,num_dependents_deps.dev:0 github.com/smashah/lit-place-input, github.com/smashah/places-autocomplete-input,num_dependents_deps.dev:0 @@ -1054873,6 +1073785,7 @@ github.com/smaxtec/react-native-queue,num_dependents_deps.dev:0 github.com/smaxwellstewart/gitenv,num_dependents_deps.dev:0 github.com/smaxwellstewart/mongo-lambda,num_dependents_deps.dev:0 github.com/smaxwellstewart/toothache,num_dependents_deps.dev:4 +github.com/smay1613/cpp-linter-action, github.com/smaye81/karma-ng-json2js-preprocessor-requirejs,num_dependents_deps.dev:0 github.com/smayus/excel2jsonschema,num_dependents_deps.dev:0 github.com/smayya337/libcodebusters, @@ -1055034,6 +1073947,7 @@ github.com/smeleshkin/react-before-after-slider-component,num_dependents_deps.de github.com/smelliot/react-data-grid,num_dependents_deps.dev:0 github.com/smellman/Leaflet.CenterCross,num_dependents_deps.dev:0 github.com/smellslikeml/photoscope, +github.com/smelly-python/smell-my-pr, github.com/smellyshovel/custom-context-menu,num_dependents_deps.dev:0 github.com/smellyshovel/vue-custom-context-menu,num_dependents_deps.dev:0 github.com/smelnicki/magic-conch,num_dependents_deps.dev:0 @@ -1055449,6 +1074363,7 @@ github.com/smithki/usable-react,num_dependents_deps.dev:176 github.com/smithki/vue-adaptable-div,num_dependents_deps.dev:0 github.com/smithki/vuex-ts,num_dependents_deps.dev:0 github.com/smithki/watch-resize, +github.com/smithki/xvfb-action, github.com/smithki/zombi,num_dependents_deps.dev:0 github.com/smithkre/django-lazy-settings, github.com/smithkre/react-native-i18n-localize,num_dependents_deps.dev:0 @@ -1055461,6 +1074376,7 @@ github.com/smithtal/dollars-to-words,num_dependents_deps.dev:0 github.com/smithx10/zoneaggregator,num_dependents_deps.dev:0 github.com/smitladani-crest/write-docker-actions,num_dependents_deps.dev:0 github.com/smitnet/smit-store-sdk-js,num_dependents_deps.dev:0 +github.com/smitp/amazon-ecs-run-task, github.com/smitpatel1010/multi-select-tree,num_dependents_deps.dev:0 github.com/smitraval/stencil-custom-wilfried, github.com/smitssjors/ddenv, @@ -1055621,6 +1074537,7 @@ github.com/smodav/fluent-indexed-db,num_dependents_deps.dev:0 github.com/smodean/cadesplugin-crypto-pro-api,num_dependents_deps.dev:0 github.com/smodi2-tmo/tmobile-api-security-lib,num_dependents_deps.dev:0 github.com/smodyo/plugin-vue,num_dependents_deps.dev:0 +github.com/smoench/deptrac-action, github.com/smoex-frontend/smoex-common-web,num_dependents_deps.dev:0 github.com/smoglica/smodale,num_dependents_deps.dev:0 github.com/smogon/damage-calc,num_dependents_deps.dev:0 @@ -1055648,6 +1074565,7 @@ github.com/smok95/gokiwoom,num_dependents_deps.dev:0 github.com/smoke-trees/aes-passwd,num_dependents_deps.dev:0 github.com/smoke-trees/forest-utils, github.com/smokeStar/vue-ios-timer,num_dependents_deps.dev:0 +github.com/smokedlinq/powershell-devops, github.com/smokenetwork/smoke-js,num_dependents_deps.dev:0 github.com/smokenmirrors-tech/launchpadder2,num_dependents_deps.dev:0 github.com/smokerbag/ibmi,num_dependents_deps.dev:0 @@ -1055704,6 +1074622,7 @@ github.com/smoleg/project,num_dependents_deps.dev:0 github.com/smolespi/session-rethinkdb-ts,num_dependents_deps.dev:0 github.com/smoliji/schematic-traverse-node,num_dependents_deps.dev:0 github.com/smoliver/react-malarquee, +github.com/smoll/setup-flyctl, github.com/smolleyes/node-upnp-client,num_dependents_deps.dev:0 github.com/smollweide/chalk-template,num_dependents_deps.dev:0 github.com/smollweide/contribute-buddy,num_dependents_deps.dev:0 @@ -1055762,6 +1074681,8 @@ github.com/smooth-code/smooth-doc,num_dependents_deps.dev:0 github.com/smooth-code/smooth.js,num_dependents_deps.dev:0 github.com/smooth-code/svgr,num_dependents_deps.dev:114325 github.com/smooth-code/xstyled,num_dependents_deps.dev:137 +github.com/smoothbear/migration-label-action, +github.com/smoothbear/project-tree-action, github.com/smoothcontract/jammit_lite,num_dependents_deps.dev:0 github.com/smoothify/velero-volume-controller,num_dependents_deps.dev:0 github.com/smoothjs/cli, @@ -1055794,7 +1074715,9 @@ github.com/smore-tools/trailmap,num_dependents_deps.dev:0 github.com/smorenburg/go,num_dependents_deps.dev:0 github.com/smores56/sitch,num_dependents_deps.dev:0 github.com/smoretto/alpine,num_dependents_deps.dev:0 +github.com/smorimoto/tune-github-hosted-runner-network, github.com/smorin8674/multivar_hypergeom, +github.com/smorks/keepass-download-action, github.com/smorkva/vuejs-datepicker,num_dependents_deps.dev:0 github.com/smortex/motoko,num_dependents_deps.dev:0 github.com/smortex/skittlize,num_dependents_deps.dev:0 @@ -1055870,6 +1074793,9 @@ github.com/smrfeld/sample-pairs-gaussian, github.com/smrfeld/tf-constrained-gauss, github.com/smrg-lm/sc3, github.com/smridge/swagcov,num_dependents_deps.dev:0 +github.com/smriti-spotnana/Jest-Coverage-Diff, +github.com/smriti-spotnana/jest-github-action, +github.com/smriti-spotnana/lcov-reporter-action, github.com/smronju/React-Audio-Player,num_dependents_deps.dev:0 github.com/smronju/vue-webcam,num_dependents_deps.dev:0 github.com/smrq/Chart.Dial.js,num_dependents_deps.dev:0 @@ -1055975,6 +1074901,10 @@ github.com/smtpcom/smtpcom_api,num_dependents_deps.dev:0 github.com/smtrd3/snipplets, github.com/smtx/react-infinite-calendar-events,num_dependents_deps.dev:0 github.com/smtx/x-ray,num_dependents_deps.dev:0 +github.com/smu-chile/aws-ecr-policy-action, +github.com/smu-chile/gh-action-consul-to-env-file, +github.com/smu-chile/gh-action-huawei-swr-policy, +github.com/smu-chile/unit-test-action, github.com/smu-heartcode/create-heartcode-web-dev,num_dependents_deps.dev:0 github.com/smu-libraries/lc_call_number_compare,num_dependents_deps.dev:0 github.com/smucesh/galpro, @@ -1056054,6 +1074984,7 @@ github.com/smurfix/trio-aiohttp, github.com/smurfix/yapps,Google github.com/smurfless1/pathlib,num_dependents_deps.dev:0 github.com/smurfpandey/logrus,num_dependents_deps.dev:0 +github.com/smurfpandey/wait-for-it, github.com/smurfs-lyq/go_learn,num_dependents_deps.dev:0 github.com/smurn/anycall, github.com/smurn/cish, @@ -1056064,6 +1074995,7 @@ github.com/smurn/twistit, github.com/smurn/utwist, github.com/smurphik/pirep, github.com/smurphik/vkts, +github.com/smurphnturf/publish-sns-topic, github.com/smurthas/denest,num_dependents_deps.dev:0 github.com/smurthas/fitbit-js,num_dependents_deps.dev:0 github.com/smurthas/flickr-js,num_dependents_deps.dev:0 @@ -1056250,6 +1075182,7 @@ github.com/snak1t/rehoc,num_dependents_deps.dev:0 github.com/snak3codes/cra-template-snak3react,num_dependents_deps.dev:0 github.com/snaka/alexa-podcast-skill-builder,num_dependents_deps.dev:0 github.com/snaka/code-pocket,num_dependents_deps.dev:0 +github.com/snaka/fetch-tfstate, github.com/snakajima/AJMax.js, github.com/snakajima/comet.io, github.com/snakajima/geekout,num_dependents_deps.dev:0 @@ -1056296,9 +1075229,11 @@ github.com/snakehopper/intercom-go,num_dependents_deps.dev:0 github.com/snakekun/pagelet,num_dependents_deps.dev:0 github.com/snakemake/shournal-to-snakemake, github.com/snakemake/snakedeploy, +github.com/snakemake/snakedeploy-github-action, github.com/snakemake/snakeface, github.com/snakemake/snakefmt, github.com/snakemake/snakemake,criticality_score:0.709140 +github.com/snakemake/snakemake-github-action, github.com/snakemode/matrix-driver, github.com/snakemode/snake-canvas, github.com/snakemode/snowpack-html-loader-plugin,num_dependents_deps.dev:0 @@ -1056317,12 +1075252,14 @@ github.com/snakesonabrain/python-engineering, github.com/snaketh4x0r/create-ocean-dapp,num_dependents_deps.dev:0 github.com/snakeyworm/spiffy-line, github.com/snakeyworm/spiffyline, +github.com/snakka-hv/action-custom-build-number, github.com/snakypy/dotctrl, github.com/snakypy/eqversion, github.com/snakypy/imake, github.com/snakypy/snakypy-helpers, github.com/snakypy/zeroed, github.com/snakypy/zshpower, +github.com/snallami/hello-world-javascript-action, github.com/snallapa/mod_updater, github.com/snamber/go-satellite,num_dependents_deps.dev:0 github.com/snamiki1212/react-native-expo-raw-sql-migrations, @@ -1056373,6 +1075310,10 @@ github.com/snapjay/ngcart,num_dependents_deps.dev:0 github.com/snapjs/filtertable,num_dependents_deps.dev:0 github.com/snapjs/paginate,num_dependents_deps.dev:0 github.com/snapkite/snapkite-stream-client,num_dependents_deps.dev:0 +github.com/snaplet/action, +github.com/snaplet/publish-postgres-with-data-docker-action, +github.com/snaplet/vercel-action, +github.com/snaplet/vercel-preview-database-action, github.com/snapmaster-io/express-snapmaster-middleware,num_dependents_deps.dev:0 github.com/snapmaster-io/snapmaster-actions,num_dependents_deps.dev:0 github.com/snapperben/gulp-mysql-command-file-processor,num_dependents_deps.dev:0 @@ -1056431,6 +1075372,8 @@ github.com/snappyjs/node-request-queue,num_dependents_deps.dev:0 github.com/snapscript/snap,num_dependents_deps.dev:0 github.com/snapscript/snap-develop,num_dependents_deps.dev:0 github.com/snapscript/snap-external,num_dependents_deps.dev:0 +github.com/snapserv/action-autotagbot, +github.com/snapserv/action-container-builder, github.com/snapserv/release-it-upstream-version,num_dependents_deps.dev:0 github.com/snapshot-labs/lock,num_dependents_deps.dev:0 github.com/snapshot-labs/snapshot-strategies,num_dependents_deps.dev:0 @@ -1056502,6 +1075445,7 @@ github.com/snatvb/meta-collect,num_dependents_deps.dev:0 github.com/snatvb/taskpricer,num_dependents_deps.dev:0 github.com/snatvb/versioner,num_dependents_deps.dev:0 github.com/snatvb/webpack-worker-wrapper,num_dependents_deps.dev:0 +github.com/snaumov/create-json-next, github.com/snava10/inferschema, github.com/snavarro89/angular-mentions, github.com/snavarro89/ng2-smart-table,num_dependents_deps.dev:0 @@ -1056684,6 +1075628,7 @@ github.com/snehankekre/streamlit-forum, github.com/snehankekre/streamlit-shap, github.com/snehankekre/streamlit-tensorboard, github.com/snehankekre/streamlit-yellowbrick, +github.com/snehara99/label-suggestions, github.com/snehashis365/cRun-py, github.com/snehasis007/snpkg1,num_dependents_deps.dev:0 github.com/snehatulsi/create-react-app-module,num_dependents_deps.dev:0 @@ -1056769,10 +1075714,13 @@ github.com/sni/check_influxdb,num_dependents_deps.dev:0 github.com/sni/lmd,num_dependents_deps.dev:0 github.com/sniang/GBARpy, github.com/snibble/ingress_info,num_dependents_deps.dev:0 +github.com/snibo13/AutoTweet-Action, github.com/snice/androidscan,num_dependents_deps.dev:0 github.com/snichme/rave-react-starter,num_dependents_deps.dev:0 github.com/snickell/impulse-response,num_dependents_deps.dev:0 github.com/snicker/skydroppy, +github.com/snickerbockers/cmake-configure, +github.com/snickerbockers/submodules-init, github.com/snickers10m/lagents, github.com/snicol/spire,num_dependents_deps.dev:0 github.com/snics/chairo,num_dependents_deps.dev:0 @@ -1056914,6 +1075862,7 @@ github.com/snit-ram/karma-react-jsx-preprocessor,num_dependents_deps.dev:0 github.com/snit-ram/pickr,num_dependents_deps.dev:0 github.com/snit-ram/timeslice, github.com/sniter/grabutils, +github.com/snithyanantham/docker-compose-multiple-apps-heroku-deploy, github.com/snitko/frontend_notifier,num_dependents_deps.dev:0 github.com/snitko/string_master,num_dependents_deps.dev:0 github.com/snj07/cordova-plugin-root-safety,num_dependents_deps.dev:0 @@ -1056946,6 +1075895,10 @@ github.com/snmazko/cron-simple,num_dependents_deps.dev:0 github.com/snmi/sunmi-runtime,num_dependents_deps.dev:0 github.com/snmishra/ftd2xx, github.com/snn2spade/scb_profile_x_package, +github.com/snnaplab/delete-branch-cache-action, +github.com/snnaplab/get-labels-action, +github.com/snnaplab/openai-chat-on-issues, +github.com/snnaplab/universal-apk-generate-action, github.com/sno-ware/cubed4th, github.com/sno2/icanhazdadjoke-sdk,num_dependents_deps.dev:0 github.com/sno2/pex, @@ -1056987,11 +1075940,14 @@ github.com/snoj/promise-allprops,num_dependents_deps.dev:0 github.com/snoj/rock-paper-spock,num_dependents_deps.dev:0 github.com/snoj/youtube-sig,num_dependents_deps.dev:0 github.com/snok/asgi-correlation-id, +github.com/snok/container-retention-policy, github.com/snok/django-auth-adfs, github.com/snok/django-guid, github.com/snok/django-js-logger, github.com/snok/django-swagger-tester, github.com/snok/drf-openapi-tester, +github.com/snok/install-poetry, +github.com/snok/latest-python-versions, github.com/snokier/libox,num_dependents_deps.dev:0 github.com/snokier/v-contextmenu,num_dependents_deps.dev:0 github.com/snolab/CapsLockX, @@ -1057076,6 +1076032,7 @@ github.com/snorr/gfx_window_sdl2,num_dependents_deps.dev:0 github.com/snorr/ioat,num_dependents_deps.dev:0 github.com/snorremd/talk-plugin-gravatar,num_dependents_deps.dev:0 github.com/snorrwe/Frenetiq-Dnd,num_dependents_deps.dev:0 +github.com/snorrwe/discord-action, github.com/snorrwe/doodle-rs,num_dependents_deps.dev:0 github.com/snorrwe/screeps-profiler,num_dependents_deps.dev:0 github.com/snort3/snort3,criticality_score:0.549630 @@ -1057105,6 +1076062,18 @@ github.com/snovichkov/viper,num_dependents_deps.dev:0 github.com/snovichkov/zap-gelf,num_dependents_deps.dev:2 github.com/snovvcrash/DivideAndScan, github.com/snovvcrash/usbrip, +github.com/snow-actions/eclint, +github.com/snow-actions/git-config-user, +github.com/snow-actions/line-notify, +github.com/snow-actions/list-github-hosted-runners, +github.com/snow-actions/ls, +github.com/snow-actions/nostr, +github.com/snow-actions/php-ast-changed, +github.com/snow-actions/qrcode, +github.com/snow-actions/setup-jenkins, +github.com/snow-actions/sparse-checkout, +github.com/snow-actions/tweet, +github.com/snow-actions/unanimously-approved, github.com/snow-dev/paralallax-js-fork,num_dependents_deps.dev:0 github.com/snow-dev/snow-dev-template,num_dependents_deps.dev:0 github.com/snow-sprite/minify-your-img,num_dependents_deps.dev:0 @@ -1057203,6 +1076172,7 @@ github.com/snower/sevent, github.com/snower/slock,num_dependents_deps.dev:0 github.com/snower/syncany, github.com/snower/torpeewee, +github.com/snowfallorg/thaw-action, github.com/snowffer/vi-cli,num_dependents_deps.dev:0 github.com/snowffer/vii-cli, github.com/snowfireplace/logger,num_dependents_deps.dev:0 @@ -1057296,6 +1076266,7 @@ github.com/snowplow-incubator/snowplow-js-analytics-sdk,num_dependents_deps.dev: github.com/snowplow-incubator/snowplow-postgres-loader,num_dependents_deps.dev:0 github.com/snowplow-incubator/snowplow-processing-manifest,num_dependents_deps.dev:0 github.com/snowplow-incubator/snowplow-react-native-tracker,num_dependents_deps.dev:0 +github.com/snowplow-product/msc-schema-ci-action, github.com/snowplow-referer-parser/referer-parser,criticality_score:0.369340 github.com/snowplow-referer-parser/scala-referer-parser,num_dependents_deps.dev:0 github.com/snowplow/JavaNSQClient,num_dependents_deps.dev:0 @@ -1057459,6 +1076430,7 @@ github.com/snphq/snp-gulp-tasks,num_dependents_deps.dev:0 github.com/snple/mqtt,num_dependents_deps.dev:0 github.com/snprajwal/gochat,num_dependents_deps.dev:0 github.com/snqb/bsc-scan,num_dependents_deps.dev:0 +github.com/snrakshith/release-action, github.com/snrn-Pontus/axios-mock-adapter,num_dependents_deps.dev:0 github.com/snrn-Pontus/garage-wall, github.com/snrn-Pontus/react-super-footer,num_dependents_deps.dev:0 @@ -1057479,6 +1076451,7 @@ github.com/snsin/project-lvl1-s380,num_dependents_deps.dev:0 github.com/snsin/project-lvl2-s381,num_dependents_deps.dev:0 github.com/snsin/project-lvl2-s393,num_dependents_deps.dev:0 github.com/snsin/project-lvl3-s394,num_dependents_deps.dev:0 +github.com/snsinahub/sqlcmd, github.com/snsinfu/bit5,num_dependents_deps.dev:0 github.com/snsinfu/frag,num_dependents_deps.dev:0 github.com/snsinfu/reverse-tunnel,num_dependents_deps.dev:0 @@ -1057558,6 +1076531,7 @@ github.com/snusmubrik/less-inspector,num_dependents_deps.dev:0 github.com/snusnu/procto,num_dependents_deps.dev:39 github.com/snussik/cryptogen,num_dependents_deps.dev:0 github.com/snvc00/udg-i7035,num_dependents_deps.dev:0 +github.com/snvector/action-contains-tag, github.com/snvl1993/trumbowyg2-rails,num_dependents_deps.dev:0 github.com/snvmk/snvmdb, github.com/snvosooghi/react-native-big-calendar,num_dependents_deps.dev:0 @@ -1057569,6 +1076543,7 @@ github.com/snwight/pixel,num_dependents_deps.dev:0 github.com/snwight/sendgrid-go,num_dependents_deps.dev:0 github.com/snwight/smtpapi-go,num_dependents_deps.dev:0 github.com/snx-link/snx-link-cli,num_dependents_deps.dev:0 +github.com/snxd/jira-version-action, github.com/snyaggarwal/react-suggestion-box,num_dependents_deps.dev:0 github.com/snyamathi/lerna-semver-sync,num_dependents_deps.dev:0 github.com/snyamathi/semver-intersect,num_dependents_deps.dev:1255 @@ -1057594,6 +1076569,7 @@ github.com/snyk-tech-services/snyk-scm-contributors-count,num_dependents_deps.de github.com/snyk-tech-services/snyk-transitive-ignore,num_dependents_deps.dev:0 github.com/snyk-tech-services/snyk-user-sync-tool,num_dependents_deps.dev:0 github.com/snyk-tech-services/snyk2spdx, +github.com/snyk/actions, github.com/snyk/aws-cloudformation-resource-providers,num_dependents_deps.dev:0 github.com/snyk/cocoapods-lockfile-parser,num_dependents_deps.dev:157 github.com/snyk/code-client,num_dependents_deps.dev:12 @@ -1057603,6 +1076579,7 @@ github.com/snyk/dep-graph,num_dependents_deps.dev:386 github.com/snyk/docker-pull,num_dependents_deps.dev:51 github.com/snyk/docker-registry-v2-client,num_dependents_deps.dev:57 github.com/snyk/dotnet-deps-parser,num_dependents_deps.dev:141 +github.com/snyk/driftctl-action, github.com/snyk/eventloop-spinner,num_dependents_deps.dev:194 github.com/snyk/faker-security, github.com/snyk/gemfile,num_dependents_deps.dev:105 @@ -1057617,6 +1076594,7 @@ github.com/snyk/nodejs-lockfile-parser,num_dependents_deps.dev:314 github.com/snyk/nodejs-runtime-agent,num_dependents_deps.dev:0 github.com/snyk/nuget-semver,num_dependents_deps.dev:2 github.com/snyk/python-metrics, +github.com/snyk/release-notes-preview, github.com/snyk/rpm-parser,num_dependents_deps.dev:65 github.com/snyk/snyk,"criticality_score:0.674020,num_dependents_deps.dev:1399" github.com/snyk/snyk-cli-interface,num_dependents_deps.dev:461 @@ -1057711,6 +1076689,7 @@ github.com/soabase/structured-logging,num_dependents_deps.dev:0 github.com/soachishti/moss.py, github.com/soachishti/pyScanLib, github.com/soahyle/vercel-dart-nullsafety,num_dependents_deps.dev:0 +github.com/soaibsafi/Git-Sync-ish, github.com/soajs/connect-mongo-soajs,num_dependents_deps.dev:0 github.com/soajs/grunt-soajs,num_dependents_deps.dev:0 github.com/soajs/mongo.sync,num_dependents_deps.dev:0 @@ -1057753,6 +1076732,7 @@ github.com/soal/map-promisified,num_dependents_deps.dev:28 github.com/soal/vue-mapbox,"criticality_score:0.404880,num_dependents_deps.dev:4" github.com/soal/vue-mapbox-geocoder,num_dependents_deps.dev:0 github.com/soamaven/pvpy, +github.com/soamee/gh-action-conventional-commits, github.com/soanvig/jsr,num_dependents_deps.dev:0 github.com/soanvig/mm-jsr,num_dependents_deps.dev:0 github.com/soanvig/rpn.js, @@ -1057832,6 +1076812,7 @@ github.com/sobamchan/kewpie, github.com/sobanieca/minrt,num_dependents_deps.dev:0 github.com/sobanieca/minst,num_dependents_deps.dev:0 github.com/sobekcore/yerba-mate-home,num_dependents_deps.dev:0 +github.com/sobelow/action, github.com/sober-wang/opscript,num_dependents_deps.dev:0 github.com/soberano-brazil/bankly-acesso,num_dependents_deps.dev:0 github.com/sobering/ithildin,num_dependents_deps.dev:0 @@ -1057867,6 +1076848,8 @@ github.com/sobolevn/flake8-type-annotations, github.com/sobolevn/generator-django-agility,num_dependents_deps.dev:0 github.com/sobolevn/git-secret,criticality_score:0.440670 github.com/sobolevn/jinja2-git, +github.com/sobolevn/misspell-fixer-action, +github.com/sobolevn/restrict-cursing-action, github.com/sobolevn/safe-assert, github.com/sobolevn/vue-flow-typed,num_dependents_deps.dev:0 github.com/sobolew/var-library-alias-webpack-plugin,num_dependents_deps.dev:0 @@ -1058184,6 +1077167,7 @@ github.com/socolaolait/generator-start-compass,num_dependents_deps.dev:0 github.com/socotecio/vuex-orm-grpc,num_dependents_deps.dev:0 github.com/socotra/dynomite, github.com/socram8888/ascii-banner-maven-plugin,num_dependents_deps.dev:0 +github.com/socram8888/ftp-hash-sync, github.com/socram8888/leekoq, github.com/socram8888/saph-browser,num_dependents_deps.dev:0 github.com/socram8888/saph-java,num_dependents_deps.dev:0 @@ -1058244,6 +1077228,7 @@ github.com/sodabros/sodabros,num_dependents_deps.dev:0 github.com/sodacitylabs/boring-framework,num_dependents_deps.dev:0 github.com/sodacrush/react-markdown-editor-lite,num_dependents_deps.dev:0 github.com/sodacrush/ts-data-struct,num_dependents_deps.dev:0 +github.com/sodadata/soda-github-action, github.com/sodadata/soda-spark, github.com/sodafoundation/api,"criticality_score:0.309060,num_dependents_deps.dev:2" github.com/sodafoundation/controller,num_dependents_deps.dev:0 @@ -1058606,6 +1077591,7 @@ github.com/soft-union/engo-data-cli, github.com/softAdd/split-test-selector,num_dependents_deps.dev:0 github.com/softCompound/progress-meter,num_dependents_deps.dev:0 github.com/softCompound/react-native-railroad,num_dependents_deps.dev:0 +github.com/softagram/robotframework-results-to-slack, github.com/softagram/sgraph, github.com/softappeal/yass,num_dependents_deps.dev:0 github.com/softappeal/yass2,num_dependents_deps.dev:33 @@ -1058640,6 +1077626,7 @@ github.com/softbrix/xmp-reader, github.com/softbutterfly/culqi-api-python, github.com/softbutterfly/django-sb-simple-migrations, github.com/softbutterfly/wagtail-sb-socialnetworks, +github.com/softbysam/myaction, github.com/softcake/cherry,num_dependents_deps.dev:0 github.com/softcake/lemon,num_dependents_deps.dev:0 github.com/softcake/softcake.gradle-java-template,num_dependents_deps.dev:0 @@ -1058776,6 +1077763,7 @@ github.com/softprops/action-gh-release,criticality_score:0.358910 github.com/softprops/afterparty,num_dependents_deps.dev:0 github.com/softprops/again,num_dependents_deps.dev:0 github.com/softprops/atty,"Google,num_dependents_deps.dev:14973" +github.com/softprops/aws-credential-rotary, github.com/softprops/bklyn,num_dependents_deps.dev:0 github.com/softprops/broadcast,num_dependents_deps.dev:0 github.com/softprops/capgun,num_dependents_deps.dev:0 @@ -1058784,6 +1077772,7 @@ github.com/softprops/cargo-thanks,num_dependents_deps.dev:0 github.com/softprops/codeowners,num_dependents_deps.dev:0 github.com/softprops/commodore,num_dependents_deps.dev:0 github.com/softprops/devtogo,num_dependents_deps.dev:0 +github.com/softprops/diffset, github.com/softprops/dynomite,num_dependents_deps.dev:0 github.com/softprops/emoji-clock,num_dependents_deps.dev:0 github.com/softprops/envy,"criticality_score:0.390550,num_dependents_deps.dev:24" @@ -1058815,6 +1077804,8 @@ github.com/softprops/screenprints,num_dependents_deps.dev:0 github.com/softprops/scuttlebutt,num_dependents_deps.dev:0 github.com/softprops/serverless-oncall,num_dependents_deps.dev:0 github.com/softprops/serverless-rust,num_dependents_deps.dev:0 +github.com/softprops/setup-aws-copilot, +github.com/softprops/setup-fastly-cli, github.com/softprops/shiplift,"criticality_score:0.507830,num_dependents_deps.dev:1" github.com/softprops/source-error,num_dependents_deps.dev:0 github.com/softprops/sysly,num_dependents_deps.dev:0 @@ -1058824,6 +1077815,7 @@ github.com/softprops/tiny-dynamo,num_dependents_deps.dev:0 github.com/softprops/tomson,num_dependents_deps.dev:0 github.com/softprops/travis,num_dependents_deps.dev:0 github.com/softprops/treeline,"Google,num_dependents_deps.dev:526" +github.com/softprops/turnstyle, github.com/softprops/unisecs,num_dependents_deps.dev:0 github.com/softprops/waitout,num_dependents_deps.dev:0 github.com/softprovider/ajaxutils,num_dependents_deps.dev:0 @@ -1058902,6 +1077894,7 @@ github.com/software-mansion/react-native-gesture-handler,"criticality_score:0.59 github.com/software-mansion/react-native-reanimated,"criticality_score:0.638610,num_dependents_deps.dev:58" github.com/software-mansion/react-native-screens,criticality_score:0.569500 github.com/software-mansion/react-native-tab-view-viewpager-adapter,num_dependents_deps.dev:0 +github.com/software-mansion/setup-scarb, github.com/software-mansion/starknet.py, github.com/software-opal/django_mysql_utf8mb4, github.com/software-projects/go-exp,num_dependents_deps.dev:0 @@ -1059169,6 +1078162,7 @@ github.com/sogko/node-resource-mapper,num_dependents_deps.dev:0 github.com/sogko/pecker,num_dependents_deps.dev:0 github.com/sognefej/gl-matrix,num_dependents_deps.dev:0 github.com/sogno-platform/proloaf, +github.com/sogoagain/check-opened-pr-action, github.com/sogoagain/scrambling-text-js,num_dependents_deps.dev:0 github.com/sogou-ufo/ufo,num_dependents_deps.dev:0 github.com/sogou/pyworkflow, @@ -1059225,6 +1078219,7 @@ github.com/sohamkamani/three-object-loader,num_dependents_deps.dev:12 github.com/sohamkamani/three-objmtll-loader,num_dependents_deps.dev:0 github.com/sohammehta95/memoji,num_dependents_deps.dev:0 github.com/sohamsshah/sodium-ui, +github.com/sohanmanju/databricks-create-job, github.com/sohardforaname/iterator,num_dependents_deps.dev:0 github.com/soheil-soltani/estare, github.com/soheil/regex,num_dependents_deps.dev:0 @@ -1059249,6 +1078244,7 @@ github.com/sohel-ahmed-ansari/handle-race-condition,num_dependents_deps.dev:0 github.com/sohel-ahmed-ansari/knockout-ellipsis-tooltip,num_dependents_deps.dev:0 github.com/sohel-khan/react-native-webrtc-usb-lib,num_dependents_deps.dev:0 github.com/sohel364/ssrfcom,num_dependents_deps.dev:0 +github.com/sohelamin/aws-security-group-add-ip-action, github.com/soheltarir/EasyClass, github.com/soheltarir/gollections,num_dependents_deps.dev:0 github.com/soheltarir/grpc-django, @@ -1059311,6 +1078307,7 @@ github.com/soichiro-nitta/stylelint-config,num_dependents_deps.dev:0 github.com/soichiro-nitta/tailwind-config,num_dependents_deps.dev:0 github.com/soichiro0311/go-trader,num_dependents_deps.dev:0 github.com/soichisumi/http-mock-server,num_dependents_deps.dev:0 +github.com/soichisumi/issue-copy-action, github.com/soickm/ap,num_dependents_deps.dev:0 github.com/soid/kafka-hadoop-consumer,num_dependents_deps.dev:0 github.com/soider/trez,num_dependents_deps.dev:0 @@ -1059362,6 +1078359,7 @@ github.com/sojournerc/gulp-markdown-docs,num_dependents_deps.dev:0 github.com/sojungko/jest-custom-reporter,num_dependents_deps.dev:0 github.com/sokartema/gitbook-plugin-example,num_dependents_deps.dev:0 github.com/sokartema/gitbook-plugin-jazer, +github.com/sokchanbo/android-upload-google-play, github.com/sokcuri/castella,num_dependents_deps.dev:0 github.com/sokcuri/nanum-fontface,num_dependents_deps.dev:0 github.com/sokcuri/vue3-auto-route-record,num_dependents_deps.dev:0 @@ -1059411,10 +1078409,14 @@ github.com/sokratisvidros/pollUntil,num_dependents_deps.dev:0 github.com/sokrato/filewatcher-cli,num_dependents_deps.dev:0 github.com/sokrato/repo, github.com/sokratof/projekt1,num_dependents_deps.dev:0 +github.com/sokuhatiku/ftp-download-artifact, +github.com/sokuhatiku/ftp-upload-artifact, github.com/sol-91/pyPackage, github.com/sol-x/couchdb-migration-store,num_dependents_deps.dev:0 github.com/sol/doctest,criticality_score:0.471390 +github.com/sol/haskell-autotag, github.com/sol/hpack,criticality_score:0.501840 +github.com/sol/run-haskell-tests, github.com/solaa51/gosab,num_dependents_deps.dev:0 github.com/solaa51/zoo,num_dependents_deps.dev:0 github.com/solace-iot-team/ansible-solace, @@ -1059459,6 +1078461,7 @@ github.com/solarane/wide-str,num_dependents_deps.dev:0 github.com/solararbiter/solarforecastarbiter-core, github.com/solarbankers/solarnode0_24,num_dependents_deps.dev:0 github.com/solardesignsystem/React,num_dependents_deps.dev:0 +github.com/solareenlo/42valgrind-action, github.com/solareenlo/a-tour-of-go,num_dependents_deps.dev:0 github.com/solareenlo/go_by_example,num_dependents_deps.dev:0 github.com/solareenlo/gopl,num_dependents_deps.dev:0 @@ -1059510,6 +1078513,7 @@ github.com/solarlux-gmbh/go-gelf,num_dependents_deps.dev:0 github.com/solarmass/project-lvl1-s208,num_dependents_deps.dev:0 github.com/solarmist/apple-peeler, github.com/solarmonkey/deploy-monkey, +github.com/solarmosaic/aws-codepipeline-execute, github.com/solarmosaic/gulp-task-clean,num_dependents_deps.dev:0 github.com/solarmosaic/gulp-task-copy,num_dependents_deps.dev:0 github.com/solarmosaic/gulp-task-sass,num_dependents_deps.dev:0 @@ -1059746,6 +1078750,7 @@ github.com/solemn-leader/ml_virgin, github.com/solemnwarning/rehex,criticality_score:0.320830 github.com/soleneulmer/bem, github.com/solenopsis/node_utils,num_dependents_deps.dev:0 +github.com/solenova-tech/gamma, github.com/solent-eng/solent, github.com/solenya-group/solenya, github.com/solenya-group/solenya-animation,num_dependents_deps.dev:0 @@ -1059916,6 +1078921,9 @@ github.com/solidgoldpig/monzo-bank,num_dependents_deps.dev:0 github.com/solidgoldpig/solidgoldpig-eslint-config,num_dependents_deps.dev:0 github.com/solidgoldpig/wolsey,num_dependents_deps.dev:2 github.com/solidgrounds/solidgrounds,num_dependents_deps.dev:0 +github.com/solidify/github-action-azdo-link, +github.com/solidify/github-action-game-of-life, +github.com/solidify/github-action-update-azapim, github.com/solidity-ide/antlr-parser,num_dependents_deps.dev:0 github.com/solidity-parser/parser,num_dependents_deps.dev:4563 github.com/soliditylabs/ERC20-permit,num_dependents_deps.dev:0 @@ -1060175,6 +1079183,7 @@ github.com/soloslee/goim,num_dependents_deps.dev:0 github.com/solosodium/Pixelizer,num_dependents_deps.dev:0 github.com/solosodium/image-pixelizer, github.com/solotraze/boxlog,num_dependents_deps.dev:0 +github.com/soloturn/build-aur-action, github.com/solotzg/rs-hash-ord,num_dependents_deps.dev:0 github.com/solotzg/rs-lockfree,num_dependents_deps.dev:0 github.com/solovets/grunt-project-structure,num_dependents_deps.dev:0 @@ -1060244,6 +1079253,7 @@ github.com/soltius/BluetoothClassicSerial,num_dependents_deps.dev:0 github.com/soltivo/create-lambda-soltivo,num_dependents_deps.dev:0 github.com/soltys/gulp-markdown-it,num_dependents_deps.dev:0 github.com/soltys/psoltys-remarker-cli,num_dependents_deps.dev:0 +github.com/soltys/publish-docker-compose, github.com/soltysh/api,num_dependents_deps.dev:0 github.com/soltysh/apimachinery,num_dependents_deps.dev:0 github.com/soltysh/client-go,num_dependents_deps.dev:0 @@ -1060258,6 +1079268,7 @@ github.com/soluble-io/cache-interop,num_dependents_deps.dev:0 github.com/soluble-io/tci,num_dependents_deps.dev:0 github.com/solublestudio/gatsby-plugin-data-protect,num_dependents_deps.dev:0 github.com/solublestudio/gatsby-plugin-scroll-reveal,num_dependents_deps.dev:0 +github.com/solubris/insync, github.com/solubris/typedtuples,num_dependents_deps.dev:0 github.com/soluchok/json-gold,num_dependents_deps.dev:0 github.com/solufa/axios-mock-server,num_dependents_deps.dev:0 @@ -1060297,6 +1079308,7 @@ github.com/soluty/npm-cli-login, github.com/soluzionifutura/components-container,num_dependents_deps.dev:0 github.com/soluzionifutura/openapi-mock-server,num_dependents_deps.dev:0 github.com/solv-us/client,num_dependents_deps.dev:0 +github.com/solvaholic/octodns-sync, github.com/solvcon/shocktube1dcalc, github.com/solve-hq/aws-sam-helper-commands,num_dependents_deps.dev:0 github.com/solve-hq/chilli-cloud-code-cli,num_dependents_deps.dev:0 @@ -1060356,6 +1079368,8 @@ github.com/somaiya-u/cordova-extras, github.com/somajs/somajs,num_dependents_deps.dev:0 github.com/somakeit/door-controller3,num_dependents_deps.dev:0 github.com/somakeit/slacker-smib,num_dependents_deps.dev:0 +github.com/somallg/action-stylelint, +github.com/somallg/url-health-check-action, github.com/somandubey/node-auth,num_dependents_deps.dev:0 github.com/somandubey/node-logger,num_dependents_deps.dev:0 github.com/somandubey/node-mongodb,num_dependents_deps.dev:0 @@ -1060415,6 +1079429,11 @@ github.com/sombriks/vue-openlayers,num_dependents_deps.dev:4 github.com/sombro/ui-kit,num_dependents_deps.dev:0 github.com/some-code/element, github.com/some-guy-in-oz/airtouch, +github.com/some-natalie/ghas-to-csv, +github.com/some-natalie/github-tips-action, +github.com/some-natalie/gitlog-to-csv, +github.com/some-natalie/runner-reaper, +github.com/some-natalie/skilled-teleportation, github.com/some-plebs/discord.js-redis,num_dependents_deps.dev:0 github.com/some-programs/dpkg-verify-all,num_dependents_deps.dev:0 github.com/some-programs/natbwmon,num_dependents_deps.dev:0 @@ -1060463,6 +1079482,9 @@ github.com/someguy123/insight,num_dependents_deps.dev:0 github.com/someguy123/insight-api-litecoin,num_dependents_deps.dev:0 github.com/someguynamedmatt/initial_conditions,num_dependents_deps.dev:0 github.com/someimportantcompany/dynazord,num_dependents_deps.dev:0 +github.com/someimportantcompany/github-actions-aws-ecr-retag, +github.com/someimportantcompany/github-actions-aws-s3-env, +github.com/someimportantcompany/github-actions-slack-message, github.com/someimportantcompany/graphql-keyvalue,num_dependents_deps.dev:0 github.com/someimportantcompany/http-assert-plus,num_dependents_deps.dev:0 github.com/someimportantcompany/identity-controls,num_dependents_deps.dev:0 @@ -1060590,6 +1079612,7 @@ github.com/somewind/idle-preload,num_dependents_deps.dev:0 github.com/somewind/jsfinder,num_dependents_deps.dev:0 github.com/somewind/react-redux-reuse,num_dependents_deps.dev:0 github.com/somewind/redux-sword,num_dependents_deps.dev:0 +github.com/somidad/action-issue-to-hexo, github.com/somigian/blackbox-react,num_dependents_deps.dev:0 github.com/somiibo/somiibo-library,num_dependents_deps.dev:0 github.com/somiibo/somiibo-npm, @@ -1060600,6 +1079623,7 @@ github.com/sommalia/moco-wrapper, github.com/sommalia/moco_explorer, github.com/sommd/rustmap,num_dependents_deps.dev:0 github.com/sommea/goangular-api,num_dependents_deps.dev:0 +github.com/sommerfeld-io/semver-action, github.com/sommy1994/Helper,num_dependents_deps.dev:0 github.com/somna/yandex-translate-cli,num_dependents_deps.dev:0 github.com/somnath67643/aurora-sizing,num_dependents_deps.dev:0 @@ -1060615,6 +1079639,8 @@ github.com/somners/feeder,num_dependents_deps.dev:0 github.com/somnio-software/logs-manager,num_dependents_deps.dev:0 github.com/somnisom/go-hdwallet,num_dependents_deps.dev:0 github.com/somniumism/bwa, +github.com/somnolentPumpkin/issue-card-creator, +github.com/somnolentPumpkin/issue-card-creator-and-labeler, github.com/somnonetz/asclepios-sse-client,num_dependents_deps.dev:0 github.com/somnonetz/edfrd, github.com/somnonetz/sleep-parameters, @@ -1060632,6 +1079658,7 @@ github.com/somosdigix/digihelp,num_dependents_deps.dev:0 github.com/somosdigix/editordedocumentos,num_dependents_deps.dev:0 github.com/somosphi/js-logger,num_dependents_deps.dev:0 github.com/somosphi/js-uuid,num_dependents_deps.dev:0 +github.com/somosprte/sync-repositories, github.com/somov/yii2-queue-manager-client,num_dependents_deps.dev:0 github.com/somoy99/binary-decision-tree,num_dependents_deps.dev:0 github.com/somoy99/gatsby-theme-bootstrap-portfolio,num_dependents_deps.dev:0 @@ -1060650,6 +1079677,7 @@ github.com/somq/ionic-plugin-bluetoothle,num_dependents_deps.dev:0 github.com/somq/ndef-lib,num_dependents_deps.dev:0 github.com/somq/ndef-parser,num_dependents_deps.dev:0 github.com/somq/nfccard-tool,num_dependents_deps.dev:0 +github.com/somsarashvili/arch-pkgbuild-builder, github.com/somsharan/node-geturlData,num_dependents_deps.dev:0 github.com/somsky/stwno_canteen, github.com/somssi/button, @@ -1060666,6 +1079694,7 @@ github.com/son-le/pho,num_dependents_deps.dev:0 github.com/son-link/jekyll-simple-dark,num_dependents_deps.dev:0 github.com/son-link/minimal-podcasts-player, github.com/son-link/vid4web,num_dependents_deps.dev:0 +github.com/son7211/GetCodeScanning_result-to-csv, github.com/son7211/ttaacklee,num_dependents_deps.dev:0 github.com/sonOfRa/pwhash,num_dependents_deps.dev:0 github.com/sona-tar/ghr,num_dependents_deps.dev:0 @@ -1060699,8 +1079728,11 @@ github.com/sonar-intellij-plugin/sonar-intellij-plugin,criticality_score:0.38602 github.com/sonar-scala/sonar-scala,num_dependents_deps.dev:0 github.com/sonar-watch/collectibles-list,num_dependents_deps.dev:0 github.com/sonar-watch/sol-address-finder,num_dependents_deps.dev:0 +github.com/sonaractions/cache, github.com/sonarbeserk/twitch-raidban,num_dependents_deps.dev:0 +github.com/sonarcloud-actions/sonarcloud-check-status-action, github.com/sonargraph/sonargraph-integration-access,num_dependents_deps.dev:0 +github.com/sonargraph/sonargraph-maven-action, github.com/sonario/iceparser,num_dependents_deps.dev:0 github.com/sonario/icestream,num_dependents_deps.dev:0 github.com/sonario/seco,num_dependents_deps.dev:0 @@ -1060737,10 +1079769,14 @@ github.com/sonatype-nexus-community/cheque,num_dependents_deps.dev:0 github.com/sonatype-nexus-community/copy-modules-webpack-plugin,num_dependents_deps.dev:40 github.com/sonatype-nexus-community/go-sona-types,num_dependents_deps.dev:1 github.com/sonatype-nexus-community/hazelcast-swarm,num_dependents_deps.dev:0 +github.com/sonatype-nexus-community/iq-github-action, github.com/sonatype-nexus-community/jake, +github.com/sonatype-nexus-community/jake-github-action, github.com/sonatype-nexus-community/js-sona-types,num_dependents_deps.dev:0 github.com/sonatype-nexus-community/nancy,"criticality_score:0.471930,num_dependents_deps.dev:0" +github.com/sonatype-nexus-community/nancy-github-action, github.com/sonatype-nexus-community/nexus-format-archetype,num_dependents_deps.dev:0 +github.com/sonatype-nexus-community/nexus-repo-github-action, github.com/sonatype-nexus-community/ossindex-python, github.com/sonatype-nexus-community/scan-gradle-plugin,num_dependents_deps.dev:0 github.com/sonatype-nexus-community/the-cla,num_dependents_deps.dev:0 @@ -1061278,6 +1080314,7 @@ github.com/songxuhua/wxgz-test,num_dependents_deps.dev:0 github.com/songxuhua/wxgzSdkTest,num_dependents_deps.dev:0 github.com/songyanannba/gogo,num_dependents_deps.dev:0 github.com/songyangper/gitbook-plugin-insert-contact,num_dependents_deps.dev:0 +github.com/songyanping/even-action1, github.com/songyanyi/Trainer, github.com/songyanzhen/react-sketch,num_dependents_deps.dev:0 github.com/songyaru/adb-tools,num_dependents_deps.dev:0 @@ -1061312,6 +1080349,7 @@ github.com/sonhador82/golang-course,num_dependents_deps.dev:0 github.com/sonhal/restful-webservice,num_dependents_deps.dev:0 github.com/sonhanguyen/higher-order-decorator, github.com/sonhanguyen/typed-builder,num_dependents_deps.dev:0 +github.com/sonhmle/test-hello-world-composite-action, github.com/sonhuytran/winning-rate,num_dependents_deps.dev:0 github.com/soni-vikas/easy-api-validation, github.com/sonia-auv/sonia-auv-cli, @@ -1061492,6 +1080530,7 @@ github.com/sonofjavascript/use-async,num_dependents_deps.dev:0 github.com/sonoflilit/kleenexp, github.com/sonoflilit/midas, github.com/sonofmagic/archiver-cli,num_dependents_deps.dev:0 +github.com/sonofmagic/github-repository-distributor, github.com/sonofmagic/profile,num_dependents_deps.dev:0 github.com/sonofmagic/serverless-config-generator,num_dependents_deps.dev:0 github.com/sonofmagic/serverless-layer-deployer,num_dependents_deps.dev:0 @@ -1061501,6 +1080540,7 @@ github.com/sonos/ffi-convert-rs,num_dependents_deps.dev:0 github.com/sonos/tract,criticality_score:0.464830 github.com/sonota88/vm2gol-v2-go,num_dependents_deps.dev:0 github.com/sonots/rack-config_env,num_dependents_deps.dev:0 +github.com/sonots/slack-notice-action, github.com/sonovice/dollarpy, github.com/sonph/gdaxcli, github.com/sonph/onehalf,criticality_score:0.422460 @@ -1061515,6 +1080555,7 @@ github.com/sonroyaalmerol/node-addu-sis,num_dependents_deps.dev:0 github.com/sonroyaalmerol/node-fetch-cookies-rn,num_dependents_deps.dev:0 github.com/sonroyaalmerol/tabletojson-rn,num_dependents_deps.dev:0 github.com/sonseait/react-native-sp-auth, +github.com/sonsofphp/sonsofphp, github.com/sonsoleslp/aiken-to-moodlexml,num_dependents_deps.dev:0 github.com/sonsoleslp/moodlexml-to-json,num_dependents_deps.dev:0 github.com/sonsoleslp/react-click-n-hold,num_dependents_deps.dev:4 @@ -1061531,6 +1080572,7 @@ github.com/sontek/django-tekextensions, github.com/sontek/pyramid_celery, github.com/sontek/snowjob, github.com/sontek/snowmachine, +github.com/sontq00787/ChatGPT-CodeReview, github.com/sontungpytn/serverless-dotnet-lambda-package,num_dependents_deps.dev:0 github.com/sontuphan/capsule-wallet,num_dependents_deps.dev:0 github.com/sontx/bindthis,num_dependents_deps.dev:0 @@ -1061627,6 +1080669,8 @@ github.com/soominhyunwoo/ledger-go,num_dependents_deps.dev:1 github.com/soominhyunwoo/tools,num_dependents_deps.dev:2 github.com/soomla/cocos2dx-store,criticality_score:0.313760 github.com/soomla/unity3d-store,criticality_score:0.338520 +github.com/soomo/cypress-check, +github.com/soomo/jest-check, github.com/soomtong/skrapper,num_dependents_deps.dev:0 github.com/soon/CodeforcesAPI, github.com/soon/python-user-agents-next, @@ -1061706,6 +1080750,10 @@ github.com/soorena110/redux-solid,num_dependents_deps.dev:0 github.com/soorena110/subscribe-manager,num_dependents_deps.dev:0 github.com/soorena110/web-trace,num_dependents_deps.dev:0 github.com/sooryaeswaran/to_reference,num_dependents_deps.dev:0 +github.com/soos-io/soos-csa-github-action, +github.com/soos-io/soos-dast-github-action, +github.com/soos-io/soos-sbom-github-action, +github.com/soos-io/soos-sca-github-action, github.com/soosBot-com/Pagination, github.com/sooseiy/glib,num_dependents_deps.dev:0 github.com/sooshaun/myfirstnpmshadow,num_dependents_deps.dev:0 @@ -1061819,6 +1080867,7 @@ github.com/sophons-space/redis,num_dependents_deps.dev:0 github.com/sophons-space/request,num_dependents_deps.dev:0 github.com/sophos-cybersecurity/sophos-central-api-connector, github.com/sophos-iaas/ruby-sophos-sg-rest,num_dependents_deps.dev:0 +github.com/sophos/factory-run-pipeline, github.com/sophos/infinilint, github.com/sophsec/ffi-pcap,num_dependents_deps.dev:2 github.com/sophtutch/rec-it-csv,num_dependents_deps.dev:0 @@ -1061879,6 +1080928,7 @@ github.com/soracom/soracom-cli,num_dependents_deps.dev:0 github.com/soracom/soratun,num_dependents_deps.dev:0 github.com/soradaibu/go-blockchain,num_dependents_deps.dev:0 github.com/soraer/anywindow,num_dependents_deps.dev:0 +github.com/sorah-rbpkg/actions, github.com/sorah/easy-doc,num_dependents_deps.dev:0 github.com/sorah/ec2nm,num_dependents_deps.dev:0 github.com/sorah/hako-github_status,num_dependents_deps.dev:0 @@ -1061960,6 +1081010,8 @@ github.com/soreau/catt-qt, github.com/sorefull/ambidexter,num_dependents_deps.dev:0 github.com/sorefull/project_initializer,num_dependents_deps.dev:0 github.com/sorefull/status_page_vi,num_dependents_deps.dev:0 +github.com/sorekz/project-item-fields, +github.com/sorekz/user-activity-report, github.com/sorelmitra/learn,num_dependents_deps.dev:0 github.com/soren-n/minigun, github.com/soren-n/tickle, @@ -1062066,8 +1081118,10 @@ github.com/sorl/uas, github.com/sorleone/doxtract,num_dependents_deps.dev:0 github.com/sorlinV/sorlinV_fetch,num_dependents_deps.dev:0 github.com/sormuras/bach,num_dependents_deps.dev:0 +github.com/sormuras/bach-build, github.com/sormuras/bartholdy,num_dependents_deps.dev:0 github.com/sormuras/brahms,num_dependents_deps.dev:0 +github.com/sormuras/hello-world-java-action, github.com/sormuras/java-compiler-script-engine,num_dependents_deps.dev:0 github.com/sormuras/junit-platform-isolator,num_dependents_deps.dev:0 github.com/sormuras/junit-platform-maven-plugin,num_dependents_deps.dev:0 @@ -1062255,6 +1081309,7 @@ github.com/sorz/simplecc-rs,num_dependents_deps.dev:0 github.com/sorz/sstp-server, github.com/sos-berlin/scheduler-engine,num_dependents_deps.dev:0 github.com/sos4nt/zeus,num_dependents_deps.dev:0 +github.com/sosa-22/merge-multi-branch, github.com/sosaedison/Flask_Tracker, github.com/sosafeapp/calviche,num_dependents_deps.dev:0 github.com/sosamson/node-orm-mysql,num_dependents_deps.dev:0 @@ -1062453,6 +1081508,7 @@ github.com/sotrh/learn-wgpu,criticality_score:0.401170 github.com/sotronx/taipa,num_dependents_deps.dev:0 github.com/sotrox/taipa,num_dependents_deps.dev:0 github.com/sotruy/backend-project-lvl1,num_dependents_deps.dev:0 +github.com/sotszk/npm-package-update-action, github.com/sottar/nyarm,num_dependents_deps.dev:0 github.com/sottar/react-extract-image-diff,num_dependents_deps.dev:0 github.com/sottar/react-image-resizer,num_dependents_deps.dev:0 @@ -1062531,6 +1081587,7 @@ github.com/soul-wish/font-awesome-v5-icons,num_dependents_deps.dev:0 github.com/soul-wish/grunt-json-cleanup, github.com/soul-wish/grunt-stats,num_dependents_deps.dev:0 github.com/soul-wish/is-bitbucket-down,num_dependents_deps.dev:0 +github.com/soul-wish/ping-url-javascript-action, github.com/soul-wish/postcss-important-shorthand,num_dependents_deps.dev:0 github.com/soul-wish/string-minify,num_dependents_deps.dev:0 github.com/soul-wish/trash-junk,num_dependents_deps.dev:0 @@ -1062935,6 +1081992,7 @@ github.com/sourabhtk37/Quisby, github.com/sourabhv/drp, github.com/sourabhv/range-interpolator,num_dependents_deps.dev:0 github.com/sourabhv/react-native-auto-scale-image,num_dependents_deps.dev:0 +github.com/souragc/souragaction, github.com/sourangshupal/pyarithcalc, github.com/sourav-oss/reactjs-alert,num_dependents_deps.dev:0 github.com/sourav-roy-prescriber-360/TestJs,num_dependents_deps.dev:0 @@ -1063076,6 +1082134,7 @@ github.com/sourcegraph/campaignutils,num_dependents_deps.dev:1 github.com/sourcegraph/checkup,criticality_score:0.358480 github.com/sourcegraph/code-intel-extensions,num_dependents_deps.dev:0 github.com/sourcegraph/codeintellify,num_dependents_deps.dev:0 +github.com/sourcegraph/codenotify, github.com/sourcegraph/coding-exercise-submitter,num_dependents_deps.dev:0 github.com/sourcegraph/comlink,num_dependents_deps.dev:0 github.com/sourcegraph/commonjs-findpkgs,num_dependents_deps.dev:0 @@ -1063119,10 +1082178,15 @@ github.com/sourcegraph/javascript-typescript-langserver,num_dependents_deps.dev: github.com/sourcegraph/jsg,num_dependents_deps.dev:0 github.com/sourcegraph/jsonrpc2,num_dependents_deps.dev:128 github.com/sourcegraph/lightstep-tracer-javascript, +github.com/sourcegraph/lsif-dart-action, github.com/sourcegraph/lsif-go,num_dependents_deps.dev:0 +github.com/sourcegraph/lsif-go-action, github.com/sourcegraph/lsif-java,num_dependents_deps.dev:42 github.com/sourcegraph/lsif-node,num_dependents_deps.dev:0 +github.com/sourcegraph/lsif-node-action, +github.com/sourcegraph/lsif-rust-action, github.com/sourcegraph/lsif-static-doc,num_dependents_deps.dev:0 +github.com/sourcegraph/lsif-upload-action, github.com/sourcegraph/lsp-adapter,num_dependents_deps.dev:0 github.com/sourcegraph/lsp-client,num_dependents_deps.dev:0 github.com/sourcegraph/makex,num_dependents_deps.dev:12 @@ -1063149,6 +1082213,7 @@ github.com/sourcegraph/srclib-go,num_dependents_deps.dev:0 github.com/sourcegraph/srclib-java,num_dependents_deps.dev:0 github.com/sourcegraph/srclib-sample,num_dependents_deps.dev:0 github.com/sourcegraph/stylelint-config,num_dependents_deps.dev:0 +github.com/sourcegraph/summary-issues, github.com/sourcegraph/syntaxhighlight,num_dependents_deps.dev:913 github.com/sourcegraph/tern-def-origin,num_dependents_deps.dev:0 github.com/sourcegraph/tern-jquery-api-doc,num_dependents_deps.dev:0 @@ -1063210,6 +1082275,7 @@ github.com/sourcepole/ogrtools, github.com/sourcerer-io/anishot, github.com/sourcerer-io/hall-of-fame,criticality_score:0.302950 github.com/sourcerer-io/sourcerer-app,criticality_score:0.361070 +github.com/sourcery-ai/action, github.com/sourcery-ai/sourcery,criticality_score:0.320680 github.com/sourcescapeio/sourcescape-cli,num_dependents_deps.dev:0 github.com/sourcescript/alt-notify,num_dependents_deps.dev:0 @@ -1063224,9 +1082290,15 @@ github.com/sourcesimian/pyTelegramBotAPI, github.com/sourcesimian/txTelegramBot, github.com/sourcesimian/vpn-porthole, github.com/sourcespro/commons,num_dependents_deps.dev:0 +github.com/sourcetoad/aws-codedeploy-action, +github.com/sourcetoad/aws-ecs-deploy-action, +github.com/sourcetoad/aws-s3-delete-after-action, github.com/sourcetoad/javascript,num_dependents_deps.dev:0 github.com/sourcetoad/node-social-feed-api,num_dependents_deps.dev:0 +github.com/sourcetoad/phpunit-coverage-action, github.com/sourcetoad/retry-session,num_dependents_deps.dev:0 +github.com/sourcetoad/ssh-socket-action, +github.com/sourcetoad/tizen-build-action, github.com/sourcetrees/mailhog,num_dependents_deps.dev:0 github.com/sourcevault/acombinator,num_dependents_deps.dev:0 github.com/sourcevault/binapi,num_dependents_deps.dev:0 @@ -1063351,6 +1082423,7 @@ github.com/southnan0/calculation,num_dependents_deps.dev:0 github.com/southorange1228/fayjs, github.com/southorange1228/iqy-cli,num_dependents_deps.dev:0 github.com/southorange1228/iqy-server,num_dependents_deps.dev:0 +github.com/southpolesteve/cosmos-emulator-github-action, github.com/southpolesteve/cosmos-sign,num_dependents_deps.dev:0 github.com/southpolesteve/detect-missing-await,num_dependents_deps.dev:0 github.com/southpolesteve/esm-refactor,num_dependents_deps.dev:0 @@ -1063453,6 +1082526,7 @@ github.com/sovrin/testcafe-reporter-githubchecks,num_dependents_deps.dev:0 github.com/sovrin/tiny-ipc,num_dependents_deps.dev:0 github.com/sovtech/semantic-release-config,num_dependents_deps.dev:0 github.com/sovue/mdrpy,num_dependents_deps.dev:0 +github.com/sovy-app/amazon-ses-sync-action, github.com/sowaret/redux-websocket-middleware,num_dependents_deps.dev:0 github.com/sowawa/bitbucket,num_dependents_deps.dev:0 github.com/sowd/node-picogw-plugin-gcp,num_dependents_deps.dev:0 @@ -1063634,6 +1082708,7 @@ github.com/soyundev/syn-dev-tools,num_dependents_deps.dev:0 github.com/soyundev/syn-grids,num_dependents_deps.dev:0 github.com/soyundev/syn-ui,num_dependents_deps.dev:0 github.com/soyuztechnologies/generator-anubhav-sacfiori, +github.com/soywiz-archive/github-action-jekyll-publish-drafts, github.com/soywiz/atpl.js,num_dependents_deps.dev:2 github.com/soywiz/node-tspm,num_dependents_deps.dev:0 github.com/soywiz/tspromise,num_dependents_deps.dev:0 @@ -1063664,6 +1082739,7 @@ github.com/sozialhelden/fetch-cache,num_dependents_deps.dev:0 github.com/sozialhelden/hamster-cache,num_dependents_deps.dev:0 github.com/sozialhelden/ietf-language-tags,num_dependents_deps.dev:0 github.com/sozialhelden/twelve-factor-dotenv,num_dependents_deps.dev:0 +github.com/sozo-design/curl, github.com/sozonovalexey/drupal-breakpoints-less,num_dependents_deps.dev:0 github.com/sozonovalexey/jquery-vimelar,num_dependents_deps.dev:0 github.com/sozu-proxy/circular,num_dependents_deps.dev:12 @@ -1063701,12 +1082777,14 @@ github.com/sp1ker/bem-vue,num_dependents_deps.dev:0 github.com/sp1ker/vue-intersection-observer-plugin,num_dependents_deps.dev:0 github.com/sp1ral-vx/hackthebox-api, github.com/sp1ritCS/sel,num_dependents_deps.dev:0 +github.com/sp1thas/prefect-cli-action, github.com/sp1thas/pyclimenu, github.com/sp1thas/pyskroutz, github.com/sp1thas/scrapy-folder-tree, github.com/sp1thas/tapeterm, github.com/sp3ber/babel-eslint-without-eslint-scope-use,num_dependents_deps.dev:0 github.com/sp3c1/ordered-fast-lookup-map,num_dependents_deps.dev:0 +github.com/sp3ct0xr/thai-current-time, github.com/sp3d/tilde-expand-rs,num_dependents_deps.dev:0 github.com/sp4ghet/ndi-rs,num_dependents_deps.dev:0 github.com/sp4ke/howto, @@ -1063745,7 +1082823,9 @@ github.com/space-physics/lowtran, github.com/space-wizards/RSI.py, github.com/space-wizards/RobustToolbox,criticality_score:0.534950 github.com/space-wizards/bsdiff-rs,num_dependents_deps.dev:0 +github.com/space-wizards/json-schema-validator, github.com/space-wizards/space-station-14,criticality_score:0.550990 +github.com/space-wizards/submodule-dependency, github.com/space10-community/conversational-form,"criticality_score:0.345600,num_dependents_deps.dev:0" github.com/space150/boba.js,num_dependents_deps.dev:0 github.com/space150/clockbox,num_dependents_deps.dev:0 @@ -1063891,6 +1082971,7 @@ github.com/spacelift-io/archiver,num_dependents_deps.dev:0 github.com/spacelift-io/dd-trace-go,num_dependents_deps.dev:0 github.com/spacelift-io/homework-object-storage,num_dependents_deps.dev:0 github.com/spacelift-io/pulumi-spacelift,num_dependents_deps.dev:0 +github.com/spacelift-io/setup-spacectl, github.com/spacelift-io/spacectl,num_dependents_deps.dev:0 github.com/spacelift-io/spacelift-cli,num_dependents_deps.dev:0 github.com/spacelift-io/terraform-provider-bacon,num_dependents_deps.dev:0 @@ -1063969,6 +1083050,7 @@ github.com/spacerouter/pam,num_dependents_deps.dev:0 github.com/spacerouter/sr_auth,num_dependents_deps.dev:0 github.com/spaceship-prompt/spaceship-prompt, github.com/spaceshuttl/visionary, +github.com/spacestation13/dmi-duplicate-state-checker, github.com/spacesudo/oxfordpy, github.com/spacesudo/pyoxford, github.com/spacesuitdiver/react-native-pixel-color, @@ -1064215,6 +1083297,7 @@ github.com/spanishdict/spotcheck,num_dependents_deps.dev:0 github.com/spanitz/nperf,num_dependents_deps.dev:0 github.com/spanitz/npv,num_dependents_deps.dev:0 github.com/spankie/go-algo,num_dependents_deps.dev:0 +github.com/spankie/hugo-deploy-to-zeit, github.com/spankie/organizer,num_dependents_deps.dev:0 github.com/spankie/squad-8,num_dependents_deps.dev:0 github.com/spanner/mapstick,num_dependents_deps.dev:0 @@ -1064335,9 +1083418,12 @@ github.com/spark/spark-protocol,num_dependents_deps.dev:2 github.com/spark/spark-server,num_dependents_deps.dev:0 github.com/spark/spark-tinker,num_dependents_deps.dev:0 github.com/spark/sparkjs,num_dependents_deps.dev:8 +github.com/spark1security/n0s1-action, github.com/spark2fire/alberti,num_dependents_deps.dev:0 github.com/spark2fire/jscrapy,num_dependents_deps.dev:0 github.com/spark404/dataflashlog,num_dependents_deps.dev:0 +github.com/spark63/Spectra, +github.com/spark63/spectra-github-action, github.com/sparkai-corp/sparkai-python-client, github.com/sparkalow/angular-truncate,num_dependents_deps.dev:0 github.com/sparkartgroup/gulp-markdown-to-json, @@ -1064372,7 +1083458,9 @@ github.com/sparkdreamstudio/rn-umeng-share,num_dependents_deps.dev:0 github.com/sparkeditor/backend,num_dependents_deps.dev:0 github.com/sparkeditor/piece-table,num_dependents_deps.dev:0 github.com/sparkeplug/The-Carousel-Project,num_dependents_deps.dev:0 +github.com/sparkfabrik/android-build-action, github.com/sparkfabrik/capacitor-plugin-idfa,num_dependents_deps.dev:0 +github.com/sparkfabrik/ios-build-action, github.com/sparkfabrik/sparkfabrik-react-native-idfa-aaid,num_dependents_deps.dev:0 github.com/sparkfish/augraphy, github.com/sparkfish/barberchop, @@ -1064443,6 +1083531,7 @@ github.com/sparkmuse/wiremock-junit-jupiter,num_dependents_deps.dev:0 github.com/sparknz/SET-Tokens,num_dependents_deps.dev:0 github.com/sparknz/create-react-app,num_dependents_deps.dev:0 github.com/sparkoo/przen,num_dependents_deps.dev:0 +github.com/sparkplug-app/install-eb-cli-action, github.com/sparkplug/momoapi-java,num_dependents_deps.dev:0 github.com/sparkplug/momoapi-node,num_dependents_deps.dev:0 github.com/sparkpointio/sparkswap-sdk,num_dependents_deps.dev:0 @@ -1064451,6 +1083540,8 @@ github.com/sparkrico/miniprogram-suggest,num_dependents_deps.dev:0 github.com/sparks-alec/stagehack-sACN,num_dependents_deps.dev:0 github.com/sparks-baird/CrabNet, github.com/sparks-baird/amdnet, +github.com/sparksp/elm-format-action, +github.com/sparksp/elm-review-action, github.com/sparkspay/python-neoscrypt, github.com/sparksterz/hubot-spongebob-mock,num_dependents_deps.dev:0 github.com/sparksterz/hubot-tableflip,num_dependents_deps.dev:0 @@ -1064501,6 +1083592,8 @@ github.com/sparsh759/golang-server-sample,num_dependents_deps.dev:0 github.com/sparshik/kyc-sdk-python, github.com/sparsick/maven-docker-extension,num_dependents_deps.dev:0 github.com/spartDev/stylelint-config-spartdev,num_dependents_deps.dev:0 +github.com/sparta-science/cancel-on-screen-lock, +github.com/sparta-science/check-version-matches-tag, github.com/spartac1/vue-i18n-file, github.com/spartacus04/Commando-It,num_dependents_deps.dev:0 github.com/spartakiade2016/express-endpoints,num_dependents_deps.dev:0 @@ -1064608,6 +1083701,7 @@ github.com/spasma/SocialSharing-PhoneGap-Plugin,num_dependents_deps.dev:0 github.com/spasma/cordova-plugin-media,num_dependents_deps.dev:0 github.com/spasma/cordova-plugin-tts-2,num_dependents_deps.dev:0 github.com/spasma/cordova-plugin-tts-advanced, +github.com/spassai/get-between-action, github.com/spassimeonov/cordova-plugin-dfp,num_dependents_deps.dev:0 github.com/spassvogel/react-radio-slide-toggle,num_dependents_deps.dev:0 github.com/spasticVerbalizer/messageconnoisseur, @@ -1064900,6 +1083994,8 @@ github.com/spcan/easy-complex,num_dependents_deps.dev:0 github.com/spcexp/tcp,num_dependents_deps.dev:0 github.com/spcfran/ensurize,num_dependents_deps.dev:0 github.com/spchuang/videojs-markers,num_dependents_deps.dev:0 +github.com/spcily/caprover-webhook-deploy, +github.com/spcily/ssh-action, github.com/spckio/spck-embed,num_dependents_deps.dev:0 github.com/spckio/spck-module,num_dependents_deps.dev:0 github.com/spckio/spck-ui,num_dependents_deps.dev:0 @@ -1064946,6 +1084042,7 @@ github.com/spdy-http2/spdy-transport,num_dependents_deps.dev:54122 github.com/spe301/Potosnail, github.com/speak2jc/default-operator,num_dependents_deps.dev:0 github.com/speakbox/nestjs-firebase-admin,num_dependents_deps.dev:0 +github.com/speakeasy-api/sdk-generation-action, github.com/speakeasyjs/speakeasy,num_dependents_deps.dev:106 github.com/speakin/sdk_java,num_dependents_deps.dev:0 github.com/speakout/css-typings-loader,num_dependents_deps.dev:0 @@ -1064978,6 +1084075,7 @@ github.com/spearow/juice,"criticality_score:0.408210,num_dependents_deps.dev:10" github.com/spearsem/buffersort, github.com/spearson23/commandly,num_dependents_deps.dev:0 github.com/spearson23/loggerly,num_dependents_deps.dev:0 +github.com/spearuav/unixify-action, github.com/spearwolf/coffee_state_machine,num_dependents_deps.dev:0 github.com/spearwolf/eventize,num_dependents_deps.dev:0 github.com/spearwolf/kiwotigo,num_dependents_deps.dev:0 @@ -1065008,6 +1084106,7 @@ github.com/spec-validator/validator,num_dependents_deps.dev:56 github.com/speccy-rom/restapi_things_todo,num_dependents_deps.dev:0 github.com/spece/nodejs,num_dependents_deps.dev:0 github.com/specerator/tuddy,num_dependents_deps.dev:0 +github.com/specfy/stack-analyser, github.com/specgen-io/generated-code,num_dependents_deps.dev:0 github.com/specgen-io/spec,num_dependents_deps.dev:0 github.com/specgen-io/specgen,num_dependents_deps.dev:0 @@ -1065094,6 +1084193,8 @@ github.com/specki-sh/server,num_dependents_deps.dev:0 github.com/speckjs/grunt-speckjs,num_dependents_deps.dev:0 github.com/speckjs/gulp-speckjs,num_dependents_deps.dev:0 github.com/speckjs/speckjs,num_dependents_deps.dev:0 +github.com/specklesystems/speckle-automate-github-action, +github.com/specklesystems/speckle-automate-github-composite-action, github.com/specklesystems/speckle-py, github.com/specklesystems/speckle-server,num_dependents_deps.dev:0 github.com/speckleworks/SpeckleAdmin,num_dependents_deps.dev:0 @@ -1065159,6 +1084260,8 @@ github.com/spectrocloud/cluster-api-provider-maas,num_dependents_deps.dev:0 github.com/spectrocloud/cluster-api-provider-nomad,num_dependents_deps.dev:0 github.com/spectrocloud/cluster-api-provider-vsphere,num_dependents_deps.dev:0 github.com/spectrocloud/hipster-frontend,num_dependents_deps.dev:0 +github.com/spectrocloud/k8s-deploy-cluster, +github.com/spectrocloud/k8s-set-context, github.com/spectrocloud/maas-client-go,num_dependents_deps.dev:0 github.com/spectrocloud/terraform-provider-spectrocloud,num_dependents_deps.dev:0 github.com/spectrum/spectrum, @@ -1065210,6 +1084313,7 @@ github.com/speecan/moo,num_dependents_deps.dev:0 github.com/speecan/quiz01,num_dependents_deps.dev:0 github.com/speecan/quiz02,num_dependents_deps.dev:0 github.com/speecan/util,num_dependents_deps.dev:0 +github.com/speechanddebate/action-slack-notify, github.com/speechbrain/HyperPyYAML, github.com/speechkey/vkappauth, github.com/speechki-book/drf-actions, @@ -1065437,6 +1084541,8 @@ github.com/spencerbrown/mongodb-tls-certs,num_dependents_deps.dev:0 github.com/spencercarli/node-ddp-client,num_dependents_deps.dev:0 github.com/spencercharest/plexpy-cli,num_dependents_deps.dev:0 github.com/spencercharest/tidal-api,num_dependents_deps.dev:0 +github.com/spencercjh/git-branch-behind-main, +github.com/spencercjh/sync-leetcode-today-problem, github.com/spencercjh/sync-leetcode-today-problem-golang-example,num_dependents_deps.dev:0 github.com/spencercornish/msubot-appspot,num_dependents_deps.dev:0 github.com/spencerdcarlson/javaparser,num_dependents_deps.dev:0 @@ -1065565,6 +1084671,13 @@ github.com/spenly/pipreqs, github.com/spennington/node-zebra,num_dependents_deps.dev:0 github.com/spennymac/pysecretary, github.com/spenoir/generator-simple-webapp,num_dependents_deps.dev:0 +github.com/spenserblack/actions-build-emojicode, +github.com/spenserblack/actions-magic-ticket, +github.com/spenserblack/actions-msrv, +github.com/spenserblack/actions-set-output, +github.com/spenserblack/actions-settings, +github.com/spenserblack/actions-tag-to-release, +github.com/spenserblack/actions-wiki, github.com/spenserblack/ansiform,num_dependents_deps.dev:0 github.com/spenserblack/big-bytes-rs,num_dependents_deps.dev:0 github.com/spenserblack/change-git-user,num_dependents_deps.dev:0 @@ -1065706,6 +1084819,7 @@ github.com/sphinx-contrib/email, github.com/sphinx-contrib/emojicodes, github.com/sphinx-contrib/httpdomain,Google github.com/sphinx-contrib/images, +github.com/sphinx-contrib/jquery, github.com/sphinx-contrib/kroki, github.com/sphinx-contrib/matlabdomain, github.com/sphinx-contrib/openapi, @@ -1065739,6 +1084853,7 @@ github.com/sphinx-doc/sphinxcontrib-jsmath,Google github.com/sphinx-doc/sphinxcontrib-qthelp,Google github.com/sphinx-doc/sphinxcontrib-serializinghtml,Google github.com/sphinx-doc/sphinxcontrib-websupport, +github.com/sphinx-notes/pages, github.com/sphinx-notes/peopledomain, github.com/sphinx-sig/homework,num_dependents_deps.dev:0 github.com/sphinx-software/acl,num_dependents_deps.dev:0 @@ -1065784,6 +1084899,7 @@ github.com/spice-h2020/sparql.anything,num_dependents_deps.dev:0 github.com/spice-life/tmix-icon-rails,num_dependents_deps.dev:0 github.com/spice-sass/spice,num_dependents_deps.dev:0 github.com/spicedacademy/spiced-pg,num_dependents_deps.dev:0 +github.com/spicelang/spice-setup-action, github.com/spicetech/translate, github.com/spiceui/spiceui,num_dependents_deps.dev:0 github.com/spiceui/spiceui-linkage,num_dependents_deps.dev:0 @@ -1065806,6 +1084922,8 @@ github.com/spicydonuts/lucid-router,num_dependents_deps.dev:0 github.com/spicydonuts/opex,num_dependents_deps.dev:0 github.com/spicyj/es3ify,num_dependents_deps.dev:2736 github.com/spicyj/match-at,num_dependents_deps.dev:0 +github.com/spicyparrot/check-dependabot, +github.com/spicyparrot/scan-images, github.com/spicypixel/build-kit-js,num_dependents_deps.dev:1 github.com/spicypixel/concurrency-kit-cs,num_dependents_deps.dev:0 github.com/spicypixel/concurrency-kit-unity,num_dependents_deps.dev:0 @@ -1066011,6 +1085129,7 @@ github.com/spillevink/jrss, github.com/spillevink/tvsort, github.com/spilliams/colors,num_dependents_deps.dev:0 github.com/spilliams/node-float,num_dependents_deps.dev:0 +github.com/spilnotaxyz/changesets-action-gh, github.com/spiltcoffee/postdfm,num_dependents_deps.dev:4 github.com/spilth/chord_diagrams,num_dependents_deps.dev:0 github.com/spilth/java8-junit4-quickstart,num_dependents_deps.dev:0 @@ -1066240,6 +1085359,7 @@ github.com/spirit-js/spirit-router, github.com/spirit/spirit,criticality_score:0.312030 github.com/spirit1453/ysjs,num_dependents_deps.dev:0 github.com/spiritJun/kc-track,num_dependents_deps.dev:0 +github.com/spiritbroski/devtoshop-random-generator, github.com/spiritinlife/AndSSE,num_dependents_deps.dev:0 github.com/spiritit/timezonecomplete,num_dependents_deps.dev:0 github.com/spiritix/lada-cache,criticality_score:0.339360 @@ -1066379,6 +1085499,7 @@ github.com/splch/gziphandler,num_dependents_deps.dev:0 github.com/splch/handlegzip,num_dependents_deps.dev:0 github.com/splch/rechorder, github.com/spleeding1/django-basetestcase, +github.com/spleint/diaload-github-action, github.com/splend-io/dsplend-java,num_dependents_deps.dev:0 github.com/splendeo/jquery.observe_field,num_dependents_deps.dev:0 github.com/splendeo/to_xls,num_dependents_deps.dev:0 @@ -1066404,6 +1085525,7 @@ github.com/splicers/jet,num_dependents_deps.dev:0 github.com/splicers/pubnub-go,num_dependents_deps.dev:0 github.com/splicers/stripe-go,num_dependents_deps.dev:0 github.com/splickz/react-draft-wysiwyg, +github.com/splightcomponents/splight-push-component, github.com/spliitzx/axios-observable,num_dependents_deps.dev:0 github.com/spliitzx/emoji-parser,num_dependents_deps.dev:0 github.com/splimter/ReactFirebase,num_dependents_deps.dev:0 @@ -1066488,6 +1085610,7 @@ github.com/splunk/addonfactory-solutions-library-python, github.com/splunk/addonfactory-splunk-conf-parser-lib, github.com/splunk/addonfactory-ta-library-python, github.com/splunk/addonfactory-ucc-generator, +github.com/splunk/appinspect-cli-action, github.com/splunk/attack_range,criticality_score:0.412340 github.com/splunk/dashpub,num_dependents_deps.dev:0 github.com/splunk/dlt-connect-libs, @@ -1067037,6 +1086160,7 @@ github.com/spoukke/whats-on-twitch,num_dependents_deps.dev:0 github.com/spouradrix/awesomeproject,num_dependents_deps.dev:0 github.com/spovich/mandrill_dm,num_dependents_deps.dev:0 github.com/spowelljr/machine,num_dependents_deps.dev:0 +github.com/spowers42/automl-action, github.com/sppautomation/sppclient, github.com/spphins/link,num_dependents_deps.dev:0 github.com/spplaus/CRA-STORYBOOK,num_dependents_deps.dev:0 @@ -1067355,6 +1086479,7 @@ github.com/springernature/backend-proxy,num_dependents_deps.dev:0 github.com/springernature/bandiera-client-node, github.com/springernature/bandiera-client-scala,num_dependents_deps.dev:0 github.com/springernature/boomcatch, +github.com/springernature/cf-buildpack-update-action, github.com/springernature/dustmite, github.com/springernature/ee-snpaas-cli, github.com/springernature/eslint-config-springernature,num_dependents_deps.dev:0 @@ -1067652,6 +1086777,7 @@ github.com/sproof/sproof-utils,num_dependents_deps.dev:0 github.com/sproogen/modern-resume-theme,criticality_score:0.385640 github.com/sprootik/oneclick_client, github.com/sprout-matrix/humanize-data,num_dependents_deps.dev:0 +github.com/sprout-tech/dependabot-jira-action, github.com/sprout2000/electron-search-devtools,num_dependents_deps.dev:0 github.com/sprout2000/react-image-leaflet,num_dependents_deps.dev:0 github.com/sprout42/StarStruct, @@ -1067895,6 +1087021,7 @@ github.com/spur/style-plugin,num_dependents_deps.dev:0 github.com/spur/tap-lock,num_dependents_deps.dev:0 github.com/spur/taps,num_dependents_deps.dev:0 github.com/spur/transform-plugin,num_dependents_deps.dev:0 +github.com/spurdow/android-version-actions, github.com/spurge/goload,num_dependents_deps.dev:0 github.com/spurge/promised-cassandra,num_dependents_deps.dev:0 github.com/spurge/smplcnf,num_dependents_deps.dev:0 @@ -1067932,8 +1087059,10 @@ github.com/sputn1ck/glightning,num_dependents_deps.dev:0 github.com/sputn1ck/lnd,num_dependents_deps.dev:0 github.com/sputn1k/ring-machine,num_dependents_deps.dev:0 github.com/sputn1k/rng-machine, +github.com/sputnik-systems/alertrules-checker, github.com/sputnik-systems/backup-scheduler,num_dependents_deps.dev:0 github.com/sputnik-systems/tg-message-sender,num_dependents_deps.dev:0 +github.com/sputnik-systems/yandex-tank-github-action, github.com/sputnik-systems/yc-resource-capacity,num_dependents_deps.dev:0 github.com/sputnik10g/go-lang,num_dependents_deps.dev:0 github.com/sputnik906/cdc-hibernate,num_dependents_deps.dev:0 @@ -1068146,6 +1087275,7 @@ github.com/sqlatlas/gui,num_dependents_deps.dev:0 github.com/sqlboy/blueprint, github.com/sqlboy/plow, github.com/sqlbunny/sqlbunny,num_dependents_deps.dev:0 +github.com/sqlc-dev/setup-sqlc, github.com/sqlcipher/android-database-sqlcipher,"criticality_score:0.507870,num_dependents_deps.dev:8" github.com/sqlcipher/sqlcipher,criticality_score:0.492660 github.com/sqlcollaborative/dbachecks,criticality_score:0.433720 @@ -1068240,10 +1087370,12 @@ github.com/sqreept/node-requireall,num_dependents_deps.dev:0 github.com/sqreept/node-typesafe,num_dependents_deps.dev:0 github.com/sqren/await-sleep,num_dependents_deps.dev:10 github.com/sqren/backport,num_dependents_deps.dev:0 +github.com/sqren/backport-github-action, github.com/sqren/fb-sleep,num_dependents_deps.dev:0 github.com/sqren/frametalk,num_dependents_deps.dev:0 github.com/sqren/npm-registry-cache,num_dependents_deps.dev:0 github.com/sqren/npmoutdated,num_dependents_deps.dev:0 +github.com/sqren/pr-push-action, github.com/sqren/react-redux-request,num_dependents_deps.dev:0 github.com/sqro2/frigate,num_dependents_deps.dev:0 github.com/sqrrrl/passport-google-plus,num_dependents_deps.dev:0 @@ -1068316,6 +1087448,7 @@ github.com/squallstar/node-redis-namespaces,num_dependents_deps.dev:0 github.com/squallttthp/vue-element-table,num_dependents_deps.dev:0 github.com/squallttthp/vue-vais-scroller,num_dependents_deps.dev:0 github.com/squaloIT/eyesee-test-lib,num_dependents_deps.dev:0 +github.com/squalrus/merge-bot, github.com/squamos/cache-quest,num_dependents_deps.dev:0 github.com/square-a/sissi,num_dependents_deps.dev:0 github.com/square-a/sissi-cli,num_dependents_deps.dev:0 @@ -1068479,6 +1087612,7 @@ github.com/squareboat/nestjs-storage,num_dependents_deps.dev:0 github.com/squarebracket/karma-selenium-grid-launcher,num_dependents_deps.dev:0 github.com/squarecat/gatsby-plugin-countly,num_dependents_deps.dev:0 github.com/squarecl/square-python-status, +github.com/squarecloudofc/github-action, github.com/squared-one/omniauth-unsplash,num_dependents_deps.dev:0 github.com/squaredev-io/matte,num_dependents_deps.dev:0 github.com/squarednob/d3-electrophoresis,num_dependents_deps.dev:0 @@ -1068511,6 +1087645,7 @@ github.com/squaretalent/radiant-autoresize_textarea-extension,num_dependents_dep github.com/squaretalent/radiant-go,num_dependents_deps.dev:0 github.com/squaretalent/radiant-images-extension,num_dependents_deps.dev:6 github.com/squareteam/yodatra,num_dependents_deps.dev:0 +github.com/squarethecircle/robot-overlord, github.com/squareweave/mailmq, github.com/squareweave/wagtailcolumnblocks, github.com/squareweave/wagtailimporter, @@ -1068692,6 +1087827,7 @@ github.com/sqwot/courseragolearning,num_dependents_deps.dev:0 github.com/sqwot/goblog,num_dependents_deps.dev:0 github.com/sqxccdy/aiomq, github.com/sr-2020/gateway,num_dependents_deps.dev:0 +github.com/sr-auto/team-request-review, github.com/sr-gi/bitcoin_tools, github.com/sr-gi/bitcoind_mock, github.com/sr-gi/zbase32, @@ -1068798,6 +1087934,7 @@ github.com/sravanthbaratam/gpi, github.com/sravel/MLG_assign, github.com/sravel/RattleSNP, github.com/sravel/yoda-powers, +github.com/sravni/build-and-test-action, github.com/sravni/techinspection, github.com/sravyadhulipala/coloranalysis, github.com/srb-/coffeelint-ensure-named-args,num_dependents_deps.dev:0 @@ -1068939,6 +1088076,7 @@ github.com/srclab-projects/easy-common,num_dependents_deps.dev:2 github.com/srclab-projects/easy-spring-boot,num_dependents_deps.dev:12 github.com/srclab-projects/srclab-bom,num_dependents_deps.dev:0 github.com/srclab-projects/srclab-dependencies,num_dependents_deps.dev:0 +github.com/srclaunch/entity-update-orchestration-github-action, github.com/srcode-org/aide,num_dependents_deps.dev:0 github.com/srcolinas/homework, github.com/srcolinas/sappears, @@ -1068969,6 +1088107,8 @@ github.com/srdreclame/npm-pkg,num_dependents_deps.dev:0 github.com/srdreclame/weatherAppTST,num_dependents_deps.dev:0 github.com/sre/rust-gpiochip,num_dependents_deps.dev:0 github.com/sreader1414/passport-clover,num_dependents_deps.dev:0 +github.com/srealmoreno/label-sync-action, +github.com/srebhan/label-milestone-action, github.com/srebuffi/iCaRL,Google github.com/srebughini/BEERQ,num_dependents_deps.dev:0 github.com/srebughini/JASALI,num_dependents_deps.dev:0 @@ -1069034,6 +1088174,7 @@ github.com/sreenigsd/cheetah,num_dependents_deps.dev:0 github.com/sreenigsd/screen-recorder,num_dependents_deps.dev:0 github.com/sreenivasanac/vanitynumber, github.com/sreenivasarajiv/npm-package-test-sree,num_dependents_deps.dev:0 +github.com/sreeo/kubectl, github.com/sreeraaman/data-ingestion, github.com/sreeram77/http-client,num_dependents_deps.dev:0 github.com/sreeram77/pubsub,num_dependents_deps.dev:0 @@ -1069059,6 +1088200,7 @@ github.com/srehouni/go_algorithms_data_structures,num_dependents_deps.dev:0 github.com/srehouni/leetcode_exercises,num_dependents_deps.dev:0 github.com/srehwald/eat,num_dependents_deps.dev:0 github.com/sreichholf/python-dreamboxapi, +github.com/sreimers/pr-dependency-action, github.com/sreimers/rust-baresip,num_dependents_deps.dev:0 github.com/sreimers/rust-libre,num_dependents_deps.dev:0 github.com/sreimers/rust-librem,num_dependents_deps.dev:0 @@ -1069078,8 +1088220,10 @@ github.com/srenevey/neuro,num_dependents_deps.dev:0 github.com/srenevey/ode-solvers,num_dependents_deps.dev:0 github.com/srenity/epico,num_dependents_deps.dev:0 github.com/srenity/epico-plugins,num_dependents_deps.dev:0 +github.com/srepollock/changelog-generator-action, github.com/srepollock/de-logger,num_dependents_deps.dev:0 github.com/srepollock/divine-engine,num_dependents_deps.dev:0 +github.com/srepollock/gatsby-gh-pages-action, github.com/srepollock/npm-semver,num_dependents_deps.dev:0 github.com/srepollock/ts-lib-tutorial,num_dependents_deps.dev:0 github.com/srepollock/typescript-bootstrap,num_dependents_deps.dev:0 @@ -1069120,6 +1088264,7 @@ github.com/srfaytkn/spotify-auth-service,num_dependents_deps.dev:0 github.com/srfdata/swiss-party-colors,num_dependents_deps.dev:0 github.com/srfnstack/fntags, github.com/srfp-preservation/client, +github.com/srfrnk/current-time, github.com/srfrnk/generator-sili,num_dependents_deps.dev:0 github.com/srfrnk/generator-srfrnk-webapp,num_dependents_deps.dev:0 github.com/srfrnk/gulp-ts-spellcheck,num_dependents_deps.dev:0 @@ -1069127,6 +1088272,7 @@ github.com/srfrnk/moneo,num_dependents_deps.dev:0 github.com/srfrnk/more-of-less,num_dependents_deps.dev:0 github.com/srfrnk/ng-device-detector,"criticality_score:0.308390,num_dependents_deps.dev:34" github.com/srfrnk/re-tree,num_dependents_deps.dev:50 +github.com/srfrnk/setup-yq, github.com/srfrnk/superman,num_dependents_deps.dev:0 github.com/srfrnk/ua-device-detector,num_dependents_deps.dev:40 github.com/srfrog/cuid,num_dependents_deps.dev:0 @@ -1069139,11 +1088285,13 @@ github.com/srg-kostyrko/homm3-parser,num_dependents_deps.dev:0 github.com/srgblnch/python-scpilib, github.com/srgblnch/skippy, github.com/srgblnch/yamp, +github.com/srggrs/assign-one-project-github-action, github.com/srghma/linted-git-commit, github.com/srgio-es/tcfmshelper,num_dependents_deps.dev:0 github.com/srgkas/laravel-echo-server,num_dependents_deps.dev:0 github.com/srgkas/most-useful-slackbot,num_dependents_deps.dev:0 github.com/srgl/nsq-rpc,num_dependents_deps.dev:0 +github.com/srgoogle23/conventionalcommits-action, github.com/srgooglo/nodecore-api-lib,num_dependents_deps.dev:0 github.com/srgooglo/ycorejs-lib,num_dependents_deps.dev:0 github.com/srgpqt/tsfxr,num_dependents_deps.dev:0 @@ -1069292,6 +1088440,7 @@ github.com/srikanth000/combine-reducers-react,num_dependents_deps.dev:0 github.com/srikanthbandaru/reactv16-mailto, github.com/srikanthbhandary/cleanarch,num_dependents_deps.dev:0 github.com/srikanthbhandary/go-aws-mq,num_dependents_deps.dev:0 +github.com/srikanthccv/verify-linked-issue-action, github.com/srikanthgurram/jasmine-html-reporter,num_dependents_deps.dev:0 github.com/srikanthhubli/gobasics,num_dependents_deps.dev:0 github.com/srikanthjeeva/emoji-and-emoticons, @@ -1069742,7 +1088891,11 @@ github.com/srsudar/eg,criticality_score:0.421340 github.com/srsudar/tanager,num_dependents_deps.dev:0 github.com/srsun/vue-waterfall-unit,num_dependents_deps.dev:0 github.com/srt180/netlink,num_dependents_deps.dev:0 +github.com/srt32/git-actions, github.com/srt32/go-redis-bm,num_dependents_deps.dev:0 +github.com/srt32/hugo-action, +github.com/srt32/revert, +github.com/srt32/uptime, github.com/srtamrakar/python-logger, github.com/srtamrakar/vault, github.com/srtanish1992/super-input-field,num_dependents_deps.dev:0 @@ -1069763,6 +1088916,7 @@ github.com/sruan6/riotgames-gg,num_dependents_deps.dev:0 github.com/srubio131/replace-object-keys,num_dependents_deps.dev:0 github.com/srubio131/vue-dom-injector,num_dependents_deps.dev:0 github.com/srubio131/vue-script-loader,num_dependents_deps.dev:0 +github.com/srueda99/scp-action, github.com/sruf/node-mail-socket,num_dependents_deps.dev:0 github.com/srugina/mofh-client,num_dependents_deps.dev:0 github.com/srugina/tinytest,num_dependents_deps.dev:0 @@ -1069786,6 +1088940,7 @@ github.com/sruthi-98/simple-calculator,num_dependents_deps.dev:0 github.com/srvance/ember-cli-build-config-editor,num_dependents_deps.dev:40 github.com/srvanrell/armetrics, github.com/srvanrell/ranking-table-tennis, +github.com/srvaroa/labeler, github.com/srvasn/tzconvert, github.com/srvaz/star-generator,num_dependents_deps.dev:0 github.com/srveit/mechanize-js,num_dependents_deps.dev:0 @@ -1069821,7 +1088976,13 @@ github.com/sryanyuan/pithyblog,num_dependents_deps.dev:0 github.com/sryoya/protorand,num_dependents_deps.dev:0 github.com/sryoya/see-you-later,num_dependents_deps.dev:0 github.com/sryza/spark-timeseries, +github.com/srz-zumix/actions-book-image-check, github.com/srz-zumix/amaterasu, +github.com/srz-zumix/changelog-template-action, +github.com/srz-zumix/jenkinsfile-shellcheck, +github.com/srz-zumix/kamidana-action, +github.com/srz-zumix/reviewdog-action-infer, +github.com/srz-zumix/setup-service-jenkins, github.com/srz-zumix/tails-of-words, github.com/srz-zumix/textlint-plugin-review-starter,num_dependents_deps.dev:0 github.com/srz-zumix/unity-yaml-normalize, @@ -1069878,6 +1089039,7 @@ github.com/ssalonen/cec-alsa-sync,num_dependents_deps.dev:0 github.com/ssalonen/cec-rs,num_dependents_deps.dev:0 github.com/ssalonen/enum-repr-derive,num_dependents_deps.dev:1 github.com/ssalonen/libcec-sys,num_dependents_deps.dev:2 +github.com/ssalvatori/action-setup-consul-template, github.com/ssalvatori/rest2command,num_dependents_deps.dev:0 github.com/ssanch30/Platzom,num_dependents_deps.dev:0 github.com/ssanderson/interface, @@ -1069954,10 +1089116,12 @@ github.com/ssbabysong/node-study,num_dependents_deps.dev:0 github.com/ssbarbee/app-store-ratings,num_dependents_deps.dev:0 github.com/ssbarnea/a2w, github.com/ssbarnea/alphanum,num_dependents_deps.dev:0 +github.com/ssbarnea/ansible-lint, github.com/ssbarnea/brexit, github.com/ssbarnea/coats,num_dependents_deps.dev:0 github.com/ssbarnea/elvy, github.com/ssbarnea/reticulatus, +github.com/ssbarnea/validate-yaml-schema, github.com/ssbb/confo,num_dependents_deps.dev:0 github.com/ssbb/express-validator-helper, github.com/ssbc/bipf, @@ -1070143,6 +1089307,7 @@ github.com/sschwartz96/syncapod-backend,num_dependents_deps.dev:0 github.com/sschwartz96/wap,num_dependents_deps.dev:0 github.com/sschwindt/TKEanalyst, github.com/ssciwr/pybind11-numpy-example, +github.com/ssciwr/setup-mesa-dist-win, github.com/sscok/agac, github.com/sscots/ng-bootstrap-nested-select,num_dependents_deps.dev:0 github.com/sscotth/hackertyper,num_dependents_deps.dev:0 @@ -1070156,13 +1089321,17 @@ github.com/sscovil/index-js,num_dependents_deps.dev:0 github.com/sscovil/index-module, github.com/sscpac/secureopenarchitecture,num_dependents_deps.dev:0 github.com/sscpac/statick, +github.com/sscpac/statick-action, github.com/sscpac/statick-md, github.com/sscpac/statick-tooling, github.com/sscpac/statick-web, +github.com/sscsb/action-sbom-upload, +github.com/sscsb/wait-for-secrets, github.com/sscu-budapest/sscutils, github.com/ssd-sa/generator-vuejs-component,num_dependents_deps.dev:0 github.com/ssd-solar/gem,num_dependents_deps.dev:0 github.com/ssd-solar/tiny-ipc,num_dependents_deps.dev:0 +github.com/ssd42/action-sample, github.com/ssd71/jojs,num_dependents_deps.dev:0 github.com/ssdatalab/psfmachine, github.com/ssddanbrown/forwarder,num_dependents_deps.dev:0 @@ -1070311,6 +1089480,7 @@ github.com/sshkalikov/react-native-keyboard-aware-scroll-view,num_dependents_dep github.com/sshkm/django-sshkm, github.com/sshleifer/isort, github.com/sshmyg/react-plain-form,num_dependents_deps.dev:0 +github.com/sshnaidm/gpt-code-review-action, github.com/sshnet/SSH.NET,criticality_score:0.474790 github.com/sshniro/line-segmentation-algorithm-to-gcp-vision,num_dependents_deps.dev:0 github.com/sshodges/hydraulic-calculator,num_dependents_deps.dev:0 @@ -1070364,6 +1089534,7 @@ github.com/ssilab/computed-style-to-inline-style,num_dependents_deps.dev:0 github.com/ssilence/asset-generator,num_dependents_deps.dev:0 github.com/ssiloti/portcontrolcd,num_dependents_deps.dev:0 github.com/ssilve1989/flux-standard-error,num_dependents_deps.dev:0 +github.com/ssilve1989/protolint-action, github.com/ssilve1989/react-redux-dialog,num_dependents_deps.dev:0 github.com/ssilve1989/redux-session-manager,num_dependents_deps.dev:0 github.com/ssilve1989/redux-session-manager-middleware,num_dependents_deps.dev:0 @@ -1070381,6 +1089552,7 @@ github.com/ssimpo/Private,num_dependents_deps.dev:0 github.com/ssimpo/gulp-augment,num_dependents_deps.dev:0 github.com/ssimpo/require-extra,num_dependents_deps.dev:0 github.com/ssimunic/diamondjs,num_dependents_deps.dev:0 +github.com/ssinad/latex-typeset-action, github.com/ssine/pptx2md, github.com/ssinno28/Marionette.EntityView,num_dependents_deps.dev:0 github.com/ssinno28/bound-element,num_dependents_deps.dev:0 @@ -1070572,6 +1089744,7 @@ github.com/ssouron/vue-avatar-component,num_dependents_deps.dev:0 github.com/ssouthcity/sweeper,num_dependents_deps.dev:0 github.com/ssovit/devthing,num_dependents_deps.dev:0 github.com/ssovit/node-tiktokapi,num_dependents_deps.dev:0 +github.com/ssowonny/diff-pages-action, github.com/ssowonny/dust-sinatra,num_dependents_deps.dev:0 github.com/ssowonny/hubot-deezer,num_dependents_deps.dev:0 github.com/ssowonny/strong-params,num_dependents_deps.dev:6 @@ -1070579,6 +1089752,7 @@ github.com/ssp0929/add-two-numbers,num_dependents_deps.dev:0 github.com/ssp4599815/redis-manager,num_dependents_deps.dev:0 github.com/ssp97/ka-ineshizuku-project,num_dependents_deps.dev:0 github.com/ssp97/zerobot-plugin,num_dependents_deps.dev:0 +github.com/sspaink/action-gophers, github.com/sspaink/doublestar,num_dependents_deps.dev:0 github.com/sspaink/gjson,num_dependents_deps.dev:0 github.com/sspantz/babel-setup,num_dependents_deps.dev:0 @@ -1070622,6 +1089796,7 @@ github.com/ssrikanta/pytest-progress, github.com/ssrl-px/interceptor, github.com/ssrl-px/iota, github.com/ssrl/web.go,num_dependents_deps.dev:0 +github.com/ssrobins/install-cmake, github.com/ssrs100/blueserver,num_dependents_deps.dev:0 github.com/ssruoyan/in-memory-queue, github.com/ssruoyan/react-inview,num_dependents_deps.dev:0 @@ -1070664,6 +1089839,7 @@ github.com/ssssota/ava-arena-database-accessor,num_dependents_deps.dev:0 github.com/ssssota/discord-bot,num_dependents_deps.dev:0 github.com/ssssota/font-kit,num_dependents_deps.dev:0 github.com/ssssota/fontscan,num_dependents_deps.dev:0 +github.com/ssssota/setup-firebase-tools, github.com/ssssota/ttf-parser-wasm,num_dependents_deps.dev:0 github.com/sssssssuzuki/autd-core,num_dependents_deps.dev:0 github.com/sssssssuzuki/autd-gain,num_dependents_deps.dev:0 @@ -1070962,9 +1090138,12 @@ github.com/st7105/bad-setuptools-git-version, github.com/st7art22/promise-yandex-share,num_dependents_deps.dev:0 github.com/st8st8/django-oscar-stripe-sca, github.com/st9007a/tfdev, +github.com/stCarolas/setup-maven, github.com/stLFR/extremevariantfilter, github.com/stLmpp/StGrid,num_dependents_deps.dev:0 github.com/stLmpp/st-decorated,num_dependents_deps.dev:0 +github.com/stNamco/add-card-to-project, +github.com/stNamco/convert-issue-extension, github.com/sta-ger/slotify.js,num_dependents_deps.dev:0 github.com/sta-golang/go-lib-utils,num_dependents_deps.dev:0 github.com/sta-szek/gitbook-plugin-github-contributors,num_dependents_deps.dev:0 @@ -1070972,6 +1090151,7 @@ github.com/sta-szek/gitbook-plugin-githubcontributors, github.com/sta-szek/pojo-tester,num_dependents_deps.dev:36 github.com/sta/websocket-sharp,criticality_score:0.361060 github.com/staab/django-flexible-permissions, +github.com/staabm/annotate-pull-request-from-checkstyle-action, github.com/staadecker/formula-prompt, github.com/staaky/fresco, github.com/staaky/vatrates,num_dependents_deps.dev:0 @@ -1071004,6 +1090184,7 @@ github.com/stableness/wabble,num_dependents_deps.dev:0 github.com/stableness/xx-bloom,num_dependents_deps.dev:0 github.com/stableswap/solana-wallets, github.com/stablexlabs/stablex-sdk,num_dependents_deps.dev:0 +github.com/stablyhq/stably-runner-action, github.com/stablyio/sdk-javascript,num_dependents_deps.dev:0 github.com/stac-utils/pgstac, github.com/stac-utils/pystac,Google @@ -1071019,6 +1090200,7 @@ github.com/stac-utils/stactools, github.com/stac-utils/titiler-pgstac, github.com/stac47/colissimo, github.com/stac47/darte7, +github.com/stacc/publish-action, github.com/stacc/stacc-cli-library,num_dependents_deps.dev:0 github.com/staccato/dakar,num_dependents_deps.dev:0 github.com/staccatocommons/legato-leviathan,num_dependents_deps.dev:0 @@ -1071039,6 +1090221,8 @@ github.com/stachu540/HiRezAPI,"num_dependents_deps.dev:1,num_dependents_deps.dev github.com/stachyra/ftdetect, github.com/stack-fintech/envconsul,num_dependents_deps.dev:0 github.com/stack-forge/create-app, +github.com/stack-forge/deploy, +github.com/stack-forge/forge, github.com/stack-is-empty/query-generator,num_dependents_deps.dev:0 github.com/stack-is-empty/styled-ui-kit,num_dependents_deps.dev:0 github.com/stack-labs/peers-touch-go,num_dependents_deps.dev:0 @@ -1071048,6 +1090232,10 @@ github.com/stack-labs/stack-rpc-tutorials,criticality_score:0.327570 github.com/stack-of-tasks/eigenpy, github.com/stack-of-tasks/pinocchio,criticality_score:0.613060 github.com/stack-of-tasks/tsid, +github.com/stack-spot/runtime-destroy-action, +github.com/stack-spot/runtime-github-action-ping, +github.com/stack-spot/runtime-iac-action, +github.com/stack-spot/runtime-manager-action, github.com/stack-stark/ng-live2d,num_dependents_deps.dev:0 github.com/stack-stark/ngx-g2plot,num_dependents_deps.dev:0 github.com/stack-wuh/my-form,num_dependents_deps.dev:0 @@ -1071065,6 +1090253,7 @@ github.com/stackOverMind/wild-videoroom,num_dependents_deps.dev:0 github.com/stackOverMind/wilddog-cli,num_dependents_deps.dev:0 github.com/stackables/cloudevents-router,num_dependents_deps.dev:0 github.com/stackacademytv/stackos,num_dependents_deps.dev:0 +github.com/stackaid/generate-stackaid-json, github.com/stackb/bazel-stack-vscode-api,num_dependents_deps.dev:0 github.com/stackb/bzl-sdk-node,num_dependents_deps.dev:0 github.com/stackb/rules_proto,num_dependents_deps.dev:0 @@ -1071109,6 +1090298,7 @@ github.com/stackbuilders/valid_data,num_dependents_deps.dev:0 github.com/stackbyhq/apps,num_dependents_deps.dev:0 github.com/stackbyhq/stackby-node-package,num_dependents_deps.dev:0 github.com/stackcache/vebug,num_dependents_deps.dev:0 +github.com/stackcci/git-ftp-deploy, github.com/stackchain/react-file-zone-manager,num_dependents_deps.dev:0 github.com/stackcheats/stackcheats-source-firebase-comments, github.com/stackcraft/eslint-config-stackcraft, @@ -1071247,6 +1090437,7 @@ github.com/stackgl/snowden,num_dependents_deps.dev:10 github.com/stackgl/stackgl-generator,num_dependents_deps.dev:0 github.com/stackgl/stackgl-readme-css,num_dependents_deps.dev:0 github.com/stackgl/webgl-workshop,num_dependents_deps.dev:0 +github.com/stackhawk/hawkscan-action, github.com/stackhero-io/node-red-contrib-stackhero-influxdb-v2,num_dependents_deps.dev:0 github.com/stackhero-io/node-red-contrib-stackhero-mysql,num_dependents_deps.dev:0 github.com/stackhousesrl/box,num_dependents_deps.dev:0 @@ -1071302,6 +1090493,8 @@ github.com/stackmate-io/stackmate-cli, github.com/stackml/stackml-js,num_dependents_deps.dev:0 github.com/stackmob/stackmob-cli, github.com/stackmob/stackmob-parse-migrator, +github.com/stackmystack/mssqlsuite, +github.com/stacknowledge/circleci-trigger-action, github.com/stackomate/data-structures,num_dependents_deps.dev:0 github.com/stackoverflow/blode,num_dependents_deps.dev:0 github.com/stackp/Gum, @@ -1071313,6 +1090506,9 @@ github.com/stackpath/terraform-provider-stackpath,num_dependents_deps.dev:0 github.com/stackpie/stackpie,num_dependents_deps.dev:0 github.com/stackpond/formbuilder-ssr,num_dependents_deps.dev:0 github.com/stackptr/mu,num_dependents_deps.dev:0 +github.com/stackql/setup-stackql, +github.com/stackql/stackql-assert, +github.com/stackql/stackql-exec, github.com/stackr23/config-eslint, github.com/stackr23/conventional-changelog-config, github.com/stackr23/gitmoji-conventional-commits,num_dependents_deps.dev:0 @@ -1071329,6 +1090525,7 @@ github.com/stackroute/asynchrony-di, github.com/stackrox/admission-controller-webhook-demo,num_dependents_deps.dev:0 github.com/stackrox/go-grpc-http1,num_dependents_deps.dev:0 github.com/stackrox/kube-linter,"criticality_score:0.375590,num_dependents_deps.dev:0" +github.com/stackrox/kube-linter-action, github.com/stackrox/yaml,num_dependents_deps.dev:0 github.com/stacks-courses/retryable-document-client,num_dependents_deps.dev:0 github.com/stacks/stacks-project,criticality_score:0.448370 @@ -1071377,6 +1090574,7 @@ github.com/stacs-srg/population-records,num_dependents_deps.dev:0 github.com/stacs-srg/storr,num_dependents_deps.dev:0 github.com/stacs-srg/utilities,num_dependents_deps.dev:1 github.com/stacscan/stacs, +github.com/stacscan/stacs-ci, github.com/stacscan/stacs-integration, github.com/stactools-gaps/stactools-gap, github.com/stactools-goess/stactools-goes, @@ -1071445,6 +1090643,7 @@ github.com/staeiou/telex103c9da12e0, github.com/staeiou/textcounts, github.com/staeke/minimal-html-parser,num_dependents_deps.dev:0 github.com/staeke/yield,num_dependents_deps.dev:0 +github.com/staevs/s3-deploy-action, github.com/staff-code/opentype.js, github.com/staff-code/text-to-svg, github.com/staff0rd/hain-plugin-keywords,num_dependents_deps.dev:0 @@ -1071525,6 +1090724,7 @@ github.com/stagas/timehat,num_dependents_deps.dev:2 github.com/stagas/webrtc-match-two,num_dependents_deps.dev:0 github.com/stagas/x-core,num_dependents_deps.dev:0 github.com/stage-hand/stage_object,num_dependents_deps.dev:0 +github.com/stage-tech/aws-pipeline-factory-actions, github.com/stage/nativescript-stage-facebook-login,num_dependents_deps.dev:0 github.com/stage3systems/node-html5-purifier,num_dependents_deps.dev:0 github.com/stagecoachio/apy, @@ -1071567,6 +1090767,7 @@ github.com/stahnma/hubot-stonk-checker,num_dependents_deps.dev:0 github.com/staileu/node-sdk,num_dependents_deps.dev:0 github.com/stain/jai-imageio-jpeg2000,num_dependents_deps.dev:67 github.com/stainii/portal-image,num_dependents_deps.dev:0 +github.com/stainless-api/upload-openapi-spec-action, github.com/stainless-steel/3d-ice,num_dependents_deps.dev:0 github.com/stainless-steel/ao-sys,num_dependents_deps.dev:0 github.com/stainless-steel/arguments,num_dependents_deps.dev:0 @@ -1072064,6 +1091265,7 @@ github.com/standardkit/angular-components, github.com/standardkit/styles,num_dependents_deps.dev:0 github.com/standardkit/themes,num_dependents_deps.dev:0 github.com/standardlabs/react-hooks,num_dependents_deps.dev:0 +github.com/standardnotes/brakeman-action, github.com/standardnotes/component-relay,num_dependents_deps.dev:0 github.com/standardnotes/desktop,criticality_score:0.542400 github.com/standardnotes/editor-kit,num_dependents_deps.dev:0 @@ -1072078,6 +1091280,7 @@ github.com/standardpress/book,num_dependents_deps.dev:0 github.com/standardpress/eslint-config-standardpress,num_dependents_deps.dev:0 github.com/standardpress/stylelint-config-standardpress,num_dependents_deps.dev:0 github.com/standardschema/javascript,num_dependents_deps.dev:0 +github.com/standardweb3/install-rust-substrate-action, github.com/standart-ag/flask-ssl, github.com/standart-ag/sentry-eve, github.com/standart-n/download-rlsnet,num_dependents_deps.dev:0 @@ -1072267,9 +1091470,12 @@ github.com/stanleyjohnson/testantula,num_dependents_deps.dev:0 github.com/stanleyjs/SR3, github.com/stanleyli60/redux-action-helper,num_dependents_deps.dev:0 github.com/stanleylw/trtlapigo,num_dependents_deps.dev:0 +github.com/stanleynguyen/action-dogs, +github.com/stanleynguyen/action-errcheck, github.com/stanleynguyen/hello-universe,num_dependents_deps.dev:0 github.com/stanleynguyen/reveal-run-in-terminal, github.com/stanleynguyen/slides,num_dependents_deps.dev:0 +github.com/stanleynguyen/thanos, github.com/stanleypliu/sieve-of-eratosthenes,num_dependents_deps.dev:0 github.com/stanleyta/githubtopcontributors,num_dependents_deps.dev:0 github.com/stanleyta/githubtopcontributors_module,num_dependents_deps.dev:0 @@ -1072449,9 +1091655,11 @@ github.com/starbops/cvault, github.com/starbops/hubot-hungry,num_dependents_deps.dev:0 github.com/starboychina/martini-mvc,num_dependents_deps.dev:0 github.com/starbuckr/go-utils,num_dependents_deps.dev:0 +github.com/starburst997/github-action-benchmark, github.com/starburstdata/dbt-trino, github.com/starburstdata/starburst-spotify-docker-client,num_dependents_deps.dev:13 github.com/starcat-io/hackeeg-client-python, +github.com/starcharles/heroku-deploy, github.com/starcharles/test-plugin,num_dependents_deps.dev:0 github.com/starchou/flora-kit,num_dependents_deps.dev:0 github.com/starchou/hey,num_dependents_deps.dev:0 @@ -1072533,7 +1091741,10 @@ github.com/starfear/hashdistinct,num_dependents_deps.dev:0 github.com/starfed/local-mock,num_dependents_deps.dev:0 github.com/starfed/simple-local-mock, github.com/starfighterheavy/env_manifest,num_dependents_deps.dev:0 +github.com/starfish719/check-actions-billing-info, github.com/starfish719/git-cz-for-api-developer,num_dependents_deps.dev:0 +github.com/starfish719/post-cat-comment, +github.com/starfish719/virtual-environment-version, github.com/starflow/pennergame-bottle-collector,num_dependents_deps.dev:0 github.com/starforce88/middleware,num_dependents_deps.dev:0 github.com/starfork/strago,num_dependents_deps.dev:0 @@ -1072590,6 +1091801,7 @@ github.com/starjumper30/immutable-enums,num_dependents_deps.dev:0 github.com/starjumper30/protractor-robot-remote,num_dependents_deps.dev:0 github.com/starjun/ngxparse,num_dependents_deps.dev:0 github.com/stark-alex/beergammon-game,num_dependents_deps.dev:0 +github.com/stark-contrast/accessibility-check-action, github.com/stark-tech-group/stg-sdk-golang,num_dependents_deps.dev:0 github.com/stark-tech-space/ctrip-dist-node,num_dependents_deps.dev:0 github.com/stark-tech-space/feieyun-node,num_dependents_deps.dev:0 @@ -1073169,6 +1092381,7 @@ github.com/stateform/stateform-element,num_dependents_deps.dev:0 github.com/stateform/stateform-iview,num_dependents_deps.dev:0 github.com/statefront/statefront-cli,num_dependents_deps.dev:0 github.com/statefront/statefront-js,num_dependents_deps.dev:0 +github.com/stateful/vscode-server-action, github.com/statehook/statehook.js,num_dependents_deps.dev:0 github.com/stateless-systems/net-ftp-list,num_dependents_deps.dev:6 github.com/stateless-systems/uri-meta,num_dependents_deps.dev:0 @@ -1073416,6 +1092629,7 @@ github.com/stativejs/react-stative,num_dependents_deps.dev:0 github.com/stativejs/stative, github.com/statizarm/hook_handler,num_dependents_deps.dev:0 github.com/statlab/cryptorandom, +github.com/statlab/permute, github.com/statmlben/Variant-SVM, github.com/statmlben/dnn-inference, github.com/statmlben/dnn-locate, @@ -1073435,10 +1092649,12 @@ github.com/statsbiblioteket/streamtuples,num_dependents_deps.dev:0 github.com/statsbomb/prometheus-msk-discovery,num_dependents_deps.dev:0 github.com/statsbomb/statsbombpy, github.com/statsd/statsd,criticality_score:0.575050 +github.com/statsig-io/github-sdk, github.com/statsig-io/go-sdk,num_dependents_deps.dev:0 github.com/statsig-io/ip3country,num_dependents_deps.dev:0 github.com/statsig-io/ip3country-go,num_dependents_deps.dev:0 github.com/statsig-io/js-client-sdk,num_dependents_deps.dev:8 +github.com/statsig-io/kubectl-via-eksctl, github.com/statsig-io/node-js-server-sdk, github.com/statsig-io/python-sdk, github.com/statsig-io/react-native,num_dependents_deps.dev:0 @@ -1073459,6 +1092675,7 @@ github.com/statueofmike/figtion, github.com/statueofmike/huasca, github.com/statueofmike/rtsp, github.com/staturecrane/PyTorch-ES, +github.com/status-base/upload-file-to-supabase-storage, github.com/status-hub/fetch, github.com/status-im/embark-bamboo,num_dependents_deps.dev:0 github.com/status-im/embark-status,num_dependents_deps.dev:0 @@ -1073758,6 +1092975,8 @@ github.com/stbutler11/generator-design-studio,num_dependents_deps.dev:0 github.com/stcalica/gatsby-components,num_dependents_deps.dev:0 github.com/stcalica/gatsby-imgur-gallery-albums,num_dependents_deps.dev:0 github.com/stcalica/react-subreddit-posts,num_dependents_deps.dev:0 +github.com/stcalica/s3-upload, +github.com/stcalica/update-lambda, github.com/stcatz/gocrawl,num_dependents_deps.dev:0 github.com/stcejorPmodnar/ph-hackathon-2019, github.com/stchangg/placecomplete,num_dependents_deps.dev:0 @@ -1073884,6 +1093103,30 @@ github.com/stdiopt/httpserve,num_dependents_deps.dev:0 github.com/stdiopt/stream,num_dependents_deps.dev:0 github.com/stdjs/stdjs_node,num_dependents_deps.dev:0 github.com/stdlib-js/array,num_dependents_deps.dev:260 +github.com/stdlib-js/array-base, +github.com/stdlib-js/array-base-accessor-getter, +github.com/stdlib-js/array-base-accessor-setter, +github.com/stdlib-js/array-base-accessors, +github.com/stdlib-js/array-base-arraylike2object, +github.com/stdlib-js/array-base-assert, +github.com/stdlib-js/array-base-assert-is-accessor-array, +github.com/stdlib-js/array-base-cartesian-power, +github.com/stdlib-js/array-base-cartesian-product, +github.com/stdlib-js/array-base-cartesian-square, +github.com/stdlib-js/array-base-copy, +github.com/stdlib-js/array-base-copy-indexed, +github.com/stdlib-js/array-base-filled, +github.com/stdlib-js/array-base-filled-by, +github.com/stdlib-js/array-base-getter, +github.com/stdlib-js/array-base-incrspace, +github.com/stdlib-js/array-base-linspace, +github.com/stdlib-js/array-base-logspace, +github.com/stdlib-js/array-base-ones, +github.com/stdlib-js/array-base-setter, +github.com/stdlib-js/array-base-take, +github.com/stdlib-js/array-base-unitspace, +github.com/stdlib-js/array-base-zero-to, +github.com/stdlib-js/array-base-zeros, github.com/stdlib-js/array-buffer,num_dependents_deps.dev:51 github.com/stdlib-js/array-complex128,num_dependents_deps.dev:23 github.com/stdlib-js/array-complex64,num_dependents_deps.dev:23 @@ -1074074,6 +1093317,7 @@ github.com/stdlib-js/assert-is-matrix-like,num_dependents_deps.dev:11 github.com/stdlib-js/assert-is-method,num_dependents_deps.dev:0 github.com/stdlib-js/assert-is-method-in,num_dependents_deps.dev:0 github.com/stdlib-js/assert-is-mobile,num_dependents_deps.dev:0 +github.com/stdlib-js/assert-is-multi-slice, github.com/stdlib-js/assert-is-named-typed-tuple-like,num_dependents_deps.dev:0 github.com/stdlib-js/assert-is-nan,num_dependents_deps.dev:295 github.com/stdlib-js/assert-is-nan-array,num_dependents_deps.dev:0 @@ -1074148,6 +1093392,7 @@ github.com/stdlib-js/assert-is-sharedarraybuffer,num_dependents_deps.dev:1 github.com/stdlib-js/assert-is-skew-centrosymmetric-matrix,num_dependents_deps.dev:0 github.com/stdlib-js/assert-is-skew-persymmetric-matrix,num_dependents_deps.dev:0 github.com/stdlib-js/assert-is-skew-symmetric-matrix,num_dependents_deps.dev:0 +github.com/stdlib-js/assert-is-slice, github.com/stdlib-js/assert-is-square-matrix,num_dependents_deps.dev:1 github.com/stdlib-js/assert-is-square-number,num_dependents_deps.dev:0 github.com/stdlib-js/assert-is-square-triangular-number,num_dependents_deps.dev:0 @@ -1074342,6 +1093587,8 @@ github.com/stdlib-js/blas-gdot,num_dependents_deps.dev:0 github.com/stdlib-js/blas-gswap,num_dependents_deps.dev:0 github.com/stdlib-js/blas-sdot,num_dependents_deps.dev:0 github.com/stdlib-js/blas-sswap,num_dependents_deps.dev:0 +github.com/stdlib-js/boolean, +github.com/stdlib-js/boolean-ctor, github.com/stdlib-js/buffer,num_dependents_deps.dev:266 github.com/stdlib-js/buffer-alloc-unsafe,num_dependents_deps.dev:7 github.com/stdlib-js/buffer-ctor,num_dependents_deps.dev:2112 @@ -1074364,6 +1093611,9 @@ github.com/stdlib-js/complex-reim,num_dependents_deps.dev:0 github.com/stdlib-js/complex-reviver,num_dependents_deps.dev:0 github.com/stdlib-js/complex-reviver-float32,num_dependents_deps.dev:0 github.com/stdlib-js/complex-reviver-float64,num_dependents_deps.dev:0 +github.com/stdlib-js/console, +github.com/stdlib-js/console-log, +github.com/stdlib-js/console-log-each, github.com/stdlib-js/constants,num_dependents_deps.dev:260 github.com/stdlib-js/constants-array,num_dependents_deps.dev:0 github.com/stdlib-js/constants-array-max-array-length,num_dependents_deps.dev:109 @@ -1074567,6 +1093817,8 @@ github.com/stdlib-js/datasets-us-states-names-capitals,num_dependents_deps.dev:0 github.com/stdlib-js/error,num_dependents_deps.dev:3 github.com/stdlib-js/error-reviver,num_dependents_deps.dev:0 github.com/stdlib-js/error-to-json,num_dependents_deps.dev:0 +github.com/stdlib-js/error-tools-fmtprodmsg, +github.com/stdlib-js/error-tools-pkg2id, github.com/stdlib-js/esm,num_dependents_deps.dev:0 github.com/stdlib-js/fs,num_dependents_deps.dev:260 github.com/stdlib-js/fs-close,num_dependents_deps.dev:0 @@ -1074582,6 +1093834,8 @@ github.com/stdlib-js/fs-resolve-parent-path,num_dependents_deps.dev:2056 github.com/stdlib-js/fs-resolve-parent-path-by,num_dependents_deps.dev:0 github.com/stdlib-js/fs-unlink,num_dependents_deps.dev:0 github.com/stdlib-js/fs-write-file,num_dependents_deps.dev:1 +github.com/stdlib-js/function, +github.com/stdlib-js/function-ctor, github.com/stdlib-js/iter,num_dependents_deps.dev:3 github.com/stdlib-js/iter-advance,num_dependents_deps.dev:0 github.com/stdlib-js/iter-any,num_dependents_deps.dev:0 @@ -1075137,6 +1094391,7 @@ github.com/stdlib-js/namespace-pkg2alias,num_dependents_deps.dev:0 github.com/stdlib-js/namespace-pkg2related,num_dependents_deps.dev:0 github.com/stdlib-js/namespace-pkg2standalone,num_dependents_deps.dev:0 github.com/stdlib-js/namespace-standalone2pkg,num_dependents_deps.dev:0 +github.com/stdlib-js/napi, github.com/stdlib-js/ndarray,num_dependents_deps.dev:268 github.com/stdlib-js/ndarray-array,num_dependents_deps.dev:0 github.com/stdlib-js/ndarray-base,num_dependents_deps.dev:0 @@ -1075164,9 +1094419,13 @@ github.com/stdlib-js/ndarray-base-buffer-ctors,num_dependents_deps.dev:5 github.com/stdlib-js/ndarray-base-buffer-dtype,num_dependents_deps.dev:17 github.com/stdlib-js/ndarray-base-buffer-dtype-enum,num_dependents_deps.dev:0 github.com/stdlib-js/ndarray-base-bytes-per-element,num_dependents_deps.dev:63 +github.com/stdlib-js/ndarray-base-char2dtype, github.com/stdlib-js/ndarray-base-clamp-index,num_dependents_deps.dev:19 github.com/stdlib-js/ndarray-base-ctor,num_dependents_deps.dev:38 github.com/stdlib-js/ndarray-base-dtype-char,num_dependents_deps.dev:18 +github.com/stdlib-js/ndarray-base-dtype-enum2str, +github.com/stdlib-js/ndarray-base-dtype-resolve-str, +github.com/stdlib-js/ndarray-base-dtype-str2enum, github.com/stdlib-js/ndarray-base-dtypes2signatures,num_dependents_deps.dev:3 github.com/stdlib-js/ndarray-base-function-object,num_dependents_deps.dev:1 github.com/stdlib-js/ndarray-base-ind,num_dependents_deps.dev:18 @@ -1075204,6 +1094463,10 @@ github.com/stdlib-js/ndarray-orders,num_dependents_deps.dev:46 github.com/stdlib-js/ndarray-promotion-rules,num_dependents_deps.dev:0 github.com/stdlib-js/ndarray-safe-casts,num_dependents_deps.dev:6 github.com/stdlib-js/ndarray-same-kind-casts,num_dependents_deps.dev:6 +github.com/stdlib-js/ndarray-slice, +github.com/stdlib-js/ndarray-slice-assign, +github.com/stdlib-js/ndarray-slice-dimension, +github.com/stdlib-js/ndarray-slice-dimension-to, github.com/stdlib-js/ndarray-sub2ind,num_dependents_deps.dev:0 github.com/stdlib-js/net,num_dependents_deps.dev:3 github.com/stdlib-js/net-disposable-http-server,num_dependents_deps.dev:0 @@ -1075212,6 +1094475,7 @@ github.com/stdlib-js/net-simple-http-server,num_dependents_deps.dev:0 github.com/stdlib-js/nlp,num_dependents_deps.dev:272 github.com/stdlib-js/nlp-expand-contractions,num_dependents_deps.dev:0 github.com/stdlib-js/nlp-lda,num_dependents_deps.dev:0 +github.com/stdlib-js/nlp-ordinalize, github.com/stdlib-js/nlp-porter-stemmer,num_dependents_deps.dev:0 github.com/stdlib-js/nlp-tokenize,num_dependents_deps.dev:0 github.com/stdlib-js/number,num_dependents_deps.dev:268 @@ -1075264,6 +1094528,9 @@ github.com/stdlib-js/number-uint8,num_dependents_deps.dev:0 github.com/stdlib-js/number-uint8-base,num_dependents_deps.dev:0 github.com/stdlib-js/number-uint8-base-from-binary-string,num_dependents_deps.dev:1 github.com/stdlib-js/number-uint8-base-to-binary-string,num_dependents_deps.dev:1 +github.com/stdlib-js/object, +github.com/stdlib-js/object-assign, +github.com/stdlib-js/object-ctor, github.com/stdlib-js/os,num_dependents_deps.dev:270 github.com/stdlib-js/os-arch,num_dependents_deps.dev:0 github.com/stdlib-js/os-byte-order,num_dependents_deps.dev:964 @@ -1075428,6 +1094695,7 @@ github.com/stdlib-js/regexp-decimal-number,num_dependents_deps.dev:0 github.com/stdlib-js/regexp-dirname,num_dependents_deps.dev:0 github.com/stdlib-js/regexp-dirname-posix,num_dependents_deps.dev:1 github.com/stdlib-js/regexp-dirname-windows,num_dependents_deps.dev:1 +github.com/stdlib-js/regexp-duration-string, github.com/stdlib-js/regexp-eol,num_dependents_deps.dev:2066 github.com/stdlib-js/regexp-extended-length-path,num_dependents_deps.dev:2057 github.com/stdlib-js/regexp-extname,num_dependents_deps.dev:1 @@ -1075439,6 +1094707,7 @@ github.com/stdlib-js/regexp-filename-windows,num_dependents_deps.dev:0 github.com/stdlib-js/regexp-function-name,num_dependents_deps.dev:2278 github.com/stdlib-js/regexp-native-function,num_dependents_deps.dev:0 github.com/stdlib-js/regexp-regexp,num_dependents_deps.dev:2069 +github.com/stdlib-js/regexp-reviver, github.com/stdlib-js/regexp-unc-path,num_dependents_deps.dev:0 github.com/stdlib-js/regexp-utf16-surrogate-pair,num_dependents_deps.dev:0 github.com/stdlib-js/regexp-utf16-unpaired-surrogate,num_dependents_deps.dev:0 @@ -1075469,6 +1094738,20 @@ github.com/stdlib-js/simulate-iter-sawtooth-wave,num_dependents_deps.dev:0 github.com/stdlib-js/simulate-iter-sine-wave,num_dependents_deps.dev:0 github.com/stdlib-js/simulate-iter-square-wave,num_dependents_deps.dev:0 github.com/stdlib-js/simulate-iter-triangle-wave,num_dependents_deps.dev:0 +github.com/stdlib-js/slice, +github.com/stdlib-js/slice-base, +github.com/stdlib-js/slice-base-length, +github.com/stdlib-js/slice-base-nonreduced-dimensions, +github.com/stdlib-js/slice-base-normalize-multi-slice, +github.com/stdlib-js/slice-base-normalize-slice, +github.com/stdlib-js/slice-base-reduced-dimensions, +github.com/stdlib-js/slice-base-sargs2multislice, +github.com/stdlib-js/slice-base-seq2multislice, +github.com/stdlib-js/slice-base-seq2slice, +github.com/stdlib-js/slice-base-slice2seq, +github.com/stdlib-js/slice-ctor, +github.com/stdlib-js/slice-multi, +github.com/stdlib-js/slice-seq2slice, github.com/stdlib-js/stats,num_dependents_deps.dev:271 github.com/stdlib-js/stats-anova1,num_dependents_deps.dev:0 github.com/stdlib-js/stats-bartlett-test,num_dependents_deps.dev:0 @@ -1076372,8 +1095655,13 @@ github.com/stdlib-js/strided-base,num_dependents_deps.dev:0 github.com/stdlib-js/strided-base-binary,num_dependents_deps.dev:0 github.com/stdlib-js/strided-base-dmap,num_dependents_deps.dev:2 github.com/stdlib-js/strided-base-dmskmap,num_dependents_deps.dev:2 +github.com/stdlib-js/strided-base-dtype-enum2str, +github.com/stdlib-js/strided-base-dtype-resolve-str, +github.com/stdlib-js/strided-base-dtype-str2enum, github.com/stdlib-js/strided-base-function-object,num_dependents_deps.dev:4 github.com/stdlib-js/strided-base-map-by,num_dependents_deps.dev:2 +github.com/stdlib-js/strided-base-max-view-buffer-index, +github.com/stdlib-js/strided-base-min-view-buffer-index, github.com/stdlib-js/strided-base-mskunary,num_dependents_deps.dev:0 github.com/stdlib-js/strided-base-nullary,num_dependents_deps.dev:0 github.com/stdlib-js/strided-base-quaternary,num_dependents_deps.dev:0 @@ -1076393,11 +1095681,16 @@ github.com/stdlib-js/strided-napi-smap,num_dependents_deps.dev:2 github.com/stdlib-js/strided-napi-smskmap,num_dependents_deps.dev:2 github.com/stdlib-js/strided-napi-unary,num_dependents_deps.dev:4 github.com/stdlib-js/string,num_dependents_deps.dev:261 +github.com/stdlib-js/string-acronym, +github.com/stdlib-js/string-base, +github.com/stdlib-js/string-base-format-interpolate, +github.com/stdlib-js/string-base-format-tokenize, github.com/stdlib-js/string-camelcase,num_dependents_deps.dev:0 github.com/stdlib-js/string-capitalize,num_dependents_deps.dev:0 github.com/stdlib-js/string-code-point-at,num_dependents_deps.dev:2 github.com/stdlib-js/string-constantcase,num_dependents_deps.dev:0 github.com/stdlib-js/string-ends-with,num_dependents_deps.dev:0 +github.com/stdlib-js/string-format, github.com/stdlib-js/string-from-code-point,num_dependents_deps.dev:0 github.com/stdlib-js/string-kebabcase,num_dependents_deps.dev:0 github.com/stdlib-js/string-left-pad,num_dependents_deps.dev:10 @@ -1076406,6 +1095699,7 @@ github.com/stdlib-js/string-lowercase,num_dependents_deps.dev:2049 github.com/stdlib-js/string-next-grapheme-cluster-break,num_dependents_deps.dev:0 github.com/stdlib-js/string-num-grapheme-clusters,num_dependents_deps.dev:0 github.com/stdlib-js/string-pad,num_dependents_deps.dev:0 +github.com/stdlib-js/string-pascalcase, github.com/stdlib-js/string-percent-encode,num_dependents_deps.dev:0 github.com/stdlib-js/string-remove-first,num_dependents_deps.dev:0 github.com/stdlib-js/string-remove-last,num_dependents_deps.dev:0 @@ -1076419,7 +1095713,10 @@ github.com/stdlib-js/string-right-pad,num_dependents_deps.dev:4 github.com/stdlib-js/string-right-trim,num_dependents_deps.dev:0 github.com/stdlib-js/string-startcase,num_dependents_deps.dev:0 github.com/stdlib-js/string-starts-with,num_dependents_deps.dev:0 +github.com/stdlib-js/string-substring-after, github.com/stdlib-js/string-trim,num_dependents_deps.dev:0 +github.com/stdlib-js/string-truncate, +github.com/stdlib-js/string-truncate-middle, github.com/stdlib-js/string-uncapitalize,num_dependents_deps.dev:0 github.com/stdlib-js/string-uppercase,num_dependents_deps.dev:1 github.com/stdlib-js/string-utf16-to-utf8-array,num_dependents_deps.dev:0 @@ -1076428,6 +1095725,7 @@ github.com/stdlib-js/symbol-async-iterator,num_dependents_deps.dev:0 github.com/stdlib-js/symbol-ctor,num_dependents_deps.dev:0 github.com/stdlib-js/symbol-iterator,num_dependents_deps.dev:140 github.com/stdlib-js/time,num_dependents_deps.dev:271 +github.com/stdlib-js/time-base-parse-duration, github.com/stdlib-js/time-day-of-quarter,num_dependents_deps.dev:0 github.com/stdlib-js/time-day-of-year,num_dependents_deps.dev:0 github.com/stdlib-js/time-days-in-month,num_dependents_deps.dev:1 @@ -1076591,6 +1095889,7 @@ github.com/stdlib-js/utils-memoize,num_dependents_deps.dev:4 github.com/stdlib-js/utils-merge,num_dependents_deps.dev:0 github.com/stdlib-js/utils-move-property,num_dependents_deps.dev:0 github.com/stdlib-js/utils-named-typed-tuple,num_dependents_deps.dev:0 +github.com/stdlib-js/utils-nary-function, github.com/stdlib-js/utils-native-class,num_dependents_deps.dev:2367 github.com/stdlib-js/utils-next-tick,num_dependents_deps.dev:2059 github.com/stdlib-js/utils-none,num_dependents_deps.dev:0 @@ -1076678,6 +1095977,7 @@ github.com/stdlib-js/utils-zip,num_dependents_deps.dev:0 github.com/stdlib/lib,"criticality_score:0.415360,num_dependents_deps.dev:0" github.com/stdlib/lib-node, github.com/stdlib/stable-serialize,num_dependents_deps.dev:0 +github.com/stdlo/rpmbuild, github.com/stdmedoth/NodeControllerGenerator,num_dependents_deps.dev:0 github.com/stdogpkg/cukuramoto, github.com/stdogpkg/emate, @@ -1076693,11 +1095993,13 @@ github.com/ste-hibo/rn-material-textfield,num_dependents_deps.dev:0 github.com/ste-vg/pop.svg,num_dependents_deps.dev:0 github.com/ste-vg/timeline-line.js,num_dependents_deps.dev:0 github.com/ste-xx/cf-fetch-response,num_dependents_deps.dev:0 +github.com/ste-xx/steam-price-action, github.com/ste645/validus_pkg_test, github.com/steThera/gen-next-js,num_dependents_deps.dev:0 github.com/steabert/molpy, github.com/stead-global/scheduler-calendar,num_dependents_deps.dev:0 github.com/steadev/ImagePicker,num_dependents_deps.dev:0 +github.com/steadfast-collective/antlers-action, github.com/steadfastcollective/tailwindcss-touch,num_dependents_deps.dev:0 github.com/steadicat/ducts,num_dependents_deps.dev:0 github.com/steadicat/eslint-plugin-react-memo, @@ -1076713,6 +1096015,10 @@ github.com/steadmatthew/node-exit-process,num_dependents_deps.dev:0 github.com/steadmatthew/node-turn-to-string,num_dependents_deps.dev:0 github.com/steady-daddy/sortech,num_dependents_deps.dev:0 github.com/steadyapp/html-webpack-link-type-plugin,num_dependents_deps.dev:0 +github.com/steadybit/define-service, +github.com/steadybit/instana-maintenance-window, +github.com/steadybit/run-experiment, +github.com/steadybit/verify-service, github.com/steadyequipment/node-docker-host-ip,num_dependents_deps.dev:0 github.com/steadyequipment/node-firestore-backup,num_dependents_deps.dev:0 github.com/steadyequipment/node-poursteady-winston,num_dependents_deps.dev:0 @@ -1076843,6 +1096149,7 @@ github.com/stearm/weldy,num_dependents_deps.dev:0 github.com/steatopygous/correct-node,num_dependents_deps.dev:0 github.com/stebalien/go-bitfield,num_dependents_deps.dev:530 github.com/stebalien/go-flow-metrics,num_dependents_deps.dev:0 +github.com/stebje/jord, github.com/stebogit/grid-to-matrix,num_dependents_deps.dev:116 github.com/stebogit/matrix-to-grid,num_dependents_deps.dev:0 github.com/stebogit/react-darksky-map,num_dependents_deps.dev:0 @@ -1076856,6 +1096163,7 @@ github.com/steckel/apple-store-availability,num_dependents_deps.dev:0 github.com/steckel/arithmetic-js,num_dependents_deps.dev:0 github.com/steckel/opt-in,num_dependents_deps.dev:0 github.com/stecky/yet-another-chart-releaser,num_dependents_deps.dev:0 +github.com/stecky/yet-another-chart-releaser-action, github.com/stecman/symfony-console-completion,criticality_score:0.342550 github.com/steder/nato, github.com/steder/pundler, @@ -1076872,7 +1096180,9 @@ github.com/stee1cat/git-backup,num_dependents_deps.dev:0 github.com/steebchen/dumongo,num_dependents_deps.dev:0 github.com/steebchen/eslint-config-ultra,num_dependents_deps.dev:0 github.com/steebchen/flush-cache,num_dependents_deps.dev:0 +github.com/steebchen/flutter, github.com/steebchen/insta-pic,num_dependents_deps.dev:0 +github.com/steebchen/kubectl, github.com/steebchen/smackbar,num_dependents_deps.dev:0 github.com/steebchen/smiler,num_dependents_deps.dev:0 github.com/steebchen/text-to-picture,num_dependents_deps.dev:0 @@ -1077061,6 +1096371,8 @@ github.com/steem-sdk/generic-css,num_dependents_deps.dev:0 github.com/steem-sdk/steem-utils,num_dependents_deps.dev:0 github.com/steemfans/auth-data,num_dependents_deps.dev:0 github.com/steemfans/data-sign-auth,num_dependents_deps.dev:0 +github.com/steemfans/post-to-steem-action, +github.com/steemfans/process-issues-for-posting-to-steem-action, github.com/steemfans/steem-api,num_dependents_deps.dev:0 github.com/steemit/condenser,criticality_score:0.506710 github.com/steemit/libcrypto-js,num_dependents_deps.dev:0 @@ -1077068,6 +1096380,7 @@ github.com/steemit/steem,criticality_score:0.476620 github.com/steemit/steem-js,"criticality_score:0.354480,num_dependents_deps.dev:4" github.com/steemit/steem-python, github.com/steemit/steemconnect.js,num_dependents_deps.dev:4 +github.com/steenbergen-design/trellis-action, github.com/steenhansen/gmap-dragdrop-react,num_dependents_deps.dev:0 github.com/steenhansen/mongooseToCsv,num_dependents_deps.dev:0 github.com/steenhansen/react-hover-grid,num_dependents_deps.dev:0 @@ -1077120,6 +1096433,8 @@ github.com/stef/pyrsp, github.com/stef/pysodium, github.com/stef/wireless-radar, github.com/stef2k16/goalive,num_dependents_deps.dev:0 +github.com/stefafafan/post-mackerel-metrics, +github.com/stefafafan/psi-action, github.com/stefalda/ReactNativeLocalization,"criticality_score:0.376570,num_dependents_deps.dev:0" github.com/stefalda/localized-strings,num_dependents_deps.dev:112 github.com/stefalda/react-localization,"criticality_score:0.344260,num_dependents_deps.dev:26" @@ -1077170,6 +1096485,7 @@ github.com/stefanKuijers/generator-aw-sitebuild,num_dependents_deps.dev:0 github.com/stefanalexlupu/derange,num_dependents_deps.dev:0 github.com/stefanandres/hubot-dau,num_dependents_deps.dev:0 github.com/stefanaz/vue-window-resize,num_dependents_deps.dev:0 +github.com/stefanbauer/action-current-pr-branch, github.com/stefanbie/FrameWalker, github.com/stefanbirkner/chelidonium,num_dependents_deps.dev:0 github.com/stefanbirkner/contarini,num_dependents_deps.dev:0 @@ -1077204,6 +1096520,7 @@ github.com/stefanbuck/bower-list,num_dependents_deps.dev:0 github.com/stefanbuck/eslint-rule-docs,num_dependents_deps.dev:1102 github.com/stefanbuck/find-reachable-urls,num_dependents_deps.dev:0 github.com/stefanbuck/generator-node-gulp,num_dependents_deps.dev:0 +github.com/stefanbuck/github-issue-parser, github.com/stefanbuck/github-linker-cache,num_dependents_deps.dev:0 github.com/stefanbuck/github-linker-core,num_dependents_deps.dev:0 github.com/stefanbuck/github-linker-registries,num_dependents_deps.dev:0 @@ -1077269,6 +1096586,7 @@ github.com/stefangabos/Zebra_Tooltips,num_dependents_deps.dev:0 github.com/stefangabos/Zebra_Transform,num_dependents_deps.dev:0 github.com/stefangabos/world_countries,"criticality_score:0.347620,num_dependents_deps.dev:0" github.com/stefangal/newpy, +github.com/stefangeneralao/sinch-actions, github.com/stefangeorgerobert/arweave-store, github.com/stefangeorgerobert/filecoin-lotus-client, github.com/stefangeyer/challonge-java,num_dependents_deps.dev:0 @@ -1077350,6 +1096668,7 @@ github.com/stefanlazarevic/react-drawer,num_dependents_deps.dev:0 github.com/stefanlee91418/poi-excel-parser,num_dependents_deps.dev:0 github.com/stefanlegg/react-caniuse-embed,num_dependents_deps.dev:0 github.com/stefanlegg/sharepoint-promise,num_dependents_deps.dev:0 +github.com/stefanluptak/delete-old-pr-artifacts, github.com/stefanmaretic/create-react-app,num_dependents_deps.dev:0 github.com/stefanmaric/eslint-config-munchies,num_dependents_deps.dev:0 github.com/stefanmaric/eslintblame,num_dependents_deps.dev:0 @@ -1077413,6 +1096732,8 @@ github.com/stefanodotit/gulp-poedit-to-json,num_dependents_deps.dev:0 github.com/stefanodotit/nams,num_dependents_deps.dev:0 github.com/stefanodotit/vue-page-visibility-awesome,num_dependents_deps.dev:0 github.com/stefanodp91/fcm,num_dependents_deps.dev:0 +github.com/stefanoeb/eslint-action, +github.com/stefanoeb/jest-action, github.com/stefanoeb/react-native-cached-progressive-image, github.com/stefanoeb/react-native-customerio,num_dependents_deps.dev:0 github.com/stefanofontanelli/ColanderAlchemy, @@ -1077454,6 +1096775,7 @@ github.com/stefanoruth/valon-args,num_dependents_deps.dev:0 github.com/stefanoruth/valon-cli,num_dependents_deps.dev:0 github.com/stefanos-/angular-lib-seed,num_dependents_deps.dev:0 github.com/stefanoschmidt1995/MLGW, +github.com/stefanoschrs/auth0-actions-as-code, github.com/stefanoschrs/checkup,num_dependents_deps.dev:0 github.com/stefanoslig/xstate-angular,num_dependents_deps.dev:0 github.com/stefanovazzocell/NJQ,num_dependents_deps.dev:0 @@ -1077572,7 +1096894,10 @@ github.com/stefanprobst/unified-util-bridge,num_dependents_deps.dev:0 github.com/stefanprodan/AspNetCoreRateLimit,criticality_score:0.406910 github.com/stefanprodan/WebApiThrottle,criticality_score:0.309340 github.com/stefanprodan/dockprom,criticality_score:0.476410 +github.com/stefanprodan/helm-gh-pages, +github.com/stefanprodan/hrval-action, github.com/stefanprodan/k8s-podinfo,num_dependents_deps.dev:1 +github.com/stefanprodan/kube-tools, github.com/stefanprodan/kubectl-kubesec,num_dependents_deps.dev:0 github.com/stefanprodan/kustomizer,num_dependents_deps.dev:0 github.com/stefanprodan/mgob,"criticality_score:0.364710,num_dependents_deps.dev:0" @@ -1077595,6 +1096920,7 @@ github.com/stefanskiasan/capacitor-plugin-ecc,num_dependents_deps.dev:0 github.com/stefanskiasan/capacitor-plugin-ecies,num_dependents_deps.dev:0 github.com/stefanslaczka/binary-guessing-program,num_dependents_deps.dev:0 github.com/stefansonski/powerline-treesitter, +github.com/stefanstranger/azuredevops-bug-action, github.com/stefansundin/ec2-run,num_dependents_deps.dev:0 github.com/stefansundin/go-lambda-invoke,num_dependents_deps.dev:0 github.com/stefansundin/rssbox,criticality_score:0.303520 @@ -1077701,9 +1097027,13 @@ github.com/stefanwin/go-mysql-auto-backup,num_dependents_deps.dev:0 github.com/stefanwin/go-rfc,num_dependents_deps.dev:0 github.com/stefanwin/img-swap,num_dependents_deps.dev:0 github.com/stefanyuk/racing-report, +github.com/stefanzweifel/changelog-updater-action, github.com/stefanzweifel/git-auto-commit-action,criticality_score:0.553440 github.com/stefanzweifel/js-swiss-cantons,num_dependents_deps.dev:0 +github.com/stefanzweifel/laravel-phpinsights-action, github.com/stefanzweifel/laravel-stats,criticality_score:0.475030 +github.com/stefanzweifel/oh-dear-request-run-action, +github.com/stefanzweifel/phpinsights-action, github.com/stefanzweifel/screeenly,criticality_score:0.384270 github.com/stefashkaa/npmex-lerna,num_dependents_deps.dev:0 github.com/stefcameron/grunt-processDocstrapDocs,num_dependents_deps.dev:0 @@ -1077712,6 +1097042,7 @@ github.com/stefco/geco_stat, github.com/stefco/lazytype, github.com/stefco/profilegraph, github.com/stefco/yaxi, +github.com/stefda/action-cloud-run, github.com/stefda/drsync,num_dependents_deps.dev:0 github.com/stefda/random-access-memory-store,num_dependents_deps.dev:0 github.com/stefdelec/gitool,num_dependents_deps.dev:0 @@ -1077744,6 +1097075,7 @@ github.com/steffen93/p2b2,num_dependents_deps.dev:0 github.com/steffenagger/express-robots.txt,num_dependents_deps.dev:0 github.com/steffenagger/koa-robots.txt,num_dependents_deps.dev:0 github.com/steffenagger/react-native-device-time-format, +github.com/steffendietz/clover-to-shieldsio-json-action, github.com/steffenfritz/gopacket,num_dependents_deps.dev:0 github.com/steffengy/cargo-board,num_dependents_deps.dev:0 github.com/steffengy/node-net-ping, @@ -1077833,6 +1097165,7 @@ github.com/stegos/stegos,num_dependents_deps.dev:0 github.com/stegosawr/albedo,num_dependents_deps.dev:0 github.com/stegriff/old-money,num_dependents_deps.dev:0 github.com/stegua/ot1d, +github.com/stegzilla/discord-notify, github.com/stehefan/hubot-speedcurve,num_dependents_deps.dev:0 github.com/stehefan/postcss-env-replace,num_dependents_deps.dev:2 github.com/stehlik-jan/no-go-mod,num_dependents_deps.dev:0 @@ -1077843,6 +1097176,8 @@ github.com/steida/slad,num_dependents_deps.dev:0 github.com/steidani/ConTrack, github.com/steijehillewaert/homebridge-chromecast-steije,num_dependents_deps.dev:0 github.com/steilerDev/homebridge-openhab2-complete,num_dependents_deps.dev:0 +github.com/steiley/exec-javascript-diagnostic, +github.com/steiley/exec-ruby-diagnostic, github.com/steiley/slim2haml,num_dependents_deps.dev:0 github.com/steimi/denseweight, github.com/steinarb/adapters-for-osgi-services,num_dependents_deps.dev:30 @@ -1077958,6 +1097293,7 @@ github.com/stella-zb/lotide,num_dependents_deps.dev:0 github.com/stella1013/ReactAnalyticsTracker,num_dependents_deps.dev:0 github.com/stellanera98/rpmapper,num_dependents_deps.dev:0 github.com/stellanera98/wdapi,num_dependents_deps.dev:0 +github.com/stellar-aria/llvm-embedded-toolchain-for-arm-action, github.com/stellar-dar/sdar-js-sdk,num_dependents_deps.dev:0 github.com/stellar-expert/albedo,num_dependents_deps.dev:0 github.com/stellar-expert/horizon-streamer,num_dependents_deps.dev:0 @@ -1078041,6 +1097377,7 @@ github.com/stellaye/today, github.com/stellentus/go-noko,num_dependents_deps.dev:0 github.com/stellentus/go-plc,num_dependents_deps.dev:0 github.com/stelligent/azure-nag, +github.com/stelligent/cfn-nag-sarif-action, github.com/stelligent/cfn_nag,criticality_score:0.532830 github.com/stelligent/cfnctl, github.com/stelligent/database-artifact-factory, @@ -1078063,7 +1097400,9 @@ github.com/stellot/stellot-iot,num_dependents_deps.dev:0 github.com/stelmakh/ink-mdx,num_dependents_deps.dev:0 github.com/stelong/GPErks, github.com/stels-cs/vk-bot-core,num_dependents_deps.dev:0 +github.com/stelynx/dart-full-coverage, github.com/stelzch/picamview, +github.com/stelzo/openapi-api-version-print, github.com/stemail23/codenamize-js,num_dependents_deps.dev:0 github.com/stemak/ani-helper,num_dependents_deps.dev:0 github.com/stemak/house-tyan,num_dependents_deps.dev:0 @@ -1078162,6 +1097501,7 @@ github.com/stenin-nikita/react-verificator,num_dependents_deps.dev:0 github.com/stenin-nikita/verificator,num_dependents_deps.dev:0 github.com/stenington/displayer-api-client,num_dependents_deps.dev:0 github.com/stenito/st-functions,num_dependents_deps.dev:0 +github.com/stenjo/devops-metrics-action, github.com/stenmuchow/eu-vat-validation,num_dependents_deps.dev:0 github.com/stennettm/historical,num_dependents_deps.dev:0 github.com/stenomax/plover_grandjean, @@ -1078193,6 +1097533,8 @@ github.com/step-finance/solana-program-library,num_dependents_deps.dev:0 github.com/step-flow/stepflow,num_dependents_deps.dev:45 github.com/step-flow/stepflow-js,num_dependents_deps.dev:0 github.com/step-flow/stepflow-wasm,num_dependents_deps.dev:0 +github.com/step-security/harden-runner, +github.com/step-security/wait-for-secrets, github.com/step-up-labs/firebase-database-dotnet,criticality_score:0.440660 github.com/step/orc-runner,num_dependents_deps.dev:0 github.com/step1989/backend-project-lvl2,num_dependents_deps.dev:0 @@ -1078262,10 +1097604,12 @@ github.com/stepchowfun/stem-cell,num_dependents_deps.dev:0 github.com/stepchowfun/tagref,num_dependents_deps.dev:0 github.com/stepchowfun/toast,num_dependents_deps.dev:0 github.com/stepchowfun/typical,num_dependents_deps.dev:0 +github.com/stepci/stepci, github.com/stepclub/create-react-app,num_dependents_deps.dev:0 github.com/stepcode/stepcode,criticality_score:0.412040 github.com/stepdi/tarantool-queue,num_dependents_deps.dev:0 github.com/stepek/subtract-date,num_dependents_deps.dev:0 +github.com/stepek/tsc-action, github.com/stepfunc/dnp3,num_dependents_deps.dev:0 github.com/steph-ben/datafetch, github.com/steph-tseng/to-sub, @@ -1078364,6 +1097708,7 @@ github.com/stephanebalasse/ngx-cypress,num_dependents_deps.dev:0 github.com/stephanebisson/restfulchatt,num_dependents_deps.dev:0 github.com/stephanebouget/ng-surprise,num_dependents_deps.dev:0 github.com/stephanebouget/powo-cli,num_dependents_deps.dev:0 +github.com/stephanebruckert/approvals-gatekeeper-action, github.com/stephanecodes/jsonify-paths,num_dependents_deps.dev:0 github.com/stephanecodes/oggy,num_dependents_deps.dev:0 github.com/stephanecollot/sparkmon, @@ -1078438,6 +1097783,7 @@ github.com/stephank/walkbuf,num_dependents_deps.dev:0 github.com/stephank/webcoin-dogecoin,num_dependents_deps.dev:0 github.com/stephank/yaml.node,num_dependents_deps.dev:9 github.com/stephankaag/aws-cdk,num_dependents_deps.dev:0 +github.com/stephankaag/gh-action-node-update-deps, github.com/stephankramer/uptide, github.com/stephanlensky/python-relational-stream-analysis, github.com/stephanmax/grunt-responsive-images-extender, @@ -1078540,6 +1097886,8 @@ github.com/stephenb/coffee-machine,num_dependents_deps.dev:0 github.com/stephenb/node-notes,num_dependents_deps.dev:0 github.com/stephenbaidu/resourcify,num_dependents_deps.dev:0 github.com/stephenbaldwin/fuelux-rails,num_dependents_deps.dev:0 +github.com/stephenbawks/aws-lambda-layer, +github.com/stephenbawks/aws-ssm-parameter, github.com/stephenbeckett/podcast-widget-cdn,num_dependents_deps.dev:0 github.com/stephenbeckett/smart-podcast-widget, github.com/stephenbellanger/lint-kit,num_dependents_deps.dev:0 @@ -1078947,6 +1098295,7 @@ github.com/stephensolis/cgr-generator,num_dependents_deps.dev:0 github.com/stephensolis/kameris, github.com/stephensolis/kameris-formats, github.com/stephensprinkle/react-blockies, +github.com/stephenswat/hakyll-build-pages, github.com/stephent/strapi-provider-upload-aws-s3-plus-cdn,num_dependents_deps.dev:0 github.com/stephentcannon/meteor-up,num_dependents_deps.dev:0 github.com/stephenthecurt/kova.js,num_dependents_deps.dev:0 @@ -1079019,6 +1098368,7 @@ github.com/stephenyu/gitbranch,num_dependents_deps.dev:0 github.com/stephenzhao/extract-text-webpack-plugin,num_dependents_deps.dev:0 github.com/stephenzhao/v2rx,num_dependents_deps.dev:0 github.com/stephenzsy/doc-locker,num_dependents_deps.dev:0 +github.com/stephenzwj/multilyx2pdf-action, github.com/stephharris/simple-cipher.js,num_dependents_deps.dev:0 github.com/stephharris/split-tracker,num_dependents_deps.dev:0 github.com/stephl001/cascade-ini,num_dependents_deps.dev:0 @@ -1079082,6 +1098432,7 @@ github.com/steranka/mytslib,num_dependents_deps.dev:0 github.com/sterashima78/vue-iframe,num_dependents_deps.dev:0 github.com/sterblue/geospatial,num_dependents_deps.dev:1 github.com/sterblue/three-universal,num_dependents_deps.dev:0 +github.com/stercoris/lcov-reporter-action-job-summary, github.com/steren/attractors,num_dependents_deps.dev:0 github.com/steren/awesome-cloudrun,criticality_score:0.335650 github.com/stereobit/dragend,num_dependents_deps.dev:0 @@ -1079147,6 +1098498,7 @@ github.com/sterlingwes/RandomColor,num_dependents_deps.dev:0 github.com/sterlingwes/Simplog,num_dependents_deps.dev:0 github.com/sterlingwes/charles-control,num_dependents_deps.dev:0 github.com/sterlingwes/eslint-plugin-monorepo-cop,num_dependents_deps.dev:0 +github.com/sterlingwes/gh-pages-deploy-action, github.com/sterlingwes/htmlsrv,num_dependents_deps.dev:0 github.com/sterlingwes/pritunl-cli,num_dependents_deps.dev:0 github.com/sterlingwes/react-native-jest-serializer,num_dependents_deps.dev:0 @@ -1079207,6 +1098559,7 @@ github.com/sterpe/semi-4standard-format,num_dependents_deps.dev:0 github.com/sterpe/string-source,num_dependents_deps.dev:6 github.com/sterpe/x-www-form-urlencode,num_dependents_deps.dev:0 github.com/sterpe/yt-timedtext2srt,num_dependents_deps.dev:0 +github.com/sters/github-actions-collect-unreleased-commits, github.com/sters/go-project-boilerplate,num_dependents_deps.dev:0 github.com/sters/hugo-publish-reserved-content,num_dependents_deps.dev:0 github.com/sters/hugo-utilities,num_dependents_deps.dev:0 @@ -1079314,6 +1098667,8 @@ github.com/steve-the-bayesian/BOOM, github.com/steve-winter/wtf,num_dependents_deps.dev:0 github.com/steve-yyw/yywtestpackage, github.com/steve-zhang-code/go-chain,num_dependents_deps.dev:0 +github.com/steve02081504/disable-autocrlf, +github.com/steve02081504/is-a-tag-ref, github.com/steve0511/resty-redis-cluster,criticality_score:0.305760 github.com/steve228uk/YouTube-Music,criticality_score:0.312420 github.com/steve228uk/homebridge-magichome,num_dependents_deps.dev:0 @@ -1079569,6 +1098924,7 @@ github.com/stevekane/tiny-clock,num_dependents_deps.dev:0 github.com/stevekane/tiny-enum,num_dependents_deps.dev:0 github.com/stevekeiser/harmony-ws,num_dependents_deps.dev:0 github.com/stevekeol/react-redux-generator,num_dependents_deps.dev:0 +github.com/stevekhoo/update-codeowners, github.com/stevekinney/file-bin,num_dependents_deps.dev:0 github.com/stevekinney/namespace-css-selectors,num_dependents_deps.dev:0 github.com/stevekinney/nectar-leg,num_dependents_deps.dev:0 @@ -1079718,6 +1099074,7 @@ github.com/stevemao/conventional-commits-writer, github.com/stevemao/conventional-github-releaser,num_dependents_deps.dev:2 github.com/stevemao/conventional-recommended-bump,num_dependents_deps.dev:0 github.com/stevemao/d3-force-bounded-box,num_dependents_deps.dev:0 +github.com/stevemao/dep-haskell-stack, github.com/stevemao/diff-so-fancy,num_dependents_deps.dev:0 github.com/stevemao/ensure-pem, github.com/stevemao/force-bool, @@ -1079787,7 +1099144,9 @@ github.com/stevemao/to-currency,num_dependents_deps.dev:0 github.com/stevemao/to-error,num_dependents_deps.dev:0 github.com/stevemao/trim-off-newlines,num_dependents_deps.dev:7954 github.com/stevemao/uncomment-it,num_dependents_deps.dev:4 +github.com/stevemao/update-and-invoke-lambda, github.com/stevemao/vsauce-math-magic,num_dependents_deps.dev:0 +github.com/stevemar/image-deleter, github.com/stevemarple/auroraplot, github.com/stevemarple/python-MCP342x, github.com/stevemarple/python-atomiccreate, @@ -1079852,6 +1099211,7 @@ github.com/steven-mercatante/react-form-cast,num_dependents_deps.dev:0 github.com/steven-mercatante/react-herald,num_dependents_deps.dev:0 github.com/steven-mercatante/react-timeline,num_dependents_deps.dev:0 github.com/steven-mercatante/releasify, +github.com/steven-mi/push-latest-changes-action, github.com/steven-murray/PyGS, github.com/steven-murray/halomod, github.com/steven-murray/hankel, @@ -1079864,6 +1099224,7 @@ github.com/steven-peralta/rosiebot,num_dependents_deps.dev:0 github.com/steven-ph/react-videojs-wrapper,num_dependents_deps.dev:0 github.com/steven-ph/videojs-plugin-quality-selector, github.com/steven-purcell/pyboto, +github.com/steven-r/remove-old-versions-action, github.com/steven-r/yup-i18n-de,num_dependents_deps.dev:0 github.com/steven-steven/goinvoice,num_dependents_deps.dev:0 github.com/steven-udotong/gatsby-stocktwitsAPI-plugin,num_dependents_deps.dev:0 @@ -1079922,6 +1099283,7 @@ github.com/stevenbenisek/posthtml-prefix-class,num_dependents_deps.dev:0 github.com/stevenbenisek/rollup-plugin-auto-external,num_dependents_deps.dev:46 github.com/stevenbenisek/rollup-plugin-babel-runtime-external,num_dependents_deps.dev:4 github.com/stevenbenisek/shortkey,num_dependents_deps.dev:0 +github.com/stevenbenitez/get-package-version-action, github.com/stevenbenner/eslint-config,num_dependents_deps.dev:0 github.com/stevenbenner/grunt-indent,num_dependents_deps.dev:0 github.com/stevenbenner/identify-indent,num_dependents_deps.dev:0 @@ -1080031,6 +1099393,12 @@ github.com/stevenkfirth/sap2012, github.com/stevenklise/hubot-web,num_dependents_deps.dev:0 github.com/stevenlandis/running-stats-calculator, github.com/stevenle/grubby,num_dependents_deps.dev:0 +github.com/stevenleadbeater/kotlin-kover-action, +github.com/stevenleadbeater/kover-report-parser-action, +github.com/stevenleadbeater/mender-io-deb-action, +github.com/stevenleadbeater/mender-io-script-action, +github.com/stevenleadbeater/mender-io-single-file-action, +github.com/stevenleadbeater/rust-musl-builder, github.com/stevenleclerc/mayday-client,num_dependents_deps.dev:0 github.com/stevenlee2806/ui-react-native,num_dependents_deps.dev:0 github.com/stevenlee87/go-daily-lib,num_dependents_deps.dev:0 @@ -1080275,6 +1099643,7 @@ github.com/stevenvolckaert/github-user-list,num_dependents_deps.dev:0 github.com/stevenwanderski/bxslider-4,"criticality_score:0.367430,num_dependents_deps.dev:0" github.com/stevenwanderski/conditional-field,num_dependents_deps.dev:0 github.com/stevenwang/NeuroNetLearn, +github.com/stevenwdv/setup-fasm, github.com/stevenweathers/exothermic-story-mapping,num_dependents_deps.dev:0 github.com/stevenweathers/thunderdome-planning-poker,num_dependents_deps.dev:0 github.com/stevenwen81/test-golang-webapp,num_dependents_deps.dev:0 @@ -1080510,6 +1099879,7 @@ github.com/stevewithington/imagezoomjs, github.com/stevewithington/wheelzoom-js,num_dependents_deps.dev:0 github.com/steveworkman/grunt-yslow-test,num_dependents_deps.dev:0 github.com/steveworkman/vue-cli-plugin-stylelint, +github.com/steveww/markdown-to-pdf, github.com/stevewyl/chunk_segmentor, github.com/stevewyl/nlp_toolkit, github.com/stevey-p/react-access, @@ -1080530,9 +1099900,12 @@ github.com/stevezhu/browser-logger,num_dependents_deps.dev:0 github.com/stevezhu/console-style-tag,num_dependents_deps.dev:0 github.com/stevezhu/string-interpolator,num_dependents_deps.dev:0 github.com/stevie-lucardi/faxel,num_dependents_deps.dev:0 +github.com/stevieb9/jsonc-syntax-check, github.com/steviebeenz/FasterAutoLink, github.com/steviebps/rein,num_dependents_deps.dev:0 github.com/steviekong/react-countdown-hook,num_dependents_deps.dev:0 +github.com/steviemul/commit-conditions, +github.com/steviemul/gatling-annotations, github.com/stevieoj/react-native-above-keyboard,num_dependents_deps.dev:0 github.com/stevieoj/react-native-extended-stylesheet,num_dependents_deps.dev:0 github.com/steviepy/splogging, @@ -1080895,6 +1100268,7 @@ github.com/sticreations/wtf,num_dependents_deps.dev:0 github.com/stiction/image-to,num_dependents_deps.dev:0 github.com/stidges/jquery-searchable,num_dependents_deps.dev:0 github.com/stidges/laravel-mix-mjml,num_dependents_deps.dev:0 +github.com/stiebels/plantuml-e2e-action, github.com/stiege/bloomzip, github.com/stiegolsauer/arsenal,num_dependents_deps.dev:0 github.com/stiekel/aliexpress,num_dependents_deps.dev:0 @@ -1081018,6 +1100392,7 @@ github.com/stigkj/gradle-executable-jar-plugin,num_dependents_deps.dev:0 github.com/stiglicode/split-on-steroids,num_dependents_deps.dev:0 github.com/stigmat4j/react-if-component,num_dependents_deps.dev:0 github.com/stigmat4j/redux-action-names,num_dependents_deps.dev:0 +github.com/stigmelling/jenkins-action, github.com/stigok/go-io-pi,num_dependents_deps.dev:0 github.com/stigok/http2s,num_dependents_deps.dev:0 github.com/stigok/regexp-stream,num_dependents_deps.dev:0 @@ -1081051,6 +1100426,7 @@ github.com/stijnswaanen/ng2-twitter-httpClient,num_dependents_deps.dev:0 github.com/stijnvanhoey/hydropy, github.com/stijnvanhoey/pybreach, github.com/stijnvc/subtle-slideshow.js,num_dependents_deps.dev:0 +github.com/stijnvdkolk/githubpackages-docker, github.com/stikjs/stik-core,num_dependents_deps.dev:0 github.com/stikjs/stik-courier,num_dependents_deps.dev:0 github.com/stikjs/stik-dom,num_dependents_deps.dev:0 @@ -1081061,6 +1100437,8 @@ github.com/stikjs/stik-resource,num_dependents_deps.dev:0 github.com/stikjs/stik-url,num_dependents_deps.dev:0 github.com/stikjs/stik-view-bag,num_dependents_deps.dev:0 github.com/stikks/messagerie, +github.com/stikkyapp/google-cloud-function-access, +github.com/stikkyapp/update-pubspec-version, github.com/stikmanw/react-fullstory-component,num_dependents_deps.dev:0 github.com/stil/treemap-multilevel,num_dependents_deps.dev:0 github.com/stil4m/dash-client,num_dependents_deps.dev:0 @@ -1081150,6 +1100528,7 @@ github.com/stingerxiii/s3bench,num_dependents_deps.dev:0 github.com/stingkeer/socks5,num_dependents_deps.dev:0 github.com/stingyu/Weather-npm-pkg, github.com/stinkyfingers/column,num_dependents_deps.dev:0 +github.com/stinkyfingers/cross-repo-dispatch, github.com/stinkyfingers/designpatterns,num_dependents_deps.dev:0 github.com/stinkyfingers/gopacket,num_dependents_deps.dev:0 github.com/stinkymark1/persist-store,num_dependents_deps.dev:0 @@ -1081452,6 +1100831,7 @@ github.com/stoarca/jasmine_test_utils,num_dependents_deps.dev:0 github.com/stoarca/long-promise2,num_dependents_deps.dev:0 github.com/stoarca/phantesta,num_dependents_deps.dev:0 github.com/stoarca/xdotoolify.js,num_dependents_deps.dev:0 +github.com/stoat-dev/stoat-action, github.com/stoben/ceasarcode,num_dependents_deps.dev:0 github.com/stoben/nist-rds-query,num_dependents_deps.dev:0 github.com/stobita/airnote,num_dependents_deps.dev:0 @@ -1081524,12 +1100904,14 @@ github.com/stoe/ghec-backup,num_dependents_deps.dev:0 github.com/stoe/go-team-repo-permissions,num_dependents_deps.dev:0 github.com/stoe/mdify-alfred,num_dependents_deps.dev:0 github.com/stoe/mdify-node,num_dependents_deps.dev:0 +github.com/stoe/meeting-1on1-action, github.com/stoe/octoherd-dependabot-config,num_dependents_deps.dev:0 github.com/stoe/octokit-plugin-org-activity,num_dependents_deps.dev:0 github.com/stoe/pdfify-alfred,num_dependents_deps.dev:0 github.com/stoe/pdfify-node,num_dependents_deps.dev:0 github.com/stoe/uebersicht,num_dependents_deps.dev:0 github.com/stoe/wirvsvirus-topics-cli,num_dependents_deps.dev:0 +github.com/stoe/xo-action, github.com/stoeffel/1-liners,num_dependents_deps.dev:0 github.com/stoeffel/arityN,num_dependents_deps.dev:20472 github.com/stoeffel/array-comprehensions,num_dependents_deps.dev:0 @@ -1081785,6 +1101167,7 @@ github.com/stone-co/the-amazing-ledger,num_dependents_deps.dev:0 github.com/stone-co/webhook-consumer,num_dependents_deps.dev:0 github.com/stone-grandia/just-http-request,num_dependents_deps.dev:0 github.com/stone-grandia/vue-router-app,num_dependents_deps.dev:0 +github.com/stone-home/action-pypi-release, github.com/stone-info/sn-cli, github.com/stone-info/sncp,num_dependents_deps.dev:0 github.com/stone-info/snfind,num_dependents_deps.dev:0 @@ -1081802,6 +1101185,7 @@ github.com/stone-payments/pos-mamba-sdk,num_dependents_deps.dev:0 github.com/stone-payments/sanic-management-blueprint, github.com/stone-payments/stackdriver-formatter, github.com/stone-payments/string-helper,num_dependents_deps.dev:0 +github.com/stone-ton/action-merge-pull-requests, github.com/stone-z/dependabot-sandbox,num_dependents_deps.dev:0 github.com/stone-zeng/fduthesis,criticality_score:0.311110 github.com/stone/httping, @@ -1081814,6 +1101198,7 @@ github.com/stone365/captcha,num_dependents_deps.dev:0 github.com/stone89son/BootstrapGrid,num_dependents_deps.dev:0 github.com/stoneChen/generator-ngstone,num_dependents_deps.dev:0 github.com/stoneChen/styled-jsx-plugin-postcss,num_dependents_deps.dev:0 +github.com/stoneG/add-patch-notes-action, github.com/stoneM2017/egg-rabbitmq,num_dependents_deps.dev:0 github.com/stoneNIK/vue-vehicle-plate,num_dependents_deps.dev:0 github.com/stoneWeb/react-native-parabolic,num_dependents_deps.dev:0 @@ -1081883,6 +1101268,7 @@ github.com/stonelee/tinyjs-types, github.com/stonelion/jpromise,num_dependents_deps.dev:0 github.com/stoneliving/webfont,num_dependents_deps.dev:0 github.com/stoneman1/ignite-firebase,num_dependents_deps.dev:0 +github.com/stonemaster/hetzner-github-runner, github.com/stonemax/go-rabbitmq,num_dependents_deps.dev:0 github.com/stoneo/netclix,num_dependents_deps.dev:0 github.com/stonephp/formattor,num_dependents_deps.dev:62 @@ -1081912,6 +1101298,7 @@ github.com/stonexx/proto.js,num_dependents_deps.dev:0 github.com/stoney95/pypely, github.com/stoneyallen/ua-device,num_dependents_deps.dev:0 github.com/stoneyangxu/fastfib-demo,num_dependents_deps.dev:0 +github.com/stoneydavis/ssh-port-forward-action, github.com/stoneyunzhao/algorithm-go,num_dependents_deps.dev:0 github.com/stonezhong/DataManager, github.com/stonezhong/async-compiler,num_dependents_deps.dev:0 @@ -1081959,6 +1101346,7 @@ github.com/stop2stare/sprinter-cli,num_dependents_deps.dev:0 github.com/stop2stare/unescape-html,num_dependents_deps.dev:0 github.com/stop2stare/vdom,num_dependents_deps.dev:0 github.com/stop2stare/zoomme,num_dependents_deps.dev:0 +github.com/stopa323/slack-web-client, github.com/stopcenz/fakesni,num_dependents_deps.dev:0 github.com/stopcoder/json2json,num_dependents_deps.dev:0 github.com/stopcry/convertCoding, @@ -1081991,6 +1101379,7 @@ github.com/stoplightio/react-error-boundary,num_dependents_deps.dev:14 github.com/stoplightio/ref-resolvers,num_dependents_deps.dev:0 github.com/stoplightio/scripts,num_dependents_deps.dev:0 github.com/stoplightio/spectral,"criticality_score:0.523130,num_dependents_deps.dev:70" +github.com/stoplightio/spectral-action, github.com/stoplightio/stoplight-cli,num_dependents_deps.dev:0 github.com/stoplightio/storybook-config,num_dependents_deps.dev:0 github.com/stoplightio/studio,criticality_score:0.375290 @@ -1082407,6 +1101796,7 @@ github.com/stormtea123/viewtorem,num_dependents_deps.dev:0 github.com/stormtrooper01/cse2_lab2,num_dependents_deps.dev:0 github.com/stormtrooper1859/p2p-chat,num_dependents_deps.dev:0 github.com/stormtv/bullmq,num_dependents_deps.dev:0 +github.com/stormwarning/action-release-notification, github.com/stormwarning/cz-adapter-eslint,num_dependents_deps.dev:0 github.com/stormwarning/django-colorbundle, github.com/stormwarning/import-sort-style-ember,num_dependents_deps.dev:0 @@ -1082719,6 +1102109,7 @@ github.com/stphivos/fnval, github.com/stphivos/type-genius, github.com/stphnduvall/mcstatus, github.com/stphnnnn/react-mega-modal,num_dependents_deps.dev:0 +github.com/stphnwlsh/dotnet-outdated-action, github.com/stplasim/go-wasm-calculator,num_dependents_deps.dev:0 github.com/stplasim/go-webassembly-calculator,num_dependents_deps.dev:0 github.com/stq/jsdom-sync,num_dependents_deps.dev:0 @@ -1082920,6 +1102311,7 @@ github.com/strataghyst/insight-gulden-ui,num_dependents_deps.dev:0 github.com/strate/babel-plugin-mobx-deep-action,num_dependents_deps.dev:0 github.com/strategiccoach/ng2-booking,num_dependents_deps.dev:0 github.com/strategicmarket/message,num_dependents_deps.dev:0 +github.com/strategio/ci, github.com/strathausen/culoare,num_dependents_deps.dev:0 github.com/strathausen/dirtle, github.com/strathausen/dracula,"criticality_score:0.381090,num_dependents_deps.dev:0" @@ -1083045,6 +1102437,7 @@ github.com/strawbees/s3-publisher,num_dependents_deps.dev:0 github.com/strawberry-code/react-native-set-version,num_dependents_deps.dev:0 github.com/strawberry-graphql/strawberry,criticality_score:0.575350 github.com/strawberry-graphql/strawberry-graphql-django, +github.com/strawberry-graphql/strawberry-sqlalchemy, github.com/strawberry-jam-cabal/aft, github.com/strawberry/eslint-config-strawberry,num_dependents_deps.dev:0 github.com/strawberry/stylelint-config-strawberry,num_dependents_deps.dev:0 @@ -1083136,6 +1102529,8 @@ github.com/strazds/suranadira-menu,num_dependents_deps.dev:0 github.com/strazds/suranadira-resize,num_dependents_deps.dev:0 github.com/strazds/suranadira-script,num_dependents_deps.dev:0 github.com/strazds/suranadira-utils,num_dependents_deps.dev:0 +github.com/strazto/get-release, +github.com/strazto/jellyfin-plugin-repo-action, github.com/strazzere/anti-emulator,Google github.com/strboul/git-substatus, github.com/strboul/kwic-ts,num_dependents_deps.dev:0 @@ -1083196,6 +1102591,7 @@ github.com/streamcoders/wryten, github.com/streamcord/commands,num_dependents_deps.dev:0 github.com/streamcord/http,num_dependents_deps.dev:0 github.com/streamcord/spyglass-receiver,num_dependents_deps.dev:0 +github.com/streamdal/schema-publisher, github.com/streamdasher/obs-websocket-js,num_dependents_deps.dev:0 github.com/streamdataio/streamdataio-js-sdk,num_dependents_deps.dev:6 github.com/streamdp/renamer,num_dependents_deps.dev:0 @@ -1083455,6 +1102851,7 @@ github.com/streamwest-1629/guarantee,num_dependents_deps.dev:0 github.com/streamwest-1629/guarantee_str,num_dependents_deps.dev:0 github.com/streamwest-1629/interval-bot,num_dependents_deps.dev:0 github.com/streamwest-1629/map_mapper,num_dependents_deps.dev:0 +github.com/streamwest-1629/refdoc, github.com/streamwest-1629/textfilter,num_dependents_deps.dev:0 github.com/streamx3/surgemq,num_dependents_deps.dev:0 github.com/streamxhub/streamx,num_dependents_deps.dev:4 @@ -1083519,7 +1102916,9 @@ github.com/streetmix/illustrations,num_dependents_deps.dev:0 github.com/streetmix/streetmix,criticality_score:0.543460 github.com/streets-ahead/feedBum,num_dependents_deps.dev:0 github.com/streets-ahead/lazyBum,num_dependents_deps.dev:0 +github.com/streetsidesoftware/action-set-output, github.com/streetsidesoftware/cspell,"criticality_score:0.604520,num_dependents_deps.dev:232" +github.com/streetsidesoftware/cspell-action, github.com/streetsidesoftware/cspell-cli,num_dependents_deps.dev:0 github.com/streetsidesoftware/cspell-dicts,num_dependents_deps.dev:1640 github.com/streetsidesoftware/regexp-worker,num_dependents_deps.dev:0 @@ -1083670,6 +1103069,7 @@ github.com/strikeentco/teabot-redis,num_dependents_deps.dev:0 github.com/strikeentco/teabot-telegram-api,num_dependents_deps.dev:0 github.com/strikeentco/tg-yarl,num_dependents_deps.dev:0 github.com/strikeentco/yarl,num_dependents_deps.dev:8 +github.com/strikelabs/elastic-apm-sourcemap-action, github.com/striker2000/ginprom,num_dependents_deps.dev:0 github.com/striker87/members_club,num_dependents_deps.dev:0 github.com/strikeroff/useful_functionality,num_dependents_deps.dev:0 @@ -1083704,12 +1103104,14 @@ github.com/string-searching/rabin-karp,num_dependents_deps.dev:0 github.com/string-searching/specification,num_dependents_deps.dev:0 github.com/stringang/protoc-gen-tsd,num_dependents_deps.dev:0 github.com/stringariSM/scssMixins,num_dependents_deps.dev:0 +github.com/stringbean/docker-healthcheck-action, github.com/stringbean/drayton-wiser-client,num_dependents_deps.dev:0 github.com/stringbean/grunt-package-modules,num_dependents_deps.dev:0 github.com/stringbean/hexo-image-toolkit,num_dependents_deps.dev:0 github.com/stringbean/homebridge-drayton-wiser,num_dependents_deps.dev:0 github.com/stringbean/poi4s,num_dependents_deps.dev:0 github.com/stringbean/scala-xml-compare,num_dependents_deps.dev:6 +github.com/stringbean/scalafmt-action, github.com/stringbean/sttp-scribe,num_dependents_deps.dev:0 github.com/stringbean/text-utils,num_dependents_deps.dev:0 github.com/stringbean/utils,num_dependents_deps.dev:0 @@ -1083825,6 +1103227,7 @@ github.com/stripedpajamas/thread-count,num_dependents_deps.dev:0 github.com/stripedpajamas/unchained-melody,num_dependents_deps.dev:2 github.com/stripedpajamas/voweler,num_dependents_deps.dev:0 github.com/stripedpajamas/wednesday,num_dependents_deps.dev:0 +github.com/stripethree/gpr-janitor, github.com/stripythecat/colloquial,num_dependents_deps.dev:0 github.com/strisys/electron-ipc-bridge-factory,num_dependents_deps.dev:0 github.com/strisys/synchronicityjs, @@ -1083833,6 +1103236,8 @@ github.com/strivek/fis-parser-type-script,num_dependents_deps.dev:0 github.com/striven-erp/striven-fileviewer,num_dependents_deps.dev:0 github.com/striven-erp/striven-fullscreen,num_dependents_deps.dev:0 github.com/striven-erp/striven-tooltip,num_dependents_deps.dev:0 +github.com/striwensko/action, +github.com/striwensko/actionTest, github.com/strizhechenko/bandcamp-player, github.com/strizhechenko/bar-chooser, github.com/strizhechenko/binary-pairs, @@ -1083860,7 +1103265,9 @@ github.com/strml/storm-node,num_dependents_deps.dev:0 github.com/strng-solutions/daemonjobset-operator,num_dependents_deps.dev:0 github.com/strobelo/useReducers,num_dependents_deps.dev:0 github.com/strobes-co/components,num_dependents_deps.dev:0 +github.com/strobes-co/strobes-action, github.com/strobes-co/strobesbufs-py, +github.com/strobes-co/triangulum-action, github.com/strobosco/boids,num_dependents_deps.dev:0 github.com/strobox/react-modeling,num_dependents_deps.dev:0 github.com/strobus/i-ching,num_dependents_deps.dev:0 @@ -1084292,6 +1103699,7 @@ github.com/structAnkit/limireq,num_dependents_deps.dev:0 github.com/structhor/san,num_dependents_deps.dev:0 github.com/structlogging/structlogger,num_dependents_deps.dev:0 github.com/structr/structr,"criticality_score:0.616500,num_dependents_deps.dev:19" +github.com/structr/structr-deploy-action, github.com/structr/structr-neo4j-driver,num_dependents_deps.dev:10 github.com/structs/compose,num_dependents_deps.dev:0 github.com/structs/grid,num_dependents_deps.dev:0 @@ -1084385,6 +1103793,7 @@ github.com/strukturag/libheif,"criticality_score:0.554920,num_dependents_deps.de github.com/strukturag/nextcloud-spreed-signaling,num_dependents_deps.dev:0 github.com/strumenta/at-strumenta-ast-typescript, github.com/strumenta/mpsserver,num_dependents_deps.dev:0 +github.com/strumwolf/delete-deployment-environment, github.com/strumwolf/mock-sftp-server,num_dependents_deps.dev:0 github.com/strunkie30/sass-fluid,num_dependents_deps.dev:0 github.com/strunkie30/sass-sections,num_dependents_deps.dev:0 @@ -1084422,6 +1103831,7 @@ github.com/stryju/font-weights,num_dependents_deps.dev:0 github.com/stryju/grunt-bushcaster,num_dependents_deps.dev:0 github.com/stryju/grunt-requirejs-cachebuster,num_dependents_deps.dev:0 github.com/stryju/object-crawl,num_dependents_deps.dev:0 +github.com/stryker-mutator/github-action, github.com/stryker-mutator/mutation-testing-elements,num_dependents_deps.dev:282 github.com/stryker-mutator/stryker,"criticality_score:0.603840,num_dependents_deps.dev:106" github.com/stryker-mutator/stryker-api,num_dependents_deps.dev:0 @@ -1084496,6 +1103906,7 @@ github.com/stshrewsburyDev/discord-better-help, github.com/stshrewsburyDev/minesweeperPy, github.com/stsievert/objopt, github.com/stsievert/python-drawnow, +github.com/stsmdt/setup-genesyscloud-archy, github.com/stsok/jquery.gmapping,num_dependents_deps.dev:0 github.com/stsok/jquery.initscroll,num_dependents_deps.dev:0 github.com/stsok/jquery.notsupported,num_dependents_deps.dev:0 @@ -1084615,6 +1104026,7 @@ github.com/sttk/theming-log,num_dependents_deps.dev:0 github.com/sttlabs/mapbox-gl-fps,num_dependents_deps.dev:0 github.com/sttlr/proxipy, github.com/sttlr/spacedr, +github.com/sttor/gitleaks-action, github.com/stts-se/decomp,num_dependents_deps.dev:0 github.com/stts-se/pronlex,num_dependents_deps.dev:0 github.com/stts-se/rbg2p,num_dependents_deps.dev:0 @@ -1085022,6 +1104434,7 @@ github.com/studiowebux/webux-validator,num_dependents_deps.dev:0 github.com/studiozeffa/react-native-iab,num_dependents_deps.dev:0 github.com/studley13/atoms,num_dependents_deps.dev:0 github.com/studosi/studosi-py, +github.com/studroid/label-pr-or-issue-action, github.com/studstill/kitties,num_dependents_deps.dev:0 github.com/studstill/puppies,num_dependents_deps.dev:0 github.com/studstill/vanilla-http-router, @@ -1085227,6 +1104640,7 @@ github.com/sturadnidge/node-steam-game-coordinator,num_dependents_deps.dev:0 github.com/sturadnidge/node-steam-trade,num_dependents_deps.dev:0 github.com/sturadnidge/node-steam-user,num_dependents_deps.dev:0 github.com/sturadnidge/nowt,num_dependents_deps.dev:0 +github.com/sturdy-dev/codeball-action, github.com/sturdycloud/metricslib,num_dependents_deps.dev:0 github.com/sturdyco/show_password,num_dependents_deps.dev:0 github.com/sturdynut/emify,num_dependents_deps.dev:0 @@ -1085238,6 +1104652,7 @@ github.com/sturdynut/tns-template-brightwork-ng,num_dependents_deps.dev:0 github.com/sturgill/tiny_png,num_dependents_deps.dev:0 github.com/sturichardson/gulp-ngdocs-components,num_dependents_deps.dev:0 github.com/sturichardson/stu-cypress-testrail-reporter,num_dependents_deps.dev:0 +github.com/sturlabragason/terraform_state_artifact, github.com/sturm3nta/eslint-config-settle,num_dependents_deps.dev:0 github.com/sturmenta/code-size,num_dependents_deps.dev:0 github.com/sturmenta/eslint-config,num_dependents_deps.dev:0 @@ -1085291,6 +1104706,7 @@ github.com/stuzeakd/gaussian-noise-js,num_dependents_deps.dev:0 github.com/stuzeakd/impressiveColors-canvas,num_dependents_deps.dev:0 github.com/stuzeakd/natural-gradation-canvas,num_dependents_deps.dev:0 github.com/stv-electronic/node-red-contrib-stv-smartm-gpio,num_dependents_deps.dev:0 +github.com/stv-io/action-tfswitch, github.com/stv0g/k66,num_dependents_deps.dev:0 github.com/stv0g/pushfin, github.com/stv0g/transwhat, @@ -1085567,6 +1104983,7 @@ github.com/styzy/es7-cli,num_dependents_deps.dev:0 github.com/styzy/es7-cli/issues, github.com/styzy/free-js,num_dependents_deps.dev:0 github.com/styzy/page,num_dependents_deps.dev:0 +github.com/su-dont/share-point-uploader, github.com/su-kun1899/schemaspy-maven-plugin,num_dependents_deps.dev:0 github.com/su-sumit/spy-scroll, github.com/su-sws/clsx-dedupe,num_dependents_deps.dev:0 @@ -1085591,9 +1105008,11 @@ github.com/sualeh/SchemaCrawler-Java7-Backport,num_dependents_deps.dev:189 github.com/sualeh/SchemaCrawler-Report-Maven-Plugin,num_dependents_deps.dev:0 github.com/sualeh/credit_card_number,num_dependents_deps.dev:0 github.com/sualeh/creditcardnumber,num_dependents_deps.dev:0 +github.com/sualeh/install-graphviz, github.com/sualeh/magnetictrackparser,num_dependents_deps.dev:0 github.com/sualeh/pointlocation6709,num_dependents_deps.dev:0 github.com/sualeh/pointlocation6709-ts,num_dependents_deps.dev:0 +github.com/sualeh/prepare-maven-build, github.com/sualko/galleryWall,num_dependents_deps.dev:0 github.com/sualko/grunt-github-releaser2,num_dependents_deps.dev:0 github.com/suan/instant-markdown-d,num_dependents_deps.dev:0 @@ -1085605,6 +1105024,7 @@ github.com/suanmei/gulp-transport-cmd,num_dependents_deps.dev:0 github.com/suanmei/iMove,num_dependents_deps.dev:0 github.com/suanmei/npm-pkg-cli,num_dependents_deps.dev:0 github.com/suanmiao/CommonLib,num_dependents_deps.dev:0 +github.com/suaobrazul/next-release-tag, github.com/suap-ead/lib_suap_ead, github.com/suap-ead/lib_suapintegration, github.com/suapapa/diagrams-back,num_dependents_deps.dev:0 @@ -1085615,6 +1105035,7 @@ github.com/suapapa/gocui,num_dependents_deps.dev:0 github.com/suarasaur/find-root,num_dependents_deps.dev:18 github.com/suared/core,num_dependents_deps.dev:0 github.com/suared/core-apiuser,num_dependents_deps.dev:0 +github.com/suarezafelipe/GPTReviewWorkflow, github.com/suarezgl/gdp-uikit,num_dependents_deps.dev:0 github.com/suarezluis/open-in-click-up,num_dependents_deps.dev:0 github.com/suarezluis/react-navigation-selective-tab-bar,num_dependents_deps.dev:0 @@ -1085763,7 +1105184,10 @@ github.com/subhajitdas/linq6,num_dependents_deps.dev:0 github.com/subhajitdas/memory-cache,num_dependents_deps.dev:0 github.com/subhalingamd/npx-card,num_dependents_deps.dev:0 github.com/subham8887/golang,num_dependents_deps.dev:0 +github.com/subhamX/github-project-bot, +github.com/subhamX/ibm-cloud-foundry-deploy, github.com/subhamX/notion-to-ebook,num_dependents_deps.dev:0 +github.com/subhamX/overleaf_sync_with_git, github.com/subhamayd2/mui-theme-switcher,num_dependents_deps.dev:0 github.com/subhamg/unique-username-generator,num_dependents_deps.dev:0 github.com/subhamkapoor360/HappaySDK, @@ -1085798,6 +1105222,7 @@ github.com/subi264/golang1,num_dependents_deps.dev:0 github.com/subi264/section4_structs,num_dependents_deps.dev:0 github.com/subi264/section5_map,num_dependents_deps.dev:0 github.com/subi264/section6_interfaces,num_dependents_deps.dev:0 +github.com/subic/ghaction-thumbnails, github.com/subicura/forego,num_dependents_deps.dev:0 github.com/subicura/hubot-slack-jenkins-chatops,num_dependents_deps.dev:0 github.com/subill/checkout-subill,num_dependents_deps.dev:0 @@ -1085904,6 +1105329,7 @@ github.com/submariner-io/shipyard,num_dependents_deps.dev:0 github.com/submariner-io/submariner,"criticality_score:0.577060,num_dependents_deps.dev:1" github.com/submariner-io/submariner-operator,num_dependents_deps.dev:0 github.com/submersibletoaster/matcher,num_dependents_deps.dev:0 +github.com/submittable/localizejs-github-action, github.com/subnetix/port-scanner,num_dependents_deps.dev:0 github.com/subnik/react-redux-client,num_dependents_deps.dev:0 github.com/subnik/socialmedia-scraper,num_dependents_deps.dev:0 @@ -1086676,6 +1106102,7 @@ github.com/subutai-io/probench,num_dependents_deps.dev:0 github.com/subutai-io/vagrant,num_dependents_deps.dev:0 github.com/subutux/HUD, github.com/subutux/rmapy, +github.com/subvisual/codegen-cranelift-toolchain, github.com/subvisual/filecoin-ruby,num_dependents_deps.dev:0 github.com/subvisual/javascript-utils,num_dependents_deps.dev:0 github.com/subvisual/permafrost,num_dependents_deps.dev:0 @@ -1086730,6 +1106157,7 @@ github.com/succhiello/hieratic, github.com/succhiello/typedtuple, github.com/succinct-tools/succinct-barebones, github.com/succour-xyz/config,num_dependents_deps.dev:0 +github.com/suceda/tag-from-version, github.com/such-code/content-url-loader,num_dependents_deps.dev:0 github.com/such-code/html-parser-utils,num_dependents_deps.dev:0 github.com/such-code/html-resource-loader,num_dependents_deps.dev:0 @@ -1087001,6 +1106429,16 @@ github.com/sudkumar/generate-colors,num_dependents_deps.dev:4 github.com/sudkumar/react-counter,num_dependents_deps.dev:0 github.com/sudkumar/reactjs-counter, github.com/sudkumar/reactjs-resize-observer,num_dependents_deps.dev:0 +github.com/sudo-bot/action-docker-compose, +github.com/sudo-bot/action-docker-sign, +github.com/sudo-bot/action-doctum, +github.com/sudo-bot/action-fork-sync, +github.com/sudo-bot/action-kcov, +github.com/sudo-bot/action-pull-request-lock, +github.com/sudo-bot/action-pull-request-merge, +github.com/sudo-bot/action-scrutinizer, +github.com/sudo-bot/action-shellcheck, +github.com/sudo-bot/action-shunit2, github.com/sudo-bot/sudo-bot,num_dependents_deps.dev:0 github.com/sudo-carson/serverchart,num_dependents_deps.dev:0 github.com/sudo-dakix/pyloan, @@ -1087035,6 +1106473,7 @@ github.com/sudo97/tiny-little-store,num_dependents_deps.dev:0 github.com/sudoMode/Decat, github.com/sudoMode/PDFPlay, github.com/sudoRicheek/PyShapes, +github.com/sudoStatus200/create-sync-pr, github.com/sudoStatus200/js-algorithms,num_dependents_deps.dev:0 github.com/sudobird/react-json-viewer,num_dependents_deps.dev:0 github.com/sudobird/web-comp,num_dependents_deps.dev:0 @@ -1087061,6 +1106500,7 @@ github.com/sudokrew/krewcumber,num_dependents_deps.dev:0 github.com/sudolabs-io/eslint-config-sudolabs, github.com/sudoless/sin,num_dependents_deps.dev:0 github.com/sudomateo/exercism-solutions,num_dependents_deps.dev:0 +github.com/sudomateo/setup-packer, github.com/sudomesh/disaster-radio,criticality_score:0.383660 github.com/sudomesh/tp-flasher,num_dependents_deps.dev:0 github.com/sudomesh/ubi-flasher,num_dependents_deps.dev:0 @@ -1087075,6 +1106515,7 @@ github.com/sudongyan/fis-parser-crox,num_dependents_deps.dev:0 github.com/sudongyan/fis3-preprocessor-cssprefix,num_dependents_deps.dev:0 github.com/sudonims/hover,num_dependents_deps.dev:0 github.com/sudonims/mern-npm, +github.com/sudonorm/format-with-black, github.com/sudoofus/cifscloak, github.com/sudopla/cdk-constructs, github.com/sudoplatform-labs/sudo-di-cloud-agent-js,num_dependents_deps.dev:0 @@ -1087110,6 +1106551,9 @@ github.com/sudosapan/morego,num_dependents_deps.dev:0 github.com/sudosapan/progress,num_dependents_deps.dev:0 github.com/sudosnok/RAPILite, github.com/sudosu/rails_admin_mongoid_localize_field,num_dependents_deps.dev:0 +github.com/sudosubin/git-clone-action, +github.com/sudosubin/release-helper-action, +github.com/sudosubin/setup-lokalise-action, github.com/sudot/m3u8,num_dependents_deps.dev:0 github.com/sudotamm/RYNotificationCenter,num_dependents_deps.dev:0 github.com/sudotamm/SLCMicoEasyLink,num_dependents_deps.dev:0 @@ -1087143,6 +1106587,7 @@ github.com/sue445/gcp-kmsenv,num_dependents_deps.dev:0 github.com/sue445/gcp-secretmanagerenv,num_dependents_deps.dev:0 github.com/sue445/gitpanda,num_dependents_deps.dev:0 github.com/sue445/go-doorkeeper,num_dependents_deps.dev:0 +github.com/sue445/go-mod-tidy-pr, github.com/sue445/itamae-plugin-recipe-gitlab_runner,num_dependents_deps.dev:0 github.com/sue445/jenkins-backup-script,criticality_score:0.414480 github.com/sue445/pixela,num_dependents_deps.dev:0 @@ -1087159,6 +1106604,7 @@ github.com/sueLan/react-native-anchor-point, github.com/suecharo/agodashi, github.com/suecharo/cwl-inputs-parser, github.com/suecharo/genpei, +github.com/suecharo/gh-trs-action, github.com/suedadam/go_reuseport,num_dependents_deps.dev:0 github.com/suedar/uunode,num_dependents_deps.dev:0 github.com/sueddeutsche/chunk-rename-webpack-plugin,num_dependents_deps.dev:0 @@ -1087214,6 +1106660,7 @@ github.com/suflaj/prado, github.com/sufrimenda/menda-angular-api-service,num_dependents_deps.dev:0 github.com/suft/numeral,num_dependents_deps.dev:0 github.com/sufyanadam/cf-cname-ctl,num_dependents_deps.dev:0 +github.com/sufyanadam/replace-placeholders, github.com/sug0/awoo-gopher,num_dependents_deps.dev:0 github.com/sug0/ds4visualize,num_dependents_deps.dev:0 github.com/sug0/go-glitch,num_dependents_deps.dev:0 @@ -1087236,6 +1106683,7 @@ github.com/sugar-framework/sugar,criticality_score:0.328160 github.com/sugar-pack/coursera_dirtree,num_dependents_deps.dev:0 github.com/sugar2015/mkeditor, github.com/sugar2015/uidgenerator_utils, +github.com/sugarandmagic/dispatch-action, github.com/sugarandmagic/sequelize-mv-support, github.com/sugarandmagic/sequelize-views-support,num_dependents_deps.dev:0 github.com/sugarchain-dev/sugar_yespower_python3, @@ -1087260,6 +1106708,7 @@ github.com/sugarkubes/generators,num_dependents_deps.dev:0 github.com/sugarlabs-appstore/sugarappstore, github.com/sugarlabs/gwebsockets, github.com/sugarlata/geojson_fixer, +github.com/sugarmanz/auto-native-setup-action, github.com/sugarme/gotch,num_dependents_deps.dev:0 github.com/sugarme/iseg,num_dependents_deps.dev:0 github.com/sugarme/lab,num_dependents_deps.dev:0 @@ -1087335,6 +1106784,7 @@ github.com/sugendran/node-nginx-stubstatus,num_dependents_deps.dev:0 github.com/sugendran/node-supervisord-eventlistener,num_dependents_deps.dev:0 github.com/sugendran/uglifile, github.com/sugendran/unpromise,num_dependents_deps.dev:0 +github.com/sugeng-sulistiyawan/yii2-basic-dieploy, github.com/sugerplay/count-string,num_dependents_deps.dev:0 github.com/sugerplay/express-restful-response,num_dependents_deps.dev:0 github.com/sugerplay/keyword,num_dependents_deps.dev:0 @@ -1087438,6 +1106888,7 @@ github.com/suhaotian/use-formik-persist,num_dependents_deps.dev:0 github.com/suhaotian/use-one,num_dependents_deps.dev:0 github.com/suhaoxiang/webtool,num_dependents_deps.dev:0 github.com/suharev7/clickhouse-rs,num_dependents_deps.dev:3 +github.com/suharshan/split-tests, github.com/suhas1294/learn-go,num_dependents_deps.dev:0 github.com/suhasagg/concurrentdatastructuresingo,num_dependents_deps.dev:0 github.com/suhasagg/serverlesscomputing,num_dependents_deps.dev:0 @@ -1087700,6 +1107151,7 @@ github.com/sujanshirol/simplerecommender, github.com/sujayakar/rsdict,num_dependents_deps.dev:0 github.com/sujayjaju/react-native-aes-util,num_dependents_deps.dev:0 github.com/sujaykundu777/devlopr-jekyll,criticality_score:0.401860 +github.com/sujaykundu777/jekyll-deploy-action, github.com/sujaymansingh/countdown-slackbot, github.com/sujaymansingh/dudebot, github.com/sujaymansingh/mypi, @@ -1087833,10 +1107285,14 @@ github.com/sukisuso/FullStackLogger,num_dependents_deps.dev:0 github.com/sukisuso/express-services,num_dependents_deps.dev:0 github.com/sukkamehu/node-multi-websockify,num_dependents_deps.dev:0 github.com/sukkaw/hexo-renderer-lute,num_dependents_deps.dev:0 +github.com/sukki37/first-contribution-check-action, github.com/sukobuto/python-redis-gt, github.com/sukobuto/redis-scanrx,num_dependents_deps.dev:0 +github.com/sukolenvo/coverage-notes-action, github.com/sukonzer/scott,num_dependents_deps.dev:0 github.com/sukop/doubledouble, +github.com/sukot1/blackduck-pkgscanner, +github.com/sukot1/polaris-codescanner, github.com/sukovanej/inseminator, github.com/sukovanej/todo-tasks, github.com/sukrati192/gophercises,num_dependents_deps.dev:0 @@ -1087897,6 +1107353,7 @@ github.com/suldashi/pcm-f32-to-i16,num_dependents_deps.dev:0 github.com/suldashi/ref,num_dependents_deps.dev:4 github.com/suldashi/ref-array,num_dependents_deps.dev:0 github.com/suldashi/ref-struct, +github.com/suleimanabubakar/automated-issue-kanban, github.com/sulekhaaloorravi-python/sulekha_holtwinters, github.com/sulekhaaloorravi-python/sulekha_holtwinters_python, github.com/sulemankm/budget_report, @@ -1087921,6 +1107378,7 @@ github.com/suliacleguillou/culturav2,num_dependents_deps.dev:0 github.com/suliacleguillou/test_go_framework,num_dependents_deps.dev:0 github.com/suliar/gfsender,num_dependents_deps.dev:0 github.com/sulibautista/numbr,num_dependents_deps.dev:0 +github.com/sulimak-co/docker-action, github.com/sulimak0/securedungeon,num_dependents_deps.dev:0 github.com/sulimi/sim-ui,num_dependents_deps.dev:0 github.com/sulin2018/go-micro-base,num_dependents_deps.dev:0 @@ -1088011,7 +1107469,11 @@ github.com/sultanfariz/hackerrank-solutions,num_dependents_deps.dev:0 github.com/sultanfendonus/HasteJS, github.com/sultanfendonus/dropdown-date-picker, github.com/sultanks4/gi-daily,num_dependents_deps.dev:0 +github.com/sultann/action-plugin-deploy, +github.com/sultann/action-wp-build-deploy, +github.com/sultansoy/pr-commits-count, github.com/sulthonsayid/algoritma-pemrograman,num_dependents_deps.dev:0 +github.com/sulthonzh/docker-remote-deployment-action, github.com/sulu-one/sulu, github.com/sulu-one/sulu-application-core,num_dependents_deps.dev:0 github.com/sulu-one/sulu-application-settings,num_dependents_deps.dev:0 @@ -1088057,6 +1107519,7 @@ github.com/sumacio-github/sumac-junit5,num_dependents_deps.dev:0 github.com/sumacio-github/sumac-parent,num_dependents_deps.dev:0 github.com/sumaikun/clickalapi,num_dependents_deps.dev:0 github.com/sumaikun/go-rest-api,num_dependents_deps.dev:0 +github.com/sumally/github-check-tasklist-action, github.com/suman-dev-cmd/custom-hook,num_dependents_deps.dev:0 github.com/suman-kr/quoters, github.com/suman0110/skbootstrap,num_dependents_deps.dev:0 @@ -1088200,6 +1107663,7 @@ github.com/sumeetkakkar/heap-snapshot-sanitizer, github.com/sumeetrohra/rn-stack-navigator,num_dependents_deps.dev:0 github.com/sumeetsarkar/ratify,num_dependents_deps.dev:0 github.com/sumeetsarkar/ratifyjs, +github.com/sumeetweb/serverless-deploy, github.com/sumela/my_module,num_dependents_deps.dev:0 github.com/sumelms/microservice-account,num_dependents_deps.dev:0 github.com/sumelms/microservice-activity,num_dependents_deps.dev:0 @@ -1088258,6 +1107722,7 @@ github.com/sumit-sinha/msg-format,num_dependents_deps.dev:0 github.com/sumit1991saha/vaccineavailabilitytelegrambot,num_dependents_deps.dev:0 github.com/sumit3021kumar/modernscssbreakpoint,num_dependents_deps.dev:0 github.com/sumit3021kumar/reactnicecardbox,num_dependents_deps.dev:0 +github.com/sumit4613/post-to-mastodon, github.com/sumitLKpatel/gitdev,num_dependents_deps.dev:0 github.com/sumitLKpatel/ngx-number-keypad,num_dependents_deps.dev:0 github.com/sumitLKpatel/simple-format,num_dependents_deps.dev:0 @@ -1088281,6 +1107746,7 @@ github.com/sumitgoelpw/cloudgenix-api-client,num_dependents_deps.dev:0 github.com/sumitgoelpw/eslint-config-sumitgoelpw,num_dependents_deps.dev:0 github.com/sumitgoelpw/zabbix-promise,num_dependents_deps.dev:0 github.com/sumitgouthaman/promise-exponential-retry,num_dependents_deps.dev:0 +github.com/sumitgsh/Learning-actions, github.com/sumitjangir123/meet-api, github.com/sumitkaila88/ng-media-query,num_dependents_deps.dev:0 github.com/sumitkhamar22/dragomen, @@ -1088448,6 +1107914,8 @@ github.com/sumucheng/ryoko-ui-react,num_dependents_deps.dev:0 github.com/sumucheng/vue-ui-demo,num_dependents_deps.dev:0 github.com/sumukhah/React-Image-Button, github.com/sumul/fractal-react-adapter,num_dependents_deps.dev:0 +github.com/sumup-bank/change-commit-yaml, +github.com/sumup-bank/run-credo, github.com/sumup-go/lessons,num_dependents_deps.dev:0 github.com/sumup-oss/circuit-ui,criticality_score:0.473370 github.com/sumup-oss/foundry,num_dependents_deps.dev:0 @@ -1088527,6 +1107995,7 @@ github.com/sunabozu/vue-feathers,num_dependents_deps.dev:0 github.com/sunabozu/vue-hint.css,num_dependents_deps.dev:0 github.com/sunabozu/vue-offcanvas,num_dependents_deps.dev:0 github.com/sunabozu/vue-uikit-autocomplete,num_dependents_deps.dev:0 +github.com/sunadoi/add-projects-beta, github.com/sunag/sea3d,"criticality_score:0.356190,num_dependents_deps.dev:0" github.com/sunainapai/makesite,criticality_score:0.299350 github.com/sunainapai/myhn, @@ -1088722,6 +1108191,7 @@ github.com/sunfishcode/terminal-io,num_dependents_deps.dev:2 github.com/sunfishcode/unsafe-io,num_dependents_deps.dev:89 github.com/sunfishcode/utf8-io,num_dependents_deps.dev:1 github.com/sunfit/jest-summary-reporter,num_dependents_deps.dev:0 +github.com/sunfline/action-release-releaseapk, github.com/sunflowerdeath/broccoli-bem,num_dependents_deps.dev:0 github.com/sunflowerdeath/broccoli-file-sieve,num_dependents_deps.dev:0 github.com/sunflowerdeath/broccoli-glob-caching-writer,num_dependents_deps.dev:2 @@ -1088864,10 +1108334,13 @@ github.com/sunify/object-transit, github.com/sunify/run-with-fps,num_dependents_deps.dev:4 github.com/sunil-digicorp/propeller,num_dependents_deps.dev:0 github.com/sunil-reglobe/csh-sanitizer, +github.com/sunil-samtani/regex-action, github.com/sunil12738/aws-s3-upload,num_dependents_deps.dev:0 github.com/sunil206b/algo_data_structures_go,num_dependents_deps.dev:0 github.com/sunil206b/jwt_api,num_dependents_deps.dev:0 github.com/sunilab/atoms,num_dependents_deps.dev:0 +github.com/sunilagarwal22-zz/sonarscanner-shell, +github.com/sunilagarwal22/sonarscanner-shell, github.com/sunilbg/hello,num_dependents_deps.dev:0 github.com/sunildivyam/ui-menu,num_dependents_deps.dev:0 github.com/sunilgulabani/aws-lambda-dynamodb,num_dependents_deps.dev:0 @@ -1088946,6 +1108419,7 @@ github.com/sunjith/loopback-connector-neo4j-graph,num_dependents_deps.dev:0 github.com/sunjith/node-rsa-keypair,num_dependents_deps.dev:0 github.com/sunjp123/check,num_dependents_deps.dev:0 github.com/sunjp123/checkrc, +github.com/sunjung27/test-action2, github.com/sunkaigoon/react-native-pell-rich-editor,num_dependents_deps.dev:0 github.com/sunkek/sunbot,num_dependents_deps.dev:0 github.com/sunkev/qualtrics,num_dependents_deps.dev:0 @@ -1089035,6 +1108509,7 @@ github.com/sunminx/go_module,num_dependents_deps.dev:0 github.com/sunmohan/print-user-message,num_dependents_deps.dev:0 github.com/sunmyinf/date,num_dependents_deps.dev:0 github.com/sunn-e/dokr, +github.com/sunn4room/gitee-sync, github.com/sunn4room/vue-generator,num_dependents_deps.dev:0 github.com/sunnanping/httprouter,num_dependents_deps.dev:0 github.com/sunnepazzy123/herocodersFirstInterview,num_dependents_deps.dev:0 @@ -1089092,12 +1108567,14 @@ github.com/sunny/actor-rails,num_dependents_deps.dev:0 github.com/sunny/craster,num_dependents_deps.dev:0 github.com/sunny00217wm/nodejs-base64-cli,num_dependents_deps.dev:0 github.com/sunny0425/wenjuan_api,num_dependents_deps.dev:0 +github.com/sunny0826/auto-docs-action, github.com/sunny0826/kubecm,num_dependents_deps.dev:0 github.com/sunny0826/kubectl-gitlab,num_dependents_deps.dev:0 github.com/sunny0826/kubectl-pod-lens,num_dependents_deps.dev:0 github.com/sunny0day/host2ip,num_dependents_deps.dev:0 github.com/sunny19930321/chproxy,num_dependents_deps.dev:0 github.com/sunny352/wego,num_dependents_deps.dev:0 +github.com/sunny4249/autodeploy, github.com/sunny5156/gocronx,num_dependents_deps.dev:0 github.com/sunny635533/react-native-image-gallery-scroll,num_dependents_deps.dev:0 github.com/sunny635533/react-native-tabbar-view,num_dependents_deps.dev:0 @@ -1089152,6 +1108629,7 @@ github.com/sunnyregion/aresdb,num_dependents_deps.dev:0 github.com/sunnysetia93/npm-resume-sunnysetia,num_dependents_deps.dev:0 github.com/sunnysid3up/elastic-appsearch, github.com/sunnysid3up/es-app-search, +github.com/sunnysid3up/python-linter, github.com/sunnysidesounds/dr_data, github.com/sunnysideup/stretched-bg-image,num_dependents_deps.dev:0 github.com/sunnysingh/socialshares,num_dependents_deps.dev:0 @@ -1089339,6 +1108817,7 @@ github.com/sunspar/gw2rs,num_dependents_deps.dev:0 github.com/sunspirit9999/codewar,num_dependents_deps.dev:0 github.com/sunspirit9999/goproject,num_dependents_deps.dev:0 github.com/sunspot/sunspot,"criticality_score:0.543550,num_dependents_deps.dev:346" +github.com/sunstone-dev/actions, github.com/sunstorymvp/antimoderate,num_dependents_deps.dev:0 github.com/sunsunsunsunsun/practicego,num_dependents_deps.dev:0 github.com/sunsunsunsunsunsunsunsun/initdb,num_dependents_deps.dev:0 @@ -1089477,6 +1108956,7 @@ github.com/sunziping2016/oak-tree-house,num_dependents_deps.dev:0 github.com/sunzoje/hubot-groot, github.com/sunzongzheng/electron-updater,num_dependents_deps.dev:0 github.com/sunzu94/velociraptor-new,num_dependents_deps.dev:0 +github.com/suo/flake8-github-action, github.com/suololololo/mapreducerealization,num_dependents_deps.dev:0 github.com/suololololo/mit-6.824,num_dependents_deps.dev:0 github.com/suomiton/aurelia-bootstrap-datepicker,num_dependents_deps.dev:0 @@ -1089505,6 +1108985,7 @@ github.com/supabase-community/storage-py, github.com/supabase-community/supabase-py, github.com/supabase/cli,num_dependents_deps.dev:0 github.com/supabase/doctest-js,num_dependents_deps.dev:0 +github.com/supabase/embeddings-generator, github.com/supabase/gotrue-js,num_dependents_deps.dev:76 github.com/supabase/jsdoc-template,num_dependents_deps.dev:0 github.com/supabase/monorepo,num_dependents_deps.dev:0 @@ -1089517,6 +1108998,7 @@ github.com/supabase/realtime,"criticality_score:0.424140,num_dependents_deps.dev github.com/supabase/realtime-js,num_dependents_deps.dev:76 github.com/supabase/storage-js,num_dependents_deps.dev:76 github.com/supabase/supabase,"criticality_score:0.550020,num_dependents_deps.dev:0" +github.com/supabase/supabase-action, github.com/supabase/supabase-admin-api,num_dependents_deps.dev:0 github.com/supabase/supabase-js,num_dependents_deps.dev:2 github.com/supachailllpay/photo-gallery,num_dependents_deps.dev:0 @@ -1089556,6 +1109038,8 @@ github.com/supasate/hello-by-supasate,num_dependents_deps.dev:0 github.com/supasate/mongoose-fixture-loader,num_dependents_deps.dev:0 github.com/supasympa/date-parts,num_dependents_deps.dev:0 github.com/supasympa/ls2json,num_dependents_deps.dev:0 +github.com/supatsara-wat/DepSafe, +github.com/supatsara-wat/Unsafe-PR-Detector, github.com/supawattt/stoh,num_dependents_deps.dev:0 github.com/supby/gigbee2mqtt,num_dependents_deps.dev:0 github.com/supcbs/leecode,num_dependents_deps.dev:0 @@ -1089563,6 +1109047,7 @@ github.com/supcik/chroma,num_dependents_deps.dev:0 github.com/supcik/mkdocs-select-files, github.com/supcik/nfpm,num_dependents_deps.dev:0 github.com/supcik/pymdown-include, +github.com/supdegrave/issue-copy-action, github.com/supeanut/test_package, github.com/supendi/ytube-nm, github.com/supeng911/migo-ui,num_dependents_deps.dev:0 @@ -1089599,6 +1109084,7 @@ github.com/super-javascript/object-pipe,num_dependents_deps.dev:0 github.com/super-l/machine-code,num_dependents_deps.dev:0 github.com/super-lin0/my-utils,num_dependents_deps.dev:0 github.com/super-lin0/redux-study,num_dependents_deps.dev:0 +github.com/super-linter/super-linter, github.com/super-linter/test2,num_dependents_deps.dev:0 github.com/super-mario-x/motorframework, github.com/super-oak-station/spc,num_dependents_deps.dev:0 @@ -1089709,12 +1109195,14 @@ github.com/superbrobenji/web-component-npm-test,num_dependents_deps.dev:0 github.com/superbrothers-sandbox/try-envoy-grpc,num_dependents_deps.dev:0 github.com/superbrothers/auto-close-action,num_dependents_deps.dev:0 github.com/superbrothers/capturejs, +github.com/superbrothers/close-pull-request, github.com/superbrothers/ga,num_dependents_deps.dev:0 github.com/superbrothers/ksort,num_dependents_deps.dev:0 github.com/superbrothers/kubectl-open-svc-plugin,num_dependents_deps.dev:0 github.com/superbrothers/kubectl-view-serviceaccount-kubeconfig-plugin,num_dependents_deps.dev:0 github.com/superbrothers/node-imageviewurlreplace,num_dependents_deps.dev:0 github.com/superbrothers/opener,num_dependents_deps.dev:0 +github.com/superbrothers/setup-ga, github.com/superbsonik/banyan_test,num_dependents_deps.dev:0 github.com/superbull/super-react-image,num_dependents_deps.dev:0 github.com/superbvue/SuperBVue,num_dependents_deps.dev:0 @@ -1089725,6 +1109213,7 @@ github.com/supercaly/sowo,num_dependents_deps.dev:0 github.com/supercaracal/aniwatch,num_dependents_deps.dev:0 github.com/supercaracal/aws-ecr-login-secret-updater,num_dependents_deps.dev:0 github.com/supercaracal/aws-sqs-worker-job-controller,num_dependents_deps.dev:0 +github.com/supercaracal/go-mod-dl-action, github.com/supercaracal/lsolr,num_dependents_deps.dev:0 github.com/supercaracal/scram-sha-256,num_dependents_deps.dev:0 github.com/supercaracal/tkkz-bot,num_dependents_deps.dev:0 @@ -1089743,6 +1109232,7 @@ github.com/supercharge/hapi-google-cloud-functions,num_dependents_deps.dev:0 github.com/supercharge/json,num_dependents_deps.dev:0 github.com/supercharge/map,num_dependents_deps.dev:6 github.com/supercharge/method-missing,num_dependents_deps.dev:0 +github.com/supercharge/mongodb-github-action, github.com/supercharge/numbers,num_dependents_deps.dev:0 github.com/supercharge/pipeline,num_dependents_deps.dev:0 github.com/supercharge/queue-datastructure, @@ -1089798,6 +1109288,7 @@ github.com/supercrabtree/pact,num_dependents_deps.dev:0 github.com/supercrabtree/tape-worm,num_dependents_deps.dev:0 github.com/supercrabtree/tie-dye,num_dependents_deps.dev:4 github.com/supercrabtree/wdio-cucumber-framework,num_dependents_deps.dev:0 +github.com/supercrafter100/Pterodactyl-Restart, github.com/supercuiller/krakenforwarder, github.com/supercycle91/request-promise,num_dependents_deps.dev:0 github.com/superdami/react-native-custom-navigation,num_dependents_deps.dev:0 @@ -1089892,7 +1109383,9 @@ github.com/superfly/accept-encoding,num_dependents_deps.dev:0 github.com/superfly/cdn,num_dependents_deps.dev:0 github.com/superfly/edge,num_dependents_deps.dev:0 github.com/superfly/fly,num_dependents_deps.dev:186 +github.com/superfly/fly-pr-review-apps, github.com/superfly/flyctl,num_dependents_deps.dev:0 +github.com/superfly/flyctl-actions, github.com/superfly/onehostname,num_dependents_deps.dev:0 github.com/superfly/rchab,num_dependents_deps.dev:0 github.com/superflycss/cli,num_dependents_deps.dev:0 @@ -1089931,6 +1109424,7 @@ github.com/superflycss/variables-html-entities,num_dependents_deps.dev:0 github.com/superflycss/variables-layout,num_dependents_deps.dev:0 github.com/superfur/minidict,num_dependents_deps.dev:0 github.com/superfur/pop-modal, +github.com/superg28/hello-world-docker-action, github.com/supergee/softlayer-storage,num_dependents_deps.dev:0 github.com/supergiant/analyze-plugin-sunsetting,num_dependents_deps.dev:0 github.com/supergiant/control,"criticality_score:0.301690,num_dependents_deps.dev:1" @@ -1090122,6 +1109616,7 @@ github.com/superliang0404/ltest,num_dependents_deps.dev:0 github.com/superliebe/vueTools,num_dependents_deps.dev:0 github.com/superlike/mediasoup-go,num_dependents_deps.dev:0 github.com/superlinkx/derpbot,num_dependents_deps.dev:0 +github.com/superliuwr/go-mod-tidy-pr, github.com/superloach/aiorqlite, github.com/superloach/confy,num_dependents_deps.dev:1 github.com/superloopnetwork/superloop, @@ -1090138,13 +1109633,16 @@ github.com/superman285/vue-clipboard-plus,num_dependents_deps.dev:0 github.com/superman66/angular-clipboard,num_dependents_deps.dev:0 github.com/superman66/vue-highcharts,num_dependents_deps.dev:0 github.com/superman66/vue-qart,num_dependents_deps.dev:0 +github.com/superman66/wakatime-sync, github.com/supermanHTL/popup-slide,num_dependents_deps.dev:0 github.com/supermanHub/spring-boot-quick-start-archetype,num_dependents_deps.dev:0 +github.com/supermanner/pull-request-on-bundle-update, github.com/supermanny81/ciscosupportapi, github.com/supermans1201/learn-nodejs,num_dependents_deps.dev:0 github.com/supermanzer/todo-cla, github.com/supermap/atlab-chaincodes,num_dependents_deps.dev:0 github.com/supermatt/oopsmybad,num_dependents_deps.dev:0 +github.com/supermean-org/aws-web-deploy, github.com/supermedium/aframe-particleplayer-component,num_dependents_deps.dev:0 github.com/supermedium/aframe-simple-shooter,num_dependents_deps.dev:0 github.com/supermedium/aframe-super-hot-loader,num_dependents_deps.dev:0 @@ -1090530,6 +1110028,8 @@ github.com/supply-chain-ventures/angular-pdfmake,num_dependents_deps.dev:0 github.com/supplycart/ui,num_dependents_deps.dev:0 github.com/supplyon/graphql,num_dependents_deps.dev:0 github.com/supplyon/gremcos,num_dependents_deps.dev:0 +github.com/supplypike/jira-pr-link-action, +github.com/supplypike/setup-bin, github.com/supplypike/three-fourteen,num_dependents_deps.dev:0 github.com/support-canalplus/twocolmulti,num_dependents_deps.dev:0 github.com/support-capensis/itop2ansible, @@ -1090632,6 +1110132,7 @@ github.com/suprya/suprya,num_dependents_deps.dev:0 github.com/supsashh/Test-Repo,num_dependents_deps.dev:0 github.com/supsi-dacd-isaac/cosmos-apps,num_dependents_deps.dev:0 github.com/supsi-dacd-isaac/mbtr, +github.com/supsm/copy_file_to_another_repo, github.com/supstatus/admin,num_dependents_deps.dev:0 github.com/supukarmin/env-hoc,num_dependents_deps.dev:0 github.com/supukarmin/format-bcp-47,num_dependents_deps.dev:0 @@ -1090755,6 +1110256,7 @@ github.com/surban/blez,num_dependents_deps.dev:0 github.com/surbhioberoi/fisher-yates-shuffle,num_dependents_deps.dev:0 github.com/surbhioberoi/gistifier,num_dependents_deps.dev:0 github.com/surbhioberoi/github-widget,num_dependents_deps.dev:0 +github.com/surbhirverma/hello-world-composite-run-steps-action, github.com/surbhitrao/poker-odds-calc,num_dependents_deps.dev:0 github.com/surbhitrao/poker-odds-omaha5, github.com/surc54/create-react-app,num_dependents_deps.dev:0 @@ -1090817,6 +1110319,7 @@ github.com/sureshchahal/angular2-adal,num_dependents_deps.dev:0 github.com/sureshdsk/pymodoro, github.com/sureshdsk/rich-diff, github.com/sureshdsk/temporary-email-address-validator-node-js,num_dependents_deps.dev:0 +github.com/sureshg/kts-exec, github.com/sureshhpe/hello-world,num_dependents_deps.dev:0 github.com/sureshkumarnagarajanmca/active-model-serializers-nodejs, github.com/sureshkumarnagarajanmca/sails-grunt-task-db-migrate,num_dependents_deps.dev:0 @@ -1090961,6 +1110464,7 @@ github.com/surmind/node-pgc,num_dependents_deps.dev:0 github.com/surmising/surmise, github.com/surmistry/svg-generator,num_dependents_deps.dev:0 github.com/surmon-china/abc-factory,num_dependents_deps.dev:0 +github.com/surmon-china/create-release, github.com/surmon-china/emoji-233333,num_dependents_deps.dev:0 github.com/surmon-china/libundler,num_dependents_deps.dev:0 github.com/surmon-china/ng2-quill-editor,num_dependents_deps.dev:0 @@ -1091027,6 +1110531,7 @@ github.com/surrsoft/hpwb,num_dependents_deps.dev:0 github.com/surrsoft/rsuv-lib,num_dependents_deps.dev:0 github.com/surrsoft/ueoc-lib,num_dependents_deps.dev:0 github.com/surrsurus/fuss,num_dependents_deps.dev:0 +github.com/surrsurus/reviewdog-action-credo, github.com/sursmobil/jdac,num_dependents_deps.dev:0 github.com/sursmobil/sursutils,num_dependents_deps.dev:1 github.com/sursmobil/touchy,num_dependents_deps.dev:0 @@ -1091114,6 +1110619,7 @@ github.com/suryashekharc/print_schema, github.com/suryasr007/random-password-generator, github.com/suryasr007/upload-path-pyramid, github.com/suryatresna/sse-sample,num_dependents_deps.dev:0 +github.com/suryaumapathy2812/topic-tagger-action, github.com/surycat/tentacool,num_dependents_deps.dev:0 github.com/surycat/tukio, github.com/surzycki/picobox,num_dependents_deps.dev:0 @@ -1091192,10 +1110698,13 @@ github.com/sushantshek20/social-username-url,num_dependents_deps.dev:0 github.com/sushantsur23/cleanup_pypi, github.com/sushantwork/react-form-builder,num_dependents_deps.dev:0 github.com/susheelg1197/crud,num_dependents_deps.dev:0 +github.com/sushi-su/setup-object-storage, github.com/sushi-ui/su-base, github.com/sushi-ui/su-dropdown,num_dependents_deps.dev:0 github.com/sushi-ui/su-select,num_dependents_deps.dev:0 +github.com/sushichop/action-repository-permission, github.com/sushichop/cordova-plugin-wifi-manager,num_dependents_deps.dev:0 +github.com/sushichop/gha-swift-env, github.com/sushicutta/gulp-tsc, github.com/sushidesu/chathook,num_dependents_deps.dev:0 github.com/sushiinudesu/lembas,num_dependents_deps.dev:0 @@ -1091285,6 +1110794,7 @@ github.com/susisu/ppp,num_dependents_deps.dev:0 github.com/susisu/primitive-debounce,num_dependents_deps.dev:0 github.com/susisu/promise-utils,num_dependents_deps.dev:0 github.com/susisu/react-use-source-sink,num_dependents_deps.dev:0 +github.com/susisu/setup-mkr, github.com/susisu/tesseract,num_dependents_deps.dev:0 github.com/susisu/tf-random.js,num_dependents_deps.dev:0 github.com/susisu/ts-dimensional,num_dependents_deps.dev:0 @@ -1091409,6 +1110919,7 @@ github.com/sutin1234/go-fiber-2021,num_dependents_deps.dev:0 github.com/sutin1234/ng-github-repo,num_dependents_deps.dev:0 github.com/sutin1234/tiny-esm,num_dependents_deps.dev:0 github.com/sutine/webant,num_dependents_deps.dev:0 +github.com/sutirthak/git-action, github.com/sutjin/google-recaptcha-react-component,num_dependents_deps.dev:0 github.com/sutkh/stemma,num_dependents_deps.dev:0 github.com/sutoh/dmm-sdk-ruby,num_dependents_deps.dev:0 @@ -1091496,6 +1111007,7 @@ github.com/suvarchal/IJython, github.com/suvarchal/RAMADDA_publish, github.com/suvash/lakh-crore-numbers,num_dependents_deps.dev:0 github.com/suvash/nepalify,num_dependents_deps.dev:0 +github.com/suve/GHActions-FPC, github.com/suve/copydeps,num_dependents_deps.dev:0 github.com/suveng/gotool,num_dependents_deps.dev:0 github.com/suveshagnihotri/suvesh_test,num_dependents_deps.dev:0 @@ -1091564,6 +1111076,8 @@ github.com/suyalcinkaya/karussel,num_dependents_deps.dev:0 github.com/suyalcinkaya/koalazily,num_dependents_deps.dev:0 github.com/suyanhanx/hanutil,num_dependents_deps.dev:0 github.com/suyanlong/aligner,num_dependents_deps.dev:0 +github.com/suyaser/keep-a-changelog-new-release, +github.com/suyash/actions-bazelisk, github.com/suyash/bots,num_dependents_deps.dev:0 github.com/suyash/geopattern-rs,num_dependents_deps.dev:0 github.com/suyash/pmd,num_dependents_deps.dev:0 @@ -1091631,6 +1111145,7 @@ github.com/suzuito/blog1-data,num_dependents_deps.dev:0 github.com/suzuito/blog1-gcf,num_dependents_deps.dev:0 github.com/suzuito/blog1-go,num_dependents_deps.dev:0 github.com/suzuito/common-go,num_dependents_deps.dev:2 +github.com/suzuito/create-release-by-file, github.com/suzuito/liquid-python, github.com/suzuito/ngx-mugen-scroll, github.com/suzuito/s2-demo-go,num_dependents_deps.dev:0 @@ -1091646,6 +1111161,7 @@ github.com/suzuki-shunsuke/aqua,num_dependents_deps.dev:0 github.com/suzuki-shunsuke/aqua-proxy,num_dependents_deps.dev:0 github.com/suzuki-shunsuke/aws-iam-cred-sender,num_dependents_deps.dev:0 github.com/suzuki-shunsuke/aws-sam-rds-initialize-user,num_dependents_deps.dev:0 +github.com/suzuki-shunsuke/aws-secrets-manager-get-action, github.com/suzuki-shunsuke/aws-waf-log-extractor,num_dependents_deps.dev:0 github.com/suzuki-shunsuke/buildflow,num_dependents_deps.dev:0 github.com/suzuki-shunsuke/cht, @@ -1091664,6 +1111180,7 @@ github.com/suzuki-shunsuke/generator-ss-go-echo,num_dependents_deps.dev:0 github.com/suzuki-shunsuke/generator-ss-standard-version,num_dependents_deps.dev:0 github.com/suzuki-shunsuke/generator-ss-validate-commit-msg,num_dependents_deps.dev:0 github.com/suzuki-shunsuke/git-rm-branch,num_dependents_deps.dev:0 +github.com/suzuki-shunsuke/github-action-renovate-config-validator, github.com/suzuki-shunsuke/github-ci-monitor,num_dependents_deps.dev:0 github.com/suzuki-shunsuke/github-cli,num_dependents_deps.dev:0 github.com/suzuki-shunsuke/github-comment,num_dependents_deps.dev:0 @@ -1091703,6 +1111220,7 @@ github.com/suzuki-shunsuke/test-renovate-2,num_dependents_deps.dev:0 github.com/suzuki-shunsuke/tfcmt,num_dependents_deps.dev:0 github.com/suzuki-shunsuke/tfmigrator,num_dependents_deps.dev:0 github.com/suzuki-shunsuke/tfmigrator-cli,num_dependents_deps.dev:0 +github.com/suzuki-shunsuke/watch-star-action, github.com/suzuki-shunsuke/yeoman-merge-ui,num_dependents_deps.dev:0 github.com/suzuki90/cooky-chain,num_dependents_deps.dev:0 github.com/suzuki90/cooky-template,num_dependents_deps.dev:0 @@ -1091728,13 +1111246,17 @@ github.com/suzynakayama/myfooter-package, github.com/sv-code/microstats,num_dependents_deps.dev:0 github.com/sv-digital-bank/coinbase-pro-ticker,num_dependents_deps.dev:0 github.com/sv-go-tools/grade,num_dependents_deps.dev:0 +github.com/sv-oss/cdk-docker-creds-action, +github.com/sv-tools/block-merge-conflicts, github.com/sv-tools/buffers-pool,num_dependents_deps.dev:0 github.com/sv-tools/bumptag,num_dependents_deps.dev:0 +github.com/sv-tools/change-milestone-action, github.com/sv-tools/conf,num_dependents_deps.dev:0 github.com/sv-tools/conf-parser-json,num_dependents_deps.dev:0 github.com/sv-tools/conf-parser-yaml,num_dependents_deps.dev:0 github.com/sv-tools/conf-reader-env,num_dependents_deps.dev:0 github.com/sv-tools/conf-transformer-go-template,num_dependents_deps.dev:0 +github.com/sv-tools/create-milestone-action, github.com/sv-tools/grade,num_dependents_deps.dev:0 github.com/sv-tools/marshmallow-objects, github.com/sv-tools/mongoifc,num_dependents_deps.dev:0 @@ -1091995,6 +1111517,9 @@ github.com/svemoory/react-citytrendsapp,num_dependents_deps.dev:0 github.com/svemoory/react-trends, github.com/svemoory/react-widget,num_dependents_deps.dev:0 github.com/svemoory/react-widgetselection,num_dependents_deps.dev:0 +github.com/svemu/gh_action, +github.com/svemu/hello-world-js-action-svemu, +github.com/svemu/svemu_Test_JS_Action, github.com/sven-ahrens/keys_transformer,num_dependents_deps.dev:0 github.com/sven-codeculture/angular-oauth2-oidc,num_dependents_deps.dev:0 github.com/sven-piller/eslint-config,num_dependents_deps.dev:0 @@ -1092153,6 +1111678,8 @@ github.com/svenstaro/proby,num_dependents_deps.dev:0 github.com/svenstaro/proxyboi,num_dependents_deps.dev:0 github.com/svenstaro/pytest-colordots, github.com/svenstaro/rofi-calc,criticality_score:0.413200 +github.com/svenstaro/upload-release-action, +github.com/svenstaro/upx-action, github.com/svenstaro/vulkanology,num_dependents_deps.dev:0 github.com/svenstaro/wmfocus,num_dependents_deps.dev:0 github.com/sventer444/hubot-bc3-adapter,num_dependents_deps.dev:0 @@ -1092311,6 +1111838,9 @@ github.com/svidovich/lad, github.com/svieira/Flask-HipPocket, github.com/svieira/HipPocket, github.com/sviete/AIS-api, +github.com/svikramjeet/git-action-laravel-phpunit, +github.com/svikramjeet/git-actions, +github.com/svikramjeet/gitaction-webhook, github.com/svil4ok/eslint-stylish-config,num_dependents_deps.dev:0 github.com/svileng/announcements,num_dependents_deps.dev:0 github.com/svileng/conveyor-belt,num_dependents_deps.dev:0 @@ -1092377,6 +1111907,7 @@ github.com/svivekvarma/generator-doeui,num_dependents_deps.dev:0 github.com/svivekvarma/vOverlay,num_dependents_deps.dev:0 github.com/svivekvarma/vwidget-grid,num_dependents_deps.dev:0 github.com/svix/svix-cli,num_dependents_deps.dev:0 +github.com/svix/svix-event-type-import-action, github.com/svix/svix-libs,num_dependents_deps.dev:0 github.com/svixhq/python-ksuid, github.com/svixhq/svix-cli,num_dependents_deps.dev:0 @@ -1092474,6 +1112005,7 @@ github.com/svrnm/appdynamics-analytics-events-api,num_dependents_deps.dev:0 github.com/svrnm/appdynamics-nodejs-extras,num_dependents_deps.dev:0 github.com/svrnm/cronmatch,num_dependents_deps.dev:0 github.com/svrooij/angular2-swagger-client-generator,num_dependents_deps.dev:0 +github.com/svrooij/dotnet-feeder, github.com/svrooij/evohome,num_dependents_deps.dev:0 github.com/svrooij/evohome2mqtt,num_dependents_deps.dev:0 github.com/svrooij/ipcam2mqtt,num_dependents_deps.dev:0 @@ -1092482,6 +1112014,7 @@ github.com/svrooij/node-sonos-ts,num_dependents_deps.dev:0 github.com/svrooij/node-sonos-tts-polly,num_dependents_deps.dev:0 github.com/svrooij/node-xiaomi2mqtt,num_dependents_deps.dev:0 github.com/svrooij/nodeftpd, +github.com/svrooij/secret-gate-action, github.com/svrooij/smartmeter2mqtt,num_dependents_deps.dev:0 github.com/svrooij/sonos-cli,num_dependents_deps.dev:0 github.com/svrooij/sonos2mqtt,num_dependents_deps.dev:0 @@ -1092644,6 +1112177,8 @@ github.com/swabianinstruments/TimeTaggerRPC, github.com/swac/boom-invariant,num_dependents_deps.dev:0 github.com/swacedigital/eslint-config-swace,num_dependents_deps.dev:0 github.com/swachhdata/swachhdata, +github.com/swade1987/github-action-hrval, +github.com/swade1987/github-action-kustomize-diff, github.com/swade1987/npx-username,num_dependents_deps.dev:0 github.com/swadeshrd/tts, github.com/swadhinbharat/toto,num_dependents_deps.dev:0 @@ -1092666,6 +1112201,7 @@ github.com/swagen/swagen-dotnet-webapi,num_dependents_deps.dev:0 github.com/swagen/swagen-protobuf,num_dependents_deps.dev:0 github.com/swagen/swagen-typescript-language, github.com/swagert67/greytape,num_dependents_deps.dev:0 +github.com/swagger-akka-http/swagger-akka-http, github.com/swagger-akka-http/swagger-enumeratum-module,num_dependents_deps.dev:0 github.com/swagger-akka-http/swagger-scala-module,num_dependents_deps.dev:21 github.com/swagger-api/swagger-codegen,"criticality_score:0.737890,num_dependents_deps.dev:1613" @@ -1092728,6 +1112264,7 @@ github.com/swallowarc/tictactoe-battle-proto,num_dependents_deps.dev:0 github.com/swallville/instabuyModules,num_dependents_deps.dev:0 github.com/swami-mahesh/Media-Organizer,num_dependents_deps.dev:0 github.com/swamikalagiri/swamikalagiri,num_dependents_deps.dev:0 +github.com/swamirara/github-action-python-template, github.com/swamp/assembler,num_dependents_deps.dev:0 github.com/swamp/compiler,num_dependents_deps.dev:0 github.com/swamp/disassembler,num_dependents_deps.dev:0 @@ -1092798,6 +1112335,7 @@ github.com/swanky-docs/swanky-processor-jsdoc,num_dependents_deps.dev:0 github.com/swanky-docs/swanky-processor-ngdocs,num_dependents_deps.dev:12 github.com/swanky-docs/swanky-theme,num_dependents_deps.dev:10 github.com/swanky2009/imgserver,num_dependents_deps.dev:0 +github.com/swannknani/trellis-action, github.com/swannodette/mori,num_dependents_deps.dev:66 github.com/swanny0819/python-gedcom, github.com/swansong/ng2-webpack-boiler,num_dependents_deps.dev:0 @@ -1092986,9 +1112524,11 @@ github.com/swdenglian/blog-site,num_dependents_deps.dev:0 github.com/swdenglian/dva-rn,num_dependents_deps.dev:0 github.com/swdenglian/re-antd,num_dependents_deps.dev:0 github.com/swdenglian/tencent-wx-jssdk,num_dependents_deps.dev:0 +github.com/swdotcom/configure-kubectl-with-strongdm, github.com/swdotcom/file-it,num_dependents_deps.dev:0 github.com/swdotcom/music,num_dependents_deps.dev:0 github.com/swdotcom/swdc-vscode,criticality_score:0.451110 +github.com/swdotcom/update-and-apply-kubernetes-configs, github.com/swdream/flyfingers, github.com/swdunlop/mage,num_dependents_deps.dev:0 github.com/swdyh/node_wifi_location,num_dependents_deps.dev:0 @@ -1093013,9 +1112553,15 @@ github.com/swedishborgie/gradle-nar-plugin,num_dependents_deps.dev:0 github.com/sweebee/pimatic-aqara,num_dependents_deps.dev:0 github.com/sweebee/pimatic-backup,num_dependents_deps.dev:0 github.com/sweebee/pimatic-nefit,num_dependents_deps.dev:0 +github.com/sweeetland/action-serverless, github.com/sweeetland/better-lambda-types,num_dependents_deps.dev:0 github.com/sweeetland/foreachrepo,num_dependents_deps.dev:0 github.com/sweeetland/lambda-hooks,num_dependents_deps.dev:0 +github.com/sweehualaw/radiant_compile, +github.com/sweehualaw/radiant_export, +github.com/sweehualaw/radiant_map, +github.com/sweehualaw/radiant_par, +github.com/sweehualaw/radiant_synthesis, github.com/sweemeng/cuaca, github.com/sweeneyde/multimerge, github.com/sweeneyngo/birdysis, @@ -1093216,6 +1112762,8 @@ github.com/swhume/odmlib, github.com/swhzzz/happy-robot,num_dependents_deps.dev:0 github.com/swhzzz/node-weather,num_dependents_deps.dev:0 github.com/swiatstron/jquery.typographer,num_dependents_deps.dev:0 +github.com/swichers/configure-laravel-nova, +github.com/swichers/configure-repman, github.com/swicks/tiny,num_dependents_deps.dev:0 github.com/swider/express-dust, github.com/swiecaJS/vue-a11y-click,num_dependents_deps.dev:0 @@ -1093223,6 +1112771,7 @@ github.com/swierkosz/ExecAsync,num_dependents_deps.dev:0 github.com/swierkosz/fixture-generator,num_dependents_deps.dev:0 github.com/swiesend/secret-service,num_dependents_deps.dev:0 github.com/swiety85/angular2gridster, +github.com/swift-actions/setup-swift, github.com/swift-boilerplate/swift-cli,num_dependents_deps.dev:0 github.com/swift-emacs/swift-mode,criticality_score:0.431380 github.com/swift-nav/dencode,num_dependents_deps.dev:0 @@ -1093236,6 +1112785,7 @@ github.com/swift-nav/okcompute, github.com/swift-nav/piksi_tools, github.com/swift-nav/proact, github.com/swift-nav/pygnss, +github.com/swift-nav/swift-cli-publisher, github.com/swift-server/async-http-client,criticality_score:0.435140 github.com/swift-server/swift-aws-lambda-runtime,criticality_score:0.430240 github.com/swift-sunshine/swsui,num_dependents_deps.dev:0 @@ -1093285,6 +1112835,7 @@ github.com/swiftcoder/spirv-struct-layout,num_dependents_deps.dev:0 github.com/swiftcoffee/node-call-vk,num_dependents_deps.dev:0 github.com/swiftcomplete-public/reverse-geocode,num_dependents_deps.dev:0 github.com/swiftcsv/SwiftCSV,criticality_score:0.349020 +github.com/swiftdiaries/kfctl-action, github.com/swiftelan/rafter,num_dependents_deps.dev:0 github.com/swiftelan/tag-library,num_dependents_deps.dev:0 github.com/swifteralex/picross-solver, @@ -1093309,9 +1112860,12 @@ github.com/swiftmade/swiftdocs,num_dependents_deps.dev:0 github.com/swiftmade/vue-bs4-modal,num_dependents_deps.dev:0 github.com/swiftmailer/swiftmailer,criticality_score:0.621420 github.com/swiftmedical/version-exporter,num_dependents_deps.dev:0 +github.com/swiftpackages/jazzy-swift-docs-action, github.com/swiftsim/swiftsimio, github.com/swiftsim/velociraptor-python, github.com/swiftwasm/JavaScriptKit,criticality_score:0.319750 +github.com/swiftwasm/setup-swiftwasm, +github.com/swiftwasm/swiftwasm-action, github.com/swiftwork/babylon-file-loader,num_dependents_deps.dev:0 github.com/swiftyapp/cryptor,num_dependents_deps.dev:0 github.com/swiftyapp/swifty,criticality_score:0.359500 @@ -1093341,6 +1112895,7 @@ github.com/swillis93/drive-through,num_dependents_deps.dev:0 github.com/swillis93/litter,num_dependents_deps.dev:0 github.com/swillis93/zebra-scss,num_dependents_deps.dev:0 github.com/swillner/netcdf4-js,num_dependents_deps.dev:0 +github.com/swillner/sftp-sync-action, github.com/swills/py-FreeBSD-ports, github.com/swilson/aqualogic, github.com/swim/maptiler-geocoder-node,num_dependents_deps.dev:0 @@ -1093414,7 +1112969,11 @@ github.com/swimmadude66/loaderify,num_dependents_deps.dev:0 github.com/swimmadude66/webpack-nomodule-plugin,num_dependents_deps.dev:0 github.com/swimmesberger/swingx,num_dependents_deps.dev:24 github.com/swimmingwhale/markdown-it-mathjax-svg,num_dependents_deps.dev:0 +github.com/swimmio/swimm-verify-action, github.com/swimmwatch/fastapi-spa-kit, +github.com/swimmwatch/openapi-compare-version, +github.com/swimmwatch/openapi-diff-action, +github.com/swimmwatch/openapi-diff-semver-bump, github.com/swimmwatch/pytiktokbot, github.com/swimmwatch/util-time,num_dependents_deps.dev:0 github.com/swimmy4days/brainfuck, @@ -1093446,6 +1113005,7 @@ github.com/swingywc/react-native-phonecall-listener,num_dependents_deps.dev:0 github.com/swiniak/testcafe-reporter-chrome-recorder,num_dependents_deps.dev:0 github.com/swinslow/npm-spdx,num_dependents_deps.dev:0 github.com/swinton/alfred-canned,num_dependents_deps.dev:0 +github.com/swinton/commit, github.com/swinton/device-flow,num_dependents_deps.dev:0 github.com/swinton/github-app-repl,num_dependents_deps.dev:0 github.com/swinton/github-apps-hello-world,num_dependents_deps.dev:0 @@ -1093455,6 +1113015,7 @@ github.com/swinton/javascript,num_dependents_deps.dev:0 github.com/swinton/octokit-plugin-ghes-warnings,num_dependents_deps.dev:0 github.com/swinton/on-my-plate,num_dependents_deps.dev:0 github.com/swinton/probot-actions-adapter,num_dependents_deps.dev:0 +github.com/swinton/screenshot-website, github.com/swinton/scrobbify, github.com/swinton/trigger-repository-dispatch, github.com/swinton/twitterspawn, @@ -1093480,6 +1113041,7 @@ github.com/swipesapp/react-optimist,num_dependents_deps.dev:0 github.com/swipesapp/react-swiss,num_dependents_deps.dev:0 github.com/swipesapp/swiss-react,num_dependents_deps.dev:0 github.com/swipesapp/valjs,num_dependents_deps.dev:0 +github.com/swipoo/action-merge-main-dev, github.com/swirepay/maven-payment-api,num_dependents_deps.dev:0 github.com/swirepay/swirepay-java,num_dependents_deps.dev:0 github.com/swirfneblin/github-action-cicd,num_dependents_deps.dev:0 @@ -1093514,6 +1113076,7 @@ github.com/swissChili/vau, github.com/swissChili/wisp,num_dependents_deps.dev:0 github.com/swissbib/kafka_event_hub, github.com/swissbilling-sa/swissbilling-client-java,num_dependents_deps.dev:0 +github.com/swissbuechi/action-openvpn-client, github.com/swisscat/commitlint-plugin-jira-issue-in-scope,num_dependents_deps.dev:0 github.com/swisscat/generator-sfcc,num_dependents_deps.dev:0 github.com/swisscom-blockchain/neo-json-rpc-client-java,num_dependents_deps.dev:0 @@ -1093566,6 +1113129,7 @@ github.com/swissquote/carnotzet,num_dependents_deps.dev:6 github.com/swissquote/crafty,num_dependents_deps.dev:468 github.com/swissquote/fetch-filter,num_dependents_deps.dev:0 github.com/swissspidy/local-webfont,num_dependents_deps.dev:0 +github.com/swissspidy/wp-plugin-check-action, github.com/swist/koa-compile-sass,num_dependents_deps.dev:0 github.com/swistakm/django-datapurge, github.com/swistakm/druid-cli, @@ -1093582,6 +1113146,7 @@ github.com/switch-li/juice,num_dependents_deps.dev:0 github.com/switch-st/gosu,num_dependents_deps.dev:0 github.com/switchII/do-bulma,num_dependents_deps.dev:0 github.com/switchII/do-vue,num_dependents_deps.dev:0 +github.com/switchboard-xyz/solana-local-validator, github.com/switchboard-xyz/switchboardv2-py-api, github.com/switchboardpy/switchboard, github.com/switchbrew/libnx,criticality_score:0.458180 @@ -1093615,6 +1113180,7 @@ github.com/switchover/code-analysis,num_dependents_deps.dev:0 github.com/switchpwn/metadisk.js,num_dependents_deps.dev:0 github.com/switchpwn/pyCydia, github.com/switchswap/USC-schedule, +github.com/switchswapbox/ipfs-crust-action, github.com/switchupcb/srt3, github.com/switer/Zect,num_dependents_deps.dev:0 github.com/switer/attribute-parser,num_dependents_deps.dev:4 @@ -1093717,6 +1113283,7 @@ github.com/swojdyga/typescript-injections,num_dependents_deps.dev:0 github.com/swolecoder/ascending-js,num_dependents_deps.dev:0 github.com/swolecoder/encode-decode-base64,num_dependents_deps.dev:0 github.com/swolecoder/isDescending,num_dependents_deps.dev:0 +github.com/swolfand/increment-version-action, github.com/swollentongue/ziggy-eigthball,num_dependents_deps.dev:0 github.com/swollentongue/ziggy-magic-eightball,num_dependents_deps.dev:0 github.com/swolock/scrublet, @@ -1093799,6 +1113366,8 @@ github.com/swrlab/swr-prettier-config,num_dependents_deps.dev:0 github.com/swrobel/spree_zero_stock_products,num_dependents_deps.dev:0 github.com/swrve-services/analytics-android-integration-swrve,num_dependents_deps.dev:0 github.com/swrve-services/mparticle-android-integration-swrve,num_dependents_deps.dev:0 +github.com/sws2apps/firebase-deployment, +github.com/sws2apps/render-deployment, github.com/swsamleo/Paper-Viz, github.com/swsapien/pycfdi-transform, github.com/swseverance/ngrx-action-debouncer,num_dependents_deps.dev:0 @@ -1093948,6 +1113517,7 @@ github.com/sxjscience/autogluon-contrib-nlp, github.com/sxlgkxk/ycy.cli,num_dependents_deps.dev:0 github.com/sxlllslgh/laravel-elixir-blade-minifier,num_dependents_deps.dev:0 github.com/sxlongwork/gowork,num_dependents_deps.dev:0 +github.com/sxmxta/lazarus, github.com/sxn/notary, github.com/sxnaprkhr/eslint-config-sxnaprkhr, github.com/sxnb/apival,num_dependents_deps.dev:0 @@ -1093985,6 +1113555,7 @@ github.com/sxxgxxnz/go-study,num_dependents_deps.dev:0 github.com/sxxov/is-stupid,num_dependents_deps.dev:0 github.com/sxxov/windows-ss,num_dependents_deps.dev:0 github.com/sxxymzy/cordova-plugin-thumbnail,num_dependents_deps.dev:0 +github.com/sxy15/issue2md-action, github.com/sxy1992/qcc,num_dependents_deps.dev:0 github.com/sxyazi/markdown-viewer,num_dependents_deps.dev:0 github.com/sxyhappy/gps-location,num_dependents_deps.dev:0 @@ -1094151,7 +1113722,9 @@ github.com/sycamore-rs/sycamore,num_dependents_deps.dev:4 github.com/sycdtk/bobi,num_dependents_deps.dev:0 github.com/sycer-dev/kwp,num_dependents_deps.dev:0 github.com/sychonet/gocrud,num_dependents_deps.dev:0 +github.com/sychus/ChatGPT-CodeReview, github.com/sychus/cds-hooks,num_dependents_deps.dev:0 +github.com/sychus/chatgpt-github-actions, github.com/sycinz/canirunit,num_dependents_deps.dev:0 github.com/sycle/sycle,num_dependents_deps.dev:2 github.com/sycle/sycle-codegen-rest-js,num_dependents_deps.dev:0 @@ -1094219,6 +1113792,7 @@ github.com/syed-ahmad/lft-demo-pkg, github.com/syed-ahmad/lft-react-lib,num_dependents_deps.dev:0 github.com/syed-ahmad/react-component-library,num_dependents_deps.dev:0 github.com/syed-ahmad/react-lib,num_dependents_deps.dev:0 +github.com/syed-gcp/create-project, github.com/syed-umair/electron-window-nspanel,num_dependents_deps.dev:0 github.com/syedad218/create-react-app,num_dependents_deps.dev:0 github.com/syedadeel2/ngx-function-executor,num_dependents_deps.dev:0 @@ -1094226,6 +1113800,7 @@ github.com/syedfazilbasheer-quester/eulim-gem,num_dependents_deps.dev:0 github.com/syedgalib/bandwidth-usage-tracker,num_dependents_deps.dev:0 github.com/syedhali/EZAudio,criticality_score:0.333140 github.com/syedhamidali/PyScanCf, +github.com/syedhassaanahmed/app-insights-event-action, github.com/syedhassaanahmed/cosmos_doc_manager, github.com/syedhumair/aws-devops-challenge, github.com/syedhussim/node-sapb1,num_dependents_deps.dev:0 @@ -1094234,6 +1113809,8 @@ github.com/syedjafer/PyDesign, github.com/syedomair/learn-go,num_dependents_deps.dev:0 github.com/syedsadiqali/tiny,num_dependents_deps.dev:0 github.com/syedsadman16/kg_syedsadman16_2021,num_dependents_deps.dev:0 +github.com/syedsalman3753/get-changed-files-in-pr, +github.com/syedsalman3753/syed-helm-gh-pages, github.com/syedtaz/pyleap, github.com/syedtehrimabbas/react-native-image-zoom-preview,num_dependents_deps.dev:0 github.com/syedur-rahman/netparse, @@ -1094247,11 +1113824,13 @@ github.com/syeo/grunt-bower-copy,num_dependents_deps.dev:0 github.com/syeo/sequelize-qt,num_dependents_deps.dev:0 github.com/syeoryn/textAnalysisSuite,num_dependents_deps.dev:0 github.com/syepes/network_exporter,num_dependents_deps.dev:0 +github.com/syeutyu/validate-changed-files, github.com/syfaro/mcapi,num_dependents_deps.dev:0 github.com/syfaro/paperless-mailhook,num_dependents_deps.dev:0 github.com/syfaro/telegram-bot-api,num_dependents_deps.dev:0 github.com/syfjackey/auto-upload,num_dependents_deps.dev:0 github.com/syfjackey/sync-storage-listener,num_dependents_deps.dev:0 +github.com/syftdata/monitor-action, github.com/syfun/async-dataloader, github.com/syfun/django-graphql, github.com/syfun/example,num_dependents_deps.dev:0 @@ -1094334,6 +1113913,7 @@ github.com/sylhare/git-git_processor, github.com/sylhero/electron-redux-connector, github.com/sylhero/pem,num_dependents_deps.dev:0 github.com/sylikc/pyexiftool, +github.com/sylingd/tencent-cos-and-cdn-action, github.com/sylingd/vuepress-baidu-google-analytics,num_dependents_deps.dev:0 github.com/sylingd/vuepress-copy-via-link,num_dependents_deps.dev:0 github.com/sylis/passport-nopassword,num_dependents_deps.dev:0 @@ -1094436,12 +1114016,15 @@ github.com/sylvanaar/babel-plugin-copy-jsx-attribute,num_dependents_deps.dev:0 github.com/sylvanaar/flipper-plugin-bridgespy,num_dependents_deps.dev:0 github.com/sylvance/igotjokes,num_dependents_deps.dev:0 github.com/sylvance/peperusha,num_dependents_deps.dev:0 +github.com/sylvanld/action-search-docker-tag, +github.com/sylvanld/action-storage, github.com/sylvat/kubebuilder-demo,num_dependents_deps.dev:0 github.com/sylvchev/mdla, github.com/sylvelk/ppprint, github.com/sylvenia/konkii-resumable,num_dependents_deps.dev:0 github.com/sylveon/windows-blurbehind,num_dependents_deps.dev:0 github.com/sylveon/windows-swca,num_dependents_deps.dev:0 +github.com/sylver-dev/sylver-gh-action, github.com/sylver/json-http-client,num_dependents_deps.dev:0 github.com/sylvesteraswin/babel-preset-sylvester,num_dependents_deps.dev:0 github.com/sylvesteraswin/eslint-config-sylvester,num_dependents_deps.dev:0 @@ -1094467,6 +1114050,7 @@ github.com/sylwekczmil/sevq, github.com/sylwekczmil/signalboard, github.com/sylwester-malysz/joi-to-openapi,num_dependents_deps.dev:0 github.com/sylwit/aws-serverless-swagger-ui,num_dependents_deps.dev:0 +github.com/sylwit/install-b2-cli-action, github.com/sylwolveryn/dominus-uno,num_dependents_deps.dev:0 github.com/sylzd/parser,num_dependents_deps.dev:0 github.com/sylzys/generator-webstarter,num_dependents_deps.dev:0 @@ -1094477,6 +1114061,7 @@ github.com/symbioquine/ol-side-panel,num_dependents_deps.dev:0 github.com/symbioquine/ol-touch-draw,num_dependents_deps.dev:0 github.com/symbiosejs/symbiont,num_dependents_deps.dev:0 github.com/symbiosejs/symbiose-generator,num_dependents_deps.dev:0 +github.com/symbiosis-cloud/action-cli, github.com/symbioticlabs/express-router-adapter,num_dependents_deps.dev:0 github.com/symbioticlabs/green-state,num_dependents_deps.dev:0 github.com/symblai/opus-encdec,num_dependents_deps.dev:0 @@ -1094538,12 +1114123,22 @@ github.com/symfony-cmf/symfony-cmf,criticality_score:0.362380 github.com/symfony-javascript/router,num_dependents_deps.dev:0 github.com/symfony-javascript/translator,num_dependents_deps.dev:0 github.com/symfony-javascript/vue-adapter,num_dependents_deps.dev:0 +github.com/symfony/acl-bundle, +github.com/symfony/all-my-sms-notifier, +github.com/symfony/amazon-mailer, +github.com/symfony/amazon-sqs-messenger, +github.com/symfony/amqp-messenger, +github.com/symfony/amqp-pack, +github.com/symfony/annotations-pack, +github.com/symfony/apache-pack, github.com/symfony/asset,criticality_score:0.520140 github.com/symfony/assetic-bundle,criticality_score:0.389610 +github.com/symfony/beanstalkd-messenger, github.com/symfony/browser-kit,criticality_score:0.578570 github.com/symfony/cache,criticality_score:0.583320 github.com/symfony/cache-contracts,criticality_score:0.378970 github.com/symfony/class-loader,criticality_score:0.326430 +github.com/symfony/clickatell-notifier, github.com/symfony/config,criticality_score:0.602640 github.com/symfony/console,criticality_score:0.695200 github.com/symfony/contracts,criticality_score:0.453090 @@ -1094554,36 +1114149,65 @@ github.com/symfony/debug-pack,criticality_score:0.341950 github.com/symfony/demo,criticality_score:0.644590 github.com/symfony/dependency-injection,criticality_score:0.673460 github.com/symfony/deprecation-contracts,criticality_score:0.306620 +github.com/symfony/discord-notifier, github.com/symfony/doctrine-bridge,criticality_score:0.624260 +github.com/symfony/doctrine-messenger, github.com/symfony/dom-crawler,criticality_score:0.586760 github.com/symfony/dotenv,criticality_score:0.524980 github.com/symfony/error-handler,criticality_score:0.464760 +github.com/symfony/esendex-notifier, github.com/symfony/event-dispatcher,criticality_score:0.586630 github.com/symfony/event-dispatcher-contracts,criticality_score:0.360400 github.com/symfony/expression-language,criticality_score:0.546290 github.com/symfony/filesystem,criticality_score:0.585930 github.com/symfony/finder,criticality_score:0.588620 +github.com/symfony/firebase-notifier, github.com/symfony/flex,criticality_score:0.609560 +github.com/symfony/force-lowest, github.com/symfony/form,criticality_score:0.488990 github.com/symfony/framework-bundle,criticality_score:0.655510 +github.com/symfony/free-mobile-notifier, +github.com/symfony/gateway-api-notifier, +github.com/symfony/gitter-notifier, +github.com/symfony/google-chat-notifier, +github.com/symfony/google-mailer, github.com/symfony/http-client,criticality_score:0.574850 github.com/symfony/http-client-contracts,criticality_score:0.417090 github.com/symfony/http-foundation,criticality_score:0.688030 github.com/symfony/http-kernel,criticality_score:0.651860 +github.com/symfony/icu, +github.com/symfony/image-fixtures, github.com/symfony/inflector,criticality_score:0.498280 +github.com/symfony/infobip-notifier, github.com/symfony/intl,criticality_score:0.556730 +github.com/symfony/iqsms-notifier, +github.com/symfony/ldap, +github.com/symfony/linked-in-notifier, +github.com/symfony/locale, github.com/symfony/lock,criticality_score:0.525460 +github.com/symfony/lts, +github.com/symfony/mailchimp-mailer, github.com/symfony/mailer,criticality_score:0.521860 +github.com/symfony/mailgun-mailer, +github.com/symfony/mailjet-mailer, github.com/symfony/maker-bundle,criticality_score:0.656000 +github.com/symfony/mattermost-notifier, github.com/symfony/mercure,criticality_score:0.361230 +github.com/symfony/mercure-bundle, +github.com/symfony/mercure-notifier, github.com/symfony/messenger,criticality_score:0.524460 github.com/symfony/mime,criticality_score:0.525750 +github.com/symfony/mobyt-notifier, github.com/symfony/monolog-bridge,criticality_score:0.555410 github.com/symfony/monolog-bundle,criticality_score:0.601300 +github.com/symfony/nexmo-notifier, github.com/symfony/notifier,criticality_score:0.425220 +github.com/symfony/octopush-notifier, github.com/symfony/options-resolver,criticality_score:0.557130 github.com/symfony/orm-pack,criticality_score:0.449400 +github.com/symfony/ovh-cloud-notifier, github.com/symfony/panther,criticality_score:0.553320 +github.com/symfony/password-hasher, github.com/symfony/phpunit-bridge,criticality_score:0.621850 github.com/symfony/polyfill,criticality_score:0.671520 github.com/symfony/polyfill-apcu,criticality_score:0.421050 @@ -1094592,25 +1114216,39 @@ github.com/symfony/polyfill-iconv,criticality_score:0.449010 github.com/symfony/polyfill-intl-grapheme,criticality_score:0.431050 github.com/symfony/polyfill-intl-icu,criticality_score:0.312820 github.com/symfony/polyfill-intl-idn,criticality_score:0.426790 +github.com/symfony/polyfill-intl-messageformatter, github.com/symfony/polyfill-intl-normalizer,criticality_score:0.446210 github.com/symfony/polyfill-mbstring,criticality_score:0.539810 +github.com/symfony/polyfill-php54, +github.com/symfony/polyfill-php55, github.com/symfony/polyfill-php56,criticality_score:0.411220 github.com/symfony/polyfill-php70,criticality_score:0.426800 +github.com/symfony/polyfill-php71, github.com/symfony/polyfill-php72,criticality_score:0.452500 github.com/symfony/polyfill-php73,criticality_score:0.440000 +github.com/symfony/polyfill-php74, github.com/symfony/polyfill-php80,criticality_score:0.386020 github.com/symfony/polyfill-php81, github.com/symfony/polyfill-util,criticality_score:0.444360 github.com/symfony/polyfill-uuid, +github.com/symfony/polyfill-xml, +github.com/symfony/postmark-mailer, github.com/symfony/process,criticality_score:0.602410 github.com/symfony/profiler-pack,criticality_score:0.317220 +github.com/symfony/propel1-bridge, github.com/symfony/property-access,criticality_score:0.565710 github.com/symfony/property-info,criticality_score:0.526620 github.com/symfony/proxy-manager-bridge, github.com/symfony/psr-http-message-bridge,criticality_score:0.396940 +github.com/symfony/psr7-pack, +github.com/symfony/rate-limiter, github.com/symfony/recipes,criticality_score:0.587720 github.com/symfony/recipes-contrib,criticality_score:0.467220 +github.com/symfony/redis-messenger, +github.com/symfony/requirements-checker, +github.com/symfony/rocket-chat-notifier, github.com/symfony/routing,criticality_score:0.606660 +github.com/symfony/runtime, github.com/symfony/security,criticality_score:0.644040 github.com/symfony/security-acl,criticality_score:0.507720 github.com/symfony/security-bundle,criticality_score:0.600020 @@ -1094618,16 +1114256,28 @@ github.com/symfony/security-core,criticality_score:0.613820 github.com/symfony/security-csrf,criticality_score:0.381330 github.com/symfony/security-guard,criticality_score:0.506000 github.com/symfony/security-http,criticality_score:0.587370 +github.com/symfony/semaphore, +github.com/symfony/sendgrid-mailer, +github.com/symfony/sendinblue-mailer, +github.com/symfony/sendinblue-notifier, github.com/symfony/serializer,criticality_score:0.647650 github.com/symfony/serializer-pack, github.com/symfony/service-contracts,criticality_score:0.419730 +github.com/symfony/sinch-notifier, github.com/symfony/skeleton,criticality_score:0.461040 +github.com/symfony/slack-notifier, +github.com/symfony/smsapi-notifier, +github.com/symfony/spot-hit-notifier, github.com/symfony/stimulus-bridge,num_dependents_deps.dev:0 github.com/symfony/stopwatch,criticality_score:0.598720 github.com/symfony/string,criticality_score:0.450420 +github.com/symfony/swiftmailer-bridge, github.com/symfony/swiftmailer-bundle,criticality_score:0.533830 github.com/symfony/symfony,criticality_score:0.938610 github.com/symfony/symfony-docs,criticality_score:0.673790 +github.com/symfony/symfony-installer, +github.com/symfony/symfony-standard, +github.com/symfony/telegram-notifier, github.com/symfony/templating,criticality_score:0.542940 github.com/symfony/test-pack,criticality_score:0.309810 github.com/symfony/thanks,criticality_score:0.411050 @@ -1094636,6 +1114286,15 @@ github.com/symfony/translation-contracts,criticality_score:0.397170 github.com/symfony/twig-bridge,criticality_score:0.591550 github.com/symfony/twig-bundle,criticality_score:0.581310 github.com/symfony/twig-pack, +github.com/symfony/twilio-notifier, +github.com/symfony/uid, +github.com/symfony/ux-chartjs, +github.com/symfony/ux-cropperjs, +github.com/symfony/ux-dropzone, +github.com/symfony/ux-lazy-image, +github.com/symfony/ux-swup, +github.com/symfony/ux-turbo, +github.com/symfony/ux-turbo-mercure, github.com/symfony/validator,criticality_score:0.643910 github.com/symfony/var-dumper,criticality_score:0.609980 github.com/symfony/var-exporter,criticality_score:0.469630 @@ -1094644,11 +1114303,18 @@ github.com/symfony/web-profiler-bundle,criticality_score:0.633440 github.com/symfony/web-server-bundle,criticality_score:0.507640 github.com/symfony/webpack-encore,"criticality_score:0.612380,num_dependents_deps.dev:40" github.com/symfony/webpack-encore-bundle,criticality_score:0.471590 +github.com/symfony/webpack-encore-pack, +github.com/symfony/website-skeleton, github.com/symfony/workflow,criticality_score:0.487960 github.com/symfony/yaml,criticality_score:0.608480 +github.com/symfony/zulip-notifier, github.com/symfony2admingenerator/AdmingeneratorGeneratorBundle,criticality_score:0.326830 github.com/symfonycordova/golang-biz,num_dependents_deps.dev:0 +github.com/symfonycorp/connect, +github.com/symfonycorp/connect-bundle, github.com/symfonycorp/croncape,num_dependents_deps.dev:0 +github.com/symfonycorp/insight, +github.com/symfonycorp/security-checker-action, github.com/symi/simple-dynamic-dns-client,num_dependents_deps.dev:0 github.com/symi/trello-objects,num_dependents_deps.dev:0 github.com/symisc/unqlite,criticality_score:0.306420 @@ -1094688,6 +1114354,7 @@ github.com/symopsio/sym-awslambda-py, github.com/symopsio/types,num_dependents_deps.dev:0 github.com/sympathize123/opensource-lab-7,num_dependents_deps.dev:0 github.com/sympe/vue-multiple-sortable,num_dependents_deps.dev:0 +github.com/symphco/raven-pr-reviewer, github.com/symphonycms/symphonycms,criticality_score:0.350240 github.com/symphonyfintech/xts-interactive-nodeJS-api-v2, github.com/symphonyfintech/xts-marketdata-nodeJS-api-client-V2, @@ -1094712,6 +1114379,7 @@ github.com/symphonyrm/lookml-gen, github.com/sympletech/just-build-it, github.com/symplify/coding-standard,criticality_score:0.355900 github.com/symplify/easy-coding-standard,criticality_score:0.440650 +github.com/symplify/monorepo-split-github-action, github.com/symplify/symplify,criticality_score:0.694390 github.com/symplr-oss/ngx-material-keyboard-src,num_dependents_deps.dev:0 github.com/sympmarc/spservices,num_dependents_deps.dev:0 @@ -1094861,6 +1114529,7 @@ github.com/syncfuture/scdp,num_dependents_deps.dev:0 github.com/syncfuture/spiders,num_dependents_deps.dev:0 github.com/synchrolog/synchrolog-django, github.com/synchrolog/synchrolog-node,num_dependents_deps.dev:0 +github.com/synchronal/hex-publish-action, github.com/synchroniseiorepo/node.js,num_dependents_deps.dev:0 github.com/synchronized/goworld,num_dependents_deps.dev:0 github.com/synchronizeds/test,num_dependents_deps.dev:0 @@ -1094952,6 +1114621,7 @@ github.com/synder/react-native-httpd,num_dependents_deps.dev:0 github.com/synder/rmq,num_dependents_deps.dev:0 github.com/synder/xpress,num_dependents_deps.dev:0 github.com/syndesis/fsheiness,num_dependents_deps.dev:0 +github.com/syndesisio/backport-action, github.com/syndesisio/connectors,num_dependents_deps.dev:6 github.com/syndesisio/dummy-maven-project,num_dependents_deps.dev:0 github.com/syndesisio/syndesis,"criticality_score:0.609130,num_dependents_deps.dev:2334" @@ -1095002,6 +1114672,10 @@ github.com/synergence/negative-index,num_dependents_deps.dev:0 github.com/synergence/part-cache,num_dependents_deps.dev:0 github.com/synergence/rbxts-chat-service, github.com/synergixe/vue-commentbox,num_dependents_deps.dev:0 +github.com/synergy-au/bicep-lint-action, +github.com/synergy-au/download-workflow-artifacts-action, +github.com/synergy-au/pmd-analyser-action, +github.com/synergy-au/rerun-workflows-action, github.com/synergy2411/cap-node-demo,num_dependents_deps.dev:0 github.com/synergycp/angular-mergely, github.com/synergytaki/simple-react-es6,num_dependents_deps.dev:0 @@ -1095086,7 +1114760,12 @@ github.com/synodriver/scrapy-redis-statictyped, github.com/synopse/mORMot,criticality_score:0.512370 github.com/synopsys-SIG/tslint-angular-security,num_dependents_deps.dev:0 github.com/synopsys-sig-community/BlackDuckUtils, +github.com/synopsys-sig/coverity-report-output-v7-json, +github.com/synopsys-sig/detect-action, +github.com/synopsys-sig/intelligent-security-scan, +github.com/synopsys-sig/synopsys-action, github.com/synox/youtube-dl-interactive,num_dependents_deps.dev:0 +github.com/synpse-hq/action, github.com/synqs/lightlyse, github.com/synqs/pennylane-ls, github.com/synrc/n2o,criticality_score:0.451240 @@ -1095105,10 +1114784,12 @@ github.com/syntagma/versions,num_dependents_deps.dev:0 github.com/syntagmatic/parallel-coordinates,"criticality_score:0.303830,num_dependents_deps.dev:0" github.com/syntagmatic/underscore.math,num_dependents_deps.dev:0 github.com/syntaqx/collect,num_dependents_deps.dev:0 +github.com/syntaqx/compass-swagger-upload, github.com/syntaqx/funcs,num_dependents_deps.dev:0 github.com/syntaqx/go-metrics-datadog,num_dependents_deps.dev:0 github.com/syntaqx/pass-meter, github.com/syntaqx/serve,num_dependents_deps.dev:0 +github.com/syntaqx/setup-kustomize, github.com/syntasso/appstack-example-app,num_dependents_deps.dev:0 github.com/syntax-coder/ffd-parser, github.com/syntax-corp/discordpy-replit-heroku, @@ -1095291,7 +1114972,9 @@ github.com/synthego-open/ice, github.com/synthesio/sphinxcontrib-lastupdate, github.com/synthesist/panoptimon,num_dependents_deps.dev:0 github.com/synthesized-io/fairlens, +github.com/synthesized-io/synthesized-action, github.com/synthesized-io/synthesized-insight, +github.com/synthesized-io/tdk-gha, github.com/synthet1c/hello-what,num_dependents_deps.dev:0 github.com/synthet1c/webpack-ultimate-sftp,num_dependents_deps.dev:0 github.com/synthetic-datasets/synthetic-datasets, @@ -1095420,6 +1115103,7 @@ github.com/syoshin/lua,num_dependents_deps.dev:0 github.com/syoshin/text,num_dependents_deps.dev:0 github.com/syossan27/go-bindata,num_dependents_deps.dev:0 github.com/syossan27/ittan,num_dependents_deps.dev:0 +github.com/syossan27/purge-github-readme-image, github.com/syotams/laravel-elixir-css-rtl,num_dependents_deps.dev:0 github.com/syotams/laravel-elixir-ng-templates,num_dependents_deps.dev:0 github.com/syou6162/mackerel-plugin-aws-batch,num_dependents_deps.dev:0 @@ -1095436,6 +1115120,8 @@ github.com/syoyo/tinyobjloader,Google github.com/sypbiz/insomnia-plugin-encode-uri,num_dependents_deps.dev:0 github.com/sypexgeo/sypexgeo4j,num_dependents_deps.dev:0 github.com/syphar/heater,num_dependents_deps.dev:0 +github.com/syphar/restore-pip-download-cache, +github.com/syphar/restore-virtualenv, github.com/syphr42/liblametrictime-java,num_dependents_deps.dev:0 github.com/syphr42/libmythtv-java,num_dependents_deps.dev:8 github.com/syphr42/libsleepiq-java,num_dependents_deps.dev:0 @@ -1095521,6 +1115207,7 @@ github.com/sys-liqian/blockchain,num_dependents_deps.dev:0 github.com/sys113/negar, github.com/sys113/tekrar, github.com/sys13/neo4j-graphql-js,num_dependents_deps.dev:0 +github.com/sys3/mkdocs-s3-publish-action, github.com/sysPass/syspass-api-client-python, github.com/sysadminmike/couch-statsd-backend,num_dependents_deps.dev:0 github.com/sysalto/ReactiveReports,num_dependents_deps.dev:0 @@ -1095564,11 +1115251,15 @@ github.com/syscoin/syscoinjs-lib,num_dependents_deps.dev:0 github.com/syscoin/syscointx-js,num_dependents_deps.dev:0 github.com/syscoin/web3.js,num_dependents_deps.dev:0 github.com/syscomet/sks_spider,num_dependents_deps.dev:0 +github.com/sysdiglabs/benchmark-dockerfile, github.com/sysdiglabs/cloudformation-resource-providers, github.com/sysdiglabs/custom-metrics-examples,num_dependents_deps.dev:0 github.com/sysdiglabs/ekscloudwatch,num_dependents_deps.dev:0 +github.com/sysdiglabs/exporter-builder, github.com/sysdiglabs/harbor-scanner-sysdig-secure,num_dependents_deps.dev:0 +github.com/sysdiglabs/k8s-security-configwatch, github.com/sysdiglabs/kube-psp-advisor,num_dependents_deps.dev:0 +github.com/sysdiglabs/scan-action, github.com/sysdiglabs/stackdriver-webhook-bridge,num_dependents_deps.dev:0 github.com/sysdotini/erela.js-spotify,num_dependents_deps.dev:0 github.com/sysdotini/eslint-config,num_dependents_deps.dev:0 @@ -1096116,6 +1115807,13 @@ github.com/szemlyanoy/golang,num_dependents_deps.dev:0 github.com/szenadam/npm-publish-test,num_dependents_deps.dev:0 github.com/szenadam/scorm-api-wrapper, github.com/szenasimartin/prefelem,num_dependents_deps.dev:0 +github.com/szenius/notion-burndown, +github.com/szenius/notion-update-page, +github.com/szenius/set-timezone, +github.com/szepeviktor/phive, +github.com/szepeviktor/phive-install, +github.com/szepeviktor/phpcs-ruleset-validator, +github.com/szepeviktor/svg-validator, github.com/szeproductions/reform-sze,num_dependents_deps.dev:0 github.com/szerintedmi/RadarChart,num_dependents_deps.dev:0 github.com/szerxiao/contrib,num_dependents_deps.dev:0 @@ -1096142,6 +1115840,7 @@ github.com/szhsin/react-menu,num_dependents_deps.dev:0 github.com/szhsin/react-transition-state,num_dependents_deps.dev:0 github.com/szhu/hashcontrol,num_dependents_deps.dev:0 github.com/szieke/ScriptCommunicator_serial-terminal,criticality_score:0.389980 +github.com/szihai/vela-git-action, github.com/szikszail/cross-process-lock,num_dependents_deps.dev:0 github.com/szikszail/date-x,num_dependents_deps.dev:0 github.com/szikszail/diffter,num_dependents_deps.dev:0 @@ -1096386,6 +1116085,7 @@ github.com/szyhf/go-datastructures,num_dependents_deps.dev:0 github.com/szyhf/go-excel,num_dependents_deps.dev:0 github.com/szyhf/go-valuate,num_dependents_deps.dev:0 github.com/szykra/Equalizer,num_dependents_deps.dev:0 +github.com/szymansd/auto-release-notes, github.com/szymansd/utm-params,num_dependents_deps.dev:0 github.com/szymciem8/OpenLeap, github.com/szymex73/thmcli, @@ -1096432,8 +1116132,10 @@ github.com/szzyiit/orange3-shangtang, github.com/t--takai/renovate-config,num_dependents_deps.dev:0 github.com/t-8ch/pandora-cli, github.com/t-8ch/senseair-rs,num_dependents_deps.dev:0 +github.com/t-900-a/action-push-rss3, github.com/t-900-a/fider-monero-bot,num_dependents_deps.dev:0 github.com/t-akzw/sample-albatross-webapps,num_dependents_deps.dev:0 +github.com/t-amberwang/smartdeploy, github.com/t-ashula/ghq,num_dependents_deps.dev:0 github.com/t-ashula/gofeed,num_dependents_deps.dev:0 github.com/t-benze/redux-local-state,num_dependents_deps.dev:0 @@ -1096441,6 +1116143,7 @@ github.com/t-bfame/diago,num_dependents_deps.dev:0 github.com/t-bfame/diago-worker,num_dependents_deps.dev:0 github.com/t-bittarn/elasticmock, github.com/t-bonatti/license-manager,num_dependents_deps.dev:0 +github.com/t-botz/aws-secrets-manager-read-action, github.com/t-c33/smicro,num_dependents_deps.dev:0 github.com/t-ceccarini/deep-b-spline-approximation, github.com/t-chatoyan/vue-excel-xlsx,num_dependents_deps.dev:0 @@ -1096665,6 +1116368,7 @@ github.com/t1m0thy-michael/u,num_dependents_deps.dev:4 github.com/t1m0thy-michael/util,num_dependents_deps.dev:2 github.com/t1m0thyj/WinDynamicDesktop,criticality_score:0.378020 github.com/t1m0thyj/hyper-save-windowstate,num_dependents_deps.dev:0 +github.com/t1m0thyj/unlock-keyring, github.com/t1m9mofficial/fullstack,num_dependents_deps.dev:0 github.com/t1mmen/gatsby-source-asknicely,num_dependents_deps.dev:0 github.com/t1msh/node-oauth20-provider, @@ -1097126,6 +1116830,8 @@ github.com/tabetalt/kit,num_dependents_deps.dev:0 github.com/tabeth/github-compare,num_dependents_deps.dev:0 github.com/tabeth/nodexhr,num_dependents_deps.dev:0 github.com/tabhero/svelte-components,num_dependents_deps.dev:0 +github.com/tabhub/rssify, +github.com/tabhub/tabhub-card-action, github.com/tabianco/lint-configs,num_dependents_deps.dev:0 github.com/tabianco/preloads-generator,num_dependents_deps.dev:0 github.com/tabianco/unpkg-uri,num_dependents_deps.dev:0 @@ -1097236,6 +1116942,7 @@ github.com/tabman83/github-archive,num_dependents_deps.dev:0 github.com/tabman83/leap-card,num_dependents_deps.dev:0 github.com/tabman83/nino-auth,num_dependents_deps.dev:0 github.com/tabo/cherrypy-dynpool, +github.com/tabo/dynpool, github.com/taboca/cli-directory-tree-ascii,num_dependents_deps.dev:0 github.com/tabone/binos,num_dependents_deps.dev:0 github.com/tabone/dvc,num_dependents_deps.dev:0 @@ -1097346,7 +1117053,9 @@ github.com/tacheshun/ejobsclone,num_dependents_deps.dev:0 github.com/tachesimazzoca/go-httppack,num_dependents_deps.dev:0 github.com/tachesimazzoca/golang-examples,num_dependents_deps.dev:0 github.com/tachi-hi/py2shpss, +github.com/tachiba/shopify-theme-kit-action, github.com/tachibana-shin/workercom,num_dependents_deps.dev:0 +github.com/tachiyomiorg/issue-moderator-action, github.com/tachiyomiorg/tachiyomi,criticality_score:0.513660 github.com/tachiyomiorg/tachiyomi-1.x,num_dependents_deps.dev:0 github.com/tachiyomiorg/tachiyomi-extensions,criticality_score:0.471290 @@ -1097788,6 +1117497,7 @@ github.com/taessina/gatsby-source-firestore,num_dependents_deps.dev:0 github.com/taessina/react-native-paypal-wrapper,num_dependents_deps.dev:0 github.com/taesunl/npm-modules,num_dependents_deps.dev:0 github.com/taesup/bitandbang,num_dependents_deps.dev:0 +github.com/taetaetae/helloWorld-action, github.com/taeuk-gang/chartjs-plugin-streaming,num_dependents_deps.dev:0 github.com/taeuk-gang/json-editor,num_dependents_deps.dev:0 github.com/taeuk-gang/pipeline-graph-webcomponent,num_dependents_deps.dev:0 @@ -1097926,6 +1117636,7 @@ github.com/tagty/set-param,num_dependents_deps.dev:0 github.com/tagua-vm/llvm,num_dependents_deps.dev:0 github.com/tagua-vm/parser,num_dependents_deps.dev:0 github.com/tagus/crypt,num_dependents_deps.dev:0 +github.com/tagus/git-deploy, github.com/tagview/gulp-process-templates,num_dependents_deps.dev:0 github.com/tagview/mail-madmimi,num_dependents_deps.dev:0 github.com/tagyoureit/InfluxDB_WDC,num_dependents_deps.dev:0 @@ -1098022,7 +1117733,9 @@ github.com/taichi-master/fetch-data,num_dependents_deps.dev:0 github.com/taichi-master/multi_array,num_dependents_deps.dev:0 github.com/taichi-t/url-generator,num_dependents_deps.dev:0 github.com/taichi-t/weather-react-icons,num_dependents_deps.dev:0 +github.com/taichi/actions-cfn-diff, github.com/taichi/actions-package-update,num_dependents_deps.dev:0 +github.com/taichi/approved-event-action, github.com/taichi/ci-yarn-upgrade,num_dependents_deps.dev:0 github.com/taichi/gige,num_dependents_deps.dev:0 github.com/taichi/go-bindata,num_dependents_deps.dev:0 @@ -1098043,6 +1117756,8 @@ github.com/taicho/dat.gui.midi, github.com/taicho/liquidity,num_dependents_deps.dev:0 github.com/taicho/postgres-to-mongo,num_dependents_deps.dev:0 github.com/taicho/typeworx,num_dependents_deps.dev:0 +github.com/taichunmin/github-actions-ansible-vault, +github.com/taichunmin/github-actions-nanopb, github.com/taidengyoutiao/6ui,num_dependents_deps.dev:0 github.com/taidomi-sapi-de-cv/domitai-ecommerce,num_dependents_deps.dev:0 github.com/taidomi-sapi-de-cv/domitai-sdk, @@ -1098117,9 +1117832,11 @@ github.com/taik0/rexray,num_dependents_deps.dev:0 github.com/taiki-e/alloc-shim,num_dependents_deps.dev:0 github.com/taiki-e/assert-unmoved,num_dependents_deps.dev:0 github.com/taiki-e/auto_enums,num_dependents_deps.dev:76 +github.com/taiki-e/cache-cargo-install-action, github.com/taiki-e/cargo-hack,num_dependents_deps.dev:0 github.com/taiki-e/cargo-llvm-cov,num_dependents_deps.dev:0 github.com/taiki-e/const_fn,num_dependents_deps.dev:1896 +github.com/taiki-e/create-gh-release-action, github.com/taiki-e/dependabot-config,num_dependents_deps.dev:0 github.com/taiki-e/derive_utils,num_dependents_deps.dev:106 github.com/taiki-e/easy-ext,num_dependents_deps.dev:8 @@ -1098127,14 +1117844,17 @@ github.com/taiki-e/easytime,num_dependents_deps.dev:0 github.com/taiki-e/find-crate,num_dependents_deps.dev:151 github.com/taiki-e/futures-async-stream,num_dependents_deps.dev:5 github.com/taiki-e/futures-enum,num_dependents_deps.dev:16 +github.com/taiki-e/install-action, github.com/taiki-e/io-enum,num_dependents_deps.dev:40 github.com/taiki-e/iter-enum,num_dependents_deps.dev:9 github.com/taiki-e/negative-impl,num_dependents_deps.dev:0 github.com/taiki-e/parse-changelog,num_dependents_deps.dev:0 github.com/taiki-e/pin-project,num_dependents_deps.dev:12737 github.com/taiki-e/pin-project-lite,num_dependents_deps.dev:15217 +github.com/taiki-e/setup-cross-toolchain-action, github.com/taiki-e/syn-mid,"Google,num_dependents_deps.dev:88" github.com/taiki-e/syn-serde,num_dependents_deps.dev:1 +github.com/taiki-e/upload-rust-binary-action, github.com/taiki1288/go-chat,num_dependents_deps.dev:0 github.com/taiki1288/go-linebot,num_dependents_deps.dev:0 github.com/taiki45/bot_nyan,num_dependents_deps.dev:0 @@ -1098151,6 +1117871,7 @@ github.com/taikonauten/linters-typescript,num_dependents_deps.dev:0 github.com/taikonauten/postcss-function-rem,num_dependents_deps.dev:0 github.com/tail-call/generic-methods,num_dependents_deps.dev:0 github.com/tailable/pagination,num_dependents_deps.dev:0 +github.com/tailaiw/mind-your-language-action, github.com/tailflow/laravel-orion,criticality_score:0.349760 github.com/tailflow/laravel-orion-ts,num_dependents_deps.dev:0 github.com/tailhook/aio-routes, @@ -1098205,6 +1117926,8 @@ github.com/tailot/locatelanguage,num_dependents_deps.dev:0 github.com/tailrecio/gopher-tunnels,num_dependents_deps.dev:0 github.com/tailscale/certstore,num_dependents_deps.dev:3 github.com/tailscale/depaware,num_dependents_deps.dev:0 +github.com/tailscale/github-action, +github.com/tailscale/gitops-acl-action, github.com/tailscale/go-mod-archiver,num_dependents_deps.dev:0 github.com/tailscale/goupnp,num_dependents_deps.dev:2 github.com/tailscale/hujson,num_dependents_deps.dev:3 @@ -1098275,6 +1117998,7 @@ github.com/taimos/daemon-maven-plugin,num_dependents_deps.dev:0 github.com/taimos/dvalin,num_dependents_deps.dev:238 github.com/taimos/ec2login,num_dependents_deps.dev:0 github.com/taimos/generator-cloudformation,num_dependents_deps.dev:0 +github.com/taimos/github-action-instana-release, github.com/taimos/lambda-toolbox,num_dependents_deps.dev:0 github.com/taimos/redmine-maven-plugin,num_dependents_deps.dev:0 github.com/taimos/restdoc-cxf,num_dependents_deps.dev:1 @@ -1098388,6 +1118112,7 @@ github.com/taixiongliu/netty-hapi,num_dependents_deps.dev:0 github.com/taixw2/RNSqlite-Table,num_dependents_deps.dev:0 github.com/taixw2/RNSqlite-migrations,num_dependents_deps.dev:0 github.com/taixw2/babel-plugin-react-native-style,num_dependents_deps.dev:0 +github.com/taixw2/deploy-aliyun-oss, github.com/taixw2/dx,num_dependents_deps.dev:0 github.com/taixw2/generator-yos-library,num_dependents_deps.dev:0 github.com/taixw2/making-element-ui-theme,num_dependents_deps.dev:0 @@ -1098437,6 +1118162,7 @@ github.com/tajo/react-movable,"criticality_score:0.326970,num_dependents_deps.de github.com/tajo/react-portal,"criticality_score:0.430010,num_dependents_deps.dev:2676" github.com/tajo/react-range,"criticality_score:0.382040,num_dependents_deps.dev:408" github.com/tajo/react-titled,num_dependents_deps.dev:0 +github.com/tajpouria/action-changed-files, github.com/tajpouria/idborm,num_dependents_deps.dev:0 github.com/tajpouria/microservices-with-node-series,num_dependents_deps.dev:0 github.com/tajpouria/swagger-codegen-alpha, @@ -1098483,6 +1118209,7 @@ github.com/takagiy/repo_cmd,num_dependents_deps.dev:0 github.com/takagiy/strcuta-py, github.com/takagiy/vshock, github.com/takahashim/crowdin2csv,num_dependents_deps.dev:0 +github.com/takahashim/review-pdf-generator-action, github.com/takahashim/textlint-rule-no-doubled-conjunction,num_dependents_deps.dev:0 github.com/takahashim/textlint-rule-no-doubled-conjunctive-particle-ga,num_dependents_deps.dev:0 github.com/takahasi/docker-openrtm-tools, @@ -1098551,6 +1118278,7 @@ github.com/takamoso/postcss-aspect-ratio-polyfill,num_dependents_deps.dev:0 github.com/takamoso/tatami,num_dependents_deps.dev:0 github.com/takamuffin/link-migration, github.com/takana-v/sasawrapper, +github.com/takanabe/github-actions-automate-projects, github.com/takanakahiko/discord-slash-role,num_dependents_deps.dev:0 github.com/takanakahiko/discord-tts,num_dependents_deps.dev:0 github.com/takanakahiko/template-clasp,num_dependents_deps.dev:0 @@ -1098586,6 +1118314,7 @@ github.com/takanoriyanagitani/bytes2hex,num_dependents_deps.dev:0 github.com/takanoriyanagitani/cpmap,num_dependents_deps.dev:0 github.com/takanoriyanagitani/kvif,num_dependents_deps.dev:0 github.com/takanoriyanagitani/uuid2hex,num_dependents_deps.dev:0 +github.com/takanuva15/verify-file-updated, github.com/takaomag/chatora.app_config, github.com/takaomag/chatora.confluent_kafka_ext, github.com/takaomag/chatora.dispatch, @@ -1098637,11 +1118366,14 @@ github.com/takashiro/karuta-node-client,num_dependents_deps.dev:0 github.com/takashiro/karuta-node-core,num_dependents_deps.dev:0 github.com/takashiro/karuta-node-server,num_dependents_deps.dev:0 github.com/takashiro/karuta-protocol,num_dependents_deps.dev:4 +github.com/takashiro/login-wechat-devtools, +github.com/takashiro/publish-wechat-miniprogram, github.com/takashiro/react-linguist,num_dependents_deps.dev:0 github.com/takashiro/sanguosha-ai,num_dependents_deps.dev:0 github.com/takashiro/sanguosha-core,num_dependents_deps.dev:0 github.com/takashiro/sanguosha-pack,num_dependents_deps.dev:0 github.com/takashiro/sanguosha-standard,num_dependents_deps.dev:0 +github.com/takashiro/setup-wechat-devtools, github.com/takashno/lib-java-generate,num_dependents_deps.dev:0 github.com/takashyx/hubot-slack-imakitasangyo,num_dependents_deps.dev:0 github.com/takashyx/hubot-slack-rainfall-alert,num_dependents_deps.dev:0 @@ -1098676,6 +1118408,7 @@ github.com/takayama-lily/onebot,num_dependents_deps.dev:0 github.com/takayama-lily/riichi,num_dependents_deps.dev:0 github.com/takayama-lily/syanten,num_dependents_deps.dev:2 github.com/takayama-shunya/docker_sample,num_dependents_deps.dev:0 +github.com/takayamaki/summarize-workflow-status, github.com/takayoshiotake/bb-http-server_node,num_dependents_deps.dev:0 github.com/takayoshiotake/scpfn.js,num_dependents_deps.dev:0 github.com/takc923/mdns,num_dependents_deps.dev:0 @@ -1098784,6 +1118517,7 @@ github.com/takeqontrol/api, github.com/takerumimata/go_interpreter,num_dependents_deps.dev:0 github.com/takescoop/terraform-cloud-workspace-action,num_dependents_deps.dev:0 github.com/takescoop/terraform-provider-awssso,num_dependents_deps.dev:0 +github.com/takeshape/deploy-to-takeshape, github.com/takeshape/eslint-config-takeshape,num_dependents_deps.dev:0 github.com/takeshape/shape-form,num_dependents_deps.dev:0 github.com/takeshape/vm-nunjucks,num_dependents_deps.dev:4 @@ -1098980,10 +1118714,12 @@ github.com/taktik/ozone-typescript-client,num_dependents_deps.dev:16 github.com/taktik/simple-spreadsheet-reader,num_dependents_deps.dev:0 github.com/taktik/typescript-http-client,num_dependents_deps.dev:38 github.com/taktik/typescript-state-machine,num_dependents_deps.dev:28 +github.com/taktile-org/await-taktile-deployment-action, github.com/taktiljs/bitwig-webpack-plugin,num_dependents_deps.dev:0 github.com/taktiljs/taktil,num_dependents_deps.dev:0 github.com/taktiljs/typed-bitwig-api,num_dependents_deps.dev:0 github.com/taktos/dbflute-hamcrest,num_dependents_deps.dev:0 +github.com/taktos/pr-to-backlog-action, github.com/taktpixel/marblingpy, github.com/taktran/generator-starttter,num_dependents_deps.dev:0 github.com/taktran/joy-joy,num_dependents_deps.dev:0 @@ -1099053,6 +1118789,7 @@ github.com/takumines/gin-jwt-auth,num_dependents_deps.dev:0 github.com/takumines/gin-todo,num_dependents_deps.dev:0 github.com/takumines/go-handson,num_dependents_deps.dev:0 github.com/takumines/go_practice,num_dependents_deps.dev:0 +github.com/takumma/notion-advent-calendar-action, github.com/takuoki/golib,num_dependents_deps.dev:0 github.com/takuoki/gostr,num_dependents_deps.dev:0 github.com/takuoki/gsheets,num_dependents_deps.dev:0 @@ -1099179,6 +1118916,7 @@ github.com/talbiston/jamaddr, github.com/talbiston/jamaddr27, github.com/talboger/fastdist, github.com/talbole/go-boot-camp,num_dependents_deps.dev:0 +github.com/talboren/firebase-action, github.com/talbotp/serverless-apigateway-route-settings,num_dependents_deps.dev:0 github.com/talbright/cobra,num_dependents_deps.dev:0 github.com/talbright/libkv,num_dependents_deps.dev:0 @@ -1099186,6 +1118924,7 @@ github.com/talch218/lu1cm0xx,num_dependents_deps.dev:0 github.com/taldor-ltd/angular-file-viewer,num_dependents_deps.dev:0 github.com/taldor-ltd/angular-grid-cell,num_dependents_deps.dev:0 github.com/tale-toul/testero,num_dependents_deps.dev:0 +github.com/tale/kubectl-action, github.com/talebDev/justTest,num_dependents_deps.dev:0 github.com/talebook/Baidubaike, github.com/taleco22/create-react-app,num_dependents_deps.dev:0 @@ -1099208,6 +1118947,7 @@ github.com/talenhao/log4p, github.com/talenhao/zabbix-app-ports-discovery, github.com/talenhao/zabbix-weixin-alert, github.com/talensjr/gatsby-theme-tailwindcss,num_dependents_deps.dev:0 +github.com/talent-garden/mount-lambda-layer, github.com/talent-nansy/goreporter,num_dependents_deps.dev:0 github.com/talentAN/md2md,num_dependents_deps.dev:0 github.com/talentAN/mk2mk,num_dependents_deps.dev:0 @@ -1099296,6 +1119036,7 @@ github.com/talgautb/typographic-currency-db,num_dependents_deps.dev:52 github.com/talha-asad/g-spreadsheet,num_dependents_deps.dev:0 github.com/talha-asad/mongoose-url-slugs, github.com/talha-asad/streaming-s3,num_dependents_deps.dev:0 +github.com/talha-irshad-kodexo/ios-build-action, github.com/talha131/asana-to-github, github.com/talhaKaratas/simple-auth,num_dependents_deps.dev:0 github.com/talhaamjadx/vue-quick-chat,num_dependents_deps.dev:0 @@ -1099376,6 +1119117,7 @@ github.com/talkingtab/basic-react-router,num_dependents_deps.dev:0 github.com/talkingtoaj/homing_search, github.com/talkingtontech/wp-plugin-config,num_dependents_deps.dev:0 github.com/talkingtontech/wp-theme-config,num_dependents_deps.dev:0 +github.com/talkiq/confluence-wiki-sync, github.com/talkiq/gcloud-aio, github.com/talkiq/pystun3, github.com/talkiq/yaaredis, @@ -1099470,6 +1119212,7 @@ github.com/tallforasmurf/byteplay, github.com/tallgreentree/omniauth-37signals,num_dependents_deps.dev:0 github.com/tallhamer/pymp, github.com/talliujobs/markdown-it-editor,num_dependents_deps.dev:0 +github.com/tallmanbrew/verify-secrets, github.com/tallmancode/tmc-snitch,num_dependents_deps.dev:0 github.com/tallnerds/howfast,num_dependents_deps.dev:0 github.com/tallon1252/angled-border-edges,num_dependents_deps.dev:0 @@ -1099835,6 +1119578,7 @@ github.com/tamasd/font-awesome-webpack2,num_dependents_deps.dev:0 github.com/tamasd/simplesite,num_dependents_deps.dev:0 github.com/tamasd/xsddict,num_dependents_deps.dev:0 github.com/tamasfe/aide,num_dependents_deps.dev:0 +github.com/tamasfe/auto-tag, github.com/tamasfe/lerna-watcher,num_dependents_deps.dev:0 github.com/tamasfe/pretty-lint,num_dependents_deps.dev:1 github.com/tamasfe/taplo,num_dependents_deps.dev:0 @@ -1099893,6 +1119637,7 @@ github.com/tamccall/mcd-state-client, github.com/tamccall/moconvey,num_dependents_deps.dev:0 github.com/tamcgoey/caffeinate,num_dependents_deps.dev:0 github.com/tamck20/lodown,num_dependents_deps.dev:0 +github.com/tamcore/k3s-action, github.com/tamediadigital/react-openapi-renderer, github.com/tameemsafi/typewriterjs,"criticality_score:0.342520,num_dependents_deps.dev:22" github.com/tameemsafi/uk-tax-calculator,num_dependents_deps.dev:0 @@ -1099981,8 +1119726,10 @@ github.com/tamino-martinius/node-pg-migrator,num_dependents_deps.dev:0 github.com/tamino-martinius/node-pg-model,num_dependents_deps.dev:0 github.com/tamino-martinius/node-ts-dedent,num_dependents_deps.dev:4797 github.com/taminomara/sphinx-a4doc, +github.com/taminomara/sphinx-problem-matcher, github.com/taminomara/yuio, github.com/tamirarnesty/cli,num_dependents_deps.dev:0 +github.com/tamirkash/image-manifest-resolver, github.com/tamirkifle/number-to-amharic-text,num_dependents_deps.dev:0 github.com/tamirla/redux-saga-http-requests,num_dependents_deps.dev:0 github.com/tamirrab/react-native-device-vibration,num_dependents_deps.dev:0 @@ -1100117,6 +1119864,7 @@ github.com/tanaikech/node-gdoctableapp,num_dependents_deps.dev:0 github.com/tanaikech/node-getfilelist,num_dependents_deps.dev:0 github.com/tanaikech/souwapy, github.com/tanajivchavan/python-flask, +github.com/tanaka-takayoshi/nuget-publish-to-github-packages-action, github.com/tanaka-takurou/serverless-vpc-page-go,num_dependents_deps.dev:0 github.com/tanaka2st/node-red-contrib-this-is-tanaka,num_dependents_deps.dev:0 github.com/tanakahisateru/js-markdown-extra,num_dependents_deps.dev:10 @@ -1100141,6 +1119889,7 @@ github.com/tananaev/fmelib,num_dependents_deps.dev:0 github.com/tananaev/json-patch,num_dependents_deps.dev:0 github.com/tanansatpal/general-oauth2,num_dependents_deps.dev:0 github.com/tanansatpal/ngx-mat-intl-tel-input,num_dependents_deps.dev:2 +github.com/tanaphonble/tag-splitter-action, github.com/tanapoln/ratchet,num_dependents_deps.dev:0 github.com/tanarat-doco/vue-input-only-number-ie, github.com/tanatipwa/words,num_dependents_deps.dev:0 @@ -1100693,6 +1120442,7 @@ github.com/tangyouhua/tyh-weapp-sdk,num_dependents_deps.dev:0 github.com/tangyouyou/counter,num_dependents_deps.dev:0 github.com/tangyouyou/kreed,num_dependents_deps.dev:0 github.com/tangyouyou/leetcode-template,num_dependents_deps.dev:0 +github.com/tangyuewei/jekyll-auto-deploy, github.com/tangyuhui/t-swagger-generate,num_dependents_deps.dev:0 github.com/tangyuxian/tangyuxian-js-socket,num_dependents_deps.dev:0 github.com/tangzhen/amylase,num_dependents_deps.dev:0 @@ -1100845,6 +1120595,7 @@ github.com/tanliyon/gym-xiangqi, github.com/tanlm1996/react-native-plivo, github.com/tanlull/pymessenger4, github.com/tanmad21/cs360,num_dependents_deps.dev:0 +github.com/tanmancan/action-setup-ssh-agent-key, github.com/tanmancan/react-json-print,num_dependents_deps.dev:0 github.com/tanmancan/vue-json-print,num_dependents_deps.dev:0 github.com/tanmay-joshi/fabric.js,num_dependents_deps.dev:0 @@ -1100860,6 +1120611,8 @@ github.com/tanmay76/display,num_dependents_deps.dev:0 github.com/tanmay76/mongodbhandler,num_dependents_deps.dev:0 github.com/tanmayChakrawarty/templateGenerator, github.com/tanmayabiswalmuvi/ckeditor5-build-classic,num_dependents_deps.dev:0 +github.com/tanmayairbase/tscheck-action, +github.com/tanmayairbase/tscheck-action-shell, github.com/tanmayawasekar/demo-npm-module-tanmay,num_dependents_deps.dev:0 github.com/tanmaybhatt/react-native-app-signature-helper,num_dependents_deps.dev:0 github.com/tanmaybhatt/react-native-hint-request-picker,num_dependents_deps.dev:0 @@ -1100867,10 +1120620,12 @@ github.com/tanmaybhatt/reactit,num_dependents_deps.dev:0 github.com/tanmayhinge/honeyscript, github.com/tanmaylaud/react-typewriter-effect,num_dependents_deps.dev:0 github.com/tanmaylaud/react-typewriting-effect, +github.com/tanmaymunjal/anchor-ci, github.com/tanmaypandey7/gsheetsplus, github.com/tanmayvij/mongo-uri,num_dependents_deps.dev:0 github.com/tanmayvij/rest-boilerplate-cli,num_dependents_deps.dev:0 github.com/tanmen/disassemble-package,num_dependents_deps.dev:0 +github.com/tanmen/jest-reporter, github.com/tanmen/jetbrains-yarn, github.com/tanmen/openapi-automatons,num_dependents_deps.dev:2 github.com/tanmen/react-actors,num_dependents_deps.dev:0 @@ -1100979,6 +1120734,7 @@ github.com/tannvdts/meditek_react_components,num_dependents_deps.dev:0 github.com/tannvdts/universal_library,num_dependents_deps.dev:0 github.com/tannvdts/wex-nz,num_dependents_deps.dev:0 github.com/tano/gitlab-projects-commander,num_dependents_deps.dev:0 +github.com/tanoconsulting/euts, github.com/tanohzana/bitandbang,num_dependents_deps.dev:0 github.com/tanohzana/missing-packages,num_dependents_deps.dev:0 github.com/tanohzana/reacli,num_dependents_deps.dev:0 @@ -1101093,8 +1120849,10 @@ github.com/tanvir0604/vue-dropdown-datepicker,num_dependents_deps.dev:0 github.com/tanvir23/randnum,num_dependents_deps.dev:0 github.com/tanvirastogi08/shadowwizard,num_dependents_deps.dev:0 github.com/tanvirfahimbd/go_world,num_dependents_deps.dev:0 +github.com/tanvirhossain37/podcast-generator, github.com/tanvirtin/inter-cluster-cache,num_dependents_deps.dev:0 github.com/tanvirtin/tinexplorer,num_dependents_deps.dev:0 +github.com/tanwanimohit/deploy-react-to-ghpages, github.com/tanwarat-nat/bookings,num_dependents_deps.dev:0 github.com/tanwarat-nat/goworkspace,num_dependents_deps.dev:0 github.com/tanwarat-nat/quote,num_dependents_deps.dev:0 @@ -1101106,6 +1120864,8 @@ github.com/tanxinyue/isin_multipolygon, github.com/tanxinyue/multable, github.com/tany1234/python-lambda, github.com/tany2-apt/quiz,num_dependents_deps.dev:0 +github.com/tanyagray/action-upload-release-asset, +github.com/tanyagray/create-json-string, github.com/tanyagray/reactive-user-media,num_dependents_deps.dev:0 github.com/tanyagreen/adminlte-2-react,num_dependents_deps.dev:0 github.com/tanyaisinmybed/effector-undo,num_dependents_deps.dev:0 @@ -1101179,6 +1120939,7 @@ github.com/taodidi/koa-validators,num_dependents_deps.dev:0 github.com/taodong/cloud-maven-plugin,num_dependents_deps.dev:0 github.com/taodong/ng-maven-plugin,num_dependents_deps.dev:0 github.com/taodong/paramsuits, +github.com/taodongl-citrix/test-action, github.com/taoeer/spa-server,num_dependents_deps.dev:0 github.com/taoeffect/vue-script2,num_dependents_deps.dev:12 github.com/taoey/iris-cli,num_dependents_deps.dev:0 @@ -1101284,6 +1121045,8 @@ github.com/taoszu/yaxis-transformer,num_dependents_deps.dev:0 github.com/taoszu/yaxisTransformer,num_dependents_deps.dev:0 github.com/taotamat/medizum, github.com/taotao1428/electron-requester,num_dependents_deps.dev:0 +github.com/taotao2345/aws-lambda-publishlayer, +github.com/taotao2345/aws-lambda-updatecode, github.com/taotao2tingbao/gorm-logrus,num_dependents_deps.dev:0 github.com/taotao54321/fcdstools, github.com/taotaobujue/monkeyking,num_dependents_deps.dev:0 @@ -1101572,6 +1121335,7 @@ github.com/tapjs/signal-exit,num_dependents_deps.dev:500628 github.com/tapjs/spawn-wrap,num_dependents_deps.dev:0 github.com/tapjs/stack-utils,num_dependents_deps.dev:55062 github.com/tapjs/t-up, +github.com/tapjs/tap-finished, github.com/tapjs/tap-mocha-reporter,num_dependents_deps.dev:0 github.com/tapjs/tap-parser,num_dependents_deps.dev:2114 github.com/tapjs/tap-yaml,num_dependents_deps.dev:2326 @@ -1101635,6 +1121399,7 @@ github.com/taptap/go-apollo,num_dependents_deps.dev:0 github.com/taptapship/wiredep,"criticality_score:0.366690,num_dependents_deps.dev:138" github.com/taptapship/wiredep-cli,num_dependents_deps.dev:224 github.com/taptaptech/mongoose-audit,num_dependents_deps.dev:0 +github.com/tapthaker/actions-ocaml, github.com/taptrust/auth,num_dependents_deps.dev:0 github.com/tapvanvn/go-chain-wrapper,num_dependents_deps.dev:0 github.com/tapvanvn/go-dashboard,num_dependents_deps.dev:0 @@ -1101679,6 +1121444,7 @@ github.com/tarakanbg/slovom,num_dependents_deps.dev:0 github.com/tarakanbg/vatbook,num_dependents_deps.dev:0 github.com/tarakanbg/vatsim_metar,num_dependents_deps.dev:0 github.com/tarakanbg/vatsim_online,num_dependents_deps.dev:0 +github.com/tarakaprabhuchinta/github-merged-branch-remover, github.com/taraktikos/go-service,num_dependents_deps.dev:0 github.com/taramouse/reusable-vue-components,num_dependents_deps.dev:0 github.com/tarampampam/arduino-deps-installer,num_dependents_deps.dev:0 @@ -1101703,6 +1121469,7 @@ github.com/tarantool/go-prompt,num_dependents_deps.dev:0 github.com/tarantool/lua-bundler-webpack-plugin,num_dependents_deps.dev:0 github.com/tarantool/mkrepo, github.com/tarantool/node-tarantool-driver, +github.com/tarantool/setup-tarantool, github.com/tarantool/tarantool,criticality_score:0.685410 github.com/tarantool/tarantool-java,num_dependents_deps.dev:0 github.com/tarantool/tarantool-operator,num_dependents_deps.dev:0 @@ -1101724,6 +1121491,7 @@ github.com/tarao1006/pyheatintegration, github.com/tarapon/njk-cli,num_dependents_deps.dev:0 github.com/tarappo/apple_certs_cleaner,num_dependents_deps.dev:0 github.com/tarappo/apple_certs_info,num_dependents_deps.dev:0 +github.com/tarappo/ios-certs-file-checker, github.com/tarappo/mac_ios_info,num_dependents_deps.dev:0 github.com/taras-zak/algorithms,num_dependents_deps.dev:0 github.com/taras/broccoli-directory,num_dependents_deps.dev:0 @@ -1101764,6 +1121532,7 @@ github.com/tarasyarema/orientations, github.com/tarathep/pdfmake-support-th,num_dependents_deps.dev:0 github.com/tarathep/robot-kafka-library, github.com/tarathep/robot-mongodb-library, +github.com/tarathep/robotframework-github-action, github.com/taratukhin/examplesliceofchannels,num_dependents_deps.dev:0 github.com/taravancil/shroud,num_dependents_deps.dev:0 github.com/taravancil/shroud-cli,num_dependents_deps.dev:0 @@ -1101943,6 +1121712,8 @@ github.com/tari-project/randomx-rs,num_dependents_deps.dev:3 github.com/tari-project/tari,num_dependents_deps.dev:77 github.com/tari404/3d-earth,num_dependents_deps.dev:0 github.com/tarick/tscheduler,num_dependents_deps.dev:0 +github.com/tarides/changelog-check-action, +github.com/tarides/pr-number-action, github.com/tarienna/ng-tri-state-checkbox,num_dependents_deps.dev:0 github.com/tarikcaliskan/react-beautiful-tree,num_dependents_deps.dev:0 github.com/tarikcurto/node-terminal,num_dependents_deps.dev:0 @@ -1101958,6 +1121729,7 @@ github.com/tarikjabiri/dxf,num_dependents_deps.dev:0 github.com/tariknz/md-dialogs, github.com/tariks/peakachu, github.com/tariksahni/binod-ify-me,num_dependents_deps.dev:0 +github.com/tariksahni/coding-stats-wakatime, github.com/tariky/mighty-pdf-parser,num_dependents_deps.dev:0 github.com/tarioch/bapi, github.com/tarioch/beancounttools, @@ -1102061,6 +1121833,7 @@ github.com/taronpa/comppass,num_dependents_deps.dev:0 github.com/taronpa/coroutinify,num_dependents_deps.dev:0 github.com/taronpa/pret,num_dependents_deps.dev:0 github.com/tarosky/bson-long-quaternary-converter,num_dependents_deps.dev:0 +github.com/tarosky/farmhand-wp-action, github.com/tarosky/gutenberg-filelog,num_dependents_deps.dev:0 github.com/tarosky/gutenberg-imgconv,num_dependents_deps.dev:0 github.com/tarosky/gutenberg-imgserver,num_dependents_deps.dev:0 @@ -1102154,6 +1121927,7 @@ github.com/tarruda/vinyl-browserify,num_dependents_deps.dev:0 github.com/tarruda/vm.js,num_dependents_deps.dev:0 github.com/tarruda/wpas, github.com/tarryize/github,num_dependents_deps.dev:0 +github.com/tarrynn/skaffold-action, github.com/tars-node/config,num_dependents_deps.dev:2 github.com/tars-node/deploy,num_dependents_deps.dev:0 github.com/tars-node/dyeing,num_dependents_deps.dev:36 @@ -1102256,6 +1122030,7 @@ github.com/tarungarg546/generator-node-web,num_dependents_deps.dev:0 github.com/tarunguguloth/freshers-bootcamp,num_dependents_deps.dev:0 github.com/tarunguguloth/freshers_bootcamp,num_dependents_deps.dev:0 github.com/tarunjangra/izap-youtube-search,num_dependents_deps.dev:0 +github.com/tarunjangra/ssh-remote-cmd, github.com/tarunjha1/palindromejavascript,num_dependents_deps.dev:0 github.com/tarunkoyalwar/mygoutils,num_dependents_deps.dev:0 github.com/tarunlalwani/a10ctl, @@ -1102268,6 +1122043,7 @@ github.com/tarunsunkaraneni/distributed-systems,num_dependents_deps.dev:0 github.com/tarunteckedge/react-native-lock-task,num_dependents_deps.dev:0 github.com/tarunthota3/cordova-create-react-app,num_dependents_deps.dev:0 github.com/tarunvelli/json-2-css,num_dependents_deps.dev:0 +github.com/tarunxsh/profile-readme-stats-mod, github.com/tarup/react-native-image-zoom,num_dependents_deps.dev:0 github.com/tarusoopy/cloudruntest,num_dependents_deps.dev:0 github.com/tarusoopy/gogmtest,num_dependents_deps.dev:0 @@ -1102486,6 +1122262,8 @@ github.com/taskjs/task-svgo,num_dependents_deps.dev:0 github.com/taskjs/task-uglifyjs,num_dependents_deps.dev:0 github.com/taskjs/task-writer,num_dependents_deps.dev:0 github.com/taskjuggler/TaskJuggler,"criticality_score:0.369720,num_dependents_deps.dev:0" +github.com/taskmedia/action-conventional-commits, +github.com/taskmedia/read-only-friday, github.com/taskmonk/QuestionnaireGenerator,num_dependents_deps.dev:0 github.com/taskmonk/taskmonk-sdk-java,num_dependents_deps.dev:0 github.com/taskmonk/taskmonk-sdk-python, @@ -1102781,6 +1122559,7 @@ github.com/tatumio/tatum-cli,num_dependents_deps.dev:0 github.com/tatumio/tatum-java,num_dependents_deps.dev:0 github.com/tatumio/tatum-js,num_dependents_deps.dev:0 github.com/tatumio/tatum-kms,num_dependents_deps.dev:0 +github.com/tatupesonen/uolevi, github.com/tatusch/ots-eval, github.com/tatuylonen/wikitextprocessor, github.com/tatyanayagolnikov/go-import-package,num_dependents_deps.dev:0 @@ -1103059,6 +1122838,8 @@ github.com/taxee/taxee-tax-statistics,num_dependents_deps.dev:0 github.com/taxfyle/bristol-stackdriver,num_dependents_deps.dev:0 github.com/taxi666/postcss-pxtoremvw,num_dependents_deps.dev:0 github.com/taxibeat/mark,num_dependents_deps.dev:0 +github.com/taxidermic/ga-create-env, +github.com/taxidermic/slack-changelog-action, github.com/taxigps/xbmc-addons-chinese,criticality_score:0.320650 github.com/taxigy/clean-tagged-string,num_dependents_deps.dev:0 github.com/taxilian-promises/sendresponse,num_dependents_deps.dev:0 @@ -1103117,6 +1122898,7 @@ github.com/taye/interact.js,"criticality_score:0.547120,num_dependents_deps.dev: github.com/taye/livedemo,num_dependents_deps.dev:0 github.com/tayeb-ali/io-stepper,num_dependents_deps.dev:0 github.com/tayeb-ali/num-arabic-words,num_dependents_deps.dev:0 +github.com/tayfun/flake8-your-pr, github.com/tayganr/purviewcli, github.com/tayglobal/kydb, github.com/tayhobbs/s3deploy, @@ -1103188,6 +1122970,8 @@ github.com/taylordotfish/librecaptcha, github.com/taylordotfish/pyrcb2, github.com/taylordotfish/smallest-uint,num_dependents_deps.dev:0 github.com/taylordotfish/tagged-pointer,num_dependents_deps.dev:0 +github.com/taylorg198739/workflow-actions, +github.com/taylorgibb/ftp-clean, github.com/taylorgoolsby/fast-level-equal,num_dependents_deps.dev:0 github.com/taylorgoolsby/graphql-directive-connection,num_dependents_deps.dev:0 github.com/taylorgoolsby/graphql-directive-private,num_dependents_deps.dev:0 @@ -1103231,6 +1123015,7 @@ github.com/taylorjg/dlxlibjs,num_dependents_deps.dev:0 github.com/taylorjtatro/tatro,num_dependents_deps.dev:0 github.com/taylorknoah/learning-go,num_dependents_deps.dev:0 github.com/taylorkonigsmark/ynab-go,num_dependents_deps.dev:0 +github.com/taylorlroberts7/increase-coverage-action, github.com/taylormai/leetcode,num_dependents_deps.dev:0 github.com/taylormonacelli/filesize_from_stdin, github.com/taylormonacelli/rensha256, @@ -1103246,6 +1123031,9 @@ github.com/taylorshephard/lodown,num_dependents_deps.dev:0 github.com/taylorsilva/static-list-resource,num_dependents_deps.dev:0 github.com/taylorskalyo/markdown-journal,num_dependents_deps.dev:0 github.com/taylorsmith/placard,num_dependents_deps.dev:0 +github.com/taylorsmithgg/aws-ecr-action, +github.com/taylorsmithgg/aws-update-lambda-imageuri-action, +github.com/taylorsmithgg/s3-deploy, github.com/taylorsw04/btree-typescript,num_dependents_deps.dev:10 github.com/taylorthurlow/pocketwatch,num_dependents_deps.dev:0 github.com/taylortom/fileScan,num_dependents_deps.dev:0 @@ -1103381,6 +1123169,7 @@ github.com/tbarnhill/run-sql,num_dependents_deps.dev:0 github.com/tbarrella/aiok8s, github.com/tbarreno/build-info-maven-plugin,num_dependents_deps.dev:0 github.com/tbarreno/pomutils-maven-plugin,num_dependents_deps.dev:0 +github.com/tbartelmess/analyze-xcoderesults-action, github.com/tbartolucci/grpc-go-course,num_dependents_deps.dev:0 github.com/tbashor/architect-chance,num_dependents_deps.dev:0 github.com/tbashor/architect-debug-logger,num_dependents_deps.dev:0 @@ -1103496,6 +1123285,7 @@ github.com/tbiegner99/ReactForms,num_dependents_deps.dev:0 github.com/tbielawa/bitmath, github.com/tbielawa/sphinxcontrib-showterm, github.com/tbienias/PyTwits, +github.com/tbiholding/publish-terraform-modules, github.com/tbillington/kondo,num_dependents_deps.dev:0 github.com/tbindseil/sts-mono-repo, github.com/tbinetruy/CHIP, @@ -1103695,6 +1123485,8 @@ github.com/tbroadley/get-gitignore,num_dependents_deps.dev:0 github.com/tbroadley/github-spellcheck-cli,num_dependents_deps.dev:0 github.com/tbroadley/lodash-fp-migrate,num_dependents_deps.dev:0 github.com/tbroadley/spellchecker-cli, +github.com/tbroadley/spellchecker-cli-action, +github.com/tbrockman/social-action, github.com/tbrockman/xpmint,num_dependents_deps.dev:0 github.com/tbrodbeck/timelogging, github.com/tbrolin/ace-cli,num_dependents_deps.dev:0 @@ -1103724,11 +1123516,13 @@ github.com/tbryant/nst,num_dependents_deps.dev:0 github.com/tbs1-bo/ea_rpi_modul, github.com/tbs1-bo/ioemu, github.com/tbsalling/javaapiforkml,num_dependents_deps.dev:0 +github.com/tbscompany/render-drawio-action, github.com/tbshill/csv,num_dependents_deps.dev:0 github.com/tbshill/goenvutil,num_dependents_deps.dev:0 github.com/tbshill/gostruct,num_dependents_deps.dev:0 github.com/tbshill/govalidate,num_dependents_deps.dev:0 github.com/tbsliver/generator-nodecg-webpack, +github.com/tbsmcd/label_timer, github.com/tbson/rummernote,num_dependents_deps.dev:0 github.com/tbswang/leaflet.gridline,num_dependents_deps.dev:0 github.com/tbswang/open-git,num_dependents_deps.dev:0 @@ -1103773,6 +1123567,7 @@ github.com/tbvanderwoude/mapf-branch-and-bound, github.com/tbvanderwoude/mapf-util, github.com/tbvinh/react-native-events-week-calendar, github.com/tbvjaos510/electron-disable-minimize,num_dependents_deps.dev:0 +github.com/tbvjaos510/empty-commit-action, github.com/tbwisk/goconf,num_dependents_deps.dev:0 github.com/tbwork/anole-loader,num_dependents_deps.dev:0 github.com/tbz-pariv/ftpservercontext, @@ -1103880,6 +1123675,7 @@ github.com/tcaselli/spring-data-graphql-demo,num_dependents_deps.dev:0 github.com/tcaselli/spring-data-graphql-jpa-demo,num_dependents_deps.dev:0 github.com/tcassaert/credits_check,num_dependents_deps.dev:0 github.com/tcassanelli/pyoof, +github.com/tcassou/project-bot, github.com/tcastelly/flow-detect,num_dependents_deps.dev:0 github.com/tcastelly/vue-use-async,num_dependents_deps.dev:0 github.com/tcatche/hexo-generator-issues,num_dependents_deps.dev:0 @@ -1104059,10 +1123855,14 @@ github.com/tchrys/go-tutorials,num_dependents_deps.dev:0 github.com/tchssk/goa,num_dependents_deps.dev:0 github.com/tchssk/goji,num_dependents_deps.dev:0 github.com/tchuaxiaohua/day06-gomod,num_dependents_deps.dev:0 +github.com/tchupp/actions-terraform-detect-changes, +github.com/tchupp/actions-terraform-pr, +github.com/tchupp/actions-update-semver-tags, github.com/tchupp/nomad-ts,num_dependents_deps.dev:0 github.com/tchupp/terraform-provider-env,num_dependents_deps.dev:0 github.com/tchvan/node-mysql,num_dependents_deps.dev:0 github.com/tchvu3/capacitor-voice-recorder, +github.com/tchwork/utf8, github.com/tchype/http-ravendb,num_dependents_deps.dev:0 github.com/tchype/node-pingdom-client,num_dependents_deps.dev:0 github.com/tchype/node-ravendb,num_dependents_deps.dev:0 @@ -1104074,6 +1123874,8 @@ github.com/tcinbis/quic-go,num_dependents_deps.dev:0 github.com/tcitry/django-api-permission, github.com/tcitry/go-i18n-demo,num_dependents_deps.dev:0 github.com/tcitry/leetcode,num_dependents_deps.dev:0 +github.com/tcitry/publish-hugo-site, +github.com/tcitry/push-to-master, github.com/tckastanek/kcat,num_dependents_deps.dev:0 github.com/tckerr/siftpy, github.com/tckerr/walk,num_dependents_deps.dev:0 @@ -1104115,6 +1123917,8 @@ github.com/tclindner/hipchat-room-notification-api,num_dependents_deps.dev:0 github.com/tclindner/npm-package-json-lint,num_dependents_deps.dev:80 github.com/tclindner/npm-package-json-lint-config-default,num_dependents_deps.dev:2 github.com/tclindner/npm-package-json-lint-config-tc,num_dependents_deps.dev:0 +github.com/tclindner/sentry-release-deploy-action, +github.com/tclindner/sentry-releases-action, github.com/tclindner/stylelint-config-tc,num_dependents_deps.dev:0 github.com/tclohm/go-fundamentals,num_dependents_deps.dev:0 github.com/tcltk/tcl,criticality_score:0.640390 @@ -1104493,6 +1124297,7 @@ github.com/tddmonkey/lignin,num_dependents_deps.dev:0 github.com/tddmonkey/reactor-aws,num_dependents_deps.dev:0 github.com/tddmonkey/swagger-gradle-plugin,num_dependents_deps.dev:0 github.com/tddmonkey/tocker,num_dependents_deps.dev:2 +github.com/tddschn/install-easygraph, github.com/tdeNL/tde-webpack-mjml-plugin,num_dependents_deps.dev:0 github.com/tdeNL/tde-webpack-svg-plugin,num_dependents_deps.dev:0 github.com/tdebarochez/connect-cache,num_dependents_deps.dev:0 @@ -1104502,6 +1124307,7 @@ github.com/tdebarochez/m2pdb,num_dependents_deps.dev:0 github.com/tdebarochez/node-app-reloader,num_dependents_deps.dev:0 github.com/tdebarochez/yacw,num_dependents_deps.dev:4 github.com/tdebatty/java-string-similarity,criticality_score:0.355100 +github.com/tdeboissiere/python-format-action, github.com/tdecaluwe/http-authentication,num_dependents_deps.dev:0 github.com/tdecaluwe/node-edifact,num_dependents_deps.dev:0 github.com/tdecker7/proglog,num_dependents_deps.dev:0 @@ -1104549,6 +1124355,7 @@ github.com/tdelmas/binary-search-bounds-safe,num_dependents_deps.dev:0 github.com/tdelov/node-aws-adfs,num_dependents_deps.dev:0 github.com/tdelov/node-aws-adfs-cli,num_dependents_deps.dev:0 github.com/tdelphi/puppet-rundeck,num_dependents_deps.dev:0 +github.com/tdemin/find-latest-tag, github.com/tdemin/gmnhg,num_dependents_deps.dev:0 github.com/tdemin/syg_go,num_dependents_deps.dev:0 github.com/tdemooij/kondo,num_dependents_deps.dev:0 @@ -1104778,6 +1124585,8 @@ github.com/tdumitrescu/virtual-jade-loader,num_dependents_deps.dev:0 github.com/tdunning/open-json,num_dependents_deps.dev:850 github.com/tdunning/t-digest,"criticality_score:0.430520,num_dependents_deps.dev:3205" github.com/tdunnington/s3cp,num_dependents_deps.dev:0 +github.com/tdup-axa-ops/action-create-repo, +github.com/tdupoiron-org/learning2023-custom-actions, github.com/tdurieux/ITBot, github.com/tdurieux/leboncoin-api,num_dependents_deps.dev:0 github.com/tdwhite0/microsearch,num_dependents_deps.dev:0 @@ -1104907,10 +1124716,13 @@ github.com/teakit/eslint-config-teakit,num_dependents_deps.dev:0 github.com/teakit/teakit,num_dependents_deps.dev:8 github.com/teakit/teakit-webpack-plugin,num_dependents_deps.dev:0 github.com/teakivy/simple-discord-modules,num_dependents_deps.dev:0 +github.com/teakong/github-action-yifengchuanhua, github.com/teakopp/go-with-tests,num_dependents_deps.dev:0 +github.com/teakowadeprecated/Serverless-Action, github.com/teal-front/prepublish-page-check,num_dependents_deps.dev:0 github.com/teal-front/publish-pack-gen-chrome-extension,num_dependents_deps.dev:0 github.com/teal-front/publish-pack-gen-nodejs, +github.com/teal-inc/wait-for-lambda-update, github.com/teal-language/tl,criticality_score:0.463110 github.com/teal/tscript,num_dependents_deps.dev:0 github.com/tealcoin-project/insight-tealcoin-api,num_dependents_deps.dev:0 @@ -1105001,6 +1124813,7 @@ github.com/team-griffin/uteals,num_dependents_deps.dev:0 github.com/team-griffin/webpack-dedupe-plugin,num_dependents_deps.dev:0 github.com/team-griffin/webpack-dudupe-plugin,num_dependents_deps.dev:0 github.com/team-gryff/react-monocle,num_dependents_deps.dev:0 +github.com/team-gsri/actions-sign-mod, github.com/team-hamworks/wp-block-filters,num_dependents_deps.dev:0 github.com/team-hamworks/wp-data,num_dependents_deps.dev:0 github.com/team-hamworks/wp-fetch,num_dependents_deps.dev:0 @@ -1105026,6 +1124839,8 @@ github.com/team-magneto/viewport-interpolator,num_dependents_deps.dev:0 github.com/team-mahal/vue-collapse,num_dependents_deps.dev:0 github.com/team-mahal/vuejs-accordion, github.com/team-moca/moca-service-whatsapp,num_dependents_deps.dev:0 +github.com/team-mst/mst-asana-subtask-updater, +github.com/team-mst/mst-asana-update-file-upload, github.com/team-naive/naive-admin,num_dependents_deps.dev:0 github.com/team-noteapp/permission-calculator, github.com/team-parallax/eslint-plugin-use-decorator,num_dependents_deps.dev:0 @@ -1105065,6 +1124880,7 @@ github.com/team-telnyx/telnyx-python, github.com/team-telnyx/telnyx-rtc-sipjs,num_dependents_deps.dev:0 github.com/team-telnyx/twexit-python, github.com/team-telnyx/webrtc,num_dependents_deps.dev:0 +github.com/team-tenacious/monorepo-coverage, github.com/team-textrix/cassandra-connector,num_dependents_deps.dev:0 github.com/team-tritan/tritan-ytdl,num_dependents_deps.dev:0 github.com/team-vagledning/mikrosegmentering,num_dependents_deps.dev:0 @@ -1105073,8 +1124889,10 @@ github.com/team-velocirabbit/rx-etl,num_dependents_deps.dev:0 github.com/team-video/cra-template-videokit,num_dependents_deps.dev:0 github.com/team-video/knopf.css, github.com/team-video/tragopan, +github.com/team-xquare/action, github.com/team-xquare/git-emoji-utils,num_dependents_deps.dev:0 github.com/team-xquare/xnew,num_dependents_deps.dev:0 +github.com/team-xquare/xquare-deployment-action, github.com/team-zoltan/persistablemd5, github.com/team1257Simon/socket.io-tester,num_dependents_deps.dev:0 github.com/team23/b5, @@ -1105305,6 +1125123,7 @@ github.com/teamhanko/hanko-sdk-java,num_dependents_deps.dev:0 github.com/teamhanko/hanko-webauthn,num_dependents_deps.dev:0 github.com/teamhanko/webauthn,num_dependents_deps.dev:1 github.com/teamharold/purport,num_dependents_deps.dev:0 +github.com/teamhava/hava-sync-action, github.com/teamhephy/builder,num_dependents_deps.dev:0 github.com/teamhephy/confd,num_dependents_deps.dev:0 github.com/teamhephy/deisrel,num_dependents_deps.dev:0 @@ -1105359,12 +1125178,16 @@ github.com/teammasmax/golang,num_dependents_deps.dev:0 github.com/teammomentum/bs-url-normalizer,num_dependents_deps.dev:0 github.com/teammorrow/hubot-hr-warning,num_dependents_deps.dev:0 github.com/teammorrow/hubot-soundspaces, +github.com/teamniteo/export-issues-action, +github.com/teamniteo/pull_request_status_action, github.com/teamniteo/pyramid_cloudflare_access, github.com/teamniteo/pyramid_mixpanel, +github.com/teamniteo/reviewapps-deploy-status, github.com/teamnocsys/sonicpb,num_dependents_deps.dev:0 github.com/teamnora/nake,num_dependents_deps.dev:0 github.com/teamnovu/nuxt-breaky,num_dependents_deps.dev:0 github.com/teamnovu/nuxt-cloudinary-image,num_dependents_deps.dev:0 +github.com/teamnovu/vapor-action, github.com/teamnovu/vue-breaky,num_dependents_deps.dev:0 github.com/teamnovu/vue-breaky-core,num_dependents_deps.dev:0 github.com/teamnovu/vue-cloudinary-image,num_dependents_deps.dev:2 @@ -1105398,8 +1125221,10 @@ github.com/teamplanes/static, github.com/teamplify/teamplify-runner, github.com/teampumpkin/angular-schema-form-bs-extra,num_dependents_deps.dev:0 github.com/teampyso/dpost,num_dependents_deps.dev:0 +github.com/teamreadme/faceless-issues, github.com/teamrekursion/alt-reality-backend,num_dependents_deps.dev:0 github.com/teamrevlo/revlo-python-client, +github.com/teamrhfitness/github-actions-phpcs, github.com/teamroboboogie/tabtab-commander,num_dependents_deps.dev:0 github.com/teamroboboogie/x-optimizely-cli, github.com/teamrota/eslint-config-rota,num_dependents_deps.dev:0 @@ -1105488,6 +1125313,7 @@ github.com/teamxps/xps,num_dependents_deps.dev:0 github.com/teamyudin/tiny,num_dependents_deps.dev:0 github.com/teamzerolabs/api-express-exporter,num_dependents_deps.dev:0 github.com/teamzerolabs/mindseye,num_dependents_deps.dev:0 +github.com/teamziax/gradle-buildjet-action, github.com/teana0953/axios-rxjs,num_dependents_deps.dev:0 github.com/teana0953/t-vue-switch,num_dependents_deps.dev:0 github.com/teanmy/multimodules,num_dependents_deps.dev:0 @@ -1105517,6 +1125343,7 @@ github.com/tearthesky/golang-study,num_dependents_deps.dev:0 github.com/tearust/chainbridge-substrate-events,num_dependents_deps.dev:0 github.com/tearust/chainbridge-utils,num_dependents_deps.dev:0 github.com/tearust/tea-js-sdk, +github.com/teascanner/slack-notification, github.com/teasea33/pysendgrid, github.com/teashton/react-flash,num_dependents_deps.dev:0 github.com/teasim/antd-boilerplate,num_dependents_deps.dev:0 @@ -1105531,6 +1125358,7 @@ github.com/teatak/cartsess,num_dependents_deps.dev:0 github.com/teatak/riff,num_dependents_deps.dev:0 github.com/teathedev/go-calculator,num_dependents_deps.dev:0 github.com/teatime-code/ckeditor4,num_dependents_deps.dev:0 +github.com/teatimeguest/setup-texlive-action, github.com/teatro13/teatro,num_dependents_deps.dev:0 github.com/teatrove/teatrove,num_dependents_deps.dev:15 github.com/teaualune/displayName,num_dependents_deps.dev:30 @@ -1105546,6 +1125374,7 @@ github.com/teawithsand/smtpc,num_dependents_deps.dev:0 github.com/teawithsand/torut,num_dependents_deps.dev:10 github.com/teawithsand/yawu,num_dependents_deps.dev:0 github.com/teaxus/YSDataTransferTools,num_dependents_deps.dev:0 +github.com/teaxyz/setup, github.com/teazean/vue-beautify,num_dependents_deps.dev:0 github.com/tebaly/expires-unixtime,num_dependents_deps.dev:0 github.com/tebaly/unix-timestamp-offset,num_dependents_deps.dev:2 @@ -1105656,6 +1125485,7 @@ github.com/tech-start-ucalgary/supplyme,num_dependents_deps.dev:0 github.com/tech-sumit/aws-iot-device-sdk-go,num_dependents_deps.dev:0 github.com/tech-teach/marshmallowjson, github.com/tech-thinker/go-cookiecutter,num_dependents_deps.dev:0 +github.com/tech-thinker/push-to-repo, github.com/tech-troupe/react-tab-content-view,num_dependents_deps.dev:0 github.com/tech-with-moss/go-usermgmt-grpc,num_dependents_deps.dev:0 github.com/tech-with-tim/cdn,num_dependents_deps.dev:0 @@ -1105758,6 +1125588,7 @@ github.com/techdad24/rover-alexa-skill,num_dependents_deps.dev:0 github.com/techdecaf/cgen,num_dependents_deps.dev:0 github.com/techdecaf/tasks,num_dependents_deps.dev:0 github.com/techdecaf/templates,num_dependents_deps.dev:0 +github.com/techdecember/github-action-inactive-branches, github.com/techdiverdown/NipapUtils, github.com/techdoge/codemon, github.com/techdragon/django-auth0-user, @@ -1105768,6 +1125599,7 @@ github.com/techdragon/python-git-repo-info, github.com/techdragon/python-github-repo-info, github.com/techdragon/python-nextstep-plist, github.com/techdragon/python-recursive-dictionary-update, +github.com/techeca/render-deployHook-action, github.com/techeditorsrc/arg, github.com/techempower/dockurl,num_dependents_deps.dev:0 github.com/techequipt/finance-calculators, @@ -1105903,6 +1125735,7 @@ github.com/techjacker/slackops,num_dependents_deps.dev:0 github.com/techjacker/systemdlogger, github.com/techjacker/tap-test-helpers, github.com/techjacker/tap-wrapper, +github.com/techjavelin/iac-action-terraform-lint, github.com/techjeffharris/candybot,num_dependents_deps.dev:0 github.com/techjeffharris/cluster-fuck,num_dependents_deps.dev:0 github.com/techjeffharris/freebox-finder,num_dependents_deps.dev:0 @@ -1105910,6 +1125743,8 @@ github.com/techjeffharris/friends-of-friends,num_dependents_deps.dev:0 github.com/techjeffharris/prepl,num_dependents_deps.dev:0 github.com/techjeffharris/utils,num_dependents_deps.dev:0 github.com/techjoomla/joomla-angular,num_dependents_deps.dev:0 +github.com/techknowlogick/action-hcloud, +github.com/techknowlogick/action-vultr, github.com/techknowlogick/caddy-s3browser,num_dependents_deps.dev:0 github.com/techknowlogick/certmagic-s3,num_dependents_deps.dev:0 github.com/techknowlogick/drone-nfpm,num_dependents_deps.dev:0 @@ -1105959,7 +1125794,9 @@ github.com/techmccat/bf-bot,num_dependents_deps.dev:0 github.com/techmccat/bf-lib,num_dependents_deps.dev:0 github.com/techminerapps/portier,num_dependents_deps.dev:0 github.com/techminerapps/telegraph,num_dependents_deps.dev:0 +github.com/techmmunity/action-deploy-static-webapp-aws, github.com/techmmunity/database-error-handler,num_dependents_deps.dev:0 +github.com/techmmunity/docker-heroku-deploy, github.com/techmmunity/eslint-config,num_dependents_deps.dev:0 github.com/techmo-pl/vamp-wavelet-fft, github.com/techmoksha/vedic-js, @@ -1106003,6 +1125840,7 @@ github.com/technicallyjosh/koa-better-validation, github.com/technicallyjosh/koa-fluent-validation,num_dependents_deps.dev:0 github.com/technicallyjosh/koa-jwt-roles,num_dependents_deps.dev:0 github.com/technicallyjosh/koa-validation,num_dependents_deps.dev:0 +github.com/technicallyjosh/next-version-action, github.com/technicallyjosh/node-config-live,num_dependents_deps.dev:0 github.com/technicallyjosh/pino-http-send,num_dependents_deps.dev:0 github.com/technicallyty/nana,num_dependents_deps.dev:0 @@ -1106017,6 +1125855,8 @@ github.com/technicalpickles/rspec-spies,num_dependents_deps.dev:0 github.com/technicalpickles/sleepyq, github.com/technicalrockstars/sockjs-client-haxe,num_dependents_deps.dev:0 github.com/technicise-software-and-technologies/technicise-star-rating,num_dependents_deps.dev:0 +github.com/technicityworks/action-helm-artifactory, +github.com/technicityworks/action-helm-chartmuseum, github.com/technicolorenvy/async-transport,num_dependents_deps.dev:0 github.com/technicolorenvy/image-animator,num_dependents_deps.dev:0 github.com/technicolorenvy/re-map,num_dependents_deps.dev:0 @@ -1106119,6 +1125959,7 @@ github.com/technology-ebay-de/eslint-config-motor-talk, github.com/technology-ebay-de/react-advertising,num_dependents_deps.dev:0 github.com/technology-ebay-de/react-prebid,num_dependents_deps.dev:0 github.com/technology-ebay-de/stylelint-config-motor-talk,num_dependents_deps.dev:0 +github.com/technology-studio-forks/markdown-embed-code, github.com/technology-studio/babel-preset,num_dependents_deps.dev:0 github.com/technology-studio/commons,num_dependents_deps.dev:0 github.com/technology-studio/config-manager,num_dependents_deps.dev:0 @@ -1106191,13 +1126032,24 @@ github.com/technosophos/ulid,num_dependents_deps.dev:0 github.com/technotaff/hid_watchdog, github.com/technote-fork/clover-json,num_dependents_deps.dev:0 github.com/technote-space/anchor-markdown-header,num_dependents_deps.dev:10 +github.com/technote-space/assign-author, +github.com/technote-space/auto-cancel-redundant-workflow, +github.com/technote-space/auto-card-labeler, +github.com/technote-space/broken-link-checker-action, +github.com/technote-space/can-npm-publish-action, github.com/technote-space/clover-json, +github.com/technote-space/create-pr-action, +github.com/technote-space/create-project-card-action, github.com/technote-space/doctoc,num_dependents_deps.dev:2 +github.com/technote-space/download-annotations-action, github.com/technote-space/fast-glob,num_dependents_deps.dev:0 github.com/technote-space/filter-github-action,num_dependents_deps.dev:10 github.com/technote-space/ga-framework,num_dependents_deps.dev:0 github.com/technote-space/game-interface,num_dependents_deps.dev:0 github.com/technote-space/genetic-algorithms-js,num_dependents_deps.dev:0 +github.com/technote-space/get-diff-action, +github.com/technote-space/get-git-comment-action, +github.com/technote-space/get-next-version-action, github.com/technote-space/github-action-config-helper,num_dependents_deps.dev:0 github.com/technote-space/github-action-helper,num_dependents_deps.dev:14 github.com/technote-space/github-action-log-helper,num_dependents_deps.dev:8 @@ -1106209,8 +1126061,11 @@ github.com/technote-space/gutenberg-test-utils,num_dependents_deps.dev:0 github.com/technote-space/gutenberg-utils,num_dependents_deps.dev:0 github.com/technote-space/imi-moji-converter,num_dependents_deps.dev:0 github.com/technote-space/jquery.marker-animation,num_dependents_deps.dev:0 +github.com/technote-space/load-config-action, github.com/technote-space/material-table,num_dependents_deps.dev:0 github.com/technote-space/material-table-localization-jp,num_dependents_deps.dev:0 +github.com/technote-space/package-version-check-action, +github.com/technote-space/pr-commit-body-action, github.com/technote-space/prisma-seeder-tools,num_dependents_deps.dev:0 github.com/technote-space/register-grouped-format-type,num_dependents_deps.dev:0 github.com/technote-space/release-github-actions,num_dependents_deps.dev:0 @@ -1106221,6 +1126076,7 @@ github.com/technote-space/use-material-table-icons,num_dependents_deps.dev:0 github.com/technote-space/use-unmount-ref,num_dependents_deps.dev:0 github.com/technote-space/worker-controller,num_dependents_deps.dev:0 github.com/technote-space/workflow-conclusion-action,num_dependents_deps.dev:0 +github.com/technote-space/wp-version-check-action, github.com/technote-space/zipcode2address-jp,num_dependents_deps.dev:0 github.com/technotronicoz/wgunderound,num_dependents_deps.dev:0 github.com/technova/loopback-connector-cordova-sqlite,num_dependents_deps.dev:0 @@ -1106244,6 +1126100,7 @@ github.com/techotron/online-quote-book,num_dependents_deps.dev:0 github.com/techouse/mysql-to-sqlite3, github.com/techouse/sqlite3-to-mysql, github.com/techouse/termania-api, +github.com/techouse/vue-cli-plugin-s3-deploy-action-next, github.com/techpines/asset-rack,num_dependents_deps.dev:1 github.com/techpines/bone.io,num_dependents_deps.dev:0 github.com/techpines/express.io,num_dependents_deps.dev:26 @@ -1106277,12 +1126134,14 @@ github.com/techquest/react-native-isw-mobile-sdk,num_dependents_deps.dev:0 github.com/techrah/cruud-connector,num_dependents_deps.dev:0 github.com/techrah/jupyterext-text-shortcuts, github.com/techrick/ADS1261,num_dependents_deps.dev:0 +github.com/techrill88/azure_compliance_action, github.com/techsavyravi/worth-the-read,num_dependents_deps.dev:0 github.com/techscene/finfun, github.com/techschool/simplebank,num_dependents_deps.dev:0 github.com/techscore/chatty_error,num_dependents_deps.dev:0 github.com/techsek/derivatex,num_dependents_deps.dev:0 github.com/techservicesillinois/awscli-login, +github.com/techservicesillinois/cache-validation, github.com/techshowsolutions/ckeditor5,num_dependents_deps.dev:0 github.com/techshowsolutions/ckeditor5-build-classic-base64-upload, github.com/techsin/color-stacktrace,num_dependents_deps.dev:0 @@ -1106315,6 +1126174,8 @@ github.com/techuila/aocjs,num_dependents_deps.dev:0 github.com/techuila/deep-clone,num_dependents_deps.dev:0 github.com/techuila/loopie,num_dependents_deps.dev:0 github.com/techulus/capture-node,num_dependents_deps.dev:0 +github.com/techulus/changes-page-action, +github.com/techulus/push-github-action, github.com/techulus/push-js-sdk,num_dependents_deps.dev:0 github.com/techulus/social-reviews,num_dependents_deps.dev:0 github.com/techunits/elogger, @@ -1106393,8 +1126254,19 @@ github.com/tecnospeed/mongodb-single-client,num_dependents_deps.dev:0 github.com/tecnospeed/npm-creator, github.com/teco-kit/explorer-java,num_dependents_deps.dev:0 github.com/tecofactory/iafwk,num_dependents_deps.dev:0 +github.com/tecolicom/actions-install-and-archive, +github.com/tecolicom/actions-install-and-cache, +github.com/tecolicom/actions-install-node-modules, +github.com/tecolicom/actions-use-any-tools, +github.com/tecolicom/actions-use-apt-tools, +github.com/tecolicom/actions-use-homebrew-tools, +github.com/tecolicom/actions-use-perl-tools, +github.com/tecolicom/actions-use-python-tools, +github.com/tecolicom/actions-use-ruby-tools, github.com/tecome/vsco-dl, github.com/tecommons/ui,num_dependents_deps.dev:0 +github.com/tecosaur/org-knit-action, +github.com/tecosaur/org-tangle-action, github.com/tecowl/calendatext,num_dependents_deps.dev:0 github.com/tecpet/api,num_dependents_deps.dev:0 github.com/tecpresso/generator-eccube-2-plugin,num_dependents_deps.dev:0 @@ -1106477,6 +1126349,7 @@ github.com/tedconf/js-crushinator-helpers,num_dependents_deps.dev:0 github.com/tedconf/node-m3u8,num_dependents_deps.dev:2 github.com/tedconf/react-show-more,num_dependents_deps.dev:0 github.com/tedconf/react-ted-bootstrap,num_dependents_deps.dev:0 +github.com/tedd/publish-nuget-neo, github.com/teddbug-S/dupliCat, github.com/teddenl/windy-plugins,num_dependents_deps.dev:0 github.com/tedder/requests-aws4auth, @@ -1106491,6 +1126364,7 @@ github.com/teddydd/asdf-godot,num_dependents_deps.dev:0 github.com/teddydd/binclock,num_dependents_deps.dev:0 github.com/teddydd/scrapbox,num_dependents_deps.dev:0 github.com/teddyhome123/go_exercise,num_dependents_deps.dev:0 +github.com/teddyking/dependency-action, github.com/teddyking/tidyblob,num_dependents_deps.dev:0 github.com/teddykoker/torchsort, github.com/teddykwon/react-native-video-stream, @@ -1106506,6 +1126380,7 @@ github.com/teddysun/xray-plugin,num_dependents_deps.dev:0 github.com/teddytags/router,num_dependents_deps.dev:0 github.com/teddyteh/react-native-stopwatch-timer,num_dependents_deps.dev:0 github.com/teddywest32/laravel-elixir-typescript,num_dependents_deps.dev:0 +github.com/teddywilson/shisito-markdown-validation, github.com/teddywing/django-sneak-peek, github.com/teddyyy/chpwd_cmd, github.com/teddziuba/django-sslserver, @@ -1106525,6 +1126400,8 @@ github.com/tedict/gitbook-plugin-arbor, github.com/tedil/lyner, github.com/tedious/JShrink,criticality_score:0.387770 github.com/tedious/Stash,criticality_score:0.441450 +github.com/tedious/fetch, +github.com/tedious/tedivmstashbundle, github.com/tediousjs/connection-string,num_dependents_deps.dev:210 github.com/tediousjs/dns-lookup-all,num_dependents_deps.dev:304 github.com/tediousjs/native-duplexpair,num_dependents_deps.dev:2764 @@ -1106538,6 +1126415,8 @@ github.com/tedirghazali/alga-vue,num_dependents_deps.dev:0 github.com/tedirghazali/pidie,num_dependents_deps.dev:0 github.com/tedirghazali/sastra,num_dependents_deps.dev:0 github.com/tedirghazali/vidie,num_dependents_deps.dev:0 +github.com/tedivm/action-ecr-publish, +github.com/tedivm/action-python-lockfile-update, github.com/tedivm/github3apps.py, github.com/tedivm/jsonsmash,num_dependents_deps.dev:0 github.com/tedivm/nebula-cli, @@ -1106681,6 +1126560,8 @@ github.com/teepark/shorty, github.com/teepbee/pyrak811v2, github.com/teepluss/adonis-bqueue,num_dependents_deps.dev:0 github.com/teepluss/laravel-elixir-reactify,num_dependents_deps.dev:0 +github.com/teeps-co/composer-action, +github.com/teepsdonnelly/debt-collector, github.com/teerach-min/js-lib, github.com/teeradech268/echoframework_workshops,num_dependents_deps.dev:0 github.com/teeradech268/go_workshops,num_dependents_deps.dev:0 @@ -1106715,6 +1126596,7 @@ github.com/teffalump/gnu_health_fhir, github.com/teffalump/orthanc_rest_client, github.com/teffland/pytorch-monitor, github.com/tefi-anbessa/tefi-palindrome,num_dependents_deps.dev:0 +github.com/tefkah/todo-to-issue-action, github.com/tefra/pydrag, github.com/tefra/pytuber, github.com/tefra/xsdata, @@ -1106724,6 +1126606,8 @@ github.com/tegain/vue-cli-plugin-mevn,num_dependents_deps.dev:0 github.com/tegami-lpr/lncivaconv,num_dependents_deps.dev:0 github.com/tegami-lpr/opusgribproxy,num_dependents_deps.dev:0 github.com/tegami-lpr/payloadcalc,num_dependents_deps.dev:0 +github.com/tegarimansyah/docker_build_push, +github.com/tegarimansyah/doitlater, github.com/tegcommerce/tegcommerce-admin,num_dependents_deps.dev:0 github.com/tegebu/bgg-batch,num_dependents_deps.dev:0 github.com/tegebu/syrup,num_dependents_deps.dev:0 @@ -1106735,6 +1126619,7 @@ github.com/tegioz/riak-go-client,num_dependents_deps.dev:0 github.com/tegner/jso-2,num_dependents_deps.dev:0 github.com/tegner/postcss-selectorcleanse,num_dependents_deps.dev:0 github.com/tegon/clone-org-repos,num_dependents_deps.dev:0 +github.com/tegonal/workflow-helper, github.com/tegraoss/luffie,num_dependents_deps.dev:0 github.com/tegraoss/react-native-connection-status,num_dependents_deps.dev:0 github.com/tegud/checkless,num_dependents_deps.dev:0 @@ -1106743,6 +1126628,7 @@ github.com/tegud/composer-utilities,num_dependents_deps.dev:0 github.com/tegud/pickaroon,num_dependents_deps.dev:0 github.com/tegud/pickaroon-express,num_dependents_deps.dev:0 github.com/tegud/serverless-cost-estimate,num_dependents_deps.dev:0 +github.com/tegud/serverless-github-action, github.com/tegud/tegud-lambda-api,num_dependents_deps.dev:0 github.com/teguhsuryo/avl-sorted-list,num_dependents_deps.dev:0 github.com/tegument/tegument-components,num_dependents_deps.dev:0 @@ -1106802,6 +1126688,7 @@ github.com/tehnomaan/uiannot,num_dependents_deps.dev:0 github.com/tehnomaan/xmlutil,num_dependents_deps.dev:0 github.com/tehp/string-distance, github.com/tehpsalmist/ng-tailwindcss,num_dependents_deps.dev:0 +github.com/tehpsalmist/npm-publish-status-action, github.com/tehpsalmist/parcel-plugin-copy-files,num_dependents_deps.dev:0 github.com/tehpug/Battlefield, github.com/tehsenaus/bower-amd-dist,num_dependents_deps.dev:0 @@ -1106905,6 +1126792,7 @@ github.com/teivah/patron,num_dependents_deps.dev:0 github.com/teixas/bobtemplates.fanstatic, github.com/teixas/js.wysihtml5, github.com/teixeiragthiago/golang-course,num_dependents_deps.dev:0 +github.com/teixeirazeus/draw-magic-action, github.com/teixie-go/configurator,num_dependents_deps.dev:0 github.com/teixie-go/redis,num_dependents_deps.dev:0 github.com/teixie-go/xhttp,num_dependents_deps.dev:0 @@ -1106952,6 +1126840,7 @@ github.com/tejasmanohar/shellsort,num_dependents_deps.dev:0 github.com/tejasmanohar/testing,num_dependents_deps.dev:0 github.com/tejasmanohar/token-bucket-promise,num_dependents_deps.dev:0 github.com/tejasmorkar/npm-tejasmorkar, +github.com/tejasmr/do-autopr, github.com/tejasq/babel-plugin-glamorous-to-emotion,num_dependents_deps.dev:0 github.com/tejasq/express-basic-auth,num_dependents_deps.dev:0 github.com/tejasq/klar,num_dependents_deps.dev:0 @@ -1107047,6 +1126936,7 @@ github.com/tekknolagi/ansh,num_dependents_deps.dev:0 github.com/tekknolagi/doge_api,num_dependents_deps.dev:0 github.com/tekknolagi/rat,num_dependents_deps.dev:0 github.com/tekktrik/CircuitPython_Org_DisplayIO_Effects, +github.com/tekktrik/issue-labeled-ping, github.com/tekktrik/parallel64, github.com/tekky02/algorithm,num_dependents_deps.dev:0 github.com/tekl-omni/stripe-go,num_dependents_deps.dev:0 @@ -1107054,6 +1126944,8 @@ github.com/tekliner/rabbitmq-operator,num_dependents_deps.dev:0 github.com/tekmaven/final-jeopardy-calculator,num_dependents_deps.dev:0 github.com/tekminewe/design-system-react,num_dependents_deps.dev:0 github.com/tekminewe/eslint-config-react-native-standard,num_dependents_deps.dev:0 +github.com/teknatha136/actions-google-chat-text-message, +github.com/teknatha136/actions-kubectl, github.com/teknepal/cordova-plugin-advanced-http,num_dependents_deps.dev:0 github.com/teknepal/cordova-plugin-enable-bitcode,num_dependents_deps.dev:0 github.com/teknofage/makesite,num_dependents_deps.dev:0 @@ -1107426,6 +1127318,10 @@ github.com/telephoneorg/kazoo-sdk, github.com/telephoneorg/kzconfig, github.com/telephoneorg/pyrkube, github.com/telephonyresearch/node-opencnam,num_dependents_deps.dev:0 +github.com/teleport-actions/auth, +github.com/teleport-actions/auth-application, +github.com/teleport-actions/auth-k8s, +github.com/teleport-actions/setup, github.com/teleport-js/teleport,num_dependents_deps.dev:0 github.com/teleport/autocomplete,num_dependents_deps.dev:0 github.com/teleport/react-dnd-treeview,num_dependents_deps.dev:0 @@ -1107538,6 +1127434,7 @@ github.com/tell-k/sphinxjp.themes.gopher, github.com/tell-k/sphinxjp.themes.revealjs, github.com/tell-k/uadetector, github.com/tell-soft/tell-ng,num_dependents_deps.dev:0 +github.com/tella-adam/add-labels, github.com/tellae/html2pdf,num_dependents_deps.dev:0 github.com/tellery/blockchain-spark, github.com/tellery/crypto-extract, @@ -1107676,6 +1127573,7 @@ github.com/teloo/delevts,num_dependents_deps.dev:0 github.com/teloo/delevts-plugin-google,num_dependents_deps.dev:0 github.com/teloo/delevts-plugin-salesforce,num_dependents_deps.dev:0 github.com/teloo/node-autodiscover,num_dependents_deps.dev:0 +github.com/teloscube/decaf-webapps-deployment-action, github.com/telosnetwork/telosevm-js, github.com/telosnetwork/ual-telos-keycat,num_dependents_deps.dev:0 github.com/telostat/barista-api-client-python, @@ -1107691,6 +1127589,7 @@ github.com/telran/cordova-plugin-telran-camera-with-exif,num_dependents_deps.dev github.com/telran/cordova-plugin-telran-imagepicker,num_dependents_deps.dev:0 github.com/telshamy-prft/saveSvgAsPng,num_dependents_deps.dev:0 github.com/telstra/MessagingAPI-SDK-ruby,num_dependents_deps.dev:0 +github.com/telstra/openapi-spec-to-json-schema, github.com/telsystems/generator-oktell-module,num_dependents_deps.dev:0 github.com/teltech/log,num_dependents_deps.dev:0 github.com/teltech/logger,num_dependents_deps.dev:0 @@ -1107907,12 +1127806,14 @@ github.com/ten24/slatwall-storefront-react,num_dependents_deps.dev:0 github.com/ten3roberts/hecs-hierarchy,num_dependents_deps.dev:0 github.com/ten3roberts/simple-xml,num_dependents_deps.dev:0 github.com/tenable/Tenable.io-SDK-for-Python, +github.com/tenable/accurics-action, github.com/tenable/integrations-cef, github.com/tenable/integrations-cscc, github.com/tenable/integrations-ibm-cloudpak-for-security, github.com/tenable/integrations-jira-cloud, github.com/tenable/kastle,num_dependents_deps.dev:0 github.com/tenable/pytenable, +github.com/tenable/terrascan-action, github.com/tenacex/hls-fetcher, github.com/tenadolanter/antd-loader,num_dependents_deps.dev:0 github.com/tenadolanter/svg2vue,num_dependents_deps.dev:0 @@ -1108222,6 +1128123,7 @@ github.com/tengzhangchao/CreateRe, github.com/tengzj/demo,num_dependents_deps.dev:0 github.com/tenhan/rocketmq-client-go,num_dependents_deps.dev:0 github.com/tenhan/tip,num_dependents_deps.dev:0 +github.com/tenhaus/get-release-or-tag, github.com/tenhaus/hightower,num_dependents_deps.dev:0 github.com/tenhold/lodown,num_dependents_deps.dev:0 github.com/teniryte/cort-cdn,num_dependents_deps.dev:0 @@ -1108263,6 +1128165,7 @@ github.com/tenlastic/open-platform,num_dependents_deps.dev:1224 github.com/tenlisboa/better-laravel-vue-form,num_dependents_deps.dev:0 github.com/tenlives/mytestscript, github.com/tenna-llc/bunnybus,num_dependents_deps.dev:0 +github.com/tenna-llc/hrval-action, github.com/tennaito/rsql-jpa,num_dependents_deps.dev:20 github.com/tennashi/got,num_dependents_deps.dev:0 github.com/tennashi/pj,num_dependents_deps.dev:0 @@ -1108324,6 +1128227,7 @@ github.com/tenphi/tnp-click-outside,num_dependents_deps.dev:0 github.com/tenproduct/oa3-api-defender,num_dependents_deps.dev:0 github.com/tenproduct/python-textunited, github.com/tenproduct/ten-schematics,num_dependents_deps.dev:0 +github.com/tenpureto/propagate-changes-action, github.com/tenpy/tenpy, github.com/tenritalkanda/golang_practice,num_dependents_deps.dev:0 github.com/tenry92/graphql-decorators,num_dependents_deps.dev:0 @@ -1108344,6 +1128248,7 @@ github.com/tenso2006/TooltipFeature,num_dependents_deps.dev:0 github.com/tensoar/IniParser.js,num_dependents_deps.dev:0 github.com/tensor-compiler/taco,criticality_score:0.475710 github.com/tensor-dev/tensor-xmldom,num_dependents_deps.dev:3 +github.com/tensor-hq/eksctl-helm-action, github.com/tensor2flow/vuedragging,num_dependents_deps.dev:0 github.com/tensor5/JSLinter,num_dependents_deps.dev:2 github.com/tensor5/web3-contract-loader,num_dependents_deps.dev:0 @@ -1108555,6 +1128460,7 @@ github.com/tenuki/url-compute,num_dependents_deps.dev:0 github.com/tenuto-corp/react-native-webrtc-tenuto,num_dependents_deps.dev:0 github.com/tenuto-corp/tenu-available,num_dependents_deps.dev:0 github.com/tenx-tech/stargazer,num_dependents_deps.dev:0 +github.com/tenx29/save-to-roblox, github.com/tenx96/pretty-express,num_dependents_deps.dev:0 github.com/tenxcloud/node-kubernetes-client,num_dependents_deps.dev:2 github.com/tenxer/xcharts,num_dependents_deps.dev:0 @@ -1108562,6 +1128468,7 @@ github.com/tenxor/villaInvDatabase, github.com/tenyo/brbr,num_dependents_deps.dev:0 github.com/tenzer/explosion,num_dependents_deps.dev:0 github.com/tenzer/quirky,num_dependents_deps.dev:0 +github.com/tenzin1308/discord-notification, github.com/tenzinlhawang/lotide-,num_dependents_deps.dev:0 github.com/tenzinngodup/elk-py, github.com/tenzinngodup/node-jobscheduler,num_dependents_deps.dev:0 @@ -1108664,6 +1128571,7 @@ github.com/teovillanueva/dotenv-types,num_dependents_deps.dev:0 github.com/teovoinea/rocket_prometheus_logger,num_dependents_deps.dev:0 github.com/teovoinea/steganography,num_dependents_deps.dev:0 github.com/teoxoy/lua-in-js,num_dependents_deps.dev:0 +github.com/teoxoy/profile-readme-stats, github.com/teoxoy/sourcemap-stacktrace,num_dependents_deps.dev:0 github.com/tep/base-basecfg,num_dependents_deps.dev:0 github.com/tep/base-errors-errbag,num_dependents_deps.dev:0 @@ -1108795,6 +1128703,7 @@ github.com/terabyte3/repltable, github.com/terabytenz/grunt-static-snapshot,num_dependents_deps.dev:0 github.com/teracy-official/django-html5-boilerplate, github.com/teracyhq-incubator/logging-tracing,num_dependents_deps.dev:0 +github.com/teracyhq-incubator/secret-manager-action, github.com/teracyhq/flask-classful, github.com/teracyhq/httpie-jwt-auth, github.com/teracyhq/taxer,num_dependents_deps.dev:0 @@ -1108913,6 +1128822,7 @@ github.com/terence55/themes-switch,num_dependents_deps.dev:0 github.com/terenceYu1997/ytc-ltsn,num_dependents_deps.dev:0 github.com/terencehonles/shifter, github.com/terencehonles/xzip, +github.com/terencetcf/github-actions-lcov-minimum-coverage-checker, github.com/terenctbrobots/goliza,num_dependents_deps.dev:0 github.com/terenitup/terenitup-js-footer,num_dependents_deps.dev:0 github.com/terepon4ikus/create-react-app,num_dependents_deps.dev:0 @@ -1109018,6 +1128928,7 @@ github.com/terma/sql-on-json,num_dependents_deps.dev:0 github.com/termapps/enquirer,num_dependents_deps.dev:0 github.com/termapps/oclif,num_dependents_deps.dev:0 github.com/termbacktime/termbacktime,num_dependents_deps.dev:0 +github.com/termcolor/termcolor, github.com/termermc/rtflc,num_dependents_deps.dev:0 github.com/termermc/tcpacketprotocol,num_dependents_deps.dev:0 github.com/termermc/twine,num_dependents_deps.dev:0 @@ -1109156,6 +1129067,7 @@ github.com/termux/termux-create-package, github.com/termux/termux-packages,criticality_score:0.668050 github.com/termux/termux-root-packages,criticality_score:0.437790 github.com/termux/termux-styling,criticality_score:0.309790 +github.com/termux/upload-release-action, github.com/tern-tools/tern,criticality_score:0.452210 github.com/ternaknesia/qolbu,num_dependents_deps.dev:0 github.com/ternanet/amdshim,num_dependents_deps.dev:0 @@ -1109184,6 +1129096,7 @@ github.com/ternjs/tern,"criticality_score:0.473810,num_dependents_deps.dev:58" github.com/ternjs/tern_for_vim,criticality_score:0.315150 github.com/ternus/gametex-django, github.com/ternus/gametex-print, +github.com/teroahonen-vungle/tag-version-action, github.com/terodox/argument-contracts,num_dependents_deps.dev:4 github.com/terodox/aws-sns-subscriber,num_dependents_deps.dev:0 github.com/terodox/aws-xray-lambda-promise-subsegment,num_dependents_deps.dev:0 @@ -1109328,10 +1129241,13 @@ github.com/terraform-cdk-providers/cdktf-provider-kubernetes,num_dependents_deps github.com/terraform-cdk-providers/cdktf-provider-null,num_dependents_deps.dev:0 github.com/terraform-cdk-providers/cdktf-provider-project,num_dependents_deps.dev:0 github.com/terraform-compliance/cli,criticality_score:0.433110 +github.com/terraform-compliance/github_action, +github.com/terraform-docs/gh-actions, github.com/terraform-docs/plugin-sdk,num_dependents_deps.dev:0 github.com/terraform-docs/terraform-config-inspect,num_dependents_deps.dev:0 github.com/terraform-docs/terraform-docs,"criticality_score:0.493380,num_dependents_deps.dev:0" github.com/terraform-docs/tfdocs-format-template,num_dependents_deps.dev:0 +github.com/terraform-gitlab-modules/actions, github.com/terraform-google-modules/terraform-google-address,Google github.com/terraform-google-modules/terraform-google-bigquery,Google github.com/terraform-google-modules/terraform-google-cloud-dns,Google @@ -1109348,7 +1129264,9 @@ github.com/terraform-google-modules/terraform-google-vpn,Google github.com/terraform-great-modules/pyterraform, github.com/terraform-great-modules/python-terrafile, github.com/terraform-linters/magic-modules,num_dependents_deps.dev:0 +github.com/terraform-linters/setup-tflint, github.com/terraform-linters/tflint,"criticality_score:0.589910,num_dependents_deps.dev:0" +github.com/terraform-linters/tflint-load-config-action, github.com/terraform-linters/tflint-plugin-sdk,num_dependents_deps.dev:11 github.com/terraform-linters/tflint-ruleset-aws,num_dependents_deps.dev:5 github.com/terraform-linters/tflint-ruleset-azurerm,num_dependents_deps.dev:0 @@ -1109434,6 +1129352,7 @@ github.com/terraref/drone-pipeline, github.com/terraref/laser3d, github.com/terraref/stereo_rgb, github.com/terraref/terrautils, +github.com/terrarium-tf/github-action, github.com/terraskye/eh-redis,num_dependents_deps.dev:0 github.com/terraskye/go-tile,num_dependents_deps.dev:0 github.com/terrastackio/terrastack-cli,num_dependents_deps.dev:0 @@ -1109809,6 +1129728,8 @@ github.com/tesliker/iframe-responsify,num_dependents_deps.dev:0 github.com/teslitsky/mongoose-imei,num_dependents_deps.dev:0 github.com/tesni-manu/tm-parser,num_dependents_deps.dev:0 github.com/tesondraw/react-native-baidu-map-edited,num_dependents_deps.dev:0 +github.com/tespkg/action, +github.com/tespkg/actions-cache, github.com/tespkg/grpc-web-utils, github.com/tespkg/wouter-redux,num_dependents_deps.dev:0 github.com/tesq0/react-custom-scrollbars,num_dependents_deps.dev:0 @@ -1109870,6 +1129791,7 @@ github.com/tesseract-ocr/tesseract,criticality_score:0.646940 github.com/tesseract-ocr/tesstrain,criticality_score:0.394170 github.com/tesseract-one/Tesseract.js,num_dependents_deps.dev:4 github.com/tesseract-one/Tesseract.js-CLI,num_dependents_deps.dev:0 +github.com/tesseract-robotics/colcon-action, github.com/tesseract2048/tju-eweb, github.com/tesseractcollective/hasura-toolbox,num_dependents_deps.dev:0 github.com/tesseractcollective/serverless-toolbox, @@ -1109914,6 +1129836,9 @@ github.com/test-objects/test-objects-for-scala-jvm1.7,num_dependents_deps.dev:0 github.com/test-prof/test-prof,criticality_score:0.416400 github.com/test-rename-orig-new/test-rename-github-after-npm-publish, github.com/test-rename-orig/test-rename-github-after-npm-publish,num_dependents_deps.dev:0 +github.com/test-room-7/action-create-v-docs, +github.com/test-room-7/action-publish-release-drafts, +github.com/test-room-7/action-update-file, github.com/test-room-7/gulp-html-validate,num_dependents_deps.dev:0 github.com/test-runner-js/core,num_dependents_deps.dev:4 github.com/test-runner-js/counter,num_dependents_deps.dev:0 @@ -1109931,6 +1129856,7 @@ github.com/test-runner-js/web-runner,num_dependents_deps.dev:0 github.com/test-stack/harness,num_dependents_deps.dev:0 github.com/test-stack/helpers,num_dependents_deps.dev:0 github.com/test-stack/reporter,num_dependents_deps.dev:0 +github.com/test-summary/action, github.com/test-ui/react-ui,num_dependents_deps.dev:0 github.com/test-unit/test-unit,num_dependents_deps.dev:37 github.com/test-unit/test-unit-runner-tap,num_dependents_deps.dev:2 @@ -1109946,6 +1129872,7 @@ github.com/test3207/ptcr,num_dependents_deps.dev:0 github.com/test3207/queue-manager,num_dependents_deps.dev:0 github.com/test3207/wxwork-push,num_dependents_deps.dev:0 github.com/test8106/test8106,num_dependents_deps.dev:0 +github.com/testSynop/testProject, github.com/testabit/cordova-cli, github.com/testable/har-replay,num_dependents_deps.dev:0 github.com/testable/node-script-utils,num_dependents_deps.dev:0 @@ -1109954,6 +1129881,7 @@ github.com/testacc991/defold-projects,num_dependents_deps.dev:0 github.com/testament-team/testament-core-service,num_dependents_deps.dev:0 github.com/testament-team/testament-js-client,num_dependents_deps.dev:0 github.com/testament-team/testament-node-client,num_dependents_deps.dev:0 +github.com/testappio/github-action, github.com/testardr/bookstore_oauth-api,num_dependents_deps.dev:0 github.com/testardr/bookstore_users-api,num_dependents_deps.dev:0 github.com/testardr/filtering_golang,num_dependents_deps.dev:0 @@ -1110039,6 +1129967,7 @@ github.com/testem/testem,"criticality_score:0.501320,num_dependents_deps.dev:240 github.com/tester22/pimatic-lirc,num_dependents_deps.dev:0 github.com/tester22/pimatic-prowl,num_dependents_deps.dev:0 github.com/testerSunshine/12306,criticality_score:0.431610 +github.com/testeraio/junit-xml-slack-action, github.com/testerez/initial-css,num_dependents_deps.dev:0 github.com/testerez/initial-css-builder, github.com/testerez/ts-add-types,num_dependents_deps.dev:0 @@ -1110069,6 +1129998,7 @@ github.com/testground/sdk-go,num_dependents_deps.dev:1 github.com/testground/sync-service,num_dependents_deps.dev:0 github.com/testground/testground,num_dependents_deps.dev:0 github.com/testheader/newman-slack-reporter,num_dependents_deps.dev:0 +github.com/testhub-io/testhub-io.action, github.com/testica/a3hrgo-assistant,num_dependents_deps.dev:0 github.com/testify-project/build-tools,num_dependents_deps.dev:1001 github.com/testify-project/examples,num_dependents_deps.dev:0 @@ -1110076,6 +1130006,11 @@ github.com/testify-project/local-resources,num_dependents_deps.dev:0 github.com/testify-project/resources,num_dependents_deps.dev:0 github.com/testify-project/testify,num_dependents_deps.dev:3079 github.com/testify-project/virtual-resources,num_dependents_deps.dev:0 +github.com/testifysec/goreleaser-action, +github.com/testifysec/intoto-run-action, +github.com/testifysec/testify-run-action, +github.com/testifysec/witness-install-action, +github.com/testifysec/witness-run-action, github.com/testimio/DOMPath,num_dependents_deps.dev:2 github.com/testimio/appium-dom-utils,num_dependents_deps.dev:0 github.com/testimio/chrome-har,num_dependents_deps.dev:8 @@ -1110137,6 +1130072,7 @@ github.com/testingbot/tbwdjs,num_dependents_deps.dev:0 github.com/testingbot/testcafe-browser-provider-testingbot,num_dependents_deps.dev:0 github.com/testingbot/testingbot-api,num_dependents_deps.dev:4 github.com/testingbot/testingbot-cypress-cli,num_dependents_deps.dev:0 +github.com/testingbot/testingbot-tunnel-action, github.com/testingbot/testingbot-tunnel-launcher,num_dependents_deps.dev:6 github.com/testingbot/testingbot_ruby,num_dependents_deps.dev:0 github.com/testingbot/testingbotclient, @@ -1110163,12 +1130099,14 @@ github.com/testiumjs/testium-driver-sync,num_dependents_deps.dev:2 github.com/testiumjs/testium-driver-wd,num_dependents_deps.dev:0 github.com/testiumjs/testium-example-app,num_dependents_deps.dev:0 github.com/testiumjs/testium-mocha,num_dependents_deps.dev:2 +github.com/testkit-labs/action, github.com/testlabauto/local_selenium_pool, github.com/testlambdaprojectorg/backend,num_dependents_deps.dev:0 github.com/testlambdaprojectorg/polina-service,num_dependents_deps.dev:0 github.com/testleaf-software/devtools-selenium,num_dependents_deps.dev:0 github.com/testless/testless,num_dependents_deps.dev:0 github.com/testlink-metrics/testlink-api-client, +github.com/testmachine-ai/github-action, github.com/testmail-app/graphql-request,num_dependents_deps.dev:0 github.com/testml-lang/testml,num_dependents_deps.dev:0 github.com/testmycode/tmc-client-js,num_dependents_deps.dev:0 @@ -1110192,6 +1130130,7 @@ github.com/testphony/codeceptjs-assert, github.com/testphony/codeceptjs-http, github.com/testpilot/actionmailer-instyle,num_dependents_deps.dev:0 github.com/testpilot/testpilot-gem,num_dependents_deps.dev:0 +github.com/testpointcorp/Vansah-Action, github.com/testpossessed/angularfire-repo-factory,num_dependents_deps.dev:0 github.com/testpossessed/base64-to-file-cli,num_dependents_deps.dev:0 github.com/testpossessed/jsbuilder,num_dependents_deps.dev:0 @@ -1110250,11 +1130189,13 @@ github.com/testsmith-io/hsac-fitnesse-eyes,num_dependents_deps.dev:0 github.com/testsmith-io/webdriver-event-listeners,num_dependents_deps.dev:0 github.com/testsmith-io/webdriver-testng-archetype,num_dependents_deps.dev:0 github.com/testsmt/yinyang, +github.com/testspace-com/setup-testspace, github.com/teststack-git/VitaminE-Framework,num_dependents_deps.dev:0 github.com/teststaybaka/node-cascading,num_dependents_deps.dev:0 github.com/teststaybaka/observable_js,num_dependents_deps.dev:0 github.com/teststaybaka/selfage-cli,num_dependents_deps.dev:0 github.com/testthedocs/fetch,num_dependents_deps.dev:0 +github.com/testthedocs/github-pages-deploy-action, github.com/testthedocs/sphinx_redactor_theme, github.com/testthedocs/sphinxcontrib-exampleblock, github.com/testthedocs/ttd-lint,num_dependents_deps.dev:0 @@ -1110340,6 +1130281,7 @@ github.com/tetcoinjs/common,num_dependents_deps.dev:26 github.com/tetcoinjs/dev,num_dependents_deps.dev:0 github.com/tetcoinjs/ledger-tetcoin-js, github.com/tetcore/tetsy,num_dependents_deps.dev:0 +github.com/tete1030/safe-debugger-action, github.com/tetedacier/node-git-require,num_dependents_deps.dev:0 github.com/teterkin/gobyexamples,num_dependents_deps.dev:0 github.com/tetframework/awsful, @@ -1110392,6 +1130334,7 @@ github.com/tethys-ts/tethys-cdsapi, github.com/tethys-ts/tethys-data-models, github.com/tethys-ts/tethys-utils, github.com/tethys-ts/tethysts, +github.com/tethysapp/tethys-app-linter, github.com/tethysplatform/django_param, github.com/tethysplatform/param_persist, github.com/tethysplatform/tethys_dask_scheduler, @@ -1110408,6 +1130351,7 @@ github.com/tetotille/SCA, github.com/tetov/compas_convert, github.com/tetov/compas_rcf, github.com/tetra-fox/e621-id-downloader,num_dependents_deps.dev:0 +github.com/tetra-fox/ml-gen, github.com/tetrab/astenn,num_dependents_deps.dev:1 github.com/tetradice/hyperapp-chain,num_dependents_deps.dev:0 github.com/tetradice/hyperapp-component,num_dependents_deps.dev:0 @@ -1110537,6 +1130481,8 @@ github.com/teubanks/jsonapi_ruby,num_dependents_deps.dev:0 github.com/teukuhirzi/belajar-goji,num_dependents_deps.dev:0 github.com/teunlao/justy,num_dependents_deps.dev:0 github.com/teunmooij/apollo-schema-extend,num_dependents_deps.dev:0 +github.com/teunmooij/github-versioned-release, +github.com/teunmooij/yaml, github.com/teunvw14/pybrot, github.com/teuron/bareiss,num_dependents_deps.dev:0 github.com/teuron/json-validator,num_dependents_deps.dev:0 @@ -1110679,6 +1130625,7 @@ github.com/textbook/docx-jsx,num_dependents_deps.dev:0 github.com/textbook/express-msgpack,num_dependents_deps.dev:0 github.com/textbook/fauxauth,num_dependents_deps.dev:0 github.com/textbook/flash, +github.com/textbook/git-checkout-submodule-action, github.com/textbook/pyasq, github.com/textbrocken/letter,num_dependents_deps.dev:0 github.com/textbus/component-library-plugin,num_dependents_deps.dev:2 @@ -1110697,6 +1130644,9 @@ github.com/textile/python-textile, github.com/textile/textile-lang-com-website,num_dependents_deps.dev:0 github.com/textile/textile-mark,num_dependents_deps.dev:0 github.com/textileio/bidbot,num_dependents_deps.dev:0 +github.com/textileio/cloudflare-update-dnslink, +github.com/textileio/github-action-bucket-replicate, +github.com/textileio/github-action-buckets, github.com/textileio/go-buckets,num_dependents_deps.dev:0 github.com/textileio/go-ds-mongo,num_dependents_deps.dev:2 github.com/textileio/go-libp2p-kad-dht,num_dependents_deps.dev:0 @@ -1110908,10 +1130858,14 @@ github.com/tezmen/loging2telegram, github.com/tezmen/python-sms-activate-ru, github.com/tezmen/tg-magic, github.com/tezos-israel/tezos-react-hooks,num_dependents_deps.dev:0 +github.com/tezz-io/genREADME, +github.com/tezz-io/mongoexport, github.com/tf-coreml/tf-coreml,Google github.com/tf-encrypted/tf-encrypted,criticality_score:0.356350 github.com/tf-fed/ag-grid, github.com/tf-fed/ag-grid-react, +github.com/tf-gha/autoplan, +github.com/tf-gha/chatops, github.com/tf-seq2seq/tf-seq2seq,Google github.com/tf/sassdoc-theme-pageflow,num_dependents_deps.dev:0 github.com/tf0101/vue-script-insert, @@ -1110944,7 +1130898,9 @@ github.com/tfarras/nestjs-typeorm-pagination,num_dependents_deps.dev:0 github.com/tfaticone/goto-js,num_dependents_deps.dev:0 github.com/tfaticone/scrolly,num_dependents_deps.dev:0 github.com/tfaucett/average_decision_ordering, +github.com/tfausak/brittany-action, github.com/tfausak/eslint-config-taylorfausak,num_dependents_deps.dev:0 +github.com/tfausak/hlint-action, github.com/tfbrother/bolt,num_dependents_deps.dev:0 github.com/tfcb93/subtitle-data-parser,num_dependents_deps.dev:0 github.com/tfcloud-go/config,num_dependents_deps.dev:0 @@ -1110994,6 +1130950,7 @@ github.com/tfennelly/tokenfield-detached,num_dependents_deps.dev:0 github.com/tfennelly/typeahead-detached, github.com/tferega/process-runner,num_dependents_deps.dev:0 github.com/tferega/selenate,num_dependents_deps.dev:0 +github.com/tferreira/matterfy, github.com/tferreira/slackron, github.com/tffe-team/rKit,num_dependents_deps.dev:0 github.com/tfff1OFFICIAL/PythonUnpack200, @@ -1111019,6 +1130976,7 @@ github.com/tfinjs/aws-lambda-packager,num_dependents_deps.dev:0 github.com/tfinjs/cli,num_dependents_deps.dev:0 github.com/tfinjs/dependency-graph,num_dependents_deps.dev:0 github.com/tfinnell/node-returnpathmm, +github.com/tfisicaro/commit-email-validation-action, github.com/tfiwm/angularjs-distribute-transclude,num_dependents_deps.dev:0 github.com/tfiwm/grunt-json-server,num_dependents_deps.dev:0 github.com/tfiwm/jsdoc-loader,num_dependents_deps.dev:0 @@ -1111053,6 +1131011,8 @@ github.com/tflori/angular2-translator,num_dependents_deps.dev:0 github.com/tflr/groupie-tracker,num_dependents_deps.dev:0 github.com/tflx/content-observer, github.com/tflx/state-machine, +github.com/tfmake/tfmake-action, +github.com/tfmake/tfmake-install-action, github.com/tfmalt/node-cron-emitter,num_dependents_deps.dev:4 github.com/tfmalt/node-sbanken,num_dependents_deps.dev:0 github.com/tfmalt/power-meter-monitor,num_dependents_deps.dev:0 @@ -1111118,6 +1131078,7 @@ github.com/tfrere/colours-in-culture,num_dependents_deps.dev:0 github.com/tfriedel/python-lightify, github.com/tfriedrichs/dicebot,num_dependents_deps.dev:0 github.com/tfriem/svn-helper,num_dependents_deps.dev:0 +github.com/tfromme/ticket-in-pr-title-action, github.com/tfrommen/grunt-delegate,num_dependents_deps.dev:0 github.com/tfrydrychewicz/aurelia-flux,num_dependents_deps.dev:0 github.com/tfsec/tfsec,"criticality_score:0.535730,num_dependents_deps.dev:2" @@ -1111177,6 +1131138,7 @@ github.com/tgallant/db2jsonschema,num_dependents_deps.dev:0 github.com/tgallant/sphinx-json-schema-formatter, github.com/tgalopin/html-sanitizer,criticality_score:0.337980 github.com/tgalopin/puli.js,num_dependents_deps.dev:0 +github.com/tgamauf/cypress-parallel, github.com/tgamauf/gitsup, github.com/tgamauf/onetimesecret-api,num_dependents_deps.dev:0 github.com/tgamla/ultimate-aggregator,num_dependents_deps.dev:0 @@ -1111238,6 +1131200,7 @@ github.com/tgedr/pipeline-source, github.com/tgedr/store,num_dependents_deps.dev:0 github.com/tgenovese/eslint-config-tge,num_dependents_deps.dev:0 github.com/tgensol/cordova-plugin-changeicon,num_dependents_deps.dev:0 +github.com/tgeorgel/trellis-action, github.com/tgerk/graphql-middleware-typed-arguments,num_dependents_deps.dev:0 github.com/tgermain/logstash-filter-docker_metadata,num_dependents_deps.dev:0 github.com/tget4/nexx-garage-sdk, @@ -1111465,6 +1131428,9 @@ github.com/tgxhx/babel-plugin-webpack-async-module-name,num_dependents_deps.dev: github.com/tgxhx/react-image-zooms,num_dependents_deps.dev:0 github.com/tgxhx/webpack-ftp-upload-plugin,num_dependents_deps.dev:0 github.com/tgxpuisb/generator-library,num_dependents_deps.dev:0 +github.com/tgymnich/fork-sync, +github.com/tgymnich/publish-github-action, +github.com/tgymnich/setup-swift, github.com/th-ch/yamux-js,num_dependents_deps.dev:0 github.com/th-ch/youtube-music,criticality_score:0.385610 github.com/th-ko/autocoerce,num_dependents_deps.dev:0 @@ -1111477,8 +1131443,10 @@ github.com/th0r/eslint-config-th0r-react,num_dependents_deps.dev:0 github.com/th0r/npm-upgrade,num_dependents_deps.dev:4 github.com/th0r/webpack-bundle-analyzer,num_dependents_deps.dev:22 github.com/th0rex/libcapstone-sys,num_dependents_deps.dev:0 +github.com/th0th/kubernetes-redeploy-workload, github.com/th0th/metu-cafeteria-menu, github.com/th0th/metu-menu,num_dependents_deps.dev:0 +github.com/th0th/notify-discord, github.com/th0th/rancher-redeploy-workload,num_dependents_deps.dev:0 github.com/th0th/react-native-unity-ads, github.com/th0usand/tools,num_dependents_deps.dev:0 @@ -1111529,6 +1131497,7 @@ github.com/th317erd/eslint-plugin-analyze,num_dependents_deps.dev:0 github.com/th317erd/eslint-plugin-extra-syntax,num_dependents_deps.dev:0 github.com/th317erd/gh-wiki-gen,num_dependents_deps.dev:0 github.com/th317erd/janap,num_dependents_deps.dev:0 +github.com/th3c0d3br34ker/github-readme-info, github.com/th3dark0n3/babel-plugin-transform-es2015-modules-simple-destructure-amd,num_dependents_deps.dev:0 github.com/th3g00dc0d3r/codebank,num_dependents_deps.dev:0 github.com/th3james/BackboneDiorama,num_dependents_deps.dev:0 @@ -1111584,6 +1131553,7 @@ github.com/thadchet/linewallet,num_dependents_deps.dev:0 github.com/thadclay/prepush-hook,num_dependents_deps.dev:0 github.com/thaddeusjiang/koa-apiai-parser,num_dependents_deps.dev:0 github.com/thadeu/checker-email, +github.com/thadeu/easily-dokku-action, github.com/thadeu/logger-storage,num_dependents_deps.dev:0 github.com/thadeu/network-informations,num_dependents_deps.dev:0 github.com/thadeu/vscode-run-rspec-file,num_dependents_deps.dev:0 @@ -1111662,9 +1131632,11 @@ github.com/thaicodingdev/roxi-plugin-tailwindcss,num_dependents_deps.dev:0 github.com/thaicodingdev/svelte-vite-tailwind,num_dependents_deps.dev:0 github.com/thaicodingdev/tcgit,num_dependents_deps.dev:0 github.com/thailonlucas/react-vmix-components,num_dependents_deps.dev:0 +github.com/thaim/redmine-integration-action, github.com/thaim/weekdone-cli-ruby,num_dependents_deps.dev:0 github.com/thainam83vn/api-generator,num_dependents_deps.dev:0 github.com/thainamhoang/expression-processor,num_dependents_deps.dev:0 +github.com/thaind0/envfile, github.com/thaindq/mui-table, github.com/thainole/LIM014-mdlinks, github.com/thaiphamquoc/kafka-python, @@ -1111683,6 +1131655,7 @@ github.com/thaitanloi365/govvv,num_dependents_deps.dev:0 github.com/thaitanloi365/melody,num_dependents_deps.dev:0 github.com/thaithanhtung/screen-effect, github.com/thaithien001/verify_box, +github.com/thaitype/actions-switch-case, github.com/thaivx/csl-validator,num_dependents_deps.dev:0 github.com/thaiwash/avros-node,num_dependents_deps.dev:0 github.com/thaiwash/put_pixel,num_dependents_deps.dev:0 @@ -1111743,6 +1131716,7 @@ github.com/thalesrc/ng-utils,num_dependents_deps.dev:0 github.com/thalesrc/scroll-manager,num_dependents_deps.dev:0 github.com/thalestas/esbmc-wr, github.com/thalesvb/generator-fiori-launchpad-plugin,num_dependents_deps.dev:0 +github.com/thalesvon/ecr-login, github.com/thaliproject/Thali_CordovaPlugin, github.com/thaliproject/node-gyp-counter,num_dependents_deps.dev:0 github.com/thaliproject/node_acl_levelup,num_dependents_deps.dev:0 @@ -1111760,6 +1131734,7 @@ github.com/thallada/icosahedron,num_dependents_deps.dev:0 github.com/thallada/skyrim-cell-dump,num_dependents_deps.dev:0 github.com/thallesBueno/JSFLAP,num_dependents_deps.dev:0 github.com/thallesisnipe/casadocodigo-go,num_dependents_deps.dev:0 +github.com/thalleslmF/actions-license, github.com/thallisonraniere/goarea,num_dependents_deps.dev:0 github.com/thallisonraniere/sistema,num_dependents_deps.dev:0 github.com/thallium/cp_parse,num_dependents_deps.dev:0 @@ -1111791,6 +1131766,7 @@ github.com/thamaji/devcontainer-compose,num_dependents_deps.dev:0 github.com/thamaji/devcontainer-docker,num_dependents_deps.dev:0 github.com/thamaraiselvam/exercism,num_dependents_deps.dev:0 github.com/thamcheongkit/react-lottie,num_dependents_deps.dev:0 +github.com/thamdavies/action-bundler-audit, github.com/thameera/jsbond,num_dependents_deps.dev:0 github.com/thameera/vimv,criticality_score:0.348130 github.com/thami618/learning-git,num_dependents_deps.dev:0 @@ -1111817,6 +1131793,8 @@ github.com/thammin/mmle-storage,num_dependents_deps.dev:0 github.com/thammin/node-bpg,num_dependents_deps.dev:0 github.com/thammin/pixi-hammer,num_dependents_deps.dev:0 github.com/thammin/quick-find,num_dependents_deps.dev:0 +github.com/thamognya/auto-commit, +github.com/thamognya/mirror-git-repo, github.com/thamtech/gwt-pojobuilder,num_dependents_deps.dev:0 github.com/thamtech/gwty-leaflet,num_dependents_deps.dev:0 github.com/thamthee/algorithm-golang,num_dependents_deps.dev:0 @@ -1111893,6 +1131871,7 @@ github.com/thangbn/smart-redis,num_dependents_deps.dev:0 github.com/thangchung/awesome-dotnet-core,criticality_score:0.399200 github.com/thangchung/clean-code-dotnet,criticality_score:0.343970 github.com/thangiswho/schema-faker,num_dependents_deps.dev:0 +github.com/thangit93/beanstalk-actions, github.com/thangl3/hexo-asset-revisioning,num_dependents_deps.dev:0 github.com/thangl3/sqlstringify,num_dependents_deps.dev:0 github.com/thanglongnamnay/Really-Simple-HTTP-Server,num_dependents_deps.dev:0 @@ -1112032,6 +1132011,7 @@ github.com/thani-sh/kommando,num_dependents_deps.dev:0 github.com/thanikc/INetCacheCleaner,num_dependents_deps.dev:0 github.com/thank-you-github/thank-you-github,criticality_score:0.436960 github.com/thankjava/auto_deploy_cmd,num_dependents_deps.dev:0 +github.com/thanksd/hello-action, github.com/thanksmister/wallpanel-android,criticality_score:0.424900 github.com/thanku/counter-badge,num_dependents_deps.dev:0 github.com/thanku/impact-widget,num_dependents_deps.dev:0 @@ -1112242,6 +1132222,7 @@ github.com/thatisuday/ecom-product-zoom-modal,num_dependents_deps.dev:0 github.com/thatisuday/file-checksum,num_dependents_deps.dev:0 github.com/thatisuday/fuse-js-next,num_dependents_deps.dev:0 github.com/thatisuday/gitmeet-template,num_dependents_deps.dev:0 +github.com/thatisuday/go-cross-build, github.com/thatisuday/indian-cities-database,num_dependents_deps.dev:0 github.com/thatisuday/indian-pincode-database,num_dependents_deps.dev:0 github.com/thatisuday/js-plugin-starter,num_dependents_deps.dev:0 @@ -1112295,6 +1132276,8 @@ github.com/thatsKevinJain/string-cosine-similarity, github.com/thatskriptkid/apk-infector-archinome-poc,num_dependents_deps.dev:0 github.com/thatsmrtalbot/async,num_dependents_deps.dev:0 github.com/thatsmrtalbot/observer,num_dependents_deps.dev:0 +github.com/thatsnotamuffin/helm-action, +github.com/thatsnotamuffin/muffin-aws-kubectl, github.com/thatsprettyfaroutman/echoascii,num_dependents_deps.dev:0 github.com/thatsprettyfaroutman/simple-covid19-json-fetcher, github.com/thatstrangecoder/go-steam,num_dependents_deps.dev:0 @@ -1112402,6 +1132385,7 @@ github.com/thcheng/angular-plus-materialize,num_dependents_deps.dev:0 github.com/thchia/react-oidc,num_dependents_deps.dev:0 github.com/thcipriani/sshecret, github.com/thclab/sai,num_dependents_deps.dev:0 +github.com/thclark/coolname-generator-action, github.com/thclark/react-redux-uploader, github.com/thclark/rstcloth, github.com/thclark/sphinx-charts, @@ -1112458,6 +1132442,7 @@ github.com/the-allanc/greyupnp, github.com/the-allanc/machinerry, github.com/the-allanc/pyinthesky, github.com/the-allanc/pyriform, +github.com/the-baaron/comment-on-pr-delete, github.com/the-bailiff/bailiff,num_dependents_deps.dev:0 github.com/the-bass/torch_testing, github.com/the-bcflow/bcflow-template-library,num_dependents_deps.dev:0 @@ -1112484,8 +1132469,11 @@ github.com/the-code-genin/vue-nanobar,num_dependents_deps.dev:0 github.com/the-code-monkey/website-core-ecommerce,num_dependents_deps.dev:0 github.com/the-codepunker/audio-sync-with-text,num_dependents_deps.dev:0 github.com/the-codery/grunt-attractions,num_dependents_deps.dev:0 +github.com/the-coding-turtle/ga-file-list, +github.com/the-coding-turtle/ga-yaml-parser, github.com/the-collab-lab/shopping-list-utils,num_dependents_deps.dev:0 github.com/the-commons-project/chcs-python-client, +github.com/the-commons-project/terragrunt-github-actions, github.com/the-conceptionist/discordrpg,num_dependents_deps.dev:0 github.com/the-conceptionist/node-kitsu,num_dependents_deps.dev:0 github.com/the-control-group/authx,num_dependents_deps.dev:10 @@ -1112644,6 +1132632,8 @@ github.com/the-gss/gss2css,num_dependents_deps.dev:0 github.com/the-gss/preparser,num_dependents_deps.dev:2 github.com/the-gss/vfl-compiler,num_dependents_deps.dev:0 github.com/the-gss/vgl-compiler,num_dependents_deps.dev:0 +github.com/the-guild-org/changesets-dependencies-action, +github.com/the-guild-org/changesets-snapshot-action, github.com/the-guild-org/the-guild-docs,num_dependents_deps.dev:0 github.com/the-haive/search-client, github.com/the-hardy-boys/trinity-hymnal-data,num_dependents_deps.dev:0 @@ -1112889,6 +1132879,7 @@ github.com/the-markup/blacklight-collector, github.com/the-medium/ledger-parser,num_dependents_deps.dev:0 github.com/the-mesh-for-data/helm,num_dependents_deps.dev:0 github.com/the-metabolic-disassembler/metadisassembler, +github.com/the-mintable/aws-login, github.com/the-mod/impftermine,num_dependents_deps.dev:0 github.com/the-monochord/AudioParam.getValueAtTime,num_dependents_deps.dev:0 github.com/the-monochord/cancelandholdattime-polyfill,num_dependents_deps.dev:0 @@ -1112953,6 +1132944,7 @@ github.com/the-road-to-learn-react/use-with-viewbox,num_dependents_deps.dev:0 github.com/the-robear/react-virgil,num_dependents_deps.dev:0 github.com/the-robot-factory/borsh-go,num_dependents_deps.dev:0 github.com/the-robot-factory/solarians-discord-bot,num_dependents_deps.dev:0 +github.com/the-robots/gke-podinfo-cluster, github.com/the-rocci-project/rOCCI-core,num_dependents_deps.dev:18 github.com/the-ruffian/ruffian_test, github.com/the-scouts/assistants, @@ -1113070,6 +1133062,7 @@ github.com/the-world-io/gulp-task-when,num_dependents_deps.dev:0 github.com/the-wrench-io/hdes,num_dependents_deps.dev:305 github.com/the-wrench-io/hdes-ide,num_dependents_deps.dev:0 github.com/the-wrench-io/hdes-layout,num_dependents_deps.dev:0 +github.com/the-wright-jamie/Update-PR-Info-Action, github.com/the-wrong-guy/img-to-base64,num_dependents_deps.dev:0 github.com/the-wrong-guy/read-more-more,num_dependents_deps.dev:0 github.com/the-yadu/tinyjson,num_dependents_deps.dev:0 @@ -1113404,6 +1133397,7 @@ github.com/theThings/thethingsio-mqtt-node,num_dependents_deps.dev:0 github.com/theTrueCaptian/DataVizReactTable, github.com/theVolary/feather-config,num_dependents_deps.dev:0 github.com/theWAM/timelib, +github.com/theWhiteWulfy/gatsby-cli-github-action, github.com/theXYZT/pulsarbat, github.com/theY4Kman/bakkes-rcon, github.com/theY4Kman/dcrf-client,num_dependents_deps.dev:0 @@ -1113471,6 +1133465,7 @@ github.com/theablkz/storybook,num_dependents_deps.dev:0 github.com/theablkz/ui-kit,num_dependents_deps.dev:0 github.com/theabraham/growly,num_dependents_deps.dev:57960 github.com/theabuseproject/YTSAPI, +github.com/theaccordance/balena-push, github.com/theaccordance/card-dealer,num_dependents_deps.dev:0 github.com/theaccordance/express-well-known,num_dependents_deps.dev:0 github.com/theacodes/cmarkgfm, @@ -1113501,6 +1133496,9 @@ github.com/theahmadzai/js-validation,num_dependents_deps.dev:0 github.com/theahmadzai/mathlib,num_dependents_deps.dev:0 github.com/theahmadzai/repture,num_dependents_deps.dev:0 github.com/theahmadzai/stylelint-config-immortal,num_dependents_deps.dev:0 +github.com/theahura/depcheck-action, +github.com/theahura/pip-compile-diff-action, +github.com/theahura/pytype-action, github.com/theahura/socket-wrapper, github.com/theaj/cloudflare-ip-updater,num_dependents_deps.dev:0 github.com/theajack/cnchar,"criticality_score:0.313180,num_dependents_deps.dev:24" @@ -1113662,6 +1133660,7 @@ github.com/theaqua/redux-logger,num_dependents_deps.dev:1010 github.com/thearavind/ng-caps-lock,num_dependents_deps.dev:0 github.com/thearavind/reactive-fetch,num_dependents_deps.dev:0 github.com/thearavindhs/go-learn-by-doing,num_dependents_deps.dev:0 +github.com/thearc-hq/lighthouse-ci-action, github.com/thearcadiagroup/fironeutrino,num_dependents_deps.dev:0 github.com/thearcadiagroup/firoutil,num_dependents_deps.dev:0 github.com/thearcadiagroup/firowallet,num_dependents_deps.dev:2 @@ -1113916,6 +1133915,7 @@ github.com/thebiltheory/react-native-number-please,num_dependents_deps.dev:0 github.com/thebinary/go-radmin,num_dependents_deps.dev:0 github.com/thebinary/ported,num_dependents_deps.dev:0 github.com/thebinary/teasysnmp, +github.com/thebinaryfelix/check-file-existence-action, github.com/thebinaryfelix/create-iron-api,num_dependents_deps.dev:0 github.com/thebinarypenguin/droll,num_dependents_deps.dev:0 github.com/thebinarypenguin/raml-cop,num_dependents_deps.dev:0 @@ -1113978,7 +1133978,9 @@ github.com/theblueforest/kiwi-runtime-vscode, github.com/thebluemagician/go-rest-scrape,num_dependents_deps.dev:0 github.com/theblueski/packagetest,num_dependents_deps.dev:0 github.com/thebmw/react-ribbonjs,num_dependents_deps.dev:0 +github.com/theboi/github-update-readme, github.com/thebonelessone/github-upload,num_dependents_deps.dev:0 +github.com/thebongy/version-check, github.com/theboolean/visitor-info,num_dependents_deps.dev:0 github.com/thebopshoobop/create-react-app,num_dependents_deps.dev:0 github.com/thebopshoobop/iter-range,num_dependents_deps.dev:0 @@ -1114106,6 +1134108,9 @@ github.com/thecallr/sdk-go,num_dependents_deps.dev:0 github.com/thecameraguy/PassThroughBufferToggle,num_dependents_deps.dev:0 github.com/thecampagnards/jq-api,num_dependents_deps.dev:0 github.com/thecampagnards/mailer-api,num_dependents_deps.dev:0 +github.com/thecanadianroot/action-setup-google-java-format, +github.com/thecanadianroot/open-pull-request-action, +github.com/thecanadianroot/sonarcloud-summary-action, github.com/thecarebot/carebot-tracker,num_dependents_deps.dev:0 github.com/thecassion/mdbreactjs,num_dependents_deps.dev:0 github.com/thecassion/react-material-ui-table,num_dependents_deps.dev:0 @@ -1114133,6 +1134138,8 @@ github.com/thecheapestpixels/panda3d-assetcoop, github.com/thecheapestpixels/panda3d-logos, github.com/thecheckerco/thechecker-sdk-node,num_dependents_deps.dev:0 github.com/thechemis/xls,num_dependents_deps.dev:0 +github.com/thechetantalwar/slack-notify, +github.com/thechetantalwar/teams-notify, github.com/thechinedu/prisma-prime, github.com/thechiran/golang-tutorial,num_dependents_deps.dev:0 github.com/thechiselgroup/nn-activations,num_dependents_deps.dev:0 @@ -1114172,6 +1134179,7 @@ github.com/theclinician/react-dc, github.com/theclinician/selectors,num_dependents_deps.dev:0 github.com/thecloudgarage/cloudomate, github.com/thecloudgarage/cloudomate-backend-code, +github.com/thecloudlore/explain-diff, github.com/thecloudmethod/observedb-client,num_dependents_deps.dev:0 github.com/thecloudmethod/observedb-server,num_dependents_deps.dev:0 github.com/thecloudmethod/query-builder,num_dependents_deps.dev:0 @@ -1114223,6 +1134231,7 @@ github.com/thecodejs/eslint-rules,num_dependents_deps.dev:0 github.com/thecodemill/bootstrap-ie8,num_dependents_deps.dev:0 github.com/thecodemine/formwizard,num_dependents_deps.dev:0 github.com/thecodemint/macroz,num_dependents_deps.dev:0 +github.com/thecodemonkey/action-get-gradle-version, github.com/thecodenebula/cypher-fluent-js,num_dependents_deps.dev:0 github.com/thecodepixi/pandera, github.com/thecodepixi/split-it, @@ -1114300,6 +1134309,7 @@ github.com/thecreazy/siteaudit,num_dependents_deps.dev:0 github.com/thecrius/vue-fontawesomeicons,num_dependents_deps.dev:0 github.com/thecrius/vue-weathericons,num_dependents_deps.dev:0 github.com/thecrogers/cartify-js,num_dependents_deps.dev:0 +github.com/thecrux4020/snyk-list-projects-action, github.com/thecsea/heroku-env,num_dependents_deps.dev:0 github.com/thecsea/jquery-stickytabs,num_dependents_deps.dev:0 github.com/thecsea/json-images-saver,num_dependents_deps.dev:0 @@ -1114347,6 +1134357,8 @@ github.com/thedataincubator/jupyterhub-hashauthenticator, github.com/thedatalife/stylelint-encourage-vertical-rhythm,num_dependents_deps.dev:0 github.com/thedatashed/xlsxreader,num_dependents_deps.dev:0 github.com/thedatepicker/thedatepicker,num_dependents_deps.dev:0 +github.com/thedave42/generate-dependencies-csv-action, +github.com/thedave42/generate-dependency-alerts-csv-action, github.com/thedave42/node-fluent-ffmpeg,num_dependents_deps.dev:0 github.com/thedavecollins/ExEmGel, github.com/thedavefulton/create-node-cli,num_dependents_deps.dev:0 @@ -1114356,6 +1134368,8 @@ github.com/thedaviddias/HTMLHint,num_dependents_deps.dev:104 github.com/thedaviddias/eslint-config-thedaviddias, github.com/thedaviddias/gatsby-source-notion-article,num_dependents_deps.dev:0 github.com/thedaviddias/gulp-json-concat, +github.com/thedaviddias/publish-release-info-action, +github.com/thedaviddias/workflow-origin-action, github.com/thedavidmeister/hoplon-elem-lib,num_dependents_deps.dev:0 github.com/thedavidmeister/javelin-timesync,num_dependents_deps.dev:0 github.com/thedayofthedoctor/aan, @@ -1114401,6 +1134415,7 @@ github.com/thedevsaddam/cobra,num_dependents_deps.dev:0 github.com/thedevsaddam/dive,num_dependents_deps.dev:0 github.com/thedevsaddam/envconfig,num_dependents_deps.dev:0 github.com/thedevsaddam/govalidator,criticality_score:0.340500 +github.com/thedevsaddam/tweet-release, github.com/thedevsaddam/worker,num_dependents_deps.dev:0 github.com/thedevsir/cachifyrest,num_dependents_deps.dev:0 github.com/thedevtop/ssm,num_dependents_deps.dev:0 @@ -1114678,6 +1134693,7 @@ github.com/thefrenchhouse/debugging-decorators,num_dependents_deps.dev:0 github.com/thefrenchhouse/spotify-oauth-workflow,num_dependents_deps.dev:0 github.com/thefreshvince/package-extractor,num_dependents_deps.dev:0 github.com/thefriendlybeasts/eslint-config-thefriendlybeasts,num_dependents_deps.dev:0 +github.com/thefringeninja/action-minver, github.com/thefron/dust-rails,num_dependents_deps.dev:0 github.com/thefron/jaeheegeo,num_dependents_deps.dev:0 github.com/thefrontender/netlify-cms-editor-component-media-file-link,num_dependents_deps.dev:0 @@ -1114706,6 +1134722,7 @@ github.com/thefrontside/microstates,criticality_score:0.318210 github.com/thefrontside/simulacrum,num_dependents_deps.dev:4 github.com/thefrozenfire/dune-analytics, github.com/thefrshop/tfsm-formset,num_dependents_deps.dev:0 +github.com/thefrustrateddev/vue-deploy-github-pages, github.com/thefryscorer/hackdown,num_dependents_deps.dev:0 github.com/thefumbduck/betterwinreg, github.com/thefunbots/react-native-pointer-interactions,num_dependents_deps.dev:0 @@ -1114716,6 +1134733,7 @@ github.com/thefutureisours/base62,num_dependents_deps.dev:0 github.com/thefutureisours/meteor,num_dependents_deps.dev:0 github.com/thefutureshock/basic-google-bot,num_dependents_deps.dev:0 github.com/thefynx/hubot-funbox,num_dependents_deps.dev:0 +github.com/thegabriele97/dockercompose-health-action, github.com/thegaiasystem/scum,num_dependents_deps.dev:0 github.com/thegalactic/py-galactic, github.com/thegamehers/eslint-config,num_dependents_deps.dev:0 @@ -1114899,6 +1134917,8 @@ github.com/thehandsomepanther/first-letter,num_dependents_deps.dev:0 github.com/thehandsomepanther/jet,num_dependents_deps.dev:0 github.com/thehandsomepanther/slag,num_dependents_deps.dev:0 github.com/thehandsomepanther/title-sort,num_dependents_deps.dev:0 +github.com/thehanimo/ocr-bot, +github.com/thehanimo/pr-title-checker, github.com/thehanimo/react-native-audiokit,num_dependents_deps.dev:0 github.com/thehanimo/react-native-modal-dropdown-deprecated-support,num_dependents_deps.dev:0 github.com/thehanimo/react-native-pull-refresh,num_dependents_deps.dev:0 @@ -1115020,6 +1135040,7 @@ github.com/theideasmith/objective-fs,num_dependents_deps.dev:0 github.com/theideasmith/plasmidjs,num_dependents_deps.dev:0 github.com/theideasmith/pretty-path,num_dependents_deps.dev:0 github.com/theideasmith/py2sh, +github.com/theikkila/aws-ecr-action, github.com/theikkila/node-paytrail,num_dependents_deps.dev:0 github.com/theikkila/postinumerot,num_dependents_deps.dev:0 github.com/theiliad/interpolateJS,num_dependents_deps.dev:0 @@ -1115182,6 +1135203,8 @@ github.com/thejayhaykid/vuer,num_dependents_deps.dev:0 github.com/thejayneo/cli-app,num_dependents_deps.dev:0 github.com/thejcannon/mypy-typing-asserts, github.com/thejefe/hubot-aww, +github.com/thejeff77/action-bump-semver, +github.com/thejeff77/action-push-tag, github.com/thejeff77/property-resolver-js, github.com/thejellyfish/binary-search,num_dependents_deps.dev:0 github.com/thejellyfish/feather-icons,num_dependents_deps.dev:0 @@ -1115200,6 +1135223,7 @@ github.com/thejerf/abtime,num_dependents_deps.dev:0 github.com/thejerf/gojsonschema,num_dependents_deps.dev:0 github.com/thejerf/markdir,num_dependents_deps.dev:0 github.com/thejerf/suture,"criticality_score:0.446460,num_dependents_deps.dev:64" +github.com/thejerrybao/setup-swap-space, github.com/thejessleigh/betterreads, github.com/thejff/codemapper,num_dependents_deps.dev:0 github.com/thejh/audionode,num_dependents_deps.dev:0 @@ -1115316,6 +1135340,7 @@ github.com/thekakodkar/Mapper, github.com/thekana/conform,num_dependents_deps.dev:0 github.com/thekarangoel/TPB, github.com/thekarel/api-schema-conv, +github.com/thekarel/twist-notify, github.com/thekashey/detect-node,num_dependents_deps.dev:5188 github.com/thekashey/gulp-html-prefix,num_dependents_deps.dev:0 github.com/thekashey/hoist-react-statics,num_dependents_deps.dev:16 @@ -1115324,6 +1135349,8 @@ github.com/thekashey/react-clientside-effect,num_dependents_deps.dev:5980 github.com/thekashey/react-facade,num_dependents_deps.dev:0 github.com/thekashey/restate,num_dependents_deps.dev:8 github.com/thekashey/use-sidecar, +github.com/thekaushikls/make-ghpy, +github.com/thekaushikls/python-hello-world-action, github.com/thekelvinliu/cloud-blaze,num_dependents_deps.dev:0 github.com/thekelvinliu/country-code-emoji,num_dependents_deps.dev:0 github.com/thekelvinliu/generator-es6-express,num_dependents_deps.dev:0 @@ -1115403,6 +1135430,7 @@ github.com/thelac/trump.js,num_dependents_deps.dev:0 github.com/thelak/videojs-resolution-switcher-v7,num_dependents_deps.dev:0 github.com/thelak/vue-videojs7,num_dependents_deps.dev:0 github.com/thelamer/nanocurrency-js,num_dependents_deps.dev:0 +github.com/thelang-io/setup-the, github.com/thelark/hyperchain-go-sdk,num_dependents_deps.dev:0 github.com/thelarkinn/virtual-dependency-loader,num_dependents_deps.dev:0 github.com/thelarkinn/webpack-developer-kit,num_dependents_deps.dev:0 @@ -1115431,6 +1135459,7 @@ github.com/thelbouffi/mastercard-validation,num_dependents_deps.dev:0 github.com/thelbouffi/visa-validation,num_dependents_deps.dev:0 github.com/theldoria/lg-lcd,num_dependents_deps.dev:0 github.com/thele0/goutils,num_dependents_deps.dev:0 +github.com/theleagueof/fontship, github.com/theleagueof/league-gothic,criticality_score:0.311150 github.com/theleagueof/raleway,criticality_score:0.338910 github.com/theleapofcode/json-to-json-transformer,num_dependents_deps.dev:0 @@ -1115473,6 +1135502,7 @@ github.com/thelinuxlich/botkit-storage-rethinkdb,num_dependents_deps.dev:0 github.com/thelinuxlich/gulp-asset-pipeline,num_dependents_deps.dev:0 github.com/thelinuxlich/gulp-email-marketing-helper,num_dependents_deps.dev:0 github.com/thelinuxlich/vue-dashing-js,num_dependents_deps.dev:0 +github.com/thelionx/AppCenter-Github-Action, github.com/thelitdeveloper/imageresizer,num_dependents_deps.dev:0 github.com/thelittlebigbot/ohmyscan,num_dependents_deps.dev:0 github.com/thelittleblacksmith/lotide,num_dependents_deps.dev:0 @@ -1115520,6 +1135550,7 @@ github.com/thelounge/thelounge-theme-classic,num_dependents_deps.dev:0 github.com/thelounge/thelounge-theme-crypto,num_dependents_deps.dev:0 github.com/thelounge/thelounge-theme-solarized,num_dependents_deps.dev:0 github.com/thelounge/thelounge-theme-zenburn,num_dependents_deps.dev:0 +github.com/thelovekesh/phpcs-ci, github.com/thelsandroantunes/testcamerav1,num_dependents_deps.dev:0 github.com/thelsing/knx, github.com/thelucid/ruby_matter,num_dependents_deps.dev:0 @@ -1115592,6 +1135623,7 @@ github.com/themarkappleby/guidedog,num_dependents_deps.dev:0 github.com/themarkappleby/motext,num_dependents_deps.dev:0 github.com/themarkappleby/webpack-for-dummies, github.com/themarkfullton/transformation-api-v2,num_dependents_deps.dev:0 +github.com/themarkwill/coolify-actions, github.com/themarshallproject/klaxon,criticality_score:0.505640 github.com/themarshalsgroup/icons,num_dependents_deps.dev:0 github.com/themarshalsgroup/ui,num_dependents_deps.dev:0 @@ -1115606,6 +1135638,7 @@ github.com/themasch/node-ebml,num_dependents_deps.dev:62 github.com/themasch/node-executor,num_dependents_deps.dev:0 github.com/themasch/node-genpnp,num_dependents_deps.dev:0 github.com/themasterid/my_first_go,num_dependents_deps.dev:0 +github.com/thematchless/bump-image-version-action, github.com/themathstudent/project,num_dependents_deps.dev:0 github.com/thematters/apollo-response-cache,num_dependents_deps.dev:0 github.com/thematters/apollo-server,num_dependents_deps.dev:0 @@ -1115630,6 +1135663,8 @@ github.com/themaxsandelin/h2o,num_dependents_deps.dev:0 github.com/themaxsandelin/html-to-object, github.com/themaxsandelin/tramz,num_dependents_deps.dev:0 github.com/themayankjha/JAKYM, +github.com/themcaffee/GoSquatch, +github.com/themcaffee/vue-cli-plugin-s3-deploy-action, github.com/themcaffee/vue-strap,num_dependents_deps.dev:0 github.com/themdtf/mdtf-public,num_dependents_deps.dev:0 github.com/theme-controller/thcon,num_dependents_deps.dev:0 @@ -1115724,6 +1135759,7 @@ github.com/themgoncalves/react-loadable-ssr-addon,num_dependents_deps.dev:186 github.com/themgoncalves/super-query,num_dependents_deps.dev:0 github.com/themgoncalves/transform-object-dot-notation,num_dependents_deps.dev:0 github.com/themhtechnologies/node-pyspark,num_dependents_deps.dev:0 +github.com/themichaelhall/check-code-coverage, github.com/themichaellai/goth,num_dependents_deps.dev:0 github.com/themichaelusa/AsyncPQ, github.com/themichaelusa/Trinitum, @@ -1115777,6 +1135813,7 @@ github.com/themisAnagno/dataTransformation, github.com/themisAnagno/th-flask, github.com/themisAnagno/thassault, github.com/themishub/ejs-renderify,num_dependents_deps.dev:0 +github.com/themisir/mutexserver, github.com/themisterholliday/eslint-config-wesbos,num_dependents_deps.dev:0 github.com/themisterholliday/mvp,num_dependents_deps.dev:0 github.com/themisterholliday/web-scraper-helpers,num_dependents_deps.dev:0 @@ -1115861,6 +1135898,7 @@ github.com/themx05/password-strength-js,num_dependents_deps.dev:0 github.com/themysticsavages/garfieldapi, github.com/themysticsavages/generator3, github.com/themysticsavages/listevery, +github.com/themysticsavages/randomdog-app, github.com/themysticsavages/scratchhh, github.com/themyth92/angular2-lightbox,num_dependents_deps.dev:0 github.com/themyth92/javascript-state-machine-typings,num_dependents_deps.dev:0 @@ -1115894,6 +1135932,7 @@ github.com/then/then-request,num_dependents_deps.dev:4339 github.com/then/thenable,num_dependents_deps.dev:0 github.com/then/yield,num_dependents_deps.dev:24 github.com/then0rTh/tslint-config,num_dependents_deps.dev:0 +github.com/thenabeel/action-phpcs, github.com/thenables/batch-then,num_dependents_deps.dev:0 github.com/thenables/bcrypt-then,num_dependents_deps.dev:4 github.com/thenables/callback-and-promise,num_dependents_deps.dev:9 @@ -1115946,6 +1135985,7 @@ github.com/thenativeweb/formats,num_dependents_deps.dev:52 github.com/thenativeweb/get-certificate,num_dependents_deps.dev:2 github.com/thenativeweb/get-cors-origin,num_dependents_deps.dev:20 github.com/thenativeweb/get-graphql-from-jsonschema,num_dependents_deps.dev:98 +github.com/thenativeweb/get-next-version, github.com/thenativeweb/get-option-tests,num_dependents_deps.dev:0 github.com/thenativeweb/get-routes,num_dependents_deps.dev:0 github.com/thenativeweb/grunt-gitnobehind,num_dependents_deps.dev:0 @@ -1116080,6 +1136120,7 @@ github.com/thenikso/adapter-serverless, github.com/thenikso/angular-cloudinary,num_dependents_deps.dev:0 github.com/thenikso/angular-inview,"Google,num_dependents_deps.dev:16" github.com/thenikso/svelte-testbench,num_dependents_deps.dev:0 +github.com/thenilsdev/git-log-action, github.com/thenilsdev/mojang-api-promise,num_dependents_deps.dev:0 github.com/thenilsdev/semantic-release,num_dependents_deps.dev:0 github.com/theninja/credit-card-validation,num_dependents_deps.dev:0 @@ -1116128,7 +1136169,9 @@ github.com/thenullp0inter/googly-contrib-mongo,num_dependents_deps.dev:0 github.com/thenullp0inter/googly-example,num_dependents_deps.dev:0 github.com/theo-69/homebridge-occupancy-switch,num_dependents_deps.dev:0 github.com/theo-bot/goprogramming,num_dependents_deps.dev:0 +github.com/theo-brown/fetch-dockerhub-metadata, github.com/theo-brown/matchbot, +github.com/theo-code33/create-release-action, github.com/theo-l/bottle-resource, github.com/theo-m/sqlboiler,num_dependents_deps.dev:0 github.com/theo-matt/learning-git,num_dependents_deps.dev:0 @@ -1116184,6 +1136227,8 @@ github.com/theodor85/first_scrap, github.com/theodore-norvell/ts-assert,num_dependents_deps.dev:0 github.com/theodore-s-beers/abjad-rs,num_dependents_deps.dev:0 github.com/theodore-s-beers/gloss-word,num_dependents_deps.dev:0 +github.com/theodore86/polint-github-action, +github.com/theodore86/prometheus-operator-github-action, github.com/theodoreb/eslint-config-drupal,num_dependents_deps.dev:0 github.com/theodoreb/eslint-plugin-drupal,num_dependents_deps.dev:0 github.com/theodoreb/jquarry,num_dependents_deps.dev:0 @@ -1116261,6 +1136306,8 @@ github.com/theolouvel/frmx,num_dependents_deps.dev:0 github.com/theolouvel/hookbox,num_dependents_deps.dev:0 github.com/theolvs/beth, github.com/theomart/fastgenius, +github.com/theomart77/nano_node, +github.com/theomart77/node, github.com/theomessin/vue-chat-scroll,num_dependents_deps.dev:0 github.com/theomessin/vue-qriously,num_dependents_deps.dev:0 github.com/theomjones/gosmlr-cli,num_dependents_deps.dev:0 @@ -1116313,6 +1136360,7 @@ github.com/theoomoregbee/push-and-wait-queue,num_dependents_deps.dev:0 github.com/theoomoregbee/sails-hook-swagger-generator, github.com/theopak/instalike,num_dependents_deps.dev:0 github.com/theopak/react-parallax-card,num_dependents_deps.dev:0 +github.com/theoparis/pnpm-action, github.com/theopenconversationkit/tock-py, github.com/theopendictionary/odict,num_dependents_deps.dev:0 github.com/theopenlab/leveldbjni,num_dependents_deps.dev:0 @@ -1116334,6 +1136382,8 @@ github.com/theopolisme/webcam-streamer, github.com/theoportlock/workforce, github.com/theorbitals/angle-functions,num_dependents_deps.dev:0 github.com/theorbitals/xyzed,num_dependents_deps.dev:0 +github.com/theoremlp/autosquash, +github.com/theoremlp/required-reviews, github.com/theoremoon/flag-monitor,num_dependents_deps.dev:0 github.com/theoremoon/httpdump,num_dependents_deps.dev:0 github.com/theoremoon/kosenctfx,num_dependents_deps.dev:0 @@ -1116381,6 +1136431,7 @@ github.com/theothertomelliott/struct2struct,num_dependents_deps.dev:0 github.com/theothertomelliott/tic-tac-toverengineered,num_dependents_deps.dev:0 github.com/theotow/basic-facebook-api,num_dependents_deps.dev:0 github.com/theotow/gitmonitor-client,num_dependents_deps.dev:0 +github.com/theotow/keyvault-secret-azure, github.com/theotow/kraken-rust-api-client,num_dependents_deps.dev:0 github.com/theotow/swot-js, github.com/theotw/natssync,num_dependents_deps.dev:0 @@ -1116398,6 +1136449,7 @@ github.com/theoweiss/apt-repo,num_dependents_deps.dev:0 github.com/theowenyoung/actionsflow-trigger-rsshub,num_dependents_deps.dev:0 github.com/theowenyoung/aws-sam-cli,num_dependents_deps.dev:0 github.com/theowenyoung/date-cli,num_dependents_deps.dev:0 +github.com/theowenyoung/folder-hash, github.com/theowenyoung/gatsby-plugin-feed,num_dependents_deps.dev:0 github.com/theowenyoung/gatsby-plugin-hn,num_dependents_deps.dev:4 github.com/theowenyoung/gatsby-plugin-instagram, @@ -1116410,6 +1136462,7 @@ github.com/theowenyoung/gatsby-source-instagram,num_dependents_deps.dev:0 github.com/theowenyoung/gatsby-source-rsshub,num_dependents_deps.dev:0 github.com/theowenyoung/gatsby-theme-primer-wiki,num_dependents_deps.dev:0 github.com/theowenyoung/gatsby-theme-timeline,num_dependents_deps.dev:4 +github.com/theowenyoung/git-url-parse, github.com/theowenyoung/id-auto-increment,num_dependents_deps.dev:0 github.com/theowenyoung/mini-tailwind,num_dependents_deps.dev:0 github.com/theowenyoung/puppeteer-fetch,num_dependents_deps.dev:0 @@ -1116448,6 +1136501,7 @@ github.com/theparthy/bem-utility,num_dependents_deps.dev:0 github.com/thepassle/create-lit-app,num_dependents_deps.dev:0 github.com/thepassle/create-lit-app-advanced,num_dependents_deps.dev:0 github.com/thepassle/generic-components,"criticality_score:0.321400,num_dependents_deps.dev:0" +github.com/thepassle/package-json-enforcer, github.com/thepassle/pattern-match-es,num_dependents_deps.dev:0 github.com/thepassle/pwa-helpers,num_dependents_deps.dev:0 github.com/thepatrick/eslint-config-thepatrick,num_dependents_deps.dev:0 @@ -1116484,10 +1136538,13 @@ github.com/thephilip/vindec-validator, github.com/thephiri/user-management-system,num_dependents_deps.dev:0 github.com/thephpleague/climate,criticality_score:0.451090 github.com/thephpleague/commonmark,criticality_score:0.600930 +github.com/thephpleague/commonmark-ext-autolink, +github.com/thephpleague/commonmark-extras, github.com/thephpleague/container,criticality_score:0.443000 github.com/thephpleague/csv,criticality_score:0.527400 github.com/thephpleague/event,criticality_score:0.402270 github.com/thephpleague/factory-muffin,criticality_score:0.423150 +github.com/thephpleague/factory-muffin-faker, github.com/thephpleague/flysystem,criticality_score:0.593550 github.com/thephpleague/flysystem-aws-s3-v3,criticality_score:0.472570 github.com/thephpleague/flysystem-cached-adapter,criticality_score:0.306090 @@ -1116518,6 +1136575,7 @@ github.com/thepian/ss-build,num_dependents_deps.dev:0 github.com/thepian/template-tidy,num_dependents_deps.dev:0 github.com/thepieterdc/gopos,num_dependents_deps.dev:0 github.com/thepieterdc/gopos-python, +github.com/thepieterdc/intellij-plugin-verifier-action, github.com/thepieterdc/node-screenshot,num_dependents_deps.dev:0 github.com/thepigstupo/create-js-project,num_dependents_deps.dev:0 github.com/thepigstupo/create-project,num_dependents_deps.dev:0 @@ -1116657,6 +1136715,7 @@ github.com/thepwagner/action-update-go,num_dependents_deps.dev:0 github.com/thepwagner/action-update-twirp,num_dependents_deps.dev:0 github.com/thepwagner/actions-templates,num_dependents_deps.dev:0 github.com/thepwagner/archivist,num_dependents_deps.dev:0 +github.com/thepwrtank18/install-vs-components, github.com/thepyedpiper/pyp, github.com/theqabalist/angstrom,num_dependents_deps.dev:0 github.com/theqabalist/birdcall,num_dependents_deps.dev:0 @@ -1116902,6 +1136961,12 @@ github.com/theredhead/unitizeMilliseconds,num_dependents_deps.dev:0 github.com/theredrad/udpsocket,num_dependents_deps.dev:0 github.com/theredspy15/multi-go,num_dependents_deps.dev:0 github.com/thereisnodice/TRPGLogger, +github.com/thereisnotime/Action-amass, +github.com/thereisnotime/Action-bbot, +github.com/thereisnotime/Action-nikto, +github.com/thereisnotime/Action-nmap, +github.com/thereisnotime/Action-sqlmap, +github.com/thereisnotime/Action-wafw00f, github.com/therepo90/react-facebook-auth-button,num_dependents_deps.dev:0 github.com/theresasogunle/useEncryption, github.com/theresekoch/avn, @@ -1116919,6 +1136984,8 @@ github.com/theriley106/randomheaders, github.com/therious/fizbin,num_dependents_deps.dev:0 github.com/therious/th-utils,num_dependents_deps.dev:0 github.com/theristes/flowtify,num_dependents_deps.dev:0 +github.com/theritikchoure/go-test-action, +github.com/theritikchoure/websentry, github.com/theriverman/django-minio-backend, github.com/theriverman/szamlazz.py, github.com/therkverma/react-smart-slider,num_dependents_deps.dev:0 @@ -1116932,6 +1136999,8 @@ github.com/thermocline-labs/edge-switch,num_dependents_deps.dev:0 github.com/thermocline-labs/pod-protocol-stream,num_dependents_deps.dev:0 github.com/thermocline-labs/whats-miner,num_dependents_deps.dev:0 github.com/thermoclinelabs/whats-miner, +github.com/thermogl/xcode-version-setter, +github.com/thermoworks/ESP-LDF-OTA-Version-Auto-Increment-Github-Action, github.com/therne/cottage, github.com/therne/droidium,num_dependents_deps.dev:0 github.com/therne/errorist,num_dependents_deps.dev:0 @@ -1117009,6 +1137078,7 @@ github.com/therunninghub/joy-ui,num_dependents_deps.dev:0 github.com/therunninghub/vue-date-picker,num_dependents_deps.dev:0 github.com/therunninghub/vue-drawer,num_dependents_deps.dev:0 github.com/therunninghub/vue-select-menu,num_dependents_deps.dev:0 +github.com/therussiankid92/gat, github.com/therusskiy/react-notification, github.com/theruther4d/create-react-app,num_dependents_deps.dev:0 github.com/theruther4d/jest-serializer-date,num_dependents_deps.dev:0 @@ -1117021,6 +1137091,7 @@ github.com/theryaz/auto-complete,num_dependents_deps.dev:0 github.com/theryaz/ssh2-sftp-client,num_dependents_deps.dev:0 github.com/theryaz/veden-request-error,num_dependents_deps.dev:0 github.com/theryaz/veden-slack,num_dependents_deps.dev:0 +github.com/therynamo/jira-telegram, github.com/thesabbir/drawjs,num_dependents_deps.dev:0 github.com/thesabbir/jquery-nestable,num_dependents_deps.dev:0 github.com/thesabbir/jquery-slim,num_dependents_deps.dev:1 @@ -1117102,12 +1137173,14 @@ github.com/thesephist/paper.css, github.com/thesephist/rational-arithmetic, github.com/thesephist/torus, github.com/thesergiomiguel/eslint-config,num_dependents_deps.dev:0 +github.com/theserverfault/aws-lambda-layer-release-action, github.com/theseus-os/Theseus,criticality_score:0.339750 github.com/theseushu/react-route-controller,num_dependents_deps.dev:0 github.com/theshadow2393/react-native-pin-input-component,num_dependents_deps.dev:0 github.com/theshamuel/medregistry20,num_dependents_deps.dev:0 github.com/thesharp/daemonize,Google github.com/thesharp/htpasswd, +github.com/thesharp/simple-k8s-deploy, github.com/theshaune/styled-if,num_dependents_deps.dev:0 github.com/thesheps/buefy-calendar,num_dependents_deps.dev:0 github.com/theshifter/algorithmsgo,num_dependents_deps.dev:0 @@ -1117173,6 +1137246,7 @@ github.com/theslip/genoset-266,num_dependents_deps.dev:0 github.com/theslip/react-bootstrap-intl-tel-input,num_dependents_deps.dev:0 github.com/theslip/react-chartist-plugin-accessibility,num_dependents_deps.dev:0 github.com/theslipper/dprm,num_dependents_deps.dev:0 +github.com/thesloppyguy/DependencyTracker, github.com/theslyone/koa-weather,num_dependents_deps.dev:0 github.com/theslyone/node-paystack,num_dependents_deps.dev:0 github.com/thesmallboat/cabinet,num_dependents_deps.dev:0 @@ -1117352,6 +1137426,7 @@ github.com/thetatoken/theta-rosetta-rpc-adaptor,num_dependents_deps.dev:0 github.com/thetatool/tastyworks-rs,num_dependents_deps.dev:0 github.com/thetauk/tauk-webdriver-js,num_dependents_deps.dev:0 github.com/thetauk/tauk-webdriver-python, +github.com/thetaversion/coverage-calculator, github.com/thetayloredman/better-repldb,num_dependents_deps.dev:0 github.com/thetayloredman/enenmap,num_dependents_deps.dev:0 github.com/thetayloredman/sectcp,num_dependents_deps.dev:0 @@ -1117364,6 +1137439,7 @@ github.com/thetechdevs/template,num_dependents_deps.dev:0 github.com/thetechnicalchallenge/collection-type-manager,num_dependents_deps.dev:0 github.com/thetechnick/example-operator,num_dependents_deps.dev:0 github.com/theteladras/py.validator, +github.com/theteng/codefresh-pipeline-runner, github.com/thetenzou/gis-diplom,num_dependents_deps.dev:0 github.com/theterminalguy/monkey,num_dependents_deps.dev:0 github.com/thetestgame/panda3d_astron, @@ -1117690,6 +1137766,7 @@ github.com/thevickypedia/changelog-generator, github.com/thevickypedia/expose, github.com/thevickypedia/fileware, github.com/thevickypedia/gmail-connector, +github.com/thevickypedia/none-shall-pass, github.com/thevickypedia/stress-injector, github.com/thevickypedia/vpn-server, github.com/thevictor13/angular-translate-csv,num_dependents_deps.dev:0 @@ -1117918,6 +1137995,8 @@ github.com/thezion/slookup,num_dependents_deps.dev:0 github.com/thezoq2/Rust-Scad,num_dependents_deps.dev:0 github.com/thezoq2/sssstd,num_dependents_deps.dev:0 github.com/thezoraiz/ascii-image-converter,num_dependents_deps.dev:0 +github.com/theztefan/ghas-metrics-report, +github.com/thezzisu/git-repo-deploy-action, github.com/thezzisu/node-sandbox-lxc,num_dependents_deps.dev:0 github.com/thfai2000/llorm,num_dependents_deps.dev:0 github.com/thfai2000/taichi-orm, @@ -1117939,6 +1138018,7 @@ github.com/thg303/react-jalaali-dates,num_dependents_deps.dev:0 github.com/thg303/react-native-form-validator, github.com/thg303/sails-socket,num_dependents_deps.dev:0 github.com/thgaskell/json-export,num_dependents_deps.dev:0 +github.com/thgbrb/setup-environment, github.com/thgcst/react-native-autosize-image,num_dependents_deps.dev:0 github.com/thgcst/react-native-headless-code-input, github.com/thgcst/react-native-image-autosize, @@ -1118007,6 +1138087,7 @@ github.com/thiago-porto25/inn-webpage, github.com/thiago-rezende/horus-css,num_dependents_deps.dev:0 github.com/thiago-scherrer/entropy,num_dependents_deps.dev:0 github.com/thiago-scherrer/go-pihole,num_dependents_deps.dev:0 +github.com/thiago-scherrer/mabg, github.com/thiago-scherrer/ori,num_dependents_deps.dev:0 github.com/thiago-z0/log-gcb,num_dependents_deps.dev:0 github.com/thiago18l/golang,num_dependents_deps.dev:0 @@ -1118064,7 +1138145,11 @@ github.com/thiagodesouza/react-native-template-somadevs-starter,num_dependents_d github.com/thiagodk/node-agi,num_dependents_deps.dev:0 github.com/thiagodk/node-ami,num_dependents_deps.dev:0 github.com/thiagodk/python-event-emitter, +github.com/thiagodnf/new-version-decider, +github.com/thiagodnf/string-replacer, +github.com/thiagodnf/version-decider, github.com/thiagodnf/visjs-extras-groupsequence,num_dependents_deps.dev:0 +github.com/thiagodnf/yaml-schema-checker, github.com/thiagodp/better-randstr,num_dependents_deps.dev:0 github.com/thiagodp/cc-graph,num_dependents_deps.dev:0 github.com/thiagodp/codeceptjs-cmdhelper,num_dependents_deps.dev:8 @@ -1118164,6 +1138249,8 @@ github.com/thiagomfranca/express-application,num_dependents_deps.dev:0 github.com/thiagommedeiros/bus-promise,num_dependents_deps.dev:0 github.com/thiagommedeiros/sptrans-promise,num_dependents_deps.dev:0 github.com/thiagomorato/boto,num_dependents_deps.dev:0 +github.com/thiagomoreirac/github-action-json-property, +github.com/thiagomoreirac/setup-eksctl, github.com/thiagomr/helm-wrapper,num_dependents_deps.dev:0 github.com/thiagomr/math-ops,num_dependents_deps.dev:0 github.com/thiagomr/node-poundcake,num_dependents_deps.dev:0 @@ -1118491,6 +1138578,7 @@ github.com/thierrystiegler/tissu, github.com/thierryxing/sentry-ruby-api,num_dependents_deps.dev:0 github.com/thiervoj/SlideManager,num_dependents_deps.dev:0 github.com/thiervoj/cartapus,num_dependents_deps.dev:0 +github.com/thieryw/check-version-upgrade, github.com/thieryw/gitlanding,num_dependents_deps.dev:0 github.com/thieryw/homepage-template,num_dependents_deps.dev:0 github.com/thiesben/affinity-propagation-python, @@ -1118531,6 +1138619,7 @@ github.com/thijsrijkers/paperscript,num_dependents_deps.dev:0 github.com/thijsvdanker/vue-fab,num_dependents_deps.dev:0 github.com/thijsvdanker/vue-file-base64,num_dependents_deps.dev:0 github.com/thijsvdanker/vue-protect-form,num_dependents_deps.dev:0 +github.com/thijsvtol/create-environments, github.com/thijsw/angular-medium-editor,num_dependents_deps.dev:0 github.com/thijxx/critters,num_dependents_deps.dev:0 github.com/thijzert/chesseract,num_dependents_deps.dev:0 @@ -1118759,6 +1138848,7 @@ github.com/thinkcompany/react-a11y-announcer,num_dependents_deps.dev:0 github.com/thinkcraft/react-magic-state,num_dependents_deps.dev:0 github.com/thinkdb/cron,num_dependents_deps.dev:0 github.com/thinkdevcode/cassandra-driver-promise,num_dependents_deps.dev:0 +github.com/thinkdolabs/curl, github.com/thinkei/react-body-attribute,num_dependents_deps.dev:0 github.com/thinkeloquent/browser-resource-timing,num_dependents_deps.dev:0 github.com/thinkeloquent/es6-document-on,num_dependents_deps.dev:0 @@ -1119173,6 +1139263,7 @@ github.com/this-fifo/use-marked-hook,num_dependents_deps.dev:0 github.com/this1-it/docker-telegraf-iotter,num_dependents_deps.dev:0 github.com/this1-it/h5.main,num_dependents_deps.dev:0 github.com/thisDOTname/vue-share-it,num_dependents_deps.dev:0 +github.com/thisIsTheFoxe/swift-playgrounds-action, github.com/thisJJ/react-pretty-condition,num_dependents_deps.dev:0 github.com/thisJJ/react-pretty-treeview,num_dependents_deps.dev:0 github.com/thisJJ/react-sexy-countdown,num_dependents_deps.dev:0 @@ -1119258,6 +1139349,7 @@ github.com/thisisandreeeee/py-wrapi, github.com/thisisbd/cordova-plugin-vuforia,num_dependents_deps.dev:0 github.com/thisisbd/rgraph-rails,num_dependents_deps.dev:0 github.com/thisisbd/vPlayer,num_dependents_deps.dev:0 +github.com/thisisbramiller/open-issue, github.com/thisisbrianhan/generator-expresso,num_dependents_deps.dev:0 github.com/thisischandanmishra/pyjsonlines, github.com/thisisclick/react-useoutside-handler,num_dependents_deps.dev:0 @@ -1119418,6 +1139510,7 @@ github.com/thivolle-cazat-cedric/py-askcli, github.com/thiwanka92/dynamodb-import-csv,num_dependents_deps.dev:0 github.com/thixpin/Virama-JS,num_dependents_deps.dev:0 github.com/thiyagu-subramani/demo-pro,num_dependents_deps.dev:0 +github.com/thiyagu06/openapi-validator-action, github.com/thiyagu06/reactive-sqs-consumer,num_dependents_deps.dev:0 github.com/thiyagu06/zally-gradle-plugin,num_dependents_deps.dev:0 github.com/thizzer/jtouchbar-javafx,num_dependents_deps.dev:0 @@ -1119827,6 +1139920,7 @@ github.com/thojou/react-breadcrumb,num_dependents_deps.dev:0 github.com/tholander/optionable,num_dependents_deps.dev:0 github.com/tholex/grunt-sqsp,num_dependents_deps.dev:0 github.com/tholian-network/stealth,criticality_score:0.306390 +github.com/thollander/actions-comment-pull-request, github.com/thollingshead/arcgis-server-store, github.com/thollingshead/gulp-flake8,num_dependents_deps.dev:6 github.com/thollingsheadesri/arcgis-server-store,num_dependents_deps.dev:0 @@ -1119844,6 +1139938,7 @@ github.com/tholu/hubot-zet,num_dependents_deps.dev:0 github.com/tholum/sift.js,num_dependents_deps.dev:0 github.com/tholzheim/wikirender, github.com/thom311/libnl,criticality_score:0.559770 +github.com/thom4parisot/yeswiki-release-action, github.com/thom8/generator-beetbox-drupal,num_dependents_deps.dev:0 github.com/thom8/generator-blt,num_dependents_deps.dev:0 github.com/thomac02/fractal-viewer,num_dependents_deps.dev:0 @@ -1119872,6 +1139967,7 @@ github.com/thomas-bouvier/sht31-node-binding,num_dependents_deps.dev:0 github.com/thomas-bouvier/yeelight-node,num_dependents_deps.dev:0 github.com/thomas-bouvier/yeelight-node-binding,num_dependents_deps.dev:0 github.com/thomas-boyer/neon-colors, +github.com/thomas-chauvet/latex2pdf-action, github.com/thomas-coldwell/expo-image-editor,num_dependents_deps.dev:0 github.com/thomas-crane/mint,num_dependents_deps.dev:0 github.com/thomas-crane/nrelay,num_dependents_deps.dev:0 @@ -1119977,6 +1140073,7 @@ github.com/thomasashwindsilva/debugging-logger, github.com/thomasashwindsilva/logger,num_dependents_deps.dev:0 github.com/thomasashwindsilva/test-automation-pack,num_dependents_deps.dev:0 github.com/thomasashwindsilva/testautomation,num_dependents_deps.dev:0 +github.com/thomasattree/mkdocs2S3, github.com/thomasballinger/2or3, github.com/thomasballinger/endless-sky-bindings,num_dependents_deps.dev:0 github.com/thomasballinger/endless-sky-bindings-python, @@ -1119995,6 +1140092,8 @@ github.com/thomasbiddle/Kippt-Python-Wrapper, github.com/thomasbiddle/spotify-search,num_dependents_deps.dev:0 github.com/thomasblom/casino-rock-paper-scissors,num_dependents_deps.dev:0 github.com/thomasblom/quick-resize,num_dependents_deps.dev:0 +github.com/thomasbnt/NoToxicDiscussions, +github.com/thomasbnt/hello-to-news-contributions, github.com/thomasboel/svg-stadium-animate,num_dependents_deps.dev:0 github.com/thomasboom89/traefik-acmejson-to-cert-file,num_dependents_deps.dev:0 github.com/thomasborgen/soup2dict, @@ -1120103,6 +1140202,7 @@ github.com/thomasderuel/go-powertop-spc,num_dependents_deps.dev:0 github.com/thomasderuel/powertop-system-baseline-power,num_dependents_deps.dev:0 github.com/thomasdesmoulin/dxf-parsing, github.com/thomasdesmoulin/dxfParsing,num_dependents_deps.dev:0 +github.com/thomasdesr/minisign-action, github.com/thomasdevolder/ink,num_dependents_deps.dev:0 github.com/thomasdigby/grunt-svg-extend,num_dependents_deps.dev:0 github.com/thomasdkelly/aquacrop, @@ -1120119,8 +1140219,13 @@ github.com/thomasdussart/01a-cli-nager,num_dependents_deps.dev:0 github.com/thomasdussart/npxcard,num_dependents_deps.dev:0 github.com/thomaseding/lambda-options,num_dependents_deps.dev:0 github.com/thomaseding/nat-ts,num_dependents_deps.dev:0 +github.com/thomaseizinger/assign-pr-creator-action, +github.com/thomaseizinger/create-pull-request, +github.com/thomaseizinger/create-release, +github.com/thomaseizinger/keep-a-changelog-new-release, github.com/thomaseizinger/rust-impl-template,num_dependents_deps.dev:0 github.com/thomaseizinger/rust-jsonrpc-client,num_dependents_deps.dev:0 +github.com/thomaseizinger/set-crate-version, github.com/thomasf/displayname,num_dependents_deps.dev:0 github.com/thomasf/lg,num_dependents_deps.dev:0 github.com/thomasf/natbwmon,num_dependents_deps.dev:0 @@ -1120223,6 +1140328,7 @@ github.com/thomasjudd/photo-steganography,num_dependents_deps.dev:0 github.com/thomasjuma/locate-api,num_dependents_deps.dev:0 github.com/thomasjungblut/go-dancing-links,num_dependents_deps.dev:0 github.com/thomasjungblut/go-sstables,num_dependents_deps.dev:0 +github.com/thomasjungblut/twitter-action, github.com/thomasjunk/backend,num_dependents_deps.dev:0 github.com/thomask33/go-underlords,num_dependents_deps.dev:0 github.com/thomask33/upstartgriefbot,num_dependents_deps.dev:0 @@ -1120281,6 +1140387,7 @@ github.com/thomasmeadows/dollar-defendender-middleware,num_dependents_deps.dev:0 github.com/thomasmeyer1970/homebridge-fronius,num_dependents_deps.dev:0 github.com/thomasmguarnieri/gotcpclientandserver,num_dependents_deps.dev:0 github.com/thomasmichaelwallace/lambda-devtools,num_dependents_deps.dev:0 +github.com/thomasmichaelwallace/slack-monorepo-ci-post, github.com/thomasmikava/collmise,num_dependents_deps.dev:0 github.com/thomasmikava/custo,num_dependents_deps.dev:0 github.com/thomasmikava/linkbuilder,num_dependents_deps.dev:0 @@ -1120421,6 +1140528,7 @@ github.com/thomastuts/getblocks,num_dependents_deps.dev:0 github.com/thomastuts/gulp-config-checker,num_dependents_deps.dev:0 github.com/thomastuts/gulp-rev-mtime,num_dependents_deps.dev:0 github.com/thomastuts/inquisitor,num_dependents_deps.dev:0 +github.com/thomastvedt/sign-android-release, github.com/thomasv314/ec2list,num_dependents_deps.dev:0 github.com/thomasvaeth/instafetch.js,num_dependents_deps.dev:0 github.com/thomasvandoren/bugzscout-py, @@ -1120479,6 +1140587,7 @@ github.com/thomasyimgit/mini-observer,num_dependents_deps.dev:0 github.com/thomasyimgit/pubsub,num_dependents_deps.dev:0 github.com/thomasyimgit/zion,num_dependents_deps.dev:0 github.com/thomasyonug/dynamic-proxy-middleware,num_dependents_deps.dev:0 +github.com/thomasyu888/synapse-login-action, github.com/thomasyuan/tetris,num_dependents_deps.dev:0 github.com/thomasyus/xinfushe,num_dependents_deps.dev:0 github.com/thomasyxy/v-preview,num_dependents_deps.dev:0 @@ -1120512,6 +1140621,7 @@ github.com/thombashi/cmakew, github.com/thombashi/elasticsearch-faker, github.com/thombashi/envinfopy, github.com/thombashi/excelrd, +github.com/thombashi/get-version-action, github.com/thombashi/ghscard,num_dependents_deps.dev:0 github.com/thombashi/grsched, github.com/thombashi/humanreadable, @@ -1120705,6 +1140815,8 @@ github.com/thonatos/aliyun-cs-client,num_dependents_deps.dev:0 github.com/thonatos/aliyun-cs-node-sdk,num_dependents_deps.dev:0 github.com/thonatos/antpress,num_dependents_deps.dev:0 github.com/thonatos/egg-oauth2-server,num_dependents_deps.dev:0 +github.com/thonatos/github-actions-nodejs, +github.com/thonatos/github-actions-workman, github.com/thonatos/imorph,num_dependents_deps.dev:0 github.com/thonatos/nodebb-plugin-sso-oauth-arashivision,num_dependents_deps.dev:0 github.com/thonatos/vuepress-theme-egg,num_dependents_deps.dev:0 @@ -1120983,6 +1141095,7 @@ github.com/thoth-station/source-management, github.com/thoth-station/storages, github.com/thoth-station/termial-random, github.com/thoth-station/thamos, +github.com/thoth-station/thoth-github-action, github.com/thothJS/no-sequence,num_dependents_deps.dev:0 github.com/thothJS/pathTo,num_dependents_deps.dev:0 github.com/thotischner/infra-ecosphere,num_dependents_deps.dev:0 @@ -1121098,6 +1141211,7 @@ github.com/thoughtnirvana/augment, github.com/thoughtnirvana/flask-augment, github.com/thoughtnirvana/slimish-jinja2, github.com/thoughtnirvana/xmldict, +github.com/thoughtquery/ios-resign-action, github.com/thoughtram/es6-6to5-browserify-boilerplate,num_dependents_deps.dev:0 github.com/thoughtram/gtag,num_dependents_deps.dev:0 github.com/thoughtram/read-ext,num_dependents_deps.dev:0 @@ -1121107,6 +1141221,7 @@ github.com/thoughtspile/unfont, github.com/thoughtspot/rest-api-sdk, github.com/thoughtspot/visual-embed-sdk, github.com/thoughtsunificator/bbcode-parser,num_dependents_deps.dev:0 +github.com/thoughtsunificator/chrome-publish-action, github.com/thoughtsunificator/create-domodel-app,num_dependents_deps.dev:0 github.com/thoughtsunificator/css-generics, github.com/thoughtsunificator/domodel,num_dependents_deps.dev:0 @@ -1121115,6 +1141230,7 @@ github.com/thoughtsunificator/domodel-popup,num_dependents_deps.dev:0 github.com/thoughtsunificator/domodel-router,num_dependents_deps.dev:0 github.com/thoughtsunificator/domodel-steps,num_dependents_deps.dev:0 github.com/thoughtsunificator/domodel-tabs,num_dependents_deps.dev:0 +github.com/thoughtsunificator/firefox-publish-action, github.com/thoughtsunificator/gedcom-parser,num_dependents_deps.dev:0 github.com/thoughtsunificator/nodeunit-esm,num_dependents_deps.dev:0 github.com/thoughtsunificator/route-tokenizer,num_dependents_deps.dev:0 @@ -1121304,6 +1141420,7 @@ github.com/threatstack/vpnnotify,num_dependents_deps.dev:0 github.com/threatstream/django-pg-current-timestamp, github.com/threatstream/hpfeeds-logger, github.com/threatwatch/twigs_ssl_audit, +github.com/threatworx/actions, github.com/threatworx/twigs, github.com/threawatch/twigs_host_benchmark, github.com/threax/HtmlRapier.Bootstrap,num_dependents_deps.dev:0 @@ -1121333,6 +1141450,10 @@ github.com/three18ti/over-9k,num_dependents_deps.dev:0 github.com/three38inc/attentio-cli, github.com/threeaccents/mahi,num_dependents_deps.dev:0 github.com/threeaims/riotjs-loader,num_dependents_deps.dev:0 +github.com/threeal/cmake-action, +github.com/threeal/gcovr-action, +github.com/threeal/setup-poetry-action, +github.com/threeal/yarn-install-action, github.com/threebearsdan/algorithm,num_dependents_deps.dev:0 github.com/threebow/axis,num_dependents_deps.dev:0 github.com/threecifanggen/python-functional-programming, @@ -1121460,6 +1141581,10 @@ github.com/threez/finbin,num_dependents_deps.dev:0 github.com/threez/go-sparsebundle,num_dependents_deps.dev:0 github.com/threez/intm,num_dependents_deps.dev:0 github.com/threez/istat,num_dependents_deps.dev:0 +github.com/threfo/change_log_action, +github.com/threfo/tag-parse-action, +github.com/threfo/tencentcloud-cdn, +github.com/threfo/work-wechat-msg, github.com/threkk/npm-card,num_dependents_deps.dev:0 github.com/threlious/project,num_dependents_deps.dev:0 github.com/threpio/terraform-provider-bamboohr,num_dependents_deps.dev:0 @@ -1121726,10 +1141851,12 @@ github.com/thundering-herd/terratest,num_dependents_deps.dev:0 github.com/thunderjs/thunder-server,num_dependents_deps.dev:0 github.com/thunderk/tk-serializer,num_dependents_deps.dev:0 github.com/thundermiracle/address2gps,num_dependents_deps.dev:0 +github.com/thundermiracle/download-artifact, github.com/thundermiracle/filter-data,num_dependents_deps.dev:0 github.com/thundermiracle/gatsby-plugin-output,num_dependents_deps.dev:0 github.com/thundermiracle/geocoder-free,num_dependents_deps.dev:0 github.com/thundermiracle/mobx-json,num_dependents_deps.dev:0 +github.com/thundermiracle/netlify-deploy, github.com/thundermiracle/next-mui-helper,num_dependents_deps.dev:0 github.com/thundermiracle/nextjs-mui-helper,num_dependents_deps.dev:0 github.com/thundermiracle/storybook-loader,num_dependents_deps.dev:0 @@ -1121790,11 +1141917,16 @@ github.com/thundev/laravel-form,num_dependents_deps.dev:0 github.com/thundev/laravel-request-utils, github.com/thundra-io/serverless-plugin-thundra, github.com/thundra-io/serverless-plugin-thundra-lambda-adapters-cw,num_dependents_deps.dev:0 +github.com/thundra-io/thundra-foresight-js-action, +github.com/thundra-io/thundra-foresight-python-action, +github.com/thundra-io/thundra-gradle-test-action, github.com/thundra-io/thundra-lambda-adapters-cw-invoker-nodejs,num_dependents_deps.dev:0 github.com/thundra-io/thundra-lambda-agent-go,num_dependents_deps.dev:0 github.com/thundra-io/thundra-lambda-agent-nodejs,num_dependents_deps.dev:0 github.com/thundra-io/thundra-lambda-agent-nodejs-log,num_dependents_deps.dev:0 github.com/thundra-io/thundra-lambda-nodejs-warmup,num_dependents_deps.dev:0 +github.com/thundra-io/thundra-maven-test-action, +github.com/thundra-io/thundra-test-init-action, github.com/thundra-io/thundra-trace-chart,num_dependents_deps.dev:0 github.com/thundra-io/thundra-webpack-plugin,num_dependents_deps.dev:0 github.com/thundrio-kh/khbr, @@ -1121836,6 +1141968,7 @@ github.com/thuoe/mp4-video-player,num_dependents_deps.dev:0 github.com/thuoe/semantic-release-workflow,num_dependents_deps.dev:0 github.com/thuoe/semantic-release-workflow-travis,num_dependents_deps.dev:0 github.com/thuongho/design-sys,num_dependents_deps.dev:0 +github.com/thuongtruong1009/a_repo_with_9_stars_and_0_forks, github.com/thuongvu/postcss-emoji,num_dependents_deps.dev:0 github.com/thuongvu/postcss-packlite,num_dependents_deps.dev:0 github.com/thuongvu/youtube-to-mp3,num_dependents_deps.dev:0 @@ -1121953,6 +1142086,7 @@ github.com/thyforhtian/fuzzy_cli_menu,num_dependents_deps.dev:0 github.com/thyge/goedid,num_dependents_deps.dev:0 github.com/thyhates/react-native-log-to-file,num_dependents_deps.dev:0 github.com/thylacinus-official/qrx-scanner,num_dependents_deps.dev:0 +github.com/thyldrm/jsexampleact, github.com/thylong/abtime,num_dependents_deps.dev:0 github.com/thylong/cabu, github.com/thymeleaf/thymeleaf,criticality_score:0.515560 @@ -1121991,6 +1142125,8 @@ github.com/thysultan/schedula.js,num_dependents_deps.dev:0 github.com/thysultan/stylis.js,"criticality_score:0.527550,num_dependents_deps.dev:61756" github.com/thysultan/wam.js,num_dependents_deps.dev:0 github.com/thytanium/react-components,num_dependents_deps.dev:0 +github.com/thzero/check-uncommitted-changes-action, +github.com/thzero/library_build_action, github.com/thzero/library_cli,num_dependents_deps.dev:0 github.com/thzero/library_client,num_dependents_deps.dev:0 github.com/thzero/library_client_firebase,num_dependents_deps.dev:0 @@ -1122018,10 +1142154,12 @@ github.com/thzero/metalTitans-library_server_auth, github.com/thzero/metalTitans-library_server_auth_proto, github.com/thzero/metalTitans-mt_library_server_auth, github.com/thzero/metalTitans-server_auth_proto, +github.com/thzero/ncu-upgrade, github.com/thzero/node-random-number-csprng,num_dependents_deps.dev:0 github.com/thzero/winston-syslog, github.com/thzinc/storybook-addon-confluence,num_dependents_deps.dev:0 github.com/thzll/gutils,num_dependents_deps.dev:0 +github.com/thzois/autobot, github.com/thzt/js-embedder,num_dependents_deps.dev:0 github.com/thzt/jsxt-loader,num_dependents_deps.dev:0 github.com/thzt/line-embedder,num_dependents_deps.dev:2 @@ -1122291,12 +1142429,14 @@ github.com/tiaanduplessis/use-geolocation-position, github.com/tiaanduplessis/valid-south-african-id,num_dependents_deps.dev:0 github.com/tiaanduplessis/xpel,num_dependents_deps.dev:0 github.com/tiabas/oauth2-client,num_dependents_deps.dev:7 +github.com/tiacsys/git-rebase, github.com/tiadobatima/gpwm, github.com/tiagfernandes/image-warzone,num_dependents_deps.dev:0 github.com/tiaghoalves/landing-page,num_dependents_deps.dev:0 github.com/tiagn/asyncall, github.com/tiagn/domainhelper, github.com/tiago-clementino/findcep,num_dependents_deps.dev:0 +github.com/tiago-freire/vtex-publish-deploy-action, github.com/tiago-lr/stuff,num_dependents_deps.dev:0 github.com/tiago-marques/one-separator-decimal,num_dependents_deps.dev:0 github.com/tiago-marques/one-separator-decimal-mask,num_dependents_deps.dev:0 @@ -1122322,6 +1142462,7 @@ github.com/tiagoarasilva/django-messages-drf, github.com/tiagob/convert-affiliate-links,num_dependents_deps.dev:0 github.com/tiagob/create-full-stack,num_dependents_deps.dev:0 github.com/tiagobento/appformer-js,num_dependents_deps.dev:0 +github.com/tiagobento/retrigger-workflows-on-open-prs, github.com/tiagobento/watertemplate-engine,num_dependents_deps.dev:0 github.com/tiagobfaustino/teste-libpythonpro, github.com/tiagobnobrega/eureka-register,num_dependents_deps.dev:0 @@ -1122412,9 +1142553,11 @@ github.com/tiagomistral/SecJSON,num_dependents_deps.dev:0 github.com/tiagompalte/f2c-tiagompalte,num_dependents_deps.dev:0 github.com/tiagompalte/repofy,num_dependents_deps.dev:0 github.com/tiagompalte/tcc-porta-servico,num_dependents_deps.dev:0 +github.com/tiagoms1/taurus-action, github.com/tiagomsmagalhaes/cap-photo-roll,num_dependents_deps.dev:0 github.com/tiagomsmagalhaes/capacitor-file-picker,num_dependents_deps.dev:0 github.com/tiagonapoli/execa,num_dependents_deps.dev:0 +github.com/tiagonapoli/label-pr-on-merge, github.com/tiagonapoli/oclif-dev-cli,num_dependents_deps.dev:0 github.com/tiagonapoli/oclif-plugin-spaced-commands,num_dependents_deps.dev:6 github.com/tiagonapoli/oclif-template,num_dependents_deps.dev:0 @@ -1122422,6 +1142565,7 @@ github.com/tiagonapoli/opentracing-alternate-mock,num_dependents_deps.dev:0 github.com/tiagonapoli/test-pkg-a,num_dependents_deps.dev:0 github.com/tiagonapoli/test-pkg-b,num_dependents_deps.dev:0 github.com/tiagonevestia/30-days-of-code,num_dependents_deps.dev:0 +github.com/tiagonnascimento/sfdx-orgdev-build-deploy, github.com/tiagonunesdeveloper/spotify-wrapper-tiagonunes,num_dependents_deps.dev:0 github.com/tiagoosta/elasticsearch_exporter,num_dependents_deps.dev:0 github.com/tiagoosta/errstack,num_dependents_deps.dev:0 @@ -1122473,6 +1142617,7 @@ github.com/tiagotardelli/libpythonpro, github.com/tiagotaveiragomes/mdx, github.com/tiagourbano/ngx-phone-mask-br,num_dependents_deps.dev:0 github.com/tiagovdberg/ng-easy,num_dependents_deps.dev:0 +github.com/tiagovrtr/actions-pipenv, github.com/tiagovtristao/please,num_dependents_deps.dev:0 github.com/tiagovtristao/react-table-container,num_dependents_deps.dev:0 github.com/tiaguinho/gosoap,"criticality_score:0.409960,num_dependents_deps.dev:2" @@ -1122540,6 +1142685,9 @@ github.com/tiangolo/d3-timeline,num_dependents_deps.dev:0 github.com/tiangolo/dockerswarm.rocks,criticality_score:0.304360 github.com/tiangolo/fastapi,criticality_score:0.664660 github.com/tiangolo/full-stack-fastapi-postgresql,criticality_score:0.396740 +github.com/tiangolo/issue-manager, +github.com/tiangolo/label-approved, +github.com/tiangolo/latest-changes, github.com/tiangolo/markdown-include, github.com/tiangolo/ngx-http-client,num_dependents_deps.dev:0 github.com/tiangolo/poetry-version-plugin, @@ -1122560,7 +1142708,13 @@ github.com/tianhaiit/node-oiinhand-sdk-axios,num_dependents_deps.dev:0 github.com/tianhaining/miaozhen-ui,num_dependents_deps.dev:0 github.com/tianhan1939/gulp-rev-imported-file-link,num_dependents_deps.dev:0 github.com/tianhaoliang12/carousel-video,num_dependents_deps.dev:0 +github.com/tianhaoz95-actions/dot-npmrc, +github.com/tianhaoz95-actions/file-diff, github.com/tianhaoz95/garvis,num_dependents_deps.dev:0 +github.com/tianhaoz95/js-actions-dependency-updater, +github.com/tianhaoz95/mirror-action, +github.com/tianhaoz95/readable-readme, +github.com/tianhaoz95/update-flutter-packages, github.com/tianhaozhao2008/test1,num_dependents_deps.dev:0 github.com/tianhsky/EZHttp,num_dependents_deps.dev:0 github.com/tianhsky/EZModel,num_dependents_deps.dev:0 @@ -1122645,6 +1142799,7 @@ github.com/tianmajs/tianma-syntax-check,num_dependents_deps.dev:0 github.com/tianmo/h-router,num_dependents_deps.dev:0 github.com/tianmo/mini-vm,num_dependents_deps.dev:0 github.com/tianmo/node-odps,num_dependents_deps.dev:0 +github.com/tiann/zipalign-sign-android-release, github.com/tiannaru/go-is-crazy,num_dependents_deps.dev:0 github.com/tiannian/async-trait-static,num_dependents_deps.dev:0 github.com/tiannian/keccakf,num_dependents_deps.dev:0 @@ -1122717,6 +1142872,7 @@ github.com/tiantour/trade,num_dependents_deps.dev:0 github.com/tiantour/union,num_dependents_deps.dev:0 github.com/tiantw/new-wtt-cli, github.com/tianwang8090/img-lazy,num_dependents_deps.dev:0 +github.com/tianweiding/setup-cloud-cli, github.com/tianweiliu/hubot-wit-ai, github.com/tianweiy/CenterPoint,criticality_score:0.314170 github.com/tianwen20/tw-slide-ruler, @@ -1122837,12 +1142993,15 @@ github.com/tibcosoftware/tci-flogo,num_dependents_deps.dev:0 github.com/tibcosoftware/tcstk-golang,num_dependents_deps.dev:0 github.com/tibdev78/ytb-d,num_dependents_deps.dev:0 github.com/tibdex/babel-plugin-transform-private-underscore,num_dependents_deps.dev:0 +github.com/tibdex/backport, +github.com/tibdex/github-app-token, github.com/tibdex/github-backport,num_dependents_deps.dev:0 github.com/tibdex/github-cherry-pick,num_dependents_deps.dev:1 github.com/tibdex/github-rebase,num_dependents_deps.dev:0 github.com/tibdex/probot-serverless-now,num_dependents_deps.dev:0 github.com/tibdex/shared-github-internals,num_dependents_deps.dev:2 github.com/tibdex/tree-to-flat-map,num_dependents_deps.dev:0 +github.com/tibeer/ghom, github.com/tiberiu-hs/goconvey,num_dependents_deps.dev:0 github.com/tiberiuac/gloo,num_dependents_deps.dev:0 github.com/tiberiualex/eventrino,num_dependents_deps.dev:0 @@ -1122896,6 +1143055,8 @@ github.com/tibonihoo/baciphacs, github.com/tibor-kocsis/videojs-livestream-keeper,num_dependents_deps.dev:0 github.com/tibor-moldovan/tmoldovan-palindrome,num_dependents_deps.dev:0 github.com/tibor/python-helferfunktionen, +github.com/tibor19/node-version-from-package-json, +github.com/tibor19/static-website-deploy, github.com/tiborbarsi/regexp-hash-router,num_dependents_deps.dev:0 github.com/tibordp/prefer-dual-stack-webhook,num_dependents_deps.dev:0 github.com/tibordp/pyncette, @@ -1122918,6 +1143079,7 @@ github.com/tiborvass/boot2docker,num_dependents_deps.dev:0 github.com/tiborvass/buildkit-ninja,num_dependents_deps.dev:0 github.com/tiborvass/go-bindata,num_dependents_deps.dev:0 github.com/tiborvass/gobox,num_dependents_deps.dev:0 +github.com/tibotiber/hasura-action, github.com/tibotiber/react-stats,num_dependents_deps.dev:0 github.com/tiboun/python-bigquery-test-kit, github.com/tiboun/varsubst, @@ -1123066,6 +1143228,7 @@ github.com/ticktack/kungfu,num_dependents_deps.dev:0 github.com/ticktahod/SakuCAT19, github.com/ticktok-io/ticktok-js-client,num_dependents_deps.dev:0 github.com/ticktok-io/ticktok-ui,num_dependents_deps.dev:0 +github.com/tickup-se/notify_opsgenie, github.com/ticky/coloursum,num_dependents_deps.dev:0 github.com/ticky/literal-toast,num_dependents_deps.dev:6 github.com/ticky/markdown-component-loader,num_dependents_deps.dev:0 @@ -1123082,6 +1143245,7 @@ github.com/ticlo/rc-new-window,num_dependents_deps.dev:4 github.com/ticlo/ticlo,num_dependents_deps.dev:0 github.com/tico8/gopm,num_dependents_deps.dev:0 github.com/tico8/ws,num_dependents_deps.dev:0 +github.com/ticoraap/sftp-mirror, github.com/ticosax/pseud, github.com/ticou/hookis,num_dependents_deps.dev:0 github.com/ticruz38/graphql-codegen-svelte-apollo,num_dependents_deps.dev:0 @@ -1123131,10 +1143295,12 @@ github.com/tidb-incubator/tinysql,criticality_score:0.303320 github.com/tidb-incubator/weir,num_dependents_deps.dev:0 github.com/tidbcloud/gardener-extension-os-centos8,num_dependents_deps.dev:0 github.com/tidbcloud/gardener-extension-os-centos8-tidb,num_dependents_deps.dev:0 +github.com/tidbcloud/setup-tidbcloud-cli, github.com/tidbyt/go-libwebp,num_dependents_deps.dev:0 github.com/tidbyt/pixlet,num_dependents_deps.dev:0 github.com/tidbyt/starlib,num_dependents_deps.dev:0 github.com/tidchile/tidml, +github.com/tiddly-gittly/tw5-plugin-packer, github.com/tiddlyweb/httpexceptor, github.com/tiddlyweb/twikifier, github.com/tiddolangerak/tracegl,num_dependents_deps.dev:0 @@ -1123260,6 +1143426,7 @@ github.com/tidwall/uhaha,num_dependents_deps.dev:0 github.com/tidwall/wal,num_dependents_deps.dev:12 github.com/tidwall/weyl-rs,num_dependents_deps.dev:0 github.com/tidy-code/u-kit,num_dependents_deps.dev:0 +github.com/tidylabs/action-git-config-user, github.com/tidymaze/searchrace,num_dependents_deps.dev:0 github.com/tidymodels/broom,criticality_score:0.581780 github.com/tidymodels/corrr,criticality_score:0.380470 @@ -1123325,6 +1143492,7 @@ github.com/tiegz/bundle_grep,num_dependents_deps.dev:0 github.com/tiegz/grandiorite,num_dependents_deps.dev:0 github.com/tiehm/Charlog,num_dependents_deps.dev:0 github.com/tiehm/discordjs-decorators, +github.com/tiehm/mariadb-action, github.com/tiehuis/int_traits,num_dependents_deps.dev:5 github.com/tiehuis/quartic,num_dependents_deps.dev:0 github.com/tielan/react-native-comm,num_dependents_deps.dev:0 @@ -1123354,6 +1143522,7 @@ github.com/tien271/cordova-plugin-themeablebrowser-wkwebview, github.com/tien271/cordova-plugin-twitter-connect-wkwebview,num_dependents_deps.dev:0 github.com/tien271/react-add-to-calendar-recurring,num_dependents_deps.dev:0 github.com/tien271/react-native-social-login,num_dependents_deps.dev:0 +github.com/tiena2cva/action-emoji, github.com/tiencoffee/antcss,num_dependents_deps.dev:0 github.com/tiendinh595/loading-sppinner-reactjs,num_dependents_deps.dev:0 github.com/tiendinh595/window-title-reactjs,num_dependents_deps.dev:0 @@ -1123361,6 +1143530,7 @@ github.com/tiendn/next-csrf, github.com/tiendq/express-next,num_dependents_deps.dev:0 github.com/tiendq/express-tweak,num_dependents_deps.dev:0 github.com/tiendq/http-status,num_dependents_deps.dev:0 +github.com/tiendung717/android-version-bump, github.com/tiendunghaui/named-router-url-generator,num_dependents_deps.dev:0 github.com/tienduy-nguyen/exo-unkle,num_dependents_deps.dev:0 github.com/tienduy-nguyen/try-publish-npm,num_dependents_deps.dev:0 @@ -1123403,6 +1143573,7 @@ github.com/tientq/generator-jhipster-pace,num_dependents_deps.dev:0 github.com/tientran0019/react-native-toast-message,num_dependents_deps.dev:0 github.com/tientun/Android-Retrofit-Mock-Response,num_dependents_deps.dev:0 github.com/tienvx/angular-elastic-builder,num_dependents_deps.dev:0 +github.com/tienvx/phpinsights-action, github.com/tiepologian/node-services,num_dependents_deps.dev:0 github.com/tiepologian/trisdb-node,num_dependents_deps.dev:0 github.com/tiepp/react-app-rewire-react-svg-loader,num_dependents_deps.dev:0 @@ -1123417,6 +1143588,8 @@ github.com/tier4/lanelet2-parser, github.com/tier4/lgsvl_tools, github.com/tier4/pcd2kml, github.com/tier4/x-go,num_dependents_deps.dev:0 +github.com/tierconnect-adm/github-vulnerability-steps, +github.com/tierconnect/upload-csv-bigquery, github.com/tieresdeadbull/testes,num_dependents_deps.dev:0 github.com/tierex/algorithms, github.com/tierion/lnd,num_dependents_deps.dev:0 @@ -1123446,6 +1143619,7 @@ github.com/ties/generator-react-reflux-webpack,num_dependents_deps.dev:0 github.com/tieshan-fe/fedog,num_dependents_deps.dev:0 github.com/tiesjan/django-convenient-formsets, github.com/tiesjan/django-hcaptcha-field, +github.com/tiesjan/setup-testingbot-tunnel, github.com/tiesnetwork/ties.db-client-nodejs,num_dependents_deps.dev:0 github.com/tiesnetwork/universal-ebml,num_dependents_deps.dev:0 github.com/tiesont/bootbox,num_dependents_deps.dev:0 @@ -1123500,6 +1143674,7 @@ github.com/tigdevs/makkari,num_dependents_deps.dev:0 github.com/tiged/tiged, github.com/tigefa/tigefa,num_dependents_deps.dev:0 github.com/tigefa4u/tigefa-node.js,num_dependents_deps.dev:0 +github.com/tiger-cq/action-phpcs-ci, github.com/tiger-guo/test,num_dependents_deps.dev:0 github.com/tiger0105/token_factory,num_dependents_deps.dev:0 github.com/tiger31/evejs,num_dependents_deps.dev:0 @@ -1123562,9 +1143737,12 @@ github.com/tiggerntatie/brython-server, github.com/tiggerntatie/sffloat, github.com/tightai/tightai, github.com/tighten/collect,criticality_score:0.454690 +github.com/tighten/duster-action, github.com/tighten/jigsaw,criticality_score:0.527710 github.com/tighten/lambo,criticality_score:0.395010 +github.com/tighten/laravel-deploy-preview, github.com/tighten/mailthief,criticality_score:0.354400 +github.com/tighten/phpreleases-action, github.com/tighten/quicksand,criticality_score:0.368430 github.com/tighten/takeout,"criticality_score:0.502350,num_dependents_deps.dev:0" github.com/tighten/tlint,criticality_score:0.443570 @@ -1123786,6 +1143964,7 @@ github.com/tilastokeskus/node-clipsync,num_dependents_deps.dev:0 github.com/tilau2328/genesis,num_dependents_deps.dev:0 github.com/tilau2328/hashipi,num_dependents_deps.dev:0 github.com/tilayealemu/sparkmllite,num_dependents_deps.dev:0 +github.com/tilburgsciencehub/algolia-uploader, github.com/tilda/vue-shynet,num_dependents_deps.dev:0 github.com/tildaamrepp/clp-ui,num_dependents_deps.dev:0 github.com/tildah/native-password-input,num_dependents_deps.dev:0 @@ -1123987,6 +1144166,7 @@ github.com/tilo-schroeder/transitiveclosure,num_dependents_deps.dev:0 github.com/tilo/ID3,num_dependents_deps.dev:0 github.com/tilo/embedded_localization,num_dependents_deps.dev:0 github.com/tilo/smarter_csv,"criticality_score:0.369790,num_dependents_deps.dev:6" +github.com/tiloio/slack-webhook-action, github.com/tilosp/dnsbl-rs,num_dependents_deps.dev:0 github.com/tilosp/matrix-send-rs,num_dependents_deps.dev:0 github.com/tilpner/ilc,num_dependents_deps.dev:5 @@ -1124018,6 +1144198,7 @@ github.com/tilteng/hapi-bookshelf-jsonapi,num_dependents_deps.dev:0 github.com/tilteng/stripe-go,num_dependents_deps.dev:0 github.com/tiltshift/django-timeline, github.com/tiltshift/figmint,num_dependents_deps.dev:0 +github.com/tiltshift/heroku-promote-app, github.com/tiltshift/prettier-config,num_dependents_deps.dev:0 github.com/tiltshiftfocus/cordova-plugin-cache,num_dependents_deps.dev:0 github.com/tilucast/golang-intro-frmasters,num_dependents_deps.dev:0 @@ -1124025,6 +1144206,11 @@ github.com/tilwinjoy/angular-bootstrap-material,num_dependents_deps.dev:0 github.com/tily/carte,num_dependents_deps.dev:0 github.com/tily/ruby-easy-screen,num_dependents_deps.dev:0 github.com/tilyupomax/custom-carousel,num_dependents_deps.dev:0 +github.com/tim-actions/commit-body-check, +github.com/tim-actions/commit-message-checker-with-regex, +github.com/tim-actions/dco, +github.com/tim-actions/get-pr-commits, +github.com/tim-actions/wip-check, github.com/tim-coin/cuckoo,num_dependents_deps.dev:0 github.com/tim-coin/nodejs-mobile-cordova8,num_dependents_deps.dev:0 github.com/tim-evans/dinosheets,num_dependents_deps.dev:0 @@ -1124053,6 +1144239,7 @@ github.com/tim-hub/distances_calculator, github.com/tim-hub/meta-marked-2020,num_dependents_deps.dev:0 github.com/tim-hub/pambdajs,num_dependents_deps.dev:0 github.com/tim-hub/preact-purge-tailwindcss,num_dependents_deps.dev:0 +github.com/tim-hub/set-sqlite-db-permission-action, github.com/tim-hub/stormpath-flask-plus, github.com/tim-koehler/tims-logger,num_dependents_deps.dev:0 github.com/tim-kos/ajson,num_dependents_deps.dev:0 @@ -1124084,6 +1144271,7 @@ github.com/tim-rutts/sinple-calc,num_dependents_deps.dev:0 github.com/tim-shane/cloudy_search, github.com/tim-slifer/superfly-csv,num_dependents_deps.dev:0 github.com/tim-slifer/webdriver-sizzle-injector,num_dependents_deps.dev:0 +github.com/tim-smart/actions-upload-to-gist, github.com/tim-smart/bloc-js,num_dependents_deps.dev:0 github.com/tim-smart/droff,num_dependents_deps.dev:0 github.com/tim-smart/fpk,num_dependents_deps.dev:0 @@ -1124135,6 +1144323,7 @@ github.com/timClicks/cool_faces,num_dependents_deps.dev:0 github.com/timClicks/cop, github.com/timReynolds/passport-mondo-oauth2,num_dependents_deps.dev:0 github.com/timReynolds/react-visible,num_dependents_deps.dev:0 +github.com/tima-t/doorkeeper, github.com/timaa2k/jenkinscfg, github.com/timaaos/mcserversetup, github.com/timabell/disk-hog-backup,num_dependents_deps.dev:0 @@ -1124157,6 +1144346,7 @@ github.com/timam/whatismyip,num_dependents_deps.dev:0 github.com/timam/whatismyip-api,num_dependents_deps.dev:0 github.com/timandy/linq,num_dependents_deps.dev:0 github.com/timanishere/frontend-boilerplate,num_dependents_deps.dev:0 +github.com/timarenz/tf-helper-action, github.com/timarkh/uniparser-grammar-albanian, github.com/timarkh/uniparser-grammar-eastern-armenian, github.com/timarkh/uniparser-grammar-erzya, @@ -1124429,6 +1144619,7 @@ github.com/time-link/timelink-py, github.com/time-loop/parse-duration,num_dependents_deps.dev:0 github.com/time-percent/python-upbit, github.com/time-rs/time,"criticality_score:0.592870,num_dependents_deps.dev:19398" +github.com/time-rs/time-tzdb, github.com/time-travelers/php-test,num_dependents_deps.dev:0 github.com/time-yuan/sublogs-master, github.com/time4dev/fork-ts-checker-worker,num_dependents_deps.dev:0 @@ -1124525,6 +1144716,7 @@ github.com/timelessvirtues/bitstamp,num_dependents_deps.dev:2 github.com/timelessvirtues/bunyan-amqp,num_dependents_deps.dev:0 github.com/timelessvirtues/forecast.io-bluebird,num_dependents_deps.dev:0 github.com/timelessz/scrapybigbusinessinfo,num_dependents_deps.dev:0 +github.com/timelfrink/shouldideploy-action, github.com/timelight-ai/js-api-client,num_dependents_deps.dev:0 github.com/timeline-monoid/timeline-monoid,num_dependents_deps.dev:0 github.com/timelinelabs/tll-common, @@ -1124540,6 +1144732,8 @@ github.com/timelsass/wp-license-compatibility,num_dependents_deps.dev:0 github.com/timelsass/wp-project-header,num_dependents_deps.dev:2 github.com/timelsass/wp-tested-up-to,num_dependents_deps.dev:0 github.com/timelsass/wp-textdomain,num_dependents_deps.dev:0 +github.com/timely-deploy/action, +github.com/timely-deploy/status-action, github.com/timemachine3030/jenkman,num_dependents_deps.dev:0 github.com/timemachine3030/jsreport-pkgcloud-storage,num_dependents_deps.dev:0 github.com/timemore/foundation,num_dependents_deps.dev:0 @@ -1124625,7 +1144819,9 @@ github.com/timeyyy/timstools, github.com/timeyyy/tkquick, github.com/timeyyy/tttt, github.com/timezstyle/goreplay,num_dependents_deps.dev:0 +github.com/timfallmk/github-changelog-generator-action, github.com/timfallmk/godo,num_dependents_deps.dev:0 +github.com/timfallmk/previous-git-tag-action, github.com/timfame/rusprofile-service,num_dependents_deps.dev:0 github.com/timfeid/cunning,num_dependents_deps.dev:0 github.com/timfeid/download-manager,num_dependents_deps.dev:0 @@ -1124681,6 +1144877,7 @@ github.com/timgates42/meticulous, github.com/timgates42/prawn, github.com/timgates42/prtg, github.com/timgblack/pdf.svelte,num_dependents_deps.dev:0 +github.com/timgchile/mongodb-github-action, github.com/timgent/data-flare,num_dependents_deps.dev:0 github.com/timgent/spark-data-quality,num_dependents_deps.dev:0 github.com/timgh101/goauth,num_dependents_deps.dev:0 @@ -1124734,6 +1144931,10 @@ github.com/timhettler/grunt-l10n,num_dependents_deps.dev:0 github.com/timhettler/ng-percentage-filter,num_dependents_deps.dev:0 github.com/timhettler/sass-fpo,num_dependents_deps.dev:0 github.com/timheuer/alexa-skills-dotnet,criticality_score:0.450990 +github.com/timheuer/base64-to-file, +github.com/timheuer/bootstrap-dotnet, +github.com/timheuer/issue-notifier, +github.com/timheuer/vsix-version-stamp, github.com/timhibbard/paraplan-react,num_dependents_deps.dev:0 github.com/timholy/ProgressMeter.jl,criticality_score:0.498880 github.com/timholy/Revise.jl,criticality_score:0.590180 @@ -1124879,6 +1145080,7 @@ github.com/timkendrick/skivvy-factory,num_dependents_deps.dev:0 github.com/timkendrick/skivvy-package-react,num_dependents_deps.dev:0 github.com/timkendrick/skivvy-utils,num_dependents_deps.dev:0 github.com/timkendrick/transducers,num_dependents_deps.dev:0 +github.com/timkent/container-layer-check, github.com/timkg/webshot-amqp,num_dependents_deps.dev:0 github.com/timkg/webshot-amqp-client,num_dependents_deps.dev:0 github.com/timkim/phonegap-magicavoxel-aframe-template,num_dependents_deps.dev:0 @@ -1124935,6 +1145137,7 @@ github.com/timkpaine/tornado-proxy-handlers, github.com/timkpaine/tornado_sqlalchemy_login, github.com/timkpaine/tributary, github.com/timkpaine/voila-plain, +github.com/timkrase/phpunit-coverage-badge, github.com/timkrusch/tinytestpkg,num_dependents_deps.dev:0 github.com/timkuijsten/mongo-test-db,num_dependents_deps.dev:0 github.com/timkuijsten/node-array-bcrypt-user,num_dependents_deps.dev:0 @@ -1125018,6 +1145221,7 @@ github.com/timmclean/generate-safe-id,num_dependents_deps.dev:0 github.com/timmclean/rust-timing-shield,num_dependents_deps.dev:0 github.com/timmd909/grunt-run-once,num_dependents_deps.dev:0 github.com/timmedia/python-latex-bridge, +github.com/timmeinerzhagen/dependabot-sha-comment-action, github.com/timmeister7/react-file-previewer,num_dependents_deps.dev:0 github.com/timmfin/broccoli-webpack-cached,num_dependents_deps.dev:0 github.com/timmilesdw/react-cursor-custom,num_dependents_deps.dev:0 @@ -1125086,6 +1145290,7 @@ github.com/timmymorr/token-validator,num_dependents_deps.dev:0 github.com/timmyomahony/cmsplugin-pagedown, github.com/timmyomahony/django-pagedown,criticality_score:0.468870 github.com/timmyomahony/python-parsnip, +github.com/timmypidashev/auto-pipreqs, github.com/timmypotts/gatekeeper,num_dependents_deps.dev:0 github.com/timmypotts/go-api,num_dependents_deps.dev:0 github.com/timmypotts/gocrash,num_dependents_deps.dev:0 @@ -1125157,8 +1145362,11 @@ github.com/timo-cmd2/a.a.a.a,num_dependents_deps.dev:0 github.com/timo-haas/ngx-input-observable-decorator,num_dependents_deps.dev:0 github.com/timo-haas/rxjs-element-observer,num_dependents_deps.dev:0 github.com/timo-reymann/deterministic-zip,num_dependents_deps.dev:0 +github.com/timo-reymann/deterministic-zip-gh-action, +github.com/timo-reymann/dockerhub-semantic-release-gh-action, github.com/timo-reymann/enhanced-diagnostics,num_dependents_deps.dev:0 github.com/timo-reymann/git-semver-tag,num_dependents_deps.dev:0 +github.com/timo-reymann/marp-gh-page-action, github.com/timo-reymann/mjml-custom-component-decorator,num_dependents_deps.dev:0 github.com/timo-reymann/webp-utils,num_dependents_deps.dev:0 github.com/timo-schmid/sbt-i18n,num_dependents_deps.dev:0 @@ -1125232,6 +1145440,7 @@ github.com/timojarv/orjabot,num_dependents_deps.dev:0 github.com/timoknapp/soundcloud-cli,num_dependents_deps.dev:0 github.com/timokoenig/appstore-review-dumper,num_dependents_deps.dev:0 github.com/timokoenig/gqlgen-mongo,num_dependents_deps.dev:0 +github.com/timokoenig/hetzner-cdk-action, github.com/timokroeger/efm32pg12-pac,num_dependents_deps.dev:0 github.com/timokroeger/embedded-can,num_dependents_deps.dev:16 github.com/timolawl/gulp-manifest,num_dependents_deps.dev:0 @@ -1125260,6 +1145469,7 @@ github.com/timonSchenzel/intitule,num_dependents_deps.dev:0 github.com/timonkk/sequelize, github.com/timonmasberg/address-formatter,num_dependents_deps.dev:0 github.com/timonmasberg/divera247,num_dependents_deps.dev:0 +github.com/timonmasberg/nx-migration-gh-action, github.com/timonorawski/solunar,num_dependents_deps.dev:0 github.com/timonreinhard/wemo-client,num_dependents_deps.dev:2 github.com/timonreinhard/zetta-wemothat-driver,num_dependents_deps.dev:0 @@ -1125302,6 +1145512,7 @@ github.com/timoransky/cookie-consent-dialog,num_dependents_deps.dev:0 github.com/timoreichert/createWebApp,num_dependents_deps.dev:0 github.com/timorls/dou-ban,num_dependents_deps.dev:0 github.com/timorss/react-cool-tabs,num_dependents_deps.dev:0 +github.com/timorthi/export-workflow-logs, github.com/timoruohomaki/go-workspace,num_dependents_deps.dev:0 github.com/timos-api/authenticator,num_dependents_deps.dev:0 github.com/timos-api/transformer,num_dependents_deps.dev:0 @@ -1125550,6 +1145761,7 @@ github.com/timpel-online/strapi-provider-upload-google-cloud-storage-custom-size github.com/timpeoples/deplib, github.com/timpeoples/seclusion, github.com/timperkins/js-keyboard,num_dependents_deps.dev:0 +github.com/timperman/artifactory-promote-action, github.com/timperman/docker-monstro,num_dependents_deps.dev:0 github.com/timperman/gitbook-plugin-tech-radar,num_dependents_deps.dev:0 github.com/timpler/jquery.initialize,num_dependents_deps.dev:0 @@ -1125589,6 +1145801,7 @@ github.com/timrburnham/bom_open, github.com/timrc-git/go-prompt,num_dependents_deps.dev:0 github.com/timrcoulson/gromit,num_dependents_deps.dev:0 github.com/timrcoulson/hosted-fields-react,num_dependents_deps.dev:0 +github.com/timreimherr/create-github-app-token, github.com/timreinke/document-lifecycle-util,num_dependents_deps.dev:0 github.com/timretout/bedford-bins,num_dependents_deps.dev:0 github.com/timreynolds/AutoFixture.js,num_dependents_deps.dev:0 @@ -1125604,7 +1145817,10 @@ github.com/timritzer/type-helpers,num_dependents_deps.dev:0 github.com/timritzer/typed-vuex,num_dependents_deps.dev:0 github.com/timrockefeller/hexo-mask-character,num_dependents_deps.dev:0 github.com/timrogers/amex2xero,num_dependents_deps.dev:0 +github.com/timrogers/build-raycast-extension, github.com/timrogers/ncco-ruby,num_dependents_deps.dev:0 +github.com/timrogers/publish-raycast-extension, +github.com/timrogers/pull-raycast-extension-changes, github.com/timrosenblatt/CacheGorilla,num_dependents_deps.dev:0 github.com/timrosskamp/plain-transition,num_dependents_deps.dev:0 github.com/timrosskamp/webpage-tools,num_dependents_deps.dev:0 @@ -1125755,6 +1145971,7 @@ github.com/timtarusov/mux_test,num_dependents_deps.dev:0 github.com/timtermtube/golokweb,num_dependents_deps.dev:0 github.com/timtermtube/sil.js,num_dependents_deps.dev:0 github.com/timthedev07/RandomPasswordGenerator,num_dependents_deps.dev:0 +github.com/timthedev07/copy_file_to_another_repo_action, github.com/timthedev07/distinct.css,num_dependents_deps.dev:0 github.com/timthelion/petgraph-evcxr,num_dependents_deps.dev:0 github.com/timthelion/petgraph-examples,num_dependents_deps.dev:0 @@ -1125917,6 +1146134,8 @@ github.com/timyuheng/crifanlib,num_dependents_deps.dev:0 github.com/timzatko/Sklearn-Nature-Inspired-Algorithms, github.com/timzatko/feebas,num_dependents_deps.dev:0 github.com/timzatko/wdio-browserstack-spec-reporter,num_dependents_deps.dev:0 +github.com/timzu/github-actions-build, +github.com/timzu/github-actions-docker, github.com/tin-cat/jquery-mosaic,num_dependents_deps.dev:0 github.com/tin-cat/moockup,num_dependents_deps.dev:0 github.com/tin-nguyen/karma-chrome-extra-launcher,num_dependents_deps.dev:0 @@ -1125933,6 +1146152,9 @@ github.com/tinacious/vscode-tinacious-design-syntax,num_dependents_deps.dev:0 github.com/tinacms/tina-graphql-gateway, github.com/tinacms/tina-starter-grande,num_dependents_deps.dev:0 github.com/tinacms/tinacms,"criticality_score:0.637910,num_dependents_deps.dev:2540" +github.com/tinact/docker.image, +github.com/tinact/docker.image-latest, +github.com/tinact/docker.image-retag, github.com/tinahbu/dingpy, github.com/tinajs/gulp-mina,num_dependents_deps.dev:0 github.com/tinajs/mina-sfc,num_dependents_deps.dev:14 @@ -1126013,6 +1146235,7 @@ github.com/tinesoft/ng2-scrollreveal,num_dependents_deps.dev:0 github.com/tinesoft/ngx-cookieconsent,num_dependents_deps.dev:0 github.com/tinesoft/ngx-scrollreveal,num_dependents_deps.dev:0 github.com/tinesoft/ngx-storybook-schematics,num_dependents_deps.dev:0 +github.com/tinesoft/ngx-uptodate, github.com/tinesoft/ngx-wow,num_dependents_deps.dev:0 github.com/tinesoft/nxrocks,num_dependents_deps.dev:0 github.com/tinesoft/spring-esdata-loader,num_dependents_deps.dev:0 @@ -1126228,6 +1146451,7 @@ github.com/tino/virtualenvwrapper.djangodeploy, github.com/tinode/chat,"criticality_score:0.573840,num_dependents_deps.dev:0" github.com/tinode/example-react-js,num_dependents_deps.dev:0 github.com/tinode/tinode-js,num_dependents_deps.dev:0 +github.com/tinoji/delete-older-release-assets, github.com/tinoquang/comic-notifier,num_dependents_deps.dev:0 github.com/tinosteinort/beanrepository,num_dependents_deps.dev:0 github.com/tinosteinort/flda,num_dependents_deps.dev:0 @@ -1126236,6 +1146460,9 @@ github.com/tinosteinort/flda-fixedlengthstring,num_dependents_deps.dev:0 github.com/tinosteinort/flda-stringlist,num_dependents_deps.dev:0 github.com/tinotk/rvtts, github.com/tinoue/node-red-contrib-linking-device,num_dependents_deps.dev:0 +github.com/tinovyatkin/action-check-deprecated-js-deps, +github.com/tinovyatkin/action-eslint, +github.com/tinovyatkin/action-php-codesniffer, github.com/tinovyatkin/babel-plugin-html-tag,num_dependents_deps.dev:0 github.com/tinovyatkin/fun-dispatcher, github.com/tinovyatkin/git-blame-json,num_dependents_deps.dev:0 @@ -1126407,6 +1146634,7 @@ github.com/tinper-uba/uba-server-mock,num_dependents_deps.dev:0 github.com/tinper-uba/uba-server-proxy,num_dependents_deps.dev:0 github.com/tinper-uba/uba-server-static,num_dependents_deps.dev:0 github.com/tinpotnick/babble-drachtio-registrar,num_dependents_deps.dev:0 +github.com/tinpotnick/webpreprocessor, github.com/tinqlo/logfly, github.com/tinrab/graphql-realtime-chat,num_dependents_deps.dev:0 github.com/tinrab/meower,num_dependents_deps.dev:0 @@ -1126416,6 +1146644,7 @@ github.com/tinshade/NPM_Custom_Packages,num_dependents_deps.dev:0 github.com/tinslice/crusader,num_dependents_deps.dev:0 github.com/tinsmancb/multivector3d, github.com/tint-ai/serverless-offline, +github.com/tinted-theming/base16-builder-go, github.com/tintfoundation/bitboot, github.com/tintfoundation/nat-traverse,num_dependents_deps.dev:0 github.com/tintinthong/poker-pattern-matching,num_dependents_deps.dev:0 @@ -1126425,6 +1146654,7 @@ github.com/tintinweb/evmcodegen, github.com/tintinweb/evmdasm, github.com/tintinweb/pyetherchain, github.com/tintinweb/solidity-doppelganger, +github.com/tintinweb/solidity-metrics-action, github.com/tintinweb/solidity-shell,num_dependents_deps.dev:0 github.com/tintoy/docfx-project,num_dependents_deps.dev:0 github.com/tintoy/nuget-client-nodejs,num_dependents_deps.dev:0 @@ -1126576,6 +1146806,7 @@ github.com/tinykitten/linebot,num_dependents_deps.dev:0 github.com/tinylcy/smallvm,num_dependents_deps.dev:0 github.com/tinyleaf-e/generate-api-doc,num_dependents_deps.dev:0 github.com/tinylib/msgp,"criticality_score:0.438420,num_dependents_deps.dev:3187" +github.com/tinylog-org/tinylog, github.com/tinylpc/TinyViewPager,num_dependents_deps.dev:0 github.com/tinymce/beehive-flow,num_dependents_deps.dev:0 github.com/tinymce/eslint-plugin,num_dependents_deps.dev:0 @@ -1126646,6 +1146877,7 @@ github.com/tinyzimmer/kvdi,num_dependents_deps.dev:0 github.com/tinzenite/bootstrap,num_dependents_deps.dev:0 github.com/tinzenite/tin,num_dependents_deps.dev:0 github.com/tio/tio,"criticality_score:0.548600,num_dependents_deps.dev:0" +github.com/tiobe/tics-github-action, github.com/tiodot/fis-command-install, github.com/tiojevero/go-simple-article-api,num_dependents_deps.dev:0 github.com/tiokolane/volkeno-button,num_dependents_deps.dev:0 @@ -1126842,6 +1147074,7 @@ github.com/tisma/rust,num_dependents_deps.dev:0 github.com/tismith/exitfailure,num_dependents_deps.dev:41 github.com/tisnik/insights-operator-mock,num_dependents_deps.dev:0 github.com/tisnik/insights-operator-web-ui,num_dependents_deps.dev:0 +github.com/tisonkun/actions-dco, github.com/tisonkun/parser,num_dependents_deps.dev:0 github.com/tispr/gocd-opsworks-plugin,num_dependents_deps.dev:0 github.com/tispratik/marshmallow-sqlalchemy, @@ -1126967,6 +1147200,9 @@ github.com/titel-media/karma-istanbul-threshold,num_dependents_deps.dev:0 github.com/titel-media/node-fetch,num_dependents_deps.dev:0 github.com/titel-media/react-apollo-multiple-clients,num_dependents_deps.dev:0 github.com/titel-media/scoped-sentry-reporter,num_dependents_deps.dev:0 +github.com/titenkov/action-slack, +github.com/titenkov/auto-assign-action, +github.com/titenkov/docker-sync-action, github.com/titenq/menj,num_dependents_deps.dev:0 github.com/titeya/asteroid-oauth,num_dependents_deps.dev:0 github.com/titeya/material-ui, @@ -1127007,6 +1147243,7 @@ github.com/titom73/inetsix-config-builder, github.com/titon/probe,num_dependents_deps.dev:0 github.com/titon/toolkit,num_dependents_deps.dev:0 github.com/titonobre/storybook-addon-angularjs,num_dependents_deps.dev:0 +github.com/titoportas/update-project-fields, github.com/titorenko/quick-csv-streamer,num_dependents_deps.dev:0 github.com/titorenko/staxel,num_dependents_deps.dev:0 github.com/titou-from-mars/aurelia-tinymce-wrapper,num_dependents_deps.dev:0 @@ -1127125,6 +1147362,7 @@ github.com/tivv/wraop,num_dependents_deps.dev:0 github.com/tivvit/aerospike-client-mock-python, github.com/tivvit/python-case-insensitive-dict, github.com/tivvit/yap,num_dependents_deps.dev:0 +github.com/tiwanari/list-merged-pull-requests, github.com/tiware23/learninggo,num_dependents_deps.dev:0 github.com/tiwari85aman/flight-status, github.com/tiwariarjun91/bookstore_users-api,num_dependents_deps.dev:0 @@ -1127140,7 +1147378,9 @@ github.com/tiwe0/quickspider, github.com/tiwilliam/hookit, github.com/tiwilliam/sverigesradio, github.com/tix-australia/react-native-scrollable-tab-view,num_dependents_deps.dev:0 +github.com/tix-factory/msbuild-project-generator, github.com/tix-factory/npm,num_dependents_deps.dev:44 +github.com/tix-factory/release-manager, github.com/tix320/kiwi,num_dependents_deps.dev:0 github.com/tix320/nimble,num_dependents_deps.dev:0 github.com/tix320/oss-parent,num_dependents_deps.dev:0 @@ -1127165,6 +1147405,8 @@ github.com/tiy-tpa-fee/app-app,num_dependents_deps.dev:0 github.com/tiy-tpa-fee/generator-app-app,num_dependents_deps.dev:0 github.com/tiyafru/my-typescript,num_dependents_deps.dev:0 github.com/tiyafru/new-my-typescript-tiyafru,num_dependents_deps.dev:0 +github.com/tiyee/action-ssh, +github.com/tiyee/aliyun-oss-auto-upload, github.com/tiyee/proxy-server,num_dependents_deps.dev:0 github.com/tiyolab/node-red-contrib-salesforce-stratus360,num_dependents_deps.dev:0 github.com/tizah/go-helloworld,num_dependents_deps.dev:0 @@ -1127201,11 +1147443,46 @@ github.com/tizzo/lepew-penelope,num_dependents_deps.dev:0 github.com/tizzo/node-multiple-callback-resolver,num_dependents_deps.dev:0 github.com/tizzo/riker,num_dependents_deps.dev:0 github.com/tizzo/yaml-config-loader, +github.com/tj-actions/auto-doc, +github.com/tj-actions/aws-cdk, +github.com/tj-actions/bandit, +github.com/tj-actions/branch-names, +github.com/tj-actions/cargo-bump, +github.com/tj-actions/changed-files, +github.com/tj-actions/check-manifest, +github.com/tj-actions/checkly-trigger, +github.com/tj-actions/coverage-badge-go, +github.com/tj-actions/coverage-badge-js, +github.com/tj-actions/coverage-badge-py, +github.com/tj-actions/coverage-reporter, +github.com/tj-actions/depcheck, +github.com/tj-actions/docker-cp, +github.com/tj-actions/docker-run-action, +github.com/tj-actions/eslint-changed-files, +github.com/tj-actions/git-cliff, +github.com/tj-actions/github-changelog-generator, +github.com/tj-actions/glob, +github.com/tj-actions/install-postgresql, +github.com/tj-actions/json2file, +github.com/tj-actions/pg-dump, +github.com/tj-actions/pg-restore, +github.com/tj-actions/puppeteer, +github.com/tj-actions/release-tagger, +github.com/tj-actions/remark, +github.com/tj-actions/renovate-config-validator, +github.com/tj-actions/schemaspy, +github.com/tj-actions/semver-diff, +github.com/tj-actions/setup-bin, +github.com/tj-actions/sync-release-version, +github.com/tj-actions/vercel-wait, +github.com/tj-actions/verify-changed-files, github.com/tj-django/django-clone, github.com/tj-django/django-extra-field-validation, github.com/tj-django/django-migration-fixer, github.com/tj-django/django-view-breadcrumbs, github.com/tj-django/drf-restricted-fields, +github.com/tj-fotech/action-mender-upload, +github.com/tj-fotech/mender-deployer-action, github.com/tj-go/go-graphql,num_dependents_deps.dev:0 github.com/tj-mc/raspberry,num_dependents_deps.dev:0 github.com/tj-mc/yt-player-es,num_dependents_deps.dev:0 @@ -1127372,6 +1147649,7 @@ github.com/tjconcept/js-rename-key,num_dependents_deps.dev:0 github.com/tjconcept/js-rfc822-date,num_dependents_deps.dev:2 github.com/tjconcept/njs-http-body-parse,num_dependents_deps.dev:0 github.com/tjconcept/njs-http-query-parse,num_dependents_deps.dev:0 +github.com/tjcorr/gha-unique-name-generator, github.com/tjcprince/ember-cli-bootstrap-datetimepicker,num_dependents_deps.dev:0 github.com/tjcprince/randomNickname,num_dependents_deps.dev:0 github.com/tjcreedy/metamate, @@ -1127437,6 +1147715,7 @@ github.com/tjenkinson/clappr-videocontext-playback,num_dependents_deps.dev:0 github.com/tjenkinson/compass-mixins,num_dependents_deps.dev:0 github.com/tjenkinson/dynamic-marquee,num_dependents_deps.dev:0 github.com/tjenkinson/exponential-rate-limit,num_dependents_deps.dev:0 +github.com/tjenkinson/gh-action-auto-merge-dependency-updates, github.com/tjenkinson/hls-live-thumbnails, github.com/tjenkinson/infinite-queue,num_dependents_deps.dev:0 github.com/tjenkinson/interceptor,num_dependents_deps.dev:0 @@ -1127497,6 +1147776,7 @@ github.com/tjguk/networkzero, github.com/tjguk/winshell, github.com/tjgurwara99/event-history, github.com/tjgurwara99/go,num_dependents_deps.dev:0 +github.com/tjgurwara99/label-maker, github.com/tjgurwara99/practice_algorithms,num_dependents_deps.dev:0 github.com/tjhall13/cafescript,num_dependents_deps.dev:0 github.com/tjhall13/discoverage,num_dependents_deps.dev:0 @@ -1127574,6 +1147854,7 @@ github.com/tjma2001/message-client,num_dependents_deps.dev:0 github.com/tjma2001/parse-server-azure-storage, github.com/tjmair41/node-service-utilities,num_dependents_deps.dev:0 github.com/tjmaynes/learning-golang,num_dependents_deps.dev:0 +github.com/tjmcraft/action-electron-builder, github.com/tjmcs/influxdb-telegraf,num_dependents_deps.dev:0 github.com/tjmehta/101,num_dependents_deps.dev:2402 github.com/tjmehta/abortable-generator,num_dependents_deps.dev:0 @@ -1127723,6 +1148004,8 @@ github.com/tjol/sprintf-rs,num_dependents_deps.dev:0 github.com/tjololo/dsd,num_dependents_deps.dev:0 github.com/tjololo/hello-go-web,num_dependents_deps.dev:0 github.com/tjololo/linkerd-cert-notifier,num_dependents_deps.dev:0 +github.com/tjololo/npm-package-update-sync, +github.com/tjololo/nuget-dependencies-update, github.com/tjoskar/assert,num_dependents_deps.dev:0 github.com/tjoskar/autoinject,num_dependents_deps.dev:0 github.com/tjoskar/chain-spy,num_dependents_deps.dev:0 @@ -1127778,6 +1148061,7 @@ github.com/tjtelan/boundary-api-rs,num_dependents_deps.dev:0 github.com/tjtelan/git-event-rs,num_dependents_deps.dev:0 github.com/tjtelan/git-meta-rs,num_dependents_deps.dev:0 github.com/tjtelan/git-url-parse-rs,num_dependents_deps.dev:0 +github.com/tjtharrison/github-actions-docs, github.com/tjubao/tus-cli,num_dependents_deps.dev:0 github.com/tjuking/fis-preprocessor-srcset,num_dependents_deps.dev:0 github.com/tjuking/fis3-deploy-http-push-zrb,num_dependents_deps.dev:0 @@ -1127801,6 +1148085,7 @@ github.com/tjunghans/tag-input, github.com/tjunnone/npm-check-updates,num_dependents_deps.dev:132 github.com/tjunussov/aqpar-throttle,num_dependents_deps.dev:0 github.com/tjurikovas/project,num_dependents_deps.dev:0 +github.com/tjusl/sync-upstream-repo, github.com/tjvantoll/jquery-ui-vertical-tabs,num_dependents_deps.dev:0 github.com/tjvantoll/nativescript-IQKeyboardManager,num_dependents_deps.dev:0 github.com/tjvantoll/nativescript-flashlight,num_dependents_deps.dev:0 @@ -1127889,6 +1148174,8 @@ github.com/tjyuyao/neurlink, github.com/tk-canday/icharts,num_dependents_deps.dev:0 github.com/tk-hayashi/cfgrep, github.com/tk-ni/node-data-modeler,num_dependents_deps.dev:0 +github.com/tk0miya/action-erblint, +github.com/tk0miya/action-steep, github.com/tk0miya/diff-highlight, github.com/tk0miya/docutils-stubs, github.com/tk0miya/flake8-coding, @@ -1127919,6 +1148206,7 @@ github.com/tk120404/redis-connection-no-auth,num_dependents_deps.dev:0 github.com/tk2lab/HOTARU, github.com/tk2lab/vbnigmm, github.com/tk2rush90/pg-query-builder,num_dependents_deps.dev:0 +github.com/tk3fftk/upload-DirectCloud-BOX-action, github.com/tk42/golang-echo,num_dependents_deps.dev:0 github.com/tk42/raft-sample,num_dependents_deps.dev:0 github.com/tk42/victolinux,num_dependents_deps.dev:0 @@ -1128412,6 +1148700,9 @@ github.com/tkssharma/MyJSLibrary,num_dependents_deps.dev:0 github.com/tksventures/pimbridge, github.com/tksventures/tokes-payments-client,num_dependents_deps.dev:0 github.com/tksventures/tokes-payments-component,num_dependents_deps.dev:0 +github.com/tkt-actions/add-issue-links, +github.com/tkt-actions/aws-sam-cli, +github.com/tkt989/action-deploygate-cli, github.com/tkt989/gitlab-snippet-cloner, github.com/tktcorporation/simple-query-builder,num_dependents_deps.dev:0 github.com/tktcorporation/type-async-decorator,num_dependents_deps.dev:0 @@ -1128498,6 +1148789,7 @@ github.com/tkyaji/cordova-plugin-cpp-bridge, github.com/tkyaji/cordova-plugin-crypt-file,num_dependents_deps.dev:0 github.com/tkyisgk/anime-utils, github.com/tl-its-umich-edu/lti-utils,num_dependents_deps.dev:0 +github.com/tl6kk/rumi_action, github.com/tl8roy/spritz_cipher,num_dependents_deps.dev:0 github.com/tlaanemaa/backup-docker,num_dependents_deps.dev:0 github.com/tlaanemaa/limit-async,num_dependents_deps.dev:0 @@ -1128601,6 +1148893,7 @@ github.com/tlcheah2/URLParser,num_dependents_deps.dev:0 github.com/tldevw/quiz_game,num_dependents_deps.dev:0 github.com/tldr-group/taufactor, github.com/tldr-pages/tldr,criticality_score:0.702250 +github.com/tldr-pages/tldr-labeler-action, github.com/tldr-pages/tldr-lint, github.com/tldr-pages/tldr-node-client,criticality_score:0.446220 github.com/tldr-pages/tldr-python-client,criticality_score:0.396810 @@ -1128786,6 +1149079,7 @@ github.com/tliron/py4go,num_dependents_deps.dev:0 github.com/tliron/python-ard, github.com/tliron/reposure,num_dependents_deps.dev:0 github.com/tliron/ronin,num_dependents_deps.dev:0 +github.com/tliron/setup-puccini, github.com/tliron/turandot,num_dependents_deps.dev:0 github.com/tliron/yamlkeys,num_dependents_deps.dev:10 github.com/tlissak/dynupdate,num_dependents_deps.dev:0 @@ -1128878,6 +1149172,8 @@ github.com/tlrx/elasticsearch-test,num_dependents_deps.dev:0 github.com/tlrx/elasticsearch-view-mustache-plugin,num_dependents_deps.dev:0 github.com/tlrx/elasticsearch-view-plugin,num_dependents_deps.dev:0 github.com/tls-attacker/TLS-Attacker,criticality_score:0.375520 +github.com/tls-deploy-actions/alibabacloud-waf, +github.com/tls-deploy-actions/ucloud-cdn, github.com/tls-did-project/tls-did,num_dependents_deps.dev:0 github.com/tls-did-project/tls-did-registry,num_dependents_deps.dev:0 github.com/tls-did-project/tls-did-resolver,num_dependents_deps.dev:0 @@ -1128967,6 +1149263,8 @@ github.com/tly1980/grunt-html2json, github.com/tly1980/jj2c, github.com/tly1980/tpl2module,num_dependents_deps.dev:0 github.com/tlyakhov/python-decora_wifi, +github.com/tlylt/install-graphviz, +github.com/tlylt/reposense-action, github.com/tlyng/binterlude, github.com/tlystad24/helloify,num_dependents_deps.dev:0 github.com/tlzzu/flow-chart-editor,num_dependents_deps.dev:0 @@ -1129176,6 +1149474,7 @@ github.com/tmccombs/tls-listener,num_dependents_deps.dev:0 github.com/tmcdos/custompatch,num_dependents_deps.dev:0 github.com/tmcintire/tslint,num_dependents_deps.dev:0 github.com/tmck-code/punsy, +github.com/tmckeown2/action-create-release, github.com/tmcknight/netlify-ddns-updater,num_dependents_deps.dev:0 github.com/tmclnk/newman-reporter-cloudwatch-metrics,num_dependents_deps.dev:0 github.com/tmcmaster/iron-ajax,num_dependents_deps.dev:0 @@ -1129252,6 +1149551,7 @@ github.com/tmcw/leftpad,num_dependents_deps.dev:48 github.com/tmcw/machine-epsilon, github.com/tmcw/mistakes,num_dependents_deps.dev:0 github.com/tmcw/module-deps, +github.com/tmcw/notfoundbot, github.com/tmcw/npm-add-repo,num_dependents_deps.dev:0 github.com/tmcw/numeric,num_dependents_deps.dev:0 github.com/tmcw/one-at-a-time,num_dependents_deps.dev:0 @@ -1129306,6 +1149606,7 @@ github.com/tmehnert/complate-cpp-for-python, github.com/tmeisel/digester,num_dependents_deps.dev:0 github.com/tmeizo/gointra,num_dependents_deps.dev:0 github.com/tmelhiser/disir,num_dependents_deps.dev:0 +github.com/tmelliottjr/extract-regex-action, github.com/tmelliottjr/vue-completer,num_dependents_deps.dev:0 github.com/tmenier/Flurl,criticality_score:0.516280 github.com/tmerello2001/docker-registry-search,num_dependents_deps.dev:0 @@ -1129342,6 +1149643,7 @@ github.com/tmigimatsu/spatial-dyn, github.com/tmigimatsu/symbolic, github.com/tmigone/fibertel-niveles, github.com/tmigone/pulseaudio,num_dependents_deps.dev:0 +github.com/tmigone/versionist, github.com/tmigone/versionist-test,num_dependents_deps.dev:0 github.com/tmiguelt/LibreOfficeFlashcards,num_dependents_deps.dev:0 github.com/tmijs/tmi.js,"criticality_score:0.434150,num_dependents_deps.dev:4" @@ -1129362,6 +1149664,7 @@ github.com/tmilev/calculator,Google github.com/tmilev/mathquill,Google github.com/tmilewski/serverless-resources-validation-plugin,num_dependents_deps.dev:0 github.com/tmilliman/python-vegindex, +github.com/tmillr/breaking-change, github.com/tmilos/dotenv-props-tool,num_dependents_deps.dev:0 github.com/tmilos/pimple-js,num_dependents_deps.dev:0 github.com/tminamiii/go-box,num_dependents_deps.dev:0 @@ -1129403,6 +1149706,7 @@ github.com/tmkelly28/gowiki,num_dependents_deps.dev:0 github.com/tmking/reddit_archiver,num_dependents_deps.dev:0 github.com/tmkmk/HEVCwebPlayer,num_dependents_deps.dev:0 github.com/tmkn/packageanalyzer,num_dependents_deps.dev:0 +github.com/tmknom/retag-ecr-action, github.com/tmkryb/contents-file-loader,num_dependents_deps.dev:0 github.com/tml0415/gbk2312,num_dependents_deps.dev:0 github.com/tml0415/shapejs,num_dependents_deps.dev:0 @@ -1129457,6 +1149761,7 @@ github.com/tmobile/percy,num_dependents_deps.dev:0 github.com/tmobile/percy-cake, github.com/tmobile/t-vault,criticality_score:0.389800 github.com/tmoers/hexplay,num_dependents_deps.dev:0 +github.com/tmokmss/bedrock-pr-reviewer, github.com/tmokmss/format-jsonfile,num_dependents_deps.dev:0 github.com/tmokmss/simplest-mock-server,num_dependents_deps.dev:0 github.com/tmolteno/TART, @@ -1129718,6 +1150023,9 @@ github.com/tms005/godemorepo,num_dependents_deps.dev:0 github.com/tms88/proxiani,num_dependents_deps.dev:0 github.com/tmsc4zht/dla,num_dependents_deps.dev:0 github.com/tmsc4zht/sugoi,num_dependents_deps.dev:0 +github.com/tmshkr/blue-green-beanstalk, +github.com/tmshkr/handle-env, +github.com/tmshkr/ngrok-ssh, github.com/tmshn/python-stackdriver-log-formatter, github.com/tmshv/coupon,num_dependents_deps.dev:1 github.com/tmshv/fat,num_dependents_deps.dev:0 @@ -1129750,6 +1150058,7 @@ github.com/tmtek/preact-pwa-install,num_dependents_deps.dev:0 github.com/tmtek/preact-pwa-native-bridge,num_dependents_deps.dev:0 github.com/tmtek/twitchstreams,num_dependents_deps.dev:0 github.com/tmtenbrink/frc, +github.com/tmtenbrink/maturin-manylinux-wheels-action, github.com/tmtenbrink/rustfrc, github.com/tmtget/html-webpack-layout-plugin,num_dependents_deps.dev:0 github.com/tmthrgd/asm,num_dependents_deps.dev:0 @@ -1129932,6 +1150241,7 @@ github.com/tnessn/couscous,num_dependents_deps.dev:0 github.com/tnesztler/bamboorules, github.com/tneudevteam/tneu-news,num_dependents_deps.dev:0 github.com/tnewman/PyKazoo, +github.com/tnewman/cargo-release-validator, github.com/tnewman/pat,num_dependents_deps.dev:0 github.com/tnez/eslint-config-tnez,num_dependents_deps.dev:0 github.com/tnez/reventor,num_dependents_deps.dev:0 @@ -1130361,6 +1150671,7 @@ github.com/tobasschu/utils,num_dependents_deps.dev:1 github.com/tobato/FastDFS_Client,"criticality_score:0.317540,num_dependents_deps.dev:8" github.com/tobbbe/authur, github.com/tobbbe/tauth,num_dependents_deps.dev:0 +github.com/tobbbles/setup-kubescore, github.com/tobbe/moxios,num_dependents_deps.dev:0 github.com/tobbez/everything-efu-gen, github.com/tobbstr/grpcerr,num_dependents_deps.dev:0 @@ -1130477,6 +1150788,8 @@ github.com/tobiasengelhardt/angular-tree-component,num_dependents_deps.dev:0 github.com/tobiasf/your-browser-sucks,num_dependents_deps.dev:0 github.com/tobiasfeistmantl/python-actioncable-zwei, github.com/tobiasfp/tobiaswaagefeldballe_speedtest_go,num_dependents_deps.dev:0 +github.com/tobiasge/action-docker-get-last-layer, +github.com/tobiasge/action-send-matrix-message, github.com/tobiasgehring/python-namespace, github.com/tobiasgwaaler/jsminesweeper,num_dependents_deps.dev:0 github.com/tobiash/gqlgen,num_dependents_deps.dev:0 @@ -1130516,6 +1150829,7 @@ github.com/tobiasli/fileparse, github.com/tobiasli/groceries, github.com/tobiasli/groceries_app, github.com/tobiasli/tregex, +github.com/tobiaslue/tainted-code-filtering-action, github.com/tobiasmaier/pycgp, github.com/tobiasmcnulty/django-postalcodes-light, github.com/tobiasmcnulty/ec2-meta-env, @@ -1130571,6 +1150885,7 @@ github.com/tobico/cerebro-chocolatey,num_dependents_deps.dev:0 github.com/tobico/jquery-calendrical,num_dependents_deps.dev:0 github.com/tobico/seaturtle,num_dependents_deps.dev:0 github.com/tobico/tinysignals,num_dependents_deps.dev:0 +github.com/tobicrain/openapi-gh-pkg, github.com/tobidot/ts-game-toolbox,num_dependents_deps.dev:0 github.com/tobie/async-it,num_dependents_deps.dev:8 github.com/tobie/async-memoizer,num_dependents_deps.dev:0 @@ -1130738,6 +1151053,7 @@ github.com/tobotobo/openfiledialog,num_dependents_deps.dev:0 github.com/tobotobo/powershell,num_dependents_deps.dev:0 github.com/tobotobo/savefiledialog,num_dependents_deps.dev:0 github.com/tobotobo/shbrowseforfolder,num_dependents_deps.dev:0 +github.com/tobozo/esp32-quemu-sim, github.com/tobru/webhookd,num_dependents_deps.dev:0 github.com/tobrun/flutter-mapbox-gl,criticality_score:0.444160 github.com/tobsch/mediaelement_rails,num_dependents_deps.dev:0 @@ -1130769,6 +1151085,7 @@ github.com/tobua/pakag,num_dependents_deps.dev:0 github.com/tobua/papua,num_dependents_deps.dev:0 github.com/tobua/react-sprite, github.com/tobua/reactigation, +github.com/tobua/release-npm-action, github.com/tobua/skip-local-postinstall,num_dependents_deps.dev:0 github.com/tobua/squak,num_dependents_deps.dev:0 github.com/tobua/stylesnames, @@ -1130823,6 +1151140,7 @@ github.com/tobyshooters/tensorcheck, github.com/tobysmith568/License-File,num_dependents_deps.dev:0 github.com/tobysmith568/Prettier-Config,num_dependents_deps.dev:0 github.com/tobysmith568/license-Sorter,num_dependents_deps.dev:0 +github.com/tobysmith568/npm-publish-latest-tag, github.com/tobystokes/sass-between,num_dependents_deps.dev:0 github.com/tobysuwindra/Bird-Similarity, github.com/tobysuwindra/res-birdnet, @@ -1131077,6 +1151395,7 @@ github.com/todhm/mini_bloomberg, github.com/todo-host/todo-host-api,num_dependents_deps.dev:0 github.com/todofixthis/pyota-ccurl, github.com/todogroup/repolinter,"criticality_score:0.469430,num_dependents_deps.dev:0" +github.com/todogroup/repolinter-action, github.com/todojs/BenchmarkJS,num_dependents_deps.dev:0 github.com/todojs/esequal,num_dependents_deps.dev:0 github.com/todojs/estype,num_dependents_deps.dev:0 @@ -1131304,6 +1151623,7 @@ github.com/tohenk/node-ntlib,num_dependents_deps.dev:0 github.com/tohenk/node-ntwebrobot,num_dependents_deps.dev:0 github.com/tohenk/node-sms-gateway,num_dependents_deps.dev:0 github.com/tohenk/node-sms-terminal,num_dependents_deps.dev:0 +github.com/tohgarashi/verified-commit, github.com/tohjustin/aegis,num_dependents_deps.dev:0 github.com/tohjustin/coincharts,num_dependents_deps.dev:0 github.com/tohmn/menu,num_dependents_deps.dev:0 @@ -1131352,6 +1151672,10 @@ github.com/toirovsadi/search,num_dependents_deps.dev:0 github.com/toirovsadi/wallet,num_dependents_deps.dev:0 github.com/toish/chromatism,num_dependents_deps.dev:112 github.com/toish/unfuck,num_dependents_deps.dev:2 +github.com/toitlang/action-code-sign, +github.com/toitlang/action-macos-sign-notarize, +github.com/toitlang/action-publish, +github.com/toitlang/action-setup, github.com/toitoi-co/toitoi-dropzone,num_dependents_deps.dev:0 github.com/toitware/api,num_dependents_deps.dev:0 github.com/toitware/dbc,num_dependents_deps.dev:0 @@ -1131505,6 +1151829,7 @@ github.com/toknapp/arweave4s,num_dependents_deps.dev:0 github.com/toknapp/google4s,num_dependents_deps.dev:0 github.com/toknapp/js-api-clients,num_dependents_deps.dev:34 github.com/toknapp/terminology,num_dependents_deps.dev:0 +github.com/toko-bifrost/ms-teams-deploy-card, github.com/tokopedia/downstream,num_dependents_deps.dev:0 github.com/tokopedia/graphql-go,num_dependents_deps.dev:0 github.com/tokopedia/gripmock,num_dependents_deps.dev:0 @@ -1131515,6 +1151840,7 @@ github.com/tokopedia/panics,num_dependents_deps.dev:0 github.com/tokopedia/redisc,num_dependents_deps.dev:0 github.com/tokopedia/treats,num_dependents_deps.dev:0 github.com/tokopedia/work,num_dependents_deps.dev:0 +github.com/tokorom/action-slack-incoming-webhook, github.com/tokoroten-lab/card,num_dependents_deps.dev:0 github.com/tokoroten-lab/joycon-python, github.com/tokosemi/google_api_sample,num_dependents_deps.dev:0 @@ -1131579,6 +1151905,7 @@ github.com/tokune/node-dav,num_dependents_deps.dev:0 github.com/tokusumi/fastapi-cloudauth, github.com/tokusumi/keras-flops, github.com/tokusumi/kerastuner-tensorboard-logger, +github.com/tokusumi/markdown-embed-code, github.com/tokusumi/nlp-jp-gears, github.com/tokusumi/noglobal-magic, github.com/tokutoku15/go-practice,num_dependents_deps.dev:0 @@ -1131804,6 +1152131,15 @@ github.com/tom-dq/st7_wrap, github.com/tom-drake/react-network-hijack, github.com/tom-drake/universal-redux-thunk,num_dependents_deps.dev:0 github.com/tom-englert/TomsToolbox.web,num_dependents_deps.dev:0 +github.com/tom-englert/autoproperties.fody, +github.com/tom-englert/equatable.fody, +github.com/tom-englert/ilmerge.fody, +github.com/tom-englert/jetbrainsannotations.fody, +github.com/tom-englert/lazy.fody, +github.com/tom-englert/splashscreen.fody, +github.com/tom-englert/substitute.fody, +github.com/tom-englert/throttle.fody, +github.com/tom-englert/weakeventhandler.fody, github.com/tom-f-oconnell/drosolf, github.com/tom-fitz/fhi-storage,num_dependents_deps.dev:0 github.com/tom-grey/typedoc-plugin-markdown,num_dependents_deps.dev:0 @@ -1131814,6 +1152150,7 @@ github.com/tom-james-watson/macos-space-change,num_dependents_deps.dev:0 github.com/tom-james-watson/phantomjs-polyfill, github.com/tom-james-watson/wallpaper-macos,num_dependents_deps.dev:0 github.com/tom-julux/parcel-plugin-sitemap,num_dependents_deps.dev:0 +github.com/tom-jurov/ROS-Autoformatter, github.com/tom-konda/cty2json,num_dependents_deps.dev:0 github.com/tom-konda/sc2ktojson,num_dependents_deps.dev:0 github.com/tom-konda/wdtt-parser,num_dependents_deps.dev:0 @@ -1131903,6 +1152240,7 @@ github.com/tom24d/eventing-dockerhub,num_dependents_deps.dev:0 github.com/tom24d/step-observe-controller,num_dependents_deps.dev:0 github.com/tom25519/hard,num_dependents_deps.dev:0 github.com/tom25519/sodium-alloc,num_dependents_deps.dev:0 +github.com/tom2drum/label-released-issues, github.com/tom2strobl/order-by-sort, github.com/tom2strobl/photoshop,num_dependents_deps.dev:0 github.com/tom2strobl/shrinky,num_dependents_deps.dev:0 @@ -1132092,6 +1152430,7 @@ github.com/tomasbjerre/pom-dependency-analyzer,num_dependents_deps.dev:0 github.com/tomasbjerre/pom-dependency-analyzer-web-api,num_dependents_deps.dev:0 github.com/tomasbjerre/pom-dependency-analyzer-web-frontend,num_dependents_deps.dev:0 github.com/tomasbjerre/pom-downloader,num_dependents_deps.dev:0 +github.com/tomasbjerre/violation-comments-action, github.com/tomasbjerre/violation-comments-to-bitbucket-cloud-command-line,num_dependents_deps.dev:0 github.com/tomasbjerre/violation-comments-to-bitbucket-cloud-lib,num_dependents_deps.dev:0 github.com/tomasbjerre/violation-comments-to-bitbucket-server-command-line,num_dependents_deps.dev:0 @@ -1132111,6 +1152450,7 @@ github.com/tomasbjerre/violations-lib,num_dependents_deps.dev:288 github.com/tomasbjerre/violations-maven-plugin,num_dependents_deps.dev:0 github.com/tomasbjerre/wiremock-jaxrs,num_dependents_deps.dev:0 github.com/tomasbjerre/wiremock-npm,num_dependents_deps.dev:0 +github.com/tomasbkk/action-ftp-upload, github.com/tomasbonco/branchjs,num_dependents_deps.dev:0 github.com/tomasbonco/container,num_dependents_deps.dev:0 github.com/tomasbulva/node-jwt-simple,num_dependents_deps.dev:0 @@ -1132126,11 +1152466,13 @@ github.com/tomascrhonek/go-example-amqp-send,num_dependents_deps.dev:0 github.com/tomascristian/tddf,num_dependents_deps.dev:0 github.com/tomascruz/hex-proto,num_dependents_deps.dev:0 github.com/tomasd/state-reducer,num_dependents_deps.dev:0 +github.com/tomasdedic/yq-action, github.com/tomasdelima/dynamic-import-js,num_dependents_deps.dev:0 github.com/tomasdelima/mask-string,num_dependents_deps.dev:0 github.com/tomasdelima/react-custom-markdown,num_dependents_deps.dev:0 github.com/tomasdelima/react-native-nuclear,num_dependents_deps.dev:0 github.com/tomasdelima/react-quick-styles,num_dependents_deps.dev:0 +github.com/tomasdelvechio/actions-push-repo-to-subdir, github.com/tomasdeml/lenticular.ts,num_dependents_deps.dev:0 github.com/tomasdivito/ns-sweet-alert, github.com/tomasen/ginkin,num_dependents_deps.dev:0 @@ -1132172,6 +1152514,9 @@ github.com/tomasmigone/mongooseeder,num_dependents_deps.dev:0 github.com/tomasmigone/myhabeetat,num_dependents_deps.dev:0 github.com/tomasmik/defaults,num_dependents_deps.dev:0 github.com/tomasmik/winter-is-coming,num_dependents_deps.dev:0 +github.com/tomasnorre/ansible-cli-client, +github.com/tomasnorre/gha-kubectl, +github.com/tomasnorre/typo3-upload-ter, github.com/tomasohara/mezcla, github.com/tomasol/libssh-sys-dylib,num_dependents_deps.dev:0 github.com/tomason/anadix,num_dependents_deps.dev:12 @@ -1132218,6 +1152563,7 @@ github.com/tomaswen/lotide,num_dependents_deps.dev:0 github.com/tomasyaya/useLazyLoading,num_dependents_deps.dev:0 github.com/tomasz-oponowicz/audio_toolbox, github.com/tomasz-oponowicz/grunt-javascript-obfuscator,num_dependents_deps.dev:0 +github.com/tomasz-rekawek/setup-xvfb, github.com/tomasz-sodzawiczny/next-plugin-yaml,num_dependents_deps.dev:0 github.com/tomasz-sodzawiczny/postcss-modules-extend-rule,num_dependents_deps.dev:0 github.com/tomasz-sodzawiczny/postcss-plugin-chain,num_dependents_deps.dev:2 @@ -1132265,6 +1152611,7 @@ github.com/tomato3017/mineraltrackerdecoder,num_dependents_deps.dev:0 github.com/tomato36/spud-cli,num_dependents_deps.dev:0 github.com/tomato3713/daily,num_dependents_deps.dev:0 github.com/tomato3713/soumuradio,num_dependents_deps.dev:0 +github.com/tomato4/ftp-action, github.com/tomatoJia/bjs-date,num_dependents_deps.dev:0 github.com/tomatoaas/goapi,num_dependents_deps.dev:0 github.com/tomatoaas/hello.go,num_dependents_deps.dev:0 @@ -1132424,6 +1152771,7 @@ github.com/tombrowndev/react-touch-visualizer,num_dependents_deps.dev:0 github.com/tombruijn/lintje,num_dependents_deps.dev:0 github.com/tombuente/wifi-qr, github.com/tombugnon/denest, +github.com/tombui99/codeauditor-github-workflow, github.com/tombuildsstuff/azurerm-dalek,num_dependents_deps.dev:0 github.com/tombuildsstuff/giovanni,num_dependents_deps.dev:90 github.com/tombulled/attribute, @@ -1132580,6 +1152928,7 @@ github.com/tomdottom/python-couplet, github.com/tomdoughty/td-add,num_dependents_deps.dev:0 github.com/tomdracz/react-gpt,num_dependents_deps.dev:0 github.com/tomdracz/react-twitter-login,num_dependents_deps.dev:0 +github.com/tomdsmartdata/auth0-allowed-web-origins, github.com/tomduck/pandoc-eqnos, github.com/tomduck/pandoc-fignos,criticality_score:0.408380 github.com/tomduck/pandoc-secnos, @@ -1132714,6 +1153063,8 @@ github.com/tomfa/git-commit-standup,num_dependents_deps.dev:0 github.com/tomfa/git-csv-timesheet,num_dependents_deps.dev:0 github.com/tomfa/mdmaker,num_dependents_deps.dev:0 github.com/tomfaulkner/bible, +github.com/tomferreira/action-bundler-audit, +github.com/tomferreira/action-debride, github.com/tomfogg/foggshark,num_dependents_deps.dev:0 github.com/tomfrankkirk/regtricks, github.com/tomfrankkirk/toblerone, @@ -1132789,6 +1153140,7 @@ github.com/tomgross/Products.Faq, github.com/tomgross/monitcall, github.com/tomgrozev/monsql,num_dependents_deps.dev:0 github.com/tomgrv/laravel-mix-bundle,num_dependents_deps.dev:0 +github.com/tomgrv/synology-package-builder, github.com/tomgrv/vue-easy-state-machine,num_dependents_deps.dev:0 github.com/tomguerney/exectemplate,num_dependents_deps.dev:0 github.com/tomguerney/interpolator,num_dependents_deps.dev:0 @@ -1132971,6 +1153323,7 @@ github.com/tomiok/deckard-bot,num_dependents_deps.dev:0 github.com/tomiok/movies-lib,num_dependents_deps.dev:0 github.com/tomiok/piproc,num_dependents_deps.dev:0 github.com/tomiolah/ts-xml, +github.com/tomisacat/AppCenterAction, github.com/tomisastro/nodejs,num_dependents_deps.dev:0 github.com/tomislater/RandomWords, github.com/tomislav-ivankovic/mapbox-gl-performance-layers,num_dependents_deps.dev:0 @@ -1133017,11 +1153370,13 @@ github.com/tomjamesallen/typed-named-routes,num_dependents_deps.dev:0 github.com/tomjamesduffy/validity-cf-crop-integrity-validator,num_dependents_deps.dev:0 github.com/tomjankes/wiremock-groovy,num_dependents_deps.dev:0 github.com/tomjcleveland/anaconda,num_dependents_deps.dev:0 +github.com/tomjemmett/setup-r-icons, github.com/tomjerry/libtopic, github.com/tomjmul/node-red-contrib-fake-wemo,num_dependents_deps.dev:0 github.com/tomjn/WordPress-The-Right-Way,criticality_score:0.363220 github.com/tomjohnson-syncbak/render,num_dependents_deps.dev:0 github.com/tomjoht/documentation-theme-jekyll,criticality_score:0.345050 +github.com/tomjschuster/cloudflare-pages-deploy-action, github.com/tomjuggler/led_indicator_messager, github.com/tomk79/common-file-editor,num_dependents_deps.dev:0 github.com/tomk79/gitui79.js,num_dependents_deps.dev:0 @@ -1133048,6 +1153403,7 @@ github.com/tomkallen/sleeve,num_dependents_deps.dev:0 github.com/tomkdickinson/hexagonal-cart-service,num_dependents_deps.dev:0 github.com/tomkelly000/mongoleaderboard,num_dependents_deps.dev:0 github.com/tomkersten/chili_videos,num_dependents_deps.dev:0 +github.com/tomket2/deploy-firebase, github.com/tomkiernan120/Goat-Curry,num_dependents_deps.dev:0 github.com/tomkins/pymeistertask, github.com/tomkis1/backbone-extend,num_dependents_deps.dev:0 @@ -1133181,6 +1153537,7 @@ github.com/tommcdo/vim-exchange,criticality_score:0.360270 github.com/tommcgee/NameGame,num_dependents_deps.dev:0 github.com/tommcgurl/ampfire,num_dependents_deps.dev:0 github.com/tommclaughlan/oauther,num_dependents_deps.dev:0 +github.com/tommcn/doxygen-action, github.com/tommct/matplotlib-publishutil, github.com/tomme87/toggl-overtime-calculator,num_dependents_deps.dev:0 github.com/tommedema/NodeBasicFFmpeg,num_dependents_deps.dev:0 @@ -1133351,6 +1153708,8 @@ github.com/tommyk-gears/bom-maven-plugin,num_dependents_deps.dev:0 github.com/tommykewl/onionscan,num_dependents_deps.dev:0 github.com/tommykishi/tatami,num_dependents_deps.dev:0 github.com/tommyknows/hello,num_dependents_deps.dev:0 +github.com/tommykw/pull-request-reviewee-reminder-action, +github.com/tommykw/pull-request-reviewer-reminder-action, github.com/tommylenz/gymtools, github.com/tommylike/code-server-operator,num_dependents_deps.dev:0 github.com/tommym89/pyutils, @@ -1133512,6 +1153871,7 @@ github.com/tomonoriitou/global-mutex,num_dependents_deps.dev:0 github.com/tomonorman/ninjago,num_dependents_deps.dev:0 github.com/tomontime/tomutils,num_dependents_deps.dev:0 github.com/tomontime/utfutil,num_dependents_deps.dev:63 +github.com/tomorrow-agency/lighthouse-ci-action, github.com/tomorrowdevs-projects/challenges,num_dependents_deps.dev:0 github.com/tomorrowevening/Apollo-Utils,num_dependents_deps.dev:0 github.com/tomorrowevening/tomorrow_web,num_dependents_deps.dev:0 @@ -1133534,6 +1153894,7 @@ github.com/tomouniversalis/DateZ,num_dependents_deps.dev:0 github.com/tomowang/d3-logictree,num_dependents_deps.dev:0 github.com/tomowatt/blue-green,num_dependents_deps.dev:0 github.com/tomowatt/passphrase,num_dependents_deps.dev:0 +github.com/tomoya-k31/github-grass-image, github.com/tomoya/storybook-addon-matrix,num_dependents_deps.dev:0 github.com/tomoya0x00/statek,num_dependents_deps.dev:0 github.com/tomoya55/cloudformation-dynamodb-export, @@ -1133545,6 +1153906,7 @@ github.com/tomoyamachi/jsonmask-patterns,num_dependents_deps.dev:0 github.com/tomoyamachi/logmask-patterns,num_dependents_deps.dev:0 github.com/tomoyamachi/vuls,num_dependents_deps.dev:0 github.com/tomoyane/grant-n-z,num_dependents_deps.dev:0 +github.com/tomoyane/http-continuous-benchmarking, github.com/tomoyanp/isucon7-qualify,num_dependents_deps.dev:0 github.com/tomoyuen/microsite-cli,num_dependents_deps.dev:0 github.com/tomoyuen/postcss-fontstack,num_dependents_deps.dev:0 @@ -1133658,6 +1154020,7 @@ github.com/toms1441/chess,num_dependents_deps.dev:0 github.com/toms1441/chess-server,num_dependents_deps.dev:0 github.com/tomsaleeba/mongo-atlas-update-whitelist-for-aws,num_dependents_deps.dev:0 github.com/tomsaleeba/sails-hook-api-version-accept,num_dependents_deps.dev:0 +github.com/tomsanbear/gradle-self-updater, github.com/tomsansome/etsy-js,num_dependents_deps.dev:0 github.com/tomsarduy/react-yet-another-progress-bar,num_dependents_deps.dev:0 github.com/tomsasani/vcfViewer, @@ -1133711,6 +1154074,7 @@ github.com/tomsquest/direnv,num_dependents_deps.dev:0 github.com/tomsquest/gotify,num_dependents_deps.dev:0 github.com/tomsquest/lucene-stemmers,num_dependents_deps.dev:0 github.com/tomsquest/q.js,num_dependents_deps.dev:0 +github.com/tomsseisums/deploy-to-vercel-action, github.com/tomsta93/fibonacci-generator,num_dependents_deps.dev:0 github.com/tomsta93/roman-numeral-converter,num_dependents_deps.dev:0 github.com/tomsteele/node-yandex-search,num_dependents_deps.dev:0 @@ -1133775,6 +1154139,7 @@ github.com/tomtomgo92/StanLee-WPTheme-Generator,num_dependents_deps.dev:0 github.com/tomtomssi/changelog_parser,num_dependents_deps.dev:0 github.com/tomtomssi/changelog_updater,num_dependents_deps.dev:0 github.com/tomtor/rust-litex,num_dependents_deps.dev:0 +github.com/tomtruyens/deploy-preview, github.com/tomtucka/audit-service-poc,num_dependents_deps.dev:0 github.com/tomtung/latex2unicode,num_dependents_deps.dev:0 github.com/tomtung/omikuji,num_dependents_deps.dev:0 @@ -1133836,6 +1154201,7 @@ github.com/tomweston/paas-accounts,num_dependents_deps.dev:0 github.com/tomwganem/ambassador-auth-jwt,num_dependents_deps.dev:0 github.com/tomwhale/highland-itemstore-generator,num_dependents_deps.dev:0 github.com/tomwhite007/with-next-from,num_dependents_deps.dev:0 +github.com/tomwhross/write-good-action, github.com/tomwilkie/go-jsonnet,num_dependents_deps.dev:0 github.com/tomwilkie/grpc-example,num_dependents_deps.dev:0 github.com/tomwilkie/prom-run,num_dependents_deps.dev:0 @@ -1133916,6 +1154282,7 @@ github.com/tonalfitness/deduper,num_dependents_deps.dev:0 github.com/tonalfitness/govaluate,num_dependents_deps.dev:0 github.com/tonaljs/array,num_dependents_deps.dev:0 github.com/tonaljs/tonal,criticality_score:0.508840 +github.com/tonalmathew/readme-typing, github.com/tonandr/keras_unsupervised, github.com/tonarino/actor,num_dependents_deps.dev:0 github.com/tonarino/webrtc-audio-processing,num_dependents_deps.dev:0 @@ -1134042,6 +1154409,7 @@ github.com/tongueroo/configset,num_dependents_deps.dev:0 github.com/tongueroo/ecs-deploy,num_dependents_deps.dev:0 github.com/tongueroo/lono-pro,num_dependents_deps.dev:0 github.com/tongueroo/pipedream,num_dependents_deps.dev:0 +github.com/tongwenfei/docker-buildroot-action, github.com/tongwentang/tongwen-core,num_dependents_deps.dev:0 github.com/tongwii/go-package,num_dependents_deps.dev:0 github.com/tongwu13/superset, @@ -1134406,6 +1154774,7 @@ github.com/tony2n2/ember-redux-undo-shim, github.com/tony801015/chinese-lunar,num_dependents_deps.dev:0 github.com/tony801015/practice-elk,num_dependents_deps.dev:0 github.com/tony84727/aws-xray-sdk-go,num_dependents_deps.dev:0 +github.com/tony84727/changed-file-filter, github.com/tony99nyr/twitch-embed,num_dependents_deps.dev:0 github.com/tonyGmc/YooTrail-Plugins,num_dependents_deps.dev:0 github.com/tonyStreet/json-bigint-browser,num_dependents_deps.dev:0 @@ -1134422,6 +1154791,8 @@ github.com/tonybadguy/call-me-maybe,num_dependents_deps.dev:16 github.com/tonybadguy/request-function,num_dependents_deps.dev:32 github.com/tonybadguy/small-request,num_dependents_deps.dev:28 github.com/tonybadguy/yelp-fusion,num_dependents_deps.dev:0 +github.com/tonybajan/flake8-check-action, +github.com/tonybaloney/cppcheck-action, github.com/tonybaloney/django-xss-fuzzer, github.com/tonybaloney/friendly-deprecation-test, github.com/tonybaloney/hathi, @@ -1134432,6 +1154803,7 @@ github.com/tonybaloney/notations, github.com/tonybaloney/pathgather, github.com/tonybaloney/perflint, github.com/tonybaloney/pluralsight, +github.com/tonybaloney/pycharm-security, github.com/tonybaloney/pyinline, github.com/tonybaloney/pysaba, github.com/tonybaloney/pytest-azurepipelines, @@ -1134452,6 +1154824,7 @@ github.com/tonybenoy/aorlib, github.com/tonybenoy/aurlib, github.com/tonybenoy/cocapi, github.com/tonybenoy/paur, +github.com/tonyblatt/clojure-eastwood-action, github.com/tonybolanyo/django-tgb-basics, github.com/tonybrame/homebridge-total-connect-security,num_dependents_deps.dev:0 github.com/tonybranfort/apom,num_dependents_deps.dev:0 @@ -1134539,6 +1154912,7 @@ github.com/tonygurnick/selenium-standalone-wrapper,num_dependents_deps.dev:0 github.com/tonygurnick/testcopter,num_dependents_deps.dev:0 github.com/tonygustafsson/metalsmith-image-aspect-ratio,num_dependents_deps.dev:0 github.com/tonygustafsson/metalsmith-native-lazy-loading,num_dependents_deps.dev:0 +github.com/tonyhallett/artifacts-url-comments, github.com/tonyhallett/bloggerPost,num_dependents_deps.dev:0 github.com/tonyhallett/cloneDialogOpener,num_dependents_deps.dev:0 github.com/tonyhallett/expect-tslint,num_dependents_deps.dev:0 @@ -1134557,6 +1154931,8 @@ github.com/tonyhallett/packandextract,num_dependents_deps.dev:0 github.com/tonyhallett/string-object-to-object,num_dependents_deps.dev:0 github.com/tonyhallett/ts-passthrough-test-helper,num_dependents_deps.dev:0 github.com/tonyhallett/useSeparateToggleClick, +github.com/tonyhallett/vstest-solution-action, +github.com/tonyhallett/workflow-run-conclusion-dispatch-action, github.com/tonyhb/autoaction,num_dependents_deps.dev:0 github.com/tonyhb/optionality,num_dependents_deps.dev:0 github.com/tonyhb/redux-ui,num_dependents_deps.dev:0 @@ -1134646,7 +1155022,9 @@ github.com/tonymorony/GatewaysCC-TUI, github.com/tonymtz/gekko,num_dependents_deps.dev:0 github.com/tonymyatt/airtouch3api, github.com/tonynasta/async-call,num_dependents_deps.dev:0 +github.com/tonynguyenit18/github-action-custom-vars, github.com/tonynguyenit18/react-pixelate, +github.com/tonynv/asciidoctor-action, github.com/tonyo/alpaga,num_dependents_deps.dev:0 github.com/tonyo/django-migration-checker, github.com/tonyo/pyope, @@ -1134815,11 +1155193,15 @@ github.com/tool-developer/wo-base,num_dependents_deps.dev:4 github.com/tool-developer/wo-cli,num_dependents_deps.dev:0 github.com/tool-developer/wo-lib,num_dependents_deps.dev:0 github.com/tool-developer/wx-miniprogram,num_dependents_deps.dev:0 +github.com/tool3/bump, github.com/tool3/chartscii,num_dependents_deps.dev:0 github.com/tool3/chartscii-cli,num_dependents_deps.dev:0 github.com/tool3/clibe,num_dependents_deps.dev:0 +github.com/tool3/docsify-action, github.com/tool3/kpods,num_dependents_deps.dev:0 github.com/tool3/lsi,num_dependents_deps.dev:0 +github.com/tool3/ncc, +github.com/tool3/publisher, github.com/tool3/shellfie-cli, github.com/tool3/snaptdout,num_dependents_deps.dev:0 github.com/tool3/swype, @@ -1134906,6 +1155288,7 @@ github.com/toolebox-io/gatling-lambda-extension,num_dependents_deps.dev:0 github.com/tooledesign/pybna, github.com/tooleks/shevchenko-js,num_dependents_deps.dev:0 github.com/tooleks/tooleks-js,num_dependents_deps.dev:0 +github.com/toolforgeio-actions/toolforge-docker-login, github.com/toolglobal/api,num_dependents_deps.dev:0 github.com/toolglobal/gosdk,num_dependents_deps.dev:0 github.com/toolgood/ToolGood.Words,criticality_score:0.368420 @@ -1134979,6 +1155362,7 @@ github.com/tools4j/groovy-tables,num_dependents_deps.dev:0 github.com/tools4j/meanvar,num_dependents_deps.dev:0 github.com/tools4j/nobark,num_dependents_deps.dev:2 github.com/tools4j/spockito,num_dependents_deps.dev:0 +github.com/toolsdotgo/sfm-action, github.com/toolsforexperiments/plottr, github.com/toolsplus/atlassian-connect-play,num_dependents_deps.dev:0 github.com/toolsplus/atlassian-connect-play-slick,num_dependents_deps.dev:0 @@ -1135009,6 +1155393,8 @@ github.com/toolwatchapp/tw-core,num_dependents_deps.dev:0 github.com/toomanybees/telegraf,num_dependents_deps.dev:0 github.com/toomanydaves/backapp,num_dependents_deps.dev:0 github.com/toomastahves/template,num_dependents_deps.dev:0 +github.com/toomasz/action-aws-cli, +github.com/toomasz/upload-artifact-action, github.com/toomeefed/api-proxy,num_dependents_deps.dev:0 github.com/toomeefed/async-redis,num_dependents_deps.dev:0 github.com/toomeefed/maybe-gc,num_dependents_deps.dev:0 @@ -1135267,6 +1155653,8 @@ github.com/topcoder520/gospider,num_dependents_deps.dev:0 github.com/topcoder520/gossql,num_dependents_deps.dev:0 github.com/topcoder520/goutil,num_dependents_deps.dev:0 github.com/topcoderinc/grunt-swagger-tools,num_dependents_deps.dev:0 +github.com/topcodersonline/betterscan, +github.com/topcodersonline/betterscan-vanta, github.com/topdillin/asset-builder-nobower,num_dependents_deps.dev:0 github.com/topdillin/slap,num_dependents_deps.dev:0 github.com/topdmc/react-chartjs2,num_dependents_deps.dev:0 @@ -1135315,6 +1155703,7 @@ github.com/tophackr/github-stat,num_dependents_deps.dev:0 github.com/tophat/RichTextView,criticality_score:0.332060 github.com/tophat/codewatch, github.com/tophat/commit-utils,num_dependents_deps.dev:2 +github.com/tophat/commit-watch-action, github.com/tophat/commitwatch,num_dependents_deps.dev:0 github.com/tophat/eslint-config,num_dependents_deps.dev:0 github.com/tophat/monodeploy,num_dependents_deps.dev:10 @@ -1135327,6 +1155716,7 @@ github.com/tophat/yvm,criticality_score:0.450510 github.com/tophatsteve/lingo,num_dependents_deps.dev:0 github.com/tophatsteve/saas,num_dependents_deps.dev:0 github.com/tophattedcat/hubot-group-alias-whitespace,num_dependents_deps.dev:0 +github.com/tophatter/simple_column-scopes, github.com/topheman/conventional-changelog-angular-loose,num_dependents_deps.dev:0 github.com/topheman/delay-proxy,num_dependents_deps.dev:0 github.com/topheman/lite-router,num_dependents_deps.dev:0 @@ -1135459,6 +1155849,9 @@ github.com/toppr/react-svg-components-generator,num_dependents_deps.dev:0 github.com/toppr/react-svg-icon-components-generator,num_dependents_deps.dev:0 github.com/topproio/commitlint-config-toppro, github.com/topproio/eslint-config-toppro,num_dependents_deps.dev:0 +github.com/toppulous/create-manual-approval-issue, +github.com/toppulous/get-latest-tag-from-manual-approval-issue, +github.com/toppulous/update-manual-approval-issue, github.com/topres/create-react-app,num_dependents_deps.dev:0 github.com/topres/prop-types,num_dependents_deps.dev:0 github.com/topres/react-tippy,num_dependents_deps.dev:0 @@ -1135514,6 +1155907,7 @@ github.com/toqueteos/clgen,num_dependents_deps.dev:0 github.com/toqueteos/gulp-resx2json,num_dependents_deps.dev:0 github.com/toqueteos/jacintodecuero,num_dependents_deps.dev:0 github.com/toqueteos/pausereader,num_dependents_deps.dev:0 +github.com/tor-actions/setup-tor, github.com/tora-tool/tora,criticality_score:0.363450 github.com/tora0091/react-todo,num_dependents_deps.dev:0 github.com/tora0091/stock-profit,num_dependents_deps.dev:0 @@ -1135785,6 +1156179,7 @@ github.com/toriving/KoEDA, github.com/torjue/Subsumer.js,num_dependents_deps.dev:0 github.com/torjusba/discord-fornorsker,num_dependents_deps.dev:0 github.com/torjusti/cube-solver,num_dependents_deps.dev:0 +github.com/tork-a/ros-prerelease-job-action, github.com/torkelo/jest-class-spec,num_dependents_deps.dev:0 github.com/torkelo/mongodb-metrics,num_dependents_deps.dev:0 github.com/torkelrogstad/grpc-gateway,num_dependents_deps.dev:0 @@ -1135834,6 +1156229,7 @@ github.com/tormozz48/npm-shri-stub,num_dependents_deps.dev:0 github.com/tormozz48/xlsx-template,num_dependents_deps.dev:0 github.com/tornado-utils/tornado-restless, github.com/tornado05/planetoid,num_dependents_deps.dev:0 +github.com/tornado404/upload-multi-assets, github.com/tornadocash/provider,num_dependents_deps.dev:0 github.com/tornadocash/torn-token,num_dependents_deps.dev:0 github.com/tornadocash/tornado-anonymity-mining,num_dependents_deps.dev:0 @@ -1135979,6 +1156375,7 @@ github.com/torstenfeld/logstash-filter-mixpanel,num_dependents_deps.dev:0 github.com/torstenfeld/python-controlchart, github.com/torstenklinger/xs2a,num_dependents_deps.dev:0 github.com/torta/dark-dmzj,num_dependents_deps.dev:0 +github.com/tortellini-tools/action, github.com/torthu/codo-theme-md,num_dependents_deps.dev:0 github.com/tortilla/tortilla, github.com/torto/easy-compare,num_dependents_deps.dev:0 @@ -1135995,6 +1156392,7 @@ github.com/toru-hamaguchi/node-dummyimage,num_dependents_deps.dev:0 github.com/toru-hamaguchi/sudden-death.js,num_dependents_deps.dev:0 github.com/toru-interactive/generator-ti-webapp,num_dependents_deps.dev:0 github.com/toru-takahashi/embulk-filter-concat,num_dependents_deps.dev:0 +github.com/toru-takahashi/treasure-workflow-actions, github.com/torufurukawa/cuckoo,num_dependents_deps.dev:0 github.com/torufurukawa/remark-curly-comments,num_dependents_deps.dev:0 github.com/torufurukawa/requests-dump, @@ -1136165,6 +1156563,7 @@ github.com/toshikurauchi/complexity_estimator, github.com/toshilam/graphql-sql,num_dependents_deps.dev:0 github.com/toshilibra/libra,num_dependents_deps.dev:0 github.com/toshima/binance, +github.com/toshimaru/backlog-pr-link-action, github.com/toshimaru/bundled_gems,num_dependents_deps.dev:0 github.com/toshimaru/docomochatter,num_dependents_deps.dev:0 github.com/toshimaru/ec2-price,num_dependents_deps.dev:0 @@ -1136174,6 +1156573,7 @@ github.com/toshimaru/hubot-hanakin,num_dependents_deps.dev:0 github.com/toshimaru/hubot-hibi-no-kokoro,num_dependents_deps.dev:0 github.com/toshimaru/hubot-hikakin,num_dependents_deps.dev:0 github.com/toshimaru/hubot-shinchoku-dou,num_dependents_deps.dev:0 +github.com/toshimaru/label-actions, github.com/toshimaru/nyan,num_dependents_deps.dev:0 github.com/toshimaru/stickyfill,num_dependents_deps.dev:0 github.com/toshimaru/study,num_dependents_deps.dev:0 @@ -1136212,6 +1156612,7 @@ github.com/tosie/libdns-linode,num_dependents_deps.dev:0 github.com/tosih/tickerbuddy,num_dependents_deps.dev:0 github.com/tosite0345/jkproof,num_dependents_deps.dev:0 github.com/tosmi/i3-barista,num_dependents_deps.dev:0 +github.com/tosokr/rotate-secret, github.com/tosone/betterMatch, github.com/tosone/convertPinyin,num_dependents_deps.dev:0 github.com/tosone/git-mirror,num_dependents_deps.dev:0 @@ -1136256,6 +1156657,7 @@ github.com/total-order/lex,num_dependents_deps.dev:0 github.com/total-order/primitive,num_dependents_deps.dev:0 github.com/total-order/reversed,num_dependents_deps.dev:2 github.com/totaldebug/pyarr, +github.com/totaldebug/sphinx-publish-action, github.com/totaldesigner/filereader-polyfill,num_dependents_deps.dev:0 github.com/totalgood/django-jsonbfield, github.com/totalgood/nlpia,criticality_score:0.353210 @@ -1136283,6 +1156685,7 @@ github.com/totallyinformation/node-red-contrib-moment,num_dependents_deps.dev:0 github.com/totallymike/biweek_finder,num_dependents_deps.dev:0 github.com/totallymike/ircnode,num_dependents_deps.dev:0 github.com/totallymike/nntp,num_dependents_deps.dev:0 +github.com/totallymoney/assign-reviewers-by-labels-action, github.com/totallymoney/filename-basepath,num_dependents_deps.dev:0 github.com/totallymoney/github-serverless-dotnet-artifacts,num_dependents_deps.dev:0 github.com/totallymoney/serverless-sns-to-sqs-events,num_dependents_deps.dev:0 @@ -1136380,6 +1156783,7 @@ github.com/totherik/swifft,num_dependents_deps.dev:0 github.com/totherme/rabbit-hole,num_dependents_deps.dev:0 github.com/tothjay/emq-router,num_dependents_deps.dev:0 github.com/tothricsaj/test-npm-repo,num_dependents_deps.dev:0 +github.com/toti-tui/github-action-repository-timestamps, github.com/toti1212/todoclif,num_dependents_deps.dev:0 github.com/totianjie/generator-vue-webpro,num_dependents_deps.dev:0 github.com/toticavalcanti/learning_golang,num_dependents_deps.dev:0 @@ -1136462,6 +1156866,7 @@ github.com/tototoshi/sbt-musical-youtube-player,num_dependents_deps.dev:0 github.com/tototoshi/scala-csv,criticality_score:0.441010 github.com/tototoshi/slick-joda-mapper,criticality_score:0.370420 github.com/totozunino/vuejs-avataaars,num_dependents_deps.dev:0 +github.com/tottizhang212/MugenHelper, github.com/tottle-project/tottle-python, github.com/tottomotomotomo/go-omikuji,num_dependents_deps.dev:0 github.com/tottorishu/Coolapk-SDK,num_dependents_deps.dev:0 @@ -1136541,6 +1156946,7 @@ github.com/touchifyapp/nwixtoolset,num_dependents_deps.dev:0 github.com/touchifyapp/rollup-plugin-polyfill-service,num_dependents_deps.dev:0 github.com/touchifyapp/spec2ts,num_dependents_deps.dev:4 github.com/touchifyapp/wasm-ttf2woff,num_dependents_deps.dev:0 +github.com/touchlab-lab/ktlint-action-setup, github.com/touchlab/CrashKios,num_dependents_deps.dev:0 github.com/touchlab/FirestoreKMP,num_dependents_deps.dev:0 github.com/touchlab/KaMPKit,criticality_score:0.354410 @@ -1136926,9 +1157332,12 @@ github.com/towski/simple_javascript_testing,num_dependents_deps.dev:0 github.com/towtooth/cobra-practice,num_dependents_deps.dev:0 github.com/tox-dev/detox, github.com/tox-dev/devpi-process, +github.com/tox-dev/pipdeptree, github.com/tox-dev/py-filelock, github.com/tox-dev/pyproject-api, +github.com/tox-dev/pyproject-fmt, github.com/tox-dev/sphinx-argparse-cli, +github.com/tox-dev/sphinx-autodoc-typehints, github.com/tox-dev/tox,criticality_score:0.711440 github.com/tox-dev/tox-bindep, github.com/tox-dev/tox-conda, @@ -1137110,6 +1157519,7 @@ github.com/toyourheart163/drftmpl, github.com/toyourheart163/git2gitee, github.com/toyourheart163/seeing, github.com/toyourheart163/thiscn, +github.com/toysmoon/follow_branch, github.com/toystars/eStructures, github.com/toystars/elastic-javascript,num_dependents_deps.dev:0 github.com/toystars/elasticsearch-mapper,num_dependents_deps.dev:0 @@ -1137237,6 +1157647,7 @@ github.com/tparnell8/gulp-tasks-npm,num_dependents_deps.dev:0 github.com/tparnell8/hubot-hobbsbrook-cafe, github.com/tparnell8/hubot-situation,num_dependents_deps.dev:0 github.com/tparnell8/hubot-situation/issues, +github.com/tpaschalis/s3-cp-action, github.com/tpaszun/connect-pgsql,num_dependents_deps.dev:0 github.com/tpaszun/node-env-config-loader,num_dependents_deps.dev:0 github.com/tpatel84/home_automation,num_dependents_deps.dev:0 @@ -1137249,6 +1157660,7 @@ github.com/tpaviot/pythonocc-core,criticality_score:0.466000 github.com/tpay-tboard/tboard-ui,num_dependents_deps.dev:0 github.com/tpazderka/django-oidc-sub, github.com/tpbarron/rlflow, +github.com/tpbowden/chonkbot, github.com/tpbowden/daily_weekly_monthly,num_dependents_deps.dev:0 github.com/tpc2/requs,num_dependents_deps.dev:2 github.com/tpca/mecu-graph,num_dependents_deps.dev:0 @@ -1137320,6 +1157732,7 @@ github.com/tpietruszka/hyperspace_explorer, github.com/tpike3/bilateralshapley, github.com/tpike3/ml_mesa, github.com/tpillow/brakelite,num_dependents_deps.dev:0 +github.com/tpilvelis-gw/rebuild-action, github.com/tpimentelms/ud2pos, github.com/tpircher/quine-mccluskey, github.com/tpiros/cloudinary-workbox-plugin,num_dependents_deps.dev:0 @@ -1137381,6 +1157794,7 @@ github.com/tplive/lunchbot,num_dependents_deps.dev:0 github.com/tpltnt/fudi-rs,num_dependents_deps.dev:0 github.com/tpltnt/lysogeny-broth,num_dependents_deps.dev:0 github.com/tpltnt/pyutil, +github.com/tpluscode/action-setup-lando, github.com/tpluscode/all-implementations-of,num_dependents_deps.dev:8 github.com/tpluscode/eslint-config,num_dependents_deps.dev:0 github.com/tpluscode/fun-ddr,num_dependents_deps.dev:0 @@ -1137590,6 +1158004,7 @@ github.com/tr0njavolta/terraform-provider-hashicups,num_dependents_deps.dev:0 github.com/tr11/python-configuration, github.com/tr11/wagtail-graphql, github.com/tr1ck3r/staging,num_dependents_deps.dev:0 +github.com/tr325/github-actions-test-javascript-action, github.com/tr33oph/mindmap_etl, github.com/tr3buchet/functastic, github.com/tr3buchet/gister, @@ -1137612,6 +1158027,12 @@ github.com/tr8n/tr8n_java_cache_ehcache,num_dependents_deps.dev:0 github.com/tr8n/tr8n_java_cache_memcached,num_dependents_deps.dev:0 github.com/tr8n/tr8n_struts2_clientsdk,num_dependents_deps.dev:0 github.com/tr8n/tr8n_swing_clientsdk,num_dependents_deps.dev:0 +github.com/tr8team/actions.gotrade-test-data, +github.com/tr8team/actions.gotrade-test-processing, +github.com/tr8team/actions.test-markdown, +github.com/tr8team/actions.test-qualitygate, +github.com/tr8team/test-sources, +github.com/tr8team/test-tracker, github.com/tra-games/ray-volution-core,num_dependents_deps.dev:0 github.com/tra-sg/discreetly, github.com/tra38/Prolefeed,num_dependents_deps.dev:0 @@ -1137816,6 +1158237,7 @@ github.com/tractus/messenger,num_dependents_deps.dev:0 github.com/tracy-and-matt/go-twitch-pubsub,num_dependents_deps.dev:0 github.com/tracy-and-matt/twitch-airtable-leaderboard,num_dependents_deps.dev:0 github.com/tracy-and-matt/twitch-keyboard-freezer,num_dependents_deps.dev:0 +github.com/tracy-ash/gce-cloudsql-proxy-unix-socket-action, github.com/tracy-codes/turn14-api-auth,num_dependents_deps.dev:0 github.com/tracy2zhang/vue-dialog,num_dependents_deps.dev:0 github.com/tracy2zhang/vue-rotate,num_dependents_deps.dev:0 @@ -1138236,6 +1158658,7 @@ github.com/tramchamploo/buffer-slayer,num_dependents_deps.dev:6 github.com/tramdanny/lotide,num_dependents_deps.dev:0 github.com/tramhao/termusic,num_dependents_deps.dev:0 github.com/tramires/cose-rust,num_dependents_deps.dev:0 +github.com/tramlinehq/deploy-action, github.com/trampi/dagre-d3-webpack,num_dependents_deps.dev:0 github.com/trampi/node-libhydrogen-binding,num_dependents_deps.dev:0 github.com/tramwayjs/connection, @@ -1138352,6 +1158775,7 @@ github.com/transcend-io/penumbra,num_dependents_deps.dev:0 github.com/transcend-io/secret-value,num_dependents_deps.dev:0 github.com/transcend-io/spa-static-server, github.com/transcend-io/terragrunt-atlantis-config,num_dependents_deps.dev:0 +github.com/transcend-io/terragrunt-atlantis-config-github-action, github.com/transcend-io/wildebeest,num_dependents_deps.dev:0 github.com/transcendent-ai-labs/DynaML,num_dependents_deps.dev:0 github.com/transceptor-technology/aiogcd, @@ -1138394,6 +1158818,7 @@ github.com/transduce/transduce-gen,num_dependents_deps.dev:0 github.com/transduce/transduce-stream, github.com/transentient/redscan,num_dependents_deps.dev:0 github.com/transferwise/account-details-frontend,num_dependents_deps.dev:0 +github.com/transferwise/actions-slack-notify, github.com/transferwise/angular-global-pubsub,num_dependents_deps.dev:0 github.com/transferwise/auto-causality, github.com/transferwise/bootstrap,num_dependents_deps.dev:0 @@ -1138487,6 +1158912,7 @@ github.com/transientlunatic/minke, github.com/transientlunatic/otter, github.com/transientskp/aartfaac-arthur, github.com/transifex/cli,num_dependents_deps.dev:0 +github.com/transifex/cli-action, github.com/transifex/hermes, github.com/transifex/openformats, github.com/transifex/totem, @@ -1138679,6 +1159105,7 @@ github.com/transmute-industries/transmute-cli,num_dependents_deps.dev:0 github.com/transmute-industries/transmute-framework,num_dependents_deps.dev:1 github.com/transmute-industries/vc.js,num_dependents_deps.dev:22 github.com/transmute-industries/verifiable-data,num_dependents_deps.dev:351 +github.com/transmute-industries/verifiable-data-platform-github-action, github.com/transmutejs/core,num_dependents_deps.dev:0 github.com/transnano/controller-for-k8s-sample,num_dependents_deps.dev:0 github.com/transnano/controller-k8s-cronjob,num_dependents_deps.dev:0 @@ -1138710,6 +1159137,7 @@ github.com/transomjs/transom-smtp,num_dependents_deps.dev:0 github.com/transomjs/transom-socketio-internal,num_dependents_deps.dev:0 github.com/transparencylog/btget,num_dependents_deps.dev:0 github.com/transparencylog/mod,num_dependents_deps.dev:0 +github.com/transparencylog/publish-releases-asset-transparency-action, github.com/transparencylog/tl,num_dependents_deps.dev:0 github.com/transparentai-inc/transparentapi-python-client, github.com/transparenthealth/python-poetri, @@ -1138779,6 +1159207,7 @@ github.com/tranxuantung215/nodejstutorial,num_dependents_deps.dev:0 github.com/tranzerdev/react-native-userdefaults,num_dependents_deps.dev:0 github.com/tranzystorek-io/aoc-utils,num_dependents_deps.dev:0 github.com/trapajim/Backbone.localPersist,num_dependents_deps.dev:0 +github.com/trapajim/go-pipeline-action, github.com/trapcodeio/abolish,num_dependents_deps.dev:0 github.com/trapcodeio/abolish-browser,num_dependents_deps.dev:0 github.com/trapcodeio/api2mailer,num_dependents_deps.dev:0 @@ -1138806,6 +1159235,7 @@ github.com/trapp/ethereum-bip44,num_dependents_deps.dev:2 github.com/trappar/keeprunning,num_dependents_deps.dev:0 github.com/trappar/mobx-multi-conditional-filter,num_dependents_deps.dev:0 github.com/trappar/props-provider,num_dependents_deps.dev:0 +github.com/trappar/turborepo-remote-cache-gh-action, github.com/trapple/datapagejs,num_dependents_deps.dev:0 github.com/trappsnl/dstore,num_dependents_deps.dev:0 github.com/trappsnl/dstore-elasticsearch,num_dependents_deps.dev:0 @@ -1138958,12 +1159388,14 @@ github.com/traveloka/soya-next,num_dependents_deps.dev:0 github.com/traveloka/styled-modules,num_dependents_deps.dev:0 github.com/travelperk/case-converter,num_dependents_deps.dev:0 github.com/travelperk/fabricator,num_dependents_deps.dev:0 +github.com/travelperk/label-requires-reviews-action, github.com/travelperk/super-props,num_dependents_deps.dev:0 github.com/travelping/upg-vpp,num_dependents_deps.dev:0 github.com/travelport-czech/flight-watchdog-client,num_dependents_deps.dev:0 github.com/traveltime-dev/scala-slack-client,num_dependents_deps.dev:0 github.com/traveltime-dev/traveltime-sdk-scala,num_dependents_deps.dev:0 github.com/travenin/olkiluoto3,num_dependents_deps.dev:0 +github.com/traversals-analytics-and-intelligence/file-reader-action, github.com/traversals/blaster,num_dependents_deps.dev:0 github.com/traversals/kapsule,num_dependents_deps.dev:0 github.com/traversc/cox-nnet, @@ -1139147,6 +1159579,7 @@ github.com/travishorn/progressor,num_dependents_deps.dev:0 github.com/travishorn/pure-formatters,num_dependents_deps.dev:0 github.com/travishorn/searchparamify,num_dependents_deps.dev:0 github.com/travishorn/session-timeout,num_dependents_deps.dev:0 +github.com/travisj/build-number-action, github.com/travisjeffery/ClangFormat-Xcode,criticality_score:0.360350 github.com/travisjeffery/certmagic-sqlstorage,num_dependents_deps.dev:0 github.com/travisjeffery/deets,num_dependents_deps.dev:0 @@ -1139359,6 +1159792,7 @@ github.com/treasure-data/td-js-sdk,num_dependents_deps.dev:0 github.com/treasure-data/td-logger-java,num_dependents_deps.dev:0 github.com/treasure-data/td-react-native-sdk, github.com/treasure-data/underwrap,num_dependents_deps.dev:0 +github.com/treasuredataps/td_wf_deploy, github.com/treasureling/gitbook-plugin-code-demo,num_dependents_deps.dev:0 github.com/treasureling/multi-react-cli,num_dependents_deps.dev:0 github.com/treasuryquants/TQPython, @@ -1139451,6 +1159885,7 @@ github.com/treebeardtech/deepcov, github.com/treebeardtech/deeptest, github.com/treebeardtech/get-flakes, github.com/treebeardtech/nbmake, +github.com/treebeardtech/nbmake-action, github.com/treebeardtech/treebeard, github.com/treebeardtech/whaler, github.com/treebee/flask-vue-scaffold, @@ -1139643,6 +1160078,7 @@ github.com/trehn/termdown, github.com/trehn/termtrack, github.com/trehn/timekeeper, github.com/treid314/alertmanager,num_dependents_deps.dev:0 +github.com/treiff/draft-pr-closer, github.com/treiher/valens, github.com/treilik/bubblesgum,num_dependents_deps.dev:0 github.com/treinaweb/tw-dev-server,num_dependents_deps.dev:0 @@ -1139655,6 +1160091,7 @@ github.com/trejas/aws_creds_replace, github.com/trejas/chartis, github.com/trejas/gytrash, github.com/trejas/semya, +github.com/trejjam/npm-scope-action, github.com/trejkaz/gum,num_dependents_deps.dev:0 github.com/trejkaz/haqua,num_dependents_deps.dev:0 github.com/trejkaz/hex-components,num_dependents_deps.dev:0 @@ -1139868,6 +1160305,7 @@ github.com/trendmicro-frontend/react-tooltip,num_dependents_deps.dev:0 github.com/trendmicro-frontend/react-validation,num_dependents_deps.dev:0 github.com/trendmicro-frontend/styled-ui,num_dependents_deps.dev:0 github.com/trendmicro-frontend/trendmicro-ui,num_dependents_deps.dev:4 +github.com/trendmicro/cloudone-container-security-github-action, github.com/trendmicro/cloudone-container-security-helm, github.com/trendmicro/flask-ini, github.com/trendmicro/telfhash, @@ -1140249,6 +1160687,7 @@ github.com/trevorlinton/similarto,num_dependents_deps.dev:0 github.com/trevorlinton/whack,num_dependents_deps.dev:0 github.com/trevorllarson/object-visual-lock,num_dependents_deps.dev:0 github.com/trevorllarson/youtube-iframe-assistant,num_dependents_deps.dev:0 +github.com/trevorlloydelliott/set-environment-variables, github.com/trevorlolsen/dsw, github.com/trevormccormick/adobe_aam_python, github.com/trevormcguire/fincheck, @@ -1140476,6 +1160915,7 @@ github.com/triasteam/go-streamnet,num_dependents_deps.dev:0 github.com/triasteam/streamnet,num_dependents_deps.dev:0 github.com/triasteam/streamnet-api,num_dependents_deps.dev:0 github.com/triasteam/streamnet-go,num_dependents_deps.dev:0 +github.com/triat/terraform-security-scan, github.com/triathematician/blaisemath,num_dependents_deps.dev:34 github.com/triathematician/covid-analytics,num_dependents_deps.dev:0 github.com/triawarman/yii2-richfilemanager,num_dependents_deps.dev:0 @@ -1140650,6 +1161090,7 @@ github.com/triday/tsharp,num_dependents_deps.dev:0 github.com/tridcatij/vuejs-dialog,num_dependents_deps.dev:0 github.com/triddell/azbrowse,num_dependents_deps.dev:0 github.com/triddell/pdrest,num_dependents_deps.dev:0 +github.com/trideepnag1911/gradle-build-with-sonarqube, github.com/tridelat/py2gmsh, github.com/tridelat/pycatenary, github.com/tridentstream/mediaserver, @@ -1140668,6 +1161109,7 @@ github.com/trieb-work/linkedin-voyager-sdk,num_dependents_deps.dev:0 github.com/trieb-work/zoho-ts, github.com/triedandtested-dev/dbt_cloud_api_client, github.com/triedandtested-dev/lightwave,num_dependents_deps.dev:0 +github.com/triedandtested-dev/trigger-dbt-cloud-job-v2-action, github.com/triedeti/Leaflet.streetlabels,num_dependents_deps.dev:0 github.com/triedeti/ThreeDigitalTwin,num_dependents_deps.dev:0 github.com/triedgriefdev/throwbin, @@ -1140794,6 +1161236,8 @@ github.com/trim-me/conf,num_dependents_deps.dev:0 github.com/trim21/boltbrowser,num_dependents_deps.dev:0 github.com/trim21/commandtray,num_dependents_deps.dev:0 github.com/trim21/go-utp,num_dependents_deps.dev:0 +github.com/trim21/install-poetry-project, +github.com/trim21/setup-poetry, github.com/trim21/torrent-client,num_dependents_deps.dev:0 github.com/trim21/utp,num_dependents_deps.dev:0 github.com/trimailov/timeflow, @@ -1140971,9 +1161415,11 @@ github.com/trioxis/immutable-react-form,num_dependents_deps.dev:0 github.com/trip-a-trip/lib,num_dependents_deps.dev:0 github.com/trip-trax/TTKeyMirror,num_dependents_deps.dev:0 github.com/trip-trax/TTStylesheet,num_dependents_deps.dev:0 +github.com/tripartie/helm, github.com/tripflex/node-homie2-config,num_dependents_deps.dev:0 github.com/tripflex/wifiwizard2,num_dependents_deps.dev:0 github.com/tripflow/mdschema,num_dependents_deps.dev:0 +github.com/tripheo0412/auto-commit-log-action, github.com/tripheo0412/create-gatsby-web,num_dependents_deps.dev:0 github.com/triphop/jsformat,num_dependents_deps.dev:0 github.com/triphop/npl,num_dependents_deps.dev:0 @@ -1141041,6 +1161487,7 @@ github.com/tripodworks-iot/cordova-plugin-mlkit-facedetection,num_dependents_dep github.com/tripokey/rt,num_dependents_deps.dev:0 github.com/tripokey/tml,num_dependents_deps.dev:0 github.com/tripolskypetr/react-view-builder,num_dependents_deps.dev:0 +github.com/triposat/Slack_Messages, github.com/tripott/apigee-mass-sdk,num_dependents_deps.dev:0 github.com/tripott/harvest-docs-cli,num_dependents_deps.dev:0 github.com/tripott/jwt-bouncer,num_dependents_deps.dev:0 @@ -1141070,6 +1161517,9 @@ github.com/tripss/update-react-native-app,num_dependents_deps.dev:0 github.com/tripstar22/generator-yeoman-test-trip,num_dependents_deps.dev:0 github.com/triptease/pg-history-db,num_dependents_deps.dev:0 github.com/triptec/wnpc,num_dependents_deps.dev:0 +github.com/tripteki/cd-package, +github.com/tripteki/cd-server, +github.com/tripteki/version, github.com/triptesh1212/go-web-docker,num_dependents_deps.dev:0 github.com/triptisaijwar/low-level-design,num_dependents_deps.dev:0 github.com/tripu/Performs,num_dependents_deps.dev:0 @@ -1141088,6 +1161538,7 @@ github.com/tris/surf,num_dependents_deps.dev:0 github.com/trisacrypto/directory,num_dependents_deps.dev:0 github.com/trisacrypto/testnet,num_dependents_deps.dev:0 github.com/trisacrypto/trisa,num_dependents_deps.dev:0 +github.com/trisbee/lingui-action, github.com/trisbee/lingui-locale-cleaner,num_dependents_deps.dev:0 github.com/trisbee/next-i18n-routes-middleware,num_dependents_deps.dev:0 github.com/trisbee/qr-image-nodejs,num_dependents_deps.dev:0 @@ -1141146,6 +1161597,7 @@ github.com/tristan-jl/fractal,num_dependents_deps.dev:0 github.com/tristan-jl/gitconf,num_dependents_deps.dev:0 github.com/tristan-neateworks/AIArena, github.com/tristan-smith/vue-gen,num_dependents_deps.dev:0 +github.com/tristan-weil/ghaction-checksum-sign-artifact, github.com/tristan/asynceth, github.com/tristan/blockies, github.com/tristan/testing.kafka, @@ -1141492,6 +1161944,7 @@ github.com/trmbl-web-components/trmb-css,num_dependents_deps.dev:0 github.com/trmbl-web-components/trmb-demo-components,num_dependents_deps.dev:0 github.com/trmckay/lib-rv32,num_dependents_deps.dev:3 github.com/trmcnvn/ember-markdown-html,num_dependents_deps.dev:0 +github.com/trmcnvn/firefox-addon, github.com/trmfreitas/pom-version-changer,num_dependents_deps.dev:0 github.com/trmigor/distr-model,num_dependents_deps.dev:0 github.com/trminpet/react-language-context, @@ -1141793,6 +1162246,7 @@ github.com/troublediehard/react-native-markup-kit,num_dependents_deps.dev:0 github.com/troublemaker121/troublemaker121,num_dependents_deps.dev:0 github.com/troublemjs/r-relation-list,num_dependents_deps.dev:0 github.com/troublemjs/r-timeslice-picker,num_dependents_deps.dev:0 +github.com/troubleshoot-codacy/codacy-analysis-cli-action, github.com/troublete/te-checkmark,num_dependents_deps.dev:0 github.com/troublete/te-drawer,num_dependents_deps.dev:0 github.com/troublor/go-trash,num_dependents_deps.dev:0 @@ -1141988,8 +1162442,11 @@ github.com/trsouz/sinopia-crowd,num_dependents_deps.dev:0 github.com/trsqxyz/glitch, github.com/trstringer/azblogfilter,num_dependents_deps.dev:0 github.com/trstringer/go-systemd-time,num_dependents_deps.dev:0 +github.com/trstringer/manual-approval, +github.com/trstringer/require-label-prefix, github.com/trsumit/home-assistant, github.com/trsvax/fopjs,num_dependents_deps.dev:0 +github.com/trsvchn/colab-badge-action, github.com/trszdev/url-metadata,num_dependents_deps.dev:0 github.com/trt2/gsm-charset-utils,num_dependents_deps.dev:0 github.com/trt2/optimized-objectlist,num_dependents_deps.dev:0 @@ -1141998,6 +1162455,8 @@ github.com/trt2/simple-textsearch,num_dependents_deps.dev:0 github.com/trt2/simple-url-queryutils,num_dependents_deps.dev:0 github.com/trt2/tinyjsonrpc-client,num_dependents_deps.dev:0 github.com/trt2/tinyjsonrpc-server,num_dependents_deps.dev:0 +github.com/trthuhoai/pr-to-backlog, +github.com/trthuhoai/pr-to-backlog-action, github.com/trtl-services/ts-api-js,num_dependents_deps.dev:0 github.com/trtl-services/ts-api-py, github.com/tru-ID/cli-plugin-dev-server,num_dependents_deps.dev:0 @@ -1142144,6 +1162603,15 @@ github.com/truelinked/monqsoon,num_dependents_deps.dev:0 github.com/truelinked/upodi-js,num_dependents_deps.dev:0 github.com/truemail-rb/truemail-java-client,num_dependents_deps.dev:0 github.com/truemail/TrueMailApi-NodeJS,num_dependents_deps.dev:0 +github.com/truemark/aws-ec2-describe-instance-action, +github.com/truemark/aws-ec2-instance-wait-action, +github.com/truemark/aws-ec2-run-instance-action, +github.com/truemark/docker-build-pattern-action, +github.com/truemark/generate-ssh-key-action, +github.com/truemark/skopeo-copy-action, +github.com/truemark/ssh-agent-action, +github.com/truemark/ssh-known-hosts-action, +github.com/truemark/terraform-cdk-pattern-action, github.com/trueme-app/trueme-aws-amplify,num_dependents_deps.dev:0 github.com/trueme-app/trueme-design-system,num_dependents_deps.dev:0 github.com/trueme-app/trueme-react-components,num_dependents_deps.dev:0 @@ -1142198,6 +1162666,7 @@ github.com/truetug/wagtail-typograf, github.com/truevault/truevault-js-sdk,num_dependents_deps.dev:2 github.com/truevault/tv-js-sdk,num_dependents_deps.dev:0 github.com/truevision/django_banklink, +github.com/truewebartisans/actions-sapper, github.com/truewebber/goitunes,num_dependents_deps.dev:0 github.com/truewhitespace/key-rotation,num_dependents_deps.dev:0 github.com/truewhitespace/twsaws-terraform-provider,num_dependents_deps.dev:0 @@ -1142217,6 +1162686,8 @@ github.com/truexf/prettyq,num_dependents_deps.dev:0 github.com/trufactor/trufactor,num_dependents_deps.dev:0 github.com/trufae/axmlparser,num_dependents_deps.dev:0 github.com/truffle-box/drizzle-box,"criticality_score:0.336830,num_dependents_deps.dev:0" +github.com/trufflesecurity/TruffleHog-Enterprise-Github-Action, +github.com/trufflesecurity/trufflehog, github.com/trufflesuite/chromafi,num_dependents_deps.dev:2098 github.com/trufflesuite/drizzle,"criticality_score:0.385640,num_dependents_deps.dev:0" github.com/trufflesuite/drizzle-react,num_dependents_deps.dev:0 @@ -1142298,6 +1162769,8 @@ github.com/trulyronak/legume,num_dependents_deps.dev:0 github.com/trulyronak/qudb,num_dependents_deps.dev:0 github.com/trulyspinach/SMCAMDProcessor,criticality_score:0.360690 github.com/trumae/barcode,num_dependents_deps.dev:0 +github.com/trumaker/destination_errors, +github.com/trumaker/letter_group, github.com/trumanbutlerjr/lodown,num_dependents_deps.dev:0 github.com/trumancfy/peerster,num_dependents_deps.dev:0 github.com/trumandu/gocache,num_dependents_deps.dev:0 @@ -1142309,6 +1162782,7 @@ github.com/trumanpurnell/dimsum, github.com/trumanpurnell/matropa,num_dependents_deps.dev:0 github.com/trumanpurnell/parmesan,num_dependents_deps.dev:0 github.com/trumanpvt/react-stickynode_without-deprecation,num_dependents_deps.dev:0 +github.com/trumant/terraform-module-versions-action, github.com/trumanw/chemconda, github.com/trumanw/maxminddb-golang,num_dependents_deps.dev:0 github.com/trumbaturijoshua/lodown,num_dependents_deps.dev:0 @@ -1142370,10 +1162844,13 @@ github.com/trungtranmobile97/rn-ttt-btn,num_dependents_deps.dev:0 github.com/trungtransg/react-native-calendars-vn,num_dependents_deps.dev:0 github.com/trungtv/pyvi, github.com/trungvn222/nodejsLesson1,num_dependents_deps.dev:0 +github.com/trunk-io/breakpoint, +github.com/trunk-io/trunk-action, github.com/trunk-studio/http-speed-test,num_dependents_deps.dev:0 github.com/trunk-studio/mockup-data,num_dependents_deps.dev:0 github.com/trunk-studio/react-native-android-wifi-with-ap-status,num_dependents_deps.dev:0 github.com/trunkcode/check-http-status,num_dependents_deps.dev:0 +github.com/trunkcode/check-http-status-action, github.com/trunkcode/remarkable-seo,num_dependents_deps.dev:0 github.com/trunkmaster/nextspace,criticality_score:0.418450 github.com/trunnion/axctl,num_dependents_deps.dev:0 @@ -1142508,6 +1162985,9 @@ github.com/trustbloc/trustbloc-did-method,num_dependents_deps.dev:14 github.com/trustbloc/vct,num_dependents_deps.dev:2 github.com/trustbox/logmap,num_dependents_deps.dev:0 github.com/trustcentric/django-session-csrf-cookie, +github.com/trustcerts/blockchain-custom-action, +github.com/trustcerts/nrwl-nx-action, +github.com/trustcerts/upload-s3-action, github.com/trustcruit/tc-sam-cli, github.com/trustcruit/tclambda, github.com/trustcrypto/onlykey-agent, @@ -1142546,6 +1163026,8 @@ github.com/trustin/os-maven-plugin,num_dependents_deps.dev:60 github.com/trustin/sphinx-gradle-plugin,num_dependents_deps.dev:0 github.com/trustin/sphinx-maven,num_dependents_deps.dev:0 github.com/trustinruss/commabot,num_dependents_deps.dev:0 +github.com/trustlayer/deployment-status, +github.com/trustlayer/shortcut-html-report, github.com/trustline-inc/keystore-gen,num_dependents_deps.dev:0 github.com/trustlines-network/clientlib,num_dependents_deps.dev:0 github.com/trustlines-network/contracts,num_dependents_deps.dev:0 @@ -1142709,6 +1163191,7 @@ github.com/try-dash-now/gDasH, github.com/try-fail1/asqlite3, github.com/try-fail1/asyncfile, github.com/try-fail1/tshelve, +github.com/try-keep/action-s3-cache, github.com/try-to-learn/koa-joi-validator-mw, github.com/try0/wicket-iziToast,num_dependents_deps.dev:0 github.com/try0/wicket-toastr,num_dependents_deps.dev:0 @@ -1142722,6 +1163205,7 @@ github.com/tryamid/py_riff, github.com/tryangul/bin-pack,num_dependents_deps.dev:0 github.com/tryangul/react-packery-component,num_dependents_deps.dev:0 github.com/trybash/bash-emulator,num_dependents_deps.dev:0 +github.com/trybeapp/redocly-openapi-cli-github-action, github.com/trybento/remark-slate,num_dependents_deps.dev:0 github.com/trybick/slack-location-manager,num_dependents_deps.dev:0 github.com/tryblue/keyword,num_dependents_deps.dev:0 @@ -1142741,9 +1163225,13 @@ github.com/trydofor/godbart,num_dependents_deps.dev:0 github.com/trydofor/kaptcha,num_dependents_deps.dev:0 github.com/trydofor/pro.fessional.meepo,num_dependents_deps.dev:0 github.com/trydofor/pro.fessional.mirana,num_dependents_deps.dev:0 +github.com/tryethernal/ethernal-action, github.com/tryexceptpass/capsule, github.com/tryexceptpass/korv, github.com/tryexceptpass/sofi, +github.com/tryfabric/memorable-milestones, +github.com/tryfabric/notify-slack-on-release, +github.com/tryfabric/notion-github-action, github.com/tryfan/python-morpheus-cypher, github.com/tryffel/base,num_dependents_deps.dev:0 github.com/tryffel/bookmarker,num_dependents_deps.dev:0 @@ -1142766,6 +1163254,7 @@ github.com/tryggingamidstodin/kennitala-utility,num_dependents_deps.dev:0 github.com/tryggingamidstodin/linear-estimate,num_dependents_deps.dev:0 github.com/tryggingamidstodin/node-jt400,num_dependents_deps.dev:0 github.com/tryggingamidstodin/stream-functions,num_dependents_deps.dev:0 +github.com/tryggth/ngs-docker-action, github.com/tryggvib/budgetdatapackage, github.com/tryggvib/ckanext-budgets, github.com/tryggvib/ckanext-openspending, @@ -1142836,10 +1163325,13 @@ github.com/trylang/tryjane-cli,num_dependents_deps.dev:0 github.com/trylife/atk,num_dependents_deps.dev:0 github.com/trylinear/linear, github.com/trymatthew/create-react-app,num_dependents_deps.dev:0 +github.com/trymbill/cypress-slack-video-upload-action, github.com/trymnilsen/baldur,num_dependents_deps.dev:0 github.com/trymnilsen/towncrier,num_dependents_deps.dev:0 github.com/trymoto/drank,num_dependents_deps.dev:0 github.com/trympet/homebridge-volvo,num_dependents_deps.dev:0 +github.com/trympet/microsoft-store-flight-action, +github.com/trympet/nextcloud-artifacts-action, github.com/trynpay/node-etcd-watcher, github.com/tryolabs/django-kitsune, github.com/tryolabs/django-reporting, @@ -1142879,6 +1163371,8 @@ github.com/trytochangeyourlife/homeword2,num_dependents_deps.dev:0 github.com/trytochangeyourlife/homework1,num_dependents_deps.dev:0 github.com/trytochangeyourlife/homework4,num_dependents_deps.dev:0 github.com/trytoolchest/toolchest-client-python, +github.com/trytouca/actions-run-tests, +github.com/trytouca/actions-setup-touca, github.com/trytouca/touca-js,num_dependents_deps.dev:0 github.com/trytouca/touca-python, github.com/trytouca/touca-wrench, @@ -1142956,6 +1163450,7 @@ github.com/ts-graphviz/node,num_dependents_deps.dev:6 github.com/ts-graphviz/parser,num_dependents_deps.dev:0 github.com/ts-graphviz/prettier-plugin-dot,num_dependents_deps.dev:0 github.com/ts-graphviz/react,num_dependents_deps.dev:0 +github.com/ts-graphviz/setup-graphviz, github.com/ts-graphviz/ts-graphviz,num_dependents_deps.dev:6 github.com/ts-npm-examples/basic-module,num_dependents_deps.dev:0 github.com/ts-npm-examples/globally-global-module,num_dependents_deps.dev:0 @@ -1143079,6 +1163574,7 @@ github.com/tsapa44/react-mdi, github.com/tsapeta/CodePrinter,num_dependents_deps.dev:0 github.com/tsapko3628/dtsgenerator,num_dependents_deps.dev:0 github.com/tsaqib/trex,num_dependents_deps.dev:0 +github.com/tsar-boomba/prettier-java-action, github.com/tsaristbomba/beast-modal,num_dependents_deps.dev:0 github.com/tsaron/anansi,num_dependents_deps.dev:0 github.com/tsarpaul/DocUMust, @@ -1143101,6 +1163597,7 @@ github.com/tsavola/lep,num_dependents_deps.dev:1 github.com/tsavola/snide,num_dependents_deps.dev:1 github.com/tsavola/snipe,num_dependents_deps.dev:0 github.com/tsavola/wag,num_dependents_deps.dev:0 +github.com/tsawada/bazel-github-actions-cache, github.com/tsawler/acsiec_members,num_dependents_deps.dev:0 github.com/tsawler/courses,num_dependents_deps.dev:0 github.com/tsawler/powersports,num_dependents_deps.dev:0 @@ -1143207,6 +1163704,8 @@ github.com/tschm/amberdata, github.com/tschm/antarctic, github.com/tschm/eikon-docker, github.com/tschm/hrp, +github.com/tschm/repo2docker-action, +github.com/tschm/token-mint-action, github.com/tschmit/MbtPlanner,num_dependents_deps.dev:0 github.com/tschmoderer/django-mdeditor-widget, github.com/tschmorleiz/selenium-drivers,num_dependents_deps.dev:0 @@ -1143256,6 +1163755,7 @@ github.com/tsdevendra1/golang-typescript-boilerplate,num_dependents_deps.dev:0 github.com/tsdexter/firebase-hooks,num_dependents_deps.dev:0 github.com/tsdexter/icloud-nosync-node,num_dependents_deps.dev:0 github.com/tsdineshjai/reverse-sentence., +github.com/tsdjs/tsd, github.com/tsdk/Node-Excel-Export, github.com/tsdk/create-nestjs-app,num_dependents_deps.dev:0 github.com/tsdmrfth/react-native-chiklot,num_dependents_deps.dev:0 @@ -1143395,8 +1163895,10 @@ github.com/tsfosnz/react-native-same-toast,num_dependents_deps.dev:0 github.com/tsframework/ts-framework,num_dependents_deps.dev:0 github.com/tsframework/ts-generate-app,num_dependents_deps.dev:0 github.com/tsfun/tsfun,num_dependents_deps.dev:276 +github.com/tsg-iitkgp/next-build-export-action, github.com/tsg/logstash-forwarder,num_dependents_deps.dev:0 github.com/tsgautier/node-majic,num_dependents_deps.dev:0 +github.com/tsgit18/sync-up-to-codecommit-action, github.com/tsgraph/tsgraph,num_dependents_deps.dev:0 github.com/tsh/django-rest-framework-base64-fields, github.com/tshaddix/boji,num_dependents_deps.dev:0 @@ -1143412,6 +1163914,7 @@ github.com/tshak/terrassh,num_dependents_deps.dev:0 github.com/tsharman/ember-cli-neat,num_dependents_deps.dev:0 github.com/tsharms/stylelint-rokit, github.com/tshauck/gcgc, +github.com/tshauck/gh-action-event-to-aws-eventbridge, github.com/tshauck/lol, github.com/tshauck/msn-kit,num_dependents_deps.dev:0 github.com/tshauck/opttt, @@ -1143473,6 +1163976,7 @@ github.com/tshubham7/go-fundamentals,num_dependents_deps.dev:0 github.com/tsiang/certchecker, github.com/tsibahatau/babel-plugin-inline-node,num_dependents_deps.dev:0 github.com/tsibelman/serverless-multi-dotnet,num_dependents_deps.dev:0 +github.com/tsickert/discord-webhook, github.com/tsiege/coloring-palette,num_dependents_deps.dev:0 github.com/tsiemens/gmail-tools,num_dependents_deps.dev:0 github.com/tsifrer/avocato, @@ -1143492,6 +1163996,7 @@ github.com/tsigel/worker-wrapper,num_dependents_deps.dev:0 github.com/tsigo/invision_bridge,num_dependents_deps.dev:0 github.com/tsigo/will_paginate_renderers,num_dependents_deps.dev:0 github.com/tsigo/wriggle,num_dependents_deps.dev:0 +github.com/tsigouris007/action-semgrep-reviewdog, github.com/tsiiiboho/lit-alerts,num_dependents_deps.dev:0 github.com/tsijercic1/3d-example-app,num_dependents_deps.dev:0 github.com/tsijercic1/XMLParser,num_dependents_deps.dev:0 @@ -1143555,6 +1164060,9 @@ github.com/tsirlucas/redux-pure-subscribe,num_dependents_deps.dev:0 github.com/tsirolnik/AffiliTest-JS,num_dependents_deps.dev:0 github.com/tsironis/lockr,num_dependents_deps.dev:30 github.com/tsirysndr/goav,num_dependents_deps.dev:0 +github.com/tsirysndr/setup-crosup, +github.com/tsirysndr/setup-flox, +github.com/tsirysndr/setup-superviseur, github.com/tsirysndr/speedy,num_dependents_deps.dev:0 github.com/tsithu/kakojs,num_dependents_deps.dev:0 github.com/tsitsimis/calman, @@ -1143908,12 +1164416,15 @@ github.com/tsu710785/leancloud-backup-data-module,num_dependents_deps.dev:0 github.com/tsub/dockertags,num_dependents_deps.dev:0 github.com/tsub/serverless-daily-standup-bot,num_dependents_deps.dev:0 github.com/tsub/serverless-plugin-subscription-filter,num_dependents_deps.dev:0 +github.com/tsuba3/cdk_plan_action, github.com/tsuba3/hash-password-pbkdf2,num_dependents_deps.dev:0 github.com/tsuba3/schemable,num_dependents_deps.dev:0 github.com/tsubasa0717/mono_vue,num_dependents_deps.dev:0 github.com/tsubasa597/bilibili-helper,num_dependents_deps.dev:0 github.com/tsubasa597/miraigo-template,num_dependents_deps.dev:0 github.com/tsubasa597/requests,num_dependents_deps.dev:0 +github.com/tsubasaogawa/help-md-generator-action, +github.com/tsubasaogawa/tfvdc-actions, github.com/tsubasaogawa/ytvsearch, github.com/tsuberim/mlhub, github.com/tsubik/ember-side-menu, @@ -1143962,6 +1164473,7 @@ github.com/tsukhu/angular-atomic-library,num_dependents_deps.dev:0 github.com/tsukhu/jsoneditor-react-ext,num_dependents_deps.dev:6 github.com/tsuki-lab/grow-files,num_dependents_deps.dev:0 github.com/tsuki124/project-version,num_dependents_deps.dev:0 +github.com/tsuki42/publish-image-tags, github.com/tsuki42/react-hex-grids,num_dependents_deps.dev:0 github.com/tsuki42/use-meme,num_dependents_deps.dev:0 github.com/tsukigva2/pfn,num_dependents_deps.dev:0 @@ -1143989,6 +1164501,7 @@ github.com/tsundberg/maven-wait-plugin,num_dependents_deps.dev:0 github.com/tsunderechen/ncku-csna-judge-script,num_dependents_deps.dev:0 github.com/tsundokul/pyradamsa, github.com/tsundokul/transmitm, +github.com/tsunematsu21/actions-publish-gh-pages, github.com/tsung-ju/eleventy-plugin-mathjax,num_dependents_deps.dev:0 github.com/tsung-ju/react-truncate-lines,num_dependents_deps.dev:0 github.com/tsung-sc/xbucket,num_dependents_deps.dev:0 @@ -1144049,8 +1164562,15 @@ github.com/tsuwatch/nicolive-api,num_dependents_deps.dev:0 github.com/tsuwatch/niconico-search,num_dependents_deps.dev:0 github.com/tsuwatch/niconize,num_dependents_deps.dev:0 github.com/tsuwatch/voicetext,num_dependents_deps.dev:0 +github.com/tsuyo/auto-release-milestone, github.com/tsuyopon/golang,num_dependents_deps.dev:0 github.com/tsuyoshi-iwanaga/learning_go,num_dependents_deps.dev:0 +github.com/tsuyoshicho/action-mypy, +github.com/tsuyoshicho/action-redpen, +github.com/tsuyoshicho/action-textlint, +github.com/tsuyoshicho/action-vimhelp-html-generate, +github.com/tsuyoshicho/action-vimhelp-tagname-check, +github.com/tsuyoshicho/action-vimlint, github.com/tsuyoshicho/vital-globe,num_dependents_deps.dev:0 github.com/tsuyoshiwada/cake-hash,num_dependents_deps.dev:0 github.com/tsuyoshiwada/css-keyframer,num_dependents_deps.dev:52 @@ -1144187,6 +1164707,7 @@ github.com/tsypa/sms-reg,num_dependents_deps.dev:0 github.com/tsypa/soundfics,num_dependents_deps.dev:0 github.com/tsypa/winston-nanomsg,num_dependents_deps.dev:0 github.com/tsyrul-alexander/ts-grid,num_dependents_deps.dev:0 +github.com/tszalbot/action-upload-webdav, github.com/tszarzynski/aurelia-inpage-templating,num_dependents_deps.dev:0 github.com/tszarzynski/aurelia-redux,num_dependents_deps.dev:0 github.com/tszarzynski/include-media-grid,num_dependents_deps.dev:0 @@ -1144230,6 +1164751,7 @@ github.com/ttab/ttspec, github.com/ttab/typescript-api-client,num_dependents_deps.dev:0 github.com/ttacon/combee,num_dependents_deps.dev:0 github.com/ttacon/css,num_dependents_deps.dev:0 +github.com/ttacon/gce-github-runner, github.com/ttacon/libphonenumber,num_dependents_deps.dev:70 github.com/ttacon/mixmax-api,num_dependents_deps.dev:0 github.com/ttacon/onepassword,num_dependents_deps.dev:0 @@ -1144289,6 +1164811,7 @@ github.com/ttcodegear/grpc_go_qs_sse,num_dependents_deps.dev:0 github.com/ttcryptoswap/ttcryptoswap-sdk,num_dependents_deps.dev:0 github.com/ttcryptoswap/ttcryptoswap-sdk-core,num_dependents_deps.dev:0 github.com/ttd2089/dejwt,num_dependents_deps.dev:0 +github.com/ttd2089/secret-file-action, github.com/ttdat89/cordova-plugin-lucky-clover-image-filter,num_dependents_deps.dev:0 github.com/ttdat89/react-native-js-background-thread, github.com/ttdat89/react-native-video-quickblox,num_dependents_deps.dev:0 @@ -1144363,6 +1164886,7 @@ github.com/ttinoco/GRIDOPT, github.com/ttinoco/OPTALG, github.com/ttinoco/PFNET, github.com/ttinoco/numopt,num_dependents_deps.dev:0 +github.com/ttionya/Repository-Sync-Hub, github.com/ttionya/egg-got,num_dependents_deps.dev:0 github.com/ttionya/eslint-config,num_dependents_deps.dev:0 github.com/ttitoo/react-material-floating-button,num_dependents_deps.dev:0 @@ -1144492,6 +1165016,7 @@ github.com/ttskch/hubot-github-pr-release, github.com/ttskch/hubot-nullpo, github.com/ttskch/hubot-twitter-egosearch,num_dependents_deps.dev:0 github.com/ttskch/qiita-export,num_dependents_deps.dev:0 +github.com/ttskch/render-deploy, github.com/ttskch/select2-bootstrap4-theme,"criticality_score:0.416930,num_dependents_deps.dev:44" github.com/ttskch/svg-paper,num_dependents_deps.dev:0 github.com/ttskch/vuepress-plugin-redirect-frontmatter,num_dependents_deps.dev:0 @@ -1144655,6 +1165180,8 @@ github.com/tuancamtbtx/learning-go,num_dependents_deps.dev:0 github.com/tuanchris/dbt-generator, github.com/tuancon5158/opensoure,num_dependents_deps.dev:0 github.com/tuandatmh/golangsmartflow,num_dependents_deps.dev:0 +github.com/tuanddd/jira-automate-transition, +github.com/tuanddd/jira-ticket-commenter, github.com/tuanden0/simple_api,num_dependents_deps.dev:0 github.com/tuanden0/user_api,num_dependents_deps.dev:0 github.com/tuandht97/web,num_dependents_deps.dev:0 @@ -1144755,9 +1165282,11 @@ github.com/tubndgit/scrapyx-bright-data, github.com/tubndgit/scrapyx-luminati, github.com/tubndgit/scrapyx-scraperapi-proxy, github.com/tubndgit/scrapyx-stormproxies, +github.com/tubone24/depcheck_action, github.com/tubone24/ebook_homebrew, github.com/tubone24/redump,num_dependents_deps.dev:0 github.com/tubone24/ssh_config_json, +github.com/tubone24/update_release, github.com/tubs-ips/nutsh,num_dependents_deps.dev:0 github.com/tubuarge/folder-builder,num_dependents_deps.dev:0 github.com/tubuarge/gohammer,num_dependents_deps.dev:0 @@ -1144892,6 +1165421,7 @@ github.com/tueda/formset, github.com/tueda/polybench, github.com/tueda/python-form, github.com/tueda/python-grace, +github.com/tueda/setup-form, github.com/tueeeeno/url-builder,num_dependents_deps.dev:0 github.com/tuelsch/ts-linked-list,num_dependents_deps.dev:0 github.com/tuenguyenhd/react-native-photo-editor,num_dependents_deps.dev:0 @@ -1145040,6 +1165570,7 @@ github.com/tukaelu/sesame-client-go,num_dependents_deps.dev:0 github.com/tukaianirban/sdk.go.spotify,num_dependents_deps.dev:0 github.com/tukangremot/go,num_dependents_deps.dev:0 github.com/tukangremot/go-helpers,num_dependents_deps.dev:0 +github.com/tukasz/direct-merge-action, github.com/tukdoan/ascii-video, github.com/tukhtashev/go-new,num_dependents_deps.dev:0 github.com/tuki0918/cocomoni,num_dependents_deps.dev:0 @@ -1145050,6 +1165581,7 @@ github.com/tukida/better-docs,num_dependents_deps.dev:0 github.com/tukida/pm2-health, github.com/tukida/zma-dom,num_dependents_deps.dev:0 github.com/tukkajukka/react-scripts,num_dependents_deps.dev:0 +github.com/tuktukvlad/lighthouse-ci-action, github.com/tukumo/lazyVal,num_dependents_deps.dev:0 github.com/tukumo/markdown-hash-filter,num_dependents_deps.dev:0 github.com/tukutela/grunt-contrib-coffee,num_dependents_deps.dev:0 @@ -1145069,12 +1165601,14 @@ github.com/tuledev/react-native-otp-box,num_dependents_deps.dev:0 github.com/tuledeyu/puzzle-parameter,num_dependents_deps.dev:0 github.com/tulen34/netcity-volga, github.com/tulen34/tbomber, +github.com/tuler/s3-check-action, github.com/tuleymanb/arius-api,num_dependents_deps.dev:0 github.com/tulibraries/tulflow, github.com/tulies/event-middleware,num_dependents_deps.dev:0 github.com/tulies/image-lazyload,num_dependents_deps.dev:0 github.com/tulies/typlayer,num_dependents_deps.dev:0 github.com/tulika66/bootcamp-rzp,num_dependents_deps.dev:0 +github.com/tulikapgit/containeractiondemo, github.com/tulindo/metronetpy, github.com/tulindo/tvchannellist, github.com/tuliocastro/node-keyboard-hook,num_dependents_deps.dev:0 @@ -1145135,6 +1165669,7 @@ github.com/tulir/tcell,num_dependents_deps.dev:0 github.com/tulir/telethon-session-sqlalchemy, github.com/tulir/tview,num_dependents_deps.dev:0 github.com/tuliren/mongoose-safe-query,num_dependents_deps.dev:0 +github.com/tuliren/publish-gitbook, github.com/tullo/crdb,num_dependents_deps.dev:0 github.com/tullo/service,num_dependents_deps.dev:0 github.com/tullo/shippy,num_dependents_deps.dev:0 @@ -1145241,6 +1165776,7 @@ github.com/tuna2134/google-custom-search, github.com/tuna2134/sanic-discord, github.com/tuna2134/sanic-hCaptcha, github.com/tuna2134/sanic-template, +github.com/tunabadun/github_docker_action, github.com/tunabay/go-bitarray,num_dependents_deps.dev:0 github.com/tunabay/go-infounit,num_dependents_deps.dev:0 github.com/tunabay/go-speedio,num_dependents_deps.dev:0 @@ -1145257,6 +1165793,7 @@ github.com/tunahanoguz/react-native-profile-picture,num_dependents_deps.dev:0 github.com/tunahanoguz/react-native-select-picker-modal,num_dependents_deps.dev:0 github.com/tunahanpehlivan13/go-mongo,num_dependents_deps.dev:0 github.com/tunailgaz/tmal,num_dependents_deps.dev:0 +github.com/tunaitis/contributor-map, github.com/tunamagur0/anywhere-paint,num_dependents_deps.dev:0 github.com/tunamfv/vue-easy-slider, github.com/tunamsyar/go-exercises,num_dependents_deps.dev:0 @@ -1145313,6 +1165850,8 @@ github.com/tuneZola/victory-core,num_dependents_deps.dev:2 github.com/tuneZola/victory-core-native,num_dependents_deps.dev:0 github.com/tunecino/angular-yii2-model,num_dependents_deps.dev:0 github.com/tunedmystic/get-secret, +github.com/tuneerroy/gpt-code-critic, +github.com/tuneerroy/gpt-code-critic-action, github.com/tunein/envoygrace,num_dependents_deps.dev:0 github.com/tuneinc/emr_launcher, github.com/tuneinc/emr_launcher_artifactory, @@ -1145379,6 +1165918,7 @@ github.com/tungtranhcmus/react-native-prototype-to-scrollview,num_dependents_dep github.com/tungtranhcmus/react-native-scroll-lazy,num_dependents_deps.dev:0 github.com/tungtranuit/nativescript-ns-apple-signin,num_dependents_deps.dev:0 github.com/tungtranuit/rn-bluetooth-printer,num_dependents_deps.dev:0 +github.com/tungtt22/jira-create-issue, github.com/tungtung-dev/common-helper,num_dependents_deps.dev:0 github.com/tungtung-dev/react-native-achievement-view,num_dependents_deps.dev:0 github.com/tungtung233/lotide,num_dependents_deps.dev:0 @@ -1145796,6 +1166336,7 @@ github.com/tuomasr/pazel, github.com/tuomasta/ts-lazy,num_dependents_deps.dev:0 github.com/tuommii/player-movement-sdl2-go,num_dependents_deps.dev:0 github.com/tuongaz/dialogflow,num_dependents_deps.dev:0 +github.com/tuongaz/kubectl-eks-action, github.com/tuotoo/biu,num_dependents_deps.dev:0 github.com/tuotoo/caseconv,num_dependents_deps.dev:0 github.com/tuoxiansp/react-slider,num_dependents_deps.dev:0 @@ -1145918,6 +1166459,7 @@ github.com/turbobeast/chainz,num_dependents_deps.dev:0 github.com/turbobeast/pap,num_dependents_deps.dev:0 github.com/turbobeast/vectr2,num_dependents_deps.dev:0 github.com/turbobert/gabriel10, +github.com/turbocache-build/turbocache-action, github.com/turbocart/turbocart,num_dependents_deps.dev:0 github.com/turbocartpig/insults-bot,num_dependents_deps.dev:0 github.com/turbodom/turbodom,num_dependents_deps.dev:0 @@ -1145979,6 +1166521,8 @@ github.com/turbot/log,num_dependents_deps.dev:2 github.com/turbot/responses,num_dependents_deps.dev:39 github.com/turbot/sdk,num_dependents_deps.dev:0 github.com/turbot/steampipe,num_dependents_deps.dev:0 +github.com/turbot/steampipe-action-check, +github.com/turbot/steampipe-action-setup, github.com/turbot/steampipe-plugin-abuseipdb,num_dependents_deps.dev:0 github.com/turbot/steampipe-plugin-alicloud,num_dependents_deps.dev:0 github.com/turbot/steampipe-plugin-aws,num_dependents_deps.dev:0 @@ -1146109,6 +1166653,7 @@ github.com/turing-mine/phi-events,num_dependents_deps.dev:0 github.com/turing-mine/utility-logger,num_dependents_deps.dev:0 github.com/turing-tech/MaterialScrollBar,criticality_score:0.308470 github.com/turing5467/tr-util,num_dependents_deps.dev:0 +github.com/turing85/publish-report, github.com/turingadvisorygroup/golang-contract-bindings,num_dependents_deps.dev:0 github.com/turingarena/iospec,num_dependents_deps.dev:0 github.com/turingarena/turingarena,num_dependents_deps.dev:0 @@ -1146297,6 +1166842,8 @@ github.com/turnerlabs/argo-discover,num_dependents_deps.dev:0 github.com/turnerlabs/compose-to-batch,num_dependents_deps.dev:0 github.com/turnerlabs/harbor-compose-wrapper,num_dependents_deps.dev:0 github.com/turnerlabs/kplclientgo,num_dependents_deps.dev:0 +github.com/turnerlabs/s3-docusaurus-sync-action, +github.com/turnerlabs/s3-sync-webpack-private-org-action, github.com/turnerlabs/samlkeygen, github.com/turnerlabs/sigsci_site_manager, github.com/turnerlabs/udeploy,num_dependents_deps.dev:0 @@ -1146395,6 +1166942,9 @@ github.com/turtleDev/scramblejs,num_dependents_deps.dev:0 github.com/turtlebender/bottle-agamemnon, github.com/turtlebender/bottle-request, github.com/turtlebot/turtlebot,Google +github.com/turtlebrowser/conan-cache, +github.com/turtlebrowser/get-conan, +github.com/turtlebrowser/get-snyk, github.com/turtlecoin/node-bytestream-helper, github.com/turtlecoin/node-cryptonote-util,num_dependents_deps.dev:0 github.com/turtlecoin/node-solo-pool, @@ -1146435,7 +1166985,11 @@ github.com/turtlepay/httpclient,num_dependents_deps.dev:0 github.com/turtlepay/logger,num_dependents_deps.dev:0 github.com/turtlepay/rabbitmq,num_dependents_deps.dev:0 github.com/turtlepay/utilities,num_dependents_deps.dev:0 +github.com/turtlequeue/setup-babashka, github.com/turtlequeue/turtlequeue-clj-sdk,num_dependents_deps.dev:0 +github.com/turtlesec-no/get-arm-toolchain, +github.com/turtlesec-no/get-ninja, +github.com/turtlesec-no/scale-images, github.com/turtletowerz/go-hls,num_dependents_deps.dev:0 github.com/turugrura/bookings,num_dependents_deps.dev:0 github.com/turugrura/codebkk-banking,num_dependents_deps.dev:0 @@ -1146469,6 +1167023,7 @@ github.com/tusbar/passport-idn,num_dependents_deps.dev:0 github.com/tusbar/react-event-utils,num_dependents_deps.dev:0 github.com/tusbar/testing-stuff,num_dependents_deps.dev:0 github.com/tuseto/limit-input-amount,num_dependents_deps.dev:0 +github.com/tush-tr/setup-jmeter, github.com/tush241191/tusharkharat007-npm-demo,num_dependents_deps.dev:0 github.com/tushar-1health/nativescript-fonepaisa, github.com/tushar-1health/nativescript-opentok,num_dependents_deps.dev:0 @@ -1146832,6 +1167387,7 @@ github.com/tuxjs/tuxjs.eventbus,num_dependents_deps.dev:0 github.com/tuxjsql/hikaricp-cp,num_dependents_deps.dev:0 github.com/tuxjsql/tuxjsql,num_dependents_deps.dev:0 github.com/tuxlinuxien/TwistedWebsocket, +github.com/tuxmart/ios-build-action, github.com/tuxming/gulp-inject-xm,num_dependents_deps.dev:0 github.com/tuxming/gulp-process-ref,num_dependents_deps.dev:0 github.com/tuxming/gulp-template-xm,num_dependents_deps.dev:0 @@ -1146987,6 +1167543,7 @@ github.com/tvardy/what-is,num_dependents_deps.dev:0 github.com/tvardy/wots,num_dependents_deps.dev:0 github.com/tvarit-foggy/tvarit_api, github.com/tvarney/maputil,num_dependents_deps.dev:0 +github.com/tvarohohlavy/inplace-envsubst-action, github.com/tvast/plume.js,num_dependents_deps.dev:0 github.com/tvaughan/middleman-deploy,num_dependents_deps.dev:0 github.com/tvavrys/django-memoize, @@ -1146997,12 +1167554,17 @@ github.com/tvbeat/rapid-xml,num_dependents_deps.dev:0 github.com/tvbgeek/golang,num_dependents_deps.dev:0 github.com/tvburger/sjawl-config,num_dependents_deps.dev:2 github.com/tvc12/mini-json,num_dependents_deps.dev:0 +github.com/tvcsantos/blackduck-report-action, +github.com/tvcsantos/kube-linter-reporter-action, +github.com/tvcsantos/kubeconform-reporter-action, +github.com/tvcsantos/sechub-reporter-action, github.com/tvcutsem/harmony-reflect,num_dependents_deps.dev:26188 github.com/tvcutsem/proxy-handlers,num_dependents_deps.dev:0 github.com/tvd12/reflections,num_dependents_deps.dev:282 github.com/tvdavies/chordprojs,num_dependents_deps.dev:0 github.com/tvdavies/dimple,num_dependents_deps.dev:0 github.com/tvdboom/ATOM, +github.com/tvdias/github-tagger, github.com/tvdsluijs/Theos-Python-Functions, github.com/tvdsluijs/py_weernl, github.com/tvdstaaij/httpdup,num_dependents_deps.dev:0 @@ -1147131,6 +1167693,7 @@ github.com/tvpsoft/parse-server-ovh-storage-adapter,num_dependents_deps.dev:0 github.com/tvquizphd/remark-autofix,num_dependents_deps.dev:0 github.com/tvrcgo/arcjs,num_dependents_deps.dev:0 github.com/tvrcgo/dataware,num_dependents_deps.dev:0 +github.com/tvrcgo/docker-builder, github.com/tvrcgo/easy-cmd,num_dependents_deps.dev:0 github.com/tvrcgo/egg-cloud,num_dependents_deps.dev:0 github.com/tvrcgo/egg-ws,num_dependents_deps.dev:0 @@ -1147142,6 +1167705,7 @@ github.com/tvrcgo/mini-rich,num_dependents_deps.dev:0 github.com/tvrcgo/mobx-react-connect,num_dependents_deps.dev:0 github.com/tvrcgo/neus,num_dependents_deps.dev:0 github.com/tvrcgo/oneloop,num_dependents_deps.dev:0 +github.com/tvrcgo/upload-to-oss, github.com/tvrcgo/vege,num_dependents_deps.dev:0 github.com/tvrcgo/watchman,num_dependents_deps.dev:0 github.com/tvrcgo/webpack-compile-loop,num_dependents_deps.dev:0 @@ -1147165,6 +1167729,7 @@ github.com/tvst/htbuilder, github.com/tvst/jsbuilder, github.com/tvst/st-annotated-text, github.com/tvst/st-execbox, +github.com/tvthatsme/actions-cache, github.com/tvthatsme/google-places-collector,num_dependents_deps.dev:0 github.com/tvthatsme/react-power-picture,num_dependents_deps.dev:0 github.com/tvtoglu/predictr, @@ -1147207,6 +1167772,7 @@ github.com/tw1997/onlyGetPost, github.com/tw2104/kg_tw2104_2021,num_dependents_deps.dev:0 github.com/tw39124-1/robotframework-consoledialogs, github.com/tw3eX/puppeteer-extra-plugin-recaptcha-custom,num_dependents_deps.dev:0 +github.com/tw3lveparsecs/github-actions-set-variables, github.com/tw4452852/acme-dot,num_dependents_deps.dev:0 github.com/tw4452852/acme-lsp,num_dependents_deps.dev:0 github.com/tw4452852/archiver,num_dependents_deps.dev:0 @@ -1147473,6 +1168039,7 @@ github.com/twelvedata/twelvedata-python, github.com/twemazing/twemazing,num_dependents_deps.dev:0 github.com/twendt/binrpc,num_dependents_deps.dev:0 github.com/twentyfourg/jest-apidoc,num_dependents_deps.dev:0 +github.com/twentyfourg/vault-aws-action, github.com/twentyideas/use-roving-tabindex-a11y,num_dependents_deps.dev:0 github.com/twentyrogersc/caretaker,num_dependents_deps.dev:0 github.com/twentyrogersc/grunt-boilerplate,num_dependents_deps.dev:0 @@ -1147492,6 +1168059,7 @@ github.com/twetch-inc/twetch-js,num_dependents_deps.dev:0 github.com/twetzel/magic_recipes,num_dependents_deps.dev:0 github.com/twexler/go-plugins-are-cool,num_dependents_deps.dev:0 github.com/tweyter/CityTime, +github.com/twfahey1/setup-docksal, github.com/twfarland/Son,num_dependents_deps.dev:0 github.com/twfarland/cognitive,num_dependents_deps.dev:0 github.com/twfarland/don,num_dependents_deps.dev:0 @@ -1147550,6 +1168118,7 @@ github.com/twickstrom/vue-papa-parse,num_dependents_deps.dev:0 github.com/twickstrom/vue-processor,num_dependents_deps.dev:0 github.com/twicpics/components,num_dependents_deps.dev:0 github.com/twiddler/envjoi,num_dependents_deps.dev:0 +github.com/twiddler/is-my-docker-parent-image-out-of-date, github.com/twidi/django-adv-cache-tag, github.com/twidi/django-decorator-include, github.com/twidi/django-extended-choices, @@ -1147570,6 +1168139,17 @@ github.com/twigaeng/react-hooks,num_dependents_deps.dev:0 github.com/twiggybuffalo/go-mongo,num_dependents_deps.dev:0 github.com/twigjs/twig.js,"criticality_score:0.509680,num_dependents_deps.dev:768" github.com/twigphp/Twig,criticality_score:0.716600 +github.com/twigphp/cache-extra, +github.com/twigphp/cssinliner-extension, +github.com/twigphp/cssinliner-extra, +github.com/twigphp/html-extra, +github.com/twigphp/inky-extension, +github.com/twigphp/inky-extra, +github.com/twigphp/intl-extra, +github.com/twigphp/markdown-extension, +github.com/twigphp/markdown-extra, +github.com/twigphp/string-extra, +github.com/twigphp/twig-cache-extension, github.com/twigphp/twig-extensions, github.com/twigphp/twig-extra-bundle,criticality_score:0.359920 github.com/twihike/chat-ui-react,num_dependents_deps.dev:0 @@ -1147581,10 +1168161,12 @@ github.com/twijg/react-safeinnerhtml,num_dependents_deps.dev:0 github.com/twikey/twikey-api-go,num_dependents_deps.dev:0 github.com/twikey/twikey-api-java,num_dependents_deps.dev:0 github.com/twikey/twikey-api-python, +github.com/twildber/setup-ghcli, github.com/twilight-rs/twilight,num_dependents_deps.dev:52 github.com/twilightdema/NLP_LIB, github.com/twilio-infra-as-code/plugin-twilio-infra,num_dependents_deps.dev:0 github.com/twilio-infra-as-code/twilio-pulumi-provider,num_dependents_deps.dev:0 +github.com/twilio-labs/actions-sms, github.com/twilio-labs/eslint-config-twilio,num_dependents_deps.dev:0 github.com/twilio-labs/match,num_dependents_deps.dev:0 github.com/twilio-labs/open-pixel-art,criticality_score:0.613030 @@ -1147876,6 +1168458,7 @@ github.com/twistedfall/opencv-rust,"criticality_score:0.493630,num_dependents_de github.com/twistedfall/serde_rusqlite,num_dependents_deps.dev:0 github.com/twistedfall/solaredge,num_dependents_deps.dev:0 github.com/twistedogic/orga,num_dependents_deps.dev:0 +github.com/twistedpair/codeship-env-adapter, github.com/twistedstream/singleton-process,num_dependents_deps.dev:0 github.com/twistengine/isokronic,num_dependents_deps.dev:0 github.com/twister55/react-l10n, @@ -1147941,6 +1168524,7 @@ github.com/twitter-fabric/velocity-react,num_dependents_deps.dev:868 github.com/twitter-fire-scraper-analytics/twitter-fire-scraper, github.com/twitter-forks/mysql,criticality_score:0.347580 github.com/twitter-forks/presto, +github.com/twitter-together/action, github.com/twitter-university/cdk, github.com/twitter/RTLtextarea, github.com/twitter/Serial,"criticality_score:0.342110,num_dependents_deps.dev:0" @@ -1148087,6 +1168671,7 @@ github.com/two-n/grunt-jade-client,num_dependents_deps.dev:0 github.com/two-n/hawsehole,num_dependents_deps.dev:0 github.com/two-n/join-transition,num_dependents_deps.dev:0 github.com/two-n/react-sizeable,num_dependents_deps.dev:0 +github.com/two-pack/redmine-plugin-test-action, github.com/two/bee,num_dependents_deps.dev:0 github.com/two/dep,num_dependents_deps.dev:0 github.com/two/go-winio,num_dependents_deps.dev:0 @@ -1148132,10 +1168717,12 @@ github.com/twocucao/sqlalchemy-lazy-way, github.com/twodarek/barcampgr-teams-bot,num_dependents_deps.dev:0 github.com/twodashes/browser, github.com/twodashes/node, +github.com/twodayslate/swift-package-registry, github.com/twodex/cordclient,num_dependents_deps.dev:0 github.com/twodogegg/l-ui-test,num_dependents_deps.dev:0 github.com/twodogegg/yundama, github.com/twodude/geth-breakdown,num_dependents_deps.dev:0 +github.com/twoequal0/auto-assign-bot, github.com/twoequaldots/cloudflare-go,num_dependents_deps.dev:0 github.com/twoer/grunt-contrib-smartsprites,num_dependents_deps.dev:0 github.com/twoer/grunt-twoer-include,num_dependents_deps.dev:0 @@ -1148325,6 +1168912,7 @@ github.com/twos-sec/go-get-rce,num_dependents_deps.dev:0 github.com/twos-sec/gorce,num_dependents_deps.dev:0 github.com/twos-sec/ptl,num_dependents_deps.dev:0 github.com/twoscott/patreon-go,num_dependents_deps.dev:0 +github.com/twosense/add-ip-to-ec2-security-group, github.com/twosigma/Cook,criticality_score:0.464380 github.com/twosigma/beakerx,criticality_score:0.428410 github.com/twosigma/beakerx_tabledisplay,num_dependents_deps.dev:0 @@ -1148451,14 +1169039,18 @@ github.com/twuni/measured.js,num_dependents_deps.dev:0 github.com/twuni/pg.js,num_dependents_deps.dev:0 github.com/twurple/twurple,num_dependents_deps.dev:12 github.com/tww0003/Fortnite-Tracker-Python-Wrapper, +github.com/twwd/twitter-github-action, github.com/twxs/peg-cmake,num_dependents_deps.dev:0 github.com/twydev/dynamic-scheduler-aws,num_dependents_deps.dev:0 github.com/twygmbh/angular-vanity-builder-jest,num_dependents_deps.dev:0 +github.com/twyla-ai/action-auth0-deploy-cli, github.com/twyla-ai/python-freshchat, github.com/twyla-ai/twyla-chat-templates, github.com/twyr/announce,num_dependents_deps.dev:0 github.com/twz123/oidc-token-ferry,num_dependents_deps.dev:0 github.com/twz915/pubmed, +github.com/tx-pts-dai/flux-diff-action, +github.com/tx-pts-dai/kustomize-yaml-validation-action, github.com/tx23/repository_git,num_dependents_deps.dev:0 github.com/tx2z/creativecommons-webcomponent,num_dependents_deps.dev:0 github.com/tx4x/playground,num_dependents_deps.dev:0 @@ -1148681,6 +1169273,7 @@ github.com/ty-nat/xstate-toolbox,num_dependents_deps.dev:0 github.com/ty-porter/RGBMatrixEmulator, github.com/ty-porter/hyde, github.com/ty0924/goex,num_dependents_deps.dev:0 +github.com/ty0x2333/cocoapods-action, github.com/ty2k/ejs-zero-dependencies,num_dependents_deps.dev:0 github.com/ty4tw/node-red-contrib-extract_ttn,num_dependents_deps.dev:0 github.com/ty4tw/node-red-contrib-kgpcomposer,num_dependents_deps.dev:0 @@ -1148797,6 +1169390,7 @@ github.com/tycomo/generator-pwa-angular-core,num_dependents_deps.dev:0 github.com/tycomo/ngx-ssrs-reportviewer,num_dependents_deps.dev:0 github.com/tycoon69-labs/typescript-peers,num_dependents_deps.dev:2 github.com/tycoonm/ngx-hal-client,num_dependents_deps.dev:0 +github.com/tycrek-archive/issue-labeler, github.com/tycrek/ass-psql,num_dependents_deps.dev:0 github.com/tycrek/ass-storage-engine,num_dependents_deps.dev:0 github.com/tycrek/degoogle,criticality_score:0.441610 @@ -1148851,6 +1169445,7 @@ github.com/tyhyly/formatdate,num_dependents_deps.dev:0 github.com/tyiannak/deep_audio_features, github.com/tyiannak/pyAudioAnalysis,criticality_score:0.456040 github.com/tyilo/fork-futures, +github.com/tyirvine/Unity-Actions-Autoformat, github.com/tyj1113/wheel,num_dependents_deps.dev:0 github.com/tyjo/coptr, github.com/tykann/go-playground,num_dependents_deps.dev:0 @@ -1148951,6 +1169546,7 @@ github.com/tyler-technologies/go-tfdr,num_dependents_deps.dev:0 github.com/tyler-tee/CrowdClient, github.com/tyler-tee/pytriage, github.com/tyler-tee/trackerassist, +github.com/tyler17/github-action-deploy-delegates, github.com/tyler274/ggpo-rs,num_dependents_deps.dev:0 github.com/tyler36/laravel-mix-stylelint,num_dependents_deps.dev:0 github.com/tyler46/nameko-structlog, @@ -1149175,6 +1169771,7 @@ github.com/tylermercier/tackle,num_dependents_deps.dev:0 github.com/tylermercier/talentlms,num_dependents_deps.dev:0 github.com/tylermorganwall/rayshader,criticality_score:0.342730 github.com/tylermurry/decode-har,num_dependents_deps.dev:0 +github.com/tylermurry/github-pr-landmine, github.com/tylermurry/tundra-fetch,num_dependents_deps.dev:0 github.com/tylermzeller/cubey, github.com/tylern4/nicks_plot_utils, @@ -1149421,6 +1170018,7 @@ github.com/tynski/ingrid-backend-coding-task,num_dependents_deps.dev:0 github.com/tynski/safe-travel,num_dependents_deps.dev:0 github.com/tynski/web-service-gin,num_dependents_deps.dev:0 github.com/tyntec/botbuilder-adapter-tyntec-whatsapp,num_dependents_deps.dev:0 +github.com/tyntec/github-action-sms, github.com/tyntec/ktor-problem,num_dependents_deps.dev:0 github.com/tyo-nu/MINE-Database, github.com/tyo-yo/chardiff_html, @@ -1149460,6 +1170058,7 @@ github.com/type-route/type-route,num_dependents_deps.dev:0 github.com/type0code/tc-input,num_dependents_deps.dev:0 github.com/type10/elasticframe,num_dependents_deps.dev:0 github.com/type9/twatter-nodepackage,num_dependents_deps.dev:0 +github.com/typeable/compaREST, github.com/typeapi/TypeAPI,num_dependents_deps.dev:0 github.com/typec/typec,num_dependents_deps.dev:0 github.com/typecastingsg/rpscript-api-download,num_dependents_deps.dev:0 @@ -1149487,6 +1170086,7 @@ github.com/typectrl/tinycolor,num_dependents_deps.dev:108 github.com/typectrl/torrent-file,num_dependents_deps.dev:0 github.com/typectrl/transmission,num_dependents_deps.dev:0 github.com/typectrl/video-filename-parser,num_dependents_deps.dev:0 +github.com/typed-actions/github-script, github.com/typed-code/schemats,num_dependents_deps.dev:0 github.com/typed-decorators/autobind,num_dependents_deps.dev:0 github.com/typed-decorators/debounced,num_dependents_deps.dev:0 @@ -1149625,6 +1170225,7 @@ github.com/typelias/redditappbackend,num_dependents_deps.dev:0 github.com/typelift/SwiftCheck,criticality_score:0.347080 github.com/typelift/Swiftz,criticality_score:0.304560 github.com/typelikeme/tlmjs,num_dependents_deps.dev:0 +github.com/typeling1578/optimize-disk-space, github.com/typelogic/myandroidlib,num_dependents_deps.dev:0 github.com/typelogic/mylib,num_dependents_deps.dev:0 github.com/typelogic/mylib2,num_dependents_deps.dev:0 @@ -1149656,11 +1170257,13 @@ github.com/typeplate/starter-kit,num_dependents_deps.dev:0 github.com/typepoint/typepoint,num_dependents_deps.dev:0 github.com/typerandom/node-nyfiken,num_dependents_deps.dev:0 github.com/typerandom/scrubby, +github.com/typerefinery-ai/action-electron-builder, github.com/typerpc/typerpc,num_dependents_deps.dev:64 github.com/typers/typers,num_dependents_deps.dev:0 github.com/typerslow/durafmt,num_dependents_deps.dev:0 github.com/types-stack/react-image-magnify,num_dependents_deps.dev:0 github.com/types-stack/types,num_dependents_deps.dev:0 +github.com/typesafegithub/github-actions-typing, github.com/typesafehub/conductr-cli, github.com/typesafehub/conductr-lib,num_dependents_deps.dev:1719 github.com/typesafehub/config,num_dependents_deps.dev:16153 @@ -1150036,6 +1170639,7 @@ github.com/typicode/user-startup,num_dependents_deps.dev:2 github.com/typicode/xv,num_dependents_deps.dev:0 github.com/typie/typie-sdk,num_dependents_deps.dev:0 github.com/typijs/typijs, +github.com/typilus/typilus-action, github.com/typin-dev/boxe-o-grid,num_dependents_deps.dev:0 github.com/typin-dev/boxe-u-clearfix,num_dependents_deps.dev:0 github.com/typin-dev/boxe-u-visibility,num_dependents_deps.dev:0 @@ -1150092,6 +1170696,7 @@ github.com/typpo/j2000,num_dependents_deps.dev:0 github.com/typpo/mixpanel-export-cli,num_dependents_deps.dev:0 github.com/typpo/mjml-qr-code,num_dependents_deps.dev:0 github.com/typpo/nunjucks-phone-filter,num_dependents_deps.dev:0 +github.com/typpo/promptfoo-action, github.com/typpo/quickchart,criticality_score:0.329420 github.com/typpo/quickchart-java,num_dependents_deps.dev:0 github.com/typpo/quickchart-js,num_dependents_deps.dev:0 @@ -1150154,6 +1170759,8 @@ github.com/tyrcord/tbloc,num_dependents_deps.dev:0 github.com/tyrcord/tutils,num_dependents_deps.dev:2 github.com/tyrealgray/perlin.js,num_dependents_deps.dev:0 github.com/tyrery/homework-,num_dependents_deps.dev:0 +github.com/tyriis/docker-image-tag-exists, +github.com/tyriis/multi-file-commit, github.com/tyrinlewis123/lodown,num_dependents_deps.dev:0 github.com/tyrion/gridsome-plugin-netlify-cms-paths,num_dependents_deps.dev:0 github.com/tyrion/pysolate, @@ -1150174,6 +1170781,7 @@ github.com/tyrollins/hyper-marvel,num_dependents_deps.dev:0 github.com/tyrone-anz/export-otlp-googlecloud,num_dependents_deps.dev:0 github.com/tyrone-anz/oksvg,num_dependents_deps.dev:0 github.com/tyrone-sudeium/napi-gif-encoder,num_dependents_deps.dev:0 +github.com/tyrone-sureify/redoc-lint-github-action, github.com/tyronemaxi/go_practice,num_dependents_deps.dev:0 github.com/tyrrellsystems/node-red-contrib-pid-controller,num_dependents_deps.dev:0 github.com/tyrrellsystems/node-red-contrib-serial-modbus,num_dependents_deps.dev:0 @@ -1150251,6 +1170859,7 @@ github.com/tytan652/go-xmpp,num_dependents_deps.dev:0 github.com/tytao/have-a-try-824,num_dependents_deps.dev:0 github.com/tythe-org/circular-slider,num_dependents_deps.dev:0 github.com/tythe-org/draggable-arc,num_dependents_deps.dev:0 +github.com/tythonco/actions-sfgpt, github.com/tytkal/python-hijiri-ummalqura, github.com/tytodorov/not-whlist-sandox-plugin,num_dependents_deps.dev:0 github.com/tytouf/ebustl-rs,num_dependents_deps.dev:0 @@ -1150315,6 +1170924,7 @@ github.com/tzaeschke/phtree,num_dependents_deps.dev:0 github.com/tzaeschke/tinspin-common,num_dependents_deps.dev:0 github.com/tzaeschke/tinspin-indexes,num_dependents_deps.dev:0 github.com/tzaeschke/zoodb,num_dependents_deps.dev:0 +github.com/tzafrirben/babashka-docker-action, github.com/tzagerAI/tzager, github.com/tzamalisp/cross-ai-lib, github.com/tzangms/django-bootstrap-form,criticality_score:0.355170 @@ -1150384,6 +1170994,7 @@ github.com/tzinfo/tzinfo-data,num_dependents_deps.dev:2138 github.com/tzingf15/ts-cte,num_dependents_deps.dev:0 github.com/tzipor/mrat,num_dependents_deps.dev:0 github.com/tzk-chris/gin-vue,num_dependents_deps.dev:0 +github.com/tzkhan/pr-update-action, github.com/tzkmx/apollo-wp-rest,num_dependents_deps.dev:0 github.com/tzkuei/create-react-lib, github.com/tzlAsTom/express-crud,num_dependents_deps.dev:0 @@ -1150451,6 +1171062,7 @@ github.com/tzwickl/passport-linkedin-api-v2,num_dependents_deps.dev:0 github.com/tzwm/ppt2png,num_dependents_deps.dev:0 github.com/tzzf/vue-z-confirm,num_dependents_deps.dev:0 github.com/tzzs/learn_go,num_dependents_deps.dev:0 +github.com/tzzs/server-shell, github.com/u-aaa/Vilnius-Apartment-Predictions, github.com/u-aaa/simple_calculator, github.com/u-anurag/openseespyvis, @@ -1150515,6 +1171127,7 @@ github.com/u-wave/u-wave-source-youtube,num_dependents_deps.dev:0 github.com/u-wave/u-wave.github.io,num_dependents_deps.dev:0 github.com/u-wave/web,num_dependents_deps.dev:0 github.com/u-work/koa-pino-logger,num_dependents_deps.dev:0 +github.com/u-yas/ennbu, github.com/u007/lib,num_dependents_deps.dev:0 github.com/u007d/arith_traits,num_dependents_deps.dev:0 github.com/u007d/arith_wrappers,num_dependents_deps.dev:0 @@ -1150524,6 +1171137,7 @@ github.com/u01ai11/ConnectomeMatch, github.com/u01ai11/MouseView.js,num_dependents_deps.dev:0 github.com/u01jmg3/ics-parser,criticality_score:0.407640 github.com/u0324020/actions-ci,num_dependents_deps.dev:0 +github.com/u0324020/actions-helloword, github.com/u0f/djs-fun-v12-spanish,num_dependents_deps.dev:0 github.com/u0u0/Quick-Cocos2dx-Community,criticality_score:0.370150 github.com/u1-liquid/vue-svg-inline-loader-corejs3,num_dependents_deps.dev:0 @@ -1151190,8 +1171804,17 @@ github.com/ubie-inc/brave-kt,num_dependents_deps.dev:0 github.com/ubie-inc/prettier-config,num_dependents_deps.dev:0 github.com/ubie-inc/simple-slack-api-kt,num_dependents_deps.dev:0 github.com/ubie-inc/spanner-kase,num_dependents_deps.dev:0 +github.com/ubie-oss/comment-to-merged-pr-action, +github.com/ubie-oss/delete-source-map-action, +github.com/ubie-oss/logrocket-action, github.com/ubien/react-ripple-css,num_dependents_deps.dev:0 +github.com/ubiety/ubiety.scram.core, +github.com/ubiety/ubiety.stringprep.core, +github.com/ubiety/ubiety.versionit, +github.com/ubiety/xmpp, github.com/ubik2/aframe-network-component,num_dependents_deps.dev:0 +github.com/ubik2/check-references-action, +github.com/ubik2/validate-json-action, github.com/ubikampus/ubimqtt,num_dependents_deps.dev:0 github.com/ubikee/generator-bdd-cucumber,num_dependents_deps.dev:0 github.com/ubikgs/AndroidSensors,num_dependents_deps.dev:0 @@ -1151236,6 +1171859,7 @@ github.com/ubiquits/core,num_dependents_deps.dev:0 github.com/ubiquits/toolchain,num_dependents_deps.dev:0 github.com/ubiquits/ubiquits,num_dependents_deps.dev:0 github.com/ubiquits/ubiquits.github.io,num_dependents_deps.dev:0 +github.com/ubiquity/ubiquibot, github.com/ubiquity6/three.js,num_dependents_deps.dev:0 github.com/ubiquityhosting/dm_driver,num_dependents_deps.dev:0 github.com/ubiquityhosting/docker-machine-driver-ubiquity,num_dependents_deps.dev:0 @@ -1151388,6 +1172012,7 @@ github.com/ubuntudesign/vanilla-brochure-theme,num_dependents_deps.dev:0 github.com/ubuntudesign/vanilla-docs-theme,num_dependents_deps.dev:0 github.com/ubuntudesign/vanilla-framework,num_dependents_deps.dev:4 github.com/ubuntudesign/yaml-deleted-paths, +github.com/ubuntudroid/automerge-labeler, github.com/ubuntuvim/WildEmber,num_dependents_deps.dev:0 github.com/ubuntuvim/hexo-generator-feed-cst,num_dependents_deps.dev:0 github.com/ubuntuvim/nunjucks-cst,num_dependents_deps.dev:0 @@ -1151653,6 +1172278,7 @@ github.com/ucoin-io/wotb,num_dependents_deps.dev:8 github.com/ucokfm/admin-lte-react,num_dependents_deps.dev:0 github.com/ucokfm/knex-seed-xlsx,num_dependents_deps.dev:0 github.com/ucokfm/rm-node-modules-cli,num_dependents_deps.dev:0 +github.com/ucomesdag/molecule-action, github.com/uconn/banner,num_dependents_deps.dev:0 github.com/ucookie/docxer,num_dependents_deps.dev:0 github.com/ucookie/search,num_dependents_deps.dev:0 @@ -1151930,7 +1172556,10 @@ github.com/uditalias/swamp,num_dependents_deps.dev:0 github.com/uditalias/timeline,num_dependents_deps.dev:0 github.com/uditalias/vnill,num_dependents_deps.dev:0 github.com/uditalias/webpack-highwinds-purge-plugin,num_dependents_deps.dev:0 +github.com/uditgaurav/docker-linter, github.com/uditgaurav/go-sdk-poc,num_dependents_deps.dev:0 +github.com/uditgaurav/k8s-actions, +github.com/uditgaurav/kubernetes-chaos, github.com/uditgaurav/notes,num_dependents_deps.dev:0 github.com/udithprabhu/personal-page-creator, github.com/udithv/body-parser-xml-json,num_dependents_deps.dev:0 @@ -1151966,6 +1172595,7 @@ github.com/udondan/cdk-athena,num_dependents_deps.dev:0 github.com/udondan/cdk-athena-workgroup,num_dependents_deps.dev:0 github.com/udondan/cdk-db-migration,num_dependents_deps.dev:0 github.com/udondan/cdk-ec2-key-pair,num_dependents_deps.dev:0 +github.com/udondan/cdk-nodejs, github.com/udondan/cdk-secrets,num_dependents_deps.dev:0 github.com/udondan/cdk-sqs-monitored,num_dependents_deps.dev:0 github.com/udondan/cdk-ssm-document,num_dependents_deps.dev:0 @@ -1151973,6 +1172603,7 @@ github.com/udondan/cdk-ssm-documents,num_dependents_deps.dev:0 github.com/udondan/googlefonts,num_dependents_deps.dev:0 github.com/udondan/iam-floyd,num_dependents_deps.dev:0 github.com/udondan/jsii-publish,num_dependents_deps.dev:0 +github.com/udondan/ver2doc, github.com/udonetsm/udonetsm,num_dependents_deps.dev:0 github.com/udongo/udongo,num_dependents_deps.dev:0 github.com/udoprog/argwerk,num_dependents_deps.dev:0 @@ -1152118,6 +1172749,7 @@ github.com/ueihvn/learnapp,num_dependents_deps.dev:0 github.com/ueihvn/learnwebservice,num_dependents_deps.dev:0 github.com/ueihvn/weatherstation,num_dependents_deps.dev:0 github.com/ueisele/go-docker-utils,num_dependents_deps.dev:0 +github.com/ueki-tomohiro/flutter-test-action, github.com/uekstrom/libtaylor,Google github.com/ueler/ng-google-places-autocomplete,num_dependents_deps.dev:0 github.com/ueler/ng-lazyload-script,num_dependents_deps.dev:0 @@ -1152156,6 +1172788,7 @@ github.com/uesaiso/jsonapi-instance-store,num_dependents_deps.dev:0 github.com/uestc-lfs/soinn, github.com/uesteibar/hyperdocs,num_dependents_deps.dev:0 github.com/uesteibar/medium-fetcher, +github.com/uesteibar/reviewer-lottery, github.com/uestla/TwiGrid,num_dependents_deps.dev:0 github.com/uetchy/MuffledAPI,num_dependents_deps.dev:0 github.com/uetchy/Polyglot,criticality_score:0.342930 @@ -1152284,6 +1172917,7 @@ github.com/ufonion/utils,num_dependents_deps.dev:0 github.com/ufoo68/cdk-lambda-api,num_dependents_deps.dev:0 github.com/ufoo68/data-pipeline-d2s-cdk,num_dependents_deps.dev:0 github.com/ufoo68/line-message-builder,num_dependents_deps.dev:0 +github.com/ufoo68/line-push-message, github.com/ufoot/bolt,num_dependents_deps.dev:0 github.com/ufopilot/automic_rest, github.com/uforgetmenot/libvmake, @@ -1152430,6 +1173064,7 @@ github.com/ugurdalkiran/react-chart-race,num_dependents_deps.dev:0 github.com/ugurdalkiran/react-native-space-navigation,num_dependents_deps.dev:0 github.com/ugursogukpinar/csv2arff, github.com/ugursogukpinar/mergearff, +github.com/ugurtemiz/datadog-synthetic-action, github.com/uguu/Reki3,num_dependents_deps.dev:0 github.com/ugvibib/pyloghandlers, github.com/ugwis/loader,num_dependents_deps.dev:0 @@ -1152478,6 +1173113,7 @@ github.com/uhnuser/json-service-commons,num_dependents_deps.dev:0 github.com/uho1896/fc2pro-ui,num_dependents_deps.dev:0 github.com/uho1896/fc2pro-vue-timeline,num_dependents_deps.dev:0 github.com/uho1896/mcdownloader,num_dependents_deps.dev:0 +github.com/uhobeike/ros-melodic-clang-tidy-review, github.com/uhoh-itsmaciek/heroku-config-diff, github.com/uhoh-itsmaciek/heroku-data-api-plugin,num_dependents_deps.dev:0 github.com/uhoh-itsmaciek/heroku-ps-diff,num_dependents_deps.dev:0 @@ -1152555,6 +1173191,7 @@ github.com/uhyo/my-static,num_dependents_deps.dev:0 github.com/uhyo/my-user,num_dependents_deps.dev:0 github.com/uhyo/my-user-mongo,num_dependents_deps.dev:0 github.com/uhyo/my-validator,num_dependents_deps.dev:0 +github.com/uhyo/please-star-first, github.com/uhyo/react-wc,num_dependents_deps.dev:0 github.com/uhyo/resourcebundles,num_dependents_deps.dev:4 github.com/uhyo/rocon,num_dependents_deps.dev:0 @@ -1152630,6 +1173267,9 @@ github.com/uiansol/go-talk,num_dependents_deps.dev:0 github.com/uias/Pageboy,criticality_score:0.385960 github.com/uias/Tabman,criticality_score:0.399280 github.com/uibase/uibase-vue, +github.com/uibcdf/action-build-and-upload-conda-packages, +github.com/uibcdf/action-html-dir-to-gh-pages, +github.com/uibcdf/action-sphinx-docs-to-gh-pages, github.com/uibix/pdfbix,num_dependents_deps.dev:0 github.com/uibox/mergely,num_dependents_deps.dev:42 github.com/uibox/ztree,num_dependents_deps.dev:42 @@ -1152725,6 +1173365,7 @@ github.com/uio-bmi/pyvg, github.com/uio-bmi/rough_graph_mapper, github.com/uio-cels/NucDiff, github.com/uio-cels/offsetbasedgraph, +github.com/uiolee/setup-pandoc, github.com/uioporqwerty/app-actions,num_dependents_deps.dev:0 github.com/uioporqwerty/capacitor-app-actions, github.com/uioporqwerty/capacitor-metadata-config,num_dependents_deps.dev:0 @@ -1152912,6 +1173553,7 @@ github.com/ujmp/universal-java-matrix-package,num_dependents_deps.dev:26 github.com/ujsxn/weixin, github.com/ujvala-bhumi/Pypi-test-project, github.com/ujw0l/carousel.js,num_dependents_deps.dev:0 +github.com/ujw0l/ctcl-image-gallery-js, github.com/ujw0l/image-carousel, github.com/ujw0l/js-crop,num_dependents_deps.dev:0 github.com/ujw0l/js-masonry,num_dependents_deps.dev:0 @@ -1152964,7 +1173606,9 @@ github.com/ukatama/obj2html,num_dependents_deps.dev:0 github.com/ukatama/opal-loader,num_dependents_deps.dev:0 github.com/ukatama/update-changelog,num_dependents_deps.dev:0 github.com/ukatama/vue-dice-component,num_dependents_deps.dev:0 +github.com/ukatech/ukagaka-mirror-md5-CI-build, github.com/ukautz/ghinstallation,num_dependents_deps.dev:0 +github.com/ukautz/github-action-npm-scope-syncer, github.com/ukayani/auth0-deploy,num_dependents_deps.dev:0 github.com/ukayani/d-inject, github.com/ukayani/ecs-service,num_dependents_deps.dev:0 @@ -1153010,6 +1173654,7 @@ github.com/ukhomeoffice/vault-sidekick,num_dependents_deps.dev:0 github.com/uki00a/rax-blessed-driver,num_dependents_deps.dev:0 github.com/uki00a/redis-term,num_dependents_deps.dev:0 github.com/ukiahsmith/genid,num_dependents_deps.dev:0 +github.com/ukicomputers/Android-Java-Builder, github.com/ukijs/uki, github.com/ukijs/uki-gsheet-db,num_dependents_deps.dev:0 github.com/ukijs/uki-ui,num_dependents_deps.dev:0 @@ -1153247,6 +1173892,7 @@ github.com/ulasarican/colorize,num_dependents_deps.dev:0 github.com/ulaval-rs/peatland-time-series, github.com/ulaval-rs/pytrombone, github.com/ulaval-rs/spectrominer, +github.com/ulaval/azure-blob-copy-action, github.com/ulaval/modul,num_dependents_deps.dev:0 github.com/ulaval/modul-auth-msal,num_dependents_deps.dev:0 github.com/ulaval/modul-components,num_dependents_deps.dev:0 @@ -1153370,6 +1174016,7 @@ github.com/uliontse/mlgb, github.com/uliontse/rich_overnight, github.com/uliontse/translators, github.com/ulises-codes/convertify, +github.com/ulises-jeremias/github-actions-aur-publish, github.com/ulises-jeremias/grpc-research-pdytr,num_dependents_deps.dev:0 github.com/ulises-jeremias/react-redux-webpack-starter,num_dependents_deps.dev:0 github.com/ulises-jeremias/react-webpack-starter,num_dependents_deps.dev:0 @@ -1153605,6 +1174252,7 @@ github.com/ultralist/ultralist,criticality_score:0.459750 github.com/ultralytics/package-framework, github.com/ultralytics/yolov3,criticality_score:0.578760 github.com/ultralytics/yolov5,criticality_score:0.585320 +github.com/ultram4rine/extract-changes-action, github.com/ultram4rine/go-ssh1,num_dependents_deps.dev:0 github.com/ultram4rine/switchmap,num_dependents_deps.dev:0 github.com/ultramarin4/gopacket,num_dependents_deps.dev:0 @@ -1153692,6 +1174340,7 @@ github.com/ultrox/lint-staged,num_dependents_deps.dev:0 github.com/ultrox/tabs,num_dependents_deps.dev:0 github.com/ultrox/whichArticle,num_dependents_deps.dev:0 github.com/ultru/ultru-cli, +github.com/ults-io/mobile-version-bump-action, github.com/ultsi/telegram-bot-cmd-api,num_dependents_deps.dev:0 github.com/ulu5/uluplot, github.com/ulucinar/kubectl-edit-status,num_dependents_deps.dev:0 @@ -1153769,6 +1174418,7 @@ github.com/uma0317/line-messaging-api-rust,num_dependents_deps.dev:0 github.com/umaami/umaami-node,num_dependents_deps.dev:0 github.com/umaar/npm-umar,num_dependents_deps.dev:0 github.com/umagol/Angstorage,num_dependents_deps.dev:0 +github.com/umahmood/pushover-actions, github.com/umahmood/simple-telegrambot, github.com/umairghani/py-jrpc, github.com/umairhm/businesscard, @@ -1153793,6 +1174443,7 @@ github.com/umakemecrazy/crud-no-sql-db,num_dependents_deps.dev:0 github.com/umakoz/hubot-line,num_dependents_deps.dev:0 github.com/umalmyha/bookshop,num_dependents_deps.dev:0 github.com/umalqura/umalqura,num_dependents_deps.dev:0 +github.com/umami-ware/pr-guard, github.com/umanari145/golang_sample,num_dependents_deps.dev:0 github.com/umang91/extended-auto-complete,num_dependents_deps.dev:0 github.com/umang91/unread-indicator,num_dependents_deps.dev:0 @@ -1153810,6 +1174461,7 @@ github.com/umangmaurya/react-native-really-awesome-button,num_dependents_deps.de github.com/umangsinghal31/djangorest-security, github.com/umangtank/oneNeuron, github.com/umangv/picturedrocks, +github.com/umani/changed-files, github.com/umanish/go-agent,num_dependents_deps.dev:0 github.com/umanit/npm-tools,num_dependents_deps.dev:0 github.com/umanit/umanit-ionic-view,num_dependents_deps.dev:0 @@ -1154047,6 +1174699,7 @@ github.com/umeshramya/very-simple-orm, github.com/umesproject/superr,num_dependents_deps.dev:0 github.com/umezo/beat-emitter.js,num_dependents_deps.dev:0 github.com/umezo/immutable-update-operation,num_dependents_deps.dev:0 +github.com/umgefahren/hackathon-action, github.com/umgustavo/gulog,num_dependents_deps.dev:0 github.com/umhan35/react-native-search-bar,"criticality_score:0.337150,num_dependents_deps.dev:0" github.com/umi-top/umi-core-js,num_dependents_deps.dev:0 @@ -1154352,12 +1175005,21 @@ github.com/umutcanbolat/reverse-repeat,num_dependents_deps.dev:0 github.com/umutcanbolat/unrepeat, github.com/umutcomlekci/go-dockerclient,num_dependents_deps.dev:0 github.com/umutgokbayrak/tdd_with_go,num_dependents_deps.dev:0 +github.com/umuthan/video-converter, github.com/umutozel/Beetle.js,num_dependents_deps.dev:0 github.com/umutozel/circular-ref-fix,num_dependents_deps.dev:2 github.com/umutozel/generator-npm-typescript-starter,num_dependents_deps.dev:0 github.com/umutozel/jinqu,num_dependents_deps.dev:0 github.com/umutozel/jokenizer,num_dependents_deps.dev:20 github.com/umutoztunc/whitesymex, +github.com/umutphp/github-action-dynamic-profile-page, +github.com/umutphp/hacker-laws-action, +github.com/umutphp/php-magic-number-check-action, +github.com/umutphp/php-psecio-parse-action, +github.com/umutphp/php-var-dump-check-action, +github.com/umutphp/phpmetrics-action, +github.com/umutphp/sensiolabs-security-checker-action, +github.com/umutphp/wp-vulnerability-check-github-action, github.com/umuttaymaz/react-native-webview-fullscreen,num_dependents_deps.dev:0 github.com/umuttuncer/Akbank,num_dependents_deps.dev:0 github.com/umweltdk/eslint-config-react,num_dependents_deps.dev:0 @@ -1154397,6 +1175059,7 @@ github.com/un-loop/unloop-resource-builder,num_dependents_deps.dev:0 github.com/un-loop/unloop-session-auth,num_dependents_deps.dev:0 github.com/un-loop/unloop-static-router,num_dependents_deps.dev:0 github.com/un-versed/QuantumJS,num_dependents_deps.dev:0 +github.com/un-versed/heroku-deploy, github.com/un-versed/tweetVerse,num_dependents_deps.dev:0 github.com/un-versed/unvue-cli,num_dependents_deps.dev:0 github.com/un-zero-un/isocontent-js,num_dependents_deps.dev:2 @@ -1154443,6 +1175106,7 @@ github.com/una/sassme,num_dependents_deps.dev:0 github.com/unabara-org/go-keijiban,num_dependents_deps.dev:0 github.com/unabridged/motion,"criticality_score:0.341990,num_dependents_deps.dev:0" github.com/unacademy/krakend,num_dependents_deps.dev:0 +github.com/unacast/actions-github-deployment-status, github.com/unacast/unacat, github.com/unacast/unaflow, github.com/unadlib/acting,num_dependents_deps.dev:0 @@ -1154531,6 +1175195,7 @@ github.com/unau/nougat,num_dependents_deps.dev:0 github.com/unaussprechlich/Hypixel-API-typescript,num_dependents_deps.dev:0 github.com/unaussprechlich/Minecraft-api,num_dependents_deps.dev:0 github.com/unaussprechlich/keystone,num_dependents_deps.dev:0 +github.com/unavailable-username/veracode-community-uploadandscan-action, github.com/unaxiom/pginit,num_dependents_deps.dev:0 github.com/unbalanced/grunt-simple-watch,num_dependents_deps.dev:0 github.com/unbam/Leaflet.SlideMenu,num_dependents_deps.dev:0 @@ -1155067,6 +1175732,7 @@ github.com/underdal/wonderslack,num_dependents_deps.dev:0 github.com/underdark.nl/uweb3, github.com/underdog-tech/pinwheel-android-sdk,num_dependents_deps.dev:0 github.com/underdog-tech/react-modal,num_dependents_deps.dev:0 +github.com/underdog-tech/vulnbot-action, github.com/underdogio/backbone-relationship,num_dependents_deps.dev:0 github.com/underdogio/backbone-requester,num_dependents_deps.dev:0 github.com/underdogio/backbone-serialize,num_dependents_deps.dev:0 @@ -1155156,6 +1175822,7 @@ github.com/undertuga/ipv4-tools,num_dependents_deps.dev:0 github.com/undervane/form-effects,num_dependents_deps.dev:0 github.com/underwater-squad/substrate.ai,num_dependents_deps.dev:0 github.com/underway2014/pm2-env, +github.com/underwindfall/create-release-with-debugapk, github.com/underwire/underwire,num_dependents_deps.dev:0 github.com/underworld-industries/react-github-heatmap,num_dependents_deps.dev:0 github.com/underworldcode/cloudstor, @@ -1155268,6 +1175935,7 @@ github.com/undoio/delve,num_dependents_deps.dev:0 github.com/undoio/go-bindings,num_dependents_deps.dev:0 github.com/undomnis/regexp-cyrl,num_dependents_deps.dev:0 github.com/undoware/wintersmith-ls,num_dependents_deps.dev:0 +github.com/undownding/VuePagesAction, github.com/undozen/fetch,num_dependents_deps.dev:74 github.com/undozen/tmd, github.com/undp/MsGraphExporter, @@ -1155425,11 +1176093,16 @@ github.com/unfoldingword/book-package-app,num_dependents_deps.dev:0 github.com/unfoldingword/book-package-rcl,num_dependents_deps.dev:0 github.com/unfoldingword/string-punctuation-tokenizer, github.com/unfoldr/shrinkwrapper,num_dependents_deps.dev:0 +github.com/unfor19/configmap-action, github.com/unfor19/frigga, github.com/unfor19/githubsecrets, +github.com/unfor19/hero-action, +github.com/unfor19/install-aws-cli-action, github.com/unfor19/ops, github.com/unfor19/python-project, +github.com/unfor19/release-action, github.com/unfor19/release-action-test,num_dependents_deps.dev:0 +github.com/unfor19/replacer-action, github.com/unfor19/tbs, github.com/unfor19/yarser,num_dependents_deps.dev:0 github.com/unforbiddenyet/react-healthy-image,num_dependents_deps.dev:0 @@ -1155448,6 +1176121,7 @@ github.com/unframework/react-dynamics,num_dependents_deps.dev:0 github.com/unframework/react-pseudo-style,num_dependents_deps.dev:0 github.com/unframework/remote-control,num_dependents_deps.dev:0 github.com/unframework/vdom-live,num_dependents_deps.dev:0 +github.com/unfunco/setup-tanka, github.com/ungana/git-status-monitor,num_dependents_deps.dev:0 github.com/ungap/array-iterator,num_dependents_deps.dev:0 github.com/ungap/create-content,num_dependents_deps.dev:372 @@ -1155491,6 +1176165,7 @@ github.com/ungarj/mapchete_xarray, github.com/ungarj/s2reader, github.com/ungarj/tilematrix, github.com/ungarmichael/gomodoro,num_dependents_deps.dev:0 +github.com/ungarscool1/sonar-quality-gate-reporting, github.com/ungarson/MetroStations,num_dependents_deps.dev:0 github.com/ungcarlen/structda, github.com/ungdesign/cordova-admob-free-unity,num_dependents_deps.dev:0 @@ -1155508,6 +1176183,7 @@ github.com/ungerik/react-dmodel,num_dependents_deps.dev:0 github.com/ungerik/react-webpack-config,num_dependents_deps.dev:0 github.com/ungerpeter/react-flow-viz,num_dependents_deps.dev:0 github.com/unglue-workflow/server,num_dependents_deps.dev:0 +github.com/ungnome/render-service-deploy, github.com/ungoldman/choo-store,num_dependents_deps.dev:0 github.com/ungoldman/component,num_dependents_deps.dev:0 github.com/ungoldman/contribs,num_dependents_deps.dev:0 @@ -1155675,6 +1176351,7 @@ github.com/unicitee/react-native-snowboy,num_dependents_deps.dev:0 github.com/unickorn/discord-tidal,num_dependents_deps.dev:0 github.com/unickorn/discordtidal,num_dependents_deps.dev:0 github.com/unickortega/vue-photo-editor,num_dependents_deps.dev:0 +github.com/unickq/send-to-allure-docker-service-action, github.com/uniclau/jbPivot,num_dependents_deps.dev:0 github.com/unicloud-uos/unicloud-sdk-go,num_dependents_deps.dev:0 github.com/uniclyNFT/unicly-core, @@ -1155862,6 +1176539,7 @@ github.com/uniflow-io/uniflow,num_dependents_deps.dev:0 github.com/uniflow-kt/uniflow-kt,criticality_score:0.368650 github.com/uniflow/uniflow,num_dependents_deps.dev:0 github.com/uniflow/uniflow-component,num_dependents_deps.dev:0 +github.com/unifly-aero/aci-deploy, github.com/uniformid/dateparsejs,num_dependents_deps.dev:0 github.com/uniformlyrandom/circuits, github.com/unigatsby/unigatsby,num_dependents_deps.dev:0 @@ -1155920,6 +1176598,7 @@ github.com/unijs/isojs,num_dependents_deps.dev:0 github.com/unijs/unijs, github.com/unijs/unijs-builder,num_dependents_deps.dev:0 github.com/unikoid/dumpster,num_dependents_deps.dev:0 +github.com/unikraft/kraftkit, github.com/unikubehq/cli, github.com/unimaginativeGitHub/engine-preflight,num_dependents_deps.dev:0 github.com/unimaginativeGitHub/lognographer, @@ -1155933,6 +1176612,7 @@ github.com/unimibinside/dfaas,num_dependents_deps.dev:0 github.com/unimidiprog1/lab_2020-2021,num_dependents_deps.dev:0 github.com/unimodules/react-native-unimodules,"criticality_score:0.366470,num_dependents_deps.dev:96" github.com/unimonkiez/create-react-provider,num_dependents_deps.dev:0 +github.com/unimonkiez/cuda-toolkit, github.com/unimonkiez/desktop-controller,num_dependents_deps.dev:0 github.com/unimonkiez/react-cordova-boilerplate,num_dependents_deps.dev:0 github.com/unimonkiez/react-native-asset,num_dependents_deps.dev:8 @@ -1155997,6 +1176677,8 @@ github.com/unintented/go_learn,num_dependents_deps.dev:0 github.com/uninth/occd,num_dependents_deps.dev:0 github.com/union-of-tongji-nwpu/claw-song,num_dependents_deps.dev:0 github.com/union-tech/eslint-config-unioncore,num_dependents_deps.dev:0 +github.com/unionai-oss/flyte-register-action, +github.com/unionai-oss/flytectl-setup-action, github.com/unionai/cron,num_dependents_deps.dev:0 github.com/unional/assert-order,num_dependents_deps.dev:0 github.com/unional/assertron,num_dependents_deps.dev:0 @@ -1156191,6 +1176873,7 @@ github.com/uniquelyparticular/sync-shippo-to-zendesk,num_dependents_deps.dev:0 github.com/uniquelyparticular/sync-stripe-to-moltin,num_dependents_deps.dev:0 github.com/uniquelyparticular/sync-stripe-to-zendesk,num_dependents_deps.dev:0 github.com/uniquelyparticular/zendesk-magento-m1-request,num_dependents_deps.dev:0 +github.com/uniquemo/copy_file_to_another_repo_action, github.com/uniquemo/learn-go,num_dependents_deps.dev:0 github.com/uniquenaer/uniquenaer.github.io,num_dependents_deps.dev:0 github.com/uniquesmilehxx/blue-intersection-observer,num_dependents_deps.dev:0 @@ -1156550,6 +1177233,7 @@ github.com/university-of-ant-solutions/react-mdl-library,num_dependents_deps.dev github.com/university-of-auckland/conflex,num_dependents_deps.dev:0 github.com/university-of-southern-maine-physics/QuadCellDetector, github.com/university-of-york/design-patterns,num_dependents_deps.dev:0 +github.com/university-of-york/ds-devtool-setEnvVars, github.com/university-of-york/theme-uoy,num_dependents_deps.dev:0 github.com/universityofadelaide/shepherd-operator,num_dependents_deps.dev:0 github.com/universityradioyork/2016-site,num_dependents_deps.dev:0 @@ -1156714,6 +1177398,7 @@ github.com/unkhz/distract.js,num_dependents_deps.dev:0 github.com/unkhz/transr.js,num_dependents_deps.dev:0 github.com/unki2aut/loadfxt,num_dependents_deps.dev:0 github.com/unki2aut/mpd,num_dependents_deps.dev:0 +github.com/unkies/action-gh-delete-release, github.com/unkillbob/cli-spy,num_dependents_deps.dev:0 github.com/unkillbob/generator-babel-standard,num_dependents_deps.dev:0 github.com/unkillbob/music-math,num_dependents_deps.dev:0 @@ -1156725,6 +1177410,7 @@ github.com/unkleho/reactronica,num_dependents_deps.dev:0 github.com/unkloud/hbdl, github.com/unkn0wn9/ubak, github.com/unkn0wncat/matrix-soccerbot,num_dependents_deps.dev:0 +github.com/unknorg/workflow-preprocessor, github.com/unknow101/gojwtbrute2,num_dependents_deps.dev:0 github.com/unknown-dev/unknown_admin,num_dependents_deps.dev:0 github.com/unknown-guy-1610/mlAPI, @@ -1156884,6 +1177570,7 @@ github.com/unlight/useful-functions,num_dependents_deps.dev:12 github.com/unlight/webpack-loader-helper,num_dependents_deps.dev:0 github.com/unlight/xclone,num_dependents_deps.dev:0 github.com/unlihub/pyscaffoldext-beeproject, +github.com/unlike-ltd/github-actions-cloudflare-pages, github.com/unlikeghost/karaone, github.com/unlikeghost/workon, github.com/unlikelycreator/pymynote, @@ -1157135,6 +1177822,7 @@ github.com/unsad/react-field,num_dependents_deps.dev:0 github.com/unsafe-risk/go-alrescha,num_dependents_deps.dev:0 github.com/unsafecast/quack,num_dependents_deps.dev:0 github.com/unsafecast/walnutgen,num_dependents_deps.dev:0 +github.com/unsafecoerce/chatgpt-action, github.com/unsaved/gradle-ivyxml-plugin,num_dependents_deps.dev:0 github.com/unsaved/gradle-javaPropFile-plugin,num_dependents_deps.dev:0 github.com/unsaved/jcreole,num_dependents_deps.dev:0 @@ -1157267,6 +1177955,7 @@ github.com/unshiftio/xhr-send,num_dependents_deps.dev:148 github.com/unshiftio/xhr-status,num_dependents_deps.dev:150 github.com/unshiftio/yeast,num_dependents_deps.dev:44566 github.com/unsignd/Textion,num_dependents_deps.dev:0 +github.com/unsignedapps/swift-create-xcframework, github.com/unsignedbytebite/chord-composer,num_dependents_deps.dev:0 github.com/unsignedbytebite/music-timer,num_dependents_deps.dev:0 github.com/unsilence/xj-custom-js, @@ -1157357,6 +1178046,7 @@ github.com/unthunk/react-bootstrap-datetimepicker,num_dependents_deps.dev:0 github.com/unticks/slow-responder,num_dependents_deps.dev:0 github.com/untidy-hair/calleee, github.com/untidy-hair/service_object,num_dependents_deps.dev:0 +github.com/untile/airtable-code-coverage-action, github.com/untill/jquery.expandablelist,num_dependents_deps.dev:0 github.com/untill/jquery.longclick,num_dependents_deps.dev:0 github.com/untilla/react-native-keyboard-escaping-view,num_dependents_deps.dev:0 @@ -1157368,6 +1178058,7 @@ github.com/untillpro/qs,num_dependents_deps.dev:0 github.com/untillpro/swarmgo,num_dependents_deps.dev:0 github.com/untilnow/meridian,num_dependents_deps.dev:0 github.com/untitaker/click-repl, +github.com/untitaker/hyperlink, github.com/untitaker/iron-error-router,num_dependents_deps.dev:0 github.com/untitaker/iron-login,num_dependents_deps.dev:0 github.com/untitaker/mates.rs,num_dependents_deps.dev:0 @@ -1157435,6 +1178126,7 @@ github.com/unuuunu/pod-search, github.com/unvang/lovely-keke,num_dependents_deps.dev:0 github.com/unvar/simple-json2csv,num_dependents_deps.dev:0 github.com/unvell/ReoGrid,criticality_score:0.329620 +github.com/unvented/deploy-action, github.com/unvired/hello-world-android,num_dependents_deps.dev:0 github.com/unvus/unvus-library,num_dependents_deps.dev:0 github.com/unweb/unweb.recipe.uwsgi, @@ -1157610,6 +1178302,8 @@ github.com/up42/fake-geo-images, github.com/up42/image-similarity-measures, github.com/up42/up42-py, github.com/up43xoxe/learning-git,num_dependents_deps.dev:0 +github.com/up9cloud/action-notify, +github.com/up9cloud/action-rsync, github.com/up9cloud/chai-json-schema-ajv,num_dependents_deps.dev:12 github.com/up9cloud/cz-emoji-types-angular,num_dependents_deps.dev:0 github.com/up9cloud/docsify-vssue,num_dependents_deps.dev:0 @@ -1157636,6 +1178330,7 @@ github.com/upa8/short-js, github.com/upacyxou/react-native-draggable-flatlist,num_dependents_deps.dev:0 github.com/upadhyayaankur/golangctxt,num_dependents_deps.dev:0 github.com/upadhyayap/twirp-cat,num_dependents_deps.dev:0 +github.com/upalatucci/get-owners-action, github.com/upamanyus/go-cuckoo,num_dependents_deps.dev:0 github.com/upamanyus/go-spinlock,num_dependents_deps.dev:0 github.com/upamune/jigsaw,num_dependents_deps.dev:0 @@ -1157668,6 +1178363,7 @@ github.com/upcccz/axios-map-cache,num_dependents_deps.dev:0 github.com/upcccz/minipro-cli,num_dependents_deps.dev:0 github.com/upcecconnect/PythonSDK, github.com/upciti/ops2deb, +github.com/upciti/wakemeops-action, github.com/upciti/wheel2deb, github.com/upcloudltd/cli,num_dependents_deps.dev:0 github.com/upcloudltd/packer-plugin-upcloud,num_dependents_deps.dev:0 @@ -1157719,6 +1178415,7 @@ github.com/update/updater-travis,num_dependents_deps.dev:0 github.com/update/updater-verb,num_dependents_deps.dev:0 github.com/update4j/update4j,"criticality_score:0.365090,num_dependents_deps.dev:1" github.com/updatecli/updatecli,num_dependents_deps.dev:0 +github.com/updatecli/updatecli-action, github.com/updatedennismwangi/vbet, github.com/updatehub/updatehub,num_dependents_deps.dev:0 github.com/updatehub/updatehub-ce,num_dependents_deps.dev:0 @@ -1157781,6 +1178478,7 @@ github.com/upgradeQ/osuplaylist, github.com/upgreat-readable/criteria,num_dependents_deps.dev:0 github.com/upgreat-readable/psr,num_dependents_deps.dev:0 github.com/upgreidas/rest-bootstrap,num_dependents_deps.dev:0 +github.com/upgundecha/start-sendria-github-action, github.com/uphg/clrcon,num_dependents_deps.dev:0 github.com/uphg/node-toup, github.com/uphold-forks/nsq.js,num_dependents_deps.dev:0 @@ -1157828,6 +1178526,7 @@ github.com/upleveled/eslint-config-upleveled,num_dependents_deps.dev:0 github.com/upleveled/ical-move-events,num_dependents_deps.dev:0 github.com/upleveled/mdx-local-link-checker,num_dependents_deps.dev:0 github.com/upleveled/preflight,num_dependents_deps.dev:0 +github.com/uplift-ltd/wait-for-workflow-run-action, github.com/uplift/ExoSuit,num_dependents_deps.dev:0 github.com/uplift/bullhorn-handlebars-helpers,num_dependents_deps.dev:0 github.com/upliner/go.uuid,num_dependents_deps.dev:0 @@ -1157881,6 +1178580,7 @@ github.com/uplol/qwery, github.com/uploy/wxml,num_dependents_deps.dev:0 github.com/uplus/solargraph-utils.py, github.com/upman/levenshtein-edits,num_dependents_deps.dev:0 +github.com/upmaru/pakman, github.com/upmc-enterprises/ATNA2FHIR,num_dependents_deps.dev:0 github.com/upmc-enterprises/captain-whisker,num_dependents_deps.dev:0 github.com/upmc-enterprises/registry-creds,criticality_score:0.329450 @@ -1158090,6 +1178790,7 @@ github.com/uptonm/auth,num_dependents_deps.dev:0 github.com/uptonm/fiber-sandbox,num_dependents_deps.dev:0 github.com/uptotec/new-express-app,num_dependents_deps.dev:0 github.com/uptownaravi/encoder, +github.com/uptownaravi/verify-commit-message-action, github.com/uptownhr/dpanel,num_dependents_deps.dev:0 github.com/uptownhr/jsonToList,num_dependents_deps.dev:0 github.com/uptownhr/spacedtime,num_dependents_deps.dev:0 @@ -1158108,6 +1178809,7 @@ github.com/uptycs/basequery-go,num_dependents_deps.dev:0 github.com/uptycs/cloudquery,num_dependents_deps.dev:0 github.com/uptycs/kubequery,num_dependents_deps.dev:0 github.com/upulkkis/orchestration-analyzer, +github.com/upup-company/apksigner-android, github.com/upupcl/study,num_dependents_deps.dev:0 github.com/upupli/react-draggable,num_dependents_deps.dev:0 github.com/upupming/Mirror,num_dependents_deps.dev:0 @@ -1158119,6 +1178821,7 @@ github.com/upupming/hexo-renderer-markdown-it-plus, github.com/upupming/jpeg-compressor,num_dependents_deps.dev:0 github.com/upupming/katex-copytex,num_dependents_deps.dev:0 github.com/upupming/picgo-plugin-vscode-migrator,num_dependents_deps.dev:0 +github.com/upupming/zhr-action, github.com/upvalue/arche,num_dependents_deps.dev:0 github.com/upvalue/caracal,num_dependents_deps.dev:0 github.com/upvalue/meditations,num_dependents_deps.dev:0 @@ -1158129,6 +1178832,7 @@ github.com/upwardnexus/consorify,num_dependents_deps.dev:0 github.com/upwardweb/datetimewidget, github.com/upwardweb/datetimewidget_django, github.com/upwell/pool,num_dependents_deps.dev:0 +github.com/upwindsecurity/create-image-build-event-action, github.com/upwire/upwire-node,num_dependents_deps.dev:0 github.com/upwork/donkey-core,num_dependents_deps.dev:0 github.com/upwork/golang-upwork,num_dependents_deps.dev:0 @@ -1158207,6 +1178911,7 @@ github.com/uraikus/crelm-popup,num_dependents_deps.dev:0 github.com/uraikus/crelmstat,num_dependents_deps.dev:0 github.com/uraimo/SwiftyGPIO,criticality_score:0.416080 github.com/uraimo/awesome-software-patreons,criticality_score:0.301210 +github.com/uraimo/run-on-arch-action, github.com/urain39/ij2tpl.js,num_dependents_deps.dev:0 github.com/urain39/rollup-plugin-ij2tpl,num_dependents_deps.dev:0 github.com/urainday/sumoon,num_dependents_deps.dev:0 @@ -1158340,6 +1179045,7 @@ github.com/urbanairship/ua-api-utils, github.com/urbanairship/urbanairship-accengage-cordova,num_dependents_deps.dev:0 github.com/urbanairship/urbanairship-cordova,num_dependents_deps.dev:0 github.com/urbanantics/environme,num_dependents_deps.dev:0 +github.com/urbanantics/environme-github-action, github.com/urbanappetite/graphql-js,num_dependents_deps.dev:0 github.com/urbancamo/wota,num_dependents_deps.dev:0 github.com/urbanchrisy/rn-snackbar,num_dependents_deps.dev:0 @@ -1158392,6 +1179098,7 @@ github.com/urbanindo/aws-opsworks-smooth-deploy, github.com/urbanishimwe/digitfy,num_dependents_deps.dev:0 github.com/urbanishimwe/packet,num_dependents_deps.dev:0 github.com/urbanisierung/fcheat,num_dependents_deps.dev:0 +github.com/urbanisierung/firebase-action, github.com/urbanjs/tools,num_dependents_deps.dev:0 github.com/urbanjs/urbanjs-config,num_dependents_deps.dev:0 github.com/urbanjs/urbanjs-tools,num_dependents_deps.dev:0 @@ -1158412,6 +1179119,7 @@ github.com/urbanmassage/opool, github.com/urbanmassage/pickrr,num_dependents_deps.dev:0 github.com/urbanmassage/promise-cb,num_dependents_deps.dev:0 github.com/urbanmassage/redux-async-render,num_dependents_deps.dev:0 +github.com/urbann3/s3go-action, github.com/urbanopt/geojson-modelica-translator, github.com/urbanopt/modelica-builder, github.com/urbanopt/modelica-fmt,num_dependents_deps.dev:0 @@ -1158497,8 +1179205,14 @@ github.com/urchade/Rnn-classifiers, github.com/urchade/byte_search, github.com/urchade/lstm-variants, github.com/urchade/tkzs, +github.com/urcomputeringpal/checkrun-timechart-action, +github.com/urcomputeringpal/github-script-ts, +github.com/urcomputeringpal/label-mutex, github.com/urcomputeringpal/nuc-node-led-controller,num_dependents_deps.dev:0 +github.com/urcomputeringpal/pr-preview-deploy-ux-action, +github.com/urcomputeringpal/pulumi-preview-pr-label-action, github.com/urcomputeringpal/sentry-actions,num_dependents_deps.dev:0 +github.com/urcomputeringpal/workflow-run-history, github.com/urcool/express-dirouter,num_dependents_deps.dev:0 github.com/urcu/userspace-rcu,criticality_score:0.457800 github.com/urda/django-letsencrypt, @@ -1158535,6 +1179249,7 @@ github.com/urgeiolabs/node-tradedoubler-lookup, github.com/urgeiolabs/node-zanox,num_dependents_deps.dev:0 github.com/urgent/peer-graphql,num_dependents_deps.dev:0 github.com/urgent/zohordex,num_dependents_deps.dev:0 +github.com/urgn/setup-jq-action, github.com/urhein/string-error,num_dependents_deps.dev:0 github.com/urho3d/Urho3D,criticality_score:0.677030 github.com/urholaukkarinen/leap-sys,num_dependents_deps.dev:0 @@ -1158544,6 +1179259,7 @@ github.com/uriahsanders/Sasasame,num_dependents_deps.dev:0 github.com/urianchang/learngo,num_dependents_deps.dev:0 github.com/urianchang/sandbox-1,num_dependents_deps.dev:0 github.com/uribench/software-engineering-handbook-tools, +github.com/uribo/bucky, github.com/uribrecher/python-tree-walk, github.com/uribro/babel-plugin-import-customization,num_dependents_deps.dev:0 github.com/uriddle/cng,num_dependents_deps.dev:0 @@ -1158579,6 +1179295,7 @@ github.com/urieli/jochre,num_dependents_deps.dev:4 github.com/urieli/talismane,num_dependents_deps.dev:624 github.com/urielka/pyslayer, github.com/urielka/shaveet, +github.com/uriell/firebase-functions-deployment-decision, github.com/uriell/u-wave-nodejs-client,num_dependents_deps.dev:0 github.com/urielmann/cinterface, github.com/urielmann/srcsrv, @@ -1158649,6 +1179366,8 @@ github.com/urjitbhatia/afero,num_dependents_deps.dev:0 github.com/urjitbhatia/firebase-admin-go,num_dependents_deps.dev:0 github.com/urjitbhatia/go-datadog-autoscaler,num_dependents_deps.dev:0 github.com/urjitbhatia/go-metro,num_dependents_deps.dev:0 +github.com/urkle/action-cmake-build, +github.com/urkle/action-get-ninja, github.com/url2io/url2io-python-client, github.com/urlGuney/Hello-Friend,num_dependents_deps.dev:0 github.com/urlbox-io/urlbox-screenshots-node,num_dependents_deps.dev:0 @@ -1158663,6 +1179382,7 @@ github.com/urllib3/urllib3,criticality_score:0.729790 github.com/urlship/Holmes,num_dependents_deps.dev:0 github.com/urlship/passport-urlship,num_dependents_deps.dev:0 github.com/urlship/urlship.js,num_dependents_deps.dev:0 +github.com/urlstechie/urlchecker-action, github.com/urlstechie/urlchecker-python, github.com/urm8/isortd, github.com/urm8/yascc, @@ -1158672,6 +1179392,7 @@ github.com/urmi-21/PLncPRO, github.com/urmi-21/orfipy, github.com/urmi-21/pyrpipe, github.com/urmomjs/urmom.js,num_dependents_deps.dev:0 +github.com/urmzd/embed-md, github.com/urn2/web-es6,num_dependents_deps.dev:0 github.com/urnas/go-merge-csv-files,num_dependents_deps.dev:0 github.com/urnix/generator-mosin,num_dependents_deps.dev:0 @@ -1158801,6 +1179522,7 @@ github.com/urutau-nz/inequalipy, github.com/urutau/rest,num_dependents_deps.dev:0 github.com/urutu/Urutu, github.com/uruuru/betweenness,num_dependents_deps.dev:0 +github.com/uruz-7/tag-exists-action, github.com/uruz/moment-datetime,num_dependents_deps.dev:0 github.com/urvalla/yardbirds,num_dependents_deps.dev:0 github.com/urvil38/fileserver,num_dependents_deps.dev:0 @@ -1158859,6 +1179581,7 @@ github.com/usace/instrumentation-api,num_dependents_deps.dev:0 github.com/usace/mcat-ras,num_dependents_deps.dev:0 github.com/usace/water-api,num_dependents_deps.dev:0 github.com/usackoka/react-password-checklist2,num_dependents_deps.dev:0 +github.com/usafder/setup-node-with-cache, github.com/usagi-f/sync-web-storage,num_dependents_deps.dev:0 github.com/usagi-f/usagi-sandbox-lib,num_dependents_deps.dev:0 github.com/usagi/arithmetic-sign,num_dependents_deps.dev:0 @@ -1159118,6 +1179841,9 @@ github.com/usefulio/serverless-kubeless-offline,num_dependents_deps.dev:0 github.com/usefulmilk/usefulmilk-commons-context,num_dependents_deps.dev:0 github.com/usefulmilk/usefulmilk-commons-pubsub,num_dependents_deps.dev:0 github.com/usefulmilk/usefulmilk-commons-support,num_dependents_deps.dev:0 +github.com/usefulness/agp-version-finder-action, +github.com/usefulness/dependency-tree-diff-action, +github.com/usefulness/diffuse-action, github.com/usefulness/issuechecker,num_dependents_deps.dev:0 github.com/usefulthink/node-eyefi,num_dependents_deps.dev:0 github.com/usefulthink/node-rpi-ws281x-native,num_dependents_deps.dev:0 @@ -1159250,6 +1179976,7 @@ github.com/userbq201/react-local-fetch,num_dependents_deps.dev:0 github.com/userbq201/react-native-typing-effect,num_dependents_deps.dev:0 github.com/userbq201/rn-wheel-picker,num_dependents_deps.dev:0 github.com/userbq201/storage,num_dependents_deps.dev:0 +github.com/userbradley/actions-fly, github.com/userbugreport/shipula,num_dependents_deps.dev:0 github.com/usercybe/discord-grabber,num_dependents_deps.dev:0 github.com/usercybe/messagebox,num_dependents_deps.dev:0 @@ -1159273,6 +1180000,7 @@ github.com/usereact/use-yup,num_dependents_deps.dev:0 github.com/userelaina/downs, github.com/userenroll/node-circulate,num_dependents_deps.dev:0 github.com/userexistserror/conpty,num_dependents_deps.dev:0 +github.com/userfetch/userfetch-action, github.com/userflow/userflow-electron, github.com/userflow/userflow.js, github.com/userforce/flex-pagination,num_dependents_deps.dev:0 @@ -1159397,6 +1180125,7 @@ github.com/usewormhol/object,num_dependents_deps.dev:0 github.com/usezephyr/vue-zephyr,num_dependents_deps.dev:0 github.com/usfslk/infiniteLoop,num_dependents_deps.dev:0 github.com/usful/react-native-animated-scrollview,num_dependents_deps.dev:0 +github.com/usgate/pgyer-upload-app-action, github.com/usgin/cushions,num_dependents_deps.dev:0 github.com/usgs-eros/lcmap-change-worker, github.com/usgs-eros/lcmap-merlin, @@ -1159464,6 +1180193,7 @@ github.com/usherasnick/delay-queue,num_dependents_deps.dev:0 github.com/usherasnick/distributed-lock-service,num_dependents_deps.dev:0 github.com/usherasnick/useful-go-gadgets,num_dependents_deps.dev:0 github.com/ushergodwin/pysql, +github.com/usherlabs/monorepo-package-mirror-action, github.com/usherwong/v-charts,num_dependents_deps.dev:0 github.com/ushiao/tagword, github.com/ushiao/tagword-crawler, @@ -1159515,6 +1180245,7 @@ github.com/usig/mapa-interactivo,num_dependents_deps.dev:0 github.com/usig/normalizador-amba, github.com/usig/recorridos-js,num_dependents_deps.dev:0 github.com/usimarit/TiramisuASR, +github.com/usimd/pi-gen-action, github.com/usingblockchain/swapable,num_dependents_deps.dev:0 github.com/usingblockchain/symbol-taxonomy,num_dependents_deps.dev:0 github.com/usingblockchain/yourdlt, @@ -1159563,6 +1180294,7 @@ github.com/usk81/go-dmm-enhanced,num_dependents_deps.dev:0 github.com/usk81/gommon,num_dependents_deps.dev:0 github.com/usk81/misspell,num_dependents_deps.dev:0 github.com/uskanda/pre-n-isucon-190909,num_dependents_deps.dev:0 +github.com/uskayyyyy/gha-s3-deploy, github.com/uskov-anton/autologger,num_dependents_deps.dev:0 github.com/uskov-anton/koa-swagger-validator,num_dependents_deps.dev:0 github.com/uskov-anton/mixer-webpack-plugin,num_dependents_deps.dev:0 @@ -1159802,6 +1180534,7 @@ github.com/ustclug/yuki,num_dependents_deps.dev:0 github.com/ustcpetergu/PhysicsExp, github.com/ustctug/ustcthesis,criticality_score:0.425630 github.com/usteknoloji/weather,num_dependents_deps.dev:0 +github.com/usthe/issues-translate-action, github.com/usthooz/redis,num_dependents_deps.dev:0 github.com/ustice/slack-api,num_dependents_deps.dev:0 github.com/ustinovv/api-gateway,num_dependents_deps.dev:0 @@ -1160236,6 +1180969,7 @@ github.com/uttori/uttori-wiki-theme-default,num_dependents_deps.dev:0 github.com/uttrasingh/google-signin-react,num_dependents_deps.dev:0 github.com/utuapp/utuapp-cli,num_dependents_deps.dev:0 github.com/utumno86/go_exercism,num_dependents_deps.dev:0 +github.com/uturndata/amazon-ecs-run-task, github.com/utwyko/KMinRandom,num_dependents_deps.dev:0 github.com/utyfua/mysql_promise,num_dependents_deps.dev:0 github.com/utyfua/regedit-simple,num_dependents_deps.dev:0 @@ -1160967,6 +1181701,7 @@ github.com/uykalkan/fatih,num_dependents_deps.dev:0 github.com/uykalkan/react-use-outside-click,num_dependents_deps.dev:0 github.com/uykusuzluk/shigoto,num_dependents_deps.dev:0 github.com/uym2/tripVote, +github.com/uynguyen-wonderlabs/get-branch-name-github-action, github.com/uyson/react-native-alert,num_dependents_deps.dev:0 github.com/uyu423/2curl,num_dependents_deps.dev:0 github.com/uyu423/datetime-offset.js,num_dependents_deps.dev:0 @@ -1160993,6 +1181728,7 @@ github.com/uzairpm/starwars-names,num_dependents_deps.dev:0 github.com/uzakovnikita/frontend-project-lvl1,num_dependents_deps.dev:0 github.com/uzarsalan/strong-pubsub-nats-streaming, github.com/uzayky/go-tdd-practice,num_dependents_deps.dev:0 +github.com/uzaysan/github-openvpn-connect-action, github.com/uzaysan/parse-email-adapter,num_dependents_deps.dev:0 github.com/uzaysan/react-native-mention-hashtag-text,num_dependents_deps.dev:0 github.com/uzbl/uzbl,criticality_score:0.348550 @@ -1161148,6 +1181884,7 @@ github.com/v-urbanovich/si-converter,num_dependents_deps.dev:0 github.com/v-urbanovich/wc-router,num_dependents_deps.dev:0 github.com/v-v-vishnevskiy/aio-telegram-bot, github.com/v-v-vishnevskiy/tokenhmac, +github.com/v-venes/create-npmrc, github.com/v-x2/js-effects,num_dependents_deps.dev:0 github.com/v-yar/gummy, github.com/v-zaburdaev/react-fuelux-wizard,num_dependents_deps.dev:0 @@ -1161224,6 +1181961,7 @@ github.com/v1c77/py_grpc_validator, github.com/v1ctor/bolts,num_dependents_deps.dev:0 github.com/v1ctor/huawei-api-client,num_dependents_deps.dev:0 github.com/v1ctor/jackson-datatype-bolts,num_dependents_deps.dev:0 +github.com/v1dhun/subfinder-action, github.com/v1jayr/usda-fdc-api-typescript-client,num_dependents_deps.dev:0 github.com/v1k45/django-notify-x, github.com/v1k45/python-qbittorrent, @@ -1161250,6 +1181988,7 @@ github.com/v1shwa/gdget, github.com/v1siuol/webSpider_Douban, github.com/v1t4n/go-sha256,num_dependents_deps.dev:0 github.com/v1v/apm-agent-rum-js,num_dependents_deps.dev:0 +github.com/v1v/elastic-agent-action, github.com/v1xingyue/namebase-py, github.com/v1xingyue/rplugins, github.com/v1zix/monkey,num_dependents_deps.dev:0 @@ -1161318,6 +1182057,7 @@ github.com/v3rndale/dom,num_dependents_deps.dev:0 github.com/v3rse/chroma,num_dependents_deps.dev:0 github.com/v3rse/iwallet-node,num_dependents_deps.dev:0 github.com/v3u3i87/js-ku,num_dependents_deps.dev:0 +github.com/v3xlabs/edgeserver-upload, github.com/v3yr0n/oplog-stream,num_dependents_deps.dev:0 github.com/v4/seqstring,num_dependents_deps.dev:0 github.com/v4/uutils,num_dependents_deps.dev:0 @@ -1161349,6 +1182089,7 @@ github.com/v7a/plshandle, github.com/v7a/session-fernet-asgi, github.com/v7a/wtforms-field-factory, github.com/v7labs/darwin-py, +github.com/v7labs/update-linear-labels-action, github.com/v7labs/upolygon, github.com/v8/api,Google github.com/v8/llvm-project,Google @@ -1161368,6 +1182109,7 @@ github.com/v8platform/encoder,num_dependents_deps.dev:0 github.com/v8platform/mdclasses,num_dependents_deps.dev:0 github.com/v8platform/protoc-gen-go-ras,num_dependents_deps.dev:0 github.com/v8platform/protos,num_dependents_deps.dev:0 +github.com/v8tenko/diplodoc-playground, github.com/vBaiCai/python-pesq, github.com/vCra/judge0api, github.com/vCra/mooshak2api, @@ -1161375,6 +1182117,7 @@ github.com/vDiFoung/v-zoom,num_dependents_deps.dev:0 github.com/vEnhance/napkin,criticality_score:0.396510 github.com/vFabric/vas-ruby-api,num_dependents_deps.dev:0 github.com/vHades0199/next-zero,num_dependents_deps.dev:0 +github.com/vHanda/flutter-build-runner-action, github.com/vHeemstra/avifenc-bin,num_dependents_deps.dev:0 github.com/vHeemstra/gulp-wprev,num_dependents_deps.dev:0 github.com/vHeemstra/imagemin-avifenc,num_dependents_deps.dev:0 @@ -1161605,6 +1182348,8 @@ github.com/vabarbosa/simple-data-vis, github.com/vabatta/omx-manager,num_dependents_deps.dev:0 github.com/vabene1111/recipes,criticality_score:0.521650 github.com/vabole/chromeExtensionAsync,num_dependents_deps.dev:0 +github.com/vacare/anofuss-remote, +github.com/vacare/anofuss-upload, github.com/vacarsu/dimension,num_dependents_deps.dev:0 github.com/vacarsu/react-meteor-data-decorator,num_dependents_deps.dev:0 github.com/vacarsu/uikit-react, @@ -1161992,6 +1182737,8 @@ github.com/vaffeine/deen,num_dependents_deps.dev:0 github.com/vaffel/coding-standards,num_dependents_deps.dev:0 github.com/vaffel/eslint-config-vaffel,num_dependents_deps.dev:4 github.com/vaffel/sql-to-graphql,num_dependents_deps.dev:0 +github.com/vafinvr/template-env-action, +github.com/vafleite/repository-mirroring-action, github.com/vafliik/pyforecast, github.com/vagabondan/node-db4bix,num_dependents_deps.dev:0 github.com/vagalumedigital/gatsby-plugin-mailchimp-api,num_dependents_deps.dev:0 @@ -1162008,6 +1182755,7 @@ github.com/vager/tools,num_dependents_deps.dev:0 github.com/vagfed/hmcscanner-py, github.com/vagfsantos/vtex-custom-autocomplete,num_dependents_deps.dev:0 github.com/vaggelisdel/SimplexCalculator,num_dependents_deps.dev:0 +github.com/vaggeliskls/lyx2pdf-action, github.com/vaggos-thanos/replyer,num_dependents_deps.dev:0 github.com/vaghulb1992/xuebadb, github.com/vagmcs/Optimus,num_dependents_deps.dev:0 @@ -1162080,6 +1182828,7 @@ github.com/vaheqelyan/tygit,num_dependents_deps.dev:0 github.com/vahid-sb/MiTepid_sim, github.com/vahid-sb/MiTfAT, github.com/vahid-sohrabloo/chconn,num_dependents_deps.dev:0 +github.com/vahid-sohrabloo/clickhouse-action, github.com/vahidAK/NanoMethPhase, github.com/vahidAK/SNVoter, github.com/vahidHossaini/Ap_Ping,num_dependents_deps.dev:0 @@ -1162157,6 +1182906,8 @@ github.com/vai21/midtrans-node,num_dependents_deps.dev:0 github.com/vaiRk/responsive-fixed-data-table,num_dependents_deps.dev:0 github.com/vaibharn/AstralisIN-Discord-Bot, github.com/vaibhav-2303/gkuiz2,num_dependents_deps.dev:0 +github.com/vaibhav-jain/spectral-action, +github.com/vaibhav-sarwade-404/dynamic-input-stringifier-action, github.com/vaibhav-sinha/kong-java-client,num_dependents_deps.dev:0 github.com/vaibhav-sinha/pypipeline, github.com/vaibhav-sinha/spring-remoting-grpc,num_dependents_deps.dev:0 @@ -1162306,6 +1183057,7 @@ github.com/vakrilov/ng-pathfinder,num_dependents_deps.dev:0 github.com/vakrilov/ngrx-devtools-nativescript,num_dependents_deps.dev:0 github.com/vaksi/indonesian-date,num_dependents_deps.dev:0 github.com/vakulenkoalex/runner1c, +github.com/vakus/dotnet-deployment-versioning, github.com/val-bubbleflat/laravel-vue-validator,num_dependents_deps.dev:0 github.com/val-bubbleflat/vue-component-loading,num_dependents_deps.dev:0 github.com/val-is/doremy,num_dependents_deps.dev:0 @@ -1162322,6 +1183074,10 @@ github.com/val314159/jinjer2, github.com/val314159/raml-python,num_dependents_deps.dev:0 github.com/val314159/yamli, github.com/valaatech/kernel,num_dependents_deps.dev:108 +github.com/valadas/dnn-platform-get-version, +github.com/valadas/get-release-branch-version, +github.com/valadas/get-version-from-dnn-manifest, +github.com/valadas/set-dnn-manifest-versions, github.com/valamidev/bifurcation,num_dependents_deps.dev:0 github.com/valamidev/candlestick-convert,num_dependents_deps.dev:0 github.com/valamidev/json-mysql, @@ -1162462,6 +1183218,7 @@ github.com/valentim/ag-cumulative-flow-lean-stats,num_dependents_deps.dev:0 github.com/valentin-krasontovitsch/plate-viewer,num_dependents_deps.dev:0 github.com/valentin-lozev/justcore,num_dependents_deps.dev:0 github.com/valentin-lozev/justcore-extension-router,num_dependents_deps.dev:0 +github.com/valentin-roche/UploadToItch, github.com/valentin-seehausen/create-react-app-personal,num_dependents_deps.dev:0 github.com/valentin2105/ckube,num_dependents_deps.dev:0 github.com/valentin2105/deployer,num_dependents_deps.dev:0 @@ -1162471,6 +1183228,7 @@ github.com/valentinLecorps/node-coinmarketcap,num_dependents_deps.dev:0 github.com/valentina-s/time-series-nmf, github.com/valentina70/project,num_dependents_deps.dev:0 github.com/valentinalexeev/pdunehd, +github.com/valentinb-sixense/preprocess_yaml, github.com/valentincalomme/syngle, github.com/valentineap/pyprop8, github.com/valentineus/electron-hot-reload,num_dependents_deps.dev:0 @@ -1162504,6 +1183262,7 @@ github.com/valera-rozuvan/node-js-compass,num_dependents_deps.dev:0 github.com/valera-rozuvan/text-crypt,num_dependents_deps.dev:0 github.com/valera-rozuvan/text-crypt-cli,num_dependents_deps.dev:0 github.com/valeramaniuk/aws-ec2-provisioner, +github.com/valerauko/wrike-ist, github.com/valerebron/usetube,num_dependents_deps.dev:0 github.com/valeri2000/go-simple-scheduler,num_dependents_deps.dev:0 github.com/valeri2000/go-text-db,num_dependents_deps.dev:0 @@ -1162545,6 +1183304,7 @@ github.com/valeriangalliat/through2-sync,num_dependents_deps.dev:0 github.com/valeriangalliat/webshot-cli,num_dependents_deps.dev:0 github.com/valeriangalliat/ytmdl,num_dependents_deps.dev:0 github.com/valeriano-manassero/ip-maat,num_dependents_deps.dev:0 +github.com/valerianpereira/backup-action, github.com/valerianpereira/npx_valerianpereira,num_dependents_deps.dev:0 github.com/valeriansaliou/bloom,num_dependents_deps.dev:0 github.com/valeriansaliou/constellation,num_dependents_deps.dev:0 @@ -1162696,6 +1183456,8 @@ github.com/valiantljk/dfgsheet, github.com/valiantlupo/motiongame,num_dependents_deps.dev:0 github.com/valibre-org/valor,num_dependents_deps.dev:0 github.com/valich/intellij-markdown,num_dependents_deps.dev:19 +github.com/valicm/appimage-bash, +github.com/valicm/drupal-update, github.com/valid4j/http-matchers,num_dependents_deps.dev:0 github.com/valid4j/json-path-matchers,num_dependents_deps.dev:0 github.com/validate-io/absolute-time,num_dependents_deps.dev:2 @@ -1162824,6 +1183586,7 @@ github.com/validator/htmlparser,num_dependents_deps.dev:76 github.com/validator/maven-plugin,num_dependents_deps.dev:0 github.com/validator/validator,"criticality_score:0.684940,num_dependents_deps.dev:40" github.com/validatorjs/validator.js,"criticality_score:0.661990,num_dependents_deps.dev:19542" +github.com/validcube/crowdin-nested-json-postprocessor, github.com/validide/javascript-browser-utilities,num_dependents_deps.dev:0 github.com/validide/logger,num_dependents_deps.dev:0 github.com/validide/resizable-table-columns,num_dependents_deps.dev:0 @@ -1162863,6 +1183626,7 @@ github.com/valispace/ValispacePythonAPI, github.com/valist-io/gasless,num_dependents_deps.dev:0 github.com/valist-io/go-ipfs-git,num_dependents_deps.dev:0 github.com/valist-io/registry,num_dependents_deps.dev:0 +github.com/valist-io/valist-github-action, github.com/valiton/aws-assume-role-cicd,num_dependents_deps.dev:0 github.com/valiton/ecs-task-deploy,num_dependents_deps.dev:0 github.com/valiton/gatsby-technology-radar,num_dependents_deps.dev:0 @@ -1162875,6 +1183639,7 @@ github.com/valiton/node-server-cli,num_dependents_deps.dev:0 github.com/valiton/node-simple-pool,num_dependents_deps.dev:0 github.com/valiton/node-unique-shortener,num_dependents_deps.dev:0 github.com/valiton/node-various-cluster,num_dependents_deps.dev:0 +github.com/valitydev/action-autotag, github.com/valivarthivarma1996/go-hello,num_dependents_deps.dev:0 github.com/valjic1/catch-decorator-ts,num_dependents_deps.dev:0 github.com/valjx/taskcli,num_dependents_deps.dev:0 @@ -1162922,6 +1183687,7 @@ github.com/valleweb/valle-switch,num_dependents_deps.dev:0 github.com/valleweb/valle-table,num_dependents_deps.dev:0 github.com/valleweb/valle-tabs,num_dependents_deps.dev:0 github.com/valleweb/valleNotify,num_dependents_deps.dev:0 +github.com/valley-fordham/action-release-debugapk, github.com/valleyelectronics/react-native-matomo,num_dependents_deps.dev:0 github.com/valleygtc/meme-manager, github.com/valleyint/vperf,num_dependents_deps.dev:0 @@ -1162975,6 +1183741,7 @@ github.com/valmeida90/libpythonpro_valmeida90, github.com/valmirphp/adonis-apollo2,num_dependents_deps.dev:0 github.com/valmisson/gridi,num_dependents_deps.dev:0 github.com/valmisson/svelte-scrolling,num_dependents_deps.dev:0 +github.com/valmojr/mikero-publisher, github.com/valmormn/vnet,num_dependents_deps.dev:0 github.com/valnermedeiros/react-web-gifted-chat,num_dependents_deps.dev:0 github.com/valntinaf/sofos,num_dependents_deps.dev:0 @@ -1163007,6 +1183774,7 @@ github.com/valohai/papi, github.com/valohai/ulid2, github.com/valohai/valohai-yaml, github.com/valonhaliti/environment-variable-reader,num_dependents_deps.dev:0 +github.com/valonsogit/secrets-token-selector, github.com/valor-software/angular2-bootstrap,num_dependents_deps.dev:0 github.com/valor-software/angular2-bootstrap-starter,num_dependents_deps.dev:0 github.com/valor-software/ddf-time-utils,num_dependents_deps.dev:12 @@ -1163090,6 +1183858,7 @@ github.com/valtech-nyc/rebone,num_dependents_deps.dev:0 github.com/valtech-nyc/stylelint-config-valtech,num_dependents_deps.dev:0 github.com/valtech-sd/amqp-cacoon,num_dependents_deps.dev:0 github.com/valtech-sd/coronado-bridge,num_dependents_deps.dev:0 +github.com/valtech-sd/git-sync, github.com/valtech-sd/rule-harvester,num_dependents_deps.dev:0 github.com/valtech-sd/super-transformer,num_dependents_deps.dev:0 github.com/valtech/aem-easy-content-upgrade,num_dependents_deps.dev:94 @@ -1163117,6 +1183886,7 @@ github.com/valtlfelipe/hapi-sequelizejs,num_dependents_deps.dev:0 github.com/valtri/zoosync, github.com/valtron/pyta, github.com/valtyr/midiator,num_dependents_deps.dev:0 +github.com/valtyr/pandoc-action, github.com/valu-digital/webpack-config, github.com/valuabletouch/winston-seq,num_dependents_deps.dev:0 github.com/valudio/clipboard,num_dependents_deps.dev:0 @@ -1163391,6 +1184161,7 @@ github.com/vanBrakel/AssetPricingToolbox, github.com/vanBrakel/FRT, github.com/vanHavel/bp-mll-tensorflow, github.com/vanHeemstraSystems/tacit-server, +github.com/vanZeben/project-triage, github.com/vanackere/testify,num_dependents_deps.dev:0 github.com/vanadinit/railcmd, github.com/vanadium-archive/go.jiri,num_dependents_deps.dev:0 @@ -1163625,9 +1184396,11 @@ github.com/vandium-io/vandium-serverless,num_dependents_deps.dev:0 github.com/vandium-io/vandium-utils,num_dependents_deps.dev:254 github.com/vandmo/glit, github.com/vandmo/hju,num_dependents_deps.dev:0 +github.com/vandnayadav1988/CodeReviewGPT, github.com/vandomas/mlgrnd,num_dependents_deps.dev:0 github.com/vandorjw/django-assessment, github.com/vandosant/metal-band-names,num_dependents_deps.dev:0 +github.com/vandot/lodns-action, github.com/vandot/pysoftether, github.com/vandreleal/hexo-renderer-sass-bourbon-neat,num_dependents_deps.dev:0 github.com/vandreleal/hexo-renderer-sass-typesettings,num_dependents_deps.dev:0 @@ -1163670,6 +1184443,7 @@ github.com/vaneenige/uon,num_dependents_deps.dev:0 github.com/vaneenige/uos,num_dependents_deps.dev:0 github.com/vaneenige/uot,num_dependents_deps.dev:0 github.com/vanekj/str-safe-replace,num_dependents_deps.dev:0 +github.com/vanekj/validate-json-action, github.com/vanekjar/external-dns,num_dependents_deps.dev:0 github.com/vanekjar/urlexpander,num_dependents_deps.dev:0 github.com/vaneks/restgolang,num_dependents_deps.dev:0 @@ -1163684,6 +1184458,7 @@ github.com/vanessafkim1997/compete, github.com/vanessapr/neo4jd3,num_dependents_deps.dev:0 github.com/vanessaruama/myuber,num_dependents_deps.dev:0 github.com/vanessuniq/weather-forecast,num_dependents_deps.dev:0 +github.com/vanesyan/setup-dart, github.com/vanetix/artificer,num_dependents_deps.dev:0 github.com/vanetix/atlantis,num_dependents_deps.dev:0 github.com/vanetix/doxen, @@ -1164069,6 +1184844,7 @@ github.com/vanstee/buildkit,num_dependents_deps.dev:0 github.com/vanstee/cli,num_dependents_deps.dev:0 github.com/vansteve911/node-http-proxy,num_dependents_deps.dev:0 github.com/vansteve911/springboot-captcha,num_dependents_deps.dev:0 +github.com/vanstinator/re-run-open-prs-on-base-update, github.com/vansweej/npp-rs,num_dependents_deps.dev:0 github.com/vantage-sh/vantage-js,num_dependents_deps.dev:0 github.com/vantagejs/vantage-auth-basic,num_dependents_deps.dev:44 @@ -1164156,6 +1184932,7 @@ github.com/vape-tool/VapeTool-BatteriesParser, github.com/vape-tool/VapeTool-Types,num_dependents_deps.dev:0 github.com/vape/cool-ascii-faces, github.com/vapid/vapid,num_dependents_deps.dev:0 +github.com/vapier/coverity-scan-action, github.com/vapier/rollup-plugin-git-info,num_dependents_deps.dev:0 github.com/vapir/winwindow,num_dependents_deps.dev:0 github.com/vapjs/vapdeploy-provider-zero-client,num_dependents_deps.dev:0 @@ -1164337,6 +1185114,7 @@ github.com/varang/varang,num_dependents_deps.dev:0 github.com/varapp/varapp-backend-py, github.com/varasu/ethutil,num_dependents_deps.dev:0 github.com/varavan/blueprint2firebase,num_dependents_deps.dev:0 +github.com/varavan/translator-ai-action, github.com/varbhat/bast,num_dependents_deps.dev:0 github.com/varbhat/slocation,num_dependents_deps.dev:0 github.com/varbhat/torpar,num_dependents_deps.dev:0 @@ -1164355,6 +1185133,7 @@ github.com/varcal/curso-k8s,num_dependents_deps.dev:0 github.com/varcat/toolkit_js,num_dependents_deps.dev:0 github.com/varcat/wsp-hooks,num_dependents_deps.dev:0 github.com/varchar-io/nebula, +github.com/varchasvipandey/file-encryptor, github.com/varche1/quickfix,num_dependents_deps.dev:0 github.com/varconf/varconf-client-java,num_dependents_deps.dev:0 github.com/varda/manwe, @@ -1164407,6 +1185186,8 @@ github.com/vargax/midas-echo,num_dependents_deps.dev:0 github.com/varghese88/react-dependency-inject,num_dependents_deps.dev:0 github.com/varghese88/redux-service-middleware,num_dependents_deps.dev:0 github.com/varghesethomase/material-ui-scrollable-tabs,num_dependents_deps.dev:0 +github.com/vargiuscuola/gen-sh-unittest, +github.com/vargiuscuola/genshdoc, github.com/vargolo/ruby-libnotify,num_dependents_deps.dev:0 github.com/vargspjut/pkcs7,num_dependents_deps.dev:0 github.com/vargspjut/wlog,num_dependents_deps.dev:0 @@ -1164423,7 +1185204,11 @@ github.com/variadicjs/variadic.js, github.com/variadico/noti,"criticality_score:0.398540,num_dependents_deps.dev:0" github.com/varianhermianto/lib-golang,num_dependents_deps.dev:0 github.com/variantdev/chartify,num_dependents_deps.dev:24 +github.com/variantdev/mod-action, +github.com/variantdev/setup-go-actions, +github.com/variantdev/setup-variant, github.com/variantdev/vals,num_dependents_deps.dev:21 +github.com/variantdev/variant-action, github.com/varianter/handbook,num_dependents_deps.dev:0 github.com/variantf/general_computing,num_dependents_deps.dev:0 github.com/variantgroup/keen-scroll,num_dependents_deps.dev:0 @@ -1164517,6 +1185302,7 @@ github.com/varnav/ExifDate2FS, github.com/varnav/filmcompress, github.com/varnav/makejxl, github.com/varnav/pymifapi, +github.com/varnerknut/jira-extract-issue-keys-from-tags, github.com/varnew/markdown_yd,num_dependents_deps.dev:0 github.com/varneyo/betfairmarketvolumesclient, github.com/varnion/genial, @@ -1164545,6 +1185331,7 @@ github.com/varphone/bitfield-derive,num_dependents_deps.dev:1 github.com/varphone/himpi-sys,num_dependents_deps.dev:0 github.com/varphone/rust-bitfield,num_dependents_deps.dev:0 github.com/varrant/eslint-7q,num_dependents_deps.dev:0 +github.com/varrcan/generate-pretty-changelog-action, github.com/varrrro/shipyard-cli, github.com/varseand/claves, github.com/varshaprasad96/controller-runtime,num_dependents_deps.dev:0 @@ -1164568,12 +1185355,14 @@ github.com/vartemkin/vue-readable-console-log,num_dependents_deps.dev:0 github.com/varthanv/mysql,num_dependents_deps.dev:0 github.com/varthanv/simplvalidator,num_dependents_deps.dev:0 github.com/vartomi/gui-tool, +github.com/varu3/slack-approval, github.com/varubi/Flave,num_dependents_deps.dev:0 github.com/varubi/flave-loader,num_dependents_deps.dev:0 github.com/varubi/webtc,num_dependents_deps.dev:0 github.com/varughese/codecrafters-redis-go,num_dependents_deps.dev:0 github.com/varukashotta/alnative,num_dependents_deps.dev:0 github.com/varukashotta/warukasho,num_dependents_deps.dev:0 +github.com/varun-bst/release-action, github.com/varun-git28/js-today-date,num_dependents_deps.dev:0 github.com/varun-mehrotra/project-euler,num_dependents_deps.dev:0 github.com/varun-raj/common-lib,num_dependents_deps.dev:0 @@ -1164606,6 +1185395,7 @@ github.com/varunj166/react-proforma,num_dependents_deps.dev:0 github.com/varunjayaraman/braintree-node,num_dependents_deps.dev:0 github.com/varunjayaraman/vero-promise,num_dependents_deps.dev:0 github.com/varunkn4/multiplyTwoNumbers,num_dependents_deps.dev:0 +github.com/varunkumar/create-env-action, github.com/varunkumarck/react-native-webrtc,num_dependents_deps.dev:0 github.com/varunm/d3skills,num_dependents_deps.dev:0 github.com/varunmankal/typescript-test,num_dependents_deps.dev:0 @@ -1164634,6 +1185424,20 @@ github.com/varunrajput/vscraper,num_dependents_deps.dev:0 github.com/varunsabnis/gopractice,num_dependents_deps.dev:0 github.com/varunsatish/ABS_Package, github.com/varunsingh09/react-progress-bar,num_dependents_deps.dev:0 +github.com/varunsridharan/action-apigen, +github.com/varunsridharan/action-dynamic-readme, +github.com/varunsridharan/action-envato-publisher, +github.com/varunsridharan/action-envato-uploader, +github.com/varunsridharan/action-gh-latest-repo, +github.com/varunsridharan/action-gitea-mirror, +github.com/varunsridharan/action-github-workflow-sync, +github.com/varunsridharan/action-hashnode-blog, +github.com/varunsridharan/action-repository-meta, +github.com/varunsridharan/action-repository-roster, +github.com/varunsridharan/action-wp-org-assets-update, +github.com/varunsridharan/action-wp-org-deploy, +github.com/varunsridharan/action-wp-pot-generator, +github.com/varunsridharan/action-wp-textdomain, github.com/varunsridharan/actions-js-toolkit,num_dependents_deps.dev:0 github.com/varunsridharan/css-spinners,num_dependents_deps.dev:0 github.com/varunsridharan/dizzle,num_dependents_deps.dev:0 @@ -1165300,6 +1186104,10 @@ github.com/vbelolapotkov/eslint-config,num_dependents_deps.dev:0 github.com/vbelolapotkov/js-config,num_dependents_deps.dev:0 github.com/vbelolapotkov/prettier-config,num_dependents_deps.dev:0 github.com/vbelot/ngx-dygraphs,num_dependents_deps.dev:0 +github.com/vbem/flatten-contexts, +github.com/vbem/k8s-port-forward, +github.com/vbem/kit.bash, +github.com/vbem/kubeconfig4sa, github.com/vbence/podstats,num_dependents_deps.dev:0 github.com/vbence/stream-m,criticality_score:0.311140 github.com/vbence86/pty-create-webcomponent,num_dependents_deps.dev:0 @@ -1165348,6 +1186156,7 @@ github.com/vbhayden/simple-kafka-producer,num_dependents_deps.dev:0 github.com/vbhayden/simple-keycloak-adapter,num_dependents_deps.dev:0 github.com/vbhayden/sqliter-models,num_dependents_deps.dev:0 github.com/vbhayden/tla-mom-proto,num_dependents_deps.dev:0 +github.com/vbhv007/send-sms-action, github.com/vbiaggi10/lim20181-Track-FE-markdown-list,num_dependents_deps.dev:0 github.com/vbichkovsky/min-cycles,num_dependents_deps.dev:0 github.com/vbidin/namespace-contracts,num_dependents_deps.dev:0 @@ -1165541,6 +1186350,7 @@ github.com/vchain-us/ledger-compliance-go,num_dependents_deps.dev:2 github.com/vchain-us/ledger-compliance-java,num_dependents_deps.dev:0 github.com/vchain-us/ledger-compliance-py, github.com/vchain-us/vcn,num_dependents_deps.dev:0 +github.com/vchain-us/verify-action, github.com/vchakoshy/chatterbox,num_dependents_deps.dev:0 github.com/vchakoshy/pulse,num_dependents_deps.dev:0 github.com/vchandu111/my-npm-package,num_dependents_deps.dev:0 @@ -1165571,6 +1186381,7 @@ github.com/vchitai/zapflatencoder,num_dependents_deps.dev:0 github.com/vchrisr/cf-postgresql-broker,num_dependents_deps.dev:0 github.com/vchrombie/grimoirelab-perceval-zulip, github.com/vchrombie/peodd, +github.com/vchrombie/wordle-github-contributions, github.com/vchynarov/remns, github.com/vchynarov/trout,num_dependents_deps.dev:0 github.com/vcilabs/terradactyl,num_dependents_deps.dev:0 @@ -1165580,9 +1186391,12 @@ github.com/vcmi/vcmi,criticality_score:0.492300 github.com/vcml10/vuepress-theme-adv,num_dependents_deps.dev:0 github.com/vcn/vcnkit,num_dependents_deps.dev:0 github.com/vcn/vcnkit-core,num_dependents_deps.dev:0 +github.com/vcnc-hex/objects-filter, +github.com/vcnc-hex/url-health-check-action, github.com/vcnc/haeinsa,num_dependents_deps.dev:0 github.com/vcoder4c/cron-validator, github.com/vcoder4c/form-composer,num_dependents_deps.dev:0 +github.com/vcoder4c/git_pylint, github.com/vcodes-xyz/vcodes.js, github.com/vcokltfre/Supress, github.com/vcokltfre/ablaze, @@ -1165632,6 +1186446,7 @@ github.com/vctfernandes/youtube-list-broadcasts,num_dependents_deps.dev:0 github.com/vctormb/temp-components,num_dependents_deps.dev:0 github.com/vctr90/versionDeltaConstructor,num_dependents_deps.dev:0 github.com/vctrtvfrrr/vctrtvfrrr,num_dependents_deps.dev:0 +github.com/vcu-swim-lab/bug-aimbot-action, github.com/vcuramdev/HelloEveryone, github.com/vcutrona/elasticpedia, github.com/vcwen/luren,num_dependents_deps.dev:0 @@ -1165810,6 +1186625,7 @@ github.com/vdesabou/alfred-spotify-mini-player,criticality_score:0.546680 github.com/vdesaintpern/phonegap-plugin-push-fix,num_dependents_deps.dev:0 github.com/vdesjs/vdes-template,num_dependents_deps.dev:0 github.com/vdesjs/vite-plugin-monaco-editor,num_dependents_deps.dev:0 +github.com/vdesmond/action-release-apk, github.com/vdeturckheim/UserlandAsyncContext,num_dependents_deps.dev:0 github.com/vdeturckheim/asJson,num_dependents_deps.dev:0 github.com/vdeturckheim/async-module,num_dependents_deps.dev:0 @@ -1165975,6 +1186791,7 @@ github.com/ve-interactive/redis-statsd-reporter, github.com/ve9u/node-fsapi,num_dependents_deps.dev:0 github.com/veaba/pyhtmd, github.com/veaba/vue-multi-address,num_dependents_deps.dev:0 +github.com/veaba/vuepress-actions, github.com/veaba/vuepress-plugin-editable,num_dependents_deps.dev:0 github.com/veacks/backbone-couchbase,num_dependents_deps.dev:0 github.com/veacks/is-rtf,num_dependents_deps.dev:0 @@ -1166058,6 +1186875,8 @@ github.com/vebqa/vebtal-parent,num_dependents_deps.dev:0 github.com/vebqa/vebtal-pdf,num_dependents_deps.dev:0 github.com/vebqa/vebtal-selenium,num_dependents_deps.dev:0 github.com/vebqa/vebtal-testdata,num_dependents_deps.dev:0 +github.com/vebr/inject-aws-ssm-to-task-definition, +github.com/vebr/jest-lcov-reporter, github.com/vec3h/babel-throw-error-uglifier,num_dependents_deps.dev:0 github.com/vecbralis/angular2-shared-component-package-manager,num_dependents_deps.dev:0 github.com/vecbralis/meants,num_dependents_deps.dev:0 @@ -1166176,8 +1186995,10 @@ github.com/vedantkekan/golang101,num_dependents_deps.dev:0 github.com/vedantlath/django-classic-theme, github.com/vedantmadane/govinda,num_dependents_deps.dev:0 github.com/vedantmadane/goweb,num_dependents_deps.dev:0 +github.com/vedantmgoyal2009/winget-releaser, github.com/vedantrathore/janitor, github.com/vedantroy/typecheck.macro,num_dependents_deps.dev:0 +github.com/vedaprakashms/quasar_electron_build, github.com/vedard/MokaPlayer, github.com/vedard/SnakeGame, github.com/vedard/sql-query-generator,num_dependents_deps.dev:0 @@ -1166200,6 +1187021,7 @@ github.com/vedha98/go_learn,num_dependents_deps.dev:0 github.com/vedharish/browserstack-jstesting-cli,num_dependents_deps.dev:0 github.com/vedhashrees/generator-hapi-restful-version,num_dependents_deps.dev:0 github.com/vedhavyas/dep,num_dependents_deps.dev:0 +github.com/vedhavyas/generate-changelog, github.com/vedi/controlizer,num_dependents_deps.dev:0 github.com/vedi/genome-app,num_dependents_deps.dev:0 github.com/vedi/http-statuses,num_dependents_deps.dev:2 @@ -1166211,6 +1187033,7 @@ github.com/vedi/restifizer-sequelize-ds,num_dependents_deps.dev:0 github.com/vedi/simple-moleculer-starter,num_dependents_deps.dev:0 github.com/vedicsoft/handlers,num_dependents_deps.dev:0 github.com/vedicsoft/migrate,num_dependents_deps.dev:0 +github.com/vedicsoftcts/hello-world-docker-action-latif, github.com/vedidev/restifizer-waterline-ds, github.com/vedidev/sails-pervasive,num_dependents_deps.dev:0 github.com/vediga/v-log,num_dependents_deps.dev:0 @@ -1166231,6 +1187054,7 @@ github.com/vedmalex/pipeline.js,num_dependents_deps.dev:0 github.com/vedmalex/ra-data-firestore, github.com/vedmalex/rule-runner,num_dependents_deps.dev:0 github.com/vedmant/multiline-control,num_dependents_deps.dev:0 +github.com/vednig/pyinstaller-action-windows, github.com/vednoc/dark-whatsapp,criticality_score:0.300230 github.com/vednoc/go-usercss-parser,num_dependents_deps.dev:0 github.com/vedovelli/vedovelli,num_dependents_deps.dev:0 @@ -1166335,7 +1187159,10 @@ github.com/veerkat/events-middleware,num_dependents_deps.dev:0 github.com/veerman/sitescrapr,num_dependents_deps.dev:0 github.com/veerpool/vue-tel-input,num_dependents_deps.dev:0 github.com/veerse/libxml2,num_dependents_deps.dev:0 +github.com/veertuinc/anka-actions-down, +github.com/veertuinc/anka-actions-up, github.com/veertuinc/anka-prometheus-exporter,num_dependents_deps.dev:0 +github.com/veertuinc/anka-vm-github-action, github.com/veertuinc/gitlab-runner,num_dependents_deps.dev:0 github.com/veertuinc/packer-builder-veertu-anka,num_dependents_deps.dev:1 github.com/veertuinc/packer-plugin-veertu-anka,num_dependents_deps.dev:0 @@ -1166474,6 +1187301,9 @@ github.com/vegaprotocol/xgo,num_dependents_deps.dev:0 github.com/vegardbb/browser-support-spec,num_dependents_deps.dev:0 github.com/vegardbb/hrap,num_dependents_deps.dev:0 github.com/vegardit/depcheck-maven-plugin,num_dependents_deps.dev:0 +github.com/vegardit/fast-apt-mirror.sh, +github.com/vegardit/gha-setup-jq, +github.com/vegardit/gha-setup-yq, github.com/vegardit/node-har-extract,num_dependents_deps.dev:0 github.com/vegardit/prisma-generator-nestjs-dto,num_dependents_deps.dev:0 github.com/vegardit/vegardit-maven-parent,num_dependents_deps.dev:0 @@ -1166537,6 +1187367,7 @@ github.com/veggiedefender/steam-2fa,num_dependents_deps.dev:0 github.com/veggiematts/hubot-channel-quotes,num_dependents_deps.dev:0 github.com/veggiematts/hubot-duckhunt,num_dependents_deps.dev:0 github.com/veggiemonk/awesome-docker,criticality_score:0.597230 +github.com/veggiemonk/skip-commit, github.com/veggiesaurus/node-linux-pam-fork, github.com/veghp/pySignora, github.com/veghp/pyVDJ, @@ -1166768,6 +1187599,7 @@ github.com/veloce/lichobile,criticality_score:0.563470 github.com/veloceapps/veloce-sfdx,num_dependents_deps.dev:0 github.com/velochy/audio-tempo-changer.js,num_dependents_deps.dev:0 github.com/velochy/flexible_skiplist, +github.com/velocibear/create-empty-commit, github.com/velocidex/amsi,num_dependents_deps.dev:3 github.com/velocidex/binparsergen,num_dependents_deps.dev:10 github.com/velocidex/etw,num_dependents_deps.dev:3 @@ -1166787,6 +1187619,8 @@ github.com/velocidex/vtypes,num_dependents_deps.dev:0 github.com/velocidi/amqp-client,num_dependents_deps.dev:3 github.com/velocidi/apso,num_dependents_deps.dev:48 github.com/velocidi/velocidi-android-sdk,num_dependents_deps.dev:0 +github.com/velocitatem/HacktoberShield, +github.com/velocitek/ghactions-mplabx, github.com/velocityboy/as6502,num_dependents_deps.dev:0 github.com/velocityboy/hello-world,num_dependents_deps.dev:0 github.com/velocitycareerlabs/react-native-jsonschema-form, @@ -1166815,6 +1187649,7 @@ github.com/velocityzen/uuid5,num_dependents_deps.dev:6 github.com/velocityzen/wrapper-stream,num_dependents_deps.dev:0 github.com/velocyto-team/velocyto.py, github.com/veloduff/pingmon, +github.com/veloii/action-netlify-deploy, github.com/velolala/touchosc2midi, github.com/velop-io/server,num_dependents_deps.dev:0 github.com/velopaymentsapi/java-api-model,num_dependents_deps.dev:0 @@ -1166898,8 +1187733,14 @@ github.com/vemel/mypy_boto3_builder, github.com/vemel/newversion, github.com/vemel/nextchange,num_dependents_deps.dev:0 github.com/vemel/nextversion,num_dependents_deps.dev:0 +github.com/vemel/update-changelog, github.com/vemomoto/vemomoto, +github.com/vemonet/jena-riot-action, github.com/vemonet/rdflib-endpoint, +github.com/vemonet/rmlmapper-java, +github.com/vemonet/setup-spark, +github.com/vemonet/sparql-operations-action, +github.com/vemonet/yarrrml-parser, github.com/vemoteam/vemo,num_dependents_deps.dev:0 github.com/vempaliakhil96/hand-detection, github.com/vemuruadi/node-lib-ts,num_dependents_deps.dev:0 @@ -1166959,6 +1187800,7 @@ github.com/vend/eslint-config,num_dependents_deps.dev:0 github.com/vend/goworker,num_dependents_deps.dev:0 github.com/vend/jitter-time.js,num_dependents_deps.dev:0 github.com/vend/vend-number,num_dependents_deps.dev:0 +github.com/vendanor/preview-pull-request, github.com/vendasta/api-gateway-docs,num_dependents_deps.dev:0 github.com/vendasta/api2go,num_dependents_deps.dev:0 github.com/vendasta/repository-mapper,num_dependents_deps.dev:0 @@ -1166966,6 +1187808,7 @@ github.com/vendeka-nl/tailwind-config-php,num_dependents_deps.dev:0 github.com/vendelin8/colfer,num_dependents_deps.dev:0 github.com/vendettajs/vendettajs,num_dependents_deps.dev:0 github.com/vendia/serverless-express,"criticality_score:0.456180,num_dependents_deps.dev:284" +github.com/vendoo/gha-cherry-pick, github.com/vendoor/what-version,num_dependents_deps.dev:0 github.com/vendorpay/file-previewer,num_dependents_deps.dev:0 github.com/vendorpay/react-file-previewer,num_dependents_deps.dev:0 @@ -1166989,6 +1187832,7 @@ github.com/vengatus/ga-tsp,num_dependents_deps.dev:0 github.com/vengefuldrx/rekt, github.com/vengefuldrx/rekt-google-core, github.com/vengefuldrx/rekt-googleplaces, +github.com/venh/branch-protection, github.com/veni-vidi-code/discord.py, github.com/veniamin-ilmer/crate-race,num_dependents_deps.dev:0 github.com/venicegeo/beachfront-py, @@ -1167092,9 +1187936,12 @@ github.com/venkatperi/what-class,num_dependents_deps.dev:4 github.com/venkatpolisetti/crm-sfdx-plugin,num_dependents_deps.dev:0 github.com/venkatramanareddy/fotmoby, github.com/venkats278/nodejs,num_dependents_deps.dev:0 +github.com/venkatsarvesh/pr-tasks-completed-action, github.com/venkatvellaichamy/orb,num_dependents_deps.dev:0 github.com/venkman69/ExcelToWiki, github.com/venkman69/WikiToExcel, +github.com/venkuppu-chn/action-alex-nightly, +github.com/venkuppu-chn/cortx-pr-checklist, github.com/venky-web/ngx-ajsf,num_dependents_deps.dev:0 github.com/venky216/react-jsonschema-form,num_dependents_deps.dev:0 github.com/venkytv/go-config,num_dependents_deps.dev:0 @@ -1167210,6 +1188057,8 @@ github.com/venuebook/mappedapi, github.com/venuebook/scud,num_dependents_deps.dev:0 github.com/venugopal1234567/channels-file-extension-count,num_dependents_deps.dev:0 github.com/venugr/gonetwork,num_dependents_deps.dev:0 +github.com/venura9/arm-ttk, +github.com/venura9/manage-nsg, github.com/venurs/project_module,num_dependents_deps.dev:0 github.com/venusjs/venus-annotations,num_dependents_deps.dev:0 github.com/venusource/docker-machine-aliyun,num_dependents_deps.dev:0 @@ -1167281,7 +1188130,15 @@ github.com/veracity-tech/vtc-lrs,num_dependents_deps.dev:0 github.com/veracity/generator-veracity,num_dependents_deps.dev:0 github.com/veracity/node-auth,num_dependents_deps.dev:0 github.com/veraclins/cra-template-veraclins, +github.com/veracode/Veracode-pipeline-scan-action, +github.com/veracode/container_iac_secrets_scanning, github.com/veracode/veracode-annotations,num_dependents_deps.dev:0 +github.com/veracode/veracode-dast-essentials-action, +github.com/veracode/veracode-flaws-to-issues, +github.com/veracode/veracode-pipeline-scan-results-to-sarif, +github.com/veracode/veracode-sandboxes-helper, +github.com/veracode/veracode-sca, +github.com/veracode/veracode-uploadandscan-action, github.com/veracore-api/veracore-api-client-python, github.com/veracrypt/VeraCrypt,criticality_score:0.584660 github.com/verady/veranet,num_dependents_deps.dev:0 @@ -1167289,6 +1188146,7 @@ github.com/veragluscevic/dmdd_2014, github.com/veraison/corim,num_dependents_deps.dev:0 github.com/veraison/go-cose,num_dependents_deps.dev:0 github.com/veraison/swid,num_dependents_deps.dev:0 +github.com/veramolabs/orion-github-action, github.com/veranoo/wykop-api-client,num_dependents_deps.dev:0 github.com/veraposeidon/labelme2Datasets, github.com/verassitnh/live,num_dependents_deps.dev:0 @@ -1167506,6 +1188364,20 @@ github.com/verifiedly/Verifiedly-SDK,num_dependents_deps.dev:0 github.com/verifiedlyllc/verifiedly-kyb-widget,num_dependents_deps.dev:0 github.com/verifykit/verifykit-sdk-nodejs,num_dependents_deps.dev:0 github.com/verifykit/verifykit-sdk-python, +github.com/verifytests/diffengine, +github.com/verifytests/emptyfiles, +github.com/verifytests/verify, +github.com/verifytests/verify.anglesharp.diffing, +github.com/verifytests/verify.aspose, +github.com/verifytests/verify.entityframework, +github.com/verifytests/verify.icsharpcode.decompiler, +github.com/verifytests/verify.imagemagick, +github.com/verifytests/verify.imagesharp, +github.com/verifytests/verify.nservicebus, +github.com/verifytests/verify.sqlserver, +github.com/verifytests/verify.web, +github.com/verifytests/verify.winforms, +github.com/verifytests/verify.xaml, github.com/verigak/progress,criticality_score:0.383840 github.com/verikono/azure-datatable-tools,num_dependents_deps.dev:0 github.com/verikono/jsrpg,num_dependents_deps.dev:0 @@ -1167548,6 +1188420,7 @@ github.com/veritone/veritone-sdk,num_dependents_deps.dev:2 github.com/veritorch/cs207-FinalProject, github.com/veritrans/go-midtrans,num_dependents_deps.dev:0 github.com/veritrans/veritrans-android,num_dependents_deps.dev:148 +github.com/verivest/aws-ssm-action, github.com/verivest/gorm-loggable,num_dependents_deps.dev:0 github.com/verivox/tiny-date-picker,num_dependents_deps.dev:0 github.com/verivox/tiny-donuts,num_dependents_deps.dev:0 @@ -1167689,6 +1188562,7 @@ github.com/verri/datajudge-client, github.com/verri/sledge, github.com/verrol/awesome-project,num_dependents_deps.dev:0 github.com/verryp/go-startup,num_dependents_deps.dev:0 +github.com/vers-one/dotnet-project-version-updater, github.com/versa-syahptr/winotify, github.com/versacommerce/versacommerce-theme_api_client,num_dependents_deps.dev:0 github.com/versada/pyisaf, @@ -1167703,11 +1188577,14 @@ github.com/versatica/mediasoup,"criticality_score:0.570510,num_dependents_deps.d github.com/versatica/mediasoup-client,"criticality_score:0.439860,num_dependents_deps.dev:10" github.com/versatica/mediasoup-client-aiortc,num_dependents_deps.dev:0 github.com/versatica/mediasoup-demo,criticality_score:0.390700 +github.com/verschoren/zat-deploy, github.com/verschuur/generator-laravel-package-scaffolder, github.com/verschuur/generator-php-package-scaffolder,num_dependents_deps.dev:0 github.com/versedpro/bml-uikit, +github.com/verseles/flyclone-test-gh-action, github.com/verseml/verseml, github.com/versent/kinesis-tail,num_dependents_deps.dev:0 +github.com/verses-xyz/arweave-publish-action, github.com/versett/db-migrate-cassandra,num_dependents_deps.dev:0 github.com/versett/eslint-plugin-versett,num_dependents_deps.dev:0 github.com/versett/stylelint-plugin-versett,num_dependents_deps.dev:0 @@ -1168059,6 +1188936,7 @@ github.com/vesln/unix.js,num_dependents_deps.dev:0 github.com/vesln/word,num_dependents_deps.dev:0 github.com/vesnican/ng-intl-tel-input,num_dependents_deps.dev:0 github.com/vesninovich/go-tasks,num_dependents_deps.dev:0 +github.com/vesoft-inc/auto-sync-repos, github.com/vesoft-inc/k6-plugin,num_dependents_deps.dev:0 github.com/vesoft-inc/nebula,"criticality_score:0.469290,num_dependents_deps.dev:0" github.com/vesoft-inc/nebula-br,num_dependents_deps.dev:0 @@ -1168071,6 +1188949,9 @@ github.com/vesoft-inc/nebula-operator,num_dependents_deps.dev:0 github.com/vesoft-inc/nebula-python, github.com/vesoft-inc/nebula-rust,num_dependents_deps.dev:0 github.com/vesoft-inc/nebula-stats-exporter,num_dependents_deps.dev:0 +github.com/vesoft-inc/repo-tag-info, +github.com/vesoft-inc/upload-assets, +github.com/vesoft-inc/upload-oss, github.com/vespa-engine/vespa,criticality_score:0.655700 github.com/vespa-mrs/vespa, github.com/vespa/semantic-schema-parser,num_dependents_deps.dev:0 @@ -1168169,6 +1189050,7 @@ github.com/vetcher/gorm-loggable,num_dependents_deps.dev:0 github.com/vetcher/gqlgen,num_dependents_deps.dev:0 github.com/vetcove/django-webpack-loader, github.com/veteran29/console-chalk,num_dependents_deps.dev:0 +github.com/vetflux-dev/deploy-firebase-functions, github.com/vethal/git-smart-http,num_dependents_deps.dev:0 github.com/vethal/qsync,num_dependents_deps.dev:0 github.com/vetinari/brickd_exporter,num_dependents_deps.dev:0 @@ -1168196,6 +1189078,7 @@ github.com/veupathdb/web-app-preferred-organisms, github.com/veupathdb/web-components,num_dependents_deps.dev:0 github.com/veupathdb/web-multi-blast, github.com/veusz/veusz,criticality_score:0.519340 +github.com/vev-design/widget-deploy-action, github.com/vevedh/cap-feathersjs,num_dependents_deps.dev:0 github.com/vevedh/cap-powershell,num_dependents_deps.dev:0 github.com/veverkap/hubot-github-repo-event-notifier,num_dependents_deps.dev:0 @@ -1168280,6 +1189163,7 @@ github.com/vffuunnyy/Light_Qiwi, github.com/vffuunnyy/Locales, github.com/vfhhu/adlocusaar,num_dependents_deps.dev:0 github.com/vfiee/golang-learn,num_dependents_deps.dev:0 +github.com/vfiee/sftp-upload-action, github.com/vfiftyfive/go-stuff,num_dependents_deps.dev:0 github.com/vfile/to-vfile,num_dependents_deps.dev:1734 github.com/vfile/vfile,"criticality_score:0.435620,num_dependents_deps.dev:29074" @@ -1168365,6 +1189249,7 @@ github.com/vfranca/kt-pullback, github.com/vfranca/kt-taxa, github.com/vfranca/kt-tr, github.com/vfranca/mtcli, +github.com/vfrascello/XCode-Deploy, github.com/vfrazao-ns1/IEXTools, github.com/vfrazao-ns1/dhcppython, github.com/vfrazao-ns1/dora_dhcp_client, @@ -1168391,10 +1189276,13 @@ github.com/vfxpipeline/vfxpipeline, github.com/vg-ashanahan/wdio-allure-reporter,num_dependents_deps.dev:0 github.com/vg-cyi/SunPath, github.com/vg-leanix/aws_sancheck, +github.com/vg-leanix/docs-uploader, github.com/vg2902/synchro-task,num_dependents_deps.dev:0 github.com/vg3r/ipa,num_dependents_deps.dev:0 github.com/vgabor/redux-array,num_dependents_deps.dev:0 github.com/vgaicuks/slugifier, +github.com/vgaidarji/android-github-actions-build, +github.com/vgaidarji/android-github-actions-emulator, github.com/vgaidarji/dependencies-overview,num_dependents_deps.dev:0 github.com/vgalaktionov/2pac, github.com/vgalegov/project,num_dependents_deps.dev:0 @@ -1168482,8 +1189370,10 @@ github.com/vgostyuzhov/tf-task-runner,num_dependents_deps.dev:0 github.com/vgough/encfs,criticality_score:0.440530 github.com/vgough/grpc-proxy,num_dependents_deps.dev:0 github.com/vgough/opentracing-go,num_dependents_deps.dev:0 +github.com/vgpastor/monorepo-updated-packages, github.com/vgrabovets/benchmarkit, github.com/vgrabovets/multi_rake, +github.com/vgrafe/jest-reports, github.com/vgrafe/react-range-progress,num_dependents_deps.dev:0 github.com/vgratian/githubcollector,num_dependents_deps.dev:0 github.com/vgreg/MeatPy, @@ -1168542,6 +1189432,8 @@ github.com/vhe74/golang-data-structures,num_dependents_deps.dev:0 github.com/vhe74/pwdgen,num_dependents_deps.dev:0 github.com/vheidari/wordpress-plugin-generator,num_dependents_deps.dev:0 github.com/vhelin/wla-dx,criticality_score:0.469030 +github.com/vhermawan/generator-release-notes, +github.com/vhermawan/github-actions-release-plan, github.com/vherrera1991/react-native-country-picker-modal,num_dependents_deps.dev:0 github.com/vherrera1991/react-native-dropdown-picker,num_dependents_deps.dev:0 github.com/vheun/wedo2,num_dependents_deps.dev:0 @@ -1168582,6 +1189474,7 @@ github.com/vhmth/deepgram,num_dependents_deps.dev:0 github.com/vhodges/stitcherd,num_dependents_deps.dev:0 github.com/vhosurtest/vhosur,num_dependents_deps.dev:0 github.com/vhotmar/mroz,num_dependents_deps.dev:0 +github.com/vhoyer/comment-test-coverage, github.com/vhoyer/vue-validator-extras,num_dependents_deps.dev:0 github.com/vhpoet/facebook-cli,num_dependents_deps.dev:0 github.com/vhpoet/grunt-jade-l10n-extractor,num_dependents_deps.dev:0 @@ -1168598,6 +1189491,7 @@ github.com/vhs/nomos-sdk,num_dependents_deps.dev:0 github.com/vhs1092/utraq-datatable,num_dependents_deps.dev:0 github.com/vhs1092/vue-laravel-file-manager,num_dependents_deps.dev:0 github.com/vhsantos/centreon_report_to_pdf, +github.com/vhsantos26/app-center-cli-action, github.com/vhtml/easy-doc,num_dependents_deps.dev:0 github.com/vhtml/ejs4html-loader, github.com/vhtml/imgmin-loader,num_dependents_deps.dev:0 @@ -1168901,6 +1189795,7 @@ github.com/vibou/insomnia-plugin-hmac-auth,num_dependents_deps.dev:0 github.com/vibraedge/prac,num_dependents_deps.dev:0 github.com/vibragiel/nobel, github.com/vibrantbyte/spring-boot-starter,num_dependents_deps.dev:0 +github.com/vibranthq/build-review, github.com/vibranthq/press-ready,num_dependents_deps.dev:2 github.com/vibrates09/syncscroll,num_dependents_deps.dev:0 github.com/vibrationtoolbox/vibration_toolbox, @@ -1168928,6 +1189823,7 @@ github.com/vic/tintan,num_dependents_deps.dev:0 github.com/vic020/timeline,num_dependents_deps.dev:0 github.com/vic10us/cc-form,num_dependents_deps.dev:0 github.com/vic10us/paper-search-input,num_dependents_deps.dev:0 +github.com/vic1707/GHA-combine-PRs, github.com/vic3lord/cig,num_dependents_deps.dev:0 github.com/vic64/nlpcraft,num_dependents_deps.dev:0 github.com/vicainelli/vicainelli,num_dependents_deps.dev:0 @@ -1169210,6 +1190106,7 @@ github.com/vickleford/agent.http, github.com/vickleford/agent.pgep, github.com/vickleford/hawk, github.com/vickmellon/loadtest,num_dependents_deps.dev:0 +github.com/vickmu/py-lambda-action-v3, github.com/vickness/react-native-vk-button,num_dependents_deps.dev:0 github.com/vickness/react-native-vk-channel,num_dependents_deps.dev:0 github.com/vickness/react-native-vk-input,num_dependents_deps.dev:0 @@ -1169395,6 +1190292,7 @@ github.com/victoralveflo/yaml-todos,num_dependents_deps.dev:0 github.com/victoralvesf/video-player-for-react,num_dependents_deps.dev:0 github.com/victorandcode/jest-reporter-log-validator,num_dependents_deps.dev:0 github.com/victorandrad/mask-br, +github.com/victorargento/pm2-deployment, github.com/victorasantos10/sp-publish,num_dependents_deps.dev:0 github.com/victoraugusto6/libpythonpro, github.com/victoraugustofd/git-phoenix, @@ -1169408,8 +1190306,10 @@ github.com/victorbaptistalemos/libpythonpro, github.com/victorbartel/operation-result,num_dependents_deps.dev:0 github.com/victorbenichoux/ticktock, github.com/victorbenichoux/vizno, +github.com/victorbiga/container-scan, github.com/victorblaga/reastig,num_dependents_deps.dev:0 github.com/victorblq/rt-progress-bar,num_dependents_deps.dev:0 +github.com/victorbnl/build-signed-apk, github.com/victorbnl/is-even, github.com/victorbofill/bitmap-transformer,num_dependents_deps.dev:0 github.com/victorboissiere/vue-xls-csv-parser,num_dependents_deps.dev:0 @@ -1169447,6 +1190347,7 @@ github.com/victordiaz/PHONK,criticality_score:0.369810 github.com/victordibia/handtrackjs,num_dependents_deps.dev:0 github.com/victordibia/neuralqa, github.com/victordibia/soundplayer, +github.com/victordmontero/onedrive-download-action, github.com/victordomingos/ContarDinheiro.py, github.com/victordomingos/Count-files, github.com/victordomingos/optimize-images, @@ -1169524,10 +1190425,16 @@ github.com/victorhugom/frame8,num_dependents_deps.dev:0 github.com/victorhugomarques/nuvemshop,num_dependents_deps.dev:0 github.com/victorhugoof/pagseguro-nodets,num_dependents_deps.dev:0 github.com/victoria-ancalaf/SCL014-md-links,num_dependents_deps.dev:0 +github.com/victoria-lo/qotd-github-action, github.com/victoria-lo/repo-creator, github.com/victoriachuang/Rapsum,num_dependents_deps.dev:0 +github.com/victoriadrake/django-security-check, +github.com/victoriadrake/hugo-latest-cd, +github.com/victoriadrake/hugo-remote, github.com/victoriadrake/hugo-theme-introduction,criticality_score:0.415280 github.com/victoriadrake/hugo-theme-sam,criticality_score:0.358220 +github.com/victoriadrake/jekyll-cd, +github.com/victoriadrake/link-snitch, github.com/victoriadrake/victoriadrake,num_dependents_deps.dev:0 github.com/victoriafrench/react-native-dialogbox,num_dependents_deps.dev:0 github.com/victoriametrics/fasthttp,num_dependents_deps.dev:0 @@ -1169608,6 +1190515,7 @@ github.com/victornoel/eo-envelopes,num_dependents_deps.dev:0 github.com/victornpb/asciitable.js,num_dependents_deps.dev:0 github.com/victornpb/eleventy-plugin-page-assets,num_dependents_deps.dev:0 github.com/victornpb/micro-fps,num_dependents_deps.dev:0 +github.com/victornpb/notion-jam, github.com/victornpb/printo,num_dependents_deps.dev:0 github.com/victornpb/tiny-dedent,num_dependents_deps.dev:0 github.com/victornpb/vt-toggle,num_dependents_deps.dev:0 @@ -1169738,6 +1190646,7 @@ github.com/victorwpbastos/webpack-template-loader,num_dependents_deps.dev:0 github.com/victorwss/br-nome-gen, github.com/victorwss/inject-globals, github.com/victorwss/pyfunccache, +github.com/victorx64/pr-label, github.com/victory820/vic-cli-test,num_dependents_deps.dev:0 github.com/victorybiz/vue-ctk-date-time-picker,num_dependents_deps.dev:0 github.com/victorybiz/vue-simple-acl,num_dependents_deps.dev:0 @@ -1169863,6 +1190772,7 @@ github.com/vidatec/react-native-template-vidatec,num_dependents_deps.dev:0 github.com/vidavidorra/bunyan-pretty-stream,num_dependents_deps.dev:0 github.com/vidavidorra/commitlint-config,num_dependents_deps.dev:0 github.com/vidavidorra/commitlint-plugin-function-rules,num_dependents_deps.dev:0 +github.com/vidavidorra/github-action-renovate, github.com/vidavidorra/global-linters,num_dependents_deps.dev:0 github.com/vidavidorra/next-standard-version,num_dependents_deps.dev:0 github.com/vidaxl-com/cowlog,num_dependents_deps.dev:4 @@ -1170331,6 +1191241,7 @@ github.com/vigetlabs/react-modal,num_dependents_deps.dev:0 github.com/vigetlabs/redirector,num_dependents_deps.dev:0 github.com/vigetlabs/rev-replace-loader,num_dependents_deps.dev:0 github.com/vigetlabs/reword,num_dependents_deps.dev:0 +github.com/vigetlabs/simplecov-check, github.com/vigetlabs/tailwindcss-plugins,num_dependents_deps.dev:0 github.com/vigetlabs/tweeny,num_dependents_deps.dev:0 github.com/vigetlabs/washi,num_dependents_deps.dev:0 @@ -1170397,6 +1191308,7 @@ github.com/vignesh-iopex/robolectric-gradle-plugin,num_dependents_deps.dev:0 github.com/vignesh-nadar/kg_vignesh-nadar_2022,num_dependents_deps.dev:0 github.com/vignesh-s/butterfork,num_dependents_deps.dev:0 github.com/vignesh2514/bookidgen,num_dependents_deps.dev:0 +github.com/vignesh34v/vigneshwaran, github.com/vignesh5696/ngx-dynamic-table,num_dependents_deps.dev:0 github.com/vignesh5698/react-multi-selector,num_dependents_deps.dev:0 github.com/vignesh88/tools,num_dependents_deps.dev:0 @@ -1170410,6 +1191322,7 @@ github.com/vigneshjeyaraman/goseries,num_dependents_deps.dev:0 github.com/vigneshkv23/complex-json,num_dependents_deps.dev:0 github.com/vigneshnrfs/node-monitor-ui,num_dependents_deps.dev:0 github.com/vigneshnrfs/winston-node-monitor-ui,num_dependents_deps.dev:0 +github.com/vigneshrajsb/github-wiki-publish-action, github.com/vigneshshanmugam/agent-pool,num_dependents_deps.dev:0 github.com/vigneshshanmugam/bundle-duplicates-plugin,num_dependents_deps.dev:0 github.com/vigneshshanmugam/compress-payload,num_dependents_deps.dev:0 @@ -1170591,6 +1191504,7 @@ github.com/vigour-io/wrapper-bridge,num_dependents_deps.dev:14 github.com/vigour-io/xhr-json,num_dependents_deps.dev:0 github.com/vigoux/newton,num_dependents_deps.dev:0 github.com/vigoux/redict,num_dependents_deps.dev:0 +github.com/vigoux/tree-sitter-fuzz-action, github.com/vigreco/can-promise,num_dependents_deps.dev:84 github.com/vigreco/exact-time,num_dependents_deps.dev:0 github.com/vigreco/has-native-promise,num_dependents_deps.dev:0 @@ -1170700,11 +1191614,14 @@ github.com/vijaykonnackal/machinepack-mssql,num_dependents_deps.dev:0 github.com/vijaykonnackal/machinepack-sqlserver,num_dependents_deps.dev:0 github.com/vijaykonnackal/sails-mssql,num_dependents_deps.dev:0 github.com/vijaykonnackal/sails-sqlserver-adapter,num_dependents_deps.dev:0 +github.com/vijaykramesh/pr-lint-action, github.com/vijaykrishnavanshi/url-to-base64,num_dependents_deps.dev:0 github.com/vijaykumar-koppad/Crefi, github.com/vijaylabfiles/node,num_dependents_deps.dev:0 github.com/vijayliebe/angular2Plus_multi_range_slider,num_dependents_deps.dev:0 github.com/vijaymarupudi/reaction-time,num_dependents_deps.dev:0 +github.com/vijayp23/delete-gae-version-action, +github.com/vijayp23/deploy-gae-action, github.com/vijaypal89/goexample,num_dependents_deps.dev:0 github.com/vijaypatoliya/bitly-node-api,num_dependents_deps.dev:0 github.com/vijaypatoliya/meetup-node,num_dependents_deps.dev:0 @@ -1170719,6 +1191636,7 @@ github.com/vijayrathore8492/havildar,num_dependents_deps.dev:0 github.com/vijayrathore8492/superbatu,num_dependents_deps.dev:0 github.com/vijaysai/generator-genlaravel,num_dependents_deps.dev:0 github.com/vijaysai/yify,num_dependents_deps.dev:0 +github.com/vijaysarthy01/github-action-helm-eks, github.com/vijayshinva/Indian-Stock-Markets, github.com/vijaysonani/web-component-LitElement,num_dependents_deps.dev:0 github.com/vijayst/color-lerp,num_dependents_deps.dev:0 @@ -1170742,6 +1191660,7 @@ github.com/vijayviji/versatile-node-logger, github.com/vijayyadav1002/bagira,num_dependents_deps.dev:0 github.com/vijayyadav1002/connect-rest-api,num_dependents_deps.dev:0 github.com/vijayyuvasoft/mamajoke,num_dependents_deps.dev:0 +github.com/vijejain/hello-world-javascript-action, github.com/vijendra/checkr,num_dependents_deps.dev:0 github.com/vijeysrc/get-set-json,num_dependents_deps.dev:0 github.com/vijeysrc/grunt-fetch-from-cdn,num_dependents_deps.dev:0 @@ -1170778,6 +1191697,7 @@ github.com/vikadata/vika.py, github.com/vikadata/xgplayer,num_dependents_deps.dev:0 github.com/vikalibrate/FortesFit, github.com/vikas-bh/hcsshim,num_dependents_deps.dev:0 +github.com/vikas-cldcvr/extract-changelogs, github.com/vikas-goel/sample,num_dependents_deps.dev:0 github.com/vikas-kumar-singh/grunt-wcag-accessibility, github.com/vikas-kumar-singh/grunt-web-performance,num_dependents_deps.dev:0 @@ -1171016,11 +1191936,13 @@ github.com/vikramtiwari/bose,num_dependents_deps.dev:0 github.com/vikramtiwari/ui-components,num_dependents_deps.dev:0 github.com/vikramyadav1/weaver,num_dependents_deps.dev:0 github.com/vikramzsingh/go-testing-example,num_dependents_deps.dev:0 +github.com/vikrantd/simplecov-resultset-diff-action, github.com/vikrantnegi/react-native-animated-loader,num_dependents_deps.dev:0 github.com/vikrantsingh298/Vikrant-s-Stuff, github.com/vikrosj/fdet-offline, github.com/vikrosj/fdet-offline-mtcnn-weights, github.com/vikrosj/fdet_offline_mobilenet_weights, +github.com/vikrum669/asm-secrets-action, github.com/vikseriq/browser-pug,num_dependents_deps.dev:0 github.com/vikseriq/requirejs-vue,num_dependents_deps.dev:0 github.com/viksicom/command_line_files,num_dependents_deps.dev:0 @@ -1171133,6 +1192055,7 @@ github.com/vikzh/project-lvl1-s450,num_dependents_deps.dev:0 github.com/vikzh/project-lvl2-s463,num_dependents_deps.dev:0 github.com/vil-c/ifsc-expand, github.com/vil/vil,num_dependents_deps.dev:0 +github.com/vil02/string_to_code_action, github.com/vilP1l/Spotify.js,num_dependents_deps.dev:0 github.com/vilP1l/ipabuilder,num_dependents_deps.dev:0 github.com/vilaapps/vila-requests,num_dependents_deps.dev:0 @@ -1171166,6 +1192089,7 @@ github.com/viletyy/potato,num_dependents_deps.dev:0 github.com/viletyy/yolk,num_dependents_deps.dev:0 github.com/vileven/react-with-context,num_dependents_deps.dev:0 github.com/vileven/transliterate-js,num_dependents_deps.dev:0 +github.com/vilgotf/container-update-action, github.com/vilhaum/Hastega,num_dependents_deps.dev:0 github.com/vilhaum/table-generator,num_dependents_deps.dev:0 github.com/vilhelmen/djallin2, @@ -1171452,6 +1192376,7 @@ github.com/vimday/learngolang,num_dependents_deps.dev:0 github.com/vimdude/gen,num_dependents_deps.dev:0 github.com/vime-js/vime,"criticality_score:0.378710,num_dependents_deps.dev:2" github.com/vimeda/goengine,num_dependents_deps.dev:0 +github.com/vimeda/helm, github.com/vimeda/pletter,num_dependents_deps.dev:0 github.com/vimeo/babel-plugin-transform-i18n,num_dependents_deps.dev:0 github.com/vimeo/dials,num_dependents_deps.dev:0 @@ -1171497,6 +1192422,7 @@ github.com/vimond/replay,num_dependents_deps.dev:0 github.com/vimoutliner/vimoutliner,criticality_score:0.390910 github.com/vimox-shah/shipmnts_pubsub, github.com/vimox-shah/shipmnts_utils, +github.com/vimpalsingh/copy-files-to-remote-repo, github.com/vimperator/vimperator-labs,criticality_score:0.353350 github.com/vimplus/eslint-config-yylint,num_dependents_deps.dev:0 github.com/vimsucks/CryDeer, @@ -1171509,6 +1192435,8 @@ github.com/vimtaai/fluxbase,num_dependents_deps.dev:0 github.com/vimtaai/gumdrop,num_dependents_deps.dev:0 github.com/vimtaai/mdss,num_dependents_deps.dev:0 github.com/vimtaku/muzzy,num_dependents_deps.dev:0 +github.com/vimtor/action-update-version, +github.com/vimtor/action-zip, github.com/vimtor/eleventy-plugin-external-links,num_dependents_deps.dev:0 github.com/vimtor/quickd, github.com/vimukthi-git/aftership-go,num_dependents_deps.dev:0 @@ -1171538,6 +1192466,7 @@ github.com/vinarmani/swap-bch-js,num_dependents_deps.dev:0 github.com/vinaunder/spfxrestapi,num_dependents_deps.dev:0 github.com/vinay-deshmukh/Sheet-Disk, github.com/vinay-kumar/ng2-google-analytics,num_dependents_deps.dev:0 +github.com/vinay0410/tectonic-action, github.com/vinay0x/onexp,num_dependents_deps.dev:0 github.com/vinay221097/onestep-django-app, github.com/vinay2901/api-document,num_dependents_deps.dev:0 @@ -1171612,6 +1192541,7 @@ github.com/vinayakvinay/form-utility,num_dependents_deps.dev:0 github.com/vinayakybhatt/six-quarter-degrees,num_dependents_deps.dev:0 github.com/vinayalodha/elvis,num_dependents_deps.dev:1 github.com/vinayan3/scrapy-statsd, +github.com/vinayb21/github-action-push-to-another-repo, github.com/vinaybaswa/lotide,num_dependents_deps.dev:0 github.com/vinaybedre/exchange-web-service,num_dependents_deps.dev:0 github.com/vinaybedre/generator-resthapi,num_dependents_deps.dev:0 @@ -1171631,6 +1192561,7 @@ github.com/vinaygoyal20/react-native-android-keyboard-adjust,num_dependents_deps github.com/vinayinvicible/django-regexfield, github.com/vinayinvicible/django-route, github.com/vinaykale64/euphony, +github.com/vinaykanamarlapudi/hello-world-action, github.com/vinaykant19/vinars,num_dependents_deps.dev:0 github.com/vinaykashyap1996/npm-spinner,num_dependents_deps.dev:0 github.com/vinaykrsharma/jquery.smartify,num_dependents_deps.dev:0 @@ -1171754,6 +1192685,7 @@ github.com/vincent-coding/uGecko, github.com/vincent-fuchs/cucumber-results-aggregator-plugin,num_dependents_deps.dev:0 github.com/vincent-gustafsson/amqp-consumer,num_dependents_deps.dev:0 github.com/vincent-gustafsson/telegram-bot,num_dependents_deps.dev:0 +github.com/vincent-h-lee/sitemap-urls-test-action, github.com/vincent-herlemont/include_walk,num_dependents_deps.dev:0 github.com/vincent-herlemont/next-aws-lambda-webpack-plugin,num_dependents_deps.dev:0 github.com/vincent-herlemont/short,num_dependents_deps.dev:0 @@ -1171794,6 +1192726,7 @@ github.com/vincent/python-jamendo, github.com/vincent/recast.js,num_dependents_deps.dev:0 github.com/vincent/three-arena,num_dependents_deps.dev:0 github.com/vincent178/goutils,num_dependents_deps.dev:0 +github.com/vincent178/labeler, github.com/vincent178/persistent-cookiejar,num_dependents_deps.dev:0 github.com/vincent178/xlsx2csv,num_dependents_deps.dev:0 github.com/vincent1993/vuex-loading,num_dependents_deps.dev:0 @@ -1171961,6 +1192894,7 @@ github.com/vincenttan83/b2all-image-missing,num_dependents_deps.dev:0 github.com/vincenttan83/b2all-number-formatter,num_dependents_deps.dev:0 github.com/vincenttan83/b2all-time-relative,num_dependents_deps.dev:0 github.com/vincenttee/gorilla-csrf,num_dependents_deps.dev:0 +github.com/vincenttjia/github-actions-pr-comment, github.com/vincentvella/eslint-config,num_dependents_deps.dev:0 github.com/vincentvella/prettier-config,num_dependents_deps.dev:0 github.com/vincentvella/use-cooldown,num_dependents_deps.dev:0 @@ -1171980,6 +1192914,7 @@ github.com/vincentzreo/http-server,num_dependents_deps.dev:0 github.com/vincentzyc/byte-weektime-picker,num_dependents_deps.dev:0 github.com/vincentzyc/ele-easy-table,num_dependents_deps.dev:0 github.com/vincenzo666/goweb,num_dependents_deps.dev:0 +github.com/vincenzobaz/scala-action, github.com/vincenzobaz/spark-scala3,num_dependents_deps.dev:0 github.com/vincenzomartello/ERExplain, github.com/vincenzomerolla/offerpop,num_dependents_deps.dev:0 @@ -1172003,6 +1192938,7 @@ github.com/vinceshere/services-checker,num_dependents_deps.dev:0 github.com/vincet20210705/testing,num_dependents_deps.dev:0 github.com/vincetreur/postman,num_dependents_deps.dev:0 github.com/vincetreur/ristretto,num_dependents_deps.dev:0 +github.com/vincetse/fortune-cookie-action, github.com/vincetse/prometheus-ecs-discovery,num_dependents_deps.dev:0 github.com/vincetse/python-s3-cache, github.com/vinceumo/lazyload-picturefill-background,num_dependents_deps.dev:0 @@ -1172071,6 +1193007,7 @@ github.com/vineetasharma/soundcloud-node-api,num_dependents_deps.dev:0 github.com/vineetbansal/walrus, github.com/vineetbiyani09/ML, github.com/vineetchoudhary/AppBox-iOSAppsWirelessInstallation,criticality_score:0.316970 +github.com/vineetchoudhary/mailgun-action, github.com/vineetenator/inline-datauri-brunch,num_dependents_deps.dev:0 github.com/vineeth-kada/cf-tool,num_dependents_deps.dev:0 github.com/vineetha2438/doc2json,num_dependents_deps.dev:0 @@ -1172199,6 +1193136,7 @@ github.com/vinicel/mt2022_proj01_wiki,num_dependents_deps.dev:0 github.com/viniceosm/vexpress,num_dependents_deps.dev:0 github.com/vinicioslc/adb-interface-vscode,num_dependents_deps.dev:0 github.com/vinicioslc/frontmatter-validator,num_dependents_deps.dev:0 +github.com/vinicioslc/merge-bot, github.com/vinicius-araujo/zephyr-protractor-reporter,num_dependents_deps.dev:0 github.com/vinicius-evocorp/cra-template-evocorp,num_dependents_deps.dev:0 github.com/vinicius-gr/styled-devices,num_dependents_deps.dev:0 @@ -1172269,6 +1193207,7 @@ github.com/viniciusjssouza/typeorm-transactional-tests, github.com/viniciuskneves/viniciuskneves,num_dependents_deps.dev:0 github.com/viniciuskneves/vue-snakke, github.com/viniciuslagedo/ng-accessibility-bar,num_dependents_deps.dev:0 +github.com/viniciuslcpereira97/filter-gh-branch, github.com/viniciusleitelima/buscaGit,num_dependents_deps.dev:0 github.com/viniciuslrangel/pdf-templater,num_dependents_deps.dev:0 github.com/viniciusls/nodejs-db-migrations,num_dependents_deps.dev:0 @@ -1172448,6 +1193387,7 @@ github.com/vinnyguitar/xhr-overwrite,num_dependents_deps.dev:0 github.com/vinnyhorgan/vcs,num_dependents_deps.dev:0 github.com/vinnymac/babel-plugin-component-did-catch-source,num_dependents_deps.dev:0 github.com/vinnymac/react-atv-img,num_dependents_deps.dev:0 +github.com/vinnymac/trigger-circleci-pipeline-action, github.com/vinnymac/underscore-react-spread-polyfill,num_dependents_deps.dev:0 github.com/vinnymeller/chain_test,num_dependents_deps.dev:0 github.com/vinnymeller/go-blockchain,num_dependents_deps.dev:0 @@ -1172467,6 +1193407,7 @@ github.com/vinodhini2324/json,num_dependents_deps.dev:0 github.com/vinodhini2324/json-html,num_dependents_deps.dev:0 github.com/vinodhini2324/task1,num_dependents_deps.dev:0 github.com/vinodhini2324/vinodhinien,num_dependents_deps.dev:0 +github.com/vinodhraj/Bump-N-Tag-Version, github.com/vinodhrajagopal/waynga-grpc,num_dependents_deps.dev:0 github.com/vinodkumar8/react-native-month-selector,num_dependents_deps.dev:0 github.com/vinodkumar8/react-native-passcode-auth,num_dependents_deps.dev:0 @@ -1172490,6 +1193431,7 @@ github.com/vinogradov-m/cordova-plugin-exoplayer,num_dependents_deps.dev:0 github.com/vinogradov/domtooljs,num_dependents_deps.dev:0 github.com/vinogradov/puppeteer-simple-helpers,num_dependents_deps.dev:0 github.com/vinomanick/ember-event-scheduler,num_dependents_deps.dev:0 +github.com/vinomaster/mkdocs-ghpages-docker-action, github.com/vinomuse/eslint-config-react-vino,num_dependents_deps.dev:0 github.com/vinoosir/adad-cordova-plugin,num_dependents_deps.dev:0 github.com/vinoosir/adivery-cordova-plugin,num_dependents_deps.dev:0 @@ -1172751,6 +1193693,7 @@ github.com/vinzegtz/mypassword, github.com/vinzent/ep_xforwardedproto_redir,num_dependents_deps.dev:0 github.com/vinzscam/react-native-file-viewer,num_dependents_deps.dev:2 github.com/vinzscam/react-native-tus-client,num_dependents_deps.dev:0 +github.com/vio/bundle-stats-action, github.com/vio/marked-token-tree,num_dependents_deps.dev:0 github.com/vioao/wechat-sdk,num_dependents_deps.dev:0 github.com/viocle-kvanek/go-spss,num_dependents_deps.dev:0 @@ -1172836,6 +1193779,7 @@ github.com/vip-git/rxjs-rules-engine,num_dependents_deps.dev:0 github.com/vip-zpf/jave,num_dependents_deps.dev:0 github.com/vip0r/vartastorage, github.com/vip1all/teamspeak3-query-js,num_dependents_deps.dev:0 +github.com/vip20/mongo-atlas-backup, github.com/vip30/node-iptc,num_dependents_deps.dev:0 github.com/vip30/vue-draggable-virtual-scroll-list,num_dependents_deps.dev:0 github.com/vip30/vue-local-storage-decorator,num_dependents_deps.dev:0 @@ -1172970,6 +1193914,7 @@ github.com/vipulasri/Layout-to-Image,num_dependents_deps.dev:0 github.com/vipulasri/Timeline-View,num_dependents_deps.dev:0 github.com/vipulbhj/clean-url,num_dependents_deps.dev:0 github.com/vipulbhj/not-really-a-framework,num_dependents_deps.dev:0 +github.com/vipulbhj/pull-request-notifier, github.com/vipulgupta2048/balenaclone,num_dependents_deps.dev:0 github.com/vipulism/gulp-npm,num_dependents_deps.dev:0 github.com/vipulism/zoomify,num_dependents_deps.dev:0 @@ -1173068,6 +1194013,7 @@ github.com/virgileTN/naps_utilities, github.com/virgileTN/py_pose_transform, github.com/virgileTN/pyopenvr_wrapper, github.com/virgili0/Virgilio,criticality_score:0.380310 +github.com/virgilio21/openldap-action, github.com/virgilioneto/infinity,num_dependents_deps.dev:0 github.com/virgilioneto/mongoose-wrapper,num_dependents_deps.dev:0 github.com/virgilioneto/moodle-rest-client,num_dependents_deps.dev:0 @@ -1173216,6 +1194162,7 @@ github.com/virtualbeck/hubot_cNorris,num_dependents_deps.dev:0 github.com/virtualc/imstore,num_dependents_deps.dev:0 github.com/virtualcapitalofamerica/qr.js,num_dependents_deps.dev:0 github.com/virtualcapitalofamerica/secret-sharing.js,num_dependents_deps.dev:0 +github.com/virtualcell/actions, github.com/virtualcell/vcell_cli_utils, github.com/virtualchamber/Tingle, github.com/virtualcitySYSTEMS/cesium,num_dependents_deps.dev:0 @@ -1173446,6 +1194393,7 @@ github.com/vishaalagartha/d3-plot3d,num_dependents_deps.dev:0 github.com/vishai12345/apns-fcm,num_dependents_deps.dev:0 github.com/vishal-gtl/rn-realm-db,num_dependents_deps.dev:0 github.com/vishal-gulati/TOPSIS_Vishal_101803152, +github.com/vishal-kapse/slack-notify-action, github.com/vishal-keshav/net_puppy, github.com/vishal-uttamchandani/go-githubaction,num_dependents_deps.dev:0 github.com/vishal-wadhwa/fresh-dlv,num_dependents_deps.dev:0 @@ -1173514,6 +1194462,7 @@ github.com/vishalkuo/gitScrub,num_dependents_deps.dev:0 github.com/vishalkuo/k6,num_dependents_deps.dev:0 github.com/vishalkuo/py4hdfs, github.com/vishallanke/ReportPortalCypressJUnitAgent,num_dependents_deps.dev:0 +github.com/vishalmamidi/lowercase-action, github.com/vishalmishra4u/array-n-first,num_dependents_deps.dev:0 github.com/vishalmishra4u/is-array-sorted,num_dependents_deps.dev:0 github.com/vishalmistry/ngx-split-view,num_dependents_deps.dev:0 @@ -1173529,6 +1194478,7 @@ github.com/vishalsaugat/react-loader-spinner,num_dependents_deps.dev:0 github.com/vishalshah-org/neoism,num_dependents_deps.dev:0 github.com/vishalsharma14/py-data-structures, github.com/vishalshindedeshmukh/param_view,num_dependents_deps.dev:0 +github.com/vishalsinha21/dynamic-checklist, github.com/vishalsubbiah/darkchess, github.com/vishalsync/express-pagination-helper,num_dependents_deps.dev:0 github.com/vishaltanwani/golangwebapp,num_dependents_deps.dev:0 @@ -1173587,6 +1194537,12 @@ github.com/vishnucramesh/react-essential-boilerplate,num_dependents_deps.dev:0 github.com/vishnucramesh/react-input-table,num_dependents_deps.dev:0 github.com/vishnucss/vishnu,num_dependents_deps.dev:0 github.com/vishnucss/vishnucss,num_dependents_deps.dev:0 +github.com/vishnudxb/cancel-duplicate-workflow, +github.com/vishnudxb/cancel-gh-workflow, +github.com/vishnudxb/cancel-workflow, +github.com/vishnudxb/gcloud-dataproc-creation, +github.com/vishnudxb/gcloud-dataproc-deletion, +github.com/vishnudxb/redis-cluster, github.com/vishnugopal/bookmarks-to-obsidian,num_dependents_deps.dev:0 github.com/vishnugt/youtube-dl-plugin, github.com/vishnuindira/gorestfulapi,num_dependents_deps.dev:0 @@ -1173615,6 +1194571,7 @@ github.com/vishpat/ra-data-springboot-rest,num_dependents_deps.dev:0 github.com/vishpat/stl,num_dependents_deps.dev:0 github.com/vishr/gat,num_dependents_deps.dev:0 github.com/vishr/scale,num_dependents_deps.dev:0 +github.com/vishrutkmr7/UpdateLCCookies, github.com/vishsid73/generator-express-api-stub,num_dependents_deps.dev:0 github.com/vishttt/react-native-calendars,num_dependents_deps.dev:0 github.com/vishu42/reportportal-behave-integration-client-lib, @@ -1173652,6 +1194609,7 @@ github.com/visiblevc/wordpress-starter,criticality_score:0.321640 github.com/visibleworld/comply.js, github.com/visig9/cmdlr, github.com/visig9/slottle,num_dependents_deps.dev:0 +github.com/visiky/dingtalk-release-notify, github.com/visilabs/Visilabs-React-Native,num_dependents_deps.dev:0 github.com/visingh19/gographs,num_dependents_deps.dev:0 github.com/visins/learning_git,num_dependents_deps.dev:0 @@ -1173795,7 +1194753,15 @@ github.com/visionsofparadise/uomit,num_dependents_deps.dev:0 github.com/visionsofparadise/upick,num_dependents_deps.dev:0 github.com/visionworkbench/visionworkbench,criticality_score:0.324080 github.com/visionwuwu/react-ts-antd-v-shark,num_dependents_deps.dev:0 +github.com/visionwx/ali-cdn-redirector, +github.com/visionwx/ali-cdn-redirector-ts, +github.com/visionwx/ali-cdn-refresh, +github.com/visionwx/figma-icon-generator, +github.com/visionwx/notion-database-exporter, +github.com/visionwx/trickle-sender, github.com/visiosto/components,num_dependents_deps.dev:0 +github.com/visiosto/maintain-revision, +github.com/visiosto/replace-value, github.com/visiosto/web-utilities,num_dependents_deps.dev:0 github.com/visiperf/visiauth,num_dependents_deps.dev:0 github.com/visiperf/visigrpc,num_dependents_deps.dev:0 @@ -1173842,6 +1194808,7 @@ github.com/visla/paypal-express-checkout,num_dependents_deps.dev:0 github.com/vislee/goes,num_dependents_deps.dev:0 github.com/vislyhq/linear-node-api,num_dependents_deps.dev:0 github.com/vislyhq/stretch,num_dependents_deps.dev:96 +github.com/visma-prodsec/coverity-on-polaris-workflow, github.com/vismantic-ohtuprojekti/image-filtering-suite, github.com/vismutls/phantom-component,num_dependents_deps.dev:0 github.com/visnu1/Types-phoneNo-timeZone,num_dependents_deps.dev:0 @@ -1173993,6 +1194960,7 @@ github.com/visupedia/visupedia-api-node,num_dependents_deps.dev:0 github.com/visurel/express-language-negotiator,num_dependents_deps.dev:0 github.com/visurel/iconify-angular,num_dependents_deps.dev:0 github.com/visurel/ngxs-entity,num_dependents_deps.dev:0 +github.com/visus-io/cuid.net, github.com/visusnet/combine-cross-slice-reducers,num_dependents_deps.dev:0 github.com/visusnet/deep-clone-js,num_dependents_deps.dev:0 github.com/visusnet/react-typeahead,num_dependents_deps.dev:0 @@ -1174003,6 +1194971,7 @@ github.com/visvirial/bitcoin-rest,num_dependents_deps.dev:0 github.com/visvirial/iota-cli,num_dependents_deps.dev:0 github.com/visvirial/jest-webworker, github.com/visvirial/rust_fibo,num_dependents_deps.dev:0 +github.com/visvirial/sccache-action, github.com/viswa-swami/python-foscam, github.com/viswa/covistat,num_dependents_deps.dev:0 github.com/viswa/gol,num_dependents_deps.dev:0 @@ -1174019,6 +1194988,7 @@ github.com/viswanathkgp12/eth_kms_signer, github.com/viswanathkgp12/hf-supply-chain,num_dependents_deps.dev:0 github.com/viswanathreddy/django-session-controller, github.com/viswaramamoorthy/gradle-util-plugins,num_dependents_deps.dev:0 +github.com/viswiz-io/github-action, github.com/viswiz-io/viswiz-cli,num_dependents_deps.dev:0 github.com/viswiz-io/viswiz-nodejs-sdk, github.com/visya/bulk-get,num_dependents_deps.dev:0 @@ -1174289,6 +1195259,7 @@ github.com/vitalykolesnik/tester,num_dependents_deps.dev:0 github.com/vitalykondratiev/gtrack,num_dependents_deps.dev:0 github.com/vitalykorneev/react-redux-builder,num_dependents_deps.dev:0 github.com/vitalykri/project,num_dependents_deps.dev:0 +github.com/vitalyliber/dokku-github-action, github.com/vitalyliber/react-native-ckeditor,num_dependents_deps.dev:0 github.com/vitalymil/osc-apidb-writer,num_dependents_deps.dev:0 github.com/vitalymil/osm-object-stream,num_dependents_deps.dev:0 @@ -1174529,6 +1195500,7 @@ github.com/vitoremanoel/books-loan,num_dependents_deps.dev:0 github.com/vitorenesduarte/threshold-rs,num_dependents_deps.dev:0 github.com/vitorenesduarte/tricks-client, github.com/vitorfhc/cfaster, +github.com/vitorfhc/use-semver-tool, github.com/vitorfreitas/generator-ts-monorepo,num_dependents_deps.dev:0 github.com/vitorfreitas/node-spotify-bus,num_dependents_deps.dev:0 github.com/vitorfreitas/node-spotify-cli,num_dependents_deps.dev:0 @@ -1174584,6 +1195556,7 @@ github.com/vitorsalgado/nodejs-boilerplate,num_dependents_deps.dev:0 github.com/vitorsalgado/nodejs-fx,num_dependents_deps.dev:0 github.com/vitorsalgado/react-web-starter,num_dependents_deps.dev:0 github.com/vitorsalgado/swagjs,num_dependents_deps.dev:0 +github.com/vitorsgomes/s3-rm-action, github.com/vitorsilvalima/mongoose-useraudit-plugin,num_dependents_deps.dev:0 github.com/vitorspadacio/mask-fn,num_dependents_deps.dev:0 github.com/vitorsvieira/dilate,num_dependents_deps.dev:0 @@ -1174603,6 +1195576,8 @@ github.com/vitozyf/vue-znl-ui,num_dependents_deps.dev:0 github.com/vitpelekhaty/etronics,num_dependents_deps.dev:0 github.com/vitpelekhaty/go-cascade-client,num_dependents_deps.dev:0 github.com/vitpelekhaty/go-eldis,num_dependents_deps.dev:0 +github.com/vitr/actions-build-and-upload-to-ecs, +github.com/vitracash/keel-webhook-action, github.com/vitramir/apollo-model-mongodb,num_dependents_deps.dev:0 github.com/vitrig/cproj, github.com/vitrine-app/electron-hot-reloader,num_dependents_deps.dev:0 @@ -1174885,6 +1195860,7 @@ github.com/vivekkumar2696/profanity-police, github.com/vivekkumawat/env-and-json,num_dependents_deps.dev:0 github.com/vivekkushwaha66/v-12-css,num_dependents_deps.dev:0 github.com/vivekkya/auto-release-to-pypi, +github.com/viveklak/cancel-workflows, github.com/vivekm92/interviewbit-golang,num_dependents_deps.dev:0 github.com/vivekmahato/mlots, github.com/vivekmarakana/iota.lib.rb,num_dependents_deps.dev:0 @@ -1174957,6 +1195933,7 @@ github.com/vivex/vivek,num_dependents_deps.dev:0 github.com/vivi-shiwei/viviui,num_dependents_deps.dev:0 github.com/vivi168/SNES_Utils,num_dependents_deps.dev:0 github.com/vivi3008/exercicios-test-go,num_dependents_deps.dev:0 +github.com/vivi90/jekyll-minimal-action, github.com/vivialconnect/vivialconnect-java,num_dependents_deps.dev:0 github.com/vivialconnect/vivialconnect-ruby,num_dependents_deps.dev:0 github.com/vivianaberron/MEX008-FE-md-link,num_dependents_deps.dev:0 @@ -1175063,6 +1196040,7 @@ github.com/vivizth/thai-area-converter, github.com/vivkr/linearfold,num_dependents_deps.dev:0 github.com/vivlabs/coverage-github-reporter,num_dependents_deps.dev:0 github.com/vivlabs/instaclone, +github.com/vivliostyle/action, github.com/vivliostyle/create-book,num_dependents_deps.dev:0 github.com/vivliostyle/themes,num_dependents_deps.dev:0 github.com/vivliostyle/vfm,num_dependents_deps.dev:6 @@ -1175235,6 +1196213,7 @@ github.com/vizzuality/googleapis-nodejs-cloudbuild,num_dependents_deps.dev:0 github.com/vizzuality/googleapis-nodejs-functions,num_dependents_deps.dev:0 github.com/vizzuality/redux-tools,num_dependents_deps.dev:2 github.com/vizzuhq/ipyvizzu, +github.com/vj-abigo/invite-on-label, github.com/vj39/om,num_dependents_deps.dev:0 github.com/vjaceslavsh/react-native-storage-manager,num_dependents_deps.dev:0 github.com/vjagaro/web-command, @@ -1175315,6 +1196294,7 @@ github.com/vk-x/inject,num_dependents_deps.dev:0 github.com/vk-x/vk-api,num_dependents_deps.dev:0 github.com/vk-x/vk-x,num_dependents_deps.dev:0 github.com/vk2020/awesome-react-components,num_dependents_deps.dev:0 +github.com/vk26/action-fasterer, github.com/vk4u/naught2,num_dependents_deps.dev:0 github.com/vk643/alpha-compiler-vk, github.com/vk643/zipline-live2-vk, @@ -1175482,6 +1196462,7 @@ github.com/vkingw/umi-plugin-antd-theme,num_dependents_deps.dev:0 github.com/vkingw/umi-plugin-antd-theme-ng, github.com/vkiq/core,num_dependents_deps.dev:0 github.com/vkiq/create-vkiq-plugin,num_dependents_deps.dev:0 +github.com/vkirilichev/changed-lines-count-labeler, github.com/vkiryukhin/jsonfn,num_dependents_deps.dev:33 github.com/vkiryukhin/jsonfn-node,num_dependents_deps.dev:4 github.com/vkiryukhin/pretty-data,num_dependents_deps.dev:451 @@ -1175494,6 +1196475,7 @@ github.com/vkitty/vkitty,num_dependents_deps.dev:0 github.com/vkjs/vk-hash,num_dependents_deps.dev:0 github.com/vkkis93/serverless-step-functions-offline, github.com/vkkodali/cthreepo, +github.com/vkkotha/action-get-latest-release, github.com/vkku/get-set-go,num_dependents_deps.dev:0 github.com/vklap/simple-di-container,num_dependents_deps.dev:0 github.com/vklap/simple-web-crawler,num_dependents_deps.dev:0 @@ -1175736,6 +1196718,7 @@ github.com/vladaspasic/node-registry,num_dependents_deps.dev:0 github.com/vladaspasic/node-registry-express,num_dependents_deps.dev:0 github.com/vladaspasic/node-registry-winston,num_dependents_deps.dev:0 github.com/vladaspasic/rest-sequelize,num_dependents_deps.dev:0 +github.com/vladavip88/create-npmrc, github.com/vladazn/cordova-plugin-firebase,num_dependents_deps.dev:0 github.com/vladbalmos/mitzasql, github.com/vladbarcelo/bem-module,num_dependents_deps.dev:0 @@ -1175768,6 +1196751,7 @@ github.com/vladcar/simple-sqs-listener,num_dependents_deps.dev:1 github.com/vladcar/vcli,num_dependents_deps.dev:0 github.com/vladciphersky/sdc-api-wrapper,num_dependents_deps.dev:0 github.com/vladcomp/lyric-api-go,num_dependents_deps.dev:0 +github.com/vladcosorg/action-s3-cloudfront-smart-deploy, github.com/vladd8050/rc-slider-reversible,num_dependents_deps.dev:0 github.com/vladdenisov/spotify-proxy,num_dependents_deps.dev:0 github.com/vladdenisov/ytmusic-api,num_dependents_deps.dev:0 @@ -1175868,6 +1196852,8 @@ github.com/vladimir-kotikov/duckdns-updater,num_dependents_deps.dev:0 github.com/vladimir-kraus/numcube, github.com/vladimir-kuchinskiy/golang-arch,num_dependents_deps.dev:0 github.com/vladimir-kuchinskiy/http-rest-api-golang,num_dependents_deps.dev:0 +github.com/vladimir-rise/test-publish, +github.com/vladimir-rise/version-action, github.com/vladimir-rom/gokql,num_dependents_deps.dev:0 github.com/vladimir-rom/logformer,num_dependents_deps.dev:0 github.com/vladimir-shalaev22/z1-utils,num_dependents_deps.dev:0 @@ -1176019,6 +1197005,7 @@ github.com/vladm3/vm.alloy-override,num_dependents_deps.dev:0 github.com/vladmak/fastchat,num_dependents_deps.dev:0 github.com/vladmak/golearnprojects,num_dependents_deps.dev:0 github.com/vladmak/serviceapi,num_dependents_deps.dev:0 +github.com/vladmalynych/date-checker, github.com/vladmandic/face-api,num_dependents_deps.dev:0 github.com/vladmandic/human,num_dependents_deps.dev:0 github.com/vladmandic/piacme,num_dependents_deps.dev:0 @@ -1176063,6 +1197050,7 @@ github.com/vladop/rc-simple-pagination,num_dependents_deps.dev:0 github.com/vladop/react-timepick,num_dependents_deps.dev:0 github.com/vladopaets/puppeteer,num_dependents_deps.dev:0 github.com/vladopaets/puppeteer-extra,num_dependents_deps.dev:0 +github.com/vladopajic/go-test-coverage, github.com/vladosby/inject-sass-imports-loader,num_dependents_deps.dev:0 github.com/vladosik1337/golang,num_dependents_deps.dev:0 github.com/vladotesanovic/mongopubsub,num_dependents_deps.dev:0 @@ -1176168,6 +1197156,7 @@ github.com/vlanemcev/flipper-plugin-reselect-debugger,num_dependents_deps.dev:0 github.com/vlanemcev/reselect-debugger-flipper,num_dependents_deps.dev:0 github.com/vlang/awesome-v,criticality_score:0.321770 github.com/vlang/gitly,criticality_score:0.335720 +github.com/vlang/setup-v, github.com/vlang/ui,criticality_score:0.408900 github.com/vlang/v,"criticality_score:0.684860,num_dependents_deps.dev:0" github.com/vlang/ved,criticality_score:0.352090 @@ -1176213,6 +1197202,7 @@ github.com/vlasovskikh/pyxdu, github.com/vlastikcz/grunt-jasmine-node,num_dependents_deps.dev:0 github.com/vlasy/purest, github.com/vlatapie/mso-ng2-wizard,num_dependents_deps.dev:0 +github.com/vlaurin/action-ghcr-prune, github.com/vlaurin/hamcrest-test,num_dependents_deps.dev:0 github.com/vlavella/grunt-angular-template-inline-js, github.com/vlavellauruit/angular-template-inline-js,num_dependents_deps.dev:0 @@ -1176328,6 +1197318,7 @@ github.com/vliubezny/gnotify,num_dependents_deps.dev:0 github.com/vliubezny/gstore,num_dependents_deps.dev:0 github.com/vliubko/write-docker-actions,num_dependents_deps.dev:0 github.com/vliz-be-opsci/py-xmlasdict, +github.com/vliz-be-opsci/pylode-to-pages, github.com/vlizanae/annxious-bot, github.com/vlizanae/pyntual, github.com/vlkalashnikov/http-utils,num_dependents_deps.dev:0 @@ -1176459,6 +1197450,15 @@ github.com/vm6502q/pyqrack, github.com/vm6502q/qiskit-qrack-provider, github.com/vm75/sanscript.js,num_dependents_deps.dev:0 github.com/vmachacek/sql-stream-store-browser,num_dependents_deps.dev:0 +github.com/vmactions/cf-tunnel, +github.com/vmactions/dragonflybsd-vm, +github.com/vmactions/freebsd-vm, +github.com/vmactions/netbsd-vm, +github.com/vmactions/ngrok-tunnel, +github.com/vmactions/omnios-vm, +github.com/vmactions/openbsd-vm, +github.com/vmactions/solaris-vm, +github.com/vmactions/template-render, github.com/vmadman/cli,num_dependents_deps.dev:0 github.com/vmadman/flexion-coding-challenge,num_dependents_deps.dev:0 github.com/vmadman/generator-luke-common,num_dependents_deps.dev:0 @@ -1176678,6 +1197678,7 @@ github.com/vmolsa/rtc-stream,num_dependents_deps.dev:0 github.com/vmolsa/stream-ng,num_dependents_deps.dev:0 github.com/vmolsa/webrtc-native,num_dependents_deps.dev:0 github.com/vmonaco/pohmm, +github.com/vmonjaret/should-run-github-action, github.com/vmontagh/solidity-analyzer,num_dependents_deps.dev:0 github.com/vmontanheiro/keystore-password-recovery,num_dependents_deps.dev:0 github.com/vmontanheiro/wasm-ring-buffer,num_dependents_deps.dev:0 @@ -1176730,6 +1197731,7 @@ github.com/vmware-labs/marketplace-cli,num_dependents_deps.dev:0 github.com/vmware-labs/reconciler-runtime,num_dependents_deps.dev:1 github.com/vmware-labs/service-bindings,num_dependents_deps.dev:0 github.com/vmware-labs/telemetry-peak-analyzer, +github.com/vmware-labs/vmware-image-builder-action, github.com/vmware-labs/yaml-jsonpath,num_dependents_deps.dev:0 github.com/vmware-labs/yaml-jsonpointer,num_dependents_deps.dev:0 github.com/vmware-samples/incident-reporting,num_dependents_deps.dev:0 @@ -1176989,6 +1197991,7 @@ github.com/vnmc/shift-esotope,num_dependents_deps.dev:0 github.com/vnmylove/feathers-solr-node,num_dependents_deps.dev:0 github.com/vnnox/nova-ui,num_dependents_deps.dev:0 github.com/vnnv/smart,num_dependents_deps.dev:0 +github.com/vnoctem/productive-box-in-readme, github.com/vnoitkumar/create-react-function,num_dependents_deps.dev:0 github.com/vnoitkumar/create-react-module,num_dependents_deps.dev:0 github.com/vnoitkumar/create-react-redux-module,num_dependents_deps.dev:0 @@ -1177001,6 +1198004,7 @@ github.com/vnovick/classNameGenerator,num_dependents_deps.dev:0 github.com/vnovick/fp-utils,num_dependents_deps.dev:0 github.com/vnovick/smarthome-manager,num_dependents_deps.dev:0 github.com/vnphanquang/dry-axios,num_dependents_deps.dev:0 +github.com/vnphanquang/monkeytype-readme, github.com/vnpy/vnpy,criticality_score:0.671300 github.com/vnseattle/newsfeed9x,num_dependents_deps.dev:0 github.com/vnssmorales/SCL008-md-links,num_dependents_deps.dev:0 @@ -1177241,6 +1198245,7 @@ github.com/voiceflow/backend-utils,num_dependents_deps.dev:0 github.com/voiceflow/body-parser,num_dependents_deps.dev:0 github.com/voiceflow/commitlint-config, github.com/voiceflow/common, +github.com/voiceflow/draft-pr, github.com/voiceflow/general-runtime,num_dependents_deps.dev:0 github.com/voiceflow/libs,num_dependents_deps.dev:30 github.com/voiceflow/logger,num_dependents_deps.dev:12 @@ -1177573,10 +1198578,16 @@ github.com/vokrik/sqs-forwarder, github.com/vokrik/sqs-to-http,num_dependents_deps.dev:0 github.com/voku/Arrayy,criticality_score:0.426800 github.com/voku/anti-xss,criticality_score:0.425200 +github.com/voku/email-check, github.com/voku/node-lettering,num_dependents_deps.dev:0 github.com/voku/portable-ascii, github.com/voku/portable-utf8,criticality_score:0.466380 +github.com/voku/session2db, github.com/voku/simple-cache, +github.com/voku/simple-mysqli, +github.com/voku/simple_html_dom, +github.com/voku/stringy, +github.com/voku/urlify, github.com/vokus/vokus,num_dependents_deps.dev:198 github.com/vol4ikman/responsiva,num_dependents_deps.dev:0 github.com/vol4ok/core.js, @@ -1177669,6 +1198680,7 @@ github.com/volebo/express-mw-lang, github.com/volebo/hubot-vk,num_dependents_deps.dev:0 github.com/volebo/volebo-express,num_dependents_deps.dev:0 github.com/volem/secure-callback,num_dependents_deps.dev:8 +github.com/volesen/setup-skaffold, github.com/voletiswaroop/react-easy-tabs,num_dependents_deps.dev:0 github.com/voletiswaroop/react-material-ui-form,num_dependents_deps.dev:0 github.com/voletiswaroop/react-tabs-lite,num_dependents_deps.dev:0 @@ -1177711,6 +1198723,7 @@ github.com/volkanakbayir/vanilla-dnd,num_dependents_deps.dev:0 github.com/volkancakil/create-react-app,num_dependents_deps.dev:0 github.com/volkanceylan/serenity,num_dependents_deps.dev:0 github.com/volkangurel/aws-deployer-webpack-plugin,num_dependents_deps.dev:0 +github.com/volkanleo/check-dependencies-in-pr-action, github.com/volkanozsarac/EzGM, github.com/volkansengul/mystant-tracker, github.com/volkansengul/react-example-todo,num_dependents_deps.dev:0 @@ -1178055,6 +1199068,9 @@ github.com/volodimyr/1million,num_dependents_deps.dev:0 github.com/volodya-lombrozo/bunny,num_dependents_deps.dev:0 github.com/volodya-lombrozo/conventional-commit-linter,num_dependents_deps.dev:0 github.com/volodya-lombrozo/hg-revision-plugin,num_dependents_deps.dev:0 +github.com/volodymyr-borodin/nuget-package-version, +github.com/volodymyr-borodin/setup-ssh-key, +github.com/volodymyr-borodin/ssh-remove-run, github.com/volodymyr-lian/gulp-miniprogram-path-alias,num_dependents_deps.dev:0 github.com/volodymyr-lian/miniprogram-wxios,num_dependents_deps.dev:0 github.com/volodymyr-lian/protobuf-webpack-plugin,num_dependents_deps.dev:0 @@ -1178087,6 +1199103,7 @@ github.com/volons/volons,num_dependents_deps.dev:0 github.com/volontar/node-volontar,num_dependents_deps.dev:0 github.com/volontariat/translation_client,num_dependents_deps.dev:0 github.com/volontariat/voluntary,num_dependents_deps.dev:3 +github.com/voloshinskii/localize-ai, github.com/volosoft/jtable,criticality_score:0.298580 github.com/volox/node-simple-logger,num_dependents_deps.dev:0 github.com/volox/node-social-post-wrapper,num_dependents_deps.dev:0 @@ -1178099,6 +1199116,7 @@ github.com/volser/md-to-quill-delta,num_dependents_deps.dev:0 github.com/volser/quill,num_dependents_deps.dev:0 github.com/volser/quill-delta-to-html,num_dependents_deps.dev:0 github.com/volser/quill-table-ui,num_dependents_deps.dev:0 +github.com/volta-cli/action, github.com/volta-cli/volta,criticality_score:0.492640 github.com/voltace/browser-cookies,num_dependents_deps.dev:306 github.com/voltace/browser-cookies-shim,num_dependents_deps.dev:0 @@ -1178385,6 +1199403,7 @@ github.com/voogryk/cbp-vue-toastr,num_dependents_deps.dev:0 github.com/voogryk/generator-loopback-kenx-migration,num_dependents_deps.dev:0 github.com/voogryk/underscore-matrix,num_dependents_deps.dev:0 github.com/vooids/subscrape,num_dependents_deps.dev:0 +github.com/vookimedlo/setup-regctl, github.com/voolh/game-characters,num_dependents_deps.dev:0 github.com/voolu/vcli, github.com/voomflights/react-native-adyen,num_dependents_deps.dev:0 @@ -1178409,6 +1199428,7 @@ github.com/voorhoede/demo-viewer,num_dependents_deps.dev:0 github.com/voorhoede/email-template-guide,num_dependents_deps.dev:0 github.com/voorhoede/fastatic,num_dependents_deps.dev:0 github.com/voorhoede/front-end-guide,num_dependents_deps.dev:0 +github.com/voorhoede/get-netlify-url, github.com/voorhoede/nuxt-twa-module, github.com/voorhoede/plek,num_dependents_deps.dev:0 github.com/voorhoede/tiny-shields,num_dependents_deps.dev:0 @@ -1178620,6 +1199640,7 @@ github.com/vortech-digital-pioneers/metis,num_dependents_deps.dev:0 github.com/vortechron/v-essentials, github.com/vortechsa/python-sdk, github.com/vorteg/platzom,num_dependents_deps.dev:0 +github.com/vortegon/github-action-ansible-tower, github.com/vorteil/direktiv,num_dependents_deps.dev:0 github.com/vorteil/direktiv-apps,num_dependents_deps.dev:0 github.com/vorteil/direktiv-listeners,num_dependents_deps.dev:0 @@ -1178717,6 +1199738,9 @@ github.com/vottuscode/response-spec, github.com/votuanphong1983/oauth2-wrapper,num_dependents_deps.dev:0 github.com/vouch-dev/vouch,num_dependents_deps.dev:0 github.com/vouch-dev/vouch-rs,num_dependents_deps.dev:0 +github.com/vouch-opensource/datomic-ions-deploy, +github.com/vouch-opensource/linuxkit-build, +github.com/vouch-opensource/tools.deps-build, github.com/vouch/vouch-proxy,"criticality_score:0.529240,num_dependents_deps.dev:2" github.com/vouched/vouched-android,num_dependents_deps.dev:0 github.com/vouched/vouched-java,num_dependents_deps.dev:0 @@ -1178922,6 +1199946,8 @@ github.com/voxgig/seneca-srv-admin,num_dependents_deps.dev:0 github.com/voxgig/seneca-user-telemetry,num_dependents_deps.dev:0 github.com/voxgig/voxgig,num_dependents_deps.dev:0 github.com/voxgig/vxg,num_dependents_deps.dev:0 +github.com/voxic/simpleKPSAction, +github.com/voxie-actions/no-merge-commits, github.com/voxik/abrt-ruby,num_dependents_deps.dev:0 github.com/voximplant/apiclient-nodejs,num_dependents_deps.dev:0 github.com/voximplant/kit-functions-sdk,num_dependents_deps.dev:0 @@ -1178943,6 +1199969,7 @@ github.com/voxmedia/autotune,criticality_score:0.314770 github.com/voxmedia/convert-rich-text, github.com/voxmedia/dfp-sync, github.com/voxmedia/eslint-config-voxproduct,num_dependents_deps.dev:0 +github.com/voxmedia/github-action-slack-notify-build, github.com/voxmedia/identity-library,num_dependents_deps.dev:0 github.com/voxmedia/sqoopy, github.com/voxmedia/transpose, @@ -1178977,6 +1200004,7 @@ github.com/voxpelli/node-tema,num_dependents_deps.dev:0 github.com/voxpelli/node-vp-express-wrapper,num_dependents_deps.dev:0 github.com/voxpelli/node-vptweestream,num_dependents_deps.dev:0 github.com/voxpelli/node-webmention-testpinger,num_dependents_deps.dev:0 +github.com/voxpelli/pony-cause, github.com/voxpelli/renovate-config-voxpelli,num_dependents_deps.dev:0 github.com/voxpelli/sass-color-helpers,num_dependents_deps.dev:0 github.com/voxpelli/semver-set,num_dependents_deps.dev:8 @@ -1179305,6 +1200333,7 @@ github.com/vqun/vue-routing,num_dependents_deps.dev:0 github.com/vqun/x-react-router, github.com/vr-f/sqlparser,num_dependents_deps.dev:0 github.com/vr-fox/videojs7-vimeo,num_dependents_deps.dev:0 +github.com/vr-sim-pro/checkout, github.com/vr00mm/git-semv,num_dependents_deps.dev:0 github.com/vr1087/bio_util, github.com/vr2262/asyncio-portier, @@ -1179466,6 +1200495,7 @@ github.com/vrn-deco/vrn-cli,num_dependents_deps.dev:10 github.com/vrn-dev/-vrn-dev-ronintech-printer-service,num_dependents_deps.dev:0 github.com/vrn-dev/ng6-socket-io,num_dependents_deps.dev:0 github.com/vrnDhmn/react-native-scaling, +github.com/vrnithinkumar/latest-deployment-sha, github.com/vrnktstn/first-repo,num_dependents_deps.dev:0 github.com/vrnmthr/opa,num_dependents_deps.dev:0 github.com/vrnvu/batch-connector,num_dependents_deps.dev:0 @@ -1179506,6 +1200536,7 @@ github.com/vrothberg/psgo,num_dependents_deps.dev:0 github.com/vrothberg/vgrep,"criticality_score:0.443460,num_dependents_deps.dev:0" github.com/vroudge/jest-fuck,num_dependents_deps.dev:0 github.com/vrouet/i18n-abide,num_dependents_deps.dev:0 +github.com/vroy/gha-kotlin-linter, github.com/vroy/python-sengled-client, github.com/vrpn/vrpn,criticality_score:0.495900 github.com/vrras/vfire,num_dependents_deps.dev:0 @@ -1179515,6 +1200546,8 @@ github.com/vrslev/base-telegram-bot, github.com/vrslev/base-vk-api, github.com/vrslev/ikea-api-client, github.com/vrslev/ikea-api-wrapped, +github.com/vrslev/pre-commit-autoupdate, +github.com/vrsoftbr/search-text, github.com/vrsource/vrsource-tslint-rules,num_dependents_deps.dev:30 github.com/vrtadmin/FIRST-plugin-ida, github.com/vrtbl/aspen,num_dependents_deps.dev:0 @@ -1179553,6 +1200586,8 @@ github.com/vrushalifoundation/googlechart, github.com/vrushalifoundation/vrsoft,num_dependents_deps.dev:0 github.com/vrushalifoundation/vrushalisoft, github.com/vrusinov/codewars,num_dependents_deps.dev:0 +github.com/vrutkovs/action-bin-container, +github.com/vrutkovs/action-s2i, github.com/vrutkovs/beehive, github.com/vrutkovs/go-todoist,num_dependents_deps.dev:0 github.com/vrutkovs/k8s-podhunt,num_dependents_deps.dev:0 @@ -1179628,6 +1200663,7 @@ github.com/vsantiago113/RuckusVirtualSmartZoneAPIClient, github.com/vsantos/gophercon,num_dependents_deps.dev:0 github.com/vsantosalmeida/go-app-engine-demo,num_dependents_deps.dev:0 github.com/vsantosalmeida/go-grpc-server,num_dependents_deps.dev:0 +github.com/vsapan/docker-image-id, github.com/vsapigura/gulp-can,num_dependents_deps.dev:0 github.com/vsapronov/gopoetry,num_dependents_deps.dev:0 github.com/vsapronov/yaml,num_dependents_deps.dev:1 @@ -1179929,6 +1200965,7 @@ github.com/vsnikkil/react-quantity-picker, github.com/vsnthdev/samaya,num_dependents_deps.dev:0 github.com/vsoaresbruno/my-ip,num_dependents_deps.dev:0 github.com/vsoch/TtoZ, +github.com/vsoch/action-updater, github.com/vsoch/artbrain, github.com/vsoch/brain-browser,num_dependents_deps.dev:0 github.com/vsoch/brainart, @@ -1179952,6 +1200989,7 @@ github.com/vsoch/ohbm, github.com/vsoch/oras-python, github.com/vsoch/oscookie, github.com/vsoch/pokemon, +github.com/vsoch/pull-request-action, github.com/vsoch/puzzles, github.com/vsoch/pybraincompare, github.com/vsoch/qme, @@ -1180067,6 +1201105,7 @@ github.com/vsubbotskyy/React-dotdotdot,num_dependents_deps.dev:0 github.com/vsubbotskyy/find-my-iphone-node,num_dependents_deps.dev:0 github.com/vsubbotskyy/storybook-router, github.com/vsudilov/flask-consulate, +github.com/vsuhanov/firebase-action, github.com/vsuharnikov/sypexgeo-node,num_dependents_deps.dev:0 github.com/vsukhor/cytoskeleton-analyser, github.com/vsulak/sails-hook-validator,num_dependents_deps.dev:0 @@ -1180145,6 +1201184,7 @@ github.com/vtbassmatt/azf-wsgi, github.com/vtbassmatt/django-commander, github.com/vtbassmatt/django-expression-fields, github.com/vtcaregorodtcev/a,num_dependents_deps.dev:0 +github.com/vtcaregorodtcev/delete-issue, github.com/vtcp-foundation/observerd,num_dependents_deps.dev:0 github.com/vteams/open-source-billing,criticality_score:0.381080 github.com/vtedndx/qq_weibo,num_dependents_deps.dev:0 @@ -1180165,12 +1201205,17 @@ github.com/vtex-components/box,num_dependents_deps.dev:0 github.com/vtex-components/button,num_dependents_deps.dev:0 github.com/vtex-components/drawer,num_dependents_deps.dev:8 github.com/vtex-gocommerce/tachyons-ui,num_dependents_deps.dev:0 +github.com/vtex/action-io-app-test, +github.com/vtex/action-lint, +github.com/vtex/action-sonarqube, +github.com/vtex/action-toolbelt, github.com/vtex/address-form,num_dependents_deps.dev:0 github.com/vtex/admin-iframe-compatibility,num_dependents_deps.dev:0 github.com/vtex/admin-ui,num_dependents_deps.dev:0 github.com/vtex/angular-locale,num_dependents_deps.dev:0 github.com/vtex/apps-client-node,num_dependents_deps.dev:0 github.com/vtex/axios-retry,num_dependents_deps.dev:0 +github.com/vtex/branch-watcher-action, github.com/vtex/brand-ui,num_dependents_deps.dev:0 github.com/vtex/cli-plugin-abtest,num_dependents_deps.dev:4 github.com/vtex/cli-plugin-add,num_dependents_deps.dev:0 @@ -1180356,6 +1201401,8 @@ github.com/vtuanjs/sapo-client,num_dependents_deps.dev:0 github.com/vtudorache/xldt, github.com/vtulluru/node-red-contrib-oracledb-mod,num_dependents_deps.dev:0 github.com/vtunr/VTunit, +github.com/vturb/bit-actions, +github.com/vturb/bit-command, github.com/vturrisi/solo-learn, github.com/vturrisi/torchfuel, github.com/vtvvv/x-ueditor,num_dependents_deps.dev:0 @@ -1180407,6 +1201454,7 @@ github.com/vudash/vudash,num_dependents_deps.dev:0 github.com/vudduu/key-enum,num_dependents_deps.dev:0 github.com/vudknguyen/buddhist-christian-era-converter,num_dependents_deps.dev:0 github.com/vudknguyen/npm-audit-plus,num_dependents_deps.dev:0 +github.com/vudodov/deploy-hugo-to-the-firebase, github.com/vudung18110263/practice_go,num_dependents_deps.dev:0 github.com/vudv93/helloworld,num_dependents_deps.dev:0 github.com/vue-a11y/eslint-plugin-vuejs-accessibility, @@ -1180934,6 +1201982,7 @@ github.com/vuexpress/vuexpress,num_dependents_deps.dev:0 github.com/vuext/vue-data-table-column,num_dependents_deps.dev:0 github.com/vuezz/zero-ui,num_dependents_deps.dev:0 github.com/vuf/asar-lite,num_dependents_deps.dev:0 +github.com/vufa/arch-makepkg-action, github.com/vugar005/ngx-awesome-uploader,num_dependents_deps.dev:0 github.com/vugar005/ngx-router-animations,num_dependents_deps.dev:0 github.com/vugar005/nt-agile-components,num_dependents_deps.dev:0 @@ -1180965,6 +1202014,7 @@ github.com/vuk/cordova-plugin-notch,num_dependents_deps.dev:0 github.com/vuk/cordova-power-saver,num_dependents_deps.dev:0 github.com/vuk/vokativ-js,num_dependents_deps.dev:0 github.com/vuk1066/freecodecamp,num_dependents_deps.dev:0 +github.com/vukan-markovic/Github-Android-Action, github.com/vukan71/vukan-app-stencils,num_dependents_deps.dev:0 github.com/vukanac/number-formatter,num_dependents_deps.dev:0 github.com/vukani-dev/improvement-roll-service,num_dependents_deps.dev:0 @@ -1181066,6 +1202116,7 @@ github.com/vulpemventures/liquidjs-lib,num_dependents_deps.dev:5 github.com/vulpemventures/marina-provider, github.com/vulpemventures/nigiri,num_dependents_deps.dev:0 github.com/vulpemventures/nigiri-chopsticks,num_dependents_deps.dev:0 +github.com/vulpemventures/nigiri-github-action, github.com/vulpemventures/secp256k1-zkp,num_dependents_deps.dev:8 github.com/vulpemventures/slip77,num_dependents_deps.dev:2 github.com/vulpemventures/taxi-protobuf,num_dependents_deps.dev:0 @@ -1181087,6 +1202138,7 @@ github.com/vulppine/fotoden,num_dependents_deps.dev:0 github.com/vulsio/go-cti,num_dependents_deps.dev:0 github.com/vulsio/go-exploitdb,num_dependents_deps.dev:17 github.com/vulski/dong,num_dependents_deps.dev:0 +github.com/vulteria/vulrep-cli, github.com/vultix/VxComponents,num_dependents_deps.dev:0 github.com/vultix/ts-result,num_dependents_deps.dev:0 github.com/vultix/ts-results, @@ -1181392,6 +1202444,7 @@ github.com/vvatanabe/gitb,num_dependents_deps.dev:0 github.com/vvatanabe/go-backlog,num_dependents_deps.dev:0 github.com/vvatanabe/go-git-http-transfer,num_dependents_deps.dev:0 github.com/vvatanabe/tinycopy,num_dependents_deps.dev:0 +github.com/vvatelot/rapidapi-openapi-github-action, github.com/vvb/cowin_checker,num_dependents_deps.dev:0 github.com/vvb2060/curl-android,num_dependents_deps.dev:0 github.com/vvb2060/dobby-android,num_dependents_deps.dev:0 @@ -1181493,6 +1202546,8 @@ github.com/vvolodin/angular-zeroclipboard,num_dependents_deps.dev:0 github.com/vvolodin/jquery-fullscreen-plugin,num_dependents_deps.dev:0 github.com/vvolodin/jquery.panzoom,num_dependents_deps.dev:0 github.com/vvolodin/resx-to-ts-json,num_dependents_deps.dev:0 +github.com/vvoloshchuk777/check-conventional-commits, +github.com/vvoloshchuk777/check-conventional-commits-action, github.com/vvondra/good-kinesis-reporter,num_dependents_deps.dev:0 github.com/vvopenka/arduino-serial-messenger,num_dependents_deps.dev:0 github.com/vvorld/getid-web-sdk,num_dependents_deps.dev:0 @@ -1181545,6 +1202600,7 @@ github.com/vvvm23/glow, github.com/vvvm23/ptpt, github.com/vvvmax/unitegallery,num_dependents_deps.dev:0 github.com/vvvroom/js-utilities,num_dependents_deps.dev:0 +github.com/vvvv/PublishVLNuget, github.com/vvvvalvalval/promise-dag,num_dependents_deps.dev:0 github.com/vvvvv/delog,num_dependents_deps.dev:0 github.com/vvvvv/safeulid,num_dependents_deps.dev:0 @@ -1181564,6 +1202620,7 @@ github.com/vwedesam/Cron-to-human, github.com/vwedesam/express-cart-middleware, github.com/vwedesam/send-analytics, github.com/vweevers/absolute-glob,num_dependents_deps.dev:0 +github.com/vweevers/additional-tags-action, github.com/vweevers/anim,num_dependents_deps.dev:0 github.com/vweevers/apv,num_dependents_deps.dev:0 github.com/vweevers/assembly-source,num_dependents_deps.dev:0 @@ -1181593,6 +1202650,7 @@ github.com/vweevers/fs-read-exactly,num_dependents_deps.dev:26 github.com/vweevers/gctime,num_dependents_deps.dev:0 github.com/vweevers/github-label-preset,num_dependents_deps.dev:0 github.com/vweevers/hallmark,num_dependents_deps.dev:0 +github.com/vweevers/hallmark-lint-action, github.com/vweevers/http-graceful,num_dependents_deps.dev:0 github.com/vweevers/hyperloglog32,num_dependents_deps.dev:2 github.com/vweevers/is-git-branch-name-valid,num_dependents_deps.dev:4 @@ -1181614,6 +1202672,7 @@ github.com/vweevers/map-tabular-keys,num_dependents_deps.dev:2 github.com/vweevers/maybe-combine-errors,num_dependents_deps.dev:2 github.com/vweevers/mini-type-decorator,num_dependents_deps.dev:0 github.com/vweevers/monotonic-lexicographic-timestamp,num_dependents_deps.dev:0 +github.com/vweevers/multi-checkout-action, github.com/vweevers/murmur32,num_dependents_deps.dev:4 github.com/vweevers/nanoresource-collection,num_dependents_deps.dev:0 github.com/vweevers/napi-functions,num_dependents_deps.dev:0 @@ -1181731,6 +1202790,7 @@ github.com/vxcontrol/golua,num_dependents_deps.dev:2 github.com/vxcontrol/luar,num_dependents_deps.dev:1 github.com/vxcontrol/ncform,num_dependents_deps.dev:0 github.com/vxcontrol/rancher-letsencrypt,num_dependents_deps.dev:0 +github.com/vxcontrol/run-on-arch-action, github.com/vxe/libvxe-py, github.com/vxer-lee/golang_handbook,num_dependents_deps.dev:0 github.com/vxggangxv/redux-toolkit-saga-combinator,num_dependents_deps.dev:0 @@ -1181805,6 +1202865,7 @@ github.com/vyakymenko/dipi,num_dependents_deps.dev:0 github.com/vyakymenko/gulp-qar,num_dependents_deps.dev:0 github.com/vyakymenko/qvet,num_dependents_deps.dev:0 github.com/vyalow/yasv, +github.com/vyan024/file-regex-replace-2023, github.com/vyanjs/vyan,num_dependents_deps.dev:0 github.com/vyapp/vy, github.com/vyapp/vyirc, @@ -1182215,6 +1203276,7 @@ github.com/w13b3/abstract_base_decorator, github.com/w156ww/pf-xiaochengxu-pvuv,num_dependents_deps.dev:0 github.com/w1991668899/blog,num_dependents_deps.dev:0 github.com/w1ck3dg0ph3r/go-errors,num_dependents_deps.dev:0 +github.com/w1huang/action-sqlfluff, github.com/w1kee/jsondb,num_dependents_deps.dev:0 github.com/w1ldzer0/gauge.js,num_dependents_deps.dev:0 github.com/w1ll1am23/pubnubsub-handler, @@ -1182282,6 +1203344,7 @@ github.com/w2solutions/react-helper,num_dependents_deps.dev:0 github.com/w2sv/asciiplot, github.com/w3-3w/simple-co,num_dependents_deps.dev:0 github.com/w3286879/istrong-utils,num_dependents_deps.dev:0 +github.com/w33ble/architect-npmrc-action, github.com/w33ble/auto-authors,num_dependents_deps.dev:0 github.com/w33ble/carafe,num_dependents_deps.dev:4 github.com/w33ble/emiirc,num_dependents_deps.dev:0 @@ -1182289,6 +1203352,7 @@ github.com/w33ble/emo,num_dependents_deps.dev:0 github.com/w33ble/emoticon-data,num_dependents_deps.dev:2 github.com/w33ble/eslint-config-stencil,num_dependents_deps.dev:0 github.com/w33ble/esqueue,num_dependents_deps.dev:0 +github.com/w33ble/graphql-pluck-action, github.com/w33ble/gravy-tap,num_dependents_deps.dev:0 github.com/w33ble/history-extra,num_dependents_deps.dev:0 github.com/w33ble/horsey-sauce,num_dependents_deps.dev:0 @@ -1182393,6 +1203457,8 @@ github.com/w3dot0/node-har-utils,num_dependents_deps.dev:0 github.com/w3dot0/phantom2-render-stream,num_dependents_deps.dev:0 github.com/w3ever/mongoose-apiquery-parse,num_dependents_deps.dev:0 github.com/w3f/General-Grants-Program,criticality_score:0.428130 +github.com/w3f/action-create-issues-for-old-files, +github.com/w3f/action-find-old-files, github.com/w3f/bls,num_dependents_deps.dev:0 github.com/w3f/cmd-ts, github.com/w3f/components-ts, @@ -1182448,6 +1203514,9 @@ github.com/w3reality/three-laser-pointer,num_dependents_deps.dev:0 github.com/w3reality/threelet,num_dependents_deps.dev:0 github.com/w3reality/wasm-mt,num_dependents_deps.dev:1 github.com/w3reality/webpack-var2esm-plugin,num_dependents_deps.dev:0 +github.com/w3security/action-update-dockerurl, +github.com/w3security/driftctl-action, +github.com/w3security/release-notes-preview, github.com/w3shaman/jquery-coolautosuggest,num_dependents_deps.dev:0 github.com/w3shaman/jquery-coolfieldset,num_dependents_deps.dev:0 github.com/w3shaman/jquery-fetchrow,num_dependents_deps.dev:0 @@ -1182571,7 +1203640,9 @@ github.com/w95/linking, github.com/w995928555/d-copy,num_dependents_deps.dev:0 github.com/w995928555/hf-iaas,num_dependents_deps.dev:0 github.com/w9jds/firebase-action,criticality_score:0.423630 +github.com/w9jds/firebase-trigger, github.com/w9jds/node-esi-stackdriver,num_dependents_deps.dev:0 +github.com/w9jds/setup-firebase, github.com/wBanano/wban-bep20, github.com/wCodeBase/tunnel-proxy, github.com/wCodeBase/wToolkit,num_dependents_deps.dev:0 @@ -1182656,6 +1203727,7 @@ github.com/wabarc/archive.org,num_dependents_deps.dev:1 github.com/wabarc/archiver,num_dependents_deps.dev:8 github.com/wabarc/broker,num_dependents_deps.dev:0 github.com/wabarc/cairn,num_dependents_deps.dev:8 +github.com/wabarc/distributor, github.com/wabarc/go-anonfile,num_dependents_deps.dev:1 github.com/wabarc/go-catbox,num_dependents_deps.dev:1 github.com/wabarc/go-mastodon,num_dependents_deps.dev:0 @@ -1182665,6 +1203737,7 @@ github.com/wabarc/ipfs-pinner,num_dependents_deps.dev:4 github.com/wabarc/logger,num_dependents_deps.dev:2 github.com/wabarc/memento,num_dependents_deps.dev:2 github.com/wabarc/on-cloudflare,num_dependents_deps.dev:0 +github.com/wabarc/on-github, github.com/wabarc/packer,num_dependents_deps.dev:0 github.com/wabarc/playback,num_dependents_deps.dev:1 github.com/wabarc/screenshot,num_dependents_deps.dev:4 @@ -1182727,6 +1203800,9 @@ github.com/wacul/angular2-html-template-loader,num_dependents_deps.dev:0 github.com/wad-jet/connect-consul,num_dependents_deps.dev:0 github.com/wad-jet/connect-vault,num_dependents_deps.dev:0 github.com/wad-jet/express-dependencies,num_dependents_deps.dev:0 +github.com/wad-kwonyunhak/action-nx-affected-list, +github.com/wadackel/files-sync-action, +github.com/wadackel/github-pr-diff-tree, github.com/wadackel/puppeteer-element2selector,num_dependents_deps.dev:50 github.com/wadadanet/svg-pack-js,num_dependents_deps.dev:0 github.com/wadahana/go-chart,num_dependents_deps.dev:0 @@ -1182739,6 +1203815,7 @@ github.com/wadahkode/server,num_dependents_deps.dev:0 github.com/wadamek65/config-pyrser, github.com/wadamek65/eslint-config-wa,num_dependents_deps.dev:0 github.com/wadamek65/relay-mongoose,num_dependents_deps.dev:0 +github.com/wadason/kubeval-kz-outputs-action, github.com/wadda/gps3, github.com/wadday/vinc-slider,num_dependents_deps.dev:0 github.com/wade-fs/golang-tutorial,num_dependents_deps.dev:0 @@ -1182794,7 +1203871,9 @@ github.com/wadewegner/sfdx-oss-plugin,num_dependents_deps.dev:0 github.com/wadewegner/sfdx-wsdl2apex-plugin,num_dependents_deps.dev:0 github.com/wadewegner/thatconf,num_dependents_deps.dev:0 github.com/wadewooldridge/apples_against_humanity,num_dependents_deps.dev:0 +github.com/wadeww/send-email-action, github.com/wadewyuan/go-tools,num_dependents_deps.dev:0 +github.com/wadexu007/aliyun-cli-action, github.com/wadey/go-audit,num_dependents_deps.dev:0 github.com/wadey/node-microtime,num_dependents_deps.dev:766 github.com/wadey/node-ostrich, @@ -1182834,6 +1203913,7 @@ github.com/waelio/quasar-app-extension-waelio,num_dependents_deps.dev:0 github.com/waelio/utils,num_dependents_deps.dev:0 github.com/waelio/waelio-utils,num_dependents_deps.dev:0 github.com/waeljammal/ng-json-schema-form,num_dependents_deps.dev:0 +github.com/waeltken/get-application-insights-key-action, github.com/waex97/empty-node-module,num_dependents_deps.dev:0 github.com/waf-project/waf,criticality_score:0.383520 github.com/wafaking/goalgorithm,num_dependents_deps.dev:0 @@ -1182962,6 +1204042,7 @@ github.com/wagnerpaz/react-dynamic-grid-system, github.com/wagnerperin/backgen,num_dependents_deps.dev:0 github.com/wagnersza/docker-registry-driver-swift-glb, github.com/wagoid/busca-cep,num_dependents_deps.dev:0 +github.com/wagoid/commitlint-github-action, github.com/wagoid/grunt-travis-node-updater,num_dependents_deps.dev:0 github.com/wagoid/version-writer,num_dependents_deps.dev:0 github.com/wagoner47/clhs_py, @@ -1182976,6 +1204057,7 @@ github.com/wagoodman/habitus,num_dependents_deps.dev:0 github.com/wagoodman/jotframe,num_dependents_deps.dev:0 github.com/wagslane/go-rabbitmq,num_dependents_deps.dev:1 github.com/wagslane/go-tinytime,num_dependents_deps.dev:0 +github.com/wagstyle/dooray-action.post-task, github.com/wagtail/bakerydemo,criticality_score:0.462900 github.com/wagtail/django-modelcluster,criticality_score:0.397810 github.com/wagtail/django-permissionedforms, @@ -1183045,6 +1204127,7 @@ github.com/wahidinaji/go-say-hello,num_dependents_deps.dev:0 github.com/wahidmagdy/pixel-banner,num_dependents_deps.dev:0 github.com/wahidsadik/nodejs-avro-phonetic,num_dependents_deps.dev:0 github.com/wahidshafique/better-theme-get,num_dependents_deps.dev:0 +github.com/wahinekai/actions-publish-nuget, github.com/wahjay/react-twitter-gifpicker,num_dependents_deps.dev:0 github.com/wahlandcase/gunicorn-json-logger, github.com/wahlby-lab/napari-tissuumaps, @@ -1183067,7 +1204150,9 @@ github.com/wahtak/kagglize-module, github.com/wahtson/bot,num_dependents_deps.dev:0 github.com/wahwahid/unodoku-nodejs,num_dependents_deps.dev:0 github.com/wahyd4/aria2-ariang-docker,criticality_score:0.414630 +github.com/wahyd4/kubectl-helm-action, github.com/wahyd4/say-it,num_dependents_deps.dev:0 +github.com/wahyuade/git-crypt-unlock, github.com/wahyuamirulloh/go-official-getstarted,num_dependents_deps.dev:0 github.com/wahyubiman/DoodStream, github.com/wahyubucil/adonis-mix-asset,num_dependents_deps.dev:0 @@ -1183090,6 +1204175,7 @@ github.com/waifung0207/ci_bootstrap_3,num_dependents_deps.dev:0 github.com/waifushork/gocord,num_dependents_deps.dev:0 github.com/waifushork/pastemystgo,num_dependents_deps.dev:0 github.com/waigani/lingo-2,num_dependents_deps.dev:0 +github.com/waigel/cf-oidc-proxy-action, github.com/waigo/admin,num_dependents_deps.dev:0 github.com/waigo/mailgun,num_dependents_deps.dev:0 github.com/waigo/method-override,num_dependents_deps.dev:0 @@ -1183229,6 +1204315,7 @@ github.com/waiyyy/modal-noscroll-helper,num_dependents_deps.dev:0 github.com/waizai/hetalia-react,num_dependents_deps.dev:0 github.com/waj/language-names,num_dependents_deps.dev:0 github.com/wajahatkarim3/EasyFlipView,criticality_score:0.305470 +github.com/wajahatkarim3/hugo-on-fire, github.com/wajatimur/node-phonenumber,num_dependents_deps.dev:0 github.com/wajda/lz-string4java,num_dependents_deps.dev:0 github.com/wajda/scala-cross-build-maven-plugin,num_dependents_deps.dev:0 @@ -1183343,7 +1204430,9 @@ github.com/waksana/walking,num_dependents_deps.dev:0 github.com/wakumaku/mysqllog,num_dependents_deps.dev:0 github.com/wakusei-meron-/xo,num_dependents_deps.dev:0 github.com/wakusei-meron-/xoutil,num_dependents_deps.dev:0 +github.com/wakuwaku3/auto-gpt-review-with-precondition, github.com/wakuwaku3/dijct,num_dependents_deps.dev:0 +github.com/wakuwaku3/gpt-code-generator, github.com/wakuworks/chest,num_dependents_deps.dev:0 github.com/wakuworks/jscs-preset-npm,num_dependents_deps.dev:0 github.com/wal-e/wal-e,criticality_score:0.435520 @@ -1183387,6 +1204476,7 @@ github.com/walbertoibarra/ah-oas-plugin,num_dependents_deps.dev:0 github.com/walbertoibarra/ah-swagger-plugin, github.com/walbertoibarra/jsonresume-theme-stackoverflow-es,num_dependents_deps.dev:0 github.com/walbo/grunt-px-to-rem,num_dependents_deps.dev:0 +github.com/walbo/validate-json, github.com/walchko/archeyjs,num_dependents_deps.dev:0 github.com/walchko/movie-server, github.com/walchko/nodescan,num_dependents_deps.dev:0 @@ -1183410,6 +1204500,7 @@ github.com/waldirio/rvtools_python, github.com/waldirmerotti97/fullcycle-2.0-docker-desafio-go,num_dependents_deps.dev:0 github.com/waldirpereira/angular-reset-on,num_dependents_deps.dev:0 github.com/waldjs/wald,num_dependents_deps.dev:0 +github.com/waldoapp/gh-action-upload, github.com/waldobronchart/git-pr-linear-merge, github.com/waldophotos/kafka-avro,num_dependents_deps.dev:0 github.com/waldophotos/kafka-avro-stub,num_dependents_deps.dev:0 @@ -1183594,7 +1204685,9 @@ github.com/walkr/nanoservice, github.com/walkr/nanosphere, github.com/walkr/oi, github.com/walksource/django-cities, +github.com/walkthunder/action-wecom-webhook, github.com/walkthunder/electrode-react-ssr-lru-caching, +github.com/walkthunder/remote-workflow-trigger, github.com/walkthunder/wafer-node-server-sdk,num_dependents_deps.dev:0 github.com/walkthunder/webpack-server-dev,num_dependents_deps.dev:0 github.com/walkure/go-sc16is7x0,num_dependents_deps.dev:0 @@ -1183626,6 +1204719,7 @@ github.com/wallabyjs/public,criticality_score:0.366690 github.com/wallabyjs/wallabify,num_dependents_deps.dev:0 github.com/wallabyjs/wallaby-gulp-adapter,num_dependents_deps.dev:0 github.com/wallace-prado/singer-demo, +github.com/wallace/resque-lonely_job, github.com/wallacebenevides/star-wars-api,num_dependents_deps.dev:0 github.com/wallacegibbon/colourlogger,num_dependents_deps.dev:2 github.com/wallacegibbon/dbexecutors,num_dependents_deps.dev:0 @@ -1183876,6 +1204970,7 @@ github.com/walnutgeek/immutils,num_dependents_deps.dev:0 github.com/walnutgeek/py-webdata, github.com/walnutgeek/wdf,num_dependents_deps.dev:0 github.com/walnutgeek/wdf-loader,num_dependents_deps.dev:0 +github.com/walnuts1018/k8s-badge, github.com/walpod/bend-it,num_dependents_deps.dev:0 github.com/walpod/bend-it-playground,num_dependents_deps.dev:0 github.com/walpolea/leximitedjs,num_dependents_deps.dev:0 @@ -1184281,6 +1205376,7 @@ github.com/wandore/skiplist,num_dependents_deps.dev:0 github.com/wandoulabs/codis,num_dependents_deps.dev:0 github.com/wandouni/helpful-utils,num_dependents_deps.dev:0 github.com/wandouz/wstream,num_dependents_deps.dev:0 +github.com/wandpsilva/open-simple-pr, github.com/wandra60n/learning-git,num_dependents_deps.dev:0 github.com/wandradebb/bookingbug-dev-portal,num_dependents_deps.dev:0 github.com/wandreus/design-token-transformer,num_dependents_deps.dev:0 @@ -1184462,6 +1205558,8 @@ github.com/wangchong1994/pkg-error,num_dependents_deps.dev:0 github.com/wangchuan2008888/cn-radical, github.com/wangchuan3533/lfsr,num_dependents_deps.dev:0 github.com/wangchuan3533/lfsr64,num_dependents_deps.dev:0 +github.com/wangchucheng/algolia-uploader, +github.com/wangchucheng/git-repo-sync, github.com/wangchucheng/go-test,num_dependents_deps.dev:0 github.com/wangchun0020/fis3-deploy-ftp-r,num_dependents_deps.dev:0 github.com/wangchun0020/fis3-postpackager-query-x,num_dependents_deps.dev:0 @@ -1184912,6 +1206010,8 @@ github.com/wangsai/metalsmith-prismjs,num_dependents_deps.dev:0 github.com/wangsai/npynu,num_dependents_deps.dev:0 github.com/wangsenyuan/wsy-form-builder,num_dependents_deps.dev:0 github.com/wangsfine/simple-http-server,num_dependents_deps.dev:0 +github.com/wangsha/action-pipenv-setup, +github.com/wangsha/action-s3pypi, github.com/wangsha/eve-mongoengine, github.com/wangshaojie1991/little-cache,num_dependents_deps.dev:0 github.com/wangshengfei/wingjs,num_dependents_deps.dev:0 @@ -1184958,6 +1206058,7 @@ github.com/wangsijie/dayjs-shanghai, github.com/wangsijie/easy-tablestore,num_dependents_deps.dev:0 github.com/wangsijie/egg-squel,num_dependents_deps.dev:0 github.com/wangsijie/express-aliyun-log,num_dependents_deps.dev:0 +github.com/wangsijie/feishu-bot, github.com/wangsijie/fetch-js-from-cdn,num_dependents_deps.dev:0 github.com/wangsijie/fs-rmdir-recursive,num_dependents_deps.dev:0 github.com/wangsijie/oss-temp,num_dependents_deps.dev:0 @@ -1184966,6 +1206067,8 @@ github.com/wangsijie/pomelo-weixin-client,num_dependents_deps.dev:0 github.com/wangsijie/rclone-drive,num_dependents_deps.dev:0 github.com/wangsijie/react-auto-bind,num_dependents_deps.dev:0 github.com/wangsijie/readid,num_dependents_deps.dev:0 +github.com/wangsijie/restart-aliyun-eci, +github.com/wangsijie/setup-v2ray, github.com/wangsijie/static-deploy-tool,num_dependents_deps.dev:0 github.com/wangsijie/with-auto-retry,num_dependents_deps.dev:0 github.com/wangsin/paul,num_dependents_deps.dev:0 @@ -1184991,6 +1206094,7 @@ github.com/wangsu-cloud-storage/wcs-go-sdk,num_dependents_deps.dev:0 github.com/wangsu-cloud-storage/wcs-go-sdk-v2,num_dependents_deps.dev:0 github.com/wangsying/osin-simple,num_dependents_deps.dev:0 github.com/wangsying/osin-storage,num_dependents_deps.dev:0 +github.com/wangsyqy/issue-label-manage, github.com/wangta69/ng-amchart, github.com/wangta69/ng-cookie,num_dependents_deps.dev:0 github.com/wangta69/ng-count-up-js,num_dependents_deps.dev:0 @@ -1185032,6 +1206136,7 @@ github.com/wangvsa/recorder-viz, github.com/wangwang3219/go,num_dependents_deps.dev:0 github.com/wangwang3219/leetcode,num_dependents_deps.dev:0 github.com/wangwcq/ys-ui,num_dependents_deps.dev:0 +github.com/wangwei1237/setup-vmaf, github.com/wangwei86609/osmanthus,num_dependents_deps.dev:0 github.com/wangweianger/mysqls,num_dependents_deps.dev:12 github.com/wangweianger/node-transform-mysql,num_dependents_deps.dev:0 @@ -1185173,6 +1206278,7 @@ github.com/wangyongjie-ntu/CFAI, github.com/wangyoucao577/assets-uploader,num_dependents_deps.dev:0 github.com/wangyoucao577/fast-shadowsocks,num_dependents_deps.dev:0 github.com/wangyoucao577/go-project-layout,num_dependents_deps.dev:0 +github.com/wangyoucao577/go-release-action, github.com/wangyoucao577/mytinytests,num_dependents_deps.dev:0 github.com/wangyoucao577/vt2geojson,num_dependents_deps.dev:0 github.com/wangyougui/eventbus,num_dependents_deps.dev:0 @@ -1185194,6 +1206300,7 @@ github.com/wangyuanou/CLogServer,num_dependents_deps.dev:0 github.com/wangyuanou/MGLastOne,num_dependents_deps.dev:0 github.com/wangyuanzcm/koa2-converter-middleware,num_dependents_deps.dev:0 github.com/wangyuche/microservice,num_dependents_deps.dev:0 +github.com/wangyucode/sftp-upload-action, github.com/wangyufenggogogo/go-email,num_dependents_deps.dev:0 github.com/wangyuhang112/hanghang,num_dependents_deps.dev:0 github.com/wangyuheng/spring-boot-swagger-starter,num_dependents_deps.dev:0 @@ -1185228,6 +1206335,7 @@ github.com/wangzaixiang/spray-json,num_dependents_deps.dev:0 github.com/wangzewang/oak-ssh, github.com/wangzeyu92/hellogomodtest,num_dependents_deps.dev:0 github.com/wangzhanji/mycard,num_dependents_deps.dev:0 +github.com/wangzhaode/xcodebuild, github.com/wangzhe0912/mod_demo,num_dependents_deps.dev:0 github.com/wangzhe3224/pyca, github.com/wangzhe3224/pysound, @@ -1185268,8 +1206376,11 @@ github.com/wangzhongyu1009/ting-tool,num_dependents_deps.dev:0 github.com/wangzhuo2000/tpke,num_dependents_deps.dev:0 github.com/wangzichen-bixin/wangzichen,num_dependents_deps.dev:0 github.com/wangzilaogong/huobi-trade,num_dependents_deps.dev:0 +github.com/wangziling100/AutoCI, +github.com/wangziling100/AutoPublish, github.com/wangziling100/AutoPublishTest,num_dependents_deps.dev:0 github.com/wangziling100/JLTerminal,num_dependents_deps.dev:0 +github.com/wangziling100/LambdaPythonAction, github.com/wangziling100/React-Components,num_dependents_deps.dev:2 github.com/wangziling100/lerna-test,num_dependents_deps.dev:0 github.com/wangzishuo111/mypythonpiptest, @@ -1185555,6 +1206666,7 @@ github.com/wansing/ulist,num_dependents_deps.dev:0 github.com/wansir/qingcloud-cloud-controller-manager,num_dependents_deps.dev:0 github.com/wanstack/goutils,num_dependents_deps.dev:0 github.com/wanswap/wanswap-sdk,num_dependents_deps.dev:0 +github.com/wansyu/hexo-action, github.com/want-fly/chardet,num_dependents_deps.dev:0 github.com/want-js/want-js,num_dependents_deps.dev:0 github.com/wantainc/gatsby-source-microcms, @@ -1185776,6 +1206888,7 @@ github.com/wardsimon/gfConical, github.com/wardtwits/lint-eastwood,num_dependents_deps.dev:0 github.com/wardviaene/kubernetes-course,num_dependents_deps.dev:0 github.com/wardviaene/terraform-course,criticality_score:0.372440 +github.com/wardvl/f-droid-nightly-action, github.com/wardy484/faker-factory,num_dependents_deps.dev:0 github.com/wardy484/vue-md-breakpoint,num_dependents_deps.dev:0 github.com/wardziniak/kafka-connect-plugins,num_dependents_deps.dev:0 @@ -1186090,6 +1207203,14 @@ github.com/warren1987/rc-components,num_dependents_deps.dev:0 github.com/warrenbailey/gophercon-workshop,num_dependents_deps.dev:0 github.com/warrenbell/capacitor-realm,num_dependents_deps.dev:0 github.com/warrenbell/koo-capacitor-couchbase,num_dependents_deps.dev:0 +github.com/warrenbrasil/docker-containers, +github.com/warrenbrasil/dotnet-config, +github.com/warrenbrasil/dotnet-migrations, +github.com/warrenbrasil/dotnet-pack, +github.com/warrenbrasil/sonar-qube, +github.com/warrenbuckley/Setup-MSBuild, +github.com/warrenbuckley/Setup-Nuget, +github.com/warrenbuckley/Setup-VSWhere, github.com/warrenbuckley/generator-umbraco,num_dependents_deps.dev:0 github.com/warrenc5/graalson,num_dependents_deps.dev:0 github.com/warrenca/bootstrap-growl,num_dependents_deps.dev:0 @@ -1186209,6 +1207330,7 @@ github.com/wasabeef/droid,num_dependents_deps.dev:0 github.com/wasabeef/flutter-architecture-blueprints,criticality_score:0.304720 github.com/wasabeef/fresco-processors,num_dependents_deps.dev:0 github.com/wasabeef/glide-transformations,criticality_score:0.403090 +github.com/wasabeef/import-asdf-tool-versions-action, github.com/wasabeef/picasso-transformations,"criticality_score:0.310470,num_dependents_deps.dev:0" github.com/wasabeef/recyclerview-animators,criticality_score:0.372420 github.com/wasabeef/richeditor-android,criticality_score:0.365530 @@ -1186394,7 +1207516,9 @@ github.com/wasmerio/enumset,num_dependents_deps.dev:109 github.com/wasmerio/go-ext-wasm,num_dependents_deps.dev:60 github.com/wasmerio/io-devices-lib,num_dependents_deps.dev:0 github.com/wasmerio/loupe,num_dependents_deps.dev:61 +github.com/wasmerio/setup-wasmer, github.com/wasmerio/wapm-cli,num_dependents_deps.dev:0 +github.com/wasmerio/wapm-publish, github.com/wasmerio/wasm-debug,num_dependents_deps.dev:0 github.com/wasmerio/wasm-interface-cli,num_dependents_deps.dev:0 github.com/wasmerio/wasmer,"criticality_score:0.669510,num_dependents_deps.dev:928" @@ -1186641,6 +1207765,7 @@ github.com/watermarkchurch/ts-generators, github.com/watermarkhu/qsurface, github.com/waterme7on/opengauss-controller,num_dependents_deps.dev:0 github.com/watermelo/ezbloom, +github.com/watermelontools/watermelon-context-action, github.com/watermint/toolbox,num_dependents_deps.dev:0 github.com/watership/housing-loan-calc,num_dependents_deps.dev:0 github.com/watert/react-native-icloud,num_dependents_deps.dev:0 @@ -1186749,12 +1207874,14 @@ github.com/watson-developer-cloud/text-to-speech-nodejs,num_dependents_deps.dev: github.com/watson-developer-cloud/tone-analyzer-nodejs,"criticality_score:0.345160,num_dependents_deps.dev:0" github.com/watson-developer-cloud/ui-components,num_dependents_deps.dev:10 github.com/watson-developer-cloud/unity-sdk,criticality_score:0.466040 +github.com/watson-sam/gha-aws-ecs-run-task, github.com/watson-sam/iso3_lookup, github.com/watson-sam/rolling,num_dependents_deps.dev:0 github.com/watson-sei/gin-jwt-authz,num_dependents_deps.dev:0 github.com/watson-sei/sqlx-pg-sample,num_dependents_deps.dev:0 github.com/watson-song/webcore,num_dependents_deps.dev:26 github.com/watson-virtual-agents/chat-widget,num_dependents_deps.dev:0 +github.com/watson-w/slack-threaded-git-notifications, github.com/watson-yan/v-iconfont,num_dependents_deps.dev:0 github.com/watson-yan/viui,num_dependents_deps.dev:0 github.com/watson-yan/vue-uploader,num_dependents_deps.dev:0 @@ -1186962,6 +1208089,7 @@ github.com/wattanx/react-calculator,num_dependents_deps.dev:0 github.com/wattanx/simple-react-calculator,num_dependents_deps.dev:0 github.com/wattbewerb/wattbewerb,num_dependents_deps.dev:0 github.com/wattcode/postman-repo,num_dependents_deps.dev:0 +github.com/watterso/ansible-2.10-playbook-docker-action, github.com/wattgo/node-kafka0.8,num_dependents_deps.dev:0 github.com/wattlebird/ranking, github.com/wattledcord/curdjs,num_dependents_deps.dev:0 @@ -1187307,6 +1208435,7 @@ github.com/wayf-dk/wayfhybrid,num_dependents_deps.dev:0 github.com/wayfair-archive/gh_pypi_test, github.com/wayfair-incubator/columbo, github.com/wayfair-incubator/extra-model, +github.com/wayfair-incubator/forker, github.com/wayfair-incubator/gator, github.com/wayfair-incubator/gbq, github.com/wayfair-incubator/pygitops, @@ -1187471,6 +1208600,7 @@ github.com/wayoda/rswt-flasher, github.com/wayofthefuture/lean-stack,num_dependents_deps.dev:0 github.com/wayofthefuture/react-cross-platform,num_dependents_deps.dev:0 github.com/wayofthefuture/react-input-moment,num_dependents_deps.dev:2 +github.com/wayofthepie/gram-action, github.com/wayofthepie/gram-cli,num_dependents_deps.dev:0 github.com/wayou/generator-mis,num_dependents_deps.dev:0 github.com/wayou/hbmm,num_dependents_deps.dev:0 @@ -1187582,6 +1208712,7 @@ github.com/wbap/PyBriCA, github.com/wbap/oculoenv, github.com/wbarahona/ghost-ocular-implants,num_dependents_deps.dev:0 github.com/wbarahona/react-nicer-inputs,num_dependents_deps.dev:0 +github.com/wbari/start-mongoDB, github.com/wbawakate/nobita, github.com/wbayer/webview-gm,num_dependents_deps.dev:0 github.com/wbazant/gene-autocomplete, @@ -1187626,6 +1208757,7 @@ github.com/wberndt/node-egk,num_dependents_deps.dev:0 github.com/wbernest/rss-v2-parser,num_dependents_deps.dev:0 github.com/wbet/MessageAPI,num_dependents_deps.dev:0 github.com/wbet/StorageAPI,num_dependents_deps.dev:0 +github.com/wbeuil/wait-for-deployment, github.com/wbez/ferris-ds,num_dependents_deps.dev:0 github.com/wbflooksky/errors,num_dependents_deps.dev:0 github.com/wbg2056/cordova-plugin-ths-yzbleplugin,num_dependents_deps.dev:0 @@ -1187703,6 +1208835,7 @@ github.com/wblankenship/readfiles,num_dependents_deps.dev:0 github.com/wblankenship/varstring,num_dependents_deps.dev:6 github.com/wblazej/pyfract, github.com/wblondel/PythonCdiscountWrapper, +github.com/wblondel/dnscontrol-action, github.com/wblong/hsl-to-hex,num_dependents_deps.dev:0 github.com/wblxyxolbkhv/django-json-field-schema-validator, github.com/wbnns/eyeofsatoshi,num_dependents_deps.dev:0 @@ -1187932,6 +1209065,9 @@ github.com/wcauchois/wring,num_dependents_deps.dev:0 github.com/wcbs-ltd/axios-actions,num_dependents_deps.dev:0 github.com/wccgoog/vue-colorful-font,num_dependents_deps.dev:0 github.com/wcchin/colouringmap, +github.com/wcchristian/gh-action-hugo-build, +github.com/wcchristian/gh-action-notion-card, +github.com/wcchristian/gh-pattern-filter-action, github.com/wcdolphin/flask-headers, github.com/wcdolphin/flask-olinauth, github.com/wcdolphin/heroku-bench,num_dependents_deps.dev:0 @@ -1188255,6 +1209391,7 @@ github.com/wdhafin/golang-unit-test,num_dependents_deps.dev:0 github.com/wdhafin/golang-unit-test-imre,num_dependents_deps.dev:0 github.com/wdhafin/grpc-golang-udemy,num_dependents_deps.dev:0 github.com/wdhafin/proto-tech-school,num_dependents_deps.dev:0 +github.com/wdhdev/validate-email-action, github.com/wdhif/nes,num_dependents_deps.dev:0 github.com/wdhif/xml-object-stream,num_dependents_deps.dev:0 github.com/wdhorton/chai-snapshot,num_dependents_deps.dev:0 @@ -1188363,6 +1209500,9 @@ github.com/wdxxl/kind-k8s-series,num_dependents_deps.dev:0 github.com/wdy0702/report-render,num_dependents_deps.dev:0 github.com/wdyangkun/cron,num_dependents_deps.dev:0 github.com/wdywjm/gcollections,num_dependents_deps.dev:0 +github.com/wdzeng/chrome-extension, +github.com/wdzeng/edge-addon, +github.com/wdzeng/firefox-addon, github.com/we-are-Joinup/celery, github.com/we-are-Joinup/django-session-timeout, github.com/we-are-Joinup/jsonfield, @@ -1188375,6 +1209515,7 @@ github.com/we-are-next/honorific,num_dependents_deps.dev:0 github.com/we-are-next/primedia-person-name,num_dependents_deps.dev:0 github.com/we-are-next/primedia-search-args,num_dependents_deps.dev:0 github.com/we-are-vrsus/devise-token-client,num_dependents_deps.dev:0 +github.com/we-cli/coverage-badge-action, github.com/we-code-now/npm-boilerplater,num_dependents_deps.dev:0 github.com/we-code-now/react-hook-use-async,num_dependents_deps.dev:0 github.com/we-code-now/react-hook-use-state,num_dependents_deps.dev:0 @@ -1188607,6 +1209748,7 @@ github.com/wearefair/modelmapper, github.com/wearefair/polymorphic_sqlalchemy, github.com/weareferal/scrollxp,num_dependents_deps.dev:0 github.com/wearefetch/generator-fetch-mi-banners,num_dependents_deps.dev:0 +github.com/wearefine/cf-pages-slack, github.com/wearefine/fae,criticality_score:0.478950 github.com/wearefine/fine-nuxt-tools,num_dependents_deps.dev:0 github.com/wearefine/map-env-vars,num_dependents_deps.dev:0 @@ -1188849,7 +1209991,10 @@ github.com/weareredlight/red-mobile-sdk,num_dependents_deps.dev:0 github.com/weareredshift/rs-components, github.com/wearerequired/capistrano-wearerequired,num_dependents_deps.dev:0 github.com/wearerequired/coding-standards,num_dependents_deps.dev:0 +github.com/wearerequired/git-mirror-action, github.com/wearerequired/js,num_dependents_deps.dev:0 +github.com/wearerequired/lint-action, +github.com/wearerequired/slack-messaging-action, github.com/wearerobos/amqp-utils,num_dependents_deps.dev:0 github.com/wearerobos/botmaster-zendesk,num_dependents_deps.dev:0 github.com/wearerobos/random-text-parser,num_dependents_deps.dev:0 @@ -1188937,6 +1210082,7 @@ github.com/wearewondrous/fractal-twig-drupal-adapter,num_dependents_deps.dev:0 github.com/wearewondrous/nuxt-storyblok-queries,num_dependents_deps.dev:0 github.com/wearewondrous/nuxt-storyblok-router,num_dependents_deps.dev:0 github.com/wearewondrous/wondrous-stylelint-config,num_dependents_deps.dev:0 +github.com/weareyipyip/walking-tag-action, github.com/weareyolo/cloudmetrics,num_dependents_deps.dev:0 github.com/weareyolo/go-metrics,num_dependents_deps.dev:0 github.com/weareyou/generator-patternlab-starterkit, @@ -1189062,6 +1210208,7 @@ github.com/weaveworld/Weaveworld,num_dependents_deps.dev:0 github.com/weaveworld/redmining,num_dependents_deps.dev:0 github.com/weaveworld/weaveworld-app, github.com/weaviate/weaviate,num_dependents_deps.dev:0 +github.com/weavingwebs/ww-docker-build-action, github.com/weavingwebs/wwgo,num_dependents_deps.dev:0 github.com/weavrjs/weavr,num_dependents_deps.dev:0 github.com/weavy/bootstrap-quill,num_dependents_deps.dev:0 @@ -1189272,6 +1210419,7 @@ github.com/web-fonts/mg-bitneon-hollow,num_dependents_deps.dev:0 github.com/web-fonts/mg-glaho-drunk,num_dependents_deps.dev:0 github.com/web-fonts/web-fonts-cli,num_dependents_deps.dev:0 github.com/web-gears/react-native-inline-calendar, +github.com/web-id-fr/forge-review-app-clean-action, github.com/web-innovate/gif-webdriver,num_dependents_deps.dev:0 github.com/web-innovate/protractor-fake-backend,num_dependents_deps.dev:0 github.com/web-listener/web-listener,num_dependents_deps.dev:0 @@ -1189382,6 +1210530,7 @@ github.com/web-scrobbler/web-scrobbler,criticality_score:0.588660 github.com/web-servers/jws-operator,num_dependents_deps.dev:0 github.com/web-seven/apollo-link-cloud-dynamodb,num_dependents_deps.dev:0 github.com/web-seven/apollo-link-cloud-firestore,num_dependents_deps.dev:0 +github.com/web-seven/chart-releaser-action, github.com/web-seven/json2graphql,num_dependents_deps.dev:0 github.com/web-seven/webpack-cra-runtime-config,num_dependents_deps.dev:0 github.com/web-skeleton/skeleton,num_dependents_deps.dev:0 @@ -1189397,6 +1210546,7 @@ github.com/web-std/file-url,num_dependents_deps.dev:0 github.com/web-std/io,num_dependents_deps.dev:224 github.com/web-stories/dynamic-textarea,num_dependents_deps.dev:0 github.com/web-strong/rtserver,num_dependents_deps.dev:0 +github.com/web-sys1/COVID19-main, github.com/web-sys1/NFSyndication, github.com/web-token/jwt-framework,criticality_score:0.448280 github.com/web-trump/ahttp, @@ -1189413,6 +1210563,7 @@ github.com/web-worddoc/handy-formik,num_dependents_deps.dev:0 github.com/web-workshop-ltd/datocms-plugin-weblinks,num_dependents_deps.dev:0 github.com/web0js/web0-devtools,num_dependents_deps.dev:0 github.com/web17077/plover-assets-css,num_dependents_deps.dev:0 +github.com/web1n/log-into-ctfd-action, github.com/web2033/base.css,num_dependents_deps.dev:0 github.com/web2033/default.css,num_dependents_deps.dev:0 github.com/web2033/trigger,num_dependents_deps.dev:0 @@ -1189437,12 +1210588,15 @@ github.com/web3-api/monorepo,num_dependents_deps.dev:1588 github.com/web3-guru/loom-x,num_dependents_deps.dev:0 github.com/web3-js/WebSocket-Node,num_dependents_deps.dev:866 github.com/web3-js/scrypt-shim,num_dependents_deps.dev:810 +github.com/web3-storage/add-to-web3, github.com/web3-storage/files-from-path,num_dependents_deps.dev:66 github.com/web3-storage/go-w3s-client,num_dependents_deps.dev:0 github.com/web3-storage/web3-file,num_dependents_deps.dev:0 github.com/web3-storage/web3.storage,num_dependents_deps.dev:2 github.com/web3-utilities/chains,num_dependents_deps.dev:0 github.com/web3/buzz,num_dependents_deps.dev:0 +github.com/web3actions/price-feeds, +github.com/web3actions/tx, github.com/web3bch/bch-wallet-bridge-provider-interface,num_dependents_deps.dev:0 github.com/web3bch/bch-wallet-bridge.js,num_dependents_deps.dev:0 github.com/web3bch/web3bch.js,num_dependents_deps.dev:0 @@ -1189928,6 +1211082,7 @@ github.com/webdesignio/js-client,num_dependents_deps.dev:0 github.com/webdesignio/react,num_dependents_deps.dev:0 github.com/webdesignio/surge-helper,num_dependents_deps.dev:0 github.com/webdesigniran/IranianBankLogos,num_dependents_deps.dev:0 +github.com/webdesq/notify-store, github.com/webdesserts/alchemist-common,num_dependents_deps.dev:0 github.com/webdesserts/alchemist-gulp,num_dependents_deps.dev:0 github.com/webdesserts/alchemist-hsl,num_dependents_deps.dev:6 @@ -1190039,6 +1211194,7 @@ github.com/webdonalds/discord-bot,num_dependents_deps.dev:0 github.com/webdriverextensions/webdriverextensions,num_dependents_deps.dev:0 github.com/webdriverextensions/webdriverextensions-maven-plugin,num_dependents_deps.dev:0 github.com/webdriverio-boneyard/v4,num_dependents_deps.dev:0 +github.com/webdriverio-community/node-edgedriver, github.com/webdriverio-community/wdio-chromedriver-service, github.com/webdriverio-community/wdio-cucumberjs-json-reporter, github.com/webdriverio-community/wdio-intercept-service, @@ -1190098,6 +1211254,7 @@ github.com/webeetle/bee-theme,num_dependents_deps.dev:0 github.com/webeetle/create-app,num_dependents_deps.dev:0 github.com/webeetle/fastify-waterline,num_dependents_deps.dev:0 github.com/webeetle/windy,num_dependents_deps.dev:0 +github.com/webel/super-linter, github.com/webelement-click/parameterized-findby,num_dependents_deps.dev:0 github.com/webengage/gitbook-plugin-webengage,num_dependents_deps.dev:0 github.com/webenot/send-ajax,num_dependents_deps.dev:0 @@ -1190188,7 +1211345,9 @@ github.com/webfactor/ionic-lib,num_dependents_deps.dev:0 github.com/webfactory-team/node-red-contrib-i4scada-connector,num_dependents_deps.dev:0 github.com/webfactory/accordion,num_dependents_deps.dev:0 github.com/webfactory/browserslist-config-webfactory,num_dependents_deps.dev:0 +github.com/webfactory/create-aws-codedeploy-deployment, github.com/webfactory/disclosure,num_dependents_deps.dev:0 +github.com/webfactory/docker-composer-require-checker, github.com/webfactory/michelangelo#gemeinsamer-bundesausschuss, github.com/webfactory/salto-assets,num_dependents_deps.dev:0 github.com/webfactory/ssh-agent,criticality_score:0.393370 @@ -1190306,6 +1211465,7 @@ github.com/webgradus/carrierwave-viewer,num_dependents_deps.dev:0 github.com/webgradus/kms,num_dependents_deps.dev:1 github.com/webgradus/kms_models,num_dependents_deps.dev:0 github.com/webgriffe/ghost-inspector-anywhere,num_dependents_deps.dev:0 +github.com/webgtx/gcr-podman-action, github.com/webguru221/crypto-coininfo,num_dependents_deps.dev:0 github.com/webguru221/hello-world,num_dependents_deps.dev:0 github.com/webhacking/remote-screen-capture,num_dependents_deps.dev:0 @@ -1190416,6 +1211576,7 @@ github.com/webis-de/targer-api, github.com/webisle/wiscroll, github.com/webismymain/sextadoscria,num_dependents_deps.dev:0 github.com/webismymind/editablegrid,criticality_score:0.313010 +github.com/webispy/checkpatch-action, github.com/webispy/passport-artikcloud,num_dependents_deps.dev:0 github.com/webistomin/favoritos,num_dependents_deps.dev:0 github.com/webistomin/nanogram.js,num_dependents_deps.dev:0 @@ -1190431,6 +1211592,7 @@ github.com/webitel/engine,num_dependents_deps.dev:0 github.com/webitel/flow_manager,num_dependents_deps.dev:0 github.com/webitel/protos,num_dependents_deps.dev:6 github.com/webitel/sql_for_dialer,num_dependents_deps.dev:0 +github.com/webitsbr/github-to-ftp, github.com/webitup/puke, github.com/webitup/python-roxee, github.com/webivan1/P2PLite,num_dependents_deps.dev:0 @@ -1191674,6 +1212836,7 @@ github.com/weblite-im/prettier-config,num_dependents_deps.dev:0 github.com/weblite-wapps/api-types,num_dependents_deps.dev:0 github.com/weblite-wapps/cra-template,num_dependents_deps.dev:0 github.com/weblite-wapps/snackbar,num_dependents_deps.dev:0 +github.com/webliumteam/github-action-slack-notify-build, github.com/webliupeng/koa-mongoose-webresource,num_dependents_deps.dev:0 github.com/webliuye/webliuye-vue-cli,num_dependents_deps.dev:0 github.com/webliving/bower,num_dependents_deps.dev:0 @@ -1192348,6 +1213511,7 @@ github.com/websitebeaver/far-fetch, github.com/websiteflash/grunt-ftp-upload,num_dependents_deps.dev:0 github.com/websiteflash/template-compile,num_dependents_deps.dev:0 github.com/websitesfortrello/trelew,num_dependents_deps.dev:0 +github.com/websiteshot/github-action, github.com/websiteshot/nodejs-client,num_dependents_deps.dev:0 github.com/websk/skif,num_dependents_deps.dev:0 github.com/webslides/WebSlides,criticality_score:0.367390 @@ -1192419,6 +1213583,7 @@ github.com/websu-io/websu,num_dependents_deps.dev:0 github.com/websublime/adr,num_dependents_deps.dev:0 github.com/websublime/eslint-config,num_dependents_deps.dev:0 github.com/websublime/gotrue-js,num_dependents_deps.dev:0 +github.com/websublime/supabase-assets, github.com/websublime/vitamin, github.com/websudos/dali,num_dependents_deps.dev:0 github.com/websupport-sk/pecl-memcache,criticality_score:0.516110 @@ -1192746,6 +1213911,11 @@ github.com/wechaty/wechaty-type-checker,num_dependents_deps.dev:0 github.com/wechaty/wechaty-vorpal,num_dependents_deps.dev:0 github.com/wechaty/wechaty-vorpal-contrib,num_dependents_deps.dev:0 github.com/wechka53/task-loader-gulp,num_dependents_deps.dev:0 +github.com/wechorg/debug-action, +github.com/wechorg/hello-world-docker-action, +github.com/wechuli/actionsutils, +github.com/wechuli/hello-world-composite-run-steps-action, +github.com/wechuli/pull-request-updater, github.com/wecise/m3js,num_dependents_deps.dev:0 github.com/wecking/Elasticsearch-Client-Helper,num_dependents_deps.dev:0 github.com/weclapp/eslint-config,num_dependents_deps.dev:0 @@ -1192801,6 +1213971,7 @@ github.com/wedesoft/hornetseye-ffmpeg,num_dependents_deps.dev:0 github.com/wedesoft/hornetseye-frame,num_dependents_deps.dev:0 github.com/wedesoft/malloc,num_dependents_deps.dev:0 github.com/wedesoft/multiarray,num_dependents_deps.dev:7 +github.com/wedgehr/gantry-deploy-action, github.com/wedgenix/cubbychaser,num_dependents_deps.dev:0 github.com/wedgenix/xls,num_dependents_deps.dev:0 github.com/wedgex/ember-bootstrap-daterange, @@ -1192833,6 +1214004,7 @@ github.com/wedranb/trim-left-by-char,num_dependents_deps.dev:0 github.com/wedranb/v-trimleftbychar,num_dependents_deps.dev:0 github.com/wedreamer/nestjs-oss-gcloud,num_dependents_deps.dev:0 github.com/wedressfair/ethikdo,num_dependents_deps.dev:0 +github.com/wedsonlima/pr-review-labelmaker, github.com/wedwrd/aython, github.com/wee-slack/wee-slack,criticality_score:0.454380 github.com/weeaboo/sukejuru-cli,num_dependents_deps.dev:0 @@ -1193100,7 +1214272,11 @@ github.com/wei-zhe/vue-3d-button,num_dependents_deps.dev:0 github.com/wei-zhe/vue-drag-screenshot, github.com/wei-zhe/vue-input-tags,num_dependents_deps.dev:0 github.com/wei-zhe/vue-mind-mapping,num_dependents_deps.dev:0 +github.com/wei/curl, +github.com/wei/git-sync, github.com/wei/pull,criticality_score:0.376590 +github.com/wei/rclone, +github.com/wei/wget, github.com/wei147/fast-cache,num_dependents_deps.dev:0 github.com/wei3hua2/rpscript,num_dependents_deps.dev:0 github.com/wei3hua2/rpscript-api-adm-zip,num_dependents_deps.dev:0 @@ -1193172,6 +1214348,7 @@ github.com/weibodip/analysisql,num_dependents_deps.dev:0 github.com/weiboria/jdt,num_dependents_deps.dev:0 github.com/weibreeze/breeze,num_dependents_deps.dev:35 github.com/weibsons/mobi.stos.podataka,num_dependents_deps.dev:0 +github.com/weibullguy/python-lint-plus, github.com/weichain/weidex-contract-wrapper,num_dependents_deps.dev:0 github.com/weichang-bianjie/cosmos-sdk,num_dependents_deps.dev:0 github.com/weichang-bianjie/metric-sdk,num_dependents_deps.dev:0 @@ -1193457,6 +1214634,7 @@ github.com/weirubo/go-algorithm,num_dependents_deps.dev:0 github.com/weirubo/go-package,num_dependents_deps.dev:0 github.com/weirubo/intermediate_go,num_dependents_deps.dev:0 github.com/weirubo/learn_go,num_dependents_deps.dev:0 +github.com/weirui88888/aliyun-cdn-sdk, github.com/weirui88888/fetools,num_dependents_deps.dev:0 github.com/weiruifeng/testgit,num_dependents_deps.dev:0 github.com/weirwei/golib,num_dependents_deps.dev:0 @@ -1193574,6 +1214752,7 @@ github.com/weiwenwang/big_data_sql,num_dependents_deps.dev:0 github.com/weiwolves/protoc-gen-gotag,num_dependents_deps.dev:0 github.com/weiwq/violet-tool, github.com/weixian-zhang/wanderer,num_dependents_deps.dev:0 +github.com/weixianggoh/datadog-github-deployment-metrics-reporter, github.com/weixiaoH/react-nmvc,num_dependents_deps.dev:0 github.com/weixiaocai/math,num_dependents_deps.dev:0 github.com/weixiaoyi/bip38-fix,num_dependents_deps.dev:0 @@ -1193601,6 +1214780,7 @@ github.com/weixuan75/o_util_js,num_dependents_deps.dev:0 github.com/weixublog/vue-storage,num_dependents_deps.dev:0 github.com/weiyahsuwork/demo-project, github.com/weiyang-cf/logmagic-pack-my-orders-go,num_dependents_deps.dev:0 +github.com/weiyi0/jds, github.com/weiyi88/gobase,num_dependents_deps.dev:0 github.com/weiyinfu/gs,num_dependents_deps.dev:0 github.com/weiyinfu/learngo,num_dependents_deps.dev:0 @@ -1194143,6 +1215323,11 @@ github.com/wemgl/dalia,num_dependents_deps.dev:0 github.com/wemgl/simple-server,num_dependents_deps.dev:0 github.com/wemiss/nodejs,num_dependents_deps.dev:0 github.com/wemofit/javascript,num_dependents_deps.dev:0 +github.com/wemogy/aks-login-action, +github.com/wemogy/get-environment-action, +github.com/wemogy/next-version-action, +github.com/wemogy/publish-helm-chart-action, +github.com/wemogy/terraform-action, github.com/wemoloh/frepr, github.com/wemoloh/insort,num_dependents_deps.dev:0 github.com/wemoloh/tidymap,num_dependents_deps.dev:0 @@ -1194203,6 +1215388,7 @@ github.com/wenchong-wei/mygrpc,num_dependents_deps.dev:0 github.com/wenchong-wei/quant-api,num_dependents_deps.dev:0 github.com/wenchong-wei/quant-order,num_dependents_deps.dev:0 github.com/wenchong-wei/quant-task,num_dependents_deps.dev:0 +github.com/wenchui/hello-world-docker-action, github.com/wenchy/bifrost,num_dependents_deps.dev:0 github.com/wenchy/requests,num_dependents_deps.dev:0 github.com/wenchy/tableau,num_dependents_deps.dev:0 @@ -1194214,6 +1215400,7 @@ github.com/wendal2841/rn-image-to-base64,num_dependents_deps.dev:0 github.com/wendao-liu/copys-plugin,num_dependents_deps.dev:0 github.com/wendao76/JoUtils,num_dependents_deps.dev:0 github.com/wendaosanshou/vue-fullpage,num_dependents_deps.dev:0 +github.com/wendbv/calver-tag-action, github.com/wendbv/pluvo-python, github.com/wendbv/schemavalidator, github.com/wendbv/shampoo, @@ -1194394,6 +1215581,7 @@ github.com/wenkesj/react-native-voice,num_dependents_deps.dev:0 github.com/wenkesj/workmen,num_dependents_deps.dev:0 github.com/wenkokke/rusty-variation,num_dependents_deps.dev:0 github.com/wenkokke/sesh,num_dependents_deps.dev:0 +github.com/wenkokke/setup-agda, github.com/wenlaizhou/cyclonefw, github.com/wenlaizhou/fileuploader,num_dependents_deps.dev:0 github.com/wenlaizhou/kubetype,num_dependents_deps.dev:0 @@ -1194403,6 +1215591,7 @@ github.com/wenlei0617/react-use-portal,num_dependents_deps.dev:0 github.com/wenliangdai/p2pp, github.com/wenliangdai/react-audio,num_dependents_deps.dev:0 github.com/wenliangdai/react-audioplayer,num_dependents_deps.dev:0 +github.com/wenlianggg/ecr-public-action-arm64, github.com/wenling-lichao/tt-cli,num_dependents_deps.dev:0 github.com/wenlng/go-captcha,num_dependents_deps.dev:0 github.com/wenlng/go-user-agent,num_dependents_deps.dev:0 @@ -1194511,6 +1215700,7 @@ github.com/wenwei1202/wechat-message-mock,num_dependents_deps.dev:0 github.com/wenwei202/caffe,criticality_score:0.400500 github.com/wenweihu86/rpc-java,num_dependents_deps.dev:12 github.com/wenwenwei/vue-banner,num_dependents_deps.dev:0 +github.com/wenwuwu/action-electron-forge, github.com/wenwuwu/array-es5,num_dependents_deps.dev:2 github.com/wenwuwu/colors,num_dependents_deps.dev:0 github.com/wenwuwu/cookies-es5,num_dependents_deps.dev:0 @@ -1194768,6 +1215958,7 @@ github.com/wereliang/raft,num_dependents_deps.dev:0 github.com/weresandstorm/spring-security-mongo,num_dependents_deps.dev:0 github.com/wereturtle/ghostwriter,criticality_score:0.460930 github.com/werewolfboy13/awn.js, +github.com/werf/actions, github.com/werf/helm,num_dependents_deps.dev:0 github.com/werf/kubedog,num_dependents_deps.dev:0 github.com/werf/lockgate,num_dependents_deps.dev:0 @@ -1194851,6 +1216042,9 @@ github.com/werts/wishare-postprocessor-cmd-wrapper,num_dependents_deps.dev:0 github.com/werty1001/bempug,num_dependents_deps.dev:0 github.com/werty12123/nooks,num_dependents_deps.dev:0 github.com/wertycn/hexo-deployer-qcloud-cos,num_dependents_deps.dev:0 +github.com/wertycn/hexo-frontmatter-generator, +github.com/wertycn/kuboard-deploy-action, +github.com/wertycn/work-wechat-send-action, github.com/werunclub/rpcx,num_dependents_deps.dev:0 github.com/werwolfby/monitorrent,criticality_score:0.302720 github.com/werymanen/bingbg,num_dependents_deps.dev:0 @@ -1194906,6 +1216100,7 @@ github.com/wescale/kubernetes-formation,num_dependents_deps.dev:0 github.com/wescarr/veritas,num_dependents_deps.dev:0 github.com/wesclemens/Flask-JsonSchemaValidator, github.com/wescopeland/retroachievements-js,num_dependents_deps.dev:0 +github.com/wescran/commit-issue-action, github.com/wescravens/class-decorators,num_dependents_deps.dev:0 github.com/wescravens/react-class-mixin,num_dependents_deps.dev:0 github.com/wesdean/envconfig,num_dependents_deps.dev:0 @@ -1194920,6 +1216115,7 @@ github.com/weseek/clf-date,num_dependents_deps.dev:0 github.com/weseek/crowi-plugin-lsx, github.com/weseek/crowi-pluginkit, github.com/weseek/eslint-config-weseek,num_dependents_deps.dev:0 +github.com/weseek/ghaction-docker-tags-by-semver, github.com/weseek/growi,criticality_score:0.582180 github.com/weseek/growi-commons,num_dependents_deps.dev:0 github.com/weseek/growi-plugin-attachment-refs,num_dependents_deps.dev:0 @@ -1194957,12 +1216153,14 @@ github.com/wesionaryteam/go-ast-example,num_dependents_deps.dev:0 github.com/wesionaryteam/golern,num_dependents_deps.dev:0 github.com/wesitos/py-serpost, github.com/wesj/AnimatedTextView,num_dependents_deps.dev:0 +github.com/wesjetpkg/checkout-runner, github.com/wesjones/grunt-html,num_dependents_deps.dev:0 github.com/weskerfoot/DeleteFB,criticality_score:0.430430 github.com/weskerfoot/Spotify-MPD-Sync, github.com/weskinner/ember-cli-deploy-postgres,num_dependents_deps.dev:0 github.com/weskinner/ember-cli-underscore, github.com/wesky93/KoNLPy-homi, +github.com/wesleimp/action-publish-hex, github.com/wesleimp/fib,num_dependents_deps.dev:0 github.com/wesleimp/goreleaser,num_dependents_deps.dev:0 github.com/wesleimp/npm-name,num_dependents_deps.dev:0 @@ -1195028,6 +1216226,9 @@ github.com/wesleyody/validations,num_dependents_deps.dev:0 github.com/wesleyosantos91/formatter-date-util,num_dependents_deps.dev:0 github.com/wesleyramalho/ianes, github.com/wesleyramalho/request-handler,num_dependents_deps.dev:0 +github.com/wesleyscholl/create-discussion-comment, +github.com/wesleyscholl/discussion-auto-responder, +github.com/wesleyscholl/submit-argo-workflow-template, github.com/wesleyshynes/rentalsunited-connector,num_dependents_deps.dev:0 github.com/wesleyskap/b2w-ruby,num_dependents_deps.dev:0 github.com/wesleyskap/directlog,num_dependents_deps.dev:0 @@ -1195295,6 +1216496,7 @@ github.com/westnordost/countryboundaries,num_dependents_deps.dev:0 github.com/westnordost/osmapi,num_dependents_deps.dev:0 github.com/westnordost/osmapi-overpass,num_dependents_deps.dev:0 github.com/westnordost/osmfeatures,num_dependents_deps.dev:0 +github.com/westonal/graph-diff, github.com/westonbattles/tiktok-webscraper, github.com/westongame/bigl-custom-creator,num_dependents_deps.dev:0 github.com/westonganger/active_record_simple_execute,num_dependents_deps.dev:0 @@ -1195439,6 +1216641,7 @@ github.com/wethegit/wtc-vector,num_dependents_deps.dev:0 github.com/wethersherbs/bedingfield.js,num_dependents_deps.dev:0 github.com/wethersherbs/react-component-tape-util,num_dependents_deps.dev:0 github.com/wethil/deep-iterall,num_dependents_deps.dev:0 +github.com/wethinkcode/github_action_slackbot, github.com/wethk/babel-plugin-transfrom-decorator-autobind,num_dependents_deps.dev:0 github.com/wethk/decorator,num_dependents_deps.dev:0 github.com/wetix/responsive-ui,num_dependents_deps.dev:4 @@ -1195455,6 +1216658,7 @@ github.com/wetor/revisionfile,num_dependents_deps.dev:0 github.com/wetosc/chaos-proxy,num_dependents_deps.dev:0 github.com/wetransfer/eslint-config-wetransfer,num_dependents_deps.dev:0 github.com/wetransfer/richurls,num_dependents_deps.dev:0 +github.com/wetransform/gha-trivy, github.com/wetransform/ngx-translate-extract,num_dependents_deps.dev:0 github.com/wetrial/component,num_dependents_deps.dev:0 github.com/wetrial/core,num_dependents_deps.dev:0 @@ -1195540,6 +1216744,7 @@ github.com/wey-gu/nebula-chia, github.com/weyert/mdx.macro,num_dependents_deps.dev:0 github.com/weyforth/mongoose-humanize-errors,num_dependents_deps.dev:0 github.com/weyforth/node-local-url-cache,num_dependents_deps.dev:0 +github.com/weyheyhey/create-dotenv-action, github.com/weyheyhey/effector-next,num_dependents_deps.dev:0 github.com/weyheyhey/effector-next-redirect, github.com/weylan/golua,num_dependents_deps.dev:0 @@ -1195859,6 +1217064,8 @@ github.com/whalecoiner/simple-webmention-dispatch,num_dependents_deps.dev:0 github.com/whalecoiner/tweet2svg, github.com/whalecoiner/webmention-endpoint-discovery,num_dependents_deps.dev:0 github.com/whalelephant/certx,num_dependents_deps.dev:0 +github.com/whalemare/action-dropbox, +github.com/whalemare/minio-cache, github.com/whalemare/react-native-sheetmenu,num_dependents_deps.dev:0 github.com/whalenpt/rkstiff, github.com/whaler/whaler, @@ -1195876,6 +1217083,7 @@ github.com/whalest/alfabankby,num_dependents_deps.dev:0 github.com/whalest/axios-nice-log, github.com/whalest/vue-editorjs-blocks,num_dependents_deps.dev:0 github.com/whalest/webpay, +github.com/whalimeter/gh-action-image-mirror, github.com/whalue-design/whalue-design-colors,num_dependents_deps.dev:0 github.com/whalue-design/whalue-design-icons,num_dependents_deps.dev:0 github.com/wham-js/a-d-s-r,num_dependents_deps.dev:2 @@ -1195989,6 +1217197,7 @@ github.com/whatisinternet/ToTrello,num_dependents_deps.dev:0 github.com/whatisinternet/inflector,num_dependents_deps.dev:1020 github.com/whatisnormal/go-courses,num_dependents_deps.dev:0 github.com/whatjackhasmade/noface-storybook,num_dependents_deps.dev:0 +github.com/whatk233/setup-autoit-compiler-toolkit, github.com/whatknight/sc240scale,num_dependents_deps.dev:0 github.com/whatl3y/facemorph,num_dependents_deps.dev:0 github.com/whatl3y/fndr,num_dependents_deps.dev:0 @@ -1196007,6 +1217216,7 @@ github.com/whatl3y/txr,num_dependents_deps.dev:0 github.com/whatlife/qrcodejs,num_dependents_deps.dev:0 github.com/whatmelon12/mongoose-paginate,num_dependents_deps.dev:0 github.com/whatnick/python_dynamodb_lock, +github.com/whatnick/wait-action, github.com/whatnowangga/react-midtrans,num_dependents_deps.dev:0 github.com/whats-a-handle/finra-broker-check,num_dependents_deps.dev:0 github.com/whats-good/graphql-ts,num_dependents_deps.dev:0 @@ -1196027,6 +1217237,7 @@ github.com/whatser/mock-nodemailer,num_dependents_deps.dev:0 github.com/whatsfordinner/bakery,num_dependents_deps.dev:0 github.com/whatshowing/core,num_dependents_deps.dev:0 github.com/whatsinTech/npmtest,num_dependents_deps.dev:0 +github.com/whatsllyorg/eks-helm-deploy-action, github.com/whatsmk/mk,num_dependents_deps.dev:0 github.com/whatsmk/mk-command,num_dependents_deps.dev:0 github.com/whatsmk/mk-mobile-command,num_dependents_deps.dev:0 @@ -1196218,6 +1217429,7 @@ github.com/whefter/nestjs-joi,num_dependents_deps.dev:0 github.com/whelk-io/asciidoc-template-maven-plugin,num_dependents_deps.dev:0 github.com/whelk-io/flesch-kincaid,num_dependents_deps.dev:0 github.com/whelk-io/hy-phen-a-tion,num_dependents_deps.dev:0 +github.com/whelk-io/maven-settings-xml-action, github.com/whelk-io/spring-boot-starter-data-logging,num_dependents_deps.dev:0 github.com/wheller/git-stream,num_dependents_deps.dev:0 github.com/wheller/gulp-view,num_dependents_deps.dev:0 @@ -1196333,9 +1217545,11 @@ github.com/whimax/todo-api,num_dependents_deps.dev:0 github.com/whimian/pyGeoPressure, github.com/whimseystudios/Devtool,num_dependents_deps.dev:0 github.com/whimsycwd/Snapmakerjs,num_dependents_deps.dev:0 +github.com/whimsyy/goaction, github.com/whimthen/temp,num_dependents_deps.dev:0 github.com/whimtrip/jwht-htmltopojo,num_dependents_deps.dev:0 github.com/whimtrip/jwht-scrapper,num_dependents_deps.dev:0 +github.com/whimzyLive/ai-writer, github.com/whimzyLive/dootstrapper,num_dependents_deps.dev:0 github.com/whinc/api-sharp,num_dependents_deps.dev:0 github.com/whinc/es6-promise,num_dependents_deps.dev:0 @@ -1196416,6 +1217630,7 @@ github.com/whisperchi/mapbox_spider,num_dependents_deps.dev:0 github.com/whispereeed/mobx-cobweb,num_dependents_deps.dev:0 github.com/whispereeed/mobx-cobweb-react,num_dependents_deps.dev:0 github.com/whisperfairy/generator-hr,num_dependents_deps.dev:0 +github.com/whisperity/CodeChecker-Action, github.com/whisperity/lpython, github.com/whisperlab/fifi,num_dependents_deps.dev:0 github.com/whisperlab/last-draft-js-plugins,num_dependents_deps.dev:16 @@ -1196424,6 +1217639,7 @@ github.com/whisperlab/react-bootstrap-table,num_dependents_deps.dev:0 github.com/whisperlab/serverless-pg-migrations,num_dependents_deps.dev:0 github.com/whispersystems/libpastelog,num_dependents_deps.dev:0 github.com/whispir/whispir-java-sdk,num_dependents_deps.dev:0 +github.com/whisthq/update-appcast, github.com/whistle-plugins/whistle.autopac,num_dependents_deps.dev:0 github.com/whistle-plugins/whistle.combo,num_dependents_deps.dev:0 github.com/whistle-plugins/whistle.helloworld,num_dependents_deps.dev:0 @@ -1196549,6 +1217765,7 @@ github.com/whitedoghub/censorify,num_dependents_deps.dev:0 github.com/whitedoghub/startnodejs,num_dependents_deps.dev:0 github.com/whitedogio/fdc3-react,num_dependents_deps.dev:0 github.com/whiteducksoftware/azure-arm-action,num_dependents_deps.dev:0 +github.com/whiteducksoftware/azure-arm-action-js, github.com/whiteducksoftware/azure-devops-trigger-pipelines-task,num_dependents_deps.dev:0 github.com/whitef0x0/gtd.py, github.com/whitef0x0/mailminder,num_dependents_deps.dev:0 @@ -1196694,6 +1217911,7 @@ github.com/whitesource-ps/ws-copy-policy, github.com/whitesource-ps/ws-nexus-integration, github.com/whitesource-ps/ws-sbom-generator, github.com/whitesource-ps/ws-sdk, +github.com/whitesource/GitHubPackagesSecurityAction, github.com/whitesource/agents,num_dependents_deps.dev:810 github.com/whitesource/bower-plugin,num_dependents_deps.dev:0 github.com/whitesource/curekit,num_dependents_deps.dev:0 @@ -1196712,6 +1217930,8 @@ github.com/whitespy/django-node-assets, github.com/whitespy/django-simple-metatags, github.com/whitespy/djlime-metatags, github.com/whitespy/djlime-settings, +github.com/whitesunset/stale-watchdog-create-issues-action, +github.com/whitesunset/stale-watchdog-find-docs-action, github.com/whitesyn/humanize-duration-es6,num_dependents_deps.dev:0 github.com/whitesyn/passport-wrike-oauth2,num_dependents_deps.dev:0 github.com/whitetiger1399/litmus-ui,num_dependents_deps.dev:0 @@ -1196893,6 +1218113,7 @@ github.com/whoahbot/trouble, github.com/whoamTati/poka, github.com/whoami-shubham/obfuscator-io-metro-plugin,num_dependents_deps.dev:0 github.com/whoami-shubham/react-native-searchable-material-dropdown,num_dependents_deps.dev:0 +github.com/whoan/docker-build-with-cache-action, github.com/whoan/fixparser,num_dependents_deps.dev:0 github.com/whoan/sosfix, github.com/whoang11/Test,num_dependents_deps.dev:0 @@ -1197018,6 +1218239,7 @@ github.com/whoopschat/str-webpack-plugin,num_dependents_deps.dev:0 github.com/whoopschat/vue3-multipage,num_dependents_deps.dev:0 github.com/whoozle/android-file-transfer-linux,criticality_score:0.522860 github.com/whoozle/mmarch, +github.com/whopio/checkly-action, github.com/whorcare/react-canvas-poster,num_dependents_deps.dev:0 github.com/whorcare/vue-scale,num_dependents_deps.dev:0 github.com/whorcare/vue-scaling, @@ -1197114,6 +1218336,7 @@ github.com/whostolemyhat/postcss-oldflex,num_dependents_deps.dev:0 github.com/whostolemyhat/serial-key-generator,num_dependents_deps.dev:0 github.com/whosydd/gylint,num_dependents_deps.dev:0 github.com/whosydd/gylint-style, +github.com/whosydd/tag-from-version, github.com/whot/uji, github.com/whoughton/lz77,num_dependents_deps.dev:0 github.com/whoughton/yEnc,num_dependents_deps.dev:0 @@ -1197196,6 +1218419,7 @@ github.com/whtsky/kmanga_mobi, github.com/whtsky/maga, github.com/whtsky/mala, github.com/whtsky/meteor-client-bundler,num_dependents_deps.dev:0 +github.com/whtsky/msgfmt-action, github.com/whtsky/parguments, github.com/whtsky/pixelmatch-py, github.com/whtsky/prettier-config,num_dependents_deps.dev:0 @@ -1197360,6 +1218584,7 @@ github.com/whyohwhyamihere/expect,num_dependents_deps.dev:0 github.com/whyohwhyamihere/hue-module,num_dependents_deps.dev:0 github.com/whyohwhyamihere/metra,num_dependents_deps.dev:0 github.com/whyour/ng-hcharts,num_dependents_deps.dev:0 +github.com/whype-net/rust-depot-action, github.com/whyroland/trie-system, github.com/whyrusleeping/bitset,num_dependents_deps.dev:0 github.com/whyrusleeping/cbor-gen,num_dependents_deps.dev:837 @@ -1197391,10 +1218616,13 @@ github.com/whytheplatypus/dbus,num_dependents_deps.dev:0 github.com/whytobe/react-leaflet,num_dependents_deps.dev:0 github.com/whytobe/swagger-mongoose,num_dependents_deps.dev:0 github.com/whyttte/lotide,num_dependents_deps.dev:0 +github.com/whywaita/actions-cache-s3, github.com/whywaita/gigani,num_dependents_deps.dev:0 github.com/whywaita/ingress-external-caddy,num_dependents_deps.dev:0 github.com/whywaita/myshoes,num_dependents_deps.dev:0 github.com/whywaita/myshoes-providers,num_dependents_deps.dev:0 +github.com/whywaita/setup-lxd, +github.com/whywhy36/crafting-sandbox-action, github.com/whywriteit/wwi-agent,num_dependents_deps.dev:0 github.com/whyymj/tree-diff,num_dependents_deps.dev:0 github.com/whzd/ff-learn,num_dependents_deps.dev:0 @@ -1197558,6 +1218786,7 @@ github.com/widavies/fireflare, github.com/widcket/auth0,num_dependents_deps.dev:0 github.com/widdix/aws-cf-checker,num_dependents_deps.dev:0 github.com/widdix/aws-cf-templates,criticality_score:0.504450 +github.com/widdix/aws-cloudformation-github-deploy, github.com/widdix/aws-s3-virusscan,criticality_score:0.331940 github.com/widdix/cfn-create-or-update,num_dependents_deps.dev:0 github.com/widdix/complete-aws-iam-reference,criticality_score:0.301410 @@ -1197605,6 +1218834,7 @@ github.com/widevel/corrandom.js,num_dependents_deps.dev:0 github.com/widewing/toyota-na, github.com/widget-editor/widget-schema-editor,num_dependents_deps.dev:0 github.com/widgetapps/node_express_acl,num_dependents_deps.dev:0 +github.com/widgetbook/widgetbook-hosting, github.com/widgetbot-io/Zenith, github.com/widgetbot-io/cachified,num_dependents_deps.dev:0 github.com/widgetbot-io/crate, @@ -1197712,6 +1218942,7 @@ github.com/wifeng/go-sky,num_dependents_deps.dev:0 github.com/wifi-io/sdk,num_dependents_deps.dev:0 github.com/wifi-tally/wifi-tally,num_dependents_deps.dev:0 github.com/wifidog/wifidog-gateway,criticality_score:0.360560 +github.com/wifidoneright/go-action, github.com/wifinigel/wiperf_poller, github.com/wifiphisher/roguehostapd, github.com/wifiphisher/wifiphisher,criticality_score:0.410030 @@ -1197846,6 +1219077,7 @@ github.com/wikifactory/slate-trailing-block,num_dependents_deps.dev:54 github.com/wikilab/wikilab-model,num_dependents_deps.dev:0 github.com/wikilags/proyecto_go,num_dependents_deps.dev:0 github.com/wikilinks/neleval, +github.com/wikimedia-gadgets/deploy-action, github.com/wikimedia-gadgets/mock-mediawiki,num_dependents_deps.dev:0 github.com/wikimedia-gadgets/orange-i18n,num_dependents_deps.dev:0 github.com/wikimedia-gadgets/twinkle-core,num_dependents_deps.dev:0 @@ -1198281,6 +1219513,7 @@ github.com/wilfredlopez/youtube-api-search-typed,num_dependents_deps.dev:0 github.com/wilfredlopez/youtube-downloader,num_dependents_deps.dev:0 github.com/wilfredwee/dynamaws,num_dependents_deps.dev:0 github.com/wilfrem/rpgatsumaru-api,num_dependents_deps.dev:0 +github.com/wilfriedwoivre/action-deploy-azure-button, github.com/wilgucki/slack_utils, github.com/wilham-lynce/arkesel_python, github.com/wilhantian/cordova-plugin-alipay,num_dependents_deps.dev:0 @@ -1198370,6 +1219603,7 @@ github.com/will-hitchcock/shoelaces-js,num_dependents_deps.dev:0 github.com/will-in-wi/codeowner_parser,num_dependents_deps.dev:0 github.com/will-low/cryptopals,num_dependents_deps.dev:0 github.com/will-lucena/vue-tour,num_dependents_deps.dev:0 +github.com/will-molloy/copybara-action, github.com/will-murphy/django-json, github.com/will-newmarch/binary-stripes,num_dependents_deps.dev:0 github.com/will-newmarch/intuitive-neural-network,num_dependents_deps.dev:0 @@ -1198651,8 +1219885,10 @@ github.com/willfretwell/heatmap-calendar-react,num_dependents_deps.dev:0 github.com/willfrew/node-btrconf,num_dependents_deps.dev:0 github.com/willfrew/node-random-org,num_dependents_deps.dev:0 github.com/willfurnass/sgespawner, +github.com/willfurstenau/r2-dir-upload, github.com/willgarcia/hubot-openstack,num_dependents_deps.dev:0 github.com/willgarcia/hubot-ssh2,num_dependents_deps.dev:0 +github.com/willgarcia/workflow-wait-action, github.com/willgarrison/go-iobox,num_dependents_deps.dev:0 github.com/willgarrison/go-noise,num_dependents_deps.dev:0 github.com/willgdjones/node-red-contrib-mssql,num_dependents_deps.dev:0 @@ -1198858,6 +1220094,7 @@ github.com/williamfunchal/avanticatest,num_dependents_deps.dev:0 github.com/williamfzc/AQube_Core, github.com/williamfzc/ConnectionTracer, github.com/williamfzc/IPD, +github.com/williamfzc/diffctx, github.com/williamfzc/difile, github.com/williamfzc/dircompare, github.com/williamfzc/fastcap, @@ -1198879,6 +1220116,7 @@ github.com/williamfzc/pyminitouch, github.com/williamfzc/pysubmodule, github.com/williamfzc/pyudevmonitor, github.com/williamfzc/sepmachine, +github.com/williamfzc/srctag-action, github.com/williamfzc/stagesep, github.com/williamfzc/stagesep2, github.com/williamfzc/stagesepx, @@ -1198894,10 +1220132,12 @@ github.com/williamgladeye/fragl-displace,num_dependents_deps.dev:0 github.com/williamgrosset/react-mail-icon,num_dependents_deps.dev:0 github.com/williamhaley/firestore-emulator-slow,num_dependents_deps.dev:0 github.com/williamhaley/react-native-images-to-video,num_dependents_deps.dev:0 +github.com/williamhaw/setup-wiremock-action, github.com/williamherry/qiniu-js-sdk,num_dependents_deps.dev:0 github.com/williamhgough/go-echo-vue,num_dependents_deps.dev:0 github.com/williamho6000/react-native-star-rating,num_dependents_deps.dev:0 github.com/williamhogman/cloudevents-python, +github.com/williamhogman/kustomize-set-image-hook, github.com/williamhogman/slacktivist,num_dependents_deps.dev:0 github.com/williamholtam/ukpersonalfinance, github.com/williamhuey/node-ansimd,num_dependents_deps.dev:0 @@ -1199006,6 +1220246,7 @@ github.com/williammanco/performance-fps,num_dependents_deps.dev:0 github.com/williammanco/raf-handler,num_dependents_deps.dev:0 github.com/williammanco/reactive-three,num_dependents_deps.dev:0 github.com/williammanco/uniforms-gui,num_dependents_deps.dev:0 +github.com/williammartin/empty-gcs-bucket, github.com/williammartin/lag,num_dependents_deps.dev:0 github.com/williammck/hubot-basecamp-3,num_dependents_deps.dev:0 github.com/williammcrae/mpl115a2,num_dependents_deps.dev:0 @@ -1199355,6 +1220596,7 @@ github.com/willnorris/timestamp,num_dependents_deps.dev:0 github.com/willnorris/tools,num_dependents_deps.dev:0 github.com/willnorris/webmention,num_dependents_deps.dev:0 github.com/willnx/iiqtools, +github.com/willo32/google-drive-upload-action, github.com/willofindie/kamamana,num_dependents_deps.dev:0 github.com/willoizcitron/useless-npm-module,num_dependents_deps.dev:0 github.com/willonzxy/modest-abtest,num_dependents_deps.dev:0 @@ -1199496,6 +1220738,7 @@ github.com/willsteinmetz/notific8-closeall,num_dependents_deps.dev:0 github.com/willsteinmetz/notific8-icon,num_dependents_deps.dev:0 github.com/willsteinmetz/notific8-image,num_dependents_deps.dev:0 github.com/willsteinmetz/shipit-bower,num_dependents_deps.dev:0 +github.com/willstenzel/update-monday-status-action, github.com/willstocks-tech/dynamically-polyfill-features-for-a-script,num_dependents_deps.dev:0 github.com/willstott101/lazyjson, github.com/willstudy/sniffing,num_dependents_deps.dev:0 @@ -1199539,6 +1220782,7 @@ github.com/willwhite/stripe-cli,num_dependents_deps.dev:0 github.com/willwhite/yphase,num_dependents_deps.dev:0 github.com/willwhitney/exploration-reimplementation,Google github.com/willwhy/lambda-local-python, +github.com/willwillems/firestore-data, github.com/willwise/gs-pack-calc,num_dependents_deps.dev:0 github.com/willwise/gs-task,num_dependents_deps.dev:0 github.com/willworkgogogo/react-link-wave,num_dependents_deps.dev:0 @@ -1199742,6 +1220986,7 @@ github.com/wilrnh/sync-my-tasks, github.com/wilsaj/metalsmith-each,num_dependents_deps.dev:10 github.com/wilsilva/autocomplete-rc,num_dependents_deps.dev:0 github.com/wilsjame/cryptopals,num_dependents_deps.dev:0 +github.com/wilson-ang/github-asana-action, github.com/wilson-eft/wilson, github.com/wilson-faustino/easydomscrapper,num_dependents_deps.dev:0 github.com/wilson-faustino/extratosBancariosBr,num_dependents_deps.dev:0 @@ -1199819,9 +1221064,11 @@ github.com/wilsonsk/DataStructs,num_dependents_deps.dev:0 github.com/wilsont/phonenumbers,num_dependents_deps.dev:0 github.com/wilsontripshock/braintree-web-drop-in-ts,num_dependents_deps.dev:0 github.com/wilsonwc/infozip-bin,num_dependents_deps.dev:0 +github.com/wilsonwong1990/Org-reports-Actions, github.com/wilsonwu/translation-google,num_dependents_deps.dev:0 github.com/wilsonwu/vuetify-audio,num_dependents_deps.dev:0 github.com/wilsonzlin/SyncAV,num_dependents_deps.dev:0 +github.com/wilsonzlin/b2-upload-action, github.com/wilsonzlin/bcrypt-cli,num_dependents_deps.dev:0 github.com/wilsonzlin/bitwarden-secrets-sync,num_dependents_deps.dev:0 github.com/wilsonzlin/bwss,num_dependents_deps.dev:0 @@ -1199856,6 +1221103,7 @@ github.com/wilsonzlin/rmd,num_dependents_deps.dev:0 github.com/wilsonzlin/rmd-parse,num_dependents_deps.dev:0 github.com/wilsonzlin/routes,num_dependents_deps.dev:0 github.com/wilsonzlin/sacli,num_dependents_deps.dev:0 +github.com/wilsonzlin/setup-b2, github.com/wilsonzlin/shasync,num_dependents_deps.dev:0 github.com/wilsonzlin/transform-iterator,num_dependents_deps.dev:0 github.com/wilsonzlin/wasm-sys,num_dependents_deps.dev:0 @@ -1199939,6 +1221187,7 @@ github.com/wimtie/pdnsbe, github.com/wimvdc/svelte-panolens,num_dependents_deps.dev:0 github.com/win-acme/win-acme,criticality_score:0.527610 github.com/win-social/mercilessming, +github.com/win-t/gh-action-docker-state, github.com/win-t/go-sqlite3,num_dependents_deps.dev:0 github.com/win-t/lelet,num_dependents_deps.dev:0 github.com/win-t/waitcb,num_dependents_deps.dev:0 @@ -1200112,6 +1221361,7 @@ github.com/windmaomao/react-navigable,num_dependents_deps.dev:0 github.com/windmark/google-reminder-api-wrapper, github.com/windmichael/ng-image-as-particles,num_dependents_deps.dev:0 github.com/windmichael/ngx-acuw,num_dependents_deps.dev:0 +github.com/windmill-labs/windmill-gh-action-deploy, github.com/windmill/windmill,criticality_score:0.319330 github.com/windmilleng/abc123,num_dependents_deps.dev:0 github.com/windmilleng/buildbench,num_dependents_deps.dev:0 @@ -1200228,6 +1221478,7 @@ github.com/windyKite/belial-node-todo,num_dependents_deps.dev:0 github.com/windyKite/belial-ui,num_dependents_deps.dev:0 github.com/windyakin/Honoka,num_dependents_deps.dev:0 github.com/windyakin/awesome_fluent_logger,num_dependents_deps.dev:0 +github.com/windyakin/delete-package-versions-keep-latest, github.com/windycom/cordova-plugin-ios-cloudkit,num_dependents_deps.dev:0 github.com/windycom/fast-timezone,num_dependents_deps.dev:0 github.com/windycom/leaflet-kml,num_dependents_deps.dev:0 @@ -1200259,6 +1221510,7 @@ github.com/winebarrel/kani_laser,num_dependents_deps.dev:0 github.com/winebarrel/lambleg,num_dependents_deps.dev:0 github.com/winebarrel/lambtail,num_dependents_deps.dev:0 github.com/winebarrel/pd_event_v2,num_dependents_deps.dev:0 +github.com/winebarrel/pru-action, github.com/winebarrel/ridgepole,criticality_score:0.537370 github.com/winebarrel/terraform-provider-mysqlx,num_dependents_deps.dev:0 github.com/winedarksea/AutoTS, @@ -1200342,6 +1221594,7 @@ github.com/wingify/angular-time-picker,num_dependents_deps.dev:0 github.com/wingify/cookie-jar.js,num_dependents_deps.dev:0 github.com/wingify/marque,num_dependents_deps.dev:0 github.com/wingify/salesforce-bulkipy, +github.com/wingify/slack-github-action, github.com/wingify/vwo-go-sdk,num_dependents_deps.dev:0 github.com/wingify/vwo-go-sdk-example,num_dependents_deps.dev:0 github.com/wingify/vwo-java-sdk,num_dependents_deps.dev:0 @@ -1200393,6 +1221646,7 @@ github.com/winhiv/PyAAVF, github.com/winiceo/kevio, github.com/winiceo/leven,num_dependents_deps.dev:0 github.com/winify-ag/qr-scanner,num_dependents_deps.dev:0 +github.com/winify-ag/setup-phraseapp, github.com/wininsoft/com.lampa.startapp,num_dependents_deps.dev:0 github.com/wininsoft/webintent,num_dependents_deps.dev:0 github.com/winitzki/sofp,criticality_score:0.382460 @@ -1200676,6 +1221930,7 @@ github.com/winterframework-io/winter-root,num_dependents_deps.dev:0 github.com/winterframework-io/winter-tools,num_dependents_deps.dev:0 github.com/wintergentle/go_workspace,num_dependents_deps.dev:0 github.com/winterjs/winter,num_dependents_deps.dev:0 +github.com/winterjung/split, github.com/winterland1989/Action.js,num_dependents_deps.dev:0 github.com/winterland1989/ajax-action,num_dependents_deps.dev:0 github.com/winterland1989/mss,num_dependents_deps.dev:0 @@ -1200776,8 +1222031,10 @@ github.com/wioenena-q/JS-WioDB, github.com/wioenena-q/wio.db,num_dependents_deps.dev:0 github.com/wioenena-q/wioenena,num_dependents_deps.dev:0 github.com/wiogit/nested-read-write,num_dependents_deps.dev:0 +github.com/wiomoc/miscc, github.com/wiomoc/mosquitto-jwt-auth,num_dependents_deps.dev:0 github.com/wiomoc/whatsappweb-rs,num_dependents_deps.dev:0 +github.com/wip/action, github.com/wip/app,"criticality_score:0.469700,num_dependents_deps.dev:0" github.com/wip727/PyUSL, github.com/wiperandtrue/Discogs-APY, @@ -1200805,6 +1222062,7 @@ github.com/wireapp/cbor-codec.js,num_dependents_deps.dev:8 github.com/wireapp/cryptobox-jni,num_dependents_deps.dev:0 github.com/wireapp/cryptobox4j,num_dependents_deps.dev:3 github.com/wireapp/generic-message-proto,num_dependents_deps.dev:128 +github.com/wireapp/github-action-wire-messenger, github.com/wireapp/gradle-android-scala-plugin,num_dependents_deps.dev:0 github.com/wireapp/grunt-npm-bower,num_dependents_deps.dev:0 github.com/wireapp/helium,num_dependents_deps.dev:0 @@ -1200899,6 +1222157,7 @@ github.com/wirehead/strapi-plugin-prometheus-metrics,num_dependents_deps.dev:0 github.com/wirekang/blogen,num_dependents_deps.dev:0 github.com/wirekang/cfg,num_dependents_deps.dev:0 github.com/wirekang/exe-link,num_dependents_deps.dev:0 +github.com/wirekang/setup-ninja, github.com/wirekang/to,num_dependents_deps.dev:0 github.com/wireleap/client,num_dependents_deps.dev:0 github.com/wireleap/common,num_dependents_deps.dev:0 @@ -1200912,6 +1222171,7 @@ github.com/wirelineio/wireline-core, github.com/wireload/bottle-haml, github.com/wiremanb/spreadsheet,num_dependents_deps.dev:0 github.com/wiremind/chartreuse, +github.com/wiremind/helm-kubeval-action, github.com/wiremind/wiremind-kubernetes, github.com/wiremock/wiremock, github.com/wiremock/wiremock-webhooks-extension,num_dependents_deps.dev:0 @@ -1200967,6 +1222227,7 @@ github.com/wiretrustee/wiretrustee,num_dependents_deps.dev:0 github.com/wirewirewirewire/exhibition-helpers,num_dependents_deps.dev:0 github.com/wirewit/restretto, github.com/wirgen/fastify-openapi-generator,num_dependents_deps.dev:0 +github.com/wirgen/portainer-stack-redeploy-action, github.com/wiringbits/sjs-material-ui-facade,num_dependents_deps.dev:0 github.com/wiris/ckeditor5-mathml,num_dependents_deps.dev:0 github.com/wiris/html-integrations,num_dependents_deps.dev:88 @@ -1200979,6 +1222240,7 @@ github.com/wirrareka/sf-promise-gateway,num_dependents_deps.dev:0 github.com/wirrareka/sf-rethink-migrate, github.com/wirrell/SPART-python, github.com/wirsal/finalproject,num_dependents_deps.dev:0 +github.com/wirsich-io/action-npm-package-export-vars, github.com/wirsich/generator-komelo,num_dependents_deps.dev:0 github.com/wirsich/grunt-json-schema-validator,num_dependents_deps.dev:0 github.com/wirsich/grunt-licensr,num_dependents_deps.dev:0 @@ -1201175,6 +1222437,7 @@ github.com/wish/unbound_exporter,num_dependents_deps.dev:0 github.com/wish1/draw_motif_logo, github.com/wish1234/one,num_dependents_deps.dev:0 github.com/wish570225463/react-native-progressbar,num_dependents_deps.dev:0 +github.com/wish9919/github-project-issue-to-sheets, github.com/wishabhilash/native-component,num_dependents_deps.dev:0 github.com/wishabi/avro-cado,num_dependents_deps.dev:0 github.com/wishabi/global-docker-compose,num_dependents_deps.dev:0 @@ -1201227,7 +1222490,11 @@ github.com/wissile/react-native-pulse-anim,num_dependents_deps.dev:0 github.com/wist/node-red-contrib-sonoff-electrodragon-tasmota,num_dependents_deps.dev:0 github.com/wistbean/learn_python3_spider, github.com/wistcc/sheetyjs,num_dependents_deps.dev:0 +github.com/wistefan/check-compatibility, +github.com/wistefan/create-openapi-yaml, github.com/wistefan/gatling-aggregation-maven-plugin,num_dependents_deps.dev:0 +github.com/wistefan/get-releases-by-semver, +github.com/wistefan/validate-data-model, github.com/wisteria2gp/treeClass, github.com/wisteriaflash/countdown,num_dependents_deps.dev:0 github.com/wisteriaflash/generator-jdcproj,num_dependents_deps.dev:0 @@ -1201237,6 +1222504,8 @@ github.com/wistful/srtmerge, github.com/wistful/webmpris, github.com/wistia/filetype,num_dependents_deps.dev:0 github.com/wistia/hls.js,num_dependents_deps.dev:0 +github.com/wistia/parse-tool-versions, +github.com/wistia/publish-branch-to-npm, github.com/wistia/testcafe-reporter-reportportal-wistia,num_dependents_deps.dev:0 github.com/wistityhq/strapi,num_dependents_deps.dev:34 github.com/wistityhq/strapi-generate-admin,num_dependents_deps.dev:0 @@ -1201328,6 +1222597,7 @@ github.com/withaspark/toggle,num_dependents_deps.dev:0 github.com/withaspark/weather,num_dependents_deps.dev:0 github.com/withassociates/microfiche.js,num_dependents_deps.dev:0 github.com/withassociates/slices,num_dependents_deps.dev:0 +github.com/withastro/action, github.com/witheng/kawala-js,num_dependents_deps.dev:0 github.com/witherion/history,num_dependents_deps.dev:0 github.com/witherion/quill-markdown-shortcuts,num_dependents_deps.dev:0 @@ -1201356,6 +1222626,7 @@ github.com/withkash/node-kash,num_dependents_deps.dev:0 github.com/withleedh/ShowNodeModuleList,num_dependents_deps.dev:0 github.com/withletters/papery, github.com/withlin/macvlan-ipam-etcd,num_dependents_deps.dev:0 +github.com/withlogicco/setup-compose-cli, github.com/withlovee/Natural-Language-Generation,num_dependents_deps.dev:0 github.com/withmandala/node-repl, github.com/withmandala/setlist,num_dependents_deps.dev:0 @@ -1201441,6 +1222712,7 @@ github.com/withvoid/melting-pot,num_dependents_deps.dev:0 github.com/withw/wdio-element-screenshot,num_dependents_deps.dev:0 github.com/withwyf/x-vue-cli,num_dependents_deps.dev:0 github.com/withyoursquad/mandrill-send-promise,num_dependents_deps.dev:0 +github.com/withyourtribe/action-hosting-deploy, github.com/witify/formly,num_dependents_deps.dev:0 github.com/witjs/wecom, github.com/witjs/wit,num_dependents_deps.dev:0 @@ -1201473,6 +1222745,7 @@ github.com/wits-ai/wits, github.com/witsawa-corporation/eslint-witsawa-react,num_dependents_deps.dev:0 github.com/witsch/buildout.packagename, github.com/witsch/fblics, +github.com/witschi-electronic/action-confluence, github.com/witt3rd/create-meta,num_dependents_deps.dev:0 github.com/witt3rd/meta-create,num_dependents_deps.dev:0 github.com/witt86/ERE,num_dependents_deps.dev:0 @@ -1201531,6 +1222804,7 @@ github.com/wiwi1212/node-python-collaboration,num_dependents_deps.dev:0 github.com/wiwo-vue-workshop/logo,num_dependents_deps.dev:0 github.com/wiwski/audio-soundwave-generator, github.com/wiwvernia/golang,num_dependents_deps.dev:0 +github.com/wix-academy/github-lab-config-to-github-skills-readme-action, github.com/wix-incubator/async-flow,num_dependents_deps.dev:0 github.com/wix-incubator/carmi,num_dependents_deps.dev:0 github.com/wix-incubator/carmi-debug,num_dependents_deps.dev:0 @@ -1201796,6 +1223070,12 @@ github.com/wixdonkey/tailing-stream-with-watchfile,num_dependents_deps.dev:0 github.com/wixette/googdiff, github.com/wixette/p5.animS,num_dependents_deps.dev:0 github.com/wixo/public-gists,num_dependents_deps.dev:0 +github.com/wixplosives/action-electron-builder, +github.com/wixplosives/action-newrelic-report, +github.com/wixplosives/action-publish-pr-comment, +github.com/wixplosives/action-publish-test-metrics, +github.com/wixplosives/action-upload-to-s3, +github.com/wixplosives/b2, github.com/wixplosives/file-services,num_dependents_deps.dev:142 github.com/wixplosives/ifndef,num_dependents_deps.dev:4 github.com/wixplosives/lerna-publisher,num_dependents_deps.dev:0 @@ -1201930,6 +1223210,8 @@ github.com/wizgrav/aframe-effects,num_dependents_deps.dev:0 github.com/wizgrav/clubber,num_dependents_deps.dev:0 github.com/wizgrav/clubberize,num_dependents_deps.dev:0 github.com/wizgrav/precedence-maps,num_dependents_deps.dev:0 +github.com/wizhi/setup-buf, +github.com/wizhi/setup-task, github.com/wizicer/gulp-csvtojson,num_dependents_deps.dev:0 github.com/wizicer/hexo-tag-githubimage,num_dependents_deps.dev:0 github.com/wiziple/browser-lang,num_dependents_deps.dev:40 @@ -1201939,6 +1223221,7 @@ github.com/wizips/ng24HourTimeInput,num_dependents_deps.dev:0 github.com/wizjin/apns2,num_dependents_deps.dev:0 github.com/wizjin/eslint-config-wise,num_dependents_deps.dev:0 github.com/wizo06/logger,num_dependents_deps.dev:0 +github.com/wizofe/python-axblack-action, github.com/wizonesolutions/habitrpg-todo-sync,num_dependents_deps.dev:0 github.com/wizonesolutions/node-grootfs,num_dependents_deps.dev:0 github.com/wizonqalabs/rhino-error,num_dependents_deps.dev:0 @@ -1202068,6 +1223351,7 @@ github.com/wizzdi/ui-plugin-service,num_dependents_deps.dev:0 github.com/wizzdi/watchdog-service,num_dependents_deps.dev:0 github.com/wizzdi/whatsapp-model,num_dependents_deps.dev:0 github.com/wizzdi/whatsapp-service,num_dependents_deps.dev:0 +github.com/wizzdi/wizzdi-action-tsc, github.com/wizzer711/bump-webpack-plugin,num_dependents_deps.dev:0 github.com/wizzer711/yarn-test,num_dependents_deps.dev:0 github.com/wizzie-io/config-bootstrapper,num_dependents_deps.dev:3 @@ -1202127,13 +1223411,17 @@ github.com/wjc49420645/node-wxpay,num_dependents_deps.dev:0 github.com/wjdgks1224/gneToNodejs,num_dependents_deps.dev:0 github.com/wjdgustn/angledata-to-pathdata,num_dependents_deps.dev:0 github.com/wjdp/htmltest,num_dependents_deps.dev:0 +github.com/wjdp/htmltest-action, github.com/wjdqhry/go-bogus,num_dependents_deps.dev:0 github.com/wjdruden/wjdruden,num_dependents_deps.dev:0 github.com/wjdskagjs1/fact-npmtest,num_dependents_deps.dev:0 github.com/wjdsupj/fbmessage, github.com/wjeek/qupload-bin,num_dependents_deps.dev:0 +github.com/wjervis7/vitest-badge-action, github.com/wjessop/go-dynect,num_dependents_deps.dev:0 github.com/wjfgithub940325/wjf_comp,num_dependents_deps.dev:0 +github.com/wjftu/copy-directory-via-ssh-password, +github.com/wjftu/vuepress_1.x_compiler, github.com/wjgogogo/kickoff-react-app,num_dependents_deps.dev:0 github.com/wjh/zif,num_dependents_deps.dev:0 github.com/wjh/zif_identity,num_dependents_deps.dev:0 @@ -1202344,6 +1223632,7 @@ github.com/wkf/semaphive,num_dependents_deps.dev:0 github.com/wkgcass/Captcha,num_dependents_deps.dev:0 github.com/wkgcass/Latte-lang,num_dependents_deps.dev:0 github.com/wkgcass/Style,num_dependents_deps.dev:0 +github.com/wkgcass/chat-in-issue, github.com/wkgcass/f,num_dependents_deps.dev:0 github.com/wkgreat/algokit, github.com/wkgreat/ol-proj-ch,num_dependents_deps.dev:0 @@ -1202433,7 +1223722,9 @@ github.com/wksw/protoc-gen-restful2grpc,num_dependents_deps.dev:0 github.com/wksw/rql,num_dependents_deps.dev:0 github.com/wkt84/pydicom-tools, github.com/wktang/nodebb-plugin-category-sort-by-votes,num_dependents_deps.dev:0 +github.com/wktk/conflibot, github.com/wktk/gatsby-plugin-remark-footnotes,num_dependents_deps.dev:0 +github.com/wktk/github-project-connect-action, github.com/wkwiatek/angularjs-livechat,num_dependents_deps.dev:0 github.com/wkwiatek/react-hot-loader-minimal-boilerplate,num_dependents_deps.dev:0 github.com/wkwkgg/playground-go,num_dependents_deps.dev:0 @@ -1202469,6 +1223760,7 @@ github.com/wl9739/hyper-qing,num_dependents_deps.dev:0 github.com/wlabranche/dew,num_dependents_deps.dev:0 github.com/wlabranche/sasquatch,num_dependents_deps.dev:0 github.com/wlabranche/soundboard,num_dependents_deps.dev:0 +github.com/wlabu/remove-stale-branches, github.com/wlad111/pymc3, github.com/wlademon/dctl,num_dependents_deps.dev:0 github.com/wlademon/filehelp,num_dependents_deps.dev:0 @@ -1202598,6 +1223890,7 @@ github.com/wlibo666/elastic,num_dependents_deps.dev:0 github.com/wlibo666/fsnotify,num_dependents_deps.dev:0 github.com/wlibo666/gotags,num_dependents_deps.dev:0 github.com/wlibo666/procinfo,num_dependents_deps.dev:0 +github.com/wlicamele-bw/pom-version-bump, github.com/wlim33/rust-spades,num_dependents_deps.dev:0 github.com/wlin00/wlinUi,num_dependents_deps.dev:0 github.com/wlindner/rollup-plugin-livereload-client,num_dependents_deps.dev:0 @@ -1202607,6 +1223900,8 @@ github.com/wlion/elixir,num_dependents_deps.dev:0 github.com/wlipa/kryptos,num_dependents_deps.dev:0 github.com/wliu2016/PyBerryNet, github.com/wliu_intern/stf_selector, +github.com/wlixcc/SFTP-Deploy-Action, +github.com/wlixcc/pod-lib-update-action, github.com/wljince007/redigo,num_dependents_deps.dev:0 github.com/wljing/cli,num_dependents_deps.dev:0 github.com/wlk1204/yoocharts,num_dependents_deps.dev:0 @@ -1202614,6 +1223909,7 @@ github.com/wlkkn/kndev,num_dependents_deps.dev:0 github.com/wlkkn/knfileimporter,num_dependents_deps.dev:0 github.com/wlkkn/node_express,num_dependents_deps.dev:0 github.com/wlknoop/web-cli,num_dependents_deps.dev:0 +github.com/wlkrm/auto-rebase-upstream-node, github.com/wll-zhou/url-search-params,num_dependents_deps.dev:0 github.com/wll8/fy,num_dependents_deps.dev:0 github.com/wll8/mockm, @@ -1202783,6 +1224079,7 @@ github.com/wmcmahan/react-native-calendar-events,"criticality_score:0.562780,num github.com/wmcmurray/game-loop-js,num_dependents_deps.dev:0 github.com/wmcmurray/just-detect-adblock,num_dependents_deps.dev:4 github.com/wmcmurray/phantomjs-html,num_dependents_deps.dev:0 +github.com/wmdanor-universe/node-project-semver-check, github.com/wmde/DataValuesJavaScript,num_dependents_deps.dev:0 github.com/wmde/WikibaseDataModelJavaScript,num_dependents_deps.dev:0 github.com/wmde/WikibaseDataModelTypes,num_dependents_deps.dev:0 @@ -1203341,6 +1224638,7 @@ github.com/woddell/go-rest-api-course,num_dependents_deps.dev:0 github.com/woderwang/mkflow,num_dependents_deps.dev:0 github.com/wodeyouxiang12306/ztjs,num_dependents_deps.dev:0 github.com/wodka/gulp-slate,num_dependents_deps.dev:0 +github.com/wodndb/google-drive-upload-action, github.com/wodowod/computator,num_dependents_deps.dev:0 github.com/woduq1414/deep-learning-without-framework, github.com/woefe/ytcc, @@ -1203359,6 +1224657,7 @@ github.com/woffu/react-native-boundary,num_dependents_deps.dev:0 github.com/wofh/javascript-style-guide,num_dependents_deps.dev:0 github.com/wofh/ui-kit-react,num_dependents_deps.dev:0 github.com/woflow/restful-keystone,num_dependents_deps.dev:0 +github.com/wofsauge/Isaac-xmlvalidator-action, github.com/woganmay/wakizashi,num_dependents_deps.dev:0 github.com/wogayu/case-formatter-js,num_dependents_deps.dev:0 github.com/woghd9072/go,num_dependents_deps.dev:0 @@ -1203517,6 +1224816,7 @@ github.com/wokwi/gcc-output-parser,num_dependents_deps.dev:0 github.com/wokwi/littlefs-wasm, github.com/wokwi/rp2040js,num_dependents_deps.dev:0 github.com/wokwi/uf2,num_dependents_deps.dev:0 +github.com/wokwi/wokwi-ci-action, github.com/wokwi/wokwi-elements,num_dependents_deps.dev:0 github.com/wol-soft/ComposedValueRegistry,num_dependents_deps.dev:0 github.com/wol4aravio/Cybernetics, @@ -1203668,6 +1224968,9 @@ github.com/wolfgrandm/go_homework,num_dependents_deps.dev:0 github.com/wolfhong/LunarCalendar,Google github.com/wolfhong/formic, github.com/wolfhong/python-pisces, +github.com/wolfia-app/wolfia-deploy, +github.com/wolfia-app/wolfia-github-action, +github.com/wolfia-app/wolfia-ios-build-setup, github.com/wolfie-tools-frontend/wolfie-tools-front-end-api,num_dependents_deps.dev:0 github.com/wolfiediscord/discord-embed-generator,num_dependents_deps.dev:0 github.com/wolfiems/homebridge-philipstv-2012,num_dependents_deps.dev:0 @@ -1203678,6 +1224981,7 @@ github.com/wolfiex/d3-fcs,num_dependents_deps.dev:0 github.com/wolfiex/svg-center,num_dependents_deps.dev:0 github.com/wolfiex/svg-centre,num_dependents_deps.dev:0 github.com/wolfiex/svg-protect,num_dependents_deps.dev:0 +github.com/wolfigster/rcon-action, github.com/wolfika/daily-menu,num_dependents_deps.dev:0 github.com/wolfika/express-escher,num_dependents_deps.dev:0 github.com/wolfika/generator-wp-suite,num_dependents_deps.dev:0 @@ -1203771,6 +1225075,7 @@ github.com/wollac/iota-crypto-demo,num_dependents_deps.dev:0 github.com/wollanup/bs,num_dependents_deps.dev:0 github.com/wollardj/mandrillctl,num_dependents_deps.dev:0 github.com/wollardj/node-simple-plist,num_dependents_deps.dev:9088 +github.com/wollfish/cloudflare-purge-action, github.com/wollio/angular2_photoswipe,num_dependents_deps.dev:0 github.com/wollld/react-generatorx,num_dependents_deps.dev:0 github.com/wolmir/gea-js,num_dependents_deps.dev:0 @@ -1204096,6 +1225401,7 @@ github.com/wooblock/block-address,num_dependents_deps.dev:0 github.com/wooboo/copy-as,num_dependents_deps.dev:0 github.com/wooboo/create-react-app,num_dependents_deps.dev:0 github.com/wooboo/generator-cgk-angular,num_dependents_deps.dev:0 +github.com/woocart/deploy-action, github.com/woocommerce/FlexSlider,"criticality_score:0.357090,num_dependents_deps.dev:1" github.com/woocommerce/action-scheduler,criticality_score:0.498650 github.com/woocommerce/selectWoo,num_dependents_deps.dev:0 @@ -1204226,6 +1225532,7 @@ github.com/woodyrew/metalsmith-json-to-files,num_dependents_deps.dev:0 github.com/woodyrew/node-pilite,num_dependents_deps.dev:0 github.com/woodysee/frizzy,num_dependents_deps.dev:0 github.com/woodythewoodpecker/mandrill-for-py3, +github.com/woodyyan/tencent-serverless-action, github.com/wooey/Wooey,criticality_score:0.384810 github.com/wooey/clinto, github.com/woofers/discord-jam-2,num_dependents_deps.dev:0 @@ -1204775,6 +1226082,7 @@ github.com/woorui/dict,num_dependents_deps.dev:0 github.com/woosanggyu/sooks,num_dependents_deps.dev:0 github.com/wooseopkim/goclock,num_dependents_deps.dev:0 github.com/wooseopkim/haxictas-scraper, +github.com/wooseopkim/unpublished-tags, github.com/woosi8/backend-go,num_dependents_deps.dev:0 github.com/woosi8/go_nomad,num_dependents_deps.dev:0 github.com/woostju/ansible-client,num_dependents_deps.dev:0 @@ -1204856,6 +1226164,7 @@ github.com/wopian/kitsu-missing-enddates,num_dependents_deps.dev:0 github.com/wopian/preferred-locale,num_dependents_deps.dev:0 github.com/wopian/renovate-config,num_dependents_deps.dev:0 github.com/wopian/smooth-corners,num_dependents_deps.dev:0 +github.com/wopox1337/setup-amxxpawn, github.com/wopperer/csv-sorter,num_dependents_deps.dev:0 github.com/woq-blended/akka-osgi,num_dependents_deps.dev:116 github.com/woq-blended/blended,num_dependents_deps.dev:16137 @@ -1204971,6 +1226280,7 @@ github.com/words/wikipedia-tldr,num_dependents_deps.dev:0 github.com/words/wiktionary,num_dependents_deps.dev:0 github.com/wordset/visible, github.com/wordtoken/wordtoken, +github.com/wordtreefoundation/archivist-client, github.com/wordup-dev/wordup-cli,num_dependents_deps.dev:0 github.com/wordway/wordway-cli,num_dependents_deps.dev:0 github.com/wordythebyrd/wordythebyrd,num_dependents_deps.dev:0 @@ -1205062,7 +1226372,9 @@ github.com/workfloapp/react-commit-types,num_dependents_deps.dev:0 github.com/workfloapp/styles,num_dependents_deps.dev:0 github.com/workflow-4-node/mongo-crunch, github.com/workflow-4-node/wf4node-mongodb-persistence,num_dependents_deps.dev:0 +github.com/workflow-actions/conventional-changelog-action, github.com/workflow-connector/workflow,num_dependents_deps.dev:0 +github.com/workflow/nix-shell-action, github.com/workflowfm/pew,num_dependents_deps.dev:0 github.com/workflowhub-eu/galaxy2cwl, github.com/workflowhub/workflowhub, @@ -1205109,6 +1226421,7 @@ github.com/workivate/serverless-stack-output,num_dependents_deps.dev:0 github.com/workjalexanderfox/break-yourself,num_dependents_deps.dev:0 github.com/workjs/workjs,num_dependents_deps.dev:0 github.com/worklez/legacy-jasmine-reporters,num_dependents_deps.dev:0 +github.com/worklifebeyond/hasura-cli-action, github.com/worklifebeyond/wlb-ra-data-hasura,num_dependents_deps.dev:0 github.com/worklifebeyond/wlb-role-helper-js,num_dependents_deps.dev:0 github.com/worklifebeyond/wlb-utils-components,num_dependents_deps.dev:0 @@ -1205158,6 +1226471,7 @@ github.com/worksight/rewire,num_dependents_deps.dev:0 github.com/workslon/generator-mm-campaign,num_dependents_deps.dev:0 github.com/worksolutions/frontend-utils,num_dependents_deps.dev:0 github.com/worksome/jira-branch-name-validator-action,num_dependents_deps.dev:0 +github.com/worksome/phpinsights-app, github.com/workstreams-ai/slack-block-kit,num_dependents_deps.dev:0 github.com/workswithweb/devcharts,num_dependents_deps.dev:0 github.com/workswithweb/threejs-orbit-controls,num_dependents_deps.dev:0 @@ -1205194,6 +1226508,8 @@ github.com/world-federation-of-advertisers/common-jvm,Google github.com/world-federation-of-advertisers/cross-media-measurement-api,Google github.com/world-gaming-fed/express-ua-redirect,num_dependents_deps.dev:0 github.com/world-kit/kit-assistant,num_dependents_deps.dev:0 +github.com/world-mastery/ecs-check-image-action, +github.com/world-mastery/sceptre-deploy-action, github.com/world-of-cryptopups/atomicassets-go,num_dependents_deps.dev:0 github.com/world-of-cryptopups/cordy,num_dependents_deps.dev:0 github.com/world-typer/milano-tree-library, @@ -1205221,6 +1226537,7 @@ github.com/worldhqinc/eslint-config-whq,num_dependents_deps.dev:0 github.com/worldhqinc/stylelint-config-whq,num_dependents_deps.dev:0 github.com/worldhqinc/whq-google-map,num_dependents_deps.dev:0 github.com/worldhqinc/whq-sliders,num_dependents_deps.dev:0 +github.com/worldiety/chia, github.com/worldiety/goup,num_dependents_deps.dev:0 github.com/worldiety/vfsftp,num_dependents_deps.dev:0 github.com/worldline-spain/json-path-value,num_dependents_deps.dev:0 @@ -1205254,6 +1226571,7 @@ github.com/worldofprasanna/grpc-golang,num_dependents_deps.dev:0 github.com/worldoneo/bigmap,num_dependents_deps.dev:0 github.com/worldoneo/styyinstaller,num_dependents_deps.dev:0 github.com/worldprogrammingltd/dex,num_dependents_deps.dev:0 +github.com/worldroot/postgresql-action, github.com/worldsibu/convector-cli,num_dependents_deps.dev:0 github.com/worldsibu/convector-rest-api,num_dependents_deps.dev:0 github.com/worldsibu/convector-rest-api-decorators,num_dependents_deps.dev:0 @@ -1205424,6 +1226742,7 @@ github.com/woubuc/sweep,num_dependents_deps.dev:0 github.com/woubuc/trai,num_dependents_deps.dev:0 github.com/woudc/woudc-extcsv, github.com/woudc/woudc-formats, +github.com/woudsma/dokku-deploy-github-action, github.com/woudsma/workspaces-cli,num_dependents_deps.dev:0 github.com/wouga/auto-complete,num_dependents_deps.dev:0 github.com/wouldgo/name-dot-com-updater,num_dependents_deps.dev:0 @@ -1205527,8 +1226846,39 @@ github.com/wovue/off-canvas,num_dependents_deps.dev:0 github.com/wovue/offcanvas,num_dependents_deps.dev:0 github.com/wovue/scroader,num_dependents_deps.dev:0 github.com/wow-222/easy-fetch,num_dependents_deps.dev:0 +github.com/wow-actions/activity-report, +github.com/wow-actions/add-badges, +github.com/wow-actions/auto-assign, +github.com/wow-actions/auto-close-fixed-issues, +github.com/wow-actions/auto-comment, +github.com/wow-actions/contributors-list, +github.com/wow-actions/daily-saying, +github.com/wow-actions/delete-stale-releases, +github.com/wow-actions/dingtalk-notify, +github.com/wow-actions/download-upload, +github.com/wow-actions/duplicate-issue, +github.com/wow-actions/export-version, +github.com/wow-actions/get-package-manager, +github.com/wow-actions/label-commands, +github.com/wow-actions/needs-more-info, +github.com/wow-actions/potential-duplicates, +github.com/wow-actions/pr-triage, +github.com/wow-actions/purge-readme, +github.com/wow-actions/release-github-action, +github.com/wow-actions/semantic-pull-requests, +github.com/wow-actions/slash-commands, +github.com/wow-actions/spell-checker, +github.com/wow-actions/unfurl-links, +github.com/wow-actions/update-authors, +github.com/wow-actions/update-contributors, +github.com/wow-actions/update-file, +github.com/wow-actions/use-app-token, +github.com/wow-actions/visitor-badge, +github.com/wow-actions/welcome, +github.com/wow-actions/wip, github.com/wow-joy/wowjoy,num_dependents_deps.dev:0 github.com/wow-kit/hoo-kit,num_dependents_deps.dev:0 +github.com/wow-rp-addons/actions-editorconfig-check, github.com/wow-yorick/tools,num_dependents_deps.dev:0 github.com/wow0000/nodeshout-napi, github.com/wow0000/pronote-api,num_dependents_deps.dev:0 @@ -1205551,6 +1226901,7 @@ github.com/wowinter13/finance_rb,num_dependents_deps.dev:0 github.com/wowissu/dev,num_dependents_deps.dev:0 github.com/wowissu/v-dragger,num_dependents_deps.dev:0 github.com/wowissu/vutils,num_dependents_deps.dev:0 +github.com/wowjeeez/rust-conf-read, github.com/wowless-dev/cli, github.com/wowlusitong/babel-plugin-tailwind-dark,num_dependents_deps.dev:0 github.com/wowlusitong/forward-ref,num_dependents_deps.dev:0 @@ -1205613,6 +1226964,7 @@ github.com/wowucco/g3,num_dependents_deps.dev:0 github.com/wowuwowuwo/practice,num_dependents_deps.dev:0 github.com/wowvendor/commitlint-config,num_dependents_deps.dev:0 github.com/wowvendor/eslint-configs,num_dependents_deps.dev:2 +github.com/wowvendor/release-notify-action, github.com/wowworks-team/phone-codes, github.com/wowworks-team/wow-ant-design,num_dependents_deps.dev:0 github.com/wowxoxo/iit-sass-ui,num_dependents_deps.dev:0 @@ -1205721,6 +1227073,7 @@ github.com/wpbdry/google-slides,num_dependents_deps.dev:0 github.com/wpbdry/gsheets_pkg, github.com/wpbdry/pyterm_progress_bar_pkg, github.com/wpbindt/metronome, +github.com/wpbonelli/schedule-outage, github.com/wpboots/boots-generator,num_dependents_deps.dev:0 github.com/wpbrasil/generator-odin,num_dependents_deps.dev:0 github.com/wpbrasil/odin,criticality_score:0.386080 @@ -1205738,6 +1227091,7 @@ github.com/wpcampus/wpcampus-wc-subscribe,num_dependents_deps.dev:0 github.com/wpcampus/wpcampus-wc-tweets,num_dependents_deps.dev:0 github.com/wpcampus/wpcampus-web-components,num_dependents_deps.dev:0 github.com/wpcfan/taskmgr,num_dependents_deps.dev:0 +github.com/wpcodefactory/upload-tag-to-url, github.com/wpdas/reactive-singleton,num_dependents_deps.dev:0 github.com/wpdo/react-native-sms-z,num_dependents_deps.dev:0 github.com/wpears/add-props-stream,num_dependents_deps.dev:0 @@ -1205750,6 +1227104,7 @@ github.com/wpears/read-until,num_dependents_deps.dev:0 github.com/wpears/s3-querystring-auth,num_dependents_deps.dev:0 github.com/wpears/stream-stats,num_dependents_deps.dev:0 github.com/wpengine/faustjs,num_dependents_deps.dev:0 +github.com/wpengine/github-action-wpe-site-deploy, github.com/wpengine/headless-docs,num_dependents_deps.dev:0 github.com/wpengine/headless-framework,num_dependents_deps.dev:0 github.com/wpengine/logshare,num_dependents_deps.dev:0 @@ -1205881,9 +1227236,11 @@ github.com/wpsh/releaselog,num_dependents_deps.dev:0 github.com/wpsh/to-wp-txt,num_dependents_deps.dev:0 github.com/wpshopify/api,num_dependents_deps.dev:0 github.com/wpshopify/components,num_dependents_deps.dev:0 +github.com/wpsmith/github-action-git-deploy, github.com/wpsmith/wp-cli-python, github.com/wpsmithtwc/gitbook-plugin-vis,num_dependents_deps.dev:0 github.com/wpspa/webpack,num_dependents_deps.dev:0 +github.com/wpstockroom/github-action, github.com/wpsumsun/guluer,num_dependents_deps.dev:0 github.com/wpsumsun/react-ts-dev-config,num_dependents_deps.dev:0 github.com/wptmdoorn/methcomp, @@ -1206012,6 +1227369,8 @@ github.com/wramp/cards-ascii,num_dependents_deps.dev:0 github.com/wramp/cards-unicode,num_dependents_deps.dev:0 github.com/wramp/draw-from-array,num_dependents_deps.dev:0 github.com/wramp/multiline-concat,num_dependents_deps.dev:0 +github.com/wranders/ghapp-token-action, +github.com/wranders/markdown-to-pages-action, github.com/wranggle/kvid,num_dependents_deps.dev:18 github.com/wranggle/rpc,num_dependents_deps.dev:6 github.com/wranggle/storage,num_dependents_deps.dev:0 @@ -1206059,6 +1227418,7 @@ github.com/wray/slack_smashbot, github.com/wray/wems, github.com/wraytw/powter,num_dependents_deps.dev:0 github.com/wrboyce/ec2hashcat, +github.com/wrboyce/python-lint-action, github.com/wrboyce/sirious, github.com/wrboyce/telegrambot, github.com/wrbs/parcel-plugin-html-externals,num_dependents_deps.dev:0 @@ -1206068,6 +1227428,7 @@ github.com/wrdieter/jquery_context_menu-rails,num_dependents_deps.dev:0 github.com/wrdv/distlock,num_dependents_deps.dev:0 github.com/wrdv/scalalock,num_dependents_deps.dev:0 github.com/wre232114/enhanced-tsconfig-paths-webpack-plugin,num_dependents_deps.dev:0 +github.com/wreality/filtered-env, github.com/wreally/typesense-js,num_dependents_deps.dev:0 github.com/wreckage/django-happenings, github.com/wrecodde/deadpool, @@ -1206075,6 +1227436,7 @@ github.com/wrecodde/porter-db, github.com/wrecodde/porterdb, github.com/wrecodde/thehulk, github.com/wreddily/orangearrow, +github.com/wreiske/Rocket.Chat.GitHub.Action.Notification, github.com/wren-lang/wren,criticality_score:0.546070 github.com/wrench-project/wrench-python-api, github.com/wrenchzc/simple-face-alignment, @@ -1206391,6 +1227753,7 @@ github.com/wrmsr/megalith,num_dependents_deps.dev:0 github.com/wrmsr/omnibus, github.com/wrmsr/teller, github.com/wrn14897/starwars-names,num_dependents_deps.dev:0 +github.com/wrngrn/wg-test-action, github.com/wro4j/rhino,num_dependents_deps.dev:15 github.com/wro4j/wro4j,"criticality_score:0.543180,num_dependents_deps.dev:36" github.com/wrobel/eslint-config-gw,num_dependents_deps.dev:0 @@ -1206634,8 +1227997,10 @@ github.com/wshaver/mongoose-when,num_dependents_deps.dev:0 github.com/wshekrota/convertcsv2json,num_dependents_deps.dev:0 github.com/wshekrota/egopipe,num_dependents_deps.dev:0 github.com/wshekrota/egopipe_mail,num_dependents_deps.dev:0 +github.com/wshen001/shopify-theme-action, github.com/wshen4/react-dropdown-calendar,num_dependents_deps.dev:0 github.com/wshf253/lab7_stat, +github.com/wshihadeh/docker-deployment-action, github.com/wshiqtb/seconds-convert,num_dependents_deps.dev:0 github.com/wshirey/js-lib-travis-ci,num_dependents_deps.dev:0 github.com/wshito/asciidoctor-chunker,num_dependents_deps.dev:0 @@ -1206741,6 +1228106,7 @@ github.com/wsmd/ws-multipath,num_dependents_deps.dev:0 github.com/wsmelojr/nmiblocknet,num_dependents_deps.dev:0 github.com/wsmith323/namedspace, github.com/wsmith323/staticmodel, +github.com/wsmith324/beanstalk-deploy, github.com/wsmlby/Tang300Encoder, github.com/wsmlby/benchmark,num_dependents_deps.dev:0 github.com/wsmlby/ghost-b2,num_dependents_deps.dev:0 @@ -1207073,6 +1228439,7 @@ github.com/wso2/wso2-shindig,num_dependents_deps.dev:0 github.com/wso2/wso2-wsdl4j,num_dependents_deps.dev:89 github.com/wsoeltz/react-use-previous-hook,num_dependents_deps.dev:0 github.com/wsong0101/boardgamehub,num_dependents_deps.dev:0 +github.com/wsoula/Awesome-CV-action, github.com/wsoula/hubot-infinite-loop,num_dependents_deps.dev:0 github.com/wsp-sag/Lasso, github.com/wsp-sag/network_wrangler, @@ -1207322,6 +1228689,7 @@ github.com/wtfil/terminal-share,num_dependents_deps.dev:0 github.com/wtfil/tsh, github.com/wtfil/tsh-server,num_dependents_deps.dev:0 github.com/wtfil/web-peer,num_dependents_deps.dev:0 +github.com/wtfiscrq/conventional-commits-action, github.com/wtfjun/coi,num_dependents_deps.dev:0 github.com/wtflmao/simpsh,num_dependents_deps.dev:0 github.com/wtforms/flask-wtf, @@ -1207418,6 +1228786,7 @@ github.com/wtrdrnkr/pyrecon, github.com/wtrevino/django-djobberbase, github.com/wtrevino/pycfdi, github.com/wtrocki/generator-rcstep,num_dependents_deps.dev:0 +github.com/wtrocki/npm-publish-action-monorepo, github.com/wtrocki/package-catalog, github.com/wts-dev/populi-api-python, github.com/wtsai/chat-robot,num_dependents_deps.dev:0 @@ -1207496,6 +1228865,7 @@ github.com/wtzeng1/umi-plugin-externals,num_dependents_deps.dev:0 github.com/wu-dada/baidupankey, github.com/wu-dada/uploader-browser,num_dependents_deps.dev:0 github.com/wu-json/personal-website,num_dependents_deps.dev:0 +github.com/wu-json/read-android-build-gradle, github.com/wu-lee/dinty,num_dependents_deps.dev:0 github.com/wu007kun/date-based-password, github.com/wu191287278/swagger-springboot-maven-plugin,num_dependents_deps.dev:0 @@ -1207513,6 +1228883,7 @@ github.com/wuallanx/facebook-album-downloader, github.com/wuan/ci-tools, github.com/wuan/klimalogger, github.com/wuan/python-hyperschema, +github.com/wuan/sagemath-action, github.com/wuanrin/vue-countdown-plus,num_dependents_deps.dev:0 github.com/wuatanabe/R3c,num_dependents_deps.dev:0 github.com/wuatanabe/mqtt_node,num_dependents_deps.dev:0 @@ -1207780,6 +1229151,7 @@ github.com/wuichen/aws-simple-service,num_dependents_deps.dev:0 github.com/wuifdesign/antd-react-extensions,num_dependents_deps.dev:0 github.com/wuifdesign/flag-icons-svg,num_dependents_deps.dev:0 github.com/wuifdesign/grunt-concat-with-sourcemaps,num_dependents_deps.dev:0 +github.com/wuilliam321/soapui-actions, github.com/wujackjack2021/surprise-eggs-cli, github.com/wujiabk/datepicker,num_dependents_deps.dev:0 github.com/wujiah251/raft,num_dependents_deps.dev:0 @@ -1207830,6 +1229202,7 @@ github.com/wujohns/gm-img,num_dependents_deps.dev:0 github.com/wujohns/less-modulesify,num_dependents_deps.dev:0 github.com/wujohns/tencent-sls-nestjs,num_dependents_deps.dev:0 github.com/wujohns/webpack-2b,num_dependents_deps.dev:0 +github.com/wujood/gbdk-2020-github-builder, github.com/wujr5/shlink,num_dependents_deps.dev:0 github.com/wujr5/vue-pug-atomcss-loader,num_dependents_deps.dev:0 github.com/wujuguang/autoloads, @@ -1207906,6 +1229279,8 @@ github.com/wulf/gluttony,num_dependents_deps.dev:0 github.com/wulf2468/dragula,num_dependents_deps.dev:0 github.com/wulf2468/ng2-dragula,num_dependents_deps.dev:0 github.com/wulfgarpro/generator-cesium,num_dependents_deps.dev:0 +github.com/wulfland/DevOpsConAction, +github.com/wulfland/DockerActionRecipe, github.com/wulfmann/aws-coco, github.com/wulfmann/cdk-express, github.com/wulfmann/constructs, @@ -1208022,6 +1229397,7 @@ github.com/wumke/react-native-skewable-view,num_dependents_deps.dev:0 github.com/wumo-util/newconan, github.com/wumouren/copy-wheel,num_dependents_deps.dev:0 github.com/wumpcord/rest,num_dependents_deps.dev:0 +github.com/wumphlett/repostats, github.com/wumpus/pandas-appender, github.com/wumpus/paramsurvey, github.com/wumpz/java-diff-utils,num_dependents_deps.dev:582 @@ -1208189,6 +1229565,7 @@ github.com/wuruipeng404/scaffold,num_dependents_deps.dev:0 github.com/wuruiqi/alpha1p, github.com/wuryscamp/go-glide-1,num_dependents_deps.dev:0 github.com/wusamin/dsnip,num_dependents_deps.dev:0 +github.com/wusatosi/setup-gh, github.com/wuscier/node_addon_js,num_dependents_deps.dev:0 github.com/wuseal/FrameCode,num_dependents_deps.dev:0 github.com/wuseal/JsonToKotlinClass,criticality_score:0.338670 @@ -1208793,6 +1230170,7 @@ github.com/wwtlf/policy_engine,num_dependents_deps.dev:0 github.com/wwu-mmll/photonai, github.com/wwunlp/sner, github.com/www-lightdark-tech/dueros-ssml,num_dependents_deps.dev:0 +github.com/www-norma-dev/test-project-action, github.com/www-onekit-cn/toutiao2vue,num_dependents_deps.dev:0 github.com/www-onekit-cn/weixin2alipay,num_dependents_deps.dev:0 github.com/www-onekit-cn/weixin2baidu,num_dependents_deps.dev:0 @@ -1208928,6 +1230306,7 @@ github.com/wx-chevalier/m-fe-utils,num_dependents_deps.dev:6 github.com/wx-chevalier/mysql-series,num_dependents_deps.dev:0 github.com/wx-chevalier/react-snippets,num_dependents_deps.dev:0 github.com/wx-csy/ptr_eq,num_dependents_deps.dev:0 +github.com/wx-jayesh/actions-npm-audit-comment, github.com/wx-minapp/minapp-common,num_dependents_deps.dev:0 github.com/wx-minapp/minapp-generator,num_dependents_deps.dev:0 github.com/wx-open/wx-api-docs,num_dependents_deps.dev:0 @@ -1208956,6 +1230335,8 @@ github.com/wxclover/co-juice-mailer,num_dependents_deps.dev:0 github.com/wxdao/api.v7,num_dependents_deps.dev:0 github.com/wxdao/dtls,num_dependents_deps.dev:0 github.com/wxdao/helm,num_dependents_deps.dev:0 +github.com/wxdlong/hello-action, +github.com/wxdlong/hugo-action, github.com/wxdrizzle/AICafe, github.com/wxdyhj/awesome-golang,num_dependents_deps.dev:0 github.com/wxext/wxext,num_dependents_deps.dev:0 @@ -1209109,6 +1230490,7 @@ github.com/wy7-source/iti-challenge,num_dependents_deps.dev:0 github.com/wy72yjf/oms-cli,num_dependents_deps.dev:0 github.com/wy72yjf/vue-drag,num_dependents_deps.dev:0 github.com/wyTrivail/bus-mongo,num_dependents_deps.dev:0 +github.com/wyTrivail/rpmbuild, github.com/wya-team/hybrid-sdk,num_dependents_deps.dev:0 github.com/wya-team/node-env,num_dependents_deps.dev:0 github.com/wya-team/vue-env,num_dependents_deps.dev:0 @@ -1209353,6 +1230735,9 @@ github.com/wyouflf/xUtils,num_dependents_deps.dev:0 github.com/wyouflf/xUtils3,num_dependents_deps.dev:1 github.com/wyounas/copyleaks-python-sdk, github.com/wyounas/homer, +github.com/wyozi/contextual-qa-checklist-action, +github.com/wyozi/download-gh-release-asset, +github.com/wyozi/regex-tester-action, github.com/wyozi/steamws,num_dependents_deps.dev:0 github.com/wyp0596/commons-j,num_dependents_deps.dev:0 github.com/wyp2013/go-every-day,num_dependents_deps.dev:0 @@ -1209390,6 +1230775,7 @@ github.com/wyuenho/backgrid-paginator,num_dependents_deps.dev:0 github.com/wyuenho/backgrid-select-all,num_dependents_deps.dev:0 github.com/wyuenho/backgrid-select2-cell,num_dependents_deps.dev:0 github.com/wyuenho/backgrid-text-cell,num_dependents_deps.dev:0 +github.com/wyugen/shopify-theme-action, github.com/wyugen/wyugen-nodejs,num_dependents_deps.dev:0 github.com/wyukawa/ayd, github.com/wyukawa/eboshi, @@ -1209424,6 +1230810,7 @@ github.com/wyvernnot/webpack-speed-rank,num_dependents_deps.dev:0 github.com/wyvernzora/epub-jsx,num_dependents_deps.dev:0 github.com/wyvin/gopractice,num_dependents_deps.dev:0 github.com/wyvin/leetcode-go,num_dependents_deps.dev:0 +github.com/wyvox/action, github.com/wyvr/image,num_dependents_deps.dev:0 github.com/wyvrw/txt,num_dependents_deps.dev:0 github.com/wyw-s/vuepress-plugin-copy-images,num_dependents_deps.dev:0 @@ -1209545,6 +1230932,7 @@ github.com/wzhouwzhou/ytsearcher-cli,num_dependents_deps.dev:0 github.com/wzhscript/react-inline-svg-base,num_dependents_deps.dev:0 github.com/wzhvictor/libinjection-python, github.com/wzhyt/Moley-Ui,num_dependents_deps.dev:0 +github.com/wzieba/AppCenter-Github-Action, github.com/wziww/barriermq,num_dependents_deps.dev:0 github.com/wzj/wzj, github.com/wzj13466669587/vue-text-marquee,num_dependents_deps.dev:0 @@ -1209589,6 +1230977,7 @@ github.com/wzs28150/coolui-cli,num_dependents_deps.dev:0 github.com/wzs28150/coolui-scroller,num_dependents_deps.dev:0 github.com/wzs28150/exclude-wx-dom-loader,num_dependents_deps.dev:0 github.com/wzs654421772/docker-images,num_dependents_deps.dev:0 +github.com/wzshiming/action-upload-release-assets, github.com/wzshiming/anyproxy,num_dependents_deps.dev:0 github.com/wzshiming/bridge,num_dependents_deps.dev:0 github.com/wzshiming/buffer,num_dependents_deps.dev:0 @@ -1209600,6 +1230989,7 @@ github.com/wzshiming/fake-kubelet,num_dependents_deps.dev:0 github.com/wzshiming/fetchkube,num_dependents_deps.dev:0 github.com/wzshiming/gen,num_dependents_deps.dev:0 github.com/wzshiming/gengo,num_dependents_deps.dev:0 +github.com/wzshiming/gh-ci-bot, github.com/wzshiming/go.uuid,num_dependents_deps.dev:0 github.com/wzshiming/gotype,num_dependents_deps.dev:0 github.com/wzshiming/hostmatcher,num_dependents_deps.dev:0 @@ -1209619,6 +1231009,8 @@ github.com/wzshiming/sysproxy,num_dependents_deps.dev:0 github.com/wzshiming/voices,num_dependents_deps.dev:0 github.com/wzshiming/xmlinjector,num_dependents_deps.dev:0 github.com/wzshou/loex-plugin-kline,num_dependents_deps.dev:0 +github.com/wzslr321/cc-checker-go, +github.com/wztlink1013/datastructures-algorithms-visualization, github.com/wztscau/bleeding-image,num_dependents_deps.dev:0 github.com/wzuqui/ravex-leaflet,num_dependents_deps.dev:0 github.com/wzvtcsoft-embracex/graphql-cli-plugin-bos,num_dependents_deps.dev:0 @@ -1209635,6 +1231027,7 @@ github.com/wzyinghid/dailyone,num_dependents_deps.dev:0 github.com/wzyinghid/jello-postpackager-seazbj,num_dependents_deps.dev:0 github.com/wzyinghid/play2d,num_dependents_deps.dev:0 github.com/wzyinghid/riscjs,num_dependents_deps.dev:0 +github.com/wzykubek/action-flake8, github.com/wzyonggege/goutils,num_dependents_deps.dev:0 github.com/wzyuliyang/byrlogin, github.com/wzyuliyang/imgur4blog, @@ -1209647,8 +1231040,16 @@ github.com/wzzhu/gorgonia,num_dependents_deps.dev:0 github.com/wzzst310/wjjgolearn,num_dependents_deps.dev:0 github.com/wzzydezy/golearn,num_dependents_deps.dev:0 github.com/wzzz90/ali-react-table-fork,num_dependents_deps.dev:0 +github.com/x-actions/dingtalk, +github.com/x-actions/feishu, +github.com/x-actions/git-mirrors, +github.com/x-actions/git-push, +github.com/x-actions/go-gcrmirrors, github.com/x-actions/go-sync,num_dependents_deps.dev:0 +github.com/x-actions/hugo, github.com/x-actions/python3-cisctl, +github.com/x-actions/python3-nbctl, +github.com/x-actions/wechat-work, github.com/x-bao/vuepress-plugin-new,num_dependents_deps.dev:0 github.com/x-bao/vuepress-theme-bb,num_dependents_deps.dev:0 github.com/x-clone/go-acl,num_dependents_deps.dev:0 @@ -1209661,6 +1231062,7 @@ github.com/x-cold/yuque-hexo,"criticality_score:0.354540,num_dependents_deps.dev github.com/x-color/aws-del-user,num_dependents_deps.dev:0 github.com/x-color/calendar,num_dependents_deps.dev:0 github.com/x-color/cfn-doc,num_dependents_deps.dev:0 +github.com/x-color/github-actions-job-summary, github.com/x-color/opa-cfn-tag-policy,num_dependents_deps.dev:0 github.com/x-color/store,num_dependents_deps.dev:0 github.com/x-color/try-github-actions,num_dependents_deps.dev:0 @@ -1209683,6 +1231085,9 @@ github.com/x-component/x-template,num_dependents_deps.dev:0 github.com/x-component/x-test,num_dependents_deps.dev:0 github.com/x-component/x-xui,num_dependents_deps.dev:0 github.com/x-cubed/event-store-client,num_dependents_deps.dev:2 +github.com/x-danma/increment-semver-patch-and-tag-action, +github.com/x-ddr/git-repo-sync2, +github.com/x-ddr/sync-repo-to-gitee, github.com/x-debug/pymergedocx, github.com/x-dirve/cache,num_dependents_deps.dev:0 github.com/x-dirve/changelog,num_dependents_deps.dev:0 @@ -1209703,6 +1231108,7 @@ github.com/x-dirve/utils,num_dependents_deps.dev:0 github.com/x-dirve/yenta,num_dependents_deps.dev:0 github.com/x-dome/xdome-base-rest,num_dependents_deps.dev:0 github.com/x-dome/xdome-extension-rest,num_dependents_deps.dev:0 +github.com/x-dr/SRA, github.com/x-drive/dirve-command-server,num_dependents_deps.dev:0 github.com/x-du/xdu-npm-test,num_dependents_deps.dev:0 github.com/x-englishwordnet/ewn-beans,num_dependents_deps.dev:0 @@ -1209902,6 +1231308,7 @@ github.com/x1nchen/note,num_dependents_deps.dev:0 github.com/x1nchen/portainer,num_dependents_deps.dev:0 github.com/x1nchen/portainer-cli,num_dependents_deps.dev:0 github.com/x1pe0/mitmtcp,num_dependents_deps.dev:0 +github.com/x1sec/obsidian-to-hugo-pages, github.com/x1unix/go-playground,num_dependents_deps.dev:0 github.com/x1unix/godotenv,num_dependents_deps.dev:0 github.com/x1unix/sqlite3dump,num_dependents_deps.dev:0 @@ -1210024,6 +1231431,7 @@ github.com/x6doooo/ngxo,num_dependents_deps.dev:0 github.com/x6doooo/nsutil,num_dependents_deps.dev:0 github.com/x6doooo/sharedmemory,num_dependents_deps.dev:0 github.com/x6doooo/syro,num_dependents_deps.dev:0 +github.com/x6pnda/action-electron-compiler, github.com/x72hoor/go-helper,num_dependents_deps.dev:0 github.com/x7c1/es-monad-syntax,num_dependents_deps.dev:0 github.com/x7c1/log4rs-cases,num_dependents_deps.dev:0 @@ -1210109,6 +1231517,7 @@ github.com/xGoldaxe/insaneTransition,num_dependents_deps.dev:0 github.com/xHeinrich/laravel-mix-zip, github.com/xHossein/PyPasser, github.com/xHossein/radiojavanapi, +github.com/xHyroM/setup-bun, github.com/xImAnton/Discord-Embed-Markup, github.com/xImAnton/WorldTools, github.com/xItsDanger/calculator,num_dependents_deps.dev:0 @@ -1210174,6 +1231583,7 @@ github.com/xPlanetProject/xPlanet-sdk,num_dependents_deps.dev:0 github.com/xPuffball/lotide, github.com/xQuotes/xq-server,num_dependents_deps.dev:0 github.com/xQuotes/xq-tools,num_dependents_deps.dev:0 +github.com/xRealNeon/VuePagesAction, github.com/xReapex/NodeJS-GithubAPI, github.com/xReflake/cython-test, github.com/xRodney/pyproxy, @@ -1210185,6 +1231595,7 @@ github.com/xRuiAlves/fide-ratings-scraper,num_dependents_deps.dev:0 github.com/xRuiAlves/interview-matcher,num_dependents_deps.dev:0 github.com/xRuiAlves/lichess-tournament-creator,num_dependents_deps.dev:0 github.com/xSAVIKx/AndroidScreencast,criticality_score:0.306350 +github.com/xSAVIKx/artifact-exists-action, github.com/xSAVIKx/ru-proverbs, github.com/xSNOWM4Nx/react-lib-module,num_dependents_deps.dev:0 github.com/xSNOWM4Nx/ts-lib-module,num_dependents_deps.dev:0 @@ -1210193,6 +1231604,7 @@ github.com/xSan4es/signalr-no-jquery, github.com/xSetech/aPyNBT, github.com/xShadov/easy-random-vavr-extension,num_dependents_deps.dev:0 github.com/xShirase/hotbot,num_dependents_deps.dev:0 +github.com/xShteff/Self-Reward-Actions, github.com/xSkorm/vuety,num_dependents_deps.dev:0 github.com/xSlither/node-eventlog,num_dependents_deps.dev:0 github.com/xSlither/pretty-click-shell, @@ -1210254,6 +1231666,7 @@ github.com/xTCry/b64-webpack-laoder,num_dependents_deps.dev:2 github.com/xTCry/blessed-contrib,num_dependents_deps.dev:0 github.com/xTCry/nestjs-airgram,num_dependents_deps.dev:0 github.com/xTCx/gree-python-api, +github.com/xTVaser/first-interaction, github.com/xTaz1/ngx-rest,num_dependents_deps.dev:0 github.com/xTheRamon/node-red-contrib-mqtt-dynamictopic,num_dependents_deps.dev:0 github.com/xThunderbolt/2wire,num_dependents_deps.dev:0 @@ -1210261,6 +1231674,7 @@ github.com/xTrayambak/pysyn, github.com/xTrinch/react-touch-screen-keyboard,num_dependents_deps.dev:0 github.com/xTylerCodes/MongoAuth.js,num_dependents_deps.dev:0 github.com/xTylerCodes/MongoAuthentication, +github.com/xUnholy/operator-sdk-github-action, github.com/xVanTuring/cquant,num_dependents_deps.dev:0 github.com/xVanTuring/cquant-web,num_dependents_deps.dev:0 github.com/xVanTuring/gm-palette,num_dependents_deps.dev:0 @@ -1210293,6 +1231707,7 @@ github.com/xa4a/djtools, github.com/xa4b/git,num_dependents_deps.dev:0 github.com/xaaaaav/nhlscrapy, github.com/xaadin/xaadin,num_dependents_deps.dev:0 +github.com/xaamin/actions-cache, github.com/xaamin/adonis-websocket, github.com/xaamin/unstated-enhancers,num_dependents_deps.dev:0 github.com/xaamin/unstated-logger,num_dependents_deps.dev:0 @@ -1210338,6 +1231753,8 @@ github.com/xackery/xegony,num_dependents_deps.dev:0 github.com/xacml4j/xacml4j,num_dependents_deps.dev:5 github.com/xacml4j/xacml4j-ehcache,num_dependents_deps.dev:0 github.com/xacml4j/xacml4j-opensaml,num_dependents_deps.dev:0 +github.com/xacobecm/atlas-pause, +github.com/xacobecm/atlas-resume, github.com/xacrimon/dashmap,"criticality_score:0.474600,num_dependents_deps.dev:606" github.com/xacrimon/flize,num_dependents_deps.dev:0 github.com/xacrimon/gne,num_dependents_deps.dev:0 @@ -1210429,6 +1231846,7 @@ github.com/xalm1337x/rt-demo,num_dependents_deps.dev:0 github.com/xalphonseinbaraj/FRS1, github.com/xalphonseinbaraj/Siamese_Checking_Model, github.com/xalphonseinbaraj/Siamese_for_face_recognization, +github.com/xalvarez/prevent-file-change-action, github.com/xam33r/cordova-plugin-admob-freee,num_dependents_deps.dev:0 github.com/xam33r/cordova-plugin-contacts-emails,num_dependents_deps.dev:0 github.com/xama5/generate-password-browser,num_dependents_deps.dev:0 @@ -1210516,6 +1231934,7 @@ github.com/xanderdwyl/openfaas-lambda,num_dependents_deps.dev:0 github.com/xanderfrangos/global-mouse-events,num_dependents_deps.dev:0 github.com/xanderfrangos/imagemin-gifsicle,num_dependents_deps.dev:0 github.com/xanderfrangos/twinkle-tray,criticality_score:0.429520 +github.com/xanderhendriks/action-build-stm32cubeide, github.com/xanderhendriks/nsrt-mk3-dev, github.com/xanderhendriks/nx-work-log, github.com/xanderhk/pokegoapi,num_dependents_deps.dev:0 @@ -1210625,6 +1232044,7 @@ github.com/xapple/seqenv, github.com/xapple/seqsearch, github.com/xapple/waste_flow, github.com/xappmedia/bst,num_dependents_deps.dev:0 +github.com/xaprier/actions-semver, github.com/xaptum/ecdaa-python, github.com/xaptum/xaptum-tpm-python, github.com/xaque208/freebsd_exporter,num_dependents_deps.dev:0 @@ -1210664,11 +1232084,14 @@ github.com/xaroth8088/random-names,num_dependents_deps.dev:0 github.com/xaroth8088/react-planet,num_dependents_deps.dev:0 github.com/xarples/bee,num_dependents_deps.dev:0 github.com/xarples/wolfi,num_dependents_deps.dev:0 +github.com/xarray-contrib/ci-trigger, +github.com/xarray-contrib/issue-from-pytest-log, github.com/xarray-contrib/pint-xarray, github.com/xarray-contrib/sphinx-autosummary-accessors, github.com/xarray-contrib/xoak, github.com/xarray-contrib/xpublish, github.com/xarray-contrib/xskillscore, +github.com/xarses/lftp-upload-action, github.com/xartos/simconnect-shim,num_dependents_deps.dev:0 github.com/xartreal/backfrf,num_dependents_deps.dev:0 github.com/xartreal/frf-pane,num_dependents_deps.dev:0 @@ -1210769,6 +1232192,7 @@ github.com/xavi160/Clamp.js,num_dependents_deps.dev:2 github.com/xavianaxw/inuitcss-flexbox,num_dependents_deps.dev:0 github.com/xavianaxw/sass-fonts,num_dependents_deps.dev:0 github.com/xavibj/pyecom, +github.com/xavidop/alexa-ask-aws-cli-docker, github.com/xavidop/ask-sdk-mongodb-persistence-adapter,num_dependents_deps.dev:0 github.com/xaviemirmon/gatsby_drupal_menus,num_dependents_deps.dev:0 github.com/xavier-1991/multi-audio-npm,num_dependents_deps.dev:0 @@ -1210782,6 +1232206,7 @@ github.com/xavier-villelegier/screenshots-flaky-detector,num_dependents_deps.dev github.com/xavier150/Blender-For-UnrealEngine-Addons,criticality_score:0.338710 github.com/xavier268/doubles,num_dependents_deps.dev:0 github.com/xavier268/gostat,num_dependents_deps.dev:0 +github.com/xavierLowmiller/xcodegen-action, github.com/xavierbriole/react-cookienotice,num_dependents_deps.dev:0 github.com/xavierbriole/react-pwa-to-homescreen,num_dependents_deps.dev:0 github.com/xavierchan/geektime,num_dependents_deps.dev:0 @@ -1210808,6 +1232233,7 @@ github.com/xavierdutreilh/wintersmith-environments,num_dependents_deps.dev:0 github.com/xavierdutreilh/wintersmith-revision,num_dependents_deps.dev:0 github.com/xavierdutreilh/wintersmith-sitemap,num_dependents_deps.dev:0 github.com/xavierfoucrier/instacam,num_dependents_deps.dev:0 +github.com/xaviergmail/action-junit-report, github.com/xaviergonz/js-angusj-clipper,num_dependents_deps.dev:0 github.com/xaviergonz/makfy,num_dependents_deps.dev:0 github.com/xaviergonz/mobx-keystone,num_dependents_deps.dev:2 @@ -1211326,6 +1232752,7 @@ github.com/xcoulon/kubectl-terminate,num_dependents_deps.dev:0 github.com/xcoulon/viper,num_dependents_deps.dev:0 github.com/xcp-ng/xcp,criticality_score:0.322070 github.com/xcp-ng/xe-guest-utilities,num_dependents_deps.dev:0 +github.com/xcpep/aws-ecr-push-action, github.com/xcphoenix/elf-load-analyser,num_dependents_deps.dev:0 github.com/xcpretty/xcode-install,criticality_score:0.447760 github.com/xcpretty/xcpretty,criticality_score:0.375050 @@ -1211418,6 +1232845,7 @@ github.com/xdarkicex/bitdevs,num_dependents_deps.dev:0 github.com/xdave/bull-mq-transport,num_dependents_deps.dev:0 github.com/xdave/typescript-fsa-redux-thunk,num_dependents_deps.dev:2 github.com/xdavidwu/python-rndua, +github.com/xdays/kubectl, github.com/xdbbe/imgproxy,num_dependents_deps.dev:0 github.com/xdbfoundation/go,num_dependents_deps.dev:0 github.com/xdcarter/wantjs,num_dependents_deps.dev:0 @@ -1211608,6 +1233036,7 @@ github.com/xectich/paymentgateway,num_dependents_deps.dev:0 github.com/xecycle/pg-template-tag,num_dependents_deps.dev:0 github.com/xed/grpc-proxy-web-interface,num_dependents_deps.dev:0 github.com/xed/grpc-web,num_dependents_deps.dev:0 +github.com/xedi/action-subtree-sync, github.com/xeedware-aws/aws-lambda-stage,num_dependents_deps.dev:0 github.com/xeedware/cognito-jwk-cli,num_dependents_deps.dev:0 github.com/xeedware/cognito-jwt, @@ -1211624,6 +1233053,8 @@ github.com/xeeo/nc-singleton,num_dependents_deps.dev:0 github.com/xeeqqw/ng2-company-identificator-checker,num_dependents_deps.dev:0 github.com/xeersoft/epilogue,num_dependents_deps.dev:0 github.com/xeewi/firebase-scrypt,num_dependents_deps.dev:0 +github.com/xefino/mql4-compiler, +github.com/xefino/quantum-merge, github.com/xegax/objio, github.com/xegax/objio-client,num_dependents_deps.dev:0 github.com/xegax/objio-layout,num_dependents_deps.dev:0 @@ -1211700,6 +1233131,8 @@ github.com/xemasiv/shoveyank,num_dependents_deps.dev:0 github.com/xemasiv/spacecrap,num_dependents_deps.dev:0 github.com/xemasiv/spacerift,num_dependents_deps.dev:0 github.com/xemasiv/spillway,num_dependents_deps.dev:0 +github.com/xembly/validate-workflow-status, +github.com/xembly/workflow-manager, github.com/xemle/angular-url-parser,num_dependents_deps.dev:0 github.com/xemlock/react-stickynode-legacy,num_dependents_deps.dev:0 github.com/xemlock/tslint-angular-no-controller,num_dependents_deps.dev:0 @@ -1211726,6 +1233159,8 @@ github.com/xen0bit/gbablog,num_dependents_deps.dev:0 github.com/xen0bit/godcar,num_dependents_deps.dev:0 github.com/xen0bit/pdf2mp3,num_dependents_deps.dev:0 github.com/xen0l/aws-gate,criticality_score:0.399240 +github.com/xen0l/dlint-check, +github.com/xen0l/iam-lint, github.com/xen0l/python-asff, github.com/xen0n/autojump-rs,num_dependents_deps.dev:0 github.com/xen0n/brickbot,num_dependents_deps.dev:0 @@ -1211817,6 +1233252,7 @@ github.com/xenoicwyce/qaoalib, github.com/xenolf/coffee-eveapi,num_dependents_deps.dev:0 github.com/xenolf/lego,num_dependents_deps.dev:24 github.com/xenolf/meteor-deploy,num_dependents_deps.dev:0 +github.com/xenolightning/raygun-deployments-action, github.com/xenomachina/kessel,num_dependents_deps.dev:0 github.com/xenomachina/kotlin-argparser,num_dependents_deps.dev:13 github.com/xenomachina/xenocom,num_dependents_deps.dev:29 @@ -1211878,6 +1233314,7 @@ github.com/xeokit/xeokit-ifc-to-xkt,num_dependents_deps.dev:0 github.com/xeokit/xeokit-sdk,"criticality_score:0.530240,num_dependents_deps.dev:0" github.com/xeokit/xeokit-viewer,num_dependents_deps.dev:0 github.com/xeokit/xeokit-xkt-utils,num_dependents_deps.dev:0 +github.com/xeol-io/xeol-action, github.com/xeolabs/xeogl,num_dependents_deps.dev:0 github.com/xeoncross/sqlex,num_dependents_deps.dev:0 github.com/xeonel2/gowsdl,num_dependents_deps.dev:0 @@ -1212395,6 +1233832,8 @@ github.com/xgqfrms/conf-ticket-card, github.com/xgqfrms/emoji-element,num_dependents_deps.dev:0 github.com/xgqfrms/flutter-app-cli, github.com/xgqfrms/g_ui,num_dependents_deps.dev:0 +github.com/xgqfrms/github-fe-oss-project-template, +github.com/xgqfrms/github-profile-3d-contrib-2022, github.com/xgqfrms/gui,num_dependents_deps.dev:0 github.com/xgqfrms/ng2-seed,num_dependents_deps.dev:0 github.com/xgqfrms/node-cli-tools,num_dependents_deps.dev:0 @@ -1212491,6 +1233930,7 @@ github.com/xhad/okcoin-china,num_dependents_deps.dev:0 github.com/xhad/paw-info,num_dependents_deps.dev:0 github.com/xhad/react-uptown,num_dependents_deps.dev:0 github.com/xhad/static-expiry-safe,num_dependents_deps.dev:0 +github.com/xhaiker/rust-release.action, github.com/xhan-shannon/gotutorial,num_dependents_deps.dev:0 github.com/xhan/qqbot,num_dependents_deps.dev:0 github.com/xhaoh94/gox,num_dependents_deps.dev:0 @@ -1212539,6 +1233979,7 @@ github.com/xhmm/node-gm-captcha,num_dependents_deps.dev:0 github.com/xhmm/react-native-exif,num_dependents_deps.dev:0 github.com/xhmxnjxx/2021_OSS_Lab07,num_dependents_deps.dev:0 github.com/xhnatiuk/wasm-color-string,num_dependents_deps.dev:0 +github.com/xhnmt/pushplus-action, github.com/xhochy/conda-mirror-ng, github.com/xhochy/fletcher, github.com/xhochy/hubot-tomahk,num_dependents_deps.dev:0 @@ -1212880,6 +1234321,7 @@ github.com/xiangzongliang/iantoo,num_dependents_deps.dev:0 github.com/xianhengma/chartx,num_dependents_deps.dev:0 github.com/xianhengma/jruby_whirr,num_dependents_deps.dev:0 github.com/xianhua/json4orm,num_dependents_deps.dev:0 +github.com/xianhuawei/github-chatgpt-integration, github.com/xianhuazhou/elog,num_dependents_deps.dev:0 github.com/xianhuazhou/jmen,num_dependents_deps.dev:0 github.com/xianhuazhou/syntax-checker,num_dependents_deps.dev:0 @@ -1212902,6 +1234344,7 @@ github.com/xianmin/hugo-theme-jane,criticality_score:0.407580 github.com/xianqiu/Baa, github.com/xianqiu/Bankrupt, github.com/xianqiu/TransportModels, +github.com/xianren78/amlogic-s9xxx-openwrt, github.com/xianshannan/resource-priority-demo,num_dependents_deps.dev:0 github.com/xianshenglu/DraggableEl,num_dependents_deps.dev:0 github.com/xianshenglu/eslint-config,num_dependents_deps.dev:0 @@ -1213163,6 +1234606,7 @@ github.com/xiaohui-zhangxh/yunpian-captcha,num_dependents_deps.dev:0 github.com/xiaohui/libcontainer,num_dependents_deps.dev:0 github.com/xiaohuij/react-hash-tabs,num_dependents_deps.dev:0 github.com/xiaohuij/react-magnifier-gallery,num_dependents_deps.dev:0 +github.com/xiaohuilam/tencent-cloud-cdn-push-url, github.com/xiaohuoni/Tiger,num_dependents_deps.dev:0 github.com/xiaohuoni/antd-pro-server,num_dependents_deps.dev:0 github.com/xiaohuoni/download-github,num_dependents_deps.dev:0 @@ -1213365,6 +1234809,7 @@ github.com/xiaoouwang/utilss, github.com/xiaop0817/ftgoutils,num_dependents_deps.dev:0 github.com/xiaopangxue/go-srm,num_dependents_deps.dev:0 github.com/xiaopanlaile639/testmod,num_dependents_deps.dev:0 +github.com/xiaopeng163/github-action-docker, github.com/xiaopeng163/ssh.py, github.com/xiaopengshi/mysql-schema-sync,num_dependents_deps.dev:0 github.com/xiaopengtang/missMVC, @@ -1213494,6 +1234939,7 @@ github.com/xiaoxiangmoe/utils-ts,num_dependents_deps.dev:0 github.com/xiaoxiangmoe/vite-plugin-commonjs-externals,num_dependents_deps.dev:0 github.com/xiaoxiao314/getmap,num_dependents_deps.dev:0 github.com/xiaoxiao314/localsave,num_dependents_deps.dev:0 +github.com/xiaoxiao921/thunderstore-cli, github.com/xiaoxiaoaobama/eslint-config-ezreal,num_dependents_deps.dev:0 github.com/xiaoxiaoaobama/wyw-test789,num_dependents_deps.dev:0 github.com/xiaoxiaodanteng/form-parser,num_dependents_deps.dev:0 @@ -1213743,6 +1235189,7 @@ github.com/xibufupin/fupin-vue-core,num_dependents_deps.dev:0 github.com/xibufupin/fupin-vue-ui,num_dependents_deps.dev:0 github.com/xibz/containerd,num_dependents_deps.dev:0 github.com/xibz/cri,num_dependents_deps.dev:0 +github.com/xibz/nunit-reporter, github.com/xica/djehuty, github.com/xica/djehuty-slack, github.com/xica/djehuty-suddendeath, @@ -1214043,6 +1235490,8 @@ github.com/xikou1314/kazma-cli,num_dependents_deps.dev:0 github.com/xikou1314/kazma-mock,num_dependents_deps.dev:0 github.com/xikou1314/vodka-cli,num_dependents_deps.dev:0 github.com/xilabs/nrlmsise, +github.com/xile611/collect-rush-changlog, +github.com/xile611/read-package-version-action, github.com/xilei1997/blockchain-xl,num_dependents_deps.dev:0 github.com/xilenomg/angular-url-handler,num_dependents_deps.dev:0 github.com/xilenomg/node-url-handler,num_dependents_deps.dev:0 @@ -1214115,6 +1235564,7 @@ github.com/xinabox/Python-SL19, github.com/xinabox/Python-SW01, github.com/xinabox/Python-XCHIP, github.com/xinabox/node-SW10,num_dependents_deps.dev:0 +github.com/xinatcg/json-handle, github.com/xinatcg/keyboard,num_dependents_deps.dev:0 github.com/xinau/gitlab_jobs_exporter, github.com/xinau/go-businesshours,num_dependents_deps.dev:0 @@ -1214154,9 +1235604,11 @@ github.com/xinebf/google-translate-for-goldendict, github.com/xinetzone/atom, github.com/xinetzone/d2py, github.com/xinetzone/dash-xinet, +github.com/xinetzone/hexo-action, github.com/xinetzone/pychaos, github.com/xinetzone/pytorch_book, github.com/xinetzone/sanstyle, +github.com/xinetzone/starter-action, github.com/xinetzone/xinet, github.com/xinetzone/xyzstyle, github.com/xinfang/react-native-notification-checker,num_dependents_deps.dev:0 @@ -1214190,6 +1235642,7 @@ github.com/xing0617/originJs-kit,num_dependents_deps.dev:0 github.com/xing240/fis3-preprocessor-replace-multi, github.com/xinganng/zabbix,num_dependents_deps.dev:0 github.com/xingbangzhou/utils,num_dependents_deps.dev:0 +github.com/xingbo828/import-map-updater-action, github.com/xingbofeng/PriorityEventEmmitter,num_dependents_deps.dev:0 github.com/xingbofeng/process-on-helper,num_dependents_deps.dev:0 github.com/xingbofeng/terminal-chat-robot,num_dependents_deps.dev:0 @@ -1214209,6 +1235662,7 @@ github.com/xinghaiyang1994/sea-axios,num_dependents_deps.dev:0 github.com/xinghaiyang1994/sea-koa-cli,num_dependents_deps.dev:0 github.com/xinghaiyang1994/sea-npm-test,num_dependents_deps.dev:0 github.com/xinghaochen/awesome-hand-pose-estimation,criticality_score:0.364050 +github.com/xinghaohao/hello-world-composite-action, github.com/xingheng/acfun-joker, github.com/xingheng/uncrustify-objc, github.com/xingheyang/lazyTest, @@ -1214252,6 +1235706,7 @@ github.com/xingobar/detect-guester-plugin,num_dependents_deps.dev:0 github.com/xingobar/simple-drawerlayout,num_dependents_deps.dev:0 github.com/xingorg1/JuFengGuo,num_dependents_deps.dev:0 github.com/xingorg1/gjf-cli,num_dependents_deps.dev:0 +github.com/xingorg1/leetcode-daily-practice-action, github.com/xingorg1/xingorg1-ui,num_dependents_deps.dev:0 github.com/xingorg1/xingorg1Note,num_dependents_deps.dev:0 github.com/xingoxu/canvas-contribution,num_dependents_deps.dev:0 @@ -1214440,6 +1235895,7 @@ github.com/xinst/ccache,num_dependents_deps.dev:0 github.com/xinst/getty,num_dependents_deps.dev:0 github.com/xinstall/Xinstall-React-Native-SDK,num_dependents_deps.dev:0 github.com/xinstall/Xinstall_Cordova_SDK,num_dependents_deps.dev:0 +github.com/xinthink/action-telegram, github.com/xinthink/cocmvc,num_dependents_deps.dev:0 github.com/xinthink/exprt,num_dependents_deps.dev:0 github.com/xinthink/node-conf-loader,num_dependents_deps.dev:0 @@ -1215087,6 +1236543,7 @@ github.com/xlab-si/xopera-api, github.com/xlab-si/xopera-opera, github.com/xlab-steampunk/redfish-client-python, github.com/xlab-steampunk/sensu-go-python, +github.com/xlab-steampunk/spotter-action, github.com/xlab-steampunk/steampunk-scanner-cli, github.com/xlab-tech/OfflineStorage, github.com/xlab-tech/RxMap,num_dependents_deps.dev:0 @@ -1215243,6 +1236700,7 @@ github.com/xludx/bitcoinjs-lib-particl,num_dependents_deps.dev:0 github.com/xludx/node-slate-cli,num_dependents_deps.dev:0 github.com/xludx/particl-rpc-service,num_dependents_deps.dev:0 github.com/xludx/particl-zmq,num_dependents_deps.dev:0 +github.com/xlui/action-maven-cli, github.com/xluohome/goreplay,num_dependents_deps.dev:0 github.com/xluohome/hprose-golang,num_dependents_deps.dev:0 github.com/xluohome/phonedata,num_dependents_deps.dev:0 @@ -1215254,6 +1236712,7 @@ github.com/xlvecle/geohash-poly,num_dependents_deps.dev:0 github.com/xlwings/xlwings,criticality_score:0.510040 github.com/xlxpub/tarshello,num_dependents_deps.dev:0 github.com/xlxwhy/dontfly, +github.com/xlyk/tagliatelle-action, github.com/xlyr-on/da-slash,num_dependents_deps.dev:0 github.com/xlyren/vue-picture-preview, github.com/xlzd/img2html, @@ -1215285,6 +1236744,7 @@ github.com/xmail-client/node-libxmljs-builder, github.com/xmail-client/node-sqlite-orm, github.com/xmail-client/node-viewpoint, github.com/xmail-client/space-view,num_dependents_deps.dev:0 +github.com/xmake-io/github-action-setup-xmake, github.com/xmake-io/xmake,criticality_score:0.590180 github.com/xmakina/cthulhu-dice,num_dependents_deps.dev:0 github.com/xmakina/discord.js-gamerooms,num_dependents_deps.dev:0 @@ -1215329,6 +1236789,9 @@ github.com/xmaysonnave/tiddlywiki-ipfs, github.com/xmazu/react-inline-suggest,num_dependents_deps.dev:0 github.com/xmazu/react-relative-routes,num_dependents_deps.dev:0 github.com/xmbin/readlargefile, +github.com/xmc-rs/audit-check, +github.com/xmc-rs/cargo, +github.com/xmc-rs/toolchain, github.com/xmc-rs/xmc4-hal,num_dependents_deps.dev:0 github.com/xmc-rs/xmc4100,num_dependents_deps.dev:0 github.com/xmc-rs/xmc4200,num_dependents_deps.dev:0 @@ -1215361,8 +1236824,12 @@ github.com/xmelsky/pug-slides-loader,num_dependents_deps.dev:0 github.com/xmelsky/virtual-keyboard-live,num_dependents_deps.dev:0 github.com/xmen88/testPlugin,num_dependents_deps.dev:0 github.com/xmendez/wfuzz,criticality_score:0.492930 +github.com/xmeng1/json-handle, github.com/xmeta/dinzai-datni,num_dependents_deps.dev:0 github.com/xmetaki/vue-component-ts,num_dependents_deps.dev:0 +github.com/xmflsct/action-publish-gatsby, +github.com/xmflsct/action-publish-gatsby-contentful, +github.com/xmflsct/action-vercel-deployment, github.com/xmflswood/Dracula-porn,num_dependents_deps.dev:0 github.com/xmflswood/get-last-lines,num_dependents_deps.dev:0 github.com/xmflswood/pinyin-match,num_dependents_deps.dev:4 @@ -1215387,7 +1236854,11 @@ github.com/xmidt-org/gungnir,num_dependents_deps.dev:0 github.com/xmidt-org/heimdall,num_dependents_deps.dev:0 github.com/xmidt-org/interpreter,num_dependents_deps.dev:0 github.com/xmidt-org/petasos,num_dependents_deps.dev:0 +github.com/xmidt-org/release-builder-action, +github.com/xmidt-org/rpm-package-action, github.com/xmidt-org/scytale,num_dependents_deps.dev:0 +github.com/xmidt-org/sonarcloud-installer-action, +github.com/xmidt-org/sonarcloud-project-config, github.com/xmidt-org/svalinn,num_dependents_deps.dev:0 github.com/xmidt-org/talaria,num_dependents_deps.dev:0 github.com/xmidt-org/themis,num_dependents_deps.dev:23 @@ -1215628,6 +1237099,8 @@ github.com/xnx/pyvalem, github.com/xnyl/css-variables-to-sass,num_dependents_deps.dev:0 github.com/xnyl/timezones-countries-keywords,num_dependents_deps.dev:0 github.com/xo-chris/google-contacts-api-convert,num_dependents_deps.dev:0 +github.com/xo-energy/action-octopus-build-information, +github.com/xo-energy/action-synchronize-branches, github.com/xo/dburl,num_dependents_deps.dev:33 github.com/xo/tblfmt,num_dependents_deps.dev:19 github.com/xo/usql,"criticality_score:0.379520,num_dependents_deps.dev:6" @@ -1215734,6 +1237207,7 @@ github.com/xohu/vue-cli-plugin-ifdef,num_dependents_deps.dev:0 github.com/xohu/vue-cli-plugin-uni, github.com/xohu/vue-drag,num_dependents_deps.dev:0 github.com/xohus/vue-xohu,num_dependents_deps.dev:0 +github.com/xoiga123/retry-max, github.com/xoiss/mk60, github.com/xoiss/python-enumr, github.com/xoiss/python-intf, @@ -1215807,6 +1237281,9 @@ github.com/xolvio/why-so-loud-jest,num_dependents_deps.dev:0 github.com/xolvio/xspecs-cli,num_dependents_deps.dev:0 github.com/xolvio/xspecs-storybook-addon,num_dependents_deps.dev:0 github.com/xom9ikk/Logger,num_dependents_deps.dev:0 +github.com/xom9ikk/dotenv, +github.com/xom9ikk/split, +github.com/xom9ikk/version-by-tag, github.com/xomaczar/ember-cli-ion-rangeslider,num_dependents_deps.dev:0 github.com/xomaczar/ember-cli-styles-reloader, github.com/xometry/create-react-app,num_dependents_deps.dev:0 @@ -1215909,6 +1237386,8 @@ github.com/xorgy/indexrs,num_dependents_deps.dev:0 github.com/xori/gamblers-dice,num_dependents_deps.dev:0 github.com/xori/set-sparse, github.com/xori/unrest-js, +github.com/xorilog/cloudflare-dns-action, +github.com/xorilog/twitter-action, github.com/xorima/supermarketapi,num_dependents_deps.dev:0 github.com/xorium/omnimanage,num_dependents_deps.dev:0 github.com/xorkevin/anvil,num_dependents_deps.dev:0 @@ -1215973,6 +1237452,7 @@ github.com/xovel/sinput,num_dependents_deps.dev:0 github.com/xovel/vue-gadget,num_dependents_deps.dev:0 github.com/xovel/zmd,num_dependents_deps.dev:0 github.com/xovel/zob,num_dependents_deps.dev:0 +github.com/xoviat/actions-pytest, github.com/xoviat/bindepend, github.com/xoviat/c2go, github.com/xoviat/cmdvars, @@ -1216250,10 +1237730,13 @@ github.com/xpodev/quickstruct, github.com/xpoh/go1-lessons,num_dependents_deps.dev:0 github.com/xpol/cypress-template-fixtures,num_dependents_deps.dev:0 github.com/xpol/dnssd,num_dependents_deps.dev:0 +github.com/xpol/setup-lua, github.com/xpolicy/xpolicy, github.com/xpom2xpom/golemjs,num_dependents_deps.dev:0 +github.com/xportation/junit-coverage-report, github.com/xportos-dev-team/fortress,num_dependents_deps.dev:0 github.com/xpotential/geekwork,num_dependents_deps.dev:0 +github.com/xpowery/covid-api, github.com/xpp1109/go-learning,num_dependents_deps.dev:0 github.com/xppt/py-aiohttp-api-client, github.com/xppt/py-conject, @@ -1216514,6 +1237997,7 @@ github.com/xryanglab/RiboCode, github.com/xryanglab/RiboMiner, github.com/xrysen/lotide,num_dependents_deps.dev:0 github.com/xrystalll/GOchat_2,num_dependents_deps.dev:0 +github.com/xryus-technologies/driver-submission, github.com/xs-cw/go-impala,num_dependents_deps.dev:0 github.com/xs-cw/gotype,num_dependents_deps.dev:0 github.com/xs-cw/opencc,num_dependents_deps.dev:0 @@ -1216546,6 +1238030,7 @@ github.com/xsbear/grunt-sea-hashmap,num_dependents_deps.dev:0 github.com/xsbear/hash-assets-webpack-plugin,num_dependents_deps.dev:2 github.com/xsburg/react-bem-factory,num_dependents_deps.dev:0 github.com/xsburg/react-marionette,num_dependents_deps.dev:0 +github.com/xsc/homebrew-import-release-action, github.com/xsc/lein-ancient,criticality_score:0.449360 github.com/xscorp/notes,num_dependents_deps.dev:0 github.com/xsddz/py_pkg_terminalprint, @@ -1216579,6 +1238064,7 @@ github.com/xsellier/password-maker,num_dependents_deps.dev:2 github.com/xsellier/winston-config-monitor,num_dependents_deps.dev:0 github.com/xseris/JavaCTFAlgorithms,num_dependents_deps.dev:0 github.com/xseris/JavaCryptoAlgorithms,num_dependents_deps.dev:0 +github.com/xserrat/pr-jira-properties-labeler, github.com/xservice/radix,num_dependents_deps.dev:2 github.com/xservice/server,num_dependents_deps.dev:2 github.com/xservice/vue,num_dependents_deps.dev:0 @@ -1216736,8 +1238222,19 @@ github.com/xszyh/gotest,num_dependents_deps.dev:0 github.com/xt-0220/my_go,num_dependents_deps.dev:0 github.com/xt/error-boundary,num_dependents_deps.dev:0 github.com/xt/nitro-cli,num_dependents_deps.dev:0 +github.com/xt0rted/block-autosquash-commits-action, +github.com/xt0rted/dotnet-format, +github.com/xt0rted/dotnet-format-problem-matcher, +github.com/xt0rted/dotnet-sdk-updater, +github.com/xt0rted/dotnet-tool-restore, github.com/xt0rted/github-actions-problem-matcher-typings,num_dependents_deps.dev:0 +github.com/xt0rted/markdownlint-problem-matcher, +github.com/xt0rted/pull-request-comment-branch, +github.com/xt0rted/secrets-sync, +github.com/xt0rted/setup-dotnet, +github.com/xt0rted/slash-command-action, github.com/xt0rted/stylelint-actions-formatters,num_dependents_deps.dev:0 +github.com/xt0rted/stylelint-problem-matcher, github.com/xtaci/algorithms,criticality_score:0.382070 github.com/xtaci/gaio,num_dependents_deps.dev:1 github.com/xtaci/geoip2-golang,num_dependents_deps.dev:0 @@ -1216808,6 +1238305,7 @@ github.com/xtermjs/xterm-addon-ligatures,num_dependents_deps.dev:0 github.com/xtermjs/xterm-benchmark,num_dependents_deps.dev:0 github.com/xtermjs/xterm.js,"criticality_score:0.674410,num_dependents_deps.dev:1153" github.com/xtery/xgram, +github.com/xtexChooser/hardwork-action, github.com/xtexChooser/hexo-theme-flavor,num_dependents_deps.dev:0 github.com/xtext/auto-gwt,num_dependents_deps.dev:0 github.com/xtext/xtext-external-editors,num_dependents_deps.dev:0 @@ -1217037,6 +1238535,7 @@ github.com/xu-cheng/howlong,num_dependents_deps.dev:0 github.com/xu-cheng/katex-rs,num_dependents_deps.dev:3 github.com/xu-cheng/latex-action,criticality_score:0.331790 github.com/xu-cheng/pandoc-katex,num_dependents_deps.dev:0 +github.com/xu-cheng/texlive-action, github.com/xu-hao/icees-client, github.com/xu-hongyi/go-sdk,num_dependents_deps.dev:0 github.com/xu-kun-cai/deepslide, @@ -1218028,6 +1239527,7 @@ github.com/xuwenping/nodebook,num_dependents_deps.dev:0 github.com/xuwenqing2014/copy-then-auto-git,num_dependents_deps.dev:0 github.com/xuwenqing2014/copyandautogit,num_dependents_deps.dev:0 github.com/xuwu125/miTaoApi,num_dependents_deps.dev:0 +github.com/xuxhing/code-review-action, github.com/xuxiake2017/lucky-turning,num_dependents_deps.dev:0 github.com/xuxiang32/xu-cli,num_dependents_deps.dev:0 github.com/xuxiang9608/React-native-ui-magic,num_dependents_deps.dev:0 @@ -1218237,6 +1239737,7 @@ github.com/xvisor/xvisor,criticality_score:0.393950 github.com/xvitaly/ecasbot, github.com/xvitaly/hudman, github.com/xvitaly/wloc, +github.com/xvnpw/ai-threat-modeling-action, github.com/xvoland/Extract,criticality_score:0.316130 github.com/xvoland/gulp-xv-webp-html,num_dependents_deps.dev:0 github.com/xvonabur/react-native-meteor,num_dependents_deps.dev:0 @@ -1218537,6 +1240038,8 @@ github.com/xxhomey19/use-undo,num_dependents_deps.dev:0 github.com/xxiaojiee/zoos-mp,num_dependents_deps.dev:0 github.com/xxiaojiee/ztool,num_dependents_deps.dev:0 github.com/xxidbr9/encode_jwt,num_dependents_deps.dev:0 +github.com/xxidbr9/screenshots-action, +github.com/xxidbr9/vercel-preview-url, github.com/xxihawkxx/pivotal_fetcher, github.com/xxiiaaon/morningstar-stmt, github.com/xxiiaass/iutils,num_dependents_deps.dev:0 @@ -1218782,6 +1240285,7 @@ github.com/xyf1215/fetch-request,num_dependents_deps.dev:0 github.com/xyf1215/vue-smart-grid,num_dependents_deps.dev:0 github.com/xyfir/illuminsight-cookbook,num_dependents_deps.dev:0 github.com/xygahs0801/vue-super-eventbus,num_dependents_deps.dev:0 +github.com/xygeni/xygeni-action, github.com/xygroup/node-s2,num_dependents_deps.dev:0 github.com/xyh0313/vue-pdfjs-previewer,num_dependents_deps.dev:0 github.com/xyh888/xyData, @@ -1218801,6 +1240305,7 @@ github.com/xyk0279/vue-x-player,num_dependents_deps.dev:0 github.com/xykong/mt19937, github.com/xykong/pomelo-robot-plus,num_dependents_deps.dev:0 github.com/xyl66/vuePlugs_printjs,num_dependents_deps.dev:0 +github.com/xylabs/action-code-climate-test-reporter, github.com/xylabs/eslint-config,num_dependents_deps.dev:2 github.com/xylabs/eslint-config-react,num_dependents_deps.dev:0 github.com/xylabs/sdk-pixel-js,num_dependents_deps.dev:0 @@ -1218870,6 +1240375,7 @@ github.com/xypron/pysispm, github.com/xyproto/addinclude,num_dependents_deps.dev:0 github.com/xyproto/aget,num_dependents_deps.dev:0 github.com/xyproto/algernon,"criticality_score:0.397570,num_dependents_deps.dev:0" +github.com/xyproto/autodoc, github.com/xyproto/battlestar,num_dependents_deps.dev:0 github.com/xyproto/benchmarked,num_dependents_deps.dev:2 github.com/xyproto/botsay,num_dependents_deps.dev:0 @@ -1219023,6 +1240529,7 @@ github.com/xzchaoo/hashedworkerpool,num_dependents_deps.dev:0 github.com/xzchaoo/parent,num_dependents_deps.dev:0 github.com/xzchaoo/utils,num_dependents_deps.dev:5 github.com/xzdasx/authmotion,num_dependents_deps.dev:0 +github.com/xzebra/notion-blog, github.com/xzebra/raylib-go,num_dependents_deps.dev:0 github.com/xzebra/unizar-calendar,num_dependents_deps.dev:0 github.com/xzegga/angular-knob, @@ -1219066,6 +1240573,7 @@ github.com/xzpjerry/py-handoff, github.com/xzregg/dj_myframework, github.com/xzregg/zeppelin-pyclient, github.com/xztaityozx/owari,num_dependents_deps.dev:0 +github.com/xztaityozx/owari-action, github.com/xztaityozx/sel,num_dependents_deps.dev:0 github.com/xztaityozx/t2p,num_dependents_deps.dev:0 github.com/xztl/eeui-clui,num_dependents_deps.dev:0 @@ -1219174,6 +1240682,7 @@ github.com/y-mabuchi/go-zipcode-v1,num_dependents_deps.dev:0 github.com/y-matin/traffic-statistics,num_dependents_deps.dev:0 github.com/y-matsuwitter/gulp-plantuml,num_dependents_deps.dev:0 github.com/y-mehta/ssrf-req-filter,num_dependents_deps.dev:0 +github.com/y-mehta/vulnalerts, github.com/y-mingnuo/i-picker,num_dependents_deps.dev:0 github.com/y-miyazaki/cloud-commands,num_dependents_deps.dev:0 github.com/y-moriguchi/akiha-board,num_dependents_deps.dev:0 @@ -1219205,6 +1240714,7 @@ github.com/y-nk/vue-linkable,num_dependents_deps.dev:0 github.com/y-nk/vue-slot-ops,num_dependents_deps.dev:0 github.com/y-nk/vue-slot-spread,num_dependents_deps.dev:0 github.com/y-nk/vue-with-root,num_dependents_deps.dev:0 +github.com/y-not-u/electron-builder-latest-yml-action, github.com/y-o-anicca/file_organizer,num_dependents_deps.dev:0 github.com/y-shop/yshop-yprint,num_dependents_deps.dev:0 github.com/y-shop/yshop-ystats,num_dependents_deps.dev:0 @@ -1219223,6 +1240733,7 @@ github.com/y-takey/pw98,num_dependents_deps.dev:0 github.com/y-takey/rails-dashboard,num_dependents_deps.dev:0 github.com/y-takey/react-fireworks,num_dependents_deps.dev:0 github.com/y-takey/react-heat-calendar,num_dependents_deps.dev:0 +github.com/y-temp4/add-wip-label, github.com/y-temp4/rehype-title-figure,num_dependents_deps.dev:0 github.com/y-track/node-sdk-dmp,num_dependents_deps.dev:0 github.com/y-tree-limited/ytkubevault, @@ -1219336,6 +1240847,7 @@ github.com/y3tu/y3tu-tool,num_dependents_deps.dev:4 github.com/y42sora/Amathon, github.com/y4ch/generator-adbanners,num_dependents_deps.dev:0 github.com/y4code/go-scaffold,num_dependents_deps.dev:0 +github.com/y4code/hexo-deploy-action, github.com/y4d/jiax,num_dependents_deps.dev:0 github.com/y4d/webminify, github.com/y4h2/code-tips,num_dependents_deps.dev:0 @@ -1219485,7 +1240997,11 @@ github.com/yaamai/go-nsdp,num_dependents_deps.dev:0 github.com/yaameen/gotnet-identity,num_dependents_deps.dev:0 github.com/yaameen/v-thaana,num_dependents_deps.dev:0 github.com/yaaminu/finicky, +github.com/yaananth/boss-action, github.com/yaananth/nimport, +github.com/yaananth/review-cheerleader, +github.com/yaananth/run-notebook, +github.com/yaananth/twine-upload, github.com/yaapis/genx,num_dependents_deps.dev:0 github.com/yaarusik/project,num_dependents_deps.dev:0 github.com/yaas-dev/bacon-cipher,num_dependents_deps.dev:0 @@ -1219503,6 +1241019,7 @@ github.com/yaazkal/digest,num_dependents_deps.dev:0 github.com/yaazkal/rpp,num_dependents_deps.dev:0 github.com/yabamuro/gocelery,num_dependents_deps.dev:0 github.com/yabasha/mix-owl-carousel,num_dependents_deps.dev:0 +github.com/yabe-diverta/e2e-sequential-puppeteer-action, github.com/yabe-diverta/enforcing-convensional-commit,num_dependents_deps.dev:0 github.com/yabe-diverta/katalon2puppeteer,num_dependents_deps.dev:0 github.com/yabeda-rb/yabeda-faktory,num_dependents_deps.dev:0 @@ -1219516,6 +1241033,7 @@ github.com/yabhq/cart.js,num_dependents_deps.dev:0 github.com/yabhq/laravel-scout-mysql-driver,criticality_score:0.310930 github.com/yabhq/nuxt-fathom,num_dependents_deps.dev:0 github.com/yabhq/nuxt-hotjar,num_dependents_deps.dev:0 +github.com/yabinboxes/cloud-builder, github.com/yabirgb/valid_url,num_dependents_deps.dev:0 github.com/yablokoff/minimongo, github.com/yaboojp/rqrcode_renderer,num_dependents_deps.dev:0 @@ -1220118,6 +1241636,7 @@ github.com/yajra/laravel-datatables,criticality_score:0.588370 github.com/yajra/laravel-datatables-assets,num_dependents_deps.dev:0 github.com/yajra/laravel-oci8,criticality_score:0.532850 github.com/yajumo93/JunTools, +github.com/yajushiSri/Badgr-Create-Badge, github.com/yajuve/cordova-plugin-RESTful,num_dependents_deps.dev:0 github.com/yajuve/ng-input-password,num_dependents_deps.dev:0 github.com/yak0/natsx,num_dependents_deps.dev:0 @@ -1220163,6 +1241682,7 @@ github.com/yakivy/dupin,num_dependents_deps.dev:0 github.com/yakivy/jam,num_dependents_deps.dev:0 github.com/yakivy/poppet,num_dependents_deps.dev:8 github.com/yakjs/yakjs-client,num_dependents_deps.dev:0 +github.com/yakketyyak/validate-k8s-files, github.com/yakkob/stablexml,num_dependents_deps.dev:0 github.com/yakkun/slack-haiku-reactor,num_dependents_deps.dev:0 github.com/yakkun/slack-thread-stopper,num_dependents_deps.dev:0 @@ -1220199,7 +1241719,15 @@ github.com/yakovmeister/redactor,num_dependents_deps.dev:0 github.com/yakovmeister/suicchi,num_dependents_deps.dev:0 github.com/yakristinaya/axios_allure,num_dependents_deps.dev:0 github.com/yakshed/drobot,num_dependents_deps.dev:0 +github.com/yakubique/minio-download, +github.com/yakubique/minio-upload, +github.com/yakubique/orogene, +github.com/yakubique/over, +github.com/yakuhzi/notify-workflow, +github.com/yakuhzi/release-asset, +github.com/yakuhzi/setup-ssh-agent, github.com/yakumioto/canonical-version-go-example,num_dependents_deps.dev:0 +github.com/yakumioto/serverchan-action, github.com/yakunins/html-sketchapp,num_dependents_deps.dev:0 github.com/yakupadakli/python-hurriyet, github.com/yakupadakli/python-mailtest, @@ -1220248,6 +1241776,7 @@ github.com/yaledhlab/shears, github.com/yaledhlab/vertices, github.com/yaledhlab/wordmap, github.com/yaledhlab/yale-facenet, +github.com/yalefresne/slack-notification-action, github.com/yalelibrary/yul-dc-partridge,num_dependents_deps.dev:0 github.com/yaleman/crowdstrike_api, github.com/yaleman/fileshimstem, @@ -1220410,6 +1241939,7 @@ github.com/yamakiller/magicnet,num_dependents_deps.dev:0 github.com/yamakiller/magicrpc,num_dependents_deps.dev:0 github.com/yamakiller/mgokcp,num_dependents_deps.dev:0 github.com/yamakiller/mgolua,num_dependents_deps.dev:1 +github.com/yamaks2306/telegram-notification, github.com/yamalight/generator-powder,num_dependents_deps.dev:0 github.com/yamalight/graffiti,num_dependents_deps.dev:0 github.com/yamalight/microwork,num_dependents_deps.dev:0 @@ -1220474,13 +1242004,17 @@ github.com/yamaszone/gcp-secret-manager-buddy,num_dependents_deps.dev:0 github.com/yamat47/activerecord_accessible_json,num_dependents_deps.dev:0 github.com/yamat47/markdown-css,num_dependents_deps.dev:0 github.com/yamata-web/yamata, +github.com/yamatatsu/document-summary-csv-creater, +github.com/yamatatsu/protect-branch-by-user, github.com/yamato79/contextual-console,num_dependents_deps.dev:0 github.com/yamatokataoka/reinforcement-learning-replications, github.com/yamatolab/current-calculations-for-proteins, github.com/yamaton/gff3toddbj, github.com/yamatsum/react-native-rss-parser,num_dependents_deps.dev:0 +github.com/yamatt/backblaze-b2-upload-action, github.com/yamatt/python-pythorrent, github.com/yamatt/python3-chardiff, +github.com/yamatt/scaleway-serverless-container-deploy-action, github.com/yamau6809/nodeCmdLineToolSample,num_dependents_deps.dev:0 github.com/yamauthi/dockergochallenge,num_dependents_deps.dev:0 github.com/yamavol/markdown-it-mathjax-chtml,num_dependents_deps.dev:0 @@ -1220646,6 +1242180,10 @@ github.com/yanagisawa-kentaro-777/pybitmex, github.com/yanagishima/yanagishima,criticality_score:0.395960 github.com/yanai101/react-all-in-one,num_dependents_deps.dev:0 github.com/yanailab/moana, +github.com/yanamura/draft-to-ready-schedule-action, +github.com/yanamura/git-flow-merge-action, +github.com/yanamura/git-merge-diff, +github.com/yanamura/ios-bump-version, github.com/yanana/agni,num_dependents_deps.dev:0 github.com/yanana/confd,num_dependents_deps.dev:0 github.com/yanana/kustomize,num_dependents_deps.dev:0 @@ -1220855,6 +1242393,7 @@ github.com/yandongliu/learningjs,num_dependents_deps.dev:0 github.com/yandre13/create-node-project,num_dependents_deps.dev:0 github.com/yandre13/project-files-cli,num_dependents_deps.dev:0 github.com/yandre13/proyect-1a-math,num_dependents_deps.dev:0 +github.com/yandzee/wait-action, github.com/yanei11/sheep_ast,num_dependents_deps.dev:0 github.com/yanekx/promotions,num_dependents_deps.dev:0 github.com/yanenkoa/jstimevirtualizer,num_dependents_deps.dev:0 @@ -1221205,6 +1242744,9 @@ github.com/yanglb/cordova-plugin-crosswalk-webview-arm,num_dependents_deps.dev:0 github.com/yanglb/cordova-plugin-jcore-google-play,num_dependents_deps.dev:0 github.com/yanglb/jpush-phonegap-plugin-google-play,num_dependents_deps.dev:0 github.com/yanglbme/actions-toolkit, +github.com/yanglbme/cordcloud-action, +github.com/yanglbme/gitee-pages-action, +github.com/yanglbme/v2ex-action, github.com/yangli-io/awaitress,num_dependents_deps.dev:0 github.com/yangli-io/eth-abis,num_dependents_deps.dev:0 github.com/yangli-io/icons-svg,num_dependents_deps.dev:0 @@ -1221351,6 +1242893,7 @@ github.com/yangwenmai/elastic,num_dependents_deps.dev:0 github.com/yangwenmai/github-trending-backup,num_dependents_deps.dev:0 github.com/yangwenmai/golangblogcn,num_dependents_deps.dev:0 github.com/yangwenzhi/bingo-builder,num_dependents_deps.dev:0 +github.com/yangwu91/bioconda, github.com/yangwu91/r2g_gui, github.com/yangxianxian/nodetextPublic,num_dependents_deps.dev:0 github.com/yangxiaolei100/pytest, @@ -1221583,6 +1243126,7 @@ github.com/yankeguo/bastion,num_dependents_deps.dev:0 github.com/yankeguo/scriptlet,num_dependents_deps.dev:0 github.com/yankeguo/xlog-java,num_dependents_deps.dev:0 github.com/yankers/homebridge-mi-smart-power-plug-eu,num_dependents_deps.dev:0 +github.com/yankewei/laravel-deploy-action, github.com/yankewei/leetcode-go,num_dependents_deps.dev:0 github.com/yankiwi/go_tests,num_dependents_deps.dev:0 github.com/yankouskia/aws-appsync-js,num_dependents_deps.dev:0 @@ -1221897,6 +1243441,7 @@ github.com/yansuan/faceeasco,num_dependents_deps.dev:0 github.com/yansuan/social,num_dependents_deps.dev:0 github.com/yansunkai/custom-controller,num_dependents_deps.dev:0 github.com/yansuofengyue/Medical,num_dependents_deps.dev:0 +github.com/yantadeu/rancher-deploy-action, github.com/yantantether/sonarqube-py, github.com/yantao0527/passport-wechat-enterprise,num_dependents_deps.dev:0 github.com/yantao0527/wechat-enterprise,num_dependents_deps.dev:0 @@ -1221933,6 +1243478,7 @@ github.com/yantrashala/loopback-connector-flexirest,num_dependents_deps.dev:0 github.com/yantrashala/loopback-glue,num_dependents_deps.dev:0 github.com/yantrashala/loopback-ssl,num_dependents_deps.dev:0 github.com/yantrashala/npm-install-all, +github.com/yantxs/shortcut-changelog-generator, github.com/yantze/b2-upload-dir,num_dependents_deps.dev:0 github.com/yantze/fs-lockfile,num_dependents_deps.dev:0 github.com/yantze/instant-markdown-d,num_dependents_deps.dev:0 @@ -1222023,6 +1243569,7 @@ github.com/yanyutao/nodestudy,num_dependents_deps.dev:0 github.com/yanyuxiangToday/yyx_tools, github.com/yanzay/go-bindata,num_dependents_deps.dev:0 github.com/yanzay/goproxy,num_dependents_deps.dev:0 +github.com/yanzay/notify-telegram, github.com/yanzhan91/easy-print,num_dependents_deps.dev:0 github.com/yanzhandong/react-native-security-keyboard,num_dependents_deps.dev:0 github.com/yanzhandong/v3hooks,num_dependents_deps.dev:0 @@ -1222151,6 +1243698,8 @@ github.com/yaotaiyang/sprite-nodes-links,num_dependents_deps.dev:0 github.com/yaotaiye/jiaoshoujia,num_dependents_deps.dev:0 github.com/yaotaiye/ty-vue-ui,num_dependents_deps.dev:0 github.com/yaotian/mop,num_dependents_deps.dev:0 +github.com/yaourdt/mgos-combine-action, +github.com/yaourdt/mongoose-os-action, github.com/yaov05/numerosaletras,num_dependents_deps.dev:0 github.com/yaowan233/nonebot-plugin-blackjack, github.com/yaowang908/react-adaptable-carousel,num_dependents_deps.dev:0 @@ -1222288,6 +1243837,8 @@ github.com/yarahal/keravis, github.com/yaraht17/react-native-draggable-view,num_dependents_deps.dev:0 github.com/yaraht17/react-native-touch,num_dependents_deps.dev:0 github.com/yarakanigara/scrollme.js,num_dependents_deps.dev:0 +github.com/yaraku/code-reviews, +github.com/yaraku/ecs-action, github.com/yaram/swarm-version-control,num_dependents_deps.dev:0 github.com/yaram/swarmhash3,num_dependents_deps.dev:0 github.com/yarapolana/eslint-config-react-native-dotcode,num_dependents_deps.dev:0 @@ -1222693,11 +1244244,13 @@ github.com/yasaricli/lcommit,num_dependents_deps.dev:0 github.com/yasaricli/react-here,num_dependents_deps.dev:0 github.com/yasaricli/react-native-counters,num_dependents_deps.dev:0 github.com/yasaricli/rn-tcomb-credit-card,num_dependents_deps.dev:0 +github.com/yasassri/setup-wso2-apictl, github.com/yaseenagag/yamda-npm,num_dependents_deps.dev:0 github.com/yaseenranta/golang-learning,num_dependents_deps.dev:0 github.com/yasemincidem/Flip-Card, github.com/yasemincidem/react-native-picker-scrollview,num_dependents_deps.dev:0 github.com/yasemincidem/webpack-clear-console,num_dependents_deps.dev:0 +github.com/yasen-pavlov/amazon-ecs-deploy-task-definition, github.com/yaser1rifai/package,num_dependents_deps.dev:0 github.com/yaser2us/helloWorldFromHere,num_dependents_deps.dev:0 github.com/yaseralnajjar/dever, @@ -1222712,6 +1244265,7 @@ github.com/yash-joshi/goservices,num_dependents_deps.dev:0 github.com/yash-mathne/quiz-application,num_dependents_deps.dev:0 github.com/yash-me/qier-player,num_dependents_deps.dev:0 github.com/yash0412/gintest,num_dependents_deps.dev:0 +github.com/yash0patni/github-action-test, github.com/yash1195/porter,num_dependents_deps.dev:0 github.com/yash1802/SimpleML, github.com/yash1994/dframcy, @@ -1222727,6 +1244281,7 @@ github.com/yashag/texting,num_dependents_deps.dev:0 github.com/yashaka/selene,criticality_score:0.511740 github.com/yashanand/cve-2018-6574,num_dependents_deps.dev:0 github.com/yashanand1910/exxpress,num_dependents_deps.dev:0 +github.com/yashanand1910/standard-release-notes, github.com/yasharma/mongo-to-csv,num_dependents_deps.dev:0 github.com/yasharpm/InputFormatter,num_dependents_deps.dev:0 github.com/yasharpm/InstaCropper,num_dependents_deps.dev:0 @@ -1222768,6 +1244323,7 @@ github.com/yashguptaz/tell-about,num_dependents_deps.dev:0 github.com/yashh/django-locations, github.com/yashha/node-wpapi,num_dependents_deps.dev:0 github.com/yashha/percollate,num_dependents_deps.dev:0 +github.com/yashhy/pr-label-check-and-comment-action, github.com/yashible/generator-yashible-role,num_dependents_deps.dev:0 github.com/yashible/generator-yashible-vagrant,num_dependents_deps.dev:0 github.com/yashichi05/web_try,num_dependents_deps.dev:0 @@ -1222975,6 +1244531,7 @@ github.com/yassh/urlencode-cli,num_dependents_deps.dev:0 github.com/yassh/yassh-plus,num_dependents_deps.dev:0 github.com/yasshi2525/rushhour,num_dependents_deps.dev:0 github.com/yasshi2525/rushmini,num_dependents_deps.dev:0 +github.com/yassi-github/always-post-cache, github.com/yassi/envio, github.com/yassilah/pinia-plugin-history,num_dependents_deps.dev:0 github.com/yassine-khachlek/releveldb,num_dependents_deps.dev:0 @@ -1222997,6 +1244554,7 @@ github.com/yassineazzouz/tanit, github.com/yassinebelhajamor/react-native-ybha-hourminute-timepicker,num_dependents_deps.dev:0 github.com/yassinebnk/bnk_js,num_dependents_deps.dev:0 github.com/yassinebridi/next-direction,num_dependents_deps.dev:0 +github.com/yassinebridi/pushbullet-action, github.com/yassinebridi/tailwind-direction,num_dependents_deps.dev:0 github.com/yassinedoghri/react-super-timer,num_dependents_deps.dev:0 github.com/yassinedoghri/react-timer-machine,num_dependents_deps.dev:0 @@ -1223058,6 +1244616,7 @@ github.com/yaswanthsvist/scss-2-css,num_dependents_deps.dev:0 github.com/yasyf/bitfieldable,num_dependents_deps.dev:0 github.com/yasyf/versioned-routes-rails,num_dependents_deps.dev:0 github.com/yatahunt/veterran,num_dependents_deps.dev:0 +github.com/yatatsu/pod-outdated-check-action, github.com/yatechorg/common-utils,num_dependents_deps.dev:0 github.com/yatechorg/jedis-utils,num_dependents_deps.dev:0 github.com/yateenkedare/avro-ts-converter,num_dependents_deps.dev:0 @@ -1223095,6 +1244654,7 @@ github.com/yatima-inc/sp-cid,num_dependents_deps.dev:0 github.com/yatima-inc/sp-im,num_dependents_deps.dev:0 github.com/yatima-inc/sp-ipld,num_dependents_deps.dev:0 github.com/yatima-inc/sp-multihash,num_dependents_deps.dev:2 +github.com/yatima1460/ec2-multiple-github-runners, github.com/yatiml/yatiml, github.com/yatin2410/Graph_Classes, github.com/yatishbalaji/floor-to-precision,num_dependents_deps.dev:0 @@ -1223149,6 +1244709,8 @@ github.com/yaulendil/memoiter,num_dependents_deps.dev:0 github.com/yaulendil/tengwar-rs,num_dependents_deps.dev:0 github.com/yauri-io/hapi-mongoose,num_dependents_deps.dev:0 github.com/yauritux/g2lab,num_dependents_deps.dev:0 +github.com/yauritux/scm-dd-collector, +github.com/yauritux/scm-dd-creator, github.com/yausername/todo,num_dependents_deps.dev:0 github.com/yautah/dva-wxapp,num_dependents_deps.dev:0 github.com/yav0602/mini-templater,num_dependents_deps.dev:0 @@ -1223156,6 +1244718,12 @@ github.com/yavia/django-namedtuples, github.com/yavictor/frontend-project-lvl1,num_dependents_deps.dev:0 github.com/yavin5/angular-async-http,num_dependents_deps.dev:0 github.com/yavinapi/yavin-python-client, +github.com/yavinenana/cloudflare-purge-gha, +github.com/yavinenana/gha-docker-push-ecr, +github.com/yavinenana/gha-k8s-iam, +github.com/yavinenana/gha-serverless-with-python-requirements, +github.com/yavinenana/invalidate-aws-cloudfront-gha, +github.com/yavinenana/s3-sync-gha, github.com/yavisht/has-key,num_dependents_deps.dev:0 github.com/yavorek/xpath_string, github.com/yavorpunchev/postcss-design-system,num_dependents_deps.dev:0 @@ -1223246,6 +1244814,7 @@ github.com/yaxa08/git-go,num_dependents_deps.dev:0 github.com/yaxia/json-edm-parser,num_dependents_deps.dev:1150 github.com/yaxim-org/yaxim,criticality_score:0.367000 github.com/yaxinr/ember-auto-font-size,num_dependents_deps.dev:0 +github.com/yaxitech/nix-install-pkgs-action, github.com/yaxter/wifidroid, github.com/yay-couch/couch-js,num_dependents_deps.dev:0 github.com/yay2008/react-video-seek-slider, @@ -1223300,6 +1244869,7 @@ github.com/yayramen/hashtag-amy,num_dependents_deps.dev:0 github.com/yayugu/node-easy-ssm,num_dependents_deps.dev:0 github.com/yayuhh/icecreambar,num_dependents_deps.dev:0 github.com/yayuyokitano/distance-correlation-fast,num_dependents_deps.dev:0 +github.com/yayuyokitano/firefox-addon, github.com/yayuyokitano/lastfm-tag-processor, github.com/yayuyokitano/lastfm-typed,num_dependents_deps.dev:0 github.com/yayxs/vast-utils,num_dependents_deps.dev:0 @@ -1223487,10 +1245057,22 @@ github.com/ybyygu/rust-lbfgs,num_dependents_deps.dev:0 github.com/ybyygu/rust-octree,num_dependents_deps.dev:7 github.com/ybyyng/jaeger,num_dependents_deps.dev:0 github.com/ybyyng/jaeger-client-go,num_dependents_deps.dev:0 +github.com/ybyzek/cp-all-in-one-action, github.com/ybzjsxh/color-statistics,num_dependents_deps.dev:0 github.com/ybzjsxh/data-tab-board,num_dependents_deps.dev:0 github.com/ybzmh/tcp-request-promise,num_dependents_deps.dev:0 github.com/ybzmh/union-tcp,num_dependents_deps.dev:0 +github.com/yc-actions/yc-api-gateway-deploy, +github.com/yc-actions/yc-cdn-cache, +github.com/yc-actions/yc-coi-deploy, +github.com/yc-actions/yc-coi-deploy-ig, +github.com/yc-actions/yc-cr-login, +github.com/yc-actions/yc-github-runner, +github.com/yc-actions/yc-iam-token, +github.com/yc-actions/yc-lockbox, +github.com/yc-actions/yc-obj-storage-upload, +github.com/yc-actions/yc-sls-container-deploy, +github.com/yc-actions/yc-sls-function, github.com/yc-angular/api,num_dependents_deps.dev:0 github.com/yc-angular/auth,num_dependents_deps.dev:0 github.com/yc-angular/auth-local,num_dependents_deps.dev:0 @@ -1223653,6 +1245235,7 @@ github.com/ycjcl868/gitleaks,num_dependents_deps.dev:0 github.com/ycjcl868/joi2types,num_dependents_deps.dev:82 github.com/ycjcl868/jsx2css,num_dependents_deps.dev:0 github.com/ycjcl868/mem-fs-editor,num_dependents_deps.dev:6 +github.com/ycjcl868/outdated-version-action, github.com/ycjcl868/schema-util-loader,num_dependents_deps.dev:0 github.com/ycjcl868/snippets-cli,num_dependents_deps.dev:0 github.com/ycjcl868/ssr-polyfill,num_dependents_deps.dev:2 @@ -1223748,10 +1245331,12 @@ github.com/ycs77/bootstrap-vue-arsenic,num_dependents_deps.dev:0 github.com/ycs77/jquery-plugin-bsModal, github.com/ycs77/jquery-plugin-c-share,num_dependents_deps.dev:0 github.com/ycs77/purge-icons-vue,num_dependents_deps.dev:0 +github.com/ycs77/readme-anime-list, github.com/ycs77/vue-c-share,num_dependents_deps.dev:0 github.com/ycs77/youku-m3u8-parser, github.com/ycscholes/pulse-set,num_dependents_deps.dev:0 github.com/ycscholes/scrollFixedHeader,num_dependents_deps.dev:0 +github.com/ycswaves/action-pagerduty-alert, github.com/yct21/bisheng-plugin-mermaid,num_dependents_deps.dev:0 github.com/ycu-engine/amplify-api-hook,num_dependents_deps.dev:0 github.com/ycu-engine/amplify-auth-hook,num_dependents_deps.dev:0 @@ -1223775,6 +1245360,10 @@ github.com/ycyun/go-powershell,num_dependents_deps.dev:0 github.com/ycyuxin/beginning, github.com/ycyxuehan/bingblog,num_dependents_deps.dev:0 github.com/yczhangsjtu/vcproof-rust,num_dependents_deps.dev:0 +github.com/ydah/mdformat-action, +github.com/ydah/rubocop-autocorrector, +github.com/ydah/rubocop-todo-regenerator, +github.com/ydah/rubocop-updater, github.com/ydakuka/base32.rb,num_dependents_deps.dev:0 github.com/ydakuka/blake,num_dependents_deps.dev:0 github.com/ydakuka/blake.rb,num_dependents_deps.dev:0 @@ -1223798,7 +1245387,9 @@ github.com/ydarma/stealer,num_dependents_deps.dev:0 github.com/ydarma/ts-yamp, github.com/ydarma/yamp,num_dependents_deps.dev:0 github.com/ydataai/backend-interview-sample,num_dependents_deps.dev:0 +github.com/ydataai/create-tag, github.com/ydataai/kubeflow,num_dependents_deps.dev:0 +github.com/ydataai/update-notion-page, github.com/ydataai/ydata-quality, github.com/ydataai/ydata-synthetic, github.com/ydatech/cordova-phonegap_youtube_player_api_android,num_dependents_deps.dev:0 @@ -1223954,6 +1245545,7 @@ github.com/yeatszhang/object-pick,num_dependents_deps.dev:0 github.com/yeatszhang/react-input-text,num_dependents_deps.dev:0 github.com/yeatszhang/react-isomorphic-builder, github.com/yeatszhang/redux-toolkit,num_dependents_deps.dev:0 +github.com/yeaung276/sarif-annotator, github.com/yebinama/paclair, github.com/yebo-ecommerce/ember-yebo-lists, github.com/yeboahnanaosei/test-ssh-command-action,num_dependents_deps.dev:0 @@ -1224111,6 +1245703,7 @@ github.com/yeghishe/scala-aws-lambda-utils,num_dependents_deps.dev:0 github.com/yeghishe/task,num_dependents_deps.dev:0 github.com/yegle/flask_twip, github.com/yegle/yegle-bots,num_dependents_deps.dev:0 +github.com/yegobox/secret-parser, github.com/yegodz/easy-repl,num_dependents_deps.dev:0 github.com/yegor-sytnyk/auto-resolver,num_dependents_deps.dev:0 github.com/yegor-sytnyk/stash-data,num_dependents_deps.dev:0 @@ -1224127,6 +1245720,7 @@ github.com/yegor256/eo-cactoos,num_dependents_deps.dev:0 github.com/yegor256/jcabi,num_dependents_deps.dev:397 github.com/yegor256/jpeek,num_dependents_deps.dev:0 github.com/yegor256/jpeek-maven-plugin,num_dependents_deps.dev:0 +github.com/yegor256/latexmk-action, github.com/yegor256/netbout,num_dependents_deps.dev:0 github.com/yegor256/npm-files,num_dependents_deps.dev:0 github.com/yegor256/phandom,num_dependents_deps.dev:0 @@ -1224145,11 +1245739,13 @@ github.com/yegorov-boris/bioinf,num_dependents_deps.dev:0 github.com/yegorov-p/YMContent, github.com/yegorov-p/yacargo, github.com/yegorrudica/Distributed-Communication-System,num_dependents_deps.dev:0 +github.com/yegorrybchenko/go-swag-action, github.com/yegortokmakov/solrbackups3, github.com/yeguacelestial/go-playground,num_dependents_deps.dev:0 github.com/yeguaib/captcha,num_dependents_deps.dev:0 github.com/yehan2002/fastbytes,num_dependents_deps.dev:0 github.com/yehan2002/is,num_dependents_deps.dev:0 +github.com/yehan68/yehan-git-sync, github.com/yehchilai/apnspy, github.com/yeheng/go-web-api,num_dependents_deps.dev:0 github.com/yehezkielbs/gmail-xoauth,num_dependents_deps.dev:0 @@ -1224188,6 +1245784,7 @@ github.com/yehq/dva-model-enhance,num_dependents_deps.dev:0 github.com/yehq/swagger-api-helper,num_dependents_deps.dev:0 github.com/yehted/jwt-go,num_dependents_deps.dev:0 github.com/yehtutwin/random-int-inclusive,num_dependents_deps.dev:0 +github.com/yehudah/remind-the-reviewers, github.com/yehudahkay/react-native-camera-roll-picker,num_dependents_deps.dev:0 github.com/yehudamakarov/db-script-gen,num_dependents_deps.dev:0 github.com/yehudamakarov/scromment,num_dependents_deps.dev:0 @@ -1224372,6 +1245969,7 @@ github.com/yellowSTA/v-m-layer,num_dependents_deps.dev:0 github.com/yellowbasket/amazon-cognito-identity-node-js,num_dependents_deps.dev:0 github.com/yellowbeee/protobufjs2-loader,num_dependents_deps.dev:0 github.com/yellowblood/hocon-js,num_dependents_deps.dev:0 +github.com/yellowbrim/pulumi-github-action, github.com/yellowbrim/yellowbrim-tslint-config, github.com/yellowcardfinancial/yellowcard-styling-config,num_dependents_deps.dev:0 github.com/yellowdemondhruv/gocode,num_dependents_deps.dev:0 @@ -1224387,12 +1245985,16 @@ github.com/yellowkirby/add-package-prefix,num_dependents_deps.dev:0 github.com/yellowmamba/dyndump,num_dependents_deps.dev:0 github.com/yellowme/androidschoolbasics,num_dependents_deps.dev:0 github.com/yellowme/paybook-reactjs,num_dependents_deps.dev:0 +github.com/yellowmegaman/gh-build-canceller, +github.com/yellowmegaman/k3s-gha, +github.com/yellowmegaman/prtrigger, github.com/yellowmessenger/cordova-plugin-ymchat,num_dependents_deps.dev:0 github.com/yellowmessenger/secured-router,num_dependents_deps.dev:0 github.com/yellowmessenger/ymchat-react-native,num_dependents_deps.dev:0 github.com/yellowred/algorithms-training,num_dependents_deps.dev:0 github.com/yellowred/algorithmstraining,num_dependents_deps.dev:0 github.com/yellowred/surfingcat-trading-bot,num_dependents_deps.dev:0 +github.com/yellowrook1/market-action-test, github.com/yellowsink/gofetch,num_dependents_deps.dev:0 github.com/yellowspot/ng2-truncate,num_dependents_deps.dev:6 github.com/yellowspot/react-web-utils,num_dependents_deps.dev:0 @@ -1224671,6 +1246273,7 @@ github.com/yeonwook1993/submariner,num_dependents_deps.dev:0 github.com/yeonwu/go,num_dependents_deps.dev:0 github.com/yeori/vue-kakao-api,num_dependents_deps.dev:0 github.com/yeoubi/yeoubi-ui,num_dependents_deps.dev:0 +github.com/yeouchien/sanitize-branch-name-action, github.com/yepher/GsonDoc,num_dependents_deps.dev:3 github.com/yepman-me/learn,num_dependents_deps.dev:0 github.com/yepnamesjames/draft-js-gutter,num_dependents_deps.dev:0 @@ -1224777,6 +1246380,7 @@ github.com/yesdevnull/jsonresume-theme-contempo,num_dependents_deps.dev:0 github.com/yesemsanthoshkumar/pygdelt, github.com/yesfeedme-archive/go-effects,num_dependents_deps.dev:0 github.com/yesgraph/python-yesgraph, +github.com/yeshan333/rsync-deploy-action, github.com/yeshanshan/sr-qd-cli,num_dependents_deps.dev:0 github.com/yeshijian/bookur-util,num_dependents_deps.dev:0 github.com/yeshimei/Handle.js,num_dependents_deps.dev:0 @@ -1224822,6 +1246426,11 @@ github.com/yeskunall/observe-el,num_dependents_deps.dev:0 github.com/yeskunall/react-dom-status-hook,num_dependents_deps.dev:0 github.com/yeskunall/utils.time,num_dependents_deps.dev:0 github.com/yeskunall/yts,num_dependents_deps.dev:0 +github.com/yeslayla/build-godot-action, +github.com/yeslayla/build-nakama-plugin-action, +github.com/yeslayla/butler-publish-itchio-action, +github.com/yeslayla/run-gut-tests-action, +github.com/yeslayla/zappa-deploy-action, github.com/yesley/esdoc-external-events-plugin,num_dependents_deps.dev:0 github.com/yeslogic/allsorts,"criticality_score:0.346100,num_dependents_deps.dev:4" github.com/yeslogic/fathom,num_dependents_deps.dev:0 @@ -1224864,6 +1246473,7 @@ github.com/yesobo/grunt-java2html,num_dependents_deps.dev:0 github.com/yesodweb/persistent,criticality_score:0.526490 github.com/yesodweb/wai,criticality_score:0.636980 github.com/yesodweb/yesod,criticality_score:0.622610 +github.com/yesolutions/mirror-action, github.com/yeson8/project,num_dependents_deps.dev:0 github.com/yesoreyeram/grafana,num_dependents_deps.dev:0 github.com/yesoreyeram/grafana-infinity-datasource,num_dependents_deps.dev:0 @@ -1225070,6 +1246680,7 @@ github.com/yevgenybulochnik/ascvdcalc,num_dependents_deps.dev:0 github.com/yevgenybulochnik/morphine-milligram-equiv, github.com/yevgenykuz/simple-soap-client,num_dependents_deps.dev:0 github.com/yevgenypats/bug-repro,num_dependents_deps.dev:0 +github.com/yevh/reviewdog-action-credo, github.com/yevhen-m/flake8-fancy-header, github.com/yevhen/Streamstone,criticality_score:0.343340 github.com/yevhenbondar/null2undefined,num_dependents_deps.dev:0 @@ -1225342,6 +1246953,8 @@ github.com/ygmpkk/graphql-crab, github.com/ygmpkk/hacking_sign,num_dependents_deps.dev:0 github.com/ygmpkk/siddhi-io-tcp-node,num_dependents_deps.dev:0 github.com/ygmpkk/yapi-plugin-ldapmail,num_dependents_deps.dev:0 +github.com/ygnoh/actions-request-pr-review, +github.com/ygnoh/actions-thank-you-new, github.com/ygnotebooktoall/ygnotebook, github.com/ygnr/npm-module-es6-boilerplate,num_dependents_deps.dev:0 github.com/ygo74/generator-ansible-project,num_dependents_deps.dev:0 @@ -1225376,6 +1246989,7 @@ github.com/ygpark2/mboard,num_dependents_deps.dev:0 github.com/ygpark2/njro,num_dependents_deps.dev:0 github.com/ygpedroso/python-githooks, github.com/ygpedroso/react-autohide,num_dependents_deps.dev:0 +github.com/ygqygq2/workflow-wait-action, github.com/ygr000/updatehostsgo,num_dependents_deps.dev:0 github.com/ygr000/wxwxdattrans,num_dependents_deps.dev:0 github.com/ygrishajev/mongoose-pagination-plugin,num_dependents_deps.dev:0 @@ -1225548,12 +1247162,15 @@ github.com/yhoshino11/pushould-node,num_dependents_deps.dev:0 github.com/yhoshua8a/lit-video,num_dependents_deps.dev:0 github.com/yhostc/node-qqwry,num_dependents_deps.dev:0 github.com/yhostc/xmlparser,num_dependents_deps.dev:0 +github.com/yhosun/pr-translation-action, github.com/yhpoh91/kopi-id,num_dependents_deps.dev:0 github.com/yhq-yibo/AutoxDeployWebpackPlugin, github.com/yhqjohn/MetaModule, github.com/yhqjohn/ToE, github.com/yhqy/multi-datasource-spring-boot-stater,num_dependents_deps.dev:0 github.com/yhrn/kustomize,num_dependents_deps.dev:0 +github.com/yhrunyk/action-allure-generate-report, +github.com/yhrunyk/hcl-update, github.com/yhsiang/ansi-moedict,num_dependents_deps.dev:0 github.com/yhsiang/irccloud-cli,num_dependents_deps.dev:0 github.com/yhsm3/go-demo,num_dependents_deps.dev:0 @@ -1225598,6 +1247215,9 @@ github.com/yhyzgn/winter,num_dependents_deps.dev:0 github.com/yhzhao/burrow_exporter,num_dependents_deps.dev:0 github.com/yhzzy/yh-ui-components,num_dependents_deps.dev:0 github.com/yi-Xu-0100/conventional-commit-types-i18n,num_dependents_deps.dev:0 +github.com/yi-Xu-0100/license-generator, +github.com/yi-Xu-0100/repo-list-generator, +github.com/yi-Xu-0100/traffic-to-badge, github.com/yi-chen-roger/notes,num_dependents_deps.dev:0 github.com/yi-cli/yi-cli,num_dependents_deps.dev:0 github.com/yi-editor/yi,criticality_score:0.414960 @@ -1225812,6 +1247432,7 @@ github.com/yieme/schema-ramp,num_dependents_deps.dev:0 github.com/yieme/senson,num_dependents_deps.dev:0 github.com/yieme/statpack,num_dependents_deps.dev:0 github.com/yieme/web-backup,num_dependents_deps.dev:0 +github.com/yieon-swk/kubectl, github.com/yiershan/MZC-Ng-Api,num_dependents_deps.dev:0 github.com/yiershan/SmokeTesting,num_dependents_deps.dev:0 github.com/yifan-Eric/e_fanyi,num_dependents_deps.dev:0 @@ -1225889,6 +1247510,7 @@ github.com/yihleego/unique,num_dependents_deps.dev:16 github.com/yihong0618/GitHubPoster, github.com/yihong0618/Runtastic, github.com/yihong0618/gaycore, +github.com/yihong0618/github-readme-stats, github.com/yihong0618/hhsh, github.com/yihong0618/running_page,criticality_score:0.414290 github.com/yihongxian/dukang,num_dependents_deps.dev:0 @@ -1225917,20 +1247539,179 @@ github.com/yiidot/tsdoc2md,num_dependents_deps.dev:0 github.com/yiimingyang/write-docker-actions,num_dependents_deps.dev:0 github.com/yiiqii/photo-cleanup,num_dependents_deps.dev:0 github.com/yiisoft-contrib/yiiframework.com,criticality_score:0.483360 +github.com/yiisoft/active-record, +github.com/yiisoft/aliases, +github.com/yiisoft/app, +github.com/yiisoft/app-api, +github.com/yiisoft/app-console, +github.com/yiisoft/arrays, +github.com/yiisoft/assets, +github.com/yiisoft/auth, +github.com/yiisoft/auth-jwt, +github.com/yiisoft/cache, +github.com/yiisoft/cache-apcu, +github.com/yiisoft/cache-db, +github.com/yiisoft/cache-file, +github.com/yiisoft/cache-memcached, +github.com/yiisoft/cache-redis, +github.com/yiisoft/cache-wincache, +github.com/yiisoft/classifier, +github.com/yiisoft/composer-config-plugin, +github.com/yiisoft/config, +github.com/yiisoft/container-proxy, +github.com/yiisoft/cookies, +github.com/yiisoft/csrf, +github.com/yiisoft/data, +github.com/yiisoft/data-db, +github.com/yiisoft/data-response, +github.com/yiisoft/db, +github.com/yiisoft/db-elasticsearch, +github.com/yiisoft/db-migration, +github.com/yiisoft/db-mongodb, +github.com/yiisoft/db-mssql, +github.com/yiisoft/db-mysql, +github.com/yiisoft/db-oracle, +github.com/yiisoft/db-pgsql, +github.com/yiisoft/db-redis, +github.com/yiisoft/db-sphinx, +github.com/yiisoft/db-sqlite, +github.com/yiisoft/definitions, +github.com/yiisoft/demo, +github.com/yiisoft/demo-api, +github.com/yiisoft/di, +github.com/yiisoft/dummy-provider, +github.com/yiisoft/error-handler, +github.com/yiisoft/event-dispatcher, +github.com/yiisoft/factory, +github.com/yiisoft/files, +github.com/yiisoft/form, +github.com/yiisoft/friendly-exception, +github.com/yiisoft/html, +github.com/yiisoft/http, +github.com/yiisoft/i18n, +github.com/yiisoft/inflector, +github.com/yiisoft/injector, +github.com/yiisoft/jquery, github.com/yiisoft/jquery-pjax,num_dependents_deps.dev:0 +github.com/yiisoft/json, +github.com/yiisoft/log, +github.com/yiisoft/log-target-db, +github.com/yiisoft/log-target-email, +github.com/yiisoft/log-target-file, +github.com/yiisoft/log-target-syslog, +github.com/yiisoft/mailer, +github.com/yiisoft/mailer-swiftmailer, +github.com/yiisoft/mailer-symfony, +github.com/yiisoft/middleware-dispatcher, +github.com/yiisoft/mutex, +github.com/yiisoft/mutex-file, +github.com/yiisoft/mutex-pdo-mysql, +github.com/yiisoft/mutex-pdo-oracle, +github.com/yiisoft/mutex-pdo-pgsql, +github.com/yiisoft/mutex-redis, +github.com/yiisoft/network-utilities, +github.com/yiisoft/profiler, +github.com/yiisoft/proxy, +github.com/yiisoft/psr-dummy-provider, +github.com/yiisoft/rate-limiter, +github.com/yiisoft/rbac, +github.com/yiisoft/rbac-cycle-db, +github.com/yiisoft/rbac-php, +github.com/yiisoft/rbac-rules-container, +github.com/yiisoft/request-body-parser, +github.com/yiisoft/request-model, +github.com/yiisoft/requirements, +github.com/yiisoft/router, +github.com/yiisoft/router-fastroute, +github.com/yiisoft/security, +github.com/yiisoft/serializer, +github.com/yiisoft/session, +github.com/yiisoft/strings, +github.com/yiisoft/test-support, +github.com/yiisoft/translator, +github.com/yiisoft/translator-extractor, +github.com/yiisoft/translator-formatter-intl, +github.com/yiisoft/translator-formatter-simple, +github.com/yiisoft/translator-message-db, +github.com/yiisoft/translator-message-gettext, +github.com/yiisoft/translator-message-php, +github.com/yiisoft/user, +github.com/yiisoft/validator, +github.com/yiisoft/var-dumper, +github.com/yiisoft/view, +github.com/yiisoft/view-twig, +github.com/yiisoft/widget, github.com/yiisoft/yii,criticality_score:0.673930 +github.com/yiisoft/yii-api, +github.com/yiisoft/yii-auth-client, +github.com/yiisoft/yii-base-api, +github.com/yiisoft/yii-base-cli, +github.com/yiisoft/yii-base-web, +github.com/yiisoft/yii-bootstrap4, +github.com/yiisoft/yii-bootstrap5, +github.com/yiisoft/yii-bulma, +github.com/yiisoft/yii-captcha, +github.com/yiisoft/yii-console, +github.com/yiisoft/yii-core, +github.com/yiisoft/yii-cycle, +github.com/yiisoft/yii-dataview, +github.com/yiisoft/yii-debug, +github.com/yiisoft/yii-debug-api, +github.com/yiisoft/yii-debug-viewer, +github.com/yiisoft/yii-event, +github.com/yiisoft/yii-filesystem, +github.com/yiisoft/yii-gii, +github.com/yiisoft/yii-http, +github.com/yiisoft/yii-http-client, +github.com/yiisoft/yii-jquery, +github.com/yiisoft/yii-masked-input, +github.com/yiisoft/yii-middleware, +github.com/yiisoft/yii-project-template, +github.com/yiisoft/yii-queue, +github.com/yiisoft/yii-queue-amqp, +github.com/yiisoft/yii-runner, +github.com/yiisoft/yii-runner-console, +github.com/yiisoft/yii-runner-http, +github.com/yiisoft/yii-runner-roadrunner, +github.com/yiisoft/yii-sentry, +github.com/yiisoft/yii-swagger, +github.com/yiisoft/yii-testing, +github.com/yiisoft/yii-twig, +github.com/yiisoft/yii-view, +github.com/yiisoft/yii-web, +github.com/yiisoft/yii-widgets, github.com/yiisoft/yii2,criticality_score:0.831150 github.com/yiisoft/yii2-apidoc,criticality_score:0.460790 github.com/yiisoft/yii2-app-advanced,criticality_score:0.540890 github.com/yiisoft/yii2-app-basic,criticality_score:0.549300 +github.com/yiisoft/yii2-app-benchmark, github.com/yiisoft/yii2-authclient,criticality_score:0.465130 +github.com/yiisoft/yii2-bootstrap, +github.com/yiisoft/yii2-bootstrap4, +github.com/yiisoft/yii2-bootstrap5, +github.com/yiisoft/yii2-codeception, +github.com/yiisoft/yii2-coding-standards, +github.com/yiisoft/yii2-collection, +github.com/yiisoft/yii2-composer, +github.com/yiisoft/yii2-debug, github.com/yiisoft/yii2-docker,criticality_score:0.436700 github.com/yiisoft/yii2-elasticsearch,criticality_score:0.406610 +github.com/yiisoft/yii2-faker, +github.com/yiisoft/yii2-framework, +github.com/yiisoft/yii2-gii, github.com/yiisoft/yii2-httpclient,criticality_score:0.336430 github.com/yiisoft/yii2-imagine,criticality_score:0.371080 +github.com/yiisoft/yii2-jui, github.com/yiisoft/yii2-mongodb,criticality_score:0.499830 +github.com/yiisoft/yii2-psr-log-source, github.com/yiisoft/yii2-queue,criticality_score:0.457780 github.com/yiisoft/yii2-redis,criticality_score:0.466470 +github.com/yiisoft/yii2-shell, +github.com/yiisoft/yii2-smarty, +github.com/yiisoft/yii2-sphinx, +github.com/yiisoft/yii2-swiftmailer, +github.com/yiisoft/yii2-symfonymailer, +github.com/yiisoft/yii2-twig, github.com/yiiton/channels,num_dependents_deps.dev:0 github.com/yiiton/go-datastructures,num_dependents_deps.dev:0 github.com/yiiton/hopwatch,num_dependents_deps.dev:0 @@ -1225997,6 +1247778,7 @@ github.com/yildizdb/yildiz,num_dependents_deps.dev:0 github.com/yildizdb/yildiz-js,num_dependents_deps.dev:0 github.com/yileliu/learn-ag2-fundmental,num_dependents_deps.dev:0 github.com/yilf/console,num_dependents_deps.dev:0 +github.com/yiliang114/commit-times, github.com/yiliang114/eslint-config-wire,num_dependents_deps.dev:0 github.com/yiliang114/eslint-config-yiliang,num_dependents_deps.dev:0 github.com/yiliang114/occupy-latrine,num_dependents_deps.dev:0 @@ -1226009,6 +1247791,7 @@ github.com/yilihjy/ts-ta,num_dependents_deps.dev:0 github.com/yiliminiqihang/limin,num_dependents_deps.dev:0 github.com/yilingapa/istore,num_dependents_deps.dev:0 github.com/yilinwei/chibi-scheme-rs,num_dependents_deps.dev:0 +github.com/yilinwei/setup-ammonite, github.com/yilishabuBai/js-van,num_dependents_deps.dev:0 github.com/yiliuyan161/gmcache, github.com/yiller/angular4-counter-up,num_dependents_deps.dev:0 @@ -1226295,6 +1248078,8 @@ github.com/yinliguo/happy-request,num_dependents_deps.dev:0 github.com/yinliguo/pdf-viewer,num_dependents_deps.dev:0 github.com/yinliguo/printer,num_dependents_deps.dev:0 github.com/yinliguo/table-editor,num_dependents_deps.dev:0 +github.com/yinlinchen/amplify-preview-actions, +github.com/yinlinchen/fcrepo-docker-actions, github.com/yinlitao/node-sybase,num_dependents_deps.dev:0 github.com/yinlou/mltk,num_dependents_deps.dev:0 github.com/yinm/exec-info,num_dependents_deps.dev:0 @@ -1226387,7 +1248172,10 @@ github.com/yinxin630/ezreal, github.com/yinxin630/fiora,criticality_score:0.348510 github.com/yinxin630/useful-regex,num_dependents_deps.dev:0 github.com/yinxin630/zp-debug-tool, +github.com/yinxulai/actions-electron-forge, github.com/yinxulai/regexpview,num_dependents_deps.dev:0 +github.com/yinyajun/action-github-clone, +github.com/yinyajun/action-kustomize, github.com/yinyajun/golang-toys,num_dependents_deps.dev:0 github.com/yinyanfr/NovelScript,num_dependents_deps.dev:0 github.com/yinyanfr/Sajo_Yukimi,num_dependents_deps.dev:0 @@ -1226540,6 +1248328,7 @@ github.com/yisiper/stathub-go,num_dependents_deps.dev:0 github.com/yisleyen/echo-framework,num_dependents_deps.dev:0 github.com/yisleyen/go-example,num_dependents_deps.dev:0 github.com/yismaeel21/trees, +github.com/yisonPylkita/gh-action-toml-linter, github.com/yisraelgrimes/demo-package-one,num_dependents_deps.dev:0 github.com/yisraelx/authllizer,num_dependents_deps.dev:0 github.com/yisraelx/ganuz,num_dependents_deps.dev:680 @@ -1226559,8 +1248348,10 @@ github.com/yitm/lecore,num_dependents_deps.dev:0 github.com/yitodeveloper/npm_package_test,num_dependents_deps.dev:0 github.com/yitongtse/mod2,num_dependents_deps.dev:0 github.com/yitongtse/mod3,num_dependents_deps.dev:0 +github.com/yitsushi/devmapper-containerd-action, github.com/yitsushi/doku, github.com/yitsushi/ecr-k8s-secret-creator,num_dependents_deps.dev:0 +github.com/yitsushi/experimental-github-action, github.com/yitsushi/go-misskey,num_dependents_deps.dev:0 github.com/yitsushi/hubu, github.com/yitsushi/lair, @@ -1226720,9 +1248511,11 @@ github.com/yiyuana/eslint-config,num_dependents_deps.dev:0 github.com/yiyuana/prettier-config,num_dependents_deps.dev:0 github.com/yiyuezhuo/bayes-torch, github.com/yiyuezhuo/mtcnn-onnxruntime, +github.com/yiyungent/clear-image-action, github.com/yiyungent/hexo-asset-img,num_dependents_deps.dev:0 github.com/yiyungent/moq,num_dependents_deps.dev:0 github.com/yiyungent/sim-captcha-js,num_dependents_deps.dev:0 +github.com/yiyungent/upyun-action, github.com/yiyungent/vue-sim-captcha,num_dependents_deps.dev:0 github.com/yiyus/brainfuck,num_dependents_deps.dev:0 github.com/yiyus/lemmy,num_dependents_deps.dev:0 @@ -1226744,6 +1248537,7 @@ github.com/yizhiren/iwechat,num_dependents_deps.dev:0 github.com/yizhiren/weibologin,num_dependents_deps.dev:0 github.com/yizhisec/delayed, github.com/yizhiyuyou/vuex-loading,num_dependents_deps.dev:0 +github.com/yizhoumo/setup-ossutil, github.com/yizhouzhao/GenMotion, github.com/yizhuoyan/yiyi,num_dependents_deps.dev:0 github.com/yiziz/gorp,num_dependents_deps.dev:0 @@ -1226764,6 +1248558,7 @@ github.com/yj1438/react-marked-preview-editor,num_dependents_deps.dev:0 github.com/yj1438/tiledmap-loader,num_dependents_deps.dev:0 github.com/yj1990/sec_mmf, github.com/yj445649862/UIcomponents,num_dependents_deps.dev:0 +github.com/yj7/team-labeler-action, github.com/yj8907/mit-6.824,num_dependents_deps.dev:0 github.com/yjaaidi/pysynthetic, github.com/yjagdale/siem-data-producer,num_dependents_deps.dev:0 @@ -1226863,6 +1248658,7 @@ github.com/yjpa7145/aws-terminal-console,num_dependents_deps.dev:0 github.com/yjpan51020/excel-helper,num_dependents_deps.dev:0 github.com/yjpark/lnkr, github.com/yjpark/silp, +github.com/yjpictures/GTK-Windows, github.com/yjqg6666/gopinpoint,num_dependents_deps.dev:0 github.com/yjqiang/bili2.0,criticality_score:0.305320 github.com/yjqiang/danmu, @@ -1226917,6 +1248713,7 @@ github.com/yk-knight/comfort-ui,num_dependents_deps.dev:0 github.com/yk-knight/my-toast,num_dependents_deps.dev:0 github.com/yk/tensorflow-optimistic-restore-saver,Google github.com/yk133/go-grafana-api,num_dependents_deps.dev:0 +github.com/yk14sec/helloworld-actions, github.com/ykadosh/truchet.js,num_dependents_deps.dev:0 github.com/ykaiboussi/flan_neo4j,num_dependents_deps.dev:0 github.com/ykaiboussi/mfa_aws_cli_setup,num_dependents_deps.dev:0 @@ -1226988,7 +1248785,9 @@ github.com/yknl/instascrape,num_dependents_deps.dev:0 github.com/yknx4/activesupport.js,num_dependents_deps.dev:0 github.com/yknx4/async-iterators,num_dependents_deps.dev:0 github.com/yknx4/axios-api,num_dependents_deps.dev:0 +github.com/yknx4/generate-authorized-keys-from-github-teams, github.com/yknx4/geojson-zone-detector,num_dependents_deps.dev:0 +github.com/yknx4/hash-calculator-action, github.com/yknx4/node-unfluff,num_dependents_deps.dev:0 github.com/yknx4/tictactoe_core,num_dependents_deps.dev:0 github.com/yknx4/tictactoe_terminal,num_dependents_deps.dev:0 @@ -1227009,6 +1248808,7 @@ github.com/ykonomi/procon-gardener,num_dependents_deps.dev:0 github.com/ykostiv/v23,num_dependents_deps.dev:0 github.com/ykpythemind/firebase_auth_ruby,num_dependents_deps.dev:0 github.com/ykpythemind/pretty_seconds,num_dependents_deps.dev:0 +github.com/ykpythemind/run_prettier_action, github.com/ykrank/AndroidAutoDispose,num_dependents_deps.dev:0 github.com/ykrank/AndroidLifeCycle,num_dependents_deps.dev:0 github.com/ykrapiva/android-eventmap-library,num_dependents_deps.dev:0 @@ -1227043,6 +1248843,7 @@ github.com/ykukharskyi/react-window-size,num_dependents_deps.dev:0 github.com/ykulinichenko/swagger-ui-express,num_dependents_deps.dev:0 github.com/ykushev/geo-time-getter,num_dependents_deps.dev:0 github.com/ykvch/testforeman, +github.com/ykxVK8yL5L/add-to-web3, github.com/ykyh1214/gadwords,num_dependents_deps.dev:0 github.com/ykyk1218/unified_hyphen_js,num_dependents_deps.dev:0 github.com/ykyuen/lego,num_dependents_deps.dev:0 @@ -1227109,9 +1248910,12 @@ github.com/yleclanche/react-navigation-bar,num_dependents_deps.dev:0 github.com/yleen/go-chat,num_dependents_deps.dev:0 github.com/ylegat/uncheck,num_dependents_deps.dev:0 github.com/ylegoc/evl,num_dependents_deps.dev:0 +github.com/ylehilds/podcast-generator, github.com/ylemkimon/KaTeX,num_dependents_deps.dev:0 +github.com/ylemkimon/cache-restore, github.com/ylemkimon/eslint-plugin-actions,num_dependents_deps.dev:0 github.com/ylemkimon/eslint-plugin-transform-runtime-aliasing,num_dependents_deps.dev:0 +github.com/ylemkimon/labeler, github.com/yleo77/grunt-task-loader,num_dependents_deps.dev:0 github.com/yleo77/gulp-incbuild,num_dependents_deps.dev:0 github.com/yleo77/incrementify,num_dependents_deps.dev:0 @@ -1227198,6 +1249002,8 @@ github.com/ylxb23/zerorpc,num_dependents_deps.dev:0 github.com/ylxdzsw/nattoppet,num_dependents_deps.dev:0 github.com/ylxdzsw/ymd.js,num_dependents_deps.dev:0 github.com/ylxy123/acfun-get, +github.com/yly24/ali-oss-utils, +github.com/yly24/s3-action, github.com/ylywyn/errors,num_dependents_deps.dev:0 github.com/ylyxf/jsp-player,num_dependents_deps.dev:0 github.com/ylyxf/stone,num_dependents_deps.dev:0 @@ -1227261,6 +1249067,7 @@ github.com/ymcvalu/goid,num_dependents_deps.dev:0 github.com/ymcvalu/leetcode,num_dependents_deps.dev:0 github.com/ymd45921/hexo-theme-ymd45921,num_dependents_deps.dev:0 github.com/ymdd1/mytweet,num_dependents_deps.dev:0 +github.com/ymde/vk-notifications, github.com/ymedaghri/genesis-month-picker,num_dependents_deps.dev:0 github.com/ymedaghri/genesis-popover,num_dependents_deps.dev:0 github.com/ymedlop/node-oc,num_dependents_deps.dev:0 @@ -1227310,6 +1249117,7 @@ github.com/ymjing/ring-der,num_dependents_deps.dev:0 github.com/ymjing/tabbyssl,num_dependents_deps.dev:0 github.com/ymkjp/random-script,num_dependents_deps.dev:0 github.com/ymknk/go-learning,num_dependents_deps.dev:0 +github.com/ymktmk/operate-k6-crd, github.com/ymkz/eslint-config,num_dependents_deps.dev:0 github.com/ymkz/opstats-go,num_dependents_deps.dev:0 github.com/ymkz/prettier-config,num_dependents_deps.dev:0 @@ -1227341,6 +1249149,7 @@ github.com/ymoch/pyjpmesh, github.com/ymoch/reltools, github.com/ymoch/yamlen, github.com/ymohl-cl/go-training,num_dependents_deps.dev:0 +github.com/ymohl-cl/go_sdl2_actionbuilder, github.com/ymohl-cl/golauncher-minecraft,num_dependents_deps.dev:0 github.com/ymolodyukov/test-project,num_dependents_deps.dev:0 github.com/ymoreiratiti/consultaNFE, @@ -1227388,6 +1249197,7 @@ github.com/ymuzikant/react-native-gateway-finder,num_dependents_deps.dev:0 github.com/ymwangel/progress-bar,num_dependents_deps.dev:0 github.com/ymwangel/ym-area,num_dependents_deps.dev:0 github.com/ymwangel/ym-lazy-load,num_dependents_deps.dev:0 +github.com/ymwymw/check-mixed-line-endings, github.com/ymx/socket.io-proxy,num_dependents_deps.dev:0 github.com/ymxiong/auth,num_dependents_deps.dev:0 github.com/ymxiong/easyfile,num_dependents_deps.dev:0 @@ -1227425,6 +1249235,7 @@ github.com/ymyzk/kawasemi, github.com/ymyzk/prom2bq,num_dependents_deps.dev:0 github.com/ymyzk/python-gyazo, github.com/ymyzk/python-gyazo-backup, +github.com/ymyzk/run-tox-gh-actions, github.com/ymyzk/sasm, github.com/ymyzk/tox-gh-actions, github.com/ymyzk/wsgi_lineprof, @@ -1227568,9 +1249379,14 @@ github.com/yn1323/tailwind-macro,num_dependents_deps.dev:0 github.com/ynab-design-system/base-theme,num_dependents_deps.dev:0 github.com/ynab-design-system/button,num_dependents_deps.dev:0 github.com/ynab/docscout,num_dependents_deps.dev:0 +github.com/ynab/heroku-review-app-action, github.com/ynab/hubot-github-adapter,num_dependents_deps.dev:0 github.com/ynab/hubot-github-webhook-listener,num_dependents_deps.dev:0 github.com/ynab/lightfoot,num_dependents_deps.dev:0 +github.com/ynab/pr-labeler-action, +github.com/ynab/slack-post-message-action, +github.com/ynab/system-info-action, +github.com/ynab/us-holiday-action, github.com/ynab/ynab-sdk-js, github.com/ynab/ynab-sdk-ruby,num_dependents_deps.dev:0 github.com/ynadji/dnstrie,num_dependents_deps.dev:0 @@ -1227667,6 +1249483,7 @@ github.com/ynigun/goami,num_dependents_deps.dev:0 github.com/ynigun/goesl,num_dependents_deps.dev:0 github.com/ynikitenko/lena, github.com/ynimjvc/ucli,num_dependents_deps.dev:0 +github.com/ynishi/github-actions-stack-docker-action, github.com/ynishi/vuecsv,num_dependents_deps.dev:0 github.com/ynizipli/All-Crypt,num_dependents_deps.dev:0 github.com/ynjgit/erpc-cmd,num_dependents_deps.dev:0 @@ -1227867,6 +1249684,7 @@ github.com/yoarch/zipf, github.com/yoava/node-linux-key-info, github.com/yoavabadi/operation, github.com/yoavabadi/pypelinerr, +github.com/yoavain/Setup-CSC, github.com/yoavain/create-windowless-app,num_dependents_deps.dev:0 github.com/yoavamit/smimesign,num_dependents_deps.dev:0 github.com/yoavaviram/python-amazon-simple-product-api, @@ -1228059,6 +1249877,7 @@ github.com/yoelcortes/colorpalette, github.com/yoelcortes/pipeml, github.com/yoelnacho/vue-components,num_dependents_deps.dev:0 github.com/yoelp/express-subdomain2path,num_dependents_deps.dev:0 +github.com/yoelsusanto/pr-labels-checker, github.com/yoeo/guesslang, github.com/yoeo/mod, github.com/yoeran/nodebb-plugin-topic-siblings,num_dependents_deps.dev:0 @@ -1228080,9 +1249899,11 @@ github.com/yofine/matchAnything,num_dependents_deps.dev:0 github.com/yofine/react-handsontable,num_dependents_deps.dev:0 github.com/yofr4nk/search-osm-batch,num_dependents_deps.dev:0 github.com/yofu/st,num_dependents_deps.dev:0 +github.com/yog27ray/action-http-cache, github.com/yog27ray/aop-express,num_dependents_deps.dev:0 github.com/yog27ray/exponential-backoff-retry,num_dependents_deps.dev:0 github.com/yog27ray/logger4node,num_dependents_deps.dev:0 +github.com/yog27ray/mongo-inmemory-action, github.com/yog27ray/mongoToParse,num_dependents_deps.dev:0 github.com/yog27ray/queue-manager,num_dependents_deps.dev:0 github.com/yog27ray/sqns,num_dependents_deps.dev:0 @@ -1228144,6 +1249965,8 @@ github.com/yogeshkumar05/react-table,num_dependents_deps.dev:0 github.com/yogeshkumar05/reactiframe,num_dependents_deps.dev:0 github.com/yogeshkumararora/mean_stack_play,num_dependents_deps.dev:0 github.com/yogeshkumarasamy/test-drawer,num_dependents_deps.dev:0 +github.com/yogeshlonkar/trivy-cache-action, +github.com/yogeshlonkar/wait-for-jobs, github.com/yogeshnarayanan/react-redux-amplitude,num_dependents_deps.dev:0 github.com/yogeshnile/fin-formula, github.com/yogeshnile/yogesh-nile-pypi, @@ -1228165,6 +1249988,8 @@ github.com/yogeshyadav108098/setup-my-server,num_dependents_deps.dev:0 github.com/yogeshyadav108098/uuid-logger,num_dependents_deps.dev:0 github.com/yogeshyadav108098/winston-slack-advanced,num_dependents_deps.dev:6 github.com/yogeswarant/mathsfunlib, +github.com/yogevbd/enforce-label-action, +github.com/yogevbd/pr-lint-action, github.com/yogevye/core-config,num_dependents_deps.dev:0 github.com/yogevye/core-logger,num_dependents_deps.dev:0 github.com/yogevye/hospital-sdk,num_dependents_deps.dev:0 @@ -1228193,6 +1250018,8 @@ github.com/yogo95/js-zrim-test-bootstrap,num_dependents_deps.dev:0 github.com/yogo95/js-zrim-utils,num_dependents_deps.dev:2 github.com/yogoTest/foo,num_dependents_deps.dev:0 github.com/yogoloth/eureka_tool,num_dependents_deps.dev:0 +github.com/yogonza524/ejs-action, +github.com/yogonza524/ejs-lint-action, github.com/yogonza524/emoji,num_dependents_deps.dev:0 github.com/yogonza524/peeta,num_dependents_deps.dev:0 github.com/yogonza524/pf-docs,num_dependents_deps.dev:0 @@ -1228204,6 +1250031,7 @@ github.com/yograterol/boupy, github.com/yograterol/flask-bundle-system, github.com/yograterol/zoort, github.com/yogsagot/qjsml,num_dependents_deps.dev:0 +github.com/yogstation13/DreamAnnotate, github.com/yogstation13/discord.js, github.com/yogthos/Selmer,criticality_score:0.533500 github.com/yogthos/doc-builder,num_dependents_deps.dev:0 @@ -1228264,6 +1250092,8 @@ github.com/yohannprigent/slack-file-downloader,num_dependents_deps.dev:0 github.com/yohaydy/auto-sizer,num_dependents_deps.dev:0 github.com/yohayg/tomcat-deployment-listener,num_dependents_deps.dev:0 github.com/yoheiMune/grunt-compass-multiple, +github.com/yoheikikuta/sql-autoformat-action, +github.com/yoheimuta/action-protolint, github.com/yoheimuta/gii,num_dependents_deps.dev:0 github.com/yoheimuta/go-from-gist-to-issue,num_dependents_deps.dev:0 github.com/yoheimuta/go-protoparser,num_dependents_deps.dev:1 @@ -1228307,6 +1250137,7 @@ github.com/yoichii/nashpobench2api, github.com/yoichiro-manabe/blink1_rspec3_formatter,num_dependents_deps.dev:0 github.com/yoichiro/actions-tools,num_dependents_deps.dev:0 github.com/yoichiro/generator-action,num_dependents_deps.dev:0 +github.com/yoichiro/gh-action-increment-value, github.com/yoichiro/oauth2-firebase,num_dependents_deps.dev:0 github.com/yoichiro/oauth2-nodejs,num_dependents_deps.dev:0 github.com/yoidea/eslint-plugin-shitsurei,num_dependents_deps.dev:0 @@ -1228334,6 +1250165,9 @@ github.com/yojona/tempus.py, github.com/yokabori/iosnp,num_dependents_deps.dev:0 github.com/yokaiio/yokai_server,num_dependents_deps.dev:0 github.com/yokawasa/TwitterEventHubFeed, +github.com/yokawasa/action-setup-ecctl, +github.com/yokawasa/action-setup-kube-tools, +github.com/yokawasa/action-sqlcheck, github.com/yokawasa/awsping,num_dependents_deps.dev:0 github.com/yokawasa/azping,num_dependents_deps.dev:0 github.com/yokawasa/azure-log-analytics-data-collector-python, @@ -1228454,6 +1250288,7 @@ github.com/yolo2013/o-image-process,num_dependents_deps.dev:0 github.com/yolo2013/tinify-image,num_dependents_deps.dev:0 github.com/yolo62442/conveyor,num_dependents_deps.dev:0 github.com/yoloDu14/repo-react,num_dependents_deps.dev:0 +github.com/yolocs/pasarif, github.com/yolocs/rundemo,num_dependents_deps.dev:0 github.com/yolodev/simple-scripts,num_dependents_deps.dev:0 github.com/yoloho/enhanced-common,num_dependents_deps.dev:4 @@ -1228653,6 +1250488,7 @@ github.com/yongjhih/rx-facebook.js,num_dependents_deps.dev:0 github.com/yongjhih/rx-github,num_dependents_deps.dev:0 github.com/yongjhih/rx-twitch.js, github.com/yongjhih/squery,num_dependents_deps.dev:0 +github.com/yongjiajie/notion-burndown, github.com/yongjian-h/anydoor,num_dependents_deps.dev:0 github.com/yongjian-h/crawler,num_dependents_deps.dev:0 github.com/yongjiapro/dubbo-go,num_dependents_deps.dev:0 @@ -1228662,6 +1250498,7 @@ github.com/yongjie0203/go-universal,num_dependents_deps.dev:0 github.com/yongjik/croquis, github.com/yongjincho/torchext, github.com/yongjiu8/freemarker-excel,num_dependents_deps.dev:0 +github.com/yongjulejule/TIL-github-action, github.com/yongjun21/fishnet,num_dependents_deps.dev:0 github.com/yongjun21/hextile,num_dependents_deps.dev:0 github.com/yongjun21/loess, @@ -1228671,6 +1250508,7 @@ github.com/yongjun21/sg-heatmap,num_dependents_deps.dev:0 github.com/yongjun21/st-scrolly,num_dependents_deps.dev:0 github.com/yongjun21/vue-graphics,num_dependents_deps.dev:0 github.com/yongliang-huang/cordova-plugin-foxitrdk,num_dependents_deps.dev:0 +github.com/yongmams/load-inputs-from-flie-action, github.com/yongplus/unity,num_dependents_deps.dev:0 github.com/yongqianvip/RNCountDown,num_dependents_deps.dev:0 github.com/yongqianvip/react-native-overlayer,num_dependents_deps.dev:0 @@ -1228680,6 +1250518,7 @@ github.com/yongs2/golang-exercise,num_dependents_deps.dev:0 github.com/yongshengli/gopher-lua-libs,num_dependents_deps.dev:0 github.com/yongsoo/fidor-sync,num_dependents_deps.dev:0 github.com/yongsoo/gateway-client,num_dependents_deps.dev:0 +github.com/yongsub/issue-to-shortcut-story, github.com/yongtang/clamav.js,num_dependents_deps.dev:0 github.com/yongtang/hadoop-xz,num_dependents_deps.dev:0 github.com/yongtenglei/datastructuregoversion,num_dependents_deps.dev:0 @@ -1228692,6 +1250531,7 @@ github.com/yongxing510/v-echarts,num_dependents_deps.dev:0 github.com/yongxinyuan/sprite-generator-windows,num_dependents_deps.dev:0 github.com/yongxinz/gopher,num_dependents_deps.dev:0 github.com/yongxu/react-DnR,num_dependents_deps.dev:0 +github.com/yongyan-gh/ansible-lint-action, github.com/yongyangwu/react-family-components,num_dependents_deps.dev:0 github.com/yongyi520/bitmex-node-api,num_dependents_deps.dev:0 github.com/yongyuit/go-stu,num_dependents_deps.dev:0 @@ -1228782,6 +1250622,7 @@ github.com/yonui/yonui-ncc,num_dependents_deps.dev:0 github.com/yonui/yonui-template, github.com/yonui/yonui-ys,num_dependents_deps.dev:0 github.com/yonycalsin/cregex, +github.com/yonycalsin/deploy-simple-to-heroku, github.com/yonycalsin/dotenv-cloack, github.com/yonycalsin/is-all-utils, github.com/yonycalsin/nestjs-crud-sequelize, @@ -1228972,6 +1250813,8 @@ github.com/yorickvP/node-chainseq,num_dependents_deps.dev:0 github.com/yorickvP/node-protoparse,num_dependents_deps.dev:0 github.com/yorickvP/node-scgi-client,num_dependents_deps.dev:0 github.com/yorickvP/node-scgi-server,num_dependents_deps.dev:0 +github.com/yorifuji/flutter-analyze-commenter, +github.com/yorifuji/next-latest-release, github.com/yoriiis/before-after.js,num_dependents_deps.dev:0 github.com/yoriiis/chunks-webpack-plugin,num_dependents_deps.dev:0 github.com/yoriiis/create-videojs-player,num_dependents_deps.dev:0 @@ -1229170,6 +1251013,7 @@ github.com/yoshhiide/time-range,num_dependents_deps.dev:0 github.com/yoshi-exeler/chesslib,num_dependents_deps.dev:0 github.com/yoshi1318/golang,num_dependents_deps.dev:0 github.com/yoshi3/cursor-parallax, +github.com/yoshi389111/github-profile-3d-contrib, github.com/yoshi389111/go-mkqrcode,num_dependents_deps.dev:0 github.com/yoshi61/vue-icon-switch-button,num_dependents_deps.dev:0 github.com/yoshida-eth0/ruby-audio_stream,num_dependents_deps.dev:0 @@ -1229267,6 +1251111,7 @@ github.com/yoshrote/valid_model, github.com/yoshtec/catplist, github.com/yoshtec/krummstiel, github.com/yoshtec/lesezeichen, +github.com/yoshuaandrean/universal-apk, github.com/yoshualopez/athenapdf,num_dependents_deps.dev:0 github.com/yoshuawuyts/array-invert,num_dependents_deps.dev:0 github.com/yoshuawuyts/assert-html,num_dependents_deps.dev:0 @@ -1229599,6 +1251444,7 @@ github.com/yosshy/oscurl, github.com/yosshy/pynats2, github.com/yosshy/python-yakumo, github.com/yosshy/sqlalchemy-sugar, +github.com/yossi-asher/evotech-bot, github.com/yossiee/97programmerbot,num_dependents_deps.dev:0 github.com/yossiee/til,num_dependents_deps.dev:0 github.com/yossiee/yossiee,num_dependents_deps.dev:0 @@ -1229813,6 +1251659,8 @@ github.com/you54f/msw-pact,num_dependents_deps.dev:0 github.com/you54f/slack-mock-typed,num_dependents_deps.dev:0 github.com/youLookLikeDelicious/animate,num_dependents_deps.dev:0 github.com/youLookLikeDelicious/vue-umeditor,num_dependents_deps.dev:0 +github.com/youappz/action, +github.com/youaredev123/kubectl_helm_action, github.com/youarenotdefined/localchecker,num_dependents_deps.dev:0 github.com/youaresoroman/cf-workers-pinata-api,num_dependents_deps.dev:0 github.com/youaresoroman/react-ipfs,num_dependents_deps.dev:0 @@ -1229962,6 +1251810,7 @@ github.com/youluna/sassaby,num_dependents_deps.dev:0 github.com/youmeb-lab/sima,num_dependents_deps.dev:0 github.com/youmeb/yougulp,num_dependents_deps.dev:0 github.com/youmee/certcheck, +github.com/youmengme/upload-lafyun, github.com/youmesdk/YoumeIMCordovaPlugin,num_dependents_deps.dev:0 github.com/youmesoft/angular2-ui-switch,num_dependents_deps.dev:0 github.com/youmun/golang-study,num_dependents_deps.dev:0 @@ -1230020,6 +1251869,7 @@ github.com/youngcapital/yc-linter, github.com/youngce/config4s,num_dependents_deps.dev:0 github.com/youngchan1988/gocommon,num_dependents_deps.dev:0 github.com/youngchanpark/testmynb, +github.com/youngcheol-son/hello-ga-1, github.com/youngchingjui/pyoutline, github.com/youngchou1997/dudu-editor,num_dependents_deps.dev:0 github.com/youngclean/grunt-simple-underscore-compiler,num_dependents_deps.dev:0 @@ -1230059,6 +1251909,8 @@ github.com/youngershen/easy-captcha, github.com/youngershen/easy-wechat, github.com/youngershen/playwork, github.com/youngfox/lets-go,num_dependents_deps.dev:0 +github.com/youngfreeFJS/action-demo, +github.com/youngfreeFJS/setup-appium, github.com/younggeeks/typed-styles,num_dependents_deps.dev:0 github.com/younghyuk/go-designpattern,num_dependents_deps.dev:0 github.com/younghyuk/goutiltest,num_dependents_deps.dev:0 @@ -1230200,6 +1252052,9 @@ github.com/younho9/design-system,num_dependents_deps.dev:0 github.com/younho9/narkdown, github.com/youniquellc/auth-sdk,num_dependents_deps.dev:0 github.com/younisamedi/go,num_dependents_deps.dev:0 +github.com/younited/detect-branch-changes-action, +github.com/younited/get-previous-tag-action, +github.com/younited/nomad-logs-action, github.com/youniuben/test,num_dependents_deps.dev:0 github.com/youniverse-center/ecsjs, github.com/youniverse-center/yac-client-js,num_dependents_deps.dev:0 @@ -1230281,6 +1252136,7 @@ github.com/youraccount/foolib, github.com/youran0715/balancers,num_dependents_deps.dev:0 github.com/youranjianmuchang/gulu,num_dependents_deps.dev:0 github.com/yourbase/homebrew-yourbase,num_dependents_deps.dev:0 +github.com/yourbase/install-yb-action, github.com/yourbase/yb,num_dependents_deps.dev:0 github.com/yourbasic/graph,num_dependents_deps.dev:9 github.com/yourbrainrun/test_go,num_dependents_deps.dev:0 @@ -1230472,6 +1252328,7 @@ github.com/youssefwilliam/go-lang-basics,num_dependents_deps.dev:0 github.com/youssmak/cordova-plugin-ionic-webview-openblank,num_dependents_deps.dev:0 github.com/youssof707/touchpoint-ui,num_dependents_deps.dev:0 github.com/youssseeef/auto-complete,num_dependents_deps.dev:0 +github.com/yousufkalim/eslint-action, github.com/yousung/neis-school-list,num_dependents_deps.dev:0 github.com/youszef/brigitte,num_dependents_deps.dev:0 github.com/youszef/brigitte-py, @@ -1230564,6 +1252421,7 @@ github.com/youxiachai/osctranscrawler,num_dependents_deps.dev:0 github.com/youxiachai/popularcrypto,num_dependents_deps.dev:4 github.com/youxiajinglin/skyeye-sdk-go,num_dependents_deps.dev:0 github.com/youxikaifa/finance, +github.com/youxingz/sshpass-scp-action, github.com/youxkei/tts,num_dependents_deps.dev:0 github.com/youya66/white-rabbit-watch,num_dependents_deps.dev:0 github.com/youyan0704/py_gerrit, @@ -1230574,8 +1252432,12 @@ github.com/youyi2020/tg-base,num_dependents_deps.dev:0 github.com/youyinnn/electron-nice-auto-reload,num_dependents_deps.dev:0 github.com/youyiqin/array_suffle,num_dependents_deps.dev:0 github.com/youyitian123/guluUi,num_dependents_deps.dev:0 +github.com/youyo/aws-cdk-github-actions, +github.com/youyo/aws-sam-action, +github.com/youyo/awscredswrap, github.com/youyo/awssh,num_dependents_deps.dev:0 github.com/youyo/battery_growl,num_dependents_deps.dev:0 +github.com/youyo/sync-up-to-codecommit-action, github.com/youyongsong/uam, github.com/youyou12344/vue-h5,num_dependents_deps.dev:0 github.com/youyoubilly/pantilt, @@ -1230827,6 +1252689,7 @@ github.com/ypetya/react-perfcascade,num_dependents_deps.dev:0 github.com/ypetya/setup-wacom,num_dependents_deps.dev:0 github.com/ypetya/stomp.chat,num_dependents_deps.dev:0 github.com/ypetya/stompbroker,num_dependents_deps.dev:0 +github.com/ypicard/get-branch-name-github-action, github.com/ypid/hlc, github.com/ypid/opening_hours.js,num_dependents_deps.dev:0 github.com/ypid/yaml4rst, @@ -1231034,6 +1252897,7 @@ github.com/yrong/node-ldapauth-fork, github.com/yrosseel/lavaan,criticality_score:0.429810 github.com/yrp604/bad64,num_dependents_deps.dev:0 github.com/yrp604/bad64-sys,num_dependents_deps.dev:0 +github.com/yrpang/github-actions-hexo, github.com/yrq110/RizuUI,num_dependents_deps.dev:0 github.com/yrq110/rizurin,num_dependents_deps.dev:0 github.com/yrrodriguezb/CLI-Twitter,num_dependents_deps.dev:0 @@ -1231050,6 +1252914,7 @@ github.com/yryz/mkcert,num_dependents_deps.dev:0 github.com/ys-0-sy/ys-0-sy,num_dependents_deps.dev:0 github.com/ys-hkwong/grid,num_dependents_deps.dev:0 github.com/ys-nuem/rust-gurobi,num_dependents_deps.dev:0 +github.com/ys-ramkumar/secret-server-workflow-action, github.com/ys-sa/go,num_dependents_deps.dev:0 github.com/ys-tydy/tf_cop, github.com/ys-yancy/transferToCmd,num_dependents_deps.dev:0 @@ -1231153,6 +1253018,7 @@ github.com/ysf/anewer,num_dependents_deps.dev:0 github.com/ysfada/chat-app,num_dependents_deps.dev:0 github.com/ysfaran/react-fluent-form,num_dependents_deps.dev:0 github.com/ysfchn/adbx, +github.com/ysfchn/appinventor-aix-action, github.com/ysfchn/pyconduit, github.com/ysfgrlu/ngx-datatable,num_dependents_deps.dev:0 github.com/ysfkj/generator-ng2gen,num_dependents_deps.dev:0 @@ -1231193,6 +1253059,7 @@ github.com/yshryk/igo-wasm-demo,num_dependents_deps.dev:0 github.com/yshterev/videojs-resize,num_dependents_deps.dev:0 github.com/yshtou/vue-sihan,num_dependents_deps.dev:0 github.com/yshua5631/go-practice,num_dependents_deps.dev:0 +github.com/yshui/git-clang-format-lint, github.com/yshui/picom,criticality_score:0.585010 github.com/yshui/projection,num_dependents_deps.dev:0 github.com/yshui/wimp,num_dependents_deps.dev:0 @@ -1231243,6 +1253110,7 @@ github.com/ysk2014/node-flow-vue-ssr-middleware,num_dependents_deps.dev:0 github.com/ysk2014/npm-install-webpack3-plugin,num_dependents_deps.dev:0 github.com/ysk2014/npm-install-webpack4-plugin,num_dependents_deps.dev:0 github.com/ysk2014/xterm-theme,num_dependents_deps.dev:0 +github.com/ysk8hori/delta-typescript-graph-action, github.com/yskim621/test,num_dependents_deps.dev:0 github.com/yskit/ys-agent-service,num_dependents_deps.dev:0 github.com/yskit/ys-class, @@ -1231426,6 +1253294,7 @@ github.com/ystv/web-auth,num_dependents_deps.dev:0 github.com/ystxdong/hotdog_cli,num_dependents_deps.dev:0 github.com/ystyle/autoss-go,num_dependents_deps.dev:0 github.com/ystyle/go-epub,num_dependents_deps.dev:0 +github.com/ystyle/hwcdn-cache, github.com/ystyle/kaf-cli,num_dependents_deps.dev:0 github.com/ystyle/sqlmanager,num_dependents_deps.dev:0 github.com/ystyle/tmdtextepub,num_dependents_deps.dev:0 @@ -1231678,8 +1253547,13 @@ github.com/yu-ichiro/ex-tools, github.com/yu-ichiro/git-id, github.com/yu-ichiro/logged.js, github.com/yu-ichiro/logging-ts,num_dependents_deps.dev:0 +github.com/yu-ichiro/spin-up-docker-compose-action, github.com/yu-ichiro/sqlalchemy_bundle_model, +github.com/yu-iskw/action-sqlfluff, +github.com/yu-iskw/action-terrascan, github.com/yu-iskw/dbt-artifacts-parser, +github.com/yu-iskw/gpt-code-review-action, +github.com/yu-iskw/merged-pr-info-action, github.com/yu-kgr/yu-kgr,num_dependents_deps.dev:0 github.com/yu-liang-kono/imgutil, github.com/yu-nakagawa/go_devcontainer,num_dependents_deps.dev:0 @@ -1231826,6 +1253700,8 @@ github.com/yuanhoujun/simplemde-markdown-editor,num_dependents_deps.dev:0 github.com/yuanhua9/cli, github.com/yuanjiaqing1/yuanjiaqing, github.com/yuanjie007/vue-tree,num_dependents_deps.dev:0 +github.com/yuanjinsongquyi/action_android_build, +github.com/yuanjinsongquyi/android_build_debug, github.com/yuanjun-93/learn_git,num_dependents_deps.dev:0 github.com/yuanjunliang/bignumber.js-ext,num_dependents_deps.dev:0 github.com/yuanjunliang/blockchain-crypto,num_dependents_deps.dev:0 @@ -1232013,6 +1253889,7 @@ github.com/yuanwen0327/mpvue-wxParse,num_dependents_deps.dev:0 github.com/yuanwen0327/vue-touch-feedback-plugin,num_dependents_deps.dev:0 github.com/yuanwenfei/yhk-react-native-base-comm,num_dependents_deps.dev:0 github.com/yuanwowo/cordova-save-to-photoalbum,num_dependents_deps.dev:0 +github.com/yuanx749/auto-sphinx-page-action, github.com/yuanx749/config-argument-parser, github.com/yuanxiaosi/node-express-logger,num_dependents_deps.dev:0 github.com/yuanxiaosi/x1-scale,num_dependents_deps.dev:0 @@ -1232178,6 +1254055,7 @@ github.com/yucc2018/yucctools, github.com/yucccc/border-1px,num_dependents_deps.dev:0 github.com/yucccc/react-zoomImg,num_dependents_deps.dev:0 github.com/yucccc/vue-pay-keyboard,num_dependents_deps.dev:10 +github.com/yucchiy/notion-to-markdown, github.com/yuce/hazelcast-go-client,num_dependents_deps.dev:0 github.com/yuce/js-pilosa,num_dependents_deps.dev:0 github.com/yuce/pyswip,criticality_score:0.390050 @@ -1232545,6 +1254423,8 @@ github.com/yuezk/filter-gradient,num_dependents_deps.dev:14 github.com/yuezk/postcss-filter-gradient,num_dependents_deps.dev:4 github.com/yuezk/postcss-urlrev,num_dependents_deps.dev:0 github.com/yuezk/protractor-jasmine-retry,num_dependents_deps.dev:0 +github.com/yuezk/publish-obs-package, +github.com/yuezk/publish-ppa-package, github.com/yuezm/egg-helper, github.com/yuezm/filesreader,num_dependents_deps.dev:0 github.com/yuezm/rm,num_dependents_deps.dev:0 @@ -1232600,6 +1254480,7 @@ github.com/yugabyte/yugabyte-db,criticality_score:0.668850 github.com/yugabyte/yugabyte-k8s-operator,num_dependents_deps.dev:0 github.com/yugabyte/yugabyte_pycommon, github.com/yugako/react-native-searchable-picker,num_dependents_deps.dev:0 +github.com/yugalarora/build-jenkins-job, github.com/yugame/momiwpi,num_dependents_deps.dev:0 github.com/yugant007/advanced-golang-concurrency,num_dependents_deps.dev:0 github.com/yugaraxy/go-samples,num_dependents_deps.dev:0 @@ -1232718,6 +1254599,7 @@ github.com/yuhui1208/crust-storage-tool,num_dependents_deps.dev:0 github.com/yuhui19/capstone,num_dependents_deps.dev:0 github.com/yuhuinc/yuhui,num_dependents_deps.dev:0 github.com/yuhushangwei/goconsole,num_dependents_deps.dev:0 +github.com/yui-Kitamura/commit, github.com/yui/2in3,num_dependents_deps.dev:0 github.com/yui/grover,num_dependents_deps.dev:0 github.com/yui/grunt-yui-contrib,num_dependents_deps.dev:0 @@ -1232737,6 +1254619,7 @@ github.com/yui/yuitest,num_dependents_deps.dev:19 github.com/yui540/hyper-akari,num_dependents_deps.dev:0 github.com/yui540/hyper-sana,num_dependents_deps.dev:0 github.com/yui540/react-message-modal,num_dependents_deps.dev:0 +github.com/yui666a/hello-world-javascript-action, github.com/yuiant/omeganlp, github.com/yuicer/vue-toast,num_dependents_deps.dev:0 github.com/yuicer/vuepress-theme-yuicer,num_dependents_deps.dev:0 @@ -1232751,6 +1254634,8 @@ github.com/yuichi-tanaka/timebank.js,num_dependents_deps.dev:0 github.com/yuichi10/sd-cmd,num_dependents_deps.dev:0 github.com/yuichi1004/docgen,num_dependents_deps.dev:0 github.com/yuichi1004/kanc, +github.com/yuichielectric/danger-textlint-actions, +github.com/yuichielectric/dive-action, github.com/yuichiro-h/ls-ec2,num_dependents_deps.dev:0 github.com/yuichiro12/envelope,num_dependents_deps.dev:0 github.com/yuichiroharai/Useragnt,num_dependents_deps.dev:0 @@ -1232787,6 +1254672,7 @@ github.com/yuis-ice/notification-cli, github.com/yuiseki/animeface-2009,num_dependents_deps.dev:0 github.com/yuiseki/detect-categories-ja,num_dependents_deps.dev:0 github.com/yuiseki/detect-location-jp,num_dependents_deps.dev:0 +github.com/yuiseki/issue-triage-action, github.com/yuitest/dicttokv, github.com/yuitest/node-imagemagick-cache, github.com/yuitest/twitterxauth, @@ -1232899,6 +1254785,7 @@ github.com/yujunz/argo-cd,num_dependents_deps.dev:0 github.com/yujunz/argoproj-pkg,num_dependents_deps.dev:0 github.com/yujunz/helmfile,num_dependents_deps.dev:0 github.com/yujunz/listql, +github.com/yuk1ty/conventional-release-note, github.com/yuk1ty/statemachine-rs,num_dependents_deps.dev:0 github.com/yuk7/ArchWSL,criticality_score:0.375390 github.com/yuk7/wsldl,criticality_score:0.385920 @@ -1232945,6 +1254832,7 @@ github.com/yuki070/qiankun-redux, github.com/yuki0920/company_board,num_dependents_deps.dev:0 github.com/yuki0920/isucon7-qualify-20200726,num_dependents_deps.dev:0 github.com/yuki0920/isucon7q-2020802,num_dependents_deps.dev:0 +github.com/yuki0n0/action-appstoreconnect-token, github.com/yuki2006/mark6,num_dependents_deps.dev:0 github.com/yuki216/repo-lib,num_dependents_deps.dev:0 github.com/yuki23329626/bn256,num_dependents_deps.dev:0 @@ -1232959,7 +1254847,10 @@ github.com/yukiamanai/go-practice,num_dependents_deps.dev:0 github.com/yukiamanai/goapp,num_dependents_deps.dev:0 github.com/yukiamanai/golang_server,num_dependents_deps.dev:0 github.com/yukiarrr/ecsk,num_dependents_deps.dev:0 +github.com/yukiarrr/ios-build-action, +github.com/yukiarrr/unity-build-action, github.com/yukihase/gohelloworld,num_dependents_deps.dev:0 +github.com/yukihiko-shinoda/action-deploy-wordpress-plugin, github.com/yukihiko-shinoda/asynccpu, github.com/yukihiko-shinoda/asyncffmpeg, github.com/yukihiko-shinoda/error-collector, @@ -1233005,6 +1254896,7 @@ github.com/yukimiyatake/gosick,num_dependents_deps.dev:0 github.com/yukimochi/activity-relay,num_dependents_deps.dev:0 github.com/yukimura1227/jobcan_do_it,num_dependents_deps.dev:0 github.com/yukimura45z/pagerank-ts,num_dependents_deps.dev:0 +github.com/yukin01/slack-bot-action, github.com/yukinagae/dmm4js,num_dependents_deps.dev:0 github.com/yukinagae/nameko-design, github.com/yukinagae/qiita4js,num_dependents_deps.dev:0 @@ -1233060,6 +1254952,7 @@ github.com/yuku-t/undate,num_dependents_deps.dev:20 github.com/yuku/textcomplete,"criticality_score:0.422880,num_dependents_deps.dev:2" github.com/yuku/textoverlay, github.com/yuku/undate,num_dependents_deps.dev:0 +github.com/yukukotani/fastly-purge-action, github.com/yukuku/ambilwarna,num_dependents_deps.dev:0 github.com/yukulele/Vector.js,num_dependents_deps.dev:0 github.com/yukunchen113/disentangle, @@ -1233173,7 +1255066,14 @@ github.com/yume-chan/socks5-server,num_dependents_deps.dev:0 github.com/yume-chan/typescript-package-scaffold,num_dependents_deps.dev:0 github.com/yume-chan/ya-webadb,num_dependents_deps.dev:2 github.com/yumeiqiang/egg-delayed-queue, +github.com/yumemi-inc/changed-files, +github.com/yumemi-inc/clean-cache-action, +github.com/yumemi-inc/comment-pull-request, +github.com/yumemi-inc/environment-variables-action, +github.com/yumemi-inc/gradle-dependency-diff-report, +github.com/yumemi-inc/path-filter, github.com/yumemi-inc/statictrace,num_dependents_deps.dev:0 +github.com/yumemi-inc/update-ecs-task-definition-action, github.com/yumemor/cordova-plugin-alipay,num_dependents_deps.dev:0 github.com/yumemor/cordova-plugin-qiniu,num_dependents_deps.dev:0 github.com/yumeng-zhang233/around-back-end,num_dependents_deps.dev:0 @@ -1233190,6 +1255090,7 @@ github.com/yumetodo/verifiable-file-read-all-cache,num_dependents_deps.dev:0 github.com/yumike/django-formsetfield, github.com/yumike/pointhq, github.com/yuminjustin/spotlight-cli,num_dependents_deps.dev:0 +github.com/yumis-coconudge/clean-workspace-action, github.com/yumitsu/js-regenerate,num_dependents_deps.dev:0 github.com/yumitsu/string.js,num_dependents_deps.dev:0 github.com/yummies/babel-plugin-yummies,num_dependents_deps.dev:0 @@ -1233554,6 +1255455,7 @@ github.com/yunussandikci/go-pure-api,num_dependents_deps.dev:0 github.com/yunussandikci/hazelcast-cloud-sdk-go,num_dependents_deps.dev:0 github.com/yunussw15/assesment-test,num_dependents_deps.dev:0 github.com/yunware/oc-mux-demux,num_dependents_deps.dev:0 +github.com/yunwei37/OpenAI-Continuous-Translator, github.com/yunwei37/blockchain-rust,num_dependents_deps.dev:0 github.com/yunx/jadi-justAnotherDependencyInjection,num_dependents_deps.dev:0 github.com/yunx/jadiTest,num_dependents_deps.dev:0 @@ -1233623,6 +1255525,7 @@ github.com/yupmin/js-package-sample,num_dependents_deps.dev:0 github.com/yuppity/unifi-video-api, github.com/yupswing/akifox-asynchttp,num_dependents_deps.dev:0 github.com/yupwei68/terraform-provider-azurerm,num_dependents_deps.dev:0 +github.com/yupyvovarov/terragrunt-github-actions, github.com/yupzip/yupzip-json,num_dependents_deps.dev:0 github.com/yuqcheng/scBalance, github.com/yuqiangcn/odt,num_dependents_deps.dev:0 @@ -1233649,6 +1255552,8 @@ github.com/yuraantonov11/angular-bootstrap-toggle-switch,num_dependents_deps.dev github.com/yuraantonov11/node-restify-validation,num_dependents_deps.dev:0 github.com/yuraji/minimal-express-gulp-backbone-marionette-jade,num_dependents_deps.dev:0 github.com/yuraji/simple-country-list,num_dependents_deps.dev:0 +github.com/yuraku/xunit-slack-reporter, +github.com/yurakurets/action-release-debugapk, github.com/yurakurets/react-native-web-jsonschema-form,num_dependents_deps.dev:0 github.com/yuranevmer/loopback-filter-by-reations-mixin,num_dependents_deps.dev:0 github.com/yuranevmer/loopback-filter-by-relations-mixin, @@ -1233766,6 +1255671,7 @@ github.com/yurijmi/omniauth-telegram,num_dependents_deps.dev:0 github.com/yurikoex/cinematic-system,num_dependents_deps.dev:0 github.com/yurikoval/git_fetcher,num_dependents_deps.dev:0 github.com/yurikoval/hey_i_am_over_here,num_dependents_deps.dev:0 +github.com/yurikoval/middleman-gh-pages-action, github.com/yurikrupnik/custom-react,num_dependents_deps.dev:0 github.com/yurikrupnik/express-mid,num_dependents_deps.dev:0 github.com/yurikrupnik/generator-babel,num_dependents_deps.dev:0 @@ -1233822,6 +1255728,7 @@ github.com/yurisi0212/getwebapi_golang,num_dependents_deps.dev:0 github.com/yurisi0212/jsonperser,num_dependents_deps.dev:0 github.com/yurisizuku/nodebb-plugin-onedrive,num_dependents_deps.dev:0 github.com/yurisizuku/nodebb-plugin-vimcn,num_dependents_deps.dev:0 +github.com/yurisouza/rancher-2x-actions, github.com/yurist-85/gosignit,num_dependents_deps.dev:0 github.com/yuristsepaniuk/jsonschema,num_dependents_deps.dev:0 github.com/yuriteixeira/grunt-google-cloud,num_dependents_deps.dev:0 @@ -1233892,6 +1255799,7 @@ github.com/yury-dymov/redux-oauth,num_dependents_deps.dev:0 github.com/yury-dymov/redux-object,num_dependents_deps.dev:2 github.com/yury-dymov/time-number,num_dependents_deps.dev:2 github.com/yury-dymov/tzname,num_dependents_deps.dev:0 +github.com/yury-imbro-ox/ox-gh-action-test, github.com/yury-kopyl/bemtools__gulp-bundle-js,num_dependents_deps.dev:0 github.com/yury-kopyl/bemtools__gulp-bundle-scss,num_dependents_deps.dev:0 github.com/yury-kopyl/bemtools__gulp-extract-html-class, @@ -1233925,6 +1255833,7 @@ github.com/yurytsoy/revonet,num_dependents_deps.dev:0 github.com/yurzs/smart_hashmap, github.com/yusadolat/noble-quran,num_dependents_deps.dev:0 github.com/yusame0308/go-hello-world,num_dependents_deps.dev:0 +github.com/yusancky/setup-typst, github.com/yusangeng/async-cast,num_dependents_deps.dev:0 github.com/yusangeng/atask,num_dependents_deps.dev:0 github.com/yusangeng/benny,num_dependents_deps.dev:0 @@ -1234077,6 +1255986,7 @@ github.com/yusufani/TurkishPreprocessor, github.com/yusufatalay/gitcrud,num_dependents_deps.dev:0 github.com/yusufatalay/go_prog_lang_book_followups,num_dependents_deps.dev:0 github.com/yusufaytas/dlock,num_dependents_deps.dev:6 +github.com/yusufbiberoglu/symfony-elasticsearch, github.com/yusufcanb/reactive-robot, github.com/yusufcmrt/ngx-translator,num_dependents_deps.dev:0 github.com/yusufcmrt/ngxs-ngrx-mirror-plugin,num_dependents_deps.dev:0 @@ -1234090,6 +1256000,7 @@ github.com/yusufoguntola/django-simple-log-viewer, github.com/yusufpapurcu/algorithms,num_dependents_deps.dev:0 github.com/yusufpapurcu/car-telemetry,num_dependents_deps.dev:0 github.com/yusufpapurcu/cpuid,num_dependents_deps.dev:0 +github.com/yusufpapurcu/go-license-checker, github.com/yusufpapurcu/seconds-for-new-year,num_dependents_deps.dev:0 github.com/yusufpapurcu/vhdx-parser,num_dependents_deps.dev:0 github.com/yusufsamsudeen/volcry,num_dependents_deps.dev:0 @@ -1234168,6 +1256079,7 @@ github.com/yuta0801/htm-chef,num_dependents_deps.dev:0 github.com/yuta0801/pak2,num_dependents_deps.dev:0 github.com/yuta0801/readfile-ignore-error,num_dependents_deps.dev:0 github.com/yuta0801/youtube-live-chat,num_dependents_deps.dev:0 +github.com/yuta1024/cards-moving-automation, github.com/yuta1402/diffcopy,num_dependents_deps.dev:0 github.com/yuta17/fireauth,num_dependents_deps.dev:0 github.com/yuta17/hassan,num_dependents_deps.dev:0 @@ -1234193,6 +1256105,11 @@ github.com/yutahaga/vuex-media-breakpoint-up,num_dependents_deps.dev:0 github.com/yutahaga/wp-vue-config,num_dependents_deps.dev:0 github.com/yutaiii/blog-sample-code,num_dependents_deps.dev:0 github.com/yutaiii/syu-kan-backend,num_dependents_deps.dev:0 +github.com/yutailang0119/action-android-lint, +github.com/yutailang0119/action-github-pr-release, +github.com/yutailang0119/action-ktlint, +github.com/yutailang0119/action-mackerel-api, +github.com/yutailang0119/action-textlint, github.com/yutaka-kabu/pandas-amazon-redshift, github.com/yutaka0m/markdown-hiko, github.com/yutakahashi114/go_nuxt_mysql,num_dependents_deps.dev:0 @@ -1234443,6 +1256360,7 @@ github.com/yuvipanda/pre-commit-hook-ensure-sops, github.com/yuvipanda/pyhp, github.com/yuvipanda/python-mwapi, github.com/yuvipanda/python-popularity-contest, +github.com/yuvipanda/repo2jupyterlite-action, github.com/yuvipanda/simpervisor, github.com/yuvipanda/simplest-notebook, github.com/yuvipatel/filter2DbQuery, @@ -1234522,16 +1256440,21 @@ github.com/yuxt2017/yxt-cli,num_dependents_deps.dev:0 github.com/yuxuan/jspkgtest,num_dependents_deps.dev:0 github.com/yuxuan1101/koa-mid-end,num_dependents_deps.dev:0 github.com/yuya-isaka/gift-example,num_dependents_deps.dev:0 +github.com/yuya-takeyama/auto-cancel-redundant-workflow-runs-action, github.com/yuya-takeyama/base64dec,num_dependents_deps.dev:0 github.com/yuya-takeyama/circleci-usage-prometheus,num_dependents_deps.dev:0 +github.com/yuya-takeyama/docker-tag-from-github-ref-action, github.com/yuya-takeyama/envjson,num_dependents_deps.dev:0 github.com/yuya-takeyama/flagship.js,num_dependents_deps.dev:0 +github.com/yuya-takeyama/github-actions-metrics-to-datadog-action, github.com/yuya-takeyama/github-actions-sandbox,num_dependents_deps.dev:0 github.com/yuya-takeyama/github-dependabot-prometheus,num_dependents_deps.dev:0 github.com/yuya-takeyama/guruguru-cache,num_dependents_deps.dev:0 github.com/yuya-takeyama/json2yaml,num_dependents_deps.dev:0 github.com/yuya-takeyama/ntimes,num_dependents_deps.dev:0 +github.com/yuya-takeyama/pick-random-member-action, github.com/yuya-takeyama/posixexec,num_dependents_deps.dev:0 +github.com/yuya-takeyama/replicate-docker-version-tag-action, github.com/yuya-takeyama/slackexec,num_dependents_deps.dev:0 github.com/yuya-takeyama/yaml2json,num_dependents_deps.dev:0 github.com/yuya008/bolt,num_dependents_deps.dev:0 @@ -1234600,6 +1256523,8 @@ github.com/yuying123/test-cli,num_dependents_deps.dev:0 github.com/yuyingwu/hexo-generator-index-plus,num_dependents_deps.dev:0 github.com/yuyingzhou66/blockchains,num_dependents_deps.dev:0 github.com/yuyingzhou66/caliper,num_dependents_deps.dev:0 +github.com/yuyinws/gitmand, +github.com/yuyinws/keylol-action, github.com/yuyitech/db,num_dependents_deps.dev:0 github.com/yuyojs/yuyo, github.com/yuyongkun/m5ui, @@ -1234646,8 +1256571,10 @@ github.com/yuzhigang33/base-convert,num_dependents_deps.dev:0 github.com/yuzhigang33/camel2snake,num_dependents_deps.dev:0 github.com/yuzhigang33/minlog,num_dependents_deps.dev:0 github.com/yuzhigang33/tail-n,num_dependents_deps.dev:0 +github.com/yuzhishuo/hexo-deploy-with-hook, github.com/yuzhiyi/react-native-buildconfig,num_dependents_deps.dev:0 github.com/yuzhiyi/react-native-tecent-bugly, +github.com/yuzhiyongcn/setup-maven, github.com/yuzhoudehua521/js-utils,num_dependents_deps.dev:0 github.com/yuzhounanhai/mini-store,num_dependents_deps.dev:0 github.com/yuzhounanhai/mini-uc,num_dependents_deps.dev:0 @@ -1234677,6 +1256604,7 @@ github.com/yuzuquats/pyboxprint, github.com/yuzutech/kroki,criticality_score:0.426020 github.com/yuzutech/kroki-go,num_dependents_deps.dev:0 github.com/yuzuy/firebase-idtoken-gen,num_dependents_deps.dev:0 +github.com/yuzuy/gha-tmpl, github.com/yuzuy/go-framework-newrelic,num_dependents_deps.dev:0 github.com/yuzuy/happi,num_dependents_deps.dev:0 github.com/yuzy/grunt-wr2conv,num_dependents_deps.dev:0 @@ -1234720,6 +1256648,7 @@ github.com/yvesago/parseacl,num_dependents_deps.dev:0 github.com/yvesandre-middleton/fancy-text-thingy,num_dependents_deps.dev:0 github.com/yvesauad/OrsayTrace, github.com/yvesdum/rscontainer,num_dependents_deps.dev:0 +github.com/yvesgurcan/deploy-lambda-function, github.com/yvesgurcan/midi-instrument-patches,num_dependents_deps.dev:0 github.com/yvesgurcan/midi-player,num_dependents_deps.dev:0 github.com/yvesgurcan/web-midi-player, @@ -1235043,11 +1256972,15 @@ github.com/yyhugh/wayto-web-cli,num_dependents_deps.dev:0 github.com/yyimen/ymlib,num_dependents_deps.dev:0 github.com/yyj66/packagedemo,num_dependents_deps.dev:0 github.com/yyjgit66/yyjzy,num_dependents_deps.dev:0 +github.com/yyjhao/asana-github-actions, +github.com/yyjhao/complete-asana-task-on-push, github.com/yyjhao/markmon,num_dependents_deps.dev:0 github.com/yyjinlong/osmo, github.com/yyjlaw/dir2tree, github.com/yyjlincoln/RequestMap, github.com/yyk222/object-difference-js,num_dependents_deps.dev:0 +github.com/yykamei/block-merge-based-on-time, +github.com/yykamei/merge-branches-managed-on-issue, github.com/yykamei/python-libldap, github.com/yykamei/rust-urlparse,num_dependents_deps.dev:7 github.com/yykamei/thwack,num_dependents_deps.dev:0 @@ -1235092,7 +1257025,9 @@ github.com/yyolk/lambda-sns-event-message,num_dependents_deps.dev:0 github.com/yyolk/linter-js-cloudformation-yaml,num_dependents_deps.dev:0 github.com/yyolk/node-ypp,num_dependents_deps.dev:0 github.com/yyolk/xrp-price-aggregate, +github.com/yyoshiki41/auto-merge-action, github.com/yyoshiki41/dmm-go-sdk,num_dependents_deps.dev:0 +github.com/yyoshiki41/ecs-run-task-action, github.com/yyoshiki41/go-radiko,num_dependents_deps.dev:1 github.com/yyoshiki41/m3u8,num_dependents_deps.dev:0 github.com/yyoshiki41/radigo,num_dependents_deps.dev:0 @@ -1235256,6 +1257191,7 @@ github.com/yz1311/teaset-code-push,num_dependents_deps.dev:0 github.com/yz1311/teaset-navigation,num_dependents_deps.dev:0 github.com/yz88/homebridge-dht-mqttpub,num_dependents_deps.dev:0 github.com/yz89122/dcard-2021-backend-intern-homework,num_dependents_deps.dev:0 +github.com/yzAlvin/action-yaml-front-matter, github.com/yzITI/cubev,num_dependents_deps.dev:0 github.com/yzarg/vue-color,num_dependents_deps.dev:0 github.com/yzaroui/mono-format, @@ -1235273,6 +1257209,7 @@ github.com/yzdann/sysdescrparser, github.com/yzecho/golang-github-actions-demo,num_dependents_deps.dev:0 github.com/yzen-dev/vue-dadata-suggestions,num_dependents_deps.dev:0 github.com/yzen-dev/vue-draggable,num_dependents_deps.dev:0 +github.com/yzernik/open-timestamps-github-action, github.com/yzernik/squeaknode, github.com/yzfdldx/react-router,num_dependents_deps.dev:0 github.com/yzgyyang/wsl-tray, @@ -1235453,6 +1257390,7 @@ github.com/z00mze/rsa-encryption,num_dependents_deps.dev:0 github.com/z03h/ReactionCommandBot, github.com/z0BI7z/react-redux-action-observer, github.com/z0al/commitlint-bot, +github.com/z0al/dependent-issues, github.com/z0al/feedify,num_dependents_deps.dev:0 github.com/z0al/ignr,num_dependents_deps.dev:0 github.com/z0al/oktane,num_dependents_deps.dev:0 @@ -1235501,6 +1257439,7 @@ github.com/z13z/kiosks,num_dependents_deps.dev:0 github.com/z19910517/vue-meme-editor,num_dependents_deps.dev:0 github.com/z1c1/revert-changelog,num_dependents_deps.dev:0 github.com/z1digitalstudio/djangoautoapi, +github.com/z1digitalstudio/eks-helm-deploy-action, github.com/z1lab/auth-nuxt,num_dependents_deps.dev:0 github.com/z1m1n/pace,num_dependents_deps.dev:0 github.com/z1yx/go-todolist,num_dependents_deps.dev:0 @@ -1235543,6 +1257482,7 @@ github.com/z3js/fis3-postprocessor-cssreset,num_dependents_deps.dev:0 github.com/z3js/z3,num_dependents_deps.dev:0 github.com/z3mx/go-projects-basic-microservice,num_dependents_deps.dev:0 github.com/z3nn13/custom-commands-yagpdb,num_dependents_deps.dev:0 +github.com/z3nnik/vk-workflow-notifications, github.com/z3nz/jquery-watcher,num_dependents_deps.dev:0 github.com/z3nz/my-jsql,num_dependents_deps.dev:0 github.com/z3nz/wwfc,num_dependents_deps.dev:0 @@ -1235635,6 +1257575,7 @@ github.com/z858018678/graceful,num_dependents_deps.dev:0 github.com/z858018678/rolling,num_dependents_deps.dev:0 github.com/z875479694h/gotool,num_dependents_deps.dev:0 github.com/z88dk/z88dk,criticality_score:0.542780 +github.com/z89/cypress-vercel, github.com/z89/pascra,num_dependents_deps.dev:0 github.com/z8i/kloggpro, github.com/z924931408/go-admin,num_dependents_deps.dev:0 @@ -1235811,6 +1257752,7 @@ github.com/zabertech/izaber-plpython-zerp, github.com/zabertech/python-izaber-wamp, github.com/zabertech/python-izaber-wamp-zerp, github.com/zabetak/hs2-embedded,num_dependents_deps.dev:0 +github.com/zabio3/github-actions-godolint, github.com/zabio3/godolint,num_dependents_deps.dev:0 github.com/zabir-aa/lotide,num_dependents_deps.dev:0 github.com/zabir-nabil/audioperm, @@ -1236004,6 +1257946,7 @@ github.com/zach-capalbo/flammarion,num_dependents_deps.dev:0 github.com/zach-capalbo/hubs-client-bot,num_dependents_deps.dev:0 github.com/zach-chai/json-resolver,num_dependents_deps.dev:0 github.com/zach-data/redshift, +github.com/zach-hill/gha-yarn-node-cache, github.com/zach-king/oink, github.com/zach-klippenstein/compose-backstack,num_dependents_deps.dev:0 github.com/zach-klippenstein/compose-richtext,num_dependents_deps.dev:0 @@ -1236030,6 +1257973,7 @@ github.com/zacharied/discord-eprompt, github.com/zacharied/mapped-enum, github.com/zacharierrr/QuranAPI, github.com/zachartrand/Quaternions, +github.com/zachary-cauchi/github-action-hot-repos, github.com/zachary-hawk/castep2fs, github.com/zachary-hawk/dispersion.py, github.com/zachary-sierakowski/dispatch-hijack,num_dependents_deps.dev:0 @@ -1236039,6 +1257983,7 @@ github.com/zachary822/PyCyRest, github.com/zachary822/chinese-converter, github.com/zachary822/gitbook-plugin-style,num_dependents_deps.dev:0 github.com/zachary822/sungear, +github.com/zachary95/github-action-debounce, github.com/zacharyad/simple-go-service,num_dependents_deps.dev:0 github.com/zacharyadams3/lodown,num_dependents_deps.dev:0 github.com/zacharybanta/lodown,num_dependents_deps.dev:0 @@ -1236046,6 +1257991,7 @@ github.com/zacharybeebe/template_flask, github.com/zacharybeebe/treetopper, github.com/zacharybergmann/lodown,num_dependents_deps.dev:0 github.com/zacharyburnett/GarterSnake, +github.com/zacharyburnett/coastalapp-build-action, github.com/zacharycoulter/strapi-provider-upload-b2,num_dependents_deps.dev:0 github.com/zacharyduve/slideshower,num_dependents_deps.dev:0 github.com/zacharyedwardbull/pycycling, @@ -1236152,6 +1258098,7 @@ github.com/zachdeibert/canvas-sync,num_dependents_deps.dev:0 github.com/zachdeibert/npm-ipfsify,num_dependents_deps.dev:0 github.com/zachdeibert/web-game-framework,num_dependents_deps.dev:0 github.com/zachelrath/encrypt-at-rest,num_dependents_deps.dev:0 +github.com/zachelrath/github-action-ecs-scale, github.com/zachelrath/grunt-chrome-screenshot,num_dependents_deps.dev:0 github.com/zachelrath/knex,num_dependents_deps.dev:0 github.com/zacheryph/binary_enclave,num_dependents_deps.dev:0 @@ -1236184,6 +1258131,8 @@ github.com/zachgibson/react-native-typography,num_dependents_deps.dev:0 github.com/zachgill/rtmp,num_dependents_deps.dev:0 github.com/zachgoldstein/scrapy-statsd, github.com/zachgrayio/kalk,num_dependents_deps.dev:0 +github.com/zachguo/setup-aes-ip-access, +github.com/zachguo/setup-eks-kubectl, github.com/zachhanson94/htbcli, github.com/zachhardesty7/babel-plugin-transform-semantic-ui-react-style-imports,num_dependents_deps.dev:0 github.com/zachhardesty7/eslint-config-hardesty,num_dependents_deps.dev:0 @@ -1236400,6 +1258349,7 @@ github.com/zackharley/rick-and-morty-cli,num_dependents_deps.dev:0 github.com/zackharley/zackharley,num_dependents_deps.dev:0 github.com/zackhsi/prefab, github.com/zackhsi/venmo, +github.com/zackify/AppCenter-Github-Action, github.com/zackify/MiniService,num_dependents_deps.dev:0 github.com/zackify/React-Generator,num_dependents_deps.dev:0 github.com/zackify/fragment,num_dependents_deps.dev:0 @@ -1236687,6 +1258637,7 @@ github.com/zaibacu/rita-dsl, github.com/zaibacu/wutu, github.com/zaibatusu/spinner-ng,num_dependents_deps.dev:0 github.com/zaibon/coredns,num_dependents_deps.dev:0 +github.com/zaibon/go-buildinfo, github.com/zaibon/go-libp2p-kad-dht,num_dependents_deps.dev:0 github.com/zaibon/py-dmidecode, github.com/zaibyte/nanozap,num_dependents_deps.dev:1 @@ -1236697,6 +1258648,7 @@ github.com/zaid13/gin_mongo,num_dependents_deps.dev:0 github.com/zaida04/Discord-Webhook-Client, github.com/zaida04/Quizizz.js,num_dependents_deps.dev:0 github.com/zaida04/guilded-js,num_dependents_deps.dev:0 +github.com/zaida04/guilded-webhook-action, github.com/zaida04/guilded.js,num_dependents_deps.dev:6 github.com/zaida04/mining-pool-wrappers,num_dependents_deps.dev:0 github.com/zaidajani/crud-db,num_dependents_deps.dev:0 @@ -1236906,6 +1258858,7 @@ github.com/zakiafada32/go-rest-book,num_dependents_deps.dev:0 github.com/zakiafada32/go-sandbox,num_dependents_deps.dev:0 github.com/zakiafada32/go-tdd,num_dependents_deps.dev:0 github.com/zakiafada32/rest-book,num_dependents_deps.dev:0 +github.com/zakiego/just-git-push, github.com/zakimal/cowsay,num_dependents_deps.dev:0 github.com/zakimal/zchain,num_dependents_deps.dev:0 github.com/zakimal/zlolcat,num_dependents_deps.dev:0 @@ -1237203,12 +1259156,16 @@ github.com/zaletskyi/amp-html,num_dependents_deps.dev:0 github.com/zalew/fabric-pgbackup, github.com/zalewski26/concurrentprogramming,num_dependents_deps.dev:0 github.com/zalewskip123/electron-publisher-simple-http,num_dependents_deps.dev:0 +github.com/zalexki/php-cs-fixer-action, +github.com/zalexki/phpstan-action, github.com/zalf-rpm/build-pipeline,num_dependents_deps.dev:0 github.com/zalf-rpm/hermes2go,num_dependents_deps.dev:0 github.com/zalgonoise/goauth-cli,num_dependents_deps.dev:0 github.com/zalgonoise/meta,num_dependents_deps.dev:0 github.com/zalhamami/go-learn,num_dependents_deps.dev:0 github.com/zalishchuk/eslint-config-zalishchuk,num_dependents_deps.dev:0 +github.com/zaljic/newrelic-app-id-fetcher-action, +github.com/zaljic/newrelic-guid-fetcher-action, github.com/zaljubouri/iid-tests,num_dependents_deps.dev:0 github.com/zalkar-z/acronym,num_dependents_deps.dev:0 github.com/zalkar-z/markdown-image-cli,num_dependents_deps.dev:0 @@ -1237247,6 +1259204,7 @@ github.com/zalo/CascadeStudio,criticality_score:0.306240 github.com/zalog/placeholder-loading,num_dependents_deps.dev:0 github.com/zalora/apm-agent-go,num_dependents_deps.dev:0 github.com/zalora/bee,num_dependents_deps.dev:0 +github.com/zalorg/action-setup-firebase, github.com/zalsy/sms-bomb, github.com/zalter-io/tarhon,num_dependents_deps.dev:0 github.com/zalvari/changed-resources-plugin,num_dependents_deps.dev:0 @@ -1237257,6 +1259215,7 @@ github.com/zama-ai/sphinx_zama_theme, github.com/zamanruhy/html-beautifier-webpack-plugin,num_dependents_deps.dev:0 github.com/zamanruhy/html-prettify-webpack-plugin,num_dependents_deps.dev:0 github.com/zamanuhina/proxy-check,num_dependents_deps.dev:24 +github.com/zamarawka/aws-run-fargate-task, github.com/zamarawka/draft-js-emoji-mart-plugin,num_dependents_deps.dev:2 github.com/zamarawka/gulp-rev-origin,num_dependents_deps.dev:0 github.com/zamarawka/mac-notify,num_dependents_deps.dev:0 @@ -1237730,6 +1259689,9 @@ github.com/zapr-oss/druidry,num_dependents_deps.dev:0 github.com/zapr-oss/zapr-athena-client, github.com/zaprit/ssm,num_dependents_deps.dev:0 github.com/zaprogrammer/react-native-template-typescript-tdd,num_dependents_deps.dev:0 +github.com/zaproxy/action-api-scan, +github.com/zaproxy/action-baseline, +github.com/zaproxy/action-full-scan, github.com/zaproxy/actions-common,num_dependents_deps.dev:0 github.com/zaproxy/community-scripts,criticality_score:0.388500 github.com/zaproxy/front-end-tracker,num_dependents_deps.dev:0 @@ -1237831,6 +1259793,7 @@ github.com/zargony/fuse-rs,criticality_score:0.330500 github.com/zargony/rails-i18n-updater,num_dependents_deps.dev:0 github.com/zargony/rust-fuse,num_dependents_deps.dev:5 github.com/zargovv/discore.js,num_dependents_deps.dev:0 +github.com/zarifaziz/hello-world-github-action, github.com/zarincheg/react-native-option-switch,num_dependents_deps.dev:0 github.com/zaripych/node-op,num_dependents_deps.dev:0 github.com/zaripych/rx-service-kit,num_dependents_deps.dev:0 @@ -1237914,6 +1259877,7 @@ github.com/zasdfgbnm/tcg, github.com/zasexton/PyPso, github.com/zasexton/Tree, github.com/zashx/vktexbot,num_dependents_deps.dev:0 +github.com/zaspisoft/project-status-mover, github.com/zasqw2222/abcFountByPack,num_dependents_deps.dev:0 github.com/zastavnitskiy/jest-nightwatch,num_dependents_deps.dev:0 github.com/zat-kaoru-hayama/emptytree,num_dependents_deps.dev:0 @@ -1237950,6 +1259914,15 @@ github.com/zatoichi-labs/substratum, github.com/zatomik/generator-jeti,num_dependents_deps.dev:0 github.com/zatosource/zato,criticality_score:0.544400 github.com/zatte/svcf,num_dependents_deps.dev:0 +github.com/zattoo/changelog, +github.com/zattoo/deploy-status, +github.com/zattoo/issuer, +github.com/zattoo/labeler, +github.com/zattoo/milestones, +github.com/zattoo/output, +github.com/zattoo/publish, +github.com/zattoo/recognition, +github.com/zattoo/reviewers, github.com/zattoo/stylelint-config,num_dependents_deps.dev:0 github.com/zattoo/use-double-click, github.com/zaturox/glin, @@ -1238239,6 +1260212,7 @@ github.com/zbb99/numbercomputeber,num_dependents_deps.dev:0 github.com/zbc163001/genaro-core,num_dependents_deps.dev:0 github.com/zbdzzg/DFA-Regex,num_dependents_deps.dev:0 github.com/zbeach/otdt,num_dependents_deps.dev:0 +github.com/zbeekman/EditorConfig-Action, github.com/zbeloki/nlpyper, github.com/zbenjamin/vec_noise, github.com/zbennett10/wasm-marching-squares,num_dependents_deps.dev:0 @@ -1238381,6 +1260355,7 @@ github.com/zbrox/cloudflare-ddns,num_dependents_deps.dev:0 github.com/zbrox/iso_currency,num_dependents_deps.dev:2 github.com/zbrox/licenz,num_dependents_deps.dev:0 github.com/zbrox/rmq_monitor,num_dependents_deps.dev:0 +github.com/zbrox/zola-deploy-action, github.com/zbrugman/ng2-tour, github.com/zbruhnke/bloggy,num_dependents_deps.dev:0 github.com/zbruno/babel-preset-brunono,num_dependents_deps.dev:0 @@ -1238566,6 +1260541,7 @@ github.com/zchee/kt,num_dependents_deps.dev:0 github.com/zchee/kubebuilder-init,num_dependents_deps.dev:0 github.com/zchee/opentelemetry-collectors,num_dependents_deps.dev:0 github.com/zchee/pdf,num_dependents_deps.dev:0 +github.com/zchee/setup-protoc, github.com/zchee/sigs.k8s-controller-runtime,num_dependents_deps.dev:0 github.com/zchee/spinctl,num_dependents_deps.dev:0 github.com/zchee/subcommandsutil,num_dependents_deps.dev:0 @@ -1238573,6 +1260549,8 @@ github.com/zcheng9/ethereum_read,num_dependents_deps.dev:0 github.com/zchfvy/vidify, github.com/zchlon/react-native-xiaomi-mipush, github.com/zchrykng/node-tzip,num_dependents_deps.dev:0 +github.com/zchryr/build-notifier-action, +github.com/zchryr/manifest, github.com/zchsh/convert-figma-svgs-for-react,num_dependents_deps.dev:0 github.com/zchsh/html-string-query-selector, github.com/zchtodd/Flask-UndoRedo, @@ -1238596,9 +1260574,11 @@ github.com/zclaytor/butterpy, github.com/zclaytor/kiauhoku, github.com/zclchc/gin,num_dependents_deps.dev:0 github.com/zclconf/go-cty,num_dependents_deps.dev:5803 +github.com/zcloud-ws/zcloud-deploy-action, github.com/zcmarine/powerkube, github.com/zcmilan/oathkeeper,num_dependents_deps.dev:0 github.com/zcmyworld/freemock,num_dependents_deps.dev:0 +github.com/zcodeid/sam-deploy-action, github.com/zcoderboy/generator-ng-artisan, github.com/zcoding/amazeui-vue,num_dependents_deps.dev:0 github.com/zcoding/chimee-plugin-snapshot,num_dependents_deps.dev:0 @@ -1238610,6 +1260590,10 @@ github.com/zcom-project/zcomjs,num_dependents_deps.dev:0 github.com/zcom-project/zcomjs-ws,num_dependents_deps.dev:0 github.com/zcong100/file-assist,num_dependents_deps.dev:0 github.com/zcong100/mytag,num_dependents_deps.dev:0 +github.com/zcong1993/action-git-merge, +github.com/zcong1993/actions-ding, +github.com/zcong1993/actions-git-mirror, +github.com/zcong1993/actions-qywx-bot, github.com/zcong1993/algo-go,num_dependents_deps.dev:0 github.com/zcong1993/badge-service,num_dependents_deps.dev:0 github.com/zcong1993/bcf,num_dependents_deps.dev:0 @@ -1238655,6 +1260639,9 @@ github.com/zcong1993/proxy,num_dependents_deps.dev:0 github.com/zcong1993/redis-ratelimiter,num_dependents_deps.dev:0 github.com/zcong1993/rss-watcher,num_dependents_deps.dev:0 github.com/zcong1993/scripts-runner,num_dependents_deps.dev:0 +github.com/zcong1993/setup-bin, +github.com/zcong1993/setup-dockerize, +github.com/zcong1993/setup-timezone, github.com/zcong1993/taobao-parser,num_dependents_deps.dev:0 github.com/zcong1993/template-egg,num_dependents_deps.dev:0 github.com/zcong1993/template-empty,num_dependents_deps.dev:0 @@ -1238759,6 +1260746,7 @@ github.com/zcstarr/smart-pockets,num_dependents_deps.dev:0 github.com/zct1989/vue-component,num_dependents_deps.dev:0 github.com/zctod/node-rds, github.com/zctod/wechat,num_dependents_deps.dev:0 +github.com/zcubbs/gh-release-action, github.com/zcued/eslint-config-zcool, github.com/zcued/hf-upload,num_dependents_deps.dev:0 github.com/zcued/poseidon,num_dependents_deps.dev:0 @@ -1238887,6 +1260875,7 @@ github.com/zdszxp/go-workers,num_dependents_deps.dev:0 github.com/zdtjss/nway-jdbc,num_dependents_deps.dev:0 github.com/zduclos/digital-unit-converter,num_dependents_deps.dev:0 github.com/zduny/pad_motion,num_dependents_deps.dev:0 +github.com/zdurham/s3-upload-github-action, github.com/zduymz/kubewatch,num_dependents_deps.dev:0 github.com/zduymz/serverless-authentication-github, github.com/zduymz/serverless-authentication-zzz,num_dependents_deps.dev:0 @@ -1238983,6 +1260972,7 @@ github.com/zeachco/declarative-form,num_dependents_deps.dev:0 github.com/zeachco/immutable-short-string-notation,num_dependents_deps.dev:0 github.com/zeachco/stubborn,num_dependents_deps.dev:1 github.com/zeachco/stubborn-server, +github.com/zeagord/aws-lambda-deploy-function, github.com/zeakd/aws-workspace,num_dependents_deps.dev:0 github.com/zeakd/clonit,num_dependents_deps.dev:0 github.com/zeakd/drawing-kit.js,num_dependents_deps.dev:0 @@ -1239118,6 +1261108,7 @@ github.com/zebrajaeger/sphere2cube-js,num_dependents_deps.dev:0 github.com/zebrajaeger/threadpool,num_dependents_deps.dev:0 github.com/zebrajaeger/ws-value,num_dependents_deps.dev:0 github.com/zebresel-com/npm-pcap-parser, +github.com/zebroc/chatgpt-create-unit-tests, github.com/zebrunner/java-agent-core,num_dependents_deps.dev:98 github.com/zebrunner/java-agent-junit5,num_dependents_deps.dev:0 github.com/zebrunner/java-agent-testng,num_dependents_deps.dev:78 @@ -1239237,6 +1261228,7 @@ github.com/zeebe-io/bpmn-spec,num_dependents_deps.dev:0 github.com/zeebe-io/flaky-test-extractor-maven-plugin,num_dependents_deps.dev:0 github.com/zeebe-io/kafka-connect-zeebe,num_dependents_deps.dev:0 github.com/zeebe-io/spring-zeebe,num_dependents_deps.dev:134 +github.com/zeebe-io/zbctl-action, github.com/zeebe-io/zeebe,"criticality_score:0.696650,num_dependents_deps.dev:14281" github.com/zeebe-io/zeebe-bpmn-moddle,num_dependents_deps.dev:4 github.com/zeebe-io/zeebe-changelog,num_dependents_deps.dev:0 @@ -1239412,6 +1261404,8 @@ github.com/zeeshanu/emoji-awesome,num_dependents_deps.dev:0 github.com/zeeskhan1990/fetchex,num_dependents_deps.dev:0 github.com/zeeskhan1990/react-native-option-select,num_dependents_deps.dev:0 github.com/zeesousa/yt-downloader, +github.com/zeet-co/zeet-deploy-action, +github.com/zeet-co/zeet-run-action, github.com/zeethan/vue-fast-datetime,num_dependents_deps.dev:0 github.com/zeevex/zeevex_proxy,num_dependents_deps.dev:1 github.com/zeevl/connect-include,num_dependents_deps.dev:0 @@ -1239520,6 +1261514,7 @@ github.com/zehao99/CEIT, github.com/zehengl/ez-address-parser, github.com/zehengl/ezapi-tmdb, github.com/zehengl/ezapi-yelp, +github.com/zehengl/refresh-python-dependency, github.com/zehengl/toisan-lang, github.com/zehfernandes/hyperspace,num_dependents_deps.dev:0 github.com/zehfernandes/postcss-update-media-queries,num_dependents_deps.dev:0 @@ -1239664,6 +1261659,7 @@ github.com/zeixcom/proofr, github.com/zeixcom/simple-svg-gauge,num_dependents_deps.dev:0 github.com/zeixcom/vue-slide-up-down,num_dependents_deps.dev:0 github.com/zeixcom/zeix-react-redux-boilerplate,num_dependents_deps.dev:0 +github.com/zejdi/AppCenter-Github-Action, github.com/zejie/bigone-js,num_dependents_deps.dev:0 github.com/zejiran/backend-simple-buyers-platform,num_dependents_deps.dev:0 github.com/zejn/imenar, @@ -1239841,6 +1261837,7 @@ github.com/zekizeki/nodeDockerMachine,num_dependents_deps.dev:4 github.com/zekker6/protoplex,num_dependents_deps.dev:0 github.com/zekker6/slack-gitlab-mr-reminder,num_dependents_deps.dev:0 github.com/zekker6/traefik-hosts-generator,num_dependents_deps.dev:0 +github.com/zeklin-io/zeklin-action, github.com/zeknox/ripego,num_dependents_deps.dev:0 github.com/zeknurn/discord-irc, github.com/zekroTJA/crashcollector,num_dependents_deps.dev:0 @@ -1239864,6 +1261861,7 @@ github.com/zekrotja/yuri3,num_dependents_deps.dev:0 github.com/zekrotutorials/ci-ghactions,num_dependents_deps.dev:0 github.com/zekrotutorials/tutorialgobot,num_dependents_deps.dev:0 github.com/zekth/fastify-early-hints,num_dependents_deps.dev:0 +github.com/zekth/gh-deploy-action, github.com/zekth/gulp-image-process,num_dependents_deps.dev:0 github.com/zekunyan/TTGSnackbar,criticality_score:0.338950 github.com/zekunyan/TTGTagCollectionView,criticality_score:0.300130 @@ -1239878,6 +1261876,7 @@ github.com/zeldamods/syaz0, github.com/zeldaret/oot,criticality_score:0.414060 github.com/zeldazach/scryfallcardgolf, github.com/zeldovich/go-rpcgen,num_dependents_deps.dev:0 +github.com/zelect-io/docker-action, github.com/zeleniizmey/testcafe-reporter-elixir,num_dependents_deps.dev:0 github.com/zelenij/django-bootstrap-v5, github.com/zelenij/python-drupal-download, @@ -1240037,6 +1262036,8 @@ github.com/zemse/hardhat-tracer,num_dependents_deps.dev:7 github.com/zemse/http-response-status-codes,num_dependents_deps.dev:0 github.com/zemse/solidity-flattener,num_dependents_deps.dev:0 github.com/zemtu/react-intl-redux-immutable,num_dependents_deps.dev:0 +github.com/zemuldo/docker-build-push, +github.com/zemuldo/git-crypt-unlock, github.com/zemuldo/gps_parser,num_dependents_deps.dev:0 github.com/zemuldo/iso8583,num_dependents_deps.dev:0 github.com/zemuldo/iso_8583,num_dependents_deps.dev:0 @@ -1240096,6 +1262097,7 @@ github.com/zenapply/angular-ui-router-reroute,num_dependents_deps.dev:0 github.com/zenapply/angular-video-embed,num_dependents_deps.dev:0 github.com/zenarcher007/calcwave, github.com/zenato/async-interaction,num_dependents_deps.dev:0 +github.com/zenato/docker-action, github.com/zenato/puppeteer-renderer,num_dependents_deps.dev:0 github.com/zenato/redux-await-middleware,num_dependents_deps.dev:0 github.com/zenaton/nodejs-example-app,num_dependents_deps.dev:0 @@ -1240290,6 +1262292,7 @@ github.com/zenghnn/ironmanager,num_dependents_deps.dev:0 github.com/zenghnn/ironshard,num_dependents_deps.dev:0 github.com/zenghongtu/create-electron-react,num_dependents_deps.dev:0 github.com/zenghongtu/general-news-extractor-js, +github.com/zenghongtu/github-issue-to-hexo, github.com/zenghongtu/react-config-router,num_dependents_deps.dev:0 github.com/zenghongtu/react-config-router-webpack-plugin,num_dependents_deps.dev:0 github.com/zenghongtu/url-convert,num_dependents_deps.dev:0 @@ -1240478,6 +1262481,7 @@ github.com/zenochan/ngx-datatable,num_dependents_deps.dev:0 github.com/zenodallavalle/rb-blur-button,num_dependents_deps.dev:0 github.com/zenodo/zenodo,criticality_score:0.548340 github.com/zenodo/zenodo-accessrequests, +github.com/zenodraft/action, github.com/zenodraft/zenodraft,num_dependents_deps.dev:0 github.com/zenofzhen/minui,num_dependents_deps.dev:0 github.com/zenogantner/MyMediaLite,criticality_score:0.356020 @@ -1240618,10 +1262622,22 @@ github.com/zensors/sheriff, github.com/zensword/ipfix,num_dependents_deps.dev:0 github.com/zensystems-hub/zen-ui,num_dependents_deps.dev:0 github.com/zent-contrib/codemods,num_dependents_deps.dev:0 +github.com/zent-contrib/sync-git-branch, github.com/zent-contrib/theme-sdk,num_dependents_deps.dev:0 github.com/zent-contrib/zent-compat,num_dependents_deps.dev:0 github.com/zentai/folder-compare, +github.com/zentered/bluesky-post-action, +github.com/zentered/broken-link-checker, +github.com/zentered/cloudflare-kv-action, +github.com/zentered/cloudflare-preview-url, github.com/zentered/frontformatter,num_dependents_deps.dev:0 +github.com/zentered/grafana-backup-action, +github.com/zentered/graphile-migrate-commit-current-action, +github.com/zentered/issue-forms-body-parser, +github.com/zentered/markdown-seo-check, +github.com/zentered/reading-time-action, +github.com/zentered/shortcut-move-ticket-action, +github.com/zentered/vercel-preview-url, github.com/zenthangplus/goccm,num_dependents_deps.dev:3 github.com/zentner-kyle/turbojet,num_dependents_deps.dev:0 github.com/zentooo/Replica,num_dependents_deps.dev:0 @@ -1240843,6 +1262859,7 @@ github.com/zephinzer/pipelyne,num_dependents_deps.dev:0 github.com/zephinzer/tmpl8,num_dependents_deps.dev:0 github.com/zephinzer/version-tagging-scripts,num_dependents_deps.dev:0 github.com/zephinzer/zscripts,num_dependents_deps.dev:0 +github.com/zephir-lang/setup-php-sdk, github.com/zephir/zephir-gulp-workflow,num_dependents_deps.dev:0 github.com/zephirworks/easy_multipart,num_dependents_deps.dev:0 github.com/zephod/cdn-promise,num_dependents_deps.dev:0 @@ -1240978,6 +1262995,7 @@ github.com/zeraussiul/tmdb,num_dependents_deps.dev:0 github.com/zeravcic/custom-counter,num_dependents_deps.dev:0 github.com/zeraye/go-learning,num_dependents_deps.dev:0 github.com/zerbfra/paapi5-nodejs-sdk, +github.com/zerbinidamata/HephaestusSolidityGuard, github.com/zerbitx/jwtter,num_dependents_deps.dev:0 github.com/zerc/django-light-draft, github.com/zerc/django-vest, @@ -1240994,6 +1263012,7 @@ github.com/zerdos/hyperlayout,num_dependents_deps.dev:0 github.com/zerdos/qrious,num_dependents_deps.dev:1 github.com/zerdos/react-cdn-monaco-editor, github.com/zerdos/react-monaco-editor,num_dependents_deps.dev:0 +github.com/zerebom/SummarAIzeHub, github.com/zerefel/gl-hydra-express,num_dependents_deps.dev:0 github.com/zereight/tiny-typescript-cra,num_dependents_deps.dev:0 github.com/zereight/webpack-image-resize-plugin,num_dependents_deps.dev:0 @@ -1241056,6 +1263075,7 @@ github.com/zeripath/java-gitea-api,num_dependents_deps.dev:0 github.com/zeripath/jwt,num_dependents_deps.dev:0 github.com/zerite/craftlib,num_dependents_deps.dev:0 github.com/zeriyu/KonaLast,num_dependents_deps.dev:0 +github.com/zerj9/setup-cargo-lambda, github.com/zerjioang/dotmap,num_dependents_deps.dev:0 github.com/zerjioang/env,num_dependents_deps.dev:0 github.com/zerjioang/msteamslive,num_dependents_deps.dev:0 @@ -1241177,6 +1263197,7 @@ github.com/zero323/pyspark-stubs, github.com/zero323/tryingsnake, github.com/zero734kr/discordjs-paginator,num_dependents_deps.dev:0 github.com/zero734kr/process-keep-alive, +github.com/zero88/gh-project-context, github.com/zero88/java-utils,num_dependents_deps.dev:25 github.com/zero88/msa-blueprint,num_dependents_deps.dev:12 github.com/zero88/qwe,num_dependents_deps.dev:41 @@ -1241297,6 +1263318,7 @@ github.com/zerocube/ami-sweeper,num_dependents_deps.dev:0 github.com/zerocv/zerocv, github.com/zeroday0619/covid_vaccine_stat, github.com/zeroday0619/pyspotify-uri, +github.com/zerodays/action-infisical, github.com/zerodays/gonfig,num_dependents_deps.dev:0 github.com/zerodayz/citellus,num_dependents_deps.dev:0 github.com/zerodayz/httproutertest,num_dependents_deps.dev:0 @@ -1241514,6 +1263536,7 @@ github.com/zerospatial/vtile,num_dependents_deps.dev:0 github.com/zerostone/node-mock-server,num_dependents_deps.dev:0 github.com/zerostone/react-drag-listview,num_dependents_deps.dev:0 github.com/zerostone/swagger-ui,num_dependents_deps.dev:0 +github.com/zerosuxx/example-github-action, github.com/zerosuxx/go-escher-proxy,num_dependents_deps.dev:0 github.com/zerosuxx/go-resource-checker,num_dependents_deps.dev:0 github.com/zerosuxx/zero-angularjs-helper,num_dependents_deps.dev:0 @@ -1241528,6 +1263551,7 @@ github.com/zerothstack/toolchain,num_dependents_deps.dev:0 github.com/zerothstack/zeroth,num_dependents_deps.dev:0 github.com/zerotier/ZeroTierOne,criticality_score:0.587840 github.com/zerotier/eggshell,num_dependents_deps.dev:0 +github.com/zerotier/github-action, github.com/zerotier/go-ztcentral,num_dependents_deps.dev:0 github.com/zerotier/libzt,"criticality_score:0.398650,num_dependents_deps.dev:0" github.com/zerotier/terraform-provider-zerotier,num_dependents_deps.dev:0 @@ -1241546,6 +1263570,7 @@ github.com/zerotk/zops.code_standards, github.com/zerotk/zops.jenkins_jobs, github.com/zerotk/zops.requirements_directory, github.com/zerotk/zops.virtualenv, +github.com/zerotomvp/rolling-systemd-update, github.com/zerotosingularity/pdl, github.com/zerotower69/zt-pagination,num_dependents_deps.dev:0 github.com/zeroturnaround/eslint-config-zt,num_dependents_deps.dev:0 @@ -1241695,6 +1263720,7 @@ github.com/zestia/prettier-config,num_dependents_deps.dev:0 github.com/zestia/stylelint-config,num_dependents_deps.dev:0 github.com/zestia/template-lint-config,num_dependents_deps.dev:0 github.com/zestic/app-storage,num_dependents_deps.dev:0 +github.com/zesticio/update-release-branch, github.com/zestime/cifar-10,num_dependents_deps.dev:0 github.com/zestjs/zest-server,num_dependents_deps.dev:0 github.com/zestlabs-io/react-native-zest-mobile, @@ -1241819,6 +1263845,7 @@ github.com/zethra/poki-launcher,num_dependents_deps.dev:1 github.com/zethra/servy,num_dependents_deps.dev:0 github.com/zethson/promoe, github.com/zethson/system_intelligence, +github.com/zethuman/healthcheck, github.com/zethussuen/batch-rails-4,num_dependents_deps.dev:0 github.com/zethussuen/epic-editor-rails,num_dependents_deps.dev:0 github.com/zetkin/express-zetkin-auth,num_dependents_deps.dev:0 @@ -1242377,6 +1264404,13 @@ github.com/zgoda/strainer, github.com/zgohr/grunt-string-to-js,num_dependents_deps.dev:0 github.com/zgordan-vv/react-native-pdf-view-medsu,num_dependents_deps.dev:0 github.com/zgos/goex,num_dependents_deps.dev:0 +github.com/zgosalvez/github-actions-analyze-dart, +github.com/zgosalvez/github-actions-decrypt-secrets, +github.com/zgosalvez/github-actions-ensure-sha-pinned-actions, +github.com/zgosalvez/github-actions-get-action-runs-using-version, +github.com/zgosalvez/github-actions-get-flutter-version-env, +github.com/zgosalvez/github-actions-merge-and-stop, +github.com/zgosalvez/github-actions-report-lcov, github.com/zgotsch/brew_outdated,num_dependents_deps.dev:0 github.com/zgpwr/bitmap,num_dependents_deps.dev:0 github.com/zgq25302111/leetcode-go,num_dependents_deps.dev:0 @@ -1242738,6 +1264772,9 @@ github.com/zhangcj0709/fis3-prepackager-rift-precompile,num_dependents_deps.dev: github.com/zhangcj0709/fis3-rift-packer,num_dependents_deps.dev:0 github.com/zhangcj0709/fis3-spriter-rift-precompile,num_dependents_deps.dev:0 github.com/zhangcm/spring-redis-lock,num_dependents_deps.dev:0 +github.com/zhangcz828/action-slack-notify, +github.com/zhangcz828/github-action-slack-notify, +github.com/zhangcz828/github-action-slack-notify-build, github.com/zhangda89/caipiao,num_dependents_deps.dev:0 github.com/zhangda89/config-mysql,num_dependents_deps.dev:0 github.com/zhangda89/gulp-rev,num_dependents_deps.dev:0 @@ -1242864,6 +1264901,8 @@ github.com/zhanghecool/biglvan,num_dependents_deps.dev:0 github.com/zhangheli/caddy-filter,num_dependents_deps.dev:0 github.com/zhangheli/go-ticker,num_dependents_deps.dev:0 github.com/zhangheli/stocktown, +github.com/zhanghengxin/git-release-private, +github.com/zhanghengxin/reading-a-file-of-JSON, github.com/zhanghengyao/easy-unittest,num_dependents_deps.dev:0 github.com/zhanghengyao/module-analysis,num_dependents_deps.dev:0 github.com/zhanghj7/koa-compress-more,num_dependents_deps.dev:0 @@ -1242895,6 +1264934,7 @@ github.com/zhangjialegh/postis-plus,num_dependents_deps.dev:0 github.com/zhangjialegh/vue-clickoutside,num_dependents_deps.dev:0 github.com/zhangjialegh/vue-toast-dialog,num_dependents_deps.dev:0 github.com/zhangjian-ai/pypi, +github.com/zhangjian10/nocalhost-server-cli, github.com/zhangjian640/mystatic,num_dependents_deps.dev:0 github.com/zhangjianfang19910327/egg-fortypeorm, github.com/zhangjianfang19910327/egg-kafka,num_dependents_deps.dev:0 @@ -1243134,6 +1265174,7 @@ github.com/zhangminqiang/idea-cli,num_dependents_deps.dev:0 github.com/zhangmrit/tinymce-langs,num_dependents_deps.dev:0 github.com/zhangn1985/ykdl,criticality_score:0.485080 github.com/zhangnaizhao/znz_spider, +github.com/zhangnew/sync-upstream, github.com/zhangpan0/voiceplaying, github.com/zhangpengboy/vue-search,num_dependents_deps.dev:0 github.com/zhangpengchen/typeorm-cursor-connection,num_dependents_deps.dev:0 @@ -1243421,6 +1265462,7 @@ github.com/zhangyu1818/stupid-events, github.com/zhangyu1818/switch-button,num_dependents_deps.dev:0 github.com/zhangyu1818/utils,num_dependents_deps.dev:0 github.com/zhangyu1818/wave-effect, +github.com/zhangyu1818/write-file-with, github.com/zhangyu1818/wx-font-reset,num_dependents_deps.dev:0 github.com/zhangyu836/django-excel-export, github.com/zhangyu836/node-xlsx-template,num_dependents_deps.dev:0 @@ -1243561,6 +1265603,7 @@ github.com/zhanxp/enuo-core,num_dependents_deps.dev:0 github.com/zhanxp/log4js-mongo-appender,num_dependents_deps.dev:0 github.com/zhanxw/XiaoweiLib, github.com/zhanyigo/hubot-jenkins,num_dependents_deps.dev:0 +github.com/zhanymkanov/ssh-action, github.com/zhanyong-wan/dongbei, github.com/zhanyouwei/generator-toa,num_dependents_deps.dev:0 github.com/zhanyulong/hippie-design-system,num_dependents_deps.dev:0 @@ -1243629,6 +1265672,8 @@ github.com/zhaobaosheng/filter-authentication,num_dependents_deps.dev:0 github.com/zhaobaosheng/zdawn-commons,num_dependents_deps.dev:0 github.com/zhaobingchun/bee,num_dependents_deps.dev:0 github.com/zhaobowensir/vue-upload, +github.com/zhaobozhen/AppCenter-Github-Action, +github.com/zhaobozhen/apk-info-action, github.com/zhaocai/alfred-workflow,num_dependents_deps.dev:0 github.com/zhaocai/openmeta.rb,num_dependents_deps.dev:0 github.com/zhaochangming/MVBLS, @@ -1243636,6 +1265681,7 @@ github.com/zhaoche27/dbi,num_dependents_deps.dev:0 github.com/zhaochengbei/dema,num_dependents_deps.dev:1 github.com/zhaochengpro/publicchain_go,num_dependents_deps.dev:0 github.com/zhaochuan1992/limon-design,num_dependents_deps.dev:0 +github.com/zhaochunqi/starred-to-logseq-action, github.com/zhaochy1990/essential,num_dependents_deps.dev:0 github.com/zhaochy1990/fabric-ca-kvs-mongo,num_dependents_deps.dev:0 github.com/zhaochy1990/fabric-sdk-kvs-mongo,num_dependents_deps.dev:0 @@ -1243758,6 +1265804,7 @@ github.com/zhaoqinghao/egg-view-jade,num_dependents_deps.dev:0 github.com/zhaoqinghao/sd-cropper,num_dependents_deps.dev:0 github.com/zhaoqinghao/sd-quill,num_dependents_deps.dev:0 github.com/zhaoqinghao/test,num_dependents_deps.dev:0 +github.com/zhaoqiu-china/install-aliyun-ossutil, github.com/zhaoqize/easy-dict,num_dependents_deps.dev:0 github.com/zhaoqize/easy-rollback,num_dependents_deps.dev:0 github.com/zhaoqize/generate-json-schema,num_dependents_deps.dev:0 @@ -1243987,6 +1266034,7 @@ github.com/zhaparoff/xrm-alerts, github.com/zhardie/pylon,num_dependents_deps.dev:0 github.com/zharikovpro/airtable-backup,num_dependents_deps.dev:0 github.com/zharikovpro/wave-pathfinder,num_dependents_deps.dev:0 +github.com/zharinov/clj-toolbox, github.com/zharkov-eu/bunyan-mongodb,num_dependents_deps.dev:0 github.com/zharkov-eu/cross-vars,num_dependents_deps.dev:0 github.com/zharkov-eu/di.ts,num_dependents_deps.dev:0 @@ -1244049,6 +1266097,7 @@ github.com/zheaoli/go_aes_ecb,num_dependents_deps.dev:0 github.com/zhebrak/django-beatle, github.com/zhebrak/raftos, github.com/zhecheng-zx/zkdj-gulp-cli,num_dependents_deps.dev:0 +github.com/zhecks/lark-pr-notify-action, github.com/zheeeng/Roundation,num_dependents_deps.dev:0 github.com/zheeeng/cli-fooks,num_dependents_deps.dev:0 github.com/zheeeng/cookielesscookies,num_dependents_deps.dev:0 @@ -1244108,6 +1266157,7 @@ github.com/zheng-chuang/bduck,num_dependents_deps.dev:0 github.com/zheng-chuang/bduck-promise,num_dependents_deps.dev:0 github.com/zheng-chuang/blibee-tools,num_dependents_deps.dev:0 github.com/zheng-gao/ez_code, +github.com/zheng-jj/project-card-moved-notification-action, github.com/zheng-wang/apitestbase,num_dependents_deps.dev:0 github.com/zheng-wang/irontest,num_dependents_deps.dev:0 github.com/zheng-yongping/pry-doc-notebook,num_dependents_deps.dev:0 @@ -1244118,6 +1266168,7 @@ github.com/zheng1/nodebb-plugin-sso-wechat,num_dependents_deps.dev:0 github.com/zheng1/nodebb-plugin-sso-weibo-qingcloud,num_dependents_deps.dev:0 github.com/zheng93775/mysql-lock,num_dependents_deps.dev:0 github.com/zheng93775/spring-boot-starter-mysql-lock,num_dependents_deps.dev:0 +github.com/zhengbangbo/update-repository-description, github.com/zhengbigbig/vue-gulu-demo,num_dependents_deps.dev:0 github.com/zhengboah/node-easy-mysql,num_dependents_deps.dev:0 github.com/zhengcan/gulp-predefined-tasks,num_dependents_deps.dev:0 @@ -1244341,6 +1266392,7 @@ github.com/zhennann/egg-born-template-module,num_dependents_deps.dev:0 github.com/zhennann/egg-born-template-module-business,num_dependents_deps.dev:0 github.com/zhennann/egg-born-template-module-front,num_dependents_deps.dev:0 github.com/zhennann/framework7-vue,num_dependents_deps.dev:2 +github.com/zhennann/jsdoc-action, github.com/zhennann/markdown,num_dependents_deps.dev:312 github.com/zhennann/markdown-it-block,num_dependents_deps.dev:312 github.com/zhennann/markdown-it-cabloycmstag,num_dependents_deps.dev:0 @@ -1244380,6 +1266432,7 @@ github.com/zhenyong/gulp-append-url-version,num_dependents_deps.dev:0 github.com/zhenyong/hexo-filter-file-link,num_dependents_deps.dev:0 github.com/zhenyong/vue-prop-types,num_dependents_deps.dev:0 github.com/zhenyong/webpack-stable-module-id-and-hash,num_dependents_deps.dev:6 +github.com/zhenyuWang/Upload-File-Action, github.com/zhenyuan2015/visop,num_dependents_deps.dev:0 github.com/zhenyuanlau/dingtalk-ruby,num_dependents_deps.dev:0 github.com/zhenyuanlau/growing-ruby-sdk,num_dependents_deps.dev:0 @@ -1244459,6 +1266512,7 @@ github.com/zhhyang/sigma-rn,num_dependents_deps.dev:0 github.com/zhhz/gulp-ga,num_dependents_deps.dev:0 github.com/zhhz/gulp-gsub,num_dependents_deps.dev:0 github.com/zhhz/z-resume,num_dependents_deps.dev:0 +github.com/zhi-wang-linux/render-plantuml-to-wiki-action, github.com/zhi-yi-huang/lcase, github.com/zhi6666/go-fitz,num_dependents_deps.dev:0 github.com/zhiaiing/react-table-modify,num_dependents_deps.dev:0 @@ -1244611,6 +1266665,7 @@ github.com/zhiqiangxu/poly,num_dependents_deps.dev:0 github.com/zhiqiangxu/relay-patch,num_dependents_deps.dev:0 github.com/zhiqiangxu/util,num_dependents_deps.dev:5 github.com/zhiqicloud/zqjs-cli,num_dependents_deps.dev:0 +github.com/zhiqingchen/taro-react-native-release, github.com/zhiqingxiao/calcpy, github.com/zhiqingxiao/deepmeta, github.com/zhiqingxiao/drl, @@ -1245269,6 +1267324,7 @@ github.com/zhouwenbin/postcss-clip-path,num_dependents_deps.dev:0 github.com/zhouwenbin/postcss-filters,num_dependents_deps.dev:0 github.com/zhouwenbin/postcss-polygon,num_dependents_deps.dev:0 github.com/zhouxf789/zhouxf999,num_dependents_deps.dev:0 +github.com/zhouxhere/sync-to-tencent-cos, github.com/zhouxiang1991/chain-assert, github.com/zhouxiang1991/eslint-config-node-project, github.com/zhouxiang1991/fetch-improve, @@ -1245390,6 +1267446,7 @@ github.com/zhr7777777/go_03,num_dependents_deps.dev:0 github.com/zhr85210078/node-mongodb-es-connector,num_dependents_deps.dev:0 github.com/zhranklin/scala-tricks,num_dependents_deps.dev:0 github.com/zhreshold/autocfg, +github.com/zhreshold/python-wheels-manylinux-build, github.com/zhrln/datauri,num_dependents_deps.dev:0 github.com/zhrln/gulp-ngm-datauri,num_dependents_deps.dev:0 github.com/zhrln/gulp-umdwrap,num_dependents_deps.dev:0 @@ -1245455,6 +1267512,7 @@ github.com/zhu168/goscan,num_dependents_deps.dev:0 github.com/zhu18/anov-core,num_dependents_deps.dev:0 github.com/zhu18/map3d,num_dependents_deps.dev:0 github.com/zhu327/doge, +github.com/zhu5201314/DockerContainer_action, github.com/zhu5439peng/aliyun-tablestore-helper,num_dependents_deps.dev:0 github.com/zhu5439peng/game,num_dependents_deps.dev:0 github.com/zhuah/sflag,num_dependents_deps.dev:0 @@ -1245676,6 +1267734,8 @@ github.com/zhulik/aiotractive, github.com/zhulik/call_detector, github.com/zhulik/grumlin,num_dependents_deps.dev:0 github.com/zhulik/ractor_pool,num_dependents_deps.dev:0 +github.com/zhulik/redis-action, +github.com/zhulik/setup-kinesis, github.com/zhuliminl/RecyclerList,num_dependents_deps.dev:0 github.com/zhuliminl/react-native-waterfallList,num_dependents_deps.dev:0 github.com/zhulinwei/go-dc,num_dependents_deps.dev:0 @@ -1245856,6 +1267916,7 @@ github.com/zhuzhuor/cldict, github.com/zhuzhuor/saedeploy, github.com/zhuzhuppx/zhuzhuui,num_dependents_deps.dev:0 github.com/zhuzi0125/happy-ui,num_dependents_deps.dev:0 +github.com/zhuzichu520/inno-setup-action, github.com/zhuzilin/NeZha, github.com/zhuziyu/egg-router,num_dependents_deps.dev:0 github.com/zhuzongzhen/sshr,num_dependents_deps.dev:0 @@ -1245907,6 +1267968,7 @@ github.com/zhwei820/gtime,num_dependents_deps.dev:0 github.com/zhwei820/tldextract,num_dependents_deps.dev:0 github.com/zhx1586/leetcode,num_dependents_deps.dev:0 github.com/zhxchen17/homebridge-nest-google,num_dependents_deps.dev:0 +github.com/zhxiaogg/cargo-static-build, github.com/zhxiaogg/kcom,num_dependents_deps.dev:0 github.com/zhxiaom5/doozer,num_dependents_deps.dev:0 github.com/zhxiaom5/ganda,num_dependents_deps.dev:0 @@ -1245983,6 +1268045,7 @@ github.com/zhzxang/sketch-fetch,num_dependents_deps.dev:0 github.com/zhzxang/sketch-fetch-complete, github.com/zhzxang/sketch-module-web-view,num_dependents_deps.dev:0 github.com/zhzyker/dismap,num_dependents_deps.dev:0 +github.com/zi-gae/frontend-bot, github.com/zi-shane/dlms-crypto,num_dependents_deps.dev:0 github.com/zi9o/typeorm-adapter,num_dependents_deps.dev:0 github.com/ziaadini/nuxt-perfect-cache,num_dependents_deps.dev:0 @@ -1246225,6 +1268288,7 @@ github.com/zigbeer/zigbeer,num_dependents_deps.dev:4 github.com/zigbeer/zive,num_dependents_deps.dev:6 github.com/zigbeer/zstack-constants,num_dependents_deps.dev:6 github.com/zigbeer/zstack-id, +github.com/zigdi3/pull-request-updater, github.com/zigenzoog/gonn,num_dependents_deps.dev:0 github.com/ziggi/dom-parents,num_dependents_deps.dev:0 github.com/zigguratvertigo/smallpt-rs,num_dependents_deps.dev:0 @@ -1246263,6 +1268327,8 @@ github.com/zigpy/zigpy-xbee, github.com/zigpy/zigpy-zigate, github.com/zigpy/zigpy-znp, github.com/zigtools/zls,criticality_score:0.382670 +github.com/ziguilp/docker-build-push, +github.com/ziguilp/rancher-deploy-action, github.com/zihangJiang/TokenLabeling, github.com/zihangdai/xlnet,Google github.com/zihany/golanglearn,num_dependents_deps.dev:0 @@ -1246287,6 +1268353,7 @@ github.com/ziishaned/dumper.js, github.com/ziishaned/emoji-awesome, github.com/ziishaned/git-collab,num_dependents_deps.dev:0 github.com/ziishaned/git-dld,num_dependents_deps.dev:0 +github.com/ziishaned/jest-reporter-action, github.com/ziishaned/learn-regex,criticality_score:0.383640 github.com/ziishaned/wifi-password,num_dependents_deps.dev:0 github.com/ziitar/umi-plugin-rebuild,num_dependents_deps.dev:0 @@ -1246424,6 +1268491,7 @@ github.com/zilurrane/lc-ant-react,num_dependents_deps.dev:0 github.com/zilurrane/react-native-video-viewer,num_dependents_deps.dev:0 github.com/zilurrane/redux-persist-filesystem-storage,num_dependents_deps.dev:0 github.com/zilurrane/rnpg,num_dependents_deps.dev:0 +github.com/zilurrane/whatsapp-actions, github.com/ziluvatar/node-xml-buffer-tostring,num_dependents_deps.dev:0 github.com/zilverline/ns-api,num_dependents_deps.dev:0 github.com/zilverline/react,num_dependents_deps.dev:0 @@ -1246439,6 +1268507,7 @@ github.com/zimbatm/mdsh,num_dependents_deps.dev:0 github.com/zimbatm/namespace.rb,num_dependents_deps.dev:0 github.com/zimbatm/socketmaster,criticality_score:0.304010 github.com/zimbatm/vagrant-nixos-plugin,num_dependents_deps.dev:0 +github.com/zimbres/git-sync, github.com/zimeon/iiif, github.com/zimeon/negotiator2, github.com/zimeon/ocfl-py, @@ -1246541,10 +1268610,14 @@ github.com/zingdom/zing-relay,num_dependents_deps.dev:0 github.com/zinggg/powercash21,num_dependents_deps.dev:0 github.com/zinggrid/zinggrid, github.com/zingi/node-sudpee,num_dependents_deps.dev:0 +github.com/zingimmick/ecs-action, +github.com/zingimmick/github-action-get-current-tag, +github.com/zingimmick/rector-action, github.com/zingp/leetcode-go,num_dependents_deps.dev:0 github.com/zingsono/egg-ms-eureka,num_dependents_deps.dev:0 github.com/zingsono/eureka-nodejs-client,num_dependents_deps.dev:0 github.com/zingsono/space,num_dependents_deps.dev:0 +github.com/zinh/ftp-uploader-action, github.com/zinho02/go-jose,num_dependents_deps.dev:0 github.com/zinho02/lego,num_dependents_deps.dev:0 github.com/zinic/aptly,num_dependents_deps.dev:0 @@ -1246620,6 +1268693,7 @@ github.com/zinw/zPlayer,num_dependents_deps.dev:0 github.com/zinzinday/nestjs-authy,num_dependents_deps.dev:0 github.com/zio-olim/test,num_dependents_deps.dev:0 github.com/zio/delegate,num_dependents_deps.dev:0 +github.com/zio/generate-github-app-token, github.com/zio/interop-cats,num_dependents_deps.dev:280 github.com/zio/interop-future,num_dependents_deps.dev:0 github.com/zio/interop-guava,num_dependents_deps.dev:0 @@ -1246851,6 +1268925,7 @@ github.com/zirconium-n/OFE, github.com/zircote/swagger-php,criticality_score:0.567170 github.com/zireael13/capstone-archive,num_dependents_deps.dev:0 github.com/zirei/npm-test,num_dependents_deps.dev:0 +github.com/zirkelc/AdaGPT, github.com/zirkeldesign/tailwindcss-stuck-variant,num_dependents_deps.dev:0 github.com/zirman/suspenders-js,num_dependents_deps.dev:0 github.com/ziro-app/Messages,num_dependents_deps.dev:0 @@ -1246909,6 +1268984,7 @@ github.com/zishone/nisemongo,num_dependents_deps.dev:0 github.com/zisisadamos/nucleo-f411re,num_dependents_deps.dev:0 github.com/zisismaras/asyncme,num_dependents_deps.dev:0 github.com/zisismaras/easycomments,num_dependents_deps.dev:0 +github.com/zisismaras/marlin_auto_build, github.com/zisismaras/pipeproc,num_dependents_deps.dev:0 github.com/zisiszikos/ramify,num_dependents_deps.dev:0 github.com/zisten/libr.rs,num_dependents_deps.dev:0 @@ -1246966,6 +1269042,7 @@ github.com/zivezab/django-autograph, github.com/zivia/grove, github.com/zivile777/lodown,num_dependents_deps.dev:0 github.com/zivity/lunijs,num_dependents_deps.dev:0 +github.com/zivkaziv/circleci-trigger-github-action, github.com/zivkong/mavisjs,num_dependents_deps.dev:0 github.com/zivkong/react-native-dialogflow-hermes,num_dependents_deps.dev:0 github.com/zivl/gulp-css-usage,num_dependents_deps.dev:0 @@ -1247181,6 +1269258,7 @@ github.com/zjj1991/quorum,num_dependents_deps.dev:0 github.com/zjj1997/wx-color-picker,num_dependents_deps.dev:0 github.com/zjj2wry/loki,num_dependents_deps.dev:0 github.com/zjjaxx/zjj-webpack-cli,num_dependents_deps.dev:0 +github.com/zjjfly/hexo-action, github.com/zjjiang2/project-checkurl,num_dependents_deps.dev:0 github.com/zjjjjjjjjjjd/pdfjs-dist,num_dependents_deps.dev:0 github.com/zjjjjjjjjjjd/react-native-image-zoom,num_dependents_deps.dev:0 @@ -1247205,6 +1269283,7 @@ github.com/zjmnssy/pcagent,num_dependents_deps.dev:0 github.com/zjmnssy/protos,num_dependents_deps.dev:0 github.com/zjmorgan/rmc-discord, github.com/zjn-zjn/ice,num_dependents_deps.dev:21 +github.com/zjns/telegram-bot-server, github.com/zjohn77/corpus4classify, github.com/zjohn77/inflame, github.com/zjohn77/retrieval,num_dependents_deps.dev:0 @@ -1247234,11 +1269313,14 @@ github.com/zjurelinac/East, github.com/zjutjh/info-backend,num_dependents_deps.dev:0 github.com/zjutkz/NotNull,num_dependents_deps.dev:0 github.com/zjutszl/github-actions-usage-display,num_dependents_deps.dev:0 +github.com/zjutszl/my-cool-action, +github.com/zjutszl/repo-permission-check, github.com/zjutszl/soso-ui,num_dependents_deps.dev:0 github.com/zjuwwq/browserify-html2string,num_dependents_deps.dev:0 github.com/zjuwwq/injectorjs,num_dependents_deps.dev:0 github.com/zjuwwq/nejt,num_dependents_deps.dev:0 github.com/zjuxumang/PyFace, +github.com/zjuyk/pkgbuild-aur, github.com/zjw1918/cordova-plugin-baidugeolocation,num_dependents_deps.dev:0 github.com/zjw505104341/ocrimg, github.com/zjwWhisher/nodejs,num_dependents_deps.dev:0 @@ -1247589,12 +1269671,15 @@ github.com/zkochan/yaml-or-json,num_dependents_deps.dev:0 github.com/zkochan/zen-push,num_dependents_deps.dev:88 github.com/zkochan/zx,num_dependents_deps.dev:0 github.com/zkonge/rtea, +github.com/zkoppert/advanced-security-enforcer, +github.com/zkoppert/innersource-crawler, github.com/zkoss/zk,criticality_score:0.613200 github.com/zkoss/zkless-engine, github.com/zkoss/zsoup,num_dependents_deps.dev:134 github.com/zkovari/gradle-changelog-automation-plugin,num_dependents_deps.dev:0 github.com/zkpki/zkpki,num_dependents_deps.dev:0 github.com/zkpursuit/kaka-core,num_dependents_deps.dev:0 +github.com/zkqiang/tencent-cos-action, github.com/zkr-origin-data-dpt/ODtools, github.com/zkrhm/patronous, github.com/zkry/dep,num_dependents_deps.dev:0 @@ -1247697,6 +1269782,9 @@ github.com/zlatjs2/eslint-config,num_dependents_deps.dev:0 github.com/zlatjs2/eslint-config-zlatjs2,num_dependents_deps.dev:0 github.com/zlatjs2/stylelint-config,num_dependents_deps.dev:0 github.com/zlatko-minev/pyEPR, +github.com/zlatko-ms/envarfiles, +github.com/zlatko-ms/pycovcheck, +github.com/zlatko-ms/varfiletoenv, github.com/zlatkoc/flixbusapi, github.com/zlatnaspirala/audio-commander,num_dependents_deps.dev:0 github.com/zlatnaspirala/multi-touch-canvas-handler,num_dependents_deps.dev:0 @@ -1247730,6 +1269818,7 @@ github.com/zlegein/create-index,num_dependents_deps.dev:0 github.com/zlei123456/redux-promise-thunk,num_dependents_deps.dev:0 github.com/zleight1/tutim-js,num_dependents_deps.dev:0 github.com/zleight1/webpack-import-map-plugin,num_dependents_deps.dev:0 +github.com/zlepper/mssql-validator, github.com/zlepper/spriteron,num_dependents_deps.dev:0 github.com/zlex7/alpaca-trade-api-fixed, github.com/zlfnhmd/help-me-setup,num_dependents_deps.dev:0 @@ -1247868,6 +1269957,7 @@ github.com/zlu883/noodel-search,num_dependents_deps.dev:0 github.com/zlumer/json-tree-server, github.com/zlumer/tesm, github.com/zlurad/serp-parser,num_dependents_deps.dev:0 +github.com/zlus/action-extract-issues, github.com/zlus/gulp-babel-script,num_dependents_deps.dev:0 github.com/zlus/html-webpack-plugin-inner,num_dependents_deps.dev:0 github.com/zlus/wc,num_dependents_deps.dev:0 @@ -1248028,11 +1270118,22 @@ github.com/zmhenkel/DynaNode,num_dependents_deps.dev:0 github.com/zmhweb/sd-libs,num_dependents_deps.dev:0 github.com/zmian/Exception.io,num_dependents_deps.dev:0 github.com/zmian/xcore-express, +github.com/zmicro-design/action-docker-build, +github.com/zmicro-design/action-docker-image-meta, +github.com/zmicro-design/action-npm-publish, +github.com/zmicro-design/action-setup-docker, +github.com/zmicro-design/action-setup-gzssh, +github.com/zmicro-design/action-setup-node, +github.com/zmicro-design/action-setup-web-terminal, +github.com/zmicro-design/action-setup-zmicro, +github.com/zmicro-design/action-zmicro-package-ci, github.com/zmide/sketch_layertreeround,num_dependents_deps.dev:0 github.com/zmihaf/react-dibs,num_dependents_deps.dev:0 github.com/zmijevik/mysql-intermediate-type,num_dependents_deps.dev:0 github.com/zmiller91/python-lambda-packager, github.com/zmilojko/zwr-gem,num_dependents_deps.dev:0 +github.com/zmingxie/docker_buildx, +github.com/zmingxie/packer-ami-builder, github.com/zmisgod/gofun,num_dependents_deps.dev:0 github.com/zmister2016/MrDoc,criticality_score:0.312210 github.com/zmitchell/monarch,num_dependents_deps.dev:0 @@ -1248049,6 +1270150,7 @@ github.com/zmj97/mathjax-toolbar,num_dependents_deps.dev:0 github.com/zmk-c/go-gin-example,num_dependents_deps.dev:0 github.com/zmk-c/go-grpc-example,num_dependents_deps.dev:0 github.com/zmk-c/traffic_agent,num_dependents_deps.dev:0 +github.com/zmkfirmware/zephyr-west-action, github.com/zmkn/rollup-path,num_dependents_deps.dev:0 github.com/zmkn/rollup-string,num_dependents_deps.dev:0 github.com/zmkn/yyui-spinner,num_dependents_deps.dev:0 @@ -1248153,6 +1270255,7 @@ github.com/znck/keynote,num_dependents_deps.dev:0 github.com/znck/lazy-hydration,num_dependents_deps.dev:0 github.com/znck/lazy-image-component,num_dependents_deps.dev:0 github.com/znck/match, +github.com/znck/pnpm, github.com/znck/promised,num_dependents_deps.dev:0 github.com/znck/rollup-plugin-vue,num_dependents_deps.dev:14 github.com/znck/vue-developer-experience,"criticality_score:0.407650,num_dependents_deps.dev:2218" @@ -1248449,6 +1270552,7 @@ github.com/zoetrope/website-operator,num_dependents_deps.dev:0 github.com/zoexx/appcache-webpack-plugin,num_dependents_deps.dev:0 github.com/zoexx/delete-sourcemap-webpack-plugin,num_dependents_deps.dev:0 github.com/zoexx/gatsby-plugin-dsp-universal-pixel,num_dependents_deps.dev:0 +github.com/zoexx/github-action-json-file-properties, github.com/zoexx/react-recaptcha-hook,num_dependents_deps.dev:0 github.com/zoexx/webpack-path-rewriter,num_dependents_deps.dev:0 github.com/zoey-git/puma-ui,num_dependents_deps.dev:0 @@ -1248499,11 +1270603,14 @@ github.com/zofan/go-ulist,num_dependents_deps.dev:0 github.com/zofan/go-value,num_dependents_deps.dev:5 github.com/zofan/go-xmlre,num_dependents_deps.dev:1 github.com/zofe/rapyd-laravel,criticality_score:0.462690 +github.com/zofrex/mirror-branch, github.com/zoftdev/go-gin-prometheus,num_dependents_deps.dev:0 +github.com/zoftoken/check-token-action, github.com/zofy/PyCalc, github.com/zogar1993/jsonkraken,num_dependents_deps.dev:0 github.com/zogar1993/misevi,num_dependents_deps.dev:0 github.com/zogoo/lets_bid,num_dependents_deps.dev:0 +github.com/zogot/kacl-parser, github.com/zogs/treevizu,num_dependents_deps.dev:0 github.com/zogyi/cvr100u,num_dependents_deps.dev:0 github.com/zoh/betfair-api-ng,num_dependents_deps.dev:0 @@ -1248551,6 +1270658,7 @@ github.com/zoho/zohocrm-scala-sdk-2.0,num_dependents_deps.dev:0 github.com/zohoMatt/pixelit-equidistant,num_dependents_deps.dev:0 github.com/zohoMatt/vue-access-control,num_dependents_deps.dev:0 github.com/zohooo/jekyde,num_dependents_deps.dev:0 +github.com/zoi-aoba/issue-convert-to-notion, github.com/zoidbb/zped, github.com/zoidbergZA/turtle-apps-node,num_dependents_deps.dev:0 github.com/zoidbergwill/RegistroBR, @@ -1248567,6 +1270675,8 @@ github.com/zoil/rosa-client,num_dependents_deps.dev:0 github.com/zoil/rosa-server,num_dependents_deps.dev:0 github.com/zoil/rosa-shared,num_dependents_deps.dev:0 github.com/zoisgr/zlibs,num_dependents_deps.dev:0 +github.com/zoispag/action-assign-milestone, +github.com/zoispag/action-s3-upload-artifact, github.com/zoispag/afm-rs,num_dependents_deps.dev:0 github.com/zoispag/amka-py, github.com/zoispag/amka-rs,num_dependents_deps.dev:0 @@ -1248619,6 +1270729,7 @@ github.com/zolem/effigy-fliphorizontal,num_dependents_deps.dev:0 github.com/zolem/effigy-flipvertical,num_dependents_deps.dev:0 github.com/zolem/effigy-sepia,num_dependents_deps.dev:0 github.com/zolem/effigy-sobel,num_dependents_deps.dev:0 +github.com/zolex/include-action, github.com/zoli-fischer/event-trigger,num_dependents_deps.dev:0 github.com/zoli-fischer/jqury,num_dependents_deps.dev:0 github.com/zoli-fischer/uploader,num_dependents_deps.dev:0 @@ -1248700,6 +1270811,7 @@ github.com/zombie110year/tiebamd, github.com/zombie110year/tproj-py, github.com/zombie6888/react-native-wol,num_dependents_deps.dev:0 github.com/zombieFox/nightTab,criticality_score:0.328670 +github.com/zombieJ/automerge-action, github.com/zombieJ/nvd3,num_dependents_deps.dev:0 github.com/zombieJ/react-ssr-checksum,num_dependents_deps.dev:0 github.com/zombiec0rn/zombie-node-format,num_dependents_deps.dev:0 @@ -1248749,6 +1270861,7 @@ github.com/zombiezen/go-sqlite3,num_dependents_deps.dev:0 github.com/zombiezen/graphql-server,num_dependents_deps.dev:0 github.com/zombiezen/postgrestest,num_dependents_deps.dev:0 github.com/zombiezen/sandpass,num_dependents_deps.dev:0 +github.com/zombiezen/setup-nix-cache-action, github.com/zombinary/gravity-aurora,num_dependents_deps.dev:0 github.com/zombispormedio/fizzbuzz-server,num_dependents_deps.dev:0 github.com/zombispormedio/mirror,num_dependents_deps.dev:0 @@ -1248872,6 +1270985,8 @@ github.com/zoneforzero/golang_practice,num_dependents_deps.dev:0 github.com/zonefuenf/homebridge-enocean-zonefuenf,num_dependents_deps.dev:0 github.com/zonekill61/discord-activity,num_dependents_deps.dev:0 github.com/zonemaster/zonemaster,criticality_score:0.489880 +github.com/zonemeen/netease-box, +github.com/zonemeen/netease-recent-actions, github.com/zonenetio/zonenetclient,num_dependents_deps.dev:0 github.com/zonenetio/zonenetrelay,num_dependents_deps.dev:0 github.com/zonenetio/zonenetserver,num_dependents_deps.dev:0 @@ -1249008,6 +1271123,7 @@ github.com/zoom/websdk,num_dependents_deps.dev:0 github.com/zoom/zoom-lib-node,num_dependents_deps.dev:0 github.com/zoom/zoomus-jssdk,num_dependents_deps.dev:0 github.com/zoomKoding/node-khaiii,num_dependents_deps.dev:0 +github.com/zoomchan-cxj/actions-license, github.com/zoomelectrico/react-dump,num_dependents_deps.dev:0 github.com/zoomio/inout,num_dependents_deps.dev:0 github.com/zoomio/stopwords,num_dependents_deps.dev:0 @@ -1249440,6 +1271556,8 @@ github.com/zosma180/jgloo,num_dependents_deps.dev:0 github.com/zosma180/three-lensflare-ts,num_dependents_deps.dev:0 github.com/zosman1/friendly-word-slug,num_dependents_deps.dev:0 github.com/zoso10/double_take,num_dependents_deps.dev:0 +github.com/zosocanuck/notation-venafi-csp-action, +github.com/zosocanuck/vsign-action, github.com/zostay/dev-tools,num_dependents_deps.dev:0 github.com/zostay/dotfiles-go,num_dependents_deps.dev:0 github.com/zostera/django-attrs, @@ -1249738,6 +1271856,7 @@ github.com/zoxjs/zox-react,num_dependents_deps.dev:0 github.com/zoxon/emitty,num_dependents_deps.dev:0 github.com/zoxon/littera,num_dependents_deps.dev:0 github.com/zoxzo/mybatis-generator-extend,num_dependents_deps.dev:0 +github.com/zoy-l/tauri-build-action, github.com/zoyazhu/leetcode,num_dependents_deps.dev:0 github.com/zoyi/awesome-domstorage,num_dependents_deps.dev:0 github.com/zoyi/channel-colors,num_dependents_deps.dev:0 @@ -1249984,6 +1272103,7 @@ github.com/zq99299/gitbook-plugin-page-footer-ex,num_dependents_deps.dev:0 github.com/zq99299/vuepress-plugin,num_dependents_deps.dev:0 github.com/zqad/simplediskimage, github.com/zqcard/kratos-service-base,num_dependents_deps.dev:0 +github.com/zqcccc/docker-image-version, github.com/zqchen-open/czbk-pay-sdk,num_dependents_deps.dev:0 github.com/zqcloveping/niu-express-bunyan-logger, github.com/zqfan/gitall, @@ -1250090,6 +1272210,9 @@ github.com/zrone/machinery,num_dependents_deps.dev:0 github.com/zrong/pyape, github.com/zrong/rookout, github.com/zrong/wiz2joplin, +github.com/zrosenbauer/slacker-action, +github.com/zrosenbauer/slacktion, +github.com/zrosenbauer/tls-monitor, github.com/zroty/debug-api,num_dependents_deps.dev:0 github.com/zrougamed/node-red-node-tigergraph, github.com/zrougamed/pyTigerGraph, @@ -1250173,6 +1272296,7 @@ github.com/zrthxn/xhrfetch-dev,num_dependents_deps.dev:0 github.com/zrubing/basic-vue-chat,num_dependents_deps.dev:0 github.com/zrubing/gtran-kmz,num_dependents_deps.dev:0 github.com/zrven/react-native-progress-timer,num_dependents_deps.dev:0 +github.com/zrwaite/SSHDockerPipeline, github.com/zrwsk/resilient-eureka,num_dependents_deps.dev:0 github.com/zrx318/mysdk,num_dependents_deps.dev:0 github.com/zry656565/JustJS,num_dependents_deps.dev:0 @@ -1250270,6 +1272394,8 @@ github.com/zsethna/OLGA, github.com/zsevic/fb-persistent-menu,num_dependents_deps.dev:0 github.com/zsevic/invert-rgb,num_dependents_deps.dev:0 github.com/zsevic/orbit-pdf,num_dependents_deps.dev:0 +github.com/zsfVishnu/apk-metric-upload, +github.com/zsfVishnu/apk-size-tracker, github.com/zsfarkas/ng2-alert-center,num_dependents_deps.dev:0 github.com/zsfarkas/raspi-view, github.com/zsgitkl/vtool,num_dependents_deps.dev:0 @@ -1250385,6 +1272511,8 @@ github.com/zslucky/pygments-css,num_dependents_deps.dev:0 github.com/zslucky/redux-fetch-middleware,num_dependents_deps.dev:0 github.com/zslucky/saybye,num_dependents_deps.dev:0 github.com/zsluedem/django-rholang-editor, +github.com/zslwyuan/cloc-badge-action, +github.com/zslwyuan/doxygen-action, github.com/zsmartex/pkg,num_dependents_deps.dev:0 github.com/zsmartex/rbtree-ts,num_dependents_deps.dev:0 github.com/zsmartsystems/com.zsmartsystems.zigbee,num_dependents_deps.dev:0 @@ -1250574,6 +1272702,7 @@ github.com/zt123123/koa2-tutorial,num_dependents_deps.dev:0 github.com/zt123123/zt-cli,num_dependents_deps.dev:0 github.com/zt2/http-proxy,num_dependents_deps.dev:0 github.com/zt28701087/gulo-vue,num_dependents_deps.dev:0 +github.com/zt4ff/auto-commenter, github.com/zt5/react-native-wifi-transfer,num_dependents_deps.dev:0 github.com/zt50tz/yandex-connect, github.com/zt50tz/yandex-pdd, @@ -1250863,6 +1272992,7 @@ github.com/zufardhiyaulhaq/opennetworkingweekly,num_dependents_deps.dev:0 github.com/zufardhiyaulhaq/openstackweekly,num_dependents_deps.dev:0 github.com/zufardhiyaulhaq/pvyos, github.com/zufardhiyaulhaq/rubyweekly,num_dependents_deps.dev:0 +github.com/zufardhiyaulhaq/setup-istioctl, github.com/zuffik/cucumber-generator,num_dependents_deps.dev:0 github.com/zuffik/ui,num_dependents_deps.dev:0 github.com/zufuliu/notepad2,criticality_score:0.448110 @@ -1250873,6 +1273003,7 @@ github.com/zugarzeeker/modern-express-joi,num_dependents_deps.dev:0 github.com/zugarzeeker/redux-modern-crud,num_dependents_deps.dev:0 github.com/zugarzeeker/timetable-calculator,num_dependents_deps.dev:0 github.com/zugarzeeker/yamroll,num_dependents_deps.dev:0 +github.com/zugazagoitia/minify-js, github.com/zugmc/mojapi, github.com/zugzwangbw/jazbewor-mdl,num_dependents_deps.dev:0 github.com/zuh0/pypasswd, @@ -1250977,6 +1273108,7 @@ github.com/zulily/react-dropzone-amd,num_dependents_deps.dev:0 github.com/zulily/tilegrid,num_dependents_deps.dev:0 github.com/zulip/docker-zulip,criticality_score:0.399860 github.com/zulip/fakeldap, +github.com/zulip/github-actions-zulip, github.com/zulip/hubot-zulip,num_dependents_deps.dev:0 github.com/zulip/python-zulip-api,criticality_score:0.550170 github.com/zulip/zulip,criticality_score:0.771670 @@ -1251139,6 +1273271,7 @@ github.com/zurb/motion-ui,num_dependents_deps.dev:8 github.com/zurb/panini,num_dependents_deps.dev:0 github.com/zurb/reactive-listener,num_dependents_deps.dev:0 github.com/zurb/responsive-tables,num_dependents_deps.dev:0 +github.com/zurb/sftp-upload-action, github.com/zurb/siphon-media-query,num_dependents_deps.dev:0 github.com/zurb/style-sherpa,num_dependents_deps.dev:0 github.com/zurb/tribute,"criticality_score:0.525790,num_dependents_deps.dev:8" @@ -1251296,6 +1273429,7 @@ github.com/zverok/wikipedia_ql, github.com/zveroy/node-eping,num_dependents_deps.dev:0 github.com/zveryansky/python-arulesviz, github.com/zveryansky/tas, +github.com/zvfvrv/docker-bpgpr, github.com/zvfvrv/flask-python-arango, github.com/zviadm/celo-devchain, github.com/zviadm/celogovernance,num_dependents_deps.dev:0 @@ -1251359,7 +1273493,9 @@ github.com/zw2582/ginlib,num_dependents_deps.dev:0 github.com/zwStar/amd-zip,num_dependents_deps.dev:0 github.com/zwacky/angular-emoji-flags,num_dependents_deps.dev:0 github.com/zwacky/angular-flippy,num_dependents_deps.dev:0 +github.com/zwacky/goodreads-profile-workflow, github.com/zwacky/isoCurrency,num_dependents_deps.dev:0 +github.com/zwacky/twitter-header-blog-posts-action, github.com/zwade/open-all,num_dependents_deps.dev:0 github.com/zwade/react-cast-sender, github.com/zwade/react-pwn, @@ -1251369,8 +1273505,12 @@ github.com/zwagner86/grunt-git-revisionify,num_dependents_deps.dev:0 github.com/zwagner86/grunt-slim-html,num_dependents_deps.dev:0 github.com/zwagner86/testcafe-reporter-slack-custom,num_dependents_deps.dev:0 github.com/zwaldeck/mollie,num_dependents_deps.dev:0 +github.com/zwaldowski/cspell-action, +github.com/zwaldowski/git-commit-action, github.com/zwaldowski/homebridge-anavi-infrared-aircon,num_dependents_deps.dev:0 github.com/zwaldowski/homebridge-satellite-fan,num_dependents_deps.dev:0 +github.com/zwaldowski/match-label-action, +github.com/zwaldowski/semver-release-action, github.com/zwand19/CordovaAppleMusic,num_dependents_deps.dev:0 github.com/zwang/v8go,num_dependents_deps.dev:0 github.com/zwang123/sphinx-autodoc-defaultargs, @@ -1251502,6 +1273642,7 @@ github.com/zwhu/tailjson,num_dependents_deps.dev:0 github.com/zwhu/walk-dir-tree,num_dependents_deps.dev:0 github.com/zwicker-group/py-droplets, github.com/zwicker-group/py-pde, +github.com/zwickidtek/checkout-anywhere, github.com/zwickytransientfacility/ztf-go-archivist,num_dependents_deps.dev:0 github.com/zwidny/zutils, github.com/zwieberl/matrix_bot_api,num_dependents_deps.dev:0 @@ -1251545,6 +1273686,7 @@ github.com/zwolf21/django-slicepaginator, github.com/zwolf21/getube, github.com/zwopir/tollbooth,num_dependents_deps.dev:0 github.com/zwparchman/rlua-table-derive,num_dependents_deps.dev:0 +github.com/zwping/fork-sync, github.com/zwq8299174/alloytouch-transformjs,num_dependents_deps.dev:0 github.com/zwq8299174/ionic-alpha-scroll,num_dependents_deps.dev:0 github.com/zwq8299174/ionic2-ext,num_dependents_deps.dev:0 @@ -1251905,6 +1274047,8 @@ github.com/zxyang625/grpc_demo,num_dependents_deps.dev:0 github.com/zxyang625/raw_goweb,num_dependents_deps.dev:0 github.com/zxyao145/OlHoneycomb,num_dependents_deps.dev:0 github.com/zxyle/crudlib, +github.com/zxyle/publish-gae-action, +github.com/zxyle/write-env-action, github.com/zxyle/zxutils, github.com/zxysilent/fish,num_dependents_deps.dev:0 github.com/zxysilent/logs,num_dependents_deps.dev:0 @@ -1251984,6 +1274128,13 @@ github.com/zy84338719/upftp,num_dependents_deps.dev:0 github.com/zyTheGit/vehicleKeyborad,num_dependents_deps.dev:0 github.com/zya/beet.js,num_dependents_deps.dev:0 github.com/zya/bjorklund,num_dependents_deps.dev:0 +github.com/zyactions/dotnet-format, +github.com/zyactions/dotnet-lint, +github.com/zyactions/dotnet-restore, +github.com/zyactions/dotnet-setup, +github.com/zyactions/glob, +github.com/zyactions/update-semver, +github.com/zyactions/verify-changed-files, github.com/zyallers/zgin,num_dependents_deps.dev:0 github.com/zyangpointer/starwars-names,num_dependents_deps.dev:0 github.com/zyanhui/fabric,num_dependents_deps.dev:0 @@ -1251998,6 +1274149,9 @@ github.com/zyberspace/newClass.js,num_dependents_deps.dev:0 github.com/zyberspace/teamspeak-wachhund,num_dependents_deps.dev:0 github.com/zybingo/md-react-loader,num_dependents_deps.dev:0 github.com/zybn2004/i-mysql,num_dependents_deps.dev:0 +github.com/zyborg/dotnet-tests-report, +github.com/zyborg/gh-action-buildnum, +github.com/zyborg/pester-tests-report, github.com/zybron/node-red-contrib-stoptimer3,num_dependents_deps.dev:0 github.com/zycelium/python-ansiformat, github.com/zycelium/python-dataconfig, @@ -1252030,6 +1274184,7 @@ github.com/zyedidia/perf,num_dependents_deps.dev:0 github.com/zyedidia/perforator,num_dependents_deps.dev:0 github.com/zyedidia/pty,num_dependents_deps.dev:8 github.com/zyedidia/rope,num_dependents_deps.dev:0 +github.com/zyedidia/setup-knit, github.com/zyedidia/tcell,num_dependents_deps.dev:0 github.com/zyeeda/cde.io,num_dependents_deps.dev:0 github.com/zyeeda/colorvest,num_dependents_deps.dev:0 @@ -1252129,6 +1274284,7 @@ github.com/zyl9393/justzip,num_dependents_deps.dev:0 github.com/zyl98746711/study-go,num_dependents_deps.dev:0 github.com/zyla/git-commit-stream,num_dependents_deps.dev:0 github.com/zyldgd/redis-z,num_dependents_deps.dev:0 +github.com/zylele/social-readme, github.com/zyleu/athenatos3, github.com/zylkowski/sssf,num_dependents_deps.dev:0 github.com/zylo117/Yet-Another-EfficientDet-Pytorch,criticality_score:0.433080 @@ -1252142,6 +1274298,7 @@ github.com/zyltrex/golang-pool-example,num_dependents_deps.dev:0 github.com/zym2525/rn-components,num_dependents_deps.dev:0 github.com/zym2525/template,num_dependents_deps.dev:0 github.com/zym2525/zerod-cli,num_dependents_deps.dev:0 +github.com/zymap/bot, github.com/zymask/found-work-test,num_dependents_deps.dev:0 github.com/zyme-xd/soundtools,num_dependents_deps.dev:0 github.com/zymeworks/gulp-pathway,num_dependents_deps.dev:0 @@ -1252403,6 +1274560,8 @@ github.com/zzacharo/invenio-forms,num_dependents_deps.dev:0 github.com/zzak/box,num_dependents_deps.dev:0 github.com/zzak/glorify,num_dependents_deps.dev:0 github.com/zzak/sdoc,criticality_score:0.507870 +github.com/zzamboni/elvish-installer, +github.com/zzamboni/leanpub-watch-action, github.com/zzarcon/Leaflet.smoothzoom,num_dependents_deps.dev:0 github.com/zzarcon/animotion,num_dependents_deps.dev:0 github.com/zzarcon/asynz,num_dependents_deps.dev:0 @@ -1252548,6 +1274707,7 @@ github.com/zzhtom/fly,num_dependents_deps.dev:0 github.com/zzhua/req,num_dependents_deps.dev:0 github.com/zzhwln/zzh, github.com/zziger/esbuild-ifdef, +github.com/zziger/url-shortener-action, github.com/zziiiskyiiizz/node.js.package.censor,num_dependents_deps.dev:0 github.com/zzili/ttk-edf-app-dashboard-monitor,num_dependents_deps.dev:0 github.com/zzish/react-latex,num_dependents_deps.dev:18 @@ -1252776,6 +1274936,7 @@ github.com/zzzzbw/doodle,num_dependents_deps.dev:0 github.com/zzzze/animation-scene,num_dependents_deps.dev:0 github.com/zzzze/gitbook-plugin-folding-content,num_dependents_deps.dev:0 github.com/zzzze/shape-drawing,num_dependents_deps.dev:2 +github.com/zzzze/webhook-trigger, github.com/zzzzls/python_authentiator, github.com/zzzzlzzzz/jackfruit, github.com/zzzzodn/abcd,num_dependents_deps.dev:0 diff --git a/cron/k8s/worker.yaml b/cron/k8s/worker.yaml index 2441c624f0e1..d565968eb999 100644 --- a/cron/k8s/worker.yaml +++ b/cron/k8s/worker.yaml @@ -17,7 +17,7 @@ kind: Deployment metadata: name: scorecard-batch-worker spec: - replicas: 12 + replicas: 14 selector: matchLabels: app.kubernetes.io/name: worker diff --git a/finding/finding.go b/finding/finding.go index 761fb876f16b..a2df9b6472c7 100644 --- a/finding/finding.go +++ b/finding/finding.go @@ -45,14 +45,12 @@ const ( ) // Location represents the location of a finding. -// -//nolint:govet type Location struct { - Type FileType `json:"type"` - Path string `json:"path"` LineStart *uint `json:"lineStart,omitempty"` LineEnd *uint `json:"lineEnd,omitempty"` Snippet *string `json:"snippet,omitempty"` + Path string `json:"path"` + Type FileType `json:"type"` } // Outcome is the result of a finding. @@ -96,23 +94,19 @@ const ( ) // Finding represents a finding. -// -//nolint:govet type Finding struct { - Probe string `json:"probe"` - Outcome Outcome `json:"outcome"` - Message string `json:"message"` Location *Location `json:"location,omitempty"` Remediation *probe.Remediation `json:"remediation,omitempty"` Values map[string]int `json:"values,omitempty"` + Probe string `json:"probe"` + Message string `json:"message"` + Outcome Outcome `json:"outcome"` } // AnonymousFinding is a finding without a corerpsonding probe ID. type AnonymousFinding struct { - Finding - // Remove the probe ID from - // the structure until the probes are GA. Probe string `json:"probe,omitempty"` + Finding } var errInvalid = errors.New("invalid") diff --git a/finding/finding_test.go b/finding/finding_test.go index 33d792e97873..94d80455cec9 100644 --- a/finding/finding_test.go +++ b/finding/finding_test.go @@ -38,15 +38,14 @@ func Test_FromBytes(t *testing.T) { positiveOutcome := OutcomePositive negativeOutcome := OutcomeNegative t.Parallel() - //nolint:govet tests := []struct { - name string - id string - path string - outcome *Outcome err error + outcome *Outcome metadata map[string]string finding *Finding + name string + id string + path string }{ { name: "effort low", @@ -205,10 +204,10 @@ func TestOutcome_UnmarshalYAML(t *testing.T) { type args struct { n *yaml.Node } - tests := []struct { //nolint:govet + tests := []struct { + args args name string wantOutcome Outcome - args args wantErr bool }{ { diff --git a/go.mod b/go.mod index bb5e4b98b929..92f0acb7f09d 100644 --- a/go.mod +++ b/go.mod @@ -4,20 +4,20 @@ go 1.21 require ( cloud.google.com/go/bigquery v1.57.1 - cloud.google.com/go/monitoring v1.16.1 // indirect + cloud.google.com/go/monitoring v1.16.3 // indirect cloud.google.com/go/pubsub v1.33.0 - cloud.google.com/go/trace v1.10.2 // indirect + cloud.google.com/go/trace v1.10.4 // indirect contrib.go.opencensus.io/exporter/stackdriver v0.13.14 github.com/bombsimon/logrusr/v2 v2.0.1 - github.com/bradleyfalzon/ghinstallation/v2 v2.8.0 + github.com/bradleyfalzon/ghinstallation/v2 v2.9.0 github.com/go-git/go-git/v5 v5.11.0 - github.com/go-logr/logr v1.3.0 + github.com/go-logr/logr v1.4.1 github.com/golang/mock v1.6.0 github.com/google/go-cmp v0.6.0 github.com/google/go-containerregistry v0.17.0 github.com/grafeas/kritis v0.2.3-0.20210120183821-faeba81c520c github.com/h2non/filetype v1.1.3 - github.com/jszwec/csvutil v1.8.0 + github.com/jszwec/csvutil v1.9.0 github.com/moby/buildkit v0.12.4 github.com/olekukonko/tablewriter v0.0.5 github.com/onsi/gomega v1.30.0 @@ -28,11 +28,11 @@ require ( github.com/spf13/cobra v1.8.0 github.com/xeipuuv/gojsonschema v1.2.0 go.opencensus.io v0.24.0 - gocloud.dev v0.34.0 + gocloud.dev v0.36.0 golang.org/x/text v0.14.0 - golang.org/x/tools v0.15.0 // indirect - google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b // indirect - google.golang.org/protobuf v1.31.0 + golang.org/x/tools v0.17.0 // indirect + google.golang.org/genproto v0.0.0-20231120223509-83a465c0220f // indirect + google.golang.org/protobuf v1.32.0 gopkg.in/yaml.v2 v2.4.0 gopkg.in/yaml.v3 v3.0.1 mvdan.cc/sh/v3 v3.7.0 @@ -43,26 +43,26 @@ require ( github.com/caarlos0/env/v6 v6.10.0 github.com/gobwas/glob v0.2.3 github.com/google/go-github/v53 v53.2.0 - github.com/google/osv-scanner v1.5.0 + github.com/google/osv-scanner v1.6.0 github.com/mcuadros/go-jsonschema-generator v0.0.0-20200330054847-ba7a369d4303 - github.com/onsi/ginkgo/v2 v2.13.2 + github.com/onsi/ginkgo/v2 v2.14.0 github.com/otiai10/copy v1.14.0 sigs.k8s.io/release-utils v0.6.0 ) require ( cloud.google.com/go/compute/metadata v0.2.3 // indirect - cloud.google.com/go/containeranalysis v0.11.1 // indirect - cloud.google.com/go/kms v1.15.3 // indirect + cloud.google.com/go/containeranalysis v0.11.3 // indirect + cloud.google.com/go/kms v1.15.5 // indirect dario.cat/mergo v1.0.0 // indirect - deps.dev/api/v3alpha v0.0.0-20231114023923-e40c4d5c34e5 // indirect + deps.dev/api/v3alpha v0.0.0-20240109042716-00b51ef52ece // indirect github.com/BurntSushi/toml v1.3.2 // indirect - github.com/CycloneDX/cyclonedx-go v0.7.2 // indirect + github.com/CycloneDX/cyclonedx-go v0.8.0 // indirect github.com/anchore/go-struct-converter v0.0.0-20230627203149-c72ef8859ca9 // indirect github.com/andybalholm/brotli v1.0.4 // indirect github.com/apache/arrow/go/v12 v12.0.0 // indirect github.com/apache/thrift v0.16.0 // indirect - github.com/cloudflare/circl v1.3.3 // indirect + github.com/cloudflare/circl v1.3.7 // indirect github.com/containerd/typeurl/v2 v2.1.1 // indirect github.com/cyphar/filepath-securejoin v0.2.4 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect @@ -75,15 +75,15 @@ require ( github.com/golang/glog v1.1.2 // indirect github.com/golang/snappy v0.0.4 // indirect github.com/google/flatbuffers v2.0.8+incompatible // indirect - github.com/google/gnostic v0.6.9 // indirect - github.com/google/go-github/v56 v56.0.0 // indirect + github.com/google/gnostic-models v0.6.8 // indirect + github.com/google/go-github/v57 v57.0.0 // indirect github.com/google/gofuzz v1.2.0 // indirect - github.com/google/pprof v0.0.0-20230705174524-200ffdc848b8 // indirect + github.com/google/pprof v0.0.0-20230926050212-f7f687d19a98 // indirect github.com/google/s2a-go v0.1.7 // indirect github.com/hashicorp/go-cleanhttp v0.5.2 // indirect github.com/hashicorp/go-retryablehttp v0.7.4 // indirect github.com/ianlancetaylor/demangle v0.0.0-20231023195312-e2daf7ba7156 // indirect - github.com/jedib0t/go-pretty/v6 v6.4.9 // indirect + github.com/jedib0t/go-pretty/v6 v6.5.3 // indirect github.com/josharian/intern v1.0.0 // indirect github.com/json-iterator/go v1.1.12 // indirect github.com/klauspost/asmfmt v1.3.2 // indirect @@ -99,24 +99,24 @@ require ( github.com/pandatix/go-cvss v0.6.2 // indirect github.com/pierrec/lz4/v4 v4.1.15 // indirect github.com/pjbgf/sha1cd v0.3.0 // indirect - github.com/prometheus/prometheus v0.46.0 // indirect + github.com/prometheus/prometheus v0.48.0 // indirect github.com/robfig/cron/v3 v3.0.1 // indirect github.com/skeema/knownhosts v1.2.1 // indirect github.com/spdx/gordf v0.0.0-20221230105357-b735bd5aac89 // indirect github.com/spdx/tools-golang v0.5.3 // indirect github.com/zeebo/xxh3 v1.0.2 // indirect golang.org/x/mod v0.14.0 // indirect - golang.org/x/term v0.15.0 // indirect - golang.org/x/time v0.3.0 // indirect + golang.org/x/term v0.16.0 // indirect + golang.org/x/time v0.4.0 // indirect golang.org/x/vuln v1.0.1 // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20231120223509-83a465c0220f // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f // indirect gopkg.in/inf.v0 v0.9.1 // indirect - k8s.io/api v0.27.3 // indirect - k8s.io/apimachinery v0.27.3 // indirect - k8s.io/client-go v0.27.3 // indirect + k8s.io/api v0.28.2 // indirect + k8s.io/apimachinery v0.28.2 // indirect + k8s.io/client-go v0.28.2 // indirect k8s.io/klog/v2 v2.100.1 // indirect - k8s.io/kube-openapi v0.0.0-20230525220651-2546d827e515 // indirect + k8s.io/kube-openapi v0.0.0-20230717233707-2695361300d9 // indirect k8s.io/utils v0.0.0-20230711102312-30195339c3c7 // indirect sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect sigs.k8s.io/structured-merge-diff/v4 v4.3.0 // indirect @@ -124,13 +124,13 @@ require ( ) require ( - cloud.google.com/go v0.110.8 // indirect - cloud.google.com/go/compute v1.23.1 // indirect - cloud.google.com/go/iam v1.1.3 // indirect - cloud.google.com/go/storage v1.31.0 // indirect + cloud.google.com/go v0.110.10 // indirect + cloud.google.com/go/compute v1.23.3 // indirect + cloud.google.com/go/iam v1.1.5 // indirect + cloud.google.com/go/storage v1.35.1 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect github.com/ProtonMail/go-crypto v0.0.0-20230923063757-afb1ddc0824c // indirect - github.com/aws/aws-sdk-go v1.44.314 // indirect + github.com/aws/aws-sdk-go v1.49.0 // indirect github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be // indirect github.com/containerd/stargz-snapshotter/estargz v0.14.3 // indirect @@ -168,19 +168,19 @@ require ( github.com/sergi/go-diff v1.3.1 // indirect github.com/spf13/pflag v1.0.5 // indirect github.com/vbatts/tar-split v0.11.3 // indirect - github.com/xanzy/go-gitlab v0.94.0 + github.com/xanzy/go-gitlab v0.95.2 github.com/xanzy/ssh-agent v0.3.3 // indirect github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect - golang.org/x/crypto v0.17.0 // indirect - golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect - golang.org/x/net v0.19.0 // indirect - golang.org/x/oauth2 v0.15.0 - golang.org/x/sync v0.5.0 // indirect - golang.org/x/sys v0.15.0 // indirect - golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect - google.golang.org/api v0.149.0 // indirect - google.golang.org/appengine v1.6.7 // indirect - google.golang.org/grpc v1.59.0 // indirect + golang.org/x/crypto v0.18.0 // indirect + golang.org/x/exp v0.0.0-20240112132812-db7319d0e0e3 // indirect + golang.org/x/net v0.20.0 // indirect + golang.org/x/oauth2 v0.16.0 + golang.org/x/sync v0.6.0 // indirect + golang.org/x/sys v0.16.0 // indirect + golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect + google.golang.org/api v0.151.0 // indirect + google.golang.org/appengine v1.6.8 // indirect + google.golang.org/grpc v1.60.1 // indirect gopkg.in/warnings.v0 v0.1.2 // indirect ) diff --git a/go.sum b/go.sum index 30f30002dd53..292b641fc9af 100644 --- a/go.sum +++ b/go.sum @@ -9,32 +9,32 @@ cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6T cloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4= cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M= cloud.google.com/go v0.57.0/go.mod h1:oXiQ6Rzq3RAkkY7N6t3TcE6jE+CIBBbA36lwQ1JyzZs= -cloud.google.com/go v0.110.8 h1:tyNdfIxjzaWctIiLYOTalaLKZ17SI44SKFW26QbOhME= -cloud.google.com/go v0.110.8/go.mod h1:Iz8AkXJf1qmxC3Oxoep8R1T36w8B92yU29PcBhHO5fk= +cloud.google.com/go v0.110.10 h1:LXy9GEO+timppncPIAZoOj3l58LIU9k+kn48AN7IO3Y= +cloud.google.com/go v0.110.10/go.mod h1:v1OoFqYxiBkUrruItNM3eT4lLByNjxmJSV/xDKJNnic= cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= cloud.google.com/go/bigquery v1.57.1 h1:FiULdbbzUxWD0Y4ZGPSVCDLvqRSyCIO6zKV7E2nf5uA= cloud.google.com/go/bigquery v1.57.1/go.mod h1:iYzC0tGVWt1jqSzBHqCr3lrRn0u13E8e+AqowBsDgug= -cloud.google.com/go/compute v1.23.1 h1:V97tBoDaZHb6leicZ1G6DLK2BAaZLJ/7+9BB/En3hR0= -cloud.google.com/go/compute v1.23.1/go.mod h1:CqB3xpmPKKt3OJpW2ndFIXnA9A4xAy/F3Xp1ixncW78= +cloud.google.com/go/compute v1.23.3 h1:6sVlXXBmbd7jNX0Ipq0trII3e4n1/MsADLK6a+aiVlk= +cloud.google.com/go/compute v1.23.3/go.mod h1:VCgBUoMnIVIR0CscqQiPJLAG25E3ZRZMzcFZeQ+h8CI= cloud.google.com/go/compute/metadata v0.2.3 h1:mg4jlk7mCAj6xXp9UJ4fjI9VUI5rubuGBW5aJ7UnBMY= cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA= -cloud.google.com/go/containeranalysis v0.11.1 h1:PHh4KTcMpCjYgxfV+TzvP24wolTGP9lGbqh9sBNHxjs= -cloud.google.com/go/containeranalysis v0.11.1/go.mod h1:rYlUOM7nem1OJMKwE1SadufX0JP3wnXj844EtZAwWLY= -cloud.google.com/go/datacatalog v1.18.1 h1:xJp9mZrc2HPaoxIz3sP9pCmf/impifweQ/yGG9VBfio= -cloud.google.com/go/datacatalog v1.18.1/go.mod h1:TzAWaz+ON1tkNr4MOcak8EBHX7wIRX/gZKM+yTVsv+A= +cloud.google.com/go/containeranalysis v0.11.3 h1:5rhYLX+3a01drpREqBZVXR9YmWH45RnML++8NsCtuD8= +cloud.google.com/go/containeranalysis v0.11.3/go.mod h1:kMeST7yWFQMGjiG9K7Eov+fPNQcGhb8mXj/UcTiWw9U= +cloud.google.com/go/datacatalog v1.19.0 h1:rbYNmHwvAOOwnW2FPXYkaK3Mf1MmGqRzK0mMiIEyLdo= +cloud.google.com/go/datacatalog v1.19.0/go.mod h1:5FR6ZIF8RZrtml0VUao22FxhdjkoG+a0866rEnObryM= cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= cloud.google.com/go/firestore v1.1.0/go.mod h1:ulACoGHTpvq5r8rxGJ4ddJZBZqakUQqClKRT5SZwBmk= -cloud.google.com/go/iam v1.1.3 h1:18tKG7DzydKWUnLjonWcJO6wjSCAtzh4GcRKlH/Hrzc= -cloud.google.com/go/iam v1.1.3/go.mod h1:3khUlaBXfPKKe7huYgEpDn6FtgRyMEqbkvBxrQyY5SE= -cloud.google.com/go/kms v1.15.3 h1:RYsbxTRmk91ydKCzekI2YjryO4c5Y2M80Zwcs9/D/cI= -cloud.google.com/go/kms v1.15.3/go.mod h1:AJdXqHxS2GlPyduM99s9iGqi2nwbviBbhV/hdmt4iOQ= -cloud.google.com/go/longrunning v0.5.2 h1:u+oFqfEwwU7F9dIELigxbe0XVnBAo9wqMuQLA50CZ5k= -cloud.google.com/go/longrunning v0.5.2/go.mod h1:nqo6DQbNV2pXhGDbDMoN2bWz68MjZUzqv2YttZiveCs= -cloud.google.com/go/monitoring v1.16.1 h1:CTklIuUkS5nCricGojPwdkSgPsCTX2HmYTxFDg+UvpU= -cloud.google.com/go/monitoring v1.16.1/go.mod h1:6HsxddR+3y9j+o/cMJH6q/KJ/CBTvM/38L/1m7bTRJ4= +cloud.google.com/go/iam v1.1.5 h1:1jTsCu4bcsNsE4iiqNT5SHwrDRCfRmIaaaVFhRveTJI= +cloud.google.com/go/iam v1.1.5/go.mod h1:rB6P/Ic3mykPbFio+vo7403drjlgvoWfYpJhMXEbzv8= +cloud.google.com/go/kms v1.15.5 h1:pj1sRfut2eRbD9pFRjNnPNg/CzJPuQAzUujMIM1vVeM= +cloud.google.com/go/kms v1.15.5/go.mod h1:cU2H5jnp6G2TDpUGZyqTCoy1n16fbubHZjmVXSMtwDI= +cloud.google.com/go/longrunning v0.5.4 h1:w8xEcbZodnA2BbW6sVirkkoC+1gP8wS57EUUgGS0GVg= +cloud.google.com/go/longrunning v0.5.4/go.mod h1:zqNVncI0BOP8ST6XQD1+VcvuShMmq7+xFSzOL++V0dI= +cloud.google.com/go/monitoring v1.16.3 h1:mf2SN9qSoBtIgiMA4R/y4VADPWZA7VCNJA079qLaZQ8= +cloud.google.com/go/monitoring v1.16.3/go.mod h1:KwSsX5+8PnXv5NJnICZzW2R8pWTis8ypC4zmdRD63Tw= cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= @@ -43,16 +43,16 @@ cloud.google.com/go/pubsub v1.33.0/go.mod h1:f+w71I33OMyxf9VpMVcZbnG5KSUkCOUHYpF cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= -cloud.google.com/go/storage v1.31.0 h1:+S3LjjEN2zZ+L5hOwj4+1OkGCsLVe0NzpXKQ1pSdTCI= -cloud.google.com/go/storage v1.31.0/go.mod h1:81ams1PrhW16L4kF7qg+4mTq7SRs5HsbDTM0bWvrwJ0= -cloud.google.com/go/trace v1.10.2 h1:80Rh4JSqJLfe/xGNrpyO4MQxiFDXcHG1XrsevfmrIRQ= -cloud.google.com/go/trace v1.10.2/go.mod h1:NPXemMi6MToRFcSxRl2uDnu/qAlAQ3oULUphcHGh1vA= +cloud.google.com/go/storage v1.35.1 h1:B59ahL//eDfx2IIKFBeT5Atm9wnNmj3+8xG/W4WB//w= +cloud.google.com/go/storage v1.35.1/go.mod h1:M6M/3V/D3KpzMTJyPOR/HU6n2Si5QdaXYEsng2xgOs8= +cloud.google.com/go/trace v1.10.4 h1:2qOAuAzNezwW3QN+t41BtkDJOG42HywL73q8x/f6fnM= +cloud.google.com/go/trace v1.10.4/go.mod h1:Nso99EDIK8Mj5/zmB+iGr9dosS/bzWCJ8wGmE6TXNWY= contrib.go.opencensus.io/exporter/stackdriver v0.13.14 h1:zBakwHardp9Jcb8sQHcHpXy/0+JIb1M8KjigCJzx7+4= contrib.go.opencensus.io/exporter/stackdriver v0.13.14/go.mod h1:5pSSGY0Bhuk7waTHuDf4aQ8D2DrhgETRo9fy6k3Xlzc= dario.cat/mergo v1.0.0 h1:AGCNq9Evsj31mOgNPcLyXc+4PNABt905YmuqPYYpBWk= dario.cat/mergo v1.0.0/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk= -deps.dev/api/v3alpha v0.0.0-20231114023923-e40c4d5c34e5 h1:Vvh14FIzt0+LaLWn2l09FKQbdXBVxIjtPbjFiykXYlI= -deps.dev/api/v3alpha v0.0.0-20231114023923-e40c4d5c34e5/go.mod h1:uRN72FJn1F0FD/2ZYUOqdyFMu8VUsyHxvmZAMW30/DA= +deps.dev/api/v3alpha v0.0.0-20240109042716-00b51ef52ece h1:jvq1tMp7Xx0oD43DFxG7Eiawkc3UzAaEv6inEylcuc8= +deps.dev/api/v3alpha v0.0.0-20240109042716-00b51ef52ece/go.mod h1:uRN72FJn1F0FD/2ZYUOqdyFMu8VUsyHxvmZAMW30/DA= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= github.com/Azure/azure-sdk-for-go v35.0.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= github.com/Azure/azure-sdk-for-go v38.0.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= @@ -85,8 +85,8 @@ github.com/BurntSushi/toml v1.2.1/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbi github.com/BurntSushi/toml v1.3.2 h1:o7IhLm0Msx3BaB+n3Ag7L8EVlByGnpq14C4YWiu/gL8= github.com/BurntSushi/toml v1.3.2/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= -github.com/CycloneDX/cyclonedx-go v0.7.2 h1:kKQ0t1dPOlugSIYVOMiMtFqeXI2wp/f5DBIdfux8gnQ= -github.com/CycloneDX/cyclonedx-go v0.7.2/go.mod h1:K2bA+324+Og0X84fA8HhN2X066K7Bxz4rpMQ4ZhjtSk= +github.com/CycloneDX/cyclonedx-go v0.8.0 h1:FyWVj6x6hoJrui5uRQdYZcSievw3Z32Z88uYzG/0D6M= +github.com/CycloneDX/cyclonedx-go v0.8.0/go.mod h1:K2bA+324+Og0X84fA8HhN2X066K7Bxz4rpMQ4ZhjtSk= github.com/GoogleCloudPlatform/k8s-cloud-provider v0.0.0-20190822182118-27a4ced34534/go.mod h1:iroGtC8B3tQiqtds1l+mgk/BBOrxbqjH+eUfFQYRc14= github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c h1:RGWPOewvKIROun94nF7v2cua9qP+thov/7M50KEoeSU= github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c/go.mod h1:X0CRv0ky0k6m906ixxpzmDRLvX58TFUKS2eePweuyxk= @@ -113,7 +113,6 @@ github.com/andybalholm/brotli v1.0.4 h1:V7DdXeJtZscaqfNuAdSRuRFzuiKlHSC/Zh3zl9qY github.com/andybalholm/brotli v1.0.4/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig= github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be h1:9AeTilPcZAjCFIImctFaOjnTIavg87rW78vTPkQqLI8= github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be/go.mod h1:ySMOLuWl6zY27l47sB3qLNK6tF2fkHG55UZxx8oIVo4= -github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= github.com/apache/arrow/go/v12 v12.0.0 h1:xtZE63VWl7qLdB0JObIXvvhGjoVNrQ9ciIHG2OK5cmc= github.com/apache/arrow/go/v12 v12.0.0/go.mod h1:d+tV/eHZZ7Dz7RPrFKtPK02tpr+c9/PEd/zm8mDS9Vg= github.com/apache/thrift v0.16.0 h1:qEy6UW60iVOlUy+b9ZR0d5WzUWYGOo4HfopoyBaNmoY= @@ -127,46 +126,46 @@ github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPd github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= github.com/aws/aws-sdk-go v1.28.2/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= github.com/aws/aws-sdk-go v1.31.6/go.mod h1:5zCpMtNQVjRREroY7sYe8lOMRSxkhG6MZveU8YkpAk0= -github.com/aws/aws-sdk-go v1.44.314 h1:d/5Jyk/Fb+PBd/4nzQg0JuC2W4A0knrDIzBgK/ggAow= -github.com/aws/aws-sdk-go v1.44.314/go.mod h1:aVsgQcEevwlmQ7qHE9I3h+dtQgpqhFB+i8Phjh7fkwI= -github.com/aws/aws-sdk-go-v2 v1.20.0 h1:INUDpYLt4oiPOJl0XwZDK2OVAVf0Rzo+MGVTv9f+gy8= -github.com/aws/aws-sdk-go-v2 v1.20.0/go.mod h1:uWOr0m0jDsiWw8nnXiqZ+YG6LdvAlGYDLLf2NmHZoy4= -github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.11 h1:/MS8AzqYNAhhRNalOmxUvYs8VEbNGifTnzhPFdcRQkQ= -github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.11/go.mod h1:va22++AdXht4ccO3kH2SHkHHYvZ2G9Utz+CXKmm2CaU= -github.com/aws/aws-sdk-go-v2/config v1.18.32 h1:tqEOvkbTxwEV7hToRcJ1xZRjcATqwDVsWbAscgRKyNI= -github.com/aws/aws-sdk-go-v2/config v1.18.32/go.mod h1:U3ZF0fQRRA4gnbn9GGvOWLoT2EzzZfAWeKwnVrm1rDc= -github.com/aws/aws-sdk-go-v2/credentials v1.13.31 h1:vJyON3lG7R8VOErpJJBclBADiWTwzcwdkQpTKx8D2sk= -github.com/aws/aws-sdk-go-v2/credentials v1.13.31/go.mod h1:T4sESjBtY2lNxLgkIASmeP57b5j7hTQqCbqG0tWnxC4= -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.7 h1:X3H6+SU21x+76LRglk21dFRgMTJMa5QcpW+SqUf5BBg= -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.7/go.mod h1:3we0V09SwcJBzNlnyovrR2wWJhWmVdqAsmVs4uronv8= -github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.11.76 h1:DJ1kHj0GI9BbX+XhF0kHxlzOVjcncmDUXmCvXdbfdAE= -github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.11.76/go.mod h1:/AZCdswMSgwpB2yMSFfY5H4pVeBLnCuPehdmO/r3xSM= -github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.37 h1:zr/gxAZkMcvP71ZhQOcvdm8ReLjFgIXnIn0fw5AM7mo= -github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.37/go.mod h1:Pdn4j43v49Kk6+82spO3Tu5gSeQXRsxo56ePPQAvFiA= -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.31 h1:0HCMIkAkVY9KMgueD8tf4bRTUanzEYvhw7KkPXIMpO0= -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.31/go.mod h1:fTJDMe8LOFYtqiFFFeHA+SVMAwqLhoq0kcInYoLa9Js= -github.com/aws/aws-sdk-go-v2/internal/ini v1.3.38 h1:+i1DOFrW3YZ3apE45tCal9+aDKK6kNEbW6Ib7e1nFxE= -github.com/aws/aws-sdk-go-v2/internal/ini v1.3.38/go.mod h1:1/jLp0OgOaWIetycOmycW+vYTYgTZFPttJQRgsI1PoU= -github.com/aws/aws-sdk-go-v2/internal/v4a v1.1.0 h1:U5yySdwt2HPo/pnQec04DImLzWORbeWML1fJiLkKruI= -github.com/aws/aws-sdk-go-v2/internal/v4a v1.1.0/go.mod h1:EhC/83j8/hL/UB1WmExo3gkElaja/KlmZM/gl1rTfjM= -github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.9.12 h1:uAiiHnWihGP2rVp64fHwzLDrswGjEjsPszwRYMiYQPU= -github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.9.12/go.mod h1:fUTHpOXqRQpXvEpDPSa3zxCc2fnpW6YnBoba+eQr+Bg= -github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.1.32 h1:kvN1jPHr9UffqqG3bSgZ8tx4+1zKVHz/Ktw/BwW6hX8= -github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.1.32/go.mod h1:QmMEM7es84EUkbYWcpnkx8i5EW2uERPfrTFeOch128Y= -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.31 h1:auGDJ0aLZahF5SPvkJ6WcUuX7iQ7kyl2MamV7Tm8QBk= -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.31/go.mod h1:3+lloe3sZuBQw1aBc5MyndvodzQlyqCZ7x1QPDHaWP4= -github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.15.0 h1:Wgjft9X4W5pMeuqgPCHIQtbZ87wsgom7S5F8obreg+c= -github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.15.0/go.mod h1:FWNzS4+zcWAP05IF7TDYTY1ysZAzIvogxWaDT9p8fsA= -github.com/aws/aws-sdk-go-v2/service/s3 v1.38.1 h1:mTgFVlfQT8gikc5+/HwD8UL9jnUro5MGv8n/VEYF12I= -github.com/aws/aws-sdk-go-v2/service/s3 v1.38.1/go.mod h1:6SOWLiobcZZshbmECRTADIRYliPL0etqFSigauQEeT0= -github.com/aws/aws-sdk-go-v2/service/sso v1.13.1 h1:DSNpSbfEgFXRV+IfEcKE5kTbqxm+MeF5WgyeRlsLnHY= -github.com/aws/aws-sdk-go-v2/service/sso v1.13.1/go.mod h1:TC9BubuFMVScIU+TLKamO6VZiYTkYoEHqlSQwAe2omw= -github.com/aws/aws-sdk-go-v2/service/ssooidc v1.15.1 h1:hd0SKLMdOL/Sl6Z0np1PX9LeH2gqNtBe0MhTedA8MGI= -github.com/aws/aws-sdk-go-v2/service/ssooidc v1.15.1/go.mod h1:XO/VcyoQ8nKyKfFW/3DMsRQXsfh/052tHTWmg3xBXRg= -github.com/aws/aws-sdk-go-v2/service/sts v1.21.1 h1:pAOJj+80tC8sPVgSDHzMYD6KLWsaLQ1kZw31PTeORbs= -github.com/aws/aws-sdk-go-v2/service/sts v1.21.1/go.mod h1:G8SbvL0rFk4WOJroU8tKBczhsbhj2p/YY7qeJezJ3CI= -github.com/aws/smithy-go v1.14.0 h1:+X90sB94fizKjDmwb4vyl2cTTPXTE5E2G/1mjByb0io= -github.com/aws/smithy-go v1.14.0/go.mod h1:Tg+OJXh4MB2R/uN61Ko2f6hTZwB/ZYGOtib8J3gBHzA= +github.com/aws/aws-sdk-go v1.49.0 h1:g9BkW1fo9GqKfwg2+zCD+TW/D36Ux+vtfJ8guF4AYmY= +github.com/aws/aws-sdk-go v1.49.0/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go-v2 v1.24.0 h1:890+mqQ+hTpNuw0gGP6/4akolQkSToDJgHfQE7AwGuk= +github.com/aws/aws-sdk-go-v2 v1.24.0/go.mod h1:LNh45Br1YAkEKaAqvmE1m8FUx6a5b/V0oAKV7of29b4= +github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.5.4 h1:OCs21ST2LrepDfD3lwlQiOqIGp6JiEUqG84GzTDoyJs= +github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.5.4/go.mod h1:usURWEKSNNAcAZuzRn/9ZYPT8aZQkR7xcCtunK/LkJo= +github.com/aws/aws-sdk-go-v2/config v1.26.1 h1:z6DqMxclFGL3Zfo+4Q0rLnAZ6yVkzCRxhRMsiRQnD1o= +github.com/aws/aws-sdk-go-v2/config v1.26.1/go.mod h1:ZB+CuKHRbb5v5F0oJtGdhFTelmrxd4iWO1lf0rQwSAg= +github.com/aws/aws-sdk-go-v2/credentials v1.16.12 h1:v/WgB8NxprNvr5inKIiVVrXPuuTegM+K8nncFkr1usU= +github.com/aws/aws-sdk-go-v2/credentials v1.16.12/go.mod h1:X21k0FjEJe+/pauud82HYiQbEr9jRKY3kXEIQ4hXeTQ= +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.10 h1:w98BT5w+ao1/r5sUuiH6JkVzjowOKeOJRHERyy1vh58= +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.10/go.mod h1:K2WGI7vUvkIv1HoNbfBA1bvIZ+9kL3YVmWxeKuLQsiw= +github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.15.7 h1:FnLf60PtjXp8ZOzQfhJVsqF0OtYKQZWQfqOLshh8YXg= +github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.15.7/go.mod h1:tDVvl8hyU6E9B8TrnNrZQEVkQlB8hjJwcgpPhgtlnNg= +github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.9 h1:v+HbZaCGmOwnTTVS86Fleq0vPzOd7tnJGbFhP0stNLs= +github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.9/go.mod h1:Xjqy+Nyj7VDLBtCMkQYOw1QYfAEZCVLrfI0ezve8wd4= +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.5.9 h1:N94sVhRACtXyVcjXxrwK1SKFIJrA9pOJ5yu2eSHnmls= +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.5.9/go.mod h1:hqamLz7g1/4EJP+GH5NBhcUMLjW+gKLQabgyz6/7WAU= +github.com/aws/aws-sdk-go-v2/internal/ini v1.7.2 h1:GrSw8s0Gs/5zZ0SX+gX4zQjRnRsMJDJ2sLur1gRBhEM= +github.com/aws/aws-sdk-go-v2/internal/ini v1.7.2/go.mod h1:6fQQgfuGmw8Al/3M2IgIllycxV7ZW7WCdVSqfBeUiCY= +github.com/aws/aws-sdk-go-v2/internal/v4a v1.2.9 h1:ugD6qzjYtB7zM5PN/ZIeaAIyefPaD82G8+SJopgvUpw= +github.com/aws/aws-sdk-go-v2/internal/v4a v1.2.9/go.mod h1:YD0aYBWCrPENpHolhKw2XDlTIWae2GKXT1T4o6N6hiM= +github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.10.4 h1:/b31bi3YVNlkzkBrm9LfpaKoaYZUxIAj4sHfOTmLfqw= +github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.10.4/go.mod h1:2aGXHFmbInwgP9ZfpmdIfOELL79zhdNYNmReK8qDfdQ= +github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.2.9 h1:/90OR2XbSYfXucBMJ4U14wrjlfleq/0SB6dZDPncgmo= +github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.2.9/go.mod h1:dN/Of9/fNZet7UrQQ6kTDo/VSwKPIq94vjlU16bRARc= +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.10.9 h1:Nf2sHxjMJR8CSImIVCONRi4g0Su3J+TSTbS7G0pUeMU= +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.10.9/go.mod h1:idky4TER38YIjr2cADF1/ugFMKvZV7p//pVeV5LZbF0= +github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.16.9 h1:iEAeF6YC3l4FzlJPP9H3Ko1TXpdjdqWffxXjp8SY6uk= +github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.16.9/go.mod h1:kjsXoK23q9Z/tLBrckZLLyvjhZoS+AGrzqzUfEClvMM= +github.com/aws/aws-sdk-go-v2/service/s3 v1.47.5 h1:Keso8lIOS+IzI2MkPZyK6G0LYcK3My2LQ+T5bxghEAY= +github.com/aws/aws-sdk-go-v2/service/s3 v1.47.5/go.mod h1:vADO6Jn+Rq4nDtfwNjhgR84qkZwiC6FqCaXdw/kYwjA= +github.com/aws/aws-sdk-go-v2/service/sso v1.18.5 h1:ldSFWz9tEHAwHNmjx2Cvy1MjP5/L9kNoR0skc6wyOOM= +github.com/aws/aws-sdk-go-v2/service/sso v1.18.5/go.mod h1:CaFfXLYL376jgbP7VKC96uFcU8Rlavak0UlAwk1Dlhc= +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.21.5 h1:2k9KmFawS63euAkY4/ixVNsYYwrwnd5fIvgEKkfZFNM= +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.21.5/go.mod h1:W+nd4wWDVkSUIox9bacmkBP5NMFQeTJ/xqNabpzSR38= +github.com/aws/aws-sdk-go-v2/service/sts v1.26.5 h1:5UYvv8JUvllZsRnfrcMQ+hJ9jNICmcgKPAO1CER25Wg= +github.com/aws/aws-sdk-go-v2/service/sts v1.26.5/go.mod h1:XX5gh4CB7wAs4KhcF46G6C8a2i7eupU19dcAAE+EydU= +github.com/aws/smithy-go v1.19.0 h1:KWFKQV80DpP3vJrrA9sVAHQ5gc2z8i4EzrLhLlWXcBM= +github.com/aws/smithy-go v1.19.0/go.mod h1:NukqUGpCZIILqqiV0NIjeFh24kd/FAa4beRb6nbIUPE= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= @@ -174,11 +173,10 @@ github.com/bketelsen/crypt v0.0.3-0.20200106085610-5cbc8cc4026c/go.mod h1:MKsuJm github.com/blang/semver v3.5.0+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk= github.com/bombsimon/logrusr/v2 v2.0.1 h1:1VgxVNQMCvjirZIYaT9JYn6sAVGVEcNtRE0y4mvaOAM= github.com/bombsimon/logrusr/v2 v2.0.1/go.mod h1:ByVAX+vHdLGAfdroiMg6q0zgq2FODY2lc5YJvzmOJio= -github.com/bradleyfalzon/ghinstallation/v2 v2.8.0 h1:yUmoVv70H3J4UOqxqsee39+KlXxNEDfTbAp8c/qULKk= -github.com/bradleyfalzon/ghinstallation/v2 v2.8.0/go.mod h1:fmPmvCiBWhJla3zDv9ZTQSZc8AbwyRnGW1yg5ep1Pcs= +github.com/bradleyfalzon/ghinstallation/v2 v2.9.0 h1:HmxIYqnxubRYcYGRc5v3wUekmo5Wv2uX3gukmWJ0AFk= +github.com/bradleyfalzon/ghinstallation/v2 v2.9.0/go.mod h1:wmkTDJf8CmVypxE8ijIStFnKoTa6solK5QfdmJrP9KI= github.com/bradleyjkemp/cupaloy/v2 v2.8.0 h1:any4BmKE+jGIaMpnU8YgH/I2LPiLBufr6oMMlVBbn9M= github.com/bradleyjkemp/cupaloy/v2 v2.8.0/go.mod h1:bm7JXdkRd4BHJk9HpwqAI8BoAY1lps46Enkdqw6aRX0= -github.com/buger/jsonparser v1.1.1/go.mod h1:6RYKKt7H4d4+iWqouImQ9R2FZql3VbhNgx27UK13J/0= github.com/bwesterb/go-ristretto v1.2.3/go.mod h1:fUIoIZaG73pV5biE2Blr2xEzDoMj7NFEuV9ekS419A0= github.com/caarlos0/env/v6 v6.10.0 h1:lA7sxiGArZ2KkiqpOQNf8ERBRWI+v8MWIH+eGjSN22I= github.com/caarlos0/env/v6 v6.10.0/go.mod h1:hvp/ryKXKipEkcuYjs9mI4bBCg+UI0Yhgm5Zu0ddvwc= @@ -190,11 +188,10 @@ github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWR github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= -github.com/cloudflare/circl v1.3.3 h1:fE/Qz0QdIGqeWfnwq0RE0R7MI51s0M2E4Ga9kq5AEMs= github.com/cloudflare/circl v1.3.3/go.mod h1:5XYMA4rFBvNIrhs50XuiBJ15vF2pZn4nnUKZrLbUZFA= +github.com/cloudflare/circl v1.3.7 h1:qlCDlTPz2n9fu58M0Nh1J/JzcFpfgkFHHX3O35r5vcU= +github.com/cloudflare/circl v1.3.7/go.mod h1:sRTcRWXGLrKw6yIGJ+l7amYJFfAXbZG0kBSc8r4zxgA= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= -github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= -github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa/go.mod h1:zn76sxSg3SzpJ0PPJaLDCu+Bu0Lg3sKTORVIj19EIF8= github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be h1:J5BL2kskAlV9ckgEsNQXscjIaLiOYiZ75d4e94E6dcQ= github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be/go.mod h1:mk5IQ+Y0ZeO87b858TlA645sVcEcbiX6YqP98kt+7+w= @@ -246,7 +243,6 @@ github.com/docker/docker-credential-helpers v0.7.0/go.mod h1:rETQfLdHNT3foU5kuNk github.com/docker/go-connections v0.4.0/go.mod h1:Gbd7IOopHjR8Iph03tsViu4nIes5XhDvyHbTtUxmeec= github.com/docker/go-units v0.4.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96/go.mod h1:Qh8CwZgvJUkLughtfhJv5dyTYa91l1fOUCrgjqmcifM= -github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE= github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= github.com/elazarl/goproxy v0.0.0-20180725130230-947c36da3153/go.mod h1:/Zj4wYkgs4iZTTu3o/KG3Itv/qCCa8VVMlb3i9OVuzc= @@ -261,17 +257,14 @@ github.com/emirpasic/gods v1.18.1/go.mod h1:8tpGGwCnJ5H4r6BWwaV6OrWmMoPhUl5jm/FM github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= -github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= -github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= github.com/evanphx/json-patch v0.0.0-20200808040245-162e5629780b/go.mod h1:NAJj0yf/KaRKURN6nyi7A9IZydMivZEm9oQLWNjfKDc= github.com/evanphx/json-patch v4.9.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= -github.com/evanphx/json-patch v4.12.0+incompatible h1:4onqiflcdA9EOZ4RxV643DvftH5pOlLGNtQ5lPWQu84= -github.com/evanphx/json-patch v4.12.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= +github.com/evanphx/json-patch v5.6.0+incompatible h1:jBYDEEiFBPxA0v50tFdvOzQQTCvpL6mnFh5mB2/l16U= +github.com/evanphx/json-patch v5.6.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= github.com/fatih/color v1.15.0 h1:kOqh6YHBtK8aywxGerMG2Eq3H6Qgoqeo13Bk2Mv/nBs= github.com/fatih/color v1.15.0/go.mod h1:0h5ZqXfHYED7Bhv2ZJamyIOUej9KtShiJESRwBDUSsw= -github.com/flowstack/go-jsonschema v0.1.1/go.mod h1:yL7fNggx1o8rm9RlgXv7hTBWxdBM0rVwpMwimd3F3N0= github.com/form3tech-oss/jwt-go v3.2.2+incompatible/go.mod h1:pbq4aXjuKjdthFRnoDwaVPLA+WlJuPGy+QneDUgJi2k= github.com/frankban/quicktest v1.14.5 h1:dfYrrRyLtiqT9GyKXgdh+k4inNeTvmGbuSgZ3lx3GhA= github.com/frankban/quicktest v1.14.5/go.mod h1:4ptaffx2x8+WTWXmUCuVU6aPUX1/Mz7zb5vbUoiM6w0= @@ -298,8 +291,8 @@ github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V github.com/go-logr/logr v0.1.0/go.mod h1:ixOQHD9gLJUVQQ2ZOR7zLEifBX6tGkNJF4QyIY7sIas= github.com/go-logr/logr v1.0.0/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= github.com/go-logr/logr v1.2.0/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= -github.com/go-logr/logr v1.3.0 h1:2y3SDp0ZXuc6/cjLSZ+Q3ir+QB9T/iG5yYRXqsagWSY= -github.com/go-logr/logr v1.3.0/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= +github.com/go-logr/logr v1.4.1 h1:pKouT5E8xu9zeFC39JXRDukb6JFQPXM5p5I91188VAQ= +github.com/go-logr/logr v1.4.1/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= github.com/go-openapi/jsonpointer v0.0.0-20160704185906-46af16f9f7b1/go.mod h1:+35s3my2LFTysnkMfxsJBAMHj/DoqoB9knIWoYG/Vk0= github.com/go-openapi/jsonpointer v0.19.2/go.mod h1:3akKfEdA7DF1sugOqz1dVQHBcuDBPKZGEoHC/NkiQRg= github.com/go-openapi/jsonpointer v0.19.3/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= @@ -377,8 +370,8 @@ github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Z github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/flatbuffers v2.0.8+incompatible h1:ivUb1cGomAB101ZM1T0nOiWz9pSrTMoa9+EiY7igmkM= github.com/google/flatbuffers v2.0.8+incompatible/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= -github.com/google/gnostic v0.6.9 h1:ZK/5VhkoX835RikCHpSUJV9a+S3e1zLh59YnyWeBW+0= -github.com/google/gnostic v0.6.9/go.mod h1:Nm8234We1lq6iB9OmlgNv3nH91XLLVZHCDayfA3xq+E= +github.com/google/gnostic-models v0.6.8 h1:yo/ABAfM5IMRsS1VnXjTBvUb61tFIHozhlYvRgGre9I= +github.com/google/gnostic-models v0.6.8/go.mod h1:5n7qKqH0f5wFt+aWF8CW6pZLLNOfYuF5OpfBSENuI8U= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= @@ -396,8 +389,8 @@ github.com/google/go-containerregistry v0.17.0 h1:5p+zYs/R4VGHkhyvgWurWrpJ2hW4Vv github.com/google/go-containerregistry v0.17.0/go.mod h1:u0qB2l7mvtWVR5kNcbFIhFY1hLbf8eeGapA+vbFDCtQ= github.com/google/go-github/v53 v53.2.0 h1:wvz3FyF53v4BK+AsnvCmeNhf8AkTaeh2SoYu/XUvTtI= github.com/google/go-github/v53 v53.2.0/go.mod h1:XhFRObz+m/l+UCm9b7KSIC3lT3NWSXGt7mOsAWEloao= -github.com/google/go-github/v56 v56.0.0 h1:TysL7dMa/r7wsQi44BjqlwaHvwlFlqkK8CtBWCX3gb4= -github.com/google/go-github/v56 v56.0.0/go.mod h1:D8cdcX98YWJvi7TLo7zM4/h8ZTx6u6fwGEkCdisopo0= +github.com/google/go-github/v57 v57.0.0 h1:L+Y3UPTY8ALM8x+TV0lg+IEBI+upibemtBD8Q9u7zHs= +github.com/google/go-github/v57 v57.0.0/go.mod h1:s0omdnye0hvK/ecLvpsGfJMiRt85PimQh4oygmLIxHw= github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8= github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU= github.com/google/go-replayers/grpcreplay v1.1.0 h1:S5+I3zYyZ+GQz68OfbURDdt/+cSMqCK1wrvNx7WBzTE= @@ -413,15 +406,15 @@ github.com/google/martian v2.1.0+incompatible h1:/CP5g8u/VJHijgedC/Legn3BAbAaWPg github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= github.com/google/martian/v3 v3.3.2 h1:IqNFLAmvJOgVlpdEBiQbDc2EwKW77amAycfTuWKdfvw= github.com/google/martian/v3 v3.3.2/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= -github.com/google/osv-scanner v1.5.0 h1:ln0i1o4fEu3iPlAIeSJg3zRxBEJjO+IvKDBMX/R6He0= -github.com/google/osv-scanner v1.5.0/go.mod h1:+BqMim8RGiZzPiXubV/UTvxQCJPxt1yCgZegn74oh8A= +github.com/google/osv-scanner v1.6.0 h1:lcaLioeKGKcAnsrMUFW8tHzTR/pC/74yAXgTm6q/t8A= +github.com/google/osv-scanner v1.6.0/go.mod h1:l04UyJDE7Wv6vT4OUXj3Zk9Do44oW2tXzUsadyp/bDI= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20230705174524-200ffdc848b8 h1:n6vlPhxsA+BW/XsS5+uqi7GyzaLa5MH7qlSLBZtRdiA= -github.com/google/pprof v0.0.0-20230705174524-200ffdc848b8/go.mod h1:Jh3hGz2jkYak8qXPD19ryItVnUgpgeqzdkY/D0EaeuA= +github.com/google/pprof v0.0.0-20230926050212-f7f687d19a98 h1:pUa4ghanp6q4IJHwE9RwLgmVFfReJN+KbQ8ExNEUUoQ= +github.com/google/pprof v0.0.0-20230926050212-f7f687d19a98/go.mod h1:czg5+yv1E0ZGTi6S6vVK1mke0fV+FaUhNGcd6VRS9Ik= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= github.com/google/s2a-go v0.1.7 h1:60BLSyTrOV4/haCDW4zb1guZItoSq8foHCXrAnjBo/o= github.com/google/s2a-go v0.1.7/go.mod h1:50CgR4k1jNlWBu4UfS4AcfhVe1r6pdZPygJ3R8F0Qdw= @@ -456,7 +449,6 @@ github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.9.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= -github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= github.com/h2non/filetype v1.1.3 h1:FKkx9QbD7HR/zjK1Ia5XiBsq9zdLi5Kf3zGyFTAFkGg= github.com/h2non/filetype v1.1.3/go.mod h1:319b3zT68BvV+WRj7cwy856M2ehB3HqNOt6sy1HndBY= github.com/hashicorp/consul/api v1.1.0/go.mod h1:VmuI/Lkw1nC05EYQWNKwWGbkg+FbDBtguAZLlVdkD9Q= @@ -501,8 +493,8 @@ github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2 github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 h1:BQSFePA1RWJOlocH6Fxy8MmwDt+yVQYULKfN0RoTN8A= github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99/go.mod h1:1lJo3i6rXxKeerYnT8Nvf0QmHCRC1n8sfWVwXF2Frvo= -github.com/jedib0t/go-pretty/v6 v6.4.9 h1:vZ6bjGg2eBSrJn365qlxGcaWu09Id+LHtrfDWlB2Usc= -github.com/jedib0t/go-pretty/v6 v6.4.9/go.mod h1:Ndk3ase2CkQbXLLNf5QDHoYb6J9WtVfmHZu9n8rk2xs= +github.com/jedib0t/go-pretty/v6 v6.5.3 h1:GIXn6Er/anHTkVUoufs7ptEvxdD6KIhR7Axa2wYCPF0= +github.com/jedib0t/go-pretty/v6 v6.5.3/go.mod h1:5LQIxa52oJ/DlDSLv0HEkWOFMDGoWkJb9ss5KqPpJBg= github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= github.com/jmespath/go-jmespath v0.3.0/go.mod h1:9QtRXoHjLGCJ5IBSaohpXITPlowMeeYCZ7fLUTSywik= @@ -523,8 +515,8 @@ github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnr github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= -github.com/jszwec/csvutil v1.8.0 h1:G7vS2LGdpZZDH1HmHeNbxOaJ/ZnJlpwGFvOkTkJzzNk= -github.com/jszwec/csvutil v1.8.0/go.mod h1:/E4ONrmGkwmWsk9ae9jpXnv9QT8pLHEPcCirMFhxG9I= +github.com/jszwec/csvutil v1.9.0 h1:iTmq9G1P0e+AUq/MkFg6tetJ+1BH3fOX8Xi0RAcwiGc= +github.com/jszwec/csvutil v1.9.0/go.mod h1:/E4ONrmGkwmWsk9ae9jpXnv9QT8pLHEPcCirMFhxG9I= github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/kevinburke/ssh_config v1.2.0 h1:x584FjTGwHzMwvHx18PXxbBVzfnxogHaAReU4gf13a4= @@ -543,7 +535,6 @@ github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxv github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= -github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= @@ -570,7 +561,6 @@ github.com/mattn/go-isatty v0.0.19 h1:JITubQf0MOLdlGRuRq+jtsDlekdYPia9ZFsB8h/APP github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= github.com/mattn/go-runewidth v0.0.2/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= -github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= github.com/mattn/go-runewidth v0.0.15 h1:UNAjwbU9l54TA3KzvqLGxwWjHmMgBUVhBiTjelZgg3U= github.com/mattn/go-runewidth v0.0.15/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= @@ -620,8 +610,8 @@ github.com/onsi/ginkgo v1.11.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+ github.com/onsi/ginkgo v1.12.0/go.mod h1:oUhWkIvk5aDxtKvDDuw8gItl8pKl42LzjC9KZE0HfGg= github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk= github.com/onsi/ginkgo v1.14.2/go.mod h1:iSB4RoI2tjJc9BBv4NKIKWKya62Rps+oPG/Lv9klQyY= -github.com/onsi/ginkgo/v2 v2.13.2 h1:Bi2gGVkfn6gQcjNjZJVO8Gf0FHzMPf2phUei9tejVMs= -github.com/onsi/ginkgo/v2 v2.13.2/go.mod h1:XStQ8QcGwLyF4HdfcZB8SFOS/MWCgDuXMSBe6zrvLgM= +github.com/onsi/ginkgo/v2 v2.14.0 h1:vSmGj2Z5YPb9JwCWT6z6ihcUvDhuXLc3sJiqd3jMKAY= +github.com/onsi/ginkgo/v2 v2.14.0/go.mod h1:JkUdW7JkN0V6rFvsHcJ478egV3XH9NxpD27Hal/PhZw= github.com/onsi/gomega v0.0.0-20170829124025-dcabb60a477c/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA= github.com/onsi/gomega v1.5.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= github.com/onsi/gomega v1.7.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= @@ -659,7 +649,6 @@ github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINE github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/profile v1.6.0/go.mod h1:qBsxPvzyUincmltOk6iyRVxHYg4adc0OFOv72ZdLa18= github.com/pmezard/go-difflib v0.0.0-20151028094244-d8ed2627bdf0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U= @@ -679,8 +668,8 @@ github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y8 github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= -github.com/prometheus/prometheus v0.46.0 h1:9JSdXnsuT6YsbODEhSQMwxNkGwPExfmzqG73vCMk/Kw= -github.com/prometheus/prometheus v0.46.0/go.mod h1:10L5IJE5CEsjee1FnOcVswYXlPIscDWWt3IJ2UDYrz4= +github.com/prometheus/prometheus v0.48.0 h1:yrBloImGQ7je4h8M10ujGh4R6oxYQJQKlMuETwNskGk= +github.com/prometheus/prometheus v0.48.0/go.mod h1:SRw624aMAxTfryAcP8rOjg4S/sHHaetx2lyJJ2nM83g= github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= github.com/remyoudompheng/bigfft v0.0.0-20170806203942-52369c62f446/go.mod h1:uYEyJGbgTkfkS4+E/PavXkNJcbFIpEtjt2B0KDQ5+9M= github.com/rhysd/actionlint v1.6.26 h1:zi7jPZf3Ks14gCXYAAL47uBziyFlX7+Xwilqhexct9g= @@ -691,7 +680,6 @@ github.com/rivo/uniseg v0.4.4/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUc github.com/robfig/cron/v3 v3.0.1 h1:WdRxkvbJztn8LMz/QEvLN5sBU+xKpSqwwUO1Pjr4qDs= github.com/robfig/cron/v3 v3.0.1/go.mod h1:eQICP3HwyT7UooqI/z+Ov+PtYAWygg1TEWWzGIFLtro= github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= -github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M= github.com/rogpeppe/go-internal v1.11.0/go.mod h1:ddIwULY96R17DhadqLgMfk9H9tvdUzkipdSkR5nkCZA= @@ -745,7 +733,6 @@ github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= github.com/spf13/viper v1.4.0/go.mod h1:PTJ7Z/lr49W6bUbkmS1V3by4uWynFiR9p7+dSq/yZzE= github.com/spf13/viper v1.7.0/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg= -github.com/stoewer/go-strcase v1.2.0/go.mod h1:IBiWB2sKIp3wVVQ3Y035++gc+knqhUQag1KpM8ahLw8= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE= @@ -759,7 +746,6 @@ github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5 github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/stretchr/testify v1.7.4/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= @@ -778,8 +764,8 @@ github.com/vdemeester/k8s-pkg-credentialprovider v1.18.1-0.20201019120933-f1d169 github.com/vmihailenco/msgpack/v4 v4.3.12/go.mod h1:gborTTJjAo/GWTqqRjrLCn9pgNN+NXzzngzBKDPIqw4= github.com/vmihailenco/tagparser v0.1.1/go.mod h1:OeAg3pn3UbLjkWt+rN9oFYB6u/cQgqMEUPoW2WPyhdI= github.com/vmware/govmomi v0.20.3/go.mod h1:URlwyTFZX72RmxtxuaFL2Uj3fD1JTvZdx59bHWk6aFU= -github.com/xanzy/go-gitlab v0.94.0 h1:GmBl2T5zqUHqyjkxFSvsT7CbelGdAH/dmBqUBqS+4BE= -github.com/xanzy/go-gitlab v0.94.0/go.mod h1:ETg8tcj4OhrB84UEgeE8dSuV/0h4BBL1uOV/qK0vlyI= +github.com/xanzy/go-gitlab v0.95.2 h1:4p0IirHqEp5f0baK/aQqr4TR57IsD+8e4fuyAA1yi88= +github.com/xanzy/go-gitlab v0.95.2/go.mod h1:ETg8tcj4OhrB84UEgeE8dSuV/0h4BBL1uOV/qK0vlyI= github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM= github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw= github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f h1:J9EGpcZtP0E/raorCMxlFGSTBrsSlaDGf3jU/qvAE2c= @@ -808,13 +794,12 @@ go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= -gocloud.dev v0.34.0 h1:LzlQY+4l2cMtuNfwT2ht4+fiXwWf/NmPTnXUlLmGif4= -gocloud.dev v0.34.0/go.mod h1:psKOachbnvY3DAOPbsFVmLIErwsbWPUG2H5i65D38vE= +gocloud.dev v0.36.0 h1:q5zoXux4xkOZP473e1EZbG8Gq9f0vlg1VNH5Du/ybus= +gocloud.dev v0.36.0/go.mod h1:bLxah6JQVKBaIxzsr5BQLYB4IYdWHkMZdzCXlo6F0gg= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190211182817-74369b46fc67/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= @@ -832,8 +817,8 @@ golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5y golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.3.1-0.20221117191849-2c476679df9a/go.mod h1:hebNnKkNXi2UzZN1eVRvBB7co0a+JxK6XbPiWVs/3J4= golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= -golang.org/x/crypto v0.17.0 h1:r8bRNjWL3GshPW3gkd+RpvzWrZAwPS49OmTGZ/uhM4k= -golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= +golang.org/x/crypto v0.18.0 h1:PGVlW0xEltQnzFZ55hkuX5+KLyrMYhHld1YHO4AKcdc= +golang.org/x/crypto v0.18.0/go.mod h1:R0j02AL6hcrfOiy9T4ZYp/rcWeMxM3L6QYxlOuEG1mg= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190125153040-c74c464bbbf2/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -846,8 +831,8 @@ golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u0 golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= -golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa h1:FRnLl4eNAQl8hwxVVC17teOw8kdjVDVAiFMtgUdTSRQ= -golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa/go.mod h1:zk2irFbV9DP96SEBUUAy67IdHUaZuSnrz1n472HUCLE= +golang.org/x/exp v0.0.0-20240112132812-db7319d0e0e3 h1:hNQpMuAJe5CtcUqCXaWga3FHu+kQvCqcsoVaQgSV60o= +golang.org/x/exp v0.0.0-20240112132812-db7319d0e0e3/go.mod h1:idGWGoKP1toJGkd5/ig9ZLuPcZBC3ewk7SzmH0uou08= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= @@ -910,22 +895,20 @@ golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwY golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= -golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.1.0/go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco= golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY= golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= -golang.org/x/net v0.19.0 h1:zTwKpTd2XuCqf8huc7Fo2iSy+4RHPd10s4KzeTnVr1c= -golang.org/x/net v0.19.0/go.mod h1:CfAk/cbD4CthTvqiEl8NpboMuiuOYsAr/7NOjZJtv1U= +golang.org/x/net v0.20.0 h1:aCL9BSgETF1k+blQaYUBx9hJ9LOGP3gAVemcZlf1Kpo= +golang.org/x/net v0.20.0/go.mod h1:z8BVo6PvndSri0LbOE3hAn0apkU+1YvI6E70E9jsnvY= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.15.0 h1:s8pnnxNVzjWyrvYdFUQq5llS1PX2zhPXmccZv99h7uQ= -golang.org/x/oauth2 v0.15.0/go.mod h1:q48ptWNTY5XWf+JNten23lcvHpLJ0ZSxF5ttTHKVCAM= +golang.org/x/oauth2 v0.16.0 h1:aDkGMBSYxElaoP81NpoUoz2oo2R2wHdZpGToUxfyQrQ= +golang.org/x/oauth2 v0.16.0/go.mod h1:hqZ+0LWXsiVoZpeld6jVt06P3adbS2Uu911W1SsJv2o= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -939,8 +922,8 @@ golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.5.0 h1:60k92dhOjHxJkrqnwsfl8KuaHbn/5dl0lUPUklKo3qE= -golang.org/x/sync v0.5.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.6.0 h1:5BMeUDZ7vkXGfEr1x9B4bRcTH4lpkTkpdh0T/J+qjbQ= +golang.org/x/sync v0.6.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20170830134202-bb24a47a89ea/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -993,23 +976,21 @@ golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220906165534-d0df966e6959/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= -golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.16.0 h1:xWw16ngr6ZMtmxDyKyIgsE93KNKz5HKmMa3b8ALHidU= +golang.org/x/sys v0.16.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc= golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= -golang.org/x/term v0.15.0 h1:y/Oo/a/q3IXu26lQgl04j/gjuBDOBlx7X6Om1j2CPW4= -golang.org/x/term v0.15.0/go.mod h1:BDl952bC7+uMoWR75FIrCDx79TPU9oHkTZ9yRbYOrX0= +golang.org/x/term v0.16.0 h1:m+B6fahuftsE9qjo0VWp2FW0mB3MTJvR0BaMQrq0pmE= +golang.org/x/term v0.16.0/go.mod h1:yn7UURbUtPyrVJPGPq404EukNFxcm/foM+bV/bfcDsY= golang.org/x/text v0.0.0-20160726164857-2910a502d2bf/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -1019,6 +1000,7 @@ golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= +golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= @@ -1029,8 +1011,8 @@ golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxb golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.3.0 h1:rg5rLMjNzMS1RkNLzCG38eapWhnYLFYXDXj2gOlr8j4= -golang.org/x/time v0.3.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.4.0 h1:Z81tqI5ddIoXDPvVQ7/7CC9TnLM7ubaFG2qXYd5BbYY= +golang.org/x/time v0.4.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20181011042414-1f849cf54d09/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= @@ -1077,16 +1059,16 @@ golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4f golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= -golang.org/x/tools v0.15.0 h1:zdAyfUGbYmuVokhzVmghFl2ZJh5QhcfebBgmVPFYA+8= -golang.org/x/tools v0.15.0/go.mod h1:hpksKq4dtpQWS1uQ61JkdqWM3LscIS6Slf+VVkm+wQk= +golang.org/x/tools v0.17.0 h1:FvmRgNOcs3kOa+T20R1uhfP9F6HgG2mfxDv1vrx1Htc= +golang.org/x/tools v0.17.0/go.mod h1:xsh6VxdV005rRVaS6SSAf9oiAqljS7UZUacMZ8Bnsps= golang.org/x/vuln v1.0.1 h1:KUas02EjQK5LTuIx1OylBQdKKZ9jeugs+HiqO5HormU= golang.org/x/vuln v1.0.1/go.mod h1:bb2hMwln/tqxg32BNY4CcxHWtHXuYa3SbIBmtsyjxtM= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk= -golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= +golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 h1:+cNy6SZtPcJQH3LJVLOSmiC7MMxXNOb3PU/VUEz+EhU= +golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028/go.mod h1:NDW/Ps6MPRej6fsCIbMTohpP40sJ/P/vI1MoTEGwX90= gonum.org/v1/gonum v0.0.0-20190331200053-3d26580ed485/go.mod h1:2ltnJ7xHfj0zHS40VVPYEAAMTa3ZGguvHGBSJeRWqE0= gonum.org/v1/gonum v0.11.0 h1:f1IJhK4Km5tBJmaiJXtk/PkL4cdVX6J+tGiM187uT5E= gonum.org/v1/gonum v0.11.0/go.mod h1:fSG4YDCxxUZQJ7rKsQrj0gMOg00Il0Z96/qMA4bVQhA= @@ -1103,16 +1085,16 @@ google.golang.org/api v0.15.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsb google.golang.org/api v0.17.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= google.golang.org/api v0.18.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= google.golang.org/api v0.22.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.149.0 h1:b2CqT6kG+zqJIVKRQ3ELJVLN1PwHZ6DJ3dW8yl82rgY= -google.golang.org/api v0.149.0/go.mod h1:Mwn1B7JTXrzXtnvmzQE2BD6bYZQ8DShKZDZbeN9I7qI= +google.golang.org/api v0.151.0 h1:FhfXLO/NFdJIzQtCqjpysWwqKk8AzGWBUhMIx67cVDU= +google.golang.org/api v0.151.0/go.mod h1:ccy+MJ6nrYFgE3WgRx/AMXOxOmU8Q4hSa+jjibzhxcg= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/appengine v1.6.7 h1:FZR1q0exgwxzPzp/aF+VccGrSfxfPpkBqjIIEq3ru6c= -google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= +google.golang.org/appengine v1.6.8 h1:IhEN5q69dyKagZPYMSdIjS2HqprW324FRQZJcGqPAsM= +google.golang.org/appengine v1.6.8/go.mod h1:1jJ3jBArFh5pcgW8gCtRJnepW8FzD1V44FJffLiz/Ds= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= @@ -1131,17 +1113,15 @@ google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4 google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= google.golang.org/genproto v0.0.0-20200527145253-8367513e4ece/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= google.golang.org/genproto v0.0.0-20201203001206-6486ece9c497/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20220107163113-42d7afdf6368/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b h1:+YaDE2r2OG8t/z5qmsh7Y+XXwCbvadxxZ0YY6mTdrVA= -google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b/go.mod h1:CgAqfJo+Xmu0GwA0411Ht3OU3OntXwsGmrmjI8ioGXI= -google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b h1:CIC2YMXmIhYw6evmhPxBKJ4fmLbOFtXQN/GV3XOZR8k= -google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b/go.mod h1:IBQ646DjkDkvUIsVq/cc03FUFQ9wbZu7yE396YcL870= -google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b h1:ZlWIi1wSK56/8hn4QcBp/j9M7Gt3U/3hZw3mC7vDICo= -google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b/go.mod h1:swOH3j0KzcDDgGUWr+SNpyTen5YrXjS3eyPzFYKc6lc= +google.golang.org/genproto v0.0.0-20231120223509-83a465c0220f h1:Vn+VyHU5guc9KjB5KrjI2q0wCOWEOIh0OEsleqakHJg= +google.golang.org/genproto v0.0.0-20231120223509-83a465c0220f/go.mod h1:nWSwAFPb+qfNJXsoeO3Io7zf4tMSfN8EA8RlDA04GhY= +google.golang.org/genproto/googleapis/api v0.0.0-20231120223509-83a465c0220f h1:2yNACc1O40tTnrsbk9Cv6oxiW8pxI/pXj0wRtdlYmgY= +google.golang.org/genproto/googleapis/api v0.0.0-20231120223509-83a465c0220f/go.mod h1:Uy9bTZJqmfrw2rIBxgGLnamc78euZULUBrLZ9XTITKI= +google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f h1:ultW7fxlIvee4HYrtnaRPon9HpEgFk5zYpmfMgtKB5I= +google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f/go.mod h1:L9KNLi232K1/xB6f7AlSX692koaRnKaWSR0stBki0Yc= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= @@ -1153,12 +1133,9 @@ google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8 google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= google.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk= -google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0= google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= -google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= -google.golang.org/grpc v1.59.0 h1:Z5Iec2pjwb+LEOqzpB2MR12/eKFhDPhuqW91O+4bwUk= -google.golang.org/grpc v1.59.0/go.mod h1:aUPDwccQo6OTjy7Hct4AfBPD1GptF4fyUjIkQ9YtF98= +google.golang.org/grpc v1.60.1 h1:26+wFr+cNqSGFcOXcabYC0lUVJVRa2Sb2ortSK7VrEU= +google.golang.org/grpc v1.60.1/go.mod h1:OlCHIeLYqSSsLi6i49B5QGdzaMZK9+M7LXN2FKz4eGM= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= @@ -1172,8 +1149,8 @@ google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlba google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8= -google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.32.0 h1:pPC6BG5ex8PDFnkbrGU3EixyhKcQ2aDuBS36lqK/C7I= +google.golang.org/protobuf v1.32.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= @@ -1200,14 +1177,12 @@ gopkg.in/warnings.v0 v0.1.2/go.mod h1:jksf8JmL6Qr/oQM2OXTHunEvvTAsrWBLb6OOjuVWRN gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74= gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= @@ -1222,15 +1197,15 @@ honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWh honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= k8s.io/api v0.18.8/go.mod h1:d/CXqwWv+Z2XEG1LgceeDmHQwpUJhROPx16SlxJgERY= -k8s.io/api v0.27.3 h1:yR6oQXXnUEBWEWcvPWS0jQL575KoAboQPfJAuKNrw5Y= -k8s.io/api v0.27.3/go.mod h1:C4BNvZnQOF7JA/0Xed2S+aUyJSfTGkGFxLXz9MnpIpg= +k8s.io/api v0.28.2 h1:9mpl5mOb6vXZvqbQmankOfPIGiudghwCoLl1EYfUZbw= +k8s.io/api v0.28.2/go.mod h1:RVnJBsjU8tcMq7C3iaRSGMeaKt2TWEUXcpIt/90fjEg= k8s.io/apimachinery v0.18.8/go.mod h1:6sQd+iHEqmOtALqOFjSWp2KZ9F0wlU/nWm0ZgsYWMig= -k8s.io/apimachinery v0.27.3 h1:Ubye8oBufD04l9QnNtW05idcOe9Z3GQN8+7PqmuVcUM= -k8s.io/apimachinery v0.27.3/go.mod h1:XNfZ6xklnMCOGGFNqXG7bUrQCoR04dh/E7FprV6pb+E= +k8s.io/apimachinery v0.28.2 h1:KCOJLrc6gu+wV1BYgwik4AF4vXOlVJPdiqn0yAWWwXQ= +k8s.io/apimachinery v0.28.2/go.mod h1:RdzF87y/ngqk9H4z3EL2Rppv5jj95vGS/HaFXrLDApU= k8s.io/apiserver v0.18.8/go.mod h1:12u5FuGql8Cc497ORNj79rhPdiXQC4bf53X/skR/1YM= k8s.io/client-go v0.18.8/go.mod h1:HqFqMllQ5NnQJNwjro9k5zMyfhZlOwpuTLVrxjkYSxU= -k8s.io/client-go v0.27.3 h1:7dnEGHZEJld3lYwxvLl7WoehK6lAq7GvgjxpA3nv1E8= -k8s.io/client-go v0.27.3/go.mod h1:2MBEKuTo6V1lbKy3z1euEGnhPfGZLKTS9tiJ2xodM48= +k8s.io/client-go v0.28.2 h1:DNoYI1vGq0slMBN/SWKMZMw0Rq+0EQW6/AK4v9+3VeY= +k8s.io/client-go v0.28.2/go.mod h1:sMkApowspLuc7omj1FOSUxSoqjr+d5Q0Yc0LOFnYFJY= k8s.io/cloud-provider v0.18.8/go.mod h1:cn9AlzMPVIXA4HHLVbgGUigaQlZyHSZ7WAwDEFNrQSs= k8s.io/code-generator v0.17.2/go.mod h1:DVmfPQgxQENqDIzVR2ddLXMH34qeszkKSdH/N+s+38s= k8s.io/component-base v0.18.8/go.mod h1:00frPRDas29rx58pPCxNkhUfPbwajlyyvu8ruNgSErU= @@ -1245,8 +1220,8 @@ k8s.io/klog/v2 v2.100.1/go.mod h1:y1WjHnz7Dj687irZUWR/WLkLc5N1YHtjLdmgWjndZn0= k8s.io/kube-openapi v0.0.0-20191107075043-30be4d16710a/go.mod h1:1TqjTSzOxsLGIKfj0lK8EeCP7K1iUG65v09OM0/WG5E= k8s.io/kube-openapi v0.0.0-20200410145947-61e04a5be9a6/go.mod h1:GRQhZsXIAJ1xR0C9bd8UpWHZ5plfAS9fzPjJuQ6JL3E= k8s.io/kube-openapi v0.0.0-20200410163147-594e756bea31/go.mod h1:1TqjTSzOxsLGIKfj0lK8EeCP7K1iUG65v09OM0/WG5E= -k8s.io/kube-openapi v0.0.0-20230525220651-2546d827e515 h1:OmK1d0WrkD3IPfkskvroRykOulHVHf0s0ZIFRjyt+UI= -k8s.io/kube-openapi v0.0.0-20230525220651-2546d827e515/go.mod h1:kzo02I3kQ4BTtEfVLaPbjvCkX97YqGve33wzlb3fofQ= +k8s.io/kube-openapi v0.0.0-20230717233707-2695361300d9 h1:LyMgNKD2P8Wn1iAwQU5OhxCKlKJy0sHc+PcDwFB24dQ= +k8s.io/kube-openapi v0.0.0-20230717233707-2695361300d9/go.mod h1:wZK2AVp1uHCp4VamDVgBP2COHZjqD1T68Rf0CM3YjSM= k8s.io/legacy-cloud-providers v0.18.8/go.mod h1:tgp4xYf6lvjrWnjQwTOPvWQE9IVqSBGPF4on0IyICQE= k8s.io/utils v0.0.0-20200324210504-a9aa75ae1b89/go.mod h1:sZAwmy6armz5eXlNoLmJcl4F1QuKu7sr+mFQ0byX7Ew= k8s.io/utils v0.0.0-20230711102312-30195339c3c7 h1:ZgnF1KZsYxWIifwSNZFZgNtWE89WI5yiP5WwlfDoIyc= diff --git a/internal/fuzzers/fuzzers.go b/internal/fuzzers/fuzzers.go new file mode 100644 index 000000000000..bc2cb30f794b --- /dev/null +++ b/internal/fuzzers/fuzzers.go @@ -0,0 +1,32 @@ +// Copyright 2024 OpenSSF Scorecard Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Package fuzzers defines the string constants used when identifying supported fuzzer tools. +package fuzzers + +const ( + OSSFuzz = "OSSFuzz" + ClusterFuzzLite = "ClusterFuzzLite" + BuiltInGo = "GoBuiltInFuzzer" + PropertyBasedHaskell = "HaskellPropertyBasedTesting" + PropertyBasedJavaScript = "JavaScriptPropertyBasedTesting" + PropertyBasedTypeScript = "TypeScriptPropertyBasedTesting" + PythonAtheris = "PythonAtherisFuzzer" + CLibFuzzer = "CLibFuzzer" + CppLibFuzzer = "CppLibFuzzer" + SwiftLibFuzzer = "SwiftLibFuzzer" + RustCargoFuzz = "RustCargoFuzzer" + JavaJazzerFuzzer = "JavaJazzerFuzzer" + // TODO: add more fuzzing check supports. +) diff --git a/pkg/json.go b/pkg/json.go index f98766decefe..f5c4ce71bb1f 100644 --- a/pkg/json.go +++ b/pkg/json.go @@ -69,6 +69,8 @@ type jsonScorecardV2 struct { type jsonFloatScore float64 +var errNoDoc = errors.New("doc is nil") + func (s jsonFloatScore) MarshalJSON() ([]byte, error) { // Note: for integers, this will show as X.0. return []byte(fmt.Sprintf("%.1f", s)), nil @@ -147,6 +149,9 @@ func (r *ScorecardResult) AsJSON2(showDetails bool, if e != nil { return sce.WithMessage(sce.ErrScorecardInternal, fmt.Sprintf("GetCheck: %s: %v", checkResult.Name, e)) } + if doc == nil { + return sce.WithMessage(sce.ErrScorecardInternal, fmt.Sprintf("GetCheck: %s: %v", checkResult.Name, errNoDoc)) + } tmpResult := jsonCheckResultV2{ Name: checkResult.Name, diff --git a/pkg/sarif.go b/pkg/sarif.go index dfa418439bf9..bcb9849d6959 100644 --- a/pkg/sarif.go +++ b/pkg/sarif.go @@ -550,6 +550,9 @@ func computeCategory(checkName string, repos []string) (string, error) { } } +// createSARIFRuns takes a map of runs and returns a sorted slice of runs. +// It sorts the keys of the map, iterates over them, and appends the corresponding run to the result slice. +// If the run is nil, it is skipped. func createSARIFRuns(runs map[string]*run) []run { res := []run{} // Sort keys. @@ -561,7 +564,9 @@ func createSARIFRuns(runs map[string]*run) []run { // Iterate over keys. for _, k := range keys { - res = append(res, *runs[k]) + if runs[k] != nil { + res = append(res, *runs[k]) + } } return res } diff --git a/pkg/sarif_test.go b/pkg/sarif_test.go index 49d8e7190e94..6a8912721ef5 100644 --- a/pkg/sarif_test.go +++ b/pkg/sarif_test.go @@ -18,6 +18,7 @@ import ( "bytes" "fmt" "os" + "reflect" "testing" "time" @@ -852,3 +853,79 @@ func TestSARIFOutput(t *testing.T) { }) } } + +func Test_createSARIFRuns(t *testing.T) { + t.Parallel() + type args struct { + runs map[string]*run + } + tests := []struct { + name string + args args + want []run + }{ + { + name: "empty runs", + args: args{ + runs: map[string]*run{}, + }, + want: []run{}, + }, + { + name: "nil runs are skipped", + args: args{ + runs: map[string]*run{ + "run1": nil, + "run2": { + Tool: tool{ + Driver: driver{ + Name: "name", + }, + }, + }, + }, + }, + want: []run{ + { + Tool: tool{ + Driver: driver{ + Name: "name", + }, + }, + }, + }, + }, + { + name: "one run", + args: args{ + runs: map[string]*run{ + "run1": { + Tool: tool{ + Driver: driver{ + Name: "name", + }, + }, + }, + }, + }, + want: []run{ + { + Tool: tool{ + Driver: driver{ + Name: "name", + }, + }, + }, + }, + }, + } + for _, tt := range tests { + tt := tt + t.Run(tt.name, func(t *testing.T) { + t.Parallel() + if got := createSARIFRuns(tt.args.runs); !reflect.DeepEqual(got, tt.want) { + t.Errorf("createSARIFRuns() = %v, want %v", got, tt.want) + } + }) + } +} diff --git a/pkg/scorecard.go b/pkg/scorecard.go index 321806c3ada1..2a21c74f699d 100644 --- a/pkg/scorecard.go +++ b/pkg/scorecard.go @@ -42,7 +42,7 @@ func runEnabledChecks(ctx context.Context, repo clients.Repo, request *checker.CheckRequest, checksToRun checker.CheckNameToFnMap, - resultsCh chan checker.CheckResult, + resultsCh chan<- checker.CheckResult, ) { wg := sync.WaitGroup{} for checkName, checkFn := range checksToRun { diff --git a/probes/blocksDeleteOnBranches/def.yml b/probes/blocksDeleteOnBranches/def.yml new file mode 100644 index 000000000000..fdda8657bd8a --- /dev/null +++ b/probes/blocksDeleteOnBranches/def.yml @@ -0,0 +1,27 @@ +# Copyright 2023 OpenSSF Scorecard Authors +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +id: blocksDeleteOnBranches +short: Check that the project blocks non-admins from deleting branches. +motivation: > + Allowing non-admins to delete project branches has a similar effect to performing force pushes. +implementation: > + Checks the protection rules of default and release branches. +outcome: + - The probe returns one OutcomePositive for each branch that is disallowed from users deleting it, and one OutcomeNegative for branches where users are able to delete it. Scorecard only considers default and releases branches. +remediation: + effort: Low + text: + - Disallow deletion of branches in your project to remove negative outcomes. + - GitHub and Gitlab by default disable deleting a protected branch. \ No newline at end of file diff --git a/probes/blocksDeleteOnBranches/impl.go b/probes/blocksDeleteOnBranches/impl.go new file mode 100644 index 000000000000..d8c67ebc7fc5 --- /dev/null +++ b/probes/blocksDeleteOnBranches/impl.go @@ -0,0 +1,67 @@ +// Copyright 2023 OpenSSF Scorecard Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//nolint:stylecheck +package blocksDeleteOnBranches + +import ( + "embed" + "fmt" + + "github.com/ossf/scorecard/v4/checker" + "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" +) + +//go:embed *.yml +var fs embed.FS + +const Probe = "blocksDeleteOnBranches" + +func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { + if raw == nil { + return nil, "", fmt.Errorf("%w: raw", uerror.ErrNil) + } + + r := raw.BranchProtectionResults + var findings []finding.Finding + + for i := range r.Branches { + branch := &r.Branches[i] + + var text string + var outcome finding.Outcome + switch { + case branch.BranchProtectionRule.AllowDeletions == nil: + text = "could not determine whether branch is protected against deletion" + outcome = finding.OutcomeNotAvailable + case *branch.BranchProtectionRule.AllowDeletions: + text = fmt.Sprintf("'allow deletion' enabled on branch '%s'", *branch.Name) + outcome = finding.OutcomeNegative + case !*branch.BranchProtectionRule.AllowDeletions: + text = fmt.Sprintf("'allow deletion' disabled on branch '%s'", *branch.Name) + outcome = finding.OutcomePositive + default: + } + f, err := finding.NewWith(fs, Probe, text, nil, outcome) + if err != nil { + return nil, Probe, fmt.Errorf("create finding: %w", err) + } + f = f.WithValues(map[string]int{ + *branch.Name: 1, + }) + findings = append(findings, *f) + } + return findings, Probe, nil +} diff --git a/probes/blocksDeleteOnBranches/impl_test.go b/probes/blocksDeleteOnBranches/impl_test.go new file mode 100644 index 000000000000..8c59921b9370 --- /dev/null +++ b/probes/blocksDeleteOnBranches/impl_test.go @@ -0,0 +1,177 @@ +// Copyright 2023 OpenSSF Scorecard Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//nolint:stylecheck +package blocksDeleteOnBranches + +import ( + "testing" + + "github.com/google/go-cmp/cmp" + "github.com/google/go-cmp/cmp/cmpopts" + + "github.com/ossf/scorecard/v4/checker" + "github.com/ossf/scorecard/v4/clients" + "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" +) + +func Test_Run(t *testing.T) { + t.Parallel() + trueVal := true + falseVal := false + branchVal1 := "branch-name1" + branchVal2 := "branch-name1" + + //nolint:govet + tests := []struct { + name string + raw *checker.RawResults + outcomes []finding.Outcome + err error + }{ + { + name: "One branch blocks branch deletion should result in one positive outcome", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + AllowDeletions: &falseVal, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, + }, + }, + { + name: "Two branches that block branch deletions should result in two positive outcomes", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + AllowDeletions: &falseVal, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + AllowDeletions: &falseVal, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, finding.OutcomePositive, + }, + }, + { + name: "Two branches in total: One blocks branch deletion and one doesn't = 1 positive & 1 negative", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + AllowDeletions: &falseVal, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + AllowDeletions: &trueVal, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, finding.OutcomeNegative, + }, + }, + { + name: "Two branches in total: One blocks branch deletion and one doesn't = 1 negative & 1 positive", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + AllowDeletions: &trueVal, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + AllowDeletions: &falseVal, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomeNegative, finding.OutcomePositive, + }, + }, + { + name: "Two branches in total: One blocks branch deletion and one lacks data = 1 negative & 1 unavailable", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + AllowDeletions: &trueVal, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + AllowDeletions: nil, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomeNegative, finding.OutcomeNotAvailable, + }, + }, + } + for _, tt := range tests { + tt := tt // Re-initializing variable so it is not changed while executing the closure below + t.Run(tt.name, func(t *testing.T) { + t.Parallel() + + findings, s, err := Run(tt.raw) + if !cmp.Equal(tt.err, err, cmpopts.EquateErrors()) { + t.Errorf("mismatch (-want +got):\n%s", cmp.Diff(tt.err, err, cmpopts.EquateErrors())) + } + if err != nil { + return + } + if diff := cmp.Diff(Probe, s); diff != "" { + t.Errorf("mismatch (-want +got):\n%s", diff) + } + test.AssertOutcomes(t, findings, tt.outcomes) + }) + } +} diff --git a/probes/blocksForcePushOnBranches/def.yml b/probes/blocksForcePushOnBranches/def.yml new file mode 100644 index 000000000000..502ccb29a955 --- /dev/null +++ b/probes/blocksForcePushOnBranches/def.yml @@ -0,0 +1,33 @@ +# Copyright 2023 OpenSSF Scorecard Authors +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +id: blocksForcePushOnBranches +short: Check that the project blocks force push on its branches. +motivation: > + Allowing non-admins to force push to branches could allow untrusted users to make insecure changes to the behavior of the project. +implementation: > + Checks the protection rules of default and release branches. +outcome: + - The probe returns one OutcomePositive for each branch that is blocked from force pushes, and one OutcomeNegative for branches that allows force push. + - Returns OutcomeNotAvailable if Scorecard cannot fetch the data from the repository. +remediation: + effort: Low + text: + - Disallow force pushes branches in your project to remove negative outcomes. + - For GitHub-hosted projects, force pushes are disabled by default. To make sure it has not been enabled, see ["Allow force pushes"](https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches#allow-force-pushes). + - For Gitlab-hosted projects, follow the ["Protected branches"](https://docs.gitlab.com/ee/user/project/protected_branches.html) documentation to see who can force push to the project. + markdown: + - Disallow force pushes branches in your project to remove negative outcomes. + - For GitHub-hosted projects, force pushes are disabled by default. To make sure it has not been enabled, see ["Allow force pushes"](https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches#allow-force-pushes). + - For Gitlab-hosted projects, follow the ["Protected branches"](https://docs.gitlab.com/ee/user/project/protected_branches.html) documentation to see who can force push to the project. \ No newline at end of file diff --git a/probes/blocksForcePushOnBranches/impl.go b/probes/blocksForcePushOnBranches/impl.go new file mode 100644 index 000000000000..72bee662bd8f --- /dev/null +++ b/probes/blocksForcePushOnBranches/impl.go @@ -0,0 +1,66 @@ +// Copyright 2023 OpenSSF Scorecard Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//nolint:stylecheck +package blocksForcePushOnBranches + +import ( + "embed" + "fmt" + + "github.com/ossf/scorecard/v4/checker" + "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" +) + +//go:embed *.yml +var fs embed.FS + +const Probe = "blocksForcePushOnBranches" + +func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { + if raw == nil { + return nil, "", fmt.Errorf("%w: raw", uerror.ErrNil) + } + + r := raw.BranchProtectionResults + var findings []finding.Finding + + for i := range r.Branches { + branch := &r.Branches[i] + var text string + var outcome finding.Outcome + switch { + case branch.BranchProtectionRule.AllowForcePushes == nil: + text = "could not determine whether for push is allowed" + outcome = finding.OutcomeNotAvailable + case *branch.BranchProtectionRule.AllowForcePushes: + text = fmt.Sprintf("'force pushes' enabled on branch '%s'", *branch.Name) + outcome = finding.OutcomeNegative + case !*branch.BranchProtectionRule.AllowForcePushes: + text = fmt.Sprintf("'force pushes' disabled on branch '%s'", *branch.Name) + outcome = finding.OutcomePositive + default: + } + f, err := finding.NewWith(fs, Probe, text, nil, outcome) + if err != nil { + return nil, Probe, fmt.Errorf("create finding: %w", err) + } + f = f.WithValues(map[string]int{ + *branch.Name: 1, + }) + findings = append(findings, *f) + } + return findings, Probe, nil +} diff --git a/probes/blocksForcePushOnBranches/impl_test.go b/probes/blocksForcePushOnBranches/impl_test.go new file mode 100644 index 000000000000..d3579daa0ba6 --- /dev/null +++ b/probes/blocksForcePushOnBranches/impl_test.go @@ -0,0 +1,177 @@ +// Copyright 2023 OpenSSF Scorecard Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//nolint:stylecheck +package blocksForcePushOnBranches + +import ( + "testing" + + "github.com/google/go-cmp/cmp" + "github.com/google/go-cmp/cmp/cmpopts" + + "github.com/ossf/scorecard/v4/checker" + "github.com/ossf/scorecard/v4/clients" + "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" +) + +func Test_Run(t *testing.T) { + t.Parallel() + trueVal := true + falseVal := false + branchVal1 := "branch-name1" + branchVal2 := "branch-name1" + + //nolint:govet + tests := []struct { + name string + raw *checker.RawResults + outcomes []finding.Outcome + err error + }{ + { + name: "Blocks Force Push on 1/1 branches = 1 positive outcome", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + AllowForcePushes: &falseVal, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, + }, + }, + { + name: "Blocks Force Push on 2/2 branches = 2 positive outcomes", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + AllowForcePushes: &falseVal, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + AllowForcePushes: &falseVal, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, finding.OutcomePositive, + }, + }, + { + name: "Blocks Force Push on 1/2 branches = 1 positive and 1 negative outcome", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + AllowForcePushes: &falseVal, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + AllowForcePushes: &trueVal, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, finding.OutcomeNegative, + }, + }, + { + name: "Blocks Force Push on 1/2 branches = 1 negative and 1 positive outcome", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + AllowForcePushes: &trueVal, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + AllowForcePushes: &falseVal, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomeNegative, finding.OutcomePositive, + }, + }, + { + name: "Blocks Force Push on 0/2 branches, 1 branch lacks data = 1 negative and 1 unavailable", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + AllowForcePushes: &trueVal, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + AllowForcePushes: nil, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomeNegative, finding.OutcomeNotAvailable, + }, + }, + } + for _, tt := range tests { + tt := tt // Re-initializing variable so it is not changed while executing the closure below + t.Run(tt.name, func(t *testing.T) { + t.Parallel() + + findings, s, err := Run(tt.raw) + if !cmp.Equal(tt.err, err, cmpopts.EquateErrors()) { + t.Errorf("mismatch (-want +got):\n%s", cmp.Diff(tt.err, err, cmpopts.EquateErrors())) + } + if err != nil { + return + } + if diff := cmp.Diff(Probe, s); diff != "" { + t.Errorf("mismatch (-want +got):\n%s", diff) + } + test.AssertOutcomes(t, findings, tt.outcomes) + }) + } +} diff --git a/probes/branchProtectionAppliesToAdmins/def.yml b/probes/branchProtectionAppliesToAdmins/def.yml new file mode 100644 index 000000000000..6c27b98d75d8 --- /dev/null +++ b/probes/branchProtectionAppliesToAdmins/def.yml @@ -0,0 +1,34 @@ +# Copyright 2023 OpenSSF Scorecard Authors +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +id: branchProtectionAppliesToAdmins +short: Check that the projects branch protection rules apply to project admins. +motivation: > + Admins can make malicious code changes that users will be unaware of (see CVE-2022-23812); consuming software where this is disabled is encouraged. +implementation: > + Checks the protection rules of default and release branches. +outcome: + - The probe returns one OutcomePositive for each branch that enforces branch protection rules on admins, and one OutcomeNegative for branches that don't. +remediation: + effort: Medium + text: + - The remediation effort can be Low to High dependening on other branch protection settings. + - Enforce protection rules for admins on all branches. + - For GitHub-hosted projects, see the ["Do not allow bypassing the above settings"](https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches#do-not-allow-bypassing-the-above-settings) section in the GitHub docs. + - For Gitlab-hosted projects, see the ["Protected branches"](https://docs.gitlab.com/ee/user/project/protected_branches.html) documentation. + markdown: + - The remediation effort can be Low to High dependening on other branch protection settings. + - Enforce protection rules for admins on all branches. + - For GitHub-hosted projects, see the ["Do not allow bypassing the above settings"](https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches#do-not-allow-bypassing-the-above-settings) section in the GitHub docs. + - For Gitlab-hosted projects, see the ["Protected branches"](https://docs.gitlab.com/ee/user/project/protected_branches.html) documentation. \ No newline at end of file diff --git a/probes/branchProtectionAppliesToAdmins/impl.go b/probes/branchProtectionAppliesToAdmins/impl.go new file mode 100644 index 000000000000..7c8099aabd1d --- /dev/null +++ b/probes/branchProtectionAppliesToAdmins/impl.go @@ -0,0 +1,61 @@ +// Copyright 2023 OpenSSF Scorecard Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//nolint:stylecheck +package branchProtectionAppliesToAdmins + +import ( + "embed" + "fmt" + + "github.com/ossf/scorecard/v4/checker" + "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/branchprotection" + "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" +) + +//go:embed *.yml +var fs embed.FS + +const Probe = "branchProtectionAppliesToAdmins" + +func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { + if raw == nil { + return nil, "", fmt.Errorf("%w: raw", uerror.ErrNil) + } + + r := raw.BranchProtectionResults + var findings []finding.Finding + + for i := range r.Branches { + branch := &r.Branches[i] + + p := branch.BranchProtectionRule.EnforceAdmins + text, outcome, err := branchprotection.GetTextOutcomeFromBool(p, + "branch protection settings apply to administrators", + *branch.Name) + if err != nil { + return nil, Probe, fmt.Errorf("create finding: %w", err) + } + f, err := finding.NewWith(fs, Probe, text, nil, outcome) + if err != nil { + return nil, Probe, fmt.Errorf("create finding: %w", err) + } + f = f.WithValues(map[string]int{ + *branch.Name: 1, + }) + findings = append(findings, *f) + } + return findings, Probe, nil +} diff --git a/probes/branchProtectionAppliesToAdmins/impl_test.go b/probes/branchProtectionAppliesToAdmins/impl_test.go new file mode 100644 index 000000000000..49e9092ef86d --- /dev/null +++ b/probes/branchProtectionAppliesToAdmins/impl_test.go @@ -0,0 +1,177 @@ +// Copyright 2023 OpenSSF Scorecard Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//nolint:stylecheck +package branchProtectionAppliesToAdmins + +import ( + "testing" + + "github.com/google/go-cmp/cmp" + "github.com/google/go-cmp/cmp/cmpopts" + + "github.com/ossf/scorecard/v4/checker" + "github.com/ossf/scorecard/v4/clients" + "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" +) + +func Test_Run(t *testing.T) { + t.Parallel() + trueVal := true + falseVal := false + branchVal1 := "branch-name1" + branchVal2 := "branch-name1" + + //nolint:govet + tests := []struct { + name string + raw *checker.RawResults + outcomes []finding.Outcome + err error + }{ + { + name: "1 branch enforces protection rules on admins = 1 positive outcome", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + EnforceAdmins: &trueVal, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, + }, + }, + { + name: "1 branch enforces protection rules on admins = 2 positive outcomes", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + EnforceAdmins: &trueVal, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + EnforceAdmins: &trueVal, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, finding.OutcomePositive, + }, + }, + { + name: "1 branch enforces protection rules on admins and 1 doesn't = 1 positive & 1 negative", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + EnforceAdmins: &trueVal, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + EnforceAdmins: &falseVal, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, finding.OutcomeNegative, + }, + }, + { + name: "1 branch does not enforce protection rules on admins and 1 does = 1 negative & 1 positive", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + EnforceAdmins: &falseVal, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + EnforceAdmins: &trueVal, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomeNegative, finding.OutcomePositive, + }, + }, + { + name: "1 branch does not enforce protection rules on admins and 1 doesn't have data = 1 negative & 1 unavailable", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + EnforceAdmins: &falseVal, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + EnforceAdmins: nil, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomeNegative, finding.OutcomeNotAvailable, + }, + }, + } + for _, tt := range tests { + tt := tt // Re-initializing variable so it is not changed while executing the closure below + t.Run(tt.name, func(t *testing.T) { + t.Parallel() + + findings, s, err := Run(tt.raw) + if !cmp.Equal(tt.err, err, cmpopts.EquateErrors()) { + t.Errorf("mismatch (-want +got):\n%s", cmp.Diff(tt.err, err, cmpopts.EquateErrors())) + } + if err != nil { + return + } + if diff := cmp.Diff(Probe, s); diff != "" { + t.Errorf("mismatch (-want +got):\n%s", diff) + } + test.AssertOutcomes(t, findings, tt.outcomes) + }) + } +} diff --git a/probes/contributorsFromOrgOrCompany/impl_test.go b/probes/contributorsFromOrgOrCompany/impl_test.go index 0efe4c7c8271..648f7218dcfd 100644 --- a/probes/contributorsFromOrgOrCompany/impl_test.go +++ b/probes/contributorsFromOrgOrCompany/impl_test.go @@ -24,6 +24,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/clients" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" ) type User struct { @@ -144,7 +145,6 @@ func Test_Run(t *testing.T) { t.Run(tt.name, func(t *testing.T) { t.Parallel() - // TODO(#https://github.com/ossf/scorecard/issues/3472) Use common validation function. findings, s, err := Run(tt.raw) if !cmp.Equal(tt.err, err, cmpopts.EquateErrors()) { t.Errorf("mismatch (-want +got):\n%s", cmp.Diff(tt.err, err, cmpopts.EquateErrors())) @@ -156,16 +156,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/dismissesStaleReviews/def.yml b/probes/dismissesStaleReviews/def.yml new file mode 100644 index 000000000000..9dfd90fdeee4 --- /dev/null +++ b/probes/dismissesStaleReviews/def.yml @@ -0,0 +1,28 @@ +# Copyright 2023 OpenSSF Scorecard Authors +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +id: dismissesStaleReviews +short: Check that the project dismisses stale reviews when new commits are pushed. +motivation: > + When a project does not dismiss stale reviews, contributors can bring their pull requests to an approved state and then make malicious commits. +implementation: > + Checks the protection rules of default and release branches. +outcome: + - The probe returns one OutcomePositive for each branch that dismisses the stale status of PRs, and one OutcomeNegative for branches that don't. +remediation: + effort: High + text: + - Configure your repository so that the stale status of PRs is dismissed when users make new commits. + - For GitHub-hosted projects, see ["Require pull request reviews before merging"](https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches#require-pull-request-reviews-before-merging). + - For Gitlab-hosted projects, see ["Remove all approvals when commits are added to the source branch"](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/settings.html#remove-all-approvals-when-commits-are-added-to-the-source-branch). \ No newline at end of file diff --git a/probes/dismissesStaleReviews/impl.go b/probes/dismissesStaleReviews/impl.go new file mode 100644 index 000000000000..bb21e1c3da4c --- /dev/null +++ b/probes/dismissesStaleReviews/impl.go @@ -0,0 +1,61 @@ +// Copyright 2023 OpenSSF Scorecard Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//nolint:stylecheck +package dismissesStaleReviews + +import ( + "embed" + "fmt" + + "github.com/ossf/scorecard/v4/checker" + "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/branchprotection" + "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" +) + +//go:embed *.yml +var fs embed.FS + +const Probe = "dismissesStaleReviews" + +func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { + if raw == nil { + return nil, "", fmt.Errorf("%w: raw", uerror.ErrNil) + } + + r := raw.BranchProtectionResults + var findings []finding.Finding + + for i := range r.Branches { + branch := &r.Branches[i] + + p := branch.BranchProtectionRule.RequiredPullRequestReviews.DismissStaleReviews + text, outcome, err := branchprotection.GetTextOutcomeFromBool(p, + "stale review dismissal", + *branch.Name) + if err != nil { + return nil, Probe, fmt.Errorf("create finding: %w", err) + } + f, err := finding.NewWith(fs, Probe, text, nil, outcome) + if err != nil { + return nil, Probe, fmt.Errorf("create finding: %w", err) + } + f = f.WithValues(map[string]int{ + *branch.Name: 1, + }) + findings = append(findings, *f) + } + return findings, Probe, nil +} diff --git a/probes/dismissesStaleReviews/impl_test.go b/probes/dismissesStaleReviews/impl_test.go new file mode 100644 index 000000000000..d074ca52e1c8 --- /dev/null +++ b/probes/dismissesStaleReviews/impl_test.go @@ -0,0 +1,195 @@ +// Copyright 2023 OpenSSF Scorecard Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//nolint:stylecheck +package dismissesStaleReviews + +import ( + "testing" + + "github.com/google/go-cmp/cmp" + "github.com/google/go-cmp/cmp/cmpopts" + + "github.com/ossf/scorecard/v4/checker" + "github.com/ossf/scorecard/v4/clients" + "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" +) + +func Test_Run(t *testing.T) { + t.Parallel() + trueVal := true + falseVal := false + branchVal1 := "branch-name1" + branchVal2 := "branch-name1" + + //nolint:govet + tests := []struct { + name string + raw *checker.RawResults + outcomes []finding.Outcome + err error + }{ + { + name: "Dismisses stale reviews on 1/1 branches", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + DismissStaleReviews: &trueVal, + }, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, + }, + }, + { + name: "Dismisses stale reviews on 2/2 branches", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + DismissStaleReviews: &trueVal, + }, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + DismissStaleReviews: &trueVal, + }, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, finding.OutcomePositive, + }, + }, + { + name: "Dismisses stale reviews on 1/2 branches - 1", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + DismissStaleReviews: &trueVal, + }, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + DismissStaleReviews: &falseVal, + }, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, finding.OutcomeNegative, + }, + }, + { + name: "Dismisses stale reviews on 1/2 branches - 2", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + DismissStaleReviews: &falseVal, + }, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + DismissStaleReviews: &trueVal, + }, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomeNegative, finding.OutcomePositive, + }, + }, + { + name: "Dismisses stale reviews on 0/2 branches", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + DismissStaleReviews: &falseVal, + }, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + DismissStaleReviews: nil, + }, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomeNegative, finding.OutcomeNotAvailable, + }, + }, + } + for _, tt := range tests { + tt := tt // Re-initializing variable so it is not changed while executing the closure below + t.Run(tt.name, func(t *testing.T) { + t.Parallel() + + findings, s, err := Run(tt.raw) + if !cmp.Equal(tt.err, err, cmpopts.EquateErrors()) { + t.Errorf("mismatch (-want +got):\n%s", cmp.Diff(tt.err, err, cmpopts.EquateErrors())) + } + if err != nil { + return + } + if diff := cmp.Diff(Probe, s); diff != "" { + t.Errorf("mismatch (-want +got):\n%s", diff) + } + test.AssertOutcomes(t, findings, tt.outcomes) + }) + } +} diff --git a/probes/entries.go b/probes/entries.go index e3f0a00180b4..b1b5f15217fe 100644 --- a/probes/entries.go +++ b/probes/entries.go @@ -53,6 +53,8 @@ import ( "github.com/ossf/scorecard/v4/probes/releasesAreSigned" "github.com/ossf/scorecard/v4/probes/releasesHaveProvenance" "github.com/ossf/scorecard/v4/probes/sastToolCodeQLInstalled" + "github.com/ossf/scorecard/v4/probes/sastToolPysaInstalled" + "github.com/ossf/scorecard/v4/probes/sastToolQodanaInstalled" "github.com/ossf/scorecard/v4/probes/sastToolRunsOnAllCommits" "github.com/ossf/scorecard/v4/probes/sastToolSnykInstalled" "github.com/ossf/scorecard/v4/probes/sastToolSonarInstalled" @@ -122,6 +124,8 @@ var ( } SAST = []ProbeImpl{ sastToolCodeQLInstalled.Run, + sastToolPysaInstalled.Run, + sastToolQodanaInstalled.Run, sastToolSnykInstalled.Run, sastToolRunsOnAllCommits.Run, sastToolSonarInstalled.Run, diff --git a/probes/freeOfAnyBinaryArtifacts/impl_test.go b/probes/freeOfAnyBinaryArtifacts/impl_test.go index 94046cb5fb73..51eaf81fd2c9 100644 --- a/probes/freeOfAnyBinaryArtifacts/impl_test.go +++ b/probes/freeOfAnyBinaryArtifacts/impl_test.go @@ -23,6 +23,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" ) func Test_Run(t *testing.T) { @@ -143,16 +144,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/freeOfUnverifiedBinaryArtifacts/impl_test.go b/probes/freeOfUnverifiedBinaryArtifacts/impl_test.go index ce03d7400bc4..48bd1eaa2183 100644 --- a/probes/freeOfUnverifiedBinaryArtifacts/impl_test.go +++ b/probes/freeOfUnverifiedBinaryArtifacts/impl_test.go @@ -23,6 +23,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" ) func Test_Run(t *testing.T) { @@ -108,16 +109,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/fuzzedWithCLibFuzzer/impl.go b/probes/fuzzedWithCLibFuzzer/impl.go index a04f445281a5..98b46d260041 100644 --- a/probes/fuzzedWithCLibFuzzer/impl.go +++ b/probes/fuzzedWithCLibFuzzer/impl.go @@ -21,6 +21,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/internal/fuzzers" "github.com/ossf/scorecard/v4/probes/internal/utils/fuzzing" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -35,5 +36,5 @@ func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { return nil, "", fmt.Errorf("%w: raw", uerror.ErrNil) } //nolint:wrapcheck - return fuzzing.Run(raw, fs, Probe, "CLibFuzzer") + return fuzzing.Run(raw, fs, Probe, fuzzers.CLibFuzzer) } diff --git a/probes/fuzzedWithCLibFuzzer/impl_test.go b/probes/fuzzedWithCLibFuzzer/impl_test.go index a3db752b4097..60c565138788 100644 --- a/probes/fuzzedWithCLibFuzzer/impl_test.go +++ b/probes/fuzzedWithCLibFuzzer/impl_test.go @@ -23,6 +23,8 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/internal/fuzzers" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -41,7 +43,7 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "CLibFuzzer", + Name: fuzzers.CLibFuzzer, }, }, }, @@ -56,10 +58,10 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "CLibFuzzer", + Name: fuzzers.CLibFuzzer, }, { - Name: "CLibFuzzer", + Name: fuzzers.CLibFuzzer, }, }, }, @@ -75,7 +77,7 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "CLibFuzzer", + Name: fuzzers.CLibFuzzer, }, { Name: "not-CLibFuzzer", @@ -118,7 +120,6 @@ func Test_Run(t *testing.T) { tt := tt // Re-initializing variable so it is not changed while executing the closure below t.Run(tt.name, func(t *testing.T) { t.Parallel() - // TODO(#https://github.com/ossf/scorecard/issues/3472) Use common validation function. findings, s, err := Run(tt.raw) if !cmp.Equal(tt.err, err, cmpopts.EquateErrors()) { t.Errorf("mismatch (-want +got):\n%s", cmp.Diff(tt.err, err, cmpopts.EquateErrors())) @@ -129,16 +130,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/fuzzedWithClusterFuzzLite/impl.go b/probes/fuzzedWithClusterFuzzLite/impl.go index 24bc7fdb9577..32ea8afcb746 100644 --- a/probes/fuzzedWithClusterFuzzLite/impl.go +++ b/probes/fuzzedWithClusterFuzzLite/impl.go @@ -21,6 +21,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/internal/fuzzers" "github.com/ossf/scorecard/v4/probes/internal/utils/fuzzing" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -35,5 +36,5 @@ func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { return nil, "", fmt.Errorf("%w: raw", uerror.ErrNil) } //nolint:wrapcheck - return fuzzing.Run(raw, fs, Probe, "ClusterFuzzLite") + return fuzzing.Run(raw, fs, Probe, fuzzers.ClusterFuzzLite) } diff --git a/probes/fuzzedWithClusterFuzzLite/impl_test.go b/probes/fuzzedWithClusterFuzzLite/impl_test.go index e2ff255c2e67..42cb709876c0 100644 --- a/probes/fuzzedWithClusterFuzzLite/impl_test.go +++ b/probes/fuzzedWithClusterFuzzLite/impl_test.go @@ -23,6 +23,8 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/internal/fuzzers" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -41,7 +43,7 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "ClusterFuzzLite", + Name: fuzzers.ClusterFuzzLite, }, }, }, @@ -56,10 +58,10 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "ClusterFuzzLite", + Name: fuzzers.ClusterFuzzLite, }, { - Name: "ClusterFuzzLite", + Name: fuzzers.ClusterFuzzLite, }, }, }, @@ -75,7 +77,7 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "ClusterFuzzLite", + Name: fuzzers.ClusterFuzzLite, }, { Name: "not-ClusterFuzzLite", @@ -129,16 +131,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/fuzzedWithCppLibFuzzer/impl.go b/probes/fuzzedWithCppLibFuzzer/impl.go index d16beb42b170..a4cf90e806fe 100644 --- a/probes/fuzzedWithCppLibFuzzer/impl.go +++ b/probes/fuzzedWithCppLibFuzzer/impl.go @@ -21,6 +21,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/internal/fuzzers" "github.com/ossf/scorecard/v4/probes/internal/utils/fuzzing" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -35,5 +36,5 @@ func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { return nil, "", fmt.Errorf("%w: raw", uerror.ErrNil) } //nolint:wrapcheck - return fuzzing.Run(raw, fs, Probe, "CppLibFuzzer") + return fuzzing.Run(raw, fs, Probe, fuzzers.CppLibFuzzer) } diff --git a/probes/fuzzedWithCppLibFuzzer/impl_test.go b/probes/fuzzedWithCppLibFuzzer/impl_test.go index 5f9a99af3536..a60b111ba05e 100644 --- a/probes/fuzzedWithCppLibFuzzer/impl_test.go +++ b/probes/fuzzedWithCppLibFuzzer/impl_test.go @@ -23,6 +23,8 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/internal/fuzzers" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -41,7 +43,7 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "CppLibFuzzer", + Name: fuzzers.CppLibFuzzer, }, }, }, @@ -56,10 +58,10 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "CppLibFuzzer", + Name: fuzzers.CppLibFuzzer, }, { - Name: "CppLibFuzzer", + Name: fuzzers.CppLibFuzzer, }, }, }, @@ -75,7 +77,7 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "CppLibFuzzer", + Name: fuzzers.CppLibFuzzer, }, { Name: "not-CppLibFuzzer", @@ -118,7 +120,6 @@ func Test_Run(t *testing.T) { tt := tt // Re-initializing variable so it is not changed while executing the closure below t.Run(tt.name, func(t *testing.T) { t.Parallel() - // TODO(#https://github.com/ossf/scorecard/issues/3472) Use common validation function. findings, s, err := Run(tt.raw) if !cmp.Equal(tt.err, err, cmpopts.EquateErrors()) { t.Errorf("mismatch (-want +got):\n%s", cmp.Diff(tt.err, err, cmpopts.EquateErrors())) @@ -129,16 +130,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/fuzzedWithGoNative/impl.go b/probes/fuzzedWithGoNative/impl.go index 98d82b26bf36..a1b2f55955c3 100644 --- a/probes/fuzzedWithGoNative/impl.go +++ b/probes/fuzzedWithGoNative/impl.go @@ -21,6 +21,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/internal/fuzzers" "github.com/ossf/scorecard/v4/probes/internal/utils/fuzzing" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -35,5 +36,5 @@ func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { return nil, "", fmt.Errorf("%w: raw", uerror.ErrNil) } //nolint:wrapcheck - return fuzzing.Run(raw, fs, Probe, "GoBuiltInFuzzer") + return fuzzing.Run(raw, fs, Probe, fuzzers.BuiltInGo) } diff --git a/probes/fuzzedWithGoNative/impl_test.go b/probes/fuzzedWithGoNative/impl_test.go index a65c14d1dc5f..c842f0cd24a9 100644 --- a/probes/fuzzedWithGoNative/impl_test.go +++ b/probes/fuzzedWithGoNative/impl_test.go @@ -23,6 +23,8 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/internal/fuzzers" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -41,7 +43,7 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "GoBuiltInFuzzer", + Name: fuzzers.BuiltInGo, }, }, }, @@ -56,10 +58,10 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "GoBuiltInFuzzer", + Name: fuzzers.BuiltInGo, }, { - Name: "GoBuiltInFuzzer", + Name: fuzzers.BuiltInGo, }, }, }, @@ -75,7 +77,7 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "GoBuiltInFuzzer", + Name: fuzzers.BuiltInGo, }, { Name: "not-GoBuiltInFuzzer", @@ -129,16 +131,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/fuzzedWithJavaJazzerFuzzer/impl.go b/probes/fuzzedWithJavaJazzerFuzzer/impl.go index 76e78c12491a..9f8b661c64ba 100644 --- a/probes/fuzzedWithJavaJazzerFuzzer/impl.go +++ b/probes/fuzzedWithJavaJazzerFuzzer/impl.go @@ -21,6 +21,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/internal/fuzzers" "github.com/ossf/scorecard/v4/probes/internal/utils/fuzzing" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -35,5 +36,5 @@ func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { return nil, "", fmt.Errorf("%w: raw", uerror.ErrNil) } //nolint:wrapcheck - return fuzzing.Run(raw, fs, Probe, "JavaJazzerFuzzer") + return fuzzing.Run(raw, fs, Probe, fuzzers.JavaJazzerFuzzer) } diff --git a/probes/fuzzedWithJavaJazzerFuzzer/impl_test.go b/probes/fuzzedWithJavaJazzerFuzzer/impl_test.go index 125cdff34ca0..fe1b942fc028 100644 --- a/probes/fuzzedWithJavaJazzerFuzzer/impl_test.go +++ b/probes/fuzzedWithJavaJazzerFuzzer/impl_test.go @@ -23,6 +23,8 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/internal/fuzzers" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -41,7 +43,7 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "JavaJazzerFuzzer", + Name: fuzzers.JavaJazzerFuzzer, }, }, }, @@ -56,10 +58,10 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "JavaJazzerFuzzer", + Name: fuzzers.JavaJazzerFuzzer, }, { - Name: "JavaJazzerFuzzer", + Name: fuzzers.JavaJazzerFuzzer, }, }, }, @@ -75,7 +77,7 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "JavaJazzerFuzzer", + Name: fuzzers.JavaJazzerFuzzer, }, { Name: "not-JavaJazzerFuzzer", @@ -118,7 +120,6 @@ func Test_Run(t *testing.T) { tt := tt // Re-initializing variable so it is not changed while executing the closure below t.Run(tt.name, func(t *testing.T) { t.Parallel() - // TODO(#https://github.com/ossf/scorecard/issues/3472) Use common validation function. findings, s, err := Run(tt.raw) if !cmp.Equal(tt.err, err, cmpopts.EquateErrors()) { t.Errorf("mismatch (-want +got):\n%s", cmp.Diff(tt.err, err, cmpopts.EquateErrors())) @@ -129,16 +130,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/fuzzedWithOSSFuzz/impl.go b/probes/fuzzedWithOSSFuzz/impl.go index 86648b4835ce..85fd74a62089 100644 --- a/probes/fuzzedWithOSSFuzz/impl.go +++ b/probes/fuzzedWithOSSFuzz/impl.go @@ -21,6 +21,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/internal/fuzzers" "github.com/ossf/scorecard/v4/probes/internal/utils/fuzzing" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -35,5 +36,5 @@ func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { return nil, "", fmt.Errorf("%w: raw", uerror.ErrNil) } //nolint:wrapcheck - return fuzzing.Run(raw, fs, Probe, "OSSFuzz") + return fuzzing.Run(raw, fs, Probe, fuzzers.OSSFuzz) } diff --git a/probes/fuzzedWithOSSFuzz/impl_test.go b/probes/fuzzedWithOSSFuzz/impl_test.go index dda926bcf081..aae3177d96bc 100644 --- a/probes/fuzzedWithOSSFuzz/impl_test.go +++ b/probes/fuzzedWithOSSFuzz/impl_test.go @@ -23,6 +23,8 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/internal/fuzzers" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -41,7 +43,7 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "OSSFuzz", + Name: fuzzers.OSSFuzz, }, }, }, @@ -56,10 +58,10 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "OSSFuzz", + Name: fuzzers.OSSFuzz, }, { - Name: "OSSFuzz", + Name: fuzzers.OSSFuzz, }, }, }, @@ -75,7 +77,7 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "OSSFuzz", + Name: fuzzers.OSSFuzz, }, { Name: "not-OSSFuzz", @@ -129,16 +131,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/fuzzedWithPropertyBasedHaskell/impl.go b/probes/fuzzedWithPropertyBasedHaskell/impl.go index 0e2ea0e32645..1c831ec9ecaa 100644 --- a/probes/fuzzedWithPropertyBasedHaskell/impl.go +++ b/probes/fuzzedWithPropertyBasedHaskell/impl.go @@ -21,6 +21,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/internal/fuzzers" "github.com/ossf/scorecard/v4/probes/internal/utils/fuzzing" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -35,5 +36,5 @@ func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { return nil, "", fmt.Errorf("%w: raw", uerror.ErrNil) } //nolint:wrapcheck - return fuzzing.Run(raw, fs, Probe, "HaskellPropertyBasedTesting") + return fuzzing.Run(raw, fs, Probe, fuzzers.PropertyBasedHaskell) } diff --git a/probes/fuzzedWithPropertyBasedHaskell/impl_test.go b/probes/fuzzedWithPropertyBasedHaskell/impl_test.go index dea7fa81e51b..691a47afbe84 100644 --- a/probes/fuzzedWithPropertyBasedHaskell/impl_test.go +++ b/probes/fuzzedWithPropertyBasedHaskell/impl_test.go @@ -23,6 +23,8 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/internal/fuzzers" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -41,7 +43,7 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "HaskellPropertyBasedTesting", + Name: fuzzers.PropertyBasedHaskell, }, }, }, @@ -56,10 +58,10 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "HaskellPropertyBasedTesting", + Name: fuzzers.PropertyBasedHaskell, }, { - Name: "HaskellPropertyBasedTesting", + Name: fuzzers.PropertyBasedHaskell, }, }, }, @@ -75,7 +77,7 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "HaskellPropertyBasedTesting", + Name: fuzzers.PropertyBasedHaskell, }, { Name: "not-HaskellPropertyBasedTesting", @@ -129,16 +131,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/fuzzedWithPropertyBasedJavascript/impl.go b/probes/fuzzedWithPropertyBasedJavascript/impl.go index ee1c4a24f9cc..7cc5e136eaf8 100644 --- a/probes/fuzzedWithPropertyBasedJavascript/impl.go +++ b/probes/fuzzedWithPropertyBasedJavascript/impl.go @@ -21,6 +21,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/internal/fuzzers" "github.com/ossf/scorecard/v4/probes/internal/utils/fuzzing" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -35,5 +36,5 @@ func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { return nil, "", fmt.Errorf("%w: raw", uerror.ErrNil) } //nolint:wrapcheck - return fuzzing.Run(raw, fs, Probe, "JavaScriptPropertyBasedTesting") + return fuzzing.Run(raw, fs, Probe, fuzzers.PropertyBasedJavaScript) } diff --git a/probes/fuzzedWithPropertyBasedJavascript/impl_test.go b/probes/fuzzedWithPropertyBasedJavascript/impl_test.go index 04432415bd84..c2bc015b7648 100644 --- a/probes/fuzzedWithPropertyBasedJavascript/impl_test.go +++ b/probes/fuzzedWithPropertyBasedJavascript/impl_test.go @@ -23,6 +23,8 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/internal/fuzzers" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -41,7 +43,7 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "JavaScriptPropertyBasedTesting", + Name: fuzzers.PropertyBasedJavaScript, }, }, }, @@ -56,10 +58,10 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "JavaScriptPropertyBasedTesting", + Name: fuzzers.PropertyBasedJavaScript, }, { - Name: "JavaScriptPropertyBasedTesting", + Name: fuzzers.PropertyBasedJavaScript, }, }, }, @@ -75,7 +77,7 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "JavaScriptPropertyBasedTesting", + Name: fuzzers.PropertyBasedJavaScript, }, { Name: "not-JavaScriptPropertyBasedTesting", @@ -129,16 +131,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/fuzzedWithPropertyBasedTypescript/impl.go b/probes/fuzzedWithPropertyBasedTypescript/impl.go index 0c1f7daa5f7b..ac65d806763b 100644 --- a/probes/fuzzedWithPropertyBasedTypescript/impl.go +++ b/probes/fuzzedWithPropertyBasedTypescript/impl.go @@ -21,6 +21,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/internal/fuzzers" "github.com/ossf/scorecard/v4/probes/internal/utils/fuzzing" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -35,5 +36,5 @@ func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { return nil, "", fmt.Errorf("%w: raw", uerror.ErrNil) } //nolint:wrapcheck - return fuzzing.Run(raw, fs, Probe, "TypeScriptPropertyBasedTesting") + return fuzzing.Run(raw, fs, Probe, fuzzers.PropertyBasedTypeScript) } diff --git a/probes/fuzzedWithPropertyBasedTypescript/impl_test.go b/probes/fuzzedWithPropertyBasedTypescript/impl_test.go index f43728a8f5c7..25988261af28 100644 --- a/probes/fuzzedWithPropertyBasedTypescript/impl_test.go +++ b/probes/fuzzedWithPropertyBasedTypescript/impl_test.go @@ -23,6 +23,8 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/internal/fuzzers" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -41,7 +43,7 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "TypeScriptPropertyBasedTesting", + Name: fuzzers.PropertyBasedTypeScript, }, }, }, @@ -56,10 +58,10 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "TypeScriptPropertyBasedTesting", + Name: fuzzers.PropertyBasedTypeScript, }, { - Name: "TypeScriptPropertyBasedTesting", + Name: fuzzers.PropertyBasedTypeScript, }, }, }, @@ -75,7 +77,7 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "TypeScriptPropertyBasedTesting", + Name: fuzzers.PropertyBasedTypeScript, }, { Name: "not-TypeScriptPropertyBasedTesting", @@ -129,16 +131,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/fuzzedWithPythonAtheris/impl.go b/probes/fuzzedWithPythonAtheris/impl.go index d615817d5067..c02278afbd2b 100644 --- a/probes/fuzzedWithPythonAtheris/impl.go +++ b/probes/fuzzedWithPythonAtheris/impl.go @@ -21,6 +21,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/internal/fuzzers" "github.com/ossf/scorecard/v4/probes/internal/utils/fuzzing" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -35,5 +36,5 @@ func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { return nil, "", fmt.Errorf("%w: raw", uerror.ErrNil) } //nolint:wrapcheck - return fuzzing.Run(raw, fs, Probe, "PythonAtherisFuzzer") + return fuzzing.Run(raw, fs, Probe, fuzzers.PythonAtheris) } diff --git a/probes/fuzzedWithPythonAtheris/impl_test.go b/probes/fuzzedWithPythonAtheris/impl_test.go index 606d30c58c4b..ca024a8be098 100644 --- a/probes/fuzzedWithPythonAtheris/impl_test.go +++ b/probes/fuzzedWithPythonAtheris/impl_test.go @@ -23,6 +23,8 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/internal/fuzzers" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -41,7 +43,7 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "PythonAtherisFuzzer", + Name: fuzzers.PythonAtheris, }, }, }, @@ -56,10 +58,10 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "PythonAtherisFuzzer", + Name: fuzzers.PythonAtheris, }, { - Name: "PythonAtherisFuzzer", + Name: fuzzers.PythonAtheris, }, }, }, @@ -75,7 +77,7 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "PythonAtherisFuzzer", + Name: fuzzers.PythonAtheris, }, { Name: "not-PythonAtherisFuzzer", @@ -118,7 +120,6 @@ func Test_Run(t *testing.T) { tt := tt // Re-initializing variable so it is not changed while executing the closure below t.Run(tt.name, func(t *testing.T) { t.Parallel() - // TODO(#https://github.com/ossf/scorecard/issues/3472) Use common validation function. findings, s, err := Run(tt.raw) if !cmp.Equal(tt.err, err, cmpopts.EquateErrors()) { t.Errorf("mismatch (-want +got):\n%s", cmp.Diff(tt.err, err, cmpopts.EquateErrors())) @@ -129,16 +130,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/fuzzedWithRustCargofuzz/impl.go b/probes/fuzzedWithRustCargofuzz/impl.go index 0b036556edc1..ba6168b0f3a1 100644 --- a/probes/fuzzedWithRustCargofuzz/impl.go +++ b/probes/fuzzedWithRustCargofuzz/impl.go @@ -21,6 +21,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/internal/fuzzers" "github.com/ossf/scorecard/v4/probes/internal/utils/fuzzing" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -35,5 +36,5 @@ func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { return nil, "", fmt.Errorf("%w: raw", uerror.ErrNil) } //nolint:wrapcheck - return fuzzing.Run(raw, fs, Probe, "RustCargoFuzzer") + return fuzzing.Run(raw, fs, Probe, fuzzers.RustCargoFuzz) } diff --git a/probes/fuzzedWithRustCargofuzz/impl_test.go b/probes/fuzzedWithRustCargofuzz/impl_test.go index 5ea0e1dfe3e0..b88f0f6ff4b6 100644 --- a/probes/fuzzedWithRustCargofuzz/impl_test.go +++ b/probes/fuzzedWithRustCargofuzz/impl_test.go @@ -23,6 +23,8 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/internal/fuzzers" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -41,7 +43,7 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "RustCargoFuzzer", + Name: fuzzers.RustCargoFuzz, }, }, }, @@ -56,10 +58,10 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "RustCargoFuzzer", + Name: fuzzers.RustCargoFuzz, }, { - Name: "RustCargoFuzzer", + Name: fuzzers.RustCargoFuzz, }, }, }, @@ -75,7 +77,7 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "RustCargoFuzzer", + Name: fuzzers.RustCargoFuzz, }, { Name: "not-RustCargoFuzzer", @@ -118,7 +120,6 @@ func Test_Run(t *testing.T) { tt := tt // Re-initializing variable so it is not changed while executing the closure below t.Run(tt.name, func(t *testing.T) { t.Parallel() - // TODO(#https://github.com/ossf/scorecard/issues/3472) Use common validation function. findings, s, err := Run(tt.raw) if !cmp.Equal(tt.err, err, cmpopts.EquateErrors()) { t.Errorf("mismatch (-want +got):\n%s", cmp.Diff(tt.err, err, cmpopts.EquateErrors())) @@ -129,16 +130,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/fuzzedWithSwiftLibFuzzer/impl.go b/probes/fuzzedWithSwiftLibFuzzer/impl.go index ec39b45942a4..f944b0d85722 100644 --- a/probes/fuzzedWithSwiftLibFuzzer/impl.go +++ b/probes/fuzzedWithSwiftLibFuzzer/impl.go @@ -21,6 +21,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/internal/fuzzers" "github.com/ossf/scorecard/v4/probes/internal/utils/fuzzing" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -35,5 +36,5 @@ func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { return nil, "", fmt.Errorf("%w: raw", uerror.ErrNil) } //nolint:wrapcheck - return fuzzing.Run(raw, fs, Probe, "SwiftLibFuzzer") + return fuzzing.Run(raw, fs, Probe, fuzzers.SwiftLibFuzzer) } diff --git a/probes/fuzzedWithSwiftLibFuzzer/impl_test.go b/probes/fuzzedWithSwiftLibFuzzer/impl_test.go index 91c6b4b902ee..2b5136e42a11 100644 --- a/probes/fuzzedWithSwiftLibFuzzer/impl_test.go +++ b/probes/fuzzedWithSwiftLibFuzzer/impl_test.go @@ -23,6 +23,8 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/internal/fuzzers" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -41,7 +43,7 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "SwiftLibFuzzer", + Name: fuzzers.SwiftLibFuzzer, }, }, }, @@ -56,10 +58,10 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "SwiftLibFuzzer", + Name: fuzzers.SwiftLibFuzzer, }, { - Name: "SwiftLibFuzzer", + Name: fuzzers.SwiftLibFuzzer, }, }, }, @@ -75,7 +77,7 @@ func Test_Run(t *testing.T) { FuzzingResults: checker.FuzzingData{ Fuzzers: []checker.Tool{ { - Name: "SwiftLibFuzzer", + Name: fuzzers.SwiftLibFuzzer, }, { Name: "not-SwiftLibFuzzer", @@ -118,7 +120,6 @@ func Test_Run(t *testing.T) { tt := tt // Re-initializing variable so it is not changed while executing the closure below t.Run(tt.name, func(t *testing.T) { t.Parallel() - // TODO(#https://github.com/ossf/scorecard/issues/3472) Use common validation function. findings, s, err := Run(tt.raw) if !cmp.Equal(tt.err, err, cmpopts.EquateErrors()) { t.Errorf("mismatch (-want +got):\n%s", cmp.Diff(tt.err, err, cmpopts.EquateErrors())) @@ -129,16 +130,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/hasDangerousWorkflowScriptInjection/impl_test.go b/probes/hasDangerousWorkflowScriptInjection/impl_test.go index 1a08859f01f4..3b87341f7428 100644 --- a/probes/hasDangerousWorkflowScriptInjection/impl_test.go +++ b/probes/hasDangerousWorkflowScriptInjection/impl_test.go @@ -23,6 +23,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" ) func Test_Run(t *testing.T) { @@ -82,16 +83,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/hasDangerousWorkflowUntrustedCheckout/impl_test.go b/probes/hasDangerousWorkflowUntrustedCheckout/impl_test.go index 3d37f42ee8f7..fb905af3a137 100644 --- a/probes/hasDangerousWorkflowUntrustedCheckout/impl_test.go +++ b/probes/hasDangerousWorkflowUntrustedCheckout/impl_test.go @@ -23,6 +23,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" ) func Test_Run(t *testing.T) { @@ -82,16 +83,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/hasFSFOrOSIApprovedLicense/impl_test.go b/probes/hasFSFOrOSIApprovedLicense/impl_test.go index 743d3272881d..ea915d142277 100644 --- a/probes/hasFSFOrOSIApprovedLicense/impl_test.go +++ b/probes/hasFSFOrOSIApprovedLicense/impl_test.go @@ -23,6 +23,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" ) func Test_Run(t *testing.T) { @@ -151,16 +152,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/hasLicenseFile/impl_test.go b/probes/hasLicenseFile/impl_test.go index c4326f61541e..47ecda8549de 100644 --- a/probes/hasLicenseFile/impl_test.go +++ b/probes/hasLicenseFile/impl_test.go @@ -23,6 +23,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" ) func Test_Run(t *testing.T) { @@ -111,16 +112,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/hasLicenseFileAtTopDir/impl_test.go b/probes/hasLicenseFileAtTopDir/impl_test.go index 7c0ad14863b8..1e73feb644f5 100644 --- a/probes/hasLicenseFileAtTopDir/impl_test.go +++ b/probes/hasLicenseFileAtTopDir/impl_test.go @@ -23,6 +23,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" ) func Test_Run(t *testing.T) { @@ -143,16 +144,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/hasOSVVulnerabilities/def.yml b/probes/hasOSVVulnerabilities/def.yml index 2bed21d96d62..a12411aa2818 100644 --- a/probes/hasOSVVulnerabilities/def.yml +++ b/probes/hasOSVVulnerabilities/def.yml @@ -24,10 +24,10 @@ outcome: remediation: effort: High text: - - Fix the ${{ metadata.osvid }} by following information from https://osv.dev/${{ metadata.osvid }}. + - Fix the ${{ metadata.osvid }} by following information from https://osv.dev/${{ metadata.osvid }} . - If the vulnerability is in a dependency, update the dependency to a non-vulnerable version. If no update is available, consider whether to remove the dependency. - If you believe the vulnerability does not affect your project, the vulnerability can be ignored. To ignore, create an osv-scanner.toml file next to the dependency manifest (e.g. package-lock.json) and specify the ID to ignore and reason. Details on the structure of osv-scanner.toml can be found on OSV-Scanner repository. markdown: - - Fix the ${{ metadata.osvid }} by following information from [OSV](https://osv.dev/${{ metadata.osvid }}). + - Fix the ${{ metadata.osvid }} by following information from [OSV](https://osv.dev/${{ metadata.osvid }}) . - If the vulnerability is in a dependency, update the dependency to a non-vulnerable version. If no update is available, consider whether to remove the dependency. - If you believe the vulnerability does not affect your project, the vulnerability can be ignored. To ignore, create an osv-scanner.toml ([example](https://github.com/google/osv.dev/blob/eb99b02ec8895fe5b87d1e76675ddad79a15f817/vulnfeeds/osv-scanner.toml)) file next to the dependency manifest (e.g. package-lock.json) and specify the ID to ignore and reason. Details on the structure of osv-scanner.toml can be found on [OSV-Scanner repository](https://github.com/google/osv-scanner#ignore-vulnerabilities-by-id). diff --git a/probes/hasOSVVulnerabilities/impl.go b/probes/hasOSVVulnerabilities/impl.go index 9f4e704d52f1..80bb7871ac38 100644 --- a/probes/hasOSVVulnerabilities/impl.go +++ b/probes/hasOSVVulnerabilities/impl.go @@ -17,6 +17,7 @@ package hasOSVVulnerabilities import ( "embed" + "errors" "fmt" "strings" @@ -32,6 +33,8 @@ var fs embed.FS const Probe = "hasOSVVulnerabilities" +var errNoVulnID = errors.New("no vuln ID") + func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { if raw == nil { return nil, "", fmt.Errorf("%w: raw", uerror.ErrNil) @@ -59,16 +62,18 @@ func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { IDs := grouper.Group(aliasVulnerabilities) for _, vuln := range IDs { + if len(vuln.IDs) == 0 { + return nil, Probe, errNoVulnID + } f, err := finding.NewWith(fs, Probe, "Project contains OSV vulnerabilities", nil, finding.OutcomeNegative) if err != nil { return nil, Probe, fmt.Errorf("create finding: %w", err) } - f = f.WithMessage(fmt.Sprintf("Project is vulnerable to: %s", - strings.Join(vuln.IDs, " / "))) + f = f.WithMessage("Project is vulnerable to: " + strings.Join(vuln.IDs, " / ")) f = f.WithRemediationMetadata(map[string]string{ - "osvid": strings.Join(vuln.IDs[:], ","), + "osvid": vuln.IDs[0], }) findings = append(findings, *f) } diff --git a/probes/hasOSVVulnerabilities/impl_test.go b/probes/hasOSVVulnerabilities/impl_test.go index 75a88a0be486..6e68ae8491d5 100644 --- a/probes/hasOSVVulnerabilities/impl_test.go +++ b/probes/hasOSVVulnerabilities/impl_test.go @@ -16,6 +16,7 @@ package hasOSVVulnerabilities import ( + "strings" "testing" "github.com/google/go-cmp/cmp" @@ -24,7 +25,6 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/clients" "github.com/ossf/scorecard/v4/finding" - "github.com/ossf/scorecard/v4/finding/probe" ) func Test_Run(t *testing.T) { @@ -61,43 +61,6 @@ func Test_Run(t *testing.T) { finding.OutcomePositive, }, }, - { - name: "vulnerabilities not present", - raw: &checker.RawResults{ - VulnerabilitiesResults: checker.VulnerabilitiesData{ - Vulnerabilities: []clients.Vulnerability{}, - }, - }, - outcomes: []finding.Outcome{ - finding.OutcomePositive, - }, - }, - { - name: "vulnerabilities and metadata present. 'foo' must appear in the findings remediation text.", - raw: &checker.RawResults{ - VulnerabilitiesResults: checker.VulnerabilitiesData{ - Vulnerabilities: []clients.Vulnerability{ - {ID: "foo"}, - }, - }, - }, - outcomes: []finding.Outcome{ - finding.OutcomeNegative, - }, - expectedFinding: &finding.Finding{ - Probe: "hasOSVVulnerabilities", - Message: "Project is vulnerable to: foo", - Remediation: &probe.Remediation{ - Text: `Fix the foo by following information from https://osv.dev/foo. -If the vulnerability is in a dependency, update the dependency to a non-vulnerable version. If no update is available, consider whether to remove the dependency. -If you believe the vulnerability does not affect your project, the vulnerability can be ignored. To ignore, create an osv-scanner.toml file next to the dependency manifest (e.g. package-lock.json) and specify the ID to ignore and reason. Details on the structure of osv-scanner.toml can be found on OSV-Scanner repository.`, - Markdown: `Fix the foo by following information from [OSV](https://osv.dev/foo). -If the vulnerability is in a dependency, update the dependency to a non-vulnerable version. If no update is available, consider whether to remove the dependency. -If you believe the vulnerability does not affect your project, the vulnerability can be ignored. To ignore, create an osv-scanner.toml ([example](https://github.com/google/osv.dev/blob/eb99b02ec8895fe5b87d1e76675ddad79a15f817/vulnfeeds/osv-scanner.toml)) file next to the dependency manifest (e.g. package-lock.json) and specify the ID to ignore and reason. Details on the structure of osv-scanner.toml can be found on [OSV-Scanner repository](https://github.com/google/osv-scanner#ignore-vulnerabilities-by-id).`, - Effort: 3, - }, - }, - }, } for _, tt := range tests { tt := tt // Re-initializing variable so it is not changed while executing the closure below @@ -133,3 +96,72 @@ If you believe the vulnerability does not affect your project, the vulnerability }) } } + +func TestRun_remediation(t *testing.T) { + t.Parallel() + //nolint:govet + tests := []struct { + name string + raw *checker.RawResults + wantRemediation bool + remediationSubstr string + err error + }{ + { + name: "no remediation needed", + raw: &checker.RawResults{ + VulnerabilitiesResults: checker.VulnerabilitiesData{ + Vulnerabilities: []clients.Vulnerability{}, + }, + }, + wantRemediation: false, + }, + { + name: "vulnerabilities and metadata present. 'foo' must appear in the findings remediation text.", + raw: &checker.RawResults{ + VulnerabilitiesResults: checker.VulnerabilitiesData{ + Vulnerabilities: []clients.Vulnerability{ + {ID: "foo"}, + }, + }, + }, + wantRemediation: true, + remediationSubstr: "Fix the foo", + }, + { + name: "only one vuln ID appears in the findings remediation text link.", + raw: &checker.RawResults{ + VulnerabilitiesResults: checker.VulnerabilitiesData{ + Vulnerabilities: []clients.Vulnerability{ + {ID: "foo"}, + { + ID: "bar", + Aliases: []string{"foo"}, + }, + }, + }, + }, + wantRemediation: true, + remediationSubstr: "https://osv.dev/bar .", + }, + } + for _, tt := range tests { + tt := tt // Re-initializing variable so it is not changed while executing the closure below + t.Run(tt.name, func(t *testing.T) { + t.Parallel() + findings, _, err := Run(tt.raw) + if err != nil { + t.Fatalf("unexpected error: %v", err) + } + for i := range findings { + gotRemediation := findings[i].Remediation != nil + if tt.wantRemediation != gotRemediation { + t.Errorf("wanted remediation?: %t, had remediation?: %t", tt.wantRemediation, gotRemediation) + } + if tt.wantRemediation && !strings.Contains(findings[i].Remediation.Text, tt.remediationSubstr) { + t.Errorf("wanted to find substr %q in remediation text, but didn't", tt.remediationSubstr) + } + } + }) + } +} diff --git a/probes/hasOpenSSFBadge/impl_test.go b/probes/hasOpenSSFBadge/impl_test.go index d4311d4de2b9..a860d8ece6dd 100644 --- a/probes/hasOpenSSFBadge/impl_test.go +++ b/probes/hasOpenSSFBadge/impl_test.go @@ -24,6 +24,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/clients" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" ) func Test_Run(t *testing.T) { @@ -106,16 +107,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/internal/utils/branchprotection/branchProtection.go b/probes/internal/utils/branchprotection/branchProtection.go new file mode 100644 index 000000000000..507e7f20b54f --- /dev/null +++ b/probes/internal/utils/branchprotection/branchProtection.go @@ -0,0 +1,39 @@ +// Copyright 2023 OpenSSF Scorecard Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package branchprotection + +import ( + "errors" + "fmt" + + "github.com/ossf/scorecard/v4/finding" +) + +var errWrongValue = errors.New("wrong value, should not happen") + +func GetTextOutcomeFromBool(b *bool, rule, branchName string) (string, finding.Outcome, error) { + switch { + case b == nil: + msg := fmt.Sprintf("unable to retrieve whether '%s' is required to merge on branch '%s'", rule, branchName) + return msg, finding.OutcomeNotAvailable, nil + case *b: + msg := fmt.Sprintf("'%s' is required to merge on branch '%s'", rule, branchName) + return msg, finding.OutcomePositive, nil + case !*b: + msg := fmt.Sprintf("'%s' is disable on branch '%s'", rule, branchName) + return msg, finding.OutcomeNegative, nil + } + return "", finding.OutcomeError, errWrongValue +} diff --git a/probes/internal/utils/test/test.go b/probes/internal/utils/test/test.go index f63c243b5342..484a4949bc39 100644 --- a/probes/internal/utils/test/test.go +++ b/probes/internal/utils/test/test.go @@ -17,28 +17,18 @@ package test import ( "testing" - "github.com/google/go-cmp/cmp" - "github.com/ossf/scorecard/v4/finding" ) -// AssertCorrect is a suitable for all probes to compare raw -// results against expected outcomes. -func AssertCorrect(t *testing.T, probeExpect, probeGot string, - findings []finding.Finding, expectedOutcomes []finding.Outcome, -) { +// AssertOutcomes compares finding outcomes against expected outcomes. +func AssertOutcomes(t *testing.T, got []finding.Finding, want []finding.Outcome) { t.Helper() - if diff := cmp.Diff(probeExpect, probeGot); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - if diff := cmp.Diff(len(expectedOutcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) + if len(got) != len(want) { + t.Fatalf("got %d findings, wanted %d", len(got), len(want)) } - for i := range expectedOutcomes { - outcome := &expectedOutcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) + for i := range got { + if got[i].Outcome != want[i] { + t.Errorf("got outcome %v, wanted %v for finding: %v", got[i].Outcome, want[i], got[i]) } } } diff --git a/probes/notArchived/impl_test.go b/probes/notArchived/impl_test.go index b65af3bf0ad2..52142df7738e 100644 --- a/probes/notArchived/impl_test.go +++ b/probes/notArchived/impl_test.go @@ -23,6 +23,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" ) func Test_Run(t *testing.T) { @@ -76,16 +77,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/notCreatedRecently/impl_test.go b/probes/notCreatedRecently/impl_test.go index 1677a54eadde..f5d1a10ed8e0 100644 --- a/probes/notCreatedRecently/impl_test.go +++ b/probes/notCreatedRecently/impl_test.go @@ -24,6 +24,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" ) func Test_Run(t *testing.T) { @@ -73,16 +74,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/packagedWithAutomatedWorkflow/impl_test.go b/probes/packagedWithAutomatedWorkflow/impl_test.go index 4f3e06964e64..7e8246a634b7 100644 --- a/probes/packagedWithAutomatedWorkflow/impl_test.go +++ b/probes/packagedWithAutomatedWorkflow/impl_test.go @@ -23,6 +23,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" ) func Test_Run(t *testing.T) { @@ -79,16 +80,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/releasesAreSigned/impl.go b/probes/releasesAreSigned/impl.go index 735cc141df34..21898a7ff4b6 100644 --- a/probes/releasesAreSigned/impl.go +++ b/probes/releasesAreSigned/impl.go @@ -43,7 +43,7 @@ const ( ValueTypeReleaseAsset ) -var signatureExtensions = []string{".asc", ".minisig", ".sig", ".sign"} +var signatureExtensions = []string{".asc", ".minisig", ".sig", ".sign", ".sigstore"} func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { if raw == nil { diff --git a/probes/releasesAreSigned/impl_test.go b/probes/releasesAreSigned/impl_test.go index 71b8e4444a02..85104c53c2c4 100644 --- a/probes/releasesAreSigned/impl_test.go +++ b/probes/releasesAreSigned/impl_test.go @@ -25,6 +25,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/clients" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" ) func Test_Run(t *testing.T) { @@ -204,16 +205,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/releasesHaveProvenance/impl.go b/probes/releasesHaveProvenance/impl.go index 02ba874e0913..1433ab1f761a 100644 --- a/probes/releasesHaveProvenance/impl.go +++ b/probes/releasesHaveProvenance/impl.go @@ -45,6 +45,7 @@ const ( var provenanceExtensions = []string{".intoto.jsonl"} +//nolint:gocognit // bug hotfix func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { if raw == nil { return nil, "", fmt.Errorf("%w: raw", uerror.ErrNil) @@ -61,6 +62,9 @@ func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { if len(release.Assets) == 0 { continue } + if i == releaseLookBack { + break + } totalReleases++ hasProvenance := false for j := range release.Assets { diff --git a/probes/releasesHaveProvenance/impl_test.go b/probes/releasesHaveProvenance/impl_test.go index bc8e148c5902..dd4a929e024f 100644 --- a/probes/releasesHaveProvenance/impl_test.go +++ b/probes/releasesHaveProvenance/impl_test.go @@ -24,6 +24,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/clients" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" ) func Test_Run(t *testing.T) { @@ -152,6 +153,70 @@ func Test_Run(t *testing.T) { finding.OutcomeNegative, }, }, + { + name: "enforece lookback limit of 5 releases", + raw: &checker.RawResults{ + SignedReleasesResults: checker.SignedReleasesData{ + Releases: []clients.Release{ + { + TagName: "v6.0", + Assets: []clients.ReleaseAsset{ + {Name: "binary.tar.gz"}, + {Name: "binary.tar.gz.sig"}, + {Name: "binary.tar.gz.intoto.jsonl"}, + }, + }, + { + TagName: "v5.0", + Assets: []clients.ReleaseAsset{ + {Name: "binary.tar.gz"}, + {Name: "binary.tar.gz.sig"}, + {Name: "binary.tar.gz.intoto.jsonl"}, + }, + }, + { + TagName: "v4.0", + Assets: []clients.ReleaseAsset{ + {Name: "binary.tar.gz"}, + {Name: "binary.tar.gz.sig"}, + {Name: "binary.tar.gz.intoto.jsonl"}, + }, + }, + { + TagName: "v3.0", + Assets: []clients.ReleaseAsset{ + {Name: "binary.tar.gz"}, + {Name: "binary.tar.gz.sig"}, + {Name: "binary.tar.gz.intoto.jsonl"}, + }, + }, + { + TagName: "v2.0", + Assets: []clients.ReleaseAsset{ + {Name: "binary.tar.gz"}, + {Name: "binary.tar.gz.sig"}, + {Name: "binary.tar.gz.intoto.jsonl"}, + }, + }, + { + TagName: "v1.0", + Assets: []clients.ReleaseAsset{ + {Name: "binary.tar.gz"}, + {Name: "binary.tar.gz.sig"}, + {Name: "binary.tar.gz.intoto.jsonl"}, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, + finding.OutcomePositive, + finding.OutcomePositive, + finding.OutcomePositive, + finding.OutcomePositive, + }, + }, } for _, tt := range tests { tt := tt // Re-initializing variable so it is not changed while executing the closure below @@ -168,16 +233,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/requiresApproversForPullRequests/def.yml b/probes/requiresApproversForPullRequests/def.yml new file mode 100644 index 000000000000..ace826c4ac43 --- /dev/null +++ b/probes/requiresApproversForPullRequests/def.yml @@ -0,0 +1,32 @@ +# Copyright 2023 OpenSSF Scorecard Authors +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +id: requiresApproversForPullRequests +short: Check that the project requires approvers for pull requests. +motivation: > + Requiring approvers for pull requests makes it harder to introduce vulnerable code to the project. +implementation: > + The probe checks the number of required approvers in default and release branches of the project. +outcome: + - The probe returns one OutcomePositive for each branch that requires approval for PRs, and one OutcomeNegative for branches that don't. +remediation: + effort: High + text: + - Configure the project so that it requires approval to merge PRs. + - For GitHub-hosted projects, see ["Approving a pull request with required reviews"](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/approving-a-pull-request-with-required-reviews). + - For Gitlab-hosted projects, see ["Merge request approvals"](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/). + markdown: + - Configure the project so that it requires approval to merge PRs. + - For GitHub-hosted projects, see ["Approving a pull request with required reviews"](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/approving-a-pull-request-with-required-reviews). + - For Gitlab-hosted projects, see ["Merge request approvals"](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/). \ No newline at end of file diff --git a/probes/requiresApproversForPullRequests/impl.go b/probes/requiresApproversForPullRequests/impl.go new file mode 100644 index 000000000000..fc9c526bb550 --- /dev/null +++ b/probes/requiresApproversForPullRequests/impl.go @@ -0,0 +1,80 @@ +// Copyright 2023 OpenSSF Scorecard Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//nolint:stylecheck +package requiresApproversForPullRequests + +import ( + "embed" + "errors" + "fmt" + + "github.com/ossf/scorecard/v4/checker" + "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" +) + +//go:embed *.yml +var fs embed.FS + +const Probe = "requiresApproversForPullRequests" + +var errWrongValue = errors.New("wrong value, should not happen") + +func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { + if raw == nil { + return nil, "", fmt.Errorf("%w: raw", uerror.ErrNil) + } + + r := raw.BranchProtectionResults + var findings []finding.Finding + + for i := range r.Branches { + branch := &r.Branches[i] + nilMsg := fmt.Sprintf("could not determine whether branch '%s' has required approving review count", *branch.Name) + trueMsg := fmt.Sprintf("required approving review count on branch '%s'", *branch.Name) + falseMsg := fmt.Sprintf("branch '%s' does not require approvers", *branch.Name) + + p := branch.BranchProtectionRule.RequiredPullRequestReviews.RequiredApprovingReviewCount + + f, err := finding.NewWith(fs, Probe, "", nil, finding.OutcomeNotAvailable) + if err != nil { + return nil, Probe, fmt.Errorf("create finding: %w", err) + } + + switch { + case p == nil: + f = f.WithMessage(nilMsg).WithOutcome(finding.OutcomeNotAvailable) + f = f.WithValues(map[string]int{ + *branch.Name: 1, + }) + case *p > 0: + f = f.WithMessage(trueMsg).WithOutcome(finding.OutcomePositive) + f = f.WithValues(map[string]int{ + *branch.Name: 1, + "numberOfRequiredReviewers": int(*p), + }) + case *p == 0: + f = f.WithMessage(falseMsg).WithOutcome(finding.OutcomeNegative) + f = f.WithValues(map[string]int{ + *branch.Name: 1, + "numberOfRequiredReviewers": int(*p), + }) + default: + return nil, Probe, fmt.Errorf("create finding: %w", errWrongValue) + } + findings = append(findings, *f) + } + return findings, Probe, nil +} diff --git a/probes/requiresApproversForPullRequests/impl_test.go b/probes/requiresApproversForPullRequests/impl_test.go new file mode 100644 index 000000000000..c15a39cb8dd5 --- /dev/null +++ b/probes/requiresApproversForPullRequests/impl_test.go @@ -0,0 +1,195 @@ +// Copyright 2023 OpenSSF Scorecard Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//nolint:stylecheck +package requiresApproversForPullRequests + +import ( + "testing" + + "github.com/google/go-cmp/cmp" + "github.com/google/go-cmp/cmp/cmpopts" + + "github.com/ossf/scorecard/v4/checker" + "github.com/ossf/scorecard/v4/clients" + "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" +) + +func Test_Run(t *testing.T) { + t.Parallel() + var zeroVal int32 + var oneVal int32 = 1 + branchVal1 := "branch-name1" + branchVal2 := "branch-name1" + + //nolint:govet + tests := []struct { + name string + raw *checker.RawResults + outcomes []finding.Outcome + err error + }{ + { + name: "1 branch requires 1 reviewer = 1 positive outcome = 1 positive outcome", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + RequiredApprovingReviewCount: &oneVal, + }, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, + }, + }, + { + name: "2 branch require 1 reviewer each = 2 positive outcomes = 2 positive outcomes", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + RequiredApprovingReviewCount: &oneVal, + }, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + RequiredApprovingReviewCount: &oneVal, + }, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, finding.OutcomePositive, + }, + }, + { + name: "1 branch requires 1 reviewer and 1 branch requires 0 reviewers = 1 positive and 1 negative", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + RequiredApprovingReviewCount: &oneVal, + }, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + RequiredApprovingReviewCount: &zeroVal, + }, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, finding.OutcomeNegative, + }, + }, + { + name: "1 branch requires 0 reviewers and 1 branch requires 1 reviewer = 1 negative and 1 positive", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + RequiredApprovingReviewCount: &zeroVal, + }, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + RequiredApprovingReviewCount: &oneVal, + }, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomeNegative, finding.OutcomePositive, + }, + }, + { + name: "1 branch requires 0 reviewers and 1 branch lacks data = 1 negative and 1 unavailable", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + RequiredApprovingReviewCount: &zeroVal, + }, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + RequiredApprovingReviewCount: nil, + }, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomeNegative, finding.OutcomeNotAvailable, + }, + }, + } + for _, tt := range tests { + tt := tt // Re-initializing variable so it is not changed while executing the closure below + t.Run(tt.name, func(t *testing.T) { + t.Parallel() + + findings, s, err := Run(tt.raw) + if !cmp.Equal(tt.err, err, cmpopts.EquateErrors()) { + t.Errorf("mismatch (-want +got):\n%s", cmp.Diff(tt.err, err, cmpopts.EquateErrors())) + } + if err != nil { + return + } + if diff := cmp.Diff(Probe, s); diff != "" { + t.Errorf("mismatch (-want +got):\n%s", diff) + } + test.AssertOutcomes(t, findings, tt.outcomes) + }) + } +} diff --git a/probes/requiresCodeOwnersReview/def.yml b/probes/requiresCodeOwnersReview/def.yml new file mode 100644 index 000000000000..d6eeb6d7e20d --- /dev/null +++ b/probes/requiresCodeOwnersReview/def.yml @@ -0,0 +1,32 @@ +# Copyright 2023 OpenSSF Scorecard Authors +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +id: requiresCodeOwnersReview +short: Check that the project requires dedicated code owners to review PRs. +motivation: > + Code owners are expected to have deep knowledge about a code; Having experienced reviewers for PRs is expected to prevent security issues. +implementation: > + The probe checks which branches require code owner reviews. The probe only considers default and release branches. +outcome: + - The probe returns one OutcomePositive for each branch that requires code owner review for PRs, and one OutcomeNegative for branches that don't. +remediation: + effort: High + text: + - Configure the project such that code owners must review PRs. + - For GitHub-hosted projects, see [the About code owners documentation](https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners). + - For Gitlab-hosted projects, see [the Code Owners documentation](https://docs.gitlab.com/ee/user/project/codeowners/). + markdown: + - Configure the project such that code owners must review PRs. + - For GitHub-hosted projects, see [the About code owners documentation](https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners). + - For Gitlab-hosted projects, see [the Code Owners documentation](https://docs.gitlab.com/ee/user/project/codeowners/). \ No newline at end of file diff --git a/probes/requiresCodeOwnersReview/impl.go b/probes/requiresCodeOwnersReview/impl.go new file mode 100644 index 000000000000..b7692bf60a84 --- /dev/null +++ b/probes/requiresCodeOwnersReview/impl.go @@ -0,0 +1,70 @@ +// Copyright 2023 OpenSSF Scorecard Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//nolint:stylecheck +package requiresCodeOwnersReview + +import ( + "embed" + "fmt" + + "github.com/ossf/scorecard/v4/checker" + "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" +) + +//go:embed *.yml +var fs embed.FS + +const Probe = "requiresCodeOwnersReview" + +func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { + if raw == nil { + return nil, "", fmt.Errorf("%w: raw", uerror.ErrNil) + } + + r := raw.BranchProtectionResults + var findings []finding.Finding + + for i := range r.Branches { + branch := &r.Branches[i] + reqOwnerReviews := branch.BranchProtectionRule.RequiredPullRequestReviews.RequireCodeOwnerReviews + var text string + var outcome finding.Outcome + + switch { + case reqOwnerReviews == nil: + text = "could not determine whether codeowners review is allowed" + outcome = finding.OutcomeNotAvailable + case !*reqOwnerReviews: + text = fmt.Sprintf("codeowners review is not required on branch '%s'", *branch.Name) + outcome = finding.OutcomeNegative + case len(r.CodeownersFiles) == 0: + text = "codeowners review is required - but no codeowners file found in repo" + outcome = finding.OutcomeNegative + default: + text = fmt.Sprintf("codeowner review is required on branch '%s'", *branch.Name) + outcome = finding.OutcomePositive + } + f, err := finding.NewWith(fs, Probe, text, nil, outcome) + if err != nil { + return nil, Probe, fmt.Errorf("create finding: %w", err) + } + f = f.WithValues(map[string]int{ + *branch.Name: 1, + }) + findings = append(findings, *f) + } + return findings, Probe, nil +} diff --git a/probes/requiresCodeOwnersReview/impl_test.go b/probes/requiresCodeOwnersReview/impl_test.go new file mode 100644 index 000000000000..132d88b5b7a3 --- /dev/null +++ b/probes/requiresCodeOwnersReview/impl_test.go @@ -0,0 +1,307 @@ +// Copyright 2023 OpenSSF Scorecard Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//nolint:stylecheck +package requiresCodeOwnersReview + +import ( + "testing" + + "github.com/google/go-cmp/cmp" + "github.com/google/go-cmp/cmp/cmpopts" + + "github.com/ossf/scorecard/v4/checker" + "github.com/ossf/scorecard/v4/clients" + "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" +) + +func Test_Run(t *testing.T) { + t.Parallel() + trueVal := true + falseVal := false + branchVal1 := "branch-name1" + branchVal2 := "branch-name1" + //nolint:govet + tests := []struct { + name string + raw *checker.RawResults + outcomes []finding.Outcome + err error + }{ + { + name: "1 branch requires code owner reviews with viles = 1 positive outcome", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + RequireCodeOwnerReviews: &trueVal, + }, + }, + }, + }, + CodeownersFiles: []string{"file"}, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, + }, + }, + { + name: "1 branch requires code owner reviews without files = 1 negative outcome", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + RequireCodeOwnerReviews: &trueVal, + }, + }, + }, + }, + CodeownersFiles: []string{}, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomeNegative, + }, + }, + { + name: "2 branches require code owner reviews with files = 2 positive outcomes", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + RequireCodeOwnerReviews: &trueVal, + }, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + RequireCodeOwnerReviews: &trueVal, + }, + }, + }, + }, + CodeownersFiles: []string{"file"}, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, finding.OutcomePositive, + }, + }, + { + name: "2 branches require code owner reviews with files = 2 negative outcomes", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + RequireCodeOwnerReviews: &trueVal, + }, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + RequireCodeOwnerReviews: &trueVal, + }, + }, + }, + }, + CodeownersFiles: []string{}, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomeNegative, finding.OutcomeNegative, + }, + }, + { + name: "1 branches require code owner reviews and 1 branch doesn't with files = 1 positive 1 negative", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + RequireCodeOwnerReviews: &trueVal, + }, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + RequireCodeOwnerReviews: &falseVal, + }, + }, + }, + }, + CodeownersFiles: []string{"file"}, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, finding.OutcomeNegative, + }, + }, + { + name: "Requires code owner reviews on 1/2 branches - without files = 2 negative outcomes", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + RequireCodeOwnerReviews: &trueVal, + }, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + RequireCodeOwnerReviews: &falseVal, + }, + }, + }, + }, + CodeownersFiles: []string{}, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomeNegative, finding.OutcomeNegative, + }, + }, + { + name: "Requires code owner reviews on 1/2 branches - with files = 1 negative and 1 positive", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + RequireCodeOwnerReviews: &falseVal, + }, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + RequireCodeOwnerReviews: &trueVal, + }, + }, + }, + }, + CodeownersFiles: []string{"file"}, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomeNegative, finding.OutcomePositive, + }, + }, + { + name: "Requires code owner reviews on 1/2 branches - without files = 2 negative outcomes", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + RequireCodeOwnerReviews: &falseVal, + }, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + RequireCodeOwnerReviews: &trueVal, + }, + }, + }, + }, + CodeownersFiles: []string{}, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomeNegative, finding.OutcomeNegative, + }, + }, + { + name: "1 branch does not require code owner review and 1 lacks data = 1 negative and 1 unavailable", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + RequireCodeOwnerReviews: &falseVal, + }, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + RequiredPullRequestReviews: clients.PullRequestReviewRule{ + RequireCodeOwnerReviews: nil, + }, + }, + }, + }, + CodeownersFiles: []string{"file"}, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomeNegative, finding.OutcomeNotAvailable, + }, + }, + } + for _, tt := range tests { + tt := tt // Re-initializing variable so it is not changed while executing the closure below + t.Run(tt.name, func(t *testing.T) { + t.Parallel() + + findings, s, err := Run(tt.raw) + if !cmp.Equal(tt.err, err, cmpopts.EquateErrors()) { + t.Errorf("mismatch (-want +got):\n%s", cmp.Diff(tt.err, err, cmpopts.EquateErrors())) + } + if err != nil { + return + } + if diff := cmp.Diff(Probe, s); diff != "" { + t.Errorf("mismatch (-want +got):\n%s", diff) + } + test.AssertOutcomes(t, findings, tt.outcomes) + }) + } +} diff --git a/probes/requiresLastPushApproval/def.yml b/probes/requiresLastPushApproval/def.yml new file mode 100644 index 000000000000..03c22634fe58 --- /dev/null +++ b/probes/requiresLastPushApproval/def.yml @@ -0,0 +1,32 @@ +# Copyright 2023 OpenSSF Scorecard Authors +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +id: requiresLastPushApproval +short: Check that the project requires approval of the most recent push. +motivation: > + Requiring approval of the most recent push prevents contributors from sneaking malicious commits into a PR after it has been approved. +implementation: > + The probe checks the protection rules of default and release branches branches. +outcome: + - The probe returns one OutcomePositive for each branch that requires approval of the most recent push, and one OutcomeNegative for branches that don't. +remediation: + effort: High + text: + - Configure the project such that it requires approval of the most recent push. + - For GitHub-hosted projects, see [the documentation on protected branches](https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches) and how to require approval of the last push from someone who did not make the last push. + - For Gitlab-hosted projects, see how to [remove all approvals when commits a added to the source branch](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/settings.html#remove-all-approvals-when-commits-are-added-to-the-source-branch). + markdown: + - Configure the project such that it requires approval of the most recent push. + - For GitHub-hosted projects, see [the documentation on protected branches](https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches) and how to require approval of the last push from someone who did not make the last push. + - For Gitlab-hosted projects, see how to [remove all approvals when commits a added to the source branch](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/settings.html#remove-all-approvals-when-commits-are-added-to-the-source-branch). \ No newline at end of file diff --git a/probes/requiresLastPushApproval/impl.go b/probes/requiresLastPushApproval/impl.go new file mode 100644 index 000000000000..c457a71d1c3c --- /dev/null +++ b/probes/requiresLastPushApproval/impl.go @@ -0,0 +1,59 @@ +// Copyright 2023 OpenSSF Scorecard Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//nolint:stylecheck +package requiresLastPushApproval + +import ( + "embed" + "fmt" + + "github.com/ossf/scorecard/v4/checker" + "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/branchprotection" + "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" +) + +//go:embed *.yml +var fs embed.FS + +const Probe = "requiresLastPushApproval" + +func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { + if raw == nil { + return nil, "", fmt.Errorf("%w: raw", uerror.ErrNil) + } + + r := raw.BranchProtectionResults + var findings []finding.Finding + + for i := range r.Branches { + branch := &r.Branches[i] + + p := branch.BranchProtectionRule.RequireLastPushApproval + text, outcome, err := branchprotection.GetTextOutcomeFromBool(p, "last push approval", *branch.Name) + if err != nil { + return nil, Probe, fmt.Errorf("create finding: %w", err) + } + f, err := finding.NewWith(fs, Probe, text, nil, outcome) + if err != nil { + return nil, Probe, fmt.Errorf("create finding: %w", err) + } + f = f.WithValues(map[string]int{ + *branch.Name: 1, + }) + findings = append(findings, *f) + } + return findings, Probe, nil +} diff --git a/probes/requiresLastPushApproval/impl_test.go b/probes/requiresLastPushApproval/impl_test.go new file mode 100644 index 000000000000..6e4eac365d3a --- /dev/null +++ b/probes/requiresLastPushApproval/impl_test.go @@ -0,0 +1,176 @@ +// Copyright 2023 OpenSSF Scorecard Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//nolint:stylecheck +package requiresLastPushApproval + +import ( + "testing" + + "github.com/google/go-cmp/cmp" + "github.com/google/go-cmp/cmp/cmpopts" + + "github.com/ossf/scorecard/v4/checker" + "github.com/ossf/scorecard/v4/clients" + "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" +) + +func Test_Run(t *testing.T) { + t.Parallel() + trueVal := true + falseVal := false + branchVal1 := "branch-name1" + branchVal2 := "branch-name1" + //nolint:govet + tests := []struct { + name string + raw *checker.RawResults + outcomes []finding.Outcome + err error + }{ + { + name: "1 branch requires last push approval = 1 positive outcome", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + RequireLastPushApproval: &trueVal, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, + }, + }, + { + name: "2 branches requirs last push approval = 2 positive outcomes", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + RequireLastPushApproval: &trueVal, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + RequireLastPushApproval: &trueVal, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, finding.OutcomePositive, + }, + }, + { + name: "Last push approval enabled on 1/2 branches = 1 positive and 1 negative outcomes", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + RequireLastPushApproval: &trueVal, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + RequireLastPushApproval: &falseVal, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, finding.OutcomeNegative, + }, + }, + { + name: "Last push approval enabled on 1/2 branches = 1 negative and 1 positive outcomes", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + RequireLastPushApproval: &falseVal, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + RequireLastPushApproval: &trueVal, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomeNegative, finding.OutcomePositive, + }, + }, + { + name: "1 branch does not require last push approval and 1 lacks data = 1 negative and 1 unavailable", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + RequireLastPushApproval: &falseVal, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + RequireLastPushApproval: nil, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomeNegative, finding.OutcomeNotAvailable, + }, + }, + } + for _, tt := range tests { + tt := tt // Re-initializing variable so it is not changed while executing the closure below + t.Run(tt.name, func(t *testing.T) { + t.Parallel() + + findings, s, err := Run(tt.raw) + if !cmp.Equal(tt.err, err, cmpopts.EquateErrors()) { + t.Errorf("mismatch (-want +got):\n%s", cmp.Diff(tt.err, err, cmpopts.EquateErrors())) + } + if err != nil { + return + } + if diff := cmp.Diff(Probe, s); diff != "" { + t.Errorf("mismatch (-want +got):\n%s", diff) + } + test.AssertOutcomes(t, findings, tt.outcomes) + }) + } +} diff --git a/probes/requiresUpToDateBranches/def.yml b/probes/requiresUpToDateBranches/def.yml new file mode 100644 index 000000000000..44769b375633 --- /dev/null +++ b/probes/requiresUpToDateBranches/def.yml @@ -0,0 +1,32 @@ +# Copyright 2023 OpenSSF Scorecard Authors +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +id: requiresUpToDateBranches +short: Check that the project requires PRs to be in sync with the base branch. +motivation: > + Requiring PRs to be in sync with the base branch is good practice. +implementation: > + The probe checks the branch protection rules of default and release branches in the repository. +outcome: + - The probe returns one OutcomePositive for each branch that requires PRs to be in sync with the base branch, and one OutcomeNegative for branches that don't. +remediation: + effort: High + text: + - Configure the repository such that it requires PRs to be in sync with the base branch. + - For GitHub-hosted projects, followed [these instructions](https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches#require-status-checks-before-merging) + - For Gitlab-hosted projects, use [semi-linear merge methods](https://docs.gitlab.com/ee/user/project/merge_requests/methods/#rebasing-in-semi-linear-merge-methods). + markdown: + - Configure the repository such that it requires PRs to be in sync with the base branch. + - For GitHub-hosted projects, followed [these instructions](https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches#require-status-checks-before-merging) + - For Gitlab-hosted projects, use [semi-linear merge methods](https://docs.gitlab.com/ee/user/project/merge_requests/methods/#rebasing-in-semi-linear-merge-methods). \ No newline at end of file diff --git a/probes/requiresUpToDateBranches/impl.go b/probes/requiresUpToDateBranches/impl.go new file mode 100644 index 000000000000..4e2302979575 --- /dev/null +++ b/probes/requiresUpToDateBranches/impl.go @@ -0,0 +1,61 @@ +// Copyright 2023 OpenSSF Scorecard Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//nolint:stylecheck +package requiresUpToDateBranches + +import ( + "embed" + "fmt" + + "github.com/ossf/scorecard/v4/checker" + "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/branchprotection" + "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" +) + +//go:embed *.yml +var fs embed.FS + +const Probe = "requiresUpToDateBranches" + +func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { + if raw == nil { + return nil, "", fmt.Errorf("%w: raw", uerror.ErrNil) + } + + r := raw.BranchProtectionResults + var findings []finding.Finding + + for i := range r.Branches { + branch := &r.Branches[i] + + p := branch.BranchProtectionRule.CheckRules.UpToDateBeforeMerge + text, outcome, err := branchprotection.GetTextOutcomeFromBool(p, + "up-to-date branches", + *branch.Name) + if err != nil { + return nil, Probe, fmt.Errorf("create finding: %w", err) + } + f, err := finding.NewWith(fs, Probe, text, nil, outcome) + if err != nil { + return nil, Probe, fmt.Errorf("create finding: %w", err) + } + f = f.WithValues(map[string]int{ + *branch.Name: 1, + }) + findings = append(findings, *f) + } + return findings, Probe, nil +} diff --git a/probes/requiresUpToDateBranches/impl_test.go b/probes/requiresUpToDateBranches/impl_test.go new file mode 100644 index 000000000000..a2cd6ee58332 --- /dev/null +++ b/probes/requiresUpToDateBranches/impl_test.go @@ -0,0 +1,194 @@ +// Copyright 2023 OpenSSF Scorecard Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//nolint:stylecheck +package requiresUpToDateBranches + +import ( + "testing" + + "github.com/google/go-cmp/cmp" + "github.com/google/go-cmp/cmp/cmpopts" + + "github.com/ossf/scorecard/v4/checker" + "github.com/ossf/scorecard/v4/clients" + "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" +) + +func Test_Run(t *testing.T) { + t.Parallel() + trueVal := true + falseVal := false + branchVal1 := "branch-name1" + branchVal2 := "branch-name1" + //nolint:govet + tests := []struct { + name string + raw *checker.RawResults + outcomes []finding.Outcome + err error + }{ + { + name: "1 branch requires up-to-date before merge = 1 positive outcome", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + CheckRules: clients.StatusChecksRule{ + UpToDateBeforeMerge: &trueVal, + }, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, + }, + }, + { + name: "2 branches require up-to-date before merge = 2 positive outcomes", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + CheckRules: clients.StatusChecksRule{ + UpToDateBeforeMerge: &trueVal, + }, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + CheckRules: clients.StatusChecksRule{ + UpToDateBeforeMerge: &trueVal, + }, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, finding.OutcomePositive, + }, + }, + { + name: "Requires up to date branches on 1/2 branches = 1 positive and 1 negative outcomes", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + CheckRules: clients.StatusChecksRule{ + UpToDateBeforeMerge: &trueVal, + }, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + CheckRules: clients.StatusChecksRule{ + UpToDateBeforeMerge: &falseVal, + }, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, finding.OutcomeNegative, + }, + }, + { + name: "Requires up to date branches on 1/2 branches = 1 negative and 1 positive outcomes", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + CheckRules: clients.StatusChecksRule{ + UpToDateBeforeMerge: &falseVal, + }, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + CheckRules: clients.StatusChecksRule{ + UpToDateBeforeMerge: &trueVal, + }, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomeNegative, finding.OutcomePositive, + }, + }, + { + name: "1 branch does no require up-to-date before merge and 1 branch lacks data= 1 positive & 1 unavailable", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + CheckRules: clients.StatusChecksRule{ + UpToDateBeforeMerge: &falseVal, + }, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + CheckRules: clients.StatusChecksRule{ + UpToDateBeforeMerge: nil, + }, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomeNegative, finding.OutcomeNotAvailable, + }, + }, + } + for _, tt := range tests { + tt := tt // Re-initializing variable so it is not changed while executing the closure below + t.Run(tt.name, func(t *testing.T) { + t.Parallel() + + findings, s, err := Run(tt.raw) + if !cmp.Equal(tt.err, err, cmpopts.EquateErrors()) { + t.Errorf("mismatch (-want +got):\n%s", cmp.Diff(tt.err, err, cmpopts.EquateErrors())) + } + if err != nil { + return + } + if diff := cmp.Diff(Probe, s); diff != "" { + t.Errorf("mismatch (-want +got):\n%s", diff) + } + test.AssertOutcomes(t, findings, tt.outcomes) + }) + } +} diff --git a/probes/runsStatusChecksBeforeMerging/def.yml b/probes/runsStatusChecksBeforeMerging/def.yml new file mode 100644 index 000000000000..1a0a0ecd6301 --- /dev/null +++ b/probes/runsStatusChecksBeforeMerging/def.yml @@ -0,0 +1,26 @@ +# Copyright 2023 OpenSSF Scorecard Authors +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +id: runsStatusChecksBeforeMerging +short: Check that the project runs required status checks +motivation: > + Required status checks can check for common errors and resolve issues in PRs. +implementation: > + The probe checks the rules for default and release branches in the projects repository. +outcome: + - The probe returns one OutcomePositive for each branch that runs required status checks, and one OutcomeNegative for branches that don't. +remediation: + effort: Medium + text: + - Enable required status checks by following [these guidelines](https://docs.github.com/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/troubleshooting-required-status-checks). \ No newline at end of file diff --git a/probes/runsStatusChecksBeforeMerging/impl.go b/probes/runsStatusChecksBeforeMerging/impl.go new file mode 100644 index 000000000000..940b53567370 --- /dev/null +++ b/probes/runsStatusChecksBeforeMerging/impl.go @@ -0,0 +1,68 @@ +// Copyright 2023 OpenSSF Scorecard Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//nolint:stylecheck +package runsStatusChecksBeforeMerging + +import ( + "embed" + "fmt" + + "github.com/ossf/scorecard/v4/checker" + "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" +) + +//go:embed *.yml +var fs embed.FS + +const Probe = "runsStatusChecksBeforeMerging" + +func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { + if raw == nil { + return nil, "", fmt.Errorf("%w: raw", uerror.ErrNil) + } + + r := raw.BranchProtectionResults + var findings []finding.Finding + + for i := range r.Branches { + branch := &r.Branches[i] + switch { + case len(branch.BranchProtectionRule.CheckRules.Contexts) > 0: + f, err := finding.NewWith(fs, Probe, + fmt.Sprintf("status check found to merge onto on branch '%s'", *branch.Name), nil, + finding.OutcomePositive) + if err != nil { + return nil, Probe, fmt.Errorf("create finding: %w", err) + } + f = f.WithValues(map[string]int{ + *branch.Name: 1, + }) + findings = append(findings, *f) + default: + f, err := finding.NewWith(fs, Probe, + fmt.Sprintf("no status checks found to merge onto branch '%s'", *branch.Name), nil, + finding.OutcomeNegative) + if err != nil { + return nil, Probe, fmt.Errorf("create finding: %w", err) + } + f = f.WithValues(map[string]int{ + *branch.Name: 1, + }) + findings = append(findings, *f) + } + } + return findings, Probe, nil +} diff --git a/probes/runsStatusChecksBeforeMerging/impl_test.go b/probes/runsStatusChecksBeforeMerging/impl_test.go new file mode 100644 index 000000000000..13472f274357 --- /dev/null +++ b/probes/runsStatusChecksBeforeMerging/impl_test.go @@ -0,0 +1,193 @@ +// Copyright 2023 OpenSSF Scorecard Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//nolint:stylecheck +package runsStatusChecksBeforeMerging + +import ( + "testing" + + "github.com/google/go-cmp/cmp" + "github.com/google/go-cmp/cmp/cmpopts" + + "github.com/ossf/scorecard/v4/checker" + "github.com/ossf/scorecard/v4/clients" + "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" +) + +func Test_Run(t *testing.T) { + t.Parallel() + branchVal1 := "branch-name1" + branchVal2 := "branch-name1" + + //nolint:govet + tests := []struct { + name string + raw *checker.RawResults + outcomes []finding.Outcome + err error + }{ + { + name: "Runs status checks on 1/1 branches with contexts = 1 positive outcome", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + CheckRules: clients.StatusChecksRule{ + Contexts: []string{"foo"}, + }, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, + }, + }, + { + name: "Runs status checks on 2/2 branches with contexts = 2 positive outcomes", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + CheckRules: clients.StatusChecksRule{ + Contexts: []string{"foo"}, + }, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + CheckRules: clients.StatusChecksRule{ + Contexts: []string{"foo"}, + }, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, finding.OutcomePositive, + }, + }, + { + name: "Runs status checks on 1/2 branches = 1 positive and 1 negative outcome", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + CheckRules: clients.StatusChecksRule{ + Contexts: []string{"foo"}, + }, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + CheckRules: clients.StatusChecksRule{ + Contexts: []string{}, + }, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, finding.OutcomeNegative, + }, + }, + { + name: "Runs status checks on 1/2 branches = 1 negative and 1 positive outcome", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + CheckRules: clients.StatusChecksRule{ + Contexts: []string{}, + }, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + CheckRules: clients.StatusChecksRule{ + Contexts: []string{"foo"}, + }, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomeNegative, finding.OutcomePositive, + }, + }, + { + name: "Runs status checks on 0/2 branches = 2 negative outcomes", + raw: &checker.RawResults{ + BranchProtectionResults: checker.BranchProtectionsData{ + Branches: []clients.BranchRef{ + { + Name: &branchVal1, + BranchProtectionRule: clients.BranchProtectionRule{ + CheckRules: clients.StatusChecksRule{ + Contexts: []string{}, + }, + }, + }, + { + Name: &branchVal2, + BranchProtectionRule: clients.BranchProtectionRule{ + CheckRules: clients.StatusChecksRule{ + Contexts: []string{}, + }, + }, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomeNegative, finding.OutcomeNegative, + }, + }, + } + for _, tt := range tests { + tt := tt // Re-initializing variable so it is not changed while executing the closure below + t.Run(tt.name, func(t *testing.T) { + t.Parallel() + + findings, s, err := Run(tt.raw) + if !cmp.Equal(tt.err, err, cmpopts.EquateErrors()) { + t.Errorf("mismatch (-want +got):\n%s", cmp.Diff(tt.err, err, cmpopts.EquateErrors())) + } + if err != nil { + return + } + if diff := cmp.Diff(Probe, s); diff != "" { + t.Errorf("mismatch (-want +got):\n%s", diff) + } + test.AssertOutcomes(t, findings, tt.outcomes) + }) + } +} diff --git a/probes/sastToolCodeQLInstalled/impl_test.go b/probes/sastToolCodeQLInstalled/impl_test.go index baf0e407e88d..60165f2a2790 100644 --- a/probes/sastToolCodeQLInstalled/impl_test.go +++ b/probes/sastToolCodeQLInstalled/impl_test.go @@ -23,6 +23,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" ) func Test_Run(t *testing.T) { @@ -85,16 +86,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/sastToolPysaInstalled/def.yml b/probes/sastToolPysaInstalled/def.yml new file mode 100644 index 000000000000..89f2a58ff3ab --- /dev/null +++ b/probes/sastToolPysaInstalled/def.yml @@ -0,0 +1,29 @@ +# Copyright 2023 OpenSSF Scorecard Authors +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +id: sastToolPysaInstalled +short: Check that the project uses the Pysa github action +motivation: > + SAST is testing run on source code before the application is run. Using SAST tools can prevent known classes of bugs from being inadvertently introduced in the codebase. +implementation: > + The implementation checks whether the project invokes the facebook/pysa-action action. +outcome: + - If the project uses the facebook/pysa-action action, the probe returns one finding with OutcomePositive (1). + - If the project does not use the facebook/pysa-action action, the probe returns one finding with OutcomeNegative (0). +remediation: + effort: Medium + text: + - Follow the steps in https://github.com/facebook/pysa-action + markdown: + - Follow the steps in https://github.com/facebook/pysa-action diff --git a/probes/sastToolPysaInstalled/impl.go b/probes/sastToolPysaInstalled/impl.go new file mode 100644 index 000000000000..f79c018e6c82 --- /dev/null +++ b/probes/sastToolPysaInstalled/impl.go @@ -0,0 +1,60 @@ +// Copyright 2023 OpenSSF Scorecard Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//nolint:stylecheck +package sastToolPysaInstalled + +import ( + "embed" + "fmt" + + "github.com/ossf/scorecard/v4/checker" + "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" +) + +//go:embed *.yml +var fs embed.FS + +const Probe = "sastToolPysaInstalled" + +func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { + if raw == nil { + return nil, "", fmt.Errorf("%w: raw", uerror.ErrNil) + } + + r := raw.SASTResults + + for _, wf := range r.Workflows { + if wf.Type == checker.PysaWorkflow { + f, err := finding.NewWith(fs, Probe, + "SAST tool installed: Pysa", nil, + finding.OutcomePositive) + if err != nil { + return nil, Probe, fmt.Errorf("create finding: %w", err) + } + f = f.WithLocation(&finding.Location{ + Path: wf.File.Path, + }) + return []finding.Finding{*f}, Probe, nil + } + } + f, err := finding.NewWith(fs, Probe, + "Pysa tool not installed", nil, + finding.OutcomeNegative) + if err != nil { + return nil, Probe, fmt.Errorf("create finding: %w", err) + } + return []finding.Finding{*f}, Probe, nil +} diff --git a/probes/sastToolPysaInstalled/impl_test.go b/probes/sastToolPysaInstalled/impl_test.go new file mode 100644 index 000000000000..dffe8930a425 --- /dev/null +++ b/probes/sastToolPysaInstalled/impl_test.go @@ -0,0 +1,104 @@ +// Copyright 2023 OpenSSF Scorecard Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//nolint:stylecheck +package sastToolPysaInstalled + +import ( + "testing" + + "github.com/google/go-cmp/cmp" + "github.com/google/go-cmp/cmp/cmpopts" + + "github.com/ossf/scorecard/v4/checker" + "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" +) + +func Test_Run(t *testing.T) { + t.Parallel() + //nolint:govet + tests := []struct { + name string + raw *checker.RawResults + outcomes []finding.Outcome + err error + }{ + { + name: "pysa present", + err: nil, + raw: &checker.RawResults{ + SASTResults: checker.SASTData{ + Workflows: []checker.SASTWorkflow{ + { + Type: checker.CodeQLWorkflow, + }, + { + Type: checker.SnykWorkflow, + }, + { + Type: checker.SonarWorkflow, + }, + { + Type: checker.PysaWorkflow, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, + }, + }, + { + name: "pysa not present", + err: nil, + raw: &checker.RawResults{ + SASTResults: checker.SASTData{ + Workflows: []checker.SASTWorkflow{ + { + Type: checker.SonarWorkflow, + }, + { + Type: checker.CodeQLWorkflow, + }, + { + Type: checker.SnykWorkflow, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomeNegative, + }, + }, + } + for _, tt := range tests { + tt := tt // Re-initializing variable so it is not changed while executing the closure below + t.Run(tt.name, func(t *testing.T) { + t.Parallel() + + findings, s, err := Run(tt.raw) + if !cmp.Equal(tt.err, err, cmpopts.EquateErrors()) { + t.Errorf("mismatch (-want +got):\n%s", cmp.Diff(tt.err, err, cmpopts.EquateErrors())) + } + if err != nil { + return + } + if diff := cmp.Diff(Probe, s); diff != "" { + t.Errorf("mismatch (-want +got):\n%s", diff) + } + test.AssertOutcomes(t, findings, tt.outcomes) + }) + } +} diff --git a/probes/sastToolQodanaInstalled/def.yml b/probes/sastToolQodanaInstalled/def.yml new file mode 100644 index 000000000000..7d8e2d3b2a65 --- /dev/null +++ b/probes/sastToolQodanaInstalled/def.yml @@ -0,0 +1,29 @@ +# Copyright 2023 OpenSSF Scorecard Authors +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +id: sastToolQodanaInstalled +short: Check that the project uses the Qodana github action +motivation: > + SAST is testing run on source code before the application is run. Using SAST tools can prevent known classes of bugs from being inadvertently introduced in the codebase. +implementation: > + The implementation checks whether the project invokes the JetBrains/qodana-action action. +outcome: + - If the project uses the JetBrains/qodana-action action, the probe returns one finding with OutcomePositive (1). + - If the project does not use the JetBrains/qodana-action action, the probe returns one finding with OutcomeNegative (0). +remediation: + effort: Medium + text: + - Follow the steps in https://github.com/JetBrains/qodana-action + markdown: + - Follow the steps in https://github.com/JetBrains/qodana-action diff --git a/probes/sastToolQodanaInstalled/impl.go b/probes/sastToolQodanaInstalled/impl.go new file mode 100644 index 000000000000..1f4fb686713c --- /dev/null +++ b/probes/sastToolQodanaInstalled/impl.go @@ -0,0 +1,60 @@ +// Copyright 2023 OpenSSF Scorecard Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//nolint:stylecheck +package sastToolQodanaInstalled + +import ( + "embed" + "fmt" + + "github.com/ossf/scorecard/v4/checker" + "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" +) + +//go:embed *.yml +var fs embed.FS + +const Probe = "sastToolQodanaInstalled" + +func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { + if raw == nil { + return nil, "", fmt.Errorf("%w: raw", uerror.ErrNil) + } + + r := raw.SASTResults + + for _, wf := range r.Workflows { + if wf.Type == checker.QodanaWorkflow { + f, err := finding.NewWith(fs, Probe, + "SAST tool installed: Qodana", nil, + finding.OutcomePositive) + if err != nil { + return nil, Probe, fmt.Errorf("create finding: %w", err) + } + f = f.WithLocation(&finding.Location{ + Path: wf.File.Path, + }) + return []finding.Finding{*f}, Probe, nil + } + } + f, err := finding.NewWith(fs, Probe, + "Qodana tool not installed", nil, + finding.OutcomeNegative) + if err != nil { + return nil, Probe, fmt.Errorf("create finding: %w", err) + } + return []finding.Finding{*f}, Probe, nil +} diff --git a/probes/sastToolQodanaInstalled/impl_test.go b/probes/sastToolQodanaInstalled/impl_test.go new file mode 100644 index 000000000000..c1d496508e75 --- /dev/null +++ b/probes/sastToolQodanaInstalled/impl_test.go @@ -0,0 +1,110 @@ +// Copyright 2023 OpenSSF Scorecard Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//nolint:stylecheck +package sastToolQodanaInstalled + +import ( + "testing" + + "github.com/google/go-cmp/cmp" + "github.com/google/go-cmp/cmp/cmpopts" + + "github.com/ossf/scorecard/v4/checker" + "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" +) + +func Test_Run(t *testing.T) { + t.Parallel() + //nolint:govet + tests := []struct { + name string + raw *checker.RawResults + outcomes []finding.Outcome + err error + }{ + { + name: "qodana present", + err: nil, + raw: &checker.RawResults{ + SASTResults: checker.SASTData{ + Workflows: []checker.SASTWorkflow{ + { + Type: checker.CodeQLWorkflow, + }, + { + Type: checker.SnykWorkflow, + }, + { + Type: checker.SonarWorkflow, + }, + { + Type: checker.PysaWorkflow, + }, + { + Type: checker.QodanaWorkflow, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomePositive, + }, + }, + { + name: "qodana not present", + err: nil, + raw: &checker.RawResults{ + SASTResults: checker.SASTData{ + Workflows: []checker.SASTWorkflow{ + { + Type: checker.SonarWorkflow, + }, + { + Type: checker.CodeQLWorkflow, + }, + { + Type: checker.SnykWorkflow, + }, + { + Type: checker.PysaWorkflow, + }, + }, + }, + }, + outcomes: []finding.Outcome{ + finding.OutcomeNegative, + }, + }, + } + for _, tt := range tests { + tt := tt // Re-initializing variable so it is not changed while executing the closure below + t.Run(tt.name, func(t *testing.T) { + t.Parallel() + + findings, s, err := Run(tt.raw) + if !cmp.Equal(tt.err, err, cmpopts.EquateErrors()) { + t.Errorf("mismatch (-want +got):\n%s", cmp.Diff(tt.err, err, cmpopts.EquateErrors())) + } + if err != nil { + return + } + if diff := cmp.Diff(Probe, s); diff != "" { + t.Errorf("mismatch (-want +got):\n%s", diff) + } + test.AssertOutcomes(t, findings, tt.outcomes) + }) + } +} diff --git a/probes/sastToolRunsOnAllCommits/impl.go b/probes/sastToolRunsOnAllCommits/impl.go index 5fcbe9c38cc7..ab9daaf8b2d3 100644 --- a/probes/sastToolRunsOnAllCommits/impl.go +++ b/probes/sastToolRunsOnAllCommits/impl.go @@ -27,7 +27,13 @@ import ( //go:embed *.yml var fs embed.FS -const Probe = "sastToolRunsOnAllCommits" //#nosec +const ( + Probe = "sastToolRunsOnAllCommits" + // TotalPRsKey is the Values map key which specifies the total number of PRs being evaluated. + TotalPRsKey = "totalPullRequestsMerged" + // AnalyzedPRsKey is the Values map key which specifies the number of PRs analyzed by a SAST. + AnalyzedPRsKey = "totalPullRequestsAnalyzed" +) func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { if raw == nil { @@ -59,8 +65,8 @@ func Run(raw *checker.RawResults) ([]finding.Finding, string, error) { return []finding.Finding{*f}, Probe, nil } - f = f.WithValue("totalPullRequestsAnalyzed", totalPullRequestsAnalyzed) - f = f.WithValue("totalPullRequestsMerged", totalPullRequestsMerged) + f = f.WithValue(AnalyzedPRsKey, totalPullRequestsAnalyzed) + f = f.WithValue(TotalPRsKey, totalPullRequestsMerged) if totalPullRequestsAnalyzed == totalPullRequestsMerged { msg := fmt.Sprintf("all commits (%v) are checked with a SAST tool", totalPullRequestsMerged) diff --git a/probes/sastToolRunsOnAllCommits/impl_test.go b/probes/sastToolRunsOnAllCommits/impl_test.go index 88f0bbd02b93..329bbde896b4 100644 --- a/probes/sastToolRunsOnAllCommits/impl_test.go +++ b/probes/sastToolRunsOnAllCommits/impl_test.go @@ -23,6 +23,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" ) func Test_Run(t *testing.T) { @@ -54,11 +55,11 @@ func Test_Run(t *testing.T) { }, expectedFindings: []finding.Finding{ { - Probe: "sastToolRunsOnAllCommits", + Probe: Probe, Message: "1 commits out of 2 are checked with a SAST tool", Values: map[string]int{ - "totalPullRequestsAnalyzed": 1, - "totalPullRequestsMerged": 2, + AnalyzedPRsKey: 1, + TotalPRsKey: 2, }, }, }, @@ -83,12 +84,12 @@ func Test_Run(t *testing.T) { }, expectedFindings: []finding.Finding{ { - Probe: "sastToolRunsOnAllCommits", + Probe: Probe, Message: "all commits (2) are checked with a SAST tool", Outcome: finding.OutcomePositive, Values: map[string]int{ - "totalPullRequestsAnalyzed": 2, - "totalPullRequestsMerged": 2, + AnalyzedPRsKey: 2, + TotalPRsKey: 2, }, }, }, @@ -109,16 +110,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) if !cmp.Equal(tt.expectedFindings, findings, cmpopts.EquateErrors()) { t.Errorf("mismatch (-want +got):\n%s", cmp.Diff(tt.expectedFindings, findings, cmpopts.EquateErrors())) } diff --git a/probes/sastToolSnykInstalled/impl_test.go b/probes/sastToolSnykInstalled/impl_test.go index 5ed948246d54..78183a233f6e 100644 --- a/probes/sastToolSnykInstalled/impl_test.go +++ b/probes/sastToolSnykInstalled/impl_test.go @@ -23,6 +23,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" ) func Test_Run(t *testing.T) { @@ -91,16 +92,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/sastToolSonarInstalled/impl_test.go b/probes/sastToolSonarInstalled/impl_test.go index 2c30a6d2b0fe..166b49d8b549 100644 --- a/probes/sastToolSonarInstalled/impl_test.go +++ b/probes/sastToolSonarInstalled/impl_test.go @@ -23,6 +23,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" ) func Test_Run(t *testing.T) { @@ -85,16 +86,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/securityPolicyContainsLinks/impl_test.go b/probes/securityPolicyContainsLinks/impl_test.go index 92ff2ce90f6d..67e3bd45ea33 100644 --- a/probes/securityPolicyContainsLinks/impl_test.go +++ b/probes/securityPolicyContainsLinks/impl_test.go @@ -23,6 +23,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -293,16 +294,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/securityPolicyContainsText/impl_test.go b/probes/securityPolicyContainsText/impl_test.go index f7a4d7154b71..bc2a472bee2c 100644 --- a/probes/securityPolicyContainsText/impl_test.go +++ b/probes/securityPolicyContainsText/impl_test.go @@ -23,6 +23,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -399,16 +400,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/securityPolicyContainsVulnerabilityDisclosure/impl_test.go b/probes/securityPolicyContainsVulnerabilityDisclosure/impl_test.go index 38d97ff46392..7d926ab470c8 100644 --- a/probes/securityPolicyContainsVulnerabilityDisclosure/impl_test.go +++ b/probes/securityPolicyContainsVulnerabilityDisclosure/impl_test.go @@ -23,6 +23,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -254,16 +255,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/securityPolicyPresent/impl_test.go b/probes/securityPolicyPresent/impl_test.go index 52cf9217af1b..c1f79a2e23df 100644 --- a/probes/securityPolicyPresent/impl_test.go +++ b/probes/securityPolicyPresent/impl_test.go @@ -23,6 +23,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -123,16 +124,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/toolDependabotInstalled/impl_test.go b/probes/toolDependabotInstalled/impl_test.go index e986eb4cb8e1..0561aaba5eb4 100644 --- a/probes/toolDependabotInstalled/impl_test.go +++ b/probes/toolDependabotInstalled/impl_test.go @@ -23,6 +23,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -111,16 +112,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/toolPyUpInstalled/impl_test.go b/probes/toolPyUpInstalled/impl_test.go index d7f9b5ee6d64..044f9be6bf1b 100644 --- a/probes/toolPyUpInstalled/impl_test.go +++ b/probes/toolPyUpInstalled/impl_test.go @@ -23,6 +23,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -111,16 +112,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/toolRenovateInstalled/impl_test.go b/probes/toolRenovateInstalled/impl_test.go index a21393becafa..3489346c252d 100644 --- a/probes/toolRenovateInstalled/impl_test.go +++ b/probes/toolRenovateInstalled/impl_test.go @@ -23,6 +23,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" "github.com/ossf/scorecard/v4/probes/internal/utils/uerror" ) @@ -111,16 +112,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/probes/webhooksUseSecrets/impl_test.go b/probes/webhooksUseSecrets/impl_test.go index eaf073d1f35d..fd3d723ae877 100644 --- a/probes/webhooksUseSecrets/impl_test.go +++ b/probes/webhooksUseSecrets/impl_test.go @@ -24,6 +24,7 @@ import ( "github.com/ossf/scorecard/v4/checker" "github.com/ossf/scorecard/v4/clients" "github.com/ossf/scorecard/v4/finding" + "github.com/ossf/scorecard/v4/probes/internal/utils/test" ) func Test_Run(t *testing.T) { @@ -156,16 +157,7 @@ func Test_Run(t *testing.T) { if diff := cmp.Diff(Probe, s); diff != "" { t.Errorf("mismatch (-want +got):\n%s", diff) } - if diff := cmp.Diff(len(tt.outcomes), len(findings)); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - for i := range tt.outcomes { - outcome := &tt.outcomes[i] - f := &findings[i] - if diff := cmp.Diff(*outcome, f.Outcome); diff != "" { - t.Errorf("mismatch (-want +got):\n%s", diff) - } - } + test.AssertOutcomes(t, findings, tt.outcomes) }) } } diff --git a/remediation/remediations_test.go b/remediation/remediations_test.go index 3ea529aad584..a29066598226 100644 --- a/remediation/remediations_test.go +++ b/remediation/remediations_test.go @@ -74,11 +74,10 @@ func (s stubDigester) Digest(name string) (string, error) { func TestCreateDockerfilePinningRemediation(t *testing.T) { t.Parallel() - //nolint:govet tests := []struct { - name string - dep checker.Dependency expected *rule.Remediation + dep checker.Dependency + name string }{ { name: "no depdendency", @@ -143,12 +142,12 @@ func TestCreateDockerfilePinningRemediation(t *testing.T) { func TestCreateWorkflowPinningRemediation(t *testing.T) { t.Parallel() - tests := []struct { //nolint:govet + tests := []struct { + expected *rule.Remediation name string branch string repo string filepath string - expected *rule.Remediation }{ { name: "valid input", diff --git a/rule/rule.go b/rule/rule.go index f7df3c310fe8..e5aa7f6d43a6 100644 --- a/rule/rule.go +++ b/rule/rule.go @@ -55,14 +55,13 @@ type jsonRemediation struct { Effort RemediationEffort `yaml:"effort"` } -//nolint:govet type jsonRule struct { Short string `yaml:"short"` Desc string `yaml:"desc"` Motivation string `yaml:"motivation"` Implementation string `yaml:"implementation"` - Risk Risk `yaml:"risk"` Remediation jsonRemediation `yaml:"remediation"` + Risk Risk `yaml:"risk"` } // Risk indicates a risk. @@ -81,14 +80,13 @@ const ( RiskCritical ) -//nolint:govet type Rule struct { + Remediation *Remediation Name string Short string Desc string Motivation string Risk Risk - Remediation *Remediation } var errInvalid = errors.New("invalid") diff --git a/rule/rule_test.go b/rule/rule_test.go index 83a6eebdbb44..89f484f47c78 100644 --- a/rule/rule_test.go +++ b/rule/rule_test.go @@ -34,12 +34,11 @@ var testfs embed.FS func Test_New(t *testing.T) { t.Parallel() - //nolint:govet tests := []struct { - name string - id string err error rule *Rule + name string + id string }{ { name: "all fields set", @@ -131,10 +130,10 @@ func TestRisk_GreaterThan(t *testing.T) { func TestRisk_String(t *testing.T) { t.Parallel() - tests := []struct { //nolint:govet + tests := []struct { name string - r Risk want string + r Risk }{ { name: "RiskNone", @@ -182,10 +181,10 @@ func TestRisk_String(t *testing.T) { func TestRemediationEffort_String(t *testing.T) { t.Parallel() - tests := []struct { //nolint:govet + tests := []struct { name string - effort RemediationEffort want string + effort RemediationEffort }{ { name: "RemediationEffortNone", @@ -228,10 +227,10 @@ func TestRemediationEffort_String(t *testing.T) { func TestRisk_UnmarshalYAML(t *testing.T) { t.Parallel() - tests := []struct { //nolint:govet + tests := []struct { + wantErr error name string input string - wantErr error want Risk }{ { @@ -283,10 +282,10 @@ func TestRisk_UnmarshalYAML(t *testing.T) { func TestRemediationEffort_UnmarshalYAML(t *testing.T) { t.Parallel() - tests := []struct { //nolint:govet + tests := []struct { + wantErr error name string input string - wantErr error want RemediationEffort }{ { @@ -328,10 +327,10 @@ func TestRemediationEffort_UnmarshalYAML(t *testing.T) { func Test_validate(t *testing.T) { t.Parallel() - tests := []struct { //nolint:govet - name string - rule *jsonRule + tests := []struct { wantErr error + rule *jsonRule + name string }{ { name: "valid", diff --git a/tools/go.mod b/tools/go.mod index 10747a05ddb9..7b5301f080b8 100644 --- a/tools/go.mod +++ b/tools/go.mod @@ -1,27 +1,27 @@ module github.com/ossf/scorecard/tools -go 1.19 +go 1.21 require ( github.com/golang/mock v1.6.0 github.com/golangci/golangci-lint v1.55.2 github.com/google/addlicense v1.1.1 github.com/google/ko v0.15.1 - github.com/goreleaser/goreleaser v1.20.0 - github.com/onsi/ginkgo/v2 v2.13.2 - google.golang.org/protobuf v1.31.0 + github.com/goreleaser/goreleaser v1.23.0 + github.com/onsi/ginkgo/v2 v2.14.0 + google.golang.org/protobuf v1.32.0 ) require ( 4d63.com/gocheckcompilerdirectives v1.2.1 // indirect 4d63.com/gochecknoglobals v0.2.1 // indirect - cloud.google.com/go v0.110.9 // indirect - cloud.google.com/go/compute v1.23.2 // indirect + cloud.google.com/go v0.110.10 // indirect + cloud.google.com/go/compute v1.23.3 // indirect cloud.google.com/go/compute/metadata v0.2.3 // indirect - cloud.google.com/go/iam v1.1.4 // indirect - cloud.google.com/go/kms v1.15.4 // indirect - cloud.google.com/go/storage v1.33.0 // indirect - code.gitea.io/sdk/gitea v0.15.1 // indirect + cloud.google.com/go/iam v1.1.5 // indirect + cloud.google.com/go/kms v1.15.5 // indirect + cloud.google.com/go/storage v1.35.1 // indirect + code.gitea.io/sdk/gitea v0.17.0 // indirect dario.cat/mergo v1.0.0 // indirect github.com/4meepo/tagalign v1.3.3 // indirect github.com/Abirdcfly/dupword v0.0.13 // indirect @@ -30,12 +30,12 @@ require ( github.com/Antonboom/nilnil v0.1.7 // indirect github.com/Antonboom/testifylint v0.2.3 // indirect github.com/Azure/azure-sdk-for-go v68.0.0+incompatible // indirect - github.com/Azure/azure-sdk-for-go/sdk/azcore v1.8.0 // indirect + github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.0 // indirect github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.4.0 // indirect - github.com/Azure/azure-sdk-for-go/sdk/internal v1.4.0 // indirect + github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.0 // indirect github.com/Azure/azure-sdk-for-go/sdk/keyvault/azkeys v0.10.0 // indirect github.com/Azure/azure-sdk-for-go/sdk/keyvault/internal v0.7.1 // indirect - github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.1.0 // indirect + github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.2.0 // indirect github.com/Azure/go-autorest v14.2.0+incompatible // indirect github.com/Azure/go-autorest/autorest v0.11.29 // indirect github.com/Azure/go-autorest/autorest/adal v0.9.23 // indirect @@ -56,7 +56,6 @@ require ( github.com/Microsoft/go-winio v0.6.1 // indirect github.com/OpenPeeDeeP/depguard/v2 v2.1.0 // indirect github.com/ProtonMail/go-crypto v0.0.0-20230923063757-afb1ddc0824c // indirect - github.com/acomagu/bufpipe v1.0.4 // indirect github.com/alecthomas/go-check-sumtype v0.1.3 // indirect github.com/alessio/shellescape v1.4.1 // indirect github.com/alexkohler/nakedret/v2 v2.0.2 // indirect @@ -66,31 +65,32 @@ require ( github.com/ashanbrown/forbidigo v1.6.0 // indirect github.com/ashanbrown/makezero v1.1.1 // indirect github.com/atc0005/go-teams-notify/v2 v2.8.0 // indirect - github.com/aws/aws-sdk-go v1.47.0 // indirect - github.com/aws/aws-sdk-go-v2 v1.21.2 // indirect - github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.13 // indirect - github.com/aws/aws-sdk-go-v2/config v1.19.1 // indirect - github.com/aws/aws-sdk-go-v2/credentials v1.13.43 // indirect - github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.13 // indirect - github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.11.76 // indirect - github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.43 // indirect - github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.37 // indirect - github.com/aws/aws-sdk-go-v2/internal/ini v1.3.45 // indirect - github.com/aws/aws-sdk-go-v2/internal/v4a v1.1.4 // indirect + github.com/aws/aws-sdk-go v1.48.3 // indirect + github.com/aws/aws-sdk-go-v2 v1.23.1 // indirect + github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.5.1 // indirect + github.com/aws/aws-sdk-go-v2/config v1.25.5 // indirect + github.com/aws/aws-sdk-go-v2/credentials v1.16.4 // indirect + github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.5 // indirect + github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.14.2 // indirect + github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.4 // indirect + github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.5.4 // indirect + github.com/aws/aws-sdk-go-v2/internal/ini v1.7.1 // indirect + github.com/aws/aws-sdk-go-v2/internal/v4a v1.2.4 // indirect github.com/aws/aws-sdk-go-v2/service/ecr v1.20.2 // indirect github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.18.2 // indirect - github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.9.14 // indirect - github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.1.36 // indirect - github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.37 // indirect - github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.15.4 // indirect - github.com/aws/aws-sdk-go-v2/service/kms v1.24.7 // indirect - github.com/aws/aws-sdk-go-v2/service/s3 v1.40.0 // indirect - github.com/aws/aws-sdk-go-v2/service/sso v1.15.2 // indirect - github.com/aws/aws-sdk-go-v2/service/ssooidc v1.17.3 // indirect - github.com/aws/aws-sdk-go-v2/service/sts v1.23.2 // indirect - github.com/aws/smithy-go v1.15.0 // indirect + github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.10.1 // indirect + github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.2.4 // indirect + github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.10.4 // indirect + github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.16.4 // indirect + github.com/aws/aws-sdk-go-v2/service/kms v1.26.3 // indirect + github.com/aws/aws-sdk-go-v2/service/s3 v1.44.0 // indirect + github.com/aws/aws-sdk-go-v2/service/sso v1.17.3 // indirect + github.com/aws/aws-sdk-go-v2/service/ssooidc v1.20.1 // indirect + github.com/aws/aws-sdk-go-v2/service/sts v1.25.4 // indirect + github.com/aws/smithy-go v1.17.0 // indirect github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.0.0-20231024185945-8841054dbdb8 // indirect github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect + github.com/bahlo/generic-list-go v0.2.0 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/bkielbasa/cyclop v1.2.1 // indirect github.com/blakesmith/ar v0.0.0-20190502131153-809d4375e1fb // indirect @@ -99,6 +99,7 @@ require ( github.com/bombsimon/wsl/v3 v3.4.0 // indirect github.com/breml/bidichk v0.2.7 // indirect github.com/breml/errchkjson v0.3.6 // indirect + github.com/buger/jsonparser v1.1.1 // indirect github.com/butuzov/ireturn v0.2.2 // indirect github.com/butuzov/mirror v1.1.0 // indirect github.com/caarlos0/ctrlc v1.2.0 // indirect @@ -106,30 +107,32 @@ require ( github.com/caarlos0/go-reddit/v3 v3.0.1 // indirect github.com/caarlos0/go-shellwords v1.0.12 // indirect github.com/caarlos0/go-version v0.1.1 // indirect - github.com/caarlos0/log v0.4.2 // indirect + github.com/caarlos0/log v0.4.4 // indirect github.com/catenacyber/perfsprint v0.2.0 // indirect github.com/cavaliergopher/cpio v1.0.1 // indirect github.com/ccojocar/zxcvbn-go v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.2.1 // indirect github.com/cespare/xxhash/v2 v2.2.0 // indirect github.com/charithe/durationcheck v0.0.10 // indirect - github.com/charmbracelet/lipgloss v0.7.1 // indirect + github.com/charmbracelet/lipgloss v0.9.1 // indirect + github.com/charmbracelet/x/exp/ordered v0.0.0-20231010190216-1cb11efc897d // indirect github.com/chavacava/garif v0.1.0 // indirect github.com/chrismellard/docker-credential-acr-env v0.0.0-20230304212654-82a0ddb27589 // indirect - github.com/cloudflare/circl v1.3.5 // indirect + github.com/cloudflare/circl v1.3.7 // indirect github.com/containerd/stargz-snapshotter/estargz v0.14.3 // indirect github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect github.com/curioswitch/go-reassign v0.2.0 // indirect + github.com/cyphar/filepath-securejoin v0.2.4 // indirect github.com/daixiang0/gci v0.11.2 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect + github.com/davidmz/go-pageant v1.0.2 // indirect github.com/denis-tingaikin/go-header v0.4.3 // indirect github.com/dghubble/go-twitter v0.0.0-20220716041154-837915ec2f79 // indirect github.com/dghubble/oauth1 v0.7.2 // indirect github.com/dghubble/sling v1.4.0 // indirect github.com/dimchansky/utfbom v1.1.1 // indirect - github.com/disgoorg/disgo v0.16.8 // indirect + github.com/disgoorg/disgo v0.17.0 // indirect github.com/disgoorg/json v1.1.0 // indirect - github.com/disgoorg/log v1.2.1 // indirect github.com/disgoorg/snowflake/v2 v2.0.1 // indirect github.com/distribution/reference v0.5.0 // indirect github.com/docker/cli v24.0.7+incompatible // indirect @@ -151,9 +154,10 @@ require ( github.com/fzipp/gocyclo v0.6.0 // indirect github.com/ghostiam/protogetter v0.2.3 // indirect github.com/go-critic/go-critic v0.9.0 // indirect + github.com/go-fed/httpsig v1.1.0 // indirect github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect - github.com/go-git/go-billy/v5 v5.4.1 // indirect - github.com/go-git/go-git/v5 v5.7.0 // indirect + github.com/go-git/go-billy/v5 v5.5.0 // indirect + github.com/go-git/go-git/v5 v5.11.0 // indirect github.com/go-logr/logr v1.3.0 // indirect github.com/go-openapi/analysis v0.21.4 // indirect github.com/go-openapi/errors v0.20.4 // indirect @@ -179,7 +183,7 @@ require ( github.com/gofrs/flock v0.8.1 // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/golang-jwt/jwt/v4 v4.5.0 // indirect - github.com/golang-jwt/jwt/v5 v5.0.0 // indirect + github.com/golang-jwt/jwt/v5 v5.1.0 // indirect github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect github.com/golang/protobuf v1.5.3 // indirect github.com/golangci/check v0.0.0-20180506172741-cfe4005ccda2 // indirect @@ -192,22 +196,22 @@ require ( github.com/golangci/revgrep v0.5.2 // indirect github.com/golangci/unconvert v0.0.0-20180507085042-28b1c447d1f4 // indirect github.com/google/go-cmp v0.6.0 // indirect - github.com/google/go-containerregistry v0.16.1 // indirect - github.com/google/go-github/v53 v53.2.0 // indirect + github.com/google/go-containerregistry v0.17.0 // indirect + github.com/google/go-github/v57 v57.0.0 // indirect github.com/google/go-querystring v1.1.0 // indirect github.com/google/pprof v0.0.0-20231023181126-ff6d637d2a7b // indirect github.com/google/rpmpack v0.5.0 // indirect github.com/google/s2a-go v0.1.7 // indirect github.com/google/safetext v0.0.0-20220905092116-b49f7bc46da2 // indirect - github.com/google/uuid v1.4.0 // indirect + github.com/google/uuid v1.5.0 // indirect github.com/google/wire v0.5.0 // indirect github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect github.com/googleapis/gax-go/v2 v2.12.0 // indirect github.com/gordonklaus/ineffassign v0.0.0-20230610083614-0e73809eb601 // indirect github.com/goreleaser/chglog v0.5.0 // indirect github.com/goreleaser/fileglob v1.3.0 // indirect - github.com/goreleaser/nfpm/v2 v2.32.0 // indirect - github.com/gorilla/websocket v1.5.0 // indirect + github.com/goreleaser/nfpm/v2 v2.35.1 // indirect + github.com/gorilla/websocket v1.5.1 // indirect github.com/gostaticanalysis/analysisutil v0.7.1 // indirect github.com/gostaticanalysis/comment v1.4.2 // indirect github.com/gostaticanalysis/forcetypeassert v0.1.0 // indirect @@ -220,10 +224,9 @@ require ( github.com/hashicorp/hcl v1.0.1-vault-5 // indirect github.com/hexops/gotextdiff v1.0.3 // indirect github.com/huandu/xstrings v1.3.3 // indirect - github.com/iancoleman/orderedmap v0.2.0 // indirect github.com/imdario/mergo v0.3.16 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect - github.com/invopop/jsonschema v0.7.0 // indirect + github.com/invopop/jsonschema v0.12.0 // indirect github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect github.com/jgautheron/goconst v1.6.0 // indirect github.com/jingyugao/rowserrcheck v1.1.1 // indirect @@ -235,7 +238,7 @@ require ( github.com/kisielk/errcheck v1.6.3 // indirect github.com/kisielk/gotool v1.0.0 // indirect github.com/kkHAIKE/contextcheck v1.1.4 // indirect - github.com/klauspost/compress v1.17.2 // indirect + github.com/klauspost/compress v1.17.4 // indirect github.com/klauspost/pgzip v1.2.6 // indirect github.com/kulti/thelper v0.6.3 // indirect github.com/kunwardeep/paralleltest v1.0.8 // indirect @@ -256,7 +259,7 @@ require ( github.com/mattn/go-colorable v0.1.13 // indirect github.com/mattn/go-isatty v0.0.18 // indirect github.com/mattn/go-mastodon v0.0.6 // indirect - github.com/mattn/go-runewidth v0.0.14 // indirect + github.com/mattn/go-runewidth v0.0.15 // indirect github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect github.com/mbilski/exhaustivestruct v1.2.0 // indirect github.com/mgechev/revive v1.3.4 // indirect @@ -316,8 +319,8 @@ require ( github.com/sivchari/containedctx v1.0.3 // indirect github.com/sivchari/nosnakecase v1.7.0 // indirect github.com/sivchari/tenv v1.7.1 // indirect - github.com/skeema/knownhosts v1.1.1 // indirect - github.com/slack-go/slack v0.12.2 // indirect + github.com/skeema/knownhosts v1.2.1 // indirect + github.com/slack-go/slack v0.12.3 // indirect github.com/sonatard/noctx v0.0.2 // indirect github.com/sourcegraph/conc v0.3.0 // indirect github.com/sourcegraph/go-diff v0.7.0 // indirect @@ -347,7 +350,8 @@ require ( github.com/uudashr/gocognit v1.1.2 // indirect github.com/vbatts/tar-split v0.11.5 // indirect github.com/withfig/autocomplete-tools/integrations/cobra v1.2.1 // indirect - github.com/xanzy/go-gitlab v0.93.2 // indirect + github.com/wk8/go-ordered-map/v2 v2.1.8 // indirect + github.com/xanzy/go-gitlab v0.95.2 // indirect github.com/xanzy/ssh-agent v0.3.3 // indirect github.com/xen0n/gosmopolitan v1.2.2 // indirect github.com/yagipy/maintidx v1.0.0 // indirect @@ -362,25 +366,25 @@ require ( go.uber.org/automaxprocs v1.5.3 // indirect go.uber.org/multierr v1.11.0 // indirect go.uber.org/zap v1.26.0 // indirect - gocloud.dev v0.34.0 // indirect - golang.org/x/crypto v0.15.0 // indirect - golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect + gocloud.dev v0.35.0 // indirect + golang.org/x/crypto v0.17.0 // indirect + golang.org/x/exp v0.0.0-20231206192017-f3f8817b8deb // indirect golang.org/x/exp/typeparams v0.0.0-20230307190834-24139beb5833 // indirect golang.org/x/mod v0.14.0 // indirect - golang.org/x/net v0.18.0 // indirect - golang.org/x/oauth2 v0.13.0 // indirect + golang.org/x/net v0.19.0 // indirect + golang.org/x/oauth2 v0.15.0 // indirect golang.org/x/sync v0.5.0 // indirect - golang.org/x/sys v0.14.0 // indirect - golang.org/x/term v0.14.0 // indirect + golang.org/x/sys v0.15.0 // indirect + golang.org/x/term v0.15.0 // indirect golang.org/x/text v0.14.0 // indirect - golang.org/x/time v0.3.0 // indirect - golang.org/x/tools v0.15.0 // indirect + golang.org/x/time v0.4.0 // indirect + golang.org/x/tools v0.16.1 // indirect golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect - google.golang.org/api v0.149.0 // indirect + google.golang.org/api v0.151.0 // indirect google.golang.org/appengine v1.6.8 // indirect - google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b // indirect + google.golang.org/genproto v0.0.0-20231120223509-83a465c0220f // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20231120223509-83a465c0220f // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f // indirect google.golang.org/grpc v1.59.0 // indirect gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect gopkg.in/go-jose/go-jose.v2 v2.6.1 // indirect diff --git a/tools/go.sum b/tools/go.sum index c9814b7a9321..68a25ca2f95d 100644 --- a/tools/go.sum +++ b/tools/go.sum @@ -21,24 +21,24 @@ cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHOb cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= cloud.google.com/go v0.75.0/go.mod h1:VGuuCn7PG0dwsd5XPVm2Mm3wlh3EL55/79EKB6hlPTY= -cloud.google.com/go v0.110.9 h1:e7ITSqGFFk4rbz/JFIqZh3G4VEHguhAL4BQcFlWtU68= -cloud.google.com/go v0.110.9/go.mod h1:rpxevX/0Lqvlbc88b7Sc1SPNdyK1riNBTUU6JXhYNpM= +cloud.google.com/go v0.110.10 h1:LXy9GEO+timppncPIAZoOj3l58LIU9k+kn48AN7IO3Y= +cloud.google.com/go v0.110.10/go.mod h1:v1OoFqYxiBkUrruItNM3eT4lLByNjxmJSV/xDKJNnic= cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= -cloud.google.com/go/compute v1.23.2 h1:nWEMDhgbBkBJjfpVySqU4jgWdc22PLR0o4vEexZHers= -cloud.google.com/go/compute v1.23.2/go.mod h1:JJ0atRC0J/oWYiiVBmsSsrRnh92DhZPG4hFDcR04Rns= +cloud.google.com/go/compute v1.23.3 h1:6sVlXXBmbd7jNX0Ipq0trII3e4n1/MsADLK6a+aiVlk= +cloud.google.com/go/compute v1.23.3/go.mod h1:VCgBUoMnIVIR0CscqQiPJLAG25E3ZRZMzcFZeQ+h8CI= cloud.google.com/go/compute/metadata v0.2.3 h1:mg4jlk7mCAj6xXp9UJ4fjI9VUI5rubuGBW5aJ7UnBMY= cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA= cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= -cloud.google.com/go/iam v1.1.4 h1:K6n/GZHFTtEoKT5aUG3l9diPi0VduZNQ1PfdnpkkIFk= -cloud.google.com/go/iam v1.1.4/go.mod h1:l/rg8l1AaA+VFMho/HYx2Vv6xinPSLMF8qfhRPIZ0L8= -cloud.google.com/go/kms v1.15.4 h1:gEZzC54ZBI+aeW8/jg9tgz9KR4Aa+WEDPbdGIV3iJ7A= -cloud.google.com/go/kms v1.15.4/go.mod h1:L3Sdj6QTHK8dfwK5D1JLsAyELsNMnd3tAIwGS4ltKpc= +cloud.google.com/go/iam v1.1.5 h1:1jTsCu4bcsNsE4iiqNT5SHwrDRCfRmIaaaVFhRveTJI= +cloud.google.com/go/iam v1.1.5/go.mod h1:rB6P/Ic3mykPbFio+vo7403drjlgvoWfYpJhMXEbzv8= +cloud.google.com/go/kms v1.15.5 h1:pj1sRfut2eRbD9pFRjNnPNg/CzJPuQAzUujMIM1vVeM= +cloud.google.com/go/kms v1.15.5/go.mod h1:cU2H5jnp6G2TDpUGZyqTCoy1n16fbubHZjmVXSMtwDI= cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= @@ -49,11 +49,10 @@ cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohl cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3fOKtUw0Xmo= -cloud.google.com/go/storage v1.33.0 h1:PVrDOkIC8qQVa1P3SXGpQvfuJhN2LHOoyZvWs8D2X5M= -cloud.google.com/go/storage v1.33.0/go.mod h1:Hhh/dogNRGca7IWv1RC2YqEn0c0G77ctA/OxflYkiD8= -code.gitea.io/gitea-vet v0.2.1/go.mod h1:zcNbT/aJEmivCAhfmkHOlT645KNOf9W2KnkLgFjGGfE= -code.gitea.io/sdk/gitea v0.15.1 h1:WJreC7YYuxbn0UDaPuWIe/mtiNKTvLN8MLkaw71yx/M= -code.gitea.io/sdk/gitea v0.15.1/go.mod h1:klY2LVI3s3NChzIk/MzMn7G1FHrfU7qd63iSMVoHRBA= +cloud.google.com/go/storage v1.35.1 h1:B59ahL//eDfx2IIKFBeT5Atm9wnNmj3+8xG/W4WB//w= +cloud.google.com/go/storage v1.35.1/go.mod h1:M6M/3V/D3KpzMTJyPOR/HU6n2Si5QdaXYEsng2xgOs8= +code.gitea.io/sdk/gitea v0.17.0 h1:8JPBss4+Jf7AE1YcfyiGrngTXE8dFSG3si/bypsTH34= +code.gitea.io/sdk/gitea v0.17.0/go.mod h1:ndkDk99BnfiUCCYEUhpNzi0lpmApXlwRFqClBlOlEBg= dario.cat/mergo v1.0.0 h1:AGCNq9Evsj31mOgNPcLyXc+4PNABt905YmuqPYYpBWk= dario.cat/mergo v1.0.0/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= @@ -71,20 +70,22 @@ github.com/Antonboom/testifylint v0.2.3 h1:MFq9zyL+rIVpsvLX4vDPLojgN7qODzWsrnftN github.com/Antonboom/testifylint v0.2.3/go.mod h1:IYaXaOX9NbfAyO+Y04nfjGI8wDemC1rUyM/cYolz018= github.com/Azure/azure-sdk-for-go v68.0.0+incompatible h1:fcYLmCpyNYRnvJbPerq7U0hS+6+I79yEDJBqVNcqUzU= github.com/Azure/azure-sdk-for-go v68.0.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.8.0 h1:9kDVnTz3vbfweTqAUmk/a/pH5pWFCHtvRpHYC0G/dcA= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.8.0/go.mod h1:3Ug6Qzto9anB6mGlEdgYMDF5zHQ+wwhEaYR4s17PHMw= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.0 h1:fb8kj/Dh4CSwgsOzHeZY4Xh68cFVbzXx+ONXGMY//4w= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.0/go.mod h1:uReU2sSxZExRPBAg3qKzmAucSi51+SP1OhohieR821Q= github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.4.0 h1:BMAjVKJM0U/CYF27gA0ZMmXGkOcvfFtD0oHVZ1TIPRI= github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.4.0/go.mod h1:1fXstnBMas5kzG+S3q8UoJcmyU6nUeunJcMDHcRYHhs= -github.com/Azure/azure-sdk-for-go/sdk/internal v1.4.0 h1:TuEMD+E+1aTjjLICGQOW6vLe8UWES7kopac9mUXL56Y= -github.com/Azure/azure-sdk-for-go/sdk/internal v1.4.0/go.mod h1:s4kgfzA0covAXNicZHDMN58jExvcng2mC/DepXiF1EI= +github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.0 h1:d81/ng9rET2YqdVkVwkb6EXeRrLJIwyGnJcAlAWKwhs= +github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.0/go.mod h1:s4kgfzA0covAXNicZHDMN58jExvcng2mC/DepXiF1EI= github.com/Azure/azure-sdk-for-go/sdk/keyvault/azkeys v0.10.0 h1:m/sWOGCREuSBqg2htVQTBY8nOZpyajYztF0vUvSZTuM= github.com/Azure/azure-sdk-for-go/sdk/keyvault/azkeys v0.10.0/go.mod h1:Pu5Zksi2KrU7LPbZbNINx6fuVrUp/ffvpxdDj+i8LeE= github.com/Azure/azure-sdk-for-go/sdk/keyvault/internal v0.7.1 h1:FbH3BbSb4bvGluTesZZ+ttN/MDsnMmQP36OSnDuSXqw= github.com/Azure/azure-sdk-for-go/sdk/keyvault/internal v0.7.1/go.mod h1:9V2j0jn9jDEkCkv8w/bKTNppX/d0FVA1ud77xCIP4KA= github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/armstorage v1.2.0 h1:Ma67P/GGprNwsslzEH6+Kb8nybI8jpDTm4Wmzu2ReK8= -github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.1.0 h1:nVocQV40OQne5613EeLayJiRAJuKlBGy+m22qWG+WRg= -github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.1.0/go.mod h1:7QJP7dr2wznCMeqIrhMgWGf7XpAQnVrJqDm9nvV3Cu4= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/armstorage v1.2.0/go.mod h1:c+Lifp3EDEamAkPVzMooRNOK6CZjNSdEnf1A7jsI9u4= +github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.2.0 h1:gggzg0SUMs6SQbEw+3LoSsYf9YMjkupeAnHMX8O9mmY= +github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.2.0/go.mod h1:+6KLcKIVgxoBDMqMO/Nvy7bZ9a0nbU3I1DtFQK3YvB4= github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 h1:L/gRVlceqvL25UVaW/CKtUDjefjrs0SPonmDGUVOYP0= +github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E= github.com/Azure/go-autorest v14.2.0+incompatible h1:V5VMDjClD3GiElqLWO7mz2MxNAK/vTfRHdAubSIPRgs= github.com/Azure/go-autorest v14.2.0+incompatible/go.mod h1:r+4oMnoxhatjLLJ6zxSWATqVooLgysK6ZNox3g/xq24= github.com/Azure/go-autorest/autorest v0.11.24/go.mod h1:G6kyRlFnTuSbEYkQGawPfsCswgme4iYf6rfSKUDzbCc= @@ -118,6 +119,7 @@ github.com/BurntSushi/toml v1.3.2 h1:o7IhLm0Msx3BaB+n3Ag7L8EVlByGnpq14C4YWiu/gL8 github.com/BurntSushi/toml v1.3.2/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= github.com/DataDog/zstd v1.4.5 h1:EndNeuB0l9syBZhut0wns3gV1hL8zX8LIu6ZiVHWLIQ= +github.com/DataDog/zstd v1.4.5/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= github.com/Djarvur/go-err113 v0.0.0-20210108212216-aea10b59be24 h1:sHglBQTwgx+rWPdisA5ynNEsoARbiCBOyGcJM4/OzsM= github.com/Djarvur/go-err113 v0.0.0-20210108212216-aea10b59be24/go.mod h1:4UJr5HIiMZrwgkSPdsjy2uOQExX/WEILpIrO9UPGuXs= github.com/GaijinEntertainment/go-exhaustruct/v3 v3.1.0 h1:3ZBs7LAezy8gh0uECsA6CGU43FF3zsx5f4eah5FxTMA= @@ -135,20 +137,23 @@ github.com/Microsoft/go-winio v0.5.2/go.mod h1:WpS1mjBmmwHBEWmogvA2mj8546UReBk4v github.com/Microsoft/go-winio v0.6.1 h1:9/kr64B9VUZrLm5YYwbGtUJnMgqWVOdUAXu6Migciow= github.com/Microsoft/go-winio v0.6.1/go.mod h1:LRdKpFKfdobln8UmuiYcKPot9D2v6svN5+sAH+4kjUM= github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 h1:TngWCqHvy9oXAN6lEVMRuU21PR1EtLVZJmdB18Gu3Rw= +github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5/go.mod h1:lmUJ/7eu/Q8D7ML55dXQrVaamCz2vxCfdQBasLZfHKk= github.com/OpenPeeDeeP/depguard/v2 v2.1.0 h1:aQl70G173h/GZYhWf36aE5H0KaujXfVMnn/f1kSDVYY= github.com/OpenPeeDeeP/depguard/v2 v2.1.0/go.mod h1:PUBgk35fX4i7JDmwzlJwJ+GMe6NfO1723wmJMgPThNQ= github.com/ProtonMail/go-crypto v0.0.0-20230923063757-afb1ddc0824c h1:kMFnB0vCcX7IL/m9Y5LO+KQYv+t1CQOiFe6+SV2J7bE= github.com/ProtonMail/go-crypto v0.0.0-20230923063757-afb1ddc0824c/go.mod h1:EjAoLdwvbIOoOQr3ihjnSoLZRtE8azugULFRteWMNc0= github.com/ProtonMail/go-mime v0.0.0-20230322103455-7d82a3887f2f h1:tCbYj7/299ekTTXpdwKYF8eBlsYsDVoggDAuAjoK66k= +github.com/ProtonMail/go-mime v0.0.0-20230322103455-7d82a3887f2f/go.mod h1:gcr0kNtGBqin9zDW9GOHcVntrwnjrK+qdJ06mWYBybw= github.com/ProtonMail/gopenpgp/v2 v2.7.1 h1:Awsg7MPc2gD3I7IFac2qE3Gdls0lZW8SzrFZ3k1oz0s= +github.com/ProtonMail/gopenpgp/v2 v2.7.1/go.mod h1:/BU5gfAVwqyd8EfC3Eu7zmuhwYQpKs+cGD8M//iiaxs= github.com/PuerkitoBio/purell v1.1.1/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= -github.com/acomagu/bufpipe v1.0.4 h1:e3H4WUzM3npvo5uv95QuJM3cQspFNtFBzvJ2oNjKIDQ= -github.com/acomagu/bufpipe v1.0.4/go.mod h1:mxdxdup/WdsKVreO5GpW4+M/1CE2sMG4jeGJ2sYmHc4= github.com/alecthomas/assert/v2 v2.2.2 h1:Z/iVC0xZfWTaFNE6bA3z07T86hd45Xe2eLt6WVy2bbk= +github.com/alecthomas/assert/v2 v2.2.2/go.mod h1:pXcQ2Asjp247dahGEmsZ6ru0UVwnkhktn7S0bBDLxvQ= github.com/alecthomas/go-check-sumtype v0.1.3 h1:M+tqMxB68hcgccRXBMVCPI4UJ+QUfdSx0xdbypKCqA8= github.com/alecthomas/go-check-sumtype v0.1.3/go.mod h1:WyYPfhfkdhyrdaligV6svFopZV8Lqdzn5pyVBaV6jhQ= github.com/alecthomas/repr v0.2.0 h1:HAzS41CIzNW5syS8Mf9UwXhNH1J9aix/BvDRf1Ml2Yk= +github.com/alecthomas/repr v0.2.0/go.mod h1:Fr0507jx4eOXV7AlPV6AVZLYrLIuIeSOWtW57eE/O/4= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= @@ -163,7 +168,9 @@ github.com/alexkohler/prealloc v1.0.0/go.mod h1:VetnK3dIgFBBKmg0YnD9F9x6Icjd+9cv github.com/alingse/asasalint v0.0.11 h1:SFwnQXJ49Kx/1GghOFz1XGqHYKp21Kq1nHad/0WQRnw= github.com/alingse/asasalint v0.0.11/go.mod h1:nCaoMhw7a9kSJObvQyVzNTPBDbNpdocqrSP7t/cW5+I= github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be h1:9AeTilPcZAjCFIImctFaOjnTIavg87rW78vTPkQqLI8= +github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be/go.mod h1:ySMOLuWl6zY27l47sB3qLNK6tF2fkHG55UZxx8oIVo4= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio= +github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef/go.mod h1:WaHUgvxTVq04UNunO+XhnAqY/wQc+bxr74GqbsZ/Jqw= github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 h1:DklsrG3dyBCFEj5IhUbnKptjxatkF07cF2ak3yi77so= github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2/go.mod h1:WaHUgvxTVq04UNunO+XhnAqY/wQc+bxr74GqbsZ/Jqw= @@ -173,79 +180,62 @@ github.com/ashanbrown/makezero v1.1.1 h1:iCQ87C0V0vSyO+M9E/FZYbu65auqH0lnsOkf5Fc github.com/ashanbrown/makezero v1.1.1/go.mod h1:i1bJLCRSCHOcOa9Y6MyF2FTfMZMFdHvxKHxgO5Z1axI= github.com/atc0005/go-teams-notify/v2 v2.8.0 h1:971J5qivrzBbYMDAdmW7v9s7W2u2jiIRVcY+LaIJqww= github.com/atc0005/go-teams-notify/v2 v2.8.0/go.mod h1:SIeE1UfCcVRYMqP5b+r1ZteHyA/2UAjzWF5COnZ8q0w= -github.com/aws/aws-sdk-go v1.47.0 h1:/JUg9V1+xh+qBn8A6ec/l15ETPaMaBqxkjz+gg63dNk= -github.com/aws/aws-sdk-go v1.47.0/go.mod h1:DlEaEbWKZmsITVbqlSVvekPARM1HzeV9PMYg15ymSDA= -github.com/aws/aws-sdk-go-v2 v1.20.0/go.mod h1:uWOr0m0jDsiWw8nnXiqZ+YG6LdvAlGYDLLf2NmHZoy4= -github.com/aws/aws-sdk-go-v2 v1.21.0/go.mod h1:/RfNgGmRxI+iFOB1OeJUyxiU+9s88k3pfHvDagGEp0M= -github.com/aws/aws-sdk-go-v2 v1.21.2 h1:+LXZ0sgo8quN9UOKXXzAWRT3FWd4NxeXWOZom9pE7GA= +github.com/aws/aws-sdk-go v1.48.3 h1:btYjT+opVFxUbRz+qSCjJe07cdX82BHmMX/FXYmoL7g= +github.com/aws/aws-sdk-go v1.48.3/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/aws/aws-sdk-go-v2 v1.21.2/go.mod h1:ErQhvNuEMhJjweavOYhxVkn2RUx7kQXVATHrjKtxIpM= -github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.11/go.mod h1:va22++AdXht4ccO3kH2SHkHHYvZ2G9Utz+CXKmm2CaU= -github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.13 h1:OPLEkmhXf6xFPiz0bLeDArZIDx1NNS4oJyG4nv3Gct0= -github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.13/go.mod h1:gpAbvyDGQFozTEmlTFO8XcQKHzubdq0LzRyJpG6MiXM= -github.com/aws/aws-sdk-go-v2/config v1.18.32/go.mod h1:U3ZF0fQRRA4gnbn9GGvOWLoT2EzzZfAWeKwnVrm1rDc= -github.com/aws/aws-sdk-go-v2/config v1.19.1 h1:oe3vqcGftyk40icfLymhhhNysAwk0NfiwkDi2GTPMXs= -github.com/aws/aws-sdk-go-v2/config v1.19.1/go.mod h1:ZwDUgFnQgsazQTnWfeLWk5GjeqTQTL8lMkoE1UXzxdE= -github.com/aws/aws-sdk-go-v2/credentials v1.13.31/go.mod h1:T4sESjBtY2lNxLgkIASmeP57b5j7hTQqCbqG0tWnxC4= -github.com/aws/aws-sdk-go-v2/credentials v1.13.43 h1:LU8vo40zBlo3R7bAvBVy/ku4nxGEyZe9N8MqAeFTzF8= -github.com/aws/aws-sdk-go-v2/credentials v1.13.43/go.mod h1:zWJBz1Yf1ZtX5NGax9ZdNjhhI4rgjfgsyk6vTY1yfVg= -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.7/go.mod h1:3we0V09SwcJBzNlnyovrR2wWJhWmVdqAsmVs4uronv8= -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.13 h1:PIktER+hwIG286DqXyvVENjgLTAwGgoeriLDD5C+YlQ= -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.13/go.mod h1:f/Ib/qYjhV2/qdsf79H3QP/eRE4AkVyEf6sk7XfZ1tg= -github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.11.76 h1:DJ1kHj0GI9BbX+XhF0kHxlzOVjcncmDUXmCvXdbfdAE= -github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.11.76/go.mod h1:/AZCdswMSgwpB2yMSFfY5H4pVeBLnCuPehdmO/r3xSM= -github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.37/go.mod h1:Pdn4j43v49Kk6+82spO3Tu5gSeQXRsxo56ePPQAvFiA= -github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.41/go.mod h1:CrObHAuPneJBlfEJ5T3szXOUkLEThaGfvnhTf33buas= -github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.43 h1:nFBQlGtkbPzp/NjZLuFxRqmT91rLJkgvsEQs68h962Y= +github.com/aws/aws-sdk-go-v2 v1.23.1 h1:qXaFsOOMA+HsZtX8WoCa+gJnbyW7qyFFBlPqvTSzbaI= +github.com/aws/aws-sdk-go-v2 v1.23.1/go.mod h1:i1XDttT4rnf6vxc9AuskLc6s7XBee8rlLilKlc03uAA= +github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.5.1 h1:ZY3108YtBNq96jNZTICHxN1gSBSbnvIdYwwqnvCV4Mc= +github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.5.1/go.mod h1:t8PYl/6LzdAqsU4/9tz28V/kU+asFePvpOMkdul0gEQ= +github.com/aws/aws-sdk-go-v2/config v1.25.5 h1:UGKm9hpQS2hoK8CEJ1BzAW8NbUpvwDJJ4lyqXSzu8bk= +github.com/aws/aws-sdk-go-v2/config v1.25.5/go.mod h1:Bf4gDvy4ZcFIK0rqDu1wp9wrubNba2DojiPB2rt6nvI= +github.com/aws/aws-sdk-go-v2/credentials v1.16.4 h1:i7UQYYDSJrtc30RSwJwfBKwLFNnBTiICqAJ0pPdum8E= +github.com/aws/aws-sdk-go-v2/credentials v1.16.4/go.mod h1:Kdh/okh+//vQ/AjEt81CjvkTo64+/zIE4OewP7RpfXk= +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.5 h1:KehRNiVzIfAcj6gw98zotVbb/K67taJE0fkfgM6vzqU= +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.5/go.mod h1:VhnExhw6uXy9QzetvpXDolo1/hjhx4u9qukBGkuUwjs= +github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.14.2 h1:3q7vcLhq6JXqTLPpPuDJgw3f+DFqd4p+BWL2DlplRPc= +github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.14.2/go.mod h1:9aqZoo/OeMBK/Nf3wzQzTlM92u7Bip256GHpY0oQbX4= github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.43/go.mod h1:auo+PiyLl0n1l8A0e8RIeR8tOzYPfZZH/JNlrJ8igTQ= -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.31/go.mod h1:fTJDMe8LOFYtqiFFFeHA+SVMAwqLhoq0kcInYoLa9Js= -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.35/go.mod h1:SJC1nEVVva1g3pHAIdCp7QsRIkMmLAgoDquQ9Rr8kYw= -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.37 h1:JRVhO25+r3ar2mKGP7E0LDl8K9/G36gjlqca5iQbaqc= +github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.4 h1:LAm3Ycm9HJfbSCd5I+wqC2S9Ej7FPrgr5CQoOljJZcE= +github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.4/go.mod h1:xEhvbJcyUf/31yfGSQBe01fukXwXJ0gxDp7rLfymWE0= github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.37/go.mod h1:Qe+2KtKml+FEsQF/DHmDV+xjtche/hwoF75EG4UlHW8= -github.com/aws/aws-sdk-go-v2/internal/ini v1.3.38/go.mod h1:1/jLp0OgOaWIetycOmycW+vYTYgTZFPttJQRgsI1PoU= -github.com/aws/aws-sdk-go-v2/internal/ini v1.3.45 h1:hze8YsjSh8Wl1rYa1CJpRmXP21BvOBuc76YhW0HsuQ4= -github.com/aws/aws-sdk-go-v2/internal/ini v1.3.45/go.mod h1:lD5M20o09/LCuQ2mE62Mb/iSdSlCNuj6H5ci7tW7OsE= -github.com/aws/aws-sdk-go-v2/internal/v4a v1.1.0/go.mod h1:EhC/83j8/hL/UB1WmExo3gkElaja/KlmZM/gl1rTfjM= -github.com/aws/aws-sdk-go-v2/internal/v4a v1.1.4 h1:6lJvvkQ9HmbHZ4h/IEwclwv2mrTW8Uq1SOB/kXy0mfw= -github.com/aws/aws-sdk-go-v2/internal/v4a v1.1.4/go.mod h1:1PrKYwxTM+zjpw9Y41KFtoJCQrJ34Z47Y4VgVbfndjo= +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.5.4 h1:4GV0kKZzUxiWxSVpn/9gwR0g21NF1Jsyduzo9rHgC/Q= +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.5.4/go.mod h1:dYvTNAggxDZy6y1AF7YDwXsPuHFy/VNEpEI/2dWK9IU= +github.com/aws/aws-sdk-go-v2/internal/ini v1.7.1 h1:uR9lXYjdPX0xY+NhvaJ4dD8rpSRz5VY81ccIIoNG+lw= +github.com/aws/aws-sdk-go-v2/internal/ini v1.7.1/go.mod h1:6fQQgfuGmw8Al/3M2IgIllycxV7ZW7WCdVSqfBeUiCY= +github.com/aws/aws-sdk-go-v2/internal/v4a v1.2.4 h1:40Q4X5ebZruRtknEZH/bg91sT5pR853F7/1X9QRbI54= +github.com/aws/aws-sdk-go-v2/internal/v4a v1.2.4/go.mod h1:u77N7eEECzUv7F0xl2gcfK/vzc8wcjWobpy+DcrLJ5E= github.com/aws/aws-sdk-go-v2/service/ecr v1.20.2 h1:y6LX9GUoEA3mO0qpFl1ZQHj1rFyPWVphlzebiSt2tKE= github.com/aws/aws-sdk-go-v2/service/ecr v1.20.2/go.mod h1:Q0LcmaN/Qr8+4aSBrdrXXePqoX0eOuYpJLbYpilmWnA= github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.18.2 h1:PpbXaecV3sLAS6rjQiaKw4/jyq3Z8gNzmoJupHAoBp0= github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.18.2/go.mod h1:fUHpGXr4DrXkEDpGAjClPsviWf+Bszeb0daKE0blxv8= -github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.9.12/go.mod h1:fUTHpOXqRQpXvEpDPSa3zxCc2fnpW6YnBoba+eQr+Bg= -github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.9.14 h1:m0QTSI6pZYJTk5WSKx3fm5cNW/DCicVzULBgU/6IyD0= -github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.9.14/go.mod h1:dDilntgHy9WnHXsh7dDtUPgHKEfTJIBUTHM8OWm0f/0= -github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.1.32/go.mod h1:QmMEM7es84EUkbYWcpnkx8i5EW2uERPfrTFeOch128Y= -github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.1.36 h1:eev2yZX7esGRjqRbnVk1UxMLw4CyVZDpZXRCcy75oQk= -github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.1.36/go.mod h1:lGnOkH9NJATw0XEPcAknFBj3zzNTEGRHtSw+CwC1YTg= -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.31/go.mod h1:3+lloe3sZuBQw1aBc5MyndvodzQlyqCZ7x1QPDHaWP4= -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.35/go.mod h1:QGF2Rs33W5MaN9gYdEQOBBFPLwTZkEhRwI33f7KIG0o= -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.37 h1:WWZA/I2K4ptBS1kg0kV1JbBtG/umed0vwHRrmcr9z7k= -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.37/go.mod h1:vBmDnwWXWxNPFRMmG2m/3MKOe+xEcMDo1tanpaWCcck= -github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.15.0/go.mod h1:FWNzS4+zcWAP05IF7TDYTY1ysZAzIvogxWaDT9p8fsA= -github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.15.4 h1:v0jkRigbSD6uOdwcaUQmgEwG1BkPfAPDqaeNt/29ghg= -github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.15.4/go.mod h1:LhTyt8J04LL+9cIt7pYJ5lbS/U98ZmXovLOR/4LUsk8= -github.com/aws/aws-sdk-go-v2/service/kms v1.24.7 h1:uRGw0UKo5hc7M2T7uGsK/Yg2qwecq/dnVjQbbq9RCzY= -github.com/aws/aws-sdk-go-v2/service/kms v1.24.7/go.mod h1:z3O9CXfVrKAV3c9fMWOUUv2C6N2ggXCDHeXpOB6lAEk= -github.com/aws/aws-sdk-go-v2/service/s3 v1.38.1/go.mod h1:6SOWLiobcZZshbmECRTADIRYliPL0etqFSigauQEeT0= -github.com/aws/aws-sdk-go-v2/service/s3 v1.40.0 h1:wl5dxN1NONhTDQD9uaEvNsDRX29cBmGED/nl0jkWlt4= -github.com/aws/aws-sdk-go-v2/service/s3 v1.40.0/go.mod h1:rDGMZA7f4pbmTtPOk5v5UM2lmX6UAbRnMDJeDvnH7AM= -github.com/aws/aws-sdk-go-v2/service/sso v1.13.1/go.mod h1:TC9BubuFMVScIU+TLKamO6VZiYTkYoEHqlSQwAe2omw= -github.com/aws/aws-sdk-go-v2/service/sso v1.15.2 h1:JuPGc7IkOP4AaqcZSIcyqLpFSqBWK32rM9+a1g6u73k= -github.com/aws/aws-sdk-go-v2/service/sso v1.15.2/go.mod h1:gsL4keucRCgW+xA85ALBpRFfdSLH4kHOVSnLMSuBECo= -github.com/aws/aws-sdk-go-v2/service/ssooidc v1.15.1/go.mod h1:XO/VcyoQ8nKyKfFW/3DMsRQXsfh/052tHTWmg3xBXRg= -github.com/aws/aws-sdk-go-v2/service/ssooidc v1.17.3 h1:HFiiRkf1SdaAmV3/BHOFZ9DjFynPHj8G/UIO1lQS+fk= -github.com/aws/aws-sdk-go-v2/service/ssooidc v1.17.3/go.mod h1:a7bHA82fyUXOm+ZSWKU6PIoBxrjSprdLoM8xPYvzYVg= -github.com/aws/aws-sdk-go-v2/service/sts v1.21.1/go.mod h1:G8SbvL0rFk4WOJroU8tKBczhsbhj2p/YY7qeJezJ3CI= -github.com/aws/aws-sdk-go-v2/service/sts v1.23.2 h1:0BkLfgeDjfZnZ+MhB3ONb01u9pwFYTCZVhlsSSBvlbU= -github.com/aws/aws-sdk-go-v2/service/sts v1.23.2/go.mod h1:Eows6e1uQEsc4ZaHANmsPRzAKcVDrcmjjWiih2+HUUQ= -github.com/aws/smithy-go v1.14.0/go.mod h1:Tg+OJXh4MB2R/uN61Ko2f6hTZwB/ZYGOtib8J3gBHzA= -github.com/aws/smithy-go v1.14.2/go.mod h1:Tg+OJXh4MB2R/uN61Ko2f6hTZwB/ZYGOtib8J3gBHzA= -github.com/aws/smithy-go v1.15.0 h1:PS/durmlzvAFpQHDs4wi4sNNP9ExsqZh6IlfdHXgKK8= +github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.10.1 h1:rpkF4n0CyFcrJUG/rNNohoTmhtWlFTRI4BsZOh9PvLs= +github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.10.1/go.mod h1:l9ymW25HOqymeU2m1gbUQ3rUIsTwKs8gYHXkqDQUhiI= +github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.2.4 h1:6DRKQc+9cChgzL5gplRGusI5dBGeiEod4m/pmGbcX48= +github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.2.4/go.mod h1:s8ORvrW4g4v7IvYKIAoBg17w3GQ+XuwXDXYrQ5SkzU0= +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.10.4 h1:rdovz3rEu0vZKbzoMYPTehp0E8veoE9AyfzqCr5Eeao= +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.10.4/go.mod h1:aYCGNjyUCUelhofxlZyj63srdxWUSsBSGg5l6MCuXuE= +github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.16.4 h1:o3DcfCxGDIT20pTbVKVhp3vWXOj/VvgazNJvumWeYW0= +github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.16.4/go.mod h1:Uy0KVOxuTK2ne+/PKQ+VvEeWmjMMksE17k/2RK/r5oM= +github.com/aws/aws-sdk-go-v2/service/kms v1.26.3 h1:li5dFiK1tkAFXvOC9QPWAVWqTu8ZxpIR0KzKmof6TIE= +github.com/aws/aws-sdk-go-v2/service/kms v1.26.3/go.mod h1:N3++/sLV97B8Zliz7KRqNcojOX7iMBZWKiuit5FKtH0= +github.com/aws/aws-sdk-go-v2/service/s3 v1.44.0 h1:FJTWR2nP1ddLIbk4n7Glw8wGbeWGHaViUwADPzE/EBo= +github.com/aws/aws-sdk-go-v2/service/s3 v1.44.0/go.mod h1:dqJ5JBL0clzgHriH35Amx3LRFY6wNIPUX7QO/BerSBo= +github.com/aws/aws-sdk-go-v2/service/sso v1.17.3 h1:CdsSOGlFF3Pn+koXOIpTtvX7st0IuGsZ8kJqcWMlX54= +github.com/aws/aws-sdk-go-v2/service/sso v1.17.3/go.mod h1:oA6VjNsLll2eVuUoF2D+CMyORgNzPEW/3PyUdq6WQjI= +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.20.1 h1:cbRqFTVnJV+KRpwFl76GJdIZJKKCdTPnjUZ7uWh3pIU= +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.20.1/go.mod h1:hHL974p5auvXlZPIjJTblXJpbkfK4klBczlsEaMCGVY= +github.com/aws/aws-sdk-go-v2/service/sts v1.25.4 h1:yEvZ4neOQ/KpUqyR+X0ycUTW/kVRNR4nDZ38wStHGAA= +github.com/aws/aws-sdk-go-v2/service/sts v1.25.4/go.mod h1:feTnm2Tk/pJxdX+eooEsxvlvTWBvDm6CasRZ+JOs2IY= github.com/aws/smithy-go v1.15.0/go.mod h1:Tg+OJXh4MB2R/uN61Ko2f6hTZwB/ZYGOtib8J3gBHzA= +github.com/aws/smithy-go v1.17.0 h1:wWJD7LX6PBV6etBUwO0zElG0nWN9rUhp0WdYeHSHAaI= +github.com/aws/smithy-go v1.17.0/go.mod h1:NukqUGpCZIILqqiV0NIjeFh24kd/FAa4beRb6nbIUPE= github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.0.0-20231024185945-8841054dbdb8 h1:SoFYaT9UyGkR0+nogNyD/Lj+bsixB+SNuAS4ABlEs6M= github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.0.0-20231024185945-8841054dbdb8/go.mod h1:2JF49jcDOrLStIXN/j/K1EKRq8a8R2qRnlZA6/o/c7c= github.com/aymanbagabas/go-osc52/v2 v2.0.1 h1:HwpRHbFMcZLEVr42D4p7XBqjyuxQH5SMiErDT4WkJ2k= github.com/aymanbagabas/go-osc52/v2 v2.0.1/go.mod h1:uYgXzlJ7ZpABp8OJ+exZzJJhRNQ2ASbcXHWsFqH8hp8= +github.com/bahlo/generic-list-go v0.2.0 h1:5sz/EEAK+ls5wF+NeqDpk5+iNdMDXrh3z3nPnH1Wvgk= +github.com/bahlo/generic-list-go v0.2.0/go.mod h1:2KvAjgMlE5NNynlg/5iLrrCCZ2+5xWbdbCW3pNTGyYg= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= @@ -265,6 +255,8 @@ github.com/breml/bidichk v0.2.7 h1:dAkKQPLl/Qrk7hnP6P+E0xOodrq8Us7+U0o4UBOAlQY= github.com/breml/bidichk v0.2.7/go.mod h1:YodjipAGI9fGcYM7II6wFvGhdMYsC5pHDlGzqvEW3tQ= github.com/breml/errchkjson v0.3.6 h1:VLhVkqSBH96AvXEyclMR37rZslRrY2kcyq+31HCsVrA= github.com/breml/errchkjson v0.3.6/go.mod h1:jhSDoFheAF2RSDOlCfhHO9KqhZgAYLyvHe7bRCX8f/U= +github.com/buger/jsonparser v1.1.1 h1:2PnMjfWD7wBILjqQbt530v576A/cAbQvEW9gGIpYMUs= +github.com/buger/jsonparser v1.1.1/go.mod h1:6RYKKt7H4d4+iWqouImQ9R2FZql3VbhNgx27UK13J/0= github.com/butuzov/ireturn v0.2.2 h1:jWI36dxXwVrI+RnXDwux2IZOewpmfv930OuIRfaBUJ0= github.com/butuzov/ireturn v0.2.2/go.mod h1:RfGHUvvAuFFxoHKf4Z8Yxuh6OjlCw1KvR2zM1NFHeBk= github.com/butuzov/mirror v1.1.0 h1:ZqX54gBVMXu78QLoiqdwpl2mgmoOJTk7s4p4o+0avZI= @@ -277,13 +269,13 @@ github.com/caarlos0/env/v9 v9.0.0/go.mod h1:ye5mlCVMYh6tZ+vCgrs/B95sj88cg5Tlnc0X github.com/caarlos0/go-reddit/v3 v3.0.1 h1:w8ugvsrHhaE/m4ez0BO/sTBOBWI9WZTjG7VTecHnql4= github.com/caarlos0/go-reddit/v3 v3.0.1/go.mod h1:QlwgmG5SAqxMeQvg/A2dD1x9cIZCO56BMnMdjXLoisI= github.com/caarlos0/go-rpmutils v0.2.1-0.20211112020245-2cd62ff89b11 h1:IRrDwVlWQr6kS1U8/EtyA1+EHcc4yl8pndcqXWrEamg= +github.com/caarlos0/go-rpmutils v0.2.1-0.20211112020245-2cd62ff89b11/go.mod h1:je2KZ+LxaCNvCoKg32jtOIULcFogJKcL1ZWUaIBjKj0= github.com/caarlos0/go-shellwords v1.0.12 h1:HWrUnu6lGbWfrDcFiHcZiwOLzHWjjrPVehULaTFgPp8= github.com/caarlos0/go-shellwords v1.0.12/go.mod h1:bYeeX1GrTLPl5cAMYEzdm272qdsQAZiaHgeF0KTk1Gw= github.com/caarlos0/go-version v0.1.1 h1:1bikKHkGGVIIxqCmufhSSs3hpBScgHGacrvsi8FuIfc= github.com/caarlos0/go-version v0.1.1/go.mod h1:Ze5Qx4TsBBi5FyrSKVg1Ibc44KGV/llAaKGp86oTwZ0= -github.com/caarlos0/log v0.4.2 h1:Zi5DNvCJLU0zJAI7B3sYf2zRfHW3xS8ahKQg1eh5/LQ= -github.com/caarlos0/log v0.4.2/go.mod h1:xwKkgWnQMD39Cb/HgTWrhsG3l3MTTGwf2UZqbki2eqM= -github.com/caarlos0/sshmarshal v0.1.0 h1:zTCZrDORFfWh526Tsb7vCm3+Yg/SfW/Ub8aQDeosk0I= +github.com/caarlos0/log v0.4.4 h1:LnvgBz/ofsJ00AupP/cEfksJSZglb1L69g4Obk/sdAc= +github.com/caarlos0/log v0.4.4/go.mod h1:+AmCI9Liv5LKXmzFmFI1htuHdTTj/0R3KuoP9DMY7Mo= github.com/caarlos0/testfs v0.4.4 h1:3PHvzHi5Lt+g332CiShwS8ogTgS3HjrmzZxCm6JCDr8= github.com/caarlos0/testfs v0.4.4/go.mod h1:bRN55zgG4XCUVVHZCeU+/Tz1Q6AxEJOEJTliBy+1DMk= github.com/catenacyber/perfsprint v0.2.0 h1:azOocHLscPjqXVJ7Mf14Zjlkn4uNua0+Hcg1wTR6vUo= @@ -301,9 +293,12 @@ github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/charithe/durationcheck v0.0.10 h1:wgw73BiocdBDQPik+zcEoBG/ob8uyBHf2iyoHGPf5w4= github.com/charithe/durationcheck v0.0.10/go.mod h1:bCWXb7gYRysD1CU3C+u4ceO49LoGOY1C1L6uouGNreQ= -github.com/charmbracelet/keygen v0.4.3 h1:ywOZRwkDlpmkawl0BgLTxaYWDSqp6Y4nfVVmgyyO1Mg= -github.com/charmbracelet/lipgloss v0.7.1 h1:17WMwi7N1b1rVWOjMT+rCh7sQkvDU75B2hbZpc5Kc1E= -github.com/charmbracelet/lipgloss v0.7.1/go.mod h1:yG0k3giv8Qj8edTCbbg6AlQ5e8KNWpFujkNawKNhE2c= +github.com/charmbracelet/keygen v0.5.0 h1:XY0fsoYiCSM9axkrU+2ziE6u6YjJulo/b9Dghnw6MZc= +github.com/charmbracelet/keygen v0.5.0/go.mod h1:DfvCgLHxZ9rJxdK0DGw3C/LkV4SgdGbnliHcObV3L+8= +github.com/charmbracelet/lipgloss v0.9.1 h1:PNyd3jvaJbg4jRHKWXnCj1akQm4rh8dbEzN1p/u1KWg= +github.com/charmbracelet/lipgloss v0.9.1/go.mod h1:1mPmG4cxScwUQALAAnacHaigiiHB9Pmr+v1VEawJl6I= +github.com/charmbracelet/x/exp/ordered v0.0.0-20231010190216-1cb11efc897d h1:+o+e/8hf7cG0SbAzEAm/usJ8qoZPgFXhudLjop+TM0g= +github.com/charmbracelet/x/exp/ordered v0.0.0-20231010190216-1cb11efc897d/go.mod h1:aoG4bThKYIOnyB55r202eHqo6TkN7ZXV+cu4Do3eoBQ= github.com/chavacava/garif v0.1.0 h1:2JHa3hbYf5D9dsgseMKAmc/MZ109otzgNFk5s87H9Pc= github.com/chavacava/garif v0.1.0/go.mod h1:XMyYCkEL58DF0oyW4qDjjnPWONs2HBqYKI+UIPD+Gww= github.com/chrismellard/docker-credential-acr-env v0.0.0-20230304212654-82a0ddb27589 h1:krfRl01rzPzxSxyLyrChD+U+MzsBXbm0OwYYB67uF+4= @@ -313,12 +308,13 @@ github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5P github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cloudflare/circl v1.3.3/go.mod h1:5XYMA4rFBvNIrhs50XuiBJ15vF2pZn4nnUKZrLbUZFA= -github.com/cloudflare/circl v1.3.5 h1:g+wWynZqVALYAlpSQFAa7TscDnUK8mKYtrxMpw6AUKo= -github.com/cloudflare/circl v1.3.5/go.mod h1:5XYMA4rFBvNIrhs50XuiBJ15vF2pZn4nnUKZrLbUZFA= +github.com/cloudflare/circl v1.3.7 h1:qlCDlTPz2n9fu58M0Nh1J/JzcFpfgkFHHX3O35r5vcU= +github.com/cloudflare/circl v1.3.7/go.mod h1:sRTcRWXGLrKw6yIGJ+l7amYJFfAXbZG0kBSc8r4zxgA= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= github.com/containerd/continuity v0.3.0 h1:nisirsYROK15TAMVukJOUyGJjz4BNQJBVsNvAXZJ/eg= +github.com/containerd/continuity v0.3.0/go.mod h1:wJEAIwKOm/pBZuBd0JmeTvnLquTB1Ag8espWhkykbPM= github.com/containerd/stargz-snapshotter/estargz v0.14.3 h1:OqlDCK3ZVUO6C3B/5FSkDwbkEETK84kQgEeFwDC+62k= github.com/containerd/stargz-snapshotter/estargz v0.14.3/go.mod h1:KY//uOCIkSuNAHhJogcZtrNHdKrA99/FCCRjE3HD36o= github.com/cpuguy83/go-md2man/v2 v2.0.1/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= @@ -327,12 +323,16 @@ github.com/cpuguy83/go-md2man/v2 v2.0.3/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46t github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/curioswitch/go-reassign v0.2.0 h1:G9UZyOcpk/d7Gd6mqYgd8XYWFMw/znxwGDUstnC9DIo= github.com/curioswitch/go-reassign v0.2.0/go.mod h1:x6OpXuWvgfQaMGks2BZybTngWjT84hqJfKoO8Tt/Roc= +github.com/cyphar/filepath-securejoin v0.2.4 h1:Ugdm7cg7i6ZK6x3xDF1oEu1nfkyfH53EtKeQYTC3kyg= +github.com/cyphar/filepath-securejoin v0.2.4/go.mod h1:aPGpWjXOXUn2NCNjFvBE6aRxGGx79pTxQpKOJNYHHl4= github.com/daixiang0/gci v0.11.2 h1:Oji+oPsp3bQ6bNNgX30NBAVT18P4uBH4sRZnlOlTj7Y= github.com/daixiang0/gci v0.11.2/go.mod h1:xtHP9N7AHdNvtRNfcx9gwTDfw7FRJx4bZUsiEfiNNAI= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davidmz/go-pageant v1.0.2 h1:bPblRCh5jGU+Uptpz6LgMZGD5hJoOt7otgT454WvHn0= +github.com/davidmz/go-pageant v1.0.2/go.mod h1:P2EDDnMqIwG5Rrp05dTRITj9z2zpGcD9efWSkTNKLIE= github.com/denis-tingaikin/go-header v0.4.3 h1:tEaZKAlqql6SKCY++utLmkPLd6K8IBM20Ha7UVm+mtU= github.com/denis-tingaikin/go-header v0.4.3/go.mod h1:0wOCWuN71D5qIgE2nz9KrKmuYBAC2Mra5RassOIQ2/c= github.com/dghubble/go-twitter v0.0.0-20220716041154-837915ec2f79 h1:Z9wtGrNgCDhG7u+hVTlcBl9jeNdSfqzvg3piJNR4VX0= @@ -343,18 +343,18 @@ github.com/dghubble/sling v1.4.0 h1:/n8MRosVTthvMbwlNZgLx579OGVjUOy3GNEv5BIqAWY= github.com/dghubble/sling v1.4.0/go.mod h1:0r40aNsU9EdDUVBNhfCstAtFgutjgJGYbO1oNzkMoM8= github.com/dimchansky/utfbom v1.1.1 h1:vV6w1AhK4VMnhBno/TPVCoK9U/LP0PkLCS9tbxHdi/U= github.com/dimchansky/utfbom v1.1.1/go.mod h1:SxdoEBH5qIqFocHMyGOXVAybYJdr71b1Q/j0mACtrfE= -github.com/disgoorg/disgo v0.16.8 h1:tvUeX+3Iu8U6koDc8RAgcQadRciWJwsI95Y7edHqq2g= -github.com/disgoorg/disgo v0.16.8/go.mod h1:5fsaUpfu6Yv0p+PfmsAeQkV395KQskVu/d1bdq8vsNI= +github.com/disgoorg/disgo v0.17.0 h1:/LcgXgPDhzHt3GkQ4cpjmIJBim1/VYfS31VhGYif3Ms= +github.com/disgoorg/disgo v0.17.0/go.mod h1:AE2J/8oLR2PtYfqcARsk1mgBxQ5z3Z1OD6Lc2SA0gak= github.com/disgoorg/json v1.1.0 h1:7xigHvomlVA9PQw9bMGO02PHGJJPqvX5AnwlYg/Tnys= github.com/disgoorg/json v1.1.0/go.mod h1:BHDwdde0rpQFDVsRLKhma6Y7fTbQKub/zdGO5O9NqqA= -github.com/disgoorg/log v1.2.1 h1:kZYAWkUBcGy4LbZcgYtgYu49xNVLy+xG5Uq3yz5VVQs= -github.com/disgoorg/log v1.2.1/go.mod h1:hhQWYTFTnIGzAuFPZyXJEi11IBm9wq+/TVZt/FEwX0o= github.com/disgoorg/snowflake/v2 v2.0.1 h1:CuUxGLwggUxEswZOmZ+mZ5i0xSumQdXW9tXW7uGqe+0= github.com/disgoorg/snowflake/v2 v2.0.1/go.mod h1:SPU9c2CNn5DSyb86QcKtdZgix9osEtKrHLW4rMhfLCs= github.com/distribution/distribution/v3 v3.0.0-20221021092657-c47a966fded8 h1:zuxvqNfQKyGNH3a1yFh1ofD4Y7ycgdwQhHX6QRH+Cwo= +github.com/distribution/distribution/v3 v3.0.0-20221021092657-c47a966fded8/go.mod h1:6rIc5NMSjXjjnwzWWy3HAm9gDBu+X7aCzL8VrHIKgxM= github.com/distribution/reference v0.5.0 h1:/FUIFXtfc/x2gpa5/VGfiGLuOIdYa1t65IKK2OFGvA0= github.com/distribution/reference v0.5.0/go.mod h1:BbU0aIcezP1/5jX/8MP0YiH4SdvB5Y4f/wlDRiLyi3E= github.com/dnaeon/go-vcr v1.2.0 h1:zHCHvJYTMh1N7xnV7zf1m1GPBF9Ad0Jk/whtQ1663qI= +github.com/dnaeon/go-vcr v1.2.0/go.mod h1:R4UdLID7HZT3taECzJs4YgbbH6PIGXB6W/sc5OLb6RQ= github.com/docker/cli v24.0.7+incompatible h1:wa/nIwYFW7BVTGa7SWPVyyXU9lgORqUb1xfI36MSkFg= github.com/docker/cli v24.0.7+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8= github.com/docker/distribution v2.8.3+incompatible h1:AtKxIZ36LoNK51+Z6RpzLpddBirtxJnzDrHLEKxTAYk= @@ -366,11 +366,13 @@ github.com/docker/docker-credential-helpers v0.8.0/go.mod h1:UGFXcuoQ5TxPiB54nHO github.com/docker/go-connections v0.4.0 h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ= github.com/docker/go-connections v0.4.0/go.mod h1:Gbd7IOopHjR8Iph03tsViu4nIes5XhDvyHbTtUxmeec= github.com/docker/go-metrics v0.0.1 h1:AgB/0SvBxihN0X8OR4SjsblXkbMvalQ8cjmtKQ2rQV8= +github.com/docker/go-metrics v0.0.1/go.mod h1:cG1hvH2utMXtqgqqYE9plW6lDxS3/5ayHzueweSI3Vw= github.com/docker/go-units v0.5.0 h1:69rxXcBk27SvSaaxTtLh/8llcHD8vYHT7WSdRZ/jvr4= github.com/docker/go-units v0.5.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= github.com/dprotaso/go-yit v0.0.0-20220510233725-9ba8df137936 h1:PRxIJD8XjimM5aTknUK9w6DHLDox2r2M3DI4i2pnd3w= github.com/dprotaso/go-yit v0.0.0-20220510233725-9ba8df137936/go.mod h1:ttYvX5qlB+mlV1okblJqcSMtR4c52UKxDiX9GRBS8+Q= -github.com/elazarl/goproxy v0.0.0-20221015165544-a0805db90819 h1:RIB4cRk+lBqKK3Oy0r2gRX4ui7tuhiZq2SuTtTCi0/0= +github.com/elazarl/goproxy v0.0.0-20230808193330-2592e75ae04a h1:mATvB/9r/3gvcejNsXKSkQ6lcIaNec2nyfOdlTBR2lU= +github.com/elazarl/goproxy v0.0.0-20230808193330-2592e75ae04a/go.mod h1:Ro8st/ElPeALwNFlcTpWmkr6IoMFfkjXAvTHpevnDsM= github.com/elliotchance/orderedmap/v2 v2.2.0 h1:7/2iwO98kYT4XkOjA9mBEIwvi4KpGB4cyHeOFOnj4Vk= github.com/elliotchance/orderedmap/v2 v2.2.0/go.mod h1:85lZyVbpGaGvHvnKa7Qhx7zncAdBIBq6u56Hb1PRU5Q= github.com/emirpasic/gods v1.18.1 h1:FXtiHYKDGKCW2KzwZKx0iC0PQmdlorYgdFG9jPXJ1Bc= @@ -394,6 +396,7 @@ github.com/fatih/structtag v1.2.0/go.mod h1:mBJUNpUnHmRKrKlQQlmCrh5PuhftFbNv8Ys4 github.com/firefart/nonamedreturns v1.0.4 h1:abzI1p7mAEPYuR4A+VLKn4eNDOycjYo2phmY9sfv40Y= github.com/firefart/nonamedreturns v1.0.4/go.mod h1:TDhe/tjI1BXo48CmYbUduTV7BdIga8MAO/xbKdcVsGI= github.com/frankban/quicktest v1.14.4 h1:g2rn0vABPOOXmZUj+vbmUp0lPoXEMuhTpIluN0XL9UY= +github.com/frankban/quicktest v1.14.4/go.mod h1:4ptaffx2x8+WTWXmUCuVU6aPUX1/Mz7zb5vbUoiM6w0= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= github.com/fsnotify/fsnotify v1.7.0 h1:8JEhPFa5W2WU7YfeZzPNqzMP6Lwt7L2715Ggo0nosvA= @@ -403,15 +406,19 @@ github.com/fzipp/gocyclo v0.6.0/go.mod h1:rXPyn8fnlpa0R2csP/31uerbiVBugk5whMdlya github.com/ghostiam/protogetter v0.2.3 h1:qdv2pzo3BpLqezwqfGDLZ+nHEYmc5bUpIdsMbBVwMjw= github.com/ghostiam/protogetter v0.2.3/go.mod h1:KmNLOsy1v04hKbvZs8EfGI1fk39AgTdRDxWNYPfXVc4= github.com/gliderlabs/ssh v0.3.5 h1:OcaySEmAQJgyYcArR+gGGTHCyE7nvhEMTlYY+Dp8CpY= +github.com/gliderlabs/ssh v0.3.5/go.mod h1:8XB4KraRrX39qHhT6yxPsHedjA08I/uBVwj4xC+/+z4= github.com/go-critic/go-critic v0.9.0 h1:Pmys9qvU3pSML/3GEQ2Xd9RZ/ip+aXHKILuxczKGV/U= github.com/go-critic/go-critic v0.9.0/go.mod h1:5P8tdXL7m/6qnyG6oRAlYLORvoXH0WDypYgAEmagT40= +github.com/go-fed/httpsig v1.1.0 h1:9M+hb0jkEICD8/cAiNqEB66R87tTINszBRTjwjQzWcI= +github.com/go-fed/httpsig v1.1.0/go.mod h1:RCMrTZvN1bJYtofsG4rd5NaO5obxQ5xBkdiS7xsT7bM= github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 h1:+zs/tPmkDkHx3U66DAb0lQFJrpS6731Oaa12ikc+DiI= github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376/go.mod h1:an3vInlBmSxCcxctByoQdvwPiA7DTK7jaaFDBTtu0ic= -github.com/go-git/go-billy/v5 v5.4.1 h1:Uwp5tDRkPr+l/TnbHOQzp+tmJfLceOlbVucgpTz8ix4= -github.com/go-git/go-billy/v5 v5.4.1/go.mod h1:vjbugF6Fz7JIflbVpl1hJsGjSHNltrSw45YK/ukIvQg= -github.com/go-git/go-git-fixtures/v4 v4.3.2-0.20230305113008-0c11038e723f h1:Pz0DHeFij3XFhoBRGUDPzSJ+w2UcK5/0JvF8DRI58r8= -github.com/go-git/go-git/v5 v5.7.0 h1:t9AudWVLmqzlo+4bqdf7GY+46SUuRsx59SboFxkq2aE= -github.com/go-git/go-git/v5 v5.7.0/go.mod h1:coJHKEOk5kUClpsNlXrUvPrDxY3w3gjHvhcZd8Fodw8= +github.com/go-git/go-billy/v5 v5.5.0 h1:yEY4yhzCDuMGSv83oGxiBotRzhwhNr8VZyphhiu+mTU= +github.com/go-git/go-billy/v5 v5.5.0/go.mod h1:hmexnoNsr2SJU1Ju67OaNz5ASJY3+sHgFRpCtpDCKow= +github.com/go-git/go-git-fixtures/v4 v4.3.2-0.20231010084843-55a94097c399 h1:eMje31YglSBqCdIqdhKBW8lokaMrL3uTkpGYlE2OOT4= +github.com/go-git/go-git-fixtures/v4 v4.3.2-0.20231010084843-55a94097c399/go.mod h1:1OCfN199q1Jm3HZlxleg+Dw/mwps2Wbk9frAWm+4FII= +github.com/go-git/go-git/v5 v5.11.0 h1:XIZc1p+8YzypNr34itUfSvYJcv+eYdTnTvOZ2vD3cA4= +github.com/go-git/go-git/v5 v5.11.0/go.mod h1:6GFcX2P3NM7FPBfpePbpLd21XxsgdAt+lKqXmCUiUCY= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= @@ -471,6 +478,7 @@ github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible h1:2cauKuaEL github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible/go.mod h1:qf9acutJ8cwBUhm1bqgz6Bei9/C/c93FPDljKWwsOgM= github.com/go-test/deep v1.0.4/go.mod h1:wGDj63lr65AM2AQyKZd/NYHGb0R+1RLqB8NKt3aSFNA= github.com/go-test/deep v1.1.0 h1:WOcxcdHcvdgThNXjw0t76K42FXTU7HpNQWHpA2HHNlg= +github.com/go-test/deep v1.1.0/go.mod h1:5C2ZWiW0ErCdrYzpqxLbTX7MG14M9iiw8DgHncVwcsE= github.com/go-toolsmith/astcast v1.1.0 h1:+JN9xZV1A+Re+95pgnMgDboWNVnIMMQXwfBwLRPgSC8= github.com/go-toolsmith/astcast v1.1.0/go.mod h1:qdcuFWeGGS2xX5bLM/c3U9lewg7+Zu4mr+xPwZIB4ZU= github.com/go-toolsmith/astcopy v1.1.0 h1:YGwBN0WM+ekI/6SS6+52zLDEf8Yvp3n2seZITCUBt5s= @@ -483,6 +491,7 @@ github.com/go-toolsmith/astfmt v1.1.0/go.mod h1:OrcLlRwu0CuiIBp/8b5PYF9ktGVZUjlN github.com/go-toolsmith/astp v1.1.0 h1:dXPuCl6u2llURjdPLLDxJeZInAeZ0/eZwFJmqZMnpQA= github.com/go-toolsmith/astp v1.1.0/go.mod h1:0T1xFGz9hicKs8Z5MfAqSUitoUYS30pDMsRVIDHs8CA= github.com/go-toolsmith/pkgload v1.2.2 h1:0CtmHq/02QhxcF7E9N5LIFcYFsMR5rdovfqTtRKkgIk= +github.com/go-toolsmith/pkgload v1.2.2/go.mod h1:R2hxLNRKuAsiXCo2i5J6ZQPhnPMOVtU+f0arbFPWCus= github.com/go-toolsmith/strparse v1.0.0/go.mod h1:YI2nUKP9YGZnL/L1/DLFBfixrcjslWct4wyljWhSRy8= github.com/go-toolsmith/strparse v1.1.0 h1:GAioeZUK9TGxnLS+qfdqNbA4z0SSm5zVNtCQiyP2Bvw= github.com/go-toolsmith/strparse v1.1.0/go.mod h1:7ksGy58fsaQkGQlY8WVoBFNyEPMGuJin1rfoPS4lBSQ= @@ -525,8 +534,8 @@ github.com/golang-jwt/jwt/v4 v4.0.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzw github.com/golang-jwt/jwt/v4 v4.2.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg= github.com/golang-jwt/jwt/v4 v4.5.0 h1:7cYmW1XlMY7h7ii7UhUyChSgS5wUJEnm9uZVTGqOWzg= github.com/golang-jwt/jwt/v4 v4.5.0/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0= -github.com/golang-jwt/jwt/v5 v5.0.0 h1:1n1XNM9hk7O9mnQoNBGolZvzebBQ7p93ULHRc28XJUE= -github.com/golang-jwt/jwt/v5 v5.0.0/go.mod h1:pqrtFR0X4osieyHYxtmOUWsAWrfe1Q5UVIyoH402zdk= +github.com/golang-jwt/jwt/v5 v5.1.0 h1:UGKbA/IPjtS6zLcdB7i5TyACMgSbOTiR8qzXgw8HWQU= +github.com/golang-jwt/jwt/v5 v5.1.0/go.mod h1:pqrtFR0X4osieyHYxtmOUWsAWrfe1Q5UVIyoH402zdk= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= @@ -602,14 +611,16 @@ github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeN github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= -github.com/google/go-containerregistry v0.16.1 h1:rUEt426sR6nyrL3gt+18ibRcvYpKYdpsa5ZW7MA08dQ= -github.com/google/go-containerregistry v0.16.1/go.mod h1:u0qB2l7mvtWVR5kNcbFIhFY1hLbf8eeGapA+vbFDCtQ= -github.com/google/go-github/v53 v53.2.0 h1:wvz3FyF53v4BK+AsnvCmeNhf8AkTaeh2SoYu/XUvTtI= -github.com/google/go-github/v53 v53.2.0/go.mod h1:XhFRObz+m/l+UCm9b7KSIC3lT3NWSXGt7mOsAWEloao= +github.com/google/go-containerregistry v0.17.0 h1:5p+zYs/R4VGHkhyvgWurWrpJ2hW4Vv9fQI+GzdcwXLk= +github.com/google/go-containerregistry v0.17.0/go.mod h1:u0qB2l7mvtWVR5kNcbFIhFY1hLbf8eeGapA+vbFDCtQ= +github.com/google/go-github/v57 v57.0.0 h1:L+Y3UPTY8ALM8x+TV0lg+IEBI+upibemtBD8Q9u7zHs= +github.com/google/go-github/v57 v57.0.0/go.mod h1:s0omdnye0hvK/ecLvpsGfJMiRt85PimQh4oygmLIxHw= github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8= github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU= github.com/google/go-replayers/grpcreplay v1.1.0 h1:S5+I3zYyZ+GQz68OfbURDdt/+cSMqCK1wrvNx7WBzTE= +github.com/google/go-replayers/grpcreplay v1.1.0/go.mod h1:qzAvJ8/wi57zq7gWqaE6AwLM6miiXUQwP1S+I9icmhk= github.com/google/go-replayers/httpreplay v1.2.0 h1:VM1wEyyjaoU53BwrOnaf9VhAyQQEEioJvFYxYcLRKzk= +github.com/google/go-replayers/httpreplay v1.2.0/go.mod h1:WahEFFZZ7a1P4VM1qEeHy+tME4bwyqPcwWbNlUI1Mcg= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/ko v0.15.1 h1:++5WJTTjSLyObGK6NYdnkHGw4XiUkFD2ldk2mbJ9vd8= github.com/google/ko v0.15.1/go.mod h1:2hpqDZDqly3yVDZbBCohSnUrmwOXw7MBCqujBBu6rMU= @@ -618,6 +629,7 @@ github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXi github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= github.com/google/martian/v3 v3.3.2 h1:IqNFLAmvJOgVlpdEBiQbDc2EwKW77amAycfTuWKdfvw= +github.com/google/martian/v3 v3.3.2/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= @@ -639,11 +651,12 @@ github.com/google/s2a-go v0.1.7/go.mod h1:50CgR4k1jNlWBu4UfS4AcfhVe1r6pdZPygJ3R8 github.com/google/safetext v0.0.0-20220905092116-b49f7bc46da2 h1:SJ+NtwL6QaZ21U+IrK7d0gGgpjGGvd2kz+FzTHVzdqI= github.com/google/safetext v0.0.0-20220905092116-b49f7bc46da2/go.mod h1:Tv1PlzqC9t8wNnpPdctvtSUOPUUg4SHeE6vR1Ir2hmg= github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 h1:El6M4kTTCOh6aBiKaUGG7oYTSPP8MxqL4YI3kZKwcP4= +github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510/go.mod h1:pupxD2MaaD3pAXIBCelhxNneeOaAeabZDe5s4K6zSpQ= github.com/google/subcommands v1.0.1/go.mod h1:ZjhPrFU+Olkh9WazFPsl27BQ4UPiG37m3yTrtFlrHVk= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.4.0 h1:MtMxsa51/r9yyhkyLsVeVt0B+BGQZzpQiTQ4eHZ8bc4= -github.com/google/uuid v1.4.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.5.0 h1:1p67kYwdtXjb0gL0BPiP1Av9wiZPo5A8z2cWkTZ+eyU= +github.com/google/uuid v1.5.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/wire v0.5.0 h1:I7ELFeVBr3yfPIcc8+MWvrjk+3VjbcSzoXm3JVa+jD8= github.com/google/wire v0.5.0/go.mod h1:ngWDr9Qvq3yZA10YrxfyGELY/AFWGVpy9c1LTRi1EoU= github.com/googleapis/enterprise-certificate-proxy v0.3.2 h1:Vie5ybvEvT75RniqhfFxPRy3Bf7vr3h0cechB90XaQs= @@ -654,20 +667,23 @@ github.com/googleapis/gax-go/v2 v2.12.0 h1:A+gCJKdRfqXkr+BIRGtZLibNXf0m1f9E4HG56 github.com/googleapis/gax-go/v2 v2.12.0/go.mod h1:y+aIqrI5eb1YGMVJfuV3185Ts/D7qKpsEkdD5+I6QGU= github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= github.com/gopherjs/gopherjs v1.17.2 h1:fQnZVsXk8uxXIStYb0N4bGk7jeyTalG/wsZjQ25dO0g= +github.com/gopherjs/gopherjs v1.17.2/go.mod h1:pRRIvn/QzFLrKfvEz3qUuEhtE/zLCWfreZ6J5gM2i+k= github.com/gordonklaus/ineffassign v0.0.0-20230610083614-0e73809eb601 h1:mrEEilTAUmaAORhssPPkxj84TsHrPMLBGW2Z4SoTxm8= github.com/gordonklaus/ineffassign v0.0.0-20230610083614-0e73809eb601/go.mod h1:Qcp2HIAYhR7mNUVSIxZww3Guk4it82ghYcEXIAk+QT0= github.com/goreleaser/chglog v0.5.0 h1:Sk6BMIpx8+vpAf8KyPit34OgWui8c7nKTMHhYx88jJ4= github.com/goreleaser/chglog v0.5.0/go.mod h1:Ri46M3lrMuv76FHszs3vtABR8J8k1w9JHYAzxeeOl28= github.com/goreleaser/fileglob v1.3.0 h1:/X6J7U8lbDpQtBvGcwwPS6OpzkNVlVEsFUVRx9+k+7I= github.com/goreleaser/fileglob v1.3.0/go.mod h1:Jx6BoXv3mbYkEzwm9THo7xbr5egkAraxkGorbJb4RxU= -github.com/goreleaser/goreleaser v1.20.0 h1:wvAbDqQwMX3PWPYc4VIeaWQB2V5HOETvDlyfTrk7NgQ= -github.com/goreleaser/goreleaser v1.20.0/go.mod h1:5PSkTiZ+LTv9NuGviWTW3xUAxJO5J984Gu6q4iRVfS4= -github.com/goreleaser/nfpm/v2 v2.32.0 h1:0eOOiSLGch55HvltFDfnd5Z0H28tO61YY6JaXznFKUc= -github.com/goreleaser/nfpm/v2 v2.32.0/go.mod h1:EdmpSQzxrZRmsR25NJW1+RUD9vW5BY5qwIObxHX7U5c= +github.com/goreleaser/goreleaser v1.23.0 h1:QobII7SSYWboSNQO7sCOjKr5NjKZN+f41IMtseI1yKs= +github.com/goreleaser/goreleaser v1.23.0/go.mod h1:6Dn+HZ03ifWg5Q2d1bRNAXGw66VudFLQeJ4g3KXTTOo= +github.com/goreleaser/nfpm/v2 v2.35.1 h1:QpDus/yMTwG/IpRxI/hL7VuRII1mzYwbLInsPiWrtaM= +github.com/goreleaser/nfpm/v2 v2.35.1/go.mod h1:KeO5wxOHyU1nPFO5siSfw6Ds5dKyy0E6y89/ypM7+ZI= github.com/gorilla/mux v1.8.0 h1:i40aqfkR1h2SlN9hojwV5ZA91wcXFOvkdNIeFDP5koI= +github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= -github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc= github.com/gorilla/websocket v1.5.0/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= +github.com/gorilla/websocket v1.5.1 h1:gmztn0JnHVt9JZquRuzLw3g4wouNVzKL15iLr/zn/QY= +github.com/gorilla/websocket v1.5.1/go.mod h1:x3kM2JMyaluk02fnUJpQuwD2dCS5NDG2ZHL0uE0tcaY= github.com/gostaticanalysis/analysisutil v0.7.1 h1:ZMCjoue3DtDWQ5WyU16YbjbQEQ3VuzwxALrpYd+HeKk= github.com/gostaticanalysis/analysisutil v0.7.1/go.mod h1:v21E3hY37WKMGSnbsw2S/ojApNWb6C1//mXO48CXbVc= github.com/gostaticanalysis/comment v1.4.1/go.mod h1:ih6ZxzTHLdadaiSnF5WY3dxUoXfXAlTaRzuaNDlSado= @@ -679,6 +695,7 @@ github.com/gostaticanalysis/nilerr v0.1.1 h1:ThE+hJP0fEp4zWLkWHWcRyI2Od0p7DlgYG3 github.com/gostaticanalysis/nilerr v0.1.1/go.mod h1:wZYb6YI5YAxxq0i1+VJbY0s2YONW0HU0GPE3+5PWN4A= github.com/gostaticanalysis/testutil v0.3.1-0.20210208050101-bfb5c8eec0e4/go.mod h1:D+FIZ+7OahH3ePw/izIEeH5I06eKs1IKI4Xr64/Am3M= github.com/gostaticanalysis/testutil v0.4.0 h1:nhdCmubdmDF6VEatUNjgUZBJKWRqugoISdUv3PPQgHY= +github.com/gostaticanalysis/testutil v0.4.0/go.mod h1:bLIoPefWXrRi/ssLFWX1dx7Repi5x3CuviD3dgAZaBU= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I= github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= @@ -686,11 +703,13 @@ github.com/hashicorp/go-cleanhttp v0.5.2 h1:035FKYIWjmULyFRBKPs8TBQoi0x6d9G4xc9n github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= github.com/hashicorp/go-hclog v0.9.2/go.mod h1:5CU+agLiy3J7N7QjHK5d05KxGsuXiQLrjA0H7acj2lQ= github.com/hashicorp/go-hclog v1.5.0 h1:bI2ocEMgcVlz55Oj1xZNBsVi900c7II+fWDyV9o+13c= +github.com/hashicorp/go-hclog v1.5.0/go.mod h1:W4Qnvbt70Wk/zYJryRzDRU/4r0kIg0PVHBcfoyhpF5M= github.com/hashicorp/go-multierror v1.1.1 h1:H5DkEtf6CXdFp0N0Em5UCwQpXMWke8IA0+lD48awMYo= github.com/hashicorp/go-multierror v1.1.1/go.mod h1:iw975J/qwKPdAO1clOe2L8331t/9/fmwbPZ6JB6eMoM= github.com/hashicorp/go-retryablehttp v0.7.4 h1:ZQgVdpTdAL7WpMIwLzCfbalOcSUdkDZnpUv3/+BxzFA= github.com/hashicorp/go-retryablehttp v0.7.4/go.mod h1:Jy/gPYAdjqffZ/yFGCFV2doI5wjtH1ewM9u8iYVjtX8= github.com/hashicorp/go-version v1.2.1/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= +github.com/hashicorp/go-version v1.5.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= github.com/hashicorp/go-version v1.6.0 h1:feTTfFNnjP967rlCxM/I9g701jU+RN74YKx2mOkIeek= github.com/hashicorp/go-version v1.6.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= @@ -702,9 +721,6 @@ github.com/hexops/gotextdiff v1.0.3/go.mod h1:pSWU5MAI3yDq+fZBTazCSJysOMbxWL1BSo github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= github.com/huandu/xstrings v1.3.3 h1:/Gcsuc1x8JVbJ9/rlye4xZnVAbEkGauT8lbebqcQws4= github.com/huandu/xstrings v1.3.3/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE= -github.com/iancoleman/orderedmap v0.0.0-20190318233801-ac98e3ecb4b0/go.mod h1:N0Wam8K1arqPXNWjMo21EXnBPOPp36vB07FNRdD2geA= -github.com/iancoleman/orderedmap v0.2.0 h1:sq1N/TFpYH++aViPcaKjys3bDClUEU7s5B+z6jq8pNA= -github.com/iancoleman/orderedmap v0.2.0/go.mod h1:N0Wam8K1arqPXNWjMo21EXnBPOPp36vB07FNRdD2geA= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/imdario/mergo v0.3.11/go.mod h1:jmQim1M+e3UYxmgPu/WyfjB3N3VflVyUjjjwH0dnCYA= @@ -713,9 +729,10 @@ github.com/imdario/mergo v0.3.16/go.mod h1:WBLT9ZmE3lPoWsEzCh9LPo3TiwVN+ZKEjmz+h github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= -github.com/invopop/jsonschema v0.7.0 h1:2vgQcBz1n256N+FpX3Jq7Y17AjYt46Ig3zIWyy770So= -github.com/invopop/jsonschema v0.7.0/go.mod h1:O9uiLokuu0+MGFlyiaqtWxwqJm41/+8Nj0lD7A36YH0= -github.com/jarcoal/httpmock v1.3.0 h1:2RJ8GP0IIaWwcC9Fp2BmVi8Kog3v2Hn7VXM3fTd+nuc= +github.com/invopop/jsonschema v0.12.0 h1:6ovsNSuvn9wEQVOyc72aycBMVQFKz7cPdMJn10CvzRI= +github.com/invopop/jsonschema v0.12.0/go.mod h1:ffZ5Km5SWWRAIN6wbDXItl95euhFz2uON45H2qjYt+0= +github.com/jarcoal/httpmock v1.3.1 h1:iUx3whfZWVf3jT01hQTO/Eo5sAYtB2/rqaUuOtpInww= +github.com/jarcoal/httpmock v1.3.1/go.mod h1:3yb8rc4BI7TCBhFY8ng0gjuLKJNquuDNiPaZjnENuYg= github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 h1:BQSFePA1RWJOlocH6Fxy8MmwDt+yVQYULKfN0RoTN8A= github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99/go.mod h1:1lJo3i6rXxKeerYnT8Nvf0QmHCRC1n8sfWVwXF2Frvo= github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= @@ -730,6 +747,7 @@ github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHW github.com/jmespath/go-jmespath/internal/testify v1.5.1 h1:shLQSRRSCCPj3f2gpwzGwWFoC7ycTf1rcQZHOlsJ6N8= github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U= github.com/jmhodges/clock v1.2.0 h1:eq4kys+NI0PLngzaHEe7AmPT90XMGIEySD1JfV1PDIs= +github.com/jmhodges/clock v1.2.0/go.mod h1:qKjhA7x7u/lQpPB1XAqX1b1lCI/w3/fNuYpI/ZjLynI= github.com/joho/godotenv v1.3.0/go.mod h1:7hK45KPybAkOC6peb+G5yklZfMxEjkZhHbwpqxOKXbg= github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY= github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y= @@ -741,6 +759,7 @@ github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHm github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= github.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo= +github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= github.com/julz/importas v0.1.0 h1:F78HnrsjY3cR7j0etXy5+TU1Zuy7Xt08X/1aJnH5xXY= @@ -757,8 +776,8 @@ github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+o github.com/kkHAIKE/contextcheck v1.1.4 h1:B6zAaLhOEEcjvUgIYEqystmnFk1Oemn8bvJhbt0GMb8= github.com/kkHAIKE/contextcheck v1.1.4/go.mod h1:1+i/gWqokIa+dm31mqGLZhZJ7Uh44DJGZVmr6QRBNJg= github.com/klauspost/compress v1.13.6/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= -github.com/klauspost/compress v1.17.2 h1:RlWWUY/Dr4fL8qk9YG7DTZ7PDgME2V4csBXA8L/ixi4= -github.com/klauspost/compress v1.17.2/go.mod h1:ntbaceVETuRiXiv4DpjP66DpAtAGkEQskQzEyD//IeE= +github.com/klauspost/compress v1.17.4 h1:Ej5ixsIri7BrIjBkRZLTo6ghwrEtHFk7ijlczPW4fZ4= +github.com/klauspost/compress v1.17.4/go.mod h1:/dCuZOvVtNoHsyb+cuJD3itjs3NbnF6KH9zAO4BDxPM= github.com/klauspost/pgzip v1.2.6 h1:8RXeL5crjEUFnR2/Sn6GJNWtSQ3Dk8pq4CL3jvdDyjU= github.com/klauspost/pgzip v1.2.6/go.mod h1:Ch1tH69qFZu15pkjo5kYi6mth2Zzwzt50oCQKQE9RUs= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= @@ -769,6 +788,7 @@ github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFB github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= +github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= @@ -810,7 +830,6 @@ github.com/markbates/oncer v0.0.0-20181203154359-bf2de49a0be2/go.mod h1:Ld9puTsI github.com/markbates/safe v1.0.1/go.mod h1:nAqgmRi7cY2nqMc92/bSEeQA+R4OheNU2T1kNSCBdG0= github.com/matoous/godox v0.0.0-20230222163458-006bad1f9d26 h1:gWg6ZQ4JhDfJPqlo2srm/LN17lpybq15AryXIRcWYLE= github.com/matoous/godox v0.0.0-20230222163458-006bad1f9d26/go.mod h1:1BELzlh859Sh1c6+90blK8lbYy0kwQf1bYlBhBysy1s= -github.com/matryer/is v1.2.0/go.mod h1:2fLPjFQM9rhQ15aVEtbuwhJinnOqrmgXPNdZsdwlWXA= github.com/matryer/is v1.4.0 h1:sosSmIWwkYITGrxZ25ULNDeKiMNzFSr4V/eqBQP0PeE= github.com/matryer/is v1.4.0/go.mod h1:8I/i5uYgLzgsgEloJE1U6xx5HkBQpAZvepWuujKwMRU= github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= @@ -823,8 +842,8 @@ github.com/mattn/go-mastodon v0.0.6 h1:lqU1sOeeIapaDsDUL6udDZIzMb2Wqapo347VZlaOz github.com/mattn/go-mastodon v0.0.6/go.mod h1:cg7RFk2pcUfHZw/IvKe1FUzmlq5KnLFqs7eV2PHplV8= github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= github.com/mattn/go-runewidth v0.0.12/go.mod h1:RAqKPSqVFrSLVXbA8x7dzmKdmGzieGRCM46jaSJTDAk= -github.com/mattn/go-runewidth v0.0.14 h1:+xnbZSEeDbOIg5/mE6JF0w6n9duR1l3/WmbinWVwUuU= -github.com/mattn/go-runewidth v0.0.14/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= +github.com/mattn/go-runewidth v0.0.15 h1:UNAjwbU9l54TA3KzvqLGxwWjHmMgBUVhBiTjelZgg3U= +github.com/mattn/go-runewidth v0.0.15/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 h1:jWpvCLoY8Z/e3VKvlsiIGKtc+UG6U5vzxaoagmhXfyg= github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0/go.mod h1:QUyp042oQthUoa9bqDv0ER0wrtXnBruoNd7aNjkbP+k= @@ -845,6 +864,7 @@ github.com/mitchellh/reflectwalk v1.0.0/go.mod h1:mSTlrgnPZtwu0c4WaC2kGObEpuNDbx github.com/mitchellh/reflectwalk v1.0.2 h1:G2LzWKi524PWgd3mLHV8Y5k7s6XUvT0Gef6zxSIeXaQ= github.com/mitchellh/reflectwalk v1.0.2/go.mod h1:mSTlrgnPZtwu0c4WaC2kGObEpuNDbx0jmZXqmk4esnw= github.com/moby/term v0.5.0 h1:xt8Q1nalod/v7BqbG21f8mQPqH+xAaC9C3N3wfWbVP0= +github.com/moby/term v0.5.0/go.mod h1:8FzsFHVUBGZdbDsJw/ot+X+d5HLUbvklYLJ9uGfcI3Y= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= @@ -854,6 +874,7 @@ github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe/go.mod h1:wL8QJ github.com/moricho/tparallel v0.3.1 h1:fQKD4U1wRMAYNngDonW5XupoB/ZGJHdpzrWqgyg9krA= github.com/moricho/tparallel v0.3.1/go.mod h1:leENX2cUv7Sv2qDgdi0D0fCftN8fRC67Bcn8pqzeYNI= github.com/morikuni/aec v1.0.0 h1:nP9CBfwrvYnBRgY6qfDQkygYDmYwOilePFkwzv4dU8A= +github.com/morikuni/aec v1.0.0/go.mod h1:BbKIizmSmc5MMPqRYbxO4ZU0S0+P200+tUnFx7PXmsc= github.com/muesli/mango v0.1.0 h1:DZQK45d2gGbql1arsYA4vfg4d7I9Hfx5rX/GCmzsAvI= github.com/muesli/mango v0.1.0/go.mod h1:5XFpbC8jY5UUv89YQciiXNlbi+iJgt29VDC5xbzrLL4= github.com/muesli/mango-cobra v1.2.0 h1:DQvjzAM0PMZr85Iv9LIMaYISpTOliMEg+uMFtNbYvWg= @@ -889,21 +910,25 @@ github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108 github.com/onsi/ginkgo v1.16.4 h1:29JGrr5oVBm5ulCWet69zQkzWipVXIol6ygQUe/EzNc= github.com/onsi/ginkgo v1.16.4/go.mod h1:dX+/inL/fNMqNlz0e9LfyB9TswhZpCVdJM/Z6Vvnwo0= github.com/onsi/ginkgo/v2 v2.1.3/go.mod h1:vw5CSIxN1JObi/U8gcbwft7ZxR2dgaR70JSE3/PpL4c= -github.com/onsi/ginkgo/v2 v2.13.2 h1:Bi2gGVkfn6gQcjNjZJVO8Gf0FHzMPf2phUei9tejVMs= -github.com/onsi/ginkgo/v2 v2.13.2/go.mod h1:XStQ8QcGwLyF4HdfcZB8SFOS/MWCgDuXMSBe6zrvLgM= +github.com/onsi/ginkgo/v2 v2.14.0 h1:vSmGj2Z5YPb9JwCWT6z6ihcUvDhuXLc3sJiqd3jMKAY= +github.com/onsi/ginkgo/v2 v2.14.0/go.mod h1:JkUdW7JkN0V6rFvsHcJ478egV3XH9NxpD27Hal/PhZw= github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY= github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo= github.com/onsi/gomega v1.17.0/go.mod h1:HnhC7FXeEQY45zxNK3PPoIUhzk/80Xly9PcubAlGdZY= github.com/onsi/gomega v1.19.0/go.mod h1:LY+I3pBVzYsTBU1AnDwOSxaYi9WoWiqgwooUqq9yPro= -github.com/onsi/gomega v1.29.0 h1:KIA/t2t5UBzoirT4H9tsML45GEbo3ouUnBHsCfD2tVg= +github.com/onsi/gomega v1.30.0 h1:hvMK7xYz4D3HapigLTeGdId/NcfQx1VHMJc60ew99+8= +github.com/onsi/gomega v1.30.0/go.mod h1:9sxs+SwGrKI0+PWe4Fxa9tFQQBG5xSsSbMXOI8PPpoQ= github.com/opencontainers/go-digest v1.0.0 h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U= github.com/opencontainers/go-digest v1.0.0/go.mod h1:0JzlMkj0TRzQZfJkVvzbP0HBR3IKzErnv2BNG4W4MAM= github.com/opencontainers/image-spec v1.1.0-rc5 h1:Ygwkfw9bpDvs+c9E34SdgGOj41dX/cbdlwvlWt0pnFI= github.com/opencontainers/image-spec v1.1.0-rc5/go.mod h1:X4pATf0uXsnn3g5aiGIsVnJBR4mxhKzfwmvK/B2NTm8= github.com/opencontainers/runc v1.1.5 h1:L44KXEpKmfWDcS02aeGm8QNTFXTo2D+8MYGDIJ/GDEs= +github.com/opencontainers/runc v1.1.5/go.mod h1:1J5XiS+vdZ3wCyZybsuxXZWGrgSr8fFJHLXuG2PsnNg= github.com/ory/dockertest/v3 v3.10.0 h1:4K3z2VMe8Woe++invjaTB7VRyQXQy5UY+loujO4aNE4= +github.com/ory/dockertest/v3 v3.10.0/go.mod h1:nr57ZbRWMqfsdGdFNLHz5jjNdDb7VVFnzAeW1n5N1Lg= github.com/otiai10/copy v1.2.0/go.mod h1:rrF5dJ5F0t/EWSYODDu4j9/vEeYHMkc8jt0zJChqQWw= github.com/otiai10/copy v1.11.0 h1:OKBD80J/mLBrwnzXqGtFCzprFSGioo30JcmR4APsNwc= +github.com/otiai10/copy v1.11.0/go.mod h1:rSaLseMUsZFFbsFGc7wCJnnkTAvdc5L6VWxPE4308Ww= github.com/otiai10/curr v0.0.0-20150429015615-9b4961190c95/go.mod h1:9qAhocn7zKJG+0mI8eUu6xqkFDYS2kb2saOteoSB3cE= github.com/otiai10/curr v1.0.0/go.mod h1:LskTG5wDwr8Rs+nNQ+1LlxRjAtTZZjtJW4rMXl6j4vs= github.com/otiai10/mint v1.3.0/go.mod h1:F5AjcsTsWUqX+Na9fpHb52P8pcRX2CI6A3ctIT91xUo= @@ -929,6 +954,7 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH github.com/polyfloyd/go-errorlint v1.4.5 h1:70YWmMy4FgRHehGNOUask3HtSFSOLKgmDn7ryNe7LqI= github.com/polyfloyd/go-errorlint v1.4.5/go.mod h1:sIZEbFoDOCnTYYZoVkjc4hTnM459tuWA9H/EkdXwsKk= github.com/prashantv/gostub v1.1.0 h1:BTyx3RfQjRHnUWaGF9oQos79AlQ5k8WNktv7VGvVH4g= +github.com/prashantv/gostub v1.1.0/go.mod h1:A5zLQHz7ieHGG7is6LLXLz7I8+3LZzsrV0P1IAHhP5U= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= @@ -970,7 +996,8 @@ github.com/rivo/uniseg v0.4.2/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUc github.com/rogpeppe/go-internal v1.1.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rogpeppe/go-internal v1.2.2/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= -github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ= +github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M= +github.com/rogpeppe/go-internal v1.11.0/go.mod h1:ddIwULY96R17DhadqLgMfk9H9tvdUzkipdSkR5nkCZA= github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/ryancurrah/gomodguard v1.3.0 h1:q15RT/pd6UggBXVBuLps8BXRvl5GPBcwVA7BJHMLuTw= @@ -1021,12 +1048,14 @@ github.com/sivchari/nosnakecase v1.7.0 h1:7QkpWIRMe8x25gckkFd2A5Pi6Ymo0qgr4JrhGt github.com/sivchari/nosnakecase v1.7.0/go.mod h1:CwDzrzPea40/GB6uynrNLiorAlgFRvRbFSgJx2Gs+QY= github.com/sivchari/tenv v1.7.1 h1:PSpuD4bu6fSmtWMxSGWcvqUUgIn7k3yOJhOIzVWn8Ak= github.com/sivchari/tenv v1.7.1/go.mod h1:64yStXKSOxDfX47NlhVwND4dHwfZDdbp2Lyl018Icvg= -github.com/skeema/knownhosts v1.1.1 h1:MTk78x9FPgDFVFkDLTrsnnfCJl7g1C/nnKvePgrIngE= -github.com/skeema/knownhosts v1.1.1/go.mod h1:g4fPeYpque7P0xefxtGzV81ihjC8sX2IqpAoNkjxbMo= -github.com/slack-go/slack v0.12.2 h1:x3OppyMyGIbbiyFhsBmpf9pwkUzMhthJMRNmNlA4LaQ= -github.com/slack-go/slack v0.12.2/go.mod h1:hlGi5oXA+Gt+yWTPP0plCdRKmjsDxecdHxYQdlMQKOw= +github.com/skeema/knownhosts v1.2.1 h1:SHWdIUa82uGZz+F+47k8SY4QhhI291cXCpopT1lK2AQ= +github.com/skeema/knownhosts v1.2.1/go.mod h1:xYbVRSPxqBZFrdmDyMmsOs+uX1UZC3nTN3ThzgDxUwo= +github.com/slack-go/slack v0.12.3 h1:92/dfFU8Q5XP6Wp5rr5/T5JHLM5c5Smtn53fhToAP88= +github.com/slack-go/slack v0.12.3/go.mod h1:hlGi5oXA+Gt+yWTPP0plCdRKmjsDxecdHxYQdlMQKOw= github.com/smartystreets/assertions v1.13.1 h1:Ef7KhSmjZcK6AVf9YbJdvPYG9avaF0ZxudX+ThRdWfU= +github.com/smartystreets/assertions v1.13.1/go.mod h1:cXr/IwVfSo/RbCSPhoAPv73p3hlSdrBH/b3SdnW/LMY= github.com/smartystreets/goconvey v1.8.0 h1:Oi49ha/2MURE0WexF052Z0m+BNSGirfjg5RL+JXWq3w= +github.com/smartystreets/goconvey v1.8.0/go.mod h1:EdX8jtrTIj26jmjCOVNMVSIYAtgexqXKHOXW2Dx9JLg= github.com/sonatard/noctx v0.0.2 h1:L7Dz4De2zDQhW8S0t+KUjY0MAQJd6SgVwhzNIc4ok00= github.com/sonatard/noctx v0.0.2/go.mod h1:kzFz+CzWSjQ2OzIm46uJZoXuBpa2+0y3T36U18dWqIo= github.com/sourcegraph/conc v0.3.0 h1:OQTbbt6P72L20UqAkXXuLOj79LfEanQ+YQFNpLA9ySo= @@ -1058,7 +1087,6 @@ github.com/stretchr/objx v0.5.0 h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= -github.com/stretchr/testify v1.3.1-0.20190311161405-34c6fa2dc709/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= @@ -1108,8 +1136,10 @@ github.com/vbatts/tar-split v0.11.5 h1:3bHCTIheBm1qFTcgh9oPu+nNBtX+XJIupG/vacinC github.com/vbatts/tar-split v0.11.5/go.mod h1:yZbwRsSeGjusneWgA781EKej9HF8vme8okylkAeNKLk= github.com/withfig/autocomplete-tools/integrations/cobra v1.2.1 h1:+dBg5k7nuTE38VVdoroRsT0Z88fmvdYrI2EjzJst35I= github.com/withfig/autocomplete-tools/integrations/cobra v1.2.1/go.mod h1:nmuySobZb4kFgFy6BptpXp/BBw+xFSyvVPP6auoJB4k= -github.com/xanzy/go-gitlab v0.93.2 h1:kNNf3BYNYn/Zkig0B89fma12l36VLcYSGu7OnaRlRDg= -github.com/xanzy/go-gitlab v0.93.2/go.mod h1:5ryv+MnpZStBH8I/77HuQBsMbBGANtVpLWC15qOjWAw= +github.com/wk8/go-ordered-map/v2 v2.1.8 h1:5h/BUHu93oj4gIdvHHHGsScSTMijfx5PeYkE/fJgbpc= +github.com/wk8/go-ordered-map/v2 v2.1.8/go.mod h1:5nJHM5DyteebpVlHnWMV0rPz6Zp7+xBAnxjb1X5vnTw= +github.com/xanzy/go-gitlab v0.95.2 h1:4p0IirHqEp5f0baK/aQqr4TR57IsD+8e4fuyAA1yi88= +github.com/xanzy/go-gitlab v0.95.2/go.mod h1:ETg8tcj4OhrB84UEgeE8dSuV/0h4BBL1uOV/qK0vlyI= github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM= github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw= github.com/xdg-go/pbkdf2 v1.0.0/go.mod h1:jrpuAogTd400dnrH08LKmI/xc1MbPOebTwRqcT5RDeI= @@ -1120,11 +1150,15 @@ github.com/xdg-go/stringprep v1.0.2/go.mod h1:8F9zXuvzgwmyT5DUm4GUfZGDdT3W+LCvS6 github.com/xdg-go/stringprep v1.0.3/go.mod h1:W3f5j4i+9rC0kuIEJL0ky1VpHXQU3ocBgklLGvcBnW8= github.com/xdg-go/stringprep v1.0.4/go.mod h1:mPGuuIYwz7CmR2bT9j4GbQqutWS1zV24gijq1dTyGkM= github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb h1:zGWFAtiMcyryUHoUjUJX0/lt1H2+i2Ka2n+D3DImSNo= +github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU= github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 h1:EzJWgHovont7NscjpAxXsDA8S8BMYve8Y5+7cuRE7R0= +github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ= github.com/xeipuuv/gojsonschema v1.2.0 h1:LhYJRs+L4fBtjZUfuSZIKGeVu0QRy8e5Xi7D17UxZ74= +github.com/xeipuuv/gojsonschema v1.2.0/go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y= github.com/xen0n/gosmopolitan v1.2.2 h1:/p2KTnMzwRexIW8GlKawsTWOxn7UHA+jCMF/V8HHtvU= github.com/xen0n/gosmopolitan v1.2.2/go.mod h1:7XX7Mj61uLYrj0qmeN0zi7XDon9JRAEhYQqAPLVNTeg= github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 h1:nIPpBwaJSVYIxUFsDv3M8ofmx9yWTog9BfvIu0q41lo= +github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8/go.mod h1:HUYIGzjTL3rfEspMxjDjgmT5uz5wzYJKVo23qUhYTos= github.com/yagipy/maintidx v1.0.0 h1:h5NvIsCz+nRDapQ0exNv4aJ0yXSI0420omVANTv3GJM= github.com/yagipy/maintidx v1.0.0/go.mod h1:0qNf/I/CCZXSMhsRsrEPDZ+DkekpKLXAJfsTACwgXLk= github.com/yeya24/promlinter v0.2.0 h1:xFKDQ82orCU5jQujdaD8stOHiv8UN68BSdn2a8u8Y3o= @@ -1144,6 +1178,7 @@ gitlab.com/bosi/decorder v0.4.1/go.mod h1:jecSqWUew6Yle1pCr2eLWTensJMmsxHsBwt+PV gitlab.com/digitalxero/go-conventional-commit v1.0.7 h1:8/dO6WWG+98PMhlZowt/YjuiKhqhGlOCwlIV8SqqGh8= gitlab.com/digitalxero/go-conventional-commit v1.0.7/go.mod h1:05Xc2BFsSyC5tKhK0y+P3bs0AwUtNuTp+mTpbCU/DZ0= go-simpler.org/assert v0.6.0 h1:QxSrXa4oRuo/1eHMXSBFHKvJIpWABayzKldqZyugG7E= +go-simpler.org/assert v0.6.0/go.mod h1:74Eqh5eI6vCK6Y5l3PI8ZYFXG4Sa+tkr70OIPJAUr28= go-simpler.org/sloglint v0.1.2 h1:IjdhF8NPxyn0Ckn2+fuIof7ntSnVUAqBFcQRrnG9AiM= go-simpler.org/sloglint v0.1.2/go.mod h1:2LL+QImPfTslD5muNPydAEYmpXIj6o/WYcqnJjLi4o4= go.mongodb.org/mongo-driver v1.7.3/go.mod h1:NqaYOwnXWr5Pm7AOpO5QFxKJ503nbMse/R79oO62zWg= @@ -1164,12 +1199,13 @@ go.tmz.dev/musttag v0.7.2/go.mod h1:m6q5NiiSKMnQYokefa2xGoyoXnrswCbJ0AWYzf4Zs28= go.uber.org/automaxprocs v1.5.3 h1:kWazyxZUrS3Gs4qUpbwo5kEIMGe/DAvi5Z4tl2NW4j8= go.uber.org/automaxprocs v1.5.3/go.mod h1:eRbA25aqJrxAbsLO0xy5jVwPt7FQnRgjW+efnwa1WM0= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= +go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= go.uber.org/multierr v1.11.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y= go.uber.org/zap v1.26.0 h1:sI7k6L95XOKS281NhVKOFCUNIvv9e0w4BF8N3u+tCRo= go.uber.org/zap v1.26.0/go.mod h1:dtElttAiwGvoJ/vj4IwHBS/gXsEu/pZ50mUIRWuG0so= -gocloud.dev v0.34.0 h1:LzlQY+4l2cMtuNfwT2ht4+fiXwWf/NmPTnXUlLmGif4= -gocloud.dev v0.34.0/go.mod h1:psKOachbnvY3DAOPbsFVmLIErwsbWPUG2H5i65D38vE= +gocloud.dev v0.35.0 h1:x/Gtt5OJdT4j+ir1AXAIXb7bBnFawXAAaJptCUGk3HU= +gocloud.dev v0.35.0/go.mod h1:wbyF+BhfdtLWyUtVEWRW13hFLb1vXnV2ovEhYGQe3ck= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190422162423-af44ce270edf/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= @@ -1179,8 +1215,10 @@ golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8U golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= +golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a/go.mod h1:P+XmwS30IXTQdn5tA2iutPOUgjI07+tq3H3K9MVA1s8= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.1.0/go.mod h1:RecgLatLF4+eUMCP1PoPZQb+cVrJcOPbHkTkbkB9sbw= @@ -1188,8 +1226,8 @@ golang.org/x/crypto v0.3.0/go.mod h1:hebNnKkNXi2UzZN1eVRvBB7co0a+JxK6XbPiWVs/3J4 golang.org/x/crypto v0.3.1-0.20221117191849-2c476679df9a/go.mod h1:hebNnKkNXi2UzZN1eVRvBB7co0a+JxK6XbPiWVs/3J4= golang.org/x/crypto v0.6.0/go.mod h1:OFC/31mSvZgRz0V1QTNCzfAI1aIRzbiufJtkMIlEp58= golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= -golang.org/x/crypto v0.15.0 h1:frVn1TEaCEaZcn3Tmd7Y2b5KKPaZ+I32Q2OA3kYp5TA= -golang.org/x/crypto v0.15.0/go.mod h1:4ChreQoLWfG3xLDer1WdlH5NdlQ3+mwnQq1YTKY+72g= +golang.org/x/crypto v0.17.0 h1:r8bRNjWL3GshPW3gkd+RpvzWrZAwPS49OmTGZ/uhM4k= +golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= @@ -1200,8 +1238,8 @@ golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u0 golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= -golang.org/x/exp v0.0.0-20231006140011-7918f672742d h1:jtJma62tbqLibJ5sFQz8bKtEM8rJBtfilJ2qTU199MI= -golang.org/x/exp v0.0.0-20231006140011-7918f672742d/go.mod h1:ldy0pHrwJyGW56pPQzzkH36rKxoZW1tw7ZJpeKx+hdo= +golang.org/x/exp v0.0.0-20231206192017-f3f8817b8deb h1:c0vyKkb6yr3KR7jEfJaOSv4lG7xPkbN6r52aJz1d8a8= +golang.org/x/exp v0.0.0-20231206192017-f3f8817b8deb/go.mod h1:iRJReGqOEeBhDZGkGbynYwcHlctCvnjTYIamk7uXpHI= golang.org/x/exp/typeparams v0.0.0-20220428152302-39d4317da171/go.mod h1:AbB0pIl9nAr9wVwH+Z2ZpaocVmF5I4GyWCDIsVjR0bk= golang.org/x/exp/typeparams v0.0.0-20230203172020-98cc5a0785f9/go.mod h1:AbB0pIl9nAr9wVwH+Z2ZpaocVmF5I4GyWCDIsVjR0bk= golang.org/x/exp/typeparams v0.0.0-20230307190834-24139beb5833 h1:jWGQJV4niP+CCmFW9ekjA9Zx8vYORzOUH2/Nl5WPuLQ= @@ -1287,8 +1325,8 @@ golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY= golang.org/x/net v0.5.0/go.mod h1:DivGGAXEgPSlEBzxGzZI+ZLohi+xUj054jfeKui00ws= golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= -golang.org/x/net v0.18.0 h1:mIYleuAkSbHh0tCv7RvjL3F6ZVbLjq4+R7zbOn3Kokg= -golang.org/x/net v0.18.0/go.mod h1:/czyP5RqHAH4odGYxBJ1qz0+CE5WZ+2j1YgoEo8F2jQ= +golang.org/x/net v0.19.0 h1:zTwKpTd2XuCqf8huc7Fo2iSy+4RHPd10s4KzeTnVr1c= +golang.org/x/net v0.19.0/go.mod h1:CfAk/cbD4CthTvqiEl8NpboMuiuOYsAr/7NOjZJtv1U= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -1299,8 +1337,8 @@ golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.13.0 h1:jDDenyj+WgFtmV3zYVoi8aE2BwtXFLWOA67ZfNWftiY= -golang.org/x/oauth2 v0.13.0/go.mod h1:/JMhi4ZRXAf4HG9LiNmxvk+45+96RUlVThiH8FzNBn0= +golang.org/x/oauth2 v0.15.0 h1:s8pnnxNVzjWyrvYdFUQq5llS1PX2zhPXmccZv99h7uQ= +golang.org/x/oauth2 v0.15.0/go.mod h1:q48ptWNTY5XWf+JNten23lcvHpLJ0ZSxF5ttTHKVCAM= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -1389,8 +1427,8 @@ golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.4.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.14.0 h1:Vz7Qs629MkJkGyHxUlRHizWJRG2j8fbQKjELVSNhy7Q= -golang.org/x/sys v0.14.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= +golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= @@ -1398,8 +1436,8 @@ golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc= golang.org/x/term v0.4.0/go.mod h1:9P2UbLfCdcvo3p/nzKvsmas4TnlujnuoV9hGgYzW1lQ= golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= -golang.org/x/term v0.14.0 h1:LGK9IlZ8T9jvdy6cTdfKUCltatMFOehAQo9SRC46UQ8= -golang.org/x/term v0.14.0/go.mod h1:TySc+nGkYR6qt8km8wUhuFRTVSMIX3XPR58y2lC8vww= +golang.org/x/term v0.15.0 h1:y/Oo/a/q3IXu26lQgl04j/gjuBDOBlx7X6Om1j2CPW4= +golang.org/x/term v0.15.0/go.mod h1:BDl952bC7+uMoWR75FIrCDx79TPU9oHkTZ9yRbYOrX0= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -1419,8 +1457,8 @@ golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.3.0 h1:rg5rLMjNzMS1RkNLzCG38eapWhnYLFYXDXj2gOlr8j4= -golang.org/x/time v0.3.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.4.0 h1:Z81tqI5ddIoXDPvVQ7/7CC9TnLM7ubaFG2qXYd5BbYY= +golang.org/x/time v0.4.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= @@ -1462,7 +1500,6 @@ golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapK golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= golang.org/x/tools v0.0.0-20200324003944-a576cf524670/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= -golang.org/x/tools v0.0.0-20200325010219-a49f79bcc224/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= golang.org/x/tools v0.0.0-20200329025819-fd4102a86c65/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= @@ -1498,8 +1535,8 @@ golang.org/x/tools v0.2.0/go.mod h1:y4OqIKeOV/fWJetJ8bXPU1sEVniLMIyDAZWeHdV+NTA= golang.org/x/tools v0.3.0/go.mod h1:/rWhSS2+zyEVwoJf8YAX6L2f0ntZ7Kn/mGgAWcipA5k= golang.org/x/tools v0.5.0/go.mod h1:N+Kgy78s5I24c24dU8OfWNEotWjutIs8SnJvn5IDq+k= golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= -golang.org/x/tools v0.15.0 h1:zdAyfUGbYmuVokhzVmghFl2ZJh5QhcfebBgmVPFYA+8= -golang.org/x/tools v0.15.0/go.mod h1:hpksKq4dtpQWS1uQ61JkdqWM3LscIS6Slf+VVkm+wQk= +golang.org/x/tools v0.16.1 h1:TLyB3WofjdOEepBHAU20JdNC1Zbg87elYofWYAY5oZA= +golang.org/x/tools v0.16.1/go.mod h1:kYVVN6I1mBNoB1OX+noeBjbRk4IUEPa7JJ+TJMEooJ0= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= @@ -1525,8 +1562,8 @@ google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz513 google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= -google.golang.org/api v0.149.0 h1:b2CqT6kG+zqJIVKRQ3ELJVLN1PwHZ6DJ3dW8yl82rgY= -google.golang.org/api v0.149.0/go.mod h1:Mwn1B7JTXrzXtnvmzQE2BD6bYZQ8DShKZDZbeN9I7qI= +google.golang.org/api v0.151.0 h1:FhfXLO/NFdJIzQtCqjpysWwqKk8AzGWBUhMIx67cVDU= +google.golang.org/api v0.151.0/go.mod h1:ccy+MJ6nrYFgE3WgRx/AMXOxOmU8Q4hSa+jjibzhxcg= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -1572,12 +1609,12 @@ google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6D google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210108203827-ffc7fda8c3d7/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210226172003-ab064af71705/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b h1:+YaDE2r2OG8t/z5qmsh7Y+XXwCbvadxxZ0YY6mTdrVA= -google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b/go.mod h1:CgAqfJo+Xmu0GwA0411Ht3OU3OntXwsGmrmjI8ioGXI= -google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b h1:CIC2YMXmIhYw6evmhPxBKJ4fmLbOFtXQN/GV3XOZR8k= -google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b/go.mod h1:IBQ646DjkDkvUIsVq/cc03FUFQ9wbZu7yE396YcL870= -google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b h1:ZlWIi1wSK56/8hn4QcBp/j9M7Gt3U/3hZw3mC7vDICo= -google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b/go.mod h1:swOH3j0KzcDDgGUWr+SNpyTen5YrXjS3eyPzFYKc6lc= +google.golang.org/genproto v0.0.0-20231120223509-83a465c0220f h1:Vn+VyHU5guc9KjB5KrjI2q0wCOWEOIh0OEsleqakHJg= +google.golang.org/genproto v0.0.0-20231120223509-83a465c0220f/go.mod h1:nWSwAFPb+qfNJXsoeO3Io7zf4tMSfN8EA8RlDA04GhY= +google.golang.org/genproto/googleapis/api v0.0.0-20231120223509-83a465c0220f h1:2yNACc1O40tTnrsbk9Cv6oxiW8pxI/pXj0wRtdlYmgY= +google.golang.org/genproto/googleapis/api v0.0.0-20231120223509-83a465c0220f/go.mod h1:Uy9bTZJqmfrw2rIBxgGLnamc78euZULUBrLZ9XTITKI= +google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f h1:ultW7fxlIvee4HYrtnaRPon9HpEgFk5zYpmfMgtKB5I= +google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f/go.mod h1:L9KNLi232K1/xB6f7AlSX692koaRnKaWSR0stBki0Yc= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= @@ -1608,8 +1645,8 @@ google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGj google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8= -google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.32.0 h1:pPC6BG5ex8PDFnkbrGU3EixyhKcQ2aDuBS36lqK/C7I= +google.golang.org/protobuf v1.32.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc h1:2gGKlE2+asNV9m7xrywl36YYNnBG5ZQ0r/BOOxqPpmk= gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc/go.mod h1:m7x9LTH6d71AHyAX77c9yqWCCa3UKHcVEj9y7hAtKDk=