From 94dfacc37fdc61d6bb791ad62ee9829318be4b25 Mon Sep 17 00:00:00 2001 From: Stephen Mulrennan Date: Tue, 30 Jul 2024 12:46:43 +0100 Subject: [PATCH] Container registry. --- .github/workflows/validate.yaml | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/.github/workflows/validate.yaml b/.github/workflows/validate.yaml index 40f110f..fc5b86e 100644 --- a/.github/workflows/validate.yaml +++ b/.github/workflows/validate.yaml @@ -6,15 +6,21 @@ on: - '*' - '!main' +env: + REGISTRY: ghcr.io + IMAGE_NAME: ${{ github.repository }} + permissions: contents: read + packages: write checks: write + id-token: write jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install modules run: npm ci - name: eslint @@ -24,7 +30,14 @@ jobs: needs: [ lint ] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + - name: Log in to the Container registry + uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Build local scanner action image run: | docker build . @@ -33,7 +46,7 @@ jobs: runs-on: ubuntu-latest needs: [ build-action-docker-image ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses : ./ name: Run action against repoository with: