You've already forked wakapi-readme-stats
fix: Update actions URLS
This commit is contained in:
10
.github/workflows/build_image.yml
vendored
10
.github/workflows/build_image.yml
vendored
@@ -14,20 +14,20 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout 🛎️
|
- name: Checkout 🛎️
|
||||||
uses: actions/checkout@v3
|
uses: https://github.com/actions/checkout@v3
|
||||||
|
|
||||||
- name: Set up Docker Buildx 🐋
|
- 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 🚪
|
- name: Log in to the container registry 🚪
|
||||||
uses: docker/login-action@v2
|
uses: https://github.com/docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
username: jofranmtz
|
username: jofranmtz
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Extract metadata (tags, labels) for Docker 🏋️
|
- name: Extract metadata (tags, labels) for Docker 🏋️
|
||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@v4
|
uses: https://github.com/docker/metadata-action@v4
|
||||||
with:
|
with:
|
||||||
images: jofranmtz/wakapi-readme-stats
|
images: jofranmtz/wakapi-readme-stats
|
||||||
tags: |
|
tags: |
|
||||||
@@ -37,7 +37,7 @@ jobs:
|
|||||||
type=semver,pattern={{major}}.{{minor}}
|
type=semver,pattern={{major}}.{{minor}}
|
||||||
|
|
||||||
- name: Build and push Docker image 🏗️
|
- name: Build and push Docker image 🏗️
|
||||||
uses: docker/build-push-action@v4
|
uses: https://github.com/docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
push: ${{ github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/releases') }}
|
push: ${{ github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/releases') }}
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
|
|||||||
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
@@ -15,10 +15,10 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout 🛎️
|
- name: Checkout 🛎️
|
||||||
uses: actions/checkout@v3
|
uses: https://github.com/actions/checkout@v3
|
||||||
|
|
||||||
- name: Setup Python 3.11 🐍
|
- name: Setup Python 3.11 🐍
|
||||||
uses: actions/setup-python@v4
|
uses: https://github.com/actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: 3.11
|
python-version: 3.11
|
||||||
cache: 'pip'
|
cache: 'pip'
|
||||||
@@ -30,7 +30,7 @@ jobs:
|
|||||||
run: mkdir assets
|
run: mkdir assets
|
||||||
|
|
||||||
- name: Create Previous Comments 🫣
|
- name: Create Previous Comments 🫣
|
||||||
uses: int128/hide-comment-action@v1
|
uses: https://github.com/int128/hide-comment-action@v1
|
||||||
with:
|
with:
|
||||||
starts-with: "README stats current output:"
|
starts-with: "README stats current output:"
|
||||||
|
|
||||||
@@ -71,14 +71,14 @@ jobs:
|
|||||||
echo BRANCH_NAME=${BRANCH_NAME} >> $GITHUB_ENV
|
echo BRANCH_NAME=${BRANCH_NAME} >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Upload Artifact 📦
|
- name: Upload Artifact 📦
|
||||||
uses: actions/upload-artifact@v3
|
uses: https://github.com/actions/upload-artifact@v3
|
||||||
if: ${{ github.ref != 'refs/heads/master' }}
|
if: ${{ github.ref != 'refs/heads/master' }}
|
||||||
with:
|
with:
|
||||||
name: ${{ format('github-pages-for-branch-{0}', env.BRANCH_NAME) }}
|
name: ${{ format('github-pages-for-branch-{0}', env.BRANCH_NAME) }}
|
||||||
path: assets
|
path: assets
|
||||||
|
|
||||||
- name: Create Comment 💬
|
- name: Create Comment 💬
|
||||||
uses: jungwinter/comment@v1
|
uses: https://github.com/jungwinter/comment@v1
|
||||||
with:
|
with:
|
||||||
type: create
|
type: create
|
||||||
body: ${{ steps.make-stats.outputs.README_CONTENT }}
|
body: ${{ steps.make-stats.outputs.README_CONTENT }}
|
||||||
|
|||||||
4
.github/workflows/codestyle.yml
vendored
4
.github/workflows/codestyle.yml
vendored
@@ -10,10 +10,10 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout 🛎️
|
- name: Checkout 🛎️
|
||||||
uses: actions/checkout@v3
|
uses: https://github.com/actions/checkout@v3
|
||||||
|
|
||||||
- name: Setup Python 3.11 🐍
|
- name: Setup Python 3.11 🐍
|
||||||
uses: actions/setup-python@v4
|
uses: https://github.com/actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: 3.11
|
python-version: 3.11
|
||||||
|
|
||||||
|
|||||||
4
.github/workflows/dependency-review.yml
vendored
4
.github/workflows/dependency-review.yml
vendored
@@ -11,9 +11,9 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository 🛎️
|
- name: Checkout repository 🛎️
|
||||||
uses: actions/checkout@v3
|
uses: https://github.com/actions/checkout@v3
|
||||||
|
|
||||||
- name: Dependency review 👀
|
- name: Dependency review 👀
|
||||||
uses: actions/dependency-review-action@v3
|
uses: https://github.com/actions/dependency-review-action@v3
|
||||||
with:
|
with:
|
||||||
comment-summary-in-pr: true
|
comment-summary-in-pr: true
|
||||||
|
|||||||
Reference in New Issue
Block a user