Skip to content

Commit 1597016

Browse files
authored
Merge pull request #121767 from Repiteo/ci/update-actions
CI: Update all GitHub Actions to latest versions
2 parents 4525f39 + 0f005e7 commit 1597016

11 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/actions/godot-cache-restore/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ runs:
1212
using: composite
1313
steps:
1414
- name: Restore default cache
15-
uses: actions/cache/restore@v5
15+
uses: actions/cache/restore@v6
1616
id: cache-ping
1717
with:
1818
path: ${{ inputs.scons-cache }}
@@ -27,7 +27,7 @@ runs:
2727
# This is done after pulling the default cache so that PRs can integrate any potential changes
2828
# from the default branch without conflicting with whatever local changes were already made.
2929
- name: Restore local cache
30-
uses: actions/cache/restore@v5
30+
uses: actions/cache/restore@v6
3131
if: github.ref_name != github.event.repository.default_branch
3232
with:
3333
path: ${{ inputs.scons-cache }}

.github/actions/godot-cache-save/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ runs:
1616
run: misc/scripts/purge_cache.py ${{ env.CACHE_TIMESTAMP }} "${{ inputs.scons-cache }}"
1717

1818
- name: Save SCons cache directory
19-
uses: actions/cache/save@v5
19+
uses: actions/cache/save@v6
2020
with:
2121
path: ${{ inputs.scons-cache }}
2222
key: ${{ inputs.cache-name }}|${{ github.ref_name }}|${{ github.sha }}

.github/actions/godot-cpp-build/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ runs:
2222
using: composite
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v6
25+
uses: actions/checkout@v7
2626
with:
2727
submodules: recursive
2828
repository: godotengine/godot-cpp

.github/actions/godot-deps/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ runs:
1616
using: composite
1717
steps:
1818
- name: Set up Python 3.x
19-
uses: actions/setup-python@v6
19+
uses: actions/setup-python@v7
2020
with:
2121
# Semantic version range syntax or exact version of a Python version.
2222
python-version: ${{ inputs.python-version }}

.github/workflows/android_builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545

4646
steps:
4747
- name: Checkout
48-
uses: actions/checkout@v6
48+
uses: actions/checkout@v7
4949
with:
5050
submodules: recursive
5151

.github/workflows/ios_builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v6
22+
uses: actions/checkout@v7
2323
with:
2424
submodules: recursive
2525

.github/workflows/linux_builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119

120120
steps:
121121
- name: Checkout
122-
uses: actions/checkout@v6
122+
uses: actions/checkout@v7
123123
with:
124124
submodules: recursive
125125

.github/workflows/macos_builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v6
35+
uses: actions/checkout@v7
3636
with:
3737
submodules: recursive
3838

.github/workflows/static_checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
sources-changed: ${{ steps.changed-files.outputs.sources_any_changed }}
2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v6
23+
uses: actions/checkout@v7
2424
with:
2525
fetch-depth: 0 # Treeless clone. Slightly less performant than a shallow clone, but makes finding diffs instantaneous.
2626
filter: tree:0 # See: https://github.blog/open-source/git/get-up-to-speed-with-partial-clone-and-shallow-clone/

.github/workflows/web_builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
steps:
3636
- name: Checkout
37-
uses: actions/checkout@v6
37+
uses: actions/checkout@v7
3838
with:
3939
submodules: recursive
4040

0 commit comments

Comments
 (0)