From 259403e8a6e7201c5630c4725ebb9805cdb05687 Mon Sep 17 00:00:00 2001 From: Brett Morgan Date: Wed, 25 Sep 2024 09:38:44 +1000 Subject: [PATCH 1/2] Update CONTRIBUTING.md (#2447) ## Pre-launch Checklist - [x] I read the [Flutter Style Guide] _recently_, and have followed its advice. - [x] I signed the [CLA]. - [x] I read the [Contributors Guide]. - [x] I updated/added relevant documentation (doc comments with `///`). - [x] All existing and new tests are passing. If you need help, consider asking for advice on the #hackers-devrel channel on [Discord]. [Flutter Style Guide]: https://github.com/flutter/flutter/blob/master/docs/contributing/Style-guide-for-Flutter-repo.md [CLA]: https://cla.developers.google.com/ [Discord]: https://github.com/flutter/flutter/blob/master/docs/contributing/Chat.md [Contributors Guide]: https://github.com/flutter/samples/blob/main/CONTRIBUTING.md --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7fbeae80b..1a3d0b818 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -126,7 +126,7 @@ reviewer. All files in the project must start with the following header. ``` -// Copyright 2023 The Flutter team. All rights reserved. +// Copyright 2024 The Flutter team. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. ``` From eb47a728ceefcc66fc7eb35c5261a18130b01407 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 25 Sep 2024 07:11:23 +0000 Subject: [PATCH 2/2] Bump actions/setup-java from 4.3.0 to 4.4.0 (#2448) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [actions/setup-java](https://github.com/actions/setup-java) from 4.3.0 to 4.4.0.
Release notes

Sourced from actions/setup-java's releases.

v4.4.0

What's Changed

Add-ons :

steps:
 - name: Checkout
   uses: actions/checkout@v4
 - name: Setup-java
   uses: actions/setup-java@v4
   with:
     distribution: 'graalvm'
     java-version: '21'

Bug fixes :

  • Add architecture to cache key by @​Zxilly in actions/setup-java#664 This addresses issues with caching by adding the architecture (arch) to the cache key, ensuring that cache keys are accurate to prevent conflicts. Note: This change may break previous cache keys as they will no longer be compatible with the new format.
  • Resolve check failures by @​aparnajyothi-y in actions/setup-java#687

New Contributors

Full Changelog: https://github.com/actions/setup-java/compare/v4...v4.4.0

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-java&package-manager=github_actions&previous-version=4.3.0&new-version=4.4.0)](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 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)
--- .github/workflows/beta.yml | 6 +++--- .github/workflows/main.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml index f9e74bf01..3c19570dc 100644 --- a/.github/workflows/beta.yml +++ b/.github/workflows/beta.yml @@ -27,7 +27,7 @@ jobs: os: [ubuntu-latest, macos-latest, windows-latest] steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - - uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88 + - uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73 with: distribution: 'zulu' java-version: '17' @@ -43,7 +43,7 @@ jobs: # if: github.repository == 'flutter/samples' # steps: # - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - # - uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88 + # - uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73 # with: # distribution: 'zulu' # java-version: '17' @@ -59,7 +59,7 @@ jobs: if: github.repository == 'flutter/samples' steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - - uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88 + - uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73 with: distribution: 'zulu' java-version: '17' diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c10b7f936..7724bbcc8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -28,7 +28,7 @@ jobs: os: [ubuntu-latest, macos-latest, windows-latest] steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - - uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88 + - uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73 with: distribution: 'zulu' java-version: '17' @@ -53,7 +53,7 @@ jobs: # if: github.repository == 'flutter/samples' # steps: # - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - # - uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88 + # - uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73 # with: # distribution: 'zulu' # java-version: '17' @@ -67,7 +67,7 @@ jobs: if: github.repository == 'flutter/samples' steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - - uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88 + - uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73 with: distribution: 'zulu' java-version: '17'