Skip to content

Bump actions/checkout from 4.1.5 to 4.1.6 (#98) #63

Bump actions/checkout from 4.1.5 to 4.1.6 (#98)

Bump actions/checkout from 4.1.5 to 4.1.6 (#98) #63

Workflow file for this run

name: 'CI -> Test'
on:
workflow_dispatch:
push:
branches:
- dev
paths-ignore:
- '*.md'
- '.*ignore'
pull_request:
branches:
- dev
paths-ignore:
- '*.md'
- '.*ignore'
concurrency:
group: '${{ github.workflow }}-${{ github.ref }}'
cancel-in-progress: true
permissions:
contents: read
jobs:
lint:
name: 'Lint'
runs-on: ubuntu-latest
steps:
- name: 'Harden Runner'
uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4 # v2.7.1
with:
egress-policy: audit
- name: 'Checkout'
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
with:
persist-credentials: false
- name: 'Setup Bun'
uses: oven-sh/setup-bun@8f24390df009a496891208e5e36b8a1de1f45135 # v1.2.1
- name: 'Setup dependencies'
run: bun install --frozen-lockfile
- name: 'Run lint'
run: bun run lint