17
17
runs-on : ubuntu-latest
18
18
steps :
19
19
- name : Checkout Repository
20
- uses : actions/checkout@v2
20
+ uses : actions/checkout@v4
21
21
- name : Download Clang-Format
22
22
run : |
23
23
sudo apt update -qq
33
33
name : Check Compliance with REUSE Specification
34
34
runs-on : ubuntu-latest
35
35
steps :
36
- - uses : actions/checkout@v3
36
+ - uses : actions/checkout@v4
37
37
- name : REUSE Compliance Check
38
38
uses : fsfe/reuse-action@v1
39
39
@@ -43,12 +43,12 @@ jobs:
43
43
if : github.event_name == 'pull_request'
44
44
steps :
45
45
- name : Checkout Current Repository
46
- uses : actions/checkout@v2
46
+ uses : actions/checkout@v4
47
47
with :
48
48
path : current
49
49
ref : ${{ github.ref }}
50
50
- name : Checkout Base Repository
51
- uses : actions/checkout@v2
51
+ uses : actions/checkout@v4
52
52
with :
53
53
path : base
54
54
ref : ${{ github.base_ref }}
74
74
name : Run ShellCheck
75
75
runs-on : ubuntu-latest
76
76
steps :
77
- - uses : actions/checkout@v2
77
+ - uses : actions/checkout@v4
78
78
- name : Run ShellCheck
79
79
run : |
80
80
find $GITHUB_WORKSPACE -type f -and \( -name "*.sh" \) | xargs shellcheck
95
95
- " gnome-xsession"
96
96
- " gnome-wayland-nested"
97
97
steps :
98
- - uses : actions/checkout@v2
98
+ - uses : actions/checkout@v4
99
99
- name : Download Dependencies
100
100
run : |
101
101
sudo apt update -qq
@@ -104,12 +104,12 @@ jobs:
104
104
run : make
105
105
- name : Test Fly-Pie
106
106
run : sudo $GITHUB_WORKSPACE/tests/run-test.sh -v ${{ matrix.version }} -s ${{ matrix.session }}
107
- - uses : actions/upload-artifact@v2
107
+ - uses : actions/upload-artifact@v4
108
108
if : failure()
109
109
with :
110
110
name : log_${{ matrix.version }}_${{ matrix.session }}
111
111
path : fail.log
112
- - uses : actions/upload-artifact@v2
112
+ - uses : actions/upload-artifact@v4
113
113
if : failure()
114
114
with :
115
115
name : screen_${{ matrix.version }}_${{ matrix.session }}
0 commit comments