Skip to content

Commit

Permalink
Fix: github actions deprecated warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
pylover committed Aug 18, 2024
1 parent 8582593 commit 88a70fc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
COVERAGE: coverage
steps:
- name: Checkout code
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@5.1.1
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -41,7 +41,7 @@ jobs:
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
steps:
- name: Checkout code
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
PREFIX: /usr
steps:
- name: Checkout code
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@5.1.1
uses: actions/setup-python@5
- name: Install dependencies
run: |
git clone https://github.com/pylover/python-makelib.git make
Expand Down

0 comments on commit 88a70fc

Please sign in to comment.