Skip to content

Commit 081554a

Browse files
Bump the github-actions group with 3 updates (#14)
Bumps the github-actions group with 3 updates: [actions/cache](https://github.com/actions/cache), [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.3 to 4.2.4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@5a3ec84...0400d5f) Updates `actions/download-artifact` from 4.3.0 to 5.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@d3f86a1...634f93c) Updates `github/codeql-action` from 3.29.7 to 3.29.8 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@51f7732...76621b6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 4.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: github/codeql-action dependency-version: 3.29.8 dependency-type: direct:production update-type: version-update:semver-patch 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 103b29d commit 081554a

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/part_docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ jobs:
4040
with:
4141
version-file: .tool-versions
4242
version-type: strict
43-
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
43+
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
4444
with:
4545
path: deps
4646
key: deps-${{ runner.os }}test-${{ steps.setupBEAM.outputs.elixir-version }}-${{ steps.setupBEAM.outputs.otp-version }}-${{ hashFiles('mix.lock') }}
4747
restore-keys: |
4848
deps-${{ runner.os }}test-${{ steps.setupBEAM.outputs.elixir-version }}-${{ steps.setupBEAM.outputs.otp-version }}-
4949
- run: mix deps.get
50-
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
50+
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
5151
with:
5252
path: _build/dev
5353
key: compile-${{ env.MIX_ENV }}-${{ runner.os }}test-${{ steps.setupBEAM.outputs.elixir-version }}-${{ steps.setupBEAM.outputs.otp-version }}-${{ hashFiles('mix.lock') }}

.github/workflows/part_publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ jobs:
3333
with:
3434
version-file: .tool-versions
3535
version-type: strict
36-
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
36+
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
3737
with:
3838
path: _build
3939
key: mix_hex_publish-build-${{ runner.os }}-${{ steps.setupBEAM.outputs.otp-version }}-${{ hashFiles('mix.exs') }}
4040
restore-keys: |
4141
mix_hex_publish-build-${{ runner.os }}-${{ steps.setupBEAM.outputs.otp-version }}-
42-
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
42+
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
4343
with:
4444
path: deps
4545
key: mix_hex_publish-deps-${{ runner.os }}-${{ steps.setupBEAM.outputs.otp-version }}-${{ hashFiles('mix.exs') }}

.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@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
55+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
5656
with:
5757
name: docs
5858
path: .

.github/workflows/part_test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
with:
5555
version-file: .tool-versions
5656
version-type: strict
57-
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
57+
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
5858
with:
5959
path: |-
6060
deps
@@ -103,7 +103,7 @@ jobs:
103103
with:
104104
otp-version: ${{ matrix.otp }}
105105
elixir-version: ${{ matrix.elixir }}
106-
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
106+
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
107107
with:
108108
path: |-
109109
deps
@@ -147,7 +147,7 @@ jobs:
147147
with:
148148
version-file: .tool-versions
149149
version-type: strict
150-
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
150+
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
151151
with:
152152
path: |-
153153
deps
@@ -160,7 +160,7 @@ jobs:
160160
- run: mix compile --warning-as-errors
161161
- run: mix credo --strict --format sarif > results.sarif
162162
- name: Upload SARIF file
163-
uses: github/codeql-action/upload-sarif@51f77329afa6477de8c49fc9c7046c15b9a4e79d # v3.29.5
163+
uses: github/codeql-action/upload-sarif@76621b61decf072c1cee8dd1ce2d2a82d33c17ed # v3.29.5
164164
with:
165165
sarif_file: results.sarif
166166
category: credo
@@ -185,7 +185,7 @@ jobs:
185185
with:
186186
version-file: .tool-versions
187187
version-type: strict
188-
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
188+
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
189189
with:
190190
path: |-
191191
deps

.github/workflows/scorecards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,6 @@ jobs:
7676

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

0 commit comments

Comments
 (0)