Skip to content

Commit 52e7341

Browse files
committed
Merge branch 'v99bugfix' of github.com:google/or-tools into v99bugfix
2 parents df28118 + bec5857 commit 52e7341

18 files changed

+39
-23
lines changed

.github/workflows/amd64_linux_bazel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Check mvn
2828
run: mvn --version
2929
- name: Setup Python
30-
uses: actions/setup-python@v4
30+
uses: actions/setup-python@v5
3131
with:
3232
python-version: ${{ matrix.python.version }}
3333
- name: Check Python

.github/workflows/amd64_linux_cmake_python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
sudo apt install -y swig
3535
swig -version
3636
- name: Setup Python
37-
uses: actions/setup-python@v4
37+
uses: actions/setup-python@v5
3838
with:
3939
python-version: ${{ matrix.python.version }}
4040
- name: Update Path

.github/workflows/amd64_macos_bazel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Check mvn
2828
run: mvn --version
2929
- name: Setup Python
30-
uses: actions/setup-python@v4
30+
uses: actions/setup-python@v5
3131
with:
3232
python-version: ${{ matrix.python.version }}
3333
- name: Check Python

.github/workflows/amd64_macos_cmake_python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
brew install swig
3030
swig -version
3131
- name: Setup Python
32-
uses: actions/setup-python@v4
32+
uses: actions/setup-python@v5
3333
with:
3434
python-version: ${{ matrix.python.version }}
3535
- name: Update Path

.github/workflows/amd64_windows_bazel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Check mvn
3030
run: mvn --version
3131
- name: Setup Python
32-
uses: actions/setup-python@v4
32+
uses: actions/setup-python@v5
3333
with:
3434
python-version: ${{ matrix.python.version }}
3535
- name: Check Python

.github/workflows/amd64_windows_cmake_python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
CTEST_OUTPUT_ON_FAILURE: 1
2626
steps:
2727
- uses: actions/checkout@v4
28-
- uses: actions/setup-python@v4
28+
- uses: actions/setup-python@v5
2929
with:
3030
python-version: ${{ matrix.python.version }}
3131
- name: Install python3

.github/workflows/arm64_macos_bazel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Check mvn
2828
run: mvn --version
2929
- name: Setup Python
30-
uses: actions/setup-python@v4
30+
uses: actions/setup-python@v5
3131
with:
3232
python-version: ${{ matrix.python.version }}
3333
- name: Check Python

.github/workflows/arm64_macos_cmake_python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
brew install swig
3030
swig -version
3131
- name: Setup Python
32-
uses: actions/setup-python@v4
32+
uses: actions/setup-python@v5
3333
with:
3434
python-version: ${{ matrix.python.version }}
3535
- name: Update Path

ortools/graph/christofides.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828

2929
#include <cstdint>
3030
#include <functional>
31+
#include <string>
3132
#include <type_traits>
3233
#include <utility>
3334
#include <vector>

ortools/graph/cliques.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
#include <limits>
3131
#include <numeric>
3232
#include <string>
33+
#include <utility>
3334
#include <vector>
3435

3536
#include "absl/strings/str_cat.h"

0 commit comments

Comments
 (0)