From 5a564f5fcfb891e2e97f185de1f4bb4a7a0d0b06 Mon Sep 17 00:00:00 2001 From: Tim de Pater Date: Sat, 7 Jan 2023 07:34:15 +0100 Subject: [PATCH] Upgrade GitHub workflow packages and configure dependabot --- .github/dependabot.yml | 10 ++++++++++ .github/workflows/build.yaml | 8 ++++---- 2 files changed, 14 insertions(+), 4 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..690f2d7bf --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "daily" \ No newline at end of file diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 8fcdce154..2c593c2c9 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -17,14 +17,14 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up QEMU - uses: docker/setup-qemu-action@v1 + uses: docker/setup-qemu-action@v2 - name: Set up Docker Buildx id: buildx - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v2 - name: Build image run: |- @@ -52,7 +52,7 @@ jobs: - name: Login to Docker Hub if: (github.ref == 'refs/heads/master' && github.event_name == 'push') || contains(github.ref, 'refs/tags/') - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }}