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 .github/workflows/mega-linter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
app-id: ${{ vars.APP_ID }}
private-key: ${{ secrets.PRIVATE_KEY }}
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- id: lint
name: MegaLinter
uses: liblaf/actions/mega-linter@v1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
app-id: ${{ vars.APP_ID }}
private-key: ${{ secrets.PRIVATE_KEY }}
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
token: ${{ steps.auth.outputs.token }}
- id: release-please
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
app-id: ${{ vars.APP_ID }}
private-key: ${{ secrets.PRIVATE_KEY }}
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ fromJson(needs.release-please.outputs.pr).headBranchName }}
token: ${{ steps.auth.outputs.token }}
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
app-id: ${{ vars.APP_ID }}
private-key: ${{ secrets.PRIVATE_KEY }}
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ needs.release-please.outputs.tag }}
token: ${{ steps.auth.outputs.token }}
Expand Down
4 changes: 2 additions & 2 deletions template/.github/workflows/bench.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
python-versions: ${{ steps.inspect.outputs.supported_python_classifiers_json_array }}
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- id: inspect
name: Build and Inspect a Python Package
uses: hynek/build-and-inspect-python-package@v2
Expand All @@ -53,7 +53,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Setup Python
uses: liblaf/actions/setup-python@v1
- name: Install Mise
Expand Down
2 changes: 1 addition & 1 deletion template/.github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- id: config
Expand Down
2 changes: 1 addition & 1 deletion template/.github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
package-version: ${{ steps.build.outputs.package_version }}
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- id: build
name: Build and Inspect a Python Package
uses: hynek/build-and-inspect-python-package@v2
Expand Down
4 changes: 2 additions & 2 deletions template/.github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
python-versions: ${{ steps.inspect.outputs.supported_python_classifiers_json_array }}
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- id: inspect
name: Build and Inspect a Python Package
uses: hynek/build-and-inspect-python-package@v2
Expand All @@ -56,7 +56,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0 # I don't know why, but it is present in the official example
- name: Setup Python
Expand Down