diff options
| author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2024-11-22 12:33:32 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-21 21:33:32 -0800 |
| commit | e0033b3ba9e416f321efa074e93c7bcc11ba535c (patch) | |
| tree | d9da35461a831a93cdb78e9bb44c04a15f141d73 /.github/workflows/release.yml | |
| parent | fdf061e278720ec066a1fac8f1f35a22e817bf2d (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/release.yml')
| -rw-r--r-- | .github/workflows/release.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f8945ec8b..8339bfc79 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,7 +40,7 @@ jobs: shell: bash steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: "recursive" fetch-depth: "0" @@ -197,7 +197,7 @@ jobs: - name: Checkout stdlib reference if: matrix.os == 'windows' && matrix.platform == 'x86_64' - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: shader-slang/stdlib-reference path: docs/stdlib-reference/ |
