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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:


- name: Git Checkout
uses: actions/checkout@v5 # https://github.com/actions/checkout
uses: actions/checkout@v6 # https://github.com/actions/checkout


- name: "Install: Chromium Browser"
Expand Down Expand Up @@ -294,7 +294,7 @@ jobs:

steps:
- name: Git Checkout # required to avoid https://docs.codecov.com/docs/error-reference#unusable-reports
uses: actions/checkout@v5 # https://github.com/actions/checkout
uses: actions/checkout@v6 # https://github.com/actions/checkout


- name: Download coverage reports
Expand Down Expand Up @@ -383,7 +383,7 @@ jobs:

- name: Git Checkout
# only required by "gh release create" to prevent "fatal: Not a git repository"
uses: actions/checkout@v5 # https://github.com/actions/checkout
uses: actions/checkout@v6 # https://github.com/actions/checkout


- name: Delete untagged docker image
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:


- name: Git checkout
uses: actions/checkout@v5 # https://github.com/actions/checkout
uses: actions/checkout@v6 # https://github.com/actions/checkout


- name: "Install Python and PDM" # https://github.com/pdm-project/setup-pdm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Git checkout
uses: actions/checkout@v5 # https://github.com/actions/checkout
uses: actions/checkout@v6 # https://github.com/actions/checkout

- name: Run stale action
uses: actions/stale@v10 # https://github.com/actions/stale
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-python-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:


- name: Git Checkout
uses: actions/checkout@v5 # https://github.com/actions/checkout
uses: actions/checkout@v6 # https://github.com/actions/checkout
with:
token: ${{ steps.generate_token.outputs.token }}

Expand Down
Loading