aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-03-07 08:11:26 +0000
committerGitHub <[email protected]>2020-03-07 08:11:26 +0000
commit919747c323359724b3b451a43ed82152014c73de (patch)
treebca4e426a3d1edab734f0c9b05bdfad07307b79c /.github
parent8218494b530be43e4baa045176a3e8b6ad0558fa (diff)
parentcf140ac99564c7762dd36a87cf4acb44858d076c (diff)
Merge #3505
3505: Use actions/checkout@v2 r=matklad a=CAD97 --- bors: r+ :robot: Co-authored-by: CAD97 <[email protected]>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yaml6
-rw-r--r--.github/workflows/release.yaml4
-rw-r--r--.github/workflows/rustdoc.yaml2
3 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 633015956..ee74d7486 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -13,7 +13,7 @@ jobs:
13 runs-on: ubuntu-latest 13 runs-on: ubuntu-latest
14 steps: 14 steps:
15 - name: Checkout repository 15 - name: Checkout repository
16 uses: actions/checkout@v1 16 uses: actions/checkout@v2
17 17
18 - run: cargo install cargo-audit 18 - run: cargo install cargo-audit
19 - run: cargo audit 19 - run: cargo audit
@@ -37,7 +37,7 @@ jobs:
37 37
38 steps: 38 steps:
39 - name: Checkout repository 39 - name: Checkout repository
40 uses: actions/checkout@v1 40 uses: actions/checkout@v2
41 41
42 # We need to disable the existing toolchain to avoid updating rust-docs 42 # We need to disable the existing toolchain to avoid updating rust-docs
43 # which takes a long time. The fastest way to do this is to rename the 43 # which takes a long time. The fastest way to do this is to rename the
@@ -94,7 +94,7 @@ jobs:
94 CC: gcc-4.9 94 CC: gcc-4.9
95 steps: 95 steps:
96 - name: Checkout repository 96 - name: Checkout repository
97 uses: actions/checkout@v1 97 uses: actions/checkout@v2
98 98
99 - name: Install Nodejs 99 - name: Install Nodejs
100 uses: actions/setup-node@v1 100 uses: actions/setup-node@v1
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index d58be0fd7..bb0b7ab31 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -23,7 +23,7 @@ jobs:
23 23
24 steps: 24 steps:
25 - name: Checkout repository 25 - name: Checkout repository
26 uses: actions/checkout@v1 26 uses: actions/checkout@v2
27 27
28 # We need to disable the existing toolchain to avoid updating rust-docs 28 # We need to disable the existing toolchain to avoid updating rust-docs
29 # which takes a long time. The fastest way to do this is to rename the 29 # which takes a long time. The fastest way to do this is to rename the
@@ -77,7 +77,7 @@ jobs:
77 - run: 'echo "TAG: $TAG"' 77 - run: 'echo "TAG: $TAG"'
78 78
79 - name: Checkout repository 79 - name: Checkout repository
80 uses: actions/checkout@v1 80 uses: actions/checkout@v2
81 81
82 - uses: actions/download-artifact@v1 82 - uses: actions/download-artifact@v1
83 with: 83 with:
diff --git a/.github/workflows/rustdoc.yaml b/.github/workflows/rustdoc.yaml
index e75e92695..c84ce5d48 100644
--- a/.github/workflows/rustdoc.yaml
+++ b/.github/workflows/rustdoc.yaml
@@ -13,7 +13,7 @@ jobs:
13 13
14 steps: 14 steps:
15 - name: Checkout repository 15 - name: Checkout repository
16 uses: actions/checkout@v1 16 uses: actions/checkout@v2
17 17
18 - name: Install Rust toolchain 18 - name: Install Rust toolchain
19 uses: actions-rs/toolchain@v1 19 uses: actions-rs/toolchain@v1