Skip to content

Commit

Permalink
update github actions deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Apfelwurm committed Oct 3, 2023
1 parent 2e97a57 commit 96760ba
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/test_and_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,24 +28,24 @@ jobs:
runs-on: 'ubuntu-latest'
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v2.2.0
uses: docker/setup-qemu-action@v3.0.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
- name: get dependencies
run: make composer-install-dev; make npm-install-gh
- name: make foldersctructure and layout images
run: make folder-structure-dev; make layout-images-dev
- name: Login to DockerHub
if: ${{ github.event_name != 'pull_request' }}
uses: docker/login-action@v2.2.0
uses: docker/login-action@v3.0.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build Linux Image
if: ${{ github.event_name == 'pull_request' }}
uses: docker/build-push-action@v4.1.1
uses: docker/build-push-action@v5.0.0
with:
context: .
file: ./Dockerfile
Expand All @@ -62,7 +62,7 @@ jobs:
push: false
- name: Build and push Linux Image
if: ${{ startsWith(github.ref, 'refs/heads/master') && github.event_name == 'push' }}
uses: docker/build-push-action@v4.1.1
uses: docker/build-push-action@v5.0.0
with:
context: .
file: ./Dockerfile
Expand All @@ -79,7 +79,7 @@ jobs:
push: true
- name: Build and push Linux Image dev
if: ${{ startsWith(github.ref, 'refs/heads/dev') && github.event_name == 'push' }}
uses: docker/build-push-action@v4.1.1
uses: docker/build-push-action@v5.0.0
with:
context: .
file: ./Dockerfile
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Update Docker HUB Description
uses: peter-evans/[email protected].1
uses: peter-evans/[email protected].2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/website_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'pull_request' }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: build
run: docker run --rm -v ${{ github.workspace }}/docs:/docs -e USERID=$(id -u ${USER}) -e GROUPID=$(id -g ${USER}) lan2play/docker-sphinxbuild:latest

Expand All @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ startsWith(github.ref, 'refs/heads/master') && github.event_name == 'push' }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: build
run: docker run --rm -v ${{ github.workspace }}/docs:/docs -e USERID=$(id -u ${USER}) -e GROUPID=$(id -g ${USER}) lan2play/docker-sphinxbuild:latest
- name: Install SSH key
Expand Down

0 comments on commit 96760ba

Please sign in to comment.