Skip to content

Commit 39c653a

Browse files
Merge pull request #398 from shankara-n/update-gh-action-external-dependencies
Replace external github action dependencies
2 parents 5bdcc8b + f4b642f commit 39c653a

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/on-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
uses: actions/checkout@v4
2424
- name: Get release version
2525
id: tag
26-
uses: divyansh-gupta/action-get-tag@727a6f0a561be04e09013531e73a3983a65e3479
26+
uses: aws-pca-k8s-plugin-ops-admin/action-get-tag@727a6f0a561be04e09013531e73a3983a65e3479
2727
- name: Setup Dockerx
2828
uses: docker/setup-buildx-action@v1
2929
- name: Setup AWS Credentials
@@ -101,7 +101,7 @@ jobs:
101101
${{ env.TAG_BASE }}:${{steps.tag.outputs.tag}}
102102
push: true
103103
- name: Publish Helm chart
104-
uses: divyansh-gupta/helm-gh-pages@12f5926e622ccae035cf5a3bb8d67ae6db7dc4b7
104+
uses: aws-pca-k8s-plugin-ops-admin/helm-gh-pages@12f5926e622ccae035cf5a3bb8d67ae6db7dc4b7
105105
with:
106106
token: ${{ secrets.CR_PAT }}
107107
linting: "off"

.github/workflows/on-safe-to-test-label.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
echo AMI=$AMI >> $GITHUB_ENV
4242
- name: Start EC2 runner
4343
id: start-ec2-runner
44-
uses: divyansh-gupta/ec2-github-runner@0444f5f46462bcf8d98932bc807d2f51c4945b58
44+
uses: aws-pca-k8s-plugin-ops-admin/ec2-github-runner@0444f5f46462bcf8d98932bc807d2f51c4945b58
4545
with:
4646
mode: start
4747
github-token: GithubToken-test-us-east-1
@@ -228,7 +228,7 @@ jobs:
228228
AWS_REGION=us-east-1
229229
echo AWS_REGION=$AWS_REGION >> $GITHUB_ENV
230230
- name: Stop EC2 runner
231-
uses: divyansh-gupta/ec2-github-runner@0444f5f46462bcf8d98932bc807d2f51c4945b58
231+
uses: aws-pca-k8s-plugin-ops-admin/ec2-github-runner@0444f5f46462bcf8d98932bc807d2f51c4945b58
232232
with:
233233
mode: stop
234234
github-token: GithubToken-test-us-east-1

.github/workflows/sync-helm-readme.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@ jobs:
5454
5555
- name: Comment on pull request that the README is updated
5656
if: ${{ github.event_name == 'pull_request_target' && steps.run-helm-docs.outcome == 'success' }}
57-
uses: divyansh-gupta/actions-comment-pull-request@675cdfe1695d33e816e060460a72feafee079d3f
57+
uses: aws-pca-k8s-plugin-ops-admin/actions-comment-pull-request@675cdfe1695d33e816e060460a72feafee079d3f
5858
with:
5959
message: 'Detected changes in charts/aws-pca-issuer/values.yaml. Updated charts/aws-pca-issuer/README.md and added it as commit to this PR for review.'
6060
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6161

6262
- name: Comment on pull request that the README was unable to be updated
6363
if: ${{ github.event_name == 'pull_request_target' && steps.run-helm-docs.outcome == 'failure' }}
64-
uses: divyansh-gupta/actions-comment-pull-request@675cdfe1695d33e816e060460a72feafee079d3f
64+
uses: aws-pca-k8s-plugin-ops-admin/actions-comment-pull-request@675cdfe1695d33e816e060460a72feafee079d3f
6565
with:
6666
message: 'Detected changes in charts/aws-pca-issuer/values.yaml, but was unable to regenerate charts/aws-pca-issuer/README.md. Please update the pull request with README.md changes by running `make helm-docs` manually and adding the changed README.md to the commit.'
6767
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/sync.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
102102
- name: Update pull request with synced CRDs
103103
if: ${{ steps.which-crd-modified.outputs.result != 'both' && !github.event.pull_request.head.repo.fork }}
104-
uses: divyansh-gupta/create-or-update-pull-request-action@65a6b01b19b69d7865fcf484340b06548fc02e64
104+
uses: aws-pca-k8s-plugin-ops-admin/create-or-update-pull-request-action@65a6b01b19b69d7865fcf484340b06548fc02e64
105105
env:
106106
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
107107
with:
@@ -115,14 +115,14 @@ jobs:
115115

116116
- name: Comment on pull request that CRDs were synced
117117
if: ${{ steps.which-crd-modified.outputs.result != 'both' && !github.event.pull_request.head.repo.fork }}
118-
uses: divyansh-gupta/actions-comment-pull-request@675cdfe1695d33e816e060460a72feafee079d3f
118+
uses: aws-pca-k8s-plugin-ops-admin/actions-comment-pull-request@675cdfe1695d33e816e060460a72feafee079d3f
119119
with:
120120
message: 'Detected different CRDs in the `config/crd/bases` directory and `charts/aws-pca-issuer/crds` directory. These CRDs have been synced and the commit has been added to this PR for review.'
121121
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
122122

123123
- name: Comment on pull request that CRDs were unable to be synced
124124
if: ${{ failure() }}
125-
uses: divyansh-gupta/actions-comment-pull-request@675cdfe1695d33e816e060460a72feafee079d3f
125+
uses: aws-pca-k8s-plugin-ops-admin/actions-comment-pull-request@675cdfe1695d33e816e060460a72feafee079d3f
126126
with:
127127
message: |
128128
Detected different CRDs in the `config/crd/bases` directory and `charts/aws-pca-issuer/crds` directory.

.github/workflows/test-plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
if: ${{ contains(github.event.pull_request.labels.*.name, 'safe to test') && !contains(github.event.pull_request.labels.*.name, 'lgtm') && always() }} # required to stop the runner even if the error happened in the previous jobs
2828
steps:
2929
- name: Remove Label
30-
uses: divyansh-gupta/action-remove-labels@2ce5d41b4b6aa8503e285553f75ed56e0a40bae0
30+
uses: aws-pca-k8s-plugin-ops-admin/action-remove-labels@2ce5d41b4b6aa8503e285553f75ed56e0a40bae0
3131
with:
3232
labels:
3333
'safe to test'

0 commit comments

Comments
 (0)