Skip to content

Commit

Permalink
Merge pull request #315 from SAP/develop
Browse files Browse the repository at this point in the history
upgrade to v4.14.2
  • Loading branch information
marcorosa authored Jul 5, 2024
2 parents 23a3fe7 + 38c42df commit 6dab31e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
if: github.event.pull_request.merged
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Check pypi version
uses: maybe-hello-world/pyproject-check-version@v4
Expand All @@ -39,7 +39,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Python 🚧
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install pypa/build 🚧
Expand All @@ -51,7 +51,7 @@ jobs:
- name: Build a binary wheel and a source tarball 🛠️
run: python3 -m build
- name: Store the distribution packages
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist/
Expand All @@ -72,7 +72,7 @@ jobs:

steps:
- name: Download all the dists
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push Docker 🐳 image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ./ui/Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'

[project]
name = 'credentialdigger'
version = '4.14.1'
version = '4.14.2'
dynamic = ['dependencies']
authors = [
{name = 'SAP SE'}
Expand Down
2 changes: 1 addition & 1 deletion ui/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN git config --global http.sslverify false
RUN git config --global core.autocrlf false

# Install Credential Digger
RUN pip install credentialdigger==4.13.0
RUN pip install credentialdigger

# Keys args (optional, for HTTPS)
ARG SSL_certificate
Expand Down

0 comments on commit 6dab31e

Please sign in to comment.