Skip to content
This repository was archived by the owner on Jan 27, 2026. It is now read-only.

Commit 5a0744b

Browse files
authored
Upgrade GitHub Actions to latest versions (#336)
## Summary Upgrade GitHub Actions to their latest versions for improved features, bug fixes, and security updates. ## Changes | Action | Old Version(s) | New Version | Release | Files | |--------|---------------|-------------|---------|-------| | `docker/build-push-action` | [`v5`](https://github.com/docker/build-push-action/releases/tag/v5) | [`v6`](https://github.com/docker/build-push-action/releases/tag/v6) | [Release](https://github.com/docker/build-push-action/releases/tag/v6) | build_kernel.yaml, docker-build-push.yaml | ## Why upgrade? Keeping GitHub Actions up to date ensures: - **Security**: Latest security patches and fixes - **Features**: Access to new functionality and improvements - **Compatibility**: Better support for current GitHub features - **Performance**: Optimizations and efficiency improvements ### Security Note Actions that were previously pinned to commit SHAs remain pinned to SHAs (updated to the latest release SHA) to maintain the security benefits of immutable references. ### Testing These changes only affect CI/CD workflow configurations and should not impact application functionality. The workflows should be tested by running them on a branch before merging. Signed-off-by: Salman Muin Kayser Chishti <13schishti@gmail.com>
1 parent 2ee65b6 commit 5a0744b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build_kernel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
- name: Set up Docker Buildx
9393
uses: docker/setup-buildx-action@v3
9494
- name: Build Docker image
95-
uses: docker/build-push-action@v5
95+
uses: docker/build-push-action@v6
9696
with:
9797
context: .
9898
file: tests/Dockerfile.test-kernel

.github/workflows/docker-build-push.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
type=semver,prefix=user-,pattern={{major}}.{{minor}}
5454
5555
- name: Build and push Docker image
56-
uses: docker/build-push-action@v5
56+
uses: docker/build-push-action@v6
5757
with:
5858
context: .
5959
file: ./dockerfiles/Dockerfile.user
@@ -104,7 +104,7 @@ jobs:
104104
type=semver,pattern={{major}}.{{minor}}
105105
106106
- name: Build and push Docker image
107-
uses: docker/build-push-action@v5
107+
uses: docker/build-push-action@v6
108108
with:
109109
context: .
110110
file: ./dockerfiles/Dockerfile

0 commit comments

Comments
 (0)