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
4 changes: 2 additions & 2 deletions .github/actions/generate-tox-ansible-matrix/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ runs:
# https://github.com/actions/runner/issues/1070
- name: Fail early if no scope was provided for matrix generation
if: ${{ inputs.scope == '' }}
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
core.setFailed('A scope needs to be provided to generate matrix.')

- name: Install the latest version of uv
uses: astral-sh/setup-uv@v7
uses: astral-sh/setup-uv@v8.1.0
with:
version: "latest"

Expand Down
2 changes: 1 addition & 1 deletion .github/actions/run-sanity/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ runs:
# https://github.com/actions/runner/issues/1070
- name: Fail early if no scope was provided for matrix generation
if: ${{ inputs.test-env == '' }}
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
core.setFailed('The input test-env (e.g., unit-py3.9-2.14) is required for this action to run.')
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/run-unit-galaxy/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ runs:
# https://github.com/actions/runner/issues/1070
- name: Fail early if no scope was provided for matrix generation
if: ${{ inputs.test-env == '' }}
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
core.setFailed('The input test-env (e.g., unit-py3.9-2.14) is required for this action to run.')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ee-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ jobs:
uses: actions/download-artifact@v8

- name: Post Comment
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const fs = require('fs');
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repos:

- repo: https://github.com/rbubley/mirrors-prettier
# keep it before yamllint
rev: v3.8.1
rev: v3.8.3
hooks:
- id: prettier
always_run: true
Expand Down
Loading