7171
7272 - name: Update Operator Image name in Helm
7373 if: github.event.inputs.old_operator_version != github.event.inputs.new_operator_version
74- uses: jacobtomlinson/gha-find-replace@f485fdc3f67a6d87ae6e3d11e41f648c26d7aee3
74+ uses: jacobtomlinson/gha-find-replace@v3
7575 with:
7676 find: "splunk-operator:${{ github.event.inputs.old_operator_version }}"
7777 replace: "splunk-operator:${{ github.event.inputs.new_operator_version }}"
@@ -80,25 +80,25 @@ jobs:
8080
8181 - name: Update Helm Version
8282 if: github.event.inputs.old_operator_version != github.event.inputs.new_operator_version
83- uses: jacobtomlinson/gha-find-replace@f485fdc3f67a6d87ae6e3d11e41f648c26d7aee3
83+ uses: jacobtomlinson/gha-find-replace@v3
8484 with:
85- find: "version: ${{ github.event.inputs.old_operator_version }}"
86- replace: "version: ${{ github.event.inputs.new_operator_version }}"
85+ find: "${{ github.event.inputs.old_operator_version }}"
86+ replace: "${{ github.event.inputs.new_operator_version }}"
8787 exclude: "ChangeLog.md"
88- include: "Chart .yaml"
88+ include: "helm-chart/splunk-operator/** .yaml"
8989
9090 - name: Update Helm App Version
9191 if: github.event.inputs.old_operator_version != github.event.inputs.new_operator_version
92- uses: jacobtomlinson/gha-find-replace@f485fdc3f67a6d87ae6e3d11e41f648c26d7aee3
92+ uses: jacobtomlinson/gha-find-replace@v3
9393 with:
94- find: "appVersion: ${{ github.event.inputs.old_operator_version }}"
95- replace: "appVersion: ${{ github.event.inputs.new_operator_version }}"
94+ find: "${{ github.event.inputs.old_operator_version }}"
95+ replace: "${{ github.event.inputs.new_operator_version }}"
9696 exclude: "ChangeLog.md"
97- include: "Chart .yaml"
97+ include: "helm-chart/splunk-enterprise/** .yaml"
9898
9999 - name: Update Operator Image name in DOCS
100100 if: github.event.inputs.old_operator_version != github.event.inputs.new_operator_version
101- uses: jacobtomlinson/gha-find-replace@f485fdc3f67a6d87ae6e3d11e41f648c26d7aee3
101+ uses: jacobtomlinson/gha-find-replace@v3
102102 with:
103103 find: "splunk-operator:${{ github.event.inputs.old_operator_version }}"
104104 replace: "splunk-operator:${{ github.event.inputs.new_operator_version }}"
@@ -107,7 +107,7 @@ jobs:
107107
108108 - name: Update Splunk Operator Install URL in DOCS
109109 if: github.event.inputs.old_operator_version != github.event.inputs.new_operator_version
110- uses: jacobtomlinson/gha-find-replace@f485fdc3f67a6d87ae6e3d11e41f648c26d7aee3
110+ uses: jacobtomlinson/gha-find-replace@v3
111111 with:
112112 find: "/download/${{ github.event.inputs.old_operator_version }}/splunk-operator"
113113 replace: "/download/${{ github.event.inputs.new_operator_version }}/splunk-operator"
@@ -116,7 +116,7 @@ jobs:
116116
117117 - name: Update Splunk Operator VERSION in DOCS
118118 if: github.event.inputs.old_operator_version != github.event.inputs.new_operator_version
119- uses: jacobtomlinson/gha-find-replace@f485fdc3f67a6d87ae6e3d11e41f648c26d7aee3
119+ uses: jacobtomlinson/gha-find-replace@v3
120120 with:
121121 find: "${{ github.event.inputs.old_operator_version }} or later"
122122 replace: "${{ github.event.inputs.new_operator_version }} or later"
@@ -125,7 +125,7 @@ jobs:
125125
126126 - name: Update Splunk Operator upgrade string in DOCS
127127 if: github.event.inputs.old_operator_version != github.event.inputs.new_operator_version
128- uses: jacobtomlinson/gha-find-replace@f485fdc3f67a6d87ae6e3d11e41f648c26d7aee3
128+ uses: jacobtomlinson/gha-find-replace@v3
129129 with:
130130 find: "Steps to upgrade from version greater than 1.0.5 to ${{ github.event.inputs.old_operator_version }}"
131131 replace: "Steps to upgrade from version greater than 1.0.5 to ${{ github.event.inputs.new_operator_version }}"
@@ -134,7 +134,7 @@ jobs:
134134
135135 - name: Update Splunk Operator Release URL in DOCS
136136 if: github.event.inputs.old_operator_version != github.event.inputs.new_operator_version
137- uses: jacobtomlinson/gha-find-replace@f485fdc3f67a6d87ae6e3d11e41f648c26d7aee3
137+ uses: jacobtomlinson/gha-find-replace@v3
138138 with:
139139 find: "https://github.com/splunk/splunk-operator/releases/download/${{ github.event.inputs.old_operator_version }}/splunk-operator-install.yaml"
140140 replace: "https://github.com/splunk/splunk-operator/releases/download/${{ github.event.inputs.new_operator_version }}/splunk-operator-install.yaml"
@@ -143,30 +143,30 @@ jobs:
143143
144144 - name: Update Splunk Enterprise Image in operator.yaml
145145 if: github.event.inputs.old_enterprise_version != github.event.inputs.new_enterprise_version
146- uses: jacobtomlinson/gha-find-replace@f485fdc3f67a6d87ae6e3d11e41f648c26d7aee3
146+ uses: jacobtomlinson/gha-find-replace@v3
147147 with:
148148 find: "${{ github.event.inputs.old_enterprise_version }}"
149149 replace: "${{ github.event.inputs.new_enterprise_version }}"
150150 include: "**operator.yaml"
151151
152152 - name: Update Splunk Enterprise Release Image in .env file
153- uses: jacobtomlinson/gha-find-replace@f485fdc3f67a6d87ae6e3d11e41f648c26d7aee3
153+ uses: jacobtomlinson/gha-find-replace@v3
154154 with:
155155 find: "${{ github.event.inputs.old_enterprise_version }}"
156156 replace: "${{ github.event.inputs.new_enterprise_version }}"
157157 include: ".env"
158158
159159 - name: Update Splunk Enterprise Image in helm
160160 if: github.event.inputs.old_enterprise_version != github.event.inputs.new_enterprise_version
161- uses: jacobtomlinson/gha-find-replace@f485fdc3f67a6d87ae6e3d11e41f648c26d7aee3
161+ uses: jacobtomlinson/gha-find-replace@v3
162162 with:
163163 find: "${{ github.event.inputs.old_enterprise_version }}"
164164 replace: "${{ github.event.inputs.new_enterprise_version }}"
165165 include: "**values.yaml"
166166
167167 - name: Update Splunk Enterprise image in DOCS
168168 if: github.event.inputs.old_enterprise_version != github.event.inputs.new_enterprise_version
169- uses: jacobtomlinson/gha-find-replace@f485fdc3f67a6d87ae6e3d11e41f648c26d7aee3
169+ uses: jacobtomlinson/gha-find-replace@v3
170170 with:
171171 find: "${{ github.event.inputs.old_enterprise_version }} or later"
172172 replace: "${{ github.event.inputs.new_enterprise_version }} or later"
0 commit comments