Skip to content

chore(deps): update devcontainers/ci action to v0.3.1900000405 #528

chore(deps): update devcontainers/ci action to v0.3.1900000405

chore(deps): update devcontainers/ci action to v0.3.1900000405 #528

Workflow file for this run

---
name: Main
'on':
push:
branches: [main, 'renovate/**']
pull_request:
branches: [main]
types: [opened, synchronize, ready_for_review, reopened]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
devcontainer-ci:
name: Devcontainer CI
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || github.event.pull_request.draft != true
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
ref: ${{ github.head_ref }}
- id: devcontainer-ci
name: Build and start devcontainer
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: devcontainers/ci@a04f23f34b07f51f61fb93fc35bae584f4b3b3f2 # v0.3.1900000405
with:
runCmd: 'devcontainer-info'
- if: always()
name: Display devcontainer output
env:
OUTPUT: ${{ steps.devcontainer-ci.outputs.runCmdOutput }}
run: |
echo "Devcontainer output:"
echo "$OUTPUT"
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
ref: ${{ github.head_ref }}
- name: Install mise
env:
MISE_VERSION: 2024.12.24 # renovate: datasource=github-releases packageName=jdx/mise
uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11
with:
version: ${{ env.MISE_VERSION }}
- name: 💅🏽 Format
run: mise run format