mirror of
https://github.com/protocolbuffers/protobuf.git
synced 2026-03-28 07:21:29 +00:00
## Summary Upgrade GitHub Actions to their latest versions to ensure compatibility with Node 24, as Node 20 will reach end-of-life in April 2026. ## Changes | Action | Old Version(s) | New Version | Release | Files | |--------|---------------|-------------|---------|-------| | `actions/cache` | [`1bd1e32`](1bd1e32a3b) | [`8b402f5`](8b402f58fb) | [Release](https://github.com/actions/cache/releases/tag/v5) | clear_caches.yml | | `actions/checkout` | [`8ade135`](8ade135a41) | [`8e8c483`](8e8c483db8) | [Release](https://github.com/actions/checkout/releases/tag/v6) | scorecard.yml, staleness_refresh.yml, update_php_repo.yml | | `actions/download-artifact` | [`018cc2c`](018cc2cf5b), [`fa0a91b`](fa0a91b85d) | [`37930b1`](37930b1c2a) | [Release](https://github.com/actions/download-artifact/releases/tag/v7) | test_cpp.yml, test_php_ext.yml, test_upb.yml | | `actions/setup-dotnet` | [`3447fd6`](3447fd6a9f) | [`baa11fb`](baa11fbfe1) | [Release](https://github.com/actions/setup-dotnet/releases/tag/v5) | test_csharp.yml | | `actions/setup-java` | [`3a4f6e1`](3a4f6e1af5) | [`be666c2`](be666c2fcd) | [Release](https://github.com/actions/setup-java/releases/tag/v5) | test_bazel.yml | | `actions/setup-python` | [`39cd149`](39cd14951b), [`e797f83`](e797f83bcb) | [`a309ff8`](a309ff8b42) | [Release](https://github.com/actions/setup-python/releases/tag/v6) | test_python.yml, test_upb.yml | | `actions/stale` | [`b69b346`](b69b346013) | [`9971854`](997185467f) | [Release](https://github.com/actions/stale/releases/tag/v10) | janitor.yml | | `actions/upload-artifact` | [`5076954`](50769540e7), [`v4`](https://github.com/actions/upload-artifact/releases/tag/v4) | [`b7c566a`](b7c566a772) | [Release](https://github.com/actions/upload-artifact/releases/tag/v6) | scorecard.yml, test_cpp.yml, test_php_ext.yml, test_ruby.yml, test_upb.yml | ## Context Per [GitHub's announcement](https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/), Node 20 is being deprecated and runners will begin using Node 24 by default starting March 4th, 2026. ### Why this matters - **Node 20 EOL**: April 2026 - **Node 24 default**: March 4th, 2026 - **Action**: Update to latest action versions that support Node 24 ### Security Note Actions that were previously pinned to commit SHAs remain pinned to SHAs (updated to the latest release SHA) to maintain the security benefits of immutable references. ### Testing These changes only affect CI/CD workflow configurations and should not impact application functionality. The workflows should be tested by running them on a branch before merging. Closes #25572 COPYBARA_INTEGRATE_REVIEW=https://github.com/protocolbuffers/protobuf/pull/25572 from salmanmkc:upgrade-github-actions-node24ef77dcfa4fPiperOrigin-RevId: 874140973
113 lines
4.6 KiB
YAML
113 lines
4.6 KiB
YAML
name: C# Tests
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
safe-checkout:
|
|
required: true
|
|
description: "The SHA key for the commit we want to run over"
|
|
type: string
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
# All C# jobs are currently run on presubmit
|
|
# If you wish to add continuous-only jobs you will need to import test-type above
|
|
linux:
|
|
name: Linux
|
|
runs-on: ubuntu-22-4core
|
|
steps:
|
|
- name: Checkout pending changes
|
|
uses: protocolbuffers/protobuf-ci/checkout@v5
|
|
with:
|
|
ref: ${{ inputs.safe-checkout }}
|
|
|
|
# TODO Run this with Bazel once codegen is handled properly.
|
|
- name: Run tests
|
|
uses: protocolbuffers/protobuf-ci/docker@v5
|
|
with:
|
|
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/csharp:8.0.1-3.1.415-6.0.100-b77fdae6d4771789dfc66a56bf8d806354e8011a
|
|
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }}
|
|
entrypoint: /bin/bash
|
|
command: >-
|
|
-cex "
|
|
cd csharp &&
|
|
dotnet restore src/Google.Protobuf.sln &&
|
|
dotnet build -c Release src/Google.Protobuf.sln &&
|
|
dotnet test -c Release -f net6.0 src/Google.Protobuf.Test/Google.Protobuf.Test.csproj"
|
|
|
|
- name: Clear bazel between docker instances
|
|
run: sudo rm -rf _build .repository-cache
|
|
|
|
- name: Run conformance tests
|
|
uses: protocolbuffers/protobuf-ci/bazel-docker@v5
|
|
with:
|
|
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/csharp:8.0.1-3.1.415-6.0.100-b77fdae6d4771789dfc66a56bf8d806354e8011a
|
|
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }}
|
|
bazel-cache: csharp_linux
|
|
bazel: test //csharp:conformance_test --action_env=DOTNET_CLI_TELEMETRY_OPTOUT=1 --test_env=DOTNET_CLI_HOME=/home/bazel
|
|
|
|
windows:
|
|
name: Windows
|
|
runs-on: windows-2022
|
|
steps:
|
|
- name: Checkout pending changes
|
|
uses: protocolbuffers/protobuf-ci/checkout@v5
|
|
with:
|
|
ref: ${{ inputs.safe-checkout }}
|
|
|
|
- name: Setup dotnet
|
|
uses: actions/setup-dotnet@baa11fbfe1d6520db94683bd5c7a3818018e4309 # v5.1.0
|
|
with:
|
|
dotnet-version: '6.0.x'
|
|
|
|
- name: Run tests
|
|
uses: protocolbuffers/protobuf-ci/bash@v5
|
|
with:
|
|
bazel-version: 8.0.1
|
|
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }}
|
|
command: |
|
|
dotnet build csharp/src/Google.Protobuf.sln
|
|
dotnet test csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.csproj
|
|
|
|
linux-aarch64:
|
|
name: Linux aarch64
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout pending changes
|
|
uses: protocolbuffers/protobuf-ci/checkout@v5
|
|
with:
|
|
ref: ${{ inputs.safe-checkout }}
|
|
|
|
- name: Build protobuf C# tests under x86_64 docker image
|
|
# Tests are built "dotnet publish" because we want all the dependencies to the copied to the destination directory
|
|
# (we want to avoid references to ~/.nuget that won't be available in the subsequent docker run)
|
|
uses: protocolbuffers/protobuf-ci/docker@v5
|
|
with:
|
|
image: mcr.microsoft.com/dotnet/sdk:6.0.100-bullseye-slim
|
|
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }}
|
|
command: >-
|
|
/bin/bash -cex '
|
|
DOTNET_CLI_TELEMETRY_OPTOUT=true
|
|
DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true
|
|
dotnet publish -c Release -f net6.0 /workspace/csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.csproj'
|
|
|
|
- name: Use an actual aarch64 docker image to run protobuf C# tests with an emulator
|
|
# "dotnet vstest" allows running tests from a pre-built project.
|
|
# * mount the protobuf root as /work to be able to access the crosscompiled files
|
|
# * to avoid running the process inside docker as root (which can pollute the workspace with files owned by root), we force
|
|
# running under current user's UID and GID. To be able to do that, we need to provide a home directory for the user
|
|
# otherwise the UID would be homeless under the docker container and pip install wouldn't work. For simplicity,
|
|
# we just run map the user's home to a throwaway temporary directory
|
|
uses: protocolbuffers/protobuf-ci/docker@v5
|
|
with:
|
|
image: mcr.microsoft.com/dotnet/sdk:6.0.100-bullseye-slim-arm64v8
|
|
skip-staleness-check: true
|
|
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }}
|
|
command: >-
|
|
/bin/bash -cex '
|
|
DOTNET_CLI_TELEMETRY_OPTOUT=true
|
|
DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true
|
|
dotnet vstest /workspace/csharp/src/Google.Protobuf.Test/bin/Release/net6.0/publish/Google.Protobuf.Test.dll'
|