Skip to content

chore(deps): update jdx/mise-action action to v3.4.1 #232

chore(deps): update jdx/mise-action action to v3.4.1

chore(deps): update jdx/mise-action action to v3.4.1 #232

Workflow file for this run

name: autofix.ci
on:
pull_request:
branches-ignore:
- 'renovate/**'
push:
branches:
- main
permissions:
contents: read
jobs:
apply:
name: Apply automated fixes
runs-on: ubuntu-latest
if: ${{ github.actor != 'renovate[bot]' && ! contains(github.event.head_commit.author.name , 'renovate[bot]') && ! contains(github.event.head_commit.message , 'chore(release)') }}
steps:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Setup toolchains
uses: jdx/mise-action@9dc7d5dd454262207dea3ab5a06a3df6afc8ff26 # v3.4.1
- name: Setup Socket Firewall
uses: SocketDev/action@4337a545deecc20f19a909e52db7a2f6ba292f42 # v1.2.0
with:
mode: firewall
- name: Install Dependencies
run: sfw bun install
- name: Format code
run: bun biome check --write
- name: Fix package.json
run: bun syncpack fix
- name: Format package.json
run: bun syncpack format
- name: Update package lock file
run: sfw bun install --lockfile-only
- name: Submit autofix
uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27 # v1.3.2
with:
fail-fast: false