Skip to content

Commit f8c19f9

Browse files
committed
Auto merge of rust-lang#17104 - hamirmahal:fix/usage-of-deprecated-version-of-node-in-metrics-yml, r=lnicola
fix: usage of `deprecated` version of `Node.js` fixes rust-lang#17103.
2 parents 6a69491 + 70d769c commit f8c19f9

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Diff for: src/tools/rust-analyzer/.github/workflows/metrics.yaml

+8-8
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
key: ${{ runner.os }}-target-${{ github.sha }}
5959

6060
- name: Upload build metrics
61-
uses: actions/upload-artifact@v3
61+
uses: actions/upload-artifact@v4
6262
with:
6363
name: build-${{ github.sha }}
6464
path: target/build.json
@@ -95,7 +95,7 @@ jobs:
9595
run: cargo xtask metrics "${{ matrix.names }}"
9696

9797
- name: Upload metrics
98-
uses: actions/upload-artifact@v3
98+
uses: actions/upload-artifact@v4
9999
with:
100100
name: ${{ matrix.names }}-${{ github.sha }}
101101
path: target/${{ matrix.names }}.json
@@ -109,32 +109,32 @@ jobs:
109109
uses: actions/checkout@v4
110110

111111
- name: Download build metrics
112-
uses: actions/download-artifact@v3
112+
uses: actions/download-artifact@v4
113113
with:
114114
name: build-${{ github.sha }}
115115

116116
- name: Download self metrics
117-
uses: actions/download-artifact@v3
117+
uses: actions/download-artifact@v4
118118
with:
119119
name: self-${{ github.sha }}
120120

121121
- name: Download ripgrep-13.0.0 metrics
122-
uses: actions/download-artifact@v3
122+
uses: actions/download-artifact@v4
123123
with:
124124
name: ripgrep-13.0.0-${{ github.sha }}
125125

126126
- name: Download webrender-2022 metrics
127-
uses: actions/download-artifact@v3
127+
uses: actions/download-artifact@v4
128128
with:
129129
name: webrender-2022-${{ github.sha }}
130130

131131
- name: Download diesel-1.4.8 metrics
132-
uses: actions/download-artifact@v3
132+
uses: actions/download-artifact@v4
133133
with:
134134
name: diesel-1.4.8-${{ github.sha }}
135135

136136
- name: Download hyper-0.14.18 metrics
137-
uses: actions/download-artifact@v3
137+
uses: actions/download-artifact@v4
138138
with:
139139
name: hyper-0.14.18-${{ github.sha }}
140140

0 commit comments

Comments
 (0)