Skip to content

Commit 2755b43

Browse files
authored
github actions checkout v4 (#7774)
1 parent 0e3fd08 commit 2755b43

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

.github/workflows/build-emscripten.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
env:
2828
TARGET: ${{matrix.cfg.target}}
2929
steps:
30-
- uses: actions/checkout@v3
30+
- uses: actions/checkout@v4
3131
- name: Docker Step
3232
run: "docker run -di --name emscripten -v $PWD:/src emscripten/emsdk:3.1.21 bash"
3333
- name: Download libs

.github/workflows/build-ios-tvos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
env:
3131
TARGET: ${{matrix.cfg.target}}
3232
steps:
33-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v4
3434
- name: Download libs
3535
run: ./scripts/${{matrix.cfg.libs}}/download_libs.sh
3636
- name: install

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
env:
2929
TARGET: ${{matrix.cfg.target}}
3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232
- name: Download libs
3333
run: ./scripts/linux/download_libs.sh -a ${{matrix.cfg.libs}};
3434
- name: Install dependencies

.github/workflows/build-linux-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
env:
1515
TARGET: ${{matrix.cfg.target}}
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
- name: Install libunwind
1919
run: sudo apt-get install libunwind-dev
2020
- name: Install dependencies

.github/workflows/build-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
env:
2929
TARGET: ${{matrix.cfg.target}}
3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232
- name: Download libs
3333
run: ./scripts/linux/download_libs.sh -a ${{matrix.cfg.libs}};
3434
- name: Remove Old lib-unwind

.github/workflows/build-msys2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run:
3030
shell: msys2 {0}
3131
steps:
32-
- uses: actions/checkout@v3
32+
- uses: actions/checkout@v4
3333
- uses: msys2/setup-msys2@v2
3434
with:
3535
update: true

.github/workflows/build-vs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
BITS: ${{ matrix.bits }}
3030
steps:
3131
- name: Clone repository
32-
uses: actions/checkout@v3
32+
uses: actions/checkout@v4
3333
- uses: msys2/setup-msys2@v2
3434
with:
3535
update: true

.github/workflows/manual-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
env:
1818
TARGET: ${{matrix.cfg.target}}
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
- name: Install libunwind
2222
run: sudo apt-get install libunwind-dev
2323
- name: Install dependencies

0 commit comments

Comments
 (0)