diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index ad1999d..1a59811 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -35,7 +35,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a09f905..d2ebfb7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,7 +7,7 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: | git tag --force v2 HEAD git push --force origin v2 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e2f2a9c..da2540c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,8 +9,8 @@ jobs: name: npm test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 - run: npm ci - run: npm test @@ -24,7 +24,7 @@ jobs: name: Native installer / ${{ matrix.os }} runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Test official installer (pinned version) uses: ./ @@ -65,8 +65,8 @@ jobs: name: PyPI / ${{ matrix.os }} / ${{ matrix.python }} runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python }} @@ -104,12 +104,12 @@ jobs: shell: bash # Test sam init - - run: sam init --name sam-app --runtime nodejs14.x --dependency-manager npm --app-template hello-world + - run: sam init --name sam-app --runtime nodejs20.x --dependency-manager npm --app-template hello-world # Test sam build - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: - node-version: "14" + node-version: "20" - run: sam build working-directory: ./sam-app diff --git a/action.yml b/action.yml index 22467e8..fc1d180 100644 --- a/action.yml +++ b/action.yml @@ -15,5 +15,5 @@ inputs: required: false default: false runs: - using: "node16" + using: "node20" main: "dist/index.js"