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
4 changes: 2 additions & 2 deletions .github/workflows/build-deploy-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ jobs:
steps:
# Checkout the repository
- name: Check out repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # 6.0.2

- name: Install poetry
run: pipx install poetry

# Set up Python
- name: Set up Python
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # 6.1.0
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # 6.2.0
with:
python-version: '3.10'
cache: poetry
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # 6.0.2

- name: Install poetry
run: pipx install poetry

- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # 6.1.0
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # 6.2.0
with:
python-version: "3.13"
cache: poetry
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sync-docs-to-kitops.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
owner: kitops-ml

- name: Checkout pykitops repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 ## v6.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd ## v6.0.2

- name: Checkout KitOps repository to subdirectory
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 ## v6.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd ## v6.0.2
with:
token: ${{ steps.generate-token.outputs.token }}
repository: kitops-ml/kitops
Expand All @@ -46,7 +46,7 @@ jobs:
echo "sha=${SHA:0:10}" >> $GITHUB_OUTPUT

- name: Open PR in KitOps repo with docs changes
uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 ## v8.0.0
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 ## v8.1.0
with:
path: ${{ env.KITOPS_PATH }}
token: ${{ steps.generate-token.outputs.token }}
Expand Down