mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 04:33:37 +00:00
GitHub Actions: don't depend on patch versions (#4646)
# Objective - don't depend on patch versions in GitHub Actions to avoid dependant frequent updates (like #4641, #4584)
This commit is contained in:
parent
241a61d2a5
commit
b863c90fe8
1 changed files with 2 additions and 2 deletions
4
.github/workflows/docs.yml
vendored
4
.github/workflows/docs.yml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2.3.1
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Install Rust
|
||||
uses: actions-rs/toolchain@v1
|
||||
|
@ -50,7 +50,7 @@ jobs:
|
|||
touch target/doc/.nojekyll
|
||||
|
||||
- name: Deploy
|
||||
uses: JamesIves/github-pages-deploy-action@v4.3.0
|
||||
uses: JamesIves/github-pages-deploy-action@v4
|
||||
with:
|
||||
branch: gh-pages
|
||||
folder: target/doc
|
||||
|
|
Loading…
Reference in a new issue