Skip to content

Commit

Permalink
Fix deprecation warnings (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
depoulo authored Nov 9, 2022
1 parent a7c709a commit 99076b6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/package-docker-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
name: Build and push docker image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: docker/login-action@v1
- uses: actions/checkout@v3
- uses: docker/login-action@v2
with:
username: ${{ secrets.BYD_DOCKERHUB_USER }}
password: ${{ secrets.BYD_DOCKERHUB_PASSWORD }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ The version of the chart that was published. Ex: 0.1.1641463259
## Example usage

```yaml
uses: ePages-de/action-package-helm-chart@v1
uses: ePages-de/action-package-helm-chart@v4
with:
build-timestamp: ${{ needs.build.outputs.build-timestamp }} # generated during build
project-chart-name: "product-finder"
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ outputs:
runs:
using: 'composite'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Download generated messaging helm values ⬇️
if: ${{ inputs.has-messaging == 'true' }}
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: message-artifact-values
path: build/message-artifacts-helm
Expand Down
4 changes: 2 additions & 2 deletions package-action/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,5 +95,5 @@ curl -sS --fail -u "${ARTIFACTORY_USERNAME}:${ARTIFACTORY_PASSWORD}" \
-T "${helm_package_name}"

# Set the output parameters
echo '' # The set-output needs to be in a new line to work
echo "::set-output name=chart-version::${new_chart_version}"
echo '' # This needs to be in a new line to work
echo "chart-version=${new_chart_version}" >> $GITHUB_OUTPUT

0 comments on commit 99076b6

Please sign in to comment.