Skip to content

Commit 507b85f

Browse files
Bump the github-actions group with 3 updates (#480)
Bumps the github-actions group with 3 updates: [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/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.0 - [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...4e94bd1) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: github/codeql-action dependency-version: 4.31.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 93e5a4b commit 507b85f

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/part_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
env:
6666
ATTESTATION: "${{ steps.attest-docs-provenance.outputs.bundle-path }}"
6767

68-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
68+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
6969
with:
7070
name: docs
7171
path: docs.tar.gz*

.github/workflows/part_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
${{ inputs.releaseName }}
5353
5454
- name: "Download Docs Artifact"
55-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
55+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
5656
with:
5757
name: docs
5858
path: .

.github/workflows/part_test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ jobs:
145145
eunit-${{ runner.os }}-${{ steps.setupBEAM.outputs.otp-version }}-
146146
- run: rebar3 eunit --cover --cover_export_name "eunit-${{ steps.setupBEAM.outputs.otp-version }}"
147147
continue-on-error: ${{ matrix.name == 'master' }}
148-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
148+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
149149
if: "${{ matrix.name == 'latest' }}"
150150
with:
151151
name: eunit-coverage-${{ matrix.otp }}
@@ -193,7 +193,7 @@ jobs:
193193
ct-${{ runner.os }}-${{ steps.setupBEAM.outputs.otp-version }}-
194194
- run: rebar3 ct --cover --cover_export_name "ct-${{ steps.setupBEAM.outputs.otp-version }}"
195195
continue-on-error: ${{ matrix.name == 'master' }}
196-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
196+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
197197
if: "${{ matrix.name == 'latest' }}"
198198
with:
199199
name: ct-coverage-${{ matrix.otp }}
@@ -252,7 +252,7 @@ jobs:
252252
- run: mix deps.get
253253
- run: mix test --cover --export-coverage "mix_test-${{ steps.setupBEAM.outputs.elixir-version }}"
254254
continue-on-error: ${{ matrix.name == 'main' }}
255-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
255+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
256256
if: "${{ matrix.name == 'latest' }}"
257257
with:
258258
name: mix_test-coverage-${{ matrix.elixir }}
@@ -283,7 +283,7 @@ jobs:
283283
key: mix_test_coverage-${{ runner.os }}-${{ steps.setupBEAM.outputs.otp-version }}-${{ steps.setupBEAM.outputs.elixir-version }}-${{ hashFiles('mix.exs') }}
284284
restore-keys: |
285285
mix_test_coverage-${{ runner.os }}-${{ steps.setupBEAM.outputs.otp-version }}-${{ steps.setupBEAM.outputs.elixir-version }}-
286-
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
286+
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
287287
with:
288288
path: artifacts
289289
- name: Unpack Artifacts
@@ -299,7 +299,7 @@ jobs:
299299
mix_test_coverage-deps-${{ runner.os }}-${{ steps.setupBEAM.outputs.otp-version }}-${{ steps.setupBEAM.outputs.elixir-version }}-
300300
- run: mix deps.get
301301
- run: mix test.coverage
302-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
302+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
303303
with:
304304
name: coverage-report
305305
path: cover
@@ -329,7 +329,7 @@ jobs:
329329
key: cover-${{ runner.os }}-${{ steps.setupBEAM.outputs.otp-version }}-${{ hashFiles('rebar.config') }}
330330
restore-keys: |
331331
cover-${{ runner.os }}-${{ steps.setupBEAM.outputs.otp-version }}-
332-
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
332+
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
333333
with:
334334
path: artifacts
335335
- name: Unpack Artifacts
@@ -404,7 +404,7 @@ jobs:
404404
- run: mix deps.compile
405405
- run: mix credo --format sarif > results.sarif
406406
- name: Upload SARIF file
407-
uses: github/codeql-action/upload-sarif@16140ae1a102900babc80a33c44059580f687047 # v3.29.5
407+
uses: github/codeql-action/upload-sarif@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v3.29.5
408408
with:
409409
sarif_file: results.sarif
410410
category: credo
@@ -526,7 +526,7 @@ jobs:
526526
env:
527527
TMP: ${{ runner.temp }}
528528

529-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
529+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
530530
with:
531531
name: certification-plug
532532
path: "${{ runner.temp }}/certification_out"

.github/workflows/scorecards.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ jobs:
6868
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
6969
# format to the repository Actions tab.
7070
- name: "Upload artifact"
71-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
71+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
7272
with:
7373
name: SARIF file
7474
path: results.sarif
7575
retention-days: 5
7676

7777
# Upload the results to GitHub's code scanning dashboard.
7878
- name: "Upload to code-scanning"
79-
uses: github/codeql-action/upload-sarif@16140ae1a102900babc80a33c44059580f687047 # v3.29.5
79+
uses: github/codeql-action/upload-sarif@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v3.29.5
8080
with:
8181
sarif_file: results.sarif

0 commit comments

Comments
 (0)