Bump the github-actions group with 5 updates
Bumps the github-actions group with 5 updates:
| Package | From | To |
| --- | --- | --- |
| [nttld/setup-ndk](https://github.com/nttld/setup-ndk) | `1.4.1` | `1.4.2` |
| [actions/setup-java](https://github.com/actions/setup-java) | `3.13.0` | `4.0.0` |
| [android-actions/setup-android](https://github.com/android-actions/setup-android) | `3.0.0` | `3.2.0` |
| [RafikFarhad/clang-format-github-action](https://github.com/rafikfarhad/clang-format-github-action) | `3.0.0` | `3.2.0` |
| [github/codeql-action](https://github.com/github/codeql-action) | `2.22.5` | `2.22.8` |
Updates `nttld/setup-ndk` from 1.4.1 to 1.4.2
- [Release notes](https://github.com/nttld/setup-ndk/releases)
- [Commits](https://github.com/nttld/setup-ndk/compare/3354316c3285ea90da09d047280dd79d00d5a37a...6a7e9c5494a25c4842ca1011f710300132eacd94)
Updates `actions/setup-java` from 3.13.0 to 4.0.0
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](https://github.com/actions/setup-java/compare/0ab4596768b603586c0de567f2430c30f5b0d2b0...387ac29b308b003ca37ba93a6cab5eb57c8f5f93)
Updates `android-actions/setup-android` from 3.0.0 to 3.2.0
- [Release notes](https://github.com/android-actions/setup-android/releases)
- [Commits](https://github.com/android-actions/setup-android/compare/13f81365a437096ca29f87b1e7389bf0ea1385ed...07976c6290703d34c16d382cb36445f98bb43b1f)
Updates `RafikFarhad/clang-format-github-action` from 3.0.0 to 3.2.0
- [Release notes](https://github.com/rafikfarhad/clang-format-github-action/releases)
- [Commits](https://github.com/rafikfarhad/clang-format-github-action/compare/0061b39593fe96f861c3aefcf1aff084d42744e1...4a04d8e72a661766278abf214ed995bf6bdf0b8f)
Updates `github/codeql-action` from 2.22.5 to 2.22.8
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/74483a38d39275f33fcff5f35b679b5ca4a26a99...407ffafae6a767df3e0230c3df91b6443ae8df75)
---
updated-dependencies:
- dependency-name: nttld/setup-ndk
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: github-actions
- dependency-name: actions/setup-java
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: github-actions
- dependency-name: android-actions/setup-android
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: github-actions
- dependency-name: RafikFarhad/clang-format-github-action
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: github-actions
- dependency-name: github/codeql-action
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: github-actions
...
Signed-off-by: dependabot[bot] <support@github.com>
diff --git a/.github/workflows/ci-android-emulator-tests.yml b/.github/workflows/ci-android-emulator-tests.yml
index d5bff90..644fe54 100644
--- a/.github/workflows/ci-android-emulator-tests.yml
+++ b/.github/workflows/ci-android-emulator-tests.yml
@@ -25,7 +25,7 @@
- name: Checkout the repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Download and Setup the Android NDK
- uses: nttld/setup-ndk@3354316c3285ea90da09d047280dd79d00d5a37a # v1.4.1
+ uses: nttld/setup-ndk@6a7e9c5494a25c4842ca1011f710300132eacd94 # v1.4.2
id: setup-ndk
with:
# r25c is the same as 25.2.9519653.
@@ -52,7 +52,7 @@
working-directory: ext
run: bash libyuv_android.sh ${{ steps.setup-ndk.outputs.ndk-path }}
- name: Setup JDK
- uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0
+ uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4.0.0
with:
java-version: '11'
distribution: 'zulu'
diff --git a/.github/workflows/ci-android-jni.yml b/.github/workflows/ci-android-jni.yml
index 108e00c..a5a9ffb 100644
--- a/.github/workflows/ci-android-jni.yml
+++ b/.github/workflows/ci-android-jni.yml
@@ -19,7 +19,7 @@
- name: Checkout the repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Download and Setup the Android NDK
- uses: nttld/setup-ndk@3354316c3285ea90da09d047280dd79d00d5a37a # v1.4.1
+ uses: nttld/setup-ndk@6a7e9c5494a25c4842ca1011f710300132eacd94 # v1.4.2
id: setup-ndk
with:
# r25c is the same as 25.2.9519653.
@@ -46,12 +46,12 @@
working-directory: ext
run: bash libyuv_android.sh ${{ steps.setup-ndk.outputs.ndk-path }}
- name: Setup JDK
- uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0
+ uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4.0.0
with:
distribution: "zulu"
java-version: 17
- name: Download and Setup the Android SDK
- uses: android-actions/setup-android@13f81365a437096ca29f87b1e7389bf0ea1385ed # v3.0.0
+ uses: android-actions/setup-android@07976c6290703d34c16d382cb36445f98bb43b1f # v3.2.0
- name: Install CMake in the Android SDK
# This is the same version of cmake that is found in build.gradle. This
# will be used to build libavif and the JNI bindings.
diff --git a/.github/workflows/clang-format-check.yml b/.github/workflows/clang-format-check.yml
index b038fa2..2a27fd2 100644
--- a/.github/workflows/clang-format-check.yml
+++ b/.github/workflows/clang-format-check.yml
@@ -14,7 +14,7 @@
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- - uses: RafikFarhad/clang-format-github-action@0061b39593fe96f861c3aefcf1aff084d42744e1 # v3.0.0
+ - uses: RafikFarhad/clang-format-github-action@4a04d8e72a661766278abf214ed995bf6bdf0b8f # v3.2.0
with:
style: file
sources: "apps/*.c,apps/**/*.h,apps/**/*.c,examples/*.c,include/avif/*.h,src/*.c,tests/*.c,tests/**/*.h,tests/**/*.cc"
diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml
index a55c16f..abe33b5 100644
--- a/.github/workflows/scorecard.yml
+++ b/.github/workflows/scorecard.yml
@@ -60,6 +60,6 @@
# Upload the results to GitHub's code scanning dashboard.
- name: "Upload to code-scanning"
- uses: github/codeql-action/upload-sarif@74483a38d39275f33fcff5f35b679b5ca4a26a99 # v2.22.5
+ uses: github/codeql-action/upload-sarif@407ffafae6a767df3e0230c3df91b6443ae8df75 # v2.22.8
with:
sarif_file: results.sarif