chore(deps-dev): bump axios from 1.13.4 to 1.13.5 (#1615) #499
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: Version or Publish | |
| on: | |
| push: | |
| branches: | |
| - main | |
| concurrency: ${{ github.workflow }} | |
| permissions: read-all | |
| jobs: | |
| release: | |
| if: ${{ github.repository_owner == 'acacode' }} | |
| permissions: | |
| contents: write # to create release | |
| id-token: write # to generate provenance and oidc token | |
| issues: write # to post issue comments | |
| pull-requests: write # to create pull request | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout tree | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Set-up Mise | |
| uses: jdx/mise-action@6d1e696aa24c1aa1bcc1adea0212707c71ab78a8 # v3.6.1 | |
| with: | |
| cache: false | |
| - run: bun install --frozen-lockfile | |
| - name: Create Release Pull Request | |
| uses: changesets/action@c48e67d110a68bc90ccf1098e9646092baacaa87 # v1.6.0 | |
| with: | |
| version: bun changeset version | |
| publish: bunx changeset publish | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} |