Skip to content

Commit 79c8b40

Browse files
Bump the github-actions group across 1 directory with 2 updates
Bumps the github-actions group with 2 updates in the / directory: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/checkout](https://github.com/actions/checkout). Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 154f891 commit 79c8b40

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/fuzz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
fuzz-seconds: 600
2525
dry-run: false
2626
- name: Upload Crash
27-
uses: actions/upload-artifact@v4
27+
uses: actions/upload-artifact@v5
2828
if: failure() && steps.build.outcome == 'success'
2929
with:
3030
name: artifacts

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
lint:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
- run: ./scripts/clang-format-check
1515

1616
autotools:
@@ -25,7 +25,7 @@ jobs:
2525
steps:
2626
- if: ${{runner.os == 'macOS'}}
2727
run: brew install autoconf automake libtool
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
- run: autoreconf -fi
3030
- env:
3131
CC: ${{ matrix.cc }}
@@ -50,7 +50,7 @@ jobs:
5050
runs-on: ${{matrix.os}}
5151

5252
steps:
53-
- uses: actions/checkout@v4
53+
- uses: actions/checkout@v5
5454
- env:
5555
CC: ${{matrix.cc}}
5656
run: cmake .
@@ -60,7 +60,7 @@ jobs:
6060
valgrind:
6161
runs-on: ubuntu-latest
6262
steps:
63-
- uses: actions/checkout@v4
63+
- uses: actions/checkout@v5
6464
- run: sudo apt update && sudo apt install valgrind
6565
- run: cmake -DJANSSON_TEST_WITH_VALGRIND=ON .
6666
- run: cmake --build .

0 commit comments

Comments
 (0)