mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 20:53:53 +00:00
Resolve Warnings in Action Summary (#7473)
# Objective - The CI Summary shows several fixable Warnings. Example from https://github.com/bevyengine/bevy/actions/runs/4075078887: ![Screenshot_20230202_152644](https://user-images.githubusercontent.com/66798382/216352644-62e9664b-c881-4bc5-9a80-694cef25df76.png) - The Job `check-compiles` provided an invalid input. - The Job `check-doc` uses an outdated Version of `actions/cache`. ## Solution - Remove the invalid `override` input. - Update `actions/cache@v2` to `actions/cache@v3`.
This commit is contained in:
parent
1a18ab34c4
commit
e03982583d
1 changed files with 1 additions and 2 deletions
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
|
@ -116,7 +116,6 @@ jobs:
|
||||||
- uses: dtolnay/rust-toolchain@stable
|
- uses: dtolnay/rust-toolchain@stable
|
||||||
with:
|
with:
|
||||||
toolchain: stable
|
toolchain: stable
|
||||||
override: true
|
|
||||||
- name: Install alsa and udev
|
- name: Install alsa and udev
|
||||||
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
|
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
|
||||||
- name: Check Compile
|
- name: Check Compile
|
||||||
|
@ -224,7 +223,7 @@ jobs:
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: actions/cache@v2
|
- uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
~/.cargo/bin/
|
~/.cargo/bin/
|
||||||
|
|
Loading…
Reference in a new issue