Skip to content

Commit

Permalink
Merge pull request cea-sec#168 from vruello/bump_github_actions
Browse files Browse the repository at this point in the history
Bump GitHub actions
  • Loading branch information
vruello authored Sep 6, 2024
2 parents a77e9b1 + 41d737c commit 2bcbd73
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release-draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: build packages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Make debian bookworm package
run: |
cd build-pkg && \
Expand All @@ -23,7 +23,7 @@ jobs:
cargo deb --manifest-path=./common/Cargo.toml -- --locked && \
for i in ../target/debian/*.deb; do mv "$i" "${i/.deb/_deb12.deb}"; done;
- name: Upload debian bookworm package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: openwec-deb-bookworm-package
path: ./target/debian/*.deb
Expand All @@ -37,7 +37,7 @@ jobs:
cargo deb --manifest-path=./common/Cargo.toml -- --locked && \
for i in ../target/debian/*.deb; do mv "$i" "${i/.deb/_deb11.deb}"; done;
- name: Upload debian bullseye package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: openwec-deb-bullseye-package
path: ./target/debian/*.deb
Expand All @@ -48,11 +48,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download debian bookworm package
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: openwec-deb-bookworm-package
- name: Download debian bullseye package
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: openwec-deb-bullseye-package
- name: Get artifacts names
Expand All @@ -61,7 +61,7 @@ jobs:
echo "U_PKG_DEB_BOOKWORM=$(ls openwec*_deb12.deb)" >> "$GITHUB_OUTPUT" && \
echo "U_PKG_DEB_BULLSEYE=$(ls openwec*_deb11.deb)" >> "$GITHUB_OUTPUT"
- name: Create draft release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
draft: true
files: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- 5432:5432

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install dependencies
run: |
apt-get update && \
Expand Down

0 comments on commit 2bcbd73

Please sign in to comment.