Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-php-laravel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
with:
fetch-depth: 0
- id: dry_tag_version
uses: mathieudutour/github-tag-action@v6.1
uses: mathieudutour/github-tag-action@v6.2
with:
github_token: ${{ secrets.gh_token }}
release_branches: ${{ inputs.release_branches }}
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
with:
fetch-depth: 0
- id: tag_version
uses: mathieudutour/github-tag-action@v6.1
uses: mathieudutour/github-tag-action@v6.2
with:
github_token: ${{ secrets.gh_token }}
release_branches: ${{ inputs.release_branches }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-php-v1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
with:
fetch-depth: 0
- id: dry_tag_version
uses: mathieudutour/github-tag-action@v6.1
uses: mathieudutour/github-tag-action@v6.2
with:
github_token: ${{ secrets.gh_token }}
release_branches: ${{ inputs.release_branches }}
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
with:
fetch-depth: 0
- id: tag_version
uses: mathieudutour/github-tag-action@v6.1
uses: mathieudutour/github-tag-action@v6.2
with:
github_token: ${{ secrets.gh_token }}
release_branches: ${{ inputs.release_branches }}
Expand Down
13 changes: 10 additions & 3 deletions .github/workflows/helm-deploy-eks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,17 +55,24 @@ jobs:
with:
ref: ${{ inputs.image_tag }}
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v5
with:
aws-access-key-id: ${{ secrets.aws_access_id }}
aws-secret-access-key: ${{ secrets.aws_access_secret }}
aws-region: us-east-1
role-duration-seconds: 1200
role-session-name: GithubActions-${{ github.event.repository.name }}
- name: Setup Helm
uses: azure/setup-helm@v3
uses: azure/setup-helm@v4
with:
# token: fetches the latest Helm release from GitHub. Without it
# the action falls back to a hardcoded default version and emits
# a warning on every deploy log.
token: ${{ github.token }}
- name: Setup Kubectl
uses: Azure/setup-kubectl@v3
uses: Azure/setup-kubectl@v4
with:
token: ${{ github.token }}
- name: deploy
run: |
echo "${{ secrets.kubeconfig }}" >> kube.config
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/helm-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,14 @@ jobs:
with:
ref: ${{ inputs.image_tag }}
- name: Setup Helm
uses: azure/setup-helm@v3
uses: azure/setup-helm@v4
with:
version: ${{ inputs.helm_version }}
token: ${{ github.token }}
- name: Setup Kubectl
uses: Azure/setup-kubectl@v3
uses: Azure/setup-kubectl@v4
with:
token: ${{ github.token }}
- name: deploy
run: |
kubectl config set-cluster k8s --server="${{ secrets.k8s_server }}"
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/helm-deployv2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,13 @@ jobs:
with:
ref: ${{ inputs.image_tag }}
- name: Setup Helm
uses: azure/setup-helm@v3
uses: azure/setup-helm@v4
with:
token: ${{ github.token }}
- name: Setup Kubectl
uses: Azure/setup-kubectl@v3
uses: Azure/setup-kubectl@v4
with:
token: ${{ github.token }}
- name: deploy
run: |
echo "${{ secrets.kubeconfig }}" >> kube.config
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/helm-rollback.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,13 @@ jobs:
with:
ref: ${{ inputs.image_tag }}
- name: Setup Helm
uses: azure/setup-helm@v3
uses: azure/setup-helm@v4
with:
token: ${{ github.token }}
- name: Setup Kubectl
uses: Azure/setup-kubectl@v3
uses: Azure/setup-kubectl@v4
with:
token: ${{ github.token }}
- name: deploy
run: |
kubectl config set-cluster k8s --server="${{ secrets.k8s_server }}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
message: "${{ steps.spec.outputs.title }} ${{ steps.spec.outputs.version }}"
tag: ${{ steps.spec.outputs.version }}
- name: Node Setup
uses: actions/setup-node@v4
uses: actions/setup-node@v5
- run: npm install
- run: npm run build
- uses: JS-DevTools/npm-publish@v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
message: "${{ steps.spec.outputs.title }} ${{ steps.spec.outputs.version }}"
tag: ${{ steps.spec.outputs.version }}
- name: Node Setup
uses: actions/setup-node@v4
uses: actions/setup-node@v5
- run: npm install
- run: npm run build
- uses: JS-DevTools/npm-publish@v1
Expand Down