Skip to content

Commit

Permalink
Bump actions to avoid deprecation warnings (modelica#4120)
Browse files Browse the repository at this point in the history
  • Loading branch information
beutlich committed Jun 3, 2023
1 parent 25319f9 commit 17ec1eb
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/checkCI.yml
Expand Up @@ -7,7 +7,7 @@ jobs:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 5
- name: Build libraries
Expand All @@ -34,11 +34,11 @@ jobs:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 5
- name: Setup python environment
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install python packages
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 5
- name: Get moparser
Expand All @@ -86,11 +86,11 @@ jobs:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 5
- name: Setup python environment
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Check deprecated Text.lineColor annotation
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/checkCron.yml
Expand Up @@ -11,11 +11,11 @@ jobs:
if: github.repository_owner == 'modelica'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 5
- name: Setup python environment
uses: actions/setup-python@v2
uses: actions/setup-python@v4
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@v2
- uses: actions/checkout@v3
with:
fetch-depth: 5
- name: Setup python environment
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install python packages
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/generateReleaseNotes.yml
Expand Up @@ -17,19 +17,19 @@ jobs:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 5
- name: Setup python environment
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install python packages
run: pip install --user requests
- name: Generate MSL release notes from closed GitHub issues
timeout-minutes: 3
run: python ./Modelica/Resources/Documentation/Generate-ReleaseNotes.py ${{ github.event.inputs.milestone }} ${{ github.event.inputs.version }}
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: ResolvedGitHubIssues-Version-${{ github.event.inputs.version }}
path: ./Modelica/Resources/Documentation/Version-${{ github.event.inputs.version }}/

0 comments on commit 17ec1eb

Please sign in to comment.