Branch: refs/heads/master Author: Enrico Tröger enrico.troeger@uvena.de Committer: Enrico Tröger enrico.troeger@uvena.de Date: Mon, 12 Feb 2024 22:58:01 UTC Commit: dd9f79256422ac131e74b6d8aba4345dde1890c4 https://github.com/geany/infrastructure/commit/dd9f79256422ac131e74b6d8aba43...
Log Message: ----------- Add dependabot.yml for Github Actions updates
And save it some work and update Actions to latest versions.
Modified Paths: -------------- .github/dependabot.yml .github/workflows/docker.yml .github/workflows/package-cleanup.yml
Modified: .github/dependabot.yml 10 lines changed, 10 insertions(+), 0 deletions(-) =================================================================== @@ -0,0 +1,10 @@ +version: 2 +# Before applying suggested PRs, make sure that the new versions of any +# updated actions are allowed in +# https://github.com/organizations/geany/settings/actions +# Versions are pinned and restricted for security reasons. +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly"
Modified: .github/workflows/docker.yml 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -32,10 +32,10 @@ jobs:
steps: - name: Checkout Build Scripts - uses: actions/checkout@v3 + uses: actions/checkout@v4
- name: Log In To The Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ${{ env.DOCKER_REGISTRY }} username: ${{ github.actor }}
Modified: .github/workflows/package-cleanup.yml 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -22,7 +22,7 @@ jobs: DOCKER_IMAGE_NAME: "geany-mingw64-ci"
steps: - - uses: actions/delete-package-versions@v4 + - uses: actions/delete-package-versions@v5 with: package-name: ${{ env.DOCKER_IMAGE_NAME }} package-type: 'container'
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).