Skip to content

chore(deps): update actions/checkout action to v4.1.5 #32

chore(deps): update actions/checkout action to v4.1.5

chore(deps): update actions/checkout action to v4.1.5 #32

Workflow file for this run

name: Maintenance
on:
push:
branches:
- main
- 'renovate/**'
paths:
- .github/workflows/maintenance.yml
pull_request:
branches:
- main
paths:
- .github/workflows/maintenance.yml
schedule:
- cron: '0 13 1 * *'
workflow_dispatch:
jobs:
update-libraries:
name: Update Libraries
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Update fenster
run: wget https://raw.githubusercontent.com/zserge/fenster/main/fenster.h -O lib/fenster/fenster.h
- name: Update compat-5.3
run: |
wget https://raw.githubusercontent.com/lunarmodules/lua-compat-5.3/master/c-api/compat-5.3.h -O lib/compat-5.3/compat-5.3.h
wget https://raw.githubusercontent.com/lunarmodules/lua-compat-5.3/master/c-api/compat-5.3.c -O lib/compat-5.3/compat-5.3.c
- name: Create pull request
uses: peter-evans/create-pull-request@6d6857d36972b65feb161a90e484f2984215f83e # v6.0.5
with:
commit-message: 'chore(lib): update libraries'
signoff: true
branch: maintenance/update-libraries
delete-branch: true
title: 'chore(lib): update libraries'
body: |
This PR updates the libraries used by the project.
labels: libraries
reviewers: ${{ github.repository_owner }}
# Don't run for pull requests and pushes to renovate branches
if: github.event_name != 'pull_request' && (github.event_name != 'push' || !startsWith(github.ref, 'refs/heads/renovate/'))