Skip to content

Commit 18860a4

Browse files
authored
update GitHub Actions version (#1152)
1 parent 952cc5a commit 18860a4

9 files changed

+53
-53
lines changed

.github/workflows/Build_runner.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
name: pypi_upload
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v6
3030
- name: Set up Python 3.13
31-
uses: actions/setup-python@v5
31+
uses: actions/setup-python@v6
3232
with:
3333
python-version: 3.13
3434
- name: 🔨 Build and publish distribution 📦 to PyPI
@@ -46,9 +46,9 @@ jobs:
4646
needs: [pypi_upload]
4747
runs-on: ubuntu-latest
4848
steps:
49-
- uses: actions/checkout@v4
49+
- uses: actions/checkout@v6
5050
- name: Set up Python 3.13
51-
uses: actions/setup-python@v5
51+
uses: actions/setup-python@v6
5252
with:
5353
python-version: 3.13
5454
- name: Validate upload to PyPI
@@ -89,9 +89,9 @@ jobs:
8989
needs: [ pypi_upload, pypi_validate]
9090
runs-on: ubuntu-latest
9191
steps:
92-
- uses: actions/checkout@v4
92+
- uses: actions/checkout@v6
9393
- name: Set up Python 3.13
94-
uses: actions/setup-python@v5
94+
uses: actions/setup-python@v6
9595
with:
9696
python-version: 3.13
9797
- name: ⌛ Build and Upload 🐋 to quay.io
@@ -111,9 +111,9 @@ jobs:
111111
needs: [ pypi_upload, pypi_validate ]
112112
runs-on: ubuntu-latest
113113
steps:
114-
- uses: actions/checkout@v4
114+
- uses: actions/checkout@v6
115115
- name: Set up Python 3.13
116-
uses: actions/setup-python@v5
116+
uses: actions/setup-python@v6
117117
with:
118118
python-version: 3.13
119119
- name: ⌛ Build and Upload 🐋 to quay.io
@@ -138,7 +138,7 @@ jobs:
138138
fetch-depth: 0
139139
token: ${{ secrets.AUTOPUSH }}
140140
- name: Set up Python ${{ matrix.python-version }}
141-
uses: actions/setup-python@v5
141+
uses: actions/setup-python@v6
142142
with:
143143
python-version: ${{ matrix.python-version }}
144144
- name: Install latest benchmark-runner

.github/workflows/Nightly_Perf_Env_CI.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
outputs:
2727
start_time_output: ${{ steps.nightly_start_step.outputs.start_time }}
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v6
3030
- id: nightly_start_step
3131
run: echo "start_time=$(printf '%(%s)T' -1)" >> $GITHUB_OUTPUT
3232
- name: ⚙️ Set SSH key
@@ -114,9 +114,9 @@ jobs:
114114
# - 'windows_vm_scale_windows_server_2022'
115115

116116
steps:
117-
- uses: actions/checkout@v4
117+
- uses: actions/checkout@v6
118118
- name: Set up Python 3.13
119-
uses: actions/setup-python@v5
119+
uses: actions/setup-python@v6
120120
with:
121121
python-version: '3.13'
122122
- name: Install latest benchmark-runner
@@ -245,9 +245,9 @@ jobs:
245245
if: always()
246246
needs: [initialize_nightly, workload]
247247
steps:
248-
- uses: actions/checkout@v4
248+
- uses: actions/checkout@v6
249249
- name: Set up Python 3.13
250-
uses: actions/setup-python@v5
250+
uses: actions/setup-python@v6
251251
with:
252252
python-version: '3.13'
253253
- name: ⚙ Set START CI TIME
@@ -348,7 +348,7 @@ jobs:
348348
python-version: [ '3.13' ]
349349
steps:
350350
- name: Checkout repository
351-
uses: actions/checkout@v4
351+
uses: actions/checkout@v6
352352
with:
353353
repository: redhat-performance/benchmark-runner
354354
fetch-depth: 0

.github/workflows/Nightly_Perf_Env_CI_Scale.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
outputs:
1616
start_time_output: ${{ steps.nightly_start_step.outputs.start_time }}
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v6
1919
- id: nightly_start_step
2020
run: echo "start_time=$(printf '%(%s)T' -1)" >> $GITHUB_OUTPUT
2121
- name: ⚙️ Set SSH key
@@ -83,9 +83,9 @@ jobs:
8383
- 'windows_vm_scale_windows_server_2022'
8484

8585
steps:
86-
- uses: actions/checkout@v4
86+
- uses: actions/checkout@v6
8787
- name: Set up Python 3.13
88-
uses: actions/setup-python@v5
88+
uses: actions/setup-python@v6
8989
with:
9090
python-version: '3.13'
9191
- name: Install latest benchmark-runner

.github/workflows/Perf_Env_Build_Test_CI.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
matrix:
2424
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13' ]
2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v6
2727
- name: Set up Python ${{ matrix.python-version }}
28-
uses: actions/setup-python@v5
28+
uses: actions/setup-python@v6
2929
with:
3030
python-version: ${{ matrix.python-version }}
3131
- name: Install dependencies
@@ -91,9 +91,9 @@ jobs:
9191
matrix:
9292
python-version: [ '3.13' ]
9393
steps:
94-
- uses: actions/checkout@v4
94+
- uses: actions/checkout@v6
9595
- name: Set up Python ${{ matrix.python-version }}
96-
uses: actions/setup-python@v5
96+
uses: actions/setup-python@v6
9797
with:
9898
python-version: ${{ matrix.python-version }}
9999
- name: Install dependencies
@@ -177,9 +177,9 @@ jobs:
177177
matrix:
178178
python-version: [ '3.13' ]
179179
steps:
180-
- uses: actions/checkout@v4
180+
- uses: actions/checkout@v6
181181
- name: Set up Python ${{ matrix.python-version }}
182-
uses: actions/setup-python@v5
182+
uses: actions/setup-python@v6
183183
with:
184184
python-version: ${{ matrix.python-version }}
185185
- name: 🔨 Build and publish distribution 📦 to PyPI
@@ -200,9 +200,9 @@ jobs:
200200
matrix:
201201
python-version: [ '3.13' ]
202202
steps:
203-
- uses: actions/checkout@v4
203+
- uses: actions/checkout@v6
204204
- name: Set up Python ${{ matrix.python-version }}
205-
uses: actions/setup-python@v5
205+
uses: actions/setup-python@v6
206206
with:
207207
python-version: ${{ matrix.python-version }}
208208
- name: Validate upload to PyPI
@@ -246,9 +246,9 @@ jobs:
246246
matrix:
247247
python-version: [ '3.13' ]
248248
steps:
249-
- uses: actions/checkout@v4
249+
- uses: actions/checkout@v6
250250
- name: Set up Python ${{ matrix.python-version }}
251-
uses: actions/setup-python@v5
251+
uses: actions/setup-python@v6
252252
with:
253253
python-version: ${{ matrix.python-version }}
254254
- name: ⌛ Build and Upload 🐋 to quay.io
@@ -271,9 +271,9 @@ jobs:
271271
matrix:
272272
python-version: [ '3.13' ]
273273
steps:
274-
- uses: actions/checkout@v4
274+
- uses: actions/checkout@v6
275275
- name: Set up Python ${{ matrix.python-version }}
276-
uses: actions/setup-python@v5
276+
uses: actions/setup-python@v6
277277
with:
278278
python-version: ${{ matrix.python-version }}
279279
- name: ⌛ Build and Upload 🐋 to quay.io
@@ -293,13 +293,13 @@ jobs:
293293
python-version: [ '3.13' ]
294294
steps:
295295
- name: Checkout repository
296-
uses: actions/checkout@v4
296+
uses: actions/checkout@v6
297297
with:
298298
repository: redhat-performance/benchmark-runner
299299
fetch-depth: 0
300300
token: ${{ secrets.AUTOPUSH }}
301301
- name: Set up Python ${{ matrix.python-version }}
302-
uses: actions/setup-python@v5
302+
uses: actions/setup-python@v6
303303
with:
304304
python-version: ${{ matrix.python-version }}
305305
- name: Install latest benchmark-runner
@@ -334,9 +334,9 @@ jobs:
334334
workload: [ 'stressng_pod', 'stressng_vm' ]
335335
python-version: [ '3.13' ]
336336
steps:
337-
- uses: actions/checkout@v4
337+
- uses: actions/checkout@v6
338338
- name: Set up Python ${{ matrix.python-version }}
339-
uses: actions/setup-python@v5
339+
uses: actions/setup-python@v6
340340
with:
341341
python-version: ${{ matrix.python-version }}
342342
- name: Install latest benchmark-runner
@@ -412,13 +412,13 @@ jobs:
412412
python-version: [ '3.13' ]
413413
steps:
414414
- name: Checkout repository
415-
uses: actions/checkout@v4
415+
uses: actions/checkout@v6
416416
with:
417417
repository: redhat-performance/benchmark-runner
418418
fetch-depth: 0
419419
token: ${{ secrets.AUTOPUSH }}
420420
- name: Set up Python ${{ matrix.python-version }}
421-
uses: actions/setup-python@v5
421+
uses: actions/setup-python@v6
422422
with:
423423
python-version: ${{ matrix.python-version }}
424424
- name: Install dependencies

.github/workflows/Perf_Env_E2E_Test_CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737
outputs:
3838
install_resource_time_output: ${{ steps.ocp_install_resource_step.outputs.install_resource_time }}
3939
steps:
40-
- uses: actions/checkout@v4
40+
- uses: actions/checkout@v6
4141
- name: Set up Python 3.13
42-
uses: actions/setup-python@v5
42+
uses: actions/setup-python@v6
4343
with:
4444
python-version: '3.13'
4545
- name: Install latest benchmark-runner

.github/workflows/Perf_Env_PR_Test_CI.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ jobs:
3232
matrix:
3333
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13' ]
3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v6
3636
with:
3737
ref: ${{ github.event.pull_request.head.sha }}
3838
- name: Set up Python ${{ matrix.python-version }}
39-
uses: actions/setup-python@v5
39+
uses: actions/setup-python@v6
4040
with:
4141
python-version: ${{ matrix.python-version }}
4242
- name: Install dependencies
@@ -102,11 +102,11 @@ jobs:
102102
matrix:
103103
python-version: [ '3.13' ]
104104
steps:
105-
- uses: actions/checkout@v4
105+
- uses: actions/checkout@v6
106106
with:
107107
ref: ${{ github.event.pull_request.head.sha }}
108108
- name: Set up Python ${{ matrix.python-version }}
109-
uses: actions/setup-python@v5
109+
uses: actions/setup-python@v6
110110
with:
111111
python-version: ${{ matrix.python-version }}
112112
- name: Install dependencies
@@ -182,11 +182,11 @@ jobs:
182182
matrix:
183183
python-version: [ '3.13' ]
184184
steps:
185-
- uses: actions/checkout@v4
185+
- uses: actions/checkout@v6
186186
with:
187187
ref: ${{ github.event.pull_request.head.sha }}
188188
- name: Set up Python ${{ matrix.python-version }}
189-
uses: actions/setup-python@v5
189+
uses: actions/setup-python@v6
190190
with:
191191
python-version: ${{ matrix.python-version }}
192192
- name: Install dependencies

.github/workflows/Release_ClusterBuster_Perf_Env_CI.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
outputs:
2222
start_time_output: ${{ steps.nightly_start_step.outputs.start_time }}
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v6
2525
- id: nightly_start_step
2626
run: echo "start_time=$(printf '%(%s)T' -1)" >> $GITHUB_OUTPUT
2727
- name: ⚙️ Set SSH key
@@ -80,9 +80,9 @@ jobs:
8080
matrix:
8181
workload: [ 'files', 'fio', 'uperf', 'cpusoaker']
8282
steps:
83-
- uses: actions/checkout@v4
83+
- uses: actions/checkout@v6
8484
- name: Set up Python 3.13
85-
uses: actions/setup-python@v5
85+
uses: actions/setup-python@v6
8686
with:
8787
python-version: '3.13'
8888
- name: Install latest benchmark-runner
@@ -160,9 +160,9 @@ jobs:
160160
if: always()
161161
needs: [initialize_nightly, workload]
162162
steps:
163-
- uses: actions/checkout@v4
163+
- uses: actions/checkout@v6
164164
- name: Set up Python 3.9
165-
uses: actions/setup-python@v5
165+
uses: actions/setup-python@v6
166166
with:
167167
python-version: '3.13'
168168
- name: ⚙ Set START CI TIME

.github/workflows/Weekly_Perf_Env_Installer_CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
matrix:
2626
step: [ 'run_ibm_ocp_installer', 'verify_ibm_install_complete' ]
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v6
2929
- name: Set up Python 3.13
30-
uses: actions/setup-python@v5
30+
uses: actions/setup-python@v6
3131
with:
3232
python-version: '3.13'
3333
- name: Install latest benchmark-runner

.github/workflows/Weekly_Perf_Env_Operator_CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ jobs:
3636
outputs:
3737
install_resource_time_output: ${{ steps.ocp_install_resource_step.outputs.install_resource_time }}
3838
steps:
39-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v6
4040
- name: Set up Python 3.13
41-
uses: actions/setup-python@v5
41+
uses: actions/setup-python@v6
4242
with:
4343
python-version: '3.13'
4444
- name: Install latest benchmark-runner

0 commit comments

Comments
 (0)