diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3fd91d6..5716cd8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: - {name: "Ubuntu GCC 13", tag: "gcc:13", toolchain: "gcc-13", cmake_args: "-G \"Ninja Multi-Config\" -DCMAKE_CONFIGURATION_TYPES=\"RelWithDebInfo;Asan\" -DCMAKE_PREFIX_PATH=\"./infra/cmake\" "} - {name: "Ubuntu GCC 12", tag: "gcc:12", toolchain: "gcc-12", cmake_args: "-G \"Ninja Multi-Config\" -DCMAKE_CONFIGURATION_TYPES=\"RelWithDebInfo;Asan\" -DCMAKE_PREFIX_PATH=\"./infra/cmake\" "} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 with: submodules: 'true' # If Clang 17, install a newer version of libc++ and libc++abi. @@ -113,7 +113,7 @@ jobs: if: failure() && github.event_name == 'schedule' steps: # See https://github.com/cli/cli/issues/5075 - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Create issue run: | issue_num=$(gh issue list -s open -S "[SCHEDULED-BUILD] Build & Test failure" -L 1 --json number | jq 'if length == 0 then -1 else .[0].number end') diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 9c26df0..fc7ecc0 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -13,10 +13,10 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: 3.13 @@ -39,7 +39,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 # pull_request_target checkout the base of the repo # We need to checkout the actual pr to lint the changes. @@ -49,14 +49,14 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: 3.13 # we only lint on the changed file in PR. - name: Get Changed Files id: changed-files - uses: tj-actions/changed-files@v45 + uses: tj-actions/changed-files@v47 # See: # https://github.com/tj-actions/changed-files?tab=readme-ov-file#using-local-git-directory-