From 960c204b4b26d354608af51e1ad8b426869596f7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 Jun 2026 22:55:24 +0000 Subject: [PATCH] Bump the actions group across 1 directory with 4 updates Bumps the actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [dtolnay/rust-toolchain](https://github.com/dtolnay/rust-toolchain), [actions/cache](https://github.com/actions/cache) and [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `actions/checkout` from 6 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/v6...v7) Updates `dtolnay/rust-toolchain` from 1.95 to 1.100 - [Release notes](https://github.com/dtolnay/rust-toolchain/releases) - [Commits](https://github.com/dtolnay/rust-toolchain/compare/1.95...1.100) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v6) Updates `codecov/codecov-action` from 6 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/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: dtolnay/rust-toolchain dependency-version: '1.100' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yaml | 44 +++++++++--------- .github/workflows/docs.yml | 6 +-- .../workflows/integration-tests-matrix.yml | 46 +++++++++---------- .github/workflows/integration-tests.yml | 6 +-- .github/workflows/opr8r.yaml | 20 ++++---- .github/workflows/vscode-extension.yaml | 14 +++--- .github/workflows/zed-extension.yaml | 4 +- 7 files changed, 70 insertions(+), 70 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 1a8c212c..7f47e67f 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -35,15 +35,15 @@ jobs: lint-test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install toolchain - uses: dtolnay/rust-toolchain@1.95 + uses: dtolnay/rust-toolchain@1.100 with: components: rustfmt, clippy - name: Cache cargo - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -95,7 +95,7 @@ jobs: outputs: version: ${{ steps.calc.outputs.version }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - id: calc run: | V=$(cat VERSION) @@ -109,15 +109,15 @@ jobs: if: github.event_name == 'push' && github.ref == 'refs/heads/main' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install Rust toolchain - uses: dtolnay/rust-toolchain@1.95 + uses: dtolnay/rust-toolchain@1.100 with: components: llvm-tools-preview - name: Cache cargo - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -160,7 +160,7 @@ jobs: done - name: Upload to Codecov - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: files: codecov.json flags: rust @@ -170,16 +170,16 @@ jobs: needs: lint-test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install toolchain - uses: dtolnay/rust-toolchain@1.95 + uses: dtolnay/rust-toolchain@1.100 - name: Install tmux run: sudo apt-get update && sudo apt-get install -y tmux - name: Cache cargo - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -206,13 +206,13 @@ jobs: needs: lint-test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install toolchain - uses: dtolnay/rust-toolchain@1.95 + uses: dtolnay/rust-toolchain@1.100 - name: Cache cargo - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -250,15 +250,15 @@ jobs: artifact_name: operator-windows-x86_64.exe runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install toolchain - uses: dtolnay/rust-toolchain@1.95 + uses: dtolnay/rust-toolchain@1.100 with: targets: ${{ matrix.target }} - name: Cache cargo - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -350,13 +350,13 @@ jobs: run: working-directory: opr8r steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install Rust toolchain - uses: dtolnay/rust-toolchain@1.95 + uses: dtolnay/rust-toolchain@1.100 - name: Cache cargo registry - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -439,7 +439,7 @@ jobs: outputs: version: ${{ needs.version.outputs.version }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 @@ -564,7 +564,7 @@ jobs: needs: [build, release] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Download linux binaries uses: actions/download-artifact@v8 diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 3d5ed750..c1eeb889 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -32,15 +32,15 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Install Rust toolchain for docs generation - name: Install Rust toolchain - uses: dtolnay/rust-toolchain@1.95 + uses: dtolnay/rust-toolchain@1.100 # Cache cargo for faster builds - name: Cache cargo - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry diff --git a/.github/workflows/integration-tests-matrix.yml b/.github/workflows/integration-tests-matrix.yml index 72a96a96..2085e8a0 100644 --- a/.github/workflows/integration-tests-matrix.yml +++ b/.github/workflows/integration-tests-matrix.yml @@ -74,13 +74,13 @@ jobs: extension: .exe runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install Rust - uses: dtolnay/rust-toolchain@1.95 + uses: dtolnay/rust-toolchain@1.100 - name: Cache cargo - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -119,13 +119,13 @@ jobs: run: working-directory: opr8r steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install Rust - uses: dtolnay/rust-toolchain@1.95 + uses: dtolnay/rust-toolchain@1.100 - name: Cache cargo - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -167,7 +167,7 @@ jobs: opr8r_artifact: opr8r-macos-arm64 runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install tmux (Linux) if: runner.os == 'Linux' @@ -178,10 +178,10 @@ jobs: run: brew install tmux - name: Install Rust - uses: dtolnay/rust-toolchain@1.95 + uses: dtolnay/rust-toolchain@1.100 - name: Cache cargo - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -234,13 +234,13 @@ jobs: opr8r_artifact: opr8r-linux-arm64 runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install Rust - uses: dtolnay/rust-toolchain@1.95 + uses: dtolnay/rust-toolchain@1.100 - name: Cache cargo - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -303,13 +303,13 @@ jobs: opr8r_artifact: opr8r-macos-arm64 runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install Rust - uses: dtolnay/rust-toolchain@1.95 + uses: dtolnay/rust-toolchain@1.100 - name: Cache cargo - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -356,13 +356,13 @@ jobs: artifact: operator-macos-arm64 runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install Rust - uses: dtolnay/rust-toolchain@1.95 + uses: dtolnay/rust-toolchain@1.100 - name: Cache cargo - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -408,13 +408,13 @@ jobs: extension: .exe runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install Rust - uses: dtolnay/rust-toolchain@1.95 + uses: dtolnay/rust-toolchain@1.100 - name: Cache cargo - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -465,7 +465,7 @@ jobs: extension: .exe runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Download operator binary uses: actions/download-artifact@v8 @@ -530,7 +530,7 @@ jobs: run: working-directory: vscode-extension steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Setup Node.js uses: actions/setup-node@v6 diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 1ac8b1a3..26fbc01d 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -57,7 +57,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 # Full history needed for git operations @@ -69,10 +69,10 @@ jobs: git remote set-head origin --auto || true - name: Install Rust toolchain - uses: dtolnay/rust-toolchain@1.95 + uses: dtolnay/rust-toolchain@1.100 - name: Cache cargo - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry diff --git a/.github/workflows/opr8r.yaml b/.github/workflows/opr8r.yaml index c40fb2ae..dcb73ca3 100644 --- a/.github/workflows/opr8r.yaml +++ b/.github/workflows/opr8r.yaml @@ -28,15 +28,15 @@ jobs: run: working-directory: opr8r steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install Rust toolchain - uses: dtolnay/rust-toolchain@1.95 + uses: dtolnay/rust-toolchain@1.100 with: components: rustfmt, clippy - name: Cache cargo registry - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -71,15 +71,15 @@ jobs: run: working-directory: opr8r steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install Rust toolchain - uses: dtolnay/rust-toolchain@1.95 + uses: dtolnay/rust-toolchain@1.100 with: components: llvm-tools-preview - name: Cache cargo registry - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -96,7 +96,7 @@ jobs: run: cargo llvm-cov --locked --all-features --codecov --output-path codecov.json - name: Upload to Codecov - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: files: opr8r/codecov.json flags: opr8r @@ -128,13 +128,13 @@ jobs: run: working-directory: opr8r steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install Rust toolchain - uses: dtolnay/rust-toolchain@1.95 + uses: dtolnay/rust-toolchain@1.100 - name: Cache cargo registry - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry diff --git a/.github/workflows/vscode-extension.yaml b/.github/workflows/vscode-extension.yaml index 56f7d65a..8f6b2e21 100644 --- a/.github/workflows/vscode-extension.yaml +++ b/.github/workflows/vscode-extension.yaml @@ -30,7 +30,7 @@ jobs: lint-test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Setup Node.js uses: actions/setup-node@v6 @@ -64,7 +64,7 @@ jobs: - name: Upload coverage to Codecov if: always() - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: files: vscode-extension/coverage/lcov.info flags: vscode-extension @@ -96,13 +96,13 @@ jobs: run: working-directory: opr8r steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install Rust toolchain - uses: dtolnay/rust-toolchain@1.95 + uses: dtolnay/rust-toolchain@1.100 - name: Cache cargo registry - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -162,7 +162,7 @@ jobs: opr8r_extension: .exe runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Setup Node.js uses: actions/setup-node@v6 @@ -209,7 +209,7 @@ jobs: run: working-directory: . # Override global default - publish job runs from repo root steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Setup Node.js uses: actions/setup-node@v6 diff --git a/.github/workflows/zed-extension.yaml b/.github/workflows/zed-extension.yaml index 1de6a222..a3220111 100644 --- a/.github/workflows/zed-extension.yaml +++ b/.github/workflows/zed-extension.yaml @@ -24,10 +24,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install Rust toolchain - uses: dtolnay/rust-toolchain@1.95 + uses: dtolnay/rust-toolchain@1.100 with: targets: wasm32-wasip1 components: clippy, rustfmt