Skip to content

Commit

Permalink
chore(deps): update githubactions
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 12, 2023
1 parent d0d3b18 commit 9b3e532
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/deploy-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: |
gunosy/redash-searcher-web
Expand All @@ -25,14 +25,14 @@ jobs:
type=semver,pattern={{major}}
type=sha
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USER }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: Build and push (redash-searcher-web)
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: ./redash-searcher-web
push: true
Expand All @@ -43,10 +43,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: |
gunosy/redash-searcher-sync
Expand All @@ -58,14 +58,14 @@ jobs:
type=semver,pattern={{major}}
type=sha
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USER }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: Build and push (redash-searcher-sync)
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: ./redash-searcher-sync
push: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/post-tagpr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
contents: write
runs-on: ubuntu-22.04
steps:
- uses: tibdex/github-app-token@v1
- uses: tibdex/github-app-token@v2
id: github_app_token
with:
app_id: ${{ secrets.ORG_GITHUB_ACTIONS_APP_ID }}
private_key: ${{ secrets.ORG_GITHUB_ACTIONS_APP_PRIVATE_KEY }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ steps.github_app_token.outputs.token }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tagpr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ jobs:
tagpr:
runs-on: ubuntu-22.04
steps:
- uses: tibdex/github-app-token@v1
- uses: tibdex/github-app-token@v2
id: github_app_token
with:
app_id: ${{ secrets.ORG_GITHUB_ACTIONS_APP_ID }}
private_key: ${{ secrets.ORG_GITHUB_ACTIONS_APP_PRIVATE_KEY }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ steps.github_app_token.outputs.token }}
- name: Run tagpr
Expand Down

0 comments on commit 9b3e532

Please sign in to comment.