Skip to content

Commit

Permalink
chore: update GitHub action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyvion committed May 1, 2024
1 parent 01d6233 commit a2cf340
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Dotnet
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x

Expand All @@ -37,7 +37,7 @@ jobs:
run: dotnet build .vscode --configuration Release

- name: Upload Mod Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: RealisticOrbitalTrade-${{ github.sha }}
path: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Dotnet
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x

Expand All @@ -26,7 +26,7 @@ jobs:
run: dotnet build .vscode --configuration Release

- name: Upload Mod Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: RealisticOrbitalTrade-Release
path: |
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
run: mkdir -p ${{ env.MOD_PATH }}

- name: Download Mod Artifacts from Build Step
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: RealisticOrbitalTrade-Release
path: ${{ env.MOD_PATH }}
Expand All @@ -71,7 +71,7 @@ jobs:
zip -r ./RealisticOrbitalTrade.zip ./RealisticOrbitalTrade/*
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Get Changelog Entry
id: changelog_reader
Expand Down

0 comments on commit a2cf340

Please sign in to comment.