27
27
shell : bash
28
28
29
29
- name : ' Checkout'
30
- uses : actions/checkout@v3
30
+ uses : actions/checkout@v4
31
31
with :
32
32
fetch-depth : 0
33
33
58
58
unix2dos README.md LICENSE AUDIOGUIDE.md
59
59
- name : ' Upload artifact (win32)'
60
60
if : matrix.win == 'win32'
61
- uses : actions/upload-artifact@v3
61
+ uses : actions/upload-artifact@v4
62
62
with :
63
63
name : m8c-${{ env.NOW }}-${{ matrix.win }}
64
64
path : |
73
73
AUDIOGUIDE.md
74
74
- name : ' Upload artifact (win64)'
75
75
if : matrix.win == 'win64'
76
- uses : actions/upload-artifact@v3
76
+ uses : actions/upload-artifact@v4
77
77
with :
78
78
name : m8c-${{ env.NOW }}-${{ matrix.win }}
79
79
path : |
94
94
sudo apt-get update
95
95
sudo apt-get install --fix-missing build-essential libsdl2-dev libserialport-dev zip
96
96
- name : ' Checkout'
97
- uses : actions/checkout@v3
97
+ uses : actions/checkout@v4
98
98
99
99
- name : Set current date as env variable
100
100
run : echo "NOW=$(date +'%Y-%m-%d')" >> $GITHUB_ENV
@@ -103,7 +103,7 @@ jobs:
103
103
run : |
104
104
make
105
105
- name : ' Upload artifact'
106
- uses : actions/upload-artifact@v3
106
+ uses : actions/upload-artifact@v4
107
107
with :
108
108
name : m8c-${{ env.NOW }}-linux
109
109
path : |
@@ -121,7 +121,7 @@ jobs:
121
121
run : brew install cmake sdl2 libserialport pkg-config
122
122
123
123
- name : ' Checkout'
124
- uses : actions/checkout@v3
124
+ uses : actions/checkout@v4
125
125
126
126
- name : Set current date as env variable
127
127
run : echo "NOW=$(date +'%Y-%m-%d')" >> $GITHUB_ENV
@@ -138,7 +138,7 @@ jobs:
138
138
cp -r /tmp/m8c.app .
139
139
zip -r m8c.zip m8c.app LICENSE README.md AUDIOGUIDE.md gamecontrollerdb.txt
140
140
- name : ' Upload artifact'
141
- uses : actions/upload-artifact@v3
141
+ uses : actions/upload-artifact@v4
142
142
with :
143
143
name : m8c-${{ env.NOW }}-macos
144
144
path : m8c.zip
0 commit comments