Skip to content

Commit

Permalink
Merge pull request #386 from Progress1/lint_v4
Browse files Browse the repository at this point in the history
Upgrade GitHub actions warnings
  • Loading branch information
Progress1 authored Oct 15, 2024
2 parents 901f2a4 + 08e79a1 commit 3ffdcb4
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 21 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker_build_bots.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Bots Docker image
name: Docker image - Bots

on:
push:
Expand All @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -30,7 +30,7 @@ jobs:
run: |
echo "GHCR_OWNER=${GITHUB_REPOSITORY_OWNER,,}" >>${GITHUB_ENV}
- name: Build and push bots
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
with:
file: docker/Dockerfile.bots
push: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker_build_collectors.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Collectors Docker image
name: Docker image - Collectors

on:
push:
Expand All @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -30,7 +30,7 @@ jobs:
run: |
echo "GHCR_OWNER=${GITHUB_REPOSITORY_OWNER,,}" >>${GITHUB_ENV}
- name: Build and push collectors
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
with:
file: docker/Dockerfile.collectors
push: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker_build_core.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Core Docker image
name: Docker image - Core

on:
push:
Expand All @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -30,7 +30,7 @@ jobs:
run: |
echo "GHCR_OWNER=${GITHUB_REPOSITORY_OWNER,,}" >>${GITHUB_ENV}
- name: Build and push core
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
with:
file: docker/Dockerfile.core
push: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker_build_gui.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: GUI Docker image
name: Docker image - GUI

on:
push:
Expand All @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -27,7 +27,7 @@ jobs:
run: |
echo "GHCR_OWNER=${GITHUB_REPOSITORY_OWNER,,}" >>${GITHUB_ENV}
- name: Build and push gui
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
with:
file: docker/Dockerfile.gui
push: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker_build_presenters.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Presenters Docker image
name: Docker image - Presenters

on:
push:
Expand All @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -30,7 +30,7 @@ jobs:
run: |
echo "GHCR_OWNER=${GITHUB_REPOSITORY_OWNER,,}" >>${GITHUB_ENV}
- name: Build and push presenters
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
with:
file: docker/Dockerfile.presenters
push: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker_build_publishers.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publishers Docker image
name: Docker image - Publishers

on:
push:
Expand All @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -30,7 +30,7 @@ jobs:
run: |
echo "GHCR_OWNER=${GITHUB_REPOSITORY_OWNER,,}" >>${GITHUB_ENV}
- name: Build and push publishers
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
with:
file: docker/Dockerfile.publishers
push: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker_build_shared.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
name: build wheel
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: build
Expand All @@ -26,7 +26,7 @@ jobs:
python -m pip install --upgrade pip setuptools wheel build
python -m build
- name: Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
Expand Down

0 comments on commit 3ffdcb4

Please sign in to comment.