Skip to content

Actions(deps): Bump actions/checkout from 4.2.2 to 4.3.0 #232

Actions(deps): Bump actions/checkout from 4.2.2 to 4.3.0

Actions(deps): Bump actions/checkout from 4.2.2 to 4.3.0 #232

Workflow file for this run

# Copyright (c) 2024 Sebastian Pipping <sebastian@pipping.org>
# Licensed under GNU Affero GPL v3 or later
name: Run smoke test
# Drop permissions to minimum for security
permissions:
contents: read
on:
pull_request:
push:
schedule:
- cron: '0 16 * * 5' # Every Friday 4pm
workflow_dispatch:
jobs:
smoke_test:
name: Run the test suite
strategy:
matrix:
python-version: [3.9, 3.13] # no particular need for in-between versions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: ${{ matrix.python-version }}
- name: Run smoke test
run: |
set -x
python3 --version
./Caddyfile.generate --config sites.cfg.EXAMPLE --saltstack > actual-output.txt
diff -u0 \
<(tail -n +3 .github/workflows/expected-output.txt) \
<(tail -n +3 actual-output.txt)