Skip to content

Commit 0871491

Browse files
authored
chore(deps): update github actions (#1954)
1 parent ebf5d8c commit 0871491

File tree

6 files changed

+19
-19
lines changed

6 files changed

+19
-19
lines changed

.github/workflows/dockerhub-description.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
docker-hub-description:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4.3.1
12+
- uses: actions/checkout@v6.0.1
1313

1414
- name: Docker Hub Description
15-
uses: peter-evans/dockerhub-description@v4.0.2
15+
uses: peter-evans/dockerhub-description@v5.0.0
1616
with:
1717
username: ${{ secrets.DOCKER_USERNAME }}
1818
password: ${{ secrets.DOCKER_PASSWORD }}
@@ -21,7 +21,7 @@ jobs:
2121
readme-filepath: ./DOCKERHUB.md
2222

2323
- name: Docker Hub Description - bpmn
24-
uses: peter-evans/dockerhub-description@v4.0.2
24+
uses: peter-evans/dockerhub-description@v5.0.0
2525
with:
2626
username: ${{ secrets.DOCKER_USERNAME }}
2727
password: ${{ secrets.DOCKER_PASSWORD }}
@@ -30,7 +30,7 @@ jobs:
3030
readme-filepath: ./DOCKERHUB-COMPANION.md
3131

3232
- name: Docker Hub Description - excalidraw
33-
uses: peter-evans/dockerhub-description@v4.0.2
33+
uses: peter-evans/dockerhub-description@v5.0.0
3434
with:
3535
username: ${{ secrets.DOCKER_USERNAME }}
3636
password: ${{ secrets.DOCKER_PASSWORD }}
@@ -39,7 +39,7 @@ jobs:
3939
readme-filepath: ./DOCKERHUB-COMPANION.md
4040

4141
- name: Docker Hub Description - mermaid
42-
uses: peter-evans/dockerhub-description@v4.0.2
42+
uses: peter-evans/dockerhub-description@v5.0.0
4343
with:
4444
username: ${{ secrets.DOCKER_USERNAME }}
4545
password: ${{ secrets.DOCKER_PASSWORD }}
@@ -48,7 +48,7 @@ jobs:
4848
readme-filepath: ./DOCKERHUB-COMPANION.md
4949

5050
- name: Docker Hub Description - diagramsnet
51-
uses: peter-evans/dockerhub-description@v4.0.2
51+
uses: peter-evans/dockerhub-description@v5.0.0
5252
with:
5353
username: ${{ secrets.DOCKER_USERNAME }}
5454
password: ${{ secrets.DOCKER_PASSWORD }}

.github/workflows/docs-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919

2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v6
2222
- name: Install Kubernetes Kind
2323
run: |
2424
curl -Lo ./kind "https://kind.sigs.k8s.io/dl/v0.11.1/kind-linux-amd64"
@@ -61,7 +61,7 @@ jobs:
6161
runs-on: ubuntu-latest
6262

6363
steps:
64-
- uses: actions/checkout@v4
64+
- uses: actions/checkout@v6
6565
- name: Install Kubernetes Kind
6666
run: |
6767
curl -Lo ./kind "https://kind.sigs.k8s.io/dl/v0.11.1/kind-linux-amd64"
@@ -104,7 +104,7 @@ jobs:
104104
runs-on: ubuntu-latest
105105

106106
steps:
107-
- uses: actions/checkout@v4
107+
- uses: actions/checkout@v6
108108
- name: Setup Docker
109109
# taken from https://github.com/docker/github-actions/blob/0f18e2abad9a4ac2963d2516246787375b5ec917/Dockerfile#L32
110110
run: curl -fL https://download.docker.com/linux/static/stable/x86_64/docker-20.10.21.tgz | tar xzO docker/docker > docker && sudo mv -f docker /usr/bin/docker && sudo chmod +x /usr/bin/docker

.github/workflows/docs-notify.yml

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

1414
steps:
1515
- name: Notify docs.kroki.io
16-
uses: peter-evans/repository-dispatch@v3.0.0
16+
uses: peter-evans/repository-dispatch@v4.0.1
1717
with:
1818
token: ${{ secrets.REPO_ACCESS_TOKEN }}
1919
repository: yuzutech/docs.kroki.io

.github/workflows/main.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
test-containers:
2323
runs-on: ubuntu-24.04
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v6
2626

2727
- name: Free up disk space
2828
#if: ${{ inputs.build_multiarch }}
@@ -190,7 +190,7 @@ jobs:
190190
run: sudo apt-get install graphviz -y
191191

192192
- name: Set up JDK 17
193-
uses: actions/setup-java@v4
193+
uses: actions/setup-java@v5
194194
with:
195195
java-version: 17
196196
distribution: temurin
@@ -232,7 +232,7 @@ jobs:
232232
CACHE_TO: 'type=local,dest=/tmp/.buildx-cache-new'
233233

234234
- name: 'Setup Node.js 22'
235-
uses: actions/setup-node@v4
235+
uses: actions/setup-node@v6
236236
with:
237237
node-version: 22
238238

.github/workflows/mermaid-ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
mermaid-ci:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2020
- name: 'Setup Node.js 22'
21-
uses: actions/setup-node@v4
21+
uses: actions/setup-node@v6
2222
with:
2323
node-version: 22
2424
- name: Install Node dependencies

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ jobs:
2727
runs-on: ubuntu-24.04
2828
if: ${{ inputs.create_release }}
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v6
3131
- name: Install GraphViz
3232
run: sudo apt-get install graphviz -y
3333
- name: Set up JDK 17
34-
uses: actions/setup-java@v4
34+
uses: actions/setup-java@v5
3535
with:
3636
java-version: 17
3737
distribution: temurin
@@ -223,11 +223,11 @@ jobs:
223223
printSavedSpace $((AVAILABLE_ROOT_END - AVAILABLE_ROOT_INITIAL))
224224
echo "overall:"
225225
printSavedSpace $((AVAILABLE_END - AVAILABLE_INITIAL))
226-
- uses: actions/checkout@v4
226+
- uses: actions/checkout@v6
227227
- name: Install GraphViz
228228
run: sudo apt-get install graphviz -y
229229
- name: Set up JDK 17
230-
uses: actions/setup-java@v4
230+
uses: actions/setup-java@v5
231231
with:
232232
java-version: 17
233233
distribution: temurin

0 commit comments

Comments
 (0)