diff --git a/.github/workflows/cargo-update.yml b/.github/workflows/cargo-update.yml index 823b157d5..70191b183 100644 --- a/.github/workflows/cargo-update.yml +++ b/.github/workflows/cargo-update.yml @@ -15,7 +15,7 @@ jobs: UPDATE_BRANCH_NAME: auto-cargo-update steps: - name: Checkout the repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Cargo update run: cargo update diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2892f6044..53b693bfc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout the repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install protoc run: sudo apt-get install -y protobuf-compiler @@ -58,7 +58,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout the repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -97,7 +97,7 @@ jobs: run: sudo apt-get install -yq zip - name: Checkout the repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: cli diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c60f5a069..8e8f0e204 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout the repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install Rust nightly toolchain run: rustup toolchain install --no-self-update nightly --profile minimal -c rustfmt @@ -41,7 +41,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout the repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - if: ${{ runner.os == 'macOS' }} name: Install protoc @@ -72,7 +72,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout the repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - if: ${{ runner.os == 'macOS' }} name: Install protoc @@ -100,7 +100,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout the repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - if: ${{ runner.os == 'macOS' }} name: Install protoc @@ -131,7 +131,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout the repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - if: ${{ runner.os == 'macOS' }} name: Install protoc @@ -155,7 +155,7 @@ jobs: container: denoland/deno steps: - name: Checkout the repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: deno fmt run: deno fmt --check @@ -171,7 +171,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout the repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Script Style Check run: find . -iname "*.sh" -print0 | xargs -0 shellcheck -o all -S style -s sh