Skip to content

Commit

Permalink
updated CI actions
Browse files Browse the repository at this point in the history
  • Loading branch information
hechth committed Jun 19, 2024
1 parent f4bdd2c commit 39a3a8c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
python-version: ['3.11', '3.12']
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@latest
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@latest
with:
python-version: ${{ matrix.python-version }}
- name: Python info
Expand All @@ -44,9 +44,9 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@latest
- name: Set up Python 3.11
uses: actions/setup-python@v3
uses: actions/setup-python@latest
with:
python-version: 3.11
- name: Python info
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cffconvert.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: "cffconvert"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@latest
name: Check out a copy of the repository

- name: Check whether the citation metadata from CITATION.cff is valid
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@latest
- name: Set up Python 3.11
uses: actions/setup-python@v3
uses: actions/setup-python@latest
with:
python-version: 3.11
- name: Python info
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/markdown-link-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Check markdown links
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@latest
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
config-file: '.mlc-config.json'
4 changes: 2 additions & 2 deletions .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
name: SonarCloud
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@latest
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@latest
with:
python-version: 3.9
- name: Python info
Expand Down

0 comments on commit 39a3a8c

Please sign in to comment.