diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd6f693..15a866a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,16 +1,13 @@ name: Continous Integration on: [push] - jobs: build: runs-on: ubuntu-latest - strategy: matrix: node-version: [14.x, 16.x, 18.x, 19.x] - steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 + - uses: actions/checkout@v4 - name: Node Setup uses: actions/setup-node@v3 with: diff --git a/.github/workflows/npm-audit-fix.yml b/.github/workflows/npm-audit-fix.yml index 96c3c64..08e2289 100644 --- a/.github/workflows/npm-audit-fix.yml +++ b/.github/workflows/npm-audit-fix.yml @@ -1,14 +1,12 @@ name: npm audit fix - on: schedule: - cron: 0 0 * * * # Runs at 00:00 UTC every day - jobs: run: runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 + - uses: actions/checkout@v4 - uses: ybiquitous/npm-audit-fix-action@v5 with: github_token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 7434ed9..5a8025b 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -9,13 +9,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@master + uses: actions/checkout@v4 - name: Set up Node.js - uses: actions/setup-node@master + uses: actions/setup-node@v3 with: node-version: 10.0.0 - name: Publish if version has been updated - uses: pascalgn/npm-publish-action@5994a39d5a3b75d0aad12f4527c1c1364a6bc977 + uses: pascalgn/npm-publish-action@v1 with: tag_name: "v%s" tag_message: "v%s" diff --git a/.github/workflows/project.yml b/.github/workflows/project.yml index a8d0345..955d809 100644 --- a/.github/workflows/project.yml +++ b/.github/workflows/project.yml @@ -1,22 +1,18 @@ name: Project - on: issues: types: - opened - pull_request: types: - opened - jobs: build: name: Add to project runs-on: ubuntu-latest - steps: - name: Add To GitHub projects - uses: actions/add-to-project@v0.5.0 + uses: actions/add-to-project@v0.5 with: project-url: https://github.com/orgs/codelicia/projects/4 github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}