Skip to content

Commit 23ee6d5

Browse files
committed
Signed-off-by: gnzsnz <[email protected]>
1 parent 5ed7ba8 commit 23ee6d5

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,13 @@ updates:
99
directory: "/stable"
1010
schedule:
1111
interval: "daily"
12+
1213
- package-ecosystem: "docker"
1314
directory: "/latest"
1415
schedule:
1516
interval: "daily"
17+
18+
- package-ecosystem: "github-actions"
19+
directory: "/"
20+
schedule:
21+
interval: "weekly"

.github/workflows/detect-ibc-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: true
1616

1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919

2020
- name: Get Current Version
2121
id: version

.github/workflows/detect-releases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
matrix:
1919
channel: ["stable", "latest"]
2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222

2323
- name: Get Latest Version
2424
id: version

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout source code
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
with:
1616
ref: ${{ github.ref }}
1717
lfs: true
@@ -53,7 +53,7 @@ jobs:
5353
password: ${{ secrets.DOCKERHUB_TOKEN }}
5454

5555
- name: Build and push
56-
uses: docker/build-push-action@v3
56+
uses: docker/build-push-action@v5
5757
with:
5858
context: ${{ steps.channel.outputs.channel }}
5959
cache-from: type=gha

latest/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
FROM ubuntu:22.04 as setup
1010

11-
ENV IB_GATEWAY_VERSION=10.25.1e
11+
ENV IB_GATEWAY_VERSION=10.25.1f
1212
ENV IB_GATEWAY_RELEASE_CHANNEL=latest
1313
ENV IBC_VERSION=3.18.0
1414

@@ -47,7 +47,7 @@ COPY ./scripts /root/scripts
4747

4848
FROM ubuntu:22.04
4949

50-
ENV IB_GATEWAY_VERSION=10.25.1e
50+
ENV IB_GATEWAY_VERSION=10.25.1f
5151

5252
WORKDIR /root
5353
COPY --from=setup /usr/local/i4j_jres/ /usr/local/i4j_jres

0 commit comments

Comments
 (0)