Skip to content

Commit b738068

Browse files
committed
Update actions to avoid warnings
1 parent febd791 commit b738068

7 files changed

Lines changed: 17 additions & 14 deletions

File tree

.github/workflows/app_build.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ jobs:
9191

9292
steps:
9393

94-
- uses: actions/checkout@v4
94+
- uses: actions/checkout@v5
9595

96-
- uses: actions/setup-python@v5
96+
- uses: actions/setup-python@v6
9797
if: ${{ !matrix.SELF_HOSTED }}
9898
with:
9999
python-version: '3.12.x'
@@ -186,6 +186,9 @@ jobs:
186186
echo "Setting Xcode version"
187187
sudo xcode-select -s "/Applications/Xcode_16.4.app/Contents/Developer/"
188188
189+
echo "Untapping unused taps to avoid Homebrew trust warnings"
190+
brew untap aws/tap azure/bicep || true
191+
189192
echo "Using brew to install ninja"
190193
brew install md5sha1sum ccache
191194
@@ -330,7 +333,7 @@ jobs:
330333
# 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
331334
# To prevent problems, changing to multiple more specific glob patterns
332335
- name: Setup CCache
333-
uses: actions/cache@v4
336+
uses: actions/cache@v5
334337
id: cacheccache
335338
if: ${{ !matrix.SELF_HOSTED }}
336339
with:
@@ -349,7 +352,7 @@ jobs:
349352
ccache --zero-stats
350353
351354
- name: Setup Conan Cache
352-
uses: actions/cache@v4
355+
uses: actions/cache@v5
353356
id: cacheconan
354357
if: ${{ !matrix.SELF_HOSTED }}
355358
with:
@@ -384,7 +387,7 @@ jobs:
384387
- name: Cache Qt and SDK
385388
id: cachebuild
386389
if: ${{ !matrix.SELF_HOSTED }}
387-
uses: actions/cache@v3
390+
uses: actions/cache@v5
388391
with:
389392
path: |
390393
build/Qt-install
@@ -723,7 +726,7 @@ jobs:
723726
arch: arm64
724727

725728
steps:
726-
- uses: actions/checkout@v4 # Still need code checked out to get testing scripts
729+
- uses: actions/checkout@v5 # Still need code checked out to get testing scripts
727730
with:
728731
path: checkout
729732

.github/workflows/check_osm_versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313

1414
- uses: ruby/setup-ruby@v1
1515
with:

.github/workflows/clangformat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
build:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212

1313
- name: Run clang-format against C++ files touched by the PR
1414
shell: bash

.github/workflows/cppcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
build:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717

1818
- name: Install cppcheck
1919
shell: bash

.github/workflows/docker-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-22.04
2222

2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525

2626
# BuildKit is required for the cache-from/cache-to directives below.
2727
- name: Set up Docker Buildx

.github/workflows/export_standards_data.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919

20-
- uses: actions/setup-python@v5
20+
- uses: actions/setup-python@v6
2121
with:
2222
python-version: '3.12.x'
2323

.github/workflows/release_notes.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313

1414
- uses: ruby/setup-ruby@v1
1515
with:
1616
ruby-version: 3.2
1717

18-
- uses: actions/setup-python@v5
18+
- uses: actions/setup-python@v6
1919
with:
2020
python-version: '3.8.x'
2121

0 commit comments

Comments
 (0)