Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: usage of deprecated version of Node.js #17104

Merged
merged 1 commit into from
Apr 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/metrics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
key: ${{ runner.os }}-target-${{ github.sha }}

- name: Upload build metrics
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-${{ github.sha }}
path: target/build.json
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
run: cargo xtask metrics "${{ matrix.names }}"

- name: Upload metrics
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.names }}-${{ github.sha }}
path: target/${{ matrix.names }}.json
Expand All @@ -109,32 +109,32 @@ jobs:
uses: actions/checkout@v4

- name: Download build metrics
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: build-${{ github.sha }}

- name: Download self metrics
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: self-${{ github.sha }}

- name: Download ripgrep-13.0.0 metrics
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ripgrep-13.0.0-${{ github.sha }}

- name: Download webrender-2022 metrics
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: webrender-2022-${{ github.sha }}

- name: Download diesel-1.4.8 metrics
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: diesel-1.4.8-${{ github.sha }}

- name: Download hyper-0.14.18 metrics
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: hyper-0.14.18-${{ github.sha }}

Expand Down