From 358a3f43f08fb93bb2c91d190138d9642d4d556d Mon Sep 17 00:00:00 2001 From: iadgovuser26 <33069955+iadgovuser26@users.noreply.github.com> Date: Tue, 12 Apr 2022 17:51:13 -0400 Subject: [PATCH] added docker/login-action --- .github/workflows/system_test.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/system_test.yml b/.github/workflows/system_test.yml index fc9499e4..68694067 100644 --- a/.github/workflows/system_test.yml +++ b/.github/workflows/system_test.yml @@ -19,11 +19,16 @@ jobs: - name: Set up JDK 8 uses: actions/setup-java@v2 with: - github-token: ${{ secrets.GITHUB_TOKEN }} java-version: '8' distribution: 'adopt' server-id: github # Value of the distributionManagement/repository/id field of the pom.xml settings-path: ${{ github.workspace }} # location for the settings.xml file + - name: Login to the Github Container Registry + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} - name: ACA TPM2 Tests continue-on-error: true shell: bash