From ea53e56fc7d70aa73ca7e7499450d77eef8207e4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Dec 2024 10:27:43 +0100 Subject: [PATCH 1/2] Bump nanoid from 3.3.6 to 3.3.8 in /website (#3868) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [nanoid](https://github.com/ai/nanoid) from 3.3.6 to 3.3.8.
Changelog

Sourced from nanoid's changelog.

3.3.8

3.3.7

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=nanoid&package-manager=npm_and_yarn&previous-version=3.3.6&new-version=3.3.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/rrousselGit/riverpod/network/alerts).
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- website/yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index 583bdd8e7..fb9c689ba 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -5448,9 +5448,9 @@ multicast-dns@^7.2.5: thunky "^1.0.2" nanoid@^3.3.6: - version "3.3.6" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" - integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== + version "3.3.8" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.8.tgz#b1be3030bee36aaff18bacb375e5cce521684baf" + integrity sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w== negotiator@0.6.3: version "0.6.3" From 17d5e37a3bf50850fe7aebd0a47ca5c6144b758b Mon Sep 17 00:00:00 2001 From: Remi Rousselet Date: Tue, 24 Dec 2024 11:14:06 +0100 Subject: [PATCH 2/2] CI (#3890) --- .github/workflows/build.yml | 9 +++------ .github/workflows/cleanup.yml | 19 ------------------- 2 files changed, 3 insertions(+), 25 deletions(-) delete mode 100644 .github/workflows/cleanup.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ab80d18f1..531e31864 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -52,7 +52,7 @@ jobs: # - packages/riverpod_graph # TODO(rousselGit) blocked by https://github.com/invertase/dart_custom_lint/issues/16 # - packages/riverpod_lint_flutter_test - - website + # - website steps: - uses: actions/checkout@v3.1.0 @@ -67,11 +67,8 @@ jobs: run: echo "PUB_CACHE="$HOME/.pub-cache"" >> $GITHUB_ENV - name: Install dependencies run: flutter pub get - - name: Install dependencies (integration/buid.yaml) - run: | - if test -d "integration/build_yaml"; then - flutter pub get integration/build_yaml - fi + - if: matrix.package_path == 'packages/riverpod_generator' + run: rm -rf integration - name: Install dependencies (website/third-party) run: | if test -d "third-party"; then diff --git a/.github/workflows/cleanup.yml b/.github/workflows/cleanup.yml deleted file mode 100644 index faa337b61..000000000 --- a/.github/workflows/cleanup.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Cleanup Workflow - -on: - workflow_run: - workflows: - - "build" - - "changelog" - - check_generation - - riverpod_lint - types: - - completed - -jobs: - cleanup: - runs-on: ubuntu-latest - - steps: - - name: Cleanup - run: echo "This is the cleanup job."