From 16742d68ff0f15b6c34c80deb2aad535a502c98d Mon Sep 17 00:00:00 2001 From: Robert Dailey Date: Sat, 9 Mar 2024 13:29:57 -0600 Subject: [PATCH] ci: Upgrade Node v16 actions to v20 --- .github/actions/download-tar/action.yml | 2 +- .github/actions/upload-tar/action.yml | 2 +- .github/workflows/inspect-code.yml | 2 +- .github/workflows/reusable-build.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/download-tar/action.yml b/.github/actions/download-tar/action.yml index b0e08324..19a3e331 100644 --- a/.github/actions/download-tar/action.yml +++ b/.github/actions/download-tar/action.yml @@ -15,7 +15,7 @@ inputs: runs: using: composite steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: ${{ inputs.name }} path: ${{ inputs.path }} diff --git a/.github/actions/upload-tar/action.yml b/.github/actions/upload-tar/action.yml index 1c4c43d7..536e2661 100644 --- a/.github/actions/upload-tar/action.yml +++ b/.github/actions/upload-tar/action.yml @@ -18,7 +18,7 @@ runs: shell: bash working-directory: ${{ inputs.path }} - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: ${{ inputs.name }} path: ${{ inputs.path }}/artifact.tar diff --git a/.github/workflows/inspect-code.yml b/.github/workflows/inspect-code.yml index 274c51ef..349a05da 100644 --- a/.github/workflows/inspect-code.yml +++ b/.github/workflows/inspect-code.yml @@ -73,7 +73,7 @@ jobs: git diff --exit-code | tee code-cleanup.patch - name: Publish Patch File - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: code-cleanup-patch-files diff --git a/.github/workflows/reusable-build.yml b/.github/workflows/reusable-build.yml index 523b42d7..6cb37eda 100644 --- a/.github/workflows/reusable-build.yml +++ b/.github/workflows/reusable-build.yml @@ -29,7 +29,7 @@ jobs: fetch-depth: 0 # avoid shallow clone for GitVersion - name: Setup .NET Core SDK ${{ env.dotnetVersion }} - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: ${{ env.dotnetVersion }}