Skip to content

Commit

Permalink
Upgrade a bunch of Github Actions versions
Browse files Browse the repository at this point in the history
Signed-off-by: Marcus Crane <marcus@utf9k.net>
  • Loading branch information
marcus-crane committed Jun 9, 2024
1 parent 289552c commit f84dbeb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,14 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
go-version: 1.22
- run: mkdir -p frontend/dist && touch frontend/dist/.gitkeep
- run: go mod download
- run: go fmt ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v6
with:
version: v1.58.2
skip-cache: true
skip-pkg-cache: true
version: v1.59.0
skip-cache: true
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
# Set up development dependencies

- name: Set up Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: 1.22

Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
run: brew install Bearer/tap/gon

- name: Import code signing certificate from Github Secrets
uses: Apple-Actions/import-codesign-certs@v1
uses: Apple-Actions/import-codesign-certs@v3
if: runner.os == 'macOS'
with:
p12-file-base64: ${{ secrets.APPLE_DEVELOPER_CERTIFICATE_P12_BASE64 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
go-version: 1.22
- run: mkdir -p frontend/build && touch frontend/build/placeholder.txt # TODO: Try to fix this properly
Expand Down

0 comments on commit f84dbeb

Please sign in to comment.