Skip to content

Commit 0ae180d

Browse files
Update actions/checkout action to v7
1 parent 6635229 commit 0ae180d

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/downstream.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout Repository
18-
uses: actions/checkout@v6
18+
uses: actions/checkout@v7
1919

2020
- name: Download requirements file
2121
run: |

.github/workflows/install_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
python-version: ["3.10", "3.11"]
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v6
17+
- uses: actions/checkout@v7
1818
- name: Setup Python
1919
uses: actions/setup-python@v6
2020
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@v6
15+
- uses: actions/checkout@v7
1616
- name: Setup Python
1717
uses: actions/setup-python@v6
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@v6
22+
- uses: actions/checkout@v7
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@v6
50+
- uses: actions/checkout@v7
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
@@ -23,7 +23,7 @@ jobs:
2323
needs: publish_alpha
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v6
26+
- uses: actions/checkout@v7
2727
- name: Send message to Matrix bots channel
2828
id: matrix-chat-message
2929
uses: fadenb/matrix-chat-message@v0.0.6
@@ -39,7 +39,7 @@ jobs:
3939
if: success() # Ensure this job only runs if the previous job succeeds
4040
runs-on: ubuntu-latest
4141
steps:
42-
- uses: actions/checkout@v6
42+
- uses: actions/checkout@v7
4343
with:
4444
ref: dev
4545
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
@@ -68,7 +68,7 @@ jobs:
6868
runs-on: ubuntu-latest
6969
steps:
7070
- name: Checkout dev branch
71-
uses: actions/checkout@v6
71+
uses: actions/checkout@v7
7272
with:
7373
ref: dev
7474

.github/workflows/unit_tests.yml

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

0 commit comments

Comments
 (0)