Skip to content

Commit f93cc3d

Browse files
Update actions/checkout action to v5
1 parent 9780fdc commit f93cc3d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: typescript
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
- name: Read .node-version
2020
id: node-version
2121
run: echo "node-version=$(cat .node-version)" >> $GITHUB_OUTPUT
@@ -33,7 +33,7 @@ jobs:
3333
name: vitest
3434
runs-on: ubuntu-latest
3535
steps:
36-
- uses: actions/checkout@v4
36+
- uses: actions/checkout@v5
3737
- name: Read .node-version
3838
id: node-version
3939
run: echo "node-version=$(cat .node-version)" >> $GITHUB_OUTPUT
@@ -67,7 +67,7 @@ jobs:
6767
docker-build:
6868
runs-on: ubuntu-latest
6969
steps:
70-
- uses: actions/checkout@v4
70+
- uses: actions/checkout@v5
7171
- name: Log in to registry
7272
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
7373
- name: Set up Docker Buildx

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
docker-release:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
- name: Log in to registry
1313
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
1414
- name: Pull built image
@@ -24,7 +24,7 @@ jobs:
2424
needs:
2525
- docker-release
2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v5
2828
- uses: superfly/flyctl-actions/setup-flyctl@master
2929
- run: flyctl deploy --remote-only -a rotator
3030
env:

0 commit comments

Comments
 (0)