{"id":44438731,"url":"https://github.com/eaudeweb/drupal-update-action","last_synced_at":"2026-02-12T14:29:48.168Z","repository":{"id":39660239,"uuid":"474718831","full_name":"eaudeweb/drupal-update-action","owner":"eaudeweb","description":"GitHub action to update a Drupal 8+ instance using Drush commands","archived":false,"fork":false,"pushed_at":"2025-04-25T07:52:02.000Z","size":11,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":7,"default_branch":"1.x","last_synced_at":"2025-04-25T08:42:25.606Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eaudeweb.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null}},"created_at":"2022-03-27T18:05:35.000Z","updated_at":"2024-11-04T14:30:46.000Z","dependencies_parsed_at":"2022-09-20T07:40:37.680Z","dependency_job_id":"2639cbdc-914e-461c-9c69-2883caf6e20d","html_url":"https://github.com/eaudeweb/drupal-update-action","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/eaudeweb/drupal-update-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eaudeweb%2Fdrupal-update-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eaudeweb%2Fdrupal-update-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eaudeweb%2Fdrupal-update-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eaudeweb%2Fdrupal-update-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eaudeweb","download_url":"https://codeload.github.com/eaudeweb/drupal-update-action/tar.gz/refs/heads/1.x","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eaudeweb%2Fdrupal-update-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29368636,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T08:51:36.827Z","status":"ssl_error","status_checked_at":"2026-02-12T08:51:26.849Z","response_time":55,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2026-02-12T14:29:44.851Z","updated_at":"2026-02-12T14:29:48.164Z","avatar_url":"https://github.com/eaudeweb.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Update a remote Drupal 8+ instance\n\nThis GitHub action runs remote commands over SSH to update a Drupal 8+ instance. When a deployment is made, a Drupal instance needs to run specific commands:\n\n1. Database updates\n2. Config import\n3. Cache rebuild\n4. Translation updates\n5. etc.\n\n## Inputs\n\n- `path` - (Default: `empty`) - Full absolute path on the remote server where the Drupal instance is located\n- `server_name` - (Default: `server`) - Is the name of the server given in the SSH configuration (`.ssh/config`)\n- `drush` - (Default: `./vendor/bin/drush`) - Name of Drush executable to use for deployments instead of default one from vendor\n- `enable_extra_modules` - (Default: empty) - After the deployment is done, some extra modules can be enabled (i.e. `field_ui views_ui devel devel_generate` etc.)\n- `enable_maintenance_mode` - (Default: \"true\") - Enables the maintenance mode.\n- `statuscake_api_key` - (Default: empty) – API key used to authenticate with the StatusCake API\n- `statuscake_test_id` -  (Default: empty) – Comma-separated list of StatusCake test IDs to disable/enable monitoring\n\nHere's an example how to configure a remote SSH server `myserver` given in the example below:\n\n```yml\n      - name: \"Configure SSH\"\n        run: |\n          mkdir -p ~/.ssh/\n          echo \"$SSH_KEY\" \u003e ~/.ssh/server.key\n          chmod 600 ~/.ssh/server.key\n          cat \u003e\u003e~/.ssh/config \u003c\u003cEND\n          Host myserver\n            HostName $SSH_HOST\n            User $SSH_USER\n            IdentityFile ~/.ssh/server.key\n            StrictHostKeyChecking no\n          END\n```\n\n## Example\n\n```yml\non:\n  workflow_dispatch:\n\nname: Tests and code\njobs:\n  update:\n    runs-on: ubuntu-latest\n    steps:\n\n      - name: \"Update instance\"\n        id: release\n        uses: eaudeweb/drupal-update-action@1.x\n        with:\n          path: ${{ secrets.PROJECT_DIR }}/live\n          server_name: myserver\n          enable_extra_modules: field_ui views_ui devel devel_generate views_ui webform_ui purge_ui config\n          enable_maintenance_mode: ${{ inputs.enable_maintenance_mode }}\n          statuscake_api_key: ${{ secrets.STATUSCAKE_API_KEY }}\n          statuscake_test_id: ${{ secrets.PROD_STATUSCAKE_ID }}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feaudeweb%2Fdrupal-update-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feaudeweb%2Fdrupal-update-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feaudeweb%2Fdrupal-update-action/lists"}