ci: bump actions/checkout to 4 (#4474)
Held back one due to https://github.com/libuv/libuv/pull/4451
This commit is contained in:
parent
badecdca14
commit
63b22be083
2
.github/workflows/CI-docs.yml
vendored
2
.github/workflows/CI-docs.yml
vendored
@ -11,7 +11,7 @@ jobs:
|
|||||||
docs-src:
|
docs-src:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-python@v5
|
- uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.9'
|
python-version: '3.9'
|
||||||
|
|||||||
2
.github/workflows/CI-sample.yml
vendored
2
.github/workflows/CI-sample.yml
vendored
@ -21,7 +21,7 @@ jobs:
|
|||||||
os: [macos-latest, ubuntu-latest, windows-latest]
|
os: [macos-latest, ubuntu-latest, windows-latest]
|
||||||
runs-on: ${{matrix.os}}
|
runs-on: ${{matrix.os}}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v4
|
||||||
- name: setup
|
- name: setup
|
||||||
run: cmake -E make_directory ${{runner.workspace}}/libuv/docs/code/build
|
run: cmake -E make_directory ${{runner.workspace}}/libuv/docs/code/build
|
||||||
- name: configure
|
- name: configure
|
||||||
|
|||||||
6
.github/workflows/CI-unix.yml
vendored
6
.github/workflows/CI-unix.yml
vendored
@ -17,7 +17,7 @@ jobs:
|
|||||||
build-linux:
|
build-linux:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
- name: configure
|
- name: configure
|
||||||
run: |
|
run: |
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
@ -36,7 +36,7 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
|
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- name: Envinfo
|
- name: Envinfo
|
||||||
run: npx envinfo
|
run: npx envinfo
|
||||||
- name: Configure android arm64
|
- name: Configure android arm64
|
||||||
@ -125,7 +125,7 @@ jobs:
|
|||||||
- {target: ppc64 (u64 slots), toolchain: gcc-powerpc64-linux-gnu, cc: powerpc64-linux-gnu-gcc, qemu: qemu-ppc64-static}
|
- {target: ppc64 (u64 slots), toolchain: gcc-powerpc64-linux-gnu, cc: powerpc64-linux-gnu-gcc, qemu: qemu-ppc64-static}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v4
|
||||||
- name: Install QEMU
|
- name: Install QEMU
|
||||||
# this ensure install latest qemu on ubuntu, apt get version is old
|
# this ensure install latest qemu on ubuntu, apt get version is old
|
||||||
env:
|
env:
|
||||||
|
|||||||
4
.github/workflows/CI-win.yml
vendored
4
.github/workflows/CI-win.yml
vendored
@ -29,7 +29,7 @@ jobs:
|
|||||||
- {toolchain: Visual Studio 17 2022, arch: x64, server: 2022, config: UBSAN}
|
- {toolchain: Visual Studio 17 2022, arch: x64, server: 2022, config: UBSAN}
|
||||||
- {toolchain: Visual Studio 17 2022, arch: arm64, server: 2022}
|
- {toolchain: Visual Studio 17 2022, arch: arm64, server: 2022}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v4
|
||||||
- name: Build
|
- name: Build
|
||||||
run:
|
run:
|
||||||
cmake -S . -B build -DBUILD_TESTING=ON
|
cmake -S . -B build -DBUILD_TESTING=ON
|
||||||
@ -81,7 +81,7 @@ jobs:
|
|||||||
- {arch: i686, server: 2022, libgcc: dw2 }
|
- {arch: i686, server: 2022, libgcc: dw2 }
|
||||||
- {arch: x86_64, server: 2022, libgcc: seh }
|
- {arch: x86_64, server: 2022, libgcc: seh }
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
- name: Install mingw32 environment
|
- name: Install mingw32 environment
|
||||||
run: |
|
run: |
|
||||||
sudo apt update
|
sudo apt update
|
||||||
|
|||||||
4
.github/workflows/sanitizer.yml
vendored
4
.github/workflows/sanitizer.yml
vendored
@ -16,7 +16,7 @@ jobs:
|
|||||||
sanitizers-linux:
|
sanitizers-linux:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v4
|
||||||
- name: Setup
|
- name: Setup
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get install ninja-build
|
sudo apt-get install ninja-build
|
||||||
@ -104,7 +104,7 @@ jobs:
|
|||||||
sanitizers-windows:
|
sanitizers-windows:
|
||||||
runs-on: windows-2022
|
runs-on: windows-2022
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v4
|
||||||
- name: Setup
|
- name: Setup
|
||||||
run: |
|
run: |
|
||||||
choco install ninja
|
choco install ninja
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user