Skip to content

Commit

Permalink
[CI] Fix deprecation warnings (#685)
Browse files Browse the repository at this point in the history
  • Loading branch information
gvnnz committed Aug 15, 2024
1 parent 035fb35 commit 1477f1f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
timeout-minutes: 60
steps:
- name: Download repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: recursive

Expand All @@ -35,7 +35,7 @@ jobs:
timeout-minutes: 60
steps:
- name: Download repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: recursive

Expand All @@ -61,7 +61,7 @@ jobs:
timeout-minutes: 60
steps:
- name: Download repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: recursive

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
needs: create-release
steps:
- name: Download repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: recursive

Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
needs: create-release
steps:
- name: Download repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: recursive

Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
needs: create-release
steps:
- name: Download repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: recursive

Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
if: github.ref_type == 'tag' # This job needs a tag for the make-src.py script
steps:
- name: Download repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Make source package
run: python3 ./.github/scripts/make-src.py ${{ github.ref_name }}
Expand Down

0 comments on commit 1477f1f

Please sign in to comment.