Skip to content

Commit

Permalink
[actions] update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
maso7 committed Aug 18, 2023
1 parent 2f3aa7e commit 7ce168c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
echo "Platforms: ${{ steps.buildx.outputs.platforms }}"
echo "Build tag ${{ steps.tag.outputs.tag }}"
- name: Login to GHRC
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
uses: docker/login-action@v2
with:
registry: ${{ env.registry }}
username: ${{ github.actor }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand All @@ -26,12 +26,12 @@ jobs:
- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed)
changed=$(ct list-changed --target-branch main)
if [[ -n "$changed" ]]; then
echo "::set-output name=changed::true"
echo "changed=true" >> $GITHUB_OUTPUT
fi
- name: Run chart-testing (lint)
run: ct lint
run: ct lint --target-branch main

- name: Create kind cluster
uses: helm/[email protected]
Expand Down

0 comments on commit 7ce168c

Please sign in to comment.