Skip to content

Commit 9d92437

Browse files
authored
Merge pull request #24 from AinoraZ/AZ/ci/update-actions
Updated To New Github Action Versions
2 parents 0fe914a + 37e68d7 commit 9d92437

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/build-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
os: [ubuntu-latest]
1919
dotnet-version: ["7.0.x"]
2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v3
2222
with:
2323
persist-credentials: false
2424
- name: Setup dotnet ${{ matrix.dotnet-version }}
25-
uses: actions/setup-dotnet@v1
25+
uses: actions/setup-dotnet@v3
2626
with:
2727
dotnet-version: ${{ matrix.dotnet-version }}
2828
- name: Install deps
@@ -34,14 +34,14 @@ jobs:
3434
- name: Create package
3535
run: dotnet pack -c Release --no-build
3636
- name: Archive build artifacts for OS-${{ matrix.os }}
37-
uses: actions/upload-artifact@v2
37+
uses: actions/upload-artifact@v3
3838
with:
3939
name: build-artifacts-${{ matrix.os }}
4040
path: ./src/Ainoraz.EFCore.IncludeBuilder/bin/Release/
4141
- name: Benchmark
4242
run: dotnet run --project ./tests/Ainoraz.EFCore.IncludeBuilder.Benchmarks -c Release --no-build
4343
- name: Archive benchmarks for OS-${{ matrix.os }}
44-
uses: actions/upload-artifact@v2
44+
uses: actions/upload-artifact@v3
4545
with:
4646
name: benchmarks-${{ matrix.os }}
4747
path: ./BenchmarkDotNet.Artifacts/

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ jobs:
1414
strategy:
1515
matrix:
1616
os: [ubuntu-latest]
17-
dotnet-version: ["6.0.x"]
17+
dotnet-version: ["7.0.x"]
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v3
2121
with:
2222
fetch-depth: 0
2323
- name: Setup dotnet ${{ matrix.dotnet-version }}
24-
uses: actions/setup-dotnet@v1
24+
uses: actions/setup-dotnet@v3
2525
with:
2626
dotnet-version: ${{ matrix.dotnet-version }}
2727
- name: Set VERSION variable from tag

0 commit comments

Comments
 (0)