Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

Commit

Permalink
fix: change action to use inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
corang committed Nov 29, 2023
1 parent 1a88dbd commit 5bee879
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/actions/e2e/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ runs:
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
password: ${{ inputs.GITHUB_TOKEN }}

- name: Login to registry1
uses: docker/login-action@v2
with:
registry: registry1.dso.mil
username: ${{ secrets.REGISTRY1_USERNAME }}
password: ${{ secrets.REGISTRY1_PASSWORD }}
username: ${{ inputs.REGISTRY1_USERNAME }}
password: ${{ inputs.REGISTRY1_PASSWORD }}

- name: Install homebrew
uses: Homebrew/actions/setup-homebrew@master
Expand All @@ -64,7 +64,7 @@ runs:
uses: defenseunicorns/uds-aws-ci-k3d@swf_additions
with:
cluster-action: create
aws-assume-role: ${{ secrets.AWS_COMMERCIAL_ROLE_TO_ASSUME }}
aws-assume-role: ${{ inputs.AWS_COMMERCIAL_ROLE_TO_ASSUME }}
aws-region: us-west-2
instance-size: "m7a.8xlarge"
ami-prefix: "rc-uds-ci-k3d"
Expand Down

0 comments on commit 5bee879

Please sign in to comment.