Skip to content

Commit

Permalink
Merge pull request #5 from SeanCheatham/update-action-versions
Browse files Browse the repository at this point in the history
Update actions to newer versions
  • Loading branch information
SeanCheatham authored Aug 11, 2024
2 parents 8c075a1 + c8877b2 commit 81494ab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout current branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # Need full history to update last modified time.
- name: git-restore-mtime
uses: chetan/git-restore-mtime-action@v1
uses: chetan/git-restore-mtime-action@v2

- name: Install Flutter
uses: subosito/flutter-action@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/_docker_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
packages: write
steps:
- name: Checkout current branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # Need full history to update last modified time.
- name: git-restore-mtime
uses: chetan/git-restore-mtime-action@v1
uses: chetan/git-restore-mtime-action@v2
- name: Cache project
uses: actions/cache@v4
with:
Expand All @@ -45,7 +45,7 @@ jobs:
run: ls -la backend/core/src/main/resources/web

- name: Log in to Docker Hub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand Down

0 comments on commit 81494ab

Please sign in to comment.