Skip to content

Commit fed43cf

Browse files
committed
Update dependencies
1 parent d8a7a87 commit fed43cf

25 files changed

+579
-288
lines changed

.github/workflows/cmake.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: CMake
22

3+
permissions:
4+
contents: read
5+
actions: write
6+
37
on:
48
push:
59
branches:

.github/workflows/contributors.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

.github/workflows/go.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: Go
22

3+
permissions:
4+
contents: read
5+
actions: write
6+
37
on:
48
push:
59
branches:
@@ -15,7 +19,7 @@ jobs:
1519
- name: Set up Go
1620
uses: actions/setup-go@v5
1721
with:
18-
go-version: '1.23'
22+
go-version: '1.24'
1923
- name: Build
2024
working-directory: go
2125
run: go build -v ./...

.github/workflows/gradle.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: Gradle
22

3+
permissions:
4+
contents: read
5+
actions: write
6+
37
on:
48
push:
59
branches:

.github/workflows/markdown-link-check.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: Check Markdown links
22

3+
permissions:
4+
contents: read
5+
actions: write
6+
37
on:
48
push:
59
branches:

.github/workflows/maven.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: Maven
22

3+
permissions:
4+
contents: read
5+
actions: write
6+
37
on:
48
push:
59
branches:

.github/workflows/npm.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: Npm
22

3+
permissions:
4+
contents: read
5+
actions: write
6+
37
on:
48
push:
59
branches:

.github/workflows/pytest.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: Pytest
22

3+
permissions:
4+
contents: read
5+
actions: write
6+
37
on:
48
push:
59
branches:

README.md

Lines changed: 0 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
[![Pytest](https://github.com/murex/Kata-MedianListOfLists/actions/workflows/pytest.yml/badge.svg)](https://github.com/murex/Kata-MedianListOfLists/actions/workflows/pytest.yml)
66
[![Npm](https://github.com/murex/Kata-MedianListOfLists/actions/workflows/npm.yml/badge.svg)](https://github.com/murex/Kata-MedianListOfLists/actions/workflows/npm.yml)
77
[![Check Markdown links](https://github.com/murex/Kata-MedianListOfLists/actions/workflows/markdown-link-check.yml/badge.svg)](https://github.com/murex/Kata-MedianListOfLists/actions/workflows/markdown-link-check.yml)
8-
[![Add contributors](https://github.com/murex/Kata-MedianListOfLists/actions/workflows/contributors.yml/badge.svg)](https://github.com/murex/Kata-MedianListOfLists/actions/workflows/contributors.yml)
98

109
# Median of a List of Lists (with no concatenation)
1110

@@ -159,38 +158,3 @@ distribution, and is available at the [Open Source site](https://opensource.org/
159158
## Acknowledgements
160159

161160
See [ACKNOWLEDGEMENTS.md](ACKNOWLEDGEMENTS.md) for more information.
162-
163-
## Contributors
164-
165-
<table>
166-
<tr>
167-
<td align="center" style="word-wrap: break-word; width: 150.0; height: 150.0">
168-
<a href=https://github.com/mengdaming>
169-
<img src=https://avatars.githubusercontent.com/u/1313765?v=4 width="100;" style="border-radius:50%;align-items:center;justify-content:center;overflow:hidden;padding-top:10px" alt=Damien Menanteau/>
170-
<br />
171-
<sub style="font-size:14px"><b>Damien Menanteau</b></sub>
172-
</a>
173-
</td>
174-
<td align="center" style="word-wrap: break-word; width: 150.0; height: 150.0">
175-
<a href=https://github.com/aatwi>
176-
<img src=https://avatars.githubusercontent.com/u/11088496?v=4 width="100;" style="border-radius:50%;align-items:center;justify-content:center;overflow:hidden;padding-top:10px" alt=Ahmad Atwi/>
177-
<br />
178-
<sub style="font-size:14px"><b>Ahmad Atwi</b></sub>
179-
</a>
180-
</td>
181-
<td align="center" style="word-wrap: break-word; width: 150.0; height: 150.0">
182-
<a href=https://github.com/philou>
183-
<img src=https://avatars.githubusercontent.com/u/23983?v=4 width="100;" style="border-radius:50%;align-items:center;justify-content:center;overflow:hidden;padding-top:10px" alt=Philippe Bourgau/>
184-
<br />
185-
<sub style="font-size:14px"><b>Philippe Bourgau</b></sub>
186-
</a>
187-
</td>
188-
<td align="center" style="word-wrap: break-word; width: 150.0; height: 150.0">
189-
<a href=https://github.com/AntoineMx>
190-
<img src=https://avatars.githubusercontent.com/u/77109701?v=4 width="100;" style="border-radius:50%;align-items:center;justify-content:center;overflow:hidden;padding-top:10px" alt=AntoineMx/>
191-
<br />
192-
<sub style="font-size:14px"><b>AntoineMx</b></sub>
193-
</a>
194-
</td>
195-
</tr>
196-
</table>

cpp/cmake/cmake-wrapper.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ download_cmake() {
103103
print_info "extracting cmake ${cmake_version}"
104104
case "${archive_extension}" in
105105
zip)
106-
if ! unzip -q -o "${cmake_expected_archive_file}"; then
106+
if ! unzip -q -K -o "${cmake_expected_archive_file}"; then
107107
print_error "failed to expand ${cmake_expected_archive_file}"
108108
return 1
109109
fi
@@ -125,7 +125,7 @@ download_cmake() {
125125
# ----------------------------------------------------------------------------
126126

127127
[ -d "${cmake_home}" ] && rm -Rf "${cmake_home}"
128-
mv "${cmake_expected_dir}" "${cmake_home}"
128+
mv -f "${cmake_expected_dir}" "${cmake_home}"
129129

130130
popd >/dev/null 2>/dev/null || return 1
131131
}

0 commit comments

Comments
 (0)