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
2 changes: 1 addition & 1 deletion .github/workflows/dispatch-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
echo "branch=${BRANCH}" >>"${GITHUB_OUTPUT}"

- name: 'Checkout repo'
uses: 'actions/checkout@v5'
uses: 'actions/checkout@v6'
with:
repository: 'OXID-eSales/github-actions'
ref: '${{ steps.branch.outputs.branch }}'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/merge-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- name: 'Checkout repo'
if: ${{ steps.data.outputs.skip != 'true' }}
uses: 'actions/checkout@v5'
uses: 'actions/checkout@v6'
with:
repository: 'OXID-eSales/github-actions'
ref: 'main'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push-validate_workflows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
steps:
- name: 'Checkout'
id: checkout
uses: 'actions/checkout@v5'
uses: 'actions/checkout@v6'

- name: 'Lint yaml files'
id: yamllint
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
steps:
- name: 'Checkout'
id: checkout
uses: 'actions/checkout@v5'
uses: 'actions/checkout@v6'

- name: 'Run actionlint'
id: actionlint
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/universal_workflow_light.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,15 @@ jobs:
runs-on: ${{ fromJSON(inputs.runs_on) }}
steps:
- name: 'Checkout testplan defaults'
uses: 'actions/checkout@v5'
uses: 'actions/checkout@v6'
with:
repository: 'OXID-eSales/github-actions'
ref: '${{ inputs.defaults }}'
path: 'defaults'
sparse-checkout: '${{ inputs.default_plan_folder }}'

- name: 'Checkout testplans'
uses: 'actions/checkout@v5'
uses: 'actions/checkout@v6'
with:
sparse-checkout: |
${{ inputs.plan_folder}}
Expand Down Expand Up @@ -1147,7 +1147,7 @@ jobs:

- name: 'Checkout shop'
if: ${{ env.SONAR_TOKEN != '' }}
uses: 'actions/checkout@v5'
uses: 'actions/checkout@v6'
with:
fetch-depth: 0
repository: '${{ steps.sonarcloud_testplan.outputs.sonarcloud_git_repository }}'
Expand Down Expand Up @@ -1204,7 +1204,7 @@ jobs:
steps:
- name: 'Checkout'
id: checkout
uses: 'actions/checkout@v5'
uses: 'actions/checkout@v6'

- name: 'Lint yaml files'
id: yamllint
Expand Down Expand Up @@ -1281,7 +1281,7 @@ jobs:
debug: ${{ inputs.debug }}

- name: 'Checkout the repo for cleanup'
uses: 'actions/checkout@v5'
uses: 'actions/checkout@v6'
with:
path: repo

Expand Down