Skip to content

Commit 97fa340

Browse files
Le-Syl21thinkyhead
authored andcommitted
🩹 Fix Wanhao D9 ; Update GitHub actions (#1182)
1 parent f831aa5 commit 97fa340

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

‎.github/workflows/build-pr.yml‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: Check out the PR
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626

2727
# Get the list of directories containing changed config files:
2828
- name: Get changed directories
@@ -44,15 +44,15 @@ jobs:
4444
echo -e "DIRS<<EOF\n$DIRS\nEOF" >>$GITHUB_ENV
4545
4646
- name: Cache pip
47-
uses: actions/cache@v4
47+
uses: actions/cache@v5
4848
with:
4949
path: ~/.cache/pip
5050
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
5151
restore-keys: |
5252
${{ runner.os }}-pip-
5353
5454
- name: Cache PlatformIO
55-
uses: actions/cache@v4
55+
uses: actions/cache@v5
5656
with:
5757
path: |
5858
~/.platformio

‎.github/workflows/deploy.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-22.04
2121
steps:
2222
- name: Check out
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424
with:
2525
fetch-depth: 0 # Fetch all history for all branches and tags
2626
token: ${{ secrets.GITHUB_TOKEN }} # Use the built-in token for authentication

‎config/examples/Wanhao/Duplicator 9/MK1/300/Configuration.h‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1914,7 +1914,7 @@
19141914
//#define INVERT_W_DIR false
19151915

19161916
// For direct drive extruder v9 set to true, for geared extruder set to false.
1917-
#define INVERT_E0_DIR true
1917+
#define INVERT_E0_DIR false
19181918
#define INVERT_E1_DIR false
19191919
#define INVERT_E2_DIR false
19201920
#define INVERT_E3_DIR false

‎config/examples/Wanhao/Duplicator 9/MK1/400/Configuration.h‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1914,7 +1914,7 @@
19141914
//#define INVERT_W_DIR false
19151915

19161916
// For direct drive extruder v9 set to true, for geared extruder set to false.
1917-
#define INVERT_E0_DIR true
1917+
#define INVERT_E0_DIR false
19181918
#define INVERT_E1_DIR false
19191919
#define INVERT_E2_DIR false
19201920
#define INVERT_E3_DIR false

‎config/examples/Wanhao/Duplicator 9/MK1/500/Configuration.h‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1914,7 +1914,7 @@
19141914
//#define INVERT_W_DIR false
19151915

19161916
// For direct drive extruder v9 set to true, for geared extruder set to false.
1917-
#define INVERT_E0_DIR true
1917+
#define INVERT_E0_DIR false
19181918
#define INVERT_E1_DIR false
19191919
#define INVERT_E2_DIR false
19201920
#define INVERT_E3_DIR false

‎config/examples/Wanhao/Duplicator 9/MK2/500/Configuration.h‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1904,7 +1904,7 @@
19041904

19051905
// Invert the stepper direction. Change (or reverse the motor connector) if an axis goes the wrong way.
19061906
#define INVERT_X_DIR true
1907-
#define INVERT_Y_DIR false
1907+
#define INVERT_Y_DIR true
19081908
#define INVERT_Z_DIR false
19091909
//#define INVERT_I_DIR false
19101910
//#define INVERT_J_DIR false

0 commit comments

Comments
 (0)