Skip to content

Commit

Permalink
Bump actions/setup-dotnet from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 3 to 4.
- [Release notes](https://github.com/actions/setup-dotnet/releases)
- [Commits](actions/setup-dotnet@v3...v4)

---
updated-dependencies:
- dependency-name: actions/setup-dotnet
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Apr 19, 2024
1 parent 7dc8d4b commit bdb38f5
Show file tree
Hide file tree
Showing 5 changed files with 199 additions and 199 deletions.
82 changes: 41 additions & 41 deletions .github/workflows/Benchmark.yml
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
# ***********************************************************
# * TakymLib *
# * Copyright (C) 2020-2022 Yigty.ORG; all rights reserved. *
# * Copyright (C) 2020-2022 Takym. *
# * *
# * distributed under the MIT License. *
# ***********************************************************

name: "Benchmark"

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
Benchmark:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
# Build
- name: Build (Target Programs)
run: dotnet build -c ReleaseW
- name: Build (Testing Environment)
run: dotnet build -c BenchmarkW
# Test
- name: Test
run: dotnet test -c BenchmarkW --no-build --verbosity normal
# Upload Artifacts
- name: Save Benchmarks Results
uses: actions/upload-artifact@v3.1.0
with:
name: benchmarks-results
path: tests/bin/Benchmark/**
# ***********************************************************
# * TakymLib *
# * Copyright (C) 2020-2022 Yigty.ORG; all rights reserved. *
# * Copyright (C) 2020-2022 Takym. *
# * *
# * distributed under the MIT License. *
# ***********************************************************

name: "Benchmark"

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
Benchmark:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
# Build
- name: Build (Target Programs)
run: dotnet build -c ReleaseW
- name: Build (Testing Environment)
run: dotnet build -c BenchmarkW
# Test
- name: Test
run: dotnet test -c BenchmarkW --no-build --verbosity normal
# Upload Artifacts
- name: Save Benchmarks Results
uses: actions/upload-artifact@v3.1.0
with:
name: benchmarks-results
path: tests/bin/Benchmark/**
92 changes: 46 additions & 46 deletions .github/workflows/BuildTest.yml
Original file line number Diff line number Diff line change
@@ -1,46 +1,46 @@
# ***********************************************************
# * TakymLib *
# * Copyright (C) 2020-2022 Yigty.ORG; all rights reserved. *
# * Copyright (C) 2020-2022 Takym. *
# * *
# * distributed under the MIT License. *
# ***********************************************************

name: "BuildTest"

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
BuildTest:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ windows-latest, ubuntu-latest, macos-latest ]
bc: [ Debug, Release ]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
# Build
- name: BuildW
if: matrix.os == 'windows-latest'
run: dotnet build -c ${{ matrix.bc }}W
- name: Build
if: matrix.os != 'windows-latest'
run: dotnet build -c ${{ matrix.bc }}
# Test
- name: TestW
if: matrix.os == 'windows-latest'
run: dotnet test -c ${{ matrix.bc }}W --no-build --verbosity normal
- name: Test
if: matrix.os != 'windows-latest'
run: dotnet test -c ${{ matrix.bc }} --no-build --verbosity normal
# ***********************************************************
# * TakymLib *
# * Copyright (C) 2020-2022 Yigty.ORG; all rights reserved. *
# * Copyright (C) 2020-2022 Takym. *
# * *
# * distributed under the MIT License. *
# ***********************************************************

name: "BuildTest"

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
BuildTest:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ windows-latest, ubuntu-latest, macos-latest ]
bc: [ Debug, Release ]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
# Build
- name: BuildW
if: matrix.os == 'windows-latest'
run: dotnet build -c ${{ matrix.bc }}W
- name: Build
if: matrix.os != 'windows-latest'
run: dotnet build -c ${{ matrix.bc }}
# Test
- name: TestW
if: matrix.os == 'windows-latest'
run: dotnet test -c ${{ matrix.bc }}W --no-build --verbosity normal
- name: Test
if: matrix.os != 'windows-latest'
run: dotnet test -c ${{ matrix.bc }} --no-build --verbosity normal
94 changes: 47 additions & 47 deletions .github/workflows/CodeQL.2.yml
Original file line number Diff line number Diff line change
@@ -1,47 +1,47 @@
# ***********************************************************
# * TakymLib *
# * Copyright (C) 2020-2022 Yigty.ORG; all rights reserved. *
# * Copyright (C) 2020-2022 Takym. *
# * *
# * distributed under the MIT License. *
# ***********************************************************

name: "CodeQL (2)"

on:
schedule:
- cron: '0 0 1 * *'

jobs:
analyze:
name: Analyze
runs-on: windows-2019

strategy:
fail-fast: true
matrix:
bc: [ Debug, DebugW, Release, ReleaseW, Benchmark, BenchmarkW ]

steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive

# Initialize
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: csharp

# Build
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Build
run: dotnet build -c ${{ matrix.bc }}

# Analyze
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
# ***********************************************************
# * TakymLib *
# * Copyright (C) 2020-2022 Yigty.ORG; all rights reserved. *
# * Copyright (C) 2020-2022 Takym. *
# * *
# * distributed under the MIT License. *
# ***********************************************************

name: "CodeQL (2)"

on:
schedule:
- cron: '0 0 1 * *'

jobs:
analyze:
name: Analyze
runs-on: windows-2019

strategy:
fail-fast: true
matrix:
bc: [ Debug, DebugW, Release, ReleaseW, Benchmark, BenchmarkW ]

steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive

# Initialize
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: csharp

# Build
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
- name: Build
run: dotnet build -c ${{ matrix.bc }}

# Analyze
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
128 changes: 64 additions & 64 deletions .github/workflows/CodeQL.yml
Original file line number Diff line number Diff line change
@@ -1,64 +1,64 @@
# ***********************************************************
# * TakymLib *
# * Copyright (C) 2020-2022 Yigty.ORG; all rights reserved. *
# * Copyright (C) 2020-2022 Takym. *
# * *
# * distributed under the MIT License. *
# ***********************************************************

name: "CodeQL"

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
#schedule:
# - cron: '37 15 * * 2'

jobs:
analyze:
name: Analyze
runs-on: windows-2019

strategy:
fail-fast: false
matrix:
bc: [ DebugW, ReleaseW ]

steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive

# Initialize
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: csharp

# Build
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Build
run: dotnet build -c ${{ matrix.bc }}

# Analyze
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
continue-on-error: true
with:
ram: 8192

- name: Copy Temp Files
run: robocopy D:\a\_temp _temp /MIR
continue-on-error: true

- name: Save All Files
uses: actions/upload-artifact@v3.1.0
with:
name: files
path: "*"
# ***********************************************************
# * TakymLib *
# * Copyright (C) 2020-2022 Yigty.ORG; all rights reserved. *
# * Copyright (C) 2020-2022 Takym. *
# * *
# * distributed under the MIT License. *
# ***********************************************************

name: "CodeQL"

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
#schedule:
# - cron: '37 15 * * 2'

jobs:
analyze:
name: Analyze
runs-on: windows-2019

strategy:
fail-fast: false
matrix:
bc: [ DebugW, ReleaseW ]

steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive

# Initialize
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: csharp

# Build
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
- name: Build
run: dotnet build -c ${{ matrix.bc }}

# Analyze
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
continue-on-error: true
with:
ram: 8192

- name: Copy Temp Files
run: robocopy D:\a\_temp _temp /MIR
continue-on-error: true

- name: Save All Files
uses: actions/upload-artifact@v3.1.0
with:
name: files
path: "*"
Loading

0 comments on commit bdb38f5

Please sign in to comment.