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/framework-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
# fails fast instead of sitting until that default kicks in.
timeout-minutes: 15
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version: 'stable'
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
echo "ref=$ref" >> "$GITHUB_OUTPUT"

- name: Check out docs-theme-extras at module pin
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
repository: solo-io/docs-theme-extras
ref: ${{ steps.theme-sha.outputs.ref }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ jobs:
PRODUCT_NAME: kagent OSS
ISSUE_TITLE: Link Checker Report - kagent OSS
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
fetch-depth: 100

- name: Checkout shared link-checking scripts
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
repository: solo-io/docs-link-checking
path: docs-link-checking
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/playwright-screenshots.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the website
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
path: website

# The mock backend is a service worker the released image does not ship, so the
# capture needs the UI source, not a published image.
- name: Check out kagent (for the UI source)
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
repository: ${{ github.repository_owner }}/kagent
path: kagent
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the website
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
path: website

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/production.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v7
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/update-ref-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -216,21 +216,21 @@ jobs:
# Both checkouts are pinned to a release tag. Checking out main here is
# what let the reference describe unreleased code; see the header comment.
- name: Checkout kagent repository
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
repository: ${{ github.repository_owner }}/kagent
ref: ${{ needs.resolve.outputs.kagent_tag }}
path: kagent

- name: Checkout kmcp repository
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
repository: ${{ github.repository_owner }}/kmcp
ref: ${{ needs.resolve.outputs.kmcp_tag }}
path: kmcp

- name: Checkout docs repository
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
repository: ${{ github.repository_owner }}/website
path: website
Expand Down
Loading