From 613ceab1e83d770f6dd7342e3357febf01cfe36a Mon Sep 17 00:00:00 2001 From: justanwar <42809091+justanwar@users.noreply.github.com> Date: Wed, 27 Sep 2023 19:19:10 +0800 Subject: [PATCH] Bump Github Actions version to prevent stalled jobs and fix typo in Dockerfile --- .github/workflows/notify_slack.yml | 2 +- .github/workflows/run_tests.yml | 2 +- contrib/build-wine/Dockerfile | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/notify_slack.yml b/.github/workflows/notify_slack.yml index b21e2ba19d..25a4186467 100644 --- a/.github/workflows/notify_slack.yml +++ b/.github/workflows/notify_slack.yml @@ -10,7 +10,7 @@ on: jobs: notify_slack: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest name: Notify slack steps: - name: Notify slack diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 891443ca0c..dbff8822ad 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -10,7 +10,7 @@ on: jobs: run_tests: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest name: Run tests strategy: matrix: diff --git a/contrib/build-wine/Dockerfile b/contrib/build-wine/Dockerfile index 71a9cb8b96..c2f8a3cc05 100644 --- a/contrib/build-wine/Dockerfile +++ b/contrib/build-wine/Dockerfile @@ -26,8 +26,8 @@ RUN dpkg --add-architecture i386 \ && apt-get update \ && apt-get install -y \ wine-stable=8.0.1~bionic-1 \ - wine-stable-i386e=8.0.1~bionic-1 \ - wine-stable-amd64e=8.0.1~bionic-1 \ + wine-stable-i386=8.0.1~bionic-1 \ + wine-stable-amd64=8.0.1~bionic-1 \ cabextract xauth xvfb ca-certificates zip unzip p7zip-full \ && wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks \ && chmod +x winetricks && mv winetricks /usr/local/bin \