Skip to content

Commit

Permalink
Merge pull request #84 from tidoust/bump-workflow-versions
Browse files Browse the repository at this point in the history
Bump versions of dependencies used in workflow
  • Loading branch information
jugglinmike authored Dec 18, 2024
2 parents f13f715 + cc89c73 commit fdb685b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/auto-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@ on:
jobs:
main:
name: Build, Validate and Deploy
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: w3c/spec-prod@v2
with:
GH_PAGES_BRANCH: gh-pages
# equivalent to the Bikeshed CLI argument, `--die-on=link-error`
BUILD_FAIL_ON: link-error
check-cddl-consistency:
name: Verify that the generated CDDL files are in sync with the inline CDDL
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v1
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Extract CDDL
Expand All @@ -28,9 +28,9 @@ jobs:
run: git diff --exit-code
check-cddl-validity:
name: Verify that the generated CDDL files are valid
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Get cddl version
run: curl -s https://crates.io/api/v1/crates/cddl | python3 -c "import sys, json; print(json.load(sys.stdin)['crate']['max_stable_version'])" | tee cddl.txt
- name: "Cache rust binaries"
Expand All @@ -53,10 +53,10 @@ jobs:
run: ./scripts/test-cddl.sh
check-json-schema-validity:
name: Verify that the JSON schema files are valid
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- run: npm ci
Expand Down

0 comments on commit fdb685b

Please sign in to comment.