diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-15 20:44:56 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-15 20:44:56 +0300 |
commit | 103a523d0da587182e1c1db0486e77efb33e8387 (patch) | |
tree | 1fede176418731869e8dbdb91197b92861fc9dfa | |
parent | workflows/test: linting (diff) | |
download | jekyll-docker-103a523d0da587182e1c1db0486e77efb33e8387.tar.gz jekyll-docker-103a523d0da587182e1c1db0486e77efb33e8387.zip |
workflows/test: use ubuntu-latest
-rw-r--r-- | .github/workflows/test.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 465d642..054aa7f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ env: jobs: local_build: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest name: Local build steps: - name: Checkout @@ -58,7 +58,7 @@ jobs: test -d "$JEKYLL_PROJECT_NAME/_site" test -f "$JEKYLL_PROJECT_NAME/_site/index.html" docker_build: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest name: Docker build steps: - name: Running as regular user @@ -114,7 +114,7 @@ jobs: - name: Stop containers run: make -f src/Makefile docker/down docker_root_build: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest name: Docker build (as root) steps: - name: Running as regular user |