Skip to content

Commit 06d74bc

Browse files
chore(gha): bump actions/checkout from 5 to 6 (#3430)
1 parent 7ba85b6 commit 06d74bc

12 files changed

+14
-14
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ jobs:
6464
pull-requests: write
6565
steps:
6666
- name: Checkout with shallow clone
67-
uses: actions/checkout@v5
67+
uses: actions/checkout@v6
6868
if: ${{ !contains(matrix.os.coverage, 'coverage') }}
6969
- name: Checkout without shallow clone
70-
uses: actions/checkout@v5
70+
uses: actions/checkout@v6
7171
if: ${{ contains(matrix.os.coverage, 'coverage') }}
7272
with:
7373
# Disabling shallow clone is recommended for improving relevancy of SonarCloud reporting

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
steps:
4343
- name: Checkout repository
44-
uses: actions/checkout@v5
44+
uses: actions/checkout@v6
4545

4646
# Initializes the CodeQL tools for scanning.
4747
- name: Initialize CodeQL

.github/workflows/dependency-review-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
runs-on: ubuntu-24.04
1515
steps:
1616
- name: 'Checkout Repository'
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818
- name: 'Dependency Review'
1919
uses: actions/dependency-review-action@v4

.github/workflows/generate-demo-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
permissions:
2929
pull-requests: write # surge-preview: PR comments
3030
steps:
31-
- uses: actions/checkout@v5 # access to the local action
31+
- uses: actions/checkout@v6 # access to the local action
3232
- name: surge preview
3333
uses: ./.github/actions/custom-surge-preview
3434
with:

.github/workflows/generate-documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
permissions:
4040
pull-requests: write # surge-preview: PR comments
4141
steps:
42-
- uses: actions/checkout@v5 # access to the local action
42+
- uses: actions/checkout@v6 # access to the local action
4343
- name: surge preview
4444
uses: ./.github/actions/custom-surge-preview
4545
with:
@@ -53,7 +53,7 @@ jobs:
5353
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && github.event.ref == 'refs/heads/master'
5454
runs-on: ubuntu-24.04
5555
steps:
56-
- uses: actions/checkout@v5
56+
- uses: actions/checkout@v6
5757
- name: Build Setup
5858
uses: ./.github/actions/build-setup
5959
- name: Build docs

.github/workflows/notify-new-version-available-on-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- bpmn-visualization-R
2222
steps:
2323
# Need to checkout to access to the internal action
24-
- uses: actions/checkout@v5
24+
- uses: actions/checkout@v6
2525
- name: Notify that a new bpmn-visualization version is available
2626
uses: ./.github/actions/notify-PA-repo-of-new-version
2727
with:

.github/workflows/publish-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set VERSION
1414
shell: bash
1515
run: echo "VERSION=${GITHUB_REF#refs/tags/v*}" >> $GITHUB_ENV
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
- name: Build Setup
1818
uses: ./.github/actions/build-setup
1919
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- run: |
1515
echo "New version type: ${{ inputs.type }}"
1616
- name: Setup checkout
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818
with:
1919
# Use a PAT to ensure workflow run are triggered after git push
2020
token: ${{ secrets.GH_RELEASE_TOKEN }}

.github/workflows/test-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
browser: msedge
6666
steps:
6767
- name: Checkout
68-
uses: actions/checkout@v5
68+
uses: actions/checkout@v6
6969
- name: Free disk space on Ubuntu runner
7070
if: runner.os == 'Linux'
7171
uses: ./.github/actions/free-runner-disk-space-ubuntu

.github/workflows/test-npm-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
test-bundles-browser: chromium
4747
steps:
4848
- name: Checkout
49-
uses: actions/checkout@v5
49+
uses: actions/checkout@v6
5050
- name: Build Setup
5151
uses: ./.github/actions/build-setup
5252
- name: Build npm package

0 commit comments

Comments
 (0)