Skip to content

Commit 5da595c

Browse files
committed
Bump Actions
1 parent 37b6d1d commit 5da595c

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212
test:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v3
16-
- uses: actions/setup-go@v3
15+
- uses: actions/checkout@v4
16+
- uses: actions/setup-go@v5
1717
with:
18-
go-version: "1.19"
18+
go-version-file: go.mod
1919
- run: make test
2020

2121
docker-build:
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
- run: make docker-build

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
run:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- name: Login to GitHub Container Registry
16-
uses: docker/login-action@v2
16+
uses: docker/login-action@v3
1717
with:
1818
registry: ghcr.io
1919
username: ${{ github.actor }}

.github/workflows/tagpr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ jobs:
88
tagpr:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212
- id: tagpr
1313
name: Tagpr
1414
uses: Songmu/tagpr@v1
1515
env:
1616
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1717

1818
- name: Trigger Release Workflow(only when tagged)
19-
uses: actions/github-script@v6
19+
uses: actions/github-script@v7
2020
if: "steps.tagpr.outputs.tag != ''"
2121
with:
2222
script: |

0 commit comments

Comments
 (0)