Skip to content

Commit d9abf5a

Browse files
Bump actions/checkout from 2 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 7de8c8c commit d9abf5a

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/build-marlin.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Check out Marlin
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v3
2222
with:
2323
repository: MarlinFirmware/Marlin
2424
ref: 2.0.9.3
@@ -28,7 +28,7 @@ jobs:
2828
submodules: 'true'
2929

3030
- name: Check out Marlin-Configurations
31-
uses: actions/checkout@v2
31+
uses: actions/checkout@v3
3232
with:
3333
repository: MarlinFirmware/Configurations
3434
ref: release-2.0.9.3

.github/workflows/export-bom.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
sudo apt install python3
3030
3131
- name: Download repository
32-
uses: actions/checkout@v2
32+
uses: actions/checkout@v3
3333

3434
- name: Fetch FreeCAD
3535
uses: dsaltares/fetch-gh-release-asset@master

.github/workflows/export-ecad.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
git lfs install
1818
1919
- name: Checkout Repository
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v3
2121
with:
2222
lfs: true
2323

@@ -117,7 +117,7 @@ jobs:
117117
echo 'repo: ${{github.repository}}'
118118
119119
- name: Checkout Repository
120-
uses: actions/checkout@v2
120+
uses: actions/checkout@v3
121121
with:
122122
lfs: true
123123

.github/workflows/export-mcad.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: Download repository
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v3
1616

1717
- name: Install FreeCAD Python library
1818
run: |

.github/workflows/publish-docs.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
needs: output_details
4848
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'
4949
steps:
50-
- uses: actions/checkout@v2
50+
- uses: actions/checkout@v3
5151
with:
5252
lfs: false
5353

@@ -76,7 +76,7 @@ jobs:
7676
# run: sudo apt install python3 libcanberra-gtk-module libcanberra-gtk3-module libglu1-mesa libgl1 libpangox-1.0-0 libpangoxft-1.0-0
7777
#
7878
# - name: Download repository
79-
# uses: actions/checkout@v2
79+
# uses: actions/checkout@v3
8080
#
8181
# - name: Fetch FreeCAD
8282
# uses: dsaltares/fetch-gh-release-asset@master
@@ -131,7 +131,7 @@ jobs:
131131
runs-on: ubuntu-latest
132132
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'
133133
steps:
134-
- uses: actions/checkout@v2
134+
- uses: actions/checkout@v3
135135
with:
136136
submodules: recursive # Fetch the Docsy theme
137137
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
@@ -246,7 +246,7 @@ jobs:
246246
needs: build_page
247247
steps:
248248
- name: Checkout gh-pages branch
249-
uses: actions/checkout@v2
249+
uses: actions/checkout@v3
250250
with:
251251
submodules: recursive
252252
fetch-depth: 0

0 commit comments

Comments
 (0)