Skip to content

Commit 725e123

Browse files
Merge branch 'release/0.9.181'
2 parents 6580a9c + 89e86e6 commit 725e123

116 files changed

Lines changed: 148 additions & 131 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ jobs:
1717

1818
steps:
1919
- name: Checkout GitHub sources
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
- name: Setup JDK ${{ matrix.java }}
22-
uses: actions/setup-java@v4
22+
uses: actions/setup-java@v5
2323
with:
2424
distribution: zulu
2525
java-version: ${{ matrix.java }}
2626
- name: Cache Maven packages
27-
uses: actions/cache@v4
27+
uses: actions/cache@v5
2828
with:
2929
path: |
3030
~/.m2/repository
@@ -44,14 +44,14 @@ jobs:
4444
docker save -o ~/docker-cache/docker.tar $(docker images --format "{{.Repository}}" | grep "zilla")
4545
4646
- name: Cache Docker image
47-
uses: actions/cache@v4
47+
uses: actions/cache@v5
4848
if: success()
4949
with:
5050
path: ~/docker-cache/docker.tar
5151
key: zilla-develop-SNAPSHOT-${{ github.run_id }}
5252

5353
- name: Conditional Artifact Upload
54-
uses: actions/upload-artifact@v5
54+
uses: actions/upload-artifact@v6
5555
if: failure()
5656
with:
5757
name: zilla-build-${{ matrix.java }}-${{ github.event.number }}
@@ -68,7 +68,7 @@ jobs:
6868
outputs:
6969
all_directories: ${{ steps.all-files.outputs.folders_no_base_path }}
7070
steps:
71-
- uses: actions/checkout@v5
71+
- uses: actions/checkout@v6
7272
with:
7373
fetch-depth: 0
7474

@@ -99,12 +99,12 @@ jobs:
9999
ZILLA_VERSION: develop-SNAPSHOT
100100
steps:
101101
- name: Checkout
102-
uses: actions/checkout@v5
102+
uses: actions/checkout@v6
103103
with:
104104
sparse-checkout: examples/${{ matrix.dir }}
105105

106106
- name: Restore cached Docker images
107-
uses: actions/cache@v4
107+
uses: actions/cache@v5
108108
with:
109109
path: ~/docker-cache/docker.tar
110110
key: zilla-develop-SNAPSHOT-${{ github.run_id }}
@@ -139,7 +139,7 @@ jobs:
139139
run: tar cvzf ./logs.tgz ./logs
140140
- name: Upload logs to GitHub
141141
if: failure()
142-
uses: actions/upload-artifact@v5
142+
uses: actions/upload-artifact@v6
143143
with:
144144
name: ${{ matrix.dir }}_logs.tgz
145145
path: ./logs.tgz

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ jobs:
4646

4747
steps:
4848
- name: Checkout repository
49-
uses: actions/checkout@v5
49+
uses: actions/checkout@v6
5050

5151
- name: Setup JDK 20
52-
uses: actions/setup-java@v4
52+
uses: actions/setup-java@v5
5353
with:
5454
distribution: zulu
5555
java-version: 20
@@ -68,7 +68,7 @@ jobs:
6868

6969
# Cache downloaded Maven dependencies
7070
- name: Cache Maven packages
71-
uses: actions/cache@v4
71+
uses: actions/cache@v5
7272
with:
7373
path: |
7474
~/.m2/repository

.github/workflows/links-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
linkChecker:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414

1515
- name: Link Checker
1616
uses: lycheeverse/lychee-action@v2.7.0

.github/workflows/release.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
require: admin
2626

2727
- name: Cache Homebrew
28-
uses: actions/cache@v4
28+
uses: actions/cache@v5
2929
with:
3030
path: /home/linuxbrew/.linuxbrew
3131
key: ${{ runner.os }}-homebrew
@@ -52,7 +52,7 @@ jobs:
5252
echo "https://x-access-token:${{ secrets.GITFLOW_RELEASES_TOKEN }}@github.com" > ~/.git-credentials
5353
5454
- name: Checkout sources on develop
55-
uses: actions/checkout@v5
55+
uses: actions/checkout@v6
5656
with:
5757
ref: develop
5858
fetch-depth: 0
@@ -77,7 +77,7 @@ jobs:
7777
distribution: zulu
7878

7979
- name: Cache Maven packages
80-
uses: actions/cache@v4
80+
uses: actions/cache@v5
8181
with:
8282
path: ~/.m2
8383
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
@@ -114,7 +114,7 @@ jobs:
114114

