Skip to content

Commit bd008e7

Browse files
authored
feat(docker-build): update to Node.js 24 GitHub actions (#111)
1 parent 76ec23d commit bd008e7

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/docker-build.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -95,24 +95,24 @@ jobs:
9595
echo "✅ Security report mode validation passed: $REPORT_MODE"
9696
9797
- name: Checkout Repository
98-
uses: actions/checkout@v4
98+
uses: actions/checkout@v6
9999

100100
- name: Set up Docker Buildx
101-
uses: docker/setup-buildx-action@v3
101+
uses: docker/setup-buildx-action@v4
102102

103103
- name: Set up QEMU
104-
uses: docker/setup-qemu-action@v3
104+
uses: docker/setup-qemu-action@v4
105105

106106
- name: Login to Docker Hub
107107
if: ${{ inputs.push }}
108-
uses: docker/login-action@v3
108+
uses: docker/login-action@v4
109109
with:
110110
registry: ${{ inputs.registry }}
111111
username: ${{ secrets.username }}
112112
password: ${{ secrets.password }}
113113

114114
- name: Build Docker image
115-
uses: docker/build-push-action@v6
115+
uses: docker/build-push-action@v7
116116
with:
117117
build-args: ${{ inputs.build-args }}
118118
context: ${{ inputs.context }}
@@ -147,15 +147,15 @@ jobs:
147147
- name: Find existing Trivy comment
148148
if: github.event_name == 'pull_request' && inputs.security-scan && inputs.security-report == 'comment'
149149
id: find_trivy
150-
uses: peter-evans/find-comment@v3
150+
uses: peter-evans/find-comment@v4
151151
with:
152152
issue-number: ${{ github.event.pull_request.number }}
153153
comment-author: "github-actions[bot]"
154154
body-includes: "Trivy Security ${{ inputs.platform }} Scan Results"
155155

156156
- name: Create or update Trivy comment
157157
if: github.event_name == 'pull_request' && inputs.security-scan && inputs.security-report == 'comment'
158-
uses: peter-evans/create-or-update-comment@v4
158+
uses: peter-evans/create-or-update-comment@v5
159159
with:
160160
token: ${{ secrets.GITHUB_TOKEN }}
161161
issue-number: ${{ github.event.pull_request.number }}
@@ -198,15 +198,15 @@ jobs:
198198
- name: Find existing Hadolint comment
199199
id: find_hadolint
200200
if: ${{ github.event_name == 'pull_request' && inputs.hadolint }}
201-
uses: peter-evans/find-comment@v3
201+
uses: peter-evans/find-comment@v4
202202
with:
203203
issue-number: ${{ github.event.pull_request.number }}
204204
comment-author: "github-actions[bot]"
205205
body-includes: "Hadolint Dockerfile Lint Results"
206206

207207
- name: Create or update Hadolint comment
208208
if: ${{ github.event_name == 'pull_request' && inputs.hadolint && steps.read_hadolint.outputs.report != '' }}
209-
uses: peter-evans/create-or-update-comment@v4
209+
uses: peter-evans/create-or-update-comment@v5
210210
with:
211211
token: ${{ secrets.GITHUB_TOKEN }}
212212
issue-number: ${{ github.event.pull_request.number }}

0 commit comments

Comments
 (0)