Skip to content

Commit

Permalink
updates actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mkroli committed Mar 12, 2024
1 parent 16beced commit 52d3da2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Build
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
cargo: cross
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
Expand All @@ -62,7 +62,7 @@ jobs:
${{ matrix.cargo }} build --release --locked --target ${{ matrix.target }}
mv target/${{ matrix.target }}/release/${{ github.event.repository.name }} ${{ github.event.repository.name }}_${{ matrix.suffix }}
- name: Store Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}_${{ matrix.suffix }}
path: ${{ github.event.repository.name }}_${{ matrix.suffix }}
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
short_suffix: armv7-linux
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup qemu
uses: docker/setup-qemu-action@v2
- name: Setup Docker Buildx
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: GitHub Container Registry Login
uses: docker/login-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.PAT }}
Expand Down

0 comments on commit 52d3da2

Please sign in to comment.