Skip to content

Commit

Permalink
update versions in gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
uwilken committed Jan 8, 2024
1 parent e96be34 commit c00b356
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,22 @@ jobs:
steps:
- name: Checkout PR
if: github.event_name == 'pull_request'
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: Checkout
if: github.event_name != 'pull_request'
uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v2
uses: actions/setup-java@v4.0.0
with:
java-version: '11'
distribution: 'adopt'
server-id: coremedia.external.releases
server-username: PLUGINS_NEXUS_USER
server-password: PLUGINS_NEXUS_PASSWORD
- name: Cache Maven Repo
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Expand All @@ -44,7 +44,7 @@ jobs:
version: 8

- name: Setup NodeJS
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'pnpm'
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
echo "::set-output name=version::${snapshot_version}"
- name: Upload Build Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: content-hub-adapter-rss-${{ steps.output-version.outputs.version }}
path: target/bundle
Expand Down

0 comments on commit c00b356

Please sign in to comment.