Skip to content

Commit

Permalink
Updated soon to be deprecated actions to latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
aristocratos committed Jun 24, 2024
1 parent 18716e7 commit e4f69cd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
run: git config --global --add safe.directory /__w/btop/btop

- name: Checkout source
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand All @@ -121,7 +121,7 @@ jobs:
cp bin/btop .artifacts/$FILENAME
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: btop-${{ matrix.toolchain }}
path: '.artifacts/**'
8 changes: 4 additions & 4 deletions .github/workflows/continuous-build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
with:
xcode-version: latest-stable

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive

Expand All @@ -46,7 +46,7 @@ jobs:
mv bin/btop bin/btop-x86_64-Monterey-$GIT_HASH
ls -alh bin
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: btop-x86_64-macos12-Monterey
path: 'bin/*'
Expand All @@ -58,7 +58,7 @@ jobs:
with:
xcode-version: latest-stable

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive

Expand All @@ -69,7 +69,7 @@ jobs:
mv bin/btop bin/btop-x86_64-Ventura-$GIT_HASH
ls -alh bin
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: btop-x86_64-macos13-Ventura
path: 'bin/*'
2 changes: 1 addition & 1 deletion .github/workflows/continuous-build-openbsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
mv bin/btop bin/btop-GCC11-"$GIT_HASH"
ls -alh bin
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: btop-x86_64-openbsd-7.4
path: 'bin/*'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-snap-can-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches: [ main ]
tags-ignore:
- '*.*'
- '*.*'
paths:
- 'src/**'
- '!src/osx/**'
Expand All @@ -21,16 +21,16 @@ on:
- 'include/**'
- 'Makefile'
- '.github/workflows/test-snap-can-build.yml'

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: snapcore/action-build@v1
id: build
Expand Down

0 comments on commit e4f69cd

Please sign in to comment.