Skip to content

Commit a9628e7

Browse files
build(deps): bump golangci/golangci-lint-action from 3.3.1 to 3.4.0 (#151)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Yoan Blanc <[email protected]>
1 parent 400423e commit a9628e7

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

.github/actions/core-test/Dockerfile

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
FROM golang:buster
1+
FROM golang:bullseye
22

3-
RUN set -xe && \
4-
apt-get update -y && \
3+
SHELL [ "/bin/bash", "-x", "-e", "-c" ]
4+
5+
ARG DEBIAN_FRONTEND=noninteraactive
6+
RUN apt-get update -y && \
57
apt-get install -qy --no-install-recommends \
68
cmake \
79
git \
8-
make
10+
make && \
11+
git config --system --add safe.directory '*'
912

10-
CMD [ "make", "submodule", "test-core", "test-skipped" ]
13+
CMD [ "make", "test-core", "test-skipped" ]

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v3
1616
- name: golangci-lint
17-
uses: golangci/golangci-lint-action@v3.3.1
17+
uses: golangci/golangci-lint-action@v3.4.0
1818
with:
1919
version: v1.49

.github/workflows/main.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,8 @@ jobs:
2525
steps:
2626
- name: checkout
2727
uses: actions/checkout@v3
28+
with:
29+
submodules: true
30+
2831
- name: core test
2932
uses: ./.github/actions/core-test

0 commit comments

Comments
 (0)