Skip to content

Commit f5bd017

Browse files
dependabot[bot]JanEricNitschke
authored andcommitted
Bump actions/upload-artifact from 4 to 5 in the actions-all group
Bumps the actions-all group with 1 update: [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-all ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent b5cfc19 commit f5bd017

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/c.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
pip install mypy
5454
stubgen -p tictactoe_c -o stubs
5555
- name: Upload stubs
56-
uses: actions/upload-artifact@v4
56+
uses: actions/upload-artifact@v5
5757
with:
5858
name: Stub-file-${{ matrix.python-version }}
5959
path: ./tictactoe_c/stubs/

.github/workflows/dart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
flutter test --coverage
4040
perl C:\ProgramData\chocolatey\lib\lcov\tools\bin\genhtml -o coverage\html coverage\lcov.info
4141
- name: Archive code coverage results
42-
uses: actions/upload-artifact@v4
42+
uses: actions/upload-artifact@v5
4343
with:
4444
name: code-coverage-report
4545
path: ./tictactoe_dart/coverage/html/

.github/workflows/go.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
go test -fuzz=FuzzRandomMove -fuzztime 30s
4444
go test -fuzz=FuzzMinMax -fuzztime 60s
4545
- name: Archive code coverage results
46-
uses: actions/upload-artifact@v4
46+
uses: actions/upload-artifact@v5
4747
with:
4848
name: code-coverage-report-${{ matrix.go-version }}
4949
path: ./tictactoe_go/coverage.html

.github/workflows/haskell.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Test
2727
run: cabal test --enable-coverage
2828
- name: Archive code coverage results
29-
uses: actions/upload-artifact@v4
29+
uses: actions/upload-artifact@v5
3030
with:
3131
name: code-coverage-report
3232
path: ./tictactoe_haskell/dist-newstyle/build/x86_64-linux/ghc-9.10.1/tictactoe-haskell-0.1.0.0/t/testing-tictactoe/hpc/vanilla/html

.github/workflows/kotlin.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run: ./gradlew lint
4040

4141
- name: Generate lint report
42-
uses: actions/upload-artifact@v4
42+
uses: actions/upload-artifact@v5
4343
with: # Define extra parameters
4444
name: lint_report.html # Name of the artifact to be uploaded
4545
path: tictactoe_kotlin/app/build/reports/ # Specifies the path where the artifact to be uploaded is located
@@ -50,7 +50,7 @@ jobs:
5050

5151
# Generates tests reports as an artifact
5252
- name: Generate test report
53-
uses: actions/upload-artifact@v4
53+
uses: actions/upload-artifact@v5
5454
with:
5555
name: unit_tests_report.html
5656
path: tictactoe_kotlin/app/build/reports/tests/testDebugUnitTest/
@@ -90,7 +90,7 @@ jobs:
9090
script: ./gradlew connectedCheck
9191
# Generates tests reports as an artifact
9292
- name: Generate test report
93-
uses: actions/upload-artifact@v4
93+
uses: actions/upload-artifact@v5
9494
with:
9595
name: android_tests_report.html
9696
path: tictactoe_kotlin/app/build/reports/androidTests/connected

.github/workflows/python.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
uv run coverage json
5050
uv run coverage html
5151
- name: Archive code coverage results
52-
uses: actions/upload-artifact@v4
52+
uses: actions/upload-artifact@v5
5353
with:
5454
name: code-coverage-report-${{ matrix.python-version }}
5555
path: ./tictactoe_python/htmlcov/

0 commit comments

Comments
 (0)