Skip to content

Commit

Permalink
Merge branch 'main' of github.com:PhilippMDoerner/nimword
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippMDoerner committed Aug 17, 2024
2 parents 207163c + 2f89108 commit a828eab
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Cache choosenim
id: cache-choosenim
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.choosenim
key: ${{ runner.os }}-choosenim-stable

- name: Cache nimble
id: cache-nimble
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.nimble
key: ${{ runner.os }}-nimble-${{ hashFiles('nimword.nimble') }}
Expand All @@ -40,7 +40,7 @@ jobs:
run: nimble --verbose apis

- name: Archive API docs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: api-docs
path: |
Expand All @@ -52,7 +52,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download all docs
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4

- name: Check files
run: |
Expand All @@ -64,7 +64,7 @@ jobs:
- name: Deploy
if: success()
uses: crazy-max/ghaction-github-pages@v3.2.0
uses: crazy-max/ghaction-github-pages@v4.0.0
with:
target_branch: gh-pages
build_dir: ./docs
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:


steps:
- uses: actions/checkout@v1
- uses: iffy/install-nim@v4
- uses: actions/checkout@v4
- uses: iffy/install-nim@v5
with:
version: ${{ matrix.nimversion }}
env:
Expand All @@ -44,7 +44,7 @@ jobs:
Docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Docs
run: docker-compose run docs

0 comments on commit a828eab

Please sign in to comment.