summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorIlya Mashchenko <ilya@netdata.cloud>2020-02-25 01:42:31 +0900
committerGitHub <noreply@github.com>2020-02-24 11:42:31 -0500
commit8976349db7fe26b70669f43b62c7e3a21ba7f1ba (patch)
tree7207fb6386ad813787c38b3891a704cac139ddfa /.github
parentc6d945200f201b05c2b019fa862cdf080a39a9d4 (diff)
gihtub/actions: switch to checkout@v2 (#8170)
* github/workflow/build: actions/checkout@v1 => actions/checkout@v2 * github/workflow/installer: actions/checkout@v1 => actions/checkout@v2 * github/workflow/reviewdog: actions/checkout@v1 => actions/checkout@v2 * github/workflow: add a name for checkout step
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml3
-rw-r--r--.github/workflows/installer.yml3
-rw-r--r--.github/workflows/reviewdog.yml9
3 files changed, 10 insertions, 5 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 9b91588145..de5e347073 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -63,7 +63,8 @@ jobs:
pre: 'apt-get update'
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v1
+ - name: Git clone repository
+ uses: actions/checkout@v2
- name: Build on ${{ matrix.distro }}
env:
PRE: ${{ matrix.pre }}
diff --git a/.github/workflows/installer.yml b/.github/workflows/installer.yml
index 69a6fe6c99..b14536a8f1 100644
--- a/.github/workflows/installer.yml
+++ b/.github/workflows/installer.yml
@@ -67,7 +67,8 @@ jobs:
pre: 'apt-get update'
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v1
+ - name: Git clone repository
+ uses: actions/checkout@v2
- name: Test installed-required-packages.sh on ${{ matrix.distro }}
env:
PRE: ${{ matrix.pre }}
diff --git a/.github/workflows/reviewdog.yml b/.github/workflows/reviewdog.yml
index c8e7d147f8..54673b47f8 100644
--- a/.github/workflows/reviewdog.yml
+++ b/.github/workflows/reviewdog.yml
@@ -5,7 +5,8 @@ jobs:
name: runner / golangci-lint
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v1
+ - name: Git clone repository
+ uses: actions/checkout@v2
- name: golangci-lint
uses: reviewdog/action-golangci-lint@v1
with:
@@ -16,7 +17,8 @@ jobs:
name: runner / eslint
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v1
+ - name: Git clone repository
+ uses: actions/checkout@v2
- name: eslint
uses: reviewdog/action-eslint@v1
with:
@@ -28,7 +30,8 @@ jobs:
name: runner / shellcheck
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v1
+ - name: Git clone repository
+ uses: actions/checkout@v2
- name: shellcheck
uses: reviewdog/action-shellcheck@v1
with: