Skip to content

Commit a17828d

Browse files
committed
Renamed jobs and bumped versions of base actions
1 parent 5ba0b30 commit a17828d

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/documentation.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ on:
33
pull_request:
44
branches: [main]
55
jobs:
6-
build:
6+
build-docs:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v3
9+
- uses: actions/checkout@v4
1010
- name: Set up Python 3.13
11-
uses: actions/setup-python@v3
11+
uses: actions/setup-python@v5
1212
with:
1313
python-version: "3.13"
1414
- name: Install dependencies

.github/workflows/pre-commit.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ on:
33
pull_request:
44
branches: [main]
55
jobs:
6-
build:
6+
pre-commit:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v3
9+
- uses: actions/checkout@v4
1010
- name: Set up Python 3.13
11-
uses: actions/setup-python@v3
11+
uses: actions/setup-python@v5
1212
with:
1313
python-version: "3.13"
1414
- name: Install pre-commit

.github/workflows/unit-tests.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ on:
33
pull_request:
44
branches: [main]
55
jobs:
6-
build:
6+
unit-tests:
77
runs-on: ubuntu-latest
88
strategy:
99
fail-fast: false
1010
matrix:
1111
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14.0-beta.2"]
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
- name: Set up Python ${{ matrix.python-version }}
15-
uses: actions/setup-python@v3
15+
uses: actions/setup-python@v5
1616
with:
1717
python-version: ${{ matrix.python-version }}
1818
- name: Pull docker image

0 commit comments

Comments
 (0)