Browse Source

update checkout actions (#1415)

pull/1416/head
Jason Dove 2 years ago committed by GitHub
parent
commit
5d9c8d4f7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      .github/workflows/artifacts.yml
  2. 2
      .github/workflows/ci.yml
  3. 2
      .github/workflows/docker.yml
  4. 6
      .github/workflows/pr.yml
  5. 2
      .github/workflows/release.yml
  6. 8
      .github/workflows/vue-lint.yml

4
.github/workflows/artifacts.yml

@ -41,7 +41,7 @@ jobs:
target: osx-arm64 target: osx-arm64
steps: steps:
- name: Get the sources - name: Get the sources
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
submodules: true submodules: true
@ -172,7 +172,7 @@ jobs:
target: win-x64 target: win-x64
steps: steps:
- name: Get the sources - name: Get the sources
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0

2
.github/workflows/ci.yml

@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Get the sources - name: Get the sources
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Extract Docker Tag - name: Extract Docker Tag

2
.github/workflows/docker.yml

@ -49,7 +49,7 @@ jobs:
qemu: true qemu: true
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0

6
.github/workflows/pr.yml

@ -6,7 +6,7 @@ jobs:
runs-on: windows-latest runs-on: windows-latest
steps: steps:
- name: Get the sources - name: Get the sources
uses: actions/checkout@v3 uses: actions/checkout@v4
- name: Setup .NET Core - name: Setup .NET Core
uses: actions/setup-dotnet@v3 uses: actions/setup-dotnet@v3
@ -41,7 +41,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Get the sources - name: Get the sources
uses: actions/checkout@v3 uses: actions/checkout@v4
- name: Setup .NET Core - name: Setup .NET Core
uses: actions/setup-dotnet@v3 uses: actions/setup-dotnet@v3
@ -66,7 +66,7 @@ jobs:
runs-on: macos-11 runs-on: macos-11
steps: steps:
- name: Get the sources - name: Get the sources
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
submodules: true submodules: true

2
.github/workflows/release.yml

@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Get the sources - name: Get the sources
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Extract Docker Tag - name: Extract Docker Tag

8
.github/workflows/vue-lint.yml

@ -7,12 +7,12 @@ jobs:
steps: steps:
# Checkout the current repo # Checkout the current repo
- name: Checkout current repository - name: Checkout current repository
uses: actions/checkout@v3 uses: actions/checkout@v4
# Setup NodeJS version 14 # Setup NodeJS version 16
- name: Setup NodeJS V14.x.x - name: Setup NodeJS V16.x.x
uses: actions/setup-node@v3 uses: actions/setup-node@v3
with: with:
node-version: '14' node-version: '16'
# CD into the current client directory and lint and build the client # CD into the current client directory and lint and build the client
- name: Lint and Build the client - name: Lint and Build the client
run: | run: |

Loading…
Cancel
Save