From 5bee8798e9c9795e284fb0622bdde6bf33989545 Mon Sep 17 00:00:00 2001 From: Jordan McClintock Date: Wed, 29 Nov 2023 20:05:06 +0000 Subject: [PATCH] fix: change action to use inputs --- .github/actions/e2e/action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/e2e/action.yml b/.github/actions/e2e/action.yml index 8ec02e3..77c4585 100644 --- a/.github/actions/e2e/action.yml +++ b/.github/actions/e2e/action.yml @@ -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 @@ -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"