From 6ffb8ade3d6319cf54b8ba7293e4cf308ccec85f Mon Sep 17 00:00:00 2001 From: Han Yeong-woo Date: Tue, 21 May 2024 17:03:12 +0900 Subject: [PATCH] chore: bump workflows (#612) --- .github/workflows/codeql-analysis.yml | 8 ++++---- .github/workflows/release.yml | 6 +++--- .github/workflows/test.yml | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 75e556c0..8703a2a2 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -35,11 +35,11 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v1 + uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -50,7 +50,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v1 + uses: github/codeql-action/autobuild@v3 # ℹī¸ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl @@ -64,4 +64,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1 + uses: github/codeql-action/analyze@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5b482895..bb57549e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-18.04 steps: - name: ${{ github.actor }} permission check to do a release - uses: octokit/request-action@v2.0.26 + uses: octokit/request-action@v2.x with: route: GET /repos/:repository/collaborators/${{ github.actor }} repository: ${{ github.repository }} @@ -31,10 +31,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup Node.js - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ env.stable-node-version}} cache: npm diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 48b26807..876c70a5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,9 +8,9 @@ jobs: os: [macos-latest, ubuntu-latest, windows-latest] steps: - name: Check out Git repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Node.js, NPM - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18 cache: npm