From c110ba88f3934d8fabf3a8e56fb2305c9c81baf5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 17:02:09 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [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...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-and-test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 5c2f0ce..923044e 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -13,7 +13,7 @@ jobs: matrix: version: [14] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Setting up gcc version run: | sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-${{ matrix.version }} 100 @@ -26,7 +26,7 @@ jobs: matrix: version: [19, 20] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Install dependencies run: sudo apt-get update && sudo apt-get install -y --no-install-recommends clang-19 clang-20 - name: Setting up clang version @@ -40,7 +40,7 @@ jobs: container: image: alpine:latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Install dependencies run: apk update && apk add build-base python3 - name: Build @@ -48,7 +48,7 @@ jobs: build-ubuntu-gcc-aarch64: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Install dependencies run: sudo apt-get update && sudo apt-get install -y --no-install-recommends gcc-aarch64-linux-gnu g++-aarch64-linux-gnu libgcc-s1-arm64-cross cpp-aarch64-linux-gnu - name: Build