Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5.0.0
uses: actions/checkout@v6.0.0

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v5.0.0
uses: actions/checkout@v6.0.0
with:
submodules: "true"
- name: Install dependencies
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
runs-on: macos-latest-xlarge
steps:
- name: Checkout
uses: actions/checkout@v5.0.0
uses: actions/checkout@v6.0.0
with:
submodules: "true"
- name: Install dependencies
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
container: python:latest
steps:
- name: Checkout
uses: actions/checkout@v5.0.0
uses: actions/checkout@v6.0.0
with:
submodules: "true"
- name: Install deps
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
run: |
apk add git
- name: Checkout
uses: actions/checkout@v5.0.0
uses: actions/checkout@v6.0.0
with:
submodules: "true"
- name: Upload coverage to Codecov (should fail due to missing dependencies)
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
run: |
apk add git curl gnupg bash
- name: Checkout
uses: actions/checkout@v5.0.0
uses: actions/checkout@v6.0.0
with:
submodules: "true"
- name: Upload coverage to Codecov (should succeed)
Expand Down Expand Up @@ -212,7 +212,7 @@ jobs:
run: |
apk add git curl
- name: Checkout
uses: actions/checkout@v5.0.0
uses: actions/checkout@v6.0.0
with:
submodules: "true"
- name: Upload coverage to Codecov (should fail due to missing gpg and bash)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecards-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: "Checkout code"
uses: actions/checkout@v5.0.0 # v3.0.0
uses: actions/checkout@v6.0.0 # v3.0.0
with:
persist-credentials: false

Expand Down
Loading