Skip to content

Commit

Permalink
Merge pull request #707 from oduwsdl/issue-706
Browse files Browse the repository at this point in the history
Update Action dependencies
  • Loading branch information
ibnesayeed authored Jul 23, 2020
2 parents 9334ace + 443262a commit 5822a1f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
name: Docker Image
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v2
- id: imgtagger
run: |
imgtags=$(echo "${{ github.ref }}" | sed 's/refs\/tags\//latest,/; s/refs\/heads\///')
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/comment-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code (Deep)
uses: actions/checkout@master
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up IPFS and Rub Daemon
uses: ibnesayeed/setup-ipfs@master
with:
run_daemon: true
- name: Set up Python
uses: actions/setup-python@master
uses: actions/setup-python@v2
- name: Install Test Dependencies
run: pip install -r test-requirements.txt
- name: Install IPWB from Source
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
name: Build and Publish Package
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@master
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Upgrade setuptools and wheel
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
name: Py and JS
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v2
- name: Lint JavaScript
run: |
npm install standard
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} Py-${{ matrix.python }} IPFS-${{ matrix.ipfs }}
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@master
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Set up IPFS ${{ matrix.ipfs }}
Expand Down

0 comments on commit 5822a1f

Please sign in to comment.