Skip to content

Commit

Permalink
Merge pull request #128 from paulocoutinhox/upload-artifact-action
Browse files Browse the repository at this point in the history
update all github actions
  • Loading branch information
paulocoutinhox authored Aug 17, 2024
2 parents 49b3eee + f93a7a1 commit 80e85b3
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- { name: "Ubuntu", os: "ubuntu-20.04", target: "android" }

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Install System Packages
run: |
Expand All @@ -36,7 +36,7 @@ jobs:
run: python3 -m pip install --upgrade pip setuptools wheel

- name: Install CMake
uses: jwlawson/actions-setup-cmake@v1.8
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: "3.24.0"

Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
run: python3 make.py archive-${{ matrix.config.target }}

- name: Save
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: artifact-${{ matrix.config.target }}
path: ${{ matrix.config.target }}.tgz
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- { name: "macOS", os: "macos-latest", target: "ios" }

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
Expand All @@ -29,7 +29,7 @@ jobs:
run: python3 -m pip install --upgrade pip setuptools wheel

- name: Install CMake
uses: jwlawson/actions-setup-cmake@v1.8
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: "3.24.0"

Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
run: python3 make.py archive-${{ matrix.config.target }}

- name: Save
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: artifact-${{ matrix.config.target }}
path: ${{ matrix.config.target }}.tgz
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- { name: "macOS", os: "macos-latest", target: "macos" }

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
Expand All @@ -29,7 +29,7 @@ jobs:
run: python3 -m pip install --upgrade pip setuptools wheel

- name: Install CMake
uses: jwlawson/actions-setup-cmake@v1.8
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: "3.24.0"

Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
run: python3 make.py archive-${{ matrix.config.target }}

- name: Save
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: artifact-${{ matrix.config.target }}
path: ${{ matrix.config.target }}.tgz
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- { name: "Ubuntu", os: "ubuntu-20.04", target: "wasm" }

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Install System Packages
run: |
Expand All @@ -34,7 +34,7 @@ jobs:
run: python3 -m pip install --upgrade pip setuptools wheel

- name: Install CMake
uses: jwlawson/actions-setup-cmake@v1.8
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: "3.24.0"

Expand All @@ -44,12 +44,12 @@ jobs:
version: "1.10.0"

- name: Install EMSDK
uses: mymindstorm/setup-emsdk@v11
uses: mymindstorm/setup-emsdk@v14
with:
version: "3.1.64"

- name: Install Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '19'
architecture: 'x64'
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
run: python3 make.py archive-${{ matrix.config.target }}

- name: Save
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: artifact-${{ matrix.config.target }}
path: ${{ matrix.config.target }}.tgz
Expand Down

0 comments on commit 80e85b3

Please sign in to comment.