Update CI to use .NET 7.0.x, setup-dotnet 3.2.0, checkout 3.6.0 (#19552)
This commit is contained in:
2
.github/workflows/benchmarks.yml
vendored
2
.github/workflows/benchmarks.yml
vendored
@@ -11,7 +11,7 @@ jobs:
|
|||||||
name: Run Benchmarks
|
name: Run Benchmarks
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3.6.0
|
||||||
with:
|
with:
|
||||||
submodules: 'recursive'
|
submodules: 'recursive'
|
||||||
- name: Get Engine version
|
- name: Get Engine version
|
||||||
|
|||||||
6
.github/workflows/build-docfx.yml
vendored
6
.github/workflows/build-docfx.yml
vendored
@@ -8,7 +8,7 @@ jobs:
|
|||||||
docfx:
|
docfx:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3.6.0
|
||||||
- name: Setup submodule
|
- name: Setup submodule
|
||||||
run: |
|
run: |
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
@@ -19,9 +19,9 @@ jobs:
|
|||||||
cd RobustToolbox/
|
cd RobustToolbox/
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
- name: Setup .NET Core
|
- name: Setup .NET Core
|
||||||
uses: actions/setup-dotnet@v3
|
uses: actions/setup-dotnet@v3.2.0
|
||||||
with:
|
with:
|
||||||
dotnet-version: 6.0.x
|
dotnet-version: 7.0.x
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: dotnet restore
|
run: dotnet restore
|
||||||
|
|||||||
6
.github/workflows/build-map-renderer.yml
vendored
6
.github/workflows/build-map-renderer.yml
vendored
@@ -19,7 +19,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Master
|
- name: Checkout Master
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3.6.0
|
||||||
|
|
||||||
- name: Setup Submodule
|
- name: Setup Submodule
|
||||||
run: |
|
run: |
|
||||||
@@ -34,9 +34,9 @@ jobs:
|
|||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
|
|
||||||
- name: Setup .NET Core
|
- name: Setup .NET Core
|
||||||
uses: actions/setup-dotnet@v3
|
uses: actions/setup-dotnet@v3.2.0
|
||||||
with:
|
with:
|
||||||
dotnet-version: 6.0.x
|
dotnet-version: 7.0.x
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: dotnet restore
|
run: dotnet restore
|
||||||
|
|||||||
6
.github/workflows/build-test-debug.yml
vendored
6
.github/workflows/build-test-debug.yml
vendored
@@ -19,7 +19,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Master
|
- name: Checkout Master
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3.6.0
|
||||||
|
|
||||||
- name: Setup Submodule
|
- name: Setup Submodule
|
||||||
run: |
|
run: |
|
||||||
@@ -34,9 +34,9 @@ jobs:
|
|||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
|
|
||||||
- name: Setup .NET Core
|
- name: Setup .NET Core
|
||||||
uses: actions/setup-dotnet@v3
|
uses: actions/setup-dotnet@v3.2.0
|
||||||
with:
|
with:
|
||||||
dotnet-version: 6.0.x
|
dotnet-version: 7.0.x
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: dotnet restore
|
run: dotnet restore
|
||||||
|
|||||||
6
.github/workflows/build-test-release.yml
vendored
6
.github/workflows/build-test-release.yml
vendored
@@ -19,7 +19,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Master
|
- name: Checkout Master
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3.6.0
|
||||||
|
|
||||||
- name: Setup Submodule
|
- name: Setup Submodule
|
||||||
run: |
|
run: |
|
||||||
@@ -34,9 +34,9 @@ jobs:
|
|||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
|
|
||||||
- name: Setup .NET Core
|
- name: Setup .NET Core
|
||||||
uses: actions/setup-dotnet@v3
|
uses: actions/setup-dotnet@v3.2.0
|
||||||
with:
|
with:
|
||||||
dotnet-version: 6.0.x
|
dotnet-version: 7.0.x
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: dotnet restore
|
run: dotnet restore
|
||||||
|
|||||||
6
.github/workflows/publish.yml
vendored
6
.github/workflows/publish.yml
vendored
@@ -16,13 +16,13 @@ jobs:
|
|||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: sudo apt-get install -y python3-paramiko
|
run: sudo apt-get install -y python3-paramiko
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3.6.0
|
||||||
with:
|
with:
|
||||||
submodules: 'recursive'
|
submodules: 'recursive'
|
||||||
- name: Setup .NET Core
|
- name: Setup .NET Core
|
||||||
uses: actions/setup-dotnet@v3
|
uses: actions/setup-dotnet@v3.2.0
|
||||||
with:
|
with:
|
||||||
dotnet-version: 6.0.100
|
dotnet-version: 7.0.x
|
||||||
|
|
||||||
- name: Get Engine Tag
|
- name: Get Engine Tag
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
2
.github/workflows/rsi-diff.yml
vendored
2
.github/workflows/rsi-diff.yml
vendored
@@ -11,7 +11,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3.6.0
|
||||||
|
|
||||||
- name: Get changed files
|
- name: Get changed files
|
||||||
id: files
|
id: files
|
||||||
|
|||||||
6
.github/workflows/test-packaging.yml
vendored
6
.github/workflows/test-packaging.yml
vendored
@@ -34,7 +34,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Master
|
- name: Checkout Master
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3.6.0
|
||||||
|
|
||||||
- name: Setup Submodule
|
- name: Setup Submodule
|
||||||
run: |
|
run: |
|
||||||
@@ -49,9 +49,9 @@ jobs:
|
|||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
|
|
||||||
- name: Setup .NET Core
|
- name: Setup .NET Core
|
||||||
uses: actions/setup-dotnet@v3
|
uses: actions/setup-dotnet@v3.2.0
|
||||||
with:
|
with:
|
||||||
dotnet-version: 6.0.x
|
dotnet-version: 7.0.x
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: dotnet restore
|
run: dotnet restore
|
||||||
|
|||||||
6
.github/workflows/update-wiki.yml
vendored
6
.github/workflows/update-wiki.yml
vendored
@@ -21,7 +21,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Master
|
- name: Checkout Master
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3.6.0
|
||||||
|
|
||||||
- name: Setup Submodule
|
- name: Setup Submodule
|
||||||
run: |
|
run: |
|
||||||
@@ -36,9 +36,9 @@ jobs:
|
|||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
|
|
||||||
- name: Setup .NET Core
|
- name: Setup .NET Core
|
||||||
uses: actions/setup-dotnet@v3
|
uses: actions/setup-dotnet@v3.2.0
|
||||||
with:
|
with:
|
||||||
dotnet-version: 6.0.100
|
dotnet-version: 7.0.x
|
||||||
|
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
run: dotnet restore
|
run: dotnet restore
|
||||||
|
|||||||
2
.github/workflows/validate-rgas.yml
vendored
2
.github/workflows/validate-rgas.yml
vendored
@@ -12,7 +12,7 @@ jobs:
|
|||||||
if: github.actor != 'PJBot' && github.event.pull_request.draft == false
|
if: github.actor != 'PJBot' && github.event.pull_request.draft == false
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3.6.0
|
||||||
- name: Setup Submodule
|
- name: Setup Submodule
|
||||||
run: git submodule update --init
|
run: git submodule update --init
|
||||||
- name: Pull engine updates
|
- name: Pull engine updates
|
||||||
|
|||||||
2
.github/workflows/validate-rsis.yml
vendored
2
.github/workflows/validate-rsis.yml
vendored
@@ -13,7 +13,7 @@ jobs:
|
|||||||
name: Validate RSIs
|
name: Validate RSIs
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3.6.0
|
||||||
- name: Setup Submodule
|
- name: Setup Submodule
|
||||||
run: git submodule update --init
|
run: git submodule update --init
|
||||||
- name: Pull engine updates
|
- name: Pull engine updates
|
||||||
|
|||||||
2
.github/workflows/validate_mapfiles.yml
vendored
2
.github/workflows/validate_mapfiles.yml
vendored
@@ -12,7 +12,7 @@ jobs:
|
|||||||
if: github.actor != 'PJBot' && github.event.pull_request.draft == false
|
if: github.actor != 'PJBot' && github.event.pull_request.draft == false
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3.6.0
|
||||||
- name: Setup Submodule
|
- name: Setup Submodule
|
||||||
run: git submodule update --init
|
run: git submodule update --init
|
||||||
- name: Pull engine updates
|
- name: Pull engine updates
|
||||||
|
|||||||
6
.github/workflows/yaml-linter.yml
vendored
6
.github/workflows/yaml-linter.yml
vendored
@@ -13,7 +13,7 @@ jobs:
|
|||||||
if: github.actor != 'PJBot' && github.event.pull_request.draft == false
|
if: github.actor != 'PJBot' && github.event.pull_request.draft == false
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3.6.0
|
||||||
- name: Setup submodule
|
- name: Setup submodule
|
||||||
run: |
|
run: |
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
@@ -24,9 +24,9 @@ jobs:
|
|||||||
cd RobustToolbox/
|
cd RobustToolbox/
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
- name: Setup .NET Core
|
- name: Setup .NET Core
|
||||||
uses: actions/setup-dotnet@v3
|
uses: actions/setup-dotnet@v3.2.0
|
||||||
with:
|
with:
|
||||||
dotnet-version: 6.0.100
|
dotnet-version: 7.0.x
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: dotnet restore
|
run: dotnet restore
|
||||||
- name: Build
|
- name: Build
|
||||||
|
|||||||
Reference in New Issue
Block a user