Files
heritrix3/.github/workflows/docker-image.yml
dependabot[bot] e7fd9e0c3f Bump actions/checkout from 2 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-06-17 17:17:19 +09:00

19 lines
303 B
YAML

name: Docker Image CI
permissions:
contents: read
on: workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Build the Docker image
run: docker build . --file Dockerfile --tag heritrix:$(date +%s)
working-directory: docker