Skip to content

Commit 938d95a

Browse files
committed
Update checkout action as previous v4 was deprecated.
1 parent cc98968 commit 938d95a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
cpp_compiler: [clang++]
1313

1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616
- name: Install Scintilla source
1717
run: |
1818
(cd .. && wget --no-verbose https://www.scintilla.org/scintilla500.zip)

.github/workflows/build-check-win32.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
env:
1717
TEST: ${{ matrix.arch == 'amd64' && 'test' || '' }}
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2020
- name: Preparing nmake
2121
uses: ilammy/msvc-dev-cmd@v1
2222
with:

.github/workflows/build-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
cpp_compiler: [g++, clang++]
1313

1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616
- name: Install Scintilla source
1717
run: |
1818
(cd .. && wget --no-verbose https://www.scintilla.org/scintilla500.zip)

0 commit comments

Comments
 (0)