Skip to content

Commit

Permalink
[ci] Try update actions used
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Feb 5, 2024
1 parent 51646f6 commit 0912be5
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 29 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
dnf -y install git
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'

Expand All @@ -39,7 +39,7 @@ jobs:
zypper -n install git
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'

Expand All @@ -64,7 +64,7 @@ jobs:
zypper -n install git
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'

Expand All @@ -90,7 +90,7 @@ jobs:
pacman -S git --noconfirm
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'

Expand All @@ -117,7 +117,7 @@ jobs:
pacman -S git --noconfirm
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/debian-builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
apt-get install -qq --force-yes git
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
sudo apt-get install -qq --force-yes git doxygen binutils build-essential cmake
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/embedded.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
# pacman -S git --noconfirm
#
# - name: Checkout code
# uses: actions/checkout@v3
# uses: actions/checkout@v4
# with:
# submodules: 'recursive'
#
Expand All @@ -34,7 +34,7 @@ jobs:
# ./ci/raspberrypi.deploy.sh
#
# - name: Upload build
# uses: actions/upload-artifact@v2
# uses: actions/upload-artifact@v4
# with:
# name: raspberry-pi-aarch32
# path: |
Expand All @@ -54,7 +54,7 @@ jobs:
pacman -S git --noconfirm
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'

Expand All @@ -71,7 +71,7 @@ jobs:
./ci/raspberrypi-aarch64.deploy.sh
- name: Upload build
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: raspberry-pi-aarch64
path: |
Expand All @@ -83,7 +83,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'

Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
find . -name ossia-score
- name: Upload build
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: raspberry-pi-bookworm-armhf
path: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/mac-builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'

Expand All @@ -33,7 +33,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'

Expand All @@ -53,7 +53,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'

Expand All @@ -71,7 +71,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'

Expand All @@ -92,7 +92,7 @@ jobs:
MAC_ALTOOL_PASSWORD: ${{ secrets.MAC_ALTOOL_PASSWORD }}
- name: Upload build
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: macos-aarch64
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/templates.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
sudo apt-get install -qq --force-yes git rename perl
- name: Checkout template
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ossia-templates/${{ matrix.template }}
submodules: "recursive"
Expand All @@ -34,7 +34,7 @@ jobs:
./init.sh Build
./release.sh
- uses: actions/upload-artifact@master
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.template }}
path: "**/score-addon-build.zip"
Expand Down Expand Up @@ -85,13 +85,13 @@ jobs:

steps:
- name: Checkout score
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: "recursive"
path: score
fetch-depth: 0 # Needed for getting tags

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: ${{ matrix.template }}
path: .
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu-builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
apt-get install -qq --force-yes git
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'

Expand All @@ -46,7 +46,7 @@ jobs:
./ci/${{ matrix.distro }}.deploy.sh
- name: Upload build
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: matrix.deploy
with:
name: ${{ matrix.distro }}-amd64
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wasm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
pacman -S git --noconfirm
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'
persist-credentials: false
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/win-builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'

Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
call "%cd%\ci\win32store.deploy.cmd"
- name: Upload build
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: windows-store
path: |
Expand All @@ -59,7 +59,7 @@ jobs:
- { sys: clang64, env: clang-x86_64 }
steps:
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'

Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'

Expand Down

0 comments on commit 0912be5

Please sign in to comment.