Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-marlin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Check out Marlin
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: MarlinFirmware/Marlin
ref: 2.0.9.3
Expand All @@ -28,7 +28,7 @@ jobs:
submodules: 'true'

- name: Check out Marlin-Configurations
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: MarlinFirmware/Configurations
ref: release-2.0.9.3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/export-bom.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
sudo apt install python3

- name: Download repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Fetch FreeCAD
uses: dsaltares/fetch-gh-release-asset@master
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/export-ecad.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
git lfs install

- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
lfs: true

Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
apt -y install git git-lfs zip librsvg2-bin imagemagick

- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
lfs: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/export-mcad.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

steps:
- name: Download repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install FreeCAD Python library
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
needs: output_details
if: github.event_name == 'push' || github.event_name == 'release' || (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success') || github.event_name == 'workflow_dispatch'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
lfs: false

Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
# run: sudo apt install python3 libcanberra-gtk-module libcanberra-gtk3-module libglu1-mesa libgl1 libpangox-1.0-0 libpangoxft-1.0-0
#
# - name: Download repository
# uses: actions/checkout@v2
# uses: actions/checkout@v3
#
# - name: Fetch FreeCAD
# uses: dsaltares/fetch-gh-release-asset@master
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name == 'push' || github.event_name == 'release' || (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success') || github.event_name == 'workflow_dispatch'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive # Fetch the Docsy theme
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
Expand Down Expand Up @@ -246,7 +246,7 @@ jobs:
needs: build_page
steps:
- name: Checkout gh-pages branch
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
Expand Down