Skip to content

Commit c1e49ac

Browse files
authored
Merge branch 'awawa-dev:master' into master
2 parents 4eba665 + be586ba commit c1e49ac

File tree

11 files changed

+20
-20
lines changed

11 files changed

+20
-20
lines changed

.github/workflows/push-master.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
###########################
1010

1111
HyperSerialPico:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-22.04
1313

1414
steps:
1515
- uses: actions/[email protected]
@@ -29,14 +29,14 @@ jobs:
2929
cmake ..
3030
cmake --build . --config Release
3131
32-
- uses: actions/upload-artifact@v4.4.3
32+
- uses: actions/upload-artifact@v4.6.0
3333
name: Upload artifacts (commit)
3434
if: (startsWith(github.event.ref, 'refs/tags') != true)
3535
with:
3636
path: |
3737
firmware/*.uf2
3838
39-
- uses: actions/upload-artifact@v4.4.3
39+
- uses: actions/upload-artifact@v4.6.0
4040
name: Upload artifacts (release)
4141
if: startsWith(github.ref, 'refs/tags/')
4242
with:
@@ -57,7 +57,7 @@ jobs:
5757
cmake --build .
5858
zip -j ../firmware/Adafruit_Feather_RP2040_Scorpio.zip ../firmware/*
5959
60-
- uses: actions/upload-artifact@v4.4.3
60+
- uses: actions/upload-artifact@v4.6.0
6161
name: Upload artifacts (release Adafruit_Feather)
6262
if: startsWith(github.ref, 'refs/tags/')
6363
with:
@@ -78,7 +78,7 @@ jobs:
7878
rm ../firmware/*_Spi.uf2
7979
zip -j ../firmware/Adafruit_ItsyBitsy_2040.zip ../firmware/*
8080
81-
- uses: actions/upload-artifact@v4.4.3
81+
- uses: actions/upload-artifact@v4.6.0
8282
name: Upload artifacts (release Adafruit_ItsyBitsy)
8383
if: startsWith(github.ref, 'refs/tags/')
8484
with:
@@ -99,7 +99,7 @@ jobs:
9999
rm ../firmware/*_Spi.uf2
100100
zip -j ../firmware/Pimoroni_Plasma_Stick_2040_W.zip ../firmware/*
101101
102-
- uses: actions/upload-artifact@v4.4.3
102+
- uses: actions/upload-artifact@v4.6.0
103103
name: Upload artifacts (release Pimoroni_Plasma_Stick_W)
104104
if: startsWith(github.ref, 'refs/tags/')
105105
with:
@@ -120,7 +120,7 @@ jobs:
120120
cmake --build .
121121
zip -j ../firmware/Pimoroni_Plasma_2040.zip ../firmware/*
122122
123-
- uses: actions/upload-artifact@v4.4.3
123+
- uses: actions/upload-artifact@v4.6.0
124124
name: Upload artifacts (release Pimoroni_Plasma)
125125
if: startsWith(github.ref, 'refs/tags/')
126126
with:
@@ -136,7 +136,7 @@ jobs:
136136
name: Publish Releases
137137
if: startsWith(github.event.ref, 'refs/tags')
138138
needs: [HyperSerialPico]
139-
runs-on: ubuntu-latest
139+
runs-on: ubuntu-22.04
140140
permissions:
141141
contents: write
142142
steps:
@@ -158,7 +158,7 @@ jobs:
158158

159159
# create draft release and upload artifacts
160160
- name: Create draft release
161-
uses: softprops/action-gh-release@v2.0.9
161+
uses: softprops/action-gh-release@v2.2.1
162162
with:
163163
name: HyperSerialPico ${{ env.VERSION }}
164164
tag_name: ${{ env.TAG }}
@@ -168,4 +168,4 @@ jobs:
168168
draft: true
169169
prerelease: ${{ env.preRelease }}
170170
env:
171-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
171+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023-2024 awawa-dev
3+
Copyright (c) 2023-2025 awawa-dev
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

include/base.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*
33
* MIT License
44
*
5-
* Copyright (c) 2023-2024 awawa-dev
5+
* Copyright (c) 2023-2025 awawa-dev
66
*
77
* https://github.com/awawa-dev/HyperSerialPico
88
*

include/calibration.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*
33
* MIT License
44
*
5-
* Copyright (c) 2023-2024 awawa-dev
5+
* Copyright (c) 2023-2025 awawa-dev
66
*
77
* https://github.com/awawa-dev/HyperSerialPico
88
*

include/framestate.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*
33
* MIT License
44
*
5-
* Copyright (c) 2023-2024 awawa-dev
5+
* Copyright (c) 2023-2025 awawa-dev
66
*
77
* https://github.com/awawa-dev/HyperSerialPico
88
*

include/leds.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* MIT License
66
*
7-
* Copyright (c) 2023-2024 awawa-dev
7+
* Copyright (c) 2023-2025 awawa-dev
88
*
99
* https://github.com/awawa-dev/HyperSerialPico
1010
*

include/main.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*
33
* MIT License
44
*
5-
* Copyright (c) 2023-2024 awawa-dev
5+
* Copyright (c) 2023-2025 awawa-dev
66
*
77
* https://github.com/awawa-dev/HyperSerialPico
88
*

include/statistics.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*
33
* MIT License
44
*
5-
* Copyright (c) 2023-2024 awawa-dev
5+
* Copyright (c) 2023-2025 awawa-dev
66
*
77
* https://github.com/awawa-dev/HyperSerialPico
88

pio/neopixel.pio

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; MIT License
22
;
3-
; Copyright (c) 2023-2024 awawa-dev
3+
; Copyright (c) 2023-2025 awawa-dev
44
;
55
; https://github.com/awawa-dev/HyperSerialPico
66
;

pio/neopixel_ws2812b.pio

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; MIT License
22
;
3-
; Copyright (c) 2023-2024 awawa-dev
3+
; Copyright (c) 2023-2025 awawa-dev
44
;
55
; https://github.com/awawa-dev/HyperSerialPico
66
;

0 commit comments

Comments
 (0)