Skip to content

Commit

Permalink
RHINENG-11310: update actions/checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
psegedy committed Jul 10, 2024
1 parent 9b7360f commit 52c41ae
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/open_api_spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Spec validation with OpenAPIv3 (docs/v3/openapi.json)
run: docker run --rm -v ${PWD}/docs:/docs:Z openapitools/openapi-generator-cli:v6.0.1 validate -i /docs/v3/openapi.json

Expand All @@ -23,7 +23,7 @@ jobs:
needs: [spec_validation]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Generate Python client with OpenAPIv3 (docs/v3/openapi.json)
run: docker run --rm -v ${PWD}/docs/v3:/local:Z openapitools/openapi-generator-cli:v6.0.1 generate -i /local/openapi.json -g python -o /local/client
- uses: actions/upload-artifact@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: increment version, commit, push
run: |
DOC_FILE="docs/v3/openapi.json docs/admin/openapi.json"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Run unit tests
run: docker-compose -f docker-compose.test.yml up --build --exit-code-from test
- uses: codecov/codecov-action@v1
Expand Down

0 comments on commit 52c41ae

Please sign in to comment.