summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorSteven Fackler <sfackler@gmail.com>2020-11-29 09:42:12 -0500
committerGitHub <noreply@github.com>2020-11-29 09:42:12 -0500
commit838e2d1cc0c847933a6afa198170d598e6a1719f (patch)
tree9bbee083123c9431284c1f26c9c0be9273379f00 /.github/workflows/ci.yml
parentc6c4c0577d1ea191b53b197a17e6819abbe51098 (diff)
downloadrust-openssl-838e2d1cc0c847933a6afa198170d598e6a1719f.zip
Don't update rustup in GH actions
The binary isn't writeable so an update causes the build to fail :(
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index f7f7e9b7..9a09c6ad 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -19,7 +19,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install Rust
- run: rustup update stable && rustup default stable
+ run: rustup update --no-self-update stable && rustup default stable
- name: Check formatting
run: cargo fmt --all -- --check
@@ -29,7 +29,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install Rust
- run: rustup update stable && rustup default stable
+ run: rustup update --no-self-update stable && rustup default stable
- name: Get rust version
id: rust-version
run: echo "::set-output name=version::$(rustc --version)"
@@ -63,7 +63,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install Rust
- run: rustup update 1.34.0 && rustup default 1.34.0
+ run: rustup update --no-self-update 1.34.0 && rustup default 1.34.0
- name: Get rust version
id: rust-version
run: echo "::set-output name=version::$(rustc --version)"
@@ -99,7 +99,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install Rust
- run: rustup update stable && rustup default stable
+ run: rustup update --no-self-update stable && rustup default stable
- name: Get rust version
id: rust-version
run: echo "::set-output name=version::$(rustc --version)"