Skip to content

Commit 8c488c0

Browse files
committed
Update dependencies
1 parent 07c4da0 commit 8c488c0

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
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.1
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
@@ -9,16 +9,16 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
# setup CWL runner
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- name: Setup python for cwltool
14-
uses: actions/setup-python@v4
14+
uses: actions/setup-python@v5
1515
with:
16-
python-version: '3.9.x'
16+
python-version: '3.12.x'
1717
- name: Install cwltool
1818
run: pip install cwltool
19-
- uses: actions/setup-node@v3
19+
- uses: actions/setup-node@v4
2020
with:
21-
node-version: '18.x'
21+
node-version: '20.x'
2222

2323
- name: Run conformance tests
2424
id: run-conformance

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,16 @@ runs:
5858
echo "repo=${baseOwner}/${repo}" >> $GITHUB_OUTPUT
5959
env:
6060
cwlVersion: ${{ inputs.cwlVersion }}
61-
- uses: actions/checkout@v3
61+
- uses: actions/checkout@v4
6262
with:
6363
repository: ${{ steps.get-cwl-repository.outputs.repo }}
6464
ref: main
6565
path: cwl-run-conformance-${{ inputs.cwlVersion }}
6666
- name: Setup Python for testing
6767
if: ${{ inputs.skip-python-install == 'false' }}
68-
uses: actions/setup-python@v4
68+
uses: actions/setup-python@v5
6969
with:
70-
python-version: '3.9.x'
70+
python-version: '3.12.x'
7171
- name: Install cwltest
7272
shell: bash
7373
run: pip install cwltest

0 commit comments

Comments
 (0)