Skip to content
Open
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
12 changes: 6 additions & 6 deletions .github/workflows/build-workspace-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,20 +74,20 @@ jobs:
# Checkout
# -------------------------------------------------------------------
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
with:
fetch-depth: 0

# -------------------------------------------------------------------
# Python + uv (for build-provider.py staging)
# -------------------------------------------------------------------
- name: Install uv
uses: astral-sh/setup-uv@f0ec1fc3b38f5e7cd731bb6ce540c5af426746bb # v6
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v6
with:
enable-cache: true

- name: Set up Python
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: "3.12"

Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
# -------------------------------------------------------------------
- name: Log in to GHCR
if: steps.version.outputs.should_push == 'true'
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:
# -------------------------------------------------------------------
- name: Build and push image
id: push
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7
with:
context: build/${{ matrix.provider }}
file: build/${{ matrix.provider }}/Dockerfile
Expand All @@ -201,7 +201,7 @@ jobs:
# -------------------------------------------------------------------
- name: Install cosign
if: steps.version.outputs.should_push == 'true'
uses: sigstore/cosign-installer@cad07c2e89fa2edd6e2d7bab4c1aa38e53f76003 # v4.1.1
uses: sigstore/cosign-installer@6f9f17788090df1f26f669e9d70d6ae9567deba6 # v4.1.2

- name: Sign image with cosign
if: steps.version.outputs.should_push == 'true'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/claude-cli-version-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
check-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2

- name: Get pinned version from Dockerfile
id: pinned
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:

- name: Open issue if version changed
if: steps.pinned.outputs.version != steps.latest.outputs.version
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const pinned = '${{ steps.pinned.outputs.version }}';
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/plugin-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Tag Plugin Versions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2
with:
fetch-depth: 2

Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,16 @@ jobs:


steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2

- name: Setup UV
uses: astral-sh/setup-uv@v7
uses: astral-sh/setup-uv@v8.1.0
with:
enable-cache: true
cache-dependency-glob: "${{ matrix.package.path }}/uv.lock"

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v6.2.0
with:
python-version: ${{ matrix.package.python }}

Expand Down Expand Up @@ -79,15 +79,15 @@ jobs:
name: Python Hooks & Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2

- name: Setup UV
uses: astral-sh/setup-uv@v7
uses: astral-sh/setup-uv@v8.1.0
with:
enable-cache: true

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v6.2.0
with:
python-version: "3.12"

Expand All @@ -107,16 +107,16 @@ jobs:
name: Consumer Contract Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2

- name: Setup UV
uses: astral-sh/setup-uv@v7
uses: astral-sh/setup-uv@v8.1.0
with:
enable-cache: true
cache-dependency-glob: "tests/consumer_contracts/uv.lock"

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v6.2.0
with:
python-version: "3.12"

Expand All @@ -136,10 +136,10 @@ jobs:
name: Plugin Validation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v6.2.0
with:
python-version: "3.12"

Expand Down Expand Up @@ -350,7 +350,7 @@ jobs:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2
with:
fetch-depth: 0

Expand Down