Skip to content
Open
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 .github/workflows/gh-pages-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
deploy-gh-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Configure Git user
run: |
git config user.name github-actions[bot]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/openssf-scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

steps:
- name: "Checkout code"
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
persist-credentials: false

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pr-quality-gate.yaml.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
if: ${{ !github.event.pull_request.draft }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
# NOTE: point "uses:" to the DIRECTORY that contains action.yaml
# If your composite is at ./pre-commit/action.yaml, use "./pre-commit"
- name: Run pre-commit composite
Expand All @@ -35,7 +35,7 @@ jobs:
matrix:
python-version: ${{ fromJSON(env.SUPPORTED_PYTHON_VERSIONS) }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Run pytest composite
uses: ./.github/workflows/pytest
with:
Expand All @@ -50,7 +50,7 @@ jobs:
matrix:
python-version: ${{ fromJSON(env.SUPPORTED_PYTHON_VERSIONS) }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Run pytest composite
uses: ./.github/workflows/pytest
with:
Expand All @@ -62,7 +62,7 @@ jobs:
runs-on: ubuntu-latest
needs: [ pytest ] # starts only after pytest completes
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Run SonarCloud composite
uses: ./.github/workflows/sonar
with:
Expand Down
Loading