Skip to content

Commit

Permalink
Merge pull request #837 from oduwsdl/issue-789-b
Browse files Browse the repository at this point in the history
Update Action versions to rm most deprecation warnings
  • Loading branch information
machawk1 authored Jun 26, 2024
2 parents 78716f4 + 92be84d commit 4e98da2
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:
runs-on: ubuntu-latest
name: Docker Image
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- id: imgtagger
run: |
imgtags=$(echo "${{ github.ref }}" | sed 's/refs\/tags\//latest,/; s/refs\/heads\///')
echo "::set-output name=imgtags::$imgtags"
- name: Build and Push to DockerHub
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
Expand Down
6 changes: 3 additions & 3 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@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up IPFS and Rub Daemon
uses: ibnesayeed/setup-ipfs@master
uses: oduwsdl/setup-ipfs@main
with:
run_daemon: true
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
- 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-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v4
uses: actions/setup-python@v5
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@v3
- uses: actions/checkout@v4
- name: Lint JavaScript
run: |
npm install standard
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Extract Repo Attributes
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ jobs:
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} Py-${{ matrix.python }} IPFS-${{ matrix.ipfs }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Set up IPFS ${{ matrix.ipfs }}
uses: ibnesayeed/setup-ipfs@master
uses: oduwsdl/setup-ipfs@main
with:
ipfs_version: ${{ matrix.ipfs }}
run_daemon: true
Expand Down

0 comments on commit 4e98da2

Please sign in to comment.