Skip to content

[ms-go1.23-support] Support serializing SymCrypt hash objects #281

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
May 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: [1.20.x]
go-version: [1.23.x]
openssl-version: [1.0.2, 1.1.0, 1.1.1, 3.0.1, 3.0.13, 3.1.5, 3.2.1]
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Install build tools
run: sudo apt-get install -y build-essential
Expand All @@ -22,6 +22,7 @@ jobs:
- name: Check headers
working-directory: ./cmd/checkheader
run: go run . --ossl-include /usr/local/src/openssl-${{ matrix.openssl-version }}/include -shim ../../shims.h
if: ${{ matrix.openssl-version != '1.0.2' }} # Doesn't work on Ubuntu 22.04
- name: Set OpenSSL config and prove FIPS
run: |
sudo cp ./scripts/openssl-3.cnf /usr/local/ssl/openssl.cnf
Expand Down Expand Up @@ -50,7 +51,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: [1.20.x]
go-version: [1.23.x]
openssl-version: [libcrypto-1_1-x64.dll, libcrypto-3-x64.dll]
steps:
- name: Install Go
Expand All @@ -67,9 +68,9 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: [1.20.x]
openssl-version: [libcrypto.3.dylib]
runs-on: macos-12
go-version: [1.23.x]
openssl-version: [/usr/local/opt/openssl@3/lib/libcrypto.3.dylib]
runs-on: macos-13
steps:
- name: Install Go
uses: actions/setup-go@v3
Expand Down
Loading