chore: remove Jenkins pipeline files and bump GHA actions - #92
Merged
Conversation
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
actions/checkout v3→v7, docker actions v2/v4→latest Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
ChasNelson1990
force-pushed
the
chore/remove-jenkins
branch
from
June 26, 2026 15:11
cee5a5c to
9a6dde8
Compare
There was a problem hiding this comment.
Pull request overview
This PR completes the migration away from Jenkins by removing legacy Jenkins pipeline/job definitions and updating the GitHub Actions Docker build workflow to newer action versions intended to be compatible with the runner Node.js upgrade.
Changes:
- Removed the legacy
jenkins/pipeline and Job DSL files. - Bumped GitHub Actions used by the Docker build workflow to newer major versions.
- Kept the existing branching/tagging behavior for staging vs release image pushes.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
jenkins/Jenkinsfile.build.groovy |
Removed legacy Jenkins pipeline used for ECR image builds. |
jenkins/dsl.groovy |
Removed Jenkins Job DSL definitions for build/deploy jobs. |
.github/workflows/build.yml |
Updated action versions for checkout and Docker build/push steps. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Jenkins has been replaced by GitHub Actions for image builds. This PR removes the legacy Jenkins files from the
dmsrepo and updates the GitHub Actions workflow to use Node.js 24 compatible action versions.Changes
jenkins/directory — containedJenkinsfile.build.groovy(built images to ECR) anddsl.groovy(Jenkins Job DSL defining the DMS-build and DMS-deploy jobs). Both are superseded by.github/workflows/build.ymlwhich builds to GHCR.build.yml:actions/checkoutv3→v7docker/setup-buildx-actionv2→v4docker/login-actionv2→v4docker/build-push-actionv4→v7docker/metadata-actionstep — it was unused (no later step referencedsteps.meta.outputs.*), so it was dropped rather than bumped.Test plan
master—build.ymlshould run and push a staging image toghcr.io/fjelltopp/dms-stagingwithout Node.js deprecation warningsbuild.ymlshould push a release image toghcr.io/fjelltopp/dms:<tag>🤖 Generated with Claude Code