Skip to content

Commit 2821acf

Browse files
committed
Updated github actions workflows to use checkout v6 instead of deprecated v4
1 parent 30e5b3e commit 2821acf

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/CodeQL.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Check Out Code
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v6
3939
with:
4040
submodules: recursive
4141
fetch-depth: 0

.github/workflows/build-arch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
glslang
8383
8484
- name: Check Out Code
85-
uses: actions/checkout@v4
85+
uses: actions/checkout@v6
8686
with:
8787
submodules: recursive
8888
fetch-depth: 0

.github/workflows/build-debian.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
libvulkan-dev
8888
8989
- name: Check Out Code
90-
uses: actions/checkout@v4
90+
uses: actions/checkout@v6
9191
with:
9292
submodules: recursive
9393
fetch-depth: 0

.github/workflows/build-fedora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
spirv-tools-devel
8484
8585
- name: Check Out Code
86-
uses: actions/checkout@v4
86+
uses: actions/checkout@v6
8787
with:
8888
submodules: recursive
8989
fetch-depth: 0

.github/workflows/build-macos-arm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414

1515
- name: Check Out Code
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1717
with:
1818
submodules: recursive
1919
fetch-depth: 0

.github/workflows/build-macos-intel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414

1515
- name: Check Out Code
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1717
with:
1818
submodules: recursive
1919
fetch-depth: 0

.github/workflows/build-ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
steps:
3030

3131
- name: Check Out Code
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v6
3333
with:
3434
submodules: recursive
3535
fetch-depth: 0

.github/workflows/build-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- { sys: clang64, env: clang-x86_64 }
2525

2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v6
2828
with:
2929
submodules: recursive
3030
fetch-depth: 0

0 commit comments

Comments
 (0)