Skip to content

Commit

Permalink
build: bump action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Blaok committed Jul 31, 2024
1 parent 5f8b1a7 commit fcf66d6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout myself
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:

steps:
- name: Checkout myself
uses: actions/checkout@v1
uses: actions/checkout@v4
- name: Install from script
run: ./install.sh
8 changes: 4 additions & 4 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- ubuntu-22.04
steps:
- name: Checkout myself
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install build dependencies
run: |
# https://bugs.launchpad.net/ubuntu/+source/google-glog/+bug/1991919
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Package myself
run: cmake --build build --target package
- name: Upload deb package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: frt-${{ matrix.os }}
path: build/*.deb
Expand All @@ -61,9 +61,9 @@ jobs:
- build
steps:
- name: Checkout myself
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: frt-${{ matrix.os }}
path: build
Expand Down

0 comments on commit fcf66d6

Please sign in to comment.