From 68107bbb3e0fba9aabcdbb9f2dc2012574968bd2 Mon Sep 17 00:00:00 2001
From: gotbadger
Date: Tue, 19 Sep 2023 16:30:33 +0100
Subject: [PATCH 1/3] docs: add not about MacOS support
---
docs/reference/installation.md | 3 +++
1 file changed, 3 insertions(+)
diff --git a/docs/reference/installation.md b/docs/reference/installation.md
index 4bf3e6790..eeac3a2ea 100644
--- a/docs/reference/installation.md
+++ b/docs/reference/installation.md
@@ -27,6 +27,9 @@ The default installation script works well for most use cases, but if you need m
curl -sfL https://raw.githubusercontent.com/Bearer/bearer/main/contrib/install.sh | sh -s -- -b /usr/local/bin
```
+For MacOS we only support 12+ (Monterey) and later. For older versions we recommend using docker.
+
+
### Homebrew
Using Bearer CLI's official [Homebrew tap](https://github.com/Bearer/homebrew-tap):
From 0ffb4a6c703969c8272bf7259c0c9831efa49266 Mon Sep 17 00:00:00 2001
From: gotbadger
Date: Tue, 19 Sep 2023 16:30:54 +0100
Subject: [PATCH 2/3] docs: add missing always
---
docs/guides/github-action.njk | 1 +
1 file changed, 1 insertion(+)
diff --git a/docs/guides/github-action.njk b/docs/guides/github-action.njk
index 1ccac7cd9..e2c2ceb23 100644
--- a/docs/guides/github-action.njk
+++ b/docs/guides/github-action.njk
@@ -116,6 +116,7 @@ jobs:
output: results.sarif
+ # Add a new step to upload the SARIF file
- name: Upload SARIF file
+ if: always()
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: results.sarif
From 7ae3c2d44006d5539a999576b6e8cc4ef1caf4b3 Mon Sep 17 00:00:00 2001
From: Philip Hayton
Date: Wed, 20 Sep 2023 11:14:35 +0100
Subject: [PATCH 3/3] Update docs/reference/installation.md
Co-authored-by: elsapet
---
docs/reference/installation.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/reference/installation.md b/docs/reference/installation.md
index eeac3a2ea..e64f7dea4 100644
--- a/docs/reference/installation.md
+++ b/docs/reference/installation.md
@@ -27,7 +27,7 @@ The default installation script works well for most use cases, but if you need m
curl -sfL https://raw.githubusercontent.com/Bearer/bearer/main/contrib/install.sh | sh -s -- -b /usr/local/bin
```
-For MacOS we only support 12+ (Monterey) and later. For older versions we recommend using docker.
+For MacOS we only support 12+ (Monterey) and later. For older versions we recommend using Docker.
### Homebrew