Skip to content

Commit

Permalink
chore: Bump actions/upload-artifact to v4
Browse files Browse the repository at this point in the history
v3 uses an older Node version that will soon no longer be supported by GitHub Actions
  • Loading branch information
GeckoEidechse committed Feb 4, 2024
1 parent 78383ae commit 9c6a5f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
shell: bash
run: echo commit=$(git rev-parse --short HEAD) >> $GITHUB_OUTPUT
- name: Upload Build Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: NorthstarDiscordRPC-${{ steps.extract.outputs.commit }}
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
run: |
cargo build --release --verbose
- name: Upload RPC build as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: northstar-discord-rpc
path: |
target/release/*.dll
- name: Upload debug build artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: discord-rpc-debug-files
path: |
Expand Down

0 comments on commit 9c6a5f0

Please sign in to comment.