Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint-on-push-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6.0.3
uses: actions/checkout@v7.0.0

- name: Set up Python
uses: actions/setup-python@v6.2.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-pypi-on-new-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
TAG="${{ github.event.release.tag_name }}"
PROJECT="${TAG%-*}"
echo "PROJECT=$PROJECT" >> $GITHUB_ENV
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
- uses: actions/setup-python@v6.2.0
with:
python-version: 3.x
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
steps:

- name: Checkout adamlui/python-utils
uses: actions/checkout@v6.0.3
uses: actions/checkout@v7.0.0
with:
token: ${{ secrets.REPO_SYNC_PAT }}
path: adamlui/python-utils

- name: Checkout KudoAI/ai-personas
uses: actions/checkout@v6.0.3
uses: actions/checkout@v7.0.0
with:
token: ${{ secrets.REPO_SYNC_PAT }}
repository: KudoAI/ai-personas
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sync-ai-personas.json-changes-to-repos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,20 @@ jobs:
steps:

- name: Checkout adamlui/python-utils
uses: actions/checkout@v6.0.3
uses: actions/checkout@v7.0.0
with:
token: ${{ secrets.REPO_SYNC_PAT }}
path: adamlui/python-utils

- name: Checkout KudoAI/ai-personas
uses: actions/checkout@v6.0.3
uses: actions/checkout@v7.0.0
with:
token: ${{ secrets.REPO_SYNC_PAT }}
repository: KudoAI/ai-personas
path: KudoAI/ai-personas

- name: Checkout adamlui/js-utils
uses: actions/checkout@v6.0.3
uses: actions/checkout@v7.0.0
with:
token: ${{ secrets.REPO_SYNC_PAT }}
repository: adamlui/js-utils
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-changes-to-gitlab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:

- name: Checkout adamlui/python-utils
uses: actions/checkout@v6.0.3
uses: actions/checkout@v7.0.0
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sync-dataset-json-changes-to-js-utils.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ jobs:

steps:
- name: Checkout adamlui/python-utils
uses: actions/checkout@v6.0.3
uses: actions/checkout@v7.0.0
with:
token: ${{ secrets.REPO_SYNC_PAT }}
path: adamlui/python-utils
fetch-depth: 2

- name: Checkout adamlui/js-utils
uses: actions/checkout@v6.0.3
uses: actions/checkout@v7.0.0
with:
token: ${{ secrets.REPO_SYNC_PAT }}
repository: adamlui/js-utils
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-root-downloads-shield-weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:

- name: Checkout adamlui/python-utils
uses: actions/checkout@v6.0.3
uses: actions/checkout@v7.0.0
with:
token: ${{ secrets.REPO_SYNC_PAT }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-links-on-push-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
if: ${{ github.event.head_commit.author.name != 'kudo-sync-bot' }} # skip auto bump commits containing future links
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
- uses: JustinBeckwith/linkinator-action@v2.4.2
with:
paths: '**/*.md'
Expand Down
Loading