Bump actions/setup-python from 5 to 6 #54
Workflow file for this run
This file contains hidden or 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: Test Action | |
| on: [push, pull_request] | |
| jobs: | |
| generate_data: | |
| runs-on: ubuntu-latest | |
| name: Generate version data | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Generate version data using local action | |
| uses: ./ | |
| - name: Check file contents | |
| run: | | |
| printf "Contents of chart.md:\n" | |
| cat chart.md | |
| printf "\n\n" | |
| printf "Contents of schedule.json:\n" | |
| cat schedule.json | |
| printf "\n\n" | |
| printf "Contents of schedule.md:\n" | |
| cat schedule.md | |
| printf "\n\n" | |
| - name: Remove generated files | |
| run: | | |
| printf "Removing generated files...\n" | |
| rm -f chart.md schedule.json schedule.md | |
| ls -R | |
| - uses: actions/download-artifact@v5 | |
| with: | |
| name: spec-zero-versions | |
| - name: Display structure of downloaded files | |
| run: ls -R |