This is an automated email from the ASF dual-hosted git repository.
sjaranowski pushed a commit to branch v4
in repository https://gitbox.apache.org/repos/asf/maven-gh-actions-shared.git
The following commit(s) were added to refs/heads/v4 by this push:
new efba0d2 Show public IP of runner
efba0d2 is described below
commit efba0d2cf4efb986778c1f05fdea5d1437da3364
Author: Slawomir Jaranowski <[email protected]>
AuthorDate: Tue Feb 11 13:19:38 2025 +0100
Show public IP of runner
---
.github/workflows/maven-verify.yml | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/.github/workflows/maven-verify.yml
b/.github/workflows/maven-verify.yml
index c6159cc..3d99c09 100644
--- a/.github/workflows/maven-verify.yml
+++ b/.github/workflows/maven-verify.yml
@@ -208,6 +208,10 @@ jobs:
exclude-matrix: ${{ steps.exclude.outputs.matrix }}
steps:
+ - name: Show IP
+ run: curl --silent https://api.ipify.org
+ shell: bash
+
- id: version
name: setup Maven version for ff
run: |
@@ -259,6 +263,10 @@ jobs:
if: inputs.ff-run
steps:
+ - name: Show IP
+ run: curl --silent https://api.ipify.org
+ shell: bash
+
- name: Install Subversion on Ubuntu
if: inputs.install-subversion && runner.os == 'Linux'
run: sudo apt install subversion
@@ -347,6 +355,11 @@ jobs:
inputs.verify-goal != inputs.ff-goal
run: echo ok
+ - name: Show IP
+ if: steps.should-run.conclusion == 'success'
+ run: curl --silent https://api.ipify.org
+ shell: bash
+
# Some projects (like Maven SCM) need the command-line tools for all
SCMs installed.
# Git and Subversion are installed on all by default.
# Mercurial is not installed on macOS.