Skip to content

Commit

Permalink
chore(deps): update all non-major github action dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Apr 29, 2024
1 parent c5f2e5e commit 5645a3d
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/admin-rollout-k8s-staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

# I'm cheating and using this action to install kubectl
- name: Setup helmfile
uses: mamezou-tech/[email protected]
uses: mamezou-tech/setup-helmfile@03233e1cd9b19b2ba320e431f7bcc0618db4248d # v2.0.0
with:
install-kubectl: yes
install-helm: yes
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/api-rollout-k8s-staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

# I'm cheating and using this action to install kubectl
- name: Setup helmfile
uses: mamezou-tech/[email protected]
uses: mamezou-tech/setup-helmfile@03233e1cd9b19b2ba320e431f7bcc0618db4248d # v2.0.0
with:
install-kubectl: yes
install-helm: yes
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dd-api-rollout-k8s-staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

# I'm cheating and using this action to install kubectl
- name: Setup helmfile
uses: mamezou-tech/[email protected]
uses: mamezou-tech/setup-helmfile@03233e1cd9b19b2ba320e431f7bcc0618db4248d # v2.0.0
with:
install-kubectl: yes
install-helm: yes
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation-rollout-k8s-staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

# I'm cheating and using this action to install kubectl
- name: Setup helmfile
uses: mamezou-tech/[email protected]
uses: mamezou-tech/setup-helmfile@03233e1cd9b19b2ba320e431f7bcc0618db4248d # v2.0.0
with:
install-kubectl: yes
install-helm: yes
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/helmfile_production_apply.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
# Fetches entire history, so we can analyze commits since last tag
fetch-depth: 0
- name: Setup helmfile
uses: mamezou-tech/[email protected]
uses: mamezou-tech/setup-helmfile@03233e1cd9b19b2ba320e431f7bcc0618db4248d # v2.0.0
with:
install-kubectl: yes
install-helm: yes
Expand All @@ -47,6 +47,6 @@ jobs:
./helmfile/getContext.sh -g
- name: Run helmfile
id: helmfile_apply
uses: helmfile/helmfile-action@v1.0.0
uses: helmfile/helmfile-action@9155b92e7bf13231a18293ecba75651054bae57a # v1.9.0
with:
helmfile-args: apply --environment production
4 changes: 2 additions & 2 deletions .github/workflows/helmfile_production_plan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
# Fetches entire history, so we can analyze commits since last tag
fetch-depth: 0
- name: Setup helmfile
uses: mamezou-tech/[email protected]
uses: mamezou-tech/setup-helmfile@03233e1cd9b19b2ba320e431f7bcc0618db4248d # v2.0.0
with:
install-kubectl: yes
install-helm: yes
Expand All @@ -52,7 +52,7 @@ jobs:
helmfile --environment staging diff >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
- name: Helmfile Diff Comment
uses: mshick/add-pr-comment@v2
uses: mshick/add-pr-comment@b8f338c590a895d50bcbfa6c5859251edc8952fc # v2.8.2
with:
message: |
${{join(steps.helmfile_diff.outputs.*, '\n')}}
4 changes: 2 additions & 2 deletions .github/workflows/helmfile_staging_apply.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
# Fetches entire history, so we can analyze commits since last tag
fetch-depth: 0
- name: Setup helmfile
uses: mamezou-tech/[email protected]
uses: mamezou-tech/setup-helmfile@03233e1cd9b19b2ba320e431f7bcc0618db4248d # v2.0.0
with:
install-kubectl: yes
install-helm: yes
Expand All @@ -45,6 +45,6 @@ jobs:
./helmfile/getContext.sh -g
- name: Run helmfile
id: helmfile_apply
uses: helmfile/helmfile-action@v1.0.0
uses: helmfile/helmfile-action@9155b92e7bf13231a18293ecba75651054bae57a # v1.9.0
with:
helmfile-args: apply --environment staging
2 changes: 1 addition & 1 deletion .github/workflows/helmfile_staging_apply_specific_app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
fetch-depth: 0

- name: Setup helmfile
uses: mamezou-tech/[email protected]
uses: mamezou-tech/setup-helmfile@03233e1cd9b19b2ba320e431f7bcc0618db4248d # v2.0.0
with:
install-kubectl: yes
install-helm: yes
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/helmfile_staging_plan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
# Fetches entire history, so we can analyze commits since last tag
fetch-depth: 0
- name: Setup helmfile
uses: mamezou-tech/[email protected]
uses: mamezou-tech/setup-helmfile@03233e1cd9b19b2ba320e431f7bcc0618db4248d # v2.0.0
with:
install-kubectl: yes
install-helm: yes
Expand All @@ -44,7 +44,7 @@ jobs:
helmfile --environment staging diff >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
- name: Helmfile Diff Comment
uses: mshick/add-pr-comment@v2
uses: mshick/add-pr-comment@b8f338c590a895d50bcbfa6c5859251edc8952fc # v2.8.2
with:
message: |
```shell
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/merge_to_main_production.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

# We are using this to install kubectl in this case
- name: Setup helmfile
uses: mamezou-tech/[email protected]
uses: mamezou-tech/setup-helmfile@03233e1cd9b19b2ba320e431f7bcc0618db4248d # v2.0.0
with:
install-kubectl: yes
install-helm: yes
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/merge_to_main_staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

# I'm cheating and using this action to install kubectl
- name: Setup helmfile
uses: mamezou-tech/[email protected]
uses: mamezou-tech/setup-helmfile@03233e1cd9b19b2ba320e431f7bcc0618db4248d # v2.0.0
with:
install-kubectl: yes
install-helm: yes
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/syntax_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

# I'm cheating and using this action to install kubectl
- name: Setup helmfile
uses: mamezou-tech/[email protected]
uses: mamezou-tech/setup-helmfile@03233e1cd9b19b2ba320e431f7bcc0618db4248d # v2.0.0
with:
install-kubectl: yes
install-helm: yes
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/syntax_check_prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

# We are using this to install kubectl in this case
- name: Setup helmfile
uses: mamezou-tech/[email protected]
uses: mamezou-tech/setup-helmfile@03233e1cd9b19b2ba320e431f7bcc0618db4248d # v2.0.0
with:
install-kubectl: yes
install-helm: yes
Expand Down

0 comments on commit 5645a3d

Please sign in to comment.