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
4 changes: 2 additions & 2 deletions .github/workflows/test-changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
name: Test generation of changelog
env:
OASDIFF_ACTION_TEST_EXPECTED_OUTPUT: "21 changes: 2 error, 4 warning, 15 info"
OASDIFF_ACTION_TEST_EXPECTED_OUTPUT: "22 changes: 2 error, 4 warning, 16 info"
steps:
- name: checkout
uses: actions/checkout@v7
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
revision: https://raw.githubusercontent.com/oasdiff/oasdiff/main/data/openapi-test3.yaml
- name: Assert level filter from .oasdiff.yaml suppressed warning/info findings
run: |
# Without the YAML, the same specs produce "21 changes: 2 error, 4 warning, 15 info".
# Without the YAML, the same specs produce "22 changes: 2 error, 4 warning, 16 info".
# With level: ERR in YAML, only the 2 errors should remain.
output=$(echo "${{ steps.test_yaml_level.outputs.changelog }}" | head -n 1)
if [[ "$output" != "2 changes: 2 error, 0 warning, 0 info" ]]; then
Expand Down
2 changes: 1 addition & 1 deletion breaking/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM tufin/oasdiff:v1.26.1
FROM tufin/oasdiff:v1.27.0
RUN apk add --no-cache curl jq
ENV PLATFORM github-action
COPY entrypoint.sh /entrypoint.sh
Expand Down
2 changes: 1 addition & 1 deletion changelog/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM tufin/oasdiff:v1.26.1
FROM tufin/oasdiff:v1.27.0
RUN apk add --no-cache curl jq
ENV PLATFORM github-action
COPY entrypoint.sh /entrypoint.sh
Expand Down
2 changes: 1 addition & 1 deletion diff/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM tufin/oasdiff:v1.26.1
FROM tufin/oasdiff:v1.27.0
ENV PLATFORM github-action
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
2 changes: 1 addition & 1 deletion pr-comment/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM tufin/oasdiff:v1.26.1
FROM tufin/oasdiff:v1.27.0
RUN apk add --no-cache curl jq
ENV PLATFORM github-action
COPY entrypoint.sh /entrypoint.sh
Expand Down
2 changes: 1 addition & 1 deletion validate/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM tufin/oasdiff:v1.26.1
FROM tufin/oasdiff:v1.27.0
ENV PLATFORM github-action
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
2 changes: 1 addition & 1 deletion verify/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM tufin/oasdiff:v1.26.1
FROM tufin/oasdiff:v1.27.0
RUN apk add --no-cache curl jq
ENV PLATFORM github-action
COPY entrypoint.sh /entrypoint.sh
Expand Down
Loading