From 0e58fc5023e6d25eac6626d92d763d6d479677e6 Mon Sep 17 00:00:00 2001 From: Reuven Harrison Date: Mon, 15 Jun 2026 00:03:25 +0300 Subject: [PATCH] bump: oasdiff v1.19.1 --- README.md | 18 +++++++++--------- breaking/Dockerfile | 2 +- changelog/Dockerfile | 2 +- diff/Dockerfile | 2 +- pr-comment/Dockerfile | 2 +- validate/Dockerfile | 2 +- verify/Dockerfile | 2 +- 7 files changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 053f777..792616a 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ jobs: steps: - uses: actions/checkout@v6 - run: git fetch --depth=1 origin ${{ github.base_ref }} - - uses: oasdiff/oasdiff-action/breaking@v0.1.0 + - uses: oasdiff/oasdiff-action/breaking@v0.1.1 with: base: 'origin/${{ github.base_ref }}:openapi.yaml' revision: 'HEAD:openapi.yaml' @@ -74,7 +74,7 @@ jobs: steps: - uses: actions/checkout@v6 - run: git fetch --depth=1 origin ${{ github.base_ref }} - - uses: oasdiff/oasdiff-action/breaking@v0.1.0 + - uses: oasdiff/oasdiff-action/breaking@v0.1.1 with: base: 'origin/${{ github.base_ref }}:openapi.yaml' revision: 'HEAD:openapi.yaml' @@ -120,7 +120,7 @@ jobs: steps: - uses: actions/checkout@v6 - run: git fetch --depth=1 origin ${{ github.base_ref }} - - uses: oasdiff/oasdiff-action/changelog@v0.1.0 + - uses: oasdiff/oasdiff-action/changelog@v0.1.1 with: base: 'origin/${{ github.base_ref }}:openapi.yaml' revision: 'HEAD:openapi.yaml' @@ -162,7 +162,7 @@ jobs: steps: - uses: actions/checkout@v6 - run: git fetch --depth=1 origin ${{ github.base_ref }} - - uses: oasdiff/oasdiff-action/diff@v0.1.0 + - uses: oasdiff/oasdiff-action/diff@v0.1.1 with: base: 'origin/${{ github.base_ref }}:openapi.yaml' revision: 'HEAD:openapi.yaml' @@ -196,7 +196,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - - uses: oasdiff/oasdiff-action/validate@v0.1.0 + - uses: oasdiff/oasdiff-action/validate@v0.1.1 with: spec: 'openapi.yaml' ``` @@ -236,7 +236,7 @@ The actions read this file from the runner's `$GITHUB_WORKSPACE` (which `actions **Explicit path**: if your config lives somewhere else, set `OASDIFF_CONFIG` in the workflow `env:` to point at it: ```yaml -- uses: oasdiff/oasdiff-action/breaking@v0.1.0 +- uses: oasdiff/oasdiff-action/breaking@v0.1.1 env: OASDIFF_CONFIG: ./config/oasdiff.yaml with: @@ -288,7 +288,7 @@ jobs: steps: - uses: actions/checkout@v6 - run: git fetch --depth=1 origin ${{ github.base_ref }} - - uses: oasdiff/oasdiff-action/pr-comment@v0.1.0 + - uses: oasdiff/oasdiff-action/pr-comment@v0.1.1 with: base: 'origin/${{ github.base_ref }}:openapi.yaml' revision: 'HEAD:openapi.yaml' @@ -336,7 +336,7 @@ jobs: steps: - uses: actions/checkout@v6 - run: git fetch --depth=1 origin ${{ github.base_ref }} - - uses: oasdiff/oasdiff-action/pr-comment@v0.1.0 + - uses: oasdiff/oasdiff-action/pr-comment@v0.1.1 with: base: 'origin/${{ github.base_ref }}:openapi.yaml' revision: 'HEAD:openapi.yaml' @@ -347,7 +347,7 @@ jobs: steps: - uses: actions/checkout@v6 - run: git fetch --depth=1 origin ${{ github.event.repository.default_branch }} - - uses: oasdiff/oasdiff-action/verify@v0.1.0 + - uses: oasdiff/oasdiff-action/verify@v0.1.1 with: base: 'origin/${{ github.event.repository.default_branch }}:openapi.yaml' revision: 'HEAD:openapi.yaml' diff --git a/breaking/Dockerfile b/breaking/Dockerfile index 24c9990..ce523c5 100644 --- a/breaking/Dockerfile +++ b/breaking/Dockerfile @@ -1,4 +1,4 @@ -FROM tufin/oasdiff:v1.19.0 +FROM tufin/oasdiff:v1.19.1 RUN apk add --no-cache curl jq ENV PLATFORM github-action COPY entrypoint.sh /entrypoint.sh diff --git a/changelog/Dockerfile b/changelog/Dockerfile index 24c9990..ce523c5 100644 --- a/changelog/Dockerfile +++ b/changelog/Dockerfile @@ -1,4 +1,4 @@ -FROM tufin/oasdiff:v1.19.0 +FROM tufin/oasdiff:v1.19.1 RUN apk add --no-cache curl jq ENV PLATFORM github-action COPY entrypoint.sh /entrypoint.sh diff --git a/diff/Dockerfile b/diff/Dockerfile index 435e190..a4e9184 100644 --- a/diff/Dockerfile +++ b/diff/Dockerfile @@ -1,4 +1,4 @@ -FROM tufin/oasdiff:v1.19.0 +FROM tufin/oasdiff:v1.19.1 ENV PLATFORM github-action COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"] diff --git a/pr-comment/Dockerfile b/pr-comment/Dockerfile index 24c9990..ce523c5 100644 --- a/pr-comment/Dockerfile +++ b/pr-comment/Dockerfile @@ -1,4 +1,4 @@ -FROM tufin/oasdiff:v1.19.0 +FROM tufin/oasdiff:v1.19.1 RUN apk add --no-cache curl jq ENV PLATFORM github-action COPY entrypoint.sh /entrypoint.sh diff --git a/validate/Dockerfile b/validate/Dockerfile index 435e190..a4e9184 100644 --- a/validate/Dockerfile +++ b/validate/Dockerfile @@ -1,4 +1,4 @@ -FROM tufin/oasdiff:v1.19.0 +FROM tufin/oasdiff:v1.19.1 ENV PLATFORM github-action COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"] diff --git a/verify/Dockerfile b/verify/Dockerfile index 24c9990..ce523c5 100644 --- a/verify/Dockerfile +++ b/verify/Dockerfile @@ -1,4 +1,4 @@ -FROM tufin/oasdiff:v1.19.0 +FROM tufin/oasdiff:v1.19.1 RUN apk add --no-cache curl jq ENV PLATFORM github-action COPY entrypoint.sh /entrypoint.sh