Skip to content

Commit aeef4e4

Browse files
Update actions/checkout action to v6
1 parent 8466338 commit aeef4e4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
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: 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
@@ -40,7 +40,7 @@ jobs:
4040
if: success() # Ensure this job only runs if the previous job succeeds
4141
runs-on: ubuntu-latest
4242
steps:
43-
- uses: actions/checkout@v4
43+
- uses: actions/checkout@v6
4444
with:
4545
ref: dev
4646
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@v4
72+
uses: actions/checkout@v6
7373
with:
7474
ref: dev
7575

0 commit comments

Comments
 (0)