Skip to content

Commit

Permalink
bump github actions plugins (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
mslabek authored Nov 15, 2024
1 parent 29f1d0b commit 0931e6a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/helm-test-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: packageAll
run: helm package ${{env.CHART_SRC_DIR}} -d dist --version "${{steps.setVersion.outputs.version}}"
- name: Store target
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: helm-build
path: "dist/${{env.NAME}}-${{steps.setVersion.outputs.version}}.tgz"
Expand All @@ -50,7 +50,7 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: helm-build
path: dist
Expand All @@ -70,7 +70,7 @@ jobs:
runs-on: ubuntu-latest
needs: [ build, helm-test ]
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: helm-build
path: dist
Expand All @@ -81,7 +81,7 @@ jobs:
runs-on: ubuntu-latest
needs: [ build, helm-test ]
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: helm-build
path: dist
Expand Down

0 comments on commit 0931e6a

Please sign in to comment.