Skip to content

Commit 88f2faf

Browse files
committed
Update internal actions
1 parent 32fb555 commit 88f2faf

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/release-new-action-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Update the ${{ env.TAG_NAME }} tag
24-
uses: actions/publish-action@v0.2.0
24+
uses: actions/publish-action@v0.3.0
2525
with:
2626
source-tag: ${{ env.TAG_NAME }}

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
# setup CWL runner
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414
- name: Setup python for cwltool
15-
uses: actions/setup-python@v4
15+
uses: actions/setup-python@v5
1616
with:
17-
python-version: '3.9.x'
17+
python-version: '3.12.x'
1818
- name: Install cwltool
1919
run: pip install cwltool
20-
- uses: actions/setup-node@v3
20+
- uses: actions/setup-node@v4
2121
with:
22-
node-version: '18.x'
22+
node-version: '20.x'
2323

2424
- name: Run tests
2525
id: run-tests

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ runs:
3838
steps:
3939
- name: Setup Python for testing
4040
if: ${{ inputs.skip-python-install == 'false' }}
41-
uses: actions/setup-python@v4
41+
uses: actions/setup-python@v5
4242
with:
43-
python-version: '3.9.x'
43+
python-version: '3.12.x'
4444
- name: Install cwltest
4545
shell: bash
4646
run: pip install cwltest

0 commit comments

Comments
 (0)