Skip to content

Commit 0314e4b

Browse files
committed
🔧 fix(Dockerfile): update base image to support latest dependencies and compatibility
Updated the base image in the Dockerfile to ensure compatibility with recent library updates and improve overall stability. This change addresses potential issues with outdated dependencies and enhances the build process.
1 parent 1461039 commit 0314e4b

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

‎README.md‎

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
uses: aws-actions/amazon-ecr-login@v1
3939

4040
- name: Deploy to EKS cluster
41-
uses: kodermax/kubectl-aws-eks@1
41+
uses: kodermax/kubectl-aws-eks@v1
4242
env:
4343
KUBE_CONFIG_DATA: ${{ secrets.KUBE_CONFIG_DATA }}
4444
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
@@ -48,7 +48,7 @@ jobs:
4848
args: set image deployment/$ECR_REPOSITORY $ECR_REPOSITORY=$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
4949

5050
- name: Verify deployment
51-
uses: kodermax/kubectl-aws-eks@1
51+
uses: kodermax/kubectl-aws-eks@v1
5252
env:
5353
KUBE_CONFIG_DATA: ${{ secrets.KUBE_CONFIG_DATA }}
5454
with:
@@ -87,7 +87,7 @@ By default, this action uses the latest stable version of kubectl. To use a spec
8787

8888
```yaml
8989
- name: Deploy to EKS cluster
90-
uses: kodermax/kubectl-aws-eks@1
90+
uses: kodermax/kubectl-aws-eks@v1
9191
env:
9292
KUBE_CONFIG_DATA: ${{ secrets.KUBE_CONFIG_DATA }}
9393
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
@@ -104,7 +104,7 @@ By default, this action uses the latest version of aws-iam-authenticator. To use
104104

105105
```yaml
106106
- name: Deploy to EKS cluster
107-
uses: kodermax/kubectl-aws-eks@1
107+
uses: kodermax/kubectl-aws-eks@v1
108108
env:
109109
KUBE_CONFIG_DATA: ${{ secrets.KUBE_CONFIG_DATA }}
110110
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
@@ -160,7 +160,7 @@ You can run any kubectl command by passing it as the `args` parameter:
160160

161161
```yaml
162162
- name: Get pod information
163-
uses: kodermax/kubectl-aws-eks@1
163+
uses: kodermax/kubectl-aws-eks@v1
164164
env:
165165
KUBE_CONFIG_DATA: ${{ secrets.KUBE_CONFIG_DATA }}
166166
with:
@@ -171,7 +171,7 @@ You can run any kubectl command by passing it as the `args` parameter:
171171

172172
```yaml
173173
- name: Apply Kubernetes manifests
174-
uses: kodermax/kubectl-aws-eks@1
174+
uses: kodermax/kubectl-aws-eks@v1
175175
env:
176176
KUBE_CONFIG_DATA: ${{ secrets.KUBE_CONFIG_DATA }}
177177
with:

0 commit comments

Comments
 (0)