Skip to content

Commit

Permalink
build(deps): bump golangci/golangci-lint-action from 3.3.1 to 3.4.0 (#…
Browse files Browse the repository at this point in the history
…151)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Yoan Blanc <yoan@dosimple.ch>
  • Loading branch information
dependabot[bot] and greut committed Feb 11, 2023
1 parent 400423e commit a9628e7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
13 changes: 8 additions & 5 deletions .github/actions/core-test/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
FROM golang:buster
FROM golang:bullseye

RUN set -xe && \
apt-get update -y && \
SHELL [ "/bin/bash", "-x", "-e", "-c" ]

ARG DEBIAN_FRONTEND=noninteraactive
RUN apt-get update -y && \
apt-get install -qy --no-install-recommends \
cmake \
git \
make
make && \
git config --system --add safe.directory '*'

CMD [ "make", "submodule", "test-core", "test-skipped" ]
CMD [ "make", "test-core", "test-skipped" ]
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3.3.1
uses: golangci/golangci-lint-action@v3.4.0
with:
version: v1.49
3 changes: 3 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,8 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v3
with:
submodules: true

- name: core test
uses: ./.github/actions/core-test

0 comments on commit a9628e7

Please sign in to comment.