{"id":15685888,"url":"https://github.com/ludeeus/dockerfile-updater","last_synced_at":"2025-04-14T09:41:02.647Z","repository":{"id":43434550,"uuid":"250387576","full_name":"ludeeus/dockerfile-updater","owner":"ludeeus","description":"A GitHub action to handle your Dockerfile dependencies.","archived":false,"fork":false,"pushed_at":"2023-09-05T06:06:39.000Z","size":59,"stargazers_count":9,"open_issues_count":70,"forks_count":5,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-11T12:14:57.396Z","etag":null,"topics":["action","alpine","apk","depencency","docker","dockerfile","management","pip","pypi","python"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ludeeus.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-03-26T22:40:09.000Z","updated_at":"2024-04-03T09:38:42.000Z","dependencies_parsed_at":"2024-06-19T20:13:39.356Z","dependency_job_id":null,"html_url":"https://github.com/ludeeus/dockerfile-updater","commit_stats":{"total_commits":48,"total_committers":5,"mean_commits":9.6,"dds":0.5208333333333333,"last_synced_commit":"eaf8ea79220d076eb46c127fa9895e3de3e0a512"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ludeeus%2Fdockerfile-updater","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ludeeus%2Fdockerfile-updater/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ludeeus%2Fdockerfile-updater/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ludeeus%2Fdockerfile-updater/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ludeeus","download_url":"https://codeload.github.com/ludeeus/dockerfile-updater/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248855696,"owners_count":21172628,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["action","alpine","apk","depencency","docker","dockerfile","management","pip","pypi","python"],"created_at":"2024-10-03T17:32:31.158Z","updated_at":"2025-04-14T09:41:02.619Z","avatar_url":"https://github.com/ludeeus.png","language":"Python","funding_links":["https://www.buymeacoffee.com/ludeeus","https://github.com/sponsors/ludeeus)_"],"categories":[],"sub_categories":[],"readme":"# Dockerfile updater action\n\n_It might not be pretty, but it does a good enough job, this one is for the lazy maintainer._\n\nThis will scan your repository for dockerfiles and update pinned versions in them, so you as a maintainer can just sit back and merge PR's.\n\nIf an update is found, that will be committed to a new branch and a pull request will be opened.\n\n\n## Configuration options\n\nKey | Optional | Default | Description\n-- | -- | -- | --\n`token` | False |  | GitHub token to use in the action `${{ secrets.GITHUB_TOKEN }}`\n`pr_title` | True | `Dockerfile updates 🎉` | The title of the PR's this action creates.\n`dockerfile_name` | True | `dockerfile` | This action run on all files that contains this value.\n`exclude_type` | True |  | A comma separated string of types you don't want to check\n`exclude_package` | True | | A comma separated string of packages you don't want to check\n`commit_msg` | True | `\"Update [package] from [from_version] to [to_version]\"` | The string used in commit messages.\n`args` | True | | A comma separated string of ARG key/value pairs. i.e. 'ARG1=\"VALUE1\",ARG2=\"VALUE2'\n`disable_pr` | True | False | Disables auto creation of Pull Request.\n\n### Valid types for `exclude_type`\n\nType | Description\n-- | --\n`base` | For base image updates\n`apk` | For alpine package updates\n`pip` | For PyPi pacakge updates\n\n## Recommended action configuration\n\n_It is recommended to run this action with a cron trigger._\n\n```yaml\nname: Update Dockerfiles\n\non:\n  schedule:\n    - cron:  '40 16 * * *'\njobs:\n  deploy:\n    name: Update Dockerfiles\n    runs-on: ubuntu-latest\n    steps:\n      - name: 📥 Checkout the repository\n        uses: actions/checkout@v2\n\n      - name: 📤 Update Dockerfiles\n        uses: ludeeus/dockerfile-updater@main\n        with:\n          token: ${{ secrets.GITHUB_TOKEN }}\n```\n\n_This will run 4:40 PM every day._\n\n## What is updated now\n\n- Your base image (FROM) if you use `alpine` / `debian`\n- Packages from PyPi.\n- Alpine packages you install with `apk add`\n- Special ARG variables, (formats: `ARG S6_OVERLAY=\"vX.X.X\"` / `ARG MYARG`).\n\n## Planed for the future\n\n- Debian packages you install with `apt install`\n- More base images.\n\n***\n\n_This project is made with [alpinepkgs](https://pypi.org/project/alpinepkgs), [PyGithub](https://pypi.org/project/PyGithub), [🍺/☕️](https://www.buymeacoffee.com/ludeeus) and [❤️](https://github.com/sponsors/ludeeus)_","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fludeeus%2Fdockerfile-updater","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fludeeus%2Fdockerfile-updater","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fludeeus%2Fdockerfile-updater/lists"}