Check SDK updates #134
This file contains 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: Check SDK updates | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
update-version: | |
runs-on: buildjet-4vcpu-ubuntu-2204 | |
strategy: | |
matrix: | |
tag: ['latest'] # Currently only "latest" tag is available across all packages | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: FuelLabs/github-actions/setups/node@master | |
with: | |
node-version: 20.11.0 | |
pnpm-version: 8.15.7 | |
- name: Checking updates | |
uses: FuelLabs/github-actions/update-sdk@master | |
with: | |
branch: main | |
changeset: true | |
packages: fuels,@fuels/react,@fuels/ts-config,@fuels/tsup-config | |
npm-tag: ${{ matrix.tag }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.REPO_TOKEN }} |