Skip to content

Bump docker/login-action from 3 to 4#64

Merged
docktermj merged 1 commit intomainfrom
dependabot/github_actions/docker/login-action-4
Mar 25, 2026
Merged

Bump docker/login-action from 3 to 4#64
docktermj merged 1 commit intomainfrom
dependabot/github_actions/docker/login-action-4

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 25, 2026

Bumps docker/login-action from 3 to 4.

Release notes

Sourced from docker/login-action's releases.

v4.0.0

Full Changelog: docker/login-action@v3.7.0...v4.0.0

v3.7.0

Full Changelog: docker/login-action@v3.6.0...v3.7.0

v3.6.0

Full Changelog: docker/login-action@v3.5.0...v3.6.0

v3.5.0

Full Changelog: docker/login-action@v3.4.0...v3.5.0

v3.4.0

Full Changelog: docker/login-action@v3.3.0...v3.4.0

... (truncated)

Commits
  • b45d80f Merge pull request #929 from crazy-max/node24
  • 176cb9c node 24 as default runtime
  • cad8984 Merge pull request #920 from docker/dependabot/npm_and_yarn/aws-sdk-dependenc...
  • 92cbcb2 chore: update generated content
  • 5a2d6a7 build(deps): bump the aws-sdk-dependencies group with 2 updates
  • 44512b6 Merge pull request #928 from docker/dependabot/npm_and_yarn/docker/actions-to...
  • 28737a5 chore: update generated content
  • dac0793 build(deps): bump @​docker/actions-toolkit from 0.76.0 to 0.77.0
  • 62029f3 Merge pull request #919 from docker/dependabot/npm_and_yarn/actions/core-3.0.0
  • 08c8f06 chore: update generated content
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Resolves #929
Resolves #920
Resolves #928
Resolves #919
Resolves docker/login-action#929
Resolves docker/login-action#927
Resolves docker/login-action#919
Resolves docker/login-action#909
Resolves docker/login-action#920
Resolves docker/login-action#910
Resolves docker/login-action#928
Resolves docker/login-action#921
Resolves docker/login-action#901
Resolves docker/login-action#912
Resolves docker/login-action#914
Resolves docker/login-action#911
Resolves docker/login-action#915
Resolves docker/login-action#887
Resolves docker/login-action#882
Resolves docker/login-action#890
Resolves docker/login-action#883
Resolves docker/login-action#880
Resolves docker/login-action#879
Resolves docker/login-action#881
Resolves docker/login-action#874
Resolves docker/login-action#876
Resolves docker/login-action#860
Resolves docker/login-action#878
Resolves docker/login-action#870
Resolves docker/login-action#875
Resolves docker/login-action#791
Resolves docker/login-action#789
Resolves docker/login-action#856
Resolves docker/login-action#801
Resolves docker/login-action#806
Resolves docker/login-action#858
Resolves docker/login-action#814
Resolves docker/login-action#823
Resolves docker/login-action#777

Bumps [docker/login-action](https://github.com/docker/login-action) from 3 to 4.
- [Release notes](https://github.com/docker/login-action/releases)
- [Commits](docker/login-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/login-action
  dependency-version: '4'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner March 25, 2026 15:04
@dependabot dependabot bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Mar 25, 2026
@github-actions
Copy link
Copy Markdown

🤖 Claude Code Review

PR Code Review

PR: Bump docker/login-action from v3 to v4 (action.yaml line 75)


Code Quality

  • Style guide: The change is a single-line version bump in a YAML file; no style violations introduced.
  • No commented-out code: None present in the diff.
  • Meaningful variable names: N/A for this change.
  • DRY principle: N/A for this change.
  • Defects: No bugs or logic errors introduced. The action interface for docker/login-action@v4 is compatible with the same registry, username, and password inputs used here, so no breakage is expected.
  • CLAUDE.md: The project CLAUDE.md (build-resources/.claude/CLAUDE.md) is general and appropriate for any developer — no local-environment-specific content found.

Testing

  • Unit/integration tests: This is a dependency version bump in a GitHub Actions composite action; no new functions or endpoints were added. No test changes are required.

Documentation

  • CHANGELOG.md not updated: The CHANGELOG.md has not been updated to reflect this dependency bump. Per project standards, all changes should be documented. A new entry should be added, e.g.:

    ## [Unreleased]
    
    ### Changed
    
    - Bump `docker/login-action` from v3 to v4
  • README: No README changes needed for a dependency bump.

  • Inline comments: N/A.

  • Markdown formatting: No markdown files were modified in this PR.


Security

  • No hardcoded credentials: Credentials remain parameterized via ${{ inputs.username }} and ${{ inputs.password }}.
  • Input validation: Existing validation is unchanged.
  • Error handling: Unchanged.
  • No sensitive data in logs: Unchanged.
  • No .lic files or AQAAAD strings: None found.

Summary

Area Status
Code Quality
Testing
Documentation
Security

One issue to address: CHANGELOG.md needs an entry documenting the docker/login-action v3 → v4 bump.

Automated code review analyzing defects and coding standards

@github-actions
Copy link
Copy Markdown

Super-linter summary

Language Validation result
CHECKOV Pass ✅
GITHUB_ACTIONS_ZIZMOR Pass ✅
GITLEAKS Pass ✅
GIT_MERGE_CONFLICT_MARKERS Pass ✅
JSCPD Pass ✅
PRE_COMMIT Pass ✅
SPELL_CODESPELL Pass ✅
TRIVY Pass ✅
YAML Pass ✅
YAML_PRETTIER Pass ✅

All files and directories linted successfully

For more information, see the GitHub Actions workflow run

Powered by Super-linter

@docktermj docktermj merged commit b31453c into main Mar 25, 2026
20 checks passed
@docktermj docktermj deleted the dependabot/github_actions/docker/login-action-4 branch March 25, 2026 19:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants