Skip to content

Commit 7ffcf81

Browse files
committed
ci: bump github actions versions
1 parent 9fae6b9 commit 7ffcf81

3 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/actions/gen-report/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ runs:
44
using: "composite"
55
steps:
66
- name: Archive code coverage results
7-
uses: actions/upload-artifact@v4
7+
uses: actions/upload-artifact@v7
88
with:
99
name: ${{github.job}} HTML REPORT
1010
path: report.html
1111
- name: Generate Report
12-
uses: dorny/test-reporter@v2
12+
uses: dorny/test-reporter@v3
1313
if: success() || failure() # run this step even if previous step failed
1414
with:
1515
name: ${{github.job}} REPORT # Name of the check run which will be created

.github/actions/start-build/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ runs:
44
using: "composite"
55
steps:
66
- id: cache-objects
7-
uses: actions/cache@v4
7+
uses: actions/cache@v5
88
with:
99
path: ~/.cache
1010
key: reqs_${{ hashFiles('poetry.lock') }}
@@ -16,7 +16,7 @@ runs:
1616
with:
1717
ELASTICSEARCH6_ARCHIVE: ${{ env.ELASTICSEARCH6_ARCHIVE }}
1818
- name: Set up Python 3.12
19-
uses: actions/setup-python@v5
19+
uses: actions/setup-python@v6
2020
with:
2121
python-version: '3.12'
2222
- name: Install lxml

.github/workflows/test-build.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
build-cache:
1818
runs-on: ubuntu-22.04
1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v6
2121
- id: cache-objects
22-
uses: actions/cache@v4
22+
uses: actions/cache@v5
2323
with:
2424
path: ~/.cache
2525
key: reqs_${{ hashFiles('poetry.lock') }}
@@ -50,7 +50,7 @@ jobs:
5050
# Maps tcp port 5432 on service container to the host
5151
- 5432:5432
5252
steps:
53-
- uses: actions/checkout@v2
53+
- uses: actions/checkout@v6
5454
- uses: ./.github/actions/start-build
5555
- name: Run tests
5656
run: poetry run python3 -m invoke test-ci-addons --junit
@@ -77,7 +77,7 @@ jobs:
7777
# Maps tcp port 5432 on service container to the host
7878
- 5432:5432
7979
steps:
80-
- uses: actions/checkout@v2
80+
- uses: actions/checkout@v6
8181
- uses: ./.github/actions/start-build
8282
- name: Run tests
8383
run: poetry run python3 -m invoke test-ci-website --junit
@@ -104,7 +104,7 @@ jobs:
104104
# Maps tcp port 5432 on service container to the host
105105
- 5432:5432
106106
steps:
107-
- uses: actions/checkout@v2
107+
- uses: actions/checkout@v6
108108
- uses: ./.github/actions/start-build
109109
- name: NVM & yarn install
110110
run: poetry run python3 -m invoke assets --dev
@@ -133,7 +133,7 @@ jobs:
133133
# Maps tcp port 5432 on service container to the host
134134
- 5432:5432
135135
steps:
136-
- uses: actions/checkout@v2
136+
- uses: actions/checkout@v6
137137
- uses: ./.github/actions/start-build
138138
- name: Run tests
139139
run: poetry run python3 -m invoke test-ci-api2 --junit
@@ -161,7 +161,7 @@ jobs:
161161
# Maps tcp port 5432 on service container to the host
162162
- 5432:5432
163163
steps:
164-
- uses: actions/checkout@v2
164+
- uses: actions/checkout@v6
165165
- uses: ./.github/actions/start-build
166166
- name: Run tests
167167
run: poetry run python3 -m invoke test-ci-api3-and-osf --junit
@@ -194,7 +194,7 @@ jobs:
194194
- 1025:1025
195195
- 8025:8025
196196
steps:
197-
- uses: actions/checkout@v2
197+
- uses: actions/checkout@v6
198198
- uses: ./.github/actions/start-build
199199
- name: Run tests
200200
run: poetry run python3 -m invoke test-ci-mailhog -n 1 --junit
@@ -222,7 +222,7 @@ jobs:
222222
# Maps tcp port 5432 on service container to the host
223223
- 5432:5432
224224
steps:
225-
- uses: actions/checkout@v2
225+
- uses: actions/checkout@v6
226226
- uses: ./.github/actions/start-build
227227
- name: Run tests
228228
run: poetry run python3 -m invoke test-ci-scripts -n 1 --junit

0 commit comments

Comments
 (0)