summaryrefslogtreecommitdiff
path: root/.github/workflows/push-benchmark-results.yml
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2024-11-22 12:33:32 +0700
committerGitHub <noreply@github.com>2024-11-21 21:33:32 -0800
commite0033b3ba9e416f321efa074e93c7bcc11ba535c (patch)
treed9da35461a831a93cdb78e9bb44c04a15f141d73 /.github/workflows/push-benchmark-results.yml
parentfdf061e278720ec066a1fac8f1f35a22e817bf2d (diff)
ci: Update `actions/checkout` to always use v4 (#5634)
CI was using a mix of version 3 and 4. Version 3 results in a warning within the GitHub Actions UI as it was using a version of NodeJS that is deprecated within the GitHub Actions infrastructure.
Diffstat (limited to '.github/workflows/push-benchmark-results.yml')
-rw-r--r--.github/workflows/push-benchmark-results.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/push-benchmark-results.yml b/.github/workflows/push-benchmark-results.yml
index b2c835768..2c949a15a 100644
--- a/.github/workflows/push-benchmark-results.yml
+++ b/.github/workflows/push-benchmark-results.yml
@@ -16,7 +16,7 @@ jobs:
build:
runs-on: [Windows, benchmark, self-hosted]
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
submodules: "true"
fetch-depth: "0"
@@ -32,7 +32,7 @@ jobs:
run: |
cmake --preset default --fresh -DSLANG_SLANG_LLVM_FLAVOR=USE_SYSTEM_LLVM -DCMAKE_COMPILE_WARNING_AS_ERROR=false
cmake --workflow --preset release
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
repository: "shader-slang/MDL-SDK"
path: "external/MDL-SDK"
@@ -42,7 +42,7 @@ jobs:
cp ../../external/MDL-SDK/examples/mdl_sdk/dxr/content/slangified/*.slang .
pip install prettytable argparse
python compile.py --samples 16 --target dxil
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
repository: "shader-slang/slang-material-modules-benchmark"
path: "external/slang-material-modules-benchmark"