diff --git a/.github/workflows/build-and-push-services.yml b/.github/workflows/build-and-push-services.yml index 8bb5bd4..7f58064 100644 --- a/.github/workflows/build-and-push-services.yml +++ b/.github/workflows/build-and-push-services.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3.3.0 + uses: actions/checkout@v3.5.3 - name: Parse Ref id: ref @@ -90,7 +90,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3.3.0 + uses: actions/checkout@v3.5.3 - name: Set up QEMU uses: docker/setup-qemu-action@v2.1.0 @@ -109,7 +109,7 @@ jobs: - name: Cache docker layers if: ${{ !env.ACT }} # Awaiting ACT version after 0.2.17 for this feature - uses: actions/cache@v3.2.5 + uses: actions/cache@v3.3.1 id: cache with: path: /tmp/.buildx-cache @@ -164,21 +164,21 @@ jobs: - name: Login to DockerHub if: ${{ env.DOCKERHUB_PUSH && github.event_name != 'pull_request' }} - uses: docker/login-action@v2.1.0 + uses: docker/login-action@v2.2.0 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Login to GitHub Container Registry if: github.event_name != 'pull_request' - uses: docker/login-action@v2.1.0 + uses: docker/login-action@v2.2.0 with: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push images - uses: docker/build-push-action@v4.0.0 + uses: docker/build-push-action@v4.1.1 with: context: ${{ matrix.context }} file: ${{ matrix.context }}/Dockerfile @@ -235,7 +235,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3.3.0 + uses: actions/checkout@v3.5.3 - name: Find Docker tag for Snyk id: tag diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index dce5d2a..a410720 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -35,7 +35,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3.3.0 + uses: actions/checkout@v3.5.3 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL