Skip to content

Commit

Permalink
chore: version updates
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Davids <[email protected]>
  • Loading branch information
sdavids committed Jan 9, 2025
1 parent 569517b commit 6c2882c
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ jobs:
# https://github.com/actions/setup-node/releases
uses: actions/[email protected]
with:
node-version: 20.18.0
node-version: 22.13.0
- if: steps.changes.outputs.docs == 'true'
name: Install Antora
run: npm i [email protected].9
run: npm i [email protected].10
- if: steps.changes.outputs.docs == 'true'
name: Generate Site
run: npx antora docs/antora-playbook.yml
Expand Down
2 changes: 1 addition & 1 deletion scripts/asciidoc/asciidoc_html_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
set -Eeu -o pipefail -o posix

# https://hub.docker.com/r/asciidoctor/docker-asciidoctor
readonly asciidoctor_version=1.80.0
readonly asciidoctor_version=1.81.0
readonly asciidoctor_image="asciidoctor/docker-asciidoctor:${asciidoctor_version}"

# https://stackoverflow.com/a/3915420
Expand Down
2 changes: 1 addition & 1 deletion scripts/asciidoc/asciidoc_pdf_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
set -Eeu -o pipefail -o posix

# https://hub.docker.com/r/asciidoctor/docker-asciidoctor
readonly asciidoctor_version=1.80.0
readonly asciidoctor_version=1.81.0
readonly asciidoctor_image="asciidoctor/docker-asciidoctor:${asciidoctor_version}"

# https://stackoverflow.com/a/3915420
Expand Down
4 changes: 2 additions & 2 deletions scripts/cert/java/quarkus/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

[plugins]
# https://plugins.gradle.org/plugin/io.quarkus
quarkusPlugin = "io.quarkus:3.17.4"
quarkusPlugin = "io.quarkus:3.17.6"

[libraries]
# https://github.com/quarkusio/quarkus/releases
quarkusPlatform = "io.quarkus.platform:quarkus-bom:3.17.4"
quarkusPlatform = "io.quarkus.platform:quarkus-bom:3.17.6"
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
3 changes: 1 addition & 2 deletions scripts/cert/java/quarkus/gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,7 @@ done
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
' "$PWD" ) || exit
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Expand Down
4 changes: 2 additions & 2 deletions scripts/cert/java/spring-boot/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[plugins]
# https://plugins.gradle.org/plugin/io.spring.dependency-management
springDependencyManagement = "io.spring.dependency-management:1.1.6"
springDependencyManagement = "io.spring.dependency-management:1.1.7"
# https://github.com/spring-projects/spring-boot/releases
# https://plugins.gradle.org/plugin/org.springframework.boot
springBoot = "org.springframework.boot:3.4.0"
springBoot = "org.springframework.boot:3.4.1"
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
3 changes: 1 addition & 2 deletions scripts/cert/java/spring-boot/gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,7 @@ done
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
' "$PWD" ) || exit
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Expand Down
2 changes: 1 addition & 1 deletion scripts/cert/js/nodejs/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22.12.0
22.13.0
2 changes: 1 addition & 1 deletion scripts/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
### Builder ###

# https://hub.docker.com/_/alpine
FROM alpine:3.21.0 AS builder
FROM alpine:3.21.2 AS builder

RUN mkdir -p /tmp/dist && \
printf '<!doctype html><title>Test</title><h1>Test</h1>' > /tmp/dist/index.html
Expand Down

0 comments on commit 6c2882c

Please sign in to comment.