Skip to content

Commit 38f2e2c

Browse files
authored
Upgrade GitHub Actions to latest versions
Updated GitHub Actions to use newer versions of actions/checkout, actions/setup-python, and webfactory/ssh-agent.
1 parent 4a63a8a commit 38f2e2c

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ jobs:
3535

3636
- name: Checkout the source
3737
if: github.event_name != 'pull_request'
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v6
3939
with:
4040
submodules: recursive
4141
fetch-depth: 0
4242

4343
- name: Checkout the source - pull request
4444
if: github.event_name == 'pull_request'
45-
uses: actions/checkout@v4
45+
uses: actions/checkout@v6
4646
with:
4747
submodules: recursive
4848
fetch-depth: 0
@@ -54,12 +54,12 @@ jobs:
5454
sudo xcode-select -switch /Applications/Xcode_${{matrix.build-xcode-version}}.app
5555
5656
- name: Setup python version
57-
uses: actions/setup-python@v5
57+
uses: actions/setup-python@v6
5858
with:
59-
python-version: "3.11"
59+
python-version: "3.13"
6060

6161
- name: Start ssh key agent
62-
uses: webfactory/ssh-agent@v0.9.0
62+
uses: webfactory/ssh-agent@v0.10.0
6363
with:
6464
ssh-private-key: ${{ secrets.RULESSUPPORT_DEPLOY_KEY }}
6565

@@ -85,7 +85,7 @@ jobs:
8585
echo "VCPKG_BINARY_SOURCES=clear;files,${{ runner.temp }}/vcpkg-cache,readwrite" >> $env:GITHUB_ENV
8686
8787
- name: Set up binary cache
88-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
88+
uses: actions/cache@v5
8989
with:
9090
path: ${{ runner.temp }}/vcpkg-cache
9191
key: vcpkg-cache-${{ runner.os }}-${{ matrix.os }}-${{ matrix.build-cversion }}-${{ env.VCPKG_COMMIT_SHA }}-${{ hashFiles('**/vcpkg.json', '**/vcpkg-overlays/**') }}

0 commit comments

Comments
 (0)