From e751428d6c8f6086a2e8f416c8f26a52738e10ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Dzi=C4=99giel?= Date: Sun, 14 Apr 2024 17:23:33 +0200 Subject: [PATCH] workflows: Update to use latest versions of actions --- .github/workflows/flatpak-nightly.yml | 9 +++++---- .github/workflows/flatpak.yml | 9 +++++---- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/flatpak-nightly.yml b/.github/workflows/flatpak-nightly.yml index e643fc62..68018609 100644 --- a/.github/workflows/flatpak-nightly.yml +++ b/.github/workflows/flatpak-nightly.yml @@ -16,7 +16,8 @@ jobs: arch: [x86_64, aarch64] fail-fast: false steps: - - uses: actions/checkout@v2 + - name: Checkout + uses: actions/checkout@v4 with: submodules: recursive - name: Install Docker @@ -24,15 +25,15 @@ jobs: dnf -y install docker - name: Setup QEMU id: qemu - uses: docker/setup-qemu-action@v1 + uses: docker/setup-qemu-action@v3 with: platforms: arm64 - name: Prepare Runtime run: | flatpak --system install -y --noninteractive flathub org.freedesktop.Sdk.Extension.rust-nightly/${{ matrix.arch }}/23.08 flatpak --system install -y --noninteractive flathub org.freedesktop.Sdk.Extension.llvm16/${{ matrix.arch }}/23.08 - - uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v4 - name: Build + - name: Build + uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v6 with: bundle: com.github.rafostar.Clapper.flatpak manifest-path: pkgs/flatpak/com.github.rafostar.Clapper-nightly.json diff --git a/.github/workflows/flatpak.yml b/.github/workflows/flatpak.yml index 69560ccd..5e203cde 100644 --- a/.github/workflows/flatpak.yml +++ b/.github/workflows/flatpak.yml @@ -20,7 +20,8 @@ jobs: arch: [x86_64, aarch64] fail-fast: false steps: - - uses: actions/checkout@v2 + - name: Checkout + uses: actions/checkout@v4 with: submodules: recursive - name: Install Docker @@ -28,11 +29,11 @@ jobs: dnf -y install docker - name: Setup QEMU id: qemu - uses: docker/setup-qemu-action@v1 + uses: docker/setup-qemu-action@v3 with: platforms: arm64 - - uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v4 - name: "Build" + - name: Build + uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v6 with: bundle: com.github.rafostar.Clapper.flatpak manifest-path: pkgs/flatpak/com.github.rafostar.Clapper.json