Skip to content

Commit

Permalink
Merge pull request #24 from AinoraZ/AZ/ci/update-actions
Browse files Browse the repository at this point in the history
Updated To New Github Action Versions
  • Loading branch information
AinoraZ committed Dec 27, 2022
2 parents 0fe914a + 37e68d7 commit 9d92437
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
os: [ubuntu-latest]
dotnet-version: ["7.0.x"]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
persist-credentials: false
- name: Setup dotnet ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install deps
Expand All @@ -34,14 +34,14 @@ jobs:
- name: Create package
run: dotnet pack -c Release --no-build
- name: Archive build artifacts for OS-${{ matrix.os }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: build-artifacts-${{ matrix.os }}
path: ./src/Ainoraz.EFCore.IncludeBuilder/bin/Release/
- name: Benchmark
run: dotnet run --project ./tests/Ainoraz.EFCore.IncludeBuilder.Benchmarks -c Release --no-build
- name: Archive benchmarks for OS-${{ matrix.os }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: benchmarks-${{ matrix.os }}
path: ./BenchmarkDotNet.Artifacts/
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
dotnet-version: ["6.0.x"]
dotnet-version: ["7.0.x"]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup dotnet ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Set VERSION variable from tag
Expand Down

0 comments on commit 9d92437

Please sign in to comment.