Skip to content

Commit 7754432

Browse files
Update actions/checkout action to v5
1 parent 2063842 commit 7754432

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/diffy.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Shellcheck
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4.2.2
14+
- uses: actions/checkout@v5.0.0
1515
- name: Run ShellCheck
1616
uses: ludeeus/action-shellcheck@master
1717

@@ -21,7 +21,7 @@ jobs:
2121
needs: shellcheck
2222
steps:
2323
- name: Check out our own code
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
# - name: Cache base diff environment
2626
# id: base-diff
2727
# uses: actions/cache@v3
@@ -44,26 +44,26 @@ jobs:
4444
run: npm -g install diff2html-cli diff2html
4545

4646
- name: Checkout HA core
47-
uses: actions/checkout@v4
47+
uses: actions/checkout@v5
4848
with:
4949
repository: home-assistant/core
5050
path: clones/beta/ha-core
5151
- name: Checkout Plugwise fork of HA core
52-
uses: actions/checkout@v4
52+
uses: actions/checkout@v5
5353
with:
5454
repository: plugwise/home-assistant.core
5555
ssh-key: ${{ secrets.hacore_deploykey }}
5656
path: clones/beta/pw-core
5757
fetch-depth: 0
5858
- name: Checkout beta component (branch-switch)
59-
uses: actions/checkout@v4
59+
uses: actions/checkout@v5
6060
with:
6161
repository: plugwise/plugwise-beta
6262
ssh-key: ${{ secrets.plugwise_deploykey }}
6363
path: clones/beta/beta
6464
fetch-depth: 0
6565
- name: Checkout beta component (main-branch)
66-
uses: actions/checkout@v4
66+
uses: actions/checkout@v5
6767
with:
6868
repository: plugwise/plugwise-beta
6969
ref: main
@@ -83,27 +83,27 @@ jobs:
8383
run: scripts/diffy.sh beta
8484

8585
- name: Checkout HA core for usb-beta
86-
uses: actions/checkout@v4
86+
uses: actions/checkout@v5
8787
with:
8888
repository: home-assistant/core
8989
path: clones/usb-beta/ha-core
9090
- name: Checkout Plugwise fork of HA core for usb-beta
91-
uses: actions/checkout@v4
91+
uses: actions/checkout@v5
9292
with:
9393
repository: plugwise/home-assistant.core
9494
ssh-key: ${{ secrets.hacore_deploykey }}
9595
path: clones/usb-beta/pw-core
9696
fetch-depth: 0
9797
- name: Checkout usb-beta component (branch-switch)
98-
uses: actions/checkout@v4
98+
uses: actions/checkout@v5
9999
with:
100100
repository: plugwise/plugwise_usb-beta
101101
ssh-key: ${{ secrets.plugwise_deploykey }}
102102
path: clones/usb-beta/usb-beta
103103
fetch-depth: 0
104104

105105
- name: Checkout usb-beta component (main-branch)
106-
uses: actions/checkout@v4
106+
uses: actions/checkout@v5
107107
with:
108108
repository: plugwise/plugwise_usb-beta
109109
ref: main

0 commit comments

Comments
 (0)