fix: Update actions URLS

This commit is contained in:
2024-11-03 19:54:58 -05:00
parent f17e5ade05
commit 70f50d4e0a
4 changed files with 14 additions and 14 deletions

View File

@@ -14,20 +14,20 @@ jobs:
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
uses: https://github.com/actions/checkout@v3
- name: Set up Docker Buildx 🐋
uses: docker/setup-buildx-action@v2
uses: https://github.com/docker/setup-buildx-action@v2
- name: Log in to the container registry 🚪
uses: docker/login-action@v2
uses: https://github.com/docker/login-action@v2
with:
username: jofranmtz
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker 🏋️
id: meta
uses: docker/metadata-action@v4
uses: https://github.com/docker/metadata-action@v4
with:
images: jofranmtz/wakapi-readme-stats
tags: |
@@ -37,7 +37,7 @@ jobs:
type=semver,pattern={{major}}.{{minor}}
- name: Build and push Docker image 🏗️
uses: docker/build-push-action@v4
uses: https://github.com/docker/build-push-action@v4
with:
push: ${{ github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/releases') }}
tags: ${{ steps.meta.outputs.tags }}