We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a089518 commit 1a139c3Copy full SHA for 1a139c3
.github/workflows/ci_test_go.yml
@@ -35,6 +35,10 @@ jobs:
35
id-token: write
36
contents: read
37
steps:
38
+ - name: Support longpaths
39
+ run: |
40
+ git config --global core.longpaths true
41
+
42
- name: Configure AWS Credentials
43
uses: aws-actions/configure-aws-credentials@v4
44
with:
@@ -51,6 +55,15 @@ jobs:
51
55
52
56
dafny-version: ${{ inputs.dafny }}
53
57
58
+ - name: Create temporary global.json
59
+ run: echo '{"sdk":{"rollForward":"latestFeature","version":"6.0.0"}}' > ./global.json
60
61
+ - name: Setup Java 17 for codegen
62
+ uses: actions/setup-java@v3
63
+ with:
64
+ distribution: "corretto"
65
+ java-version: "17"
66
54
67
- name: Update MPL submodule if using MPL HEAD
68
if: ${{ inputs.mpl-head == true }}
69
working-directory: submodules/MaterialProviders
0 commit comments