|
@@ -13,7 +13,7 @@ jobs:
|
|
|
name: Editor w/ Mono (target=release_debug, tools=yes)
|
|
|
|
|
|
steps:
|
|
|
- - uses: actions/checkout@v2
|
|
|
+ - uses: actions/checkout@v4
|
|
|
|
|
|
# Azure repositories are not reliable, we need to prevent azure giving us packages.
|
|
|
- name: Make apt sources.list use the default Ubuntu repositories
|
|
@@ -31,7 +31,7 @@ jobs:
|
|
|
# Upload cache on completion and check it out now
|
|
|
- name: Load .scons_cache directory
|
|
|
id: linux-editor-cache
|
|
|
- uses: actions/cache@v2
|
|
|
+ uses: actions/cache@v4
|
|
|
with:
|
|
|
path: ${{github.workspace}}/.scons_cache/
|
|
|
key: ${{github.job}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}
|
|
@@ -43,7 +43,7 @@ jobs:
|
|
|
|
|
|
# Use python 3.x release (works cross platform; best to keep self contained in it's own step)
|
|
|
- name: Set up Python 3.x
|
|
|
- uses: actions/setup-python@v2
|
|
|
+ uses: actions/setup-python@v5
|
|
|
with:
|
|
|
# Semantic version range syntax or exact version of a Python version
|
|
|
python-version: '3.x'
|
|
@@ -68,7 +68,7 @@ jobs:
|
|
|
scons tools=yes target=release_debug module_mono_enabled=yes mono_glue=yes
|
|
|
ls -l bin/
|
|
|
|
|
|
- - uses: actions/upload-artifact@v2
|
|
|
+ - uses: actions/upload-artifact@v4
|
|
|
with:
|
|
|
name: ${{ github.job }}
|
|
|
path: bin/*
|
|
@@ -79,7 +79,7 @@ jobs:
|
|
|
name: Template w/ Mono (target=release, tools=no)
|
|
|
|
|
|
steps:
|
|
|
- - uses: actions/checkout@v2
|
|
|
+ - uses: actions/checkout@v4
|
|
|
|
|
|
# Azure repositories are not reliable, we need to prevent azure giving us packages.
|
|
|
- name: Make apt sources.list use the default Ubuntu repositories
|
|
@@ -97,7 +97,7 @@ jobs:
|
|
|
# Upload cache on completion and check it out now
|
|
|
- name: Load .scons_cache directory
|
|
|
id: linux-template-cache
|
|
|
- uses: actions/cache@v2
|
|
|
+ uses: actions/cache@v4
|
|
|
with:
|
|
|
path: ${{github.workspace}}/.scons_cache/
|
|
|
key: ${{github.job}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}
|
|
@@ -109,7 +109,7 @@ jobs:
|
|
|
|
|
|
# Use python 3.x release (works cross platform)
|
|
|
- name: Set up Python 3.x
|
|
|
- uses: actions/setup-python@v2
|
|
|
+ uses: actions/setup-python@v5
|
|
|
with:
|
|
|
# Semantic version range syntax or exact version of a Python version
|
|
|
python-version: '3.x'
|
|
@@ -131,7 +131,7 @@ jobs:
|
|
|
scons target=release tools=no module_mono_enabled=yes mono_glue=no
|
|
|
ls -l bin/
|
|
|
|
|
|
- - uses: actions/upload-artifact@v2
|
|
|
+ - uses: actions/upload-artifact@v4
|
|
|
with:
|
|
|
name: ${{ github.job }}
|
|
|
path: bin/*
|
|
@@ -142,7 +142,7 @@ jobs:
|
|
|
name: Editor and exported project with sanitizers (target=debug/release, tools=yes/no, use_ubsan=yes, use_asan=yes)
|
|
|
|
|
|
steps:
|
|
|
- - uses: actions/checkout@v2
|
|
|
+ - uses: actions/checkout@v4
|
|
|
|
|
|
# Azure repositories are not reliable, we need to prevent azure giving us packages.
|
|
|
- name: Make apt sources.list use the default Ubuntu repositories
|
|
@@ -161,7 +161,7 @@ jobs:
|
|
|
# Upload cache on completion and check it out now
|
|
|
- name: Load .scons_cache directory
|
|
|
id: linux-sanitizer-cache
|
|
|
- uses: actions/cache@v2
|
|
|
+ uses: actions/cache@v4
|
|
|
with:
|
|
|
path: ${{github.workspace}}/.scons_cache/
|
|
|
key: ${{github.job}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}
|
|
@@ -173,7 +173,7 @@ jobs:
|
|
|
|
|
|
# Use python 3.x release (works cross platform; best to keep self contained in it's own step)
|
|
|
- name: Set up Python 3.x
|
|
|
- uses: actions/setup-python@v2
|
|
|
+ uses: actions/setup-python@v5
|
|
|
with:
|
|
|
# Semantic version range syntax or exact version of a Python version
|
|
|
python-version: '3.x'
|