Skip to content

Bump actions/checkout from 5.0.0 to 5.0.1 #24

Bump actions/checkout from 5.0.0 to 5.0.1

Bump actions/checkout from 5.0.0 to 5.0.1 #24

Workflow file for this run

name: Test
on:
workflow_dispatch:
pull_request:
push:
branches: [main]
jobs:
test-example:
name: Test Example
runs-on: ubuntu-24.04
steps:
- name: Checkout Project
uses: actions/checkout@v5.0.1
- name: Initialize Submodules
run: git submodule update --init --recursive
- name: Assert Git Submodules
run: |
ACTUAL=$(git submodule status --recursive)
EXPECTED=" bea29a84b6c55a49fef34be3e7a17498c633b6d9 project-starter (v1.2.0)"
if [ "$ACTUAL" != "$EXPECTED" ]; then
echo "actual: $ACTUAL"
echo "expected: $EXPECTED"
exit 1
fi