Skip to content

Commit 3289dd3

Browse files
authored
Merge pull request #224 from nicolasbock/workflows
Upgrade workflow actions
2 parents f87b6e2 + ebdce23 commit 3289dd3

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ jobs:
3737
python_version: ${{ matrix.python-version }}
3838

3939
- name: Check out sources
40-
uses: actions/checkout@v3
40+
uses: actions/checkout@v4
4141
with:
4242
fetch-depth: 0
4343

4444
- name: Set up Python
45-
uses: actions/setup-python@v4
45+
uses: actions/setup-python@v5
4646
with:
4747
python-version: ${{ matrix.python-version }}
4848

@@ -53,7 +53,7 @@ jobs:
5353
run: tox -e ${{ env.tox_environment }}
5454

5555
- name: Archive test results
56-
uses: actions/upload-artifact@v2
56+
uses: actions/upload-artifact@v4
5757
with:
5858
name: test log (${{ env.tox_environment }})
5959
path: .tox/${{ env.tox_environment }}/log
@@ -64,7 +64,7 @@ jobs:
6464
if: ${{ matrix.python-version == '3.10' }}
6565

6666
- name: Archive bandit results
67-
uses: actions/upload-artifact@v2
67+
uses: actions/upload-artifact@v4
6868
with:
6969
name: bandit log
7070
path: .tox/bandit/log

.github/workflows/flatpak.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717

1818
- name: Check out sources
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v4
2020

2121
- name: Set up flatpak build tools
2222
run: |

.github/workflows/functional.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
name: Functional testing
1616
steps:
1717
- name: Check out sources
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919
with:
2020
fetch-depth: 0
2121

2222
- name: Set up Python
23-
uses: actions/setup-python@v4
23+
uses: actions/setup-python@v5
2424
with:
2525
python-version: '3.10'
2626

@@ -51,7 +51,7 @@ jobs:
5151
run: docker ps --all
5252

5353
- name: Archive test results
54-
uses: actions/upload-artifact@v2
54+
uses: actions/upload-artifact@v4
5555
with:
5656
name: ebuildtester log
5757
path: |

.github/workflows/publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
steps:
1515

1616
- name: Check out sources
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
2020

2121
- name: Set up Python
22-
uses: actions/setup-python@v4
22+
uses: actions/setup-python@v5
2323
with:
2424
python-version: '3.10'
2525

.github/workflows/stale.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
stale:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/stale@v5
14+
- uses: actions/stale@v9
1515
with:
1616
stale-issue-message: >-
1717
This issue is stale because it has been open for 90 days with no

0 commit comments

Comments
 (0)