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
18 changes: 9 additions & 9 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
contents: read
steps:
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v6
with:
role-to-assume: arn:aws:iam::048781935247:role/GH-APP-OIDC-CBMyFrontDesk
aws-region: us-west-2
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
private_key: ${{ steps.app-private-key.outputs.key }}

- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
token: ${{ steps.generate-token.outputs.token }}

Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
fi

- name: Setup Java
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
java-version: 23
distribution: corretto
Expand All @@ -110,7 +110,7 @@ jobs:

- name: Setup Python
if: github.ref_name == 'main'
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version-file: .python-version

Expand All @@ -136,15 +136,15 @@ jobs:
runs-on: ubuntu-latest
needs: generate-api-docs
env:
UV_VERSION: 0.5.21
UV_VERSION: 0.10.9
Comment thread
dimi-cb marked this conversation as resolved.
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ github.ref_name }}

- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version-file: .python-version

Expand All @@ -155,7 +155,7 @@ jobs:
uv build

- name: Upload distributions
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: release-dists
path: dist/
Expand All @@ -180,7 +180,7 @@ jobs:
id-token: write
steps:
- name: Retrieve release distributions
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: release-dists
path: dist/
Expand Down
2 changes: 1 addition & 1 deletion .openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.11.0
7.20.0
Comment thread
dimi-cb marked this conversation as resolved.
2 changes: 1 addition & 1 deletion openapitools.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"generator-cli": {
"version": "7.11.0"
"version": "7.20.0"
},
"generatorName": "python",
"inputSpec": "public_accessa/api/v2/docs/cb-v2-openapi-3.0.0.yaml",
Expand Down
Loading