Skip to content

Commit

Permalink
fix: update deps and deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
hertzg committed May 5, 2024
1 parent aa84c25 commit da64471
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/buildx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Buildx
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
- cron: "0 0 * * *"
pull_request:
branches:
- master
Expand Down Expand Up @@ -36,22 +36,22 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
repository: 'merbanan/rtl_433'
repository: "merbanan/rtl_433"
ref: ${{ matrix.gitRef }}
- run: git archive ${{ matrix.gitRef }} --format tar.gz --output ${{ matrix.gitRef }}.tar.gz
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.gitRef }}
path: ${{ matrix.gitRef }}.tar.gz

alpine:
name: ${{ matrix.name }}
needs:
- setup
- checkout
- setup
- checkout
runs-on: ubuntu-22.04
strategy:
matrix:
matrix:
include: ${{ fromJSON(needs.setup.outputs.alpineTasks) }}
fail-fast: false
steps:
Expand All @@ -60,7 +60,7 @@ jobs:
- uses: docker/setup-buildx-action@v3
with:
version: latest
config-inline: |
buildkitd-config-inline: |
[registry."docker.io"]
mirrors = ["mirror.gcr.io"]
- if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == 'hertzg/rtl_433_docker' }}
Expand All @@ -73,7 +73,7 @@ jobs:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: ${{ matrix.gitRef }}
path: ${{ matrix.context }}
Expand All @@ -97,11 +97,11 @@ jobs:
debian:
name: ${{ matrix.name }}
needs:
- setup
- checkout
- setup
- checkout
runs-on: ubuntu-22.04
strategy:
matrix:
matrix:
include: ${{ fromJSON(needs.setup.outputs.debianTasks) }}
fail-fast: false
steps:
Expand All @@ -123,7 +123,7 @@ jobs:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: ${{ matrix.gitRef }}
path: ${{ matrix.context }}
Expand All @@ -142,4 +142,4 @@ jobs:
push: ${{ github.ref == 'refs/heads/master' || github.event_name == 'schedule' }}
cache-from: ${{ matrix.cacheFrom }}
cache-to: ${{ matrix.cacheTo }}
tags: ${{ matrix.tags }}
tags: ${{ matrix.tags }}

0 comments on commit da64471

Please sign in to comment.