Skip to content

chore(github-action): update action renovatebot/github-action (v46.2.4 → v46.3.0) #11

chore(github-action): update action renovatebot/github-action (v46.2.4 → v46.3.0)

chore(github-action): update action renovatebot/github-action (v46.2.4 → v46.3.0) #11

Workflow file for this run

---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: CI
on:
push:
branches:
- main
paths-ignore:
- "**.md"
pull_request:
branches:
- main
merge_group:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
permissions:
contents: read
jobs:
workflow-lint:
name: Workflow Lint
runs-on: ubuntu-24.04
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Setup Mise
uses: jdx/mise-action@c2a87611a18de5b3828c5652fe268e992400cb5c # v4.3.0
with:
install: false
- name: Resolve linter versions
id: tools
run: |
echo "actionlint=$(mise config get tools.actionlint)" >> "$GITHUB_OUTPUT"
echo "zizmor=$(mise config get tools.zizmor)" >> "$GITHUB_OUTPUT"
- name: Lint workflows
uses: home-operations/.github/actions/workflow-lint@69cad1e407df8070dd9cfc3314551e473544014e # workflow-lint-v1.0.3
with:
actionlint-version: ${{ steps.tools.outputs.actionlint }}
zizmor-version: ${{ steps.tools.outputs.zizmor }}
status:
if: ${{ !cancelled() }}
name: Build Success
needs:
- workflow-lint
runs-on: ubuntu-24.04
permissions: {}
steps:
- name: Any jobs failed?
if: ${{ contains(needs.*.result, 'failure') }}
run: |
exit 1
- name: All jobs passed or skipped?
if: ${{ !(contains(needs.*.result, 'failure')) }}
run: |
echo "All jobs passed or skipped" && echo "${{ toJSON(needs.*.result) }}"