mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-14 06:03:58 +00:00
fix: usage of deprecated
version of Node.js
This commit is contained in:
parent
50bdeaad07
commit
3d6bd24dcb
1 changed files with 8 additions and 8 deletions
16
.github/workflows/metrics.yaml
vendored
16
.github/workflows/metrics.yaml
vendored
|
@ -58,7 +58,7 @@ jobs:
|
||||||
key: ${{ runner.os }}-target-${{ github.sha }}
|
key: ${{ runner.os }}-target-${{ github.sha }}
|
||||||
|
|
||||||
- name: Upload build metrics
|
- name: Upload build metrics
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: build-${{ github.sha }}
|
name: build-${{ github.sha }}
|
||||||
path: target/build.json
|
path: target/build.json
|
||||||
|
@ -95,7 +95,7 @@ jobs:
|
||||||
run: cargo xtask metrics "${{ matrix.names }}"
|
run: cargo xtask metrics "${{ matrix.names }}"
|
||||||
|
|
||||||
- name: Upload metrics
|
- name: Upload metrics
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ${{ matrix.names }}-${{ github.sha }}
|
name: ${{ matrix.names }}-${{ github.sha }}
|
||||||
path: target/${{ matrix.names }}.json
|
path: target/${{ matrix.names }}.json
|
||||||
|
@ -109,32 +109,32 @@ jobs:
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Download build metrics
|
- name: Download build metrics
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: build-${{ github.sha }}
|
name: build-${{ github.sha }}
|
||||||
|
|
||||||
- name: Download self metrics
|
- name: Download self metrics
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: self-${{ github.sha }}
|
name: self-${{ github.sha }}
|
||||||
|
|
||||||
- name: Download ripgrep-13.0.0 metrics
|
- name: Download ripgrep-13.0.0 metrics
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ripgrep-13.0.0-${{ github.sha }}
|
name: ripgrep-13.0.0-${{ github.sha }}
|
||||||
|
|
||||||
- name: Download webrender-2022 metrics
|
- name: Download webrender-2022 metrics
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: webrender-2022-${{ github.sha }}
|
name: webrender-2022-${{ github.sha }}
|
||||||
|
|
||||||
- name: Download diesel-1.4.8 metrics
|
- name: Download diesel-1.4.8 metrics
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: diesel-1.4.8-${{ github.sha }}
|
name: diesel-1.4.8-${{ github.sha }}
|
||||||
|
|
||||||
- name: Download hyper-0.14.18 metrics
|
- name: Download hyper-0.14.18 metrics
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: hyper-0.14.18-${{ github.sha }}
|
name: hyper-0.14.18-${{ github.sha }}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue