Skip to content

Commit 80d9c36

Browse files
Update actions/checkout action to v6 (#8)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent d65e83e commit 80d9c36

File tree

4 files changed

+8
-8
lines changed

4 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.7, 3.8, 3.9, "3.10" ]
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v6
2020
- name: Setup Python
2121
uses: actions/setup-python@v1
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@v2
15+
- uses: actions/checkout@v6
1616
- name: Setup Python
1717
uses: actions/setup-python@v1
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@v2
22+
- uses: actions/checkout@v6
2323
with:
2424
ref: dev
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@v2
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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Check out repository
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v6
1616
with:
1717
ref: dev
1818
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
@@ -48,7 +48,7 @@ jobs:
4848
needs: publish_alpha
4949
runs-on: ubuntu-latest
5050
steps:
51-
- uses: actions/checkout@v2
51+
- uses: actions/checkout@v6
5252
- name: Send message to Matrix bots channel
5353
id: matrix-chat-message
5454
uses: fadenb/matrix-chat-message@v0.0.6
@@ -65,7 +65,7 @@ jobs:
6565
if: success() # Ensure this job only runs if the previous job succeeds
6666
runs-on: ubuntu-latest
6767
steps:
68-
- uses: actions/checkout@v2
68+
- uses: actions/checkout@v6
6969
with:
7070
ref: dev
7171
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
@@ -93,7 +93,7 @@ jobs:
9393
runs-on: ubuntu-latest
9494
steps:
9595
- name: Checkout dev branch
96-
uses: actions/checkout@v3
96+
uses: actions/checkout@v6
9797
with:
9898
ref: dev
9999

0 commit comments

Comments
 (0)