Skip to content

Commit 1e5454e

Browse files
committed
update GH actions to latest versions
1 parent f62ab94 commit 1e5454e

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.github/workflows/integration-test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ jobs:
1919
matrix:
2020
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323

2424
- name: Install dependencies (SCIPOptSuite)
2525
run: |
2626
wget --quiet --no-check-certificate https://scipopt.org/download/release/SCIPOptSuite-${{ env.version }}-Linux-ubuntu.deb
2727
sudo apt-get update && sudo apt install -y ./SCIPOptSuite-${{ env.version }}-Linux-ubuntu.deb
2828
2929
- name: Setup python ${{ matrix.python-version }}
30-
uses: actions/setup-python@v2
30+
uses: actions/setup-python@v4
3131
with:
3232
python-version: ${{ matrix.python-version }}
3333

@@ -51,7 +51,7 @@ jobs:
5151
matrix:
5252
python-version: ["3.8", "3.9", "3.10", "3.11"]
5353
steps:
54-
- uses: actions/checkout@v2
54+
- uses: actions/checkout@v3
5555

5656
- name: Download dependencies (SCIPOptSuite)
5757
shell: powershell
@@ -62,7 +62,7 @@ jobs:
6262
run: scipopt-installer.exe /S /D=${{ env.SCIPOPTDIR }}
6363

6464
- name: Setup python ${{ matrix.python-version }}
65-
uses: actions/setup-python@v2
65+
uses: actions/setup-python@v4
6666
with:
6767
python-version: ${{ matrix.python-version }}
6868

@@ -89,7 +89,7 @@ jobs:
8989
matrix:
9090
python-version: ["3.8", "3.9", "3.10", "3.11"]
9191
steps:
92-
- uses: actions/checkout@v2
92+
- uses: actions/checkout@v3
9393

9494
- name: Cache dependencies (SCIPOptSuite)
9595
id: cache-scip
@@ -120,7 +120,7 @@ jobs:
120120
make install -j
121121
122122
- name: Setup python ${{ matrix.python-version }}
123-
uses: actions/setup-python@v2
123+
uses: actions/setup-python@v4
124124
with:
125125
python-version: ${{ matrix.python-version }}
126126

.github/workflows/test-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ jobs:
1313
deploy-packges-and-generate-documentation:
1414
runs-on: ubuntu-20.04
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717

1818
- name: Install dependencies (SCIPOptSuite)
1919
run: |
2020
wget --quiet --no-check-certificate https://scipopt.org/download/release/SCIPOptSuite-${{ env.version }}-Linux-ubuntu.deb
2121
sudo apt-get update && sudo apt install -y ./SCIPOptSuite-${{ env.version }}-Linux-ubuntu.deb
2222
2323
- name: Setup python 3
24-
uses: actions/setup-python@v2
24+
uses: actions/setup-python@v4
2525
with:
2626
python-version: '3.x'
2727

.github/workflows/update-packages-and-documentation.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ jobs:
3434
matrix:
3535
python-version: [3.7, 3.8, 3.9, 3.10, 3.11]
3636
steps:
37-
- uses: actions/checkout@v2
37+
- uses: actions/checkout@v3
3838

3939
- name: Install dependencies (SCIPOptSuite)
4040
run: |
4141
wget --quiet --no-check-certificate https://scipopt.org/download/release/SCIPOptSuite-${{ env.version }}-Linux-ubuntu.deb
4242
sudo apt-get update && sudo apt install -y ./SCIPOptSuite-${{ env.version }}-Linux-ubuntu.deb
4343
4444
- name: Setup python ${{ matrix.python-version }}
45-
uses: actions/setup-python@v2
45+
uses: actions/setup-python@v4
4646
with:
4747
python-version: ${{ matrix.python-version }}
4848

@@ -67,7 +67,7 @@ jobs:
6767
matrix:
6868
python-version: [3.8, 3.9, 3.10, 3.11]
6969
steps:
70-
- uses: actions/checkout@v2
70+
- uses: actions/checkout@v3
7171

7272
- name: Download dependencies (SCIPOptSuite)
7373
shell: powershell
@@ -78,7 +78,7 @@ jobs:
7878
run: scipopt-installer.exe /S /D=${{ env.SCIPOPTDIR }}
7979

8080
- name: Setup python ${{ matrix.python-version }}
81-
uses: actions/setup-python@v2
81+
uses: actions/setup-python@v4
8282
with:
8383
python-version: ${{ matrix.python-version }}
8484

@@ -102,15 +102,15 @@ jobs:
102102
needs: Windows-test
103103
runs-on: ubuntu-20.04
104104
steps:
105-
- uses: actions/checkout@v2
105+
- uses: actions/checkout@v3
106106

107107
- name: Install dependencies (SCIPOptSuite)
108108
run: |
109109
wget --quiet --no-check-certificate https://scipopt.org/download/release/SCIPOptSuite-${{ env.version }}-Linux-ubuntu.deb
110110
sudo apt-get update && sudo apt install -y ./SCIPOptSuite-${{ env.version }}-Linux-ubuntu.deb
111111
112112
- name: Setup python 3
113-
uses: actions/setup-python@v2
113+
uses: actions/setup-python@v4
114114
with:
115115
python-version: '3.x'
116116

0 commit comments

Comments
 (0)