Bump tinytag from 1.10.1 to 2.0.0 #3669
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Static Linting | |
on: [push] # yamllint disable-line rule:truthy | |
permissions: | |
checks: write | |
contents: read | |
issues: write | |
pull-requests: write | |
statuses: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
path: src | |
fetch-depth: 0 | |
- name: test-patch | |
uses: apache/yetus-test-patch-action@main | |
with: | |
basedir: ./src | |
patchdir: ./out | |
githubtoken: ${{ secrets.GITHUB_TOKEN }} | |
- name: Artifact output | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: apacheyetustestpatchactionout | |
path: ${{ github.workspace }}/out |