From feda773a426c03e923ef21f26fc85090f46d6930 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 17 Aug 2024 06:18:21 +0000 Subject: [PATCH] Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cmake.yml | 2 +- .github/workflows/cmake_subdir_example.yml | 2 +- .github/workflows/meson.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index bab6b43b..b07502bb 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -45,7 +45,7 @@ jobs: steps: - name: Checkout ${{ github.ref_name }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 - run: git submodule update --init --recursive - name: set extra GITHUB_PATH ${{ matrix.config.extra_path }} (for MinGW) shell: bash diff --git a/.github/workflows/cmake_subdir_example.yml b/.github/workflows/cmake_subdir_example.yml index fe893e9f..0b753ba3 100644 --- a/.github/workflows/cmake_subdir_example.yml +++ b/.github/workflows/cmake_subdir_example.yml @@ -27,7 +27,7 @@ jobs: } steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: configure shell: cmake -P {0} run: | diff --git a/.github/workflows/meson.yml b/.github/workflows/meson.yml index 2da4d483..b60efd43 100644 --- a/.github/workflows/meson.yml +++ b/.github/workflows/meson.yml @@ -49,7 +49,7 @@ jobs: } steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # use msvc-dev-cmd to setup the environment for MSVC if needed - name: setup MSVC if: matrix.config.requires_msvc