Skip to content

Commit

Permalink
Update internal actions
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-tan committed Mar 29, 2024
1 parent 32fb555 commit 88f2faf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-new-action-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Update the ${{ env.TAG_NAME }} tag
uses: actions/publish-action@v0.2.0
uses: actions/publish-action@v0.3.0
with:
source-tag: ${{ env.TAG_NAME }}
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ jobs:
runs-on: ubuntu-latest
steps:
# setup CWL runner
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup python for cwltool
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.9.x'
python-version: '3.12.x'
- name: Install cwltool
run: pip install cwltool
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: '18.x'
node-version: '20.x'

- name: Run tests
id: run-tests
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ runs:
steps:
- name: Setup Python for testing
if: ${{ inputs.skip-python-install == 'false' }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.9.x'
python-version: '3.12.x'
- name: Install cwltest
shell: bash
run: pip install cwltest
Expand Down

0 comments on commit 88f2faf

Please sign in to comment.