Skip to content
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

# https://github.com/actions/setup-java
- name: Install JDK ${{ matrix.java }}
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codescan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

# https://github.com/actions/setup-java
- name: Install JDK
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
java-version: 21
distribution: 'temurin'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/port_merged_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
# Port PR to other branch (ONLY if labeled with "port to")
# See https://github.com/korthout/backport-action
- name: Create backport pull requests
uses: korthout/backport-action@v2
uses: korthout/backport-action@v4
with:
# Trigger based on a "port to [branch]" label on PR
# (This label must specify the branch name to port to)
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/reusable-docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ jobs:
- name: Build and push image to ${{ env.DOCKER_BUILD_REGISTRY }}
if: ${{ ! matrix.isPr }}
id: docker_build
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
build-contexts: |
${{ inputs.dockerfile_additional_contexts }}
Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:
# with direct tarball export. This includes: dspace-dependencies, dspace-solr, dspace-postgres-loadsql
- name: Build and push image to local TAR file (docker-container driver)
if: ${{ matrix.arch == 'linux/amd64' && (!matrix.isPr || (inputs.build_id != 'dspace-prod' && inputs.build_id != 'dspace-test' && inputs.build_id != 'dspace-cli')) }}
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
build-contexts: |
${{ inputs.dockerfile_additional_contexts }}
Expand All @@ -255,7 +255,7 @@ jobs:
# The docker driver doesn't support tarball export, so we use 'load: true' and then 'docker save'.
- name: Build image (docker driver for local dependencies access)
if: ${{ matrix.arch == 'linux/amd64' && matrix.isPr && (inputs.build_id == 'dspace-prod' || inputs.build_id == 'dspace-test' || inputs.build_id == 'dspace-cli') }}
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
build-contexts: |
${{ inputs.dockerfile_additional_contexts }}
Expand Down
Loading