Skip to content

Commit

Permalink
ci: Update base OS and action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
terryburton committed Apr 3, 2023
1 parent a239d5d commit bc4eb13
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
fail-fast: false
matrix:
os:
- ubuntu-20.04
- ubuntu-22.04

steps:

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Build
run: |
Expand All @@ -34,7 +34,7 @@ jobs:

docs-pdf:

runs-on: ubuntu-18.04
runs-on: ubuntu-22.04

steps:

Expand Down Expand Up @@ -186,14 +186,14 @@ jobs:
cited-by.md
- name: Store PDF docs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: docs-pdf
path: wikidocs/__pandoc/barcodewriter.pdf

docs-html:

runs-on: ubuntu-18.04
runs-on: ubuntu-22.04

steps:

Expand Down Expand Up @@ -244,6 +244,7 @@ jobs:
wikidocs/symbologies/Compact-PDF417.md
wikidocs/symbologies/QR-Code.md
wikidocs/symbologies/Micro-QR-Code.md
wikidocs/symbologies/Swiss-QR-Code.md
wikidocs/__pandoc/__symbology-1d.md
wikidocs/symbologies/Code-128.md
wikidocs/symbologies/Code-39.md
Expand Down Expand Up @@ -336,7 +337,7 @@ jobs:
cited-by.md
- name: Store HTML docs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: docs-html
path: wikidocs/__pandoc/barcodewriter.html
Expand All @@ -345,7 +346,7 @@ jobs:

if: startsWith(github.ref, 'refs/tags/')

runs-on: ubuntu-18.04
runs-on: ubuntu-22.04

needs:
- ci
Expand All @@ -354,7 +355,7 @@ jobs:

steps:

- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Get and check the version
id: get_version
Expand All @@ -370,12 +371,12 @@ jobs:
make -j `nproc` release
- name: Load PDF docs
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: docs-pdf

- name: Load HTML docs
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: docs-html

Expand Down

0 comments on commit bc4eb13

Please sign in to comment.