diff --git a/.github/workflows/build-ci.yml b/.github/workflows/build-ci.yml index b5483a75..ca134da2 100644 --- a/.github/workflows/build-ci.yml +++ b/.github/workflows/build-ci.yml @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 diff --git a/.github/workflows/build-prerelease.yml b/.github/workflows/build-prerelease.yml index 3a819dfa..60750719 100644 --- a/.github/workflows/build-prerelease.yml +++ b/.github/workflows/build-prerelease.yml @@ -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 }}' diff --git a/.github/workflows/publish-build.yml b/.github/workflows/publish-build.yml index 5c601bb9..8716a9b4 100644 --- a/.github/workflows/publish-build.yml +++ b/.github/workflows/publish-build.yml @@ -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 }}