Skip to content

Commit

Permalink
chore: Upgrade Github Actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
rlemaitre committed Jul 26, 2024
1 parent 62219c3 commit c4b66a3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
distribution: temurin
java-version: 21
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: |
.ivy2
Expand All @@ -37,7 +37,7 @@ jobs:
with:
distribution: temurin
java-version: 21
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: |
.ivy2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dependency-graph.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
name: 🕸️ Update Dependency Graph
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: scalacenter/sbt-dependency-submission@v2
- uses: actions/checkout@v4
- uses: scalacenter/sbt-dependency-submission@v3
with:
## Optional: Define the working directory of your build.
## It should contain the build.sbt file.
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: echo "${{ secrets.PGP_SECRET }}" | base64 --decode | gpg --batch --import

- name: 👻 Cache SBT
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.sbt
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
tag: ${{ steps.version.outputs.version }}

- name: 📦 Create Release
uses: ncipollo/release-action@v1.12.0
uses: ncipollo/release-action@v1.14.0
with:
allowUpdates: true
draft: false
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
run: ./dtcw local install doctoolchain

- name: 📦 Cache SBT
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
.ivy2
Expand All @@ -134,7 +134,7 @@ jobs:
run: cp -r ./target/microsite/output ./public

- name: 🚀 Deploy
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
Expand Down

0 comments on commit c4b66a3

Please sign in to comment.