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/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ jobs:
pull-requests: write
steps:
- name: Checkout with shallow clone
uses: actions/checkout@v5
uses: actions/checkout@v6
if: ${{ !contains(matrix.os.coverage, 'coverage') }}
- name: Checkout without shallow clone
uses: actions/checkout@v5
uses: actions/checkout@v6
if: ${{ contains(matrix.os.coverage, 'coverage') }}
with:
# Disabling shallow clone is recommended for improving relevancy of SonarCloud reporting
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: 'Dependency Review'
uses: actions/dependency-review-action@v4
2 changes: 1 addition & 1 deletion .github/workflows/generate-demo-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
permissions:
pull-requests: write # surge-preview: PR comments
steps:
- uses: actions/checkout@v5 # access to the local action
- uses: actions/checkout@v6 # access to the local action
- name: surge preview
uses: ./.github/actions/custom-surge-preview
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/generate-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
permissions:
pull-requests: write # surge-preview: PR comments
steps:
- uses: actions/checkout@v5 # access to the local action
- uses: actions/checkout@v6 # access to the local action
- name: surge preview
uses: ./.github/actions/custom-surge-preview
with:
Expand All @@ -53,7 +53,7 @@ jobs:
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && github.event.ref == 'refs/heads/master'
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Build Setup
uses: ./.github/actions/build-setup
- name: Build docs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/notify-new-version-available-on-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- bpmn-visualization-R
steps:
# Need to checkout to access to the internal action
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Notify that a new bpmn-visualization version is available
uses: ./.github/actions/notify-PA-repo-of-new-version
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set VERSION
shell: bash
run: echo "VERSION=${GITHUB_REF#refs/tags/v*}" >> $GITHUB_ENV
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Build Setup
uses: ./.github/actions/build-setup
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- run: |
echo "New version type: ${{ inputs.type }}"
- name: Setup checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# Use a PAT to ensure workflow run are triggered after git push
token: ${{ secrets.GH_RELEASE_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
browser: msedge
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Free disk space on Ubuntu runner
if: runner.os == 'Linux'
uses: ./.github/actions/free-runner-disk-space-ubuntu
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-npm-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
test-bundles-browser: chromium
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Build Setup
uses: ./.github/actions/build-setup
- name: Build npm package
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
browser: chromium
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Build Setup
uses: ./.github/actions/build-setup
- name: Install ${{env.browser}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
env:
VERSION: ${{ github.event.client_payload.version || inputs.version }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: v${{ env.VERSION }}
- name: Build Setup
Expand Down