Skip to content

Commit

Permalink
Merge pull request #743 from myk002/myk_update_build_actions
Browse files Browse the repository at this point in the history
update to non-deprecated build actions
  • Loading branch information
myk002 authored Apr 4, 2024
2 parents 425bb89 + a9c6de2 commit 158a018
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
libxml-libxml-perl \
libxml-libxslt-perl
- name: Clone df-structures
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Validate against schema
run: |
xmllint --schema data-definition.xsd --noout df.*.xml symbols.xml 2>&1 | tee xmllint.out; status=${PIPESTATUS[0]}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/check-type-sizes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,14 @@ jobs:
- name: Install dependencies
run: pip install Jinja2
- name: Clone df-structures
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Download type sizes artifact (old)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: sizes-${{ runner.os }}-${{ matrix.arch }}-old
path: old
- name: Download type sizes artifact (new)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: sizes-${{ runner.os }}-${{ matrix.arch }}-new
path: new
Expand All @@ -86,7 +86,7 @@ jobs:
- name: Generate report
run: python3 tools/compare-sizes.py --old sizes-old.txt --new sizes-new.txt --platform ${{ env.GHA_OS_TAG }} --output sizes-${{ env.GHA_OS_TAG }}.json
- name: Upload report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: sizes-${{ env.GHA_OS_TAG }}
path: sizes-${{ env.GHA_OS_TAG }}.json
Expand All @@ -96,9 +96,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone df-structures
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: reports
- name: Generate comment
Expand All @@ -119,7 +119,7 @@ jobs:
--arg rows "${{ steps.generate_comment.outputs.rows }}" \
'{$comment, $comment_search, $pr_number, update_only:($rows|tonumber <= 0)}' > comment-info.json
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: comment-info.json
path: comment-info.json

0 comments on commit 158a018

Please sign in to comment.