Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/linting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Lint artifacts
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- shell: bash
run: |
shellcheck "${GITHUB_WORKSPACE}"/*.sh
4 changes: 2 additions & 2 deletions .github/workflows/requirements-tracing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
env:
REPORT_FILENAME: "requirements-tracing-report.html"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Run OpenFastTrace
id: run-oft
Expand All @@ -27,7 +27,7 @@ jobs:

- name: Upload tracing report
id: upload-report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: tracing-report
path: ${{ env.REPORT_FILENAME }}
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# [impl->req~run-oft-trace-command~1]
FROM eclipse-temurin:22-jre-alpine
FROM eclipse-temurin:25-jre-alpine
# alpine comes with sh only, by default
RUN apk add --no-cache bash

ARG OFT_CORE_VERSION=4.2.0
ARG OFT_ASCIIDOC_PLUGIN_VERSION=0.3.0
ARG OFT_CORE_VERSION=4.3.0
ARG OFT_ASCIIDOC_PLUGIN_VERSION=0.3.1

ENV LIB_DIR=/opt/oft/lib

Expand Down
Loading