Skip to content

Commit 40764cd

Browse files
Revert to default action
1 parent eeea1e0 commit 40764cd

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/docker-publish.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name: Docker
77

88
on:
99
schedule:
10-
- cron: '17 9 * * *'
10+
- cron: '40 16 * * *'
1111
push:
1212
branches: [ "main" ]
1313
# Publish semver tags as releases.
@@ -35,27 +35,27 @@ jobs:
3535

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v3
3939

4040
# Install the cosign tool except on PR
4141
# https://github.com/sigstore/cosign-installer
4242
- name: Install cosign
4343
if: github.event_name != 'pull_request'
44-
uses: sigstore/cosign-installer@e1523de7571e31dbe865fd2e80c5c7c23ae71eb4 # v3.4.0
44+
uses: sigstore/cosign-installer@6e04d228eb30da1757ee4e1dd75a0ec73a653e06 #v3.1.1
4545
with:
4646
cosign-release: 'v2.1.1'
4747

4848
# Set up BuildKit Docker container builder to be able to build
4949
# multi-platform images and export cache
5050
# https://github.com/docker/setup-buildx-action
5151
- name: Set up Docker Buildx
52-
uses: docker/setup-buildx-action@2b51285047da1547ffb1b2203d8be4c0af6b1f20 # v3.2.0
52+
uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0
5353

5454
# Login against a Docker registry except on PR
5555
# https://github.com/docker/login-action
5656
- name: Log into registry ${{ env.REGISTRY }}
5757
if: github.event_name != 'pull_request'
58-
uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3.1.0
58+
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0
5959
with:
6060
registry: ${{ env.REGISTRY }}
6161
username: ${{ github.actor }}
@@ -65,15 +65,15 @@ jobs:
6565
# https://github.com/docker/metadata-action
6666
- name: Extract Docker metadata
6767
id: meta
68-
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1
68+
uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5.0.0
6969
with:
7070
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
7171

7272
# Build and push Docker image with Buildx (don't push on PR)
7373
# https://github.com/docker/build-push-action
7474
- name: Build and push Docker image
7575
id: build-and-push
76-
uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v5.3.0
76+
uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0
7777
with:
7878
context: .
7979
push: ${{ github.event_name != 'pull_request' }}
@@ -96,3 +96,4 @@ jobs:
9696
# This step uses the identity token to provision an ephemeral certificate
9797
# against the sigstore community Fulcio instance.
9898
run: echo "${TAGS}" | xargs -I {} cosign sign --yes {}@${DIGEST}
99+

0 commit comments

Comments
 (0)