chore(deps): bump pyarrow from 22.0.0 to 23.0.1 (#30) #47
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Python License Check | |
| on: | |
| push: | |
| permissions: | |
| contents: read | |
| id-token: write | |
| jobs: | |
| license-check: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 | |
| - name: Configure AWS credentials | |
| uses: aws-actions/configure-aws-credentials@7474bc4690e29a8392af63c5b98e7449536d5c3a # v4.3.1 | |
| with: | |
| role-to-assume: arn:aws:iam::904233131484:role/CvecCodeArtifactInternalReadOnlyAccess | |
| aws-region: us-east-1 | |
| - name: Configure CodeArtifact | |
| run: | | |
| CODEARTIFACT_AUTH_TOKEN=$(aws codeartifact get-authorization-token --domain cvector --domain-owner 904233131484 --region us-east-1 --query authorizationToken --output text) | |
| echo "::add-mask::$CODEARTIFACT_AUTH_TOKEN" | |
| echo "UV_INDEX_CVECTOR_INTERNAL_USERNAME=aws" >> $GITHUB_ENV | |
| echo "UV_INDEX_CVECTOR_INTERNAL_PASSWORD=${CODEARTIFACT_AUTH_TOKEN}" >> $GITHUB_ENV | |
| - name: Check Python licenses | |
| uses: CVector-Energy/pyproject-license-check@075858d33ce078e040088fbef523db1e0cfd2d63 # v0.3.0 | |
| with: | |
| app-id: ${{ vars.APP_ID }} | |
| app-private-key: ${{ secrets.APP_PRIVATE_KEY }} |