File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 6
6
7
7
jobs :
8
8
build-avr-gcc :
9
- runs-on : ubuntu-22 .04
9
+ runs-on : ubuntu-24 .04
10
10
11
11
steps :
12
12
- name : Install dependencies
16
16
sudo apt-get install -y git wget autoconf build-essential netpbm libmpc-dev libmpfr-dev libgmp-dev libmpfr6 texinfo doxygen flex bison libexpat1-dev slang-xfig
17
17
18
18
- name : Checkout
19
- uses : actions/checkout@v3
19
+ uses : actions/checkout@v4
20
20
21
21
- name : Build
22
22
run : |
@@ -39,14 +39,14 @@ jobs:
39
39
tar cjf modm-avr-gcc.tar.bz2 -C /opt avr-gcc
40
40
41
41
- name : Upload artifact
42
- uses : actions/upload-artifact@v3
42
+ uses : actions/upload-artifact@v4
43
43
with :
44
44
name : modm-avr-gcc
45
45
path : modm-avr-gcc.tar.bz2
46
46
47
47
- name : Create release
48
- if : startsWith( github.ref, 'refs/tags/')
49
- uses : softprops/action-gh-release@v1
48
+ if : github.ref_type == 'tag'
49
+ uses : softprops/action-gh-release@v2
50
50
with :
51
51
name : AVR GCC ${{ github.ref }}
52
52
draft : false
You can’t perform that action at this time.
0 commit comments