Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish-immutable-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ jobs:
uses: actions/checkout@v6
- name: Publish
id: publish
uses: actions/publish-immutable-action@0.0.3
uses: actions/publish-immutable-action@v0.0.4
4 changes: 2 additions & 2 deletions .github/workflows/update-test-ubuntu-git.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
# Use `docker/login-action` to log in to GHCR.io.
# Once published, the packages are scoped to the account defined here.
- name: Log in to the ghcr.io container registry
uses: docker/login-action@v3.3.0
uses: docker/login-action@v3.7.0
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Version mismatch: v3.7.0 instead of documented v3.6.0

High Severity

The docker/login-action version in the diff is v3.7.0, but the PR description states it should be updated to v3.6.0. The release notes included in the PR only document versions up to v3.6.0, suggesting v3.7.0 may not exist. If this version doesn't exist, the workflow will fail when GitHub Actions attempts to resolve the action reference.

Fix in Cursor Fix in Web

with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand All @@ -48,7 +48,7 @@ jobs:

# Use `docker/build-push-action` to build (and optionally publish) the image.
- name: Build Docker Image (with optional Push)
uses: docker/build-push-action@v6.5.0
uses: docker/build-push-action@v6.18.0
with:
context: .
file: images/test-ubuntu-git.Dockerfile
Expand Down
Loading