diff --git a/.github/workflows/defaultLabels.yml b/.github/workflows/defaultLabels.yml index 1b920aa..4163d7f 100644 --- a/.github/workflows/defaultLabels.yml +++ b/.github/workflows/defaultLabels.yml @@ -13,7 +13,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: - - uses: actions/stale@v6 + - uses: actions/stale@v9 name: Setting issue as idle with: repo-token: ${{ secrets.GITHUB_TOKEN }} @@ -24,7 +24,7 @@ jobs: operations-per-run: 100 exempt-issue-labels: 'backlog' - - uses: actions/stale@v6 + - uses: actions/stale@v9 name: Setting PR as idle with: repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 09e4cf6..e436a09 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -15,7 +15,7 @@ jobs: PR_BASE_REF: ${{ github.event.pull_request.base.ref }} steps: - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: npm install and build id: action-npm-build run: | diff --git a/.github/workflows/prettify-code.yml b/.github/workflows/prettify-code.yml index 6fc7826..f134cbe 100644 --- a/.github/workflows/prettify-code.yml +++ b/.github/workflows/prettify-code.yml @@ -10,9 +10,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Enforce Prettier - uses: actionsx/prettier@v2 + uses: actionsx/prettier@v3 with: args: --check . diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 1564b98..f216932 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -13,7 +13,7 @@ jobs: build: # make sure build/ci works properly runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Run L0 tests. run: |