Skip to content

Commit 14d1448

Browse files
chore: update GitHub Actions to use checkout action v6
1 parent f42d5e4 commit 14d1448

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout repository
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v6
1616
- name: Install Linux Dependencies
1717
run: |
1818
sudo apt-get update
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: windows-latest
3535
steps:
3636
- name: Checkout repository
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v6
3838
- name: Configure CMake
3939
run: >
4040
cmake -B ${{ github.workspace }}/build
@@ -44,14 +44,14 @@ jobs:
4444
run: cmake --build ${{ github.workspace }}/build --config Release
4545
- name: Verify Executable Production
4646
shell: bash
47-
run: ls -l ${{ github.workspace }}/build/Release/vectorjs.exe
47+
run: ls -l ${{ github.workspace }}/build/vectorjs.exe
4848

4949
build-mac:
5050
name: Build on macOS
5151
runs-on: macos-latest
5252
steps:
5353
- name: Checkout repository
54-
uses: actions/checkout@v4
54+
uses: actions/checkout@v6
5555
- name: Configure CMake
5656
run: >
5757
cmake -B ${{ github.workspace }}/build

0 commit comments

Comments
 (0)