Skip to content

Commit bb82add

Browse files
authored
Merge branch 'netbootxyz:master' into fix-healthcheck-SUBFOLDER
2 parents fac089d + 8aa95c1 commit bb82add

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
14+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1515
with:
1616
fetch-depth: '0'
1717

@@ -63,7 +63,7 @@ jobs:
6363
org.opencontainers.image.source=https://github.com/netbootxyz/docker-netbootxyz
6464
6565
- name: Run Trivy vulnerability scanner
66-
uses: aquasecurity/trivy-action@0.32.0
66+
uses: aquasecurity/trivy-action@0.33.1
6767
with:
6868
image-ref: 'ghcr.io/netbootxyz/netbootxyz:pr-${{ github.event.number }}'
6969
format: 'table'

.github/workflows/claude.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
id-token: write
2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929
with:
3030
fetch-depth: 1
3131

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
13+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1414
with:
1515
fetch-depth: '0'
1616

@@ -149,7 +149,7 @@ jobs:
149149
- name: Bump version and push tag
150150
if: steps.version_check.outcome == 'success' && steps.version_check.conclusion == 'success'
151151
id: tag_version
152-
uses: anothrNick/github-tag-action@1.73.0
152+
uses: anothrNick/github-tag-action@1.75.0
153153
env:
154154
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
155155
CUSTOM_TAG: ${{ env.VERSION_TAG }}

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage - Download and prepare webapp
2-
FROM alpine:3.22.1 AS build
2+
FROM alpine:3.22.2 AS build
33

44
# Set version label
55
ARG WEBAPP_VERSION
@@ -30,7 +30,7 @@ RUN apk add --no-cache --virtual .build-deps \
3030
&& apk del .build-deps
3131

3232
# Production stage - Final container
33-
FROM alpine:3.22.1
33+
FROM alpine:3.22.2
3434

3535
# Build arguments for labels
3636
ARG BUILD_DATE

0 commit comments

Comments
 (0)