Skip to content

Commit e46ac48

Browse files
Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 5b452fa commit e46ac48

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/dispatch-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
echo "branch=${BRANCH}" >>"${GITHUB_OUTPUT}"
4545
4646
- name: 'Checkout repo'
47-
uses: 'actions/checkout@v5'
47+
uses: 'actions/checkout@v6'
4848
with:
4949
repository: 'OXID-eSales/github-actions'
5050
ref: '${{ steps.branch.outputs.branch }}'

.github/workflows/merge-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
3636
- name: 'Checkout repo'
3737
if: ${{ steps.data.outputs.skip != 'true' }}
38-
uses: 'actions/checkout@v5'
38+
uses: 'actions/checkout@v6'
3939
with:
4040
repository: 'OXID-eSales/github-actions'
4141
ref: 'main'

.github/workflows/push-validate_workflows.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
steps:
3737
- name: 'Checkout'
3838
id: checkout
39-
uses: 'actions/checkout@v5'
39+
uses: 'actions/checkout@v6'
4040

4141
- name: 'Lint yaml files'
4242
id: yamllint
@@ -76,7 +76,7 @@ jobs:
7676
steps:
7777
- name: 'Checkout'
7878
id: checkout
79-
uses: 'actions/checkout@v5'
79+
uses: 'actions/checkout@v6'
8080

8181
- name: 'Run actionlint'
8282
id: actionlint

.github/workflows/universal_workflow_light.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,15 @@ jobs:
7272
runs-on: ${{ fromJSON(inputs.runs_on) }}
7373
steps:
7474
- name: 'Checkout testplan defaults'
75-
uses: 'actions/checkout@v5'
75+
uses: 'actions/checkout@v6'
7676
with:
7777
repository: 'OXID-eSales/github-actions'
7878
ref: '${{ inputs.defaults }}'
7979
path: 'defaults'
8080
sparse-checkout: '${{ inputs.default_plan_folder }}'
8181

8282
- name: 'Checkout testplans'
83-
uses: 'actions/checkout@v5'
83+
uses: 'actions/checkout@v6'
8484
with:
8585
sparse-checkout: |
8686
${{ inputs.plan_folder}}
@@ -1147,7 +1147,7 @@ jobs:
11471147

11481148
- name: 'Checkout shop'
11491149
if: ${{ env.SONAR_TOKEN != '' }}
1150-
uses: 'actions/checkout@v5'
1150+
uses: 'actions/checkout@v6'
11511151
with:
11521152
fetch-depth: 0
11531153
repository: '${{ steps.sonarcloud_testplan.outputs.sonarcloud_git_repository }}'
@@ -1204,7 +1204,7 @@ jobs:
12041204
steps:
12051205
- name: 'Checkout'
12061206
id: checkout
1207-
uses: 'actions/checkout@v5'
1207+
uses: 'actions/checkout@v6'
12081208

12091209
- name: 'Lint yaml files'
12101210
id: yamllint
@@ -1281,7 +1281,7 @@ jobs:
12811281
debug: ${{ inputs.debug }}
12821282

12831283
- name: 'Checkout the repo for cleanup'
1284-
uses: 'actions/checkout@v5'
1284+
uses: 'actions/checkout@v6'
12851285
with:
12861286
path: repo
12871287

0 commit comments

Comments
 (0)