Skip to content

Commit

Permalink
GitHub Actions: don't depend on patch versions (#4646)
Browse files Browse the repository at this point in the history
# Objective

- don't depend on patch versions in GitHub Actions to avoid dependant frequent updates (like #4641, #4584)
  • Loading branch information
mockersf committed May 2, 2022
1 parent 241a61d commit b863c90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

0 comments on commit b863c90

Please sign in to comment.