From 1cabf59107af227a88f3cb8e74c64d614f92e80c Mon Sep 17 00:00:00 2001 From: Sascha Mann Date: Thu, 25 Jun 2020 14:21:32 +0200 Subject: [PATCH] Add Privacy Info to README --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 6ea3688..965cb1f 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ This action sets up a Julia environment for use in actions by downloading a spec - [Julia Versions](#julia-versions) - [Matrix Testing](#matrix-testing) - [Versioning](#versioning) +- [Privacy Info](#privacy-info) - [Licence info](#licence-info) ## Usage @@ -147,5 +148,14 @@ steps: - uses: julia-actions/setup-julia@v0.1.0 # specific version tag ``` +## Privacy Info + +Julia version 1.5 and later collects telemetry information during certain `Pkg` operations. +Please refer to for information on what data is collected. +This action does not alter the Julia installation in any way, therefore telemetry on your CI runs will be collected by the Julia Pkg server unless you opt out. +In a later release of the action, an action input to opt out of telemetry will be provided but for now you need to add a step to your workflows that edits `telemetry.toml` in the CI environment as described in the [Opting Out](https://julialang.org/legal/data/#opting_out) section of the above document. + +**This action itself does not collect any kind of personal data or telemetry information.** + ## Licence info Parts of this software have been derived from the `setup-go` [action](https://github.com/actions/setup-go) and the [TypeScript Action Template](https://github.com/actions/typescript-action), both released by GitHub under the MIT licence.