Skip to content

Commit 1c8ea9e

Browse files
authored
Update GitHub Actions to use latest action versions
1 parent a2203d5 commit 1c8ea9e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,25 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
environment: [drucker_1, drucker_2, drucker_3] # Hier werden 3 parallele Jobs gestartet
10+
environment: [drucker_1, drucker_2, drucker_3]
1111

1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414

1515
- name: Cache pip
16-
uses: actions/cache@v3
16+
uses: actions/cache@v4
1717
with:
1818
path: ~/.cache/pip
1919
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
2020

2121
- name: Cache PlatformIO
22-
uses: actions/cache@v3
22+
uses: actions/cache@v4
2323
with:
2424
path: ~/.platformio
2525
key: ${{ runner.os }}-platformio
2626

2727
- name: Set up Python
28-
uses: actions/setup-python@v4
28+
uses: actions/setup-python@v5
2929
with:
3030
python-version: '3.11'
3131

@@ -42,7 +42,7 @@ jobs:
4242
API_KEY_D3: ${{ secrets.API_KEY_D3 }}
4343

4444
- name: Upload Binary
45-
uses: actions/upload-artifact@v3
45+
uses: actions/upload-artifact@v4
4646
with:
4747
name: firmware-${{ matrix.environment }}
4848
path: .pio/build/${{ matrix.environment }}/firmware.bin

0 commit comments

Comments
 (0)