Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4 (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
hawksight authored Nov 21, 2023
2 parents 42003e4 + 2ec034a commit ebfcb00
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: "Checkout code"
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/setup-go@v4
with:
go-version: 1.19.x
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Go Build
run: CGO_ENABLED=0 GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} go build -a -installsuffix cgo -o paranoia .
- uses: actions/upload-artifact@v3
Expand All @@ -28,7 +28,7 @@ jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Documentation Build
run: go run ./hack/generate-manual
- uses: actions/upload-artifact@v3
Expand All @@ -45,7 +45,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- name: Rename Artifacts
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- run: go install golang.org/x/tools/cmd/[email protected]

- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: actions/cache@v3
with:
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
go-version: 1.19.x

- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: actions/cache@v3
with:
Expand All @@ -79,7 +79,7 @@ jobs:
uses: actions/setup-go@v4
with:
go-version: 1.19.x
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Documentation Build
run: go run ./hack/generate-manual
- uses: actions/upload-artifact@v3
Expand All @@ -94,7 +94,7 @@ jobs:
CONTAINER_TAR: container.tar
steps:
- name: "Checkout code"
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down

0 comments on commit ebfcb00

Please sign in to comment.