Skip to content

Commit

Permalink
ci: update actions/checkout to v4
Browse files Browse the repository at this point in the history
and force to launch the ci in every files
  • Loading branch information
sc0w committed Sep 26, 2024
1 parent 9fc3bd0 commit 7a3f7d6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 34 deletions.
32 changes: 3 additions & 29 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,43 +2,17 @@ name: C/C++ CI

on:
push:
paths:
- automake/*
- m4/*
- src/**
- unittests/**
- '**/*.am'
- acinclude.m4
- configure.ac
- '!**/*.txt'
- '!src/skins/*'
- '!src/utils/amps/**'
- '!src/utils/scripts/**'
- '!src/utils/xas/**'
- '!src/webserver/default/**'
branches: [ "*" ]
pull_request:
paths:
- automake/*
- m4/*
- src/**
- unittests/**
- '**/*.am'
- acinclude.m4
- configure.ac
- '!**/*.txt'
- '!src/skins/*'
- '!src/utils/amps/**'
- '!src/utils/scripts/**'
- '!src/utils/xas/**'
- '!src/webserver/default/**'
branches: [ "*" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: install deps
run: sudo apt-get update && sudo apt-get upgrade && sudo apt-get install autopoint
- name: autogen
Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/i18n.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,17 @@ name: I18n CI

on:
push:
paths:
- '**/*.po'
branches: [ "*" ]
pull_request:
paths:
- '**/*.po'
branches: [ "*" ]

jobs:
pofiles:
name: Translation checks
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Installing tools
run: sudo apt-get install gettext
Expand Down

0 comments on commit 7a3f7d6

Please sign in to comment.