Skip to content

Commit ce0eb58

Browse files
Bump the github-actions group with 3 updates
Bumps the github-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/checkout` from 1 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v1...v4) Updates `actions/upload-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v3...v4) Updates `github/codeql-action` from 2 to 3 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 202965c commit ce0eb58

20 files changed

+21
-21
lines changed

.github/workflows/alpine.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- riscv64
1919
steps:
2020
- name: Checkout repository
21-
uses: actions/checkout@v1
21+
uses: actions/checkout@v4
2222

2323
- name: Install latest Alpine Linux for ${{ matrix.arch }}
2424
uses: jirutka/setup-alpine@v1

.github/workflows/amalgamate-ubuntu20.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
ubuntu-build:
77
runs-on: ubuntu-20.04
88
steps:
9-
- uses: actions/checkout@v3
9+
- uses: actions/checkout@v4
1010
- name: Compile with amalgamation
1111
run: |
1212
mkdir build &&

.github/workflows/cifuzz.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ jobs:
2020
fuzz-seconds: 300
2121
output-sarif: true
2222
- name: Upload Crash
23-
uses: actions/upload-artifact@v3
23+
uses: actions/upload-artifact@v4
2424
if: failure() && steps.build.outcome == 'success'
2525
with:
2626
name: artifacts
2727
path: ./out/artifacts
2828
- name: Upload Sarif
2929
if: always() && steps.build.outcome == 'success'
30-
uses: github/codeql-action/upload-sarif@v2
30+
uses: github/codeql-action/upload-sarif@v3
3131
with:
3232
# Path to SARIF file relative to the root of the repository
3333
sarif_file: cifuzz-sarif/results.sarif

.github/workflows/lint_and_format_check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
lint-and-format:
2525
runs-on: ubuntu-latest
2626
steps:
27-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
27+
- uses: actions/checkout@9a9194f87191a7e9055e3e9b95b8cfb13023bb08 # v4.1.7
2828

2929
- name: Run clang-format
3030
uses: jidicula/clang-format-action@c74383674bf5f7c69f60ce562019c1c94bc1421a # v4.13.0

.github/workflows/msys2-clang.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
CMAKE_GENERATOR: Ninja
2424

2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727
- uses: msys2/setup-msys2@v2
2828
with:
2929
update: true

.github/workflows/msys2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
CMAKE_GENERATOR: Ninja
3030

3131
steps:
32-
- uses: actions/checkout@v3
32+
- uses: actions/checkout@v4
3333
- uses: msys2/setup-msys2@v2
3434
with:
3535
update: true

.github/workflows/on-release.yml

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

1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020

2121
- name: Amalgamate fast_float.h
2222
run: |

.github/workflows/s390x.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
build:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- uses: uraimo/run-on-arch-action@v2
1717
name: Test
1818
id: runcmd

.github/workflows/ubuntu20-cxx20.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212
- name: Use cmake
1313
run: |
1414
mkdir build &&

.github/workflows/ubuntu20-fastmath.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
ubuntu-build:
77
runs-on: ubuntu-20.04
88
steps:
9-
- uses: actions/checkout@v3
9+
- uses: actions/checkout@v4
1010
- name: Use cmake
1111
run: |
1212
mkdir build &&

0 commit comments

Comments
 (0)