diff --git a/.github/actions/dart_package/action.yaml b/.github/actions/dart_package/action.yaml index e838c05..b233d63 100644 --- a/.github/actions/dart_package/action.yaml +++ b/.github/actions/dart_package/action.yaml @@ -76,7 +76,7 @@ runs: run: echo "package_name=${PACKAGE_PATH##*/}" >> $GITHUB_OUTPUT - name: Upload Coverage - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: flags: ${{ steps.split.outputs.package_name }} token: ${{ inputs.codecov_token }} diff --git a/.github/actions/flutter_package/action.yaml b/.github/actions/flutter_package/action.yaml index fd90aa9..a1d0fdb 100644 --- a/.github/actions/flutter_package/action.yaml +++ b/.github/actions/flutter_package/action.yaml @@ -82,7 +82,7 @@ runs: run: echo "package_name=${PACKAGE_PATH##*/}" >> $GITHUB_OUTPUT - name: Upload Coverage - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: # We use Codecov's carryforward flags to allow our PR testing to only # run affected packages, but also allow our coverage information from diff --git a/.github/actions/publish_flutter_package/action.yaml b/.github/actions/publish_flutter_package/action.yaml index 06b3b85..281d958 100644 --- a/.github/actions/publish_flutter_package/action.yaml +++ b/.github/actions/publish_flutter_package/action.yaml @@ -10,7 +10,7 @@ runs: using: "composite" steps: - name: 📚 Git Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: 🐦 Setup Flutter uses: subosito/flutter-action@v2 diff --git a/.github/actions/rust_crate/action.yaml b/.github/actions/rust_crate/action.yaml index eaa0318..53dd001 100644 --- a/.github/actions/rust_crate/action.yaml +++ b/.github/actions/rust_crate/action.yaml @@ -41,7 +41,7 @@ runs: run: echo "package_name=${PACKAGE_PATH##*/}" >> $GITHUB_OUTPUT - name: Upload Coverage - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: # We use Codecov's carryforward flags to allow our PR testing to only # run affected packages, but also allow our coverage information from diff --git a/.github/workflows/_shorebird_ci_flutter.yaml b/.github/workflows/_shorebird_ci_flutter.yaml index e1afbae..f3305c1 100644 --- a/.github/workflows/_shorebird_ci_flutter.yaml +++ b/.github/workflows/_shorebird_ci_flutter.yaml @@ -34,7 +34,7 @@ jobs: ci: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: recursive - name: Setup Flutter @@ -64,7 +64,7 @@ jobs: working-directory: ${{ inputs.package_path }} run: flutter test --coverage - if: inputs.has_unit_tests - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: flags: ${{ inputs.package_name }} working-directory: ${{ inputs.package_path }} diff --git a/.github/workflows/build_patch_artifacts.yaml b/.github/workflows/build_patch_artifacts.yaml index c5e589f..019df22 100644 --- a/.github/workflows/build_patch_artifacts.yaml +++ b/.github/workflows/build_patch_artifacts.yaml @@ -25,7 +25,7 @@ jobs: name: 🦀 Upload Artifacts steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: taiki-e/upload-rust-binary-action@v1 with: bin: "patch" diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 862f702..7ffc043 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -32,7 +32,7 @@ jobs: steps: - name: 📚 Git Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - uses: dorny/paths-filter@v4 name: Build Detection @@ -82,7 +82,7 @@ jobs: steps: - name: 📚 Git Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: 🦀 Build ${{ matrix.crate }} uses: ./.github/actions/rust_crate @@ -104,7 +104,7 @@ jobs: steps: - name: 📚 Git Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: submodules: recursive diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 462379b..cc55bf4 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 📚 Git Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: submodules: recursive diff --git a/.github/workflows/shorebird_ci.yaml b/.github/workflows/shorebird_ci.yaml index 790f5e5..6613d9d 100644 --- a/.github/workflows/shorebird_ci.yaml +++ b/.github/workflows/shorebird_ci.yaml @@ -17,7 +17,7 @@ jobs: shorebird_code_push: ${{ steps.filter.outputs.shorebird_code_push }} shorebird_code_push_example: ${{ steps.filter.outputs.shorebird_code_push_example }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: # Full history so dorny/paths-filter can diff on push events. fetch-depth: 0 @@ -65,7 +65,7 @@ jobs: name: CSpell runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: recursive - uses: streetsidesoftware/cspell-action@v8