Skip to content

Commit

Permalink
ci: update checkout & upload-artifact action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
cinatic committed Sep 24, 2024
1 parent 8692a54 commit 8e64292
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install packages
run: sudo apt-get update -y && sudo apt-get install -y gettext
- name: build extension
run: make
- name: create zip package
run: make package
- name: store zip package artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: stocks-extension.zip
path: _build/stocks-extension.zip
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install packages
run: sudo apt-get update -y && sudo apt-get install -y gettext
- name: build extension
Expand Down

0 comments on commit 8e64292

Please sign in to comment.