Skip to content

Commit

Permalink
Upgraded to github actions v4
Browse files Browse the repository at this point in the history
  • Loading branch information
mklomp committed Oct 1, 2024
1 parent 3cf6df3 commit c1e9a92
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: setup this repo
run: |
Expand All @@ -47,12 +47,13 @@ jobs:
run: |
./packerBuild.sh ${{ matrix.image }}
- name: artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
path: build/*.img.xz
name: ${{ matrix.image }}
overwrite: true
- name: Push to release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: build/*.img.xz
files: build/*.img.xz
2 changes: 1 addition & 1 deletion .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/shfmt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
sh-checker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run the sh-checker
uses: luizm/action-sh-checker@master
env:
Expand Down

0 comments on commit c1e9a92

Please sign in to comment.