Update @timmo001/effect-gh digest to 9673313 #124
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: Validate actions | |
| # yamllint disable-line rule:truthy | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: validate-actions-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| validate: | |
| name: Lint, test, and check bundles | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0 | |
| with: | |
| bun-version: "1.4.2" | |
| - name: Install test system dependencies | |
| run: sudo apt-get install --yes libarchive-tools python3-packaging | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Validate | |
| run: bun run validate | |
| smoke: | |
| name: Same-revision action smoke | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| container: | |
| image: archlinux:latest@sha256:63c7b061c0c001cb7ce4f8d11b63d351c23e7f97121bc5c8bd5d9f431e615d7d # renovate-container: datasource=docker depName=archlinux | |
| steps: | |
| - name: Run foundation smoke via self-repository syntax | |
| id: smoke | |
| uses: $/.github/actions/foundation-smoke | |
| with: | |
| message: foundation-ok | |
| - name: Confirm echoed output | |
| run: | | |
| set -euo pipefail | |
| [[ "${{ steps.smoke.outputs.echoed }}" == "foundation-ok" ]] |