Skip to content

Commit 5883c13

Browse files
Deprecate Go extraction reconciliation feature flag and CODEQL_EXTRACTOR_GO_BUILD_TRACING for custom builds (#1322)
Co-authored-by: Henry Mercer <[email protected]>
1 parent 0eacdb5 commit 5883c13

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+178
-610
lines changed

.github/workflows/__go-custom-tracing.yml

-92
This file was deleted.

.github/workflows/__go-reconciled-tracing-legacy-workflow.yml

-86
This file was deleted.

.github/workflows/__go-reconciled-tracing-autobuilder.yml .github/workflows/__go-tracing-autobuilder.yml

+3-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__go-reconciled-tracing-custom-build-steps.yml .github/workflows/__go-tracing-custom-build-steps.yml

+3-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__go-custom-tracing-autobuild.yml .github/workflows/__go-tracing-legacy-workflow.yml

+3-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/debug-artifacts-failure.yml

+4
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ jobs:
3535
uses: ./.github/prepare-test
3636
with:
3737
version: latest
38+
- uses: actions/setup-go@v3
39+
with:
40+
go-version: ^1.13.1
3841
- uses: ./../action/init
3942
with:
4043
tools: ${{ steps.prepare-test.outputs.tools-url }}
@@ -87,4 +90,5 @@ jobs:
8790
popd
8891
done
8992
env:
93+
GO111MODULE: auto
9094
INTERNAL_CODEQL_ACTION_DEBUG_LOC: true

.github/workflows/debug-artifacts.yml

+4
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ jobs:
5555
uses: ./.github/prepare-test
5656
with:
5757
version: ${{ matrix.version }}
58+
- uses: actions/setup-go@v3
59+
with:
60+
go-version: ^1.13.1
5861
- uses: ./../action/init
5962
with:
6063
tools: ${{ steps.prepare-test.outputs.tools-url }}
@@ -113,4 +116,5 @@ jobs:
113116
done
114117
done
115118
env:
119+
GO111MODULE: auto
116120
INTERNAL_CODEQL_ACTION_DEBUG_LOC: true

.github/workflows/unset-environment-new-cli.yml

+3
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ jobs:
4040
uses: ./.github/prepare-test
4141
with:
4242
version: ${{ matrix.version }}
43+
- uses: actions/setup-go@v3
44+
with:
45+
go-version: ^1.13.1
4346
- uses: ./../action/init
4447
with:
4548
db-location: ${{ runner.temp }}/customDbLocation

.github/workflows/unset-environment-old-cli.yml

+3
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ jobs:
3939
uses: ./.github/prepare-test
4040
with:
4141
version: ${{ matrix.version }}
42+
- uses: actions/setup-go@v3
43+
with:
44+
go-version: ^1.13.1
4245
- uses: ./../action/init
4346
with:
4447
languages: csharp,cpp,go,javascript,python

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [UNRELEASED]
44

5-
No user facing changes.
5+
- Go is now analyzed in the same way as other compiled languages such as C/C++, C#, and Java. This completes the rollout of the feature described in [CodeQL Action version 2.1.27](#2127---06-oct-2022). [#1322](https://github.com/github/codeql-action/pull/1322)
66

77
## 2.1.32 - 14 Nov 2022
88

0 commit comments

Comments
 (0)