Skip to content

Commit 60c8d3f

Browse files
authored
Merge branch 'develop' into dependabot/npm_and_yarn/angular-app/npm-prod-deps-d8ca133e08
2 parents 269e7c3 + 1312310 commit 60c8d3f

File tree

3 files changed

+177
-89
lines changed

3 files changed

+177
-89
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ jobs:
77
lint:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v5
10+
- uses: actions/checkout@v6
1111
- name: Check out building-data-utilities repository
12-
uses: actions/checkout@v5
12+
uses: actions/checkout@v6
1313
with:
1414
repository: SEED-platform/building-data-utilities
1515
path: building-data-utilities
@@ -18,7 +18,7 @@ jobs:
1818
mkdir -p ../
1919
mv building-data-utilities ../building-data-utilities
2020
- name: Set up Python 3.12
21-
uses: actions/setup-python@v6.0.0
21+
uses: actions/setup-python@v6.1.0
2222
with:
2323
python-version: '3.12'
2424
- name: Install Poetry
@@ -47,9 +47,9 @@ jobs:
4747
python-version: ['3.9', '3.12']
4848
runs-on: ubuntu-latest
4949
steps:
50-
- uses: actions/checkout@v5
50+
- uses: actions/checkout@v6
5151
- name: Check out building-data-utilities repository
52-
uses: actions/checkout@v5
52+
uses: actions/checkout@v6
5353
with:
5454
repository: SEED-platform/building-data-utilities
5555
path: building-data-utilities
@@ -58,7 +58,7 @@ jobs:
5858
mkdir -p ../
5959
mv building-data-utilities ../building-data-utilities
6060
- name: Set up Python ${{ matrix.python-version }}
61-
uses: actions/setup-python@v6.0.0
61+
uses: actions/setup-python@v6.1.0
6262
with:
6363
python-version: ${{ matrix.python-version }}
6464
- name: Install Poetry
@@ -78,7 +78,7 @@ jobs:
7878
run: poetry run pytest --cov=flask_app --cov-report=html --cov-report=xml --cov-report=term --disable-warnings
7979
- name: Upload Python Test Coverage
8080
if: matrix.python-version == '3.12' # Only upload once per build
81-
uses: actions/upload-artifact@v5
81+
uses: actions/upload-artifact@v6
8282
with:
8383
name: python-coverage
8484
path: flask_app/htmlcov/
@@ -88,7 +88,7 @@ jobs:
8888
needs: lint
8989
runs-on: ubuntu-latest
9090
steps:
91-
- uses: actions/checkout@v5
91+
- uses: actions/checkout@v6
9292
- uses: actions/setup-node@v6
9393
with:
9494
node-version: 22
@@ -117,7 +117,7 @@ jobs:
117117
# This executes all *.spec.ts files in the project
118118
npm test
119119
- name: Upload Angular Test Coverage
120-
uses: actions/upload-artifact@v5
120+
uses: actions/upload-artifact@v6
121121
with:
122122
name: angular-coverage
123123
path: angular-app/coverage/

0 commit comments

Comments
 (0)