diff options
| author | Yuki Okushi <jtitor@2k36.org> | 2024-01-29 07:45:18 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-28 19:45:18 -0300 |
| commit | e5b0c818bcf23094557a71a8cee2c3931d7f9dd9 (patch) | |
| tree | 44d7e3ba6a22025bcbba9127001fc3f1b29462d4 /src/doc/rustc-dev-guide/.github/workflows | |
| parent | 85d251853ef74d828849a204670d54f43272d28d (diff) | |
| download | rust-e5b0c818bcf23094557a71a8cee2c3931d7f9dd9.tar.gz rust-e5b0c818bcf23094557a71a8cee2c3931d7f9dd9.zip | |
Upgrade actions to use Node.js v20 (#1863)
Diffstat (limited to 'src/doc/rustc-dev-guide/.github/workflows')
| -rw-r--r-- | src/doc/rustc-dev-guide/.github/workflows/ci.yml | 6 | ||||
| -rw-r--r-- | src/doc/rustc-dev-guide/.github/workflows/date-check.yml | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/doc/rustc-dev-guide/.github/workflows/ci.yml b/src/doc/rustc-dev-guide/.github/workflows/ci.yml index bb0493bf7fe..7b57831a109 100644 --- a/src/doc/rustc-dev-guide/.github/workflows/ci.yml +++ b/src/doc/rustc-dev-guide/.github/workflows/ci.yml @@ -22,21 +22,21 @@ jobs: BASE_SHA: ${{ github.event.pull_request.base.sha }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: # linkcheck needs the base commit. fetch-depth: 0 - name: Cache binaries id: mdbook-cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cargo/bin key: ${{ runner.os }}-${{ env.MDBOOK_VERSION }}--${{ env.MDBOOK_LINKCHECK_VERSION }}--${{ env.MDBOOK_TOC_VERSION }}--${{ env.MDBOOK_MERMAID_VERSION }} - name: Cache linkcheck - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/book/linkcheck diff --git a/src/doc/rustc-dev-guide/.github/workflows/date-check.yml b/src/doc/rustc-dev-guide/.github/workflows/date-check.yml index bf2a7a81923..356aeb4e297 100644 --- a/src/doc/rustc-dev-guide/.github/workflows/date-check.yml +++ b/src/doc/rustc-dev-guide/.github/workflows/date-check.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Checkout repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Ensure Rust is up-to-date run: | @@ -27,7 +27,7 @@ jobs: cargo run -- ../../src/ > ../../date-check-output.txt - name: Open issue - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const fs = require('fs'); |
