From b73806824efc52dee1022bca9365ac05f2968575 Mon Sep 17 00:00:00 2001 From: Dan Macumber Date: Sat, 20 Jun 2026 21:52:39 -0600 Subject: [PATCH] Update actions to avoid warnings --- .github/workflows/app_build.yml | 15 +++++++++------ .github/workflows/check_osm_versions.yml | 2 +- .github/workflows/clangformat.yml | 2 +- .github/workflows/cppcheck.yml | 2 +- .github/workflows/docker-ci.yml | 2 +- .github/workflows/export_standards_data.yml | 4 ++-- .github/workflows/release_notes.yml | 4 ++-- 7 files changed, 17 insertions(+), 14 deletions(-) diff --git a/.github/workflows/app_build.yml b/.github/workflows/app_build.yml index e8d81a649..8510f302b 100644 --- a/.github/workflows/app_build.yml +++ b/.github/workflows/app_build.yml @@ -91,9 +91,9 @@ jobs: steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 if: ${{ !matrix.SELF_HOSTED }} with: python-version: '3.12.x' @@ -186,6 +186,9 @@ jobs: echo "Setting Xcode version" sudo xcode-select -s "/Applications/Xcode_16.4.app/Contents/Developer/" + echo "Untapping unused taps to avoid Homebrew trust warnings" + brew untap aws/tap azure/bicep || true + echo "Using brew to install ninja" brew install md5sha1sum ccache @@ -330,7 +333,7 @@ jobs: # Note: I'm picking up the ccache before I do the conan cache, otherwise on windows when trying to hashFiles('**/CMakeLists.txt') it looks into the conan folder which fails # To prevent problems, changing to multiple more specific glob patterns - name: Setup CCache - uses: actions/cache@v4 + uses: actions/cache@v5 id: cacheccache if: ${{ !matrix.SELF_HOSTED }} with: @@ -349,7 +352,7 @@ jobs: ccache --zero-stats - name: Setup Conan Cache - uses: actions/cache@v4 + uses: actions/cache@v5 id: cacheconan if: ${{ !matrix.SELF_HOSTED }} with: @@ -384,7 +387,7 @@ jobs: - name: Cache Qt and SDK id: cachebuild if: ${{ !matrix.SELF_HOSTED }} - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: | build/Qt-install @@ -723,7 +726,7 @@ jobs: arch: arm64 steps: - - uses: actions/checkout@v4 # Still need code checked out to get testing scripts + - uses: actions/checkout@v5 # Still need code checked out to get testing scripts with: path: checkout diff --git a/.github/workflows/check_osm_versions.yml b/.github/workflows/check_osm_versions.yml index 1857ab306..4cf970a38 100644 --- a/.github/workflows/check_osm_versions.yml +++ b/.github/workflows/check_osm_versions.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ruby/setup-ruby@v1 with: diff --git a/.github/workflows/clangformat.yml b/.github/workflows/clangformat.yml index aca7ba496..9f41ec1a4 100644 --- a/.github/workflows/clangformat.yml +++ b/.github/workflows/clangformat.yml @@ -8,7 +8,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Run clang-format against C++ files touched by the PR shell: bash diff --git a/.github/workflows/cppcheck.yml b/.github/workflows/cppcheck.yml index 37343c9d0..40ad7630e 100644 --- a/.github/workflows/cppcheck.yml +++ b/.github/workflows/cppcheck.yml @@ -13,7 +13,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install cppcheck shell: bash diff --git a/.github/workflows/docker-ci.yml b/.github/workflows/docker-ci.yml index d6ddec3e4..adab56ce8 100644 --- a/.github/workflows/docker-ci.yml +++ b/.github/workflows/docker-ci.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 # BuildKit is required for the cache-from/cache-to directives below. - name: Set up Docker Buildx diff --git a/.github/workflows/export_standards_data.yml b/.github/workflows/export_standards_data.yml index 3e1e0e4a8..24a66c345 100644 --- a/.github/workflows/export_standards_data.yml +++ b/.github/workflows/export_standards_data.yml @@ -15,9 +15,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: '3.12.x' diff --git a/.github/workflows/release_notes.yml b/.github/workflows/release_notes.yml index cb53dde83..1b3fe50a1 100644 --- a/.github/workflows/release_notes.yml +++ b/.github/workflows/release_notes.yml @@ -9,13 +9,13 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ruby/setup-ruby@v1 with: ruby-version: 3.2 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: '3.8.x'