Skip to content

Commit d00ba60

Browse files
committed
Github actions: update versions and names
The rest of the used action scripts are updated to today's current. The names of our actions are changed to match the task so it's easier to look at GH reports and see the difference (aka, don't call them all "run" like the examples). Signed-off-by: Mats Wichmann <[email protected]>
1 parent 1fd9c7f commit d00ba60

File tree

5 files changed

+14
-13
lines changed

5 files changed

+14
-13
lines changed

.github/workflows/experimental_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1717
jobs:
1818
# This workflow contains a single job called "build"
19-
build:
19+
experimental:
2020

2121
strategy:
2222
fail-fast: false
@@ -32,7 +32,7 @@ jobs:
3232
# Steps represent a sequence of tasks that will be executed as part of the job
3333
steps:
3434
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
35-
- uses: actions/[email protected].1
35+
- uses: actions/[email protected].6
3636

3737
# experiment: maybe don't need this?
3838
# update: looks like we do: with this commented out, the build hung
@@ -44,7 +44,7 @@ jobs:
4444
static: 0
4545

4646
- name: Set up Python 3.11 ${{ matrix.os }}
47-
uses: actions/setup-python@v5.0.0
47+
uses: actions/setup-python@v5.1.0
4848
with:
4949
python-version: '3.11'
5050

.github/workflows/framework_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929

3030
steps:
3131
# Checkouut repository under $GITHUB_WORKSPACE
32-
- uses: actions/[email protected].1
32+
- uses: actions/[email protected].6
3333

3434
- name: Set up Python 3.11 ${{ matrix.os }}
35-
uses: actions/setup-python@v5.0.0
35+
uses: actions/setup-python@v5.1.0
3636
with:
3737
python-version: '3.11'
3838

.github/workflows/runtest-win.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
python runtest.py --all --time --jobs=4
3535
3636
- name: Archive Failed tests
37-
uses: actions/upload-artifact@v3.1.3
37+
uses: actions/upload-artifact@v4.3.3
3838
with:
3939
name: windows-failed-tests
4040
path: |

.github/workflows/runtest.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ on:
1717
jobs:
1818
# This workflow contains a single job called "runtest"
1919
runtest:
20+
fail-fast: false
2021
strategy:
2122
matrix:
2223
os: ['ubuntu-22.04', 'ubuntu-24.04']
@@ -48,7 +49,7 @@ jobs:
4849
python runtest.py --all --time --jobs=4
4950
5051
- name: Archive Failed tests ${{ matrix.os }}
51-
uses: actions/upload-artifact@v3.1.3
52+
uses: actions/upload-artifact@v4.3.3
5253
with:
5354
name: ${{ matrix.os }}-failed-tests
5455
path: |

.github/workflows/scons-package.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ on:
99
branches: [ master ]
1010

1111
jobs:
12-
build:
12+
package:
1313

14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-24.04
1515

1616
steps:
17-
- uses: actions/[email protected].1
17+
- uses: actions/[email protected].6
1818

19-
- name: Set up Python 3.10
20-
uses: actions/setup-python@v5.0.0
19+
- name: Set up Python 3.12
20+
uses: actions/setup-python@v5.1.0
2121
with:
22-
python-version: '3.10'
22+
python-version: '3.12'
2323

2424
- name: Install dependencies
2525
run: |

0 commit comments

Comments
 (0)