Skip to content

Commit

Permalink
action version update
Browse files Browse the repository at this point in the history
  • Loading branch information
nleach999 committed Jul 13, 2023
1 parent a28771a commit c1a65df
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
with:
dotnet-version: 6.*
- name: Fetch Code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Platform build win-x64
run: dotnet publish --self-contained -c ReleaseWindows -o artifacts/win-x64 -r win-x64
- name: Platform build linux-x64
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
with:
dotnet-version: 6.*
- name: Fetch Code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Platform build win-x64
run: dotnet publish --self-contained -c ReleaseWindows -o artifacts -r win-x64

Expand All @@ -75,7 +75,7 @@ jobs:
with:
dotnet-version: 6.*
- name: Fetch Code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Platform build linux-x64
run: dotnet publish --self-contained -c ReleaseLinux -o artifacts -r linux-x64

Expand All @@ -91,7 +91,7 @@ jobs:
id: buildx
uses: docker/setup-buildx-action@v1
- name: Fetch Code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Platform build linux-x64
run: dotnet publish --self-contained -c ReleaseLinux -o artifacts -r linux-x64
- name: Build Docker Container
Expand All @@ -106,7 +106,7 @@ jobs:
with:
dotnet-version: 6.*
- name: Fetch Code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Run Tests
run: dotnet test --verbosity q

Expand All @@ -130,7 +130,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Fetch Code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Build Release Notes
id: build_release_notes
uses: xu-cheng/latex-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
steps:
- uses: technote-space/workflow-conclusion-action@v2
- name: Fetch Code
uses: actions/checkout@v2
uses: actions/checkout@v3
if: env.WORKFLOW_CONCLUSION == 'failure'
- name: Remove Prerelease Tag
run: git push origin ':refs/tags/v${{ needs.create-tag.outputs.tag }}'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:


- name: Fetch Code @ tag v${{ inputs.tag }}
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: refs/tags/v${{ inputs.tag }}

Expand Down

0 comments on commit c1a65df

Please sign in to comment.