Skip to content

Commit 7cffee7

Browse files
Bump the actions group with 4 updates (#228)
Bumps the actions group with 4 updates: [actions/setup-dotnet](https://github.com/actions/setup-dotnet), [actions/cache](https://github.com/actions/cache), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/setup-dotnet` from 4.3.0 to 4.3.1 - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](actions/setup-dotnet@3951f0d...67a3573) Updates `actions/cache` from 4.2.2 to 4.2.3 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@d4323d4...5a3ec84) Updates `actions/upload-artifact` from 4.6.1 to 4.6.2 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@4cec3d8...ea165f8) Updates `github/codeql-action` from 3.28.10 to 3.28.13 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@b56ba49...1b549b9) --- updated-dependencies: - dependency-name: actions/setup-dotnet dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 4ca9048 commit 7cffee7

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

.github/workflows/AIForOrcas.Client.Web.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: Checkout
4848
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4949
- name: Setup .NET Core
50-
uses: actions/setup-dotnet@3951f0dfe7a07e2313ec93c75700083e2005cbab # v4.3.0
50+
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4.3.1
5151
with:
5252
dotnet-version: ${{ env.DOTNET_VERSION }}
5353
- name: Dependencies
@@ -59,7 +59,7 @@ jobs:
5959
- name: Publish
6060
run: dotnet publish --no-restore -c Release -o './${{ env.PUBLISH_DIR }}'
6161
- name: Artifacts cache
62-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
62+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
6363
with:
6464
path: ./${{ env.WORKING_DIR }}/${{ env.PUBLISH_DIR }}
6565
key: ${{ github.sha }}-${{ env.AZURE_APP_NAME }}-${{ env.DOTNET_RUNTIME }}-artifacts
@@ -75,7 +75,7 @@ jobs:
7575
with:
7676
egress-policy: audit
7777
- name: Artifacts cache
78-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
78+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
7979
with:
8080
path: ./${{ env.WORKING_DIR}}/${{ env.PUBLISH_DIR }}
8181
key: ${{ github.sha }}-${{ env.AZURE_APP_NAME }}-${{ env.DOTNET_RUNTIME }}-artifacts

.github/workflows/AIForOrcas.Server.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Checkout
4646
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4747
- name: Setup .NET Core
48-
uses: actions/setup-dotnet@3951f0dfe7a07e2313ec93c75700083e2005cbab # v4.3.0
48+
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4.3.1
4949
with:
5050
dotnet-version: ${{ env.DOTNET_VERSION }}
5151
- name: Dependencies
@@ -57,7 +57,7 @@ jobs:
5757
- name: Publish
5858
run: dotnet publish --no-restore -c Release -o './${{ env.PUBLISH_DIR }}'
5959
- name: Artifacts cache
60-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
60+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
6161
with:
6262
path: ./${{ env.WORKING_DIR }}/${{ env.PUBLISH_DIR }}
6363
key: ${{ github.sha }}-${{ env.AZURE_APP_NAME }}-${{ env.DOTNET_RUNTIME }}-artifacts
@@ -73,7 +73,7 @@ jobs:
7373
with:
7474
egress-policy: audit
7575
- name: Artifacts cache
76-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
76+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
7777
with:
7878
path: ./${{ env.WORKING_DIR}}/${{ env.PUBLISH_DIR }}
7979
key: ${{ github.sha }}-${{ env.AZURE_APP_NAME }}-${{ env.DOTNET_RUNTIME }}-artifacts

.github/workflows/NotificationSystem.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Checkout
4242
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4343
- name: Setup .NET Core
44-
uses: actions/setup-dotnet@3951f0dfe7a07e2313ec93c75700083e2005cbab # v4.3.0
44+
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4.3.1
4545
with:
4646
dotnet-version: ${{ env.DOTNET_VERSION }}
4747
- name: Dependencies
@@ -53,7 +53,7 @@ jobs:
5353
- name: Publish
5454
run: dotnet publish --no-restore -c Release -o './${{ env.PUBLISH_DIR }}'
5555
- name: Artifacts cache
56-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
56+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
5757
with:
5858
path: ./${{ env.WORKING_DIR }}/${{ env.PUBLISH_DIR }}
5959
key: ${{ github.sha }}-${{ env.AZURE_APP_NAME }}-${{ env.DOTNET_RUNTIME }}-artifacts
@@ -69,7 +69,7 @@ jobs:
6969
with:
7070
egress-policy: audit
7171
- name: Artifacts cache
72-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
72+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
7373
with:
7474
path: ./${{ env.WORKING_DIR}}/${{ env.PUBLISH_DIR }}
7575
key: ${{ github.sha }}-${{ env.AZURE_APP_NAME }}-${{ env.DOTNET_RUNTIME }}-artifacts

.github/workflows/OrcaHello.Web.Api.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Checkout
4444
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4545
- name: Set up .NET Core
46-
uses: actions/setup-dotnet@3951f0dfe7a07e2313ec93c75700083e2005cbab # v4.3.0
46+
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4.3.1
4747
with:
4848
dotnet-version: ${{ env.DOTNET_VERSION }}
4949
- name: Dependencies
@@ -55,7 +55,7 @@ jobs:
5555
- name: Publish
5656
run: dotnet publish --no-restore -c Release -o './${{ env.PUBLISH_DIR }}'
5757
- name: Artifacts cache
58-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
58+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
5959
with:
6060
path: ./${{ env.WORKING_DIR }}/${{ env.PUBLISH_DIR }}
6161
key: ${{ github.sha }}-${{ env.AZURE_APP_NAME }}-${{ env.DOTNET_RUNTIME }}-artifacts
@@ -71,7 +71,7 @@ jobs:
7171
with:
7272
egress-policy: audit
7373
- name: Artifacts cache
74-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
74+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
7575
with:
7676
path: ./${{ env.WORKING_DIR}}/${{ env.PUBLISH_DIR }}
7777
key: ${{ github.sha }}-${{ env.AZURE_APP_NAME }}-${{ env.DOTNET_RUNTIME }}-artifacts

.github/workflows/OrcaHello.Web.UI.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Checkout
4444
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4545
- name: Set up .NET Core
46-
uses: actions/setup-dotnet@3951f0dfe7a07e2313ec93c75700083e2005cbab # v4.3.0
46+
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4.3.1
4747
with:
4848
dotnet-version: ${{ env.DOTNET_VERSION }}
4949
- name: Dependencies
@@ -55,7 +55,7 @@ jobs:
5555
- name: Publish
5656
run: dotnet publish --no-restore -c Release -o './${{ env.PUBLISH_DIR }}'
5757
- name: Artifacts cache
58-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
58+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
5959
with:
6060
path: ./${{ env.WORKING_DIR }}/${{ env.PUBLISH_DIR }}
6161
key: ${{ github.sha }}-${{ env.AZURE_APP_NAME }}-${{ env.DOTNET_RUNTIME }}-artifacts
@@ -71,7 +71,7 @@ jobs:
7171
with:
7272
egress-policy: audit
7373
- name: Artifacts cache
74-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
74+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
7575
with:
7676
path: ./${{ env.WORKING_DIR}}/${{ env.PUBLISH_DIR }}
7777
key: ${{ github.sha }}-${{ env.AZURE_APP_NAME }}-${{ env.DOTNET_RUNTIME }}-artifacts

.github/workflows/scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
6464
# format to the repository Actions tab.
6565
- name: "Upload artifact"
66-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v3.pre.node20
66+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v3.pre.node20
6767
with:
6868
name: SARIF file
6969
path: results.sarif
@@ -72,6 +72,6 @@ jobs:
7272
# Upload the results to GitHub's code scanning dashboard (optional).
7373
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
7474
- name: "Upload to code-scanning"
75-
uses: github/codeql-action/upload-sarif@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
75+
uses: github/codeql-action/upload-sarif@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.13
7676
with:
7777
sarif_file: results.sarif

0 commit comments

Comments
 (0)