Skip to content

Commit 51abffd

Browse files
chore(deps): update actions/checkout action to v6
1 parent 3fbb614 commit 51abffd

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/build_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
python-version: ["3.10", "3.11"]
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2020
- name: Setup Python
2121
uses: actions/setup-python@v5
2222
with:

.github/workflows/license_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
license_tests:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616
- name: Setup Python
1717
uses: actions/setup-python@v5
1818
with:

.github/workflows/publish_stable.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
if: success() # Ensure this job only runs if the previous job succeeds
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v6
2323
with:
2424
ref: master
2525
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
@@ -47,7 +47,7 @@ jobs:
4747
if: success() # Ensure this job only runs if the previous job succeeds
4848
runs-on: ubuntu-latest
4949
steps:
50-
- uses: actions/checkout@v4
50+
- uses: actions/checkout@v6
5151
with:
5252
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
5353
ref: master

.github/workflows/release_workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
needs: publish_alpha
2525
runs-on: ubuntu-latest
2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v6
2828
- name: Send message to Matrix bots channel
2929
id: matrix-chat-message
3030
uses: fadenb/matrix-chat-message@v0.0.6
@@ -41,7 +41,7 @@ jobs:
4141
if: success() # Ensure this job only runs if the previous job succeeds
4242
runs-on: ubuntu-latest
4343
steps:
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v6
4545
with:
4646
ref: dev
4747
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
@@ -69,7 +69,7 @@ jobs:
6969
runs-on: ubuntu-latest
7070
steps:
7171
- name: Checkout dev branch
72-
uses: actions/checkout@v3
72+
uses: actions/checkout@v6
7373
with:
7474
ref: dev
7575

.github/workflows/unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
python-version: ["3.10", "3.11" ]
3939
runs-on: ubuntu-latest
4040
steps:
41-
- uses: actions/checkout@v4
41+
- uses: actions/checkout@v6
4242
- name: Set up python ${{ matrix.python-version }}
4343
uses: actions/setup-python@v2
4444
with:

0 commit comments

Comments
 (0)