Skip to content

Commit

Permalink
Bump the github-actions group with 2 updates
Browse files Browse the repository at this point in the history
Bumps the github-actions group with 2 updates: [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] <[email protected]>
  • Loading branch information
dependabot[bot] authored Oct 14, 2024
1 parent 3fcfe0f commit 46fe56c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/[email protected].0
uses: actions/[email protected].1

- name: Install Node
uses: actions/[email protected]
Expand All @@ -42,7 +42,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/[email protected].0
uses: actions/[email protected].1

- name: Build version suffix
run: echo "VERSION_SUFFIX=beta.${{ github.run_number }}" >> $GITHUB_ENV
Expand All @@ -59,7 +59,7 @@ jobs:
- run: dotnet r pack -- --no-build --version-suffix $VERSION_SUFFIX

- name: Publish artifacts
uses: actions/[email protected].0
uses: actions/[email protected].3
with:
path: ./artifacts/*.nupkg

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 @@ -35,7 +35,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/[email protected].0
uses: actions/[email protected].1

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/[email protected].0
uses: actions/[email protected].1

- name: Install Node
uses: actions/[email protected]
Expand All @@ -35,7 +35,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/[email protected].0
uses: actions/[email protected].1

- name: Build version suffix
run: echo "VERSION_SUFFIX=alpha.${{ github.event.number }}" >> $GITHUB_ENV
Expand All @@ -52,6 +52,6 @@ jobs:
- run: dotnet r pack -- --no-build --version-suffix $VERSION_SUFFIX

- name: Publish artifacts
uses: actions/[email protected].0
uses: actions/[email protected].3
with:
path: ./artifacts/*.nupkg
4 changes: 2 additions & 2 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/[email protected].0
uses: actions/[email protected].1

- name: Set up .NET
uses: xt0rted/[email protected]
Expand All @@ -36,7 +36,7 @@ jobs:
- run: dotnet r pack -- --no-build

- name: Publish artifacts
uses: actions/[email protected].0
uses: actions/[email protected].3
with:
path: ./artifacts/*.nupkg

Expand Down

0 comments on commit 46fe56c

Please sign in to comment.