Skip to content

Commit 1e0a87f

Browse files
committed
build: Bump GitHub Actions
1 parent 264c902 commit 1e0a87f

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
name: Download and delete a Build Artifact'
2-
description: 'Download and delete a build artifact that was previously uploaded in the workflow by the upload-artifact action'
3-
inputs:
2+
description: "Download and delete a build artifact that was previously uploaded in the workflow by the upload-artifact action"
3+
inputs:
44
name:
5-
description: 'Artifact name'
5+
description: "Artifact name"
66
required: true
77
path:
8-
description: 'Destination path'
8+
description: "Destination path"
99
required: false
1010
runs:
1111
using: "composite"
1212
steps:
1313
- name: ☁ ⤵ Download artifact
14-
uses: actions/download-artifact@v3
14+
uses: actions/download-artifact@v4
1515
with:
1616
name: ${{ inputs.name }}
1717
path: ${{ inputs.path }}
1818

1919
- name: 🧹 Delete artifact
20-
uses: geekyeggo/delete-artifact@v1
20+
uses: geekyeggo/delete-artifact@v5
2121
with:
2222
name: ${{ inputs.name }}

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
working-directory: src/
1515
steps:
1616
- name: 🛒 Checkout
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818

1919
- name: 1️⃣2️⃣3️⃣ Set VERSION
2020
uses: ./.github/actions/version
@@ -23,7 +23,7 @@ jobs:
2323
run: cat "../release-notes/${{ env.VERSION }}.md"
2424

2525
- name: 🟣 Setup .NET
26-
uses: actions/setup-dotnet@v3
26+
uses: actions/setup-dotnet@v4
2727
with:
2828
dotnet-version: 7.0.x
2929

@@ -34,7 +34,7 @@ jobs:
3434
run: dotnet publish KiCadDbLib/KiCadDbLib.csproj -c Release --sc -r win-x64 -p:Version=${{ env.VERSION }} -o ../publish/win-x64
3535

3636
- name: 📤 Upload
37-
uses: actions/upload-artifact@v3
37+
uses: actions/upload-artifact@v4
3838
with:
3939
name: win-x64
4040
path: publish/win-x64
@@ -48,7 +48,7 @@ jobs:
4848
working-directory: src/
4949
steps:
5050
- name: 🛒 Checkout
51-
uses: actions/checkout@v3
51+
uses: actions/checkout@v4
5252

5353
- name: 1️⃣2️⃣3️⃣ Set VERSION
5454
uses: ./.github/actions/version
@@ -57,7 +57,7 @@ jobs:
5757
run: cat "../release-notes/${{ env.VERSION }}.md"
5858

5959
- name: 🟣 Setup .NET
60-
uses: actions/setup-dotnet@v3
60+
uses: actions/setup-dotnet@v4
6161
with:
6262
dotnet-version: 7.0.x
6363

@@ -88,7 +88,7 @@ jobs:
8888
tar -cvzf ../KiCad-Db-Lib-macOS.tar.gz *
8989
9090
- name: 🚀 Release
91-
uses: softprops/action-gh-release@v1
91+
uses: softprops/action-gh-release@v2
9292
with:
9393
body_path: release-notes/${{ env.VERSION }}.md
9494
files: |

0 commit comments

Comments
 (0)