Update actions/checkout action to v4 #888
Workflow file for this run
This file contains 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
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions | |
name: "Simulate Docker Build" | |
on: | |
pull_request: | |
schedule: | |
- cron: '0 2 * * *' # run daily | |
jobs: | |
docker-build: | |
name: "Simulate Docker Build" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
- name: "Docker Build" | |
run: "DOCKER_BUILDKIT=1 docker build ." |