Skip to content

Commit

Permalink
Update action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
HeavenVolkoff committed Feb 8, 2024
1 parent 116173b commit ca7a75f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ jobs:
shell: bash
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
with:
install: true
platforms: linux/amd64
Expand All @@ -63,14 +63,14 @@ jobs:
tar -cJf "native-deps-${{ matrix.settings.target }}.tar.xz" -C out .
- name: Publish native-deps
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: native-deps-${{ matrix.settings.target }}
path: native-deps-${{ matrix.settings.target }}.tar.xz
if-no-files-found: error

- name: Publish built source
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: native-deps-${{ matrix.settings.target }}-src
path: native-deps-${{ matrix.settings.target }}-src.tar.xz
Expand All @@ -85,7 +85,7 @@ jobs:
contents: write
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4

- name: Create Release
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit ca7a75f

Please sign in to comment.