This is an automated email from the ASF dual-hosted git repository.
mdedetrich pushed a commit to branch main
in repository
https://gitbox.apache.org/repos/asf/incubator-pekko-persistence-r2dbc.git
The following commit(s) were added to refs/heads/main by this push:
new d3c2e4b Use fetch tags from latest checkout action
d3c2e4b is described below
commit d3c2e4b118ad900e99764169f6fe5477c2229ca9
Author: Matthew de Detrich <[email protected]>
AuthorDate: Thu Sep 7 14:06:24 2023 +0200
Use fetch tags from latest checkout action
---
.github/workflows/build-test.yml | 18 ++++++++++++------
.github/workflows/dependency-graph.yml | 2 +-
.github/workflows/format.yml | 2 +-
.github/workflows/headers.yml | 2 +-
.github/workflows/publish-nightly.yml | 3 ++-
5 files changed, 17 insertions(+), 10 deletions(-)
diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index 8e80bb7..378d525 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -17,9 +17,10 @@ jobs:
JAVA_VERSION: [ 8, 11, 17 ]
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
fetch-depth: 0
+ fetch-tags: true
- name: Setup Java ${{ matrix.JAVA_VERSION }}
uses: actions/setup-java@v3
@@ -41,9 +42,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
fetch-depth: 0
+ fetch-tags: true
- name: Setup Java 8
uses: actions/setup-java@v3
@@ -70,9 +72,10 @@ jobs:
if: github.repository == 'apache/incubator-pekko-persistence-r2dbc'
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
fetch-depth: 0
+ fetch-tags: true
- name: Checkout GitHub merge
if: github.event.pull_request
@@ -108,9 +111,10 @@ jobs:
if: github.repository == 'apache/incubator-pekko-persistence-r2dbc'
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
fetch-depth: 0
+ fetch-tags: true
- name: Checkout GitHub merge
if: github.event.pull_request
@@ -150,9 +154,10 @@ jobs:
if: github.repository == 'apache/incubator-pekko-persistence-r2dbc'
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
fetch-depth: 0
+ fetch-tags: true
- name: Checkout GitHub merge
if: github.event.pull_request
@@ -188,9 +193,10 @@ jobs:
if: github.repository == 'apache/incubator-pekko-persistence-r2dbc'
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
fetch-depth: 0
+ fetch-tags: true
- name: Checkout GitHub merge
if: github.event.pull_request
diff --git a/.github/workflows/dependency-graph.yml
b/.github/workflows/dependency-graph.yml
index 4aa6f6b..565215b 100644
--- a/.github/workflows/dependency-graph.yml
+++ b/.github/workflows/dependency-graph.yml
@@ -9,5 +9,5 @@ jobs:
runs-on: ubuntu-latest
if: github.repository == 'apache/incubator-pekko-persistence-r2dbc'
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- uses: scalacenter/sbt-dependency-submission@v2
diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml
index 4f68834..4befca7 100644
--- a/.github/workflows/format.yml
+++ b/.github/workflows/format.yml
@@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout current branch (full)
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
diff --git a/.github/workflows/headers.yml b/.github/workflows/headers.yml
index 2559d2e..036dfb5 100644
--- a/.github/workflows/headers.yml
+++ b/.github/workflows/headers.yml
@@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Setup Java 11
uses: actions/setup-java@v3
diff --git a/.github/workflows/publish-nightly.yml
b/.github/workflows/publish-nightly.yml
index d789e33..7664cd8 100644
--- a/.github/workflows/publish-nightly.yml
+++ b/.github/workflows/publish-nightly.yml
@@ -15,10 +15,11 @@ jobs:
JAVA_OPTS: -Xms2G -Xmx2G -Xss2M -XX:ReservedCodeCacheSize=256M
-Dfile.encoding=UTF-8
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
# we don't know what commit the last tag was it's safer to get
entire repo so previousStableVersion resolves
fetch-depth: 0
+ fetch-tags: true
- name: Setup Java 8
uses: actions/setup-java@v3
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]