From 8892507e29d19a05115b759e8f441e47bdf44e36 Mon Sep 17 00:00:00 2001 From: Colin Griffin Date: Sun, 4 Jun 2023 00:10:32 -0400 Subject: [PATCH] add dependabot and update actions deps --- .github/dependabot.yml | 7 +++++++ .github/workflows/docker-build-push-dockerhub.yml | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..583decf --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,7 @@ +version: 2 +updates: + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" \ No newline at end of file diff --git a/.github/workflows/docker-build-push-dockerhub.yml b/.github/workflows/docker-build-push-dockerhub.yml index 82c07f8..e9569c2 100644 --- a/.github/workflows/docker-build-push-dockerhub.yml +++ b/.github/workflows/docker-build-push-dockerhub.yml @@ -34,14 +34,14 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - name: checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Git submodule update run: | git submodule update --init - name: Log in to the Docker Hub registry - uses: docker/login-action@v1.10.0 + uses: docker/login-action@v2 with: # Username used to log against the Docker registry username: ${{ secrets.DOCKER_HUB_USERNAME }} @@ -51,7 +51,7 @@ jobs: logout: true # optional, default is true - name: Log in to the Github Container registry - uses: docker/login-action@v1.10.0 + uses: docker/login-action@v2 with: registry: ghcr.io username: ${{ github.actor }}