Skip to content

Commit d6755c4

Browse files
authored
Merge pull request #67 from scalyr/update_setup_helm_remove_errors
Upgrade setup-helm action to v2.5 to avoid GHA deprecation warnings / workflow annotations
2 parents d060249 + 4e17799 commit d6755c4

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

.github/actions/install-helm-chart/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ runs:
2525
using: "composite"
2626
steps:
2727
- name: Install Helm chart
28-
uses: nick-fields/retry@b4fa57557dda8c2f30bcb2d19372cc3237190f7f # v2.8.1
28+
uses: nick-fields/retry@943e742917ac94714d2f408a0e8320f2d1fcafcd # v2.8.3
2929
with:
3030
shell: bash
3131
timeout_seconds: 130

.github/actions/install-scalyr-tool/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ runs:
1111
using: "composite"
1212
steps:
1313
- name: Install Scalyr Tool
14-
uses: nick-fields/retry@b4fa57557dda8c2f30bcb2d19372cc3237190f7f # v2.8.1
14+
uses: nick-fields/retry@943e742917ac94714d2f408a0e8320f2d1fcafcd # v2.8.3
1515
with:
1616
shell: bash
1717
timeout_seconds: 100

.github/actions/setup-chart-testing-environment/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@ runs:
1919
steps:
2020
- name: Set up Helm
2121
id: setup-helm
22-
uses: azure/setup-helm@b5b231a831f96336bbfeccc1329990f0005c5bb1 # v3.3
22+
uses: azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78 # v3.5
2323
with:
2424
version: "latest"
25+
# Needed so it can fetch latest version
26+
token: "${{ inputs.github_token }}"
2527

2628
- uses: actions/setup-python@v4
2729
id: setup-python

.github/workflows/end_to_end_tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
9595
# We install Redis helm chart and later verify that logs from Redis pods are successfully ingested
9696
- name: Install Redis Helm Chart
97-
uses: nick-fields/retry@943e742917ac94714d2f408a0e8320f2d1fcafcd # v2.8.1
97+
uses: nick-fields/retry@943e742917ac94714d2f408a0e8320f2d1fcafcd # v2.8.3
9898
with:
9999
shell: bash
100100
timeout_seconds: 100
@@ -109,7 +109,7 @@ jobs:
109109
env:
110110
scalyr_readlog_token: "${{ secrets.SCALYR_READ_API_KEY_US }}"
111111
SCALYR_AGENT_POD_NAME: "${{ env.SCALYR_AGENT_POD_NAME }}"
112-
uses: nick-fields/retry@943e742917ac94714d2f408a0e8320f2d1fcafcd # v2.8.1
112+
uses: nick-fields/retry@943e742917ac94714d2f408a0e8320f2d1fcafcd # v2.8.3
113113
with:
114114
shell: bash
115115
timeout_seconds: 100

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
4141
4242
- name: Install Helm
43-
uses: azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78 # v3.3
43+
uses: azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78 # v3.5
4444
with:
4545
version: "latest"
4646
# Needed so it can fetch latest version

0 commit comments

Comments
 (0)