From 5d9c8d4f7d7c16fe274a1a3383ca4db4b81a1e07 Mon Sep 17 00:00:00 2001 From: Jason Dove <1695733+jasongdove@users.noreply.github.com> Date: Mon, 4 Sep 2023 08:38:10 -0500 Subject: [PATCH] update checkout actions (#1415) --- .github/workflows/artifacts.yml | 4 ++-- .github/workflows/ci.yml | 2 +- .github/workflows/docker.yml | 2 +- .github/workflows/pr.yml | 6 +++--- .github/workflows/release.yml | 2 +- .github/workflows/vue-lint.yml | 8 ++++---- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index f1a4f57de..9c02b173c 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -41,7 +41,7 @@ jobs: target: osx-arm64 steps: - name: Get the sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: true @@ -172,7 +172,7 @@ jobs: target: win-x64 steps: - name: Get the sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c2b9b7eab..1acec767d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Get the sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Extract Docker Tag diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 0fa979752..98da169c6 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -49,7 +49,7 @@ jobs: qemu: true steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index f8e908bbd..6d4d632f8 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -6,7 +6,7 @@ jobs: runs-on: windows-latest steps: - name: Get the sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup .NET Core uses: actions/setup-dotnet@v3 @@ -41,7 +41,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Get the sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup .NET Core uses: actions/setup-dotnet@v3 @@ -66,7 +66,7 @@ jobs: runs-on: macos-11 steps: - name: Get the sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bd7e5284a..d18679d6f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Get the sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Extract Docker Tag diff --git a/.github/workflows/vue-lint.yml b/.github/workflows/vue-lint.yml index 98203d634..9c87ec1d5 100644 --- a/.github/workflows/vue-lint.yml +++ b/.github/workflows/vue-lint.yml @@ -7,12 +7,12 @@ jobs: steps: # Checkout the current repo - name: Checkout current repository - uses: actions/checkout@v3 - # Setup NodeJS version 14 - - name: Setup NodeJS V14.x.x + uses: actions/checkout@v4 + # Setup NodeJS version 16 + - name: Setup NodeJS V16.x.x uses: actions/setup-node@v3 with: - node-version: '14' + node-version: '16' # CD into the current client directory and lint and build the client - name: Lint and Build the client run: |