Skip to content

Commit dbd4213

Browse files
authored
Upgrade docker/login-action to v3 (#3654)
1 parent f466511 commit dbd4213

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
- name: Login to Docker Hub
8484
# This step runs only if the tag starts with 'v'
8585
if: matrix.os == 'linux' && startsWith(github.ref, 'refs/tags/v')
86-
uses: docker/login-action@v1
86+
uses: docker/login-action@v3
8787
with:
8888
username: ${{ secrets.DOCKERHUB_USERNAME }}
8989
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -164,7 +164,7 @@ jobs:
164164
macos-arm64-checksum
165165
166166
#- name: Login to Docker Hub
167-
# uses: docker/login-action@v1
167+
# uses: docker/login-action@v3
168168
# with:
169169
# username: ${{ secrets.DOCKERHUB_USERNAME }}
170170
# password: ${{ secrets.DOCKERHUB_TOKEN }}

execution_chain/rpc/server_api.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -728,4 +728,4 @@ proc setupServerAPI*(api: ServerAPIRef, server: RpcServer, ctx: EthContext) =
728728
nextFork = api.com.nextFork(currentFork)
729729
lastFork = api.com.lastFork(currentFork)
730730

731-
return api.com.getEthConfigObject(api.chain, currentFork, nextFork, lastFork)
731+
return api.com.getEthConfigObject(api.chain, currentFork, nextFork, lastFork)

0 commit comments

Comments
 (0)