Skip to content

Commit 5d734c5

Browse files
committed
[FIX] missing dependencies
1 parent 7490690 commit 5d734c5

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [v3.9.1] - 2024-08-20
4+
### Fixed
5+
- helm-release-notify
6+
- missing dependency
7+
- helm-test-notify
8+
- missing dependency
9+
310
## [v3.9] - 2024-08-13
411
### Added
512
- helm-release-notify

helm-release-notify/action.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ inputs:
2626
runs:
2727
using: 'composite'
2828
steps:
29+
- name: Install curl and git
30+
run: sudo apt-get update && sudo apt-get install -y curl git
31+
shell: bash
2932
- name: Checkout
3033
uses: actions/checkout@v4
3134
with:

helm-test-notify/action.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ inputs:
2323
runs:
2424
using: 'composite'
2525
steps:
26+
- name: Install curl
27+
run: sudo apt-get update && sudo apt-get install -y curl
28+
shell: bash
2629
- name: Checkout
2730
uses: actions/checkout@v4
2831
with:

0 commit comments

Comments
 (0)