Skip to content

Commit 47826db

Browse files
authored
chore(ci): disable dagger linter (#583)
Signed-off-by: Miguel Martinez Trivino <[email protected]>
1 parent c8318b5 commit 47826db

File tree

2 files changed

+22
-21
lines changed

2 files changed

+22
-21
lines changed

.github/workflows/lint.yml

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -53,27 +53,28 @@ jobs:
5353
buf_api_token: ${{ secrets.buf_api_token }}
5454
- uses: bufbuild/buf-lint-action@bd48f53224baaaf0fc55de9a913e7680ca6dbea4 # v1.0.3
5555

56-
lint-dagger-module:
57-
runs-on: ubuntu-latest
58-
steps:
59-
- name: Install Dagger CLI
60-
run: |
61-
mkdir -p ~/.local/bin
62-
cd ~/.local
63-
curl -L https://dl.dagger.io/dagger/install.sh | sh
56+
# temporarily disabled until we stabilize the module
57+
# lint-dagger-module:
58+
# runs-on: ubuntu-latest
59+
# steps:
60+
# - name: Install Dagger CLI
61+
# run: |
62+
# mkdir -p ~/.local/bin
63+
# cd ~/.local
64+
# curl -L https://dl.dagger.io/dagger/install.sh | sh
6465

65-
- uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0
66-
with:
67-
go-version: "1.22.1"
66+
# - uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0
67+
# with:
68+
# go-version: "1.22.1"
6869

69-
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
70+
# - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
7071

71-
- name: Initialize module
72-
run: |
73-
make -C extras/dagger module-init
72+
# - name: Initialize module
73+
# run: |
74+
# make -C extras/dagger module-init
7475

75-
- name: Lint
76-
uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # v3.7.0
77-
with:
78-
working-directory: extras/dagger/src
79-
version: v1.54
76+
# - name: Lint
77+
# uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # v3.7.0
78+
# with:
79+
# working-directory: extras/dagger/src
80+
# version: v1.54

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ lint:
3737
make -C ./app/controlplane lint
3838
make -C ./app/cli lint
3939
make -C ./app/artifact-cas lint
40-
make -C ./extras/dagger lint
40+
# make -C ./extras/dagger lint
4141

4242
.PHONY: test
4343
# All tests, both unit and integration

0 commit comments

Comments
 (0)