Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
if: github.repository == 'adobe/aio-lib-java' && github.ref == 'refs/heads/main'
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Generate Changelog
uses: heinrichreimer/github-changelog-generator-action@v2.3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/maven-itest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

# Check out Git repository
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v5

# Set up environment with Java and Maven
- name: Setup JDK
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:

# Check out Git repository
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v5

# Set up environment with Java and Maven
- name: Setup JDK
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/maven-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
steps:
# Check out Git repository
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v5

# Set up environment with Java and Maven
- name: Set up JDK
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v5
with:
fetch-depth: 0 # Work around for https://github.com/heinrichreimer/action-github-changelog-generator/issues/21
ref: aio-lib-java-${{ needs.tag.outputs.version }}
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v5
with:
fetch-depth: 0 # Work around for https://github.com/heinrichreimer/action-github-changelog-generator/issues/21
ref: aio-lib-java-${{ needs.tag.outputs.version }}
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v5
with:
ref: aio-lib-java-${{ needs.tag.outputs.version }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maven-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v5

- name: Import GPG key
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maven-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
steps:
# Check out Git repository
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v5

# Set up environment with Java and Maven
- name: Setup JDK
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sitedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v5
with:
ref: 'main'
fetch-depth: 0
Expand All @@ -29,7 +29,7 @@ jobs:
uses: WyriHaximus/github-action-get-previous-tag@v1

- name: Checkout tag
uses: actions/checkout@v3
uses: actions/checkout@v5
with:
fetch-depth: 0
ref: ${{ steps.previoustag.outputs.tag }}
Expand All @@ -44,7 +44,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v5
with:
ref: 'main'

Expand Down
Loading