Skip to content

Commit 99b3b57

Browse files
chore(gha): bump actions/checkout from 5 to 6 (#432)
1 parent 9536d07 commit 99b3b57

10 files changed

+11
-11
lines changed

.github/actions/build-documentation/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ description: 'Build static and API documentation.'
44
runs:
55
using: 'composite'
66
steps:
7-
- uses: actions/checkout@v3
7+
# The checkout is done in the workflow using this action
88
- name: Setup node
9-
uses: actions/setup-node@v3
9+
uses: actions/setup-node@v6
1010
with:
1111
node-version: '22'
1212
- name: Install dependencies

.github/workflows/deploy-documentation-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
docs:
1818
runs-on: ${{ vars.RUNNER_UBUNTU }}
1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
- name: Build documentation
2222
uses: ./.github/actions/build-documentation
2323
- name: Upload

.github/workflows/deploy-documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
build:
2626
runs-on: ${{ vars.RUNNER_UBUNTU }}
2727
steps:
28-
- uses: actions/checkout@v5
28+
- uses: actions/checkout@v6
2929
- name: Build documentation
3030
uses: ./.github/actions/build-documentation
3131
- name: Upload artifact for GitHub Pages

.github/workflows/post-release-update_bpmn_visualization_version_in_Examples_repo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
BUILD_DEMO_WORKFLOW_ID: ${{ github.event.client_payload.build_demo_workflow_id || inputs.build_demo_workflow_id }}
3030
BUILD_DEMO_REPO: ${{ github.event.client_payload.build_demo_repo || inputs.build_demo_repo }}
3131
steps:
32-
- uses: actions/checkout@v5
32+
- uses: actions/checkout@v6
3333
- name: Update examples
3434
run: echo "Examples updated with version ${{ env.VERSION }}"
3535
- name: Delete old Demo

.github/workflows/post-release-update_bpmn_visualization_version_in_R_repo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
env:
1515
VERSION: ${{ github.event.client_payload.version || inputs.version }}
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
- name: Get the old version of bpmn-visualization
1919
id: lookupOldBPMNVisuVersion
2020
uses: mikefarah/yq@v4

.github/workflows/post-release-upload-demo-archive-and-trigger-companion-repositories-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
env:
1616
VERSION: ${{ github.event.client_payload.version || inputs.version }}
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
with:
2020
ref: v${{ env.VERSION }}
2121
- name: Setup node

.github/workflows/release-R.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
echo "New version type: ${{ inputs.type }}"
1616
1717
- name: Setup checkout
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919
with:
2020
token: ${{ secrets.GH_RELEASE_TOKEN }}
2121

.github/workflows/release-bpmn_visualization.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
node-version: '16'
2020
- name: Setup checkout
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222
with:
2323
token: ${{ secrets.GH_RELEASE_TOKEN }}
2424
- name: Config git

.github/workflows/surge-pr-fork-01-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-24.04
1414

1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
- name: Build fake demo
1818
if: ${{ github.event.action != 'closed' }}
1919
env:

.github/workflows/surge-preview-for-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
echo "domain-exist: ${{ steps.surge-preview-tools.outputs.domain-exist }}"
2828
echo "preview-url: ${{ steps.surge-preview-tools.outputs.preview-url }}"
2929
echo "surge-token-valid: ${{ steps.surge-preview-tools.outputs.surge-token-valid }}"
30-
- uses: actions/checkout@v5
30+
- uses: actions/checkout@v6
3131
- name: Build fake demo
3232
if: ${{ github.event.action != 'closed' }}
3333
env:

0 commit comments

Comments
 (0)