Skip to content

Commit 2ba2dfc

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] <[email protected]>
1 parent 9a1e059 commit 2ba2dfc

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
@@ -51,7 +51,7 @@ jobs:
5151
mv ~/.m2/repository/org/locationtech/geomesa m2-geomesa
5252
tar -czf classes.tgz $(find . -path '*/target/classes' -o -path '*/target/test-classes' -o -path '*/target/analysis' -type d | tr '\n' ' ')
5353
- name: Upload artifacts
54-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
54+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
5555
with:
5656
name: classes-and-jars-${{ matrix.scala-version }}
5757
retention-days: 1
@@ -129,14 +129,14 @@ jobs:
129129
env:
130130
MOD_SELECTOR: "${{ matrix.tests.selector }}"
131131
run: echo "MOD_SELECTOR=$(echo $MOD_SELECTOR | sed 's/[^a-zA-Z0-9_.-]/-/g' | head -c 256)" >> $GITHUB_ENV
132-
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
132+
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
133133
with:
134134
key: ${{ hashFiles('**/pom.xml') }}-unit-tests-${{ matrix.scala-version }}-${{ env.MOD_SELECTOR }}
135135
path: ~/.m2/repository/
136136
- name: Set Scala version
137137
run: ./build/scripts/change-scala-version.sh ${{ matrix.scala-version }}
138138
- name: Download artifacts
139-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
139+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
140140
with:
141141
name: classes-and-jars-${{ matrix.scala-version }}
142142
- name: Install artifacts
@@ -182,14 +182,14 @@ jobs:
182182
with:
183183
distribution: temurin
184184
java-version: "${{ env.JAVA_VERSION }}"
185-
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
185+
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
186186
with:
187187
key: ${{ hashFiles('**/pom.xml') }}-it-${{ matrix.scala-version }}
188188
path: ~/.m2/repository/
189189
- name: Set Scala version
190190
run: ./build/scripts/change-scala-version.sh ${{ matrix.scala-version }}
191191
- name: Download artifacts
192-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
192+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
193193
with:
194194
name: classes-and-jars-${{ matrix.scala-version }}
195195
- 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
@@ -261,14 +261,14 @@ jobs:
261261
with:
262262
distribution: temurin
263263
java-version: "${{ env.JAVA_VERSION }}"
264-
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
264+
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
265265
with:
266266
key: ${{ hashFiles('**/pom.xml') }}-assembly-${{ matrix.scala-version }}
267267
path: ~/.m2/repository/
268268
- name: Set Scala version
269269
run: ./build/scripts/change-scala-version.sh ${{ matrix.scala-version }}
270270
- name: Download artifacts
271-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
271+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
272272
with:
273273
name: classes-and-jars-${{ matrix.scala-version }}
274274
- name: Install artifacts
@@ -316,14 +316,14 @@ jobs:
316316
with:
317317
distribution: temurin
318318
java-version: "${{ env.JAVA_VERSION }}"
319-
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
319+
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
320320
with:
321321
key: ${{ hashFiles('**/pom.xml') }}-javadocs-${{ matrix.scala-version }}
322322
path: ~/.m2/repository/
323323
- name: Set Scala version
324324
run: ./build/scripts/change-scala-version.sh ${{ matrix.scala-version }}
325325
- name: Download artifacts
326-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
326+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
327327
with:
328328
name: classes-and-jars-${{ matrix.scala-version }}
329329
- name: Install artifacts
@@ -383,7 +383,7 @@ jobs:
383383
run: ./build/scripts/change-scala-version.sh ${{ matrix.scala-version }}
384384
- name: Download artifacts
385385
if: steps.pom_changes.outputs.pom_changed == 'true'
386-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
386+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
387387
with:
388388
name: classes-and-jars-${{ matrix.scala-version }}
389389
- 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)