diff options
Diffstat (limited to '.github/workflows/docker.yml')
-rw-r--r-- | .github/workflows/docker.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index b1448a0de..d98903073 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -43,7 +43,7 @@ jobs: - name: Check source files id: check-source-files if: github.event_name != 'workflow_dispatch' - uses: tj-actions/changed-files@v44 + uses: tj-actions/changed-files@v45 with: since_last_remote_commit: ${{ github.event_name != 'pull_request' }} files: | @@ -63,7 +63,7 @@ jobs: - name: Check build system files id: check-build-files if: github.event_name != 'workflow_dispatch' - uses: tj-actions/changed-files@v44 + uses: tj-actions/changed-files@v45 with: since_last_remote_commit: ${{ github.event_name != 'pull_request' }} files: | @@ -178,7 +178,7 @@ jobs: - name: Upload Cache id: upload-cache if: github.repository == 'netdata/netdata' && needs.file-check.outputs.run == 'true' && github.event_name == 'workflow_dispatch' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.2 with: name: cache-${{ steps.artifact-name.outputs.platform }} path: /tmp/build-cache/* @@ -296,7 +296,7 @@ jobs: - name: Upload digest id: upload-digest if: github.repository == 'netdata/netdata' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.2 with: name: docker-digests-${{ steps.artifact-name.outputs.platform }} path: /tmp/digests/* @@ -451,7 +451,7 @@ jobs: - name: Upload digest id: upload-digest if: github.repository == 'netdata/netdata' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.2 with: name: quay-digests-${{ steps.artifact-name.outputs.platform }} path: /tmp/digests/* @@ -607,7 +607,7 @@ jobs: - name: Upload digest id: upload-digest if: github.repository == 'netdata/netdata' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.2 with: name: ghcr-digests-${{ steps.artifact-name.outputs.platform }} path: /tmp/digests/* |