Skip to content

Commit f54f7ef

Browse files
Update actions/checkout action to v6
1 parent d88d3c0 commit f54f7ef

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
steps:
3838
- name: Checkout
39-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
39+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
4040

4141
- name: Initialize CodeQL
4242
uses: github/codeql-action/init@v4

.github/workflows/docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
name: "Build Docker images"
2121
runs-on: ubuntu-24.04
2222
steps:
23-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
23+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
2424

2525
- name: Set up Docker Buildx
2626
uses: docker/setup-buildx-action@v3

.github/workflows/gitleaks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
name: gitleaks
2222
runs-on: ubuntu-24.04
2323
steps:
24-
- uses: actions/checkout@v5
24+
- uses: actions/checkout@v6
2525
with:
2626
fetch-depth: 0
2727
- uses: gitleaks/gitleaks-action@bf2dc8e55639c1e091e9b45970152e4313705814

.github/workflows/markdown-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-24.04
1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
20+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
2121

2222
- name: Set up Node.js
2323
uses: actions/setup-node@v6

.github/workflows/prettier-json.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: 'Prettier JSON Lint'
1515
runs-on: ['ubuntu-24.04']
1616
steps:
17-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
17+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
1818

1919
- name: Set up Node.js
2020
uses: actions/setup-node@v6

.github/workflows/python-coverage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
python: ["3.14"]
2323
runs-on: ${{ matrix.os }}
2424
steps:
25-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
25+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
2626
with:
2727
# Shallow clones should be disabled for a better relevancy of analysis
2828
fetch-depth: 0
@@ -68,7 +68,7 @@ jobs:
6868

6969
steps:
7070
- name: Checkout repository
71-
uses: actions/checkout@v5
71+
uses: actions/checkout@v6
7272
with:
7373
fetch-depth: 0
7474
- name: Download coverage artifact
@@ -90,7 +90,7 @@ jobs:
9090

9191
steps:
9292
- name: Checkout repository
93-
uses: actions/checkout@v5
93+
uses: actions/checkout@v6
9494
with:
9595
fetch-depth: 0
9696

.github/workflows/python-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
python: ['3.12', '3.13', '3.14']
2020
runs-on: ${{ matrix.os }}
2121
steps:
22-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
22+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
2323

2424
- name: Setup Python
2525
uses: actions/setup-python@master

.github/workflows/python-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
python: ['3.12', '3.13', '3.14']
2323
runs-on: ${{ matrix.os }}
2424
steps:
25-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
25+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
2626

2727
- name: Setup Python
2828
uses: actions/setup-python@master

.github/workflows/yamllint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-24.04
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
18+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
1919

2020
- name: Install yamllint
2121
run: pip install yamllint

0 commit comments

Comments
 (0)