Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update githubactions (major) #137

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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@v6
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@v6
with:
context: ./redash-searcher-sync
push: true
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/post-tagpr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@ jobs:
if: startsWith(github.head_ref, 'tagpr-from-')
permissions:
contents: write
runs-on: ubuntu-22.04
runs-on: ubuntu-24.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 }}

# lock redash-searcher-web
- name: Set Node.js 18.x
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: yarn
Expand All @@ -45,7 +45,7 @@ jobs:
cargo c
working-directory: redash-searcher-sync

- uses: stefanzweifel/git-auto-commit-action@v4
- uses: stefanzweifel/git-auto-commit-action@v5
id: auto-commit-action
with:
commit_message: "chore: update lock files"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tagpr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ on:

jobs:
tagpr:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.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