From ddc559940b5bcfe40c0d0fb5248133703127e90f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 1 Mar 2024 00:04:50 +0000 Subject: [PATCH] chore(deps): update github actions --- .github/workflows/example.yml | 14 +++++++------- .github/workflows/publish.yml | 6 +++--- .github/workflows/test.yml | 6 +++--- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/example.yml b/.github/workflows/example.yml index 01e7fae..eafed2a 100644 --- a/.github/workflows/example.yml +++ b/.github/workflows/example.yml @@ -29,15 +29,15 @@ jobs: - false steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4 with: node-version: 20 cache: "npm" - run: npm ci - run: npm run build - run: npm run package - - uses: actions/setup-java@v2 + - uses: actions/setup-java@9704b39bf258b59bc04b50fa2dd55e9ed76b47a8 # v4 if: ${{ env.ACT }} with: java-version: 11 @@ -51,16 +51,16 @@ jobs: example-maximized-build-space: runs-on: ubuntu-latest steps: - - uses: easimon/maximize-build-space@v7 - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: easimon/maximize-build-space@fc881a613ad2a34aca9c9624518214ebc21dfc0c # v10 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4 with: node-version: 20 cache: "npm" - run: npm ci - run: npm run build - run: npm run package - - uses: actions/setup-java@v2 + - uses: actions/setup-java@9704b39bf258b59bc04b50fa2dd55e9ed76b47a8 # v4 if: ${{ env.ACT}} with: java-version: 11 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index aaf7141..5dd07b8 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -8,8 +8,8 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4 with: node-version: 20 cache: "npm" @@ -17,6 +17,6 @@ jobs: - run: npm run build - run: npm run package - run: sed -i 's%lib/src/main.js%dist/index.js%' package.json - - uses: JasonEtco/build-and-tag-action@v1 + - uses: JasonEtco/build-and-tag-action@dd5e4991048c325f6d85b4155e586fc211c644da # v2 env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dbc37ca..132744d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,8 +13,8 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4 with: node-version: 20 cache: "npm" @@ -26,6 +26,6 @@ jobs: - run: npm run test env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@54bcd8715eee62d40e33596ef5e8f0f48dbbccab # v4 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}