We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb399bf commit c5e0a51Copy full SHA for c5e0a51
.github/actions/polymorph_codegen/action.yml
@@ -96,6 +96,8 @@ runs:
96
shell: bash
97
run: |
98
echo "PROJECT_DEPENDENCIES=${{ inputs.update-and-regenerate-mpl != 'true' && 'PROJECT_DEPENDENCIES=' || '' }}" >> $GITHUB_OUTPUT
99
+ run: |
100
+ dotnet --version
101
102
- name: Regenerate Dafny code using smithy-dafny
103
# Unfortunately Dafny codegen doesn't work on Windows:
.github/workflows/ci_codegen.yml
@@ -48,6 +48,9 @@ jobs:
48
with:
49
dotnet-version: ${{ matrix.dotnet-version }}
50
51
+ - name: Create temporary global.json
52
+ run: echo '{"sdk":{"rollForward":"latestFeature","version":"6.0.0"}}' > ./global.json
53
+
54
- name: Setup Java 17 for codegen
55
uses: actions/setup-java@v3
56
0 commit comments