diff --git a/.github/workflows/ais-ci.yml b/.github/workflows/ais-ci.yml index f58a5186..aaefb050 100644 --- a/.github/workflows/ais-ci.yml +++ b/.github/workflows/ais-ci.yml @@ -16,7 +16,7 @@ jobs: runs-on: [ubuntu-24.04] steps: - name: Fetching code repository... - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Git fetch base ref run: git fetch origin ${{ github.base_ref }} - name: Set CI Flags diff --git a/.github/workflows/build-ais-ci-image.yml b/.github/workflows/build-ais-ci-image.yml index 0c35acce..5c41dbd9 100644 --- a/.github/workflows/build-ais-ci-image.yml +++ b/.github/workflows/build-ais-ci-image.yml @@ -37,7 +37,7 @@ jobs: echo "AIS_CI_LATEST_CACHE=${{ env.AIS_DOCKER_REGISTRY }}/${{ env.AIS_CI_IMAGE_NAME}}:latest-cache" \ >> "${GITHUB_OUTPUT}" - name: Fetching code repository... - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Authenticating to GitHub Container Registry. uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef #v3.6.0 with: diff --git a/.github/workflows/build-ais.yml b/.github/workflows/build-ais.yml index 147e3ca7..98fdc489 100644 --- a/.github/workflows/build-ais.yml +++ b/.github/workflows/build-ais.yml @@ -24,7 +24,7 @@ jobs: run: | echo "AIS_CONTAINER_NAME=${AIS_PR_NUMBER}_${{ github.job }}_${{inputs.platform}}" >> "$GITHUB_ENV" - name: Fetching code repository... - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Authenticating to GitHub Container Registry uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef #v3.6.0 with: @@ -131,7 +131,7 @@ jobs: run: | echo "AIS_CONTAINER_NAME=${AIS_PR_NUMBER}_${{ github.job }}_${{inputs.platform}}" >> "$GITHUB_ENV" - name: Fetching code repository... - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Authenticating to GitHub Container Registry uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef #v3.6.0 with: @@ -194,7 +194,7 @@ jobs: run: | echo "AIS_CONTAINER_NAME=${AIS_PR_NUMBER}_${{ github.job }}_${{inputs.platform}}_nvidia" >> "$GITHUB_ENV" - name: Fetching code repository... - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Authenticating to GitHub Container Registry uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef #v3.6.0 with: @@ -286,7 +286,7 @@ jobs: run: | echo "AIS_CONTAINER_NAME=${AIS_PR_NUMBER}_${{ github.job }}_${{inputs.platform}}_nvidia" >> "$GITHUB_ENV" - name: Fetching code repository... - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Authenticating to GitHub Container Registry uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef #v3.6.0 with: diff --git a/.github/workflows/clang-format-check.yml b/.github/workflows/clang-format-check.yml index fb5d4864..303ea8e0 100644 --- a/.github/workflows/clang-format-check.yml +++ b/.github/workflows/clang-format-check.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest if: "!contains(github.event.head_commit.message, 'skip-ci')" steps: - - uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 #v4.1.7 + - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd #v4.1.7 - name: Run clang-format style check for C/C++ code uses: DoozyX/clang-format-lint-action@bcb4eb2cb0d707ee4f3e5cc3b456eb075f12cf73 #v0.20 diff --git a/.github/workflows/cmakelint.yml b/.github/workflows/cmakelint.yml index 737c53d0..a21d90d0 100644 --- a/.github/workflows/cmakelint.yml +++ b/.github/workflows/cmakelint.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 #v4.1.7 + uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd #v4.1.7 - name: Set up Python uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c #v6.0.0 diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index 262fbc9d..54add096 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -10,5 +10,5 @@ jobs: name: Check for spelling errors runs-on: ubuntu-latest steps: - - uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 #v4.1.7 + - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd #v4.1.7 - uses: codespell-project/actions-codespell@8f01853be192eb0f849a5c7d721450e7a467c579 #v2.2 diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml index ed37a833..30c07ef5 100644 --- a/.github/workflows/shellcheck.yml +++ b/.github/workflows/shellcheck.yml @@ -12,5 +12,5 @@ jobs: name: Run ShellCheck over shell scripts runs-on: ubuntu-latest steps: - - uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 #v4.1.7 + - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd #v4.1.7 - uses: ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38 #v2.0.0 diff --git a/.github/workflows/update-ais-ci-image.yml b/.github/workflows/update-ais-ci-image.yml index 3e63c62a..2771bf8d 100644 --- a/.github/workflows/update-ais-ci-image.yml +++ b/.github/workflows/update-ais-ci-image.yml @@ -36,7 +36,7 @@ jobs: - ubuntu steps: - name: Fetching code repository... - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Authenticating to GitHub Container Registry. uses: docker/login-action@v3.6.0 with: