Skip to content

Commit db7afa4

Browse files
authored
Merge branch 'master' into dependabot/go_modules/master/others-765be3d9f0
2 parents 9281c0d + 551cedd commit db7afa4

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Check out code into the Go module directory
1717
uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2
1818
- name: Set up Go 1.x
19-
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b
19+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5
2020
with:
2121
go-version-file: go.mod
2222
- name: build

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2
4242

4343
- name: Set up Go 1.x
44-
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b
44+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5
4545
with:
4646
go-version-file: go.mod
4747

.github/workflows/docker-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727
uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2
2828

2929
- name: Set up QEMU
30-
uses: docker/setup-qemu-action@fcd3152d8ad392d0e9c14d3f0de40f0a88b8ca0e
30+
uses: docker/setup-qemu-action@737ba1e397ec2caff0d098f75e1136f9a926dc0a
3131

3232
- name: Set up Docker Buildx
33-
uses: docker/setup-buildx-action@e600775e527acba2317260cadb64b7e19efd5362
33+
uses: docker/setup-buildx-action@3f1544eb9eff0b4d4d279b33f704a06fcf8d0e43
3434

3535
- name: vuls/vuls image meta
3636
id: oss-meta
@@ -55,7 +55,7 @@ jobs:
5555
password: ${{ secrets.DOCKERHUB_TOKEN }}
5656

5757
- name: OSS image build and push
58-
uses: docker/build-push-action@14487ce63c7a62a4a324b0bfb37086795e31c6c1
58+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83
5959
with:
6060
context: .
6161
file: ./Dockerfile
@@ -68,7 +68,7 @@ jobs:
6868
platforms: linux/amd64,linux/arm64
6969

7070
- name: FutureVuls image build and push
71-
uses: docker/build-push-action@14487ce63c7a62a4a324b0bfb37086795e31c6c1
71+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83
7272
with:
7373
context: .
7474
file: ./contrib/Dockerfile

.github/workflows/golangci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
- name: Check out code into the Go module directory
1717
uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2
1818
- name: Set up Go 1.x
19-
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b
19+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5
2020
with:
2121
go-version-file: go.mod
2222
- name: golangci-lint
23-
uses: golangci/golangci-lint-action@c2427fec7902bf2304ba21394dce2ed2f2a6cb2c
23+
uses: golangci/golangci-lint-action@481777f62fe06de6923fd3a69efd3ba597fe628a
2424
with:
25-
version: v2.0.2
25+
version: v2.1.6

.github/workflows/goreleaser.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
id-token: write # For cosign
1616
steps:
1717
- name: Cosign install
18-
uses: sigstore/cosign-installer@d7d6bc7722e3daa8354c50bcb52f4837da5e9b6a
18+
uses: sigstore/cosign-installer@3454372f43399081ed03b604cb2d021dabca52bb
1919
- name: Maximize build space
2020
uses: easimon/maximize-build-space@fc881a613ad2a34aca9c9624518214ebc21dfc0c
2121
with:
@@ -30,7 +30,7 @@ jobs:
3030
- name: Unshallow
3131
run: git fetch --prune --unshallow
3232
- name: Set up Go
33-
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b
33+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5
3434
with:
3535
go-version-file: go.mod
3636
- name: Run GoReleaser

.github/workflows/scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
persist-credentials: false
4040

4141
- name: "Run analysis"
42-
uses: ossf/scorecard-action@f49aabe0b5af0936a0987cfb85d86b75731b0186 # v2.4.1
42+
uses: ossf/scorecard-action@05b42c624433fc40578a4040d5cf5e36ddca8cde # v2.4.2
4343
with:
4444
results_file: results.sarif
4545
results_format: sarif
@@ -64,7 +64,7 @@ jobs:
6464
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
6565
# format to the repository Actions tab.
6666
- name: "Upload artifact"
67-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
67+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
6868
with:
6969
name: SARIF file
7070
path: results.sarif

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Check out code into the Go module directory
1313
uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2
1414
- name: Set up Go 1.x
15-
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b
15+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5
1616
with:
1717
go-version-file: go.mod
1818
- name: Test

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:alpine@sha256:7772cb5322baa875edd74705556d08f0eeca7b9c4b5367754ce3f2f00041ccee as builder
1+
FROM golang:alpine@sha256:68932fa6d4d4059845c8f40ad7e654e626f3ebd3706eef7846f319293ab5cb7a as builder
22

33
RUN apk add --no-cache \
44
git \
@@ -10,7 +10,7 @@ ENV REPOSITORY github.com/future-architect/vuls
1010
COPY . $GOPATH/src/$REPOSITORY
1111
RUN cd $GOPATH/src/$REPOSITORY && make install
1212

13-
FROM alpine:3.21@sha256:a8560b36e8b8210634f77d9f7f9efd7ffa463e380b75e2e74aff4511df3ef88c
13+
FROM alpine:3.22@sha256:8a1f59ffb675680d47db6337b49d22281a139e9d709335b492be023728e11715
1414

1515
ENV LOGDIR /var/log/vuls
1616
ENV WORKDIR /vuls

0 commit comments

Comments
 (0)