Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Qlever-LLC/fl-sync
Browse files Browse the repository at this point in the history
  • Loading branch information
sanoel committed Jul 26, 2023
2 parents 683712b + c6e4de1 commit d102d3a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build-and-push-services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3.3.0
uses: actions/checkout@v3.5.3

- name: Parse Ref
id: ref
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3.3.0
uses: actions/checkout@v3.5.3

- name: Set up QEMU
uses: docker/[email protected]
Expand All @@ -109,7 +109,7 @@ jobs:

- name: Cache docker layers
if: ${{ !env.ACT }} # Awaiting ACT version after 0.2.17 for this feature
uses: actions/cache@v3.2.5
uses: actions/cache@v3.3.1
id: cache
with:
path: /tmp/.buildx-cache
Expand Down Expand Up @@ -164,21 +164,21 @@ jobs:
- name: Login to DockerHub
if: ${{ env.DOCKERHUB_PUSH && github.event_name != 'pull_request' }}
uses: docker/login-action@v2.1.0
uses: docker/login-action@v2.2.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Login to GitHub Container Registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v2.1.0
uses: docker/login-action@v2.2.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push images
uses: docker/build-push-action@v4.0.0
uses: docker/build-push-action@v4.1.1
with:
context: ${{ matrix.context }}
file: ${{ matrix.context }}/Dockerfile
Expand Down Expand Up @@ -235,7 +235,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3.3.0
uses: actions/checkout@v3.5.3

- name: Find Docker tag for Snyk
id: tag
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3.3.0
uses: actions/checkout@v3.5.3

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down

0 comments on commit d102d3a

Please sign in to comment.