Skip to content

Commit 99076b6

Browse files
authored
Fix deprecation warnings (#7)
- update dependencies - replace usage of ::set-output https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
1 parent a7c709a commit 99076b6

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/package-docker-image.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
name: Build and push docker image
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
16-
- uses: docker/login-action@v1
15+
- uses: actions/checkout@v3
16+
- uses: docker/login-action@v2
1717
with:
1818
username: ${{ secrets.BYD_DOCKERHUB_USER }}
1919
password: ${{ secrets.BYD_DOCKERHUB_PASSWORD }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The version of the chart that was published. Ex: 0.1.1641463259
3838
## Example usage
3939

4040
```yaml
41-
uses: ePages-de/action-package-helm-chart@v1
41+
uses: ePages-de/action-package-helm-chart@v4
4242
with:
4343
build-timestamp: ${{ needs.build.outputs.build-timestamp }} # generated during build
4444
project-chart-name: "product-finder"

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ outputs:
3131
runs:
3232
using: 'composite'
3333
steps:
34-
- uses: actions/checkout@v2
34+
- uses: actions/checkout@v3
3535
- name: Download generated messaging helm values ⬇️
3636
if: ${{ inputs.has-messaging == 'true' }}
37-
uses: actions/download-artifact@v2
37+
uses: actions/download-artifact@v3
3838
with:
3939
name: message-artifact-values
4040
path: build/message-artifacts-helm

package-action/entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,5 +95,5 @@ curl -sS --fail -u "${ARTIFACTORY_USERNAME}:${ARTIFACTORY_PASSWORD}" \
9595
-T "${helm_package_name}"
9696

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

0 commit comments

Comments
 (0)