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/10-review.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
if: github.actor != 'dependabot[bot]'
continue-on-error: true
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

# interesting alternative: https://github.com/cocogitto/cocogitto
- uses: webiny/action-conventional-commits@v1.3.0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/auto-run-repo-ansible.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- if: ${{ env.IS_PULL_REQUEST == '0' }}
uses: actions/checkout@v5
uses: actions/checkout@v6

- if: ${{ env.IS_PULL_REQUEST == '1' }}
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: refs/pull/${{ github.event.pull_request.number }}/merge

Expand Down
4 changes: 2 additions & 2 deletions templates/.github/workflows/10-review.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
if: github.actor != 'dependabot[bot]'
continue-on-error: true
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

# interesting alternative: https://github.com/cocogitto/cocogitto
- uses: webiny/action-conventional-commits@v1.3.0
Expand All @@ -37,7 +37,7 @@ jobs:
code-quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: latest repo-ansible/reviewdog container
run: docker pull ghcr.io/linkorb/repo-ansible/reviewdog:latest
- name: run reviewdog checks
Expand Down
2 changes: 1 addition & 1 deletion templates/.github/workflows/30-release-and-build.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions templates/.github/workflows/auto-run-repo-ansible.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- if: ${{ env.IS_PULL_REQUEST == '0' }}
uses: actions/checkout@v5
uses: actions/checkout@v6

- if: ${{ env.IS_PULL_REQUEST == '1' }}
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: refs/pull/${{ github.event.pull_request.number }}/merge

Expand Down