Skip to content

Commit 7309b55

Browse files
authored
Merge pull request #33 from intergral/v4_actions
chore(build): update to v4 actions
2 parents 34c94a8 + df39cb5 commit 7309b55

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

.github/workflows/it_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
itTests:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313

1414
- run: |
1515
echo "${{ github.event_name }}"

.github/workflows/on_push.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
lint:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- name: Setup Python # Set Python version
1616
uses: actions/setup-python@v4
1717
with:
@@ -29,7 +29,7 @@ jobs:
2929
coverage:
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/checkout@v3
32+
- uses: actions/checkout@v4
3333
- name: Setup Python # Set Python version
3434
uses: actions/setup-python@v4
3535
with:
@@ -50,7 +50,7 @@ jobs:
5050
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
5151

5252
steps:
53-
- uses: actions/checkout@v3
53+
- uses: actions/checkout@v4
5454
- name: Setup Python # Set Python version
5555
uses: actions/setup-python@v4
5656
with:
@@ -64,7 +64,7 @@ jobs:
6464
- name: Test with pytest
6565
run: pytest tests/unit_tests --doctest-modules --junitxml=junit/test-results-${{ matrix.python-version }}.xml
6666
- name: Upload pytest test results
67-
uses: actions/upload-artifact@v3
67+
uses: actions/upload-artifact@v4
6868
with:
6969
name: pytest-results-${{ matrix.python-version }}
7070
path: junit/test-results-${{ matrix.python-version }}.xml

.github/workflows/on_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
TWINE_USER: __token__
1515
TWINE_PASSWORD: ${{ secrets.TWINE_TOKEN }}
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818

1919
- name: Set up Python
20-
uses: actions/setup-python@v3
20+
uses: actions/setup-python@v4
2121
with:
2222
python-version: '3.12'
2323

.github/workflows/pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
build:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
- uses: actions/setup-python@v4
2020
with:
2121
python-version: 3.12
2222
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
23-
- uses: actions/cache@v3
23+
- uses: actions/cache@v4
2424
with:
2525
key: mkdocs-material-${{ env.cache_id }}
2626
path: .cache

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# main (unreleased)
2+
13
# 1.1.0 (06/02/2024)
24

35
- **[CHANGE]**: change(build): add doc string check to flake8 [#14](https://github.com/intergral/deep/pull/14) [@Umaaz](https://github.com/Umaaz)

0 commit comments

Comments
 (0)