chore: cleanup and bump workflow actions
This commit is contained in:
parent
f2a3582c77
commit
48c2dba554
3 changed files with 8 additions and 8 deletions
4
.github/workflows/check.yml
vendored
4
.github/workflows/check.yml
vendored
|
@ -53,7 +53,7 @@ jobs:
|
|||
- name: Run Clippy
|
||||
continue-on-error: true
|
||||
run: |
|
||||
set -euxo pipefail
|
||||
set -euo pipefail
|
||||
|
||||
cargo clippy \
|
||||
--all-features \
|
||||
|
@ -62,7 +62,7 @@ jobs:
|
|||
| clippy-sarif | tee /tmp/clippy.sarif | sarif-fmt
|
||||
|
||||
- name: Upload results
|
||||
uses: github/codeql-action/upload-sarif@v2
|
||||
uses: github/codeql-action/upload-sarif@v3
|
||||
with:
|
||||
sarif_file: /tmp/clippy.sarif
|
||||
wait-for-processing: true
|
||||
|
|
8
.github/workflows/docker.yml
vendored
8
.github/workflows/docker.yml
vendored
|
@ -9,8 +9,8 @@ on:
|
|||
jobs:
|
||||
build:
|
||||
name: Build image
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
arch: [x86_64, aarch64]
|
||||
|
@ -32,7 +32,7 @@ jobs:
|
|||
echo "path=$(realpath result)" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Upload image
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: container-${{ matrix.arch }}
|
||||
path: ${{ steps.build.outputs.path }}
|
||||
|
@ -59,7 +59,7 @@ jobs:
|
|||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Download images
|
||||
uses: actions/download-artifact@v3
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
path: images
|
||||
|
||||
|
@ -74,7 +74,7 @@ jobs:
|
|||
env:
|
||||
TAG: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
|
||||
run: |
|
||||
set -eux
|
||||
set -eu
|
||||
|
||||
architectures=("x86_64" "aarch64")
|
||||
for arch in "${architectures[@]}"; do
|
||||
|
|
4
.github/workflows/update-flake.yml
vendored
4
.github/workflows/update-flake.yml
vendored
|
@ -23,6 +23,6 @@ jobs:
|
|||
- name: Update and create PR
|
||||
uses: DeterminateSystems/update-flake-lock@v20
|
||||
with:
|
||||
commit-msg: 'flake: update inputs'
|
||||
pr-title: 'flake: update inputs'
|
||||
commit-msg: 'nix: update inputs'
|
||||
pr-title: 'nix: update inputs'
|
||||
token: ${{ github.token }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue