Skip to content

Commit ffd0807

Browse files
committed
Using latest versions to try and fix builder issue
1 parent 804239e commit ffd0807

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/base-jobs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ jobs:
1212
runs-on: ubicloud-standard-2
1313
steps:
1414
- name: Clone
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v6
1616

17-
- uses: actions/setup-java@v4
17+
- uses: actions/setup-java@v5
1818
with:
1919
distribution: 'temurin'
2020
java-version: '17'
2121
cache: 'maven'
2222

23-
- uses: actions/setup-node@v4
23+
- uses: actions/setup-node@v6
2424
with:
2525
node-version: 20
2626
cache: yarn
@@ -42,7 +42,7 @@ jobs:
4242
- name: Run rascal-tutor and reuse libraries
4343
run: MAVEN_OPTIONS="-Xss256m -Xmx3G -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn" mvn -B clean package -Dwebdriver.chrome.driver=/usr/local/bin/chromedriver -Dwebdriver.chrome.browser=`which chrome`
4444

45-
- uses: actions/upload-artifact@v4
45+
- uses: actions/upload-artifact@v7
4646
with:
4747
name: sources
4848
path: |

.github/workflows/website-builder.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ jobs:
1616
steps:
1717
# Download prepared sources from base
1818
- name: Download sources
19-
uses: actions/download-artifact@v4
19+
uses: actions/download-artifact@v8
2020
with:
2121
name: sources
2222

2323
# Production deploy
2424
- name: Netlify Deploy
25-
uses: jsmrcaga/action-netlify-deploy@v2.0.0
25+
uses: jsmrcaga/action-netlify-deploy@v2.4.0
2626
with:
2727
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_API_KEY }}
2828
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}

0 commit comments

Comments
 (0)