diff --git a/.github/workflows/build-and-push.yml b/.github/workflows/build-and-push.yml index 13ff034..7088a95 100644 --- a/.github/workflows/build-and-push.yml +++ b/.github/workflows/build-and-push.yml @@ -26,7 +26,7 @@ jobs: arch: arm64 steps: - name: Checkout the repo - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 - name: Login to DockerHub uses: docker/login-action@v4 diff --git a/.github/workflows/dive.yml b/.github/workflows/dive.yml index fea47d0..2c547f6 100644 --- a/.github/workflows/dive.yml +++ b/.github/workflows/dive.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout code - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 - name: Build an image from Dockerfile run: | diff --git a/.github/workflows/structure-test.yml b/.github/workflows/structure-test.yml index 6a32692..709ad1c 100644 --- a/.github/workflows/structure-test.yml +++ b/.github/workflows/structure-test.yml @@ -15,14 +15,14 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout the repo - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 - name: Build an image from Dockerfile run: | docker image build --tag ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }} . - name: Run container structure tests - uses: plexsystems/container-structure-test-action@v0.1.0 + uses: plexsystems/container-structure-test-action@v0.3.0 with: image: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }} config: tests.yaml diff --git a/.github/workflows/trivy.yml b/.github/workflows/trivy.yml index b41ee89..be6b4b0 100644 --- a/.github/workflows/trivy.yml +++ b/.github/workflows/trivy.yml @@ -24,14 +24,14 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout code - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 - name: Build an image from Dockerfile run: | docker image build --tag ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }} . - name: Run Trivy vulnerability scanner (sarif report) - uses: aquasecurity/trivy-action@0.35.0 + uses: aquasecurity/trivy-action@v0.36.0 with: format: 'sarif' image-ref: '${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }}'