Skip to content

Commit

Permalink
chore: update Github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
emrahcom committed Mar 14, 2024
1 parent dc321c5 commit 8f5c945
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Custom metadata
run: |
echo "BUILD_DATE=$(date +'%Y%m%d')" >> $GITHUB_ENV
- name: Metadata
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
id: meta
with:
images: |
Expand All @@ -40,7 +40,7 @@ jobs:
type=raw,value=v${{ env.BUILD_DATE }}
- name: Login
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.repository_owner }}
Expand All @@ -51,7 +51,7 @@ jobs:

- name: Build and push
id: build_and_push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
push: true
Expand All @@ -62,4 +62,4 @@ jobs:
env:
DOCKER_IMAGE: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
DIGEST: ${{ steps.build_and_push.outputs.digest }}
run: cosign sign --yes "${DOCKER_IMAGE}@${DIGEST}"
run: cosign sign --yes "${DOCKER_IMAGE}@${DIGEST}"
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM denoland/deno
LABEL version="v20240226"
LABEL version="v20240314"

WORKDIR /app

Expand Down

0 comments on commit 8f5c945

Please sign in to comment.