Skip to content

Commit

Permalink
ci: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
shankerwangmiao committed Sep 26, 2024
1 parent 938f67c commit fcb8dd5
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
steps:

- name: Check out code into the Go module directory
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Go 1.18
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: 1.18
id: go
Expand All @@ -25,7 +25,7 @@ jobs:
run: |
for i in linux-amd64 linux-arm64; do
make ARCH=$i all
tar -cz --numeric-owner --owner root --group root -f tunasync-$i-bin.tar.gz -C build-$i tunasync tunasynctl
tar -cz --numeric-owner --owner root --group root -f tunasync-$i-bin.tar.gz -C build-$i tunasync tunasynctl
done
- name: Create Release
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/tunasync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
steps:

- name: Check out code into the Go module directory
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Go 1.18
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: 1.18
id: go
Expand All @@ -29,7 +29,7 @@ jobs:
make tunasynctl
- name: Keep artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: tunasync-bin
path: build-linux-amd64/
Expand All @@ -51,10 +51,10 @@ jobs:
docker pull alpine:3.8
- name: Check out code into the Go module directory
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Go 1.18
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: 1.18
id: go
Expand Down Expand Up @@ -89,19 +89,19 @@ jobs:
run_test_reexec 5 tunasync-exec2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
with:
driver-opts: network=host
- name: Cache Docker layers
uses: actions/cache@v3
uses: actions/cache@v4
if: github.event_name == 'push'
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Cache Docker layers
uses: actions/cache@v3
uses: actions/cache@v4
if: github.event_name == 'pull_request'
with:
path: /tmp/.buildx-cache
Expand All @@ -120,7 +120,7 @@ jobs:
mkdir -p /tmp/.buildx-cache
- name: Build Docker image for uml rootfs
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
with:
context: .umlrootfs
file: .umlrootfs/Dockerfile
Expand Down Expand Up @@ -227,7 +227,7 @@ jobs:
profile5_*.cov > profile-all.cov
- name: Convert coverage to lcov
uses: jandelgado/gcov2lcov-action@v1.0.0
uses: jandelgado/gcov2lcov-action@v1
with:
infile: profile-all.cov
outfile: coverage.lcov
Expand Down

0 comments on commit fcb8dd5

Please sign in to comment.