Skip to content

Commit 6584e4f

Browse files
committed
update github actions
1 parent c0e581e commit 6584e4f

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ jobs:
77
name: "Build"
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111
- name: Build add-on
1212
run: |
1313
cp -R addon servo_animation
1414
cp README.md LICENSE servo_animation
1515
zip -r blender_servo_animation_addon servo_animation
1616
- name: Archive add-on ZIP
17-
uses: actions/upload-artifact@v3
17+
uses: actions/upload-artifact@v4
1818
with:
1919
name: blender_servo_animation_addon.zip
2020
path: |
@@ -23,9 +23,9 @@ jobs:
2323
name: "Lint"
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727
- name: Set up Python 3.10
28-
uses: actions/setup-python@v3
28+
uses: actions/setup-python@v5
2929
with:
3030
python-version: "3.10"
3131
cache: "pip"
@@ -50,9 +50,9 @@ jobs:
5050
- {version: "3.5.0", dir: "3.5"}
5151
- {version: "4.0.0", dir: "4.0"}
5252
steps:
53-
- uses: actions/checkout@v3
53+
- uses: actions/checkout@v4
5454
- name: Set up Python
55-
uses: actions/setup-python@v3
55+
uses: actions/setup-python@v5
5656
with:
5757
python-version: "3.10"
5858
cache: "pip"
@@ -62,7 +62,7 @@ jobs:
6262
sudo apt-get install --no-install-recommends -y unzip wget xz-utils libxi6 libxxf86vm1 libxfixes3 libxrender1 libgl1
6363
- name: Restore Blender cache
6464
id: restore-blender-cache
65-
uses: actions/cache/restore@v3
65+
uses: actions/cache/restore@v4
6666
with:
6767
path: blender-${{ matrix.blender.version }}
6868
key: blender-${{ matrix.blender.version }}
@@ -75,7 +75,7 @@ jobs:
7575
mkdir -p blender-${{ matrix.blender.version }}
7676
tar xf *.tar.xz -C blender-${{ matrix.blender.version }} --strip-components 1
7777
- name: Cache Blender
78-
uses: actions/cache/save@v3
78+
uses: actions/cache/save@v4
7979
if: steps.restore-blender-cache.outputs.cache-hit != 'true'
8080
with:
8181
path: blender-${{ matrix.blender.version }}
@@ -84,7 +84,7 @@ jobs:
8484
run: |
8585
sudo ln -s "$(pwd)/blender-${{ matrix.blender.version }}/blender" /usr/bin/blender
8686
- name: Download add-on
87-
uses: actions/download-artifact@v3
87+
uses: actions/download-artifact@v4
8888
with:
8989
name: blender_servo_animation_addon.zip
9090
- name: Install add-on

0 commit comments

Comments
 (0)