From 0edf8d2634285fc83721b053f6c7a17012d5eae4 Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Thu, 24 Oct 2024 23:57:01 +0200 Subject: [PATCH] Revert "test: :alembic: test if we can replace apt commands by actions" This reverts commit 56c9102284ee91dd67b8f23cdda8e2d174927a35. --- .gitea/workflows/repod.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/repod.yml b/.gitea/workflows/repod.yml index f5da37d..9f1530d 100644 --- a/.gitea/workflows/repod.yml +++ b/.gitea/workflows/repod.yml @@ -16,9 +16,8 @@ jobs: runs-on: ubuntu-latest container: nextcloud:30 steps: - - uses: ConorMacBride/install-package@v1 - with: - apt: git nodejs + - run: apt-get update + - run: apt-get install -y git nodejs - uses: actions/checkout@v4 - run: curl -sSLo /usr/local/bin/composer https://getcomposer.org/download/latest-stable/composer.phar - run: chmod +x /usr/local/bin/composer @@ -50,9 +49,8 @@ jobs: runs-on: ubuntu-latest container: nextcloud:30 steps: - - uses: ConorMacBride/install-package@v1 - with: - apt: git nodejs + - run: apt-get update + - run: apt-get install -y git nodejs - uses: actions/checkout@v4 - run: curl -sSLo /usr/local/bin/composer https://getcomposer.org/download/latest-stable/composer.phar - run: chmod +x /usr/local/bin/composer