From 70f50d4e0a7166185985f5100ab5ea1d3e888201 Mon Sep 17 00:00:00 2001 From: Fran Date: Sun, 3 Nov 2024 19:54:58 -0500 Subject: [PATCH] fix: Update actions URLS --- .github/workflows/build_image.yml | 10 +++++----- .github/workflows/ci.yml | 10 +++++----- .github/workflows/codestyle.yml | 4 ++-- .github/workflows/dependency-review.yml | 4 ++-- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/build_image.yml b/.github/workflows/build_image.yml index 042343f..0eafaf7 100644 --- a/.github/workflows/build_image.yml +++ b/.github/workflows/build_image.yml @@ -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 }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3259387..4d31243 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,10 +15,10 @@ jobs: steps: - name: Checkout 🛎️ - uses: actions/checkout@v3 + uses: https://github.com/actions/checkout@v3 - name: Setup Python 3.11 🐍 - uses: actions/setup-python@v4 + uses: https://github.com/actions/setup-python@v4 with: python-version: 3.11 cache: 'pip' @@ -30,7 +30,7 @@ jobs: run: mkdir assets - name: Create Previous Comments 🫣 - uses: int128/hide-comment-action@v1 + uses: https://github.com/int128/hide-comment-action@v1 with: starts-with: "README stats current output:" @@ -71,14 +71,14 @@ jobs: echo BRANCH_NAME=${BRANCH_NAME} >> $GITHUB_ENV - name: Upload Artifact 📦 - uses: actions/upload-artifact@v3 + uses: https://github.com/actions/upload-artifact@v3 if: ${{ github.ref != 'refs/heads/master' }} with: name: ${{ format('github-pages-for-branch-{0}', env.BRANCH_NAME) }} path: assets - name: Create Comment 💬 - uses: jungwinter/comment@v1 + uses: https://github.com/jungwinter/comment@v1 with: type: create body: ${{ steps.make-stats.outputs.README_CONTENT }} diff --git a/.github/workflows/codestyle.yml b/.github/workflows/codestyle.yml index c2b5d18..b5b5abe 100644 --- a/.github/workflows/codestyle.yml +++ b/.github/workflows/codestyle.yml @@ -10,10 +10,10 @@ jobs: steps: - name: Checkout 🛎️ - uses: actions/checkout@v3 + uses: https://github.com/actions/checkout@v3 - name: Setup Python 3.11 🐍 - uses: actions/setup-python@v4 + uses: https://github.com/actions/setup-python@v4 with: python-version: 3.11 diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml index 6a26cd5..e22a6ca 100644 --- a/.github/workflows/dependency-review.yml +++ b/.github/workflows/dependency-review.yml @@ -11,9 +11,9 @@ jobs: steps: - name: Checkout repository 🛎️ - uses: actions/checkout@v3 + uses: https://github.com/actions/checkout@v3 - name: Dependency review 👀 - uses: actions/dependency-review-action@v3 + uses: https://github.com/actions/dependency-review-action@v3 with: comment-summary-in-pr: true