Skip to content

Commit 5465e39

Browse files
author
Goose
committed
update deprecated artifact actions
1 parent 3a79306 commit 5465e39

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- { target: x86_64-pc-windows-msvc, os: windows-latest, suffix: .zip }
1919
runs-on: ${{ matrix.os }}
2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
- name: Setup Rust
2323
shell: bash
2424
run: |
@@ -48,7 +48,7 @@ jobs:
4848
}
4949
Compress-Archive -Path ${{ matrix.target }} -DestinationPath ${{ matrix.target }}.zip
5050
51-
- uses: actions/upload-artifact@v3
51+
- uses: actions/upload-artifact@v4
5252
with:
5353
name: ${{ matrix.target }}
5454
path: ${{ matrix.target }}${{ matrix.suffix }}
@@ -58,8 +58,8 @@ jobs:
5858
runs-on: ubuntu-latest
5959
needs: [build]
6060
steps:
61-
- uses: actions/checkout@v3
62-
- uses: actions/download-artifact@v3
61+
- uses: actions/checkout@v4
62+
- uses: actions/download-artifact@v4
6363
with:
6464
path: artifacts
6565
- run: ls -R ./artifacts
@@ -68,11 +68,11 @@ jobs:
6868
run: echo "CURRENT_DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV
6969

7070
- id: changelog-reader
71-
uses: mindsers/[email protected].2
71+
uses: mindsers/[email protected].3
7272
with:
7373
version: ${{ (github.ref_type == 'tag' && github.ref_name) || 'Unreleased' }}
7474

75-
- uses: softprops/action-gh-release@v1
75+
- uses: softprops/action-gh-release@v2
7676
with:
7777
tag_name: ${{ steps.changelog-reader.outputs.version }}
7878
name: ${{ (github.ref_type == 'tag' && steps.changelog-reader.outputs.version) || format('Prereleased {0}', env.CURRENT_DATE) }}

0 commit comments

Comments
 (0)