-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #86 from pvarki/ocsprefresh_fix
Fix OCSP refresh and missing redirect to nicer error on cert verification failure
- Loading branch information
Showing
13 changed files
with
127 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[bumpversion] | ||
current_version = 1.2.0 | ||
commit = False | ||
tag = False | ||
|
||
[bumpversion:file:version.yml] | ||
search = version: "{current_version}" | ||
replace = version: "{new_version}" | ||
|
||
[bumpversion:file:docker-compose.yml] | ||
search = RELEASE_TAG:-{current_version} | ||
replace = RELEASE_TAG:-{new_version} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Create tag for release | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
types: | ||
- closed | ||
workflow_dispatch: # Allow manual triggering | ||
|
||
jobs: | ||
sphinx_docs_to_gh-pages: | ||
if: github.event.pull_request.merged == true | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: Checkout source code | ||
uses: actions/checkout@v4 | ||
- name: Parse tag to ENV | ||
run: | | ||
echo RELEASE_TAG=$(docker run --rm -v ${PWD}:/workdir mikefarah/yq .version version.yml ) >> ${GITHUB_ENV} | ||
cat ${GITHUB_ENV} | ||
- uses: rickstaa/action-create-tag@v1 | ||
id: "tag_create" | ||
with: | ||
tag: ${{ env.RELEASE_TAG }} | ||
tag_exists_error: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule api
updated
7 files
+1 −1 | .bumpversion.cfg | |
+1 −1 | pyproject.toml | |
+1 −1 | src/rasenmaeher_api/__init__.py | |
+16 −2 | src/rasenmaeher_api/cfssl/public.py | |
+12 −4 | src/rasenmaeher_api/web/api/utils/views.py | |
+17 −3 | tests/test_cfssl.py | |
+1 −1 | tests/test_rasenmaeher_api.py |
Submodule cfssl
updated
7 files
+1 −1 | .bumpversion.cfg | |
+2 −1 | .github/workflows/build.yml | |
+1 −1 | pyproject.toml | |
+1 −1 | src/ocsprest/__init__.py | |
+14 −3 | src/ocsprest/routes.py | |
+5 −0 | tests/conftest.py | |
+1 −1 | tests/test_ocsprest.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
version: "1.2.0" # use bump2version to bump this |