Skip to content

Bump actions/checkout from 4.1.3 to 4.1.4 #24

Bump actions/checkout from 4.1.3 to 4.1.4

Bump actions/checkout from 4.1.3 to 4.1.4 #24

Workflow file for this run

# Copyright 2023 Chainguard, Inc.
# SPDX-License-Identifier: Apache-2.0
name: Test
on:
pull_request:
branches:
- 'main'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
- name: Run Digestabot
uses: ./
with:
create-pr: false
- name: Check changes
run: |
if [[ $(git diff --stat) == '' ]]; then
echo 'should exist changes'
exit 1
else
exit 0
fi
shell: bash