Skip to content

Commit

Permalink
Merge pull request #230 from vtsykun/fix/github-actions-deps
Browse files Browse the repository at this point in the history
Update github actions deps
  • Loading branch information
vtsykun authored Feb 8, 2024
2 parents 29e2859 + 2d07dae commit 8c5535c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker_gcr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:

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

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Cache Docker layers
uses: actions/cache@v3
Expand All @@ -32,14 +32,14 @@ jobs:
key: ${{ runner.os }}-gcr-docker

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Push Docker image to GitHub Container Registry
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
push: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh_pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: GitHub Gen Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup mdbook
uses: peaceiris/actions-mdbook@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

steps:
- name: "Checkout"
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"

- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
composer install --ansi --no-interaction
fi
- name: Start Redis
uses: "supercharge/redis-github-action@1.6.0"
uses: "supercharge/redis-github-action@1.8.0"
with:
redis-version: ${{ matrix.redis }}

Expand Down

0 comments on commit 8c5535c

Please sign in to comment.