Skip to content

Commit

Permalink
Merge branch 'main' into release/github-actions-connector-1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Savoie committed Feb 20, 2025
2 parents 0e33c4a + 39adb06 commit 4a42435
Show file tree
Hide file tree
Showing 29 changed files with 217 additions and 477 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v4
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ jobs:
source: ./docs
destination: ./_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
2 changes: 1 addition & 1 deletion .github/workflows/deploy-git-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download build artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: 'github-pages'
path: .
Expand Down
5 changes: 1 addition & 4 deletions docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ target_environment: "production"

sp_web_url: "https://app.signpath.io/Web"
sp_api_url: "https://app.signpath.io/api"
job_portal_url: "https://signpath.jobs.personio.com"

#url: "" # the base hostname & protocol for your site, e.g. http://example.com

Expand Down Expand Up @@ -57,7 +58,3 @@ exclude:

sass:
style: compressed

collections:
jobs:
output: true
32 changes: 31 additions & 1 deletion docs/_data/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
- date: '2025-01-30'
- date: '2025-02-20'
updates:
github_connector:
version: 1.2.0
Expand All @@ -8,6 +8,36 @@
bug_fixes:
- text: Fixed bug for workflow runs with skipped jobs.
issues: [SIGN-7513, SIGN-7514]
- date: '2025-02-12'
updates:
jenkins_plugin:
version: 3.0.1
breaking_changes:
- text: |
The SignPath _Api URL_ must now be configured globally in the Jenkins system settings. The parameter in the Pipeline step has been marked as deprecated. (It is ignored if it matches the global setting.)
_This fix removes a risk of introducing insecure configurations through individual Jenkins projects. All potentially affected customers have previously been informed._
issues: [SIGN-7342, SIGN-7466, SIGN-7489, SIGN-7522]
new_features:
- text: |
A default _Trusted Build System Token Credential ID_ and a default _Organization ID_ can now be configured globally in the Jenkins system settings.
issues: [SIGN-7342, SIGN-7466, SIGN-7489, SIGN-7522]
- date: '2025-01-31'
updates:
crypto_providers:
version: 5.2.0
improvements:
- text: |-
Improved Linux container samples:
* Ported all scenario scripts and helper functions to Bash.
* Improved support for running the scenario scripts outside of a Docker container:
* moved Organization ID and API token parameters to the "inner" scenario scripts
* improved Cryptoki library discovery
* various minor improvements
* [GPG-based hash signing](/documentation/crypto-providers/gpg): GPG public key file is now downloaded automatically. Therefore the `-GpgKeyId` parameter of the scenario scripts has been replaced with `-ProjectSlug` and `-SigningPolicySlug`.
* Changed work directory from `Samples/Scenarios/temp` to `Samples/Scenarios/Work` and logs directory to `Samples/Scenarios/Work/Logs`.
* Added detached CMS signing sample to the OpenSSL scenario.
issues: [SIGN-7410, SIGN-7497]
- date: '2025-01-28'
updates:
application:
Expand Down
2 changes: 1 addition & 1 deletion docs/_data/menus/about-us.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
path: blog

- text: Jobs
path: jobs
path: $job_portal_url

- text: Support
path: support
Expand Down
12 changes: 9 additions & 3 deletions docs/_includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,16 +65,22 @@
<ul>
{%- for entry in site.data.menus.menus -%}
<li>
<a href='/{{entry.path}}'> {{entry.text}} </a>
<a href='/{{entry.path}}'> {{entry.text}}</a>
<ul>
{%- for subentry in site.data.menus[entry.path] -%}
{%- if subentry.separator -%}
<li class='separator' />
{%- else -%}
{%- assign subentry_path = "/" | append: subentry.path -%}
{%- assign is_variable = subentry.path | split: '$' -%}
{%- if is_variable[0] == '' -%}
{%- assign site_var_name = is_variable[1] -%}
{%- assign subentry_path = site[site_var_name] -%}
{%- endif -%}
{%- if entry.subdir -%}
<li> <a href='/{{entry.path}}/{{subentry.path}}'> {{subentry.text}} </a> </li>
<li> <a href='/{{entry.path}}{{subentry_path}}'> {{subentry.text}} </a> </li>
{%- else -%}
<li> <a href='/{{subentry.path}}'> {{subentry.text}} </a> </li>
<li> <a href='{{subentry_path}}'> {{subentry.text}} {{site[subentry_path]}}</a> </li>
{%- endif -%}
{%- endif -%}
{%- endfor -%}
Expand Down
30 changes: 0 additions & 30 deletions docs/_jobs/index.html

This file was deleted.

52 changes: 0 additions & 52 deletions docs/_jobs/po.md

This file was deleted.

48 changes: 0 additions & 48 deletions docs/_jobs/presales-consultant.md

This file was deleted.

41 changes: 0 additions & 41 deletions docs/_jobs/senior-dev-core.md

This file was deleted.

Loading

0 comments on commit 4a42435

Please sign in to comment.