File tree Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -42,11 +42,11 @@ jobs:
42
42
43
43
- name : Checkout Repo
44
44
if : github.event_name != 'schedule'
45
- uses : actions/checkout@v4
45
+ uses : actions/checkout@v5
46
46
47
47
- name : Checkout dev branch if scheduled
48
48
if : github.event_name == 'schedule'
49
- uses : actions/checkout@v4
49
+ uses : actions/checkout@v5
50
50
with :
51
51
ref : development
52
52
@@ -128,11 +128,11 @@ jobs:
128
128
steps :
129
129
- name : Checkout Repo
130
130
if : github.event_name != 'schedule'
131
- uses : actions/checkout@v4
131
+ uses : actions/checkout@v5
132
132
133
133
- name : Checkout dev branch if scheduled
134
134
if : github.event_name == 'schedule'
135
- uses : actions/checkout@v4
135
+ uses : actions/checkout@v5
136
136
with :
137
137
ref : development
138
138
Original file line number Diff line number Diff line change 25
25
CI_ARCH : ${{ matrix.platform }}
26
26
steps :
27
27
- name : Checkout Repo
28
- uses : actions/checkout@v4
28
+ uses : actions/checkout@v5
29
29
30
30
- name : Set up QEMU
31
31
uses : docker/setup-qemu-action@v3
Original file line number Diff line number Diff line change 10
10
steps :
11
11
-
12
12
name : Checkout repository
13
- uses : actions/checkout@v4
13
+ uses : actions/checkout@v5
14
14
-
15
15
name : Spell-Checking
16
16
uses : codespell-project/actions-codespell@master
Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
steps :
11
11
- name : Checkout repository
12
- uses : actions/checkout@v4
12
+ uses : actions/checkout@v5
13
13
14
14
- name : Get editorconfig-checker
15
15
uses : editorconfig-checker/action-editorconfig-checker@main # tag v1.0.0 is really out of date
Original file line number Diff line number Diff line change 41
41
runs-on : ubuntu-latest
42
42
steps :
43
43
- name : Checkout
44
- uses : actions/checkout@v4
44
+ uses : actions/checkout@v5
45
45
- name : Remove 'stale' label
46
46
run : gh issue edit ${{ github.event.issue.number }} --remove-label ${{ env.stale_label }}
47
47
env :
Original file line number Diff line number Diff line change 11
11
name : Syncing branches
12
12
steps :
13
13
- name : Checkout
14
- uses : actions/checkout@v4
14
+ uses : actions/checkout@v5
15
15
- name : Opening pull request
16
16
run : gh pr create -B development -H master --title 'Sync master back into development' --body 'Created by Github action' --label 'internal'
17
17
env :
You can’t perform that action at this time.
0 commit comments