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/arazzo-engine-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
private-key: ${{ secrets.ARAZZO_BUILDER_PRIVATE_KEY }}

- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: true
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
private-key: ${{ secrets.ARAZZO_BUILDER_PRIVATE_KEY }}

- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/arazzo-engine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
generator: ${{ steps.filter.outputs.generator }}
runner: ${{ steps.filter.outputs.runner }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- id: filter
uses: dorny/paths-filter@v3
with:
Expand All @@ -40,7 +40,7 @@ jobs:
- name: sentinel
run: echo "generator check"

- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Test generator
if: ${{ needs.detect-changes.outputs.generator == 'true' }}
Expand All @@ -65,7 +65,7 @@ jobs:
- name: sentinel
run: echo "runner check"

- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Test runner
if: ${{ needs.detect-changes.outputs.runner == 'true' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/arazzo-generator-docker-aws.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/arazzo-generator-docker-gcr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
packages: write

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

- name: Determine image tag
id: tag
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/arazzo-generator-pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
outputs:
version_changed: ${{ steps.check.outputs.changed }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Get current version
id: get_version
run: |
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
actions: write

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/arazzo-runner-pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
outputs:
version_changed: ${{ steps.check.outputs.changed }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Get current version
id: get_version
run: |
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
actions: write

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

# Add any setup steps before running the `github/codeql-action/init` action.
# This includes steps like installing compilers or runtimes (`actions/setup-node`
Expand Down