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_baseline_plugin_sync.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
# https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v5
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
container:
image: "redhat/ubi8:latest"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install Python3 and pyinstaller deps
run: dnf --assumeyes install python3.12 python3.12-pip binutils zip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/grammar-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
grammar-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
# Required to grab the full history for proper pre-commit checks
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag_and_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-tags: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- os: windows-11-arm
python-version: "3.9"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v5
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_build_baseline_plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
# https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v5
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
container:
image: "redhat/ubi8:latest"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install Python3 and pyinstaller deps
run: dnf --assumeyes install python3.12 python3.12-pip binutils zip
Expand Down
Loading