1
0
mirror of https://github.com/google/cpu_features.git synced 2025-09-16 08:55:25 +02:00

Bump actions/checkout from 4 to 5 in the github-actions group

Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout).


Updates `actions/checkout` from 4 to 5
- [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/v4...v5)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2025-08-18 12:15:04 +00:00
committed by Mizux Seiha
parent 6516495ce9
commit ed3cc44739
16 changed files with 18 additions and 18 deletions

View File

@@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-24.04-arm runs-on: ubuntu-24.04-arm
steps: steps:
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v4 uses: actions/checkout@v5
- name: Build - name: Build
run: make --directory=bazel/ci arm64_build run: make --directory=bazel/ci arm64_build
- name: Test - name: Test

View File

@@ -21,7 +21,7 @@ jobs:
env: env:
TARGET: ${{ matrix.targets[0] }} TARGET: ${{ matrix.targets[0] }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- name: Build - name: Build
run: make --directory=cmake/ci ${TARGET}_build run: make --directory=cmake/ci ${TARGET}_build
- name: Test - name: Test

View File

@@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v4 uses: actions/checkout@v5
- name: Set up QEMU - name: Set up QEMU
uses: docker/setup-qemu-action@v3 uses: docker/setup-qemu-action@v3
- name: Check docker - name: Check docker

View File

@@ -12,7 +12,7 @@ jobs:
make: make:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- name: Env - name: Env
run: make --directory=cmake/ci amd64_env run: make --directory=cmake/ci amd64_env
- name: Devel - name: Devel

View File

@@ -14,7 +14,7 @@ jobs:
runs-on: macos-13 # Using x86 processors, ref: https://github.com/actions/runner-images runs-on: macos-13 # Using x86 processors, ref: https://github.com/actions/runner-images
steps: steps:
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v4 uses: actions/checkout@v5
- name: Install Bazel - name: Install Bazel
run: | run: |
brew update brew update

View File

@@ -15,7 +15,7 @@ jobs:
env: env:
CTEST_OUTPUT_ON_FAILURE: 1 CTEST_OUTPUT_ON_FAILURE: 1
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- name: Check cmake - name: Check cmake
run: cmake --version run: cmake --version
- name: Configure - name: Configure
@@ -31,7 +31,7 @@ jobs:
env: env:
CTEST_OUTPUT_ON_FAILURE: 1 CTEST_OUTPUT_ON_FAILURE: 1
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- name: Check cmake - name: Check cmake
run: cmake --version run: cmake --version
- name: Configure - name: Configure

View File

@@ -14,7 +14,7 @@ jobs:
runs-on: windows-latest runs-on: windows-latest
steps: steps:
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v4 uses: actions/checkout@v5
- name: Install Bazel - name: Install Bazel
run: | run: |
choco install bazel choco install bazel

View File

@@ -14,7 +14,7 @@ jobs:
env: env:
CTEST_OUTPUT_ON_FAILURE: 1 CTEST_OUTPUT_ON_FAILURE: 1
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- name: Configure - name: Configure
run: cmake -S. -Bbuild -G "Visual Studio 17 2022" -DCMAKE_CONFIGURATION_TYPES=Release run: cmake -S. -Bbuild -G "Visual Studio 17 2022" -DCMAKE_CONFIGURATION_TYPES=Release
- name: Build - name: Build

View File

@@ -14,7 +14,7 @@ jobs:
runs-on: macos-latest # Using M1 processors, ref: https://github.com/actions/runner-images runs-on: macos-latest # Using M1 processors, ref: https://github.com/actions/runner-images
steps: steps:
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v4 uses: actions/checkout@v5
- name: Install Bazel - name: Install Bazel
run: | run: |
brew update brew update

View File

@@ -15,7 +15,7 @@ jobs:
env: env:
CTEST_OUTPUT_ON_FAILURE: 1 CTEST_OUTPUT_ON_FAILURE: 1
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- name: Check cmake - name: Check cmake
run: cmake --version run: cmake --version
- name: Configure - name: Configure
@@ -31,7 +31,7 @@ jobs:
env: env:
CTEST_OUTPUT_ON_FAILURE: 1 CTEST_OUTPUT_ON_FAILURE: 1
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- name: Check cmake - name: Check cmake
run: cmake --version run: cmake --version
- name: Configure - name: Configure

View File

@@ -21,7 +21,7 @@ jobs:
env: env:
TARGET: ${{ matrix.targets[0] }} TARGET: ${{ matrix.targets[0] }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- name: Build - name: Build
run: make --directory=cmake/ci ${TARGET}_build run: make --directory=cmake/ci ${TARGET}_build
- name: Test - name: Test

View File

@@ -7,7 +7,7 @@ jobs:
clang-format: clang-format:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- name: Fetch origin/main - name: Fetch origin/main
run: git fetch origin main run: git fetch origin main
- name: List of changed file(s) - name: List of changed file(s)

View File

@@ -23,7 +23,7 @@ jobs:
env: env:
TARGET: ${{ matrix.targets[0] }} TARGET: ${{ matrix.targets[0] }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- name: Build - name: Build
run: make --directory=cmake/ci ${TARGET}_build run: make --directory=cmake/ci ${TARGET}_build
- name: Test - name: Test

View File

@@ -22,7 +22,7 @@ jobs:
env: env:
TARGET: ${{ matrix.targets[0] }} TARGET: ${{ matrix.targets[0] }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- name: Build - name: Build
run: make --directory=cmake/ci ${TARGET}_build run: make --directory=cmake/ci ${TARGET}_build
- name: Test - name: Test

View File

@@ -21,7 +21,7 @@ jobs:
env: env:
TARGET: ${{ matrix.targets[0] }} TARGET: ${{ matrix.targets[0] }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- name: Build - name: Build
run: make --directory=cmake/ci ${TARGET}_build run: make --directory=cmake/ci ${TARGET}_build
- name: Test - name: Test

View File

@@ -20,7 +20,7 @@ jobs:
env: env:
TARGET: ${{ matrix.targets[0] }} TARGET: ${{ matrix.targets[0] }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- name: Build - name: Build
run: make --directory=cmake/ci ${TARGET}_build run: make --directory=cmake/ci ${TARGET}_build
- name: Test - name: Test