Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update actions/upload-artifact version #130

Merged
merged 3 commits into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ jobs:
cp ./bin/ccx_preCICE ./packaging/calculix-precice3_2.20.1-1_amd64/usr/bin/ccx_preCICE &&
cd packaging && pwd && bash ./make_deb.sh ${{matrix.name}}
- name: Store Debian package artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: "${{env.PACKAGE_NAME}}_${{matrix.name}}.deb"
path: "packaging/${{env.PACKAGE_NAME}}_${{matrix.name}}.deb"
- name: Compute SHA256 checksum
run: sha256sum "packaging/${{env.PACKAGE_NAME}}_${{matrix.name}}.deb" > "packaging/${{env.PACKAGE_NAME}}_${{matrix.name}}.deb.sha256"
- name: Store SHA256 checksum as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: "${{env.PACKAGE_NAME}}_${{matrix.name}}.deb.sha256"
path: "packaging/${{env.PACKAGE_NAME}}_${{matrix.name}}.deb.sha256"
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
repos:
# Official repo for the clang-format hook
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: 'v8.0.1'
rev: 'v19.1.2'
MakisH marked this conversation as resolved.
Show resolved Hide resolved
MakisH marked this conversation as resolved.
Show resolved Hide resolved
hooks:
- id: clang-format
files: "^adapter"
Expand Down
Loading