Skip to content

Commit

Permalink
Bump the github-actions group across 1 directory with 2 updates
Browse files Browse the repository at this point in the history
Bumps the github-actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/upload-artifact](https://github.com/actions/upload-artifact).


Updates `actions/checkout` from 4.2.0 to 4.2.1
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v4.2.0...v4.2.1)

Updates `actions/upload-artifact` from 4.4.0 to 4.4.3
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v4.4.0...v4.4.3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Oct 14, 2024
1 parent ca02af2 commit f0730dc
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v4.2.0
uses: actions/checkout@v4.2.1

- name: Install Node
uses: actions/setup-node@v4.0.4
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v4.2.0
uses: actions/checkout@v4.2.1

- name: Build version suffix (main)
if: github.event_name == 'push'
Expand Down Expand Up @@ -78,14 +78,14 @@ jobs:

- name: Upload artifacts
if: matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v4.4.0
uses: actions/upload-artifact@v4.4.3
with:
name: nupkg
path: ./artifacts/*.nupkg

- name: Upload test results
if: failure()
uses: actions/upload-artifact@v4.4.0
uses: actions/upload-artifact@v4.4.3
with:
name: build-verify-test-results
path: |
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v4.2.0
uses: actions/checkout@v4.2.1

- name: Set up .NET
uses: xt0rted/setup-dotnet@v1.5.0
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:

- name: Upload test results
if: failure()
uses: actions/upload-artifact@v4.4.0
uses: actions/upload-artifact@v4.4.3
with:
name: integration-verify-test-results
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v4.2.0
uses: actions/checkout@v4.2.1

- name: Get project version
id: project
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v4.2.0
uses: actions/checkout@v4.2.1

- name: Set up .NET
uses: xt0rted/setup-dotnet@v1.5.0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: echo "current_version=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT

- name: Check out repository
uses: actions/checkout@v4.2.0
uses: actions/checkout@v4.2.1

- name: Set up .NET
uses: xt0rted/setup-dotnet@v1.5.0
Expand All @@ -45,7 +45,7 @@ jobs:
- run: dotnet r pack -- --no-build

- name: Upload artifacts
uses: actions/upload-artifact@v4.4.0
uses: actions/upload-artifact@v4.4.3
with:
name: nupkg
path: ./artifacts/*.nupkg
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
- name: Upload test results
if: failure()
uses: actions/upload-artifact@v4.4.0
uses: actions/upload-artifact@v4.4.3
with:
name: verify-test-results
path: |
Expand Down

0 comments on commit f0730dc

Please sign in to comment.