Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .CI/checkHTMLDoc/checkLinks.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-

'''
Copyright (C) 2020-2024, Modelica Association and contributors
Copyright (C) 2020-2026, Modelica Association and contributors
All rights reserved.

Check Modelica HTML documentation for link validity
Expand Down
2 changes: 1 addition & 1 deletion .CI/checkHTMLDoc/checkTags.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-

'''
Copyright (C) 2020-2024, Modelica Association and contributors
Copyright (C) 2020-2026, Modelica Association and contributors
All rights reserved.

Check Modelica HTML documentation for tag validity
Expand Down
2 changes: 1 addition & 1 deletion .CI/checkHTMLDoc/tidyHTML.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-

'''
Copyright (C) 2020-2024, Modelica Association and contributors
Copyright (C) 2020-2026, Modelica Association and contributors
All rights reserved.

Check Modelica HTML documentation with HTML Tidy
Expand Down
2 changes: 1 addition & 1 deletion .CI/check_html.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-

'''
Copyright (C) 2020-2024, Modelica Association and contributors
Copyright (C) 2020-2026, Modelica Association and contributors
All rights reserved.

Check Modelica HTML documentation for validity
Expand Down
14 changes: 9 additions & 5 deletions .github/workflows/checkCI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@ jobs:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v6
with:
fetch-depth: 5
- name: Setup python environment
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: 3.8
- name: Install python packages
Expand All @@ -24,7 +25,8 @@ jobs:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v6
with:
fetch-depth: 5
- name: Get moparser
Expand All @@ -38,15 +40,17 @@ jobs:
echo "::add-matcher::./.github/moparser.json"
ModelicaSyntaxChecker/Linux64/moparser -v 3.6 -r Modelica_LinearSystems2 LinearSystems2Test LinearSystems2TestConversion3.mo ObsoleteLinearSystems2.mo
echo "::remove-matcher owner=moparser::"

deprecation_checks:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v6
with:
fetch-depth: 5
- name: Setup python environment
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: 3.8
- name: Check deprecated Text.lineColor annotation
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/checkCron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
if: github.repository_owner == 'modelica'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 5
- name: Setup python environment
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: 3.8
- name: Install python packages
Expand All @@ -28,11 +28,11 @@ jobs:
if: github.repository_owner == 'modelica'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 5
- name: Setup python environment
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: 3.8
- name: Install python packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
contents: read
pull-requests: write
steps:
- uses: actions/labeler@v5
- uses: actions/labeler@v6
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
sync-labels: false
Loading