Skip to content

Commit 8dc1acf

Browse files
committed
bump workflow images
1 parent 11b58a9 commit 8dc1acf

4 files changed

Lines changed: 12 additions & 11 deletions

File tree

.github/workflows/backend.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ on:
1717

1818
jobs:
1919
cross:
20-
runs-on: ubuntu-22.04
20+
runs-on: ubuntu-24.04
2121
strategy:
2222
fail-fast: false
2323
matrix:
2424
target: [i686, x86_64, arm, armhf, aarch64, mips, mipsel, mips64, mips64el, s390x, win32]
2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v6
2727
- name: Install packages
2828
run: |
2929
sudo apt-get update
@@ -32,7 +32,7 @@ jobs:
3232
env:
3333
BUILD_TARGET: ${{ matrix.target }}
3434
run: ./scripts/cross-build.sh
35-
- uses: actions/upload-artifact@v4
35+
- uses: actions/upload-artifact@v7
3636
with:
3737
name: ttyd.${{ matrix.target }}
3838
path: build/ttyd*

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ on:
77

88
jobs:
99
build:
10-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-24.04
1111
permissions:
1212
packages: write
1313
contents: read
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616
- name: Install packages
1717
run: |
1818
sudo apt-get update

.github/workflows/frontend.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ on:
1212

1313
jobs:
1414
build:
15-
runs-on: ubuntu-22.04
15+
runs-on: ubuntu-24.04
1616
steps:
17-
- uses: actions/checkout@v4
18-
- uses: actions/setup-node@v4
17+
- uses: actions/checkout@v6
18+
- uses: actions/setup-node@v6
1919
with:
2020
node-version: 18
2121
- name: Run yarn install, check and build

.github/workflows/release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
uses: ./.github/workflows/backend.yml
1010
publish:
1111
needs: [build]
12-
runs-on: ubuntu-22.04
12+
runs-on: ubuntu-24.04
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v6
1515
- name: Check version bump
1616
run: |
1717
TAG=$(git describe --tags --match "[0-9]*.[0-9]*.[0-9]*" --abbrev=8)
@@ -21,7 +21,8 @@ jobs:
2121
echo "=== Git Tag: $TAG, Version: $VERSION"
2222
exit 1
2323
fi
24-
- uses: actions/download-artifact@v4
24+
- uses: actions/download-artifact@v8
25+
2526
- run: |
2627
mkdir build
2728
for file in ttyd.*/*; do

0 commit comments

Comments
 (0)