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
4 changes: 2 additions & 2 deletions .github/workflows/_detect_changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ jobs:
backend: ${{steps.diff_check_backend.outputs.backend}}
frontend: ${{steps.diff_check_frontend.outputs.frontend}}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ github.base_ref }}

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
clean: false
- name: Generate summary
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
node_version: ${{ fromJson(inputs.node_versions) }}
language: ['javascript']
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Node.js
uses: actions/setup-node@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ jobs:
language: ['python']
env: ${{ fromJson(inputs.env) }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v6
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/_release_and_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true && ( github.base_ref == 'master' || github.base_ref == 'main' )
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0 # otherwise, you do not retrieve the tags

Expand All @@ -62,7 +62,7 @@ jobs:
append_body: true

- name: Checkout created tag
uses: actions/checkout@v6
uses: actions/checkout@v7
if: steps.check-tag.outputs.match == 'true' && ( inputs.publish_on_test_pypi || inputs.publish_on_pypi)
with:
fetch-depth: 0 # otherwise, you do not retrieve the tags
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/buffacli_CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
outputs:
python_code: ${{steps.diff_check.outputs.python_code}}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ github.base_ref }}
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
clean: false
- name: Generate diffs
Expand All @@ -33,7 +33,7 @@ jobs:
if: ${{ needs.detect-changes.outputs.python_code > 0 }}

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/package-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Build Python package
run: |
Expand Down
Loading