Skip to content

Commit 7dfe7aa

Browse files
author
Musa Misto
committed
chore: update action versions in workflows and actions
- Updated Docker Buildx action from v3 to v4 in docker-build-push and ci-docker workflows. - Updated Docker Login action from v3 to v4 in docker-build-push action. - Updated Docker Metadata action from v5 to v6 in docker-build-push action. - Updated Docker Build-Push action from v5 to v7 in docker-build-push action. - Updated Helm setup actions from v4 to v5 in helm-deploy-s9generic, helm-deploy, helm-generic, and helm-package-push actions. - Updated Helm setup actions from v4 to v5 in ci-helm workflow. - Updated Helm setup actions from v4 to v5 in helm-deploy-values workflow. - Updated generic-gateway-chart-cicd workflow to include new inputs and outputs for NuGet packaging and Docker build. - Refactored deployment logic in generic-gateway-chart-cicd workflow to enhance gateway and ingress handling.
1 parent aedaafb commit 7dfe7aa

9 files changed

Lines changed: 700 additions & 259 deletions

File tree

.github/actions/docker-build-push/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,20 +60,20 @@ runs:
6060
using: 'composite'
6161
steps:
6262
- name: Set up Docker Buildx
63-
uses: docker/setup-buildx-action@v3
63+
uses: docker/setup-buildx-action@v4
6464
with:
6565
platforms: ${{ inputs.platforms }}
6666

6767
- name: Log in to Container Registry
68-
uses: docker/login-action@v3
68+
uses: docker/login-action@v4
6969
with:
7070
registry: ${{ inputs.registry != 'docker.io' && inputs.registry || '' }}
7171
username: ${{ inputs.username }}
7272
password: ${{ inputs.password }}
7373

7474
- name: Extract metadata
7575
id: meta
76-
uses: docker/metadata-action@v5
76+
uses: docker/metadata-action@v6
7777
with:
7878
images: |
7979
${{ inputs.registry != 'docker.io' && format('{0}/{1}', inputs.registry, inputs.image-name) || inputs.image-name }}
@@ -85,7 +85,7 @@ runs:
8585
8686
- name: Build and push Docker image
8787
id: build
88-
uses: docker/build-push-action@v5
88+
uses: docker/build-push-action@v7
8989
with:
9090
context: ${{ inputs.context }}
9191
file: ${{ inputs.dockerfile }}

.github/actions/helm-deploy-s9generic/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,12 +119,12 @@ runs:
119119
fi
120120
121121
- name: Set up Helm
122-
uses: azure/setup-helm@v4
122+
uses: azure/setup-helm@v5
123123
with:
124124
version: ${{ inputs.helm-version }}
125125

126126
- name: Set up kubectl
127-
uses: azure/setup-kubectl@v4
127+
uses: azure/setup-kubectl@v5
128128
with:
129129
version: ${{ inputs.kubectl-version }}
130130

.github/actions/helm-deploy/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,12 +100,12 @@ runs:
100100
using: 'composite'
101101
steps:
102102
- name: Set up Helm
103-
uses: azure/setup-helm@v4
103+
uses: azure/setup-helm@v5
104104
with:
105105
version: ${{ inputs.helm-version }}
106106

107107
- name: Set up kubectl
108-
uses: azure/setup-kubectl@v4
108+
uses: azure/setup-kubectl@v5
109109
with:
110110
version: ${{ inputs.kubectl-version }}
111111

.github/actions/helm-generic/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,12 +123,12 @@ runs:
123123
run: echo "KUBECONFIG=${{ steps.kube.outputs.kubeconfig_path }}" >> "$GITHUB_ENV"
124124

125125
- name: Install Helm
126-
uses: azure/setup-helm@v4
126+
uses: azure/setup-helm@v5
127127
with:
128128
version: v3.14.4
129129

130130
- name: Install kubectl
131-
uses: azure/setup-kubectl@v4
131+
uses: azure/setup-kubectl@v5
132132
with:
133133
version: 'latest'
134134

.github/actions/helm-package-push/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ runs:
7878
using: 'composite'
7979
steps:
8080
- name: Set up Helm
81-
uses: azure/setup-helm@v4
81+
uses: azure/setup-helm@v5
8282
with:
8383
version: ${{ inputs.helm-version }}
8484

.github/workflows/ci-docker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
EFFECTIVE_REGISTRY: ${{ env.EFFECTIVE_REGISTRY }}
9494

9595
- name: Set up Docker Buildx
96-
uses: docker/setup-buildx-action@v3
96+
uses: docker/setup-buildx-action@v4
9797

9898
- name: Validate and login to container registry
9999
shell: bash

.github/workflows/ci-helm.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ jobs:
184184
run: echo "KUBECONFIG=${{ steps.kube.outputs.kubeconfig_path }}" >> "$GITHUB_ENV"
185185

186186
- name: Install Helm
187-
uses: azure/setup-helm@v4
187+
uses: azure/setup-helm@v5
188188
with:
189189
version: v3.14.4
190190

0 commit comments

Comments
 (0)