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
4 changes: 2 additions & 2 deletions .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 Expand Up @@ -102,7 +102,7 @@ jobs:
private-key: ${{ secrets.ACTIONS_RELEASE_APP_PRIVATE_KEY }}

- name: 'Create branch and Pull Request'
uses: 'peter-evans/create-pull-request@v7'
uses: 'peter-evans/create-pull-request@v8'
with:
token: ${{ steps.generate_token.outputs.token }}
path: 'github-actions'
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
22 changes: 11 additions & 11 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 @@ -152,7 +152,7 @@ jobs:

- name: 'Cache testplan on Github'
if: ${{ inputs.runs_on == '"ubuntu-latest"'}}
uses: 'actions/cache/save@v4'
uses: 'actions/cache/save@v5'
with:
path: |
${{ inputs.plan_folder }}/*
Expand Down Expand Up @@ -501,7 +501,7 @@ jobs:

- name: 'Cache preparedShop on github'
if: ${{ steps.iltp.outputs.install_cache_prepared_shop == 'true' && needs.init.outputs.use_private_cache != 'true'}}
uses: 'actions/cache/save@v4'
uses: 'actions/cache/save@v5'
with:
path: |
./*
Expand Down Expand Up @@ -610,7 +610,7 @@ jobs:

- name: 'Upload configuration artifacts'
if: always()
uses: 'actions/upload-artifact@v4'
uses: 'actions/upload-artifact@v6'
with:
name: '${{ steps.iltp.outputs.install_output_artifact_prefix }}-${{steps.itn.outputs.matrix_suffix}}'
path: |-
Expand Down Expand Up @@ -662,7 +662,7 @@ jobs:

- name: 'Cache current installation on github'
if: ${{ needs.init.outputs.use_private_cache != 'true' }}
uses: 'actions/cache/save@v4'
uses: 'actions/cache/save@v5'
with:
path: |
./*
Expand Down Expand Up @@ -868,7 +868,7 @@ jobs:

- name: 'Upload coverage report'
if: ${{ always() && steps.rt.outputs.runscript_coverage_prefix != '' }}
uses: 'actions/upload-artifact@v4'
uses: 'actions/upload-artifact@v6'
with:
name: ${{ steps.rt.outputs.runscript_coverage_prefix}}-${{steps.rt.outputs.runscript_suffix }}
path: source/${{ steps.rt.outputs.runscript_path }}/tests/Reports/*
Expand Down Expand Up @@ -1065,7 +1065,7 @@ jobs:

- name: 'Upload coverage report'
if: ${{ always() && steps.rt.outputs.runslim_coverage_prefix != '' }}
uses: 'actions/upload-artifact@v4'
uses: 'actions/upload-artifact@v6'
with:
name: ${{ steps.rt.outputs.runslim_coverage_prefix}}-${{steps.rt.outputs.runslim_suffix }}
path: source/${{ steps.rt.outputs.runslim_path }}/tests/Reports/*
Expand Down Expand Up @@ -1148,7 +1148,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 @@ -1205,7 +1205,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 @@ -1282,7 +1282,7 @@ jobs:
debug: ${{ inputs.debug }}

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

Expand Down