-
-
Notifications
You must be signed in to change notification settings - Fork 323
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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]>
- Loading branch information
Showing
5 changed files
with
14 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ on: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
# This workflow contains a single job called "build" | ||
build: | ||
experimental: | ||
|
||
strategy: | ||
fail-fast: false | ||
|
@@ -32,7 +32,7 @@ jobs: | |
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/[email protected].1 | ||
- uses: actions/[email protected].6 | ||
|
||
# experiment: maybe don't need this? | ||
# update: looks like we do: with this commented out, the build hung | ||
|
@@ -44,7 +44,7 @@ jobs: | |
static: 0 | ||
|
||
- name: Set up Python 3.11 ${{ matrix.os }} | ||
uses: actions/setup-python@v5.0.0 | ||
uses: actions/setup-python@v5.1.0 | ||
with: | ||
python-version: '3.11' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,10 +29,10 @@ jobs: | |
|
||
steps: | ||
# Checkouut repository under $GITHUB_WORKSPACE | ||
- uses: actions/[email protected].1 | ||
- uses: actions/[email protected].6 | ||
|
||
- name: Set up Python 3.11 ${{ matrix.os }} | ||
uses: actions/setup-python@v5.0.0 | ||
uses: actions/setup-python@v5.1.0 | ||
with: | ||
python-version: '3.11' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,17 +9,17 @@ on: | |
branches: [ master ] | ||
|
||
jobs: | ||
build: | ||
package: | ||
|
||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-24.04 | ||
|
||
steps: | ||
- uses: actions/[email protected].1 | ||
- uses: actions/[email protected].6 | ||
|
||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v5.0.0 | ||
- name: Set up Python 3.12 | ||
uses: actions/setup-python@v5.1.0 | ||
with: | ||
python-version: '3.10' | ||
python-version: '3.12' | ||
|
||
- name: Install dependencies | ||
run: | | ||
|