From e5e57909a658543e988cf86efaa81ae3994730ae Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Sep 2026 06:08:31 +0000 Subject: [PATCH] ci: bump the github-actions group with 5 updates Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5` | `7` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `5` | `7` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/configure-pages](https://github.com/actions/configure-pages) | `5` | `6` | | [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) | `3` | `5` | Updates `actions/checkout` from 5 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v7) Updates `codecov/codecov-action` from 5 to 7 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v5...v7) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) Updates `actions/configure-pages` from 5 to 6 - [Release notes](https://github.com/actions/configure-pages/releases) - [Commits](https://github.com/actions/configure-pages/compare/v5...v6) Updates `actions/upload-pages-artifact` from 3 to 5 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](https://github.com/actions/upload-pages-artifact/compare/v3...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/configure-pages dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-pages-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yaml | 14 +++++++------- .github/workflows/pages.yaml | 6 +++--- .github/workflows/release.yaml | 2 +- .github/workflows/upstream_drift.yaml | 2 +- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e23c638..dfc25fa 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -49,7 +49,7 @@ jobs: # upload tokenlessly (the repo is public, so there is no CODECOV_TOKEN). id-token: write steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 - uses: subosito/flutter-action@v2 with: @@ -71,7 +71,7 @@ jobs: run: flutter test --exclude-tags golden --coverage - name: Upload coverage to Codecov - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v7 with: files: coverage/lcov.info use_oidc: true @@ -85,7 +85,7 @@ jobs: name: Goldens (macOS) runs-on: macos-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 - uses: subosito/flutter-action@v2 with: @@ -102,7 +102,7 @@ jobs: - name: Upload golden failures if: failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: golden-failures path: test/**/failures/** @@ -113,7 +113,7 @@ jobs: name: Minimum supported Flutter (3.35.0) runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 - uses: subosito/flutter-action@v2 with: @@ -137,7 +137,7 @@ jobs: name: pub.dev score (pana) runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 - uses: subosito/flutter-action@v2 with: @@ -165,7 +165,7 @@ jobs: name: Example app runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 - uses: subosito/flutter-action@v2 with: diff --git a/.github/workflows/pages.yaml b/.github/workflows/pages.yaml index 76e2514..8683812 100644 --- a/.github/workflows/pages.yaml +++ b/.github/workflows/pages.yaml @@ -63,7 +63,7 @@ jobs: name: Build the example for web runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 - uses: subosito/flutter-action@v2 with: @@ -85,9 +85,9 @@ jobs: working-directory: example run: cp build/web/index.html build/web/404.html - - uses: actions/configure-pages@v5 + - uses: actions/configure-pages@v6 - - uses: actions/upload-pages-artifact@v3 + - uses: actions/upload-pages-artifact@v5 with: path: example/build/web diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0c0e90b..2ffe0d9 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -76,7 +76,7 @@ jobs: # Lets `gh release create` write the GitHub Release. contents: write steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 # Order matters — see the header. This step configures the pub.dev # credential; the Flutter SDK installed next provides the toolchain. diff --git a/.github/workflows/upstream_drift.yaml b/.github/workflows/upstream_drift.yaml index 135cf0b..e432b94 100644 --- a/.github/workflows/upstream_drift.yaml +++ b/.github/workflows/upstream_drift.yaml @@ -46,7 +46,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out flutter_border_beam - uses: actions/checkout@v5 + uses: actions/checkout@v7 - name: Fetch upstream spec and styles.ts run: |