Skip to content

Commit bb2048e

Browse files
authored
chore: bump actions, set dependabot config and default eol (#225)
* chore: bump actions, set dependabot config and default eol Signed-off-by: K.B.Dharun Krishna <[email protected]> * fix: move gitattributes file to correct path Signed-off-by: K.B.Dharun Krishna <[email protected]> --------- Signed-off-by: K.B.Dharun Krishna <[email protected]>
1 parent 7d15d2c commit bb2048e

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "monthly"

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v4
1616

1717
- name: Set up Python
18-
uses: actions/setup-python@v4
18+
uses: actions/setup-python@v5
1919
with:
2020
python-version: '3.8'
2121

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ jobs:
88

99
strategy:
1010
matrix:
11-
python-version: ['3.8', '3.9', '3.10', '3.11', 'pypy3.9', 'pypy3.10']
11+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.9', 'pypy3.10']
1212

1313
steps:
1414
- uses: actions/checkout@v4
1515

1616
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v4
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020

@@ -63,7 +63,7 @@ jobs:
6363
id: snapcraft-build
6464
with:
6565
snapcraft-args: "-v"
66-
- uses: actions/upload-artifact@v3
66+
- uses: actions/upload-artifact@v4
6767
with:
6868
name: ${{ steps.snapcraft-build.outputs.snap }}
6969
path: ${{ steps.snapcraft-build.outputs.snap }}

0 commit comments

Comments
 (0)