Skip to content

Commit 573dbe5

Browse files
committed
Merge branch 'main' into no-apex-log
2 parents 575d866 + ee469d4 commit 573dbe5

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
test:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
14-
- uses: actions/setup-go@v5
13+
- uses: actions/checkout@v6
14+
- uses: actions/setup-go@v6
1515
with:
1616
go-version-file: "go.mod"
1717
- name: Check mod
@@ -21,7 +21,7 @@ jobs:
2121
- run: go build
2222
- run: go build github.com/loilo-inc/canarycage/cli/cage
2323
- run: go test ./... -coverprofile=coverage.txt -covermode=count
24-
- uses: codecov/codecov-action@v4
24+
- uses: codecov/codecov-action@v5
2525
env:
2626
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
2727
with:

.github/workflows/tag.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ name: Release
22
on:
33
push:
44
tags:
5-
- "[0-9]+.[0-9]+.[0-9]+"
6-
- "[0-9]+.[0-9]+.[0-9]+-rc[0-9]+"
5+
- "v[0-9]+.[0-9]+.[0-9]+"
6+
- "v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+"
77
permissions:
88
contents: write
99
jobs:
1010
release:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414
with:
1515
fetch-depth: 0
16-
- uses: actions/setup-go@v5
16+
- uses: actions/setup-go@v6
1717
with:
1818
go-version-file: "go.mod"
1919
- name: Release

0 commit comments

Comments
 (0)