diff --git a/.github/workflows/images-releases.yaml b/.github/workflows/images-releases.yaml index 6a8a42a97..7e1df5485 100644 --- a/.github/workflows/images-releases.yaml +++ b/.github/workflows/images-releases.yaml @@ -24,7 +24,7 @@ jobs: steps: - name: Set up Docker Buildx - uses: docker/setup-buildx-action@f7ce87c1d6bead3e36075b2ce75da1f6cc28aaca + uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 - name: Login to DockerHub uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 @@ -48,7 +48,7 @@ jobs: uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Release Build ${{ matrix.name }} - uses: docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991 + uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 id: docker_build_release with: context: ${{ matrix.context }} @@ -77,7 +77,7 @@ jobs: # Upload artifact digests - name: Upload artifact digests - uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 + uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 with: name: image-digest ${{ matrix.name }} path: image-digest @@ -99,7 +99,7 @@ jobs: mkdir -p image-digest/ - name: Download digests of all images built - uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 + uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 with: path: image-digest/ @@ -123,7 +123,7 @@ jobs: # Upload artifact digests - name: Upload artifact digests - uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 + uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 with: name: image-digest-output.txt-${{ steps.tag.outputs.tag }} path: image-digest-output.txt @@ -131,7 +131,7 @@ jobs: # Upload artifact digests - name: Upload artifact digests - uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 + uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 with: name: Makefile.digests-${{ steps.tag.outputs.tag }} path: Makefile.digests diff --git a/.github/workflows/images.yaml b/.github/workflows/images.yaml index f6721ba68..908834758 100644 --- a/.github/workflows/images.yaml +++ b/.github/workflows/images.yaml @@ -27,7 +27,7 @@ jobs: steps: - name: Set up Docker Buildx - uses: docker/setup-buildx-action@f7ce87c1d6bead3e36075b2ce75da1f6cc28aaca + uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 - name: Login to quay.io for CI uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 @@ -53,7 +53,7 @@ jobs: # master branch pushes - name: CI Build ${{ matrix.name }} if: ${{ github.event_name != 'pull_request_target' }} - uses: docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991 + uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 id: docker_build_ci_master with: context: ${{ matrix.context }} @@ -77,7 +77,7 @@ jobs: # PR updates - name: CI Build ${{ matrix.name }} if: ${{ github.event_name == 'pull_request_target' }} - uses: docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991 + uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 id: docker_build_ci_pr with: context: ${{ matrix.context }} @@ -104,7 +104,7 @@ jobs: # Upload artifact digests - name: Upload artifact digests - uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 + uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 with: name: image-digest ${{ matrix.name }} path: image-digest @@ -122,7 +122,7 @@ jobs: mkdir -p image-digest/ - name: Download digests of all images built - uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 + uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 with: path: image-digest/ diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8f298b504..16924afb8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -39,7 +39,7 @@ jobs: go mod verify test -z "$(git status --porcelain)" || (echo "please run 'go mod tidy && go mod vendor', and submit your changes"; exit 1) - name: Run Go static checks - uses: golangci/golangci-lint-action@051d91933864810ecd5e2ea2cfd98f6a5bca5347 + uses: golangci/golangci-lint-action@2226d7cb06a077cd73e56eedd38eecad18e5d837 with: working-directory: ./backend version: v1.63.4