115115
steps:
116116
- name: Checkout GitHub sources
117-
uses: actions/checkout@v5
117+
uses: actions/checkout@v6
118118
with:
119119
ref: release/${{ inputs.version }}
120120
fetch-depth: 0
@@ -158,7 +158,7 @@ jobs:
158158

159159
steps:
160160
- name: Cache Homebrew
161-
uses: actions/cache@v4
161+
uses: actions/cache@v5
162162
with:
163163
path: /home/linuxbrew/.linuxbrew
164164
key: ${{ runner.os }}-homebrew
@@ -185,7 +185,7 @@ jobs:
185185
echo "https://x-access-token:${{ secrets.GITFLOW_RELEASES_TOKEN }}@github.com" > ~/.git-credentials
186186
187187
- name: Checkout GitHub sources on release branch
188-
uses: actions/checkout@v5
188+
uses: actions/checkout@v6
189189
with:
190190
ref: release/${{ inputs.version }}
191191
fetch-depth: 0
@@ -212,3 +212,6 @@ jobs:
212212

213213
- name: Commit CHANGELOG on develop branch
214214
run: git commit -a -m "Update CHANGELOG.md"
215+
216+
- name: Push CHANGELOG commit to develop
217+
run: git push origin develop

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,21 @@
22

33
## [Unreleased](https://github.com/aklivity/zilla/tree/HEAD)
44

5-
[Full Changelog](https://github.com/aklivity/zilla/compare/0.9.179...HEAD)
5+
[Full Changelog](https://github.com/aklivity/zilla/compare/0.9.180...HEAD)
6+
7+
**Merged pull requests:**
8+
9+
- Push CHANGELOG commit to develop [\#1634](https://github.com/aklivity/zilla/pull/1634) ([jfallows](https://github.com/jfallows))
10+
- Bump ubuntu from jammy-20251013 to jammy-20260109 in /cloud/docker-image/src/main/docker [\#1631](https://github.com/aklivity/zilla/pull/1631) ([dependabot[bot]](https://github.com/apps/dependabot))
11+
- Bump alpine from 3.23.0 to 3.23.2 in /cloud/docker-image/src/main/docker [\#1625](https://github.com/aklivity/zilla/pull/1625) ([dependabot[bot]](https://github.com/apps/dependabot))
12+
- Bump actions/upload-artifact from 5 to 6 [\#1624](https://github.com/aklivity/zilla/pull/1624) ([dependabot[bot]](https://github.com/apps/dependabot))
13+
- Bump actions/cache from 4 to 5 [\#1621](https://github.com/aklivity/zilla/pull/1621) ([dependabot[bot]](https://github.com/apps/dependabot))
14+
- Bump actions/checkout from 5 to 6 [\#1619](https://github.com/aklivity/zilla/pull/1619) ([dependabot[bot]](https://github.com/apps/dependabot))
15+
- Bump actions/setup-java from 4 to 5 [\#1541](https://github.com/aklivity/zilla/pull/1541) ([dependabot[bot]](https://github.com/apps/dependabot))
16+
17+
## [0.9.180](https://github.com/aklivity/zilla/tree/0.9.180) (2026-01-20)
18+
19+
[Full Changelog](https://github.com/aklivity/zilla/compare/0.9.179...0.9.180)
620

721
**Fixed bugs:**
822

build/flyweight-maven-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>io.aklivity.zilla</groupId>
1010
<artifactId>build</artifactId>
11-
<version>0.9.180</version>
11+
<version>0.9.181</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

build/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>io.aklivity.zilla</groupId>
1010
<artifactId>zilla</artifactId>
11-
<version>0.9.180</version>
11+
<version>0.9.181</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

cloud/docker-image/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>io.aklivity.zilla</groupId>
1010
<artifactId>cloud</artifactId>
11-
<version>0.9.180</version>
11+
<version>0.9.181</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

cloud/docker-image/src/main/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ RUN cat zpm.json.template | sed "s/\${VERSION}/${project.version}/g" | tee zpm.j
2525
RUN ./zpmw install --debug --instrument --exclude-remote-repositories
2626
RUN ./zpmw clean --keep-image
2727

28-
FROM ubuntu:jammy-20251013
28+
FROM ubuntu:jammy-20260109
2929

3030
ENV ZILLA_VERSION ${project.version}
3131

cloud/docker-image/src/main/docker/alpine.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ RUN apk add --no-cache wget
2727
RUN ./zpmw install --debug --exclude-remote-repositories
2828
RUN ./zpmw clean --keep-image
2929

30-
FROM alpine:3.23.0
30+
FROM alpine:3.23.2
3131

3232
ENV ZILLA_VERSION ${project.version}
3333

0 commit comments

Comments
 (0)