Skip to content

Commit 8e02462

Browse files
dependabot[bot]saghul
authored andcommitted
build(deps): bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent f6e19be commit 8e02462

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/CI-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
docs-src:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v5
14+
- uses: actions/checkout@v6
1515
- uses: actions/setup-python@v6
1616
with:
1717
python-version: '3.9'

.github/workflows/CI-sample.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
os: [macos-latest, ubuntu-latest, windows-latest]
2222
runs-on: ${{matrix.os}}
2323
steps:
24-
- uses: actions/checkout@v5
24+
- uses: actions/checkout@v6
2525
- name: setup
2626
run: cmake -E make_directory ${{runner.workspace}}/libuv/docs/code/build
2727
- name: configure

.github/workflows/CI-unix.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
build-linux:
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
- name: configure
2222
run: |
2323
./autogen.sh
@@ -32,7 +32,7 @@ jobs:
3232
env:
3333
ANDROID_AVD_HOME: /root/.android/avd
3434
steps:
35-
- uses: actions/checkout@v5
35+
- uses: actions/checkout@v6
3636
- name: Envinfo
3737
run: npx envinfo
3838
- name: Enable KVM
@@ -82,7 +82,7 @@ jobs:
8282
matrix:
8383
os: [macos-13, macos-14]
8484
steps:
85-
- uses: actions/checkout@v5
85+
- uses: actions/checkout@v6
8686
- name: Envinfo
8787
run: npx envinfo
8888
- name: Disable Firewall
@@ -124,7 +124,7 @@ jobs:
124124
matrix:
125125
os: [macos-13, macos-14]
126126
steps:
127-
- uses: actions/checkout@v5
127+
- uses: actions/checkout@v6
128128
- name: Configure
129129
run: |
130130
cmake -B build-ios -GXcode -DCMAKE_SYSTEM_NAME:STRING=iOS -DCMAKE_XCODE_ATTRIBUTE_CODE_SIGNING_ALLOWED:BOOL=NO -DCMAKE_CONFIGURATION_TYPES:STRING=Release
@@ -159,7 +159,7 @@ jobs:
159159
- {target: ppc64 (u64 slots), toolchain: gcc-powerpc64-linux-gnu, cc: powerpc64-linux-gnu-gcc, qemu: qemu-ppc64 }
160160

161161
steps:
162-
- uses: actions/checkout@v5
162+
- uses: actions/checkout@v6
163163
- name: Install qemu and ${{ matrix.config.toolchain }}
164164
run: |
165165
sudo apt update

.github/workflows/CI-win.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- {toolchain: Visual Studio 17 2022, arch: arm64, server: 2022}
2929
- {toolchain: Visual Studio 17 2022, arch: x64, server: 2025}
3030
steps:
31-
- uses: actions/checkout@v5
31+
- uses: actions/checkout@v6
3232
- name: Build
3333
run:
3434
cmake -S . -B build -DBUILD_TESTING=ON
@@ -79,7 +79,7 @@ jobs:
7979
- {arch: i686, server: 2022, libgcc: dw2 }
8080
- {arch: x86_64, server: 2022, libgcc: seh }
8181
steps:
82-
- uses: actions/checkout@v5
82+
- uses: actions/checkout@v6
8383
- name: Install mingw32 environment
8484
run: |
8585
sudo apt update

.github/workflows/sanitizer.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: UBSAN
2828
flags: -DUBSAN=ON -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=clang
2929
steps:
30-
- uses: actions/checkout@v5
30+
- uses: actions/checkout@v6
3131
- name: Setup
3232
run: |
3333
sudo apt-get install ninja-build
@@ -66,7 +66,7 @@ jobs:
6666
- name: UBSAN
6767
flags: -DUBSAN=ON -DCMAKE_BUILD_TYPE=Debug
6868
steps:
69-
- uses: actions/checkout@v5
69+
- uses: actions/checkout@v6
7070

7171
- name: Envinfo
7272
run: npx envinfo
@@ -81,7 +81,7 @@ jobs:
8181
sanitizers-windows:
8282
runs-on: windows-2022
8383
steps:
84-
- uses: actions/checkout@v5
84+
- uses: actions/checkout@v6
8585
- name: Setup
8686
run: |
8787
choco install ninja

0 commit comments

Comments
 (0)