diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-07-11 11:07:35 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-07-11 11:09:47 +0200 |
commit | 1fe3139713fb9e5f000af458154ddf634d6ebe64 (patch) | |
tree | 18021f1d460d7210119a567b4c22d8518f5e554b /.github/workflows/main.yml | |
parent | 79e3ed5337b4927b0ede76513bfdf9f721540fa6 (diff) | |
download | markdown-rs-1fe3139713fb9e5f000af458154ddf634d6ebe64.tar.gz markdown-rs-1fe3139713fb9e5f000af458154ddf634d6ebe64.tar.bz2 markdown-rs-1fe3139713fb9e5f000af458154ddf634d6ebe64.zip |
Update `actions/checkout`
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r-- | .github/workflows/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 24d61fa..9605d54 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,7 +6,7 @@ jobs: stable: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: toolchain: stable @@ -19,7 +19,7 @@ jobs: - run: cargo doc --document-private-items --no-deps --release - run: echo '<!doctypehtml><html lang=en><meta charset=utf8><title>Redirecting…</title><link rel=canonical href=https://wooorm.com/micromark-rs/micromark><script>location = "https://wooorm.com/micromark-rs/micromark"</script><meta http-equiv=refresh content=0;url=https://wooorm.com/micromark-rs/micromark><meta name=robots content=noindex><body><h1>Redirecting…</h1><p><a href=https://wooorm.com/micromark-rs/micromark>Click here if you are not redirected.</a>' > target/doc/index.html - name: Deploy - uses: JamesIves/github-pages-deploy-action@v4.3.3 + uses: JamesIves/github-pages-deploy-action@v4 with: branch: gh-pages folder: target/doc |