Skip to content

Commit c8ae92c

Browse files
committed
[BUILD] Fix GH Actions
### What changes were proposed in this pull request? Fix Github Actions due to deprecation of an older GH aciton. ### Why are the changes needed? CI ### Does this PR introduce _any_ user-facing change? NO ### How was this patch tested? Existing tests. Closes #122 from grundprinzip/gix_gh. Authored-by: Martin Grund <martin.grund@databricks.com> Signed-off-by: Martin Grund <martin.grund@databricks.com>
1 parent 3c6cdda commit c8ae92c

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
uses: actions/checkout@v4
5454
with:
5555
submodules: recursive
56-
- uses: actions/setup-go@v4
56+
- uses: actions/setup-go@v5
5757
name: Setup Go
5858
with:
5959
go-version-file: 'go.mod'
@@ -67,7 +67,7 @@ jobs:
6767
distribution: zulu
6868

6969
- name: Cache Spark Installation
70-
uses: actions/cache@v2
70+
uses: actions/cache@v4
7171
id: cache
7272
with:
7373
key: v2-spark-${{ env.SPARK_VERSION }}-bin-hadoop${{ env.HADOOP_VERSION }}
@@ -117,11 +117,12 @@ jobs:
117117
run: |
118118
export SPARK_HOME=/home/runner/deps/spark-${{ env.SPARK_VERSION }}-bin-hadoop${{ env.HADOOP_VERSION }}
119119
make coverage
120-
- uses: PaloAltoNetworks/cov@3.0.0
121-
with:
122-
cov_mode: coverage
123-
main_branch: master
124-
cov_threshold: 60
120+
# Disable the code coverage check for now until https://github.com/PaloAltoNetworks/cov/issues/8 is fixed.
121+
# - uses: PaloAltoNetworks/cov@3.0.0
122+
# with:
123+
# cov_mode: coverage
124+
# main_branch: master
125+
# cov_threshold: 60
125126
- name: golangci-lint
126127
uses: golangci/golangci-lint-action@v6
127128
with:

0 commit comments

Comments
 (0)