Skip to content

Commit ab32204

Browse files
[dependabot] Bump the actions group across 1 directory with 4 updates
Bumps the actions group with 4 updates in the / directory: [actions/cache](https://github.com/actions/cache), [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/cache` from 4.2.4 to 4.3.0 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4.2.4...0057852) Updates `actions/upload-artifact` from 4.6.2 to 5.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@ea165f8...330a01c) Updates `actions/download-artifact` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@634f93c...018cc2c) Updates `github/codeql-action` from 4.30.9 to 4.31.2 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@16140ae...0499de3) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: github/codeql-action dependency-version: 4.31.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 0ba2275 commit ab32204

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.github/workflows/build-and-test.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
mv ~/.m2/repository/org/locationtech/geomesa m2-geomesa
5353
tar -czf classes.tgz $(find . -path '*/target/classes' -o -path '*/target/test-classes' -o -path '*/target/analysis' -type d | tr '\n' ' ')
5454
- name: Upload artifacts
55-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
55+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
5656
with:
5757
name: classes-and-jars-${{ matrix.scala-version }}
5858
retention-days: 1
@@ -130,14 +130,14 @@ jobs:
130130
env:
131131
MOD_SELECTOR: "${{ matrix.tests.selector }}"
132132
run: echo "MOD_SELECTOR=$(echo $MOD_SELECTOR | sed 's/[^a-zA-Z0-9_.-]/-/g' | head -c 256)" >> $GITHUB_ENV
133-
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
133+
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
134134
with:
135135
key: ${{ hashFiles('**/pom.xml') }}-unit-tests-${{ matrix.scala-version }}-${{ env.MOD_SELECTOR }}
136136
path: ~/.m2/repository/
137137
- name: Set Scala version
138138
run: ./build/scripts/change-scala-version.sh ${{ matrix.scala-version }}
139139
- name: Download artifacts
140-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
140+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
141141
with:
142142
name: classes-and-jars-${{ matrix.scala-version }}
143143
- name: Install artifacts
@@ -183,14 +183,14 @@ jobs:
183183
with:
184184
distribution: temurin
185185
java-version: "${{ env.JAVA_VERSION }}"
186-
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
186+
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
187187
with:
188188
key: ${{ hashFiles('**/pom.xml') }}-it-${{ matrix.scala-version }}
189189
path: ~/.m2/repository/
190190
- name: Set Scala version
191191
run: ./build/scripts/change-scala-version.sh ${{ matrix.scala-version }}
192192
- name: Download artifacts
193-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
193+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
194194
with:
195195
name: classes-and-jars-${{ matrix.scala-version }}
196196
- name: Install artifacts
@@ -219,14 +219,14 @@ jobs:
219219
with:
220220
distribution: temurin
221221
java-version: "${{ env.JAVA_VERSION }}"
222-
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
222+
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
223223
with:
224224
key: ${{ hashFiles('**/pom.xml') }}-spark-${{ matrix.scala-version }}
225225
path: ~/.m2/repository/
226226
- name: Set Scala version
227227
run: ./build/scripts/change-scala-version.sh ${{ matrix.scala-version }}
228228
- name: Download artifacts
229-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
229+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
230230
with:
231231
name: classes-and-jars-${{ matrix.scala-version }}
232232
- name: Install artifacts
@@ -259,14 +259,14 @@ jobs:
259259
with:
260260
distribution: temurin
261261
java-version: "${{ env.JAVA_VERSION }}"
262-
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
262+
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
263263
with:
264264
key: ${{ hashFiles('**/pom.xml') }}-assembly-${{ matrix.scala-version }}
265265
path: ~/.m2/repository/
266266
- name: Set Scala version
267267
run: ./build/scripts/change-scala-version.sh ${{ matrix.scala-version }}
268268
- name: Download artifacts
269-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
269+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
270270
with:
271271
name: classes-and-jars-${{ matrix.scala-version }}
272272
- name: Install artifacts
@@ -314,14 +314,14 @@ jobs:
314314
with:
315315
distribution: temurin
316316
java-version: "${{ env.JAVA_VERSION }}"
317-
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
317+
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
318318
with:
319319
key: ${{ hashFiles('**/pom.xml') }}-javadocs-${{ matrix.scala-version }}
320320
path: ~/.m2/repository/
321321
- name: Set Scala version
322322
run: ./build/scripts/change-scala-version.sh ${{ matrix.scala-version }}
323323
- name: Download artifacts
324-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
324+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
325325
with:
326326
name: classes-and-jars-${{ matrix.scala-version }}
327327
- name: Install artifacts
@@ -381,7 +381,7 @@ jobs:
381381
run: ./build/scripts/change-scala-version.sh ${{ matrix.scala-version }}
382382
- name: Download artifacts
383383
if: steps.pom_changes.outputs.pom_changed == 'true'
384-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
384+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
385385
with:
386386
name: classes-and-jars-${{ matrix.scala-version }}
387387
- name: Install artifacts

.github/workflows/codacy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272

7373
# Upload the SARIF file generated in the previous step
7474
- name: Upload SARIF results file
75-
uses: github/codeql-action/upload-sarif@16140ae1a102900babc80a33c44059580f687047 # v4.30.9
75+
uses: github/codeql-action/upload-sarif@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2
7676
with:
7777
sarif_file: results.sarif
7878
category: codacy-${{ matrix.tool }}

.github/workflows/scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ jobs:
5959
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
6060
# format to the repository Actions tab.
6161
- name: "Upload artifact"
62-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
62+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
6363
with:
6464
name: SARIF file
6565
path: results.sarif
6666
retention-days: 5
6767

6868
# Upload the results to GitHub's code scanning dashboard.
6969
- name: "Upload to code-scanning"
70-
uses: github/codeql-action/upload-sarif@16140ae1a102900babc80a33c44059580f687047 # v4.30.9
70+
uses: github/codeql-action/upload-sarif@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2
7171
with:
7272
sarif_file: results.sarif

0 commit comments

Comments
 (0)