Skip to content

Update actions/checkout digest to eef6144 #217

Update actions/checkout digest to eef6144

Update actions/checkout digest to eef6144 #217

Workflow file for this run

name: Build Lists
on:
push:
branches: [ "main" ]
schedule:
- cron: '0 2 * * 4'
jobs:
build:
runs-on: ubuntu-latest
concurrency: build-${{ github.repository }}
steps:
- name: Checkout
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
- name: Setup PHP
uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2
with:
php-version: '8.2'
ini-values: memory_limit=1G
- name: Build
run: php build.php
- name: Commit changes
run: |
git config --global user.name 'GitHub Actions'
git config --global user.email '[email protected]'
git add -A
git diff-index --quiet HEAD || git commit -m "Automated build"
git push