Skip to content

Commit ed8c35b

Browse files
Update actions/checkout action to v6
1 parent cf5a996 commit ed8c35b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.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.
@@ -61,7 +61,7 @@ jobs:
6161
if: success() # Ensure this job only runs if the previous job succeeds
6262
runs-on: ubuntu-latest
6363
steps:
64-
- uses: actions/checkout@v4
64+
- uses: actions/checkout@v6
6565
with:
6666
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
6767
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@v4
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.
@@ -52,7 +52,7 @@ jobs:
5252
needs: publish_alpha
5353
runs-on: ubuntu-latest
5454
steps:
55-
- uses: actions/checkout@v4
55+
- uses: actions/checkout@v6
5656
- name: Send message to Matrix bots channel
5757
id: matrix-chat-message
5858
uses: fadenb/matrix-chat-message@v0.0.6
@@ -69,7 +69,7 @@ jobs:
6969
if: success() # Ensure this job only runs if the previous job succeeds
7070
runs-on: ubuntu-latest
7171
steps:
72-
- uses: actions/checkout@v4
72+
- uses: actions/checkout@v6
7373
with:
7474
ref: dev
7575
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
@@ -97,7 +97,7 @@ jobs:
9797
runs-on: ubuntu-latest
9898
steps:
9999
- name: Checkout dev branch
100-
uses: actions/checkout@v4
100+
uses: actions/checkout@v6
101101
with:
102102
ref: dev
103103

0 commit comments

Comments
 (0)