From af2c8671825478452fceec09dda6e2b5635525e9 Mon Sep 17 00:00:00 2001 From: Alexandra Bara Date: Mon, 6 Jul 2026 14:55:12 -0500 Subject: [PATCH] update for github runners --- .github/workflows/code_quality_checks.yml | 2 +- .github/workflows/functional-test.yml | 2 +- .github/workflows/release-trusted-publisher.yml | 4 ++-- .github/workflows/unit-test.yml | 2 +- .github/workflows/update-plugin-docs.yml | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/code_quality_checks.yml b/.github/workflows/code_quality_checks.yml index 2408a8ce..7a51a639 100644 --- a/.github/workflows/code_quality_checks.yml +++ b/.github/workflows/code_quality_checks.yml @@ -14,7 +14,7 @@ jobs: container: python:3.9 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 # Fetch all history for pre-commit to work diff --git a/.github/workflows/functional-test.yml b/.github/workflows/functional-test.yml index 2c6618b5..a0c6fb59 100644 --- a/.github/workflows/functional-test.yml +++ b/.github/workflows/functional-test.yml @@ -15,7 +15,7 @@ jobs: container: python:3.9 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install xmllint run: | diff --git a/.github/workflows/release-trusted-publisher.yml b/.github/workflows/release-trusted-publisher.yml index 55267d48..e2a29680 100644 --- a/.github/workflows/release-trusted-publisher.yml +++ b/.github/workflows/release-trusted-publisher.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 # Fetch all history and tags token: ${{ secrets.GITHUB_TOKEN }} @@ -34,7 +34,7 @@ jobs: git fetch --tags --force - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.9' diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index fe6dc9c2..1ea0f6e7 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -15,7 +15,7 @@ jobs: container: python:3.9 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install xmllint run: | diff --git a/.github/workflows/update-plugin-docs.yml b/.github/workflows/update-plugin-docs.yml index 97c1e48a..bc263c0a 100644 --- a/.github/workflows/update-plugin-docs.yml +++ b/.github/workflows/update-plugin-docs.yml @@ -26,7 +26,7 @@ jobs: export HOME=/tmp/github-actions-home - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: token: ${{ secrets.GITHUB_TOKEN }} @@ -53,7 +53,7 @@ jobs: pre-commit run --files docs/PLUGIN_DOC.md README.md || true - name: Create Pull Request - uses: peter-evans/create-pull-request@v6 + uses: peter-evans/create-pull-request@v8 with: token: ${{ secrets.GITHUB_TOKEN }} commit-message: "docs: Update plugin documentation [automated]"