Skip to content

Commit a7955f4

Browse files
Merge pull request #69 from IowaComputerGurus/feature/update-builds
Updated all CI Build Tasks
2 parents b7aa6f6 + a61a68c commit a7955f4

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

.github/workflows/ci-build.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
env:
1515
solution-path: './src/ICG AspnetCore Utilities.sln'
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818
with:
1919
fetch-depth: 0
2020

@@ -28,7 +28,7 @@ jobs:
2828

2929
- name: Determine Version
3030
id: gitversion
31-
uses: gittools/actions/gitversion/execute@v0.9.14
31+
uses: gittools/actions/gitversion/execute@v0.9.15
3232
with:
3333
useConfigFile: true
3434

@@ -40,17 +40,19 @@ jobs:
4040
run: dotnet test "${{ env.solution-path }}" --no-build --configuration Release
4141

4242
code-quality:
43+
if: github.actor != 'dependabot[bot]'
4344
runs-on: windows-latest
4445
name: Analyze Code Quality
4546
env:
4647
solution-path: './src/ICG AspnetCore Utilities.sln'
4748
steps:
4849
- name: Set up JDK 11
49-
uses: actions/setup-java@v1
50+
uses: actions/setup-java@v3
5051
with:
51-
java-version: 1.11
52+
java-version: 11
53+
distribution: zulu
5254

53-
- uses: actions/checkout@v2
55+
- uses: actions/checkout@v3
5456
with:
5557
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
5658

@@ -81,7 +83,7 @@ jobs:
8183

8284
- name: Determine Version
8385
id: gitversion
84-
uses: gittools/actions/gitversion/execute@v0.9.14
86+
uses: gittools/actions/gitversion/execute@v0.9.15
8587
with:
8688
useConfigFile: true
8789

.github/workflows/release-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
env:
1414
solution-path: './src/ICG AspnetCore Utilities.sln'
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717
with:
1818
fetch-depth: 0
1919

@@ -27,7 +27,7 @@ jobs:
2727

2828
- name: Determine Version
2929
id: gitversion
30-
uses: gittools/actions/gitversion/execute@v0.9.14
30+
uses: gittools/actions/gitversion/execute@v0.9.15
3131
with:
3232
useConfigFile: true
3333

0 commit comments

Comments
 (0)