Skip to content

ci(deps): update containerbase/internal-tools action to v3.4.28 #1267

ci(deps): update containerbase/internal-tools action to v3.4.28

ci(deps): update containerbase/internal-tools action to v3.4.28 #1267

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
merge_group:
schedule:
- cron: '0 1 * * *'
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref_name }}
cancel-in-progress: true
permissions:
contents: read
env:
HUSKY: 0
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: enable corepack
run: corepack enable
- name: install deps
run: pnpm install
- name: lint
run: pnpm lint
build:
runs-on: ubuntu-latest
needs:
- lint
permissions:
contents: write
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: binary-builder
uses: containerbase/internal-tools@6cd18334eca58b47ff6fdb465d953b5f0c92dc6b # v3.4.28
with:
command: binary-builder
dry-run: ${{github.ref_name != 'main'}}
token: ${{ secrets.GITHUB_TOKEN }}