Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ais-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-ais-ci-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-ais.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang-format-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmakelint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/update-ais-ci-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